diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_geometric_extractor.cpython-312.pyc b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_geometric_extractor.cpython-312.pyc new file mode 100644 index 0000000..03b7a89 Binary files /dev/null and b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_geometric_extractor.cpython-312.pyc differ diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_intelligent_mapper.cpython-312.pyc b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_intelligent_mapper.cpython-312.pyc new file mode 100644 index 0000000..2685594 Binary files /dev/null and b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_intelligent_mapper.cpython-312.pyc differ diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_topology_builder.cpython-312.pyc b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_topology_builder.cpython-312.pyc new file mode 100644 index 0000000..907a8a5 Binary files /dev/null and b/futurePlan/End-to-End P&ID Graph Pipeline/__pycache__/pid_topology_builder.cpython-312.pyc differ diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_analysis_engine.py b/futurePlan/End-to-End P&ID Graph Pipeline/pid_analysis_engine.py new file mode 100644 index 0000000..536f01c --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_analysis_engine.py @@ -0,0 +1,104 @@ +import networkx as nx +from fastapi import FastAPI, HTTPException +from pydantic import BaseModel +from typing import Dict, List, Optional +import uvicorn +import json +import os + +app = FastAPI(title="P&ID Analysis Engine") + +# 전역 변수로 그래프 및 매핑 데이터 로드 +TOPOLOGY_FILE = "futurePlan/End-to-End P&ID Graph Pipeline/pid_graph_topology.json" +MAPPING_FILE = "futurePlan/End-to-End P&ID Graph Pipeline/pid_final_mapping.json" + +topology_graph = nx.DiGraph() +tag_mapping = {} + +def load_data(): + global topology_graph, tag_mapping + try: + if os.path.exists(TOPOLOGY_FILE): + with open(TOPOLOGY_FILE, 'r', encoding='utf-8') as f: + data = json.load(f) + # NetworkX 그래프 생성 + for node in data.get('nodes', []): + topology_graph.add_node(node['id'], **node) + for edge in data.get('edges', []): + topology_graph.add_edge(edge['source'], edge['target'], **edge) + print(f"Successfully loaded topology from {TOPOLOGY_FILE}") + + if os.path.exists(MAPPING_FILE): + with open(MAPPING_FILE, 'r', encoding='utf-8') as f: + tag_mapping = json.load(f) + print(f"Successfully loaded mapping from {MAPPING_FILE}") + + except Exception as e: + print(f"Error loading data: {e}") + +@app.on_event("startup") +async def startup_event(): + load_data() + +class ImpactRequest(BaseModel): + nodeId: str + +class ImpactResult(BaseModel): + startNode: str + impactedNodes: Dict[str, int] # { nodeId: depth } + path: List[List[str]] + +def get_propagation_path_with_flow(graph, start_node): + """ + 엣지의 방향성(flow_direction)과 상태(valve_status)를 고려한 실제 영향 전파 경로 추출 + """ + if start_node not in graph: + return {} + + # 1. 유효한 엣지만 필터링 (방향이 forward이고 밸브가 open인 경로) + # 실제 데이터에 flow_direction이나 valve_status가 없을 경우를 대비해 기본값 설정 + valid_edges = [ + (u, v) for u, v, d in graph.edges(data=True) + if d.get('flow_direction', 'forward') == 'forward' + and d.get('valve_status', 'open') == 'open' + ] + + filtered_graph = nx.DiGraph() + filtered_graph.add_edges_from(valid_edges) + + # 2. 전파 단계별 노드 추출 (BFS) + try: + propagation_levels = nx.single_source_shortest_path_length(filtered_graph, start_node) + return propagation_levels + except Exception: + return {} + +@app.get("/impact/{nodeId}") +async def analyze_impact(nodeId: str): + if nodeId not in topology_graph: + raise HTTPException(status_code=404, detail=f"Node {nodeId} not found in topology") + + impact_map = get_propagation_path_with_flow(topology_graph, nodeId) + + # 경로 추출 (시각화를 위해 간단하게 모든 영향 노드로의 최단 경로 포함) + paths = [] + for target in impact_map.keys(): + if target != nodeId: + try: + path = nx.shortest_path(topology_graph, source=nodeId, target=target) + paths.append(path) + except nx.NetworkXNoPath: + continue + + return { + "startNode": nodeId, + "impactedNodes": impact_map, + "paths": paths + } + +@app.get("/health") +async def health_check(): + return {"status": "healthy", "nodes": topology_graph.number_of_nodes(), "edges": topology_graph.number_of_edges()} + +if __name__ == "__main__": + uvicorn.run(app, host="0.0.0.0", port=8000) diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_final_mapping.json b/futurePlan/End-to-End P&ID Graph Pipeline/pid_final_mapping.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_final_mapping.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_geometric_extractor.py b/futurePlan/End-to-End P&ID Graph Pipeline/pid_geometric_extractor.py new file mode 100644 index 0000000..1c3a635 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_geometric_extractor.py @@ -0,0 +1,188 @@ +import ezdxf +import re +import json +from typing import List, Optional, Tuple, Union +from pydantic import BaseModel, Field +from shapely.geometry import box, Point + +# --- Data Models --- + +class BoundingBox(BaseModel): + min_x: float + min_y: float + max_x: float + max_y: float + center: Tuple[float, float] + +class GeometricEntity(BaseModel): + entity_id: str + entity_type: str # TEXT, MTEXT, LINE, LWPOLYLINE, CIRCLE, ARC + layer: str + bbox: BoundingBox + raw_value: Optional[str] = None + clean_value: Optional[str] = None + coordinates: List[Union[Tuple[float, float], List[float]]] = Field(default_factory=list) + properties: dict = Field(default_factory=dict) + +# --- Extractor Implementation --- + +class PidGeometricExtractor: + def __init__(self, file_path: str): + try: + self.doc = ezdxf.readfile(file_path) + self.msp = self.doc.modelspace() + except Exception as e: + raise IOError(f"Failed to load DXF file: {e}") + + def clean_text(self, text: str) -> str: + """ + DXF 특수 제어 문자 및 MTEXT 포맷팅을 제거하여 정제된 텍스트 반환. + """ + if not text: + return "" + + # 1. MTEXT 포맷팅 및 제어 문자 제거 (\P, \W, \L, \A, \C, \H, \S, \T 등) + text = re.sub(r'\\([P|W|L|A|C|H|S|T])\d*;?', ' ', text) + + # 2. 중괄호 { } 제거 + text = re.sub(r'[\{\}]', ' ', text) + + # 3. DXF 특수 제어 문자 제거 (%%U: Underline, %%O: Overline, %%S: Strikethrough, %%R: Registered) + text = re.sub(r'%%[U|O|S|R]', ' ', text) + + # 4. 불필요한 특수 기호 및 반복되는 공백 정제 + text = re.sub(r'\s+', ' ', text).strip() + + return text + + def get_bbox(self, entity) -> Optional[BoundingBox]: + """ + 엔티티 타입별로 동적인 Bounding Box를 계산하여 반환. + """ + try: + if entity.dxftype() == 'TEXT': + p = entity.dxf.insert + h = entity.dxf.height + # 텍스트 길이에 따른 대략적인 너비 계산 (글자수 * 높이 * 0.6) + width = len(entity.dxf.text) * h * 0.6 + return self._create_bbox(p.x, p.y, p.x + width, p.y + h) + + elif entity.dxftype() == 'MTEXT': + p = entity.dxf.insert + h = entity.dxf.char_height if hasattr(entity.dxf, 'char_height') else 2.5 + w = entity.dxf.width if entity.dxf.width > 0 else len(entity.text) * h * 0.6 + return self._create_bbox(p.x, p.y, p.x + w, p.y + h) + + elif entity.dxftype() == 'LINE': + start = entity.dxf.start + end = entity.dxf.end + return self._create_bbox( + min(start.x, end.x), min(start.y, end.y), + max(start.x, end.x), max(start.y, end.y) + ) + + elif entity.dxftype() == 'LWPOLYLINE': + points = entity.get_points() + if not points: return None + xs = [p[0] for p in points] + ys = [p[1] for p in points] + return self._create_bbox(min(xs), min(ys), max(xs), max(ys)) + + elif entity.dxftype() in ('CIRCLE', 'ARC'): + center = entity.dxf.center + radius = entity.dxf.radius + return self._create_bbox( + center.x - radius, center.y - radius, + center.x + radius, center.y + radius + ) + + except Exception as e: + print(f"Error calculating bbox for {entity.dxftype()} ({entity.dxf.handle}): {e}") + return None + + def _create_bbox(self, min_x, min_y, max_x, max_y) -> BoundingBox: + return BoundingBox( + min_x=min_x, + min_y=min_y, + max_x=max_x, + max_y=max_y, + center=((min_x + max_x) / 2, (min_y + max_y) / 2) + ) + + def extract_and_save(self, output_path: str): + """ + 기하학적 데이터를 추출하여 JSON 파일로 저장. + """ + results = [] + for entity in self.msp: + bbox_obj = self.get_bbox(entity) + if not bbox_obj: + continue + + raw_text = "" + if entity.dxftype() == 'TEXT': + raw_text = entity.dxf.text + elif entity.dxftype() == 'MTEXT': + raw_text = entity.text + + # 좌표 추출 (3D 좌표를 2D로 변환) + coords = [] + if hasattr(entity, 'get_points'): + # ezdxf의 get_points()는 (x, y, z) 튜플 리스트를 반환함 + coords = [(p[0], p[1]) for p in entity.get_points()] + elif entity.dxftype() == 'LINE': + coords = [(entity.dxf.start.x, entity.dxf.start.y), (entity.dxf.end.x, entity.dxf.end.y)] + elif entity.dxftype() in ('CIRCLE', 'ARC'): + coords = [(entity.dxf.center.x, entity.dxf.center.y)] + + entity_data = GeometricEntity( + entity_id=entity.dxf.handle, + entity_type=entity.dxftype(), + layer=entity.dxf.layer, + bbox=bbox_obj, + raw_value=raw_text if raw_text else None, + clean_value=self.clean_text(raw_text) if raw_text else None, + coordinates=coords, + properties={ + "color": entity.dxf.color, + "lineweight": entity.dxf.lineweight if hasattr(entity.dxf, 'lineweight') else None, + } + ) + results.append(entity_data.model_dump()) + + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(results, f, ensure_ascii=False, indent=4) + + return output_path + +# --- Proximity Utilities --- + +def is_near(bbox_a: BoundingBox, bbox_b: BoundingBox, threshold=5.0) -> bool: + """ + 두 Bounding Box 간의 최단 거리가 임계값 이내인지 확인. + shapely box를 사용하여 거리 계산. + """ + box_a = box(bbox_a.min_x, bbox_a.min_y, bbox_a.max_x, bbox_a.max_y) + box_b = box(bbox_b.min_x, bbox_b.min_y, bbox_b.max_x, bbox_b.max_y) + return box_a.distance(box_b) <= threshold + +def is_inside(point: Tuple[float, float], bbox: BoundingBox) -> bool: + """ + 특정 점이 Bounding Box 내부에 있는지 확인. + """ + return (bbox.min_x <= point[0] <= bbox.max_x) and (bbox.min_y <= point[1] <= bbox.max_y) + +# --- Execution Block --- + +if __name__ == "__main__": + # 테스트 파일 경로 (환경에 맞게 수정) + input_dxf = "futurePlan/End-to-End P&ID Graph Pipeline/No-10_Plant_PID.dxf" + output_json = "futurePlan/End-to-End P&ID Graph Pipeline/shared_geo_data.json" + + print(f"Starting extraction from {input_dxf}...") + try: + extractor = PidGeometricExtractor(input_dxf) + saved_path = extractor.extract_and_save(output_json) + print(f"Successfully saved geometric data to {saved_path}") + except Exception as e: + print(f"Extraction failed: {e}") diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_graph_topology.json b/futurePlan/End-to-End P&ID Graph Pipeline/pid_graph_topology.json new file mode 100644 index 0000000..7f40649 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_graph_topology.json @@ -0,0 +1,112293 @@ +{ + "directed": true, + "multigraph": false, + "graph": {}, + "nodes": [ + { + "type": "LINE", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5826.527891317375, + "max_x": 1944.895521716301, + "max_y": 5826.527891317375 + }, + "value": null, + "layer": "0", + "id": "3EABC9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5817.693412272501, + "max_x": 1967.0375852158902, + "max_y": 5820.679762540216 + }, + "value": "INSTRUMENT SYMBOLS", + "layer": "0", + "id": "3EABCA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5825.315731106853, + "max_x": 1982.1394149848848, + "max_y": 5827.555493807639 + }, + "value": "SOFTWARE OF DATA LINK", + "layer": "0", + "id": "3EABCB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5834.891766465066, + "max_x": 1949.201028900347, + "max_y": 5834.891766465066 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "3EABCC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5842.069086417658, + "max_x": 1949.201028900347, + "max_y": 5843.252046689833 + }, + "value": null, + "layer": "0", + "id": "3EABCD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5850.565989187566, + "max_x": 1949.201028900347, + "max_y": 5850.565989187566 + }, + "value": null, + "layer": "0", + "id": "3EABCE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5869.531254295882, + "max_x": 1975.9966360190376, + "max_y": 5872.517604563597 + }, + "value": "INSTRUMENT LINE SYMBOLS", + "layer": "0", + "id": "3EABCF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5833.679606254545, + "max_x": 1976.7639845029964, + "max_y": 5835.919368955332 + }, + "value": "ELECTRICAL SIGNAL", + "layer": "0", + "id": "3EABD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5841.566007597677, + "max_x": 1975.4201268825243, + "max_y": 5843.805770298463 + }, + "value": "PNEUMATIC SIGNAL", + "layer": "0", + "id": "3EABD1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5849.353828977045, + "max_x": 1982.1394149848848, + "max_y": 5851.593591677832 + }, + "value": "CONNECTION TO PROCESS", + "layer": "0", + "id": "3EABD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1935.202741244584, + "min_y": 5801.012673184939, + "max_x": 1941.127725729624, + "max_y": 5801.012673184939 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABD7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5798.0501809424195, + "max_x": 1941.1277257296233, + "max_y": 5803.975165427458 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABD8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5807.060193836422, + "max_x": 1941.1277257296233, + "max_y": 5812.98517832146 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5809.507201765811, + "max_x": 1986.3014632412094, + "max_y": 5811.746964466598 + }, + "value": "LOCAL FIELD DEVICE/TRANSMITTER", + "layer": "0", + "id": "3EABDA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5802.083525465751, + "max_x": 1983.6137480002653, + "max_y": 5804.323288166538 + }, + "value": "DESK OR PANEL MOUNTED DEVICE", + "layer": "0", + "id": "3EABDB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1939.5701983635208, + "min_y": 5826.203647579384, + "max_x": 1940.208060505473, + "max_y": 5826.841509721336 + }, + "value": null, + "layer": "0", + "id": "3EABDC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1945.533295355147, + "min_y": 5826.527891317375, + "max_x": 1949.201028900347, + "max_y": 5826.527891317375 + }, + "value": null, + "layer": "0", + "id": "3EABDD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1944.8954774647518, + "min_y": 5826.203647579384, + "max_x": 1945.533339606704, + "max_y": 5826.841509721336 + }, + "value": null, + "layer": "0", + "id": "3EABDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5863.009690300525, + "max_x": 1987.514845466773, + "max_y": 5865.249453001312 + }, + "value": "DIAPHRAM OR CHEMICAL SEAL", + "layer": "0", + "id": "3EABE0" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1644.263524746835, + "min_y": 5578.977228489755, + "max_x": 2061.307339633341, + "max_y": 5875.978654972201 + }, + "value": null, + "layer": "0", + "id": "3EABE1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5789.474927438829, + "max_x": 1941.1277257296233, + "max_y": 5795.399911923867 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABE3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5791.921935368218, + "max_x": 1964.799741313656, + "max_y": 5794.161698069005 + }, + "value": "DCS INSTRUMENT", + "layer": "0", + "id": "3EABE4" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1935.202741244584, + "min_y": 5789.474927438833, + "max_x": 1941.127725729624, + "max_y": 5795.399911923868 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABE5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1935.202741244589, + "min_y": 5792.437419681348, + "max_x": 1941.127725729622, + "max_y": 5792.437419681348 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EABE6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1746.462987909916, + "min_y": 5862.915859761957, + "max_x": 1788.1225741445505, + "max_y": 5865.155622462744 + }, + "value": "P - 10107 - 500A - F1 A - H 100", + "layer": "0", + "id": "3EABE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5869.531254295882, + "max_x": 1767.7162109438063, + "max_y": 5872.517604563597 + }, + "value": "PIPE LINE NUMBER", + "layer": "0", + "id": "3EABE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.559979402434, + "min_y": 5858.95528307439, + "max_x": 1760.9196234536141, + "max_y": 5860.821751991712 + }, + "value": "(2)", + "layer": "0", + "id": "3EABE9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1772.877392993122, + "min_y": 5858.95528307439, + "max_x": 1776.237037044302, + "max_y": 5860.821751991712 + }, + "value": "(3)", + "layer": "0", + "id": "3EABEA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1785.752165916711, + "min_y": 5858.95528307439, + "max_x": 1794.084164670462, + "max_y": 5860.821751991712 + }, + "value": "(5)", + "layer": "0", + "id": "3EABEB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5652.520990027204, + "max_x": 1745.2569742452931, + "max_y": 5654.760752727991 + }, + "value": "H", + "layer": "0", + "id": "3EABED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5643.840285090687, + "max_x": 1745.2569742452931, + "max_y": 5650.165066564967 + }, + "value": "P", + "layer": "0", + "id": "3EABEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5639.282110842805, + "max_x": 1745.2569742452931, + "max_y": 5641.521873543592 + }, + "value": "E", + "layer": "0", + "id": "3EABF0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5830.452070692198, + "max_x": 1768.6987965989806, + "max_y": 5832.691833392984 + }, + "value": "(6) INSULATION CODE", + "layer": "0", + "id": "3EABF1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5843.999451920975, + "max_x": 1760.635650876148, + "max_y": 5846.239214621762 + }, + "value": "(3) LINE SIZE", + "layer": "0", + "id": "3EABF2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5839.167585283111, + "max_x": 1767.3549389785085, + "max_y": 5841.407347983898 + }, + "value": "(4) MATERIAL SPEC.", + "layer": "0", + "id": "3EABF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5848.402747635205, + "max_x": 1772.7303694603968, + "max_y": 5854.813933288946 + }, + "value": "(1) FLUID SERVICE NAME", + "layer": "0", + "id": "3EABF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5634.653361217736, + "max_x": 1745.2569742452931, + "max_y": 5636.893123918523 + }, + "value": "T", + "layer": "0", + "id": "3EABF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5630.2727784041, + "max_x": 1745.2569742452931, + "max_y": 5632.512541104887 + }, + "value": "N", + "layer": "0", + "id": "3EABF7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1805.830564387671, + "min_y": 5858.95528307439, + "max_x": 1809.1902084388512, + "max_y": 5860.821751991712 + }, + "value": "(7)", + "layer": "0", + "id": "3EABF8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5826.106782287318, + "max_x": 1775.418084701341, + "max_y": 5828.346544988105 + }, + "value": "(7) INSULATION THICKNESS", + "layer": "0", + "id": "3EABF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1745.64742792516, + "min_y": 5858.95528307439, + "max_x": 1749.00707197634, + "max_y": 5860.821751991712 + }, + "value": "(1)", + "layer": "0", + "id": "3EABFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1745.270965040896, + "min_y": 5861.973277291813, + "max_x": 1749.312431282798, + "max_y": 5861.973277291813 + }, + "value": null, + "layer": "0", + "id": "3EABFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1754.155733692213, + "min_y": 5861.973277291813, + "max_x": 1764.608283475046, + "max_y": 5861.973277291813 + }, + "value": null, + "layer": "0", + "id": "3EABFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1768.639172503205, + "min_y": 5861.973277291813, + "max_x": 1780.759671845429, + "max_y": 5861.973277291813 + }, + "value": null, + "layer": "0", + "id": "3EABFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1785.828444163841, + "min_y": 5861.973277291813, + "max_x": 1794.346839308233, + "max_y": 5861.973277291813 + }, + "value": null, + "layer": "0", + "id": "3EABFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1799.705311095869, + "min_y": 5861.973277291813, + "max_x": 1811.165607892775, + "max_y": 5861.973277291813 + }, + "value": null, + "layer": "0", + "id": "3EAC00" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5625.892195590465, + "max_x": 1786.9165604799277, + "max_y": 5628.131958291252 + }, + "value": "(BUFFING) BUFFING OR EQUIVALENT", + "layer": "0", + "id": "3EAC01" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5727.701298708899, + "max_x": 1780.2588820682126, + "max_y": 5734.880095404666 + }, + "value": "PIPING CLASS & MATERIAL", + "layer": "0", + "id": "3EAC02" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1746.950673671031, + "min_y": 5721.174930035594, + "max_x": 1761.733107496224, + "max_y": 5723.414692736381 + }, + "value": "%%uMATERIAL", + "layer": "0", + "id": "3EAC03" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5715.698076644885, + "max_x": 1745.4843073597192, + "max_y": 5717.937839345672 + }, + "value": "S1", + "layer": "0", + "id": "3EAC05" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5817.668975810851, + "max_x": 1780.2588820682126, + "max_y": 5820.655326078567 + }, + "value": "FLUID NAME ABBREVIATION", + "layer": "0", + "id": "3EAC09" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5786.125962649141, + "max_x": 1773.4413529016044, + "max_y": 5788.365725349928 + }, + "value": "STEAM", + "layer": "0", + "id": "3EAC0A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5790.807066693784, + "max_x": 1793.5992172086856, + "max_y": 5796.8584844080915 + }, + "value": "WASTE WATER", + "layer": "0", + "id": "3EAC0B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5786.125962649141, + "max_x": 1745.7543167458844, + "max_y": 5788.365725349928 + }, + "value": "ST", + "layer": "0", + "id": "3EAC0C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5790.807066693784, + "max_x": 1747.0981743663563, + "max_y": 5796.989414016437 + }, + "value": "WW", + "layer": "0", + "id": "3EAC0D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5806.671737151097, + "max_x": 1751.1297472277727, + "max_y": 5813.0771121056705 + }, + "value": "P, CHE", + "layer": "0", + "id": "3EAC0E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5806.859653121929, + "max_x": 1793.5992172086856, + "max_y": 5813.145171496994 + }, + "value": "PROCESS FLUID", + "layer": "0", + "id": "3EAC0F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5777.147224446347, + "max_x": 1752.4736048482446, + "max_y": 5779.386987147133 + }, + "value": "IA, AIR", + "layer": "0", + "id": "3EAC10" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5777.160749672407, + "max_x": 1785.5360714858532, + "max_y": 5779.400512373194 + }, + "value": "INSTRUMENT AIR", + "layer": "0", + "id": "3EAC11" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5768.612646205529, + "max_x": 1757.8490353301331, + "max_y": 5775.0221967355665 + }, + "value": "N2", + "layer": "0", + "id": "3EAC12" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5768.626171431588, + "max_x": 1777.4729257630206, + "max_y": 5775.035721961627 + }, + "value": "NITROGEN", + "layer": "0", + "id": "3EAC13" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5781.444858604495, + "max_x": 1788.2237867267972, + "max_y": 5783.684621305281 + }, + "value": "STEAM CONDENSATE", + "layer": "0", + "id": "3EAC18" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5781.444858604495, + "max_x": 1745.7543167458844, + "max_y": 5783.684621305281 + }, + "value": "CD", + "layer": "0", + "id": "3EAC19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5760.206295310987, + "max_x": 1747.0981743663563, + "max_y": 5766.6220800019455 + }, + "value": "DIW", + "layer": "0", + "id": "3EAC1B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5798.627888106479, + "max_x": 1747.0981743663563, + "max_y": 5805.033263061055 + }, + "value": "CWR", + "layer": "0", + "id": "3EAC1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5798.815804077311, + "max_x": 1793.5992172086856, + "max_y": 5804.902333452707 + }, + "value": "COOLING WATER RETURN", + "layer": "0", + "id": "3EAC1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5756.228599028031, + "max_x": 1793.5992172086856, + "max_y": 5766.6220800019455 + }, + "value": "SOFT WATER", + "layer": "0", + "id": "3EAC1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5752.16244626637, + "max_x": 1747.0981743663563, + "max_y": 5758.280445757986 + }, + "value": "CHS", + "layer": "0", + "id": "3EAC21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5748.153279867195, + "max_x": 1793.5992172086856, + "max_y": 5754.271279358812 + }, + "value": "CHILLER WATER RETURN", + "layer": "0", + "id": "3EAC23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5616.98304752601, + "max_x": 1803.5524141563953, + "max_y": 5619.969397793725 + }, + "value": "ABBREVIATIONS IDENTIFIED WITH VALVES", + "layer": "0", + "id": "3EAC24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5589.008168775376, + "max_x": 1772.1896174565181, + "max_y": 5595.391097741562 + }, + "value": "NOMAL CLOSE", + "layer": "0", + "id": "3EAC25" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5597.640852307266, + "max_x": 1746.7112745771653, + "max_y": 5599.880615008053 + }, + "value": "FS", + "layer": "0", + "id": "3EAC26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5589.153177603595, + "max_x": 1746.7112745771653, + "max_y": 5595.53610656978 + }, + "value": "NC", + "layer": "0", + "id": "3EAC27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5584.639838068401, + "max_x": 1746.7112745771653, + "max_y": 5586.879600769188 + }, + "value": "NO", + "layer": "0", + "id": "3EAC28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.394950699672, + "min_y": 5608.605893770931, + "max_x": 1750.4580964225047, + "max_y": 5610.845656471718 + }, + "value": "%%uABB", + "layer": "0", + "id": "3EAC2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5602.356180857973, + "max_x": 1746.7112745771653, + "max_y": 5604.59594355876 + }, + "value": "FC", + "layer": "0", + "id": "3EAC2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5597.495843479048, + "max_x": 1769.5019022155739, + "max_y": 5599.735606179835 + }, + "value": "FAIL STAY", + "layer": "0", + "id": "3EAC2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5584.518466604793, + "max_x": 1770.845759836046, + "max_y": 5586.758229305579 + }, + "value": "NOMAL OPEN", + "layer": "0", + "id": "3EAC2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1756.555208221364, + "min_y": 5608.532213935776, + "max_x": 1775.3692149079732, + "max_y": 5610.771976636563 + }, + "value": "%%uDESCRIPTION", + "layer": "0", + "id": "3EAC2F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5602.211172029754, + "max_x": 1770.845759836046, + "max_y": 5604.450934730541 + }, + "value": "FAIL CLOSE", + "layer": "0", + "id": "3EAC30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1835.299511197001, + "min_y": 5841.159008554998, + "max_x": 1858.1450907450264, + "max_y": 5843.398771255785 + }, + "value": "(2) SERIAL NUMBER", + "layer": "0", + "id": "3EAC31" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1835.299511197001, + "min_y": 5847.312096326302, + "max_x": 1874.2713821906914, + "max_y": 5849.5518590270885 + }, + "value": "(1) INSTRUMENT IDENTIFICATION", + "layer": "0", + "id": "3EAC32" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5869.531254295882, + "max_x": 1873.1343753941724, + "max_y": 5872.517604563597 + }, + "value": "%%uINSTRUMENT NUMBER DESIGNATION", + "layer": "0", + "id": "3EAC33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5753.798997694193, + "max_x": 1847.7486931475398, + "max_y": 5756.038760394979 + }, + "value": "MAN, MOTOR", + "layer": "0", + "id": "3EAC34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5747.662222541517, + "max_x": 1855.8118388703722, + "max_y": 5749.901985242303 + }, + "value": "PRESSURE, VACUUM", + "layer": "0", + "id": "3EAC35" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5774.466537029002, + "max_x": 1859.8434117317886, + "max_y": 5776.706299729789 + }, + "value": "CURRENT(ELECTRICAL)", + "layer": "0", + "id": "3EAC36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5780.081651906321, + "max_x": 1882.688991279814, + "max_y": 5782.321414607108 + }, + "value": "HAND, HAND-CONTROLLED SHUT-OFF VALVE", + "layer": "0", + "id": "3EAC37" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5790.473932879405, + "max_x": 1846.4048355270677, + "max_y": 5792.713695580192 + }, + "value": "FLOW RATE", + "layer": "0", + "id": "3EAC38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5796.252097447203, + "max_x": 1867.906557454621, + "max_y": 5798.491860147989 + }, + "value": "VOLTAGE(EMF), HEAT ENERGY", + "layer": "0", + "id": "3EAC39" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5810.372026715231, + "max_x": 1857.1556964908443, + "max_y": 5812.611789416018 + }, + "value": "BURNER COMBUSTION", + "layer": "0", + "id": "3EAC3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1845.991097198375, + "min_y": 5822.019645484361, + "max_x": 1862.11738864404, + "max_y": 5824.259408185148 + }, + "value": "FIRST LETTER", + "layer": "0", + "id": "3EAC3B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5830.772357552959, + "max_x": 1876.7179957154312, + "max_y": 5833.758707820674 + }, + "value": "INSTRUMENT IDENTIFICATION TABLE", + "layer": "0", + "id": "3EAC3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5684.72630581239, + "max_x": 1923.810165090705, + "max_y": 5826.518418498335 + }, + "value": null, + "layer": "0", + "id": "3EAC3D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5826.518418498335, + "max_x": 1923.810165090705, + "max_y": 5826.518418498335 + }, + "value": null, + "layer": "0", + "id": "3EAC3E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5741.638858077767, + "max_x": 1827.4677964212112, + "max_y": 5743.878620778553 + }, + "value": "Q", + "layer": "0", + "id": "3EAC3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5747.662221834495, + "max_x": 1827.4677964212112, + "max_y": 5749.901984535281 + }, + "value": "P", + "layer": "0", + "id": "3EAC40" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5753.798996987171, + "max_x": 1827.4677964212112, + "max_y": 5756.038759687958 + }, + "value": "M", + "layer": "0", + "id": "3EAC41" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5758.875272637188, + "max_x": 1827.4677964212112, + "max_y": 5761.115035337974 + }, + "value": "L", + "layer": "0", + "id": "3EAC42" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5763.668632346167, + "max_x": 1827.4677964212112, + "max_y": 5765.908395046954 + }, + "value": "K", + "layer": "0", + "id": "3EAC43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5741.638858784789, + "max_x": 1854.4679812499003, + "max_y": 5743.878621485575 + }, + "value": "QUANTITY, EVENT", + "layer": "0", + "id": "3EAC44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5763.668633053189, + "max_x": 1839.6855474247072, + "max_y": 5765.908395753976 + }, + "value": "TIME", + "layer": "0", + "id": "3EAC45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5758.87527334421, + "max_x": 1841.0294050451794, + "max_y": 5761.1150360449965 + }, + "value": "LEVEL", + "layer": "0", + "id": "3EAC46" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5768.824431617961, + "max_x": 1827.4677964212112, + "max_y": 5771.0641943187475 + }, + "value": "J", + "layer": "0", + "id": "3EAC47" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.406961812178, + "min_y": 5774.46653632198, + "max_x": 1827.7508194326501, + "max_y": 5776.706299022767 + }, + "value": "I", + "layer": "0", + "id": "3EAC48" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5780.081651199299, + "max_x": 1827.4677964212112, + "max_y": 5782.321413900086 + }, + "value": "H", + "layer": "0", + "id": "3EAC49" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5785.408453442874, + "max_x": 1827.4677964212112, + "max_y": 5787.648216143661 + }, + "value": "G", + "layer": "0", + "id": "3EAC4A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5801.01846662246, + "max_x": 1827.4677964212112, + "max_y": 5803.258229323247 + }, + "value": "D", + "layer": "0", + "id": "3EAC4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5790.473932172384, + "max_x": 1827.4677964212112, + "max_y": 5792.71369487317 + }, + "value": "F", + "layer": "0", + "id": "3EAC4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5796.252096740181, + "max_x": 1827.4677964212112, + "max_y": 5798.491859440967 + }, + "value": "E", + "layer": "0", + "id": "3EAC4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5805.937090688747, + "max_x": 1827.4677964212112, + "max_y": 5808.176853389534 + }, + "value": "C", + "layer": "0", + "id": "3EAC4E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5810.372026008209, + "max_x": 1827.4677964212112, + "max_y": 5812.611788708996 + }, + "value": "B", + "layer": "0", + "id": "3EAC4F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5768.824432324982, + "max_x": 1853.1241236294281, + "max_y": 5771.064195025769 + }, + "value": "POWER(MW,MVAR)", + "layer": "0", + "id": "3EAC50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5785.408454149894, + "max_x": 1847.7486931475398, + "max_y": 5787.648216850681 + }, + "value": "GAUGE, GAS", + "layer": "0", + "id": "3EAC51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5801.018467329478, + "max_x": 1843.7171202861234, + "max_y": 5803.258230030265 + }, + "value": "DENSITY", + "layer": "0", + "id": "3EAC52" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5805.937091395769, + "max_x": 1850.4364083884839, + "max_y": 5808.176854096556 + }, + "value": "CONDUCTIVITY", + "layer": "0", + "id": "3EAC53" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1822.850800961426, + "min_y": 5822.019645484361, + "max_x": 1830.9139466842587, + "max_y": 5824.259408185148 + }, + "value": "LETTER", + "layer": "0", + "id": "3EAC54" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5814.925592412234, + "max_x": 1827.4677964212112, + "max_y": 5817.165355113021 + }, + "value": "A", + "layer": "0", + "id": "3EAC55" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5814.925593119256, + "max_x": 1853.1241236294281, + "max_y": 5817.165355820042 + }, + "value": "ANALYSIS, AUTO", + "layer": "0", + "id": "3EAC56" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5763.668633053189, + "max_x": 1905.3067604769044, + "max_y": 5765.908395753976 + }, + "value": "CONTROL STATION", + "layer": "0", + "id": "3EAC57" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5747.662222541517, + "max_x": 1914.713763820209, + "max_y": 5749.901985242303 + }, + "value": "POINT(TEST) CONNECTION", + "layer": "0", + "id": "3EAC58" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5741.638858784789, + "max_x": 1897.2436147540718, + "max_y": 5743.878621485575 + }, + "value": "TOTALIZER", + "layer": "0", + "id": "3EAC59" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5758.87527334421, + "max_x": 1906.6506180973763, + "max_y": 5761.1150360449965 + }, + "value": "LOW, PILOT LIGHT", + "layer": "0", + "id": "3EAC5A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5753.798997694193, + "max_x": 1903.9629028564323, + "max_y": 5756.038760394979 + }, + "value": "MOTOR OPERATOR", + "layer": "0", + "id": "3EAC5B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5774.466537029002, + "max_x": 1897.2436147540718, + "max_y": 5776.706299729789 + }, + "value": "INDICATOR", + "layer": "0", + "id": "3EAC5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5796.252097447203, + "max_x": 1916.057621440681, + "max_y": 5798.491860147989 + }, + "value": "PRIMARY ELEMENT,ELEMENT", + "layer": "0", + "id": "3EAC5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5801.018467329478, + "max_x": 1914.713763820209, + "max_y": 5803.258230030265 + }, + "value": "DIFFERENTIAL, DETECTOR", + "layer": "0", + "id": "3EAC5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5805.937091395769, + "max_x": 1894.5558995131275, + "max_y": 5808.176854096556 + }, + "value": "CONTROL", + "layer": "0", + "id": "3EAC5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5810.372026715231, + "max_x": 1895.8997571335997, + "max_y": 5812.611789416018 + }, + "value": "BISTABLE", + "layer": "0", + "id": "3EAC60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1885.902846207793, + "min_y": 5770.177546436492, + "max_x": 1888.241744599866, + "max_y": 5770.177546436492 + }, + "value": null, + "layer": "0", + "id": "3EAC61" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5780.081651906321, + "max_x": 1898.587472374544, + "max_y": 5782.321414607108 + }, + "value": "HIGH, HOLE", + "layer": "0", + "id": "3EAC62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5785.408454149894, + "max_x": 1901.275187615488, + "max_y": 5787.648216850681 + }, + "value": "GAUGE, GLASS", + "layer": "0", + "id": "3EAC63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5790.473932879405, + "max_x": 1891.8681842721835, + "max_y": 5792.713695580192 + }, + "value": "RATIO", + "layer": "0", + "id": "3EAC64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1886.776698178215, + "min_y": 5822.019645484361, + "max_x": 1910.9661353467125, + "max_y": 5824.259408185148 + }, + "value": "SUCCEEDING LETTERS", + "layer": "0", + "id": "3EAC65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5814.925593119256, + "max_x": 1891.8681842721835, + "max_y": 5817.165355820042 + }, + "value": "ALARM", + "layer": "0", + "id": "3EAC66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5724.353798588584, + "max_x": 1857.1556964908443, + "max_y": 5726.593561289371 + }, + "value": "TEMPERATURE, TEST", + "layer": "0", + "id": "3EAC67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5735.884785256837, + "max_x": 1865.218842213677, + "max_y": 5738.124547957624 + }, + "value": "RADIOACTIVITY, RESTRICT", + "layer": "0", + "id": "3EAC68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5730.212862641377, + "max_x": 1855.8118388703722, + "max_y": 5732.452625342164 + }, + "value": "SIGHT, FREQUENCY", + "layer": "0", + "id": "3EAC69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.147693463671, + "min_y": 5730.212861934359, + "max_x": 1827.491551084143, + "max_y": 5732.452624635146 + }, + "value": "S", + "layer": "0", + "id": "3EAC6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5707.384773326767, + "max_x": 1827.4677964212112, + "max_y": 5709.624536027553 + }, + "value": "W", + "layer": "0", + "id": "3EAC6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5688.534462261772, + "max_x": 1827.4677964212112, + "max_y": 5690.774224962559 + }, + "value": "Z", + "layer": "0", + "id": "3EAC6C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.147693463671, + "min_y": 5694.617133783546, + "max_x": 1827.491551084143, + "max_y": 5696.8568964843325 + }, + "value": "Y", + "layer": "0", + "id": "3EAC6D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5701.407093036858, + "max_x": 1827.4677964212112, + "max_y": 5703.646855737645 + }, + "value": "X", + "layer": "0", + "id": "3EAC6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5719.326509608356, + "max_x": 1827.4677964212112, + "max_y": 5721.566272309143 + }, + "value": "U", + "layer": "0", + "id": "3EAC6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5713.184530321537, + "max_x": 1827.4677964212112, + "max_y": 5715.424293022324 + }, + "value": "V", + "layer": "0", + "id": "3EAC70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5724.353797881561, + "max_x": 1827.4677964212112, + "max_y": 5726.593560582348 + }, + "value": "T", + "layer": "0", + "id": "3EAC71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5707.384774033789, + "max_x": 1851.780266008956, + "max_y": 5709.6245367345755 + }, + "value": "WEIGHT, FORCE", + "layer": "0", + "id": "3EAC72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5701.407093743879, + "max_x": 1842.3732626656515, + "max_y": 5703.646856444666 + }, + "value": "ON-OFF", + "layer": "0", + "id": "3EAC73" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5694.617134490567, + "max_x": 1846.4048355270677, + "max_y": 5696.856897191354 + }, + "value": "VIBRATION", + "layer": "0", + "id": "3EAC74" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5688.534462968794, + "max_x": 1854.4679812499003, + "max_y": 5690.774225669581 + }, + "value": "POSITION, LIMIT", + "layer": "0", + "id": "3EAC75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5719.326510315377, + "max_x": 1850.4364083884839, + "max_y": 5721.566273016164 + }, + "value": "POWER FACTOR", + "layer": "0", + "id": "3EAC76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5713.184531028559, + "max_x": 1846.4048355270677, + "max_y": 5715.424293729346 + }, + "value": "VISCOSITY", + "layer": "0", + "id": "3EAC77" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5735.884784549814, + "max_x": 1827.4677964212112, + "max_y": 5738.124547250601 + }, + "value": "R", + "layer": "0", + "id": "3EAC78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5730.212862641377, + "max_x": 1893.2120418926556, + "max_y": 5732.452625342164 + }, + "value": "SWITCH", + "layer": "0", + "id": "3EAC79" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1884.630359472802, + "min_y": 5719.326510315377, + "max_x": 1902.100508538939, + "max_y": 5721.566273016164 + }, + "value": "MULTIFUNCTION", + "layer": "0", + "id": "3EAC7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5713.184531028559, + "max_x": 1902.6190452359601, + "max_y": 5715.424293729346 + }, + "value": "VALVE, DAMPER", + "layer": "0", + "id": "3EAC7B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5701.407093743879, + "max_x": 1899.931329995016, + "max_y": 5703.646856444666 + }, + "value": "PUSH BUTTON", + "layer": "0", + "id": "3EAC7C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5694.617134490567, + "max_x": 1903.9629028564323, + "max_y": 5696.856897191354 + }, + "value": "RELAY, COMPUTE", + "layer": "0", + "id": "3EAC7D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5688.656235348473, + "max_x": 1910.6821909587927, + "max_y": 5690.89599804926 + }, + "value": "DRIVE, INTERLOCKING", + "layer": "0", + "id": "3EAC7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5724.475570968263, + "max_x": 1899.931329995016, + "max_y": 5726.71533366905 + }, + "value": "TRANSMITTER", + "layer": "0", + "id": "3EAC7F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5707.384774033789, + "max_x": 1890.5243266517114, + "max_y": 5709.6245367345755 + }, + "value": "WELL", + "layer": "0", + "id": "3EAC80" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5735.884785256837, + "max_x": 1912.0260485792646, + "max_y": 5738.124547957624 + }, + "value": "RECORD, PRINT, TRENT", + "layer": "0", + "id": "3EAC81" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5684.72630581239, + "max_x": 1923.810165090705, + "max_y": 5684.72630581239 + }, + "value": null, + "layer": "0", + "id": "3EAC85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5677.575577541218, + "max_x": 1874.9261855548018, + "max_y": 5680.561927808933 + }, + "value": "ROTATIONARY EQUIPMENT SYSMBOLS", + "layer": "0", + "id": "3EAC88" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1829.4744005956932, + "min_y": 5665.602483563597, + "max_x": 1835.3978041061528, + "max_y": 5671.525887074057 + }, + "value": null, + "layer": "0", + "id": "3EAC89" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5663.29962264982, + "max_x": 1835.877574778546, + "max_y": 5666.209804425133 + }, + "value": null, + "layer": "0", + "id": "3EAC8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.232923959861, + "min_y": 5663.29962264982, + "max_x": 1835.877574778546, + "max_y": 5666.209804425133 + }, + "value": null, + "layer": "0", + "id": "3EAC8B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1831.778508009234, + "min_y": 5667.906590977138, + "max_x": 1833.093696692612, + "max_y": 5669.221779660516 + }, + "value": null, + "layer": "0", + "id": "3EAC8D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1829.474552251103, + "min_y": 5654.24812398248, + "max_x": 1835.399828148119, + "max_y": 5660.173399879496 + }, + "value": null, + "layer": "0", + "id": "3EAC8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5651.944535134878, + "max_x": 1835.879750475915, + "max_y": 5659.423973968821 + }, + "value": null, + "layer": "0", + "id": "3EAC8F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.234579783467, + "min_y": 5651.944535134878, + "max_x": 1835.879750475915, + "max_y": 5654.855636818014 + }, + "value": null, + "layer": "0", + "id": "3EAC90" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1829.881593067976, + "min_y": 5657.210761930988, + "max_x": 1834.992787331237, + "max_y": 5657.210761930988 + }, + "value": null, + "layer": "0", + "id": "3EAC92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.279686297775, + "min_y": 5666.762908223258, + "max_x": 1857.40597774344, + "max_y": 5669.002670924045 + }, + "value": "GENERAL PUMP", + "layer": "0", + "id": "3EAC95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5655.35914227329, + "max_x": 1855.916266775894, + "max_y": 5657.5989049740765 + }, + "value": "VACUUM PUMP", + "layer": "0", + "id": "3EAC96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.772867579966, + "min_y": 5783.170027042101, + "max_x": 1957.8675861642148, + "max_y": 5785.409789742887 + }, + "value": "INTERLOCK", + "layer": "0", + "id": "3EAC97" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1661.667520255043, + "min_y": 5789.632340088289, + "max_x": 1662.037081100672, + "max_y": 5789.632340088289 + }, + "value": null, + "layer": "0", + "id": "3EAC98" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5788.49812527856, + "max_x": 1668.337517286315, + "max_y": 5790.766554898014 + }, + "value": null, + "layer": "0", + "id": "3EAC99" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5788.512458737895, + "max_x": 1694.3186157679634, + "max_y": 5790.752221438682 + }, + "value": "BUTTERFLY VALVE", + "layer": "0", + "id": "3EAC9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5718.363977864221, + "max_x": 1707.29084451739, + "max_y": 5720.603740565008 + }, + "value": "Y-STRAINER, CONE-STRAINER", + "layer": "0", + "id": "3EAC9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5760.527817957413, + "max_x": 1691.5806774788512, + "max_y": 5762.7675806582 + }, + "value": "CONTROL VALVE", + "layer": "0", + "id": "3EAC9E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.298508613866, + "min_y": 5712.054086913687, + "max_x": 1663.250894950594, + "max_y": 5720.618074024341 + }, + "value": null, + "layer": "0", + "id": "3EAC9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.298508613866, + "min_y": 5718.349644404888, + "max_x": 1655.298508613866, + "max_y": 5720.618074024341 + }, + "value": null, + "layer": "0", + "id": "3EACA2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.938392669681, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5763.680124410019 + }, + "value": null, + "layer": "0", + "id": "3EACA4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.620666543765, + "min_y": 5760.51348449808, + "max_x": 1668.287294238144, + "max_y": 5762.781914117532 + }, + "value": null, + "layer": "0", + "id": "3EACA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5827.708306001664, + "max_x": 1688.943185286075, + "max_y": 5829.948068702451 + }, + "value": "END CLOSURE", + "layer": "0", + "id": "3EACA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5833.307712753632, + "max_x": 1688.943185286075, + "max_y": 5835.547475454418 + }, + "value": "END CLOSURE", + "layer": "0", + "id": "3EACA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5838.907119505599, + "max_x": 1701.0379038703236, + "max_y": 5841.146882206386 + }, + "value": "SLOPE (GRAVITY FLOW)", + "layer": "0", + "id": "3EACA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5777.313645233961, + "max_x": 1688.943185286075, + "max_y": 5779.553407934748 + }, + "value": "CHECK VALVE", + "layer": "0", + "id": "3EACA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5794.111865489862, + "max_x": 1687.599327665603, + "max_y": 5796.351628190649 + }, + "value": "BALL VALVE", + "layer": "0", + "id": "3EACAA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5799.71127224183, + "max_x": 1688.943185286075, + "max_y": 5801.951034942616 + }, + "value": "GLOBE VALVE", + "layer": "0", + "id": "3EACAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5805.310678993796, + "max_x": 1707.757191972684, + "max_y": 5807.550441694582 + }, + "value": "GATE VALVE, GENERAL VALVE", + "layer": "0", + "id": "3EACAC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5810.910085745764, + "max_x": 1691.630900527019, + "max_y": 5813.149848446551 + }, + "value": "FLEXIBLE HOSE", + "layer": "0", + "id": "3EACAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5774.8665449346, + "max_x": 1668.337517286315, + "max_y": 5779.567741394079 + }, + "value": null, + "layer": "0", + "id": "3EACAE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5794.109742809439, + "max_x": 1661.273324677011, + "max_y": 5796.378172428892 + }, + "value": null, + "layer": "0", + "id": "3EACB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.431276678703, + "min_y": 5794.109742809439, + "max_x": 1668.337517286315, + "max_y": 5796.378172428892 + }, + "value": null, + "layer": "0", + "id": "3EACB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5799.696938782497, + "max_x": 1668.337517286315, + "max_y": 5801.965368401951 + }, + "value": null, + "layer": "0", + "id": "3EACBB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.080088176089, + "min_y": 5805.296345534465, + "max_x": 1668.428989744554, + "max_y": 5807.564775153918 + }, + "value": null, + "layer": "0", + "id": "3EACBD" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1661.482739832227, + "min_y": 5800.831153592223, + "max_x": 1662.221861523488, + "max_y": 5800.831153592223 + }, + "value": null, + "layer": "0", + "id": "3EACC0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5822.108899249697, + "max_x": 1683.5677548041865, + "max_y": 5824.348661950484 + }, + "value": "REDUCER", + "layer": "0", + "id": "3EACCC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5816.50949249773, + "max_x": 1706.4133343522121, + "max_y": 5818.749255198517 + }, + "value": "GROUND OR PAVING SURFACE", + "layer": "0", + "id": "3EACCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5850.105933009532, + "max_x": 1701.0379038703236, + "max_y": 5856.384229733488 + }, + "value": "HEAT TRACED", + "layer": "0", + "id": "3EACCE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.105988144318, + "min_y": 5816.868376546693, + "max_x": 1668.50580517174, + "max_y": 5818.390371149554 + }, + "value": null, + "layer": "0", + "id": "3EACCF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.581415001818, + "min_y": 5816.868376546693, + "max_x": 1659.241674219504, + "max_y": 5818.390371149554 + }, + "value": null, + "layer": "0", + "id": "3EACD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1666.077747524286, + "min_y": 5816.868376546693, + "max_x": 1668.123186353891, + "max_y": 5818.390371149554 + }, + "value": null, + "layer": "0", + "id": "3EACDD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.180821277005, + "min_y": 5822.240128391271, + "max_x": 1668.634542857327, + "max_y": 5824.217432808911 + }, + "value": null, + "layer": "0", + "id": "3EACDF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.548274215723, + "min_y": 5828.004310511375, + "max_x": 1668.948091243143, + "max_y": 5829.652064192743 + }, + "value": null, + "layer": "0", + "id": "3EACE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.371813784784, + "min_y": 5833.603717263343, + "max_x": 1668.825535365105, + "max_y": 5835.251470944711 + }, + "value": null, + "layer": "0", + "id": "3EACE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5840.027000855992, + "max_x": 1668.579161468019, + "max_y": 5840.027000855992 + }, + "value": null, + "layer": "0", + "id": "3EACEA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5861.304746513467, + "max_x": 1692.9747581474912, + "max_y": 5863.544509214254 + }, + "value": "FLOW DIRECTION", + "layer": "0", + "id": "3EACED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5862.42462786386, + "max_x": 1668.579161468019, + "max_y": 5862.42462786386 + }, + "value": null, + "layer": "0", + "id": "3EACEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5667.596023313151, + "max_x": 1687.132980210309, + "max_y": 5669.835786013938 + }, + "value": "STEAM TRAP", + "layer": "0", + "id": "3EACEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5688.127181403537, + "max_x": 1701.9154140355017, + "max_y": 5690.366944104324 + }, + "value": "PRESSURE SAFETY VALVE", + "layer": "0", + "id": "3EACF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5850.724023109591, + "max_x": 1668.579161468019, + "max_y": 5851.470610676519 + }, + "value": null, + "layer": "0", + "id": "3EACF1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.251738412835, + "min_y": 5687.428473839854, + "max_x": 1667.13083815096, + "max_y": 5691.473134885423 + }, + "value": null, + "layer": "0", + "id": "3EACF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5684.804639573856, + "max_x": 1661.385953222563, + "max_y": 5687.428473839854 + }, + "value": null, + "layer": "0", + "id": "3EACF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.945993239209, + "min_y": 5690.761957250428, + "max_x": 1661.835608898839, + "max_y": 5691.113820124581 + }, + "value": null, + "layer": "0", + "id": "3EACFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1656.494956332005, + "min_y": 5855.231311748545, + "max_x": 1669.948677912327, + "max_y": 5858.419130475236 + }, + "value": null, + "layer": "0", + "id": "3EACFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1656.494956332005, + "min_y": 5858.419130475236, + "max_x": 1667.955534329208, + "max_y": 5858.419130475236 + }, + "value": null, + "layer": "0", + "id": "3EACFF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1661.1699497963714, + "min_y": 5794.561606737677, + "max_x": 1662.5346515593428, + "max_y": 5795.926308500649 + }, + "value": null, + "layer": "0", + "id": "3EAD05" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1660.901207690522, + "min_y": 5840.565453579476, + "max_x": 1663.051782166943, + "max_y": 5841.329050958802 + }, + "value": null, + "layer": "0", + "id": "3EAD08" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1664.128154120512, + "min_y": 5810.688461226515, + "max_x": 1668.680502372271, + "max_y": 5813.371472965795 + }, + "value": null, + "layer": "0", + "id": "3EAD09" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1659.575805868759, + "min_y": 5812.029967096157, + "max_x": 1664.128795486957, + "max_y": 5812.029967096157 + }, + "value": null, + "layer": "0", + "id": "3EAD0A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.023457616998, + "min_y": 5810.688461226515, + "max_x": 1659.575805868759, + "max_y": 5813.371472965795 + }, + "value": null, + "layer": "0", + "id": "3EAD0B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5742.609716351118, + "max_x": 1707.706968924516, + "max_y": 5744.849479051904 + }, + "value": "PRESSURE REGULATING VALVE", + "layer": "0", + "id": "3EAD0E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1660.056183832642, + "min_y": 5743.644313206285, + "max_x": 1663.5479714267358, + "max_y": 5747.136100800379 + }, + "value": null, + "layer": "0", + "id": "3EAD0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.938392669684, + "min_y": 5742.595382891786, + "max_x": 1668.287294238146, + "max_y": 5749.146329010635 + }, + "value": null, + "layer": "0", + "id": "3EAD10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1656.789442601337, + "min_y": 5747.13610080038, + "max_x": 1661.802077629689, + "max_y": 5749.146329010635 + }, + "value": null, + "layer": "0", + "id": "3EAD18" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5711.644689761861, + "max_x": 1692.5084106921972, + "max_y": 5713.8844524626475 + }, + "value": "BREATHER VALVE", + "layer": "0", + "id": "3EAD1B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1662.526372356025, + "min_y": 5717.920501863492, + "max_x": 1668.023934430603, + "max_y": 5721.047216565736 + }, + "value": null, + "layer": "0", + "id": "3EAD1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.526372356025, + "min_y": 5717.920501863492, + "max_x": 1668.023934430603, + "max_y": 5721.047216565736 + }, + "value": null, + "layer": "0", + "id": "3EAD1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5656.397209809022, + "max_x": 1697.8838411740855, + "max_y": 5658.636972509808 + }, + "value": "PIPE CAP(THREADED)", + "layer": "0", + "id": "3EAD1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5693.726588155566, + "max_x": 1693.8522683126694, + "max_y": 5695.966350856353 + }, + "value": "SPECTACLE BLIND", + "layer": "0", + "id": "3EAD21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.519760521526, + "min_y": 5723.949458667617, + "max_x": 1668.737540699331, + "max_y": 5726.217073265541 + }, + "value": null, + "layer": "0", + "id": "3EAD23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.034365745811, + "min_y": 5723.949458667617, + "max_x": 1660.252145923601, + "max_y": 5726.217073265541 + }, + "value": null, + "layer": "0", + "id": "3EAD24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.252145923601, + "min_y": 5723.949458667617, + "max_x": 1662.519760521526, + "max_y": 5723.949458667617 + }, + "value": null, + "layer": "0", + "id": "3EAD27" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.523027072751, + "min_y": 5726.217073265541, + "max_x": 1665.24401549619, + "max_y": 5728.213343249596 + }, + "value": null, + "layer": "0", + "id": "3EAD29" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.639707620985, + "min_y": 5727.760639967075, + "max_x": 1664.580038230482, + "max_y": 5728.666046532119 + }, + "value": null, + "layer": "0", + "id": "3EAD2E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.187004338463, + "min_y": 5727.760639967075, + "max_x": 1658.639707620985, + "max_y": 5728.666046532119 + }, + "value": null, + "layer": "0", + "id": "3EAD30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5723.963384616189, + "max_x": 1699.2276987945577, + "max_y": 5726.203147316975 + }, + "value": "N2 BLANKETING DVICE", + "layer": "0", + "id": "3EAD37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1659.893670292521, + "min_y": 5704.553000079869, + "max_x": 1662.878236152581, + "max_y": 5711.193400834927 + }, + "value": null, + "layer": "0", + "id": "3EAD38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1660.888525579221, + "min_y": 5705.547855366551, + "max_x": 1661.4854387512316, + "max_y": 5706.542710653235 + }, + "value": "F", + "layer": "0", + "id": "3EAD3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5704.925401659501, + "max_x": 1692.5084106921972, + "max_y": 5707.165164360288 + }, + "value": "FLAME ARRESTER", + "layer": "0", + "id": "3EAD3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5844.506526257565, + "max_x": 1686.2554700451308, + "max_y": 5846.746288958352 + }, + "value": "CAPILLARY", + "layer": "0", + "id": "3EAD40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5845.065849535745, + "max_x": 1668.579161468019, + "max_y": 5846.186965680173 + }, + "value": null, + "layer": "0", + "id": "3EAD41" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5857.01070308642, + "max_x": 1968.700838780164, + "max_y": 5859.250465787207 + }, + "value": "SIPHON TUBE", + "layer": "0", + "id": "3EAD48" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1658.6915292346469, + "min_y": 5677.220294179464, + "max_x": 1664.0803772104794, + "max_y": 5682.609142155297 + }, + "value": null, + "layer": "0", + "id": "3EAD4C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.958591400003, + "min_y": 5678.009472694127, + "max_x": 1663.291198695809, + "max_y": 5681.819963640627 + }, + "value": null, + "layer": "0", + "id": "3EAD4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1664.080377210478, + "min_y": 5679.914718167381, + "max_x": 1667.813315045123, + "max_y": 5679.914718167381 + }, + "value": null, + "layer": "0", + "id": "3EAD50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5673.195430065021, + "max_x": 1693.8522683126694, + "max_y": 5675.435192765808 + }, + "value": "MASS FLOW METER", + "layer": "0", + "id": "3EAD51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5678.794836816987, + "max_x": 1696.5399835536134, + "max_y": 5681.034599517774 + }, + "value": "VORTEX FLOW METER", + "layer": "0", + "id": "3EAD52" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1830.109559143615, + "min_y": 5644.513240907347, + "max_x": 1834.764821255605, + "max_y": 5647.16214807716 + }, + "value": null, + "layer": "0", + "id": "3EAD53" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.392407739679, + "min_y": 5640.925834008024, + "max_x": 1835.881476073964, + "max_y": 5647.16214807716 + }, + "value": null, + "layer": "0", + "id": "3EAD54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.269594703363, + "min_y": 5640.769785666964, + "max_x": 1829.965818659912, + "max_y": 5640.925834008024 + }, + "value": null, + "layer": "0", + "id": "3EAD58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.9085617393, + "min_y": 5640.769785666964, + "max_x": 1836.60478569587, + "max_y": 5646.97190930198 + }, + "value": null, + "layer": "0", + "id": "3EAD5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5643.667933679302, + "max_x": 1859.9478396373102, + "max_y": 5645.907696380089 + }, + "value": "DIAPHRAGM PUMP", + "layer": "0", + "id": "3EAD67" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5578.977228489755, + "max_x": 2061.307339633341, + "max_y": 5627.220556889857 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5617.428306025437, + "max_x": 2061.307339633341, + "max_y": 5617.428306025437 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5596.058691193157, + "max_x": 2061.307339633341, + "max_y": 5596.058691193157 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5578.977228489755, + "max_x": 2061.307339633341, + "max_y": 5585.373883777027 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2030.716327006134, + "min_y": 5580.593491278773, + "max_x": 2043.7554140224365, + "max_y": 5582.404475586593 + }, + "value": "SARF-S&L-000", + "layer": "0", + "id": "3EAD6F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5582.172322232842, + "max_x": 2020.443772287612, + "max_y": 5582.172322232842 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2011.291234331946, + "min_y": 5580.01407377565, + "max_x": 2014.3605171891477, + "max_y": 5584.598546013714 + }, + "value": "NONE", + "layer": "1", + "id": "3EAD72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.499881895315, + "min_y": 5580.040077241211, + "max_x": 2004.6112040057055, + "max_y": 5584.199700241623 + }, + "value": "JOB NO.", + "layer": "1", + "id": "3EAD75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2021.891623315509, + "min_y": 5583.344915648331, + "max_x": 2027.0029454258995, + "max_y": 5584.561897103186 + }, + "value": "DWG NO.", + "layer": "1", + "id": "3EAD7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5593.827932475961, + "max_x": 2004.2414325130326, + "max_y": 5595.044913930816 + }, + "value": "TITLE :", + "layer": "1", + "id": "3EAD7D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5615.197547308241, + "max_x": 2004.2414325130326, + "max_y": 5616.414528763096 + }, + "value": "ONWER :", + "layer": "1", + "id": "3EAD7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1998.584603018804, + "min_y": 5625.189149920567, + "max_x": 2008.278955930061, + "max_y": 5629.082481335708 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "3EAD7F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2055.285816809843, + "min_y": 5580.374273527226, + "max_x": 2060.255237474457, + "max_y": 5580.374273527226 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5627.220556889857, + "max_x": 2061.307339633341, + "max_y": 5650.586366810889 + }, + "value": null, + "layer": "TITLE", + "id": "3EAD85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2009.860745204763, + "min_y": 5587.68523400073, + "max_x": 2047.1152795370558, + "max_y": 5593.717834448479 + }, + "value": "PIPING & INSTRUMENT DIAGRAM", + "layer": "0", + "id": "3EAD87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2057.145511490849, + "min_y": 5581.183151109557, + "max_x": 2058.3097156887334, + "max_y": 5583.1234914393635 + }, + "value": "0", + "layer": "0", + "id": "3EAD88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2016.642284771497, + "min_y": 5621.02615969604, + "max_x": 2040.1597931297586, + "max_y": 5623.639216180291 + }, + "value": "SYMBOL & LEGEND", + "layer": "SH1", + "id": "3EAD8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2016.986282212139, + "min_y": 5610.750378877472, + "max_x": 2062.453465038111, + "max_y": 5613.3634353617235 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "3EAD8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2011.095900160107, + "min_y": 5612.163080405214, + "max_x": 2012.488833396782, + "max_y": 5613.550307473126 + }, + "value": null, + "layer": "0-BAS", + "id": "3EAD94" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2011.942812050973, + "min_y": 5609.676649358723, + "max_x": 2018.8680647667397, + "max_y": 5610.786431013049 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "3EADA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5604.5127398921, + "max_x": 2007.8923768775974, + "max_y": 5605.729721346956 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "3EADA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2026.58221008159, + "min_y": 5599.611292607089, + "max_x": 2028.1344823454353, + "max_y": 5602.198413046832 + }, + "value": "-", + "layer": "SH1", + "id": "3EADA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881691, + "min_y": 5630.172212158847, + "max_x": 2061.307339633345, + "max_y": 5630.172212158847 + }, + "value": null, + "layer": "0", + "id": "3EADBA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5630.172212158889, + "max_x": 2001.590740718897, + "max_y": 5636.976930375827 + }, + "value": null, + "layer": "0", + "id": "3EADBB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5636.976930375827, + "max_x": 2001.590740718897, + "max_y": 5643.781648592806 + }, + "value": null, + "layer": "0", + "id": "3EADBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.50373547127, + "min_y": 5627.985580210373, + "max_x": 2049.136298172073, + "max_y": 5629.082481335708 + }, + "value": "APPD", + "layer": "0", + "id": "3EADC2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.157221963831, + "min_y": 5627.985580210373, + "max_x": 2043.7897846646342, + "max_y": 5629.082481335708 + }, + "value": "CHKD", + "layer": "0", + "id": "3EADC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2035.439613401529, + "min_y": 5627.985580210373, + "max_x": 2038.0721761023322, + "max_y": 5629.082481335708 + }, + "value": "DRWN", + "layer": "0", + "id": "3EADC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2019.296283036992, + "min_y": 5627.985580210373, + "max_x": 2026.5358304642011, + "max_y": 5629.082481335708 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "3EADC7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2053.554857541346, + "min_y": 5627.933340124137, + "max_x": 2057.503701592551, + "max_y": 5629.030241249472 + }, + "value": "REMARK", + "layer": "0", + "id": "3EADC9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1998.188381610469, + "min_y": 5643.781648592806, + "max_x": 2001.590740718949, + "max_y": 5650.586366810308 + }, + "value": null, + "layer": "0", + "id": "3EADCA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.05224488168, + "min_y": 5633.574571267359, + "max_x": 2061.307339633345, + "max_y": 5633.574571267359 + }, + "value": null, + "layer": "0", + "id": "3EADCD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881672, + "min_y": 5636.976930375869, + "max_x": 2061.307339633345, + "max_y": 5636.976930375869 + }, + "value": null, + "layer": "0", + "id": "3EADCE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881664, + "min_y": 5640.37928948438, + "max_x": 2061.307339633345, + "max_y": 5640.37928948438 + }, + "value": null, + "layer": "0", + "id": "3EADCF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881655, + "min_y": 5643.781648592891, + "max_x": 2061.307339633345, + "max_y": 5643.781648592891 + }, + "value": null, + "layer": "0", + "id": "3EADD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881645, + "min_y": 5647.184007701401, + "max_x": 2061.307339633345, + "max_y": 5647.184007701401 + }, + "value": null, + "layer": "0", + "id": "3EADD1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5650.586366809913, + "max_x": 2061.307339633345, + "max_y": 5650.586366809913 + }, + "value": null, + "layer": "0", + "id": "3EADD2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5766.730480580527, + "max_x": 1977.788446179667, + "max_y": 5769.716830848242 + }, + "value": "EQUIPMENT IDENDIFICATION", + "layer": "0", + "id": "3EADD3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5757.436059471841, + "max_x": 1941.105170907514, + "max_y": 5759.675822172628 + }, + "value": "C", + "layer": "0", + "id": "3EADD4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5757.436059471841, + "max_x": 1962.6068928350676, + "max_y": 5759.675822172628 + }, + "value": "COLUMN", + "layer": "0", + "id": "3EADD5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5752.598614506833, + "max_x": 1941.105170907514, + "max_y": 5754.8383772076195 + }, + "value": "K", + "layer": "0", + "id": "3EADD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5752.598614506833, + "max_x": 1967.982323316956, + "max_y": 5754.8383772076195 + }, + "value": "COMPRESSOR", + "layer": "0", + "id": "3EADD7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5739.476034712971, + "max_x": 1941.105170907514, + "max_y": 5745.61409163376 + }, + "value": "E", + "layer": "0", + "id": "3EADD8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5739.476034712971, + "max_x": 1973.3577537988442, + "max_y": 5745.61409163376 + }, + "value": "HEAT EXCHANGER", + "layer": "0", + "id": "3EADD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5747.652152698119, + "max_x": 1941.105170907514, + "max_y": 5749.891915398905 + }, + "value": "F", + "layer": "0", + "id": "3EADDA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5747.652152698119, + "max_x": 1969.326180937428, + "max_y": 5749.891915398905 + }, + "value": "FILTER, FAN", + "layer": "0", + "id": "3EADDB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5727.278351610057, + "max_x": 1941.105170907514, + "max_y": 5733.437800443552 + }, + "value": "T", + "layer": "0", + "id": "3EADDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5727.278351610057, + "max_x": 1959.9191775941233, + "max_y": 5733.437800443552 + }, + "value": "TANK", + "layer": "0", + "id": "3EADDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5719.595484656481, + "max_x": 1942.4490285279862, + "max_y": 5725.598428178132 + }, + "value": "M", + "layer": "0", + "id": "3EADE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5719.595484656481, + "max_x": 1974.7016114193164, + "max_y": 5725.598428178132 + }, + "value": "MIXER, AGITATOR", + "layer": "0", + "id": "3EADE3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5711.972464188924, + "max_x": 1942.4490285279862, + "max_y": 5717.9754077105745 + }, + "value": "R", + "layer": "0", + "id": "3EADE6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5711.972464188924, + "max_x": 1965.2946080760116, + "max_y": 5717.9754077105745 + }, + "value": "REACTOR", + "layer": "0", + "id": "3EADE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5704.252784895537, + "max_x": 1942.4490285279862, + "max_y": 5710.352387243018 + }, + "value": "CT", + "layer": "0", + "id": "3EADEA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5704.252784895537, + "max_x": 1972.013896178372, + "max_y": 5710.352387243018 + }, + "value": "COOLING TOWER", + "layer": "0", + "id": "3EADEB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717848, + "min_y": 5782.898718526593, + "max_x": 1661.335813060599, + "max_y": 5785.167148146046 + }, + "value": null, + "layer": "0", + "id": "3EADEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.368788295116, + "min_y": 5782.898718526593, + "max_x": 1668.337517286311, + "max_y": 5785.167148146046 + }, + "value": null, + "layer": "0", + "id": "3EADED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5782.913051985929, + "max_x": 1705.06947673174, + "max_y": 5785.152814686716 + }, + "value": "TEFLON LINED PLUG VALVE", + "layer": "0", + "id": "3EADEE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1661.465661113252, + "min_y": 5783.531771628964, + "max_x": 1662.238940242465, + "max_y": 5784.665986438692 + }, + "value": null, + "layer": "CONTORNO", + "id": "3EADF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.482673345233, + "min_y": 5693.579744870032, + "max_x": 1664.078168699506, + "max_y": 5696.231074305718 + }, + "value": null, + "layer": "0", + "id": "3EADF6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1660.7782529015408, + "min_y": 5696.231074305722, + "max_x": 1661.9936535435854, + "max_y": 5698.661875589809 + }, + "value": null, + "layer": "0", + "id": "3EADF9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.482673345233, + "min_y": 5699.255058440992, + "max_x": 1664.078168699506, + "max_y": 5701.906387876679 + }, + "value": null, + "layer": "0", + "id": "3EADFE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1660.7782529015408, + "min_y": 5701.906387876683, + "max_x": 1661.9936535435854, + "max_y": 5703.121788518727 + }, + "value": null, + "layer": "0", + "id": "3EAE01" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5699.325994907534, + "max_x": 1680.4136921079485, + "max_y": 5701.56575760832 + }, + "value": "BLIND", + "layer": "0", + "id": "3EAE05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.374888124704, + "min_y": 5667.596290550205, + "max_x": 1671.429944343344, + "max_y": 5669.835518776884 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE06" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1652.099619066612, + "min_y": 5667.596290550205, + "max_x": 1659.3769117038, + "max_y": 5669.835518776884 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE07" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1659.3769117038, + "min_y": 5666.716916453093, + "max_x": 1663.374888124704, + "max_y": 5670.714892873997 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1660.329154788637, + "min_y": 5667.319256671429, + "max_x": 1661.9283453569988, + "max_y": 5669.984574285365 + }, + "value": "T", + "layer": "ECT-FITTINGS", + "id": "3EAE09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1651.778307679774, + "min_y": 5673.180315115349, + "max_x": 1657.783815899238, + "max_y": 5675.450307715471 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1664.98809054589, + "min_y": 5673.180315115377, + "max_x": 1670.993598765356, + "max_y": 5675.4503077155 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE11" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1658.735152070633, + "min_y": 5673.496398177949, + "max_x": 1662.766724932049, + "max_y": 5675.17622020354 + }, + "value": "MASS", + "layer": "ECT-FITTINGS", + "id": "3EAE16" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1657.783815899238, + "min_y": 5673.180315115427, + "max_x": 1664.98809054589, + "max_y": 5675.450307715422 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAE17" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5856.825221111892, + "max_x": 1701.0379038703236, + "max_y": 5859.064983812678 + }, + "value": "CONTINUATION OF LINE", + "layer": "0", + "id": "3EAE1A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1660.0086002396993, + "min_y": 5761.56241481258, + "max_x": 1663.6457780678506, + "max_y": 5769.059498484173 + }, + "value": null, + "layer": "0", + "id": "3EAE1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.096235268525, + "min_y": 5763.680124410019, + "max_x": 1663.507919990854, + "max_y": 5763.680124410019 + }, + "value": null, + "layer": "0", + "id": "3EAE1D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1659.891630103972, + "min_y": 5862.42462786386, + "max_x": 1661.852300677857, + "max_y": 5862.42462786386 + }, + "value": null, + "layer": "0", + "id": "3EAE29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1700.291316303395, + "min_y": 5827.708306001664, + "max_x": 1723.1368958514204, + "max_y": 5829.948068702451 + }, + "value": "(HOSE CONNECTION)", + "layer": "0", + "id": "3EAE2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1700.291316303395, + "min_y": 5833.307712753632, + "max_x": 1719.1053229900042, + "max_y": 5835.547475454418 + }, + "value": "(BLIND FLANGE)", + "layer": "0", + "id": "3EAE2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5652.520990027204, + "max_x": 1776.0910407594583, + "max_y": 5654.760752727991 + }, + "value": "HEAT CONSERVATION", + "layer": "0", + "id": "3EAE2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5643.840285090687, + "max_x": 1780.1226136208745, + "max_y": 5650.165066564967 + }, + "value": "PERSONNEL PROTECTION", + "layer": "0", + "id": "3EAE2E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5639.282110842805, + "max_x": 1774.7471831389862, + "max_y": 5641.521873543592 + }, + "value": "ELECTRIC TRACING", + "layer": "0", + "id": "3EAE30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5634.653361217736, + "max_x": 1770.71561027757, + "max_y": 5636.893123918523 + }, + "value": "STEAM TRACING", + "layer": "0", + "id": "3EAE31" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5630.2727784041, + "max_x": 1758.6208916933213, + "max_y": 5632.512541104887 + }, + "value": "NONE", + "layer": "0", + "id": "3EAE32" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1829.4754884443762, + "min_y": 5630.358932623128, + "max_x": 1835.3988919548358, + "max_y": 5636.282336133588 + }, + "value": null, + "layer": "0", + "id": "3EAE33" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1835.179004024061, + "min_y": 5632.200753027964, + "max_x": 1836.17012803425, + "max_y": 5634.440515728751 + }, + "value": null, + "layer": "0", + "id": "3EAE34" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1828.704252364961, + "min_y": 5632.200753027964, + "max_x": 1829.695376375152, + "max_y": 5634.440515728751 + }, + "value": null, + "layer": "0", + "id": "3EAE35" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5631.605813118238, + "max_x": 1858.603982016838, + "max_y": 5633.845575819025 + }, + "value": "METERING PUMP", + "layer": "0", + "id": "3EAE36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5715.698076644885, + "max_x": 1791.1008076990774, + "max_y": 5717.937839345672 + }, + "value": "SPPS380 (Black Pipe Sch. 40S)", + "layer": "0", + "id": "3EAE38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5612.457621412265, + "max_x": 1684.8613893764907, + "max_y": 5614.697384113052 + }, + "value": "THREADED", + "layer": "0", + "id": "3EAE3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5612.443287952935, + "max_x": 1669.399421461213, + "max_y": 5614.711717572387 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5612.443287952935, + "max_x": 1661.588641284987, + "max_y": 5614.711717572387 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE3F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1659.6024408048254, + "min_y": 5612.895151881177, + "max_x": 1664.7327937668344, + "max_y": 5614.259853644149 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE42" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5606.843881200967, + "max_x": 1669.399421461213, + "max_y": 5609.11231082042 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE50" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5606.843881200967, + "max_x": 1661.588641284987, + "max_y": 5609.11231082042 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE51" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5607.29574512921, + "max_x": 1662.8499681673177, + "max_y": 5608.660446892182 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE54" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5606.858214660299, + "max_x": 1683.5175317560186, + "max_y": 5609.097977361086 + }, + "value": "FLANGED", + "layer": "0", + "id": "3EAE5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1799.68357142243, + "min_y": 5858.95528307439, + "max_x": 1803.0432154736102, + "max_y": 5860.821751991712 + }, + "value": "(6)", + "layer": "0", + "id": "3EAE61" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5834.797359097077, + "max_x": 1766.0110813580363, + "max_y": 5837.037121797864 + }, + "value": "(5) FLANGE RATING", + "layer": "0", + "id": "3EAE63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1647.212080413621, + "min_y": 5869.531254295882, + "max_x": 1692.0073344293571, + "max_y": 5872.517604563597 + }, + "value": "LINE AND VALVE SYMBOLS", + "layer": "0", + "id": "3EAE64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1647.161857365454, + "min_y": 5620.77529742487, + "max_x": 1695.540731702449, + "max_y": 5623.761647692585 + }, + "value": "VALVE CONNECTION SYMBOLS", + "layer": "0", + "id": "3EAE65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1746.950673671031, + "min_y": 5678.350544480054, + "max_x": 1768.4523955985842, + "max_y": 5680.590307180841 + }, + "value": "%%uFLANGE RATING", + "layer": "0", + "id": "3EAE66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5672.873691089346, + "max_x": 1744.140449739247, + "max_y": 5675.113453790133 + }, + "value": "A", + "layer": "0", + "id": "3EAE67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5668.416307559673, + "max_x": 1744.140449739247, + "max_y": 5670.65607026046 + }, + "value": "B", + "layer": "0", + "id": "3EAE68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5672.873691089346, + "max_x": 1758.8482248077476, + "max_y": 5675.113453790133 + }, + "value": "KS10K", + "layer": "0", + "id": "3EAE69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5668.416307559673, + "max_x": 1758.8482248077476, + "max_y": 5670.65607026046 + }, + "value": "KS20K", + "layer": "0", + "id": "3EAE6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5660.244725767918, + "max_x": 1767.7162109438063, + "max_y": 5663.231076035633 + }, + "value": "INSULATION CODES", + "layer": "0", + "id": "3EAE6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5744.405972684711, + "max_x": 1747.0981743663563, + "max_y": 5750.523972176326 + }, + "value": "HOS", + "layer": "0", + "id": "3EAE6C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1831.2913888935514, + "min_y": 5606.40500343809, + "max_x": 1836.0849862183109, + "max_y": 5613.595399425226 + }, + "value": null, + "layer": "0", + "id": "3EAE6E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1829.42319311855, + "min_y": 5606.405003438089, + "max_x": 1836.512794864334, + "max_y": 5613.376240287996 + }, + "value": null, + "layer": "0", + "id": "3EAE70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5607.409782249877, + "max_x": 1854.5724091554218, + "max_y": 5609.649544950664 + }, + "value": "OGDEN PUMP", + "layer": "0", + "id": "3EAE71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5601.244474448998, + "max_x": 1669.399421461213, + "max_y": 5603.512904068452 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5601.244474448998, + "max_x": 1661.588641284987, + "max_y": 5603.512904068452 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE73" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5601.696338377241, + "max_x": 1662.8499681673177, + "max_y": 5603.061040140213 + }, + "value": null, + "layer": "VV-BALL", + "id": "3EAE76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5601.25880790833, + "max_x": 1682.1736741355467, + "max_y": 5603.4985706091165 + }, + "value": "WELDED", + "layer": "0", + "id": "3EAE7B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.1356399368, + "min_y": 5766.121028219703, + "max_x": 1694.2935042438814, + "max_y": 5768.360790920489 + }, + "value": "DIAPHRAGM VALVE", + "layer": "0", + "id": "3EAE7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.988615717854, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5774.8665449346 + }, + "value": null, + "layer": "0", + "id": "3EAE7D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5771.699905022661, + "max_x": 1668.337517286319, + "max_y": 5773.968334642114 + }, + "value": null, + "layer": "0", + "id": "3EAE7E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5774.8665449346 + }, + "value": null, + "layer": "0", + "id": "3EAE8B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1937.002638039044, + "min_y": 5782.393788634947, + "max_x": 1940.698057958318, + "max_y": 5786.089208554222 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "3EAEAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.458674989511, + "min_y": 5594.626776749766, + "max_x": 1836.275642719833, + "max_y": 5600.25462427507 + }, + "value": null, + "layer": "0", + "id": "3EAEAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.712087422582, + "min_y": 5597.986194655618, + "max_x": 1829.429238826518, + "max_y": 5600.25462427507 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "3EAEB2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1829.4292388265178, + "min_y": 5596.18248943719, + "max_x": 1835.3050788828261, + "max_y": 5602.058329493498 + }, + "value": null, + "layer": "0", + "id": "3EAEB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.305078882826, + "min_y": 5597.986194655618, + "max_x": 1837.022230286762, + "max_y": 5600.25462427507 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "3EAEB8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5596.957556312872, + "max_x": 1853.2285515349497, + "max_y": 5599.197319013659 + }, + "value": "GEAR PUMP", + "layer": "0", + "id": "3EAEBB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1830.267513736804, + "min_y": 5608.674286405348, + "max_x": 1832.686923391734, + "max_y": 5613.376240287996 + }, + "value": null, + "layer": "VALVE NO", + "id": "3EAEBC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1831.4466519011717, + "min_y": 5606.682092473003, + "max_x": 1833.6864146019584, + "max_y": 5608.9218551737895 + }, + "value": null, + "layer": "VALVE NO", + "id": "3EAEBE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5690.515593805336, + "max_x": 1990.3311173040731, + "max_y": 5693.501944073051 + }, + "value": "ABBREVIATIONS FOR DETECTING GAS", + "layer": "0", + "id": "3EAEC1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5671.173398586592, + "max_x": 1942.4490285279862, + "max_y": 5673.413161287379 + }, + "value": "EA", + "layer": "0", + "id": "3EAEC2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5666.828890148319, + "max_x": 1942.4490285279862, + "max_y": 5669.068652849106 + }, + "value": "FG", + "layer": "0", + "id": "3EAEC3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1938.132704650495, + "min_y": 5682.138440050257, + "max_x": 1946.1958503733276, + "max_y": 5684.378202751043 + }, + "value": "%%uABB", + "layer": "0", + "id": "3EAEC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5675.888727137298, + "max_x": 1942.4490285279862, + "max_y": 5678.1284898380845 + }, + "value": "HC", + "layer": "0", + "id": "3EAEC5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5671.028389758374, + "max_x": 1970.615086648284, + "max_y": 5673.268152459161 + }, + "value": "ETHYL ACETATE", + "layer": "0", + "id": "3EAEC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5666.683881320101, + "max_x": 1970.615086648284, + "max_y": 5668.923644020888 + }, + "value": "FLAMMABLE GAS", + "layer": "0", + "id": "3EAEC7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1952.292962172188, + "min_y": 5682.064760215101, + "max_x": 1971.1069688587972, + "max_y": 5684.304522915888 + }, + "value": "%%uDESCRIPTION", + "layer": "0", + "id": "3EAEC8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5675.74371830908, + "max_x": 1967.92737140734, + "max_y": 5677.983481009866 + }, + "value": "HYDROCARBON", + "layer": "0", + "id": "3EAEC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5644.86247378639, + "max_x": 1885.17773404966, + "max_y": 5669.24602372229 + }, + "value": null, + "layer": "0", + "id": "3EAECA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5643.667933679302, + "max_x": 1885.17773404966, + "max_y": 5646.728942703713 + }, + "value": null, + "layer": "0", + "id": "3EAECF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1883.744285921155, + "min_y": 5669.24602372229, + "max_x": 1887.504478136509, + "max_y": 5672.271531823168 + }, + "value": null, + "layer": "0", + "id": "3EAED6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1880.7187778202776, + "min_y": 5666.220515621413, + "max_x": 1886.7697940220326, + "max_y": 5672.271531823168 + }, + "value": null, + "layer": "0", + "id": "3EAED7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1882.648295611613, + "min_y": 5664.718579051006, + "max_x": 1884.840276230698, + "max_y": 5664.718579051006 + }, + "value": null, + "layer": "0", + "id": "3EAED9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1891.830647196292, + "min_y": 5666.762908223258, + "max_x": 1909.300796262429, + "max_y": 5669.002670924045 + }, + "value": "DEEPWELL PUMP", + "layer": "0", + "id": "3EAEDC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.08729982169, + "min_y": 5711.263188131461, + "max_x": 1665.350672482581, + "max_y": 5714.426783260364 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAEDF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.273647995029, + "min_y": 5711.263188131461, + "max_x": 1661.273647995029, + "max_y": 5711.263188131461 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAEE3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.196623507477, + "min_y": 5713.240435087026, + "max_x": 1659.296401039464, + "max_y": 5713.240435087026 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAEE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1853.055859344015, + "min_y": 5861.792466440781, + "max_x": 1863.8067203077917, + "max_y": 5864.032229141568 + }, + "value": "PG - 111", + "layer": "0", + "id": "3EAEEB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1864.504602562853, + "min_y": 5857.831889753214, + "max_x": 1867.8642466140332, + "max_y": 5859.698358670536 + }, + "value": "(2)", + "layer": "0", + "id": "3EAEEC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1852.986886926187, + "min_y": 5857.831889753214, + "max_x": 1856.3465309773671, + "max_y": 5859.698358670536 + }, + "value": "(1)", + "layer": "0", + "id": "3EAEED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1852.610424041924, + "min_y": 5860.849883970637, + "max_x": 1856.651890283825, + "max_y": 5860.849883970637 + }, + "value": null, + "layer": "0", + "id": "3EAEEE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1863.273149567988, + "min_y": 5860.849883970637, + "max_x": 1869.380113920109, + "max_y": 5860.849883970637 + }, + "value": null, + "layer": "0", + "id": "3EAEEF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.712087422582, + "min_y": 5584.174550812761, + "max_x": 1829.429238826518, + "max_y": 5586.442980432214 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "3EAEF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.305078882826, + "min_y": 5584.174550812761, + "max_x": 1837.022230286762, + "max_y": 5586.442980432214 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "3EAEF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5586.505330375867, + "max_x": 1858.603982016838, + "max_y": 5588.745093076654 + }, + "value": "VERTICAL PUMP", + "layer": "0", + "id": "3EAEF6" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1830.563453636244, + "min_y": 5586.442980432214, + "max_x": 1834.296391470889, + "max_y": 5590.866078716394 + }, + "value": null, + "layer": "0", + "id": "3EAEF7" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1829.4292388265183, + "min_y": 5584.174550812762, + "max_x": 1835.3050788828248, + "max_y": 5586.4429804322135 + }, + "value": null, + "layer": "0", + "id": "3EAEF8" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1830.563453636244, + "min_y": 5584.174550812761, + "max_x": 1834.170864073099, + "max_y": 5584.174550812761 + }, + "value": null, + "layer": "0", + "id": "3EAEFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1831.807766247792, + "min_y": 5586.442980432214, + "max_x": 1833.05207885934, + "max_y": 5590.866078716394 + }, + "value": null, + "layer": "0", + "id": "3EAEFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1829.138995306607, + "min_y": 5645.837694492253, + "max_x": 1830.109559143615, + "max_y": 5645.837694492253 + }, + "value": null, + "layer": "0", + "id": "3EAEFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.764821255605, + "min_y": 5645.837694492253, + "max_x": 1835.735385092612, + "max_y": 5645.837694492253 + }, + "value": null, + "layer": "0", + "id": "3EAF01" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.08541688863, + "min_y": 5754.934607695122, + "max_x": 1699.6187116775998, + "max_y": 5757.174370395909 + }, + "value": "3-WAY CONTROL VALVE", + "layer": "0", + "id": "3EAF04" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.913281145595, + "min_y": 5754.23590013144, + "max_x": 1663.595555019681, + "max_y": 5758.086914147728 + }, + "value": null, + "layer": "0", + "id": "3EAF05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.595555019681, + "min_y": 5754.920274235789, + "max_x": 1668.262182714059, + "max_y": 5757.188703855241 + }, + "value": null, + "layer": "0", + "id": "3EAF06" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1660.031072308556, + "min_y": 5755.969204550289, + "max_x": 1663.5228599026498, + "max_y": 5759.4609921443825 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAF07" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1660.071123744441, + "min_y": 5758.086914147728, + "max_x": 1663.48280846677, + "max_y": 5758.086914147728 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "3EAF08" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.776966105606, + "min_y": 5751.163274916159, + "max_x": 1661.776966105606, + "max_y": 5754.23590013144 + }, + "value": null, + "layer": "0", + "id": "3EAF11" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.963504193767, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823 + }, + "value": null, + "layer": "0", + "id": "3EAF12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5766.10669476037, + "max_x": 1668.31240576223, + "max_y": 5768.375124379823 + }, + "value": null, + "layer": "0", + "id": "3EAF13" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.160751460886, + "min_y": 5771.714238481994, + "max_x": 1690.287042906551, + "max_y": 5773.95400118278 + }, + "value": "ON/OFF VALVE", + "layer": "0", + "id": "3EAF24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": -176.4865289798189, + "min_y": 5658.225991807964, + "max_x": 1167.3710914922658, + "max_y": 5807.543505193752 + }, + "value": "SYMBOL & LEGEND", + "layer": "0", + "id": "3EAF26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5735.577740492969, + "max_x": 1942.4490285279862, + "max_y": 5737.817503193755 + }, + "value": "VP", + "layer": "0", + "id": "3EAF27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5735.577740492969, + "max_x": 1969.326180937428, + "max_y": 5737.817503193755 + }, + "value": "VACUUM PUMP", + "layer": "0", + "id": "3EAF28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5662.484381710045, + "max_x": 1943.7928861484581, + "max_y": 5664.724144410832 + }, + "value": "MMF", + "layer": "0", + "id": "3EAF2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5662.339372881827, + "max_x": 1975.9905171301723, + "max_y": 5664.579135582614 + }, + "value": "N-METHYLFORMAMIDE", + "layer": "0", + "id": "3EAF2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5697.137787014536, + "max_x": 1745.4843073597192, + "max_y": 5699.377549715323 + }, + "value": "TL", + "layer": "0", + "id": "3EEEC3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5692.658261612963, + "max_x": 1745.4843073597192, + "max_y": 5694.898024313749 + }, + "value": "TC", + "layer": "0", + "id": "3EEEC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5706.096837817684, + "max_x": 1745.4843073597192, + "max_y": 5708.336600518471 + }, + "value": "F1", + "layer": "0", + "id": "3EEEC5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5683.699210809816, + "max_x": 1745.4843073597192, + "max_y": 5685.938973510602 + }, + "value": "PE", + "layer": "0", + "id": "3EEEC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5701.617312416111, + "max_x": 1745.4843073597192, + "max_y": 5703.857075116898 + }, + "value": "F2", + "layer": "0", + "id": "3EEEC7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5697.137787014536, + "max_x": 1768.255228151052, + "max_y": 5699.377549715323 + }, + "value": "TEFLON LINED", + "layer": "0", + "id": "3EEEC8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5692.658261612963, + "max_x": 1769.5990857715242, + "max_y": 5694.898024313749 + }, + "value": "TEFLON COATED", + "layer": "0", + "id": "3EEEC9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5706.096837817684, + "max_x": 1760.1920824282197, + "max_y": 5708.336600518471 + }, + "value": "STS304", + "layer": "0", + "id": "3EEECA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5683.699210809816, + "max_x": 1760.1920824282197, + "max_y": 5685.938973510602 + }, + "value": "PE/FRP", + "layer": "0", + "id": "3EEECB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5701.617312416111, + "max_x": 1760.1920824282197, + "max_y": 5703.857075116898 + }, + "value": "STS316", + "layer": "0", + "id": "3EEECC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5688.178736211389, + "max_x": 1745.4843073597192, + "max_y": 5690.418498912176 + }, + "value": "A1", + "layer": "0", + "id": "3EEECD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5688.178736211389, + "max_x": 1756.1605095668033, + "max_y": 5690.418498912176 + }, + "value": "SPP", + "layer": "0", + "id": "3EEECE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5740.396806285538, + "max_x": 1785.5360714858532, + "max_y": 5746.514805777154 + }, + "value": "HOT OIL RETURN", + "layer": "0", + "id": "3EEED1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5736.649499103054, + "max_x": 1745.7543167458844, + "max_y": 5742.76749859467 + }, + "value": "FO", + "layer": "0", + "id": "3EEED2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5736.518569494709, + "max_x": 1778.8167833834927, + "max_y": 5738.758332195495 + }, + "value": "PR SLURRY", + "layer": "0", + "id": "3EFA2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5732.771262312224, + "max_x": 1745.7543167458844, + "max_y": 5735.011025013011 + }, + "value": "DR", + "layer": "0", + "id": "3EFA2E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5656.510623329792, + "max_x": 1667.155071062425, + "max_y": 5658.300751242505 + }, + "value": null, + "layer": "0", + "id": "3F16A3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5661.996616561281, + "max_x": 1689.820695451253, + "max_y": 5664.236379262068 + }, + "value": "BLIND FLANGE", + "layer": "0", + "id": "3F16A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1652.099619066612, + "min_y": 5661.996883798335, + "max_x": 1667.155071062425, + "max_y": 5664.236112025013 + }, + "value": null, + "layer": "0", + "id": "3F16AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5650.797803056764, + "max_x": 1693.8522683126694, + "max_y": 5653.0375657575505 + }, + "value": "CAMLOCK COUPLER", + "layer": "0", + "id": "4051D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5650.911216577534, + "max_x": 1663.126489767963, + "max_y": 5652.701344490247 + }, + "value": null, + "layer": "0", + "id": "4051D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1664.141865075864, + "min_y": 5650.759930673351, + "max_x": 1666.8295803168082, + "max_y": 5652.999693374138 + }, + "value": "CC", + "layer": "0", + "id": "405236" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5644.165604829088, + "max_x": 1691.164553071725, + "max_y": 5646.405367529875 + }, + "value": "QUICK COUPLER", + "layer": "0", + "id": "405237" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5644.279018349858, + "max_x": 1663.126489767963, + "max_y": 5646.06914626257 + }, + "value": null, + "layer": "0", + "id": "405238" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1664.141865075864, + "min_y": 5644.127732445674, + "max_x": 1666.8295803168082, + "max_y": 5646.367495146461 + }, + "value": "QC", + "layer": "0", + "id": "40523C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1880.632363141864, + "min_y": 5631.660364617771, + "max_x": 1886.606464276164, + "max_y": 5637.63446575207 + }, + "value": null, + "layer": "0", + "id": "41081C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1880.148486176049, + "min_y": 5629.337793823333, + "max_x": 1887.090341241967, + "max_y": 5632.272883457942 + }, + "value": null, + "layer": "0", + "id": "41081D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1883.619413709014, + "min_y": 5629.337793823333, + "max_x": 1887.090341241967, + "max_y": 5634.647415184921 + }, + "value": null, + "layer": "0", + "id": "41081E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1884.282636313322, + "min_y": 5634.647415184921, + "max_x": 1886.606464276162, + "max_y": 5638.494159494838 + }, + "value": null, + "layer": "0", + "id": "410820" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1882.229233574916, + "min_y": 5634.647415184921, + "max_x": 1883.619413709014, + "max_y": 5636.027471085152 + }, + "value": null, + "layer": "0", + "id": "410825" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1891.830647196292, + "min_y": 5633.55101374395, + "max_x": 1899.8937929191245, + "max_y": 5635.790776444736 + }, + "value": "BLOWER", + "layer": "0", + "id": "410858" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1661.201172799749, + "min_y": 5639.686079427514, + "max_x": 1661.570733645377, + "max_y": 5639.686079427514 + }, + "value": null, + "layer": "0", + "id": "410E18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1654.522268262558, + "min_y": 5638.551864617785, + "max_x": 1667.87116983102, + "max_y": 5640.820294237239 + }, + "value": null, + "layer": "0", + "id": "410E19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5638.566198077121, + "max_x": 1681.7575497284206, + "max_y": 5640.805960777908 + }, + "value": "DAMPER", + "layer": "0", + "id": "410E1C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1659.5673643084833, + "min_y": 5637.867490513435, + "max_x": 1663.2045421366429, + "max_y": 5641.504668341594 + }, + "value": null, + "layer": "0", + "id": "410E20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1836.17012803425, + "min_y": 5632.18641956863, + "max_x": 1837.887279438186, + "max_y": 5634.454849188084 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "46E385" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1826.987100961025, + "min_y": 5632.18641956863, + "max_x": 1828.704252364961, + "max_y": 5634.454849188084 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "46E388" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1829.4754884443762, + "min_y": 5618.296812062062, + "max_x": 1835.3988919548358, + "max_y": 5624.220215572522 + }, + "value": null, + "layer": "0", + "id": "46E38B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1835.179004024061, + "min_y": 5620.1386324669, + "max_x": 1836.17012803425, + "max_y": 5622.378395167686 + }, + "value": null, + "layer": "0", + "id": "46E38C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1828.704252364961, + "min_y": 5620.1386324669, + "max_x": 1829.695376375152, + "max_y": 5622.378395167686 + }, + "value": null, + "layer": "0", + "id": "46E38D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5619.543692557172, + "max_x": 1855.916266775894, + "max_y": 5621.783455257959 + }, + "value": "ROTARY PUMP", + "layer": "0", + "id": "46E38E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1836.17012803425, + "min_y": 5620.124299007565, + "max_x": 1837.887279438186, + "max_y": 5622.392728627018 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "46E38F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1826.987100961025, + "min_y": 5620.124299007565, + "max_x": 1828.704252364961, + "max_y": 5622.392728627018 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "46E392" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.51084377413, + "min_y": 5631.40724203612, + "max_x": 2000.0707844493268, + "max_y": 5632.340476494781 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "4B1F1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2017.244940305016, + "min_y": 5631.408644693123, + "max_x": 2026.203991108163, + "max_y": 5632.341879151784 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "4B1F1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.86883635738, + "min_y": 5631.40724203612, + "max_x": 2009.468243109347, + "max_y": 5632.340476494781 + }, + "value": "2008.09.24", + "layer": "REV.UPDATE", + "id": "4B1F1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2035.6976087317, + "min_y": 5631.420801053806, + "max_x": 2038.4973121076835, + "max_y": 5632.354035512467 + }, + "value": "L.H.J", + "layer": "REV.UPDATE", + "id": "4B1F20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.082532769701, + "min_y": 5631.40724203612, + "max_x": 2043.8822361456844, + "max_y": 5632.340476494781 + }, + "value": "K.H.M", + "layer": "REV.UPDATE", + "id": "4B1F21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.805893458342, + "min_y": 5631.408644693123, + "max_x": 2049.6055968343258, + "max_y": 5632.341879151784 + }, + "value": "S.J.J", + "layer": "REV.UPDATE", + "id": "4B1F22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2085.885351472484, + "min_y": 5618.973316283955, + "max_x": 2091.827803667838, + "max_y": 5625.775030870935 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2088.826409952134, + "min_y": 5624.240747552514, + "max_x": 2089.698844421535, + "max_y": 5625.155070990085 + }, + "value": null, + "layer": "0", + "id": "4C42C1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2087.369496047298, + "min_y": 5625.775030870935, + "max_x": 2091.155758326372, + "max_y": 5629.518464521854 + }, + "value": null, + "layer": "0", + "id": "4C42C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2088.554664094372, + "min_y": 5623.627732277042, + "max_x": 2093.230748624591, + "max_y": 5627.139450291858 + }, + "value": "I/P", + "layer": "0", + "id": "4C42C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2078.861257179975, + "min_y": 5621.788070554145, + "max_x": 2086.3271328492647, + "max_y": 5629.2539462234345 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "4C42C6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2080.550620826576, + "min_y": 5623.189379153911, + "max_x": 2084.5792372012274, + "max_y": 5627.854319577731 + }, + "value": "XV", + "layer": "INSTRUMENT", + "id": "4C42C8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2091.295593651111, + "min_y": 5621.805876842346, + "max_x": 2092.5856969667643, + "max_y": 5622.880962938724 + }, + "value": "FC", + "layer": "0", + "id": "4C42CA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5619.719903850885, + "max_x": 2119.423334787963, + "max_y": 5624.103669245966 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5618.973316283955, + "max_x": 2119.423334787963, + "max_y": 5618.973316283955 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2106.846454708329, + "min_y": 5611.550926062262, + "max_x": 2109.07004783744, + "max_y": 5613.790154288939 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2100.624885158307, + "min_y": 5611.550926062262, + "max_x": 2102.848478287425, + "max_y": 5613.790154288939 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42D4" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2102.848478287425, + "min_y": 5610.671551965149, + "max_x": 2106.846454708329, + "max_y": 5614.669528386053 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2103.800721372261, + "min_y": 5611.273892183485, + "max_x": 2105.3999119406226, + "max_y": 5613.939209797421 + }, + "value": "T", + "layer": "ECT-FITTINGS", + "id": "4C42D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.708151441964, + "min_y": 5618.973316283955, + "max_x": 2128.76242288508, + "max_y": 5627.18789700087 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42DB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2126.185104486754, + "min_y": 5620.173459169479, + "max_x": 2126.905190218068, + "max_y": 5621.373602055003 + }, + "value": "F", + "layer": "ECT-FITTINGS", + "id": "4C42DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2128.76242288508, + "min_y": 5623.364643722752, + "max_x": 2128.76242288508, + "max_y": 5625.73734006943 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2102.558235108742, + "min_y": 5619.648800273086, + "max_x": 2107.754099737167, + "max_y": 5627.015791827211 + }, + "value": null, + "layer": "0", + "id": "4C42EB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2095.534140816233, + "min_y": 5623.147928647624, + "max_x": 2103.000016485523, + "max_y": 5630.613804316914 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "4C42EC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2104.189617026042, + "min_y": 5621.382104691938, + "max_x": 2107.6814046201357, + "max_y": 5624.873892286032 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2104.799733032697, + "min_y": 5618.973316283955, + "max_x": 2108.500687304096, + "max_y": 5622.601603996888 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C42F5" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2104.042379683554, + "min_y": 5627.015791827211, + "max_x": 2107.828641962625, + "max_y": 5630.759225478131 + }, + "value": null, + "layer": "0", + "id": "4C42F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2105.227547730627, + "min_y": 5625.124438983174, + "max_x": 2109.9590567067366, + "max_y": 5628.380211248135 + }, + "value": "I/P", + "layer": "0", + "id": "4C42FA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2097.223504462835, + "min_y": 5624.549237247391, + "max_x": 2101.2521208374865, + "max_y": 5629.2141776712115 + }, + "value": "XV", + "layer": "INSTRUMENT", + "id": "4C4300" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2108.023901733257, + "min_y": 5623.302583548478, + "max_x": 2109.31400504891, + "max_y": 5624.377669644856 + }, + "value": "FC", + "layer": "0", + "id": "4C4302" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2086.697450705829, + "min_y": 5611.550926062232, + "max_x": 2088.970021090652, + "max_y": 5613.820918662355 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C4304" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2096.174295737304, + "min_y": 5611.550926062262, + "max_x": 2098.446866122129, + "max_y": 5613.820918662385 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C4305" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2089.921357262047, + "min_y": 5611.867009124834, + "max_x": 2093.9529301234634, + "max_y": 5613.546831150425 + }, + "value": "MASS", + "layer": "ECT-FITTINGS", + "id": "4C430A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2088.970021090652, + "min_y": 5611.550926062311, + "max_x": 2096.174295737304, + "max_y": 5613.820918662306 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C430B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2114.052081428785, + "min_y": 5611.550926062262, + "max_x": 2118.435846823865, + "max_y": 5613.819355681715 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C430C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2115.501109497226, + "min_y": 5612.685140871988, + "max_x": 2116.240231188487, + "max_y": 5612.685140871988 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C430E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2113.305493861856, + "min_y": 5611.550926062262, + "max_x": 2113.305493861856, + "max_y": 5613.819355681715 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C4314" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2123.852288829787, + "min_y": 5611.550926062262, + "max_x": 2125.838489309944, + "max_y": 5613.819355681715 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4315" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2120.708136347935, + "min_y": 5611.550926062262, + "max_x": 2122.694336828097, + "max_y": 5613.819355681715 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4316" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2122.590961947456, + "min_y": 5612.002789990505, + "max_x": 2123.955663710428, + "max_y": 5613.367491753477 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4319" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2087.1772213781474, + "min_y": 5601.537064022978, + "max_x": 2093.1006248886065, + "max_y": 5607.460467533438 + }, + "value": null, + "layer": "0", + "id": "4C431E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5599.234203109201, + "max_x": 2093.580395561, + "max_y": 5602.144384884514 + }, + "value": null, + "layer": "0", + "id": "4C431F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2091.935744742315, + "min_y": 5599.234203109201, + "max_x": 2093.580395561, + "max_y": 5602.144384884514 + }, + "value": null, + "layer": "0", + "id": "4C4320" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2089.481328791688, + "min_y": 5603.841171436518, + "max_x": 2090.7965174750657, + "max_y": 5605.156360119897 + }, + "value": null, + "layer": "0", + "id": "4C4322" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2105.414784077319, + "min_y": 5601.078840530107, + "max_x": 2106.663255461473, + "max_y": 5603.312969198761 + }, + "value": null, + "layer": "0", + "id": "4C4323" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2098.7201444874445, + "min_y": 5599.234203109201, + "max_x": 2104.6435479979036, + "max_y": 5605.157606619661 + }, + "value": null, + "layer": "0", + "id": "4C4326" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2104.423660067128, + "min_y": 5601.076023514038, + "max_x": 2105.414784077319, + "max_y": 5603.315786214825 + }, + "value": null, + "layer": "0", + "id": "4C4327" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2097.94890840803, + "min_y": 5601.076023514038, + "max_x": 2098.94003241822, + "max_y": 5603.315786214825 + }, + "value": null, + "layer": "0", + "id": "4C4328" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2096.549717278614, + "min_y": 5601.15111741982, + "max_x": 2097.94890840803, + "max_y": 5603.240692309058 + }, + "value": null, + "layer": "0", + "id": "4C4329" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5595.935611169664, + "max_x": 2096.3286795005174, + "max_y": 5597.4754480264555 + }, + "value": "\\pi0.31456; \\fArial|b1|i1|c238|p34; .3333x; P-5101", + "layer": "0", + "id": "4C432C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2109.111681054468, + "min_y": 5601.078840530107, + "max_x": 2110.640866094463, + "max_y": 5602.951287895296 + }, + "value": null, + "layer": "0", + "id": "4C4330" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2114.730764400747, + "min_y": 5601.078840530107, + "max_x": 2116.259949440741, + "max_y": 5602.951287895296 + }, + "value": null, + "layer": "0", + "id": "4C4334" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5601.078840530107, + "max_x": 2123.325200171498, + "max_y": 5605.462605925186 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C4338" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2122.190985361769, + "min_y": 5603.274456165484, + "max_x": 2122.190985361769, + "max_y": 5604.013577856743 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C433A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5606.209193492116, + "max_x": 2123.325200171498, + "max_y": 5606.209193492116 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C4340" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5601.078840530107, + "max_x": 2129.589225972584, + "max_y": 5603.065041010262 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4341" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5604.222993011954, + "max_x": 2129.589225972584, + "max_y": 5606.209193492116 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4342" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2127.7726602813723, + "min_y": 5602.961666129623, + "max_x": 2129.137362044344, + "max_y": 5604.326367892595 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4345" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2134.471534353261, + "min_y": 5601.825428097035, + "max_x": 2136.739963972714, + "max_y": 5605.462605925186 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C434A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2135.605749162987, + "min_y": 5603.274456165484, + "max_x": 2135.605749162987, + "max_y": 5604.013577856743 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C434C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5601.825428097035, + "max_x": 2143.0039897738, + "max_y": 5603.065041010262 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4351" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5604.222993011954, + "max_x": 2143.0039897738, + "max_y": 5605.462605925186 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4352" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2141.18742408259, + "min_y": 5601.078840530106, + "max_x": 2142.552125845562, + "max_y": 5606.209193492115 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C4355" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2135.232455379523, + "min_y": 5601.078840530106, + "max_x": 2135.9790429464515, + "max_y": 5601.825428097036 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C4358" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2135.232455379523, + "min_y": 5605.462605925186, + "max_x": 2135.9790429464515, + "max_y": 5606.209193492115 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "4C4359" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2096.8490779764043, + "min_y": 5636.213222872858, + "max_x": 2100.340865570498, + "max_y": 5639.7050104669515 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C435C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2096.029795292441, + "min_y": 5635.164292558354, + "max_x": 2103.259082901948, + "max_y": 5641.167349083882 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C435D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2098.594971773451, + "min_y": 5641.167349083882, + "max_x": 2103.259082901948, + "max_y": 5641.167349083882 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C4365" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5586.206681684446, + "max_x": 2098.672071957884, + "max_y": 5591.033591837561 + }, + "value": null, + "layer": "0", + "id": "4C4368" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2098.67205992896, + "min_y": 5586.206669655523, + "max_x": 2101.08552101998, + "max_y": 5591.033591837561 + }, + "value": null, + "layer": "0", + "id": "4C436B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2089.017427127902, + "min_y": 5587.783154939311, + "max_x": 2096.0692067249684, + "max_y": 5589.46215008147 + }, + "value": "BT-6200", + "layer": "0", + "id": "4C436E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5584.340212767124, + "max_x": 2098.1265647778446, + "max_y": 5585.610114330689 + }, + "value": "SARF-#6-PID-002", + "layer": "0", + "id": "4C4373" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5594.577369558994, + "max_x": 2135.901487232748, + "max_y": 5594.577369558994 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "4C4374" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5590.84443172435, + "max_x": 2135.901487232748, + "max_y": 5590.84443172435 + }, + "value": null, + "layer": "WATER", + "id": "4C4375" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5587.111493889705, + "max_x": 2135.901487232748, + "max_y": 5587.111493889705 + }, + "value": null, + "layer": "UTIL", + "id": "4C4376" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5583.378556055061, + "max_x": 2135.901487232748, + "max_y": 5583.378556055061 + }, + "value": null, + "layer": "STEAM LINE", + "id": "4C4377" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5579.645618220416, + "max_x": 2135.901487232748, + "max_y": 5579.645618220416 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "4C4378" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2129.077660247577, + "min_y": 5609.591169101861, + "max_x": 2134.7448930912, + "max_y": 5613.851994080928 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C4379" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2134.7448930912, + "min_y": 5611.583564461476, + "max_x": 2135.491480658129, + "max_y": 5613.851994080928 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C437C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2108.014037222753, + "min_y": 5634.122714801173, + "max_x": 2110.28446182051, + "max_y": 5643.637692607622 + }, + "value": null, + "layer": "UTIL", + "id": "4C4380" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2108.210074692521, + "min_y": 5641.489026461791, + "max_x": 2109.520818201303, + "max_y": 5642.576014098393 + }, + "value": null, + "layer": "PSV", + "id": "4C4382" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2111.012384698267, + "min_y": 5639.684920327193, + "max_x": 2113.895335543056, + "max_y": 5641.387738775511 + }, + "value": null, + "layer": "PSV", + "id": "4C438C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2112.100523627847, + "min_y": 5639.657297393101, + "max_x": 2127.0322749664256, + "max_y": 5640.963825635226 + }, + "value": ".9; PSV-6203 SP : 0.85 MPa Ax40A", + "layer": "PSV", + "id": "4C4390" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5605.875371405963, + "max_x": 2148.270865633178, + "max_y": 5610.382176370167 + }, + "value": null, + "layer": "0", + "id": "4C4394" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5600.507644020606, + "max_x": 2148.270865633178, + "max_y": 5604.717419404272 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C4395" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2146.454299941968, + "min_y": 5604.6140445236315, + "max_x": 2147.81900170494, + "max_y": 5605.978746286603 + }, + "value": null, + "layer": "VV-BALL", + "id": "4C439D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2132.944886267881, + "min_y": 5633.523686023552, + "max_x": 2147.87663760646, + "max_y": 5640.989561692842 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "4C43A2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2142.100125583772, + "min_y": 5634.926676577384, + "max_x": 2146.1287419584232, + "max_y": 5639.592457978235 + }, + "value": "PIC", + "layer": "INSTRUMENT", + "id": "4C43A3" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2140.410761937171, + "min_y": 5633.523686023552, + "max_x": 2147.87663760646, + "max_y": 5640.989561692842 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "4C43A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2140.410761937171, + "min_y": 5637.256623858197, + "max_x": 2147.87663760646, + "max_y": 5637.256623858197 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "4C43A6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5633.523686023552, + "max_x": 2153.0480896995273, + "max_y": 5636.883330074733 + }, + "value": "LL", + "layer": "INSTRUMENT", + "id": "4C43A7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5637.629917641661, + "max_x": 2153.0480896995273, + "max_y": 5640.9895616928425 + }, + "value": "H", + "layer": "INSTRUMENT", + "id": "4C43A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2134.634249914483, + "min_y": 5634.926676577384, + "max_x": 2138.6628662891344, + "max_y": 5639.592457978235 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "4C43B0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2104.281077354528, + "min_y": 5593.994304121697, + "max_x": 2123.222637028216, + "max_y": 5596.154941201772 + }, + "value": "VG-6203-15A-F1A-n", + "layer": "LINENO", + "id": "4C43B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2109.730867477728, + "min_y": 5578.977228489755, + "max_x": 2121.153657251741, + "max_y": 5580.097109840149 + }, + "value": "VG-6203-15A-F1A-n", + "layer": "LINENO", + "id": "4C43B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2137.385720601309, + "min_y": 5611.583564461476, + "max_x": 2138.132308168239, + "max_y": 5614.234893897163 + }, + "value": null, + "layer": "0", + "id": "4C8F73" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2137.151314063752, + "min_y": 5614.234893897166, + "max_x": 2138.3667147057963, + "max_y": 5615.4502945392105 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "4C8F76" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2141.123691705212, + "min_y": 5619.874102083892, + "max_x": 2141.123691705212, + "max_y": 5621.834772657777 + }, + "value": null, + "layer": "0", + "id": "4D5AF1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2143.017744776481, + "min_y": 5622.677300629372, + "max_x": 2144.978415350365, + "max_y": 5622.677300629372 + }, + "value": null, + "layer": "0", + "id": "4D5AF2" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2137.411347685524, + "min_y": 5623.131873366475, + "max_x": 2139.372018259408, + "max_y": 5623.131873366475 + }, + "value": null, + "layer": "0", + "id": "4D5AF3" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2140.366070476705, + "min_y": 5625.177450683446, + "max_x": 2140.366070476705, + "max_y": 5627.138121257329 + }, + "value": null, + "layer": "0", + "id": "4D5AF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 110.1582734523338, + "min_y": 5178.569273229499, + "max_x": 916.4728457355847, + "max_y": 5327.886786615287 + }, + "value": "#10 PLANT", + "layer": "0", + "id": "501D34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1936.70993759693, + "min_y": 5776.220454907806, + "max_x": 1939.3976528378744, + "max_y": 5777.713630041664 + }, + "value": "VVF", + "layer": "0", + "id": "50733D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1935.610201884227, + "min_y": 5774.937430332601, + "max_x": 1940.698057958318, + "max_y": 5779.051957418605 + }, + "value": null, + "layer": "0", + "id": "50733E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.794165970641, + "min_y": 5776.084296511353, + "max_x": 1994.173040307636, + "max_y": 5778.32405921214 + }, + "value": "VARIABLE VOLTAGE FREQUENCY INVERTER", + "layer": "0", + "id": "50736C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 445.7890193938404, + "min_y": 6376.919391471711, + "max_x": 714.5605434882574, + "max_y": 6526.236904857498 + }, + "value": "PFD", + "layer": "0", + "id": "510267" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5711.050086406004, + "max_x": 1745.4843073597192, + "max_y": 5713.289849106791 + }, + "value": "S2", + "layer": "0", + "id": "515814" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5711.050086406004, + "max_x": 1797.820095801438, + "max_y": 5713.289849106791 + }, + "value": "SPPS380 (Galvanized Pipe Sch. 10S)", + "layer": "0", + "id": "515815" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1771.065527997345, + "min_y": 5314.402801145791, + "max_x": 1771.065527997345, + "max_y": 5315.448023739492 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "51585B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2143.218510423556, + "min_y": 5614.157110531357, + "max_x": 2143.82367816475, + "max_y": 5614.762278272551 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "516809" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2143.414148111821, + "min_y": 5613.563611427917, + "max_x": 2143.816083349303, + "max_y": 5613.961944435328 + }, + "value": "R", + "layer": "PSV", + "id": "516846" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2142.784465860787, + "min_y": 5613.977954445787, + "max_x": 2144.258019601716, + "max_y": 5613.977954445787 + }, + "value": null, + "layer": "0", + "id": "516851" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.153074366603, + "min_y": 5613.287723405028, + "max_x": 2150.229426204492, + "max_y": 5614.33251084964 + }, + "value": null, + "layer": "0", + "id": "516867" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.759574362101, + "min_y": 5613.287728329719, + "max_x": 2148.153076375552, + "max_y": 5614.332515774341 + }, + "value": null, + "layer": "0", + "id": "516868" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2148.6719859125506, + "min_y": 5613.487654329099, + "max_x": 2149.316916433915, + "max_y": 5614.132584850464 + }, + "value": null, + "layer": "0", + "id": "51686F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2142.908947207821, + "min_y": 5613.027622540832, + "max_x": 2144.133241380485, + "max_y": 5614.762278272552 + }, + "value": null, + "layer": "0", + "id": "516871" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1660.0142940826513, + "min_y": 5736.83207376485, + "max_x": 1662.639152816541, + "max_y": 5739.456932498741 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "51725C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1660.86285434085, + "min_y": 5734.257826660824, + "max_x": 1662.6062110116472, + "max_y": 5735.985558994073 + }, + "value": "R", + "layer": "PSV", + "id": "51725D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1659.843585062394, + "min_y": 5739.456932498741, + "max_x": 1662.809861836796, + "max_y": 5739.456932498741 + }, + "value": null, + "layer": "0", + "id": "517261" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1658.671592455977, + "min_y": 5731.93302476581, + "max_x": 1663.981854443215, + "max_y": 5736.832073764841 + }, + "value": null, + "layer": "0", + "id": "517262" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.607320370645, + "min_y": 5734.208349809123, + "max_x": 1691.0774694367822, + "max_y": 5736.44811250991 + }, + "value": "AIR REGULATOR", + "layer": "0", + "id": "517291" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4078.870010267297, + "min_y": 5221.629730063514, + "max_x": 4078.870010267297, + "max_y": 5223.122905197372 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "5201B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 2506.838132792086, + "max_y": 6749.558735814638 + }, + "value": null, + "layer": "TIT", + "id": "526126" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 2513.372299271905, + "max_y": 6749.558735814638 + }, + "value": null, + "layer": "0", + "id": "526128" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6095.792729115581, + "max_x": 2267.401929657288, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "526129" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2207.693152820926, + "min_y": 6096.812645253775, + "max_x": 2209.330365320926, + "max_y": 6099.541332753775 + }, + "value": "F", + "layer": "0", + "id": "52612B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2325.302176623063, + "min_y": 6096.437105143682, + "max_x": 2326.939389123063, + "max_y": 6099.165792643682 + }, + "value": "G", + "layer": "0", + "id": "52612C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6095.792729115581, + "max_x": 2387.816303967786, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "52612D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2446.659614220975, + "min_y": 6099.101461942019, + "max_x": 2448.296826720975, + "max_y": 6101.830149442019 + }, + "value": "H", + "layer": "0", + "id": "52612F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6149.604849859353, + "max_x": 2516.391669016539, + "max_y": 6152.333537359353 + }, + "value": "1", + "layer": "0", + "id": "526130" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6263.469848304183, + "max_x": 2516.391669016539, + "max_y": 6266.198535804183 + }, + "value": "2", + "layer": "0", + "id": "526134" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6379.245905337712, + "max_x": 2516.391669016539, + "max_y": 6381.974592837712 + }, + "value": "3", + "layer": "0", + "id": "526137" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6487.867121038251, + "max_x": 2516.391669016539, + "max_y": 6490.595808538251 + }, + "value": "4", + "layer": "0", + "id": "52613A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6601.021285843831, + "max_x": 2516.391669016539, + "max_y": 6603.749973343831 + }, + "value": "5", + "layer": "0", + "id": "52613D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1605.561528039671, + "min_y": 6752.783927112588, + "max_x": 1607.198740539671, + "max_y": 6755.512614612588 + }, + "value": "A", + "layer": "0", + "id": "526140" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6749.558735814638, + "max_x": 1668.812784657286, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "526141" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1726.057851786716, + "min_y": 6752.727160107912, + "max_x": 1727.695064286716, + "max_y": 6755.455847607912 + }, + "value": "B", + "layer": "0", + "id": "526143" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6749.558735814638, + "max_x": 1788.530613657286, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "526144" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1849.032888229783, + "min_y": 6752.974411882354, + "max_x": 1850.6701007297831, + "max_y": 6755.703099382354 + }, + "value": "C", + "layer": "0", + "id": "526146" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6749.558735814638, + "max_x": 1908.248442657286, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "526147" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1968.001238067512, + "min_y": 6752.699342947678, + "max_x": 1969.638450567512, + "max_y": 6755.428030447678 + }, + "value": "D", + "layer": "0", + "id": "526149" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6749.558735814638, + "max_x": 2027.966271657287, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "52614A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2088.277524840135, + "min_y": 6752.606302833175, + "max_x": 2089.9147373401347, + "max_y": 6755.334990333175 + }, + "value": "E", + "layer": "0", + "id": "52614C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6749.558735814638, + "max_x": 2149.392865407285, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "52614D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2209.613576310884, + "min_y": 6752.513262718671, + "max_x": 2211.250788810884, + "max_y": 6755.241950218671 + }, + "value": "F", + "layer": "0", + "id": "52614F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6749.558735814638, + "max_x": 2267.401929657288, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "526150" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2324.148887242639, + "min_y": 6752.901227847823, + "max_x": 2325.7860997426387, + "max_y": 6755.629915347823 + }, + "value": "G", + "layer": "0", + "id": "526152" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6749.558735814638, + "max_x": 2387.119758657286, + "max_y": 6756.092902294456 + }, + "value": null, + "layer": "0", + "id": "526153" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2446.659614220975, + "min_y": 6752.784169468018, + "max_x": 2448.296826720975, + "max_y": 6755.512856968018 + }, + "value": "H", + "layer": "0", + "id": "526155" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6149.604849859353, + "max_x": 1544.462025388398, + "max_y": 6152.333537359353 + }, + "value": "1", + "layer": "0", + "id": "526157" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6213.309553298413, + "max_x": 1549.094955657286, + "max_y": 6213.309553298413 + }, + "value": null, + "layer": "0", + "id": "526158" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6263.469848304183, + "max_x": 1544.462025388398, + "max_y": 6266.198535804183 + }, + "value": "2", + "layer": "0", + "id": "52615A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6324.288305798414, + "max_x": 1549.094955657286, + "max_y": 6324.288305798414 + }, + "value": null, + "layer": "0", + "id": "52615B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6379.245905337712, + "max_x": 1544.462025388398, + "max_y": 6381.974592837712 + }, + "value": "3", + "layer": "0", + "id": "52615D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6435.267058298413, + "max_x": 1549.094955657286, + "max_y": 6435.267058298413 + }, + "value": null, + "layer": "0", + "id": "52615E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6487.867121038251, + "max_x": 1544.462025388398, + "max_y": 6490.595808538251 + }, + "value": "4", + "layer": "0", + "id": "526160" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6546.245810798414, + "max_x": 1549.094955657286, + "max_y": 6546.245810798414 + }, + "value": null, + "layer": "0", + "id": "526161" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6601.021285843831, + "max_x": 1544.462025388398, + "max_y": 6603.749973343831 + }, + "value": "5", + "layer": "0", + "id": "526163" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6638.579983314638, + "max_x": 1549.094955657286, + "max_y": 6638.579983314638 + }, + "value": null, + "layer": "0", + "id": "526164" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6701.44994302363, + "max_x": 1544.462025388398, + "max_y": 6704.17863052363 + }, + "value": "6", + "layer": "0", + "id": "526166" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6095.792729115581, + "max_x": 1668.812784657286, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "526167" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1609.024885015978, + "min_y": 6095.88517951682, + "max_x": 1610.662097515978, + "max_y": 6098.61386701682 + }, + "value": "A", + "layer": "0", + "id": "526169" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6095.792729115581, + "max_x": 1788.530613657286, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "52616A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1726.057851786716, + "min_y": 6099.158471302125, + "max_x": 1727.695064286716, + "max_y": 6101.887158802125 + }, + "value": "B", + "layer": "0", + "id": "52616C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1849.032888229783, + "min_y": 6098.911219527684, + "max_x": 1850.6701007297831, + "max_y": 6101.639907027684 + }, + "value": "C", + "layer": "0", + "id": "52616D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6095.792729115581, + "max_x": 1908.248442657286, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "52616E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1968.001238067512, + "min_y": 6099.18628846236, + "max_x": 1969.638450567512, + "max_y": 6101.91497596236 + }, + "value": "D", + "layer": "0", + "id": "526170" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6095.792729115581, + "max_x": 2027.966271657287, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "526171" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6095.792729115581, + "max_x": 2149.392865407285, + "max_y": 6102.3268955954 + }, + "value": null, + "layer": "0", + "id": "526173" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2088.277524840135, + "min_y": 6099.279328576863, + "max_x": 2089.9147373401347, + "max_y": 6102.008016076863 + }, + "value": "E", + "layer": "0", + "id": "526175" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2373.248975655953, + "min_y": 6177.087770485517, + "max_x": 2391.746425912946, + "max_y": 6179.459238467182 + }, + "value": "PROJECT NAME:", + "layer": "0", + "id": "52617A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2373.467271888614, + "min_y": 6158.890032689154, + "max_x": 2382.004556622611, + "max_y": 6161.26150067082 + }, + "value": "TITLE:", + "layer": "0", + "id": "52617B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2373.248975655953, + "min_y": 6131.593425994609, + "max_x": 2384.6320219679487, + "max_y": 6133.964893976275 + }, + "value": "DWG. NO.", + "layer": "0", + "id": "52617C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6102.326895103239, + "max_x": 2370.087909579901, + "max_y": 6301.588336271909 + }, + "value": null, + "layer": "0", + "id": "52617D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.380843739732, + "min_y": 6108.182066474209, + "max_x": 2417.476468739732, + "max_y": 6111.213941474209 + }, + "value": "SCALE", + "layer": "0", + "id": "52617E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2422.7662740662, + "min_y": 6102.3268955954, + "max_x": 2422.7662740662, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "52617F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.482224624377, + "min_y": 6102.3268955954, + "max_x": 2439.482224624377, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "526180" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2442.303773806734, + "min_y": 6108.24877354097, + "max_x": 2449.2600798862873, + "max_y": 6111.147234407451 + }, + "value": "DATE", + "layer": "0", + "id": "526181" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2454.57697734167, + "min_y": 6102.3268955954, + "max_x": 2454.57697734167, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "526182" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2479.558051898133, + "min_y": 6102.3268955954, + "max_x": 2479.558051898133, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "526183" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2490.551165872301, + "min_y": 6102.3268955954, + "max_x": 2490.551165872302, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "526184" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2481.606950674196, + "min_y": 6108.248773294889, + "max_x": 2486.8241802338607, + "max_y": 6111.14723416137 + }, + "value": "REV", + "layer": "0", + "id": "526185" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2493.577671931642, + "min_y": 6106.275006062354, + "max_x": 2504.1416777594, + "max_y": 6115.423703474919 + }, + "value": null, + "layer": "0", + "id": "526186" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2406.13233106106, + "min_y": 6102.3268955954, + "max_x": 2406.13233106106, + "max_y": 6117.069112353019 + }, + "value": null, + "layer": "0", + "id": "526189" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2371.819606001304, + "min_y": 6108.248773294889, + "max_x": 2382.254065120633, + "max_y": 6111.14723416137 + }, + "value": "JOB.NO", + "layer": "0", + "id": "52618B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2395.903949025103, + "min_y": 6108.248773294889, + "max_x": 2397.6430255449914, + "max_y": 6111.14723416137 + }, + "value": "-", + "layer": "0", + "id": "52618D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.087374915693, + "min_y": 6108.248773294889, + "max_x": 2433.043680995246, + "max_y": 6111.14723416137 + }, + "value": "NONE", + "layer": "0", + "id": "52618E" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2444.526771185994, + "min_y": 6170.449575742106, + "max_x": 2543.451480466336, + "max_y": 6175.300575742106 + }, + "value": "\\fGulim|b0|i0|c129|p50; PGMEA REFINE PLANT", + "layer": "0", + "id": "52618F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2497.587316228486, + "min_y": 6108.182066228128, + "max_x": 2499.406441228486, + "max_y": 6111.213941228128 + }, + "value": "0", + "layer": "0", + "id": "526194" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2442.610872905186, + "min_y": 6126.167981251199, + "max_x": 2541.535582185528, + "max_y": 6131.018981251199 + }, + "value": "\\Fromans|c129; PFD-001", + "layer": "0", + "id": "526195" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2442.610872905185, + "min_y": 6148.915153496653, + "max_x": 2558.1620581134493, + "max_y": 6153.766153496653 + }, + "value": "\\Fromans|c129; REFINE PLANT .9; .85; PROCESS FLOW DIAGRAM", + "layer": "0", + "id": "526199" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6693.319914334505, + "max_x": 2516.391669016539, + "max_y": 6696.048601834505 + }, + "value": "6", + "layer": "0", + "id": "52619D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2456.784354612386, + "min_y": 6108.182066474209, + "max_x": 2474.9756046123857, + "max_y": 6111.213941474209 + }, + "value": "2019.03.19", + "layer": "0", + "id": "5261A1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2370.869546560046, + "min_y": 6267.761688895927, + "max_x": 2376.6907465600457, + "max_y": 6270.187188895928 + }, + "value": "REV.", + "layer": "0", + "id": "5261A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2377.738033540191, + "min_y": 6265.783742942685, + "max_x": 2377.738033540191, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261A4" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6272.165134849169, + "max_x": 2377.738033540374, + "max_y": 6286.876735560494 + }, + "value": null, + "layer": "0", + "id": "5261A9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6286.876735560494, + "max_x": 2377.738033540374, + "max_y": 6301.588336271909 + }, + "value": null, + "layer": "0", + "id": "5261AB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2386.420555679042, + "min_y": 6267.761688895927, + "max_x": 2392.241755679042, + "max_y": 6270.187188895928 + }, + "value": "DATE", + "layer": "0", + "id": "5261AD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2486.481257792087, + "min_y": 6267.761688895927, + "max_x": 2492.302457792087, + "max_y": 6270.187188895928 + }, + "value": "APPD", + "layer": "0", + "id": "5261AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2476.779257792087, + "min_y": 6267.761688895927, + "max_x": 2482.6004577920867, + "max_y": 6270.187188895928 + }, + "value": "APPD", + "layer": "0", + "id": "5261AF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2467.077257792087, + "min_y": 6267.761688895927, + "max_x": 2472.898457792087, + "max_y": 6270.187188895928 + }, + "value": "CHKD", + "layer": "0", + "id": "5261B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2455.902632792086, + "min_y": 6265.783742942685, + "max_x": 2455.902632792086, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2465.604632792086, + "min_y": 6265.783742942685, + "max_x": 2465.604632792086, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2475.306632792087, + "min_y": 6265.783742942685, + "max_x": 2475.306632792087, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2485.008632792086, + "min_y": 6265.783742942685, + "max_x": 2485.008632792086, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2494.710632792086, + "min_y": 6265.783742942685, + "max_x": 2494.710632792086, + "max_y": 6301.58833627182 + }, + "value": null, + "layer": "0", + "id": "5261B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2457.288632792085, + "min_y": 6267.761688895927, + "max_x": 2463.109832792085, + "max_y": 6270.187188895928 + }, + "value": "DRWN", + "layer": "0", + "id": "5261B6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2419.31783030499, + "min_y": 6267.761688895882, + "max_x": 2435.32613030499, + "max_y": 6270.187188895882 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "5261B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2402.795377817892, + "min_y": 6265.783742942773, + "max_x": 2402.795377817892, + "max_y": 6301.588336271909 + }, + "value": null, + "layer": "0", + "id": "5261BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2495.533570292086, + "min_y": 6267.761688895927, + "max_x": 2504.265370292086, + "max_y": 6270.187188895928 + }, + "value": "REMARK", + "layer": "0", + "id": "5261BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2373.251633362539, + "min_y": 6274.630285026955, + "max_x": 2374.706933362539, + "max_y": 6277.055785026955 + }, + "value": "0", + "layer": "0", + "id": "5261BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2380.841905679043, + "min_y": 6274.630285026911, + "max_x": 2396.850205679043, + "max_y": 6277.0557850269115 + }, + "value": "MAR.19.2019", + "layer": "0", + "id": "5261BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2427.03900530499, + "min_y": 6274.630285026911, + "max_x": 2431.40490530499, + "max_y": 6277.0557850269115 + }, + "value": "IFD", + "layer": "0", + "id": "5261BE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2457.635132792086, + "min_y": 6274.630285026911, + "max_x": 2462.001032792086, + "max_y": 6277.0557850269115 + }, + "value": "SYS", + "layer": "0", + "id": "5261BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2372.455120852798, + "min_y": 6199.732945678231, + "max_x": 2390.952571109791, + "max_y": 6202.104413659897 + }, + "value": "MANUFACTURER:", + "layer": "0", + "id": "5261C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2372.204267761148, + "min_y": 6240.257823778509, + "max_x": 2382.1644332841443, + "max_y": 6242.629291760175 + }, + "value": "CLIENT:", + "layer": "0", + "id": "5261C4" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2440.553532268682, + "min_y": 6254.866487767513, + "max_x": 2686.7098648651418, + "max_y": 6265.174640519641 + }, + "value": "10th Plant", + "layer": "C3", + "id": "5261C5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2395.527764827856, + "min_y": 6229.040461467022, + "max_x": 2465.851187227856, + "max_y": 6233.082037467022 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "C3", + "id": "5261C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2385.527181883734, + "min_y": 6231.075611680214, + "max_x": 2387.511524690616, + "max_y": 6233.05182560149 + }, + "value": null, + "layer": "0-BAS", + "id": "5261D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2387.002266019599, + "min_y": 6231.075611680214, + "max_x": 2387.511524690616, + "max_y": 6231.075611680214 + }, + "value": null, + "layer": "0-BAS", + "id": "5261DC" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2386.73367439497, + "min_y": 6227.533495351877, + "max_x": 2396.599240848956, + "max_y": 6229.1144664888925 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "5261E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2415.312945108295, + "min_y": 6195.420687963012, + "max_x": 2420.847954758514, + "max_y": 6198.104329005542 + }, + "value": null, + "layer": "0", + "id": "5261E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2415.312945108295, + "min_y": 6195.420687963012, + "max_x": 2416.487038064402, + "max_y": 6198.104329005542 + }, + "value": null, + "layer": "0", + "id": "5261E4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2416.906356977297, + "min_y": 6190.326408567737, + "max_x": 2419.254542889511, + "max_y": 6192.67459447995 + }, + "value": null, + "layer": "0", + "id": "5261EC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2422.316516951986, + "min_y": 6190.272428249701, + "max_x": 2424.6647028642, + "max_y": 6192.620614161914 + }, + "value": null, + "layer": "0", + "id": "5261EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2419.254246105296, + "min_y": 6190.636792582195, + "max_x": 2423.172573014322, + "max_y": 6192.576718889303 + }, + "value": null, + "layer": "0", + "id": "5261EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2418.398486827175, + "min_y": 6190.370303840348, + "max_x": 2419.345499468199, + "max_y": 6190.636792582195 + }, + "value": null, + "layer": "0", + "id": "5261F1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2431.35522160844, + "min_y": 6192.719735621661, + "max_x": 2492.6582785058026, + "max_y": 6200.161614223031 + }, + "value": "\\fMalgun Gothic|b0|i0|c129|p50;주식회사", + "layer": "C3", + "id": "5261F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2372.455120852798, + "min_y": 6219.511594721364, + "max_x": 2389.5296903207914, + "max_y": 6221.88306270303 + }, + "value": "DESIGNED BY:", + "layer": "0", + "id": "5261F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1740.343401288356, + "min_y": 6378.073120179571, + "max_x": 1747.7674032392, + "max_y": 6382.27312017957 + }, + "value": null, + "layer": "PID", + "id": "5261F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1746.196674390191, + "min_y": 6378.073120179571, + "max_x": 1747.7674032392, + "max_y": 6378.073120179571 + }, + "value": null, + "layer": "PID", + "id": "5261F7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1734.1647339068497, + "min_y": 6369.915785416557, + "max_x": 1746.5220686698624, + "max_y": 6382.2731201795705 + }, + "value": null, + "layer": "0", + "id": "5261F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1735.443401288356, + "min_y": 6368.222114536492, + "max_x": 1745.243401288357, + "max_y": 6371.002701565797 + }, + "value": null, + "layer": "PID", + "id": "5261FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6340.380372615861, + "max_x": 1726.665616454304, + "max_y": 6457.424602792993 + }, + "value": null, + "layer": "PID", + "id": "5261FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1734.642527623891, + "min_y": 6358.549843900642, + "max_x": 1752.642527623891, + "max_y": 6363.549843900642 + }, + "value": "P-6101", + "layer": "1", + "id": "5261FE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6409.738260550064, + "max_x": 1694.672880994206, + "max_y": 6464.74387752335 + }, + "value": null, + "layer": "0", + "id": "5261FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6406.434582274783, + "max_x": 1708.928034368176, + "max_y": 6409.738260550064 + }, + "value": null, + "layer": "0", + "id": "526201" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6406.434582274783, + "max_x": 1708.928034368176, + "max_y": 6409.738260550064 + }, + "value": null, + "layer": "0", + "id": "526202" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1685.996427453873, + "min_y": 6457.424602792993, + "max_x": 1706.576427453873, + "max_y": 6464.939405358889 + }, + "value": null, + "layer": "0", + "id": "526206" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6448.290998979448, + "max_x": 1662.445214541784, + "max_y": 6451.680919293756 + }, + "value": null, + "layer": "PID", + "id": "526209" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1681.7226052277022, + "min_y": 6414.299584447208, + "max_x": 1690.198272427702, + "max_y": 6422.775251647208 + }, + "value": null, + "layer": "0", + "id": "52620A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1683.551875613938, + "min_y": 6417.112302805773, + "max_x": 1687.1518756139378, + "max_y": 6420.112302805773 + }, + "value": "MH", + "layer": "0", + "id": "52620B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1670.416427453872, + "min_y": 6414.9859591366, + "max_x": 1670.416427453872, + "max_y": 6449.985959136601 + }, + "value": null, + "layer": "0", + "id": "52620E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6407.831239387113, + "max_x": 1694.672880994205, + "max_y": 6409.738260550064 + }, + "value": null, + "layer": "C", + "id": "526210" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6417.335733069276, + "max_x": 1651.348034936257, + "max_y": 6449.985959136601 + }, + "value": null, + "layer": "0", + "id": "526218" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1634.791511321523, + "min_y": 6415.235733069277, + "max_x": 1642.215513272366, + "max_y": 6419.435733069277 + }, + "value": null, + "layer": "PID", + "id": "52621A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1640.644784423357, + "min_y": 6415.235733069277, + "max_x": 1642.215513272366, + "max_y": 6415.235733069277 + }, + "value": null, + "layer": "PID", + "id": "52621B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1628.6128439400168, + "min_y": 6407.078398306263, + "max_x": 1640.9701787030294, + "max_y": 6419.4357330692765 + }, + "value": null, + "layer": "0", + "id": "52621D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6405.384727426199, + "max_x": 1639.691511321523, + "max_y": 6408.165314455503 + }, + "value": null, + "layer": "PID", + "id": "52621E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1618.366807126406, + "min_y": 6413.25706568777, + "max_x": 1634.791511321523, + "max_y": 6413.25706568777 + }, + "value": null, + "layer": "0", + "id": "526222" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6403.71109641881, + "max_x": 1591.612544740483, + "max_y": 6417.475575426561 + }, + "value": null, + "layer": "0", + "id": "526223" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6403.71109641881, + "max_x": 1582.822816636367, + "max_y": 6409.318854845806 + }, + "value": null, + "layer": "0", + "id": "526227" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1590.415548118238, + "min_y": 6403.71109641881, + "max_x": 1591.612544740483, + "max_y": 6403.71109641881 + }, + "value": null, + "layer": "0", + "id": "526229" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6405.990749429067, + "max_x": 1618.040924572576, + "max_y": 6407.927967487715 + }, + "value": null, + "layer": "0", + "id": "52622C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1609.493441984038, + "min_y": 6405.990749429067, + "max_x": 1614.74233358878, + "max_y": 6405.990749429067 + }, + "value": null, + "layer": "0", + "id": "52622E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1615.093783897043, + "min_y": 6405.990749429067, + "max_x": 1618.040924572576, + "max_y": 6407.927967487715 + }, + "value": null, + "layer": "0", + "id": "526230" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1583.6664703267318, + "min_y": 6400.247811221424, + "max_x": 1589.5718944278722, + "max_y": 6406.153235322564 + }, + "value": null, + "layer": "0", + "id": "526233" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1582.7886370144067, + "min_y": 6399.369977909098, + "max_x": 1590.4497277401972, + "max_y": 6407.031068634889 + }, + "value": null, + "layer": "0", + "id": "526234" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1609.1651757358388, + "min_y": 6400.247811221424, + "max_x": 1615.0705998369792, + "max_y": 6406.153235322564 + }, + "value": null, + "layer": "0", + "id": "526235" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1608.0385104235138, + "min_y": 6399.121145909098, + "max_x": 1616.1972651493043, + "max_y": 6407.27990063489 + }, + "value": null, + "layer": "0", + "id": "526236" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1615.914253527344, + "min_y": 6403.71109641881, + "max_x": 1616.160865221126, + "max_y": 6403.744263220201 + }, + "value": null, + "layer": "0", + "id": "526238" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1608.074910351693, + "min_y": 6403.71109641881, + "max_x": 1608.321522045474, + "max_y": 6403.744263220201 + }, + "value": null, + "layer": "0", + "id": "526239" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.918566532122, + "min_y": 6417.664987811544, + "max_x": 1616.391486982645, + "max_y": 6417.664987811544 + }, + "value": null, + "layer": "0", + "id": "52623A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.870216538154, + "min_y": 6408.861129603171, + "max_x": 1616.343136988678, + "max_y": 6408.861129603171 + }, + "value": null, + "layer": "0", + "id": "52623B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6410.790216109828, + "max_x": 1589.460371857129, + "max_y": 6410.790216109828 + }, + "value": null, + "layer": "0", + "id": "52623E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1747.7674032392, + "min_y": 6296.782765537544, + "max_x": 1884.26428000546, + "max_y": 6610.187351389038 + }, + "value": null, + "layer": "0", + "id": "52623F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6334.738260550063, + "max_x": 1726.665616454304, + "max_y": 6382.424602792993 + }, + "value": null, + "layer": "PID", + "id": "526240" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6334.738260550063, + "max_x": 1694.672880994206, + "max_y": 6389.74387752335 + }, + "value": null, + "layer": "0", + "id": "526241" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6331.434582274781, + "max_x": 1708.928034368176, + "max_y": 6334.738260550063 + }, + "value": null, + "layer": "0", + "id": "526243" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6331.434582274781, + "max_x": 1708.928034368176, + "max_y": 6334.738260550063 + }, + "value": null, + "layer": "0", + "id": "526244" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1685.996427453873, + "min_y": 6382.424602792993, + "max_x": 1706.576427453873, + "max_y": 6389.939405358889 + }, + "value": null, + "layer": "0", + "id": "526248" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6373.290998979448, + "max_x": 1662.445214541784, + "max_y": 6376.680919293756 + }, + "value": null, + "layer": "PID", + "id": "52624B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1681.7226052277022, + "min_y": 6339.299584447208, + "max_x": 1690.198272427702, + "max_y": 6347.775251647208 + }, + "value": null, + "layer": "0", + "id": "52624C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1683.551875613938, + "min_y": 6342.112302805773, + "max_x": 1687.1518756139378, + "max_y": 6345.112302805773 + }, + "value": "MH", + "layer": "0", + "id": "52624D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1670.416427453872, + "min_y": 6339.985959136601, + "max_x": 1670.416427453872, + "max_y": 6374.985959136601 + }, + "value": null, + "layer": "0", + "id": "526250" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6332.831239387113, + "max_x": 1694.672880994205, + "max_y": 6334.738260550063 + }, + "value": null, + "layer": "C", + "id": "526252" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6342.335733069277, + "max_x": 1651.348034936257, + "max_y": 6374.985959136601 + }, + "value": null, + "layer": "0", + "id": "52625A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1634.791511321523, + "min_y": 6340.235733069277, + "max_x": 1642.215513272366, + "max_y": 6344.435733069277 + }, + "value": null, + "layer": "PID", + "id": "52625C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1640.644784423357, + "min_y": 6340.235733069277, + "max_x": 1642.215513272366, + "max_y": 6340.235733069277 + }, + "value": null, + "layer": "PID", + "id": "52625D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1628.6128439400168, + "min_y": 6332.078398306264, + "max_x": 1640.9701787030294, + "max_y": 6344.435733069277 + }, + "value": null, + "layer": "0", + "id": "52625F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6330.384727426198, + "max_x": 1639.691511321523, + "max_y": 6333.165314455503 + }, + "value": null, + "layer": "PID", + "id": "526260" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1618.366807126406, + "min_y": 6338.257065687771, + "max_x": 1634.791511321523, + "max_y": 6338.257065687771 + }, + "value": null, + "layer": "0", + "id": "526264" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6328.71109641881, + "max_x": 1591.612544740483, + "max_y": 6342.47557542656 + }, + "value": null, + "layer": "0", + "id": "526265" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6328.71109641881, + "max_x": 1582.822816636367, + "max_y": 6334.318854845806 + }, + "value": null, + "layer": "0", + "id": "526269" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1590.415548118238, + "min_y": 6328.71109641881, + "max_x": 1591.612544740483, + "max_y": 6328.71109641881 + }, + "value": null, + "layer": "0", + "id": "52626B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6330.990749429068, + "max_x": 1618.040924572576, + "max_y": 6332.927967487716 + }, + "value": null, + "layer": "0", + "id": "52626E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1609.493441984038, + "min_y": 6330.990749429068, + "max_x": 1614.74233358878, + "max_y": 6330.990749429068 + }, + "value": null, + "layer": "0", + "id": "526270" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1615.093783897043, + "min_y": 6330.990749429068, + "max_x": 1618.040924572576, + "max_y": 6332.927967487716 + }, + "value": null, + "layer": "0", + "id": "526272" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1583.6664703267318, + "min_y": 6325.247811221424, + "max_x": 1589.5718944278722, + "max_y": 6331.153235322564 + }, + "value": null, + "layer": "0", + "id": "526275" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1582.7886370144067, + "min_y": 6324.369977909098, + "max_x": 1590.4497277401972, + "max_y": 6332.031068634889 + }, + "value": null, + "layer": "0", + "id": "526276" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1609.1651757358388, + "min_y": 6325.247811221424, + "max_x": 1615.0705998369792, + "max_y": 6331.153235322564 + }, + "value": null, + "layer": "0", + "id": "526277" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1608.0385104235138, + "min_y": 6324.121145909098, + "max_x": 1616.1972651493043, + "max_y": 6332.27990063489 + }, + "value": null, + "layer": "0", + "id": "526278" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1615.914253527344, + "min_y": 6328.71109641881, + "max_x": 1616.160865221126, + "max_y": 6328.744263220201 + }, + "value": null, + "layer": "0", + "id": "52627A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1608.074910351693, + "min_y": 6328.71109641881, + "max_x": 1608.321522045474, + "max_y": 6328.744263220201 + }, + "value": null, + "layer": "0", + "id": "52627B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.918566532122, + "min_y": 6342.664987811544, + "max_x": 1616.391486982645, + "max_y": 6342.664987811544 + }, + "value": null, + "layer": "0", + "id": "52627C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.870216538154, + "min_y": 6333.861129603171, + "max_x": 1616.343136988678, + "max_y": 6333.861129603171 + }, + "value": null, + "layer": "0", + "id": "52627D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6335.790216109828, + "max_x": 1589.460371857129, + "max_y": 6335.790216109828 + }, + "value": null, + "layer": "0", + "id": "526280" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1674.426610288618, + "min_y": 6246.67263045205, + "max_x": 1706.089464150304, + "max_y": 6278.956324585533 + }, + "value": null, + "layer": "0", + "id": "526281" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1674.426610288618, + "min_y": 6246.983050587974, + "max_x": 1706.089464150304, + "max_y": 6278.645904449624 + }, + "value": null, + "layer": "0", + "id": "526282" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1696.970872658276, + "min_y": 6246.983050587974, + "max_x": 1696.970872658276, + "max_y": 6278.645904449624 + }, + "value": null, + "layer": "0", + "id": "526283" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1677.655354259274, + "min_y": 6257.671663377124, + "max_x": 1693.9192415832176, + "max_y": 6269.9688636461215 + }, + "value": "IBC", + "layer": "0", + "id": "526286" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1722.227499087556, + "min_y": 6281.718273285469, + "max_x": 1734.199441363243, + "max_y": 6288.530470529742 + }, + "value": null, + "layer": "0", + "id": "526288" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1719.355796763242, + "min_y": 6272.492535338837, + "max_x": 1737.071143687557, + "max_y": 6289.154693297629 + }, + "value": null, + "layer": "0", + "id": "526289" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.495660678012, + "min_y": 6272.091225662509, + "max_x": 1721.857841540425, + "max_y": 6272.492535338837 + }, + "value": null, + "layer": "0", + "id": "52628D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1734.569098910357, + "min_y": 6272.091225662509, + "max_x": 1738.931279772822, + "max_y": 6279.275768459641 + }, + "value": null, + "layer": "0", + "id": "526291" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1734.569098910357, + "min_y": 6272.091225662509, + "max_x": 1734.569098910357, + "max_y": 6272.492535338837 + }, + "value": null, + "layer": "0", + "id": "526297" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1690.258037219461, + "min_y": 6278.956324585533, + "max_x": 1722.227499087556, + "max_y": 6285.124371907623 + }, + "value": null, + "layer": "0", + "id": "52629C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1734.199441363243, + "min_y": 6285.124371907606, + "max_x": 1792.097034863376, + "max_y": 6354.719259206001 + }, + "value": null, + "layer": "0", + "id": "52629E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.352682486401, + "min_y": 6309.589296990417, + "max_x": 1835.418993211489, + "max_y": 6344.898659556037 + }, + "value": null, + "layer": "0", + "id": "5262A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.029410423069, + "min_y": 6309.589296990417, + "max_x": 1808.836925884984, + "max_y": 6345.044645868457 + }, + "value": null, + "layer": "0", + "id": "5262A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1805.767552909992, + "min_y": 6319.95441470387, + "max_x": 1806.029410423069, + "max_y": 6324.782082610282 + }, + "value": null, + "layer": "0", + "id": "5262A8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1832.412682486401, + "min_y": 6309.099296990416, + "max_x": 1836.332682486401, + "max_y": 6316.38154059918 + }, + "value": null, + "layer": "0", + "id": "5262AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.099296990416, + "max_x": 1811.776925884984, + "max_y": 6316.528641748946 + }, + "value": null, + "layer": "0", + "id": "5262AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1836.332682486401, + "min_y": 6309.099296990416, + "max_x": 1836.332682486401, + "max_y": 6309.589296990417 + }, + "value": null, + "layer": "0", + "id": "5262B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.099296990416, + "max_x": 1807.856925884984, + "max_y": 6309.589296990417 + }, + "value": null, + "layer": "0", + "id": "5262B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1816.310826713114, + "min_y": 6296.782765537234, + "max_x": 1866.310826713114, + "max_y": 6313.597690058638 + }, + "value": null, + "layer": "0", + "id": "5262BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1835.179933040044, + "min_y": 6348.479334173397, + "max_x": 1856.179933040044, + "max_y": 6353.479334173397 + }, + "value": "T-10101", + "layer": "1", + "id": "5262BB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.121543242498, + "min_y": 6326.261078911671, + "max_x": 1813.799851336548, + "max_y": 6354.719259206001 + }, + "value": null, + "layer": "0", + "id": "5262BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1866.310826713114, + "min_y": 6298.761432918741, + "max_x": 1873.734828663958, + "max_y": 6302.961432918742 + }, + "value": null, + "layer": "PID", + "id": "5262BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1872.164099814948, + "min_y": 6298.761432918741, + "max_x": 1873.734828663958, + "max_y": 6298.761432918741 + }, + "value": null, + "layer": "PID", + "id": "5262BE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1860.1321593316077, + "min_y": 6290.604098155727, + "max_x": 1872.4894940946203, + "max_y": 6302.961432918741 + }, + "value": null, + "layer": "0", + "id": "5262C0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1861.410826713114, + "min_y": 6288.910427275663, + "max_x": 1871.210826713114, + "max_y": 6291.691014304968 + }, + "value": null, + "layer": "PID", + "id": "5262C1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1860.609953048649, + "min_y": 6283.460076861889, + "max_x": 1881.609953048649, + "max_y": 6288.460076861889 + }, + "value": "P-10101", + "layer": "1", + "id": "5262C4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1905.748514765648, + "min_y": 6287.083816010995, + "max_x": 1915.697074191057, + "max_y": 6294.7638160109955 + }, + "value": null, + "layer": "0", + "id": "5262C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1903.969077357961, + "min_y": 6289.896383611676, + "max_x": 1946.140070756517, + "max_y": 6304.608296753609 + }, + "value": null, + "layer": "0", + "id": "5262C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.734828663958, + "min_y": 6289.896383611676, + "max_x": 1910.722794478353, + "max_y": 6303.726346744316 + }, + "value": null, + "layer": "0", + "id": "5262C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1909.588514765648, + "min_y": 6287.083816010995, + "max_x": 1911.857074191057, + "max_y": 6287.083816010995 + }, + "value": null, + "layer": "0", + "id": "5262CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1904.689786155118, + "min_y": 6303.147585896535, + "max_x": 1904.689786155118, + "max_y": 6305.187057601389 + }, + "value": null, + "layer": "0", + "id": "5262D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.755802801588, + "min_y": 6303.147585896535, + "max_x": 1916.755802801588, + "max_y": 6305.187057601389 + }, + "value": null, + "layer": "0", + "id": "5262D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1902.169984057079, + "min_y": 6278.846865953543, + "max_x": 1932.169984057079, + "max_y": 6283.846865953543 + }, + "value": "F-10102A/B", + "layer": "1", + "id": "5262D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6315.818801091888, + "max_x": 1952.140070756517, + "max_y": 6345.607248197959 + }, + "value": null, + "layer": "0", + "id": "5262D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6315.818801091888, + "max_x": 1942.140070756517, + "max_y": 6345.607248197959 + }, + "value": null, + "layer": "0", + "id": "5262D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6345.607248197959, + "max_x": 1952.140070756517, + "max_y": 6350.60724819796 + }, + "value": null, + "layer": "0", + "id": "5262DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1950.140070756517, + "min_y": 6346.607248197959, + "max_x": 1950.140070756517, + "max_y": 6350.60724819796 + }, + "value": null, + "layer": "0", + "id": "5262DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1992.333158037374, + "min_y": 6394.149348558756, + "max_x": 2058.06018449754, + "max_y": 6572.054244885785 + }, + "value": null, + "layer": "0", + "id": "5262E4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2058.06018449754, + "min_y": 6394.149348558756, + "max_x": 2083.986242677237, + "max_y": 6572.054244885785 + }, + "value": null, + "layer": "0", + "id": "5262E5" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6572.054244885785, + "max_x": 2058.06018449754, + "max_y": 6575.313055110624 + }, + "value": null, + "layer": "0", + "id": "5262E6" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6390.890538333918, + "max_x": 2058.06018449754, + "max_y": 6394.149348558756 + }, + "value": null, + "layer": "0", + "id": "5262E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6576.626077165729, + "max_x": 2119.385708320926, + "max_y": 6600.664600590211 + }, + "value": null, + "layer": "0", + "id": "5262ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2109.385708320925, + "min_y": 6576.626077165729, + "max_x": 2109.385708320925, + "max_y": 6600.664600590211 + }, + "value": null, + "layer": "0", + "id": "5262EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6600.664600590211, + "max_x": 2119.385708320926, + "max_y": 6605.664600590211 + }, + "value": null, + "layer": "0", + "id": "5262EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6601.664600590211, + "max_x": 2117.385708320925, + "max_y": 6605.664600590211 + }, + "value": null, + "layer": "0", + "id": "5262F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2120.385708320925, + "min_y": 6557.258466939512, + "max_x": 2120.385708320925, + "max_y": 6573.743278622375 + }, + "value": null, + "layer": "0", + "id": "5262F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6557.258466939514, + "max_x": 2106.385708320924, + "max_y": 6573.743278622375 + }, + "value": null, + "layer": "0", + "id": "5262F9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6553.756210065592, + "max_x": 2120.385708320925, + "max_y": 6557.258466939514 + }, + "value": null, + "layer": "0", + "id": "5262FA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6573.743278622375, + "max_x": 2109.385708320925, + "max_y": 6576.626077165729 + }, + "value": null, + "layer": "0", + "id": "5262FB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6573.743278622375, + "max_x": 2120.385708320925, + "max_y": 6576.626077165729 + }, + "value": null, + "layer": "0", + "id": "5262FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2085.875467848341, + "min_y": 6334.350994965809, + "max_x": 2093.299469799185, + "max_y": 6338.550994965809 + }, + "value": null, + "layer": "PID", + "id": "5262FE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2091.728740950176, + "min_y": 6334.350994965809, + "max_x": 2093.299469799185, + "max_y": 6334.350994965809 + }, + "value": null, + "layer": "PID", + "id": "5262FF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2079.6968004668347, + "min_y": 6326.193660202795, + "max_x": 2092.0541352298474, + "max_y": 6338.550994965809 + }, + "value": null, + "layer": "0", + "id": "526301" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2080.975467848342, + "min_y": 6324.499989322731, + "max_x": 2090.775467848342, + "max_y": 6327.280576352036 + }, + "value": null, + "layer": "PID", + "id": "526302" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2080.174594183876, + "min_y": 6319.049638908956, + "max_x": 2101.174594183876, + "max_y": 6324.049638908956 + }, + "value": "P-10116", + "layer": "1", + "id": "526305" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6575.313055110624, + "max_x": 2078.914891146353, + "max_y": 6625.721314362202 + }, + "value": null, + "layer": "0", + "id": "526307" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2089.462313835733, + "min_y": 6605.664600590211, + "max_x": 2113.385708320925, + "max_y": 6625.721314362202 + }, + "value": null, + "layer": "0", + "id": "526309" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2138.195610870392, + "min_y": 6526.96777595467, + "max_x": 2145.619612821235, + "max_y": 6531.16777595467 + }, + "value": null, + "layer": "PID", + "id": "52630A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2144.048883972226, + "min_y": 6526.96777595467, + "max_x": 2145.619612821235, + "max_y": 6526.96777595467 + }, + "value": null, + "layer": "PID", + "id": "52630B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2132.0169434888858, + "min_y": 6518.8104411916565, + "max_x": 2144.3742782518984, + "max_y": 6531.16777595467 + }, + "value": null, + "layer": "0", + "id": "52630D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2133.295610870391, + "min_y": 6517.116770311591, + "max_x": 2143.095610870392, + "max_y": 6519.897357340896 + }, + "value": null, + "layer": "PID", + "id": "52630E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2132.494737205926, + "min_y": 6511.666419897817, + "max_x": 2153.494737205926, + "max_y": 6516.666419897817 + }, + "value": "P-10114", + "layer": "1", + "id": "526311" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2113.385708320925, + "min_y": 6524.989108573163, + "max_x": 2138.195610870392, + "max_y": 6553.756210065592 + }, + "value": null, + "layer": "0", + "id": "526313" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2145.619612821235, + "min_y": 6498.55423754788, + "max_x": 2165.009272427754, + "max_y": 6529.067775954669 + }, + "value": null, + "layer": "0", + "id": "526315" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2075.625733339276, + "min_y": 6498.55423754788, + "max_x": 2098.678010687073, + "max_y": 6565.717543341289 + }, + "value": null, + "layer": "0", + "id": "526318" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6439.109921068774, + "max_x": 2085.336880980755, + "max_y": 6468.898368174845 + }, + "value": null, + "layer": "0", + "id": "526319" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6439.109921068774, + "max_x": 2075.336880980755, + "max_y": 6468.898368174845 + }, + "value": null, + "layer": "0", + "id": "52631A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6468.898368174845, + "max_x": 2085.336880980755, + "max_y": 6473.898368174845 + }, + "value": null, + "layer": "0", + "id": "52631B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2083.336880980755, + "min_y": 6469.898368174844, + "max_x": 2083.336880980755, + "max_y": 6473.898368174845 + }, + "value": null, + "layer": "0", + "id": "52631C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2079.336880980755, + "min_y": 6473.898368174845, + "max_x": 2079.336880980755, + "max_y": 6483.10179672227 + }, + "value": null, + "layer": "0", + "id": "526326" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2111.969242933897, + "min_y": 6433.044801253251, + "max_x": 2119.393244884741, + "max_y": 6437.24480125325 + }, + "value": null, + "layer": "PID", + "id": "526327" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2117.822516035731, + "min_y": 6433.044801253251, + "max_x": 2119.393244884741, + "max_y": 6433.044801253251 + }, + "value": null, + "layer": "PID", + "id": "526328" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2105.7905755523907, + "min_y": 6424.887466490237, + "max_x": 2118.1479103154034, + "max_y": 6437.24480125325 + }, + "value": null, + "layer": "0", + "id": "52632A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2107.069242933897, + "min_y": 6423.193795610171, + "max_x": 2116.869242933898, + "max_y": 6425.974382639477 + }, + "value": null, + "layer": "PID", + "id": "52632B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2106.268369269432, + "min_y": 6417.743445196397, + "max_x": 2127.268369269432, + "max_y": 6422.743445196397 + }, + "value": "P-10118", + "layer": "1", + "id": "52632E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2079.336880980755, + "min_y": 6431.066133871744, + "max_x": 2111.969242933897, + "max_y": 6439.109921068774 + }, + "value": null, + "layer": "0", + "id": "526330" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.052579456116, + "min_y": 6401.542789845449, + "max_x": 2039.86018449754, + "max_y": 6406.623129675044 + }, + "value": null, + "layer": "0", + "id": "526334" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.052579456115, + "min_y": 6332.372327584302, + "max_x": 2083.986242677235, + "max_y": 6390.890538333918 + }, + "value": null, + "layer": "0", + "id": "526335" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6366.754342739377, + "max_x": 2023.052579456115, + "max_y": 6396.542789845449 + }, + "value": null, + "layer": "0", + "id": "526336" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6366.754342739377, + "max_x": 2013.052579456116, + "max_y": 6396.542789845449 + }, + "value": null, + "layer": "0", + "id": "526337" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6396.542789845449, + "max_x": 2023.052579456116, + "max_y": 6401.542789845449 + }, + "value": null, + "layer": "0", + "id": "526338" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2021.052579456116, + "min_y": 6397.542789845449, + "max_x": 2021.052579456116, + "max_y": 6401.542789845449 + }, + "value": null, + "layer": "0", + "id": "526339" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.052579456115, + "min_y": 6357.676965768449, + "max_x": 2017.052579456115, + "max_y": 6366.754342739377 + }, + "value": null, + "layer": "0", + "id": "526343" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6332.372327584302, + "max_x": 2085.875467848341, + "max_y": 6332.372327584302 + }, + "value": null, + "layer": "0", + "id": "526346" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.839669230072, + "min_y": 6331.650994965809, + "max_x": 2155.839669230072, + "max_y": 6341.250994965808 + }, + "value": null, + "layer": "0", + "id": "526347" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.839669230072, + "min_y": 6339.650994965809, + "max_x": 2155.839669230072, + "max_y": 6339.650994965809 + }, + "value": null, + "layer": "0", + "id": "526348" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2155.839669230072, + "min_y": 6331.650994965809, + "max_x": 2159.839669230072, + "max_y": 6341.250994965808 + }, + "value": null, + "layer": "0", + "id": "526349" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.639669230072, + "min_y": 6333.250994965808, + "max_x": 2159.839669230072, + "max_y": 6333.250994965808 + }, + "value": null, + "layer": "0", + "id": "52634A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2141.702409241241, + "min_y": 6323.245195214735, + "max_x": 2162.702409241241, + "max_y": 6328.245195214735 + }, + "value": "E-10119", + "layer": "1", + "id": "526353" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2093.299469799185, + "min_y": 6336.450994965808, + "max_x": 2135.839669230072, + "max_y": 6336.450994965808 + }, + "value": null, + "layer": "0", + "id": "526354" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1946.140070756517, + "min_y": 6300.861432918742, + "max_x": 1946.140070756517, + "max_y": 6315.818801091888 + }, + "value": null, + "layer": "0", + "id": "526357" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1946.140070756517, + "min_y": 6350.60724819796, + "max_x": 1981.785735347995, + "max_y": 6416.136768701758 + }, + "value": null, + "layer": "0", + "id": "526358" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1720.186217751058, + "min_y": 6265.732588908871, + "max_x": 1744.186217751058, + "max_y": 6270.732588908871 + }, + "value": "DP-10101", + "layer": "1", + "id": "52635C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1957.926755930968, + "min_y": 6331.046281830812, + "max_x": 1978.926755930968, + "max_y": 6336.046281830812 + }, + "value": "E-10103", + "layer": "1", + "id": "52635D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2023.791017195323, + "min_y": 6368.433236971266, + "max_x": 2047.791017195323, + "max_y": 6373.433236971266 + }, + "value": "E-10115A", + "layer": "1", + "id": "52635E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2017.439089477755, + "min_y": 6480.447994518633, + "max_x": 2038.439089477755, + "max_y": 6485.447994518633 + }, + "value": "C-10111", + "layer": "1", + "id": "52635F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2090.464784270925, + "min_y": 6455.910784147883, + "max_x": 2111.464784270925, + "max_y": 6460.910784147883 + }, + "value": "E-10117", + "layer": "1", + "id": "526360" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2127.872502152303, + "min_y": 6587.388198955999, + "max_x": 2148.872502152303, + "max_y": 6592.388198955999 + }, + "value": "E-10112", + "layer": "1", + "id": "526361" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2127.872502152303, + "min_y": 6567.703834091855, + "max_x": 2148.872502152303, + "max_y": 6572.703834091855 + }, + "value": "D-10113", + "layer": "1", + "id": "526362" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2159.839669230072, + "min_y": 6336.450994965808, + "max_x": 2179.839669230072, + "max_y": 6382.038919453241 + }, + "value": null, + "layer": "0", + "id": "526363" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2175.556695117133, + "min_y": 6440.137122984721, + "max_x": 2421.703025074542, + "max_y": 6529.067775954674 + }, + "value": null, + "layer": "0", + "id": "526366" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2153.959958017203, + "min_y": 6356.86479909647, + "max_x": 2293.438969638737, + "max_y": 6438.305569139484 + }, + "value": null, + "layer": "0", + "id": "526367" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2427.578443758919, + "min_y": 6425.586391482413, + "max_x": 2436.578443758919, + "max_y": 6430.586391482413 + }, + "value": "IBC", + "layer": "PID", + "id": "526369" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6423.806484537981, + "max_x": 2444.719546555842, + "max_y": 6431.48311796852 + }, + "value": null, + "layer": "PID", + "id": "52636A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6427.64480125325, + "max_x": 2444.719546555842, + "max_y": 6431.48311796852 + }, + "value": null, + "layer": "PID", + "id": "52636B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2238.364879506022, + "min_y": 6571.597691381367, + "max_x": 2245.066515527241, + "max_y": 6596.425859904492 + }, + "value": null, + "layer": "0", + "id": "52636F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2186.346193406019, + "min_y": 6574.396154648209, + "max_x": 2235.272869902959, + "max_y": 6576.922581527185 + }, + "value": null, + "layer": "PID", + "id": "526371" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2235.2728699029594, + "min_y": 6570.222348344868, + "max_x": 2246.146909388619, + "max_y": 6581.096387830527 + }, + "value": null, + "layer": "0", + "id": "526372" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2236.019869366255, + "min_y": 6575.659368087698, + "max_x": 2245.399909925303, + "max_y": 6575.659368087698 + }, + "value": null, + "layer": "0", + "id": "526373" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2234.809737964659, + "min_y": 6567.811771900699, + "max_x": 2246.609943254407, + "max_y": 6571.727700934184 + }, + "value": null, + "layer": "0", + "id": "526376" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2244.465211267254, + "min_y": 6567.811771900699, + "max_x": 2246.609943254407, + "max_y": 6571.727700934184 + }, + "value": null, + "layer": "0", + "id": "526378" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2232.85818313889, + "min_y": 6560.803324144046, + "max_x": 2256.85818313889, + "max_y": 6565.803324144046 + }, + "value": "VP-10117", + "layer": "1", + "id": "52637F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2119.214074775732, + "min_y": 6575.659368087698, + "max_x": 2181.496463957262, + "max_y": 6575.659368087698 + }, + "value": null, + "layer": "0", + "id": "526380" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2243.803302087753, + "min_y": 6592.587543189222, + "max_x": 2287.478578719076, + "max_y": 6600.264176619763 + }, + "value": null, + "layer": "0", + "id": "526382" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2291.932835254496, + "min_y": 6593.904326485048, + "max_x": 2315.932835254496, + "max_y": 6598.904326485048 + }, + "value": "SCRUBBER", + "layer": "PID", + "id": "526383" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2287.478578719076, + "min_y": 6592.587543189222, + "max_x": 2324.369938253517, + "max_y": 6596.425859904492 + }, + "value": null, + "layer": "PID", + "id": "526384" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2287.478578719076, + "min_y": 6596.425859904492, + "max_x": 2324.369938253517, + "max_y": 6600.264176619763 + }, + "value": null, + "layer": "PID", + "id": "526385" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1981.785735347995, + "min_y": 6412.216768701758, + "max_x": 1989.625735347995, + "max_y": 6420.056768701758 + }, + "value": null, + "layer": "PID", + "id": "526389" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1988.024344062153, + "min_y": 6412.976000815529, + "max_x": 1992.333158037374, + "max_y": 6419.297536587992 + }, + "value": null, + "layer": "0", + "id": "52638A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1984.278553731651, + "min_y": 6414.056336701223, + "max_x": 1987.278553731651, + "max_y": 6419.056336701223 + }, + "value": "1", + "layer": "PID", + "id": "52638B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2147.721349303046, + "min_y": 6431.224801253253, + "max_x": 2155.561349303046, + "max_y": 6439.064801253253 + }, + "value": null, + "layer": "PID", + "id": "52638D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2149.457625260462, + "min_y": 6432.65719306259, + "max_x": 2152.457625260462, + "max_y": 6437.65719306259 + }, + "value": "6", + "layer": "PID", + "id": "52638F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2165.009272427754, + "min_y": 6525.147775954669, + "max_x": 2172.849272427754, + "max_y": 6532.987775954669 + }, + "value": null, + "layer": "PID", + "id": "526391" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.247881141912, + "min_y": 6525.907008068438, + "max_x": 2175.556695117133, + "max_y": 6532.228543840901 + }, + "value": null, + "layer": "0", + "id": "526392" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2166.74554838517, + "min_y": 6526.52285814749, + "max_x": 2169.74554838517, + "max_y": 6531.52285814749 + }, + "value": "4", + "layer": "PID", + "id": "526393" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2102.986824662296, + "min_y": 6495.393469661649, + "max_x": 2105.986824662296, + "max_y": 6500.393469661649 + }, + "value": "3", + "layer": "PID", + "id": "526395" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2078.914891146353, + "min_y": 6621.801314362202, + "max_x": 2086.754891146353, + "max_y": 6629.641314362202 + }, + "value": null, + "layer": "PID", + "id": "526399" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2085.15349986051, + "min_y": 6622.56054647597, + "max_x": 2089.462313835733, + "max_y": 6628.882082248432 + }, + "value": null, + "layer": "0", + "id": "52639A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2081.364218086058, + "min_y": 6623.523150342427, + "max_x": 2084.364218086058, + "max_y": 6628.523150342427 + }, + "value": "2", + "layer": "PID", + "id": "52639B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2175.919669230072, + "min_y": 6382.038919453241, + "max_x": 2183.759669230072, + "max_y": 6389.878919453241 + }, + "value": null, + "layer": "PID", + "id": "52639F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2176.67890134384, + "min_y": 6388.277528167399, + "max_x": 2183.000437116303, + "max_y": 6430.54435258309 + }, + "value": null, + "layer": "0", + "id": "5263A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2182.165666143686, + "min_y": 6384.031992731614, + "max_x": 2185.165666143686, + "max_y": 6389.031992731614 + }, + "value": "5", + "layer": "PID", + "id": "5263A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2119.393244884741, + "min_y": 6435.144801253253, + "max_x": 2147.721349303046, + "max_y": 6435.144801253255 + }, + "value": null, + "layer": "0", + "id": "5263A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2177.97910579968, + "min_y": 6555.44612110595, + "max_x": 2189.863551563622, + "max_y": 6569.536404652962 + }, + "value": null, + "layer": "0", + "id": "5263A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.041100330136, + "min_y": 6555.44612110595, + "max_x": 2179.041100330136, + "max_y": 6569.536404652962 + }, + "value": null, + "layer": "0", + "id": "5263A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2181.496463957262, + "min_y": 6572.011419384013, + "max_x": 2181.496463957262, + "max_y": 6575.659368087698 + }, + "value": null, + "layer": "0", + "id": "5263AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2186.346193406019, + "min_y": 6572.011419384013, + "max_x": 2186.346193406019, + "max_y": 6575.659368087698 + }, + "value": null, + "layer": "0", + "id": "5263AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2175.549904347307, + "min_y": 6546.105846500322, + "max_x": 2199.549904347307, + "max_y": 6551.105846500322 + }, + "value": "SP-10601", + "layer": "1", + "id": "5263B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1680.38131926952, + "min_y": 6399.838419510542, + "max_x": 1695.38131926952, + "max_y": 6404.838419510542 + }, + "value": "T-201", + "layer": "1", + "id": "5263B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1679.1755095657, + "min_y": 6324.763364760369, + "max_x": 1694.1755095657, + "max_y": 6329.763364760369 + }, + "value": "T-202", + "layer": "1", + "id": "5263B6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1627.759952748379, + "min_y": 6399.168899458072, + "max_x": 1642.759952748379, + "max_y": 6404.168899458072 + }, + "value": "P-201", + "layer": "1", + "id": "5263B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1629.044342373586, + "min_y": 6323.871557680334, + "max_x": 1644.044342373586, + "max_y": 6328.871557680334 + }, + "value": "P-202", + "layer": "1", + "id": "5263B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2330.134230229113, + "min_y": 6453.027536111793, + "max_x": 2330.2005409542, + "max_y": 6488.336898677414 + }, + "value": null, + "layer": "0", + "id": "5263B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.810958165781, + "min_y": 6453.027536111793, + "max_x": 2303.618473627696, + "max_y": 6488.482884989834 + }, + "value": null, + "layer": "0", + "id": "5263BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.549100652703, + "min_y": 6463.392653825247, + "max_x": 2300.810958165781, + "max_y": 6468.220321731658 + }, + "value": null, + "layer": "0", + "id": "5263C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2327.194230229112, + "min_y": 6452.537536111794, + "max_x": 2331.114230229113, + "max_y": 6459.819779720557 + }, + "value": null, + "layer": "0", + "id": "5263C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6452.537536111794, + "max_x": 2306.558473627696, + "max_y": 6459.966880870324 + }, + "value": null, + "layer": "0", + "id": "5263C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2331.114230229113, + "min_y": 6452.537536111794, + "max_x": 2331.114230229113, + "max_y": 6453.027536111793 + }, + "value": null, + "layer": "0", + "id": "5263CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6452.537536111794, + "max_x": 2302.638473627697, + "max_y": 6453.027536111793 + }, + "value": null, + "layer": "0", + "id": "5263CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6469.699318033049, + "max_x": 2308.581399079259, + "max_y": 6505.404954238054 + }, + "value": null, + "layer": "0", + "id": "5263D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2335.650791668898, + "min_y": 6473.6245131086, + "max_x": 2356.650791668898, + "max_y": 6478.6245131086 + }, + "value": "T-10100", + "layer": "1", + "id": "5263D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2316.891412173639, + "min_y": 6435.499792684137, + "max_x": 2330.579144404317, + "max_y": 6457.035628642002 + }, + "value": null, + "layer": "0", + "id": "5263D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2337.967416662804, + "min_y": 6438.17312196068, + "max_x": 2358.967416662804, + "max_y": 6443.17312196068 + }, + "value": "P-10101", + "layer": "PID", + "id": "5263D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2330.579144404317, + "min_y": 6435.499792684137, + "max_x": 2367.470503938757, + "max_y": 6439.338109399407 + }, + "value": null, + "layer": "PID", + "id": "5263D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2330.579144404317, + "min_y": 6439.338109399407, + "max_x": 2367.470503938757, + "max_y": 6443.176426114677 + }, + "value": null, + "layer": "PID", + "id": "5263D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6427.64480125325, + "max_x": 2421.703025074542, + "max_y": 6427.64480125325 + }, + "value": null, + "layer": "0", + "id": "5263DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6505.404954238054, + "max_x": 2197.14429910011, + "max_y": 6529.067775954669 + }, + "value": null, + "layer": "0", + "id": "5263DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.438969638737, + "min_y": 6435.14480125325, + "max_x": 2293.438969638737, + "max_y": 6505.404954238054 + }, + "value": null, + "layer": "0", + "id": "5263E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.655205037304, + "min_y": 6526.743626488379, + "max_x": 2435.655205037304, + "max_y": 6531.743626488379 + }, + "value": "IBC", + "layer": "PID", + "id": "5263E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6525.229459239405, + "max_x": 2444.719546555842, + "max_y": 6532.906092669944 + }, + "value": null, + "layer": "PID", + "id": "5263E4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6529.067775954674, + "max_x": 2444.719546555842, + "max_y": 6532.906092669944 + }, + "value": null, + "layer": "PID", + "id": "5263E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1729.231650919022, + "min_y": 6570.287578365983, + "max_x": 1747.231650919022, + "max_y": 6575.287578365983 + }, + "value": "C-9111", + "layer": "PID", + "id": "5263E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6568.726106107085, + "max_x": 1758.846894668144, + "max_y": 6576.402739537624 + }, + "value": null, + "layer": "PID", + "id": "5263EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6572.564422822356, + "max_x": 1758.846894668144, + "max_y": 6576.402739537624 + }, + "value": null, + "layer": "PID", + "id": "5263EB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 1698.134955657286, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "5263EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6187.3768955954, + "max_x": 1698.134955657286, + "max_y": 6187.3768955954 + }, + "value": null, + "layer": "0", + "id": "5263F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1591.057036962754, + "min_y": 6191.426895595401, + "max_x": 1615.357036962754, + "max_y": 6195.476895595401 + }, + "value": "STREAM NO.", + "layer": "PID", + "id": "5263F2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1551.906017182073, + "min_y": 6177.2518955954, + "max_x": 1578.636017182073, + "max_y": 6181.3018955954 + }, + "value": "COMPOSITION", + "layer": "PID", + "id": "5263F4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1627.717102183269, + "min_y": 6181.3018955954, + "max_x": 1654.447102183269, + "max_y": 6185.3518955954005 + }, + "value": "DESCRIPTION", + "layer": "PID", + "id": "5263F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1596.666368125079, + "min_y": 6154.9768955954, + "max_x": 1608.8163681250792, + "max_y": 6159.0268955954 + }, + "value": "PGMEA", + "layer": "PID", + "id": "5263F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1588.30715595073, + "min_y": 6142.8268955954, + "max_x": 1617.46715595073, + "max_y": 6146.8768955954 + }, + "value": "TOTAL STREAM", + "layer": "PID", + "id": "5263F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1572.905083054938, + "min_y": 6130.6768955954, + "max_x": 1645.8050830549378, + "max_y": 6134.7268955954005 + }, + "value": "OPERATION PRESS.(kgf/cm%%178G)", + "layer": "PID", + "id": "5263FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1581.029939016862, + "min_y": 6118.5268955954, + "max_x": 1632.059939016862, + "max_y": 6122.5768955954 + }, + "value": "OPERATION TEMP.(%%DC)", + "layer": "PID", + "id": "5263FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1594.048883155139, + "min_y": 6106.3768955954, + "max_x": 1611.058883155139, + "max_y": 6110.4268955954 + }, + "value": "REMARKS", + "layer": "PID", + "id": "5263FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1676.652302851675, + "min_y": 6191.426895595401, + "max_x": 1679.082302851675, + "max_y": 6195.476895595401 + }, + "value": "1", + "layer": "PID", + "id": "526400" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1671.090147290553, + "min_y": 6167.126895595401, + "max_x": 1683.240147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526401" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1672.161489975924, + "min_y": 6154.9768955954, + "max_x": 1684.3114899759241, + "max_y": 6159.0268955954 + }, + "value": "2,600", + "layer": "PID", + "id": "526402" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1672.161489975924, + "min_y": 6142.8268955954, + "max_x": 1684.3114899759241, + "max_y": 6146.8768955954 + }, + "value": "2,600", + "layer": "PID", + "id": "526403" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1669.696184364701, + "min_y": 6130.6768955954, + "max_x": 1686.706184364701, + "max_y": 6134.7268955954005 + }, + "value": "1.0~2.0", + "layer": "PID", + "id": "526404" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1671.281893282537, + "min_y": 6118.5268955954, + "max_x": 1683.4318932825372, + "max_y": 6122.5768955954 + }, + "value": "50~90", + "layer": "PID", + "id": "526405" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1672.426282060092, + "min_y": 6179.2768955954, + "max_x": 1682.146282060092, + "max_y": 6183.3268955954 + }, + "value": "FEED", + "layer": "PID", + "id": "526406" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1717.152302851675, + "min_y": 6191.426895595401, + "max_x": 1719.582302851675, + "max_y": 6195.476895595401 + }, + "value": "2", + "layer": "PID", + "id": "526407" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.590147290553, + "min_y": 6167.126895595401, + "max_x": 1723.740147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526408" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1705.265573142256, + "min_y": 6154.9768955954, + "max_x": 1731.995573142256, + "max_y": 6159.0268955954 + }, + "value": "2,600~5,200", + "layer": "PID", + "id": "526409" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1705.265573142256, + "min_y": 6142.8268955954, + "max_x": 1731.995573142256, + "max_y": 6146.8768955954 + }, + "value": "2,600~5,200", + "layer": "PID", + "id": "52640A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1707.266731709391, + "min_y": 6130.6768955954, + "max_x": 1731.566731709391, + "max_y": 6134.7268955954005 + }, + "value": "50~100torr", + "layer": "PID", + "id": "52640B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.781893282537, + "min_y": 6118.5268955954, + "max_x": 1723.9318932825372, + "max_y": 6122.5768955954 + }, + "value": "70~98", + "layer": "PID", + "id": "52640C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.346660316605, + "min_y": 6179.2768955954, + "max_x": 1723.4966603166051, + "max_y": 6183.3268955954 + }, + "value": "VAPOR", + "layer": "PID", + "id": "52640D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.652302851675, + "min_y": 6191.426895595401, + "max_x": 1760.082302851675, + "max_y": 6195.476895595401 + }, + "value": "3", + "layer": "PID", + "id": "52640E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.090147290553, + "min_y": 6167.126895595401, + "max_x": 1764.240147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "52640F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1750.925975196365, + "min_y": 6179.2768955954, + "max_x": 1765.505975196365, + "max_y": 6183.3268955954 + }, + "value": "REFLUX", + "layer": "PID", + "id": "526410" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1798.152302851675, + "min_y": 6191.426895595401, + "max_x": 1800.582302851675, + "max_y": 6195.476895595401 + }, + "value": "4", + "layer": "PID", + "id": "526411" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1792.590147290553, + "min_y": 6167.126895595401, + "max_x": 1804.740147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526412" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1796.919650046064, + "min_y": 6154.9768955954, + "max_x": 1801.7796500460638, + "max_y": 6159.0268955954 + }, + "value": "55", + "layer": "PID", + "id": "526413" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1796.919650046064, + "min_y": 6142.8268955954, + "max_x": 1801.7796500460638, + "max_y": 6146.8768955954 + }, + "value": "55", + "layer": "PID", + "id": "526414" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1791.196184364701, + "min_y": 6130.6768955954, + "max_x": 1808.206184364701, + "max_y": 6134.7268955954005 + }, + "value": "1.0~2.0", + "layer": "PID", + "id": "526415" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1792.781893282537, + "min_y": 6118.5268955954, + "max_x": 1804.9318932825372, + "max_y": 6122.5768955954 + }, + "value": "20~40", + "layer": "PID", + "id": "526416" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1786.959511018008, + "min_y": 6179.2768955954, + "max_x": 1811.259511018008, + "max_y": 6183.3268955954 + }, + "value": "LIGHT ENDS", + "layer": "PID", + "id": "526417" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6102.3268955954, + "max_x": 1738.634955657287, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "52641A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6150.9268955954, + "max_x": 1738.634955657287, + "max_y": 6150.9268955954 + }, + "value": null, + "layer": "0", + "id": "52641B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6138.7768955954, + "max_x": 1738.634955657287, + "max_y": 6138.7768955954 + }, + "value": null, + "layer": "0", + "id": "52641C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6126.6268955954, + "max_x": 1738.634955657287, + "max_y": 6126.6268955954 + }, + "value": null, + "layer": "0", + "id": "52641D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6114.476895595401, + "max_x": 1738.634955657287, + "max_y": 6114.476895595401 + }, + "value": null, + "layer": "0", + "id": "52641E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6102.3268955954, + "max_x": 1779.134955657286, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "526420" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6187.3768955954, + "max_x": 1779.134955657286, + "max_y": 6187.3768955954 + }, + "value": null, + "layer": "0", + "id": "526421" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6102.3268955954, + "max_x": 1819.634955657286, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "52642A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6150.9268955954, + "max_x": 1819.634955657286, + "max_y": 6150.9268955954 + }, + "value": null, + "layer": "0", + "id": "52642B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6138.7768955954, + "max_x": 1819.634955657286, + "max_y": 6138.7768955954 + }, + "value": null, + "layer": "0", + "id": "52642C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6126.6268955954, + "max_x": 1819.634955657286, + "max_y": 6126.6268955954 + }, + "value": null, + "layer": "0", + "id": "52642D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6114.476895595401, + "max_x": 1819.634955657286, + "max_y": 6114.476895595401 + }, + "value": null, + "layer": "0", + "id": "52642E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6102.3268955954, + "max_x": 1860.134955657287, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "526430" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6187.3768955954, + "max_x": 1860.134955657287, + "max_y": 6187.3768955954 + }, + "value": null, + "layer": "0", + "id": "526431" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6102.3268955954, + "max_x": 1900.634955657286, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "52643A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6150.9268955954, + "max_x": 1900.634955657286, + "max_y": 6150.9268955954 + }, + "value": null, + "layer": "0", + "id": "52643B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6138.7768955954, + "max_x": 1900.634955657286, + "max_y": 6138.7768955954 + }, + "value": null, + "layer": "0", + "id": "52643C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6126.6268955954, + "max_x": 1900.634955657286, + "max_y": 6126.6268955954 + }, + "value": null, + "layer": "0", + "id": "52643D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6114.476895595401, + "max_x": 1900.634955657286, + "max_y": 6114.476895595401 + }, + "value": null, + "layer": "0", + "id": "52643E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6102.3268955954, + "max_x": 1900.634955657286, + "max_y": 6199.5268955954 + }, + "value": null, + "layer": "0", + "id": "526440" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6187.3768955954, + "max_x": 1900.634955657286, + "max_y": 6187.3768955954 + }, + "value": null, + "layer": "0", + "id": "526441" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1838.652302851675, + "min_y": 6191.426895595401, + "max_x": 1841.082302851675, + "max_y": 6195.476895595401 + }, + "value": "5", + "layer": "PID", + "id": "526448" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1833.090147290553, + "min_y": 6167.126895595401, + "max_x": 1845.240147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526449" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1837.419650046064, + "min_y": 6154.9768955954, + "max_x": 1842.2796500460638, + "max_y": 6159.0268955954 + }, + "value": "30", + "layer": "PID", + "id": "52644A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1837.419650046064, + "min_y": 6142.8268955954, + "max_x": 1842.2796500460638, + "max_y": 6146.8768955954 + }, + "value": "30", + "layer": "PID", + "id": "52644B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1831.696184364701, + "min_y": 6130.6768955954, + "max_x": 1848.706184364701, + "max_y": 6134.7268955954005 + }, + "value": "1.0~2.0", + "layer": "PID", + "id": "52644C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1833.281893282537, + "min_y": 6118.5268955954, + "max_x": 1845.4318932825372, + "max_y": 6122.5768955954 + }, + "value": "20~45", + "layer": "PID", + "id": "52644D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.681874494962, + "min_y": 6179.2768955954, + "max_x": 1850.9818744949619, + "max_y": 6183.3268955954 + }, + "value": "HEAVY ENDS", + "layer": "PID", + "id": "52644E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1879.152302851675, + "min_y": 6191.426895595401, + "max_x": 1881.582302851675, + "max_y": 6195.476895595401 + }, + "value": "6", + "layer": "PID", + "id": "52644F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1873.590147290553, + "min_y": 6167.126895595401, + "max_x": 1885.740147290553, + "max_y": 6171.176895595401 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526450" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1874.661489975924, + "min_y": 6154.9768955954, + "max_x": 1886.8114899759241, + "max_y": 6159.0268955954 + }, + "value": "2,515", + "layer": "PID", + "id": "526451" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1874.661489975924, + "min_y": 6142.8268955954, + "max_x": 1886.8114899759241, + "max_y": 6146.8768955954 + }, + "value": "2,515", + "layer": "PID", + "id": "526452" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1872.196184364701, + "min_y": 6130.6768955954, + "max_x": 1889.206184364701, + "max_y": 6134.7268955954005 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526453" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1873.781893282537, + "min_y": 6118.5268955954, + "max_x": 1885.9318932825372, + "max_y": 6122.5768955954 + }, + "value": "15~32", + "layer": "PID", + "id": "526454" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1870.210243733439, + "min_y": 6179.2768955954, + "max_x": 1887.220243733439, + "max_y": 6183.3268955954 + }, + "value": "PRODUCT", + "layer": "PID", + "id": "526455" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6175.2268955954, + "max_x": 1738.634955657287, + "max_y": 6175.2268955954 + }, + "value": null, + "layer": "0", + "id": "526457" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6175.2268955954, + "max_x": 1819.634955657286, + "max_y": 6175.2268955954 + }, + "value": null, + "layer": "0", + "id": "526459" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6175.2268955954, + "max_x": 1900.634955657286, + "max_y": 6175.2268955954 + }, + "value": null, + "layer": "0", + "id": "52645B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1599.276244127083, + "min_y": 6167.126895595401, + "max_x": 1608.996244127083, + "max_y": 6171.176895595401 + }, + "value": "UNIT", + "layer": "PID", + "id": "52645D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1561.446751137082, + "min_y": 6298.718994434485, + "max_x": 1775.385667900849, + "max_y": 6650.747521175929 + }, + "value": null, + "layer": "0", + "id": "52645E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1567.602975751796, + "min_y": 6632.991853712258, + "max_x": 1597.602975751796, + "max_y": 6642.991853712258 + }, + "value": "기존 설비", + "layer": "PID", + "id": "52645F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1725.852770013765, + "min_y": 6521.279847105721, + "max_x": 1733.276771964609, + "max_y": 6525.479847105721 + }, + "value": null, + "layer": "PID", + "id": "526460" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1731.706043115599, + "min_y": 6521.279847105721, + "max_x": 1733.276771964609, + "max_y": 6521.279847105721 + }, + "value": null, + "layer": "PID", + "id": "526461" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1719.6741026322586, + "min_y": 6513.122512342708, + "max_x": 1732.0314373952713, + "max_y": 6525.479847105722 + }, + "value": null, + "layer": "0", + "id": "526463" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1720.952770013765, + "min_y": 6511.428841462643, + "max_x": 1730.752770013765, + "max_y": 6514.209428491948 + }, + "value": null, + "layer": "PID", + "id": "526464" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1705.763581013334, + "min_y": 6513.659067658416, + "max_x": 1725.852770013765, + "max_y": 6561.345409901346 + }, + "value": null, + "layer": "PID", + "id": "526467" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1718.000796334068, + "min_y": 6504.20555273532, + "max_x": 1736.000796334068, + "max_y": 6509.20555273532 + }, + "value": "P-9102", + "layer": "1", + "id": "526468" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.632368101244, + "min_y": 6513.659067658416, + "max_x": 1693.860034553666, + "max_y": 6568.664684631703 + }, + "value": null, + "layer": "0", + "id": "526469" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1693.860034553666, + "min_y": 6510.355389383135, + "max_x": 1708.115187927636, + "max_y": 6513.659067658416 + }, + "value": null, + "layer": "0", + "id": "52646B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.251974099031, + "min_y": 6510.355389383135, + "max_x": 1708.115187927636, + "max_y": 6513.659067658416 + }, + "value": null, + "layer": "0", + "id": "52646C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1685.183581013333, + "min_y": 6561.345409901346, + "max_x": 1705.763581013334, + "max_y": 6568.860212467242 + }, + "value": null, + "layer": "0", + "id": "526470" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.535188495717, + "min_y": 6552.211806087801, + "max_x": 1661.632368101244, + "max_y": 6555.601726402108 + }, + "value": null, + "layer": "PID", + "id": "526473" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1680.9097587871631, + "min_y": 6518.220391555562, + "max_x": 1689.385425987163, + "max_y": 6526.696058755562 + }, + "value": null, + "layer": "0", + "id": "526474" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1682.739029173399, + "min_y": 6521.033109914125, + "max_x": 1686.339029173399, + "max_y": 6524.033109914125 + }, + "value": "MH", + "layer": "0", + "id": "526475" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1669.603581013333, + "min_y": 6518.906766244954, + "max_x": 1669.603581013333, + "max_y": 6553.906766244954 + }, + "value": null, + "layer": "0", + "id": "526478" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1693.860034553666, + "min_y": 6511.752046495466, + "max_x": 1693.860034553666, + "max_y": 6513.659067658416 + }, + "value": null, + "layer": "C", + "id": "52647A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1641.402666831827, + "min_y": 6521.25654017763, + "max_x": 1650.535188495717, + "max_y": 6553.906766244954 + }, + "value": null, + "layer": "0", + "id": "526482" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1633.978664880984, + "min_y": 6519.15654017763, + "max_x": 1641.402666831827, + "max_y": 6523.35654017763 + }, + "value": null, + "layer": "PID", + "id": "526484" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1639.831937982817, + "min_y": 6519.15654017763, + "max_x": 1641.402666831827, + "max_y": 6519.15654017763 + }, + "value": null, + "layer": "PID", + "id": "526485" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1627.7999974994777, + "min_y": 6510.999205414617, + "max_x": 1640.1573322624904, + "max_y": 6523.35654017763 + }, + "value": null, + "layer": "0", + "id": "526487" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1629.078664880983, + "min_y": 6509.305534534551, + "max_x": 1638.878664880984, + "max_y": 6512.086121563855 + }, + "value": null, + "layer": "PID", + "id": "526488" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1617.553960685867, + "min_y": 6517.177872796124, + "max_x": 1633.978664880984, + "max_y": 6517.177872796124 + }, + "value": null, + "layer": "0", + "id": "52648C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1578.963071962971, + "min_y": 6507.631903527164, + "max_x": 1590.799698299943, + "max_y": 6521.396382534913 + }, + "value": null, + "layer": "0", + "id": "52648D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1578.963071962971, + "min_y": 6507.631903527164, + "max_x": 1582.009970195828, + "max_y": 6513.239661954159 + }, + "value": null, + "layer": "0", + "id": "526491" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1589.602701677698, + "min_y": 6507.631903527164, + "max_x": 1590.799698299943, + "max_y": 6507.631903527164 + }, + "value": null, + "layer": "0", + "id": "526493" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1590.799698299943, + "min_y": 6509.911556537421, + "max_x": 1617.228078132036, + "max_y": 6511.848774596067 + }, + "value": null, + "layer": "0", + "id": "526496" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1608.680595543499, + "min_y": 6509.911556537421, + "max_x": 1613.929487148241, + "max_y": 6509.911556537421 + }, + "value": null, + "layer": "0", + "id": "526498" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1614.280937456504, + "min_y": 6509.911556537421, + "max_x": 1617.228078132036, + "max_y": 6511.848774596067 + }, + "value": null, + "layer": "0", + "id": "52649A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1582.8536238861927, + "min_y": 6504.168618329777, + "max_x": 1588.7590479873331, + "max_y": 6510.074042430917 + }, + "value": null, + "layer": "0", + "id": "52649D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1581.9757905738677, + "min_y": 6503.2907850174515, + "max_x": 1589.6368812996582, + "max_y": 6510.951875743242 + }, + "value": null, + "layer": "0", + "id": "52649E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1608.3523292952998, + "min_y": 6504.168618329777, + "max_x": 1614.2577533964402, + "max_y": 6510.074042430917 + }, + "value": null, + "layer": "0", + "id": "52649F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1607.2256639829748, + "min_y": 6503.041953017451, + "max_x": 1615.3844187087652, + "max_y": 6511.200707743243 + }, + "value": null, + "layer": "0", + "id": "5264A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1615.101407086805, + "min_y": 6507.631903527164, + "max_x": 1615.348018780587, + "max_y": 6507.665070328553 + }, + "value": null, + "layer": "0", + "id": "5264A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1607.262063911154, + "min_y": 6507.631903527164, + "max_x": 1607.508675604934, + "max_y": 6507.665070328553 + }, + "value": null, + "layer": "0", + "id": "5264A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.105720091583, + "min_y": 6521.585794919897, + "max_x": 1615.578640542106, + "max_y": 6521.585794919897 + }, + "value": null, + "layer": "0", + "id": "5264A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1594.057370097615, + "min_y": 6512.781936711525, + "max_x": 1615.530290548139, + "max_y": 6512.781936711525 + }, + "value": null, + "layer": "0", + "id": "5264A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1581.163822519025, + "min_y": 6514.71102321818, + "max_x": 1588.647525416589, + "max_y": 6514.71102321818 + }, + "value": null, + "layer": "0", + "id": "5264A8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1733.276771964608, + "min_y": 6300.861432918742, + "max_x": 1889.928671453157, + "max_y": 6523.379847105721 + }, + "value": null, + "layer": "0", + "id": "5264A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1679.568472828981, + "min_y": 6503.759226618895, + "max_x": 1697.568472828981, + "max_y": 6508.759226618895 + }, + "value": "T-3101", + "layer": "1", + "id": "5264AA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1626.94710630784, + "min_y": 6503.284681226016, + "max_x": 1644.94710630784, + "max_y": 6508.284681226016 + }, + "value": "P-3101", + "layer": "1", + "id": "5264AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6366.754342739377, + "max_x": 2089.986242677236, + "max_y": 6396.542789845449 + }, + "value": null, + "layer": "0", + "id": "5264AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6366.754342739377, + "max_x": 2079.986242677236, + "max_y": 6396.542789845449 + }, + "value": null, + "layer": "0", + "id": "5264AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6396.542789845449, + "max_x": 2089.986242677237, + "max_y": 6401.542789845449 + }, + "value": null, + "layer": "0", + "id": "5264B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2087.986242677237, + "min_y": 6397.542789845449, + "max_x": 2087.986242677237, + "max_y": 6401.542789845449 + }, + "value": null, + "layer": "0", + "id": "5264B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2083.986242677237, + "min_y": 6401.542789845449, + "max_x": 2083.986242677237, + "max_y": 6406.623129675044 + }, + "value": null, + "layer": "0", + "id": "5264BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2083.986242677235, + "min_y": 6357.676965768449, + "max_x": 2083.986242677235, + "max_y": 6366.754342739377 + }, + "value": null, + "layer": "0", + "id": "5264BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2091.366364961085, + "min_y": 6366.754342739377, + "max_x": 2115.366364961085, + "max_y": 6371.754342739377 + }, + "value": "E-10115B", + "layer": "1", + "id": "5264BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.581085121488, + "min_y": 6412.594975910764, + "max_x": 2441.581085121488, + "max_y": 6417.594975910764 + }, + "value": "T-6121", + "layer": "PID", + "id": "5264BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6411.277044328639, + "max_x": 2444.719546555842, + "max_y": 6418.95367775918 + }, + "value": null, + "layer": "PID", + "id": "5264C0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6415.115361043909, + "max_x": 2444.719546555842, + "max_y": 6418.95367775918 + }, + "value": null, + "layer": "PID", + "id": "5264C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6415.115361043909, + "max_x": 2421.703025074542, + "max_y": 6415.115361043909 + }, + "value": null, + "layer": "0", + "id": "5264C5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.706002578909, + "min_y": 6399.978312711375, + "max_x": 2441.706002578909, + "max_y": 6404.978312711375 + }, + "value": "T-6122", + "layer": "PID", + "id": "5264C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6398.594424711733, + "max_x": 2444.719546555842, + "max_y": 6406.271058142272 + }, + "value": null, + "layer": "PID", + "id": "5264C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6402.432741427003, + "max_x": 2444.719546555842, + "max_y": 6406.271058142272 + }, + "value": null, + "layer": "PID", + "id": "5264C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6402.432741427003, + "max_x": 2421.703025074542, + "max_y": 6402.432741427003 + }, + "value": null, + "layer": "0", + "id": "5264CC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.706002578909, + "min_y": 6387.986236799083, + "max_x": 2441.706002578909, + "max_y": 6392.986236799083 + }, + "value": "T-6125", + "layer": "PID", + "id": "5264CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6386.597352101145, + "max_x": 2444.719546555842, + "max_y": 6394.273985531685 + }, + "value": null, + "layer": "PID", + "id": "5264CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6390.435668816415, + "max_x": 2444.719546555842, + "max_y": 6394.273985531685 + }, + "value": null, + "layer": "PID", + "id": "5264CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6390.435668816415, + "max_x": 2421.703025074542, + "max_y": 6390.435668816415 + }, + "value": null, + "layer": "0", + "id": "5264D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.830920036328, + "min_y": 6375.744325971953, + "max_x": 2441.830920036328, + "max_y": 6380.744325971953 + }, + "value": "T-6126", + "layer": "PID", + "id": "5264D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6374.257505987397, + "max_x": 2444.719546555842, + "max_y": 6381.934139417937 + }, + "value": null, + "layer": "PID", + "id": "5264D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6378.095822702668, + "max_x": 2444.719546555842, + "max_y": 6381.934139417937 + }, + "value": null, + "layer": "PID", + "id": "5264D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6378.095822702668, + "max_x": 2421.703025074542, + "max_y": 6378.095822702668 + }, + "value": null, + "layer": "0", + "id": "5264DA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.955837493747, + "min_y": 6364.251919889341, + "max_x": 2441.955837493747, + "max_y": 6369.251919889341 + }, + "value": "T-9125", + "layer": "PID", + "id": "5264DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6353.0264823812, + "max_x": 2444.719546555842, + "max_y": 6370.279840310509 + }, + "value": null, + "layer": "PID", + "id": "5264DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6366.44152359524, + "max_x": 2444.719546555842, + "max_y": 6370.279840310509 + }, + "value": null, + "layer": "PID", + "id": "5264DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6366.44152359524, + "max_x": 2421.703025074542, + "max_y": 6366.44152359524 + }, + "value": null, + "layer": "0", + "id": "5264E1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2393.471154971436, + "min_y": 6346.86479909647, + "max_x": 2453.264564862605, + "max_y": 6421.538897319011 + }, + "value": null, + "layer": "0", + "id": "5264E2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2395.428669136947, + "min_y": 6326.86479909647, + "max_x": 2425.428669136947, + "max_y": 6336.86479909647 + }, + "value": "기존 설비", + "layer": "PID", + "id": "5264E3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6607.910506932666, + "max_x": 1754.955535133703, + "max_y": 6612.910506932666 + }, + "value": "T-9123/9124", + "layer": "PID", + "id": "5264E5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6606.349034673766, + "max_x": 1758.846894668144, + "max_y": 6614.025668104305 + }, + "value": null, + "layer": "PID", + "id": "5264E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6610.187351389036, + "max_x": 1758.846894668144, + "max_y": 6614.025668104305 + }, + "value": null, + "layer": "PID", + "id": "5264E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1758.846894668144, + "min_y": 6610.187351389036, + "max_x": 1850.638965211876, + "max_y": 6610.187351389036 + }, + "value": null, + "layer": "0", + "id": "5264EC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1557.466713903784, + "min_y": 6209.689163610392, + "max_x": 1647.466713903784, + "max_y": 6219.689163610392 + }, + "value": "PGMEA REFINE 공정", + "layer": "PID", + "id": "5264F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1726.665616454304, + "min_y": 6376.094452798064, + "max_x": 1740.343401288356, + "max_y": 6376.094452798064 + }, + "value": null, + "layer": "PID", + "id": "5264F2" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2394.636138967057, + "min_y": 6676.685099067865, + "max_x": 2420.7667038095697, + "max_y": 6680.685099067865 + }, + "value": "\\pi1.22241; .9; SC-10128 \\pi-0.16484;\\lSCRUBBER", + "layer": "0", + "id": "5264F7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2375.812431377262, + "min_y": 6662.81432446577, + "max_x": 2469.3040396023157, + "max_y": 6666.81432446577 + }, + "value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "5264FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2291.834298836957, + "min_y": 6585.570262062233, + "max_x": 2315.834298836957, + "max_y": 6590.570262062233 + }, + "value": "SC-10128", + "layer": "1", + "id": "5264FF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.955837493747, + "min_y": 6354.675195390571, + "max_x": 2441.955837493747, + "max_y": 6359.675195390571 + }, + "value": "T-9123", + "layer": "PID", + "id": "526500" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6353.0264823812, + "max_x": 2444.719546555842, + "max_y": 6356.86479909647 + }, + "value": null, + "layer": "PID", + "id": "526501" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6356.86479909647, + "max_x": 2421.703025074542, + "max_y": 6356.86479909647 + }, + "value": null, + "layer": "0", + "id": "526506" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2101.385433376452, + "min_y": 6494.63423754788, + "max_x": 2109.225433376452, + "max_y": 6502.47423754788 + }, + "value": null, + "layer": "PID", + "id": "526507" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2098.678010687073, + "min_y": 6495.393469661649, + "max_x": 2102.986824662296, + "max_y": 6501.715005434111 + }, + "value": null, + "layer": "0", + "id": "526508" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2109.225433376453, + "min_y": 6498.55423754788, + "max_x": 2160.282560607711, + "max_y": 6498.55423754788 + }, + "value": null, + "layer": "0", + "id": "52650A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1745.882078534836, + "min_y": 6154.9768955954, + "max_x": 1772.612078534836, + "max_y": 6159.0268955954 + }, + "value": "2,545~5,145", + "layer": "PID", + "id": "52650B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1745.647301047018, + "min_y": 6142.8268955954, + "max_x": 1772.377301047018, + "max_y": 6146.8768955954 + }, + "value": "2,545~5,145", + "layer": "PID", + "id": "52650C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1750.767500962376, + "min_y": 6130.6768955954, + "max_x": 1767.777500962376, + "max_y": 6134.7268955954005 + }, + "value": "1.0~2.0", + "layer": "PID", + "id": "52650D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.353209880212, + "min_y": 6118.5268955954, + "max_x": 1764.5032098802121, + "max_y": 6122.5768955954 + }, + "value": "20~40", + "layer": "PID", + "id": "52650E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1758.846903019756, + "min_y": 6572.564443803909, + "max_x": 1848.083500012448, + "max_y": 6572.564443803909 + }, + "value": null, + "layer": "0", + "id": "52650F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.677403911003, + "min_y": 6421.267023651527, + "max_x": 2011.478066358182, + "max_y": 6572.564443803909 + }, + "value": null, + "layer": "0", + "id": "526510" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1777.48016407069, + "min_y": 6256.98029018994, + "max_x": 1798.48016407069, + "max_y": 6261.98029018994 + }, + "value": "T-10100", + "layer": "PID", + "id": "526513" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1767.784455816736, + "min_y": 6255.268057637949, + "max_x": 1804.675815351177, + "max_y": 6262.944691068488 + }, + "value": null, + "layer": "PID", + "id": "526514" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1767.784455816736, + "min_y": 6259.106374353219, + "max_x": 1804.675815351177, + "max_y": 6262.944691068488 + }, + "value": null, + "layer": "PID", + "id": "526515" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1804.675815351177, + "min_y": 6259.106374353219, + "max_x": 1826.633799954028, + "max_y": 6296.782765537236 + }, + "value": null, + "layer": "0", + "id": "526519" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1907.775000755329, + "min_y": 6167.816491811305, + "max_x": 1960.311367389182, + "max_y": 6171.816491811305 + }, + "value": "\\pi14.94308; .9; DP-10101 \\pi3.99898;DIAPHRAGM PUMP", + "layer": "0", + "id": "52651C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1911.702731109955, + "min_y": 6148.23330235824, + "max_x": 1982.119156636222, + "max_y": 6152.23330235824 + }, + "value": ".9; CAPA : 60L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "layer": "0", + "id": "526520" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1984.798614606235, + "min_y": 6167.190552374076, + "max_x": 2022.730662778579, + "max_y": 6171.190552374076 + }, + "value": "\\pi9.45313; .9; P-10101 \\pi5.01541;FEED PUMP", + "layer": "0", + "id": "526524" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1986.122889141902, + "min_y": 6146.950359307568, + "max_x": 2104.413070877916, + "max_y": 6152.79773053734 + }, + "value": ".9; CAPA : 60L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "layer": "0", + "id": "526528" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2045.646335124768, + "min_y": 6166.774422382564, + "max_x": 2078.606700416598, + "max_y": 6170.774422382564 + }, + "value": "\\pi6.49592; .9; P-10114 \\pi3.87286;TOP PUMP", + "layer": "0", + "id": "52652C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2115.109482948632, + "min_y": 6168.030700138452, + "max_x": 2153.973721661072, + "max_y": 6172.030700138452 + }, + "value": "\\pi9.45274; .9; P-10116 \\pi1.54935;BOTTOM PUMP", + "layer": "0", + "id": "526534" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2115.902281674229, + "min_y": 6149.743278113195, + "max_x": 2178.1875628502858, + "max_y": 6153.743278113195 + }, + "value": ".9; CAPA : 15L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "layer": "0", + "id": "526538" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2188.013418590658, + "min_y": 6168.25968043306, + "max_x": 2222.527434782649, + "max_y": 6172.25968043306 + }, + "value": "\\pi7.28252; .9; P-10118 \\pi4.06108;SIDE PUMP", + "layer": "0", + "id": "52653C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2190.188529850883, + "min_y": 6150.942162157694, + "max_x": 2248.473197058466, + "max_y": 6154.942162157694 + }, + "value": ".9; CAPA : 48L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25Mpa RPM : 3,520", + "layer": "0", + "id": "526540" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2254.087104111837, + "min_y": 6170.507447256584, + "max_x": 2295.437184264534, + "max_y": 6174.507447256584 + }, + "value": "\\pi8.9958; .9; VP-10117 \\pi2.36486;VACUUM PUMP", + "layer": "0", + "id": "526544" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2257.634008552597, + "min_y": 6151.410613084754, + "max_x": 2346.8979466687365, + "max_y": 6155.410613084754 + }, + "value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "layer": "0", + "id": "526548" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1756.654604069, + "min_y": 6736.646781355357, + "max_x": 1790.251044580802, + "max_y": 6740.646781355357 + }, + "value": "\\pi7.02644; .9; C-10111 \\pi6.59415;\\lCOLUMN", + "layer": "0", + "id": "52654C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2009.817713260733, + "min_y": 6738.796669665562, + "max_x": 2062.0331919103664, + "max_y": 6742.796669665562 + }, + "value": "\\pi16.17477; .9; E-10112 \\pi5.13786;\\lTOP CONDENSER", + "layer": "0", + "id": "526554" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1923.034822703295, + "min_y": 6737.178810904706, + "max_x": 1970.5519752805353, + "max_y": 6741.178810904706 + }, + "value": "\\pi13.81339; .9; E-10117 \\pi2.2001;SIDE CONDENSER", + "layer": "0", + "id": "526558" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2183.873872123704, + "min_y": 6742.788103687885, + "max_x": 2233.4791315107605, + "max_y": 6746.788103687885 + }, + "value": "\\pi14.85745; .9; E-10119 \\pi3.79856;BOTTOM COOLER", + "layer": "0", + "id": "526560" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1835.951642792371, + "min_y": 6737.04263452005, + "max_x": 1880.3863927658028, + "max_y": 6741.04263452005 + }, + "value": "\\pi12.04994; .9; D-10113 \\pi5.11371;\\lREFLUX DRUM", + "layer": "0", + "id": "526568" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2105.482686752861, + "min_y": 6740.383251052846, + "max_x": 2147.6656951611244, + "max_y": 6744.383251052846 + }, + "value": "\\pi5.89286; .9; E-10115 A/B \\pi9.40249;\\lREBOILER", + "layer": "0", + "id": "526574" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1586.853180192905, + "min_y": 6734.675363607303, + "max_x": 1620.449620704707, + "max_y": 6738.675363607303 + }, + "value": "\\pi6.87013; .9; E-10103 \\pi2.56918;\\lPREHEATER", + "layer": "0", + "id": "52657C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2362.383296251633, + "min_y": 6738.927911988618, + "max_x": 2414.729769519717, + "max_y": 6742.927911988618 + }, + "value": "\\pi16.63592; .9; T-10101 \\pi2.03321;FEED BUFFER TANK", + "layer": "0", + "id": "526584" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2433.547013278831, + "min_y": 6739.132815283835, + "max_x": 2481.0105224827494, + "max_y": 6743.132815283835 + }, + "value": "\\pi13.72307; .9; T-10100 \\pi5.36052;RECYCLE TANK", + "layer": "0", + "id": "52658C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2277.113931081862, + "min_y": 6741.176668444087, + "max_x": 2313.509388407005, + "max_y": 6745.176668444087 + }, + "value": "\\pi7.01184; .9; SP-10601 \\pi4.10302;SEPERATER", + "layer": "0", + "id": "526594" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1659.66366159626, + "min_y": 6733.828298668743, + "max_x": 1704.848454236901, + "max_y": 6737.828298668743 + }, + "value": "\\pi8.3023; .9; F-10102A/B \\pi2.65318;FILTER HOUSING", + "layer": "0", + "id": "52659C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1570.115404234091, + "min_y": 6717.112320623782, + "max_x": 1740.4808306820587, + "max_y": 6723.39811505183 + }, + "value": ".9; SIZE : %%C89.1 x 366H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 %%DC .999999x; / AMB MATERIAL : STS304", + "layer": "0", + "id": "5265A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2429.342092951066, + "min_y": 6512.641840287686, + "max_x": 2450.342092951066, + "max_y": 6517.641840287686 + }, + "value": "T-10101", + "layer": "PID", + "id": "5265A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.953820692577, + "min_y": 6511.267823989351, + "max_x": 2458.845180227018, + "max_y": 6518.94445741989 + }, + "value": null, + "layer": "PID", + "id": "5265A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.953820692577, + "min_y": 6515.106140704621, + "max_x": 2458.845180227018, + "max_y": 6518.94445741989 + }, + "value": null, + "layer": "PID", + "id": "5265A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2225.276630558336, + "min_y": 6515.106140704621, + "max_x": 2421.953820692577, + "max_y": 6529.067775954671 + }, + "value": null, + "layer": "0", + "id": "5265AA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1787.883338833983, + "min_y": 6403.483675908313, + "max_x": 1808.883338833983, + "max_y": 6408.483675908313 + }, + "value": "P-10114", + "layer": "PID", + "id": "5265AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.187630580029, + "min_y": 6401.771443356321, + "max_x": 1815.07899011447, + "max_y": 6409.44807678686 + }, + "value": null, + "layer": "PID", + "id": "5265AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.187630580029, + "min_y": 6405.609760071591, + "max_x": 1815.07899011447, + "max_y": 6409.44807678686 + }, + "value": null, + "layer": "PID", + "id": "5265AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1787.795452419026, + "min_y": 6392.128408280713, + "max_x": 1808.795452419026, + "max_y": 6397.128408280713 + }, + "value": "E-10119", + "layer": "PID", + "id": "5265B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.099744165072, + "min_y": 6390.416175728722, + "max_x": 1814.991103699513, + "max_y": 6398.092809159262 + }, + "value": null, + "layer": "PID", + "id": "5265B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.099744165072, + "min_y": 6394.254492443992, + "max_x": 1814.991103699513, + "max_y": 6398.092809159262 + }, + "value": null, + "layer": "PID", + "id": "5265B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1823.337117115198, + "min_y": 6357.787386013769, + "max_x": 1833.488597377332, + "max_y": 6357.787386013769 + }, + "value": null, + "layer": "0", + "id": "5265B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1814.991103699513, + "min_y": 6383.469234346518, + "max_x": 1823.337117115198, + "max_y": 6394.254492443992 + }, + "value": null, + "layer": "0", + "id": "5265B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1815.07899011447, + "min_y": 6383.529490013117, + "max_x": 1827.397004623652, + "max_y": 6405.609760071591 + }, + "value": null, + "layer": "0", + "id": "5265BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.397004623652, + "min_y": 6362.532785968395, + "max_x": 1833.488597377332, + "max_y": 6362.532785968395 + }, + "value": null, + "layer": "0", + "id": "5265BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1775.385667900849, + "min_y": 6382.913578642166, + "max_x": 1775.385667900849, + "max_y": 6474.733257805207 + }, + "value": null, + "layer": "0", + "id": "5265D1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6739.069063552358, + "max_x": 1559.70928335705, + "max_y": 6748.261340984446 + }, + "value": null, + "layer": "0", + "id": "52663E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1553.296791591907, + "min_y": 6740.700854309046, + "max_x": 1555.621860886429, + "max_y": 6744.575969799916 + }, + "value": "2", + "layer": "0", + "id": "52663F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 3538.645562698913, + "max_y": 6749.793316246192 + }, + "value": null, + "layer": "TIT", + "id": "526B18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 3545.179729178733, + "max_y": 6749.793316246192 + }, + "value": null, + "layer": "0", + "id": "526B1A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6096.027309547135, + "max_x": 3299.209359564115, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B1B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3239.500582727752, + "min_y": 6097.047225685329, + "max_x": 3241.1377952277517, + "max_y": 6099.775913185329 + }, + "value": "F", + "layer": "0", + "id": "526B1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3357.10960652989, + "min_y": 6096.671685575234, + "max_x": 3358.7468190298896, + "max_y": 6099.400373075234 + }, + "value": "G", + "layer": "0", + "id": "526B1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6096.027309547135, + "max_x": 3419.623733874613, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3478.467044127802, + "min_y": 6099.336042373573, + "max_x": 3480.104256627802, + "max_y": 6102.064729873573 + }, + "value": "H", + "layer": "0", + "id": "526B21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6149.839430290906, + "max_x": 3548.199098923365, + "max_y": 6152.568117790906 + }, + "value": "1", + "layer": "0", + "id": "526B22" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6263.704428735738, + "max_x": 3548.199098923365, + "max_y": 6266.4331162357375 + }, + "value": "2", + "layer": "0", + "id": "526B26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6379.480485769266, + "max_x": 3548.199098923365, + "max_y": 6382.209173269266 + }, + "value": "3", + "layer": "0", + "id": "526B29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6488.101701469805, + "max_x": 3548.199098923365, + "max_y": 6490.830388969805 + }, + "value": "4", + "layer": "0", + "id": "526B2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6601.255866275384, + "max_x": 3548.199098923365, + "max_y": 6603.984553775384 + }, + "value": "5", + "layer": "0", + "id": "526B2F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2637.368957946498, + "min_y": 6753.01850754414, + "max_x": 2639.006170446498, + "max_y": 6755.74719504414 + }, + "value": "A", + "layer": "0", + "id": "526B32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6749.793316246192, + "max_x": 2700.620214564113, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2757.865281693544, + "min_y": 6752.961740539466, + "max_x": 2759.502494193544, + "max_y": 6755.690428039466 + }, + "value": "B", + "layer": "0", + "id": "526B35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6749.793316246192, + "max_x": 2820.338043564114, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2880.84031813661, + "min_y": 6753.208992313907, + "max_x": 2882.47753063661, + "max_y": 6755.937679813907 + }, + "value": "C", + "layer": "0", + "id": "526B38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6749.793316246192, + "max_x": 2940.055872564114, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B39" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2999.808667974339, + "min_y": 6752.933923379231, + "max_x": 3001.445880474339, + "max_y": 6755.662610879231 + }, + "value": "D", + "layer": "0", + "id": "526B3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6749.793316246192, + "max_x": 3059.773701564114, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B3C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3120.084954746962, + "min_y": 6752.840883264728, + "max_x": 3121.722167246962, + "max_y": 6755.569570764728 + }, + "value": "E", + "layer": "0", + "id": "526B3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6749.793316246192, + "max_x": 3181.200295314111, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3241.421006217712, + "min_y": 6752.747843150224, + "max_x": 3243.058218717712, + "max_y": 6755.476530650224 + }, + "value": "F", + "layer": "0", + "id": "526B41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6749.793316246192, + "max_x": 3299.209359564115, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B42" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3355.956317149465, + "min_y": 6753.135808279377, + "max_x": 3357.593529649465, + "max_y": 6755.864495779377 + }, + "value": "G", + "layer": "0", + "id": "526B44" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6749.793316246192, + "max_x": 3418.927188564114, + "max_y": 6756.32748272601 + }, + "value": null, + "layer": "0", + "id": "526B45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6149.839430290906, + "max_x": 2576.269455295225, + "max_y": 6152.568117790906 + }, + "value": "1", + "layer": "0", + "id": "526B48" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6213.544133729968, + "max_x": 2580.902385564113, + "max_y": 6213.544133729968 + }, + "value": null, + "layer": "0", + "id": "526B49" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6263.704428735738, + "max_x": 2576.269455295225, + "max_y": 6266.4331162357375 + }, + "value": "2", + "layer": "0", + "id": "526B4B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6324.522886229967, + "max_x": 2580.902385564113, + "max_y": 6324.522886229967 + }, + "value": null, + "layer": "0", + "id": "526B4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6379.480485769266, + "max_x": 2576.269455295225, + "max_y": 6382.209173269266 + }, + "value": "3", + "layer": "0", + "id": "526B4E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6435.501638729967, + "max_x": 2580.902385564113, + "max_y": 6435.501638729967 + }, + "value": null, + "layer": "0", + "id": "526B4F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6488.101701469805, + "max_x": 2576.269455295225, + "max_y": 6490.830388969805 + }, + "value": "4", + "layer": "0", + "id": "526B51" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6546.480391229967, + "max_x": 2580.902385564113, + "max_y": 6546.480391229967 + }, + "value": null, + "layer": "0", + "id": "526B52" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6601.255866275384, + "max_x": 2576.269455295225, + "max_y": 6603.984553775384 + }, + "value": "5", + "layer": "0", + "id": "526B54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6638.814563746191, + "max_x": 2580.902385564113, + "max_y": 6638.814563746191 + }, + "value": null, + "layer": "0", + "id": "526B55" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6701.684523455182, + "max_x": 2576.269455295225, + "max_y": 6704.413210955182 + }, + "value": "6", + "layer": "0", + "id": "526B57" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6096.027309547135, + "max_x": 2700.620214564113, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B58" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2640.832314922806, + "min_y": 6096.119759948373, + "max_x": 2642.4695274228056, + "max_y": 6098.848447448373 + }, + "value": "A", + "layer": "0", + "id": "526B5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6096.027309547135, + "max_x": 2820.338043564114, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B5B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2757.865281693544, + "min_y": 6099.393051733678, + "max_x": 2759.502494193544, + "max_y": 6102.1217392336775 + }, + "value": "B", + "layer": "0", + "id": "526B5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2880.84031813661, + "min_y": 6099.145799959238, + "max_x": 2882.47753063661, + "max_y": 6101.874487459238 + }, + "value": "C", + "layer": "0", + "id": "526B5E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6096.027309547135, + "max_x": 2940.055872564114, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2999.808667974339, + "min_y": 6099.420868893913, + "max_x": 3001.445880474339, + "max_y": 6102.149556393913 + }, + "value": "D", + "layer": "0", + "id": "526B61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6096.027309547135, + "max_x": 3059.773701564114, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6096.027309547135, + "max_x": 3181.200295314111, + "max_y": 6102.561476026954 + }, + "value": null, + "layer": "0", + "id": "526B64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3120.084954746962, + "min_y": 6099.513909008416, + "max_x": 3121.722167246962, + "max_y": 6102.242596508416 + }, + "value": "E", + "layer": "0", + "id": "526B66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3405.05640556278, + "min_y": 6177.32235091707, + "max_x": 3423.553855819773, + "max_y": 6179.693818898736 + }, + "value": "PROJECT NAME:", + "layer": "0", + "id": "526B6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3405.274701795441, + "min_y": 6159.124613120707, + "max_x": 3413.811986529438, + "max_y": 6161.496081102373 + }, + "value": "TITLE:", + "layer": "0", + "id": "526B6C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3405.05640556278, + "min_y": 6131.828006426164, + "max_x": 3416.439451874776, + "max_y": 6134.19947440783 + }, + "value": "DWG. NO.", + "layer": "0", + "id": "526B6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6102.561475534792, + "max_x": 3401.895339486728, + "max_y": 6301.822916703463 + }, + "value": null, + "layer": "0", + "id": "526B6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3440.18827364656, + "min_y": 6108.416646905762, + "max_x": 3449.28389864656, + "max_y": 6111.4485219057615 + }, + "value": "SCALE", + "layer": "0", + "id": "526B6F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3454.573703973027, + "min_y": 6102.561476026954, + "max_x": 3454.573703973027, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3471.289654531204, + "min_y": 6102.561476026954, + "max_x": 3471.289654531204, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3474.111203713561, + "min_y": 6108.483353972523, + "max_x": 3481.067509793114, + "max_y": 6111.381814839004 + }, + "value": "DATE", + "layer": "0", + "id": "526B72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3486.384407248497, + "min_y": 6102.561476026954, + "max_x": 3486.384407248497, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3511.36548180496, + "min_y": 6102.561476026954, + "max_x": 3511.36548180496, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3522.358595779127, + "min_y": 6102.561476026954, + "max_x": 3522.358595779128, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3513.414380581023, + "min_y": 6108.483353726442, + "max_x": 3518.631610140688, + "max_y": 6111.381814592923 + }, + "value": "REV", + "layer": "0", + "id": "526B76" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3525.38510183847, + "min_y": 6106.509586493907, + "max_x": 3535.949107666227, + "max_y": 6115.658283906473 + }, + "value": null, + "layer": "0", + "id": "526B77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3437.939760967888, + "min_y": 6102.561476026954, + "max_x": 3437.939760967888, + "max_y": 6117.303692784572 + }, + "value": null, + "layer": "0", + "id": "526B7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3403.627035908132, + "min_y": 6108.483353726442, + "max_x": 3414.061495027461, + "max_y": 6111.381814592923 + }, + "value": "JOB.NO", + "layer": "0", + "id": "526B7C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3427.71137893193, + "min_y": 6108.483353726442, + "max_x": 3429.4504554518185, + "max_y": 6111.381814592923 + }, + "value": "-", + "layer": "0", + "id": "526B7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3457.894804822519, + "min_y": 6108.483353726442, + "max_x": 3464.851110902072, + "max_y": 6111.381814592923 + }, + "value": "NONE", + "layer": "0", + "id": "526B7F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3529.394746135313, + "min_y": 6108.416646659682, + "max_x": 3531.213871135313, + "max_y": 6111.448521659681 + }, + "value": "0", + "layer": "0", + "id": "526B81" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3474.418302812012, + "min_y": 6126.402561682753, + "max_x": 3573.3430120923535, + "max_y": 6131.253561682753 + }, + "value": "\\Fromans|c129; PFD-002", + "layer": "0", + "id": "526B82" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6693.554494766059, + "max_x": 3548.199098923365, + "max_y": 6696.283182266059 + }, + "value": "6", + "layer": "0", + "id": "526B86" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3488.591784519214, + "min_y": 6108.416646905762, + "max_x": 3506.7830345192137, + "max_y": 6111.4485219057615 + }, + "value": "2019.03.20", + "layer": "0", + "id": "526B89" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3402.676976466873, + "min_y": 6267.99626932748, + "max_x": 3408.498176466873, + "max_y": 6270.42176932748 + }, + "value": "REV.", + "layer": "0", + "id": "526B8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3409.545463447018, + "min_y": 6266.018323374238, + "max_x": 3409.545463447018, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B8C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6272.399715280722, + "max_x": 3409.545463447201, + "max_y": 6287.111315992047 + }, + "value": null, + "layer": "0", + "id": "526B91" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6287.111315992047, + "max_x": 3409.545463447201, + "max_y": 6301.822916703463 + }, + "value": null, + "layer": "0", + "id": "526B93" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3418.227985585869, + "min_y": 6267.99626932748, + "max_x": 3424.049185585869, + "max_y": 6270.42176932748 + }, + "value": "DATE", + "layer": "0", + "id": "526B95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3518.288687698913, + "min_y": 6267.99626932748, + "max_x": 3524.1098876989126, + "max_y": 6270.42176932748 + }, + "value": "APPD", + "layer": "0", + "id": "526B96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3508.586687698914, + "min_y": 6267.99626932748, + "max_x": 3514.407887698914, + "max_y": 6270.42176932748 + }, + "value": "APPD", + "layer": "0", + "id": "526B97" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3498.884687698914, + "min_y": 6267.99626932748, + "max_x": 3504.705887698914, + "max_y": 6270.42176932748 + }, + "value": "CHKD", + "layer": "0", + "id": "526B98" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3487.710062698913, + "min_y": 6266.018323374238, + "max_x": 3487.710062698913, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3497.412062698913, + "min_y": 6266.018323374238, + "max_x": 3497.412062698913, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3507.114062698914, + "min_y": 6266.018323374238, + "max_x": 3507.114062698914, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B9B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3516.816062698913, + "min_y": 6266.018323374238, + "max_x": 3516.816062698913, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3526.518062698914, + "min_y": 6266.018323374238, + "max_x": 3526.518062698914, + "max_y": 6301.822916703375 + }, + "value": null, + "layer": "0", + "id": "526B9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3489.096062698913, + "min_y": 6267.99626932748, + "max_x": 3494.917262698913, + "max_y": 6270.42176932748 + }, + "value": "DRWN", + "layer": "0", + "id": "526B9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3451.125260211816, + "min_y": 6267.996269327436, + "max_x": 3467.133560211816, + "max_y": 6270.421769327436 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "526B9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3434.602807724719, + "min_y": 6266.018323374328, + "max_x": 3434.602807724719, + "max_y": 6301.822916703463 + }, + "value": null, + "layer": "0", + "id": "526BA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3527.341000198914, + "min_y": 6267.99626932748, + "max_x": 3536.072800198914, + "max_y": 6270.42176932748 + }, + "value": "REMARK", + "layer": "0", + "id": "526BA3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3405.059063269366, + "min_y": 6274.86486545851, + "max_x": 3406.514363269366, + "max_y": 6277.290365458511 + }, + "value": "0", + "layer": "0", + "id": "526BA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3412.452985585869, + "min_y": 6274.864865458464, + "max_x": 3428.461285585869, + "max_y": 6277.290365458464 + }, + "value": "MAR.20.2019", + "layer": "0", + "id": "526BA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3458.846435211817, + "min_y": 6274.864865458464, + "max_x": 3463.212335211817, + "max_y": 6277.290365458464 + }, + "value": "IFD", + "layer": "0", + "id": "526BA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3489.442562698913, + "min_y": 6274.864865458464, + "max_x": 3493.808462698913, + "max_y": 6277.290365458464 + }, + "value": "SYS", + "layer": "0", + "id": "526BA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6237.085653590458, + "max_x": 2580.902385564113, + "max_y": 6293.680653590458 + }, + "value": null, + "layer": "0", + "id": "526BA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3404.262550759625, + "min_y": 6199.967526109785, + "max_x": 3422.760001016618, + "max_y": 6202.33899409145 + }, + "value": "MANUFACTURER:", + "layer": "0", + "id": "526BAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3404.011697667975, + "min_y": 6240.492404210062, + "max_x": 3413.9718631909714, + "max_y": 6242.863872191728 + }, + "value": "CLIENT:", + "layer": "0", + "id": "526BAE" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3472.360962175509, + "min_y": 6255.101068199067, + "max_x": 3718.5172947719684, + "max_y": 6265.4092209511955 + }, + "value": "10th Plant", + "layer": "C3", + "id": "526BAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3427.335194734683, + "min_y": 6229.275041898576, + "max_x": 3497.6586171346826, + "max_y": 6233.316617898576 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "C3", + "id": "526BB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3417.334611790562, + "min_y": 6231.310192111767, + "max_x": 3419.318954597443, + "max_y": 6233.286406033045 + }, + "value": null, + "layer": "0-BAS", + "id": "526BBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3418.809695926426, + "min_y": 6231.310192111767, + "max_x": 3419.318954597443, + "max_y": 6231.310192111767 + }, + "value": null, + "layer": "0-BAS", + "id": "526BC6" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3418.541104301797, + "min_y": 6227.76807578343, + "max_x": 3428.406670755783, + "max_y": 6229.349046920445 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "526BCA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3447.120375015122, + "min_y": 6195.655268394566, + "max_x": 3452.65538466534, + "max_y": 6198.338909437096 + }, + "value": null, + "layer": "0", + "id": "526BCD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3447.120375015122, + "min_y": 6195.655268394566, + "max_x": 3448.294467971229, + "max_y": 6198.338909437096 + }, + "value": null, + "layer": "0", + "id": "526BCE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3448.713786884124, + "min_y": 6190.560988999291, + "max_x": 3451.061972796338, + "max_y": 6192.909174911504 + }, + "value": null, + "layer": "0", + "id": "526BD6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3454.123946858813, + "min_y": 6190.507008681255, + "max_x": 3456.4721327710267, + "max_y": 6192.855194593468 + }, + "value": null, + "layer": "0", + "id": "526BD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3451.061676012123, + "min_y": 6190.871373013748, + "max_x": 3454.980002921149, + "max_y": 6192.811299320857 + }, + "value": null, + "layer": "0", + "id": "526BD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3450.205916734002, + "min_y": 6190.604884271901, + "max_x": 3451.152929375026, + "max_y": 6190.871373013748 + }, + "value": null, + "layer": "0", + "id": "526BDB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3463.162651515267, + "min_y": 6192.954316053215, + "max_x": 3524.4657084126297, + "max_y": 6200.396194654585 + }, + "value": "\\fMalgun Gothic|b0|i0|c129|p50;주식회사", + "layer": "C3", + "id": "526BDD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3404.262550759624, + "min_y": 6219.746175152917, + "max_x": 3421.3371202276176, + "max_y": 6222.117643134583 + }, + "value": "DESIGNED BY:", + "layer": "0", + "id": "526BDF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2656.39240340327, + "min_y": 6388.53200211512, + "max_x": 2688.055257264955, + "max_y": 6420.815696248602 + }, + "value": null, + "layer": "0", + "id": "526BE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.39240340327, + "min_y": 6388.842422251043, + "max_x": 2688.055257264955, + "max_y": 6420.505276112692 + }, + "value": null, + "layer": "0", + "id": "526BE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2678.936665772928, + "min_y": 6388.842422251043, + "max_x": 2678.936665772928, + "max_y": 6420.505276112692 + }, + "value": null, + "layer": "0", + "id": "526BE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2659.621147373926, + "min_y": 6399.531035040191, + "max_x": 2675.8850346978697, + "max_y": 6411.828235309191 + }, + "value": "IBC", + "layer": "0", + "id": "526BE5" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2704.193292202207, + "min_y": 6423.577644948537, + "max_x": 2716.165234477895, + "max_y": 6430.389842192809 + }, + "value": null, + "layer": "0", + "id": "526BE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2701.321589877894, + "min_y": 6414.351907001905, + "max_x": 2719.036936802208, + "max_y": 6431.014064960698 + }, + "value": null, + "layer": "0", + "id": "526BE8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2699.461453792663, + "min_y": 6413.950597325578, + "max_x": 2703.823634655076, + "max_y": 6414.351907001905 + }, + "value": null, + "layer": "0", + "id": "526BEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2716.534892025009, + "min_y": 6413.950597325578, + "max_x": 2720.897072887473, + "max_y": 6421.135140122711 + }, + "value": null, + "layer": "0", + "id": "526BF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2716.534892025009, + "min_y": 6413.950597325578, + "max_x": 2716.534892025009, + "max_y": 6414.351907001905 + }, + "value": null, + "layer": "0", + "id": "526BF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2672.223830334113, + "min_y": 6420.815696248602, + "max_x": 2704.193292202207, + "max_y": 6426.983743570692 + }, + "value": null, + "layer": "0", + "id": "526BFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2797.081920817852, + "min_y": 6381.85378135509, + "max_x": 2797.14823154294, + "max_y": 6417.16314392071 + }, + "value": null, + "layer": "0", + "id": "526BFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2767.75864875452, + "min_y": 6381.85378135509, + "max_x": 2770.566164216436, + "max_y": 6417.30913023313 + }, + "value": null, + "layer": "0", + "id": "526BFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2767.496791241443, + "min_y": 6392.218899068542, + "max_x": 2767.75864875452, + "max_y": 6397.046566974953 + }, + "value": null, + "layer": "0", + "id": "526C05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2794.141920817852, + "min_y": 6381.36378135509, + "max_x": 2798.061920817852, + "max_y": 6388.646024963852 + }, + "value": null, + "layer": "0", + "id": "526C08" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.36378135509, + "max_x": 2773.506164216436, + "max_y": 6388.793126113619 + }, + "value": null, + "layer": "0", + "id": "526C09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2798.061920817852, + "min_y": 6381.36378135509, + "max_x": 2798.061920817852, + "max_y": 6381.85378135509 + }, + "value": null, + "layer": "0", + "id": "526C0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.36378135509, + "max_x": 2769.586164216436, + "max_y": 6381.85378135509 + }, + "value": null, + "layer": "0", + "id": "526C13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2783.824042517145, + "min_y": 6369.047249901908, + "max_x": 2833.824042517145, + "max_y": 6385.86217442331 + }, + "value": null, + "layer": "0", + "id": "526C17" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2802.186853932152, + "min_y": 6402.367936533811, + "max_x": 2823.186853932152, + "max_y": 6407.367936533811 + }, + "value": "T-10201", + "layer": "1", + "id": "526C18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2747.263756803488, + "min_y": 6398.525563276344, + "max_x": 2775.529089667998, + "max_y": 6426.983743570673 + }, + "value": null, + "layer": "0", + "id": "526C19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2833.824042517145, + "min_y": 6371.025917283414, + "max_x": 2841.248044467988, + "max_y": 6375.225917283415 + }, + "value": null, + "layer": "PID", + "id": "526C1A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2839.677315618979, + "min_y": 6371.025917283414, + "max_x": 2841.248044467988, + "max_y": 6371.025917283414 + }, + "value": null, + "layer": "PID", + "id": "526C1B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2827.6453751356385, + "min_y": 6362.868582520401, + "max_x": 2840.002709898651, + "max_y": 6375.225917283415 + }, + "value": null, + "layer": "0", + "id": "526C1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2828.924042517145, + "min_y": 6361.174911640335, + "max_x": 2838.724042517145, + "max_y": 6363.955498669641 + }, + "value": null, + "layer": "PID", + "id": "526C1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2828.123168852679, + "min_y": 6355.724561226562, + "max_x": 2849.123168852679, + "max_y": 6360.724561226562 + }, + "value": "P-10201", + "layer": "1", + "id": "526C21" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2873.261730569679, + "min_y": 6359.348300375668, + "max_x": 2883.210289995089, + "max_y": 6367.028300375669 + }, + "value": null, + "layer": "0", + "id": "526C23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2871.482293161992, + "min_y": 6362.160867976347, + "max_x": 2913.653286560548, + "max_y": 6376.872781118282 + }, + "value": null, + "layer": "0", + "id": "526C24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2841.248044467988, + "min_y": 6362.160867976347, + "max_x": 2878.236010282384, + "max_y": 6375.990831108989 + }, + "value": null, + "layer": "0", + "id": "526C25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2877.101730569679, + "min_y": 6359.348300375668, + "max_x": 2879.370289995089, + "max_y": 6359.348300375668 + }, + "value": null, + "layer": "0", + "id": "526C2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2872.203001959148, + "min_y": 6375.412070261209, + "max_x": 2872.203001959148, + "max_y": 6377.451541966062 + }, + "value": null, + "layer": "0", + "id": "526C2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2884.269018605619, + "min_y": 6375.412070261209, + "max_x": 2884.269018605619, + "max_y": 6377.451541966062 + }, + "value": null, + "layer": "0", + "id": "526C2F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2868.339029599255, + "min_y": 6351.111350318216, + "max_x": 2898.339029599255, + "max_y": 6356.111350318216 + }, + "value": "F-10202A/B", + "layer": "1", + "id": "526C34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6388.08328545656, + "max_x": 2919.653286560548, + "max_y": 6417.871732562632 + }, + "value": null, + "layer": "0", + "id": "526C35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6388.08328545656, + "max_x": 2909.653286560548, + "max_y": 6417.871732562632 + }, + "value": null, + "layer": "0", + "id": "526C36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6417.871732562632, + "max_x": 2919.653286560548, + "max_y": 6422.871732562632 + }, + "value": null, + "layer": "0", + "id": "526C37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2917.653286560548, + "min_y": 6418.871732562632, + "max_x": 2917.653286560548, + "max_y": 6422.871732562632 + }, + "value": null, + "layer": "0", + "id": "526C38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2959.846373841406, + "min_y": 6408.370817396828, + "max_x": 3025.573400301571, + "max_y": 6586.275713723856 + }, + "value": null, + "layer": "0", + "id": "526C41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.573400301571, + "min_y": 6408.370817396828, + "max_x": 3046.850096784786, + "max_y": 6586.275713723856 + }, + "value": null, + "layer": "0", + "id": "526C42" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6586.275713723856, + "max_x": 3025.573400301571, + "max_y": 6589.534523948696 + }, + "value": null, + "layer": "0", + "id": "526C43" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6405.112007171988, + "max_x": 3025.573400301571, + "max_y": 6408.370817396828 + }, + "value": null, + "layer": "0", + "id": "526C44" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6590.847546003799, + "max_x": 3086.898924124956, + "max_y": 6614.886069428282 + }, + "value": null, + "layer": "0", + "id": "526C4A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3076.898924124956, + "min_y": 6590.8475460038, + "max_x": 3076.898924124956, + "max_y": 6614.886069428282 + }, + "value": null, + "layer": "0", + "id": "526C4B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6614.886069428282, + "max_x": 3086.898924124956, + "max_y": 6619.886069428281 + }, + "value": null, + "layer": "0", + "id": "526C4C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6615.886069428281, + "max_x": 3084.898924124956, + "max_y": 6619.886069428281 + }, + "value": null, + "layer": "0", + "id": "526C4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3087.898924124956, + "min_y": 6571.479935777583, + "max_x": 3087.898924124956, + "max_y": 6587.964747460446 + }, + "value": null, + "layer": "0", + "id": "526C55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6571.479935777583, + "max_x": 3073.898924124956, + "max_y": 6587.964747460445 + }, + "value": null, + "layer": "0", + "id": "526C56" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6567.977678903663, + "max_x": 3087.898924124956, + "max_y": 6571.479935777583 + }, + "value": null, + "layer": "0", + "id": "526C57" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6587.964747460446, + "max_x": 3076.898924124956, + "max_y": 6590.8475460038 + }, + "value": null, + "layer": "0", + "id": "526C58" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6587.964747460446, + "max_x": 3087.898924124956, + "max_y": 6590.847546003799 + }, + "value": null, + "layer": "0", + "id": "526C59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3053.388683652372, + "min_y": 6348.572463803879, + "max_x": 3060.812685603216, + "max_y": 6352.772463803879 + }, + "value": null, + "layer": "PID", + "id": "526C5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3059.241956754207, + "min_y": 6348.572463803879, + "max_x": 3060.812685603216, + "max_y": 6348.572463803879 + }, + "value": null, + "layer": "PID", + "id": "526C5C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3047.2100162708657, + "min_y": 6340.415129040866, + "max_x": 3059.5673510338784, + "max_y": 6352.77246380388 + }, + "value": null, + "layer": "0", + "id": "526C5E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3048.488683652373, + "min_y": 6338.721458160801, + "max_x": 3058.288683652373, + "max_y": 6341.502045190106 + }, + "value": null, + "layer": "PID", + "id": "526C5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3047.687809987907, + "min_y": 6333.271107747027, + "max_x": 3068.687809987907, + "max_y": 6338.271107747027 + }, + "value": "P-10216", + "layer": "1", + "id": "526C62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3018.57340030157, + "min_y": 6589.534523948696, + "max_x": 3046.428106950384, + "max_y": 6639.942783200272 + }, + "value": null, + "layer": "0", + "id": "526C64" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3056.975529639763, + "min_y": 6619.886069428281, + "max_x": 3080.898924124956, + "max_y": 6639.942783200272 + }, + "value": null, + "layer": "0", + "id": "526C66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3105.708826674423, + "min_y": 6541.189244792739, + "max_x": 3113.132828625266, + "max_y": 6545.38924479274 + }, + "value": null, + "layer": "PID", + "id": "526C67" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3111.562099776257, + "min_y": 6541.189244792739, + "max_x": 3113.132828625266, + "max_y": 6541.189244792739 + }, + "value": null, + "layer": "PID", + "id": "526C68" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3099.530159292917, + "min_y": 6533.031910029727, + "max_x": 3111.8874940559294, + "max_y": 6545.389244792741 + }, + "value": null, + "layer": "0", + "id": "526C6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3100.808826674423, + "min_y": 6531.338239149661, + "max_x": 3110.608826674423, + "max_y": 6534.118826178967 + }, + "value": null, + "layer": "PID", + "id": "526C6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3100.007953009957, + "min_y": 6525.887888735887, + "max_x": 3121.007953009957, + "max_y": 6530.887888735887 + }, + "value": "P-10214", + "layer": "1", + "id": "526C6E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3080.898924124956, + "min_y": 6539.210577411234, + "max_x": 3105.708826674423, + "max_y": 6567.977678903663 + }, + "value": null, + "layer": "0", + "id": "526C70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3113.132828625266, + "min_y": 6512.775706385951, + "max_x": 3132.522488231785, + "max_y": 6543.28924479274 + }, + "value": null, + "layer": "0", + "id": "526C72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3043.138949143307, + "min_y": 6512.775706385951, + "max_x": 3074.029812820346, + "max_y": 6579.939012179359 + }, + "value": null, + "layer": "0", + "id": "526C75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6453.331389906844, + "max_x": 3052.850096784786, + "max_y": 6483.119837012916 + }, + "value": null, + "layer": "0", + "id": "526C77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6453.331389906844, + "max_x": 3042.850096784786, + "max_y": 6483.119837012916 + }, + "value": null, + "layer": "0", + "id": "526C78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6483.119837012916, + "max_x": 3052.850096784786, + "max_y": 6488.119837012916 + }, + "value": null, + "layer": "0", + "id": "526C79" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3050.850096784786, + "min_y": 6484.119837012916, + "max_x": 3050.850096784786, + "max_y": 6488.119837012916 + }, + "value": null, + "layer": "0", + "id": "526C7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3046.850096784786, + "min_y": 6488.119837012916, + "max_x": 3046.850096784786, + "max_y": 6497.323265560341 + }, + "value": null, + "layer": "0", + "id": "526C84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3079.482458737928, + "min_y": 6447.26627009132, + "max_x": 3086.906460688772, + "max_y": 6451.466270091322 + }, + "value": null, + "layer": "PID", + "id": "526C85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3085.335731839762, + "min_y": 6447.26627009132, + "max_x": 3086.906460688772, + "max_y": 6447.26627009132 + }, + "value": null, + "layer": "PID", + "id": "526C86" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3073.3037913564217, + "min_y": 6439.108935328307, + "max_x": 3085.6611261194344, + "max_y": 6451.46627009132 + }, + "value": null, + "layer": "0", + "id": "526C88" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3074.582458737928, + "min_y": 6437.415264448242, + "max_x": 3084.382458737928, + "max_y": 6440.195851477549 + }, + "value": null, + "layer": "PID", + "id": "526C89" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3073.781585073463, + "min_y": 6431.964914034468, + "max_x": 3094.781585073463, + "max_y": 6436.964914034468 + }, + "value": "P-10218", + "layer": "1", + "id": "526C8C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3046.850096784786, + "min_y": 6445.287602709814, + "max_x": 3079.482458737928, + "max_y": 6453.331389906844 + }, + "value": null, + "layer": "0", + "id": "526C8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6426.866270091316, + "max_x": 3263.508692763485, + "max_y": 6441.866270091321 + }, + "value": null, + "layer": "0", + "id": "526C90" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2984.565795260147, + "min_y": 6415.76425868352, + "max_x": 3007.373400301571, + "max_y": 6420.844598513117 + }, + "value": null, + "layer": "0", + "id": "526C93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2984.565795260146, + "min_y": 6346.593796422373, + "max_x": 3018.573400301571, + "max_y": 6405.112007171988 + }, + "value": null, + "layer": "0", + "id": "526C94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6380.975811577449, + "max_x": 2990.565795260146, + "max_y": 6410.76425868352 + }, + "value": null, + "layer": "0", + "id": "526C95" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6380.975811577449, + "max_x": 2980.565795260146, + "max_y": 6410.76425868352 + }, + "value": null, + "layer": "0", + "id": "526C96" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6410.76425868352, + "max_x": 2990.565795260147, + "max_y": 6415.76425868352 + }, + "value": null, + "layer": "0", + "id": "526C97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2988.565795260146, + "min_y": 6411.76425868352, + "max_x": 2988.565795260146, + "max_y": 6415.76425868352 + }, + "value": null, + "layer": "0", + "id": "526C98" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2984.565795260146, + "min_y": 6371.89843460652, + "max_x": 2984.565795260146, + "max_y": 6380.975811577449 + }, + "value": null, + "layer": "0", + "id": "526CA2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3018.573400301571, + "min_y": 6346.593796422373, + "max_x": 3053.388683652372, + "max_y": 6346.593796422373 + }, + "value": null, + "layer": "0", + "id": "526CA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3103.352885034102, + "min_y": 6345.872463803879, + "max_x": 3123.352885034103, + "max_y": 6355.472463803879 + }, + "value": null, + "layer": "0", + "id": "526CA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3103.352885034102, + "min_y": 6353.872463803879, + "max_x": 3123.352885034103, + "max_y": 6353.872463803879 + }, + "value": null, + "layer": "0", + "id": "526CA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3123.352885034103, + "min_y": 6345.872463803879, + "max_x": 3127.352885034103, + "max_y": 6355.472463803879 + }, + "value": null, + "layer": "0", + "id": "526CA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3124.152885034102, + "min_y": 6347.472463803878, + "max_x": 3127.352885034103, + "max_y": 6347.472463803878 + }, + "value": null, + "layer": "0", + "id": "526CA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3109.215625045272, + "min_y": 6337.466664052804, + "max_x": 3130.215625045272, + "max_y": 6342.466664052804 + }, + "value": "E-10219", + "layer": "1", + "id": "526CB2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3060.812685603216, + "min_y": 6350.67246380388, + "max_x": 3103.352885034102, + "max_y": 6350.67246380388 + }, + "value": null, + "layer": "0", + "id": "526CB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2913.653286560548, + "min_y": 6373.125917283414, + "max_x": 2913.653286560548, + "max_y": 6388.08328545656 + }, + "value": null, + "layer": "0", + "id": "526CB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2913.653286560548, + "min_y": 6422.871732562632, + "max_x": 2949.298951152026, + "max_y": 6430.358237539831 + }, + "value": null, + "layer": "0", + "id": "526CB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3250.916446829466, + "min_y": 6372.100018829111, + "max_x": 3258.34044878031, + "max_y": 6376.300018829111 + }, + "value": null, + "layer": "PID", + "id": "526CBB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3256.769719931301, + "min_y": 6372.100018829111, + "max_x": 3258.34044878031, + "max_y": 6372.100018829111 + }, + "value": null, + "layer": "PID", + "id": "526CBC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3244.73777944796, + "min_y": 6363.942684066097, + "max_x": 3257.0951142109725, + "max_y": 6376.300018829111 + }, + "value": null, + "layer": "0", + "id": "526CBE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3246.016446829467, + "min_y": 6362.249013186032, + "max_x": 3255.816446829467, + "max_y": 6365.029600215337 + }, + "value": null, + "layer": "PID", + "id": "526CBF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3245.215573165001, + "min_y": 6356.798662772257, + "max_x": 3266.215573165001, + "max_y": 6361.798662772257 + }, + "value": "P-10221", + "layer": "1", + "id": "526CC2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3234.190530169583, + "min_y": 6374.236307875737, + "max_x": 3234.256840894671, + "max_y": 6409.545670441358 + }, + "value": null, + "layer": "0", + "id": "526CC4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6374.236307875737, + "max_x": 3207.674773568167, + "max_y": 6409.691656753778 + }, + "value": null, + "layer": "0", + "id": "526CC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3204.605400593175, + "min_y": 6384.601425589189, + "max_x": 3204.867258106252, + "max_y": 6389.429093495602 + }, + "value": null, + "layer": "0", + "id": "526CCC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6373.746307875737, + "max_x": 3235.170530169584, + "max_y": 6381.0285514845 + }, + "value": null, + "layer": "0", + "id": "526CCF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6373.746307875737, + "max_x": 3210.614773568167, + "max_y": 6381.175652634266 + }, + "value": null, + "layer": "0", + "id": "526CD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6373.746307875737, + "max_x": 3235.170530169584, + "max_y": 6374.236307875737 + }, + "value": null, + "layer": "0", + "id": "526CD6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6373.746307875737, + "max_x": 3206.694773568167, + "max_y": 6374.236307875737 + }, + "value": null, + "layer": "0", + "id": "526CDA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3212.63769901973, + "min_y": 6390.908089796991, + "max_x": 3212.63769901973, + "max_y": 6426.866270091321 + }, + "value": null, + "layer": "0", + "id": "526CDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6329.551301991562, + "max_x": 3250.916446829466, + "max_y": 6378.24462211023 + }, + "value": null, + "layer": "0", + "id": "526CDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2704.56289662517, + "min_y": 6407.399788835284, + "max_x": 2728.56289662517, + "max_y": 6412.399788835284 + }, + "value": "DP-10201", + "layer": "1", + "id": "526CE1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2925.439971734999, + "min_y": 6403.310766195486, + "max_x": 2946.439971734999, + "max_y": 6408.310766195486 + }, + "value": "E-10203", + "layer": "1", + "id": "526CE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2995.493288002385, + "min_y": 6397.664335311216, + "max_x": 3016.493288002385, + "max_y": 6402.664335311216 + }, + "value": "E-10215", + "layer": "1", + "id": "526CE3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2986.108873835498, + "min_y": 6494.669463356704, + "max_x": 3007.108873835498, + "max_y": 6499.669463356704 + }, + "value": "C-10211", + "layer": "1", + "id": "526CE4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3057.978000074956, + "min_y": 6470.132252985954, + "max_x": 3078.978000074956, + "max_y": 6475.132252985954 + }, + "value": "E-10217", + "layer": "1", + "id": "526CE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3095.385717956333, + "min_y": 6601.609667794068, + "max_x": 3116.385717956333, + "max_y": 6606.609667794068 + }, + "value": "E-10212", + "layer": "1", + "id": "526CE6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3095.385717956333, + "min_y": 6581.925302929924, + "max_x": 3116.385717956333, + "max_y": 6586.925302929924 + }, + "value": "D-10213", + "layer": "1", + "id": "526CE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3127.352885034103, + "min_y": 6293.772123116887, + "max_x": 3147.352885034103, + "max_y": 6396.260388291312 + }, + "value": null, + "layer": "0", + "id": "526CEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3143.069910921165, + "min_y": 6454.358591822792, + "max_x": 3289.494576225186, + "max_y": 6543.28924479274 + }, + "value": null, + "layer": "0", + "id": "526CED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3258.340448780309, + "min_y": 6352.340467460789, + "max_x": 3413.192086212802, + "max_y": 6426.866270091316 + }, + "value": null, + "layer": "0", + "id": "526CEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3418.361346109498, + "min_y": 6350.456281511002, + "max_x": 3436.361346109498, + "max_y": 6355.456281511002 + }, + "value": "T-8121", + "layer": "PID", + "id": "526CF1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3413.192086212801, + "min_y": 6348.50215074552, + "max_x": 3450.083445747242, + "max_y": 6356.178784176059 + }, + "value": null, + "layer": "PID", + "id": "526CF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3413.192086212802, + "min_y": 6352.34046746079, + "max_x": 3450.083445747242, + "max_y": 6356.178784176059 + }, + "value": null, + "layer": "PID", + "id": "526CF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3239.633519931995, + "min_y": 6395.436139309408, + "max_x": 3260.633519931995, + "max_y": 6400.436139309408 + }, + "value": "T-10221", + "layer": "1", + "id": "526CF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3121.473173821234, + "min_y": 6441.866270091321, + "max_x": 3192.821314169977, + "max_y": 6452.527037977555 + }, + "value": null, + "layer": "0", + "id": "526CF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3298.628816200063, + "min_y": 6439.49437057358, + "max_x": 3307.628816200063, + "max_y": 6444.49437057358 + }, + "value": "IBC", + "layer": "PID", + "id": "526CFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3291.071263047302, + "min_y": 6438.027953376051, + "max_x": 3314.087784528604, + "max_y": 6445.70458680659 + }, + "value": null, + "layer": "PID", + "id": "526CFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3291.071263047303, + "min_y": 6441.866270091321, + "max_x": 3314.087784528604, + "max_y": 6445.70458680659 + }, + "value": null, + "layer": "PID", + "id": "526CFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3205.878095310052, + "min_y": 6585.819160219438, + "max_x": 3212.579731331273, + "max_y": 6610.647328742563 + }, + "value": null, + "layer": "0", + "id": "526D02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3153.85940921005, + "min_y": 6588.61762348628, + "max_x": 3202.78608570699, + "max_y": 6591.144050365257 + }, + "value": null, + "layer": "PID", + "id": "526D04" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3202.7860857069904, + "min_y": 6584.443817182939, + "max_x": 3213.66012519265, + "max_y": 6595.317856668598 + }, + "value": null, + "layer": "0", + "id": "526D05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3203.533085170285, + "min_y": 6589.880836925769, + "max_x": 3212.913125729334, + "max_y": 6589.880836925769 + }, + "value": null, + "layer": "0", + "id": "526D06" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3202.32295376869, + "min_y": 6582.033240738768, + "max_x": 3214.123159058438, + "max_y": 6585.949169772255 + }, + "value": null, + "layer": "0", + "id": "526D09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3211.978427071285, + "min_y": 6582.033240738768, + "max_x": 3214.123159058438, + "max_y": 6585.949169772255 + }, + "value": null, + "layer": "0", + "id": "526D0B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3200.37139894292, + "min_y": 6575.024792982116, + "max_x": 3224.37139894292, + "max_y": 6580.024792982116 + }, + "value": "VP-10217", + "layer": "1", + "id": "526D12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3086.727290579763, + "min_y": 6589.880836925769, + "max_x": 3149.009679761292, + "max_y": 6589.880836925769 + }, + "value": null, + "layer": "0", + "id": "526D13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3211.316517891785, + "min_y": 6606.809012027294, + "max_x": 3275.619738172045, + "max_y": 6614.485645457832 + }, + "value": null, + "layer": "0", + "id": "526D15" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3278.541169003368, + "min_y": 6608.654570339087, + "max_x": 3302.541169003368, + "max_y": 6613.654570339087 + }, + "value": "SCRUBBER", + "layer": "PID", + "id": "526D16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3275.619738172045, + "min_y": 6606.809012027294, + "max_x": 3312.511097706487, + "max_y": 6610.647328742563 + }, + "value": null, + "layer": "PID", + "id": "526D17" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3275.619738172045, + "min_y": 6610.647328742563, + "max_x": 3312.511097706487, + "max_y": 6614.485645457832 + }, + "value": null, + "layer": "PID", + "id": "526D18" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2949.298951152026, + "min_y": 6426.438237539831, + "max_x": 2957.138951152026, + "max_y": 6434.278237539831 + }, + "value": null, + "layer": "PID", + "id": "526D1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2955.537559866184, + "min_y": 6427.197469653598, + "max_x": 2959.846373841406, + "max_y": 6433.51900542606 + }, + "value": null, + "layer": "0", + "id": "526D1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2951.035227109441, + "min_y": 6428.283620526913, + "max_x": 2954.035227109441, + "max_y": 6433.283620526913 + }, + "value": "2", + "layer": "PID", + "id": "526D1E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3115.234565107077, + "min_y": 6445.446270091323, + "max_x": 3123.074565107077, + "max_y": 6453.286270091323 + }, + "value": null, + "layer": "PID", + "id": "526D20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3116.970841064492, + "min_y": 6446.790816649131, + "max_x": 3119.970841064492, + "max_y": 6451.790816649131 + }, + "value": "7", + "layer": "PID", + "id": "526D22" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3132.522488231785, + "min_y": 6539.36924479274, + "max_x": 3140.362488231785, + "max_y": 6547.20924479274 + }, + "value": null, + "layer": "PID", + "id": "526D24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3138.761096945942, + "min_y": 6540.128476906509, + "max_x": 3143.069910921165, + "max_y": 6546.450012678971 + }, + "value": null, + "layer": "0", + "id": "526D25" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3134.258764189201, + "min_y": 6541.111446766731, + "max_x": 3137.258764189201, + "max_y": 6546.111446766731 + }, + "value": "5", + "layer": "PID", + "id": "526D26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3078.338626795568, + "min_y": 6509.614938499717, + "max_x": 3081.338626795568, + "max_y": 6514.614938499717 + }, + "value": "4", + "layer": "PID", + "id": "526D28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2716.165234477895, + "min_y": 6426.983743570673, + "max_x": 2736.716334114109, + "max_y": 6426.983743570673 + }, + "value": null, + "layer": "0", + "id": "526D29" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3046.428106950384, + "min_y": 6636.022783200272, + "max_x": 3054.268106950384, + "max_y": 6643.862783200272 + }, + "value": null, + "layer": "PID", + "id": "526D2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3052.666715664541, + "min_y": 6636.782015314041, + "max_x": 3056.975529639763, + "max_y": 6643.103551086504 + }, + "value": null, + "layer": "0", + "id": "526D2E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3048.539800279877, + "min_y": 6637.781026881461, + "max_x": 3051.539800279877, + "max_y": 6642.781026881461 + }, + "value": "3", + "layer": "PID", + "id": "526D2F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3143.432885034103, + "min_y": 6396.260388291312, + "max_x": 3151.272885034103, + "max_y": 6404.100388291312 + }, + "value": null, + "layer": "PID", + "id": "526D32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3144.19211714787, + "min_y": 6402.498997005469, + "max_x": 3150.513652920334, + "max_y": 6444.765821421163 + }, + "value": null, + "layer": "0", + "id": "526D33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3149.785303427382, + "min_y": 6398.253461569684, + "max_x": 3152.785303427382, + "max_y": 6403.253461569684 + }, + "value": "6", + "layer": "PID", + "id": "526D34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3086.906460688772, + "min_y": 6449.366270091323, + "max_x": 3115.234565107077, + "max_y": 6449.366270091326 + }, + "value": null, + "layer": "0", + "id": "526D37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3145.492321603711, + "min_y": 6569.667589944021, + "max_x": 3157.376767367653, + "max_y": 6583.757873491032 + }, + "value": null, + "layer": "0", + "id": "526D38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3146.554316134168, + "min_y": 6569.667589944021, + "max_x": 3146.554316134168, + "max_y": 6583.757873491032 + }, + "value": null, + "layer": "0", + "id": "526D39" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3149.009679761292, + "min_y": 6586.232888222084, + "max_x": 3149.009679761292, + "max_y": 6589.880836925769 + }, + "value": null, + "layer": "0", + "id": "526D40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3153.85940921005, + "min_y": 6586.232888222084, + "max_x": 3153.85940921005, + "max_y": 6589.880836925769 + }, + "value": null, + "layer": "0", + "id": "526D41" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3143.063120151337, + "min_y": 6560.327315338392, + "max_x": 3167.063120151337, + "max_y": 6565.327315338392 + }, + "value": "SP-10602", + "layer": "1", + "id": "526D44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3297.052129377946, + "min_y": 6540.911633765087, + "max_x": 3306.052129377946, + "max_y": 6545.911633765087 + }, + "value": "IBC", + "layer": "PID", + "id": "526D48" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3289.494576225185, + "min_y": 6539.450928077471, + "max_x": 3312.511097706487, + "max_y": 6547.127561508009 + }, + "value": null, + "layer": "PID", + "id": "526D49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3289.494576225186, + "min_y": 6543.28924479274, + "max_x": 3312.511097706487, + "max_y": 6547.127561508009 + }, + "value": null, + "layer": "PID", + "id": "526D4A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3234.190530169583, + "min_y": 6483.159282577156, + "max_x": 3234.256840894671, + "max_y": 6518.468645142776 + }, + "value": null, + "layer": "0", + "id": "526D4E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6483.159282577156, + "max_x": 3207.674773568167, + "max_y": 6518.614631455196 + }, + "value": null, + "layer": "0", + "id": "526D4F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3204.605400593175, + "min_y": 6493.524400290609, + "max_x": 3204.867258106252, + "max_y": 6498.352068197021 + }, + "value": null, + "layer": "0", + "id": "526D56" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6482.669282577155, + "max_x": 3235.170530169584, + "max_y": 6489.951526185919 + }, + "value": null, + "layer": "0", + "id": "526D59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6482.669282577155, + "max_x": 3210.614773568167, + "max_y": 6490.098627335687 + }, + "value": null, + "layer": "0", + "id": "526D5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6482.669282577155, + "max_x": 3235.170530169584, + "max_y": 6483.159282577156 + }, + "value": null, + "layer": "0", + "id": "526D60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6482.669282577155, + "max_x": 3206.694773568167, + "max_y": 6483.159282577156 + }, + "value": null, + "layer": "0", + "id": "526D64" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6499.831064498412, + "max_x": 3212.63769901973, + "max_y": 6535.789244792741 + }, + "value": null, + "layer": "0", + "id": "526D68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3238.206771347319, + "min_y": 6503.756259573961, + "max_x": 3259.206771347319, + "max_y": 6508.756259573961 + }, + "value": "T-10200", + "layer": "1", + "id": "526D69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6465.631539149502, + "max_x": 3234.635444344787, + "max_y": 6487.167375107365 + }, + "value": null, + "layer": "0", + "id": "526D6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3242.629395824553, + "min_y": 6467.167655074113, + "max_x": 3263.629395824553, + "max_y": 6472.167655074113 + }, + "value": "P-10201", + "layer": "PID", + "id": "526D6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3234.635444344787, + "min_y": 6465.631539149502, + "max_x": 3271.526803879228, + "max_y": 6469.46985586477 + }, + "value": null, + "layer": "PID", + "id": "526D6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3234.635444344787, + "min_y": 6469.46985586477, + "max_x": 3271.526803879228, + "max_y": 6473.308172580039 + }, + "value": null, + "layer": "PID", + "id": "526D6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6441.866270091321, + "max_x": 3291.071263047303, + "max_y": 6441.866270091321 + }, + "value": null, + "layer": "0", + "id": "526D73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6535.789244792741, + "max_x": 3164.657514904141, + "max_y": 6543.28924479274 + }, + "value": null, + "layer": "0", + "id": "526D74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3192.821314169976, + "min_y": 6449.366270091321, + "max_x": 3192.821314169977, + "max_y": 6535.789244792741 + }, + "value": null, + "layer": "0", + "id": "526D76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2747.645259597923, + "min_y": 6329.317893443771, + "max_x": 2768.645259597923, + "max_y": 6334.317893443771 + }, + "value": "T-10200", + "layer": "PID", + "id": "526D79" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6327.60566089178, + "max_x": 2774.381670654484, + "max_y": 6335.282294322319 + }, + "value": null, + "layer": "PID", + "id": "526D7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6331.443977607049, + "max_x": 2774.381670654484, + "max_y": 6335.282294322319 + }, + "value": null, + "layer": "PID", + "id": "526D7B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2747.645259597923, + "min_y": 6346.543856434852, + "max_x": 2768.645259597923, + "max_y": 6351.543856434852 + }, + "value": "T-10221", + "layer": "PID", + "id": "526D7F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6344.9328736226, + "max_x": 2774.381670654484, + "max_y": 6352.609507053139 + }, + "value": null, + "layer": "PID", + "id": "526D80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6348.77119033787, + "max_x": 2774.381670654484, + "max_y": 6352.609507053139 + }, + "value": null, + "layer": "PID", + "id": "526D81" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2774.381670654484, + "min_y": 6348.77119033787, + "max_x": 2796.339655257335, + "max_y": 6369.047249901908 + }, + "value": null, + "layer": "0", + "id": "526D85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 2729.942385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526D87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6187.611476026954, + "max_x": 2729.942385564114, + "max_y": 6187.611476026954 + }, + "value": null, + "layer": "0", + "id": "526D88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.864466869581, + "min_y": 6191.661476026954, + "max_x": 2647.1644668695812, + "max_y": 6195.711476026954 + }, + "value": "STREAM NO.", + "layer": "PID", + "id": "526D8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2583.7134470889, + "min_y": 6177.486476026953, + "max_x": 2610.4434470889, + "max_y": 6181.536476026953 + }, + "value": "COMPOSITION", + "layer": "PID", + "id": "526D8C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2659.524532090097, + "min_y": 6181.536476026954, + "max_x": 2686.254532090097, + "max_y": 6185.586476026954 + }, + "value": "DESCRIPTION", + "layer": "PID", + "id": "526D8D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2633.393756699241, + "min_y": 6155.211476026955, + "max_x": 2638.253756699241, + "max_y": 6159.261476026955 + }, + "value": "EL", + "layer": "PID", + "id": "526D8F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2620.114585857558, + "min_y": 6143.061476026954, + "max_x": 2649.2745858575577, + "max_y": 6147.111476026954 + }, + "value": "TOTAL STREAM", + "layer": "PID", + "id": "526D91" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2604.161623683209, + "min_y": 6130.911476026954, + "max_x": 2667.341623683209, + "max_y": 6134.961476026954 + }, + "value": "OPERATION PRESS.(kgf/cm2G)", + "layer": "PID", + "id": "526D93" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2612.837368923691, + "min_y": 6118.761476026953, + "max_x": 2663.867368923691, + "max_y": 6122.811476026953 + }, + "value": "OPERATION TEMP.(%%DC)", + "layer": "PID", + "id": "526D95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2625.856313061966, + "min_y": 6106.611476026954, + "max_x": 2642.866313061966, + "max_y": 6110.661476026954 + }, + "value": "REMARKS", + "layer": "PID", + "id": "526D96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2708.459732758503, + "min_y": 6191.661476026954, + "max_x": 2710.8897327585028, + "max_y": 6195.711476026954 + }, + "value": "1", + "layer": "PID", + "id": "526D98" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2702.89757719738, + "min_y": 6167.361476026954, + "max_x": 2715.04757719738, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526D99" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2703.968919882751, + "min_y": 6155.211476026955, + "max_x": 2716.118919882751, + "max_y": 6159.261476026955 + }, + "value": "1,600", + "layer": "PID", + "id": "526D9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2703.968919882751, + "min_y": 6143.061476026954, + "max_x": 2716.118919882751, + "max_y": 6147.111476026954 + }, + "value": "1,600", + "layer": "PID", + "id": "526D9B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2701.503614271528, + "min_y": 6130.911476026954, + "max_x": 2718.5136142715282, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526D9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2703.089323189364, + "min_y": 6118.761476026953, + "max_x": 2715.2393231893643, + "max_y": 6122.811476026953 + }, + "value": "50~80", + "layer": "PID", + "id": "526D9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2704.233711966919, + "min_y": 6179.511476026953, + "max_x": 2713.953711966919, + "max_y": 6183.561476026953 + }, + "value": "FEED", + "layer": "PID", + "id": "526D9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2789.459732758503, + "min_y": 6191.661476026954, + "max_x": 2791.8897327585028, + "max_y": 6195.711476026954 + }, + "value": "3", + "layer": "PID", + "id": "526D9F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2783.897577197381, + "min_y": 6167.361476026954, + "max_x": 2796.047577197381, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526DA0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2817.485175978209, + "min_y": 6155.211476026955, + "max_x": 2844.215175978209, + "max_y": 6159.261476026955 + }, + "value": "1,560~3,160", + "layer": "PID", + "id": "526DA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2817.485175978209, + "min_y": 6143.061476026954, + "max_x": 2844.215175978209, + "max_y": 6147.111476026954 + }, + "value": "1,560~3,160", + "layer": "PID", + "id": "526DA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2780.80681442183, + "min_y": 6130.911476026954, + "max_x": 2802.67681442183, + "max_y": 6134.961476026954 + }, + "value": "30~60torr", + "layer": "PID", + "id": "526DA3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2784.089323189364, + "min_y": 6118.761476026953, + "max_x": 2796.2393231893643, + "max_y": 6122.811476026953 + }, + "value": "70~93", + "layer": "PID", + "id": "526DA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2783.654090223433, + "min_y": 6179.511476026953, + "max_x": 2795.804090223433, + "max_y": 6183.561476026953 + }, + "value": "VAPOR", + "layer": "PID", + "id": "526DA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2829.959732758503, + "min_y": 6191.661476026954, + "max_x": 2832.3897327585028, + "max_y": 6195.711476026954 + }, + "value": "4", + "layer": "PID", + "id": "526DA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2824.397577197381, + "min_y": 6167.361476026954, + "max_x": 2836.547577197381, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526DA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2823.233405103192, + "min_y": 6179.511476026953, + "max_x": 2837.813405103192, + "max_y": 6183.561476026953 + }, + "value": "REFLUX", + "layer": "PID", + "id": "526DA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2870.459732758503, + "min_y": 6191.661476026954, + "max_x": 2872.8897327585028, + "max_y": 6195.711476026954 + }, + "value": "5", + "layer": "PID", + "id": "526DA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2864.89757719738, + "min_y": 6167.361476026954, + "max_x": 2877.04757719738, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526DAA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2869.227079952892, + "min_y": 6155.211476026955, + "max_x": 2874.087079952892, + "max_y": 6159.261476026955 + }, + "value": "40", + "layer": "PID", + "id": "526DAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2869.227079952892, + "min_y": 6143.061476026954, + "max_x": 2874.087079952892, + "max_y": 6147.111476026954 + }, + "value": "40", + "layer": "PID", + "id": "526DAC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2863.503614271529, + "min_y": 6130.911476026954, + "max_x": 2880.513614271529, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526DAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2865.089323189364, + "min_y": 6118.761476026953, + "max_x": 2877.2393231893643, + "max_y": 6122.811476026953 + }, + "value": "20~40", + "layer": "PID", + "id": "526DAE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2859.266940924836, + "min_y": 6179.511476026953, + "max_x": 2883.566940924836, + "max_y": 6183.561476026953 + }, + "value": "LIGHT ENDS", + "layer": "PID", + "id": "526DAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6102.561476026954, + "max_x": 2770.442385564115, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DB2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6151.161476026954, + "max_x": 2770.442385564115, + "max_y": 6151.161476026954 + }, + "value": null, + "layer": "0", + "id": "526DB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6139.011476026953, + "max_x": 2770.442385564115, + "max_y": 6139.011476026953 + }, + "value": null, + "layer": "0", + "id": "526DB4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6126.861476026954, + "max_x": 2770.442385564115, + "max_y": 6126.861476026954 + }, + "value": null, + "layer": "0", + "id": "526DB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6114.711476026954, + "max_x": 2770.442385564115, + "max_y": 6114.711476026954 + }, + "value": null, + "layer": "0", + "id": "526DB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6102.561476026954, + "max_x": 2810.942385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6102.561476026954, + "max_x": 2851.442385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6102.561476026954, + "max_x": 2891.942385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6102.561476026954, + "max_x": 2932.442385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DCF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6102.561476026954, + "max_x": 2972.942385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DD7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2972.942385564114, + "min_y": 6102.561476026954, + "max_x": 2972.942385564114, + "max_y": 6199.761476026953 + }, + "value": null, + "layer": "0", + "id": "526DDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2910.959732758503, + "min_y": 6191.661476026954, + "max_x": 2913.3897327585028, + "max_y": 6195.711476026954 + }, + "value": "6", + "layer": "PID", + "id": "526DE0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2905.397577197381, + "min_y": 6167.361476026954, + "max_x": 2917.547577197381, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526DE1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2908.494427147281, + "min_y": 6155.211476026955, + "max_x": 2915.784427147281, + "max_y": 6159.261476026955 + }, + "value": "120", + "layer": "PID", + "id": "526DE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2908.494427147281, + "min_y": 6143.061476026954, + "max_x": 2915.784427147281, + "max_y": 6147.111476026954 + }, + "value": "120", + "layer": "PID", + "id": "526DE3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2904.003614271529, + "min_y": 6130.911476026954, + "max_x": 2921.013614271529, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526DE4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2905.589323189364, + "min_y": 6118.761476026953, + "max_x": 2917.7393231893643, + "max_y": 6122.811476026953 + }, + "value": "20~45", + "layer": "PID", + "id": "526DE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2898.989304401789, + "min_y": 6179.511476026953, + "max_x": 2923.289304401789, + "max_y": 6183.561476026953 + }, + "value": "HEAVY ENDS", + "layer": "PID", + "id": "526DE6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2951.459732758503, + "min_y": 6191.661476026954, + "max_x": 2953.8897327585028, + "max_y": 6195.711476026954 + }, + "value": "7", + "layer": "PID", + "id": "526DE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2945.89757719738, + "min_y": 6167.361476026954, + "max_x": 2958.04757719738, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526DE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2946.968919882751, + "min_y": 6155.211476026955, + "max_x": 2959.118919882751, + "max_y": 6159.261476026955 + }, + "value": "1,440", + "layer": "PID", + "id": "526DE9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2946.968919882751, + "min_y": 6143.061476026954, + "max_x": 2959.118919882751, + "max_y": 6147.111476026954 + }, + "value": "1,440", + "layer": "PID", + "id": "526DEA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2944.503614271529, + "min_y": 6130.911476026954, + "max_x": 2961.513614271529, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526DEB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2946.089323189364, + "min_y": 6118.761476026953, + "max_x": 2958.2393231893643, + "max_y": 6122.811476026953 + }, + "value": "15~38", + "layer": "PID", + "id": "526DEC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2942.517673640267, + "min_y": 6179.511476026953, + "max_x": 2959.527673640267, + "max_y": 6183.561476026953 + }, + "value": "PRODUCT", + "layer": "PID", + "id": "526DED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6175.461476026954, + "max_x": 2729.942385564114, + "max_y": 6175.461476026954 + }, + "value": null, + "layer": "0", + "id": "526DEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2631.083674033911, + "min_y": 6167.361476026954, + "max_x": 2640.8036740339107, + "max_y": 6171.411476026954 + }, + "value": "UNIT", + "layer": "PID", + "id": "526DF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2586.982624085623, + "min_y": 6209.267133156957, + "max_x": 2658.982624085623, + "max_y": 6219.267133156957 + }, + "value": "EL REFINE 공정", + "layer": "PID", + "id": "526DF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6325.712985276296, + "max_x": 3277.196424994163, + "max_y": 6333.389618706835 + }, + "value": null, + "layer": "0", + "id": "526DF8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3282.906508285228, + "min_y": 6327.110509403289, + "max_x": 3303.906508285228, + "max_y": 6332.110509403289 + }, + "value": "P-10201", + "layer": "PID", + "id": "526DF9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3277.196424994163, + "min_y": 6325.712985276296, + "max_x": 3314.087784528604, + "max_y": 6329.551301991565 + }, + "value": null, + "layer": "PID", + "id": "526DFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3277.196424994163, + "min_y": 6329.551301991565, + "max_x": 3314.087784528604, + "max_y": 6333.389618706835 + }, + "value": null, + "layer": "PID", + "id": "526DFB" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2736.716334114109, + "min_y": 6423.063743570673, + "max_x": 2744.556334114109, + "max_y": 6430.903743570673 + }, + "value": null, + "layer": "PID", + "id": "526DFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2742.954942828266, + "min_y": 6423.822975684442, + "max_x": 2747.263756803488, + "max_y": 6430.144511456905 + }, + "value": null, + "layer": "0", + "id": "526E00" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2748.959732758503, + "min_y": 6191.661476026954, + "max_x": 2751.3897327585028, + "max_y": 6195.711476026954 + }, + "value": "2", + "layer": "PID", + "id": "526E04" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2743.397577197381, + "min_y": 6167.361476026954, + "max_x": 2755.547577197381, + "max_y": 6171.411476026954 + }, + "value": "KG/HR", + "layer": "PID", + "id": "526E05" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2744.468919882752, + "min_y": 6155.211476026955, + "max_x": 2756.618919882752, + "max_y": 6159.261476026955 + }, + "value": "1,600", + "layer": "PID", + "id": "526E06" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2744.468919882752, + "min_y": 6143.061476026954, + "max_x": 2756.618919882752, + "max_y": 6147.111476026954 + }, + "value": "1,600", + "layer": "PID", + "id": "526E07" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2742.003614271529, + "min_y": 6130.911476026954, + "max_x": 2759.013614271529, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526E08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2743.589323189365, + "min_y": 6118.761476026953, + "max_x": 2755.739323189365, + "max_y": 6122.811476026953 + }, + "value": "50~80", + "layer": "PID", + "id": "526E09" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2744.73371196692, + "min_y": 6179.511476026953, + "max_x": 2754.45371196692, + "max_y": 6183.561476026953 + }, + "value": "FEED", + "layer": "PID", + "id": "526E0A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3400.561767267766, + "min_y": 6335.547144615589, + "max_x": 3460.355177158935, + "max_y": 6375.615668257535 + }, + "value": null, + "layer": "0", + "id": "526E13" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3400.561767267766, + "min_y": 6384.02511149103, + "max_x": 3430.561767267766, + "max_y": 6394.02511149103 + }, + "value": "기존 설비", + "layer": "PID", + "id": "526E14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2738.452610071524, + "min_y": 6424.526719853918, + "max_x": 2741.452610071524, + "max_y": 6429.526719853918 + }, + "value": "1", + "layer": "PID", + "id": "526E15" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3475.124212780946, + "min_y": 6170.027545288671, + "max_x": 3574.0489220612876, + "max_y": 6174.8785452886705 + }, + "value": "\\fGulim|b0|i0|c129|p50; EL REFINE PLANT", + "layer": "0", + "id": "526E16" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3473.208314500137, + "min_y": 6148.493123043217, + "max_x": 3588.7594997084016, + "max_y": 6153.344123043216 + }, + "value": "\\Fromans|c129; REFINE PLANT .9; .85; PROCESS FLOW DIAGRAM", + "layer": "0", + "id": "526E1A" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3467.986988562264, + "min_y": 6684.019699646336, + "max_x": 3494.1175534047766, + "max_y": 6688.019699646336 + }, + "value": "\\pi1.22241; .9; SC-10128 \\pi-0.16484;\\lSCRUBBER", + "layer": "0", + "id": "526E1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3281.115545470853, + "min_y": 6599.185055310278, + "max_x": 3305.115545470853, + "max_y": 6604.185055310278 + }, + "value": "SC-10128", + "layer": "1", + "id": "526E22" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3076.737235509725, + "min_y": 6508.855706385951, + "max_x": 3084.577235509725, + "max_y": 6516.695706385951 + }, + "value": null, + "layer": "PID", + "id": "526E23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3074.029812820346, + "min_y": 6509.614938499717, + "max_x": 3078.338626795568, + "max_y": 6515.93647427218 + }, + "value": null, + "layer": "0", + "id": "526E24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3084.577235509725, + "min_y": 6512.775706385951, + "max_x": 3127.795776411741, + "max_y": 6512.775706385951 + }, + "value": null, + "layer": "0", + "id": "526E26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2822.417553903312, + "min_y": 6130.911476026954, + "max_x": 2839.4275539033124, + "max_y": 6134.961476026954 + }, + "value": "1.0~2.5", + "layer": "PID", + "id": "526E27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2824.003262821147, + "min_y": 6118.761476026953, + "max_x": 2836.153262821147, + "max_y": 6122.811476026953 + }, + "value": "20~40", + "layer": "PID", + "id": "526E28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2776.98517597821, + "min_y": 6155.211476026955, + "max_x": 2803.71517597821, + "max_y": 6159.261476026955 + }, + "value": "1,600~3,200", + "layer": "PID", + "id": "526E29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2776.98517597821, + "min_y": 6143.061476026954, + "max_x": 2803.71517597821, + "max_y": 6147.111476026954 + }, + "value": "1,600~3,200", + "layer": "PID", + "id": "526E2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3257.789261642478, + "min_y": 6291.713711013644, + "max_x": 3266.789261642478, + "max_y": 6296.713711013644 + }, + "value": "IBC", + "layer": "PID", + "id": "526E2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3251.913842958101, + "min_y": 6289.933804069212, + "max_x": 3274.930364439401, + "max_y": 6297.610437499751 + }, + "value": null, + "layer": "PID", + "id": "526E2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3251.913842958101, + "min_y": 6293.772120784481, + "max_x": 3274.930364439401, + "max_y": 6297.610437499751 + }, + "value": null, + "layer": "PID", + "id": "526E2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3140.906767115284, + "min_y": 6293.772123116894, + "max_x": 3251.913842525516, + "max_y": 6293.772123116894 + }, + "value": null, + "layer": "0", + "id": "526E32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2774.379438215741, + "min_y": 6331.45180966955, + "max_x": 2809.27241873983, + "max_y": 6369.0472499019 + }, + "value": null, + "layer": "0", + "id": "526E33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3164.603124831144, + "min_y": 6420.922865320481, + "max_x": 3188.603124831144, + "max_y": 6425.922865320481 + }, + "value": "DP-10201", + "layer": "PID", + "id": "526E35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3159.213843534368, + "min_y": 6419.669307546811, + "max_x": 3196.105203068809, + "max_y": 6427.345940977351 + }, + "value": null, + "layer": "PID", + "id": "526E36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3159.213843534368, + "min_y": 6423.50762426208, + "max_x": 3196.105203068809, + "max_y": 6427.345940977351 + }, + "value": null, + "layer": "PID", + "id": "526E37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3196.105203023641, + "min_y": 6412.799897588744, + "max_x": 3209.94589316904, + "max_y": 6423.507624282418 + }, + "value": null, + "layer": "0", + "id": "526E3B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3386.609145612548, + "min_y": 6743.708676517961, + "max_x": 3437.7808974655454, + "max_y": 6747.708676517961 + }, + "value": "\\pi16.04856; .9; T-10201 \\pi1.44585;FEED BUFFER TANK", + "layer": "0", + "id": "526E41" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3447.768885858226, + "min_y": 6744.960189844345, + "max_x": 3515.2025043971685, + "max_y": 6748.960189844345 + }, + "value": "\\pi24.1795; .9; T-10221 \\pi3.99605;PRODUCT BUFFER TANK", + "layer": "0", + "id": "526E49" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3380.03554441635, + "min_y": 6683.931418486958, + "max_x": 3436.076763550831, + "max_y": 6687.931418486958 + }, + "value": "\\pi18.01193; .9; T-10200 \\pi9.64937;RECYCLE TANK", + "layer": "0", + "id": "526E4D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2768.325481853659, + "min_y": 6740.982209569534, + "max_x": 2801.921922365461, + "max_y": 6744.982209569534 + }, + "value": "\\pi7.02644; .9; C-10211 \\pi6.59415;\\lCOLUMN", + "layer": "0", + "id": "526E59" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2851.465457894727, + "min_y": 6741.265371112112, + "max_x": 2897.4569060321232, + "max_y": 6745.265371112112 + }, + "value": "\\pi13.06275; .9; E-10212 \\pi2.02585;\\lTOP CONDENSER", + "layer": "0", + "id": "526E61" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2924.990191095206, + "min_y": 6740.485327396349, + "max_x": 2978.1087686173187, + "max_y": 6744.485327396349 + }, + "value": "\\pi16.39185; .9; D-10213 \\pi9.45563;\\lREFLUX DRUM", + "layer": "0", + "id": "526E65" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2607.847396321511, + "min_y": 6740.883105445902, + "max_x": 2638.0352097362747, + "max_y": 6744.883105445902 + }, + "value": "\\pi5.16582; .9; E-10203 \\pi0.86487;\\lPREHEATER", + "layer": "0", + "id": "526E71" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2681.542422483965, + "min_y": 6741.442542773137, + "max_x": 2735.370247399589, + "max_y": 6745.442542773137 + }, + "value": "\\pi12.62382; .9; F-10202A/B \\pi6.9747;FILTER HOUSING", + "layer": "0", + "id": "526E79" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2592.887583625775, + "min_y": 6725.093478179714, + "max_x": 2839.5812122109473, + "max_y": 6730.838968635776 + }, + "value": ".9; SIZE : %%C89.1 x 366 H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 .999999x;%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "526E7D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3293.167662296453, + "min_y": 6743.026050740621, + "max_x": 3335.0431584302546, + "max_y": 6747.026050740621 + }, + "value": "\\pi9.29759; .9; SP-10602 \\pi6.84304;SEPERATER", + "layer": "0", + "id": "526E81" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2975.043092409226, + "min_y": 6171.380113496716, + "max_x": 3029.3763353816394, + "max_y": 6175.380113496716 + }, + "value": "\\pi15.84152; .9; DP-10201 \\pi4.89742;DIAPHRAGM PUMP", + "layer": "0", + "id": "526E89" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2977.019624390865, + "min_y": 6154.238456525045, + "max_x": 3098.3351794074556, + "max_y": 6159.002581761443 + }, + "value": ".9; CAPA : 34L/min .9; SIZE : 25A/25A .9; MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "layer": "0", + "id": "526E8D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3041.897098281359, + "min_y": 6171.050375510994, + "max_x": 3081.695444754569, + "max_y": 6175.050375510994 + }, + "value": "\\pi10.38628; .9; P-10201 \\pi5.94856;FEED PUMP", + "layer": "0", + "id": "526E91" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3103.2850634949, + "min_y": 6171.269047305293, + "max_x": 3134.2948678988246, + "max_y": 6175.269047305293 + }, + "value": "\\pi5.52064; .9; P-10214 \\pi2.89758;TOP PUMP", + "layer": "0", + "id": "526E99" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3098.19065934751, + "min_y": 6154.769641783621, + "max_x": 3226.379933315502, + "max_y": 6159.182186214974 + }, + "value": ".9; CAPA : 70L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "layer": "0", + "id": "526E9D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3152.929257840607, + "min_y": 6170.76544652593, + "max_x": 3191.0375000697236, + "max_y": 6174.76544652593 + }, + "value": "\\pi9.07475; .9; P-10216 \\pi1.17135;BOTTOM PUMP", + "layer": "0", + "id": "526EA1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3208.104930900023, + "min_y": 6171.441488223567, + "max_x": 3238.4386936063106, + "max_y": 6175.441488223567 + }, + "value": "\\pi5.19239; .9; P-10218 \\pi1.97095;SIDE PUMP", + "layer": "0", + "id": "526EA9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3262.987633005663, + "min_y": 6172.951777984089, + "max_x": 3302.4479586300545, + "max_y": 6176.951777984089 + }, + "value": "\\pi8.05092; .9; VP-10217 \\pi1.41999;VACUUM PUMP", + "layer": "0", + "id": "526EB1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3206.476084403947, + "min_y": 6154.88689664864, + "max_x": 3414.9762463265415, + "max_y": 6160.321847859914 + }, + "value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "layer": "0", + "id": "526EB5" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3341.953574332725, + "min_y": 6171.890698802272, + "max_x": 3391.4511377806275, + "max_y": 6175.890698802272 + }, + "value": "\\pi15.23589; .9; P-10221 \\pi0.61364;EL TRANSFER PUMP", + "layer": "0", + "id": "526EB9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3109.965800235807, + "min_y": 6743.477983277081, + "max_x": 3166.518802052156, + "max_y": 6747.477983277081 + }, + "value": "\\pi18.33132; .9; E-10217 \\pi6.71802;SIDE CONDENSER", + "layer": "0", + "id": "526EC1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3196.397392507437, + "min_y": 6744.917062998107, + "max_x": 3255.6511662419675, + "max_y": 6748.917062998107 + }, + "value": "\\pi19.6817; .9; E-10219 \\pi8.62282;BOTTOM COOLER", + "layer": "0", + "id": "526EC9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3029.567386683441, + "min_y": 6742.048142874843, + "max_x": 3065.4144704603946, + "max_y": 6746.048142874843 + }, + "value": "\\pi7.97592; .9; E-10215 \\pi6.23453;\\lREBOILER", + "layer": "0", + "id": "526ED1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1737.166272789314, + "min_y": 6718.425489978544, + "max_x": 1949.999134579203, + "max_y": 6722.823624964335 + }, + "value": ".9;SIZE : %%C1,300 x 36,871H (49.5m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "layer": "0", + "id": "532DDA" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1918.593784023232, + "min_y": 6722.073550259388, + "max_x": 2130.2467017766817, + "max_y": 6728.458503506636 + }, + "value": ".9;SIZE : %%C800 x 2,982H (1.87m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "layer": "0", + "id": "532E44" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2100.652806587429, + "min_y": 6725.358005914666, + "max_x": 2303.88224581958, + "max_y": 6729.495121554826 + }, + "value": ".9;SIZE : %%C645 x 2,482H (1.2m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "layer": "0", + "id": "532EAE" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2278.829267866544, + "min_y": 6725.75096730405, + "max_x": 2361.0560567462703, + "max_y": 6729.75096730405 + }, + "value": ".9; SIZE : %%C 396.4 x 500 H VOLUME : 0.098M .7x; ^ ; .999999x; DP /OP : 0.18MPa / 0.009MPa DT/ OT : 200%%DC / 98%%DC MATERIAL : STS304", + "layer": "0", + "id": "532F18" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2363.26200385164, + "min_y": 6722.873904673619, + "max_x": 2427.317126680598, + "max_y": 6726.873904673619 + }, + "value": ".9; SIZE : %%C2,500 x 3,600H VOLUME : 20.6M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "532F4D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2435.13478742596, + "min_y": 6722.583940581312, + "max_x": 2510.0929098853785, + "max_y": 6726.583940581312 + }, + "value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "532F82" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2842.002239172663, + "min_y": 6726.206524190049, + "max_x": 3011.5602537853497, + "max_y": 6730.56885074703 + }, + "value": ".9;SIZE : %%C800 x 2,982H (1.4m3) DP(S/T) : 0.7MPa / 0.3MPa OP(S/T) : 0.3MPa / 0.01MPa DT(S/T) : 120 %%DC / 180 %%DC OT(S/T) : 25 %%DC / 85 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "layer": "0", + "id": "5334E1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3016.11604721886, + "min_y": 6726.886402552972, + "max_x": 3198.5633304156017, + "max_y": 6731.600515299347 + }, + "value": ".9;SIZE : %%C700 x 2,482H (1.4m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "layer": "0", + "id": "53363B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3193.463180003769, + "min_y": 6727.243913724466, + "max_x": 3368.5801995599013, + "max_y": 6732.07436482522 + }, + "value": ".9;SIZE : %%C259.4 x 982H (0.077m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 99 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "layer": "0", + "id": "5336A5" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3387.814428382191, + "min_y": 6727.699661273989, + "max_x": 3517.420608924229, + "max_y": 6732.754634531059 + }, + "value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS316L", + "layer": "0", + "id": "533831" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3385.278675851403, + "min_y": 6668.810399188209, + "max_x": 3446.720219550841, + "max_y": 6672.810399188209 + }, + "value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "53389B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3455.078437155486, + "min_y": 6669.05878938467, + "max_x": 3548.57004538054, + "max_y": 6673.05878938467 + }, + "value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "5338D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5136.02078529679, + "max_x": 3833.912484674715, + "max_y": 5184.264113696894 + }, + "value": null, + "layer": "TITLE", + "id": "5525DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5174.471862832472, + "max_x": 3833.912484674715, + "max_y": 5174.471862832472 + }, + "value": null, + "layer": "TITLE", + "id": "5525DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5153.102248000193, + "max_x": 3833.912484674715, + "max_y": 5153.102248000193 + }, + "value": null, + "layer": "TITLE", + "id": "5525DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5136.02078529679, + "max_x": 3833.912484674715, + "max_y": 5142.417440584062 + }, + "value": null, + "layer": "TITLE", + "id": "5525E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5139.215879039879, + "max_x": 3793.048917328987, + "max_y": 5139.215879039879 + }, + "value": null, + "layer": "TITLE", + "id": "5525E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3783.89637937332, + "min_y": 5137.057630582686, + "max_x": 3786.9656622305215, + "max_y": 5141.6421028207515 + }, + "value": "NONE", + "layer": "1", + "id": "5525E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.105026936689, + "min_y": 5137.083634048247, + "max_x": 3777.2163490470793, + "max_y": 5141.243257048659 + }, + "value": "JOB NO.", + "layer": "1", + "id": "5525E8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3794.496768356884, + "min_y": 5140.388472455367, + "max_x": 3799.6080904672745, + "max_y": 5141.605453910222 + }, + "value": "DWG NO.", + "layer": "1", + "id": "5525ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5150.871489282998, + "max_x": 3776.8465775544078, + "max_y": 5152.088470737853 + }, + "value": "TITLE :", + "layer": "1", + "id": "5525EF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5172.241104115277, + "max_x": 3776.8465775544078, + "max_y": 5173.458085570132 + }, + "value": "ONWER :", + "layer": "1", + "id": "5525F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3771.155364842677, + "min_y": 5182.232706727603, + "max_x": 3780.884100971435, + "max_y": 5186.126038142744 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "5525F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3827.890961851217, + "min_y": 5137.417830334262, + "max_x": 3832.860382515831, + "max_y": 5137.417830334262 + }, + "value": null, + "layer": "TITLE", + "id": "5525F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5184.264113696894, + "max_x": 3833.912484674715, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "TITLE", + "id": "5525F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3829.750656532225, + "min_y": 5138.226707916594, + "max_x": 3830.9148607301095, + "max_y": 5140.167048246401 + }, + "value": "3", + "layer": "0", + "id": "5525F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3789.591427253512, + "min_y": 5167.793935684509, + "max_x": 3835.058610079484, + "max_y": 5170.406992168761 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "5525FB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3783.701045201481, + "min_y": 5169.20663721225, + "max_x": 3785.093978438156, + "max_y": 5170.593864280164 + }, + "value": null, + "layer": "0-BAS", + "id": "552604" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3784.547957092346, + "min_y": 5166.720206165759, + "max_x": 3791.4732098081126, + "max_y": 5167.829987820085 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "552612" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3416.86866978821, + "min_y": 5136.02078529679, + "max_x": 3833.912484674715, + "max_y": 5433.022211779237 + }, + "value": null, + "layer": "0", + "id": "552613" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5161.556296699135, + "max_x": 3780.4975219189723, + "max_y": 5162.77327815399 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "552614" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3799.68965458325, + "min_y": 5148.737442947862, + "max_x": 3810.4405155470267, + "max_y": 5150.977205648649 + }, + "value": "OFF SITE", + "layer": "0", + "id": "552615" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3789.174047251849, + "min_y": 5144.257917546288, + "max_x": 3813.3634844203466, + "max_y": 5146.497680247075 + }, + "value": "STEAM P&I DIAGRAM", + "layer": "0", + "id": "552616" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3774.971610247084, + "min_y": 5177.555024650128, + "max_x": 3820.438793073056, + "max_y": 5180.1680811343795 + }, + "value": "72MT/D SOLVENT RECOVERY PLANT", + "layer": "SH1", + "id": "552617" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923065, + "min_y": 5187.215768965883, + "max_x": 3833.912484674719, + "max_y": 5187.215768965883 + }, + "value": null, + "layer": "0", + "id": "55261A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3819.108880512644, + "min_y": 5185.029137017409, + "max_x": 3821.7414432134474, + "max_y": 5186.126038142744 + }, + "value": "APPD", + "layer": "0", + "id": "552622" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3813.762367005206, + "min_y": 5185.029137017409, + "max_x": 3816.3949297060094, + "max_y": 5186.126038142744 + }, + "value": "CHKD", + "layer": "0", + "id": "552624" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3808.044758442901, + "min_y": 5185.029137017409, + "max_x": 3810.6773211437044, + "max_y": 5186.126038142744 + }, + "value": "DRWN", + "layer": "0", + "id": "552626" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3791.901428078367, + "min_y": 5185.029137017409, + "max_x": 3799.140975505576, + "max_y": 5186.126038142744 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "552627" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3826.16000258272, + "min_y": 5184.976896931174, + "max_x": 3830.108846633925, + "max_y": 5186.073798056509 + }, + "value": "REMARK", + "layer": "0", + "id": "552629" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923054, + "min_y": 5190.618128074395, + "max_x": 3833.912484674719, + "max_y": 5190.618128074395 + }, + "value": null, + "layer": "0", + "id": "55262D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923047, + "min_y": 5194.020487182905, + "max_x": 3833.912484674719, + "max_y": 5194.020487182905 + }, + "value": null, + "layer": "0", + "id": "55262E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923038, + "min_y": 5197.422846291416, + "max_x": 3833.912484674719, + "max_y": 5197.422846291416 + }, + "value": null, + "layer": "0", + "id": "55262F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923029, + "min_y": 5200.825205399927, + "max_x": 3833.912484674719, + "max_y": 5200.825205399927 + }, + "value": null, + "layer": "0", + "id": "552630" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.65738992302, + "min_y": 5204.227564508437, + "max_x": 3833.912484674719, + "max_y": 5204.227564508437 + }, + "value": null, + "layer": "0", + "id": "552631" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5207.629923616948, + "max_x": 3833.912484674719, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "0", + "id": "552632" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3789.127743608601, + "min_y": 5156.389081476591, + "max_x": 3811.982985850362, + "max_y": 5158.629791500293 + }, + "value": "HANMO CORPORATION", + "layer": "0", + "id": "552633" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5191.840066486287, + "max_x": 3772.6759294906988, + "max_y": 5192.773300944948 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "552635" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5195.24242559477, + "max_x": 3772.6759294906988, + "max_y": 5196.175660053431 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "552636" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5198.657876168591, + "max_x": 3772.6759294906988, + "max_y": 5199.591110627252 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "552637" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5202.060235277075, + "max_x": 3772.6759294906988, + "max_y": 5202.993469735736 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "552638" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815504, + "min_y": 5205.475685850937, + "max_x": 3772.6759294907006, + "max_y": 5206.408920309598 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "552639" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5188.450798843156, + "max_x": 3772.6759294906988, + "max_y": 5189.384033301817 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "55263A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3789.850085346389, + "min_y": 5188.452201500158, + "max_x": 3798.8091361495362, + "max_y": 5189.385435958819 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "55263B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3808.205970439934, + "min_y": 5188.452201500131, + "max_x": 3811.0056738159174, + "max_y": 5189.385435958792 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "55263C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3803.538901762165, + "min_y": 5137.540953461114, + "max_x": 3819.837760532543, + "max_y": 5139.3519377689345 + }, + "value": "SARF-#10-UFD-ST", + "layer": "0", + "id": "55263D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5320.413501543242, + "max_x": 3507.878307706807, + "max_y": 5325.239895615631 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55263E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3738.577504366397, + "min_y": 5288.522364960347, + "max_x": 3762.897280767751, + "max_y": 5296.75367389619 + }, + "value": null, + "layer": "0", + "id": "55263F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3761.769106326312, + "min_y": 5286.712547224067, + "max_x": 3770.963804513602, + "max_y": 5296.75367389619 + }, + "value": null, + "layer": "0", + "id": "552641" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3735.769263549339, + "min_y": 5288.218023102613, + "max_x": 3744.609256200651, + "max_y": 5297.058015753925 + }, + "value": null, + "layer": "0", + "id": "552643" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3757.8349668346073, + "min_y": 5288.433851668308, + "max_x": 3766.243302354529, + "max_y": 5296.84218718823 + }, + "value": null, + "layer": "0", + "id": "552644" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3514.026956149056, + "min_y": 5320.898320988322, + "max_x": 3547.037034563478, + "max_y": 5327.695995976991 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552646" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3552.67548168371, + "min_y": 5302.615581424308, + "max_x": 3558.7192028844843, + "max_y": 5304.294392868968 + }, + "value": "E-8115", + "layer": "PID", + "id": "552647" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5303.447981393637, + "max_x": 3535.173304561038, + "max_y": 5318.598485829439 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552649" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3507.878307706807, + "min_y": 5321.69248376971, + "max_x": 3513.280368582129, + "max_y": 5323.960913389163 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "55264A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3514.099651266082, + "min_y": 5322.741869765968, + "max_x": 3517.591438860176, + "max_y": 5326.233657360061 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552653" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3513.280368582129, + "min_y": 5321.692939451467, + "max_x": 3517.551387424297, + "max_y": 5327.695995976991 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552654" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3515.845545063129, + "min_y": 5327.695995976991, + "max_x": 3520.509656191625, + "max_y": 5327.695995976991 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55265E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5318.598485829439, + "max_x": 3523.906805446744, + "max_y": 5320.417074743509 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "552663" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3524.578556969529, + "min_y": 5301.080746972232, + "max_x": 3527.1990793294494, + "max_y": 5302.5365927277435 + }, + "value": "50A", + "layer": "PID", + "id": "55266A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3598.244258801197, + "min_y": 5284.852854954714, + "max_x": 3604.287980001971, + "max_y": 5286.5316663993735 + }, + "value": "E-9103", + "layer": "PID", + "id": "55266B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5220.557467935687, + "max_x": 3598.281488415865, + "max_y": 5224.418583193601 + }, + "value": null, + "layer": "0", + "id": "55266C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5221.655611791957, + "max_x": 3590.977130168296, + "max_y": 5223.334423236617 + }, + "value": "E-10215", + "layer": "PID", + "id": "55266F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3614.864242298549, + "min_y": 5221.517435176562, + "max_x": 3621.915250366119, + "max_y": 5223.196246621222 + }, + "value": "E-10203", + "layer": "PID", + "id": "552670" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3549.481118196733, + "min_y": 5202.17477204175, + "max_x": 3556.604739658782, + "max_y": 5243.946237110773 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552671" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3512.917238207681, + "min_y": 5243.454878722883, + "max_x": 3549.482254375082, + "max_y": 5285.990935549941 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552672" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5221.352650576047, + "max_x": 3565.677357411125, + "max_y": 5223.621080195503 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552673" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3562.112874699996, + "min_y": 5222.401580890551, + "max_x": 3565.60466229409, + "max_y": 5225.893368484644 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552674" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3562.152926135881, + "min_y": 5221.352650576047, + "max_x": 3568.522879625542, + "max_y": 5227.355707101573 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552675" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3498.296961568869, + "min_y": 5254.855244799442, + "max_x": 3507.369579321212, + "max_y": 5257.123674418895 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55268A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3503.8050966100864, + "min_y": 5255.904175113943, + "max_x": 3507.29688420418, + "max_y": 5259.395962708037 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55268B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3503.845148045972, + "min_y": 5254.855244799442, + "max_x": 3510.215101535628, + "max_y": 5260.858301324966 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55268C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5260.858301324966, + "max_x": 3510.215101535628, + "max_y": 5264.119620802928 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552696" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3508.116166888141, + "min_y": 5254.855244799442, + "max_x": 3512.917238207681, + "max_y": 5257.123674418895 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552697" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3463.51544732131, + "min_y": 5254.855244799442, + "max_x": 3502.985813926132, + "max_y": 5262.985405993201 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552698" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5262.985405993199, + "max_x": 3516.488143145674, + "max_y": 5264.119620802928 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55269A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3502.985813926132, + "min_y": 5261.851191183474, + "max_x": 3505.550990407133, + "max_y": 5264.119620802928 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5526A8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3755.618244752804, + "min_y": 5281.4402210325, + "max_x": 3774.5442395744526, + "max_y": 5283.866630625019 + }, + "value": "6차 OGDEN PUMP", + "layer": "PID", + "id": "5526B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3600.191641947115, + "min_y": 5220.419291320292, + "max_x": 3629.219608613688, + "max_y": 5224.280406578206 + }, + "value": null, + "layer": "0", + "id": "5526BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3629.199204515981, + "min_y": 5220.439695418001, + "max_x": 3640.607980939535, + "max_y": 5224.280406578206 + }, + "value": null, + "layer": "PID", + "id": "5526BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5220.577872033395, + "max_x": 3600.191641947115, + "max_y": 5224.418583193601 + }, + "value": null, + "layer": "0", + "id": "5526BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3583.534392578552, + "min_y": 5283.755857473956, + "max_x": 3612.599625116337, + "max_y": 5287.61697273187 + }, + "value": null, + "layer": "0", + "id": "5526C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3612.579221018629, + "min_y": 5283.776261571663, + "max_x": 3634.694114521093, + "max_y": 5287.61697273187 + }, + "value": null, + "layer": "PID", + "id": "5526C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3535.173304561038, + "min_y": 5301.518583943549, + "max_x": 3567.030847998851, + "max_y": 5305.379699201463 + }, + "value": null, + "layer": "0", + "id": "5526C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3567.010443901143, + "min_y": 5301.538988041257, + "max_x": 3568.9410015301, + "max_y": 5305.379699201463 + }, + "value": null, + "layer": "0", + "id": "5526CC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3559.763002996805, + "min_y": 5219.140741212063, + "max_x": 3570.961816500739, + "max_y": 5220.30728428539 + }, + "value": "0.65 -> 0.35 MPa", + "layer": "0", + "id": "5526CF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3511.581009420824, + "min_y": 5319.295905090214, + "max_x": 3521.3799712367663, + "max_y": 5320.46244816354 + }, + "value": "0.8 -> 0.5 MPa", + "layer": "0", + "id": "5526D0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3501.820724058324, + "min_y": 5252.686078102318, + "max_x": 3512.319611718262, + "max_y": 5253.852621175644 + }, + "value": "0.8 -> 0.65 MPa", + "layer": "0", + "id": "5526D1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3575.180226235278, + "min_y": 5220.53836809486, + "max_x": 3577.8007485951985, + "max_y": 5221.994213850371 + }, + "value": "65A", + "layer": "0", + "id": "5526D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3487.528633269651, + "min_y": 5253.396149098571, + "max_x": 3491.0226630828784, + "max_y": 5254.8519948540825 + }, + "value": "100A", + "layer": "0", + "id": "5526D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5243.113837141445, + "max_x": 3591.9844170350916, + "max_y": 5244.792648586105 + }, + "value": "E-10115A", + "layer": "PID", + "id": "5526D4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3614.864242298549, + "min_y": 5242.975660526049, + "max_x": 3621.915250366119, + "max_y": 5244.654471970709 + }, + "value": "E-10103", + "layer": "PID", + "id": "5526D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3569.458309394266, + "min_y": 5235.073575288246, + "max_x": 3598.281488415865, + "max_y": 5238.93469054616 + }, + "value": null, + "layer": "0", + "id": "5526D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5236.171719144516, + "max_x": 3591.9844170350916, + "max_y": 5237.850530589176 + }, + "value": "E-10115B", + "layer": "PID", + "id": "5526D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3549.481118196733, + "min_y": 5232.663252827598, + "max_x": 3556.604739658782, + "max_y": 5245.080451920499 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5526DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5242.812022301045, + "max_x": 3565.677357411125, + "max_y": 5245.080451920499 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5526DC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3562.112874699996, + "min_y": 5243.860952615547, + "max_x": 3565.60466229409, + "max_y": 5247.352740209641 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5526DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3562.152926135881, + "min_y": 5242.812022301045, + "max_x": 3568.522879625542, + "max_y": 5248.81507882657 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5526DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5248.81507882657, + "max_x": 3568.522879625542, + "max_y": 5248.81507882657 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5526E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5235.093979385954, + "max_x": 3606.208583798176, + "max_y": 5238.93469054616 + }, + "value": null, + "layer": "0", + "id": "5526F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5242.016839660684, + "max_x": 3598.281488415865, + "max_y": 5245.877954918598 + }, + "value": null, + "layer": "0", + "id": "5526F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3600.191641947115, + "min_y": 5241.87866304529, + "max_x": 3629.219608613688, + "max_y": 5245.739778303203 + }, + "value": null, + "layer": "0", + "id": "5526FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3629.199204515981, + "min_y": 5241.899067142997, + "max_x": 3653.258492791038, + "max_y": 5245.739778303203 + }, + "value": null, + "layer": "PID", + "id": "552700" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5242.037243758392, + "max_x": 3600.191641947115, + "max_y": 5245.877954918598 + }, + "value": null, + "layer": "0", + "id": "552702" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3575.51984572271, + "min_y": 5235.054475447419, + "max_x": 3578.1403680826306, + "max_y": 5236.51032120293 + }, + "value": "65A", + "layer": "0", + "id": "552705" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3668.997113797092, + "min_y": 5167.244588155714, + "max_x": 3683.915736958164, + "max_y": 5177.602901536741 + }, + "value": null, + "layer": "0", + "id": "552706" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3683.915736958164, + "min_y": 5167.244588155714, + "max_x": 3683.915736958164, + "max_y": 5175.475897091557 + }, + "value": null, + "layer": "0", + "id": "552708" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3666.188872980034, + "min_y": 5166.940246297979, + "max_x": 3675.028865631346, + "max_y": 5175.780238949291 + }, + "value": null, + "layer": "0", + "id": "55270A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3678.853423025021, + "min_y": 5167.156074863671, + "max_x": 3687.261758544943, + "max_y": 5175.564410383593 + }, + "value": null, + "layer": "0", + "id": "55270B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3669.719729357512, + "min_y": 5170.071686560682, + "max_x": 3681.366495401603, + "max_y": 5172.498096153201 + }, + "value": "STS DRUM", + "layer": "PID", + "id": "55270C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3653.258492791038, + "min_y": 5194.326608337932, + "max_x": 3665.953000429386, + "max_y": 5243.808252088768 + }, + "value": null, + "layer": "0", + "id": "55270F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3714.348303706079, + "min_y": 5228.382298568871, + "max_x": 3783.32811122289, + "max_y": 5361.788201716635 + }, + "value": null, + "layer": "0", + "id": "552710" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3675.918729182653, + "min_y": 5142.778829348877, + "max_x": 3696.300569759813, + "max_y": 5145.205238941396 + }, + "value": "10차 OGDEN PUMP", + "layer": "PID", + "id": "552711" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3544.850257077401, + "min_y": 5238.185804497782, + "max_x": 3548.344286890628, + "max_y": 5239.641650253293 + }, + "value": "100A", + "layer": "0", + "id": "552715" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3615.180068561172, + "min_y": 5283.498656460873, + "max_x": 3617.8005909210924, + "max_y": 5284.954502216384 + }, + "value": "40A", + "layer": "0", + "id": "552716" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3631.901856054414, + "min_y": 5219.274516517701, + "max_x": 3634.5223784143345, + "max_y": 5220.730362273212 + }, + "value": "40A", + "layer": "0", + "id": "552717" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3631.596444066739, + "min_y": 5241.711191930516, + "max_x": 3634.2169664266594, + "max_y": 5243.1670376860275 + }, + "value": "65A", + "layer": "0", + "id": "552718" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3608.549709797177, + "min_y": 5241.253146837469, + "max_x": 3611.1702321570974, + "max_y": 5242.70899259298 + }, + "value": "65A", + "layer": "0", + "id": "552719" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3606.208583798176, + "min_y": 5237.004132917203, + "max_x": 3606.208583798176, + "max_y": 5243.947397289641 + }, + "value": null, + "layer": "0", + "id": "55271A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3575.458219693534, + "min_y": 5241.907897853584, + "max_x": 3578.0787420534543, + "max_y": 5243.363743609095 + }, + "value": "65A", + "layer": "0", + "id": "55271B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5227.355707101573, + "max_x": 3568.522879625542, + "max_y": 5227.355707101573 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55271C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3548.670289326915, + "min_y": 5263.188095892071, + "max_x": 3581.51439317084, + "max_y": 5267.049211149985 + }, + "value": null, + "layer": "0", + "id": "55271D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3567.1590268557, + "min_y": 5264.286239748341, + "max_x": 3573.2027480564743, + "max_y": 5265.965051193001 + }, + "value": "E-9215", + "layer": "PID", + "id": "552720" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3598.097147053523, + "min_y": 5264.148063132947, + "max_x": 3604.140868254297, + "max_y": 5265.826874577607 + }, + "value": "E-9203", + "layer": "PID", + "id": "552721" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3523.238417522377, + "min_y": 5284.856720022312, + "max_x": 3539.886108471761, + "max_y": 5287.125149641767 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552722" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3545.394243512975, + "min_y": 5285.905650336813, + "max_x": 3548.886031107069, + "max_y": 5289.397437930907 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552723" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3544.574960829021, + "min_y": 5284.856720022311, + "max_x": 3551.80424843852, + "max_y": 5290.859776547836 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552724" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3539.886108471761, + "min_y": 5284.856720022312, + "max_x": 3544.574960829021, + "max_y": 5287.125149641767 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "55272E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3549.705313791032, + "min_y": 5283.892873910481, + "max_x": 3581.604940609484, + "max_y": 5287.753989168396 + }, + "value": null, + "layer": "STEAM LINE", + "id": "552739" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3583.424546702089, + "min_y": 5263.049919276676, + "max_x": 3612.452513368663, + "max_y": 5266.91103453459 + }, + "value": null, + "layer": "0", + "id": "55273A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3612.432109270955, + "min_y": 5263.070323374384, + "max_x": 3635.483218739677, + "max_y": 5266.91103453459 + }, + "value": null, + "layer": "PID", + "id": "55273D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3581.493989073133, + "min_y": 5263.208499989779, + "max_x": 3583.424546702089, + "max_y": 5267.049211149985 + }, + "value": null, + "layer": "0", + "id": "55273F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3542.833834287935, + "min_y": 5282.458045871479, + "max_x": 3557.8609614327866, + "max_y": 5285.116482080825 + }, + "value": "0.65 -> 0.3 MPa", + "layer": "0", + "id": "552742" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3586.977438096959, + "min_y": 5262.541877839768, + "max_x": 3589.5979604568793, + "max_y": 5263.997723595279 + }, + "value": "25A", + "layer": "0", + "id": "552744" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3615.134760809389, + "min_y": 5262.711506919512, + "max_x": 3617.755283169309, + "max_y": 5264.167352675024 + }, + "value": "25A", + "layer": "0", + "id": "552745" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3547.140137310022, + "min_y": 5290.859776547836, + "max_x": 3551.80424843852, + "max_y": 5290.859776547836 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "552746" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3771.3916131596275, + "min_y": 5285.31557683876, + "max_x": 3776.185210484387, + "max_y": 5292.505972825898 + }, + "value": null, + "layer": "0", + "id": "552747" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3774.789675986204, + "min_y": 5287.584859806019, + "max_x": 3777.209085641135, + "max_y": 5357.352402571435 + }, + "value": null, + "layer": "VALVE NO", + "id": "55274A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3773.7901847759795, + "min_y": 5285.5926658736735, + "max_x": 3776.029947476766, + "max_y": 5287.83242857446 + }, + "value": null, + "layer": "VALVE NO", + "id": "55274C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3640.587964612417, + "min_y": 5194.327137140931, + "max_x": 3659.833663017846, + "max_y": 5230.739900099962 + }, + "value": null, + "layer": "0", + "id": "552753" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3726.961319992418, + "min_y": 5338.814919074787, + "max_x": 3729.5818423523383, + "max_y": 5340.2707648302985 + }, + "value": "50A", + "layer": "0", + "id": "552755" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3567.269978392051, + "min_y": 5284.989871391242, + "max_x": 3573.3136995928253, + "max_y": 5286.668682835902 + }, + "value": "E-9115", + "layer": "PID", + "id": "552756" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3564.63126174274, + "min_y": 5283.913278008188, + "max_x": 3583.53549823844, + "max_y": 5287.753989168396 + }, + "value": null, + "layer": "PID", + "id": "552758" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3532.681668248339, + "min_y": 5321.995318469082, + "max_x": 3541.7472500495005, + "max_y": 5323.674129913742 + }, + "value": "#5,6Plant", + "layer": "PID", + "id": "55275C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3547.01663046577, + "min_y": 5320.91872508603, + "max_x": 3548.947188094727, + "max_y": 5324.759436246235 + }, + "value": null, + "layer": "0", + "id": "552760" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3810.040450042448, + "min_y": 5356.549860201224, + "max_x": 3816.084171243222, + "max_y": 5358.228671645884 + }, + "value": "T-2704", + "layer": "PID", + "id": "552762" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3788.944277488666, + "min_y": 5355.452862720464, + "max_x": 3824.395816357588, + "max_y": 5359.313977978377 + }, + "value": null, + "layer": "0", + "id": "552763" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3824.375412259879, + "min_y": 5355.473266818171, + "max_x": 3826.305969888836, + "max_y": 5359.313977978377 + }, + "value": null, + "layer": "0", + "id": "552766" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3436.238795462617, + "min_y": 5322.096976922404, + "max_x": 3455.377245931735, + "max_y": 5323.775788367064 + }, + "value": "H-2701/ 2702 / 2703", + "layer": "PID", + "id": "552768" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5320.413501543242, + "max_x": 3461.102250285116, + "max_y": 5325.239895615631 + }, + "value": null, + "layer": "0", + "id": "552769" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3436.238795462617, + "min_y": 5255.259737952137, + "max_x": 3455.377245931735, + "max_y": 5256.938549396797 + }, + "value": "H-2701/ 2702 / 2703", + "layer": "PID", + "id": "55276E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5253.576262572975, + "max_x": 3461.102250285116, + "max_y": 5258.402656645364 + }, + "value": null, + "layer": "0", + "id": "55276F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5253.576262572975, + "max_x": 3463.51544732131, + "max_y": 5258.402656645364 + }, + "value": null, + "layer": "PID", + "id": "552772" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3430.169819539819, + "min_y": 5334.021830923152, + "max_x": 3442.169819539819, + "max_y": 5339.021830923152 + }, + "value": "기존설비", + "layer": "0", + "id": "552774" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3801.243100062374, + "min_y": 5185.158968130861, + "max_x": 3802.9229220879643, + "max_y": 5186.092202589522 + }, + "value": "J.W", + "layer": "REV.UPDATE", + "id": "552775" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3813.765543183561, + "min_y": 5188.494596913514, + "max_x": 3816.5652465595444, + "max_y": 5189.427831372175 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "552776" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3819.353313695343, + "min_y": 5188.506753274184, + "max_x": 3822.1530170713263, + "max_y": 5189.439987732845 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "552777" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5136.02078529679, + "max_x": 4275.78391927551, + "max_y": 5184.264113696894 + }, + "value": null, + "layer": "TITLE", + "id": "552778" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5174.471862832472, + "max_x": 4275.78391927551, + "max_y": 5174.471862832472 + }, + "value": null, + "layer": "TITLE", + "id": "552779" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5153.102248000193, + "max_x": 4275.78391927551, + "max_y": 5153.102248000193 + }, + "value": null, + "layer": "TITLE", + "id": "55277A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5136.02078529679, + "max_x": 4275.78391927551, + "max_y": 5142.417440584062 + }, + "value": null, + "layer": "TITLE", + "id": "55277E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5139.215879039879, + "max_x": 4234.920351929782, + "max_y": 5139.215879039879 + }, + "value": null, + "layer": "TITLE", + "id": "552780" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4225.767813974115, + "min_y": 5137.057630582686, + "max_x": 4228.8370968313175, + "max_y": 5141.6421028207515 + }, + "value": "NONE", + "layer": "1", + "id": "552781" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.976461537485, + "min_y": 5137.083634048247, + "max_x": 4219.087783647876, + "max_y": 5141.243257048659 + }, + "value": "JOB NO.", + "layer": "1", + "id": "552784" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4236.368202957679, + "min_y": 5140.388472455367, + "max_x": 4241.47952506807, + "max_y": 5141.605453910222 + }, + "value": "DWG NO.", + "layer": "1", + "id": "552789" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5150.871489282998, + "max_x": 4218.718012155204, + "max_y": 5152.088470737853 + }, + "value": "TITLE :", + "layer": "1", + "id": "55278B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5172.241104115277, + "max_x": 4218.718012155204, + "max_y": 5173.458085570132 + }, + "value": "ONWER :", + "layer": "1", + "id": "55278C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.026799443471, + "min_y": 5182.232706727603, + "max_x": 4222.755535572231, + "max_y": 5186.126038142744 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "55278D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4269.762396452013, + "min_y": 5137.417830334262, + "max_x": 4274.731817116626, + "max_y": 5137.417830334262 + }, + "value": null, + "layer": "TITLE", + "id": "55278E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5184.264113696894, + "max_x": 4275.78391927551, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "TITLE", + "id": "552793" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4271.62209113302, + "min_y": 5138.226707916594, + "max_x": 4272.786295330904, + "max_y": 5140.167048246401 + }, + "value": "3", + "layer": "0", + "id": "552795" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4231.462861854308, + "min_y": 5167.793935684509, + "max_x": 4276.930044680281, + "max_y": 5170.406992168761 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "552797" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4225.572479802276, + "min_y": 5169.20663721225, + "max_x": 4226.965413038952, + "max_y": 5170.593864280164 + }, + "value": null, + "layer": "0-BAS", + "id": "5527A0" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4226.419391693141, + "min_y": 5166.720206165759, + "max_x": 4233.344644408908, + "max_y": 5167.829987820085 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "5527AE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3858.740104389006, + "min_y": 5136.02078529679, + "max_x": 4275.78391927551, + "max_y": 5433.022211779237 + }, + "value": null, + "layer": "0", + "id": "5527AF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5161.556296699135, + "max_x": 4222.368956519768, + "max_y": 5162.77327815399 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "5527B0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4241.561089184045, + "min_y": 5148.737442947862, + "max_x": 4252.311950147822, + "max_y": 5150.977205648649 + }, + "value": "OFF SITE", + "layer": "0", + "id": "5527B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4226.875663117111, + "min_y": 5144.257917546288, + "max_x": 4256.440530767497, + "max_y": 5146.497680247075 + }, + "value": "RAW WATER P&I DIAGRAM", + "layer": "0", + "id": "5527B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4216.843044847879, + "min_y": 5177.555024650128, + "max_x": 4262.310227673852, + "max_y": 5180.1680811343795 + }, + "value": "72MT/D SOLVENT RECOVERY PLANT", + "layer": "SH1", + "id": "5527B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.52882452386, + "min_y": 5187.215768965883, + "max_x": 4275.783919275514, + "max_y": 5187.215768965883 + }, + "value": null, + "layer": "0", + "id": "5527B6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4260.98031511344, + "min_y": 5185.029137017409, + "max_x": 4263.612877814244, + "max_y": 5186.126038142744 + }, + "value": "APPD", + "layer": "0", + "id": "5527BE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4255.633801606001, + "min_y": 5185.029137017409, + "max_x": 4258.2663643068045, + "max_y": 5186.126038142744 + }, + "value": "CHKD", + "layer": "0", + "id": "5527C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4249.916193043697, + "min_y": 5185.029137017409, + "max_x": 4252.5487557445, + "max_y": 5186.126038142744 + }, + "value": "DRWN", + "layer": "0", + "id": "5527C2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4233.772862679162, + "min_y": 5185.029137017409, + "max_x": 4241.012410106371, + "max_y": 5186.126038142744 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "5527C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4268.031437183515, + "min_y": 5184.976896931174, + "max_x": 4271.98028123472, + "max_y": 5186.073798056509 + }, + "value": "REMARK", + "layer": "0", + "id": "5527C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523849, + "min_y": 5190.618128074395, + "max_x": 4275.783919275514, + "max_y": 5190.618128074395 + }, + "value": null, + "layer": "0", + "id": "5527C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523842, + "min_y": 5194.020487182905, + "max_x": 4275.783919275514, + "max_y": 5194.020487182905 + }, + "value": null, + "layer": "0", + "id": "5527CA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523833, + "min_y": 5197.422846291416, + "max_x": 4275.783919275514, + "max_y": 5197.422846291416 + }, + "value": null, + "layer": "0", + "id": "5527CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523825, + "min_y": 5200.825205399927, + "max_x": 4275.783919275514, + "max_y": 5200.825205399927 + }, + "value": null, + "layer": "0", + "id": "5527CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523815, + "min_y": 5204.227564508437, + "max_x": 4275.783919275514, + "max_y": 5204.227564508437 + }, + "value": null, + "layer": "0", + "id": "5527CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5207.629923616948, + "max_x": 4275.783919275514, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "0", + "id": "5527CE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4230.999178209397, + "min_y": 5156.389081476591, + "max_x": 4253.854420451158, + "max_y": 5158.629791500293 + }, + "value": "HANMO CORPORATION", + "layer": "0", + "id": "5527CF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5191.840066486287, + "max_x": 4214.547364091494, + "max_y": 5192.773300944948 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "5527D1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5195.24242559477, + "max_x": 4214.547364091494, + "max_y": 5196.175660053431 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "5527D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5198.657876168591, + "max_x": 4214.547364091494, + "max_y": 5199.591110627252 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "5527D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5202.060235277075, + "max_x": 4214.547364091494, + "max_y": 5202.993469735736 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "5527D4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.9874234163, + "min_y": 5205.475685850937, + "max_x": 4214.547364091497, + "max_y": 5206.408920309598 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "5527D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5188.450798843156, + "max_x": 4214.547364091494, + "max_y": 5189.384033301817 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "5527D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4231.721519947185, + "min_y": 5188.452201500158, + "max_x": 4240.680570750332, + "max_y": 5189.385435958819 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "5527D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4250.077405040729, + "min_y": 5188.452201500131, + "max_x": 4252.877108416713, + "max_y": 5189.385435958792 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "5527D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4245.047096098615, + "min_y": 5137.540953461114, + "max_x": 4261.345954868993, + "max_y": 5139.3519377689345 + }, + "value": "SARF-#10-UFD-RW", + "layer": "0", + "id": "5527D9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4243.114534663169, + "min_y": 5185.158968130861, + "max_x": 4244.79435668876, + "max_y": 5186.092202589522 + }, + "value": "J.W", + "layer": "REV.UPDATE", + "id": "5527DA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4255.636977784358, + "min_y": 5188.494596913514, + "max_x": 4258.436681160342, + "max_y": 5189.427831372175 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "5527DB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4261.224748296139, + "min_y": 5188.506753274184, + "max_x": 4264.024451672123, + "max_y": 5189.439987732845 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "5527DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.531236742189, + "min_y": 5217.674443903988, + "max_x": 4089.723217361276, + "max_y": 5221.882521638271 + }, + "value": null, + "layer": "0", + "id": "5527DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4078.541055493167, + "min_y": 5208.301866290575, + "max_x": 4085.665525296504, + "max_y": 5214.662419269123 + }, + "value": null, + "layer": "0", + "id": "5527DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4042.139056317125, + "min_y": 5195.645336887995, + "max_x": 4057.399277374983, + "max_y": 5236.992031954011 + }, + "value": null, + "layer": "WATER", + "id": "5527DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.959373277979, + "min_y": 5213.566428959581, + "max_x": 4089.272228438518, + "max_y": 5217.674855109677 + }, + "value": null, + "layer": "WATER", + "id": "5527E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4086.655633260794, + "min_y": 5245.143750023839, + "max_x": 4109.694421017577, + "max_y": 5270.002978054171 + }, + "value": null, + "layer": "WATER", + "id": "5527E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5230.098071277814, + "max_x": 4089.719396042194, + "max_y": 5239.997232859943 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5527E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5227.35390719211, + "max_x": 4089.719396042194, + "max_y": 5229.353976680886 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5527E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5273.151886134753, + "max_x": 4089.794578942015, + "max_y": 5405.776459684083 + }, + "value": null, + "layer": "VV-BALL", + "id": "5527EB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5269.817378013641, + "max_x": 4089.794578942015, + "max_y": 5271.993934133062 + }, + "value": null, + "layer": "VV-BALL", + "id": "5527EC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4087.978013250803, + "min_y": 5271.8905592524225, + "max_x": 4089.342715013775, + "max_y": 5273.255261015394 + }, + "value": null, + "layer": "VV-BALL", + "id": "5527EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.48839069416, + "min_y": 5199.958342795472, + "max_x": 4110.680371313246, + "max_y": 5204.002757180727 + }, + "value": null, + "layer": "0", + "id": "5527F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4100.006678899716, + "min_y": 5190.384825605959, + "max_x": 4106.622679248475, + "max_y": 5196.745378584509 + }, + "value": null, + "layer": "0", + "id": "5527F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4052.146870223163, + "min_y": 5194.51517346524, + "max_x": 4078.893413336509, + "max_y": 5196.783603084693 + }, + "value": null, + "layer": "WATER", + "id": "5527F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5236.656532314246, + "max_x": 4110.750523688547, + "max_y": 5249.662560555344 + }, + "value": null, + "layer": "WATER", + "id": "5527F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4080.0513653382, + "min_y": 5194.51517346524, + "max_x": 4083.211266312047, + "max_y": 5196.783603084693 + }, + "value": null, + "layer": "VV-BALL", + "id": "5527F9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4078.790038455867, + "min_y": 5194.967037393483, + "max_x": 4080.154740218839, + "max_y": 5196.331739156455 + }, + "value": null, + "layer": "VV-BALL", + "id": "5527FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3976.399647217267, + "min_y": 5209.273710951813, + "max_x": 4043.659645682635, + "max_y": 5236.992031954011 + }, + "value": null, + "layer": "0", + "id": "552803" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4014.00370497601, + "min_y": 5209.273710951813, + "max_x": 4043.659645682635, + "max_y": 5211.409925989242 + }, + "value": null, + "layer": "0", + "id": "552805" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4027.713203536261, + "min_y": 5236.992031954011, + "max_x": 4029.950147122388, + "max_y": 5240.88844719599 + }, + "value": null, + "layer": "0", + "id": "552807" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4020.786827062221, + "min_y": 5227.326726939434, + "max_x": 4030.4180558569765, + "max_y": 5228.866563796225 + }, + "value": "\\pi-0.37517; \\fArial|b1|i1|c238|p34; .3333x; T-10800", + "layer": "0", + "id": "55280C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4006.598175305788, + "min_y": 5212.866941024457, + "max_x": 4009.737932969263, + "max_y": 5215.135370643909 + }, + "value": null, + "layer": "0", + "id": "552811" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4009.634558088621, + "min_y": 5213.318804952695, + "max_x": 4010.999259851593, + "max_y": 5214.683506715667 + }, + "value": null, + "layer": "VV-BALL", + "id": "552815" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4010.895884970953, + "min_y": 5212.866941024457, + "max_x": 4012.870852516154, + "max_y": 5215.165299872365 + }, + "value": null, + "layer": "VV-BALL", + "id": "552816" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4028.8316753293248, + "min_y": 5240.141859629061, + "max_x": 4030.324850463183, + "max_y": 5241.635034762919 + }, + "value": null, + "layer": "WATER", + "id": "55281B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3999.1322996364993, + "min_y": 5210.268217999537, + "max_x": 4006.598175305789, + "max_y": 5225.199969338117 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55281C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4000.310769736091, + "min_y": 5211.669526599305, + "max_x": 4005.3465402044053, + "max_y": 5216.3344670231245 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "55281D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4000.310769736091, + "min_y": 5219.135402268594, + "max_x": 4005.3465402044053, + "max_y": 5223.800342692414 + }, + "value": "LIA", + "layer": "INSTRUMENT", + "id": "552821" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3999.132299636499, + "min_y": 5221.467031503472, + "max_x": 4006.598175305788, + "max_y": 5221.467031503472 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "552824" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4081.503087136513, + "min_y": 5206.969460388705, + "max_x": 4091.1343159312682, + "max_y": 5208.509297245496 + }, + "value": "\\pi-3.00032; \\fArial|b1|i1|c238|p34; .3333x; P-10800A/B", + "layer": "0", + "id": "55282A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4109.579423546962, + "min_y": 5216.597075339624, + "max_x": 4114.195066005216, + "max_y": 5233.497952150838 + }, + "value": null, + "layer": "WATER", + "id": "55282E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4115.353018006907, + "min_y": 5227.00249141646, + "max_x": 4120.53271137591, + "max_y": 5229.270921035912 + }, + "value": null, + "layer": "WATER", + "id": "55282F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4103.660977493245, + "min_y": 5192.687686519737, + "max_x": 4109.584381003705, + "max_y": 5198.611090030197 + }, + "value": null, + "layer": "0", + "id": "552830" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4103.181206820857, + "min_y": 5190.384825605959, + "max_x": 4110.064151676096, + "max_y": 5193.295007381273 + }, + "value": null, + "layer": "0", + "id": "552832" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4105.965084906786, + "min_y": 5194.991793933278, + "max_x": 4107.280273590164, + "max_y": 5196.306982616657 + }, + "value": null, + "layer": "0", + "id": "552834" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4082.7038235412742, + "min_y": 5210.604727204351, + "max_x": 4088.6272270517334, + "max_y": 5216.528130714811 + }, + "value": null, + "layer": "0", + "id": "552835" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4082.22405286889, + "min_y": 5208.301866290575, + "max_x": 4089.106997724126, + "max_y": 5211.212048065888 + }, + "value": null, + "layer": "0", + "id": "552837" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4085.007930954815, + "min_y": 5212.908834617891, + "max_x": 4086.3231196381926, + "max_y": 5214.22402330127 + }, + "value": null, + "layer": "0", + "id": "552839" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.93446409632, + "min_y": 5195.649388274967, + "max_x": 4110.247319256859, + "max_y": 5199.958342795472 + }, + "value": null, + "layer": "WATER", + "id": "55283A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4046.854809511199, + "min_y": 5212.869110257189, + "max_x": 4048.219511274171, + "max_y": 5214.233812020161 + }, + "value": null, + "layer": "VV-BALL", + "id": "55283F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4112.20886552505, + "min_y": 5227.454355344703, + "max_x": 4117.3392184870645, + "max_y": 5228.819057107675 + }, + "value": null, + "layer": "VV-BALL", + "id": "552849" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4006.598175305788, + "min_y": 5217.734093668827, + "max_x": 4014.0181452753777, + "max_y": 5218.928633775913 + }, + "value": "\\Fmonotxt.shx; .6; HH 100 H 95 L 60 LL 50", + "layer": "INSTRUMENT", + "id": "552851" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5232.308314041617, + "max_x": 3973.986186126249, + "max_y": 5237.135236223655 + }, + "value": null, + "layer": "0", + "id": "552855" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3973.986186126249, + "min_y": 5232.308314041617, + "max_x": 3976.399647217267, + "max_y": 5237.135236223655 + }, + "value": null, + "layer": "0", + "id": "552857" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3956.592625607984, + "min_y": 5234.026117553803, + "max_x": 3970.6961848021165, + "max_y": 5235.705112695961 + }, + "value": "City Raw Water", + "layer": "0", + "id": "55285A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4027.0084508744403, + "min_y": 5230.773509614807, + "max_x": 4028.77226400131, + "max_y": 5232.537322741678 + }, + "value": null, + "layer": "MAIN", + "id": "552860" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4020.13420507945, + "min_y": 5231.653643427433, + "max_x": 4022.2507808316936, + "max_y": 5232.829518845346 + }, + "value": "50A", + "layer": "0", + "id": "552861" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4021.517297060116, + "min_y": 5232.160662305256, + "max_x": 4027.16752582694, + "max_y": 5235.855966133657 + }, + "value": null, + "layer": "MAIN", + "id": "552862" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4018.294581876892, + "min_y": 5233.587536514203, + "max_x": 4020.359345058424, + "max_y": 5239.405211428143 + }, + "value": null, + "layer": "VV-BALL", + "id": "552864" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4020.255970177783, + "min_y": 5234.039400442441, + "max_x": 4021.620671940755, + "max_y": 5235.4041022054125 + }, + "value": null, + "layer": "VV-BALL", + "id": "552867" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5340.365575545508, + "max_x": 4141.626827404297, + "max_y": 5345.192497727546 + }, + "value": null, + "layer": "0", + "id": "55286D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5340.365575545508, + "max_x": 4144.040288495316, + "max_y": 5345.192497727546 + }, + "value": null, + "layer": "0", + "id": "55286F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4122.568851378112, + "min_y": 5341.978006218057, + "max_x": 4144.731587254607, + "max_y": 5343.657001360216 + }, + "value": "1~7F #10 Plant Utility", + "layer": "0", + "id": "552872" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5374.56645879988, + "max_x": 4146.934883348209, + "max_y": 5379.393380981917 + }, + "value": null, + "layer": "0", + "id": "552877" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4146.934883348209, + "min_y": 5374.56645879988, + "max_x": 4149.348344439231, + "max_y": 5379.393380981917 + }, + "value": null, + "layer": "0", + "id": "552878" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4121.007422613379, + "min_y": 5376.141261723806, + "max_x": 4144.177555575168, + "max_y": 5377.820256865964 + }, + "value": "COOLING TOWER(CT-10601)", + "layer": "0", + "id": "55287B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5372.70000191148, + "max_x": 4129.867161841369, + "max_y": 5373.969903475045 + }, + "value": "A3-SR10803-005", + "layer": "0", + "id": "55287F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5341.644820050857, + "max_x": 4113.661209788834, + "max_y": 5343.913249670309 + }, + "value": null, + "layer": "VV-BALL", + "id": "552881" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5341.644820050857, + "max_x": 4110.517057306987, + "max_y": 5343.913249670309 + }, + "value": null, + "layer": "VV-BALL", + "id": "552882" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5342.096683979097, + "max_x": 4111.778384189319, + "max_y": 5343.461385742069 + }, + "value": null, + "layer": "VV-BALL", + "id": "552885" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.67500577201, + "min_y": 5372.112765470583, + "max_x": 4113.661206252164, + "max_y": 5378.114132924681 + }, + "value": null, + "layer": "VV-BALL", + "id": "55288C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5372.112765470583, + "max_x": 4110.517053770317, + "max_y": 5378.114132924681 + }, + "value": null, + "layer": "VV-BALL", + "id": "55288D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413678889679, + "min_y": 5376.29756723347, + "max_x": 4111.778380652651, + "max_y": 5377.6622689964415 + }, + "value": null, + "layer": "VV-BALL", + "id": "552890" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5386.783079310117, + "max_x": 4141.626827404297, + "max_y": 5391.610001492153 + }, + "value": null, + "layer": "0", + "id": "552899" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5386.783079310117, + "max_x": 4144.040288495316, + "max_y": 5391.610001492153 + }, + "value": null, + "layer": "0", + "id": "55289B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5388.360405773836, + "max_x": 4136.487828473966, + "max_y": 5390.0394009159945 + }, + "value": "5F EYE SHOWER", + "layer": "0", + "id": "55289E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5388.062323815463, + "max_x": 4113.661209788834, + "max_y": 5390.330753434916 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5388.062323815463, + "max_x": 4110.517057306987, + "max_y": 5390.330753434916 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528A4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5388.514187743705, + "max_x": 4111.778384189319, + "max_y": 5389.878889506677 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5372.112765470583, + "max_x": 4116.029075319135, + "max_y": 5373.24698028031 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528B1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413678889679, + "min_y": 5372.564629398825, + "max_x": 4111.778380652651, + "max_y": 5373.929331161797 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4106.162984223192, + "min_y": 5373.24698028031, + "max_x": 4108.530853290155, + "max_y": 5376.979918114955 + }, + "value": null, + "layer": "WATER", + "id": "5528B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4116.029075319135, + "min_y": 5373.24698028031, + "max_x": 4116.029075319135, + "max_y": 5376.979918114955 + }, + "value": null, + "layer": "WATER", + "id": "5528B9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4090.441709703493, + "min_y": 5378.843894869613, + "max_x": 4107.601709703493, + "max_y": 5380.273894869613 + }, + "value": "SW-10810-25A-F1A-E50", + "layer": "LINENO", + "id": "5528BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4089.780277395966, + "min_y": 5344.864575041224, + "max_x": 4106.940277395966, + "max_y": 5346.294575041225 + }, + "value": "SW-10805-25A-F1A-E50", + "layer": "LINENO", + "id": "5528BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5351.119702186581, + "max_x": 4141.626827404297, + "max_y": 5355.946624368619 + }, + "value": null, + "layer": "0", + "id": "5528BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5351.119702186581, + "max_x": 4144.040288495316, + "max_y": 5355.946624368619 + }, + "value": null, + "layer": "0", + "id": "5528C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5352.6970286503, + "max_x": 4136.487828473966, + "max_y": 5354.376023792459 + }, + "value": "1F EYE SHOWER", + "layer": "0", + "id": "5528C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5352.398946691927, + "max_x": 4113.661209788834, + "max_y": 5354.66737631138 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5352.398946691927, + "max_x": 4110.517057306987, + "max_y": 5354.66737631138 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528C9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5352.85081062017, + "max_x": 4111.778384189319, + "max_y": 5354.215512383142 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5362.628474802516, + "max_x": 4141.626827404297, + "max_y": 5367.455396984553 + }, + "value": null, + "layer": "0", + "id": "5528D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5362.628474802516, + "max_x": 4144.040288495316, + "max_y": 5367.455396984553 + }, + "value": null, + "layer": "0", + "id": "5528D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5364.205801266234, + "max_x": 4136.487828473966, + "max_y": 5365.8847964083925 + }, + "value": "3F EYE SHOWER", + "layer": "0", + "id": "5528D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5363.907719307862, + "max_x": 4113.661209788834, + "max_y": 5366.176148927315 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5363.907719307862, + "max_x": 4110.517057306987, + "max_y": 5366.176148927315 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528DF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5364.359583236105, + "max_x": 4111.778384189319, + "max_y": 5365.724284999077 + }, + "value": null, + "layer": "VV-BALL", + "id": "5528E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5136.02078529679, + "max_x": 4706.970192332875, + "max_y": 5184.264113696894 + }, + "value": null, + "layer": "TITLE", + "id": "5528EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5174.471862832472, + "max_x": 4706.970192332875, + "max_y": 5174.471862832472 + }, + "value": null, + "layer": "TITLE", + "id": "5528EB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5153.102248000193, + "max_x": 4706.970192332875, + "max_y": 5153.102248000193 + }, + "value": null, + "layer": "TITLE", + "id": "5528EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5136.02078529679, + "max_x": 4706.970192332875, + "max_y": 5142.417440584062 + }, + "value": null, + "layer": "TITLE", + "id": "5528F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5139.215879039879, + "max_x": 4666.106624987147, + "max_y": 5139.215879039879 + }, + "value": null, + "layer": "TITLE", + "id": "5528F2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4656.95408703148, + "min_y": 5137.057630582686, + "max_x": 4660.023369888682, + "max_y": 5141.6421028207515 + }, + "value": "NONE", + "layer": "1", + "id": "5528F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.16273459485, + "min_y": 5137.083634048247, + "max_x": 4650.274056705241, + "max_y": 5141.243257048659 + }, + "value": "JOB NO.", + "layer": "1", + "id": "5528F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4667.554476015044, + "min_y": 5140.388472455367, + "max_x": 4672.665798125435, + "max_y": 5141.605453910222 + }, + "value": "DWG NO.", + "layer": "1", + "id": "5528FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5150.871489282998, + "max_x": 4649.9042852125685, + "max_y": 5152.088470737853 + }, + "value": "TITLE :", + "layer": "1", + "id": "5528FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5172.241104115277, + "max_x": 4649.9042852125685, + "max_y": 5173.458085570132 + }, + "value": "ONWER :", + "layer": "1", + "id": "5528FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4644.213072500837, + "min_y": 5182.232706727603, + "max_x": 4653.9418086295955, + "max_y": 5186.126038142744 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "5528FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4700.948669509378, + "min_y": 5137.417830334262, + "max_x": 4705.918090173991, + "max_y": 5137.417830334262 + }, + "value": null, + "layer": "TITLE", + "id": "552900" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5184.264113696894, + "max_x": 4706.970192332875, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "TITLE", + "id": "552905" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4702.808364190384, + "min_y": 5138.226707916594, + "max_x": 4703.972568388268, + "max_y": 5140.167048246401 + }, + "value": "3", + "layer": "0", + "id": "552907" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4662.649134911673, + "min_y": 5167.793935684509, + "max_x": 4708.116317737646, + "max_y": 5170.406992168761 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "552909" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4656.758752859641, + "min_y": 5169.20663721225, + "max_x": 4658.151686096316, + "max_y": 5170.593864280164 + }, + "value": null, + "layer": "0-BAS", + "id": "552912" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4657.605664750507, + "min_y": 5166.720206165759, + "max_x": 4664.530917466273, + "max_y": 5167.829987820085 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "552920" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4289.92637744637, + "min_y": 5136.02078529679, + "max_x": 4706.970192332875, + "max_y": 5433.022211779237 + }, + "value": null, + "layer": "0", + "id": "552921" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5161.556296699135, + "max_x": 4653.555229577133, + "max_y": 5162.77327815399 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "552922" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4672.747362241411, + "min_y": 5148.737442947862, + "max_x": 4683.498223205188, + "max_y": 5150.977205648649 + }, + "value": "OFF SITE", + "layer": "0", + "id": "552923" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4665.419713744145, + "min_y": 5144.257917546288, + "max_x": 4685.577578051227, + "max_y": 5146.497680247075 + }, + "value": "N2 P&I DIAGRAM", + "layer": "0", + "id": "552924" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4648.029317905244, + "min_y": 5177.555024650128, + "max_x": 4693.496500731217, + "max_y": 5180.1680811343795 + }, + "value": "72MT/D SOLVENT RECOVERY PLANT", + "layer": "SH1", + "id": "552925" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581226, + "min_y": 5187.215768965883, + "max_x": 4706.970192332879, + "max_y": 5187.215768965883 + }, + "value": null, + "layer": "0", + "id": "552928" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4692.166588170805, + "min_y": 5185.029137017409, + "max_x": 4694.799150871609, + "max_y": 5186.126038142744 + }, + "value": "APPD", + "layer": "0", + "id": "552930" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4686.820074663367, + "min_y": 5185.029137017409, + "max_x": 4689.452637364171, + "max_y": 5186.126038142744 + }, + "value": "CHKD", + "layer": "0", + "id": "552932" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4681.102466101061, + "min_y": 5185.029137017409, + "max_x": 4683.735028801864, + "max_y": 5186.126038142744 + }, + "value": "DRWN", + "layer": "0", + "id": "552934" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4664.959135736527, + "min_y": 5185.029137017409, + "max_x": 4672.198683163736, + "max_y": 5186.126038142744 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "552935" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4699.21771024088, + "min_y": 5184.976896931174, + "max_x": 4703.166554292085, + "max_y": 5186.073798056509 + }, + "value": "REMARK", + "layer": "0", + "id": "552937" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581214, + "min_y": 5190.618128074395, + "max_x": 4706.970192332879, + "max_y": 5190.618128074395 + }, + "value": null, + "layer": "0", + "id": "55293B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581207, + "min_y": 5194.020487182905, + "max_x": 4706.970192332879, + "max_y": 5194.020487182905 + }, + "value": null, + "layer": "0", + "id": "55293C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581198, + "min_y": 5197.422846291416, + "max_x": 4706.970192332879, + "max_y": 5197.422846291416 + }, + "value": null, + "layer": "0", + "id": "55293D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581189, + "min_y": 5200.825205399927, + "max_x": 4706.970192332879, + "max_y": 5200.825205399927 + }, + "value": null, + "layer": "0", + "id": "55293E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.71509758118, + "min_y": 5204.227564508437, + "max_x": 4706.970192332879, + "max_y": 5204.227564508437 + }, + "value": null, + "layer": "0", + "id": "55293F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5207.629923616948, + "max_x": 4706.970192332879, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "0", + "id": "552940" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4662.185451266761, + "min_y": 5156.389081476591, + "max_x": 4685.040693508523, + "max_y": 5158.629791500293 + }, + "value": "HANMO CORPORATION", + "layer": "0", + "id": "552941" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5191.840066486287, + "max_x": 4645.73363714886, + "max_y": 5192.773300944948 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "552943" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5195.24242559477, + "max_x": 4645.73363714886, + "max_y": 5196.175660053431 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "552944" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5198.657876168591, + "max_x": 4645.73363714886, + "max_y": 5199.591110627252 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "552945" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5202.060235277075, + "max_x": 4645.73363714886, + "max_y": 5202.993469735736 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "552946" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473665, + "min_y": 5205.475685850937, + "max_x": 4645.733637148862, + "max_y": 5206.408920309598 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "552947" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5188.450798843156, + "max_x": 4645.73363714886, + "max_y": 5189.384033301817 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "552948" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4662.907793004549, + "min_y": 5188.452201500158, + "max_x": 4671.866843807696, + "max_y": 5189.385435958819 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "552949" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4681.263678098094, + "min_y": 5188.452201500131, + "max_x": 4684.063381474078, + "max_y": 5189.385435958792 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "55294A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4676.533370138635, + "min_y": 5137.540953461114, + "max_x": 4692.832228909014, + "max_y": 5139.3519377689345 + }, + "value": "SARF-#10-UFD-N2", + "layer": "0", + "id": "55294B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4674.300807720533, + "min_y": 5185.158968130861, + "max_x": 4675.980629746124, + "max_y": 5186.092202589522 + }, + "value": "J.W", + "layer": "REV.UPDATE", + "id": "55294C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4686.823250841722, + "min_y": 5188.494596913514, + "max_x": 4689.622954217706, + "max_y": 5189.427831372175 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "55294D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4692.411021353504, + "min_y": 5188.506753274184, + "max_x": 4695.210724729488, + "max_y": 5189.439987732845 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "55294E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4353.214111681323, + "min_y": 5212.035012397361, + "max_x": 4362.385939941045, + "max_y": 5213.733499112124 + }, + "value": "VAPORIZER", + "layer": "PID", + "id": "55294F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4364.654876860166, + "min_y": 5175.140778956008, + "max_x": 4372.669985753808, + "max_y": 5215.289924066625 + }, + "value": null, + "layer": "UTIL", + "id": "552950" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4367.575027940969, + "min_y": 5209.577026232301, + "max_x": 4370.262743181914, + "max_y": 5211.070201366159 + }, + "value": "40A", + "layer": "PID", + "id": "552951" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4390.007811907941, + "min_y": 5175.140778956008, + "max_x": 4407.404525914567, + "max_y": 5189.877271538876 + }, + "value": null, + "layer": "UTIL", + "id": "552952" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4407.404525914567, + "min_y": 5175.140778956008, + "max_x": 4419.192255704423, + "max_y": 5189.877271538876 + }, + "value": null, + "layer": "UTIL", + "id": "552953" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5192.960954694036, + "max_x": 4401.496046021415, + "max_y": 5196.100712357509 + }, + "value": null, + "layer": "0", + "id": "552957" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5190.563389779111, + "max_x": 4401.496046021415, + "max_y": 5191.803002692345 + }, + "value": null, + "layer": "VV-BALL", + "id": "552959" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4399.679480330199, + "min_y": 5189.816802212181, + "max_x": 4401.044182093171, + "max_y": 5194.947155174192 + }, + "value": null, + "layer": "VV-BALL", + "id": "55295C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4396.628893377044, + "min_y": 5196.100712357509, + "max_x": 4413.051812669785, + "max_y": 5203.566588026802 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55295F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4397.223304927829, + "min_y": 5197.502020957276, + "max_x": 4403.266229489806, + "max_y": 5202.169484312191 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "552960" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4404.23022893314, + "min_y": 5184.178815155746, + "max_x": 4406.917944174084, + "max_y": 5185.671990289604 + }, + "value": "25A", + "layer": "PID", + "id": "552964" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5192.960954694038, + "max_x": 4410.453089644867, + "max_y": 5196.100712357512 + }, + "value": null, + "layer": "0", + "id": "552966" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5190.563389779113, + "max_x": 4410.453089644867, + "max_y": 5191.803002692347 + }, + "value": null, + "layer": "VV-BALL", + "id": "552968" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4408.636523953654, + "min_y": 5189.8168022121845, + "max_x": 4410.001225716626, + "max_y": 5194.9471551741935 + }, + "value": null, + "layer": "VV-BALL", + "id": "55296B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4406.168995361348, + "min_y": 5197.502020957279, + "max_x": 4412.211919923325, + "max_y": 5202.169484312193 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55296F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5193.021424020731, + "max_x": 4392.783386001855, + "max_y": 5196.161181684204 + }, + "value": null, + "layer": "VV-BALL", + "id": "552976" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5190.623859105805, + "max_x": 4392.783386001855, + "max_y": 5191.86347201904 + }, + "value": null, + "layer": "VV-BALL", + "id": "552977" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4390.966820310642, + "min_y": 5189.877271538875, + "max_x": 4392.331522073614, + "max_y": 5195.007624500888 + }, + "value": null, + "layer": "VV-BALL", + "id": "55297A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4385.795124406146, + "min_y": 5196.889104561961, + "max_x": 4392.500580416286, + "max_y": 5201.409482991829 + }, + "value": null, + "layer": "PSV", + "id": "55297F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4389.502232940775, + "min_y": 5197.456710711399, + "max_x": 4389.502232940775, + "max_y": 5199.159529159718 + }, + "value": null, + "layer": "PSV", + "id": "55298A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4377.325558465998, + "min_y": 5189.514534160093, + "max_x": 4386.153676911072, + "max_y": 5195.889636948964 + }, + "value": "PSV-10900A", + "layer": "PSV", + "id": "55298D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4377.283319691231, + "min_y": 5187.097768307961, + "max_x": 4387.765409130913, + "max_y": 5188.553614063472 + }, + "value": "SP: 0.97 MPa", + "layer": "PSV", + "id": "55298E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4413.562510872058, + "min_y": 5196.889104561961, + "max_x": 4415.832935469814, + "max_y": 5201.409482991829 + }, + "value": null, + "layer": "PSV", + "id": "552991" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5193.021424020731, + "max_x": 4416.560858347572, + "max_y": 5199.159529159718 + }, + "value": null, + "layer": "PSV", + "id": "552995" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4416.560858347572, + "min_y": 5198.30811993556, + "max_x": 4420.995889759955, + "max_y": 5198.30811993556 + }, + "value": null, + "layer": "UTIL", + "id": "55299F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4419.438249996399, + "min_y": 5191.799653669645, + "max_x": 4428.224948540733, + "max_y": 5198.055650504074 + }, + "value": "PSV-10900B", + "layer": "PSV", + "id": "5529A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4419.41311272374, + "min_y": 5189.235351215435, + "max_x": 4429.021694710115, + "max_y": 5190.691196970946 + }, + "value": "SP: 0.5 MPa", + "layer": "PSV", + "id": "5529A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5190.623859105805, + "max_x": 4415.548134905942, + "max_y": 5191.86347201904 + }, + "value": null, + "layer": "VV-BALL", + "id": "5529A4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4413.731569214728, + "min_y": 5189.877271538875, + "max_x": 4415.0962709776995, + "max_y": 5195.007624500888 + }, + "value": null, + "layer": "VV-BALL", + "id": "5529A7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4379.173421895202, + "min_y": 5196.542202750649, + "max_x": 4386.964996390565, + "max_y": 5197.722744340856 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "5529B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4420.630909201895, + "min_y": 5198.708216305759, + "max_x": 4428.422483697257, + "max_y": 5199.888757895966 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "5529B4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4401.438833550214, + "min_y": 5175.055494460781, + "max_x": 4404.930621144308, + "max_y": 5178.547282054875 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5529B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4401.366138433188, + "min_y": 5174.006564146282, + "max_x": 4407.848838475758, + "max_y": 5180.009620671805 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5529B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4403.184727347261, + "min_y": 5180.009620671805, + "max_x": 4407.848838475758, + "max_y": 5180.009620671805 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5529BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4391.872346894141, + "min_y": 5174.006564146282, + "max_x": 4400.61955086626, + "max_y": 5176.274993765735 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5529C0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4381.375030781792, + "min_y": 5174.006564146282, + "max_x": 4391.872346894141, + "max_y": 5176.274993765734 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5529C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4405.749903828271, + "min_y": 5174.006564146282, + "max_x": 4417.383830199367, + "max_y": 5176.274993765735 + }, + "value": null, + "layer": "UTIL", + "id": "5529C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4417.383830199365, + "min_y": 5174.006564146282, + "max_x": 4428.60759254661, + "max_y": 5176.274993765734 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5529C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4392.335227740863, + "min_y": 5172.145000789977, + "max_x": 4395.022942981807, + "max_y": 5173.638175923835 + }, + "value": "25A", + "layer": "PID", + "id": "5529C7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4399.098182574173, + "min_y": 5170.009720309336, + "max_x": 4410.2969960781065, + "max_y": 5173.638175923835 + }, + "value": "25A", + "layer": "PID", + "id": "5529C8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4414.209533217937, + "min_y": 5172.145000789977, + "max_x": 4416.897248458881, + "max_y": 5173.638175923835 + }, + "value": "25A", + "layer": "PID", + "id": "5529C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4372.669985753808, + "min_y": 5174.414037231823, + "max_x": 4381.375031389192, + "max_y": 5175.726892392361 + }, + "value": null, + "layer": "UTIL", + "id": "5529CA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4419.022698885083, + "min_y": 5172.757286487048, + "max_x": 4431.1174174693315, + "max_y": 5173.877167837441 + }, + "value": "N2-10301-25A-F1A-n", + "layer": "LINENO", + "id": "5529CB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4400.619550866259, + "min_y": 5174.767485172543, + "max_x": 4401.366138433188, + "max_y": 5175.514072739473 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5529D6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4405.003316261343, + "min_y": 5174.767485172543, + "max_x": 4405.749903828272, + "max_y": 5175.514072739473 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5529D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4428.60759254661, + "min_y": 5175.140778956008, + "max_x": 4438.470879628521, + "max_y": 5180.884842148202 + }, + "value": null, + "layer": "UTIL", + "id": "5529D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4441.129354163324, + "min_y": 5175.612884289488, + "max_x": 4456.085571119031, + "max_y": 5183.398003372483 + }, + "value": null, + "layer": "UTIL", + "id": "5529DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5183.043531797522, + "max_x": 4462.25956126588, + "max_y": 5185.361003622639 + }, + "value": null, + "layer": "VV-BALL", + "id": "5529DB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4461.299236196345, + "min_y": 5183.6442025428405, + "max_x": 4462.02068399301, + "max_y": 5184.365650339505 + }, + "value": null, + "layer": "VV-BALL", + "id": "5529DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4458.46527512389, + "min_y": 5180.884842148202, + "max_x": 4544.892762213689, + "max_y": 5182.648849259701 + }, + "value": null, + "layer": "VV-BALL", + "id": "5529E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4438.817512870509, + "min_y": 5175.612884289488, + "max_x": 4442.71114614249, + "max_y": 5182.268599776215 + }, + "value": null, + "layer": "0", + "id": "5529E5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5210.463001884587, + "max_x": 4364.654876860166, + "max_y": 5215.289924066625 + }, + "value": null, + "layer": "0", + "id": "5529E6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4316.863223494261, + "min_y": 5210.509279185927, + "max_x": 4328.863223494261, + "max_y": 5215.509279185927 + }, + "value": "기존설비", + "layer": "0", + "id": "5529EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5165.581334701872, + "max_x": 4621.941881661501, + "max_y": 5404.100513853479 + }, + "value": null, + "layer": "0", + "id": "5529F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5242.728183150135, + "max_x": 4596.605634897696, + "max_y": 5247.555105332172 + }, + "value": null, + "layer": "0", + "id": "5529F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5242.728183150135, + "max_x": 4599.019095988714, + "max_y": 5247.555105332172 + }, + "value": null, + "layer": "0", + "id": "5529F4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4581.688928686088, + "min_y": 5244.305509613854, + "max_x": 4588.740708283154, + "max_y": 5245.984504756013 + }, + "value": "C-10211", + "layer": "0", + "id": "5529F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5234.41361905651, + "max_x": 4596.605634897696, + "max_y": 5239.240541238547 + }, + "value": null, + "layer": "0", + "id": "5529FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5234.41361905651, + "max_x": 4599.019095988714, + "max_y": 5239.240541238547 + }, + "value": null, + "layer": "0", + "id": "5529FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4581.688928686088, + "min_y": 5235.990945520228, + "max_x": 4588.740708283154, + "max_y": 5237.669940662387 + }, + "value": "C-10111", + "layer": "0", + "id": "552A01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5381.894492903041, + "max_x": 4596.605634897696, + "max_y": 5386.721415085077 + }, + "value": null, + "layer": "0", + "id": "552A06" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5381.902555333693, + "max_x": 4599.019095988714, + "max_y": 5386.72947751573 + }, + "value": null, + "layer": "0", + "id": "552A08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5383.661030348825, + "max_x": 4598.6850221486075, + "max_y": 5385.340025490984 + }, + "value": "4F #10 Plant Utility", + "layer": "0", + "id": "552A0E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5543.529512226096, + "min_y": 5137.63704808581, + "max_x": 5568.853362656012, + "max_y": 5141.605453910222 + }, + "value": "SARF-UTILITY-UFD-CHW", + "layer": "0", + "id": "552A0F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5537.277573352795, + "min_y": 5144.232333452508, + "max_x": 5564.873524710049, + "max_y": 5150.761391255515 + }, + "value": "UTILITY FLOW DIAGRAM", + "layer": "0", + "id": "552A10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5353.752479542964, + "min_y": 5204.854641284858, + "max_x": 5369.860037335244, + "max_y": 5281.222569963555 + }, + "value": null, + "layer": "0", + "id": "552A12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5373.175348021248, + "min_y": 5251.952130014199, + "max_x": 5548.47385230661, + "max_y": 5283.126546922177 + }, + "value": null, + "layer": "0", + "id": "552A14" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5279.868743492998, + "min_y": 5211.446289388323, + "max_x": 5360.725482733469, + "max_y": 5289.83900970066 + }, + "value": null, + "layer": "0", + "id": "552A15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5364.040793419474, + "min_y": 5286.441857608181, + "max_x": 5548.47385230661, + "max_y": 5311.033905731008 + }, + "value": null, + "layer": "0", + "id": "552A16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5280.475982396627, + "max_x": 5367.956060376624, + "max_y": 5285.944132563564 + }, + "value": null, + "layer": "0", + "id": "552A17" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5334.162442598004, + "min_y": 5311.033905731008, + "max_x": 5455.890548835716, + "max_y": 5352.335109299598 + }, + "value": null, + "layer": "0", + "id": "552A18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5305.058602591799, + "max_x": 5455.890548835716, + "max_y": 5360.951549036704 + }, + "value": null, + "layer": "0", + "id": "552A1A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5165.901413657422, + "min_y": 5136.020785296789, + "max_x": 5582.945228543926, + "max_y": 5433.022211779237 + }, + "value": null, + "layer": "0", + "id": "552A1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5423.88162497453, + "min_y": 5393.53783946208, + "max_x": 5435.976343558778, + "max_y": 5395.777602162867 + }, + "value": "E-9117", + "layer": "0", + "id": "552A1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5404.140552077887, + "min_y": 5372.312946536154, + "max_x": 5420.266843523552, + "max_y": 5373.8061216700125 + }, + "value": "CHR-9641-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5410.817548652298, + "min_y": 5365.381665362789, + "max_x": 5426.9438400979625, + "max_y": 5366.874840496647 + }, + "value": "CHS-9631-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5410.357424415584, + "min_y": 5402.539078045404, + "max_x": 5417.703872724609, + "max_y": 5402.539078045404 + }, + "value": null, + "layer": "0", + "id": "552A20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5412.707822490061, + "min_y": 5403.335088365954, + "max_x": 5415.395537731005, + "max_y": 5405.574851066741 + }, + "value": "4F", + "layer": "0", + "id": "552A21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5411.502330592408, + "min_y": 5362.659738817959, + "max_x": 5417.703872724609, + "max_y": 5389.475401419132 + }, + "value": null, + "layer": "0", + "id": "552A22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5404.825334017995, + "min_y": 5366.91742424826, + "max_x": 5417.703872724609, + "max_y": 5409.182830747802 + }, + "value": null, + "layer": "0", + "id": "552A23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5438.253673818592, + "min_y": 5371.84528408423, + "max_x": 5455.275870344572, + "max_y": 5373.338459218088 + }, + "value": "CHR-9642-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5444.930670393006, + "min_y": 5364.914002910865, + "max_x": 5461.952866918986, + "max_y": 5366.407178044723 + }, + "value": "CHS-9632-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A27" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5445.615452333115, + "min_y": 5362.659738817959, + "max_x": 5552.297811044529, + "max_y": 5375.615563075789 + }, + "value": null, + "layer": "0", + "id": "552A2A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5438.938455758702, + "min_y": 5366.91742424826, + "max_x": 5552.297811044529, + "max_y": 5389.932737004382 + }, + "value": null, + "layer": "0", + "id": "552A2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5343.398381468259, + "min_y": 5353.306087875949, + "max_x": 5360.420577994239, + "max_y": 5354.799263009807 + }, + "value": "CHS-9630-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5337.715742371781, + "min_y": 5361.549218761728, + "max_x": 5354.737938897761, + "max_y": 5363.042393895586 + }, + "value": "CHR-9640-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "552A2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5352.335109299598, + "max_x": 5456.637136402645, + "max_y": 5358.071023585603 + }, + "value": null, + "layer": "0", + "id": "552A2E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5358.319886107912, + "max_x": 5456.637136402645, + "max_y": 5360.951549036704 + }, + "value": null, + "layer": "0", + "id": "552A2F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5360.951549036704, + "max_x": 5405.571921584924, + "max_y": 5366.419699203641 + }, + "value": null, + "layer": "0", + "id": "552A32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5352.335109299598, + "max_x": 5412.248918159337, + "max_y": 5357.803259466535 + }, + "value": null, + "layer": "0", + "id": "552A34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5358.052121988844, + "max_x": 5412.248918159337, + "max_y": 5359.840824375181 + }, + "value": null, + "layer": "0", + "id": "552A35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5360.951549036704, + "max_x": 5439.685043325631, + "max_y": 5366.419699203641 + }, + "value": null, + "layer": "0", + "id": "552A36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5352.335109299598, + "max_x": 5446.362039900044, + "max_y": 5357.803259466535 + }, + "value": null, + "layer": "0", + "id": "552A38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5358.052121988844, + "max_x": 5446.362039900044, + "max_y": 5359.840824375181 + }, + "value": null, + "layer": "0", + "id": "552A39" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5289.09242213373, + "max_x": 5358.821505774848, + "max_y": 5294.560572300668 + }, + "value": null, + "layer": "0", + "id": "552A3A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5259.13327809562, + "min_y": 5181.290467564987, + "max_x": 5293.653896005142, + "max_y": 5218.072436269258 + }, + "value": null, + "layer": "0", + "id": "552A42" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5263.232157453089, + "min_y": 5195.896515261521, + "max_x": 5286.282049185195, + "max_y": 5198.030764495976 + }, + "value": "CHILLED WATER TANK", + "layer": "0", + "id": "552A43" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5208.65528845439, + "min_y": 5186.129144177704, + "max_x": 5211.227479473442, + "max_y": 5188.057344461889 + }, + "value": null, + "layer": "0", + "id": "552A46" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5193.897022033797, + "min_y": 5186.129144177704, + "max_x": 5195.281732925911, + "max_y": 5188.286082245604 + }, + "value": null, + "layer": "0", + "id": "552A48" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5185.437190101088, + "max_x": 5211.605266834157, + "max_y": 5200.753410884825 + }, + "value": null, + "layer": "0", + "id": "552A49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5193.310375277903, + "max_x": 5211.605266834157, + "max_y": 5200.753410884825 + }, + "value": null, + "layer": "0", + "id": "552A4D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5208.3172767011265, + "min_y": 5191.737825339009, + "max_x": 5210.6419896918, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552A50" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5200.713274337261, + "max_x": 5211.605266834157, + "max_y": 5201.379541027389 + }, + "value": null, + "layer": "0", + "id": "552A5A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5209.128841847305, + "min_y": 5199.924591176927, + "max_x": 5210.858727048783, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552A5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5186.048871086466, + "max_x": 5199.607650026086, + "max_y": 5200.753410884825 + }, + "value": null, + "layer": "0", + "id": "552A66" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5193.897022033797, + "min_y": 5191.737825339009, + "max_x": 5195.281732925911, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552A69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5185.437190101088, + "max_x": 5199.607650026086, + "max_y": 5186.342670610883 + }, + "value": null, + "layer": "0", + "id": "552A6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5200.713274337261, + "max_x": 5199.042527435933, + "max_y": 5201.379541027389 + }, + "value": null, + "layer": "0", + "id": "552A73" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5199.924591176927, + "max_x": 5195.410169878305, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552A74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.484216591532, + "max_x": 5206.52331783601, + "max_y": 5200.753410884825 + }, + "value": null, + "layer": "0", + "id": "552A7F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5185.437190101088, + "max_x": 5207.073556966935, + "max_y": 5189.504043603584 + }, + "value": null, + "layer": "0", + "id": "552A81" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5203.82957364409, + "min_y": 5186.129144177704, + "max_x": 5204.510520386895, + "max_y": 5187.979888421415 + }, + "value": null, + "layer": "0", + "id": "552A86" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5203.915104314287, + "min_y": 5193.453261383313, + "max_x": 5203.995377409484, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552A89" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5200.543634316014, + "min_y": 5186.129144177704, + "max_x": 5200.62390741121, + "max_y": 5186.2094172729 + }, + "value": null, + "layer": "0", + "id": "552A8B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5200.543634316014, + "min_y": 5193.453261383313, + "max_x": 5200.62390741121, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552A8D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5208.65528845439, + "min_y": 5188.205809150408, + "max_x": 5210.6419896918, + "max_y": 5189.553811606366 + }, + "value": null, + "layer": "0", + "id": "552A9E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5206.102546158385, + "min_y": 5186.129144177704, + "max_x": 5206.182819253581, + "max_y": 5186.2094172729 + }, + "value": null, + "layer": "0", + "id": "552AA5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5206.102546158385, + "min_y": 5192.499046829408, + "max_x": 5207.91591122521, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552AA8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5198.3561924719115, + "min_y": 5186.129144177704, + "max_x": 5198.436465567108, + "max_y": 5186.2094172729 + }, + "value": null, + "layer": "0", + "id": "552AC2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5198.3561924719115, + "min_y": 5193.453261383313, + "max_x": 5198.436465567108, + "max_y": 5193.533534478509 + }, + "value": null, + "layer": "0", + "id": "552AC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.593871684834, + "max_x": 5208.343010790124, + "max_y": 5201.529744746113 + }, + "value": null, + "layer": "0", + "id": "552AF3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5205.934372729846, + "min_y": 5200.71327433726, + "max_x": 5210.1960739420665, + "max_y": 5201.379735720469 + }, + "value": null, + "layer": "0", + "id": "552AF4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5204.039085336275, + "min_y": 5200.7132743372595, + "max_x": 5205.697167027667, + "max_y": 5201.379735720469 + }, + "value": null, + "layer": "0", + "id": "552AF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5199.700766816476, + "min_y": 5200.713274337261, + "max_x": 5206.001237016708, + "max_y": 5201.379541027389 + }, + "value": null, + "layer": "0", + "id": "552AF6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5210.433279644245, + "min_y": 5200.7132743372595, + "max_x": 5210.842672429746, + "max_y": 5201.379541027389 + }, + "value": null, + "layer": "0", + "id": "552AF7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5206.977522896047, + "min_y": 5201.339404479792, + "max_x": 5208.960268347393, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552B56" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5204.8739573450175, + "min_y": 5200.777492813418, + "max_x": 5206.808949396134, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552B69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.593871684834, + "max_x": 5202.547293316924, + "max_y": 5201.529744746113 + }, + "value": null, + "layer": "0", + "id": "552B9D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5200.138655256646, + "min_y": 5200.71327433726, + "max_x": 5202.289574136555, + "max_y": 5201.379735720469 + }, + "value": null, + "layer": "0", + "id": "552B9E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5198.243367863173, + "min_y": 5200.7132743372595, + "max_x": 5199.901449554466, + "max_y": 5201.379735720469 + }, + "value": null, + "layer": "0", + "id": "552B9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.713274337261, + "max_x": 5200.205519543509, + "max_y": 5201.356408304401 + }, + "value": null, + "layer": "0", + "id": "552BA0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5203.140468945637, + "min_y": 5201.379541027389, + "max_x": 5204.705794301962, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552BD0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5200.411183708964, + "min_y": 5201.339404479792, + "max_x": 5202.289574136555, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552C10" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5197.922717757947, + "min_y": 5200.777492813418, + "max_x": 5200.242610209052, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552C18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5196.196000935488, + "min_y": 5200.593871684834, + "max_x": 5196.751575843823, + "max_y": 5201.529744746113 + }, + "value": null, + "layer": "0", + "id": "552C47" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5194.3429377835455, + "min_y": 5200.71327433726, + "max_x": 5196.493856663453, + "max_y": 5201.379735720469 + }, + "value": null, + "layer": "0", + "id": "552C48" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5193.696339295867, + "min_y": 5200.7132743372595, + "max_x": 5194.105732081367, + "max_y": 5201.379541027389 + }, + "value": null, + "layer": "0", + "id": "552C49" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5196.4537201158555, + "min_y": 5201.339404479792, + "max_x": 5197.754144258034, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552CA8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5195.578743378215, + "min_y": 5201.379541027389, + "max_x": 5195.602825306774, + "max_y": 5201.403622955948 + }, + "value": null, + "layer": "0", + "id": "552CBF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5196.957318498932, + "max_x": 5210.213131978346, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552CF1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5196.916152893712, + "max_x": 5208.28657769358, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552CF9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5195.310690989794, + "max_x": 5207.644392932047, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552D1C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5194.549125643057, + "max_x": 5210.213131978346, + "max_y": 5196.796772308541 + }, + "value": null, + "layer": "0", + "id": "552D25" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5194.106594561848, + "max_x": 5209.570947216742, + "max_y": 5195.592675880612 + }, + "value": null, + "layer": "0", + "id": "552D41" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5209.236801978419, + "min_y": 5191.828533940602, + "max_x": 5211.605266834157, + "max_y": 5194.388579452631 + }, + "value": null, + "layer": "0", + "id": "552D55" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5196.957318498932, + "max_x": 5203.80874764128, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552D5E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5196.916152893712, + "max_x": 5201.882193356508, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552D62" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5194.549125643057, + "max_x": 5204.450932402781, + "max_y": 5196.796772308541 + }, + "value": null, + "layer": "0", + "id": "552D89" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5194.507960037785, + "max_x": 5201.240015191192, + "max_y": 5198.000868736487 + }, + "value": null, + "layer": "0", + "id": "552D8D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5194.147760167069, + "max_x": 5204.450932402781, + "max_y": 5194.388579452631 + }, + "value": null, + "layer": "0", + "id": "552DB1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5191.808198496318, + "max_x": 5202.317007647352, + "max_y": 5194.388579452631 + }, + "value": null, + "layer": "0", + "id": "552DB5" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5196.957318498932, + "max_x": 5198.677888198676, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552DB9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5196.916152893712, + "max_x": 5196.751333913909, + "max_y": 5199.204965164416 + }, + "value": null, + "layer": "0", + "id": "552DBD" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5194.549125643057, + "max_x": 5198.677888198676, + "max_y": 5196.796772308541 + }, + "value": null, + "layer": "0", + "id": "552DEA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5194.507960037785, + "max_x": 5196.109149152306, + "max_y": 5196.755606703287 + }, + "value": null, + "layer": "0", + "id": "552DEE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5194.147760167069, + "max_x": 5199.320072960144, + "max_y": 5194.388579452631 + }, + "value": null, + "layer": "0", + "id": "552E18" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5193.032630368532, + "max_x": 5196.751333913909, + "max_y": 5194.388579452631 + }, + "value": null, + "layer": "0", + "id": "552E1C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5194.9647930688625, + "min_y": 5181.704835919986, + "max_x": 5213.2943218074615, + "max_y": 5194.670293764843 + }, + "value": null, + "layer": "0", + "id": "552E20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5188.083027535201, + "max_x": 5206.21330409523, + "max_y": 5190.533144684033 + }, + "value": null, + "layer": "0", + "id": "552E34" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5189.334436477159, + "max_x": 5201.923877686906, + "max_y": 5191.58343382974 + }, + "value": null, + "layer": "0", + "id": "552E56" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5199.548820733738, + "min_y": 5189.33443647713, + "max_x": 5201.076437374394, + "max_y": 5189.609347055541 + }, + "value": null, + "layer": "0", + "id": "552E58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5207.111975442512, + "min_y": 5189.204623642286, + "max_x": 5210.204899268952, + "max_y": 5193.310375277903 + }, + "value": null, + "layer": "0", + "id": "552E90" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5205.54605390532, + "min_y": 5186.93187513363, + "max_x": 5210.89500623913, + "max_y": 5192.984699055345 + }, + "value": null, + "layer": "0", + "id": "552E98" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5206.992126462959, + "min_y": 5186.533319215998, + "max_x": 5211.50802481921, + "max_y": 5188.596353377903 + }, + "value": null, + "layer": "0", + "id": "552EA2" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5203.776174816681, + "min_y": 5187.188223916222, + "max_x": 5209.167029436259, + "max_y": 5192.787079385155 + }, + "value": null, + "layer": "0", + "id": "552EB9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5191.688912984293, + "max_x": 5201.923877686906, + "max_y": 5191.829390900884 + }, + "value": null, + "layer": "0", + "id": "552EBA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5193.367919183472, + "min_y": 5189.486566388239, + "max_x": 5194.379231938241, + "max_y": 5193.310375277903 + }, + "value": null, + "layer": "0", + "id": "552EC2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5201.736051321384, + "min_y": 5189.437004031788, + "max_x": 5205.345932412338, + "max_y": 5191.50454764883 + }, + "value": null, + "layer": "0", + "id": "552EE8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5207.1119754424535, + "min_y": 5192.4024882731655, + "max_x": 5208.8029289270635, + "max_y": 5192.984699055345 + }, + "value": null, + "layer": "0", + "id": "552F02" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5209.664056333673, + "min_y": 5192.81780003211, + "max_x": 5209.76453159272, + "max_y": 5192.892035217222 + }, + "value": null, + "layer": "0", + "id": "552F0A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5208.600409885032, + "min_y": 5192.747893424516, + "max_x": 5208.663824733715, + "max_y": 5192.845594861997 + }, + "value": null, + "layer": "0", + "id": "552F23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5205.225522769568, + "min_y": 5186.444216080312, + "max_x": 5208.547936662213, + "max_y": 5189.520798702003 + }, + "value": null, + "layer": "0", + "id": "552F5C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5204.590385985635, + "min_y": 5186.378626635662, + "max_x": 5207.50010664145, + "max_y": 5190.028106177494 + }, + "value": null, + "layer": "0", + "id": "552F61" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5207.672669834952, + "min_y": 5187.630944975147, + "max_x": 5207.759400908646, + "max_y": 5187.717676048841 + }, + "value": null, + "layer": "0", + "id": "55300D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5208.404435031951, + "min_y": 5186.369963467267, + "max_x": 5211.605266834157, + "max_y": 5191.231382363255 + }, + "value": null, + "layer": "0", + "id": "55301F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5186.728706469836, + "max_x": 5209.102810960153, + "max_y": 5189.002921290898 + }, + "value": null, + "layer": "0", + "id": "55305B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5208.512976703517, + "min_y": 5188.421742032912, + "max_x": 5209.536285674249, + "max_y": 5189.36516983271 + }, + "value": null, + "layer": "0", + "id": "5531CA" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5208.624794829379, + "min_y": 5189.363396001269, + "max_x": 5209.280638452109, + "max_y": 5189.41665522002 + }, + "value": "\\f@ᄆᄐᄌᄇ|b0|i0|c129|p50;LP", + "layer": "0", + "id": "55325E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5208.721513757972, + "min_y": 5189.513675058769, + "max_x": 5208.9944422816125, + "max_y": 5190.003340939507 + }, + "value": null, + "layer": "0", + "id": "5532E0" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5208.759348117162, + "min_y": 5189.204623642286, + "max_x": 5209.010913493199, + "max_y": 5190.127764237083 + }, + "value": null, + "layer": "0", + "id": "5532E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.537999565381, + "max_x": 5199.756778983147, + "max_y": 5191.570108803434 + }, + "value": null, + "layer": "0", + "id": "55330A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5201.963985399586, + "min_y": 5188.082447224256, + "max_x": 5205.659970118357, + "max_y": 5189.974443941481 + }, + "value": null, + "layer": "0", + "id": "553317" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5203.885977512815, + "min_y": 5187.502835340374, + "max_x": 5204.294944894146, + "max_y": 5187.583108435579 + }, + "value": null, + "layer": "0", + "id": "55332C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5201.860474618893, + "min_y": 5186.85671719711, + "max_x": 5206.388755990519, + "max_y": 5190.206971455541 + }, + "value": null, + "layer": "0", + "id": "553330" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5204.625768977426, + "min_y": 5189.603701218216, + "max_x": 5204.948374648391, + "max_y": 5189.756880861105 + }, + "value": "533269", + "layer": "0", + "id": "55341A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5201.291495933987, + "min_y": 5186.982770631173, + "max_x": 5201.785193644879, + "max_y": 5189.3314564489165 + }, + "value": null, + "layer": "0", + "id": "553607" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5201.428605366768, + "min_y": 5189.331456448949, + "max_x": 5203.156885106235, + "max_y": 5190.601376814956 + }, + "value": null, + "layer": "0", + "id": "553C6C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5201.8354559487725, + "min_y": 5189.89002318078, + "max_x": 5202.174476431863, + "max_y": 5190.2290436638705 + }, + "value": null, + "layer": "0", + "id": "553C9F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5236.490238262633, + "min_y": 5187.119148006769, + "max_x": 5240.5840084985975, + "max_y": 5191.212918242733 + }, + "value": null, + "layer": "0", + "id": "553D3B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5236.490238262615, + "min_y": 5187.393378613907, + "max_x": 5239.56056593964, + "max_y": 5190.938687635545 + }, + "value": null, + "layer": "0", + "id": "553D3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5216.163848457001, + "min_y": 5188.395238335933, + "max_x": 5227.657460944385, + "max_y": 5193.029614309343 + }, + "value": null, + "layer": "0", + "id": "553D3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5227.657460944385, + "min_y": 5188.3952383359, + "max_x": 5233.776813345052, + "max_y": 5190.874870114534 + }, + "value": null, + "layer": "0", + "id": "553D3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5233.776813345052, + "min_y": 5188.3952383359, + "max_x": 5236.490238262615, + "max_y": 5189.939304460523 + }, + "value": null, + "layer": "0", + "id": "553D3F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5240.584008498675, + "min_y": 5188.328360790332, + "max_x": 5245.597261774998, + "max_y": 5189.939304460523 + }, + "value": null, + "layer": "0", + "id": "553D40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5245.597261774998, + "min_y": 5188.3952383359, + "max_x": 5248.420856400382, + "max_y": 5190.874870114534 + }, + "value": null, + "layer": "0", + "id": "553D41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5248.420856400382, + "min_y": 5188.419445557821, + "max_x": 5259.13327809562, + "max_y": 5190.874870114534 + }, + "value": null, + "layer": "0", + "id": "553D42" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5211.605266834157, + "min_y": 5188.395238335933, + "max_x": 5214.832357309493, + "max_y": 5189.936827913634 + }, + "value": null, + "layer": "0", + "id": "553D43" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5189.436655187785, + "min_y": 5188.419445557821, + "max_x": 5192.931257051019, + "max_y": 5190.874870114534 + }, + "value": null, + "layer": "0", + "id": "553D46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5184.27423308043, + "min_y": 5188.419445557821, + "max_x": 5188.929509631005, + "max_y": 5238.916550711468 + }, + "value": null, + "layer": "0", + "id": "553D47" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5184.27423308043, + "min_y": 5222.998255010359, + "max_x": 5273.566640938727, + "max_y": 5238.916550711468 + }, + "value": null, + "layer": "0", + "id": "553D57" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5250.644383760364, + "min_y": 5214.764313219624, + "max_x": 5264.289414856857, + "max_y": 5221.932051225588 + }, + "value": null, + "layer": "0", + "id": "553D5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5251.345696600343, + "min_y": 5219.977400692503, + "max_x": 5260.190249494647, + "max_y": 5224.260533558926 + }, + "value": "급수 25A", + "layer": "0", + "id": "553D5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5263.402471954594, + "min_y": 5212.908595754709, + "max_x": 5266.2072989971575, + "max_y": 5214.466833000577 + }, + "value": "25A", + "layer": "0", + "id": "553D5F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5271.857803948939, + "min_y": 5211.446289388323, + "max_x": 5274.313228505651, + "max_y": 5221.340599667357 + }, + "value": null, + "layer": "0", + "id": "553D63" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5222.502612821378, + "min_y": 5191.530211748731, + "max_x": 5225.645875729961, + "max_y": 5196.172512127386 + }, + "value": null, + "layer": "0", + "id": "553D6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5223.100050800741, + "min_y": 5194.123188254455, + "max_x": 5224.670753944576, + "max_y": 5194.995801112142 + }, + "value": "P.G", + "layer": "0", + "id": "553D6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5291.086308501046, + "min_y": 5178.680689592731, + "max_x": 5293.070045114285, + "max_y": 5181.290467564987 + }, + "value": null, + "layer": "0", + "id": "553D6E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5293.070045114327, + "min_y": 5178.182856095769, + "max_x": 5294.794590935282, + "max_y": 5179.178523089726 + }, + "value": null, + "layer": "0", + "id": "553D70" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5247.857339272105, + "min_y": 5188.602515996474, + "max_x": 5248.9843735286595, + "max_y": 5189.729550253029 + }, + "value": null, + "layer": "0", + "id": "553D74" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5227.093943816108, + "min_y": 5188.602515996474, + "max_x": 5228.220978072663, + "max_y": 5189.729550253029 + }, + "value": null, + "layer": "0", + "id": "553D7F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5188.873138059507, + "min_y": 5188.602515996474, + "max_x": 5190.000172316062, + "max_y": 5189.729550253029 + }, + "value": null, + "layer": "0", + "id": "553D8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5271.857803948939, + "min_y": 5221.340599667357, + "max_x": 5274.313228505651, + "max_y": 5222.998255010359 + }, + "value": null, + "layer": "0", + "id": "553D94" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5273.003123810444, + "min_y": 5220.77708253908, + "max_x": 5274.130158066999, + "max_y": 5221.904116795635 + }, + "value": null, + "layer": "0", + "id": "553D95" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5334.160439016873, + "min_y": 5186.168173171376, + "max_x": 5344.662475091221, + "max_y": 5187.661348305234 + }, + "value": null, + "layer": "0", + "id": "553D9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5349.936369746355, + "min_y": 5160.036286845169, + "max_x": 5363.3749459510755, + "max_y": 5162.276049545956 + }, + "value": "P-6601B", + "layer": "0", + "id": "553D9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5293.653896005142, + "min_y": 5186.168173171376, + "max_x": 5299.760608502307, + "max_y": 5188.623597728089 + }, + "value": null, + "layer": "0", + "id": "553DA1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5297.788298553337, + "min_y": 5186.351243610027, + "max_x": 5298.915332809892, + "max_y": 5187.478277866582 + }, + "value": null, + "layer": "0", + "id": "553DA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5298.351815681614, + "min_y": 5186.168173171376, + "max_x": 5325.507001811011, + "max_y": 5188.623597728089 + }, + "value": null, + "layer": "0", + "id": "553DA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5334.680477980761, + "min_y": 5182.937706951248, + "max_x": 5337.135902537472, + "max_y": 5186.914760738305 + }, + "value": null, + "layer": "0", + "id": "553DAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5179.415931722421, + "max_x": 5337.135902537472, + "max_y": 5182.43056139447 + }, + "value": null, + "layer": "0", + "id": "553DAD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5335.825797842266, + "min_y": 5182.374189822971, + "max_x": 5336.952832098821, + "max_y": 5183.501224079526 + }, + "value": null, + "layer": "0", + "id": "553DAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5335.826134040829, + "min_y": 5179.415931722419, + "max_x": 5336.952495900259, + "max_y": 5179.415931722421 + }, + "value": null, + "layer": "0", + "id": "553DBA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5340.900533822776, + "min_y": 5183.15281946986, + "max_x": 5348.424416359665, + "max_y": 5190.676702006749 + }, + "value": null, + "layer": "0", + "id": "553DBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5340.291131107422, + "min_y": 5180.227735101835, + "max_x": 5349.033819075019, + "max_y": 5183.924235905823 + }, + "value": null, + "layer": "0", + "id": "553DBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5346.944790435975, + "min_y": 5180.227735101835, + "max_x": 5349.033819075019, + "max_y": 5183.924235905823 + }, + "value": null, + "layer": "0", + "id": "553DBE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5343.827201489641, + "min_y": 5186.079487136725, + "max_x": 5345.4977486928, + "max_y": 5187.750034339884 + }, + "value": null, + "layer": "0", + "id": "553DC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5186.914760738305, + "max_x": 5349.171003926596, + "max_y": 5194.000500745262 + }, + "value": null, + "layer": "0", + "id": "553DC1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5331.124316244693, + "min_y": 5184.90867563927, + "max_x": 5334.160439016873, + "max_y": 5187.661348305234 + }, + "value": null, + "layer": "0", + "id": "553DC6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5328.822312497017, + "min_y": 5186.168173171376, + "max_x": 5331.124316244693, + "max_y": 5187.661348305234 + }, + "value": null, + "layer": "0", + "id": "553DC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5361.92211391477, + "min_y": 5202.708780990363, + "max_x": 5364.377538471484, + "max_y": 5206.720691789737 + }, + "value": null, + "layer": "0", + "id": "553DD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5361.92211391477, + "min_y": 5206.720691789737, + "max_x": 5364.377538471484, + "max_y": 5212.584296974302 + }, + "value": null, + "layer": "0", + "id": "553DD4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5363.0674337762775, + "min_y": 5206.15717466146, + "max_x": 5364.194468032832, + "max_y": 5207.284208918015 + }, + "value": null, + "layer": "0", + "id": "553DD5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5362.697716445893, + "min_y": 5212.584296974302, + "max_x": 5364.564185363217, + "max_y": 5215.131450646439 + }, + "value": null, + "layer": "0", + "id": "553DDE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5360.831247528571, + "min_y": 5215.131450646439, + "max_x": 5366.430654280539, + "max_y": 5220.730857398406 + }, + "value": null, + "layer": "0", + "id": "553DE0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5362.582285389741, + "min_y": 5217.138694199589, + "max_x": 5364.37409555037, + "max_y": 5218.631869333447 + }, + "value": "PG", + "layer": "0", + "id": "553DE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5353.752479543076, + "min_y": 5209.734734486593, + "max_x": 5360.100508044508, + "max_y": 5212.190159043305 + }, + "value": null, + "layer": "0", + "id": "553DE4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5358.128198095538, + "min_y": 5209.917804925243, + "max_x": 5359.255232352093, + "max_y": 5211.044839181798 + }, + "value": null, + "layer": "0", + "id": "553DE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5358.691715223816, + "min_y": 5209.734734486593, + "max_x": 5363.630950904555, + "max_y": 5212.190159043305 + }, + "value": null, + "layer": "0", + "id": "553DEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5346.715579370012, + "min_y": 5196.81808638665, + "max_x": 5349.171003926725, + "max_y": 5201.087834447043 + }, + "value": null, + "layer": "0", + "id": "553DEF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5346.715579370012, + "min_y": 5201.087834447043, + "max_x": 5349.171003926725, + "max_y": 5204.854641284858 + }, + "value": null, + "layer": "0", + "id": "553DF2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5347.860899231519, + "min_y": 5200.5243173187655, + "max_x": 5348.987933488074, + "max_y": 5201.65135157532 + }, + "value": null, + "layer": "0", + "id": "553DF3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5360.788629674876, + "min_y": 5208.532103531244, + "max_x": 5366.473272134069, + "max_y": 5214.216745990437 + }, + "value": null, + "layer": "0", + "id": "553E03" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5194.000500745262, + "max_x": 5348.646610442356, + "max_y": 5195.828568467335 + }, + "value": null, + "layer": "0", + "id": "553E09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5325.507001811011, + "min_y": 5186.168173171376, + "max_x": 5328.573449974708, + "max_y": 5188.623597728089 + }, + "value": null, + "layer": "0", + "id": "553E0E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5326.601140025738, + "min_y": 5186.351243610027, + "max_x": 5327.7281742822925, + "max_y": 5187.478277866582 + }, + "value": null, + "layer": "0", + "id": "553E10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5327.164657154015, + "min_y": 5186.168173171376, + "max_x": 5328.822312497017, + "max_y": 5188.623597728089 + }, + "value": null, + "layer": "0", + "id": "553E14" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5344.816565383511, + "min_y": 5171.047873067851, + "max_x": 5355.31860145786, + "max_y": 5172.54104820171 + }, + "value": null, + "layer": "0", + "id": "553E19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5345.3366043474, + "min_y": 5167.817406847723, + "max_x": 5347.79202890411, + "max_y": 5171.79446063478 + }, + "value": null, + "layer": "0", + "id": "553E1B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5164.295631618895, + "max_x": 5347.79202890411, + "max_y": 5167.310261290944 + }, + "value": null, + "layer": "0", + "id": "553E1C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5346.481924208905, + "min_y": 5167.253889719445, + "max_x": 5347.60895846546, + "max_y": 5168.380923976 + }, + "value": null, + "layer": "0", + "id": "553E1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5346.482260407467, + "min_y": 5164.295631618895, + "max_x": 5347.608622266898, + "max_y": 5164.295631618895 + }, + "value": null, + "layer": "0", + "id": "553E29" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5351.556660189415, + "min_y": 5168.032519366336, + "max_x": 5359.080542726304, + "max_y": 5175.5564019032245 + }, + "value": null, + "layer": "0", + "id": "553E2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5350.947257474061, + "min_y": 5165.107434998311, + "max_x": 5359.689945441658, + "max_y": 5168.803935802297 + }, + "value": null, + "layer": "0", + "id": "553E2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5357.600916802613, + "min_y": 5165.107434998311, + "max_x": 5359.689945441658, + "max_y": 5168.803935802297 + }, + "value": null, + "layer": "0", + "id": "553E2D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5354.48332785628, + "min_y": 5170.959187033201, + "max_x": 5356.153875059439, + "max_y": 5172.62973423636 + }, + "value": null, + "layer": "0", + "id": "553E2F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5171.79446063478, + "max_x": 5359.827130293234, + "max_y": 5178.880200641739 + }, + "value": null, + "layer": "0", + "id": "553E30" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5341.780442611333, + "min_y": 5169.788375535746, + "max_x": 5344.816565383511, + "max_y": 5172.54104820171 + }, + "value": null, + "layer": "0", + "id": "553E35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5339.478438863657, + "min_y": 5171.047873067851, + "max_x": 5341.780442611333, + "max_y": 5172.54104820171 + }, + "value": null, + "layer": "0", + "id": "553E37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5322.20851822976, + "min_y": 5171.047873067851, + "max_x": 5339.229576341348, + "max_y": 5173.503297624565 + }, + "value": null, + "layer": "0", + "id": "553E3E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5337.257266392377, + "min_y": 5171.230943506503, + "max_x": 5338.3843006489315, + "max_y": 5172.3579777630575 + }, + "value": null, + "layer": "0", + "id": "553E40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5337.820783520654, + "min_y": 5171.047873067851, + "max_x": 5339.478438863657, + "max_y": 5173.503297624565 + }, + "value": null, + "layer": "0", + "id": "553E44" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5322.20851822976, + "min_y": 5171.79446063478, + "max_x": 5322.20851822976, + "max_y": 5186.914760738305 + }, + "value": null, + "layer": "0", + "id": "553E49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5348.42441635979, + "min_y": 5187.625189686523, + "max_x": 5359.080542726434, + "max_y": 5204.854641284858 + }, + "value": null, + "layer": "0", + "id": "553E4B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5357.371705736652, + "min_y": 5181.697786283126, + "max_x": 5359.827130293364, + "max_y": 5185.967534343518 + }, + "value": null, + "layer": "0", + "id": "553E4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5357.371705736652, + "min_y": 5185.967534343518, + "max_x": 5359.827130293364, + "max_y": 5187.625189686523 + }, + "value": null, + "layer": "0", + "id": "553E50" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5358.517025598157, + "min_y": 5185.404017215241, + "max_x": 5359.6440598547115, + "max_y": 5186.531051471796 + }, + "value": null, + "layer": "0", + "id": "553E51" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5178.880200641739, + "max_x": 5359.302736808995, + "max_y": 5180.708268363809 + }, + "value": null, + "layer": "0", + "id": "553E5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5263.524738652566, + "min_y": 5201.084661708042, + "max_x": 5278.307172477759, + "max_y": 5203.324424408829 + }, + "value": "CHT-6601", + "layer": "0", + "id": "553E62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5196.619037513784, + "min_y": 5181.263618011592, + "max_x": 5210.057613718504, + "max_y": 5183.503380712379 + }, + "value": "CH-6601", + "layer": "0", + "id": "553E63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5338.727120067116, + "min_y": 5176.702232670598, + "max_x": 5352.165696271836, + "max_y": 5178.941995371385 + }, + "value": "P-6601A", + "layer": "0", + "id": "553E64" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5383.590750983902, + "min_y": 5387.217942747003, + "max_x": 5393.705265186798, + "max_y": 5411.440289419929 + }, + "value": null, + "layer": "0", + "id": "553E65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5389.768503233825, + "min_y": 5393.53783946208, + "max_x": 5401.863221818074, + "max_y": 5395.777602162867 + }, + "value": "E-9217", + "layer": "0", + "id": "553E66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5370.027430337179, + "min_y": 5372.312946536154, + "max_x": 5386.153721782844, + "max_y": 5373.8061216700125 + }, + "value": "CHR-9643-32A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553E67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5376.70442691159, + "min_y": 5365.381665362789, + "max_x": 5392.830718357255, + "max_y": 5366.874840496647 + }, + "value": "CHS-9633-32A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553E68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5376.244302674879, + "min_y": 5402.539078045404, + "max_x": 5383.590750983902, + "max_y": 5402.539078045404 + }, + "value": null, + "layer": "0", + "id": "553E69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5378.594700749354, + "min_y": 5403.335088365954, + "max_x": 5381.282415990298, + "max_y": 5405.574851066741 + }, + "value": "4F", + "layer": "0", + "id": "553E6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5377.389208851701, + "min_y": 5362.659738817959, + "max_x": 5383.590750983902, + "max_y": 5389.475401419132 + }, + "value": null, + "layer": "0", + "id": "553E6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5370.712212277289, + "min_y": 5366.91742424826, + "max_x": 5383.590750983902, + "max_y": 5409.182830747802 + }, + "value": null, + "layer": "0", + "id": "553E6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5360.951549036704, + "max_x": 5371.458799844218, + "max_y": 5366.419699203641 + }, + "value": null, + "layer": "0", + "id": "553E6E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5352.335109299598, + "max_x": 5378.13579641863, + "max_y": 5357.803259466535 + }, + "value": null, + "layer": "0", + "id": "553E70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5358.052121988844, + "max_x": 5378.13579641863, + "max_y": 5359.840824375181 + }, + "value": null, + "layer": "0", + "id": "553E71" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5347.124012884838, + "min_y": 5225.815424493198, + "max_x": 5558.181532050703, + "max_y": 5299.431536535903 + }, + "value": null, + "layer": "0", + "id": "553E72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5401.826851523073, + "min_y": 5281.446960972976, + "max_x": 5418.849048049053, + "max_y": 5282.940136106834 + }, + "value": "CHS-6630-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553E73" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5401.799974370663, + "min_y": 5290.063400710082, + "max_x": 5418.822170896643, + "max_y": 5291.55657584394 + }, + "value": "CHR-6640-100A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553E74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5436.222918690457, + "min_y": 5251.952130014199, + "max_x": 5442.424460822658, + "max_y": 5251.952130014199 + }, + "value": null, + "layer": "0", + "id": "553E76" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5429.545922116044, + "min_y": 5232.244700685529, + "max_x": 5442.424460822658, + "max_y": 5274.51010718507 + }, + "value": null, + "layer": "0", + "id": "553E77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5275.00783222969, + "max_x": 5430.292509682973, + "max_y": 5277.825417871077 + }, + "value": null, + "layer": "0", + "id": "553E7B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5274.51010718507, + "max_x": 5430.292509682973, + "max_y": 5274.75896970738 + }, + "value": null, + "layer": "0", + "id": "553E7D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5429.238843047545, + "min_y": 5275.860683459575, + "max_x": 5429.853001184542, + "max_y": 5276.474841596572 + }, + "value": null, + "layer": "0", + "id": "553E80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5283.624271966794, + "max_x": 5436.969506257387, + "max_y": 5286.441857608181 + }, + "value": null, + "layer": "0", + "id": "553E82" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5283.126546922176, + "max_x": 5436.969506257387, + "max_y": 5283.375409444485 + }, + "value": null, + "layer": "0", + "id": "553E84" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5435.915839621958, + "min_y": 5284.477123196681, + "max_x": 5436.529997758956, + "max_y": 5285.091281333678 + }, + "value": null, + "layer": "0", + "id": "553E87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5546.765015316825, + "min_y": 5283.126546922177, + "max_x": 5549.22043987354, + "max_y": 5286.192995085873 + }, + "value": null, + "layer": "0", + "id": "553E8B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5547.910335178332, + "min_y": 5284.220685136902, + "max_x": 5549.037369434887, + "max_y": 5285.347719393457 + }, + "value": null, + "layer": "0", + "id": "553E8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5546.765015316825, + "min_y": 5284.784202265179, + "max_x": 5549.22043987354, + "max_y": 5286.441857608182 + }, + "value": null, + "layer": "0", + "id": "553E91" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5466.086421367614, + "min_y": 5251.952130014199, + "max_x": 5472.287963499815, + "max_y": 5251.952130014199 + }, + "value": null, + "layer": "0", + "id": "553E97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5459.4094247932, + "min_y": 5232.244700685529, + "max_x": 5472.287963499815, + "max_y": 5274.51010718507 + }, + "value": null, + "layer": "0", + "id": "553E98" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5275.00783222969, + "max_x": 5460.15601236013, + "max_y": 5277.825417871077 + }, + "value": null, + "layer": "0", + "id": "553E9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5274.51010718507, + "max_x": 5460.15601236013, + "max_y": 5274.75896970738 + }, + "value": null, + "layer": "0", + "id": "553E9E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5459.102345724701, + "min_y": 5275.860683459575, + "max_x": 5459.716503861699, + "max_y": 5276.474841596572 + }, + "value": null, + "layer": "0", + "id": "553EA1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5283.624271966794, + "max_x": 5466.833008934544, + "max_y": 5286.441857608181 + }, + "value": null, + "layer": "0", + "id": "553EA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5283.126546922176, + "max_x": 5466.833008934544, + "max_y": 5283.375409444485 + }, + "value": null, + "layer": "0", + "id": "553EA5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5465.779342299115, + "min_y": 5284.477123196681, + "max_x": 5466.393500436113, + "max_y": 5285.091281333678 + }, + "value": null, + "layer": "0", + "id": "553EA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5495.949924044771, + "min_y": 5251.952130014199, + "max_x": 5502.151466176973, + "max_y": 5251.952130014199 + }, + "value": null, + "layer": "0", + "id": "553EAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5489.272927470359, + "min_y": 5232.244700685529, + "max_x": 5502.151466176973, + "max_y": 5274.51010718507 + }, + "value": null, + "layer": "0", + "id": "553EAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5275.00783222969, + "max_x": 5490.019515037287, + "max_y": 5277.825417871077 + }, + "value": null, + "layer": "0", + "id": "553EB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5274.51010718507, + "max_x": 5490.019515037287, + "max_y": 5274.75896970738 + }, + "value": null, + "layer": "0", + "id": "553EB2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5488.96584840186, + "min_y": 5275.860683459575, + "max_x": 5489.580006538858, + "max_y": 5276.474841596572 + }, + "value": null, + "layer": "0", + "id": "553EB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5283.624271966794, + "max_x": 5496.696511611701, + "max_y": 5286.441857608181 + }, + "value": null, + "layer": "0", + "id": "553EB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5283.126546922176, + "max_x": 5496.696511611701, + "max_y": 5283.375409444485 + }, + "value": null, + "layer": "0", + "id": "553EB9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5495.6428449762725, + "min_y": 5284.477123196681, + "max_x": 5496.25700311327, + "max_y": 5285.091281333678 + }, + "value": null, + "layer": "0", + "id": "553EBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5525.813426721928, + "min_y": 5251.952130014199, + "max_x": 5532.01496885413, + "max_y": 5251.952130014199 + }, + "value": null, + "layer": "0", + "id": "553EBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.136430147517, + "min_y": 5232.244700685529, + "max_x": 5532.01496885413, + "max_y": 5274.51010718507 + }, + "value": null, + "layer": "0", + "id": "553EC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5275.00783222969, + "max_x": 5519.883017714445, + "max_y": 5277.825417871077 + }, + "value": null, + "layer": "0", + "id": "553EC4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5274.51010718507, + "max_x": 5519.883017714445, + "max_y": 5274.75896970738 + }, + "value": null, + "layer": "0", + "id": "553EC6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5518.829351079018, + "min_y": 5275.860683459575, + "max_x": 5519.443509216016, + "max_y": 5276.474841596572 + }, + "value": null, + "layer": "0", + "id": "553EC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5283.624271966794, + "max_x": 5526.560014288858, + "max_y": 5286.441857608181 + }, + "value": null, + "layer": "0", + "id": "553ECB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5283.126546922176, + "max_x": 5526.560014288858, + "max_y": 5283.375409444485 + }, + "value": null, + "layer": "0", + "id": "553ECD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5525.50634765343, + "min_y": 5284.477123196681, + "max_x": 5526.120505790427, + "max_y": 5285.091281333678 + }, + "value": null, + "layer": "0", + "id": "553ED0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5428.861140175934, + "min_y": 5244.58186492221, + "max_x": 5444.987431621599, + "max_y": 5246.075040056068 + }, + "value": "CHS-6631-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5435.538136750347, + "min_y": 5256.261518617248, + "max_x": 5451.664428196012, + "max_y": 5257.754693751106 + }, + "value": "CHR-6641-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5458.724642853092, + "min_y": 5244.58186492221, + "max_x": 5474.850934298756, + "max_y": 5246.075040056068 + }, + "value": "CHS-6632-25A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5465.401639427504, + "min_y": 5256.261518617248, + "max_x": 5481.527930873169, + "max_y": 5257.754693751106 + }, + "value": "CHR-6642-25A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5488.58814553025, + "min_y": 5244.58186492221, + "max_x": 5504.714436975914, + "max_y": 5246.075040056068 + }, + "value": "CHS-6633-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5495.265142104661, + "min_y": 5256.261518617248, + "max_x": 5511.391433550326, + "max_y": 5257.754693751106 + }, + "value": "CHR-6643-50A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5518.451648207406, + "min_y": 5244.58186492221, + "max_x": 5534.577939653071, + "max_y": 5246.075040056068 + }, + "value": "CHS-6634-25A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5525.12864478182, + "min_y": 5256.261518617248, + "max_x": 5541.254936227485, + "max_y": 5257.754693751106 + }, + "value": "CHR-6644-25A-F-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553ED9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5448.60221307258, + "min_y": 5236.307138728477, + "max_x": 5460.696931656828, + "max_y": 5238.546901429264 + }, + "value": "E-6117", + "layer": "0", + "id": "553EDA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5478.465715749737, + "min_y": 5236.307138728477, + "max_x": 5491.904291954457, + "max_y": 5238.546901429264 + }, + "value": "E-6117A", + "layer": "0", + "id": "553EDB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5508.329218426895, + "min_y": 5236.307138728477, + "max_x": 5520.423937011144, + "max_y": 5238.546901429264 + }, + "value": "E-6217", + "layer": "0", + "id": "553EDC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5538.192721104053, + "min_y": 5236.307138728477, + "max_x": 5551.631297308773, + "max_y": 5238.546901429264 + }, + "value": "E-6217A", + "layer": "0", + "id": "553EDD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5362.623084142546, + "min_y": 5267.680836847011, + "max_x": 5394.875667033876, + "max_y": 5272.1603622485845 + }, + "value": "6th PLANT", + "layer": "0", + "id": "553EDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5302.687343763535, + "min_y": 5405.140012116797, + "max_x": 5334.939926654865, + "max_y": 5409.619537518371 + }, + "value": "9th PLANT", + "layer": "0", + "id": "553EE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5136.020785296789, + "max_x": 5582.945228543926, + "max_y": 5184.264113696894 + }, + "value": null, + "layer": "TITLE", + "id": "553EE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5174.471862832472, + "max_x": 5582.945228543926, + "max_y": 5174.471862832472 + }, + "value": null, + "layer": "TITLE", + "id": "553EE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5153.102248000193, + "max_x": 5582.945228543926, + "max_y": 5153.102248000193 + }, + "value": null, + "layer": "TITLE", + "id": "553EE3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5136.020785296789, + "max_x": 5582.945228543926, + "max_y": 5142.417440584062 + }, + "value": null, + "layer": "TITLE", + "id": "553EE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5139.215879039879, + "max_x": 5542.081661198198, + "max_y": 5139.215879039879 + }, + "value": null, + "layer": "TITLE", + "id": "553EE9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5532.929123242531, + "min_y": 5137.057630582686, + "max_x": 5535.998406099735, + "max_y": 5141.6421028207515 + }, + "value": "NONE", + "layer": "1", + "id": "553EEA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5521.137770805902, + "min_y": 5137.083634048247, + "max_x": 5526.249092916292, + "max_y": 5141.243257048659 + }, + "value": "JOB NO.", + "layer": "1", + "id": "553EED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5150.871489282997, + "max_x": 5525.879321423619, + "max_y": 5152.088470737852 + }, + "value": "TITLE :", + "layer": "1", + "id": "553EF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5172.241104115276, + "max_x": 5525.879321423619, + "max_y": 5173.4580855701315 + }, + "value": "ONWER :", + "layer": "1", + "id": "553EF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5520.22249192939, + "min_y": 5182.232706727603, + "max_x": 5529.916844840646, + "max_y": 5186.126038142744 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "553EF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5576.92370572043, + "min_y": 5137.417830334262, + "max_x": 5581.893126385041, + "max_y": 5137.417830334262 + }, + "value": null, + "layer": "TITLE", + "id": "553EF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5184.264113696894, + "max_x": 5582.945228543926, + "max_y": 5207.629923617925 + }, + "value": null, + "layer": "TITLE", + "id": "553EFD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5578.783400401437, + "min_y": 5138.226707916594, + "max_x": 5579.947604599321, + "max_y": 5140.167048246401 + }, + "value": "0", + "layer": "0", + "id": "553EFF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5538.280173682082, + "min_y": 5178.069716503075, + "max_x": 5561.797682040344, + "max_y": 5180.682772987327 + }, + "value": "10th PLANT 증설공사", + "layer": "SH1", + "id": "553F01" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5538.624171122723, + "min_y": 5167.793935684509, + "max_x": 5584.0913539486955, + "max_y": 5170.406992168761 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "553F02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5532.733789070693, + "min_y": 5169.206637212251, + "max_x": 5534.126722307369, + "max_y": 5170.593864280164 + }, + "value": null, + "layer": "0-BAS", + "id": "553F0B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5533.580700961558, + "min_y": 5166.720206165759, + "max_x": 5540.505953677325, + "max_y": 5167.829987820085 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "553F19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5161.556296699135, + "max_x": 5529.530265788184, + "max_y": 5162.77327815399 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "553F1B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5548.220098992175, + "min_y": 5156.654849414124, + "max_x": 5559.086004839093, + "max_y": 5159.241969853867 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "553F1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5533.367434991542, + "min_y": 5160.163735651299, + "max_x": 5536.288131300187, + "max_y": 5161.57983083126 + }, + "value": null, + "layer": "0", + "id": "553F1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5533.367434991542, + "min_y": 5160.163735651299, + "max_x": 5533.367434991542, + "max_y": 5161.048795138769 + }, + "value": null, + "layer": "0", + "id": "553F23" + }, + { + "type": "ARC", + "bbox": { + "min_x": 5534.208241504634, + "min_y": 5157.4471183207515, + "max_x": 5538.302140815569, + "max_y": 5158.714685765934 + }, + "value": null, + "layer": "0", + "id": "553F28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5534.995603843629, + "min_y": 5157.498765001489, + "max_x": 5537.514778476576, + "max_y": 5158.6630390852 + }, + "value": null, + "layer": "0", + "id": "553F2B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5160.279176337466, + "min_y": 5158.379123973944, + "max_x": 5186.409741179979, + "max_y": 5160.179123973944 + }, + "value": "\\pi8.51082; .9; CH-6601 \\pi8.61193;\\lCHILLER", + "layer": "0", + "id": "553F2F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5168.638866764259, + "min_y": 5151.833167222649, + "max_x": 5227.026233993729, + "max_y": 5154.381504485322 + }, + "value": ".9; CAPA. : 120 RT", + "layer": "0", + "id": "553F33" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5188.996176392141, + "min_y": 5158.62550409928, + "max_x": 5215.126741234654, + "max_y": 5160.42550409928 + }, + "value": "\\pi7.24251; .9; P-6601A/B \\pi0.76251;\\lCHILLED WATER PUMP", + "layer": "0", + "id": "553F37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792277, + "min_y": 5187.215768965883, + "max_x": 5582.94522854393, + "max_y": 5187.215768965883 + }, + "value": null, + "layer": "0", + "id": "553F41" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5187.215768965924, + "max_x": 5523.228629629485, + "max_y": 5194.020487182864 + }, + "value": null, + "layer": "0", + "id": "553F42" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5194.020487182864, + "max_x": 5523.228629629485, + "max_y": 5200.825205399843 + }, + "value": null, + "layer": "0", + "id": "553F44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5568.141624381857, + "min_y": 5185.029137017409, + "max_x": 5570.77418708266, + "max_y": 5186.126038142744 + }, + "value": "APPD", + "layer": "0", + "id": "553F49" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5562.795110874418, + "min_y": 5185.029137017409, + "max_x": 5565.427673575222, + "max_y": 5186.126038142744 + }, + "value": "CHKD", + "layer": "0", + "id": "553F4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5557.077502312115, + "min_y": 5185.029137017409, + "max_x": 5559.710065012919, + "max_y": 5186.126038142744 + }, + "value": "DRWN", + "layer": "0", + "id": "553F4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5540.934171947579, + "min_y": 5185.029137017409, + "max_x": 5548.173719374788, + "max_y": 5186.126038142744 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "553F4E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5575.192746451932, + "min_y": 5184.976896931174, + "max_x": 5579.141590503137, + "max_y": 5186.073798056509 + }, + "value": "REMARK", + "layer": "0", + "id": "553F50" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5519.826270521057, + "min_y": 5200.825205399843, + "max_x": 5523.228629629535, + "max_y": 5207.629923617344 + }, + "value": null, + "layer": "0", + "id": "553F51" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792266, + "min_y": 5190.618128074394, + "max_x": 5582.94522854393, + "max_y": 5190.618128074394 + }, + "value": null, + "layer": "0", + "id": "553F54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792259, + "min_y": 5194.020487182905, + "max_x": 5582.94522854393, + "max_y": 5194.020487182905 + }, + "value": null, + "layer": "0", + "id": "553F55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792249, + "min_y": 5197.422846291416, + "max_x": 5582.94522854393, + "max_y": 5197.422846291416 + }, + "value": null, + "layer": "0", + "id": "553F56" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792241, + "min_y": 5200.825205399927, + "max_x": 5582.94522854393, + "max_y": 5200.825205399927 + }, + "value": null, + "layer": "0", + "id": "553F57" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792232, + "min_y": 5204.227564508437, + "max_x": 5582.94522854393, + "max_y": 5204.227564508437 + }, + "value": null, + "layer": "0", + "id": "553F58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5207.629923616948, + "max_x": 5582.94522854393, + "max_y": 5207.629923616948 + }, + "value": null, + "layer": "0", + "id": "553F59" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5296.676965769003, + "min_y": 5192.696508957998, + "max_x": 5311.6087171075815, + "max_y": 5200.162384627288 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "553F5A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5298.366329415605, + "min_y": 5194.099499511828, + "max_x": 5302.394945790256, + "max_y": 5198.762757981585 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "553F5B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5305.832205084895, + "min_y": 5194.099499511828, + "max_x": 5309.860821459546, + "max_y": 5198.762757981585 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "553F5E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5304.142841438293, + "min_y": 5192.696508957998, + "max_x": 5311.608717107583, + "max_y": 5200.162384627287 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "553F60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5304.142841438293, + "min_y": 5196.429446792643, + "max_x": 5311.608717107583, + "max_y": 5196.429446792643 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "553F61" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5311.608717107583, + "min_y": 5192.696508957998, + "max_x": 5319.028687077173, + "max_y": 5193.891049065084 + }, + "value": "\\Fmonotxt.shx; .6; HH 21 H 19 L 15.5 LL 15", + "layer": "INSTRUMENT", + "id": "553F62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5293.653896005142, + "min_y": 5196.429446792643, + "max_x": 5296.676965769004, + "max_y": 5196.429446792643 + }, + "value": null, + "layer": "0", + "id": "553F66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5295.058297345287, + "max_x": 5358.074918207918, + "max_y": 5305.058602591799 + }, + "value": null, + "layer": "0", + "id": "553F6A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5473.574308700932, + "min_y": 5344.832495786395, + "max_x": 5571.308901150665, + "max_y": 5418.448607829098 + }, + "value": null, + "layer": "0", + "id": "553F6C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5512.429969410086, + "min_y": 5393.53783946208, + "max_x": 5525.868545614807, + "max_y": 5395.777602162867 + }, + "value": "E-10117", + "layer": "0", + "id": "553F6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5498.90576885114, + "min_y": 5402.539078045404, + "max_x": 5506.252217160163, + "max_y": 5402.539078045404 + }, + "value": null, + "layer": "0", + "id": "553F6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5501.256166925617, + "min_y": 5403.335088365954, + "max_x": 5503.943882166562, + "max_y": 5405.574851066741 + }, + "value": "6F", + "layer": "0", + "id": "553F6F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5547.136452806269, + "min_y": 5387.217942747003, + "max_x": 5557.250967009166, + "max_y": 5411.440289419929 + }, + "value": null, + "layer": "0", + "id": "553F70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5553.314205056192, + "min_y": 5393.53783946208, + "max_x": 5566.752781260912, + "max_y": 5395.777602162867 + }, + "value": "E-10217", + "layer": "0", + "id": "553F71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5539.790004497247, + "min_y": 5402.539078045404, + "max_x": 5547.136452806269, + "max_y": 5402.539078045404 + }, + "value": null, + "layer": "0", + "id": "553F72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5542.140402571724, + "min_y": 5403.335088365954, + "max_x": 5544.828117812668, + "max_y": 5405.574851066741 + }, + "value": "6F", + "layer": "0", + "id": "553F73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5494.653787870971, + "min_y": 5388.670752554802, + "max_x": 5506.252217160163, + "max_y": 5409.141707791553 + }, + "value": null, + "layer": "0", + "id": "553F7F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5501.743539717118, + "min_y": 5389.932737004382, + "max_x": 5506.252217160163, + "max_y": 5389.932737004382 + }, + "value": null, + "layer": "0", + "id": "553F83" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5535.299828328021, + "min_y": 5388.670752554802, + "max_x": 5547.136452806269, + "max_y": 5409.141707791553 + }, + "value": null, + "layer": "0", + "id": "553F84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5540.568371255533, + "min_y": 5389.932737004382, + "max_x": 5547.136452806269, + "max_y": 5389.932737004382 + }, + "value": null, + "layer": "0", + "id": "553F88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5533.293338812496, + "min_y": 5353.85747376301, + "max_x": 5568.23363694477, + "max_y": 5358.336999164583 + }, + "value": "10th PLANT", + "layer": "0", + "id": "553F8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5492.075221136428, + "min_y": 5390.125643176643, + "max_x": 5510.889227823037, + "max_y": 5391.618818310501 + }, + "value": "CHR-10641-65A-F1A-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553F8B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5499.550809817738, + "min_y": 5374.811179502344, + "max_x": 5518.364816504347, + "max_y": 5376.304354636202 + }, + "value": "CHS-10631-65A-F1A-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553F8C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5533.070384872644, + "min_y": 5390.607939220597, + "max_x": 5551.884391559253, + "max_y": 5392.101114354455 + }, + "value": "CHR-10642-50A-F1A-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553F8D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5539.068215334157, + "min_y": 5374.215871985558, + "max_x": 5557.882222020766, + "max_y": 5375.709047119416 + }, + "value": "CHS-10632-50A-F1A-C50", + "layer": "14-D-PIPELINE-LINE", + "id": "553F8E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5246.1016859258, + "min_y": 5249.71471027786, + "max_x": 5258.1016859258, + "max_y": 5254.71471027786 + }, + "value": "기존설비", + "layer": "0", + "id": "553F8F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5364.124312258464, + "min_y": 5256.271522851898, + "max_x": 5376.124312258464, + "max_y": 5261.271522851898 + }, + "value": "기존설비", + "layer": "0", + "id": "553F90" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5304.608628894129, + "min_y": 5393.460216708668, + "max_x": 5316.608628894129, + "max_y": 5398.460216708668 + }, + "value": "기존설비", + "layer": "0", + "id": "553F91" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5294.809434822977, + "max_x": 5358.821505774848, + "max_y": 5295.058297345287 + }, + "value": null, + "layer": "0", + "id": "553F92" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5357.767839139419, + "min_y": 5293.093562933786, + "max_x": 5358.381997276417, + "max_y": 5293.707721070784 + }, + "value": null, + "layer": "0", + "id": "553F97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5286.192995085873, + "max_x": 5367.956060376624, + "max_y": 5286.441857608182 + }, + "value": null, + "layer": "0", + "id": "553F98" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5366.902393741195, + "min_y": 5284.477123196681, + "max_x": 5367.516551878192, + "max_y": 5285.091281333678 + }, + "value": null, + "layer": "0", + "id": "553F9D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5377.082129783203, + "min_y": 5356.336250099652, + "max_x": 5377.6962879202, + "max_y": 5356.950408236649 + }, + "value": null, + "layer": "0", + "id": "553FA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5366.668561725949, + "max_x": 5371.458799844218, + "max_y": 5366.91742424826 + }, + "value": null, + "layer": "0", + "id": "553FA4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5370.40513320879, + "min_y": 5364.952689836758, + "max_x": 5371.019291345788, + "max_y": 5365.566847973755 + }, + "value": null, + "layer": "0", + "id": "553FA9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5411.195251523909, + "min_y": 5356.336250099652, + "max_x": 5411.809409660907, + "max_y": 5356.950408236649 + }, + "value": null, + "layer": "0", + "id": "553FAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5366.668561725949, + "max_x": 5405.571921584924, + "max_y": 5366.91742424826 + }, + "value": null, + "layer": "0", + "id": "553FB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5366.668561725949, + "max_x": 5439.685043325631, + "max_y": 5366.91742424826 + }, + "value": null, + "layer": "0", + "id": "553FB5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5438.631376690203, + "min_y": 5364.952689836758, + "max_x": 5439.245534827201, + "max_y": 5365.566847973755 + }, + "value": null, + "layer": "0", + "id": "553FBA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5445.308373264616, + "min_y": 5356.336250099652, + "max_x": 5445.922531401614, + "max_y": 5356.950408236649 + }, + "value": null, + "layer": "0", + "id": "553FC0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5455.583469767217, + "min_y": 5356.60401421872, + "max_x": 5456.197627904215, + "max_y": 5357.218172355718 + }, + "value": null, + "layer": "0", + "id": "553FC6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5404.518254949497, + "min_y": 5364.952689836758, + "max_x": 5405.132413086494, + "max_y": 5365.566847973755 + }, + "value": null, + "layer": "0", + "id": "553FC8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4611.39399466203, + "min_y": 5156.080810570334, + "max_x": 4614.97761498329, + "max_y": 5159.067160838049 + }, + "value": "1F", + "layer": "0", + "id": "553FCA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5221.618299359433, + "max_x": 4620.337007046696, + "max_y": 5224.604649627148 + }, + "value": "3F", + "layer": "0", + "id": "553FCB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5288.295947479245, + "max_x": 4620.337007046696, + "max_y": 5291.2822977469605 + }, + "value": "4F", + "layer": "0", + "id": "553FCC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5196.189961389517, + "max_x": 4620.337007046696, + "max_y": 5199.176311657232 + }, + "value": "2F", + "layer": "0", + "id": "553FCE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5155.284800249786, + "max_x": 4621.941881661501, + "max_y": 5392.028469767722 + }, + "value": null, + "layer": "0", + "id": "553FD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5393.075287610443, + "max_x": 4620.337007046696, + "max_y": 5396.061637878159 + }, + "value": "5F", + "layer": "0", + "id": "553FD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5226.308833931261, + "max_x": 4596.605634897696, + "max_y": 5231.135756113298 + }, + "value": null, + "layer": "0", + "id": "553FD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5226.308833931261, + "max_x": 4599.019095988714, + "max_y": 5231.135756113298 + }, + "value": null, + "layer": "0", + "id": "553FD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5228.075371377046, + "max_x": 4598.6850221486075, + "max_y": 5229.754366519205 + }, + "value": "3F #10 Plant Utility", + "layer": "0", + "id": "553FDD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5163.167875386799, + "max_x": 4596.605634897696, + "max_y": 5174.794745213811 + }, + "value": null, + "layer": "0", + "id": "553FE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5163.167875386799, + "max_x": 4599.019095988714, + "max_y": 5167.994797568836 + }, + "value": null, + "layer": "0", + "id": "553FE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5164.934412832583, + "max_x": 4598.6850221486075, + "max_y": 5166.613407974742 + }, + "value": "1F #10 Plant Utility", + "layer": "0", + "id": "553FE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5207.100758463575, + "max_x": 4596.605634897696, + "max_y": 5211.927680645612 + }, + "value": null, + "layer": "0", + "id": "553FEB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5207.100758463575, + "max_x": 4599.019095988714, + "max_y": 5211.927680645612 + }, + "value": null, + "layer": "0", + "id": "553FED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5208.867295909359, + "max_x": 4598.6850221486075, + "max_y": 5210.546291051518 + }, + "value": "2F #10 Plant Utility", + "layer": "0", + "id": "553FF4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5401.687054538406, + "max_x": 4596.605634897696, + "max_y": 5406.513976720443 + }, + "value": null, + "layer": "0", + "id": "553FF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5401.687054538406, + "max_x": 4599.019095988714, + "max_y": 5406.513976720443 + }, + "value": null, + "layer": "0", + "id": "553FF8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5403.453591984192, + "max_x": 4598.6850221486075, + "max_y": 5405.132587126351 + }, + "value": "5F #10 Plant Utility", + "layer": "0", + "id": "553FFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4577.642161990465, + "min_y": 5337.408727936752, + "max_x": 4621.406560931782, + "max_y": 5343.480776586172 + }, + "value": null, + "layer": "0", + "id": "554001" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4609.12900120225, + "min_y": 5341.160680242936, + "max_x": 4614.159815498396, + "max_y": 5342.35849317059 + }, + "value": "T-10101", + "layer": "0", + "id": "554003" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4603.685230339837, + "min_y": 5343.480765470657, + "max_x": 4619.684772212671, + "max_y": 5343.480776586172 + }, + "value": null, + "layer": "0", + "id": "554005" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3776.21170158144, + "min_y": 5387.130267023731, + "max_x": 3788.21170158144, + "max_y": 5392.130267023731 + }, + "value": "기존설비", + "layer": "0", + "id": "55400C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4103.059407510197, + "min_y": 5187.611873531029, + "max_x": 4111.12255323303, + "max_y": 5189.105048664887 + }, + "value": "3 kgf/Cm2", + "layer": "PID", + "id": "554016" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4046.818307858115, + "min_y": 5210.868860510507, + "max_x": 4048.9348836103586, + "max_y": 5212.04473592842 + }, + "value": "50A", + "layer": "0", + "id": "554017" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4577.625650124635, + "min_y": 5360.104903088203, + "max_x": 4621.407205499721, + "max_y": 5366.191236124715 + }, + "value": null, + "layer": "0", + "id": "554018" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4609.129645770189, + "min_y": 5363.87113978148, + "max_x": 4614.160460066335, + "max_y": 5365.0689527091345 + }, + "value": "T-10100", + "layer": "0", + "id": "55401A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4603.685874907776, + "min_y": 5366.1912250092, + "max_x": 4619.685416780611, + "max_y": 5366.191236124715 + }, + "value": null, + "layer": "0", + "id": "55401C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4577.200507844594, + "min_y": 5257.299178373379, + "max_x": 4620.972214389523, + "max_y": 5263.375188334 + }, + "value": null, + "layer": "0", + "id": "55401F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4608.69465465999, + "min_y": 5261.055091990765, + "max_x": 4613.725468956136, + "max_y": 5262.252904918419 + }, + "value": "T-10200", + "layer": "0", + "id": "554021" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4603.250883797578, + "min_y": 5263.375177218485, + "max_x": 4619.250425670412, + "max_y": 5263.375188334 + }, + "value": null, + "layer": "0", + "id": "554023" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4577.749570661587, + "min_y": 5293.45933645733, + "max_x": 4621.518237432825, + "max_y": 5299.582822112671 + }, + "value": null, + "layer": "0", + "id": "554026" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4609.240677703293, + "min_y": 5297.262725769435, + "max_x": 4614.271491999439, + "max_y": 5298.460538697089 + }, + "value": "T-10201", + "layer": "0", + "id": "554028" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4603.79690684088, + "min_y": 5299.582810997155, + "max_x": 4619.796448713714, + "max_y": 5299.582822112671 + }, + "value": null, + "layer": "0", + "id": "55402A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4577.649274269881, + "min_y": 5315.34417301652, + "max_x": 4621.394198036851, + "max_y": 5321.490547104351 + }, + "value": null, + "layer": "0", + "id": "55402D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4609.116638307319, + "min_y": 5319.170450761116, + "max_x": 4614.147452603464, + "max_y": 5320.36826368877 + }, + "value": "T-10221", + "layer": "0", + "id": "55402F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4603.672867444905, + "min_y": 5321.490535988836, + "max_x": 4619.67240931774, + "max_y": 5321.490547104351 + }, + "value": null, + "layer": "0", + "id": "554031" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4381.394658979361, + "min_y": 5176.010247110891, + "max_x": 4386.098160651014, + "max_y": 5177.130128461285 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "554038" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4560.594999479635, + "min_y": 5255.61478672706, + "max_x": 4566.74200090149, + "max_y": 5262.809483021956 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55403A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.633196952976, + "min_y": 5260.541053402503, + "max_x": 4574.057324116755, + "max_y": 5262.809483021956 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55403B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.361884755766, + "min_y": 5260.541053402503, + "max_x": 4564.70487583605, + "max_y": 5268.166732896251 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55403C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4575.215276118446, + "min_y": 5260.541053402503, + "max_x": 4578.207205055592, + "max_y": 5268.254696923083 + }, + "value": null, + "layer": "VV-BALL", + "id": "55403E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4573.953949236114, + "min_y": 5260.99291733074, + "max_x": 4575.318650999086, + "max_y": 5262.357619093712 + }, + "value": null, + "layer": "VV-BALL", + "id": "554041" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4559.333672597304, + "min_y": 5260.99291733074, + "max_x": 4560.698374360276, + "max_y": 5262.357619093712 + }, + "value": null, + "layer": "VV-BALL", + "id": "55404A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4567.849028317898, + "min_y": 5267.075458160167, + "max_x": 4578.207205055592, + "max_y": 5269.343887779621 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554050" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.300440769914, + "min_y": 5264.805345495248, + "max_x": 4570.240771379411, + "max_y": 5269.343887779621 + }, + "value": null, + "layer": "VV-BALL", + "id": "554051" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4566.587701435565, + "min_y": 5267.527322088409, + "max_x": 4567.952403198537, + "max_y": 5268.892023851381 + }, + "value": null, + "layer": "VV-BALL", + "id": "554055" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4566.365582355054, + "min_y": 5257.299178373379, + "max_x": 4568.633196952976, + "max_y": 5260.541460913266 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55405D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4563.636463504202, + "min_y": 5262.809075511192, + "max_x": 4571.35745192764, + "max_y": 5264.805345495247 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55405F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4570.240771379411, + "min_y": 5264.352642212725, + "max_x": 4570.693474661934, + "max_y": 5265.258048777769 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554063" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.300440769917, + "min_y": 5264.352642212725, + "max_x": 4564.753144052436, + "max_y": 5264.805345495247 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554065" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3559.167728349989, + "min_y": 5240.558079057468, + "max_x": 3570.366541853923, + "max_y": 5241.724622130794 + }, + "value": "0.65 -> 0.35 MPa", + "layer": "0", + "id": "55406F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4442.71114614249, + "min_y": 5176.210680410809, + "max_x": 4444.670990753924, + "max_y": 5176.210680410809 + }, + "value": null, + "layer": "0", + "id": "55407B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4443.275079445018, + "min_y": 5171.176784517137, + "max_x": 4443.981514381106, + "max_y": 5174.063417592297 + }, + "value": null, + "layer": "0", + "id": "55407D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4443.40085798336, + "min_y": 5172.378572006088, + "max_x": 4443.852309348315, + "max_y": 5172.830023371043 + }, + "value": null, + "layer": "0", + "id": "554080" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4443.243472234502, + "min_y": 5170.82047233324, + "max_x": 4444.011752025751, + "max_y": 5171.340794314437 + }, + "value": null, + "layer": "0", + "id": "554088" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5183.698115927596, + "max_x": 4446.087988213048, + "max_y": 5186.734998969235 + }, + "value": null, + "layer": "0", + "id": "55408B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4445.577677647564, + "min_y": 5186.416995743373, + "max_x": 4446.213684099287, + "max_y": 5187.053002195096 + }, + "value": null, + "layer": "0", + "id": "55408C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4445.260930000859, + "min_y": 5184.2175453796135, + "max_x": 4445.9065054527455, + "max_y": 5184.8631208315 + }, + "value": null, + "layer": "0", + "id": "55408E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5183.398003372483, + "max_x": 4446.087988213048, + "max_y": 5183.398003372483 + }, + "value": null, + "layer": "0", + "id": "554090" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5180.891012116444, + "max_x": 4456.439660830314, + "max_y": 5184.820369931983 + }, + "value": null, + "layer": "0", + "id": "554098" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4449.9871362517915, + "min_y": 5183.655365028078, + "max_x": 4450.632711703678, + "max_y": 5184.300940479965 + }, + "value": null, + "layer": "0", + "id": "554099" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4449.793924889863, + "min_y": 5185.120482487088, + "max_x": 4450.864196391577, + "max_y": 5186.483329643267 + }, + "value": null, + "layer": "0", + "id": "55409A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4447.718466147605, + "min_y": 5188.239003758098, + "max_x": 4452.398466147605, + "max_y": 5191.475978843369 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5540A3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4449.0165633026345, + "min_y": 5183.4648368492635, + "max_x": 4451.641557978807, + "max_y": 5186.089831525436 + }, + "value": null, + "layer": "0", + "id": "5540A4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4447.450011033561, + "min_y": 5186.454384946196, + "max_x": 4459.537794476337, + "max_y": 5199.749297388696 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5540AA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4450.675947491472, + "min_y": 5183.720023031265, + "max_x": 4451.995770184789, + "max_y": 5184.453257860885 + }, + "value": "15A", + "layer": "PID", + "id": "5540AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5180.348639310992, + "max_x": 4458.121237945342, + "max_y": 5183.67104932714 + }, + "value": null, + "layer": "VV-BALL", + "id": "5540AD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4456.249662873808, + "min_y": 5180.558435275086, + "max_x": 4457.593693836178, + "max_y": 5183.130654361068 + }, + "value": null, + "layer": "VV-BALL", + "id": "5540B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4458.46787118733, + "min_y": 5180.348639310992, + "max_x": 4458.46787118733, + "max_y": 5181.401848804481 + }, + "value": null, + "layer": "VV-BALL", + "id": "5540B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4438.470879628521, + "min_y": 5180.306900360392, + "max_x": 4438.817512870509, + "max_y": 5181.360109853882 + }, + "value": null, + "layer": "VV-BALL", + "id": "5540B6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4439.34505697967, + "min_y": 5180.5166963244865, + "max_x": 4439.978674544975, + "max_y": 5181.1503138897915 + }, + "value": null, + "layer": "VV-BALL", + "id": "5540BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4485.102099185756, + "min_y": 5178.82455706829, + "max_x": 4497.196817770005, + "max_y": 5179.944438418684 + }, + "value": "N2-10700-25A-F1A-n", + "layer": "LINENO", + "id": "5540C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4546.536653124669, + "min_y": 5173.882488990353, + "max_x": 4551.240154796322, + "max_y": 5175.002370340746 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "5540C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5172.381299703605, + "max_x": 4599.010353886262, + "max_y": 5174.794760794624 + }, + "value": null, + "layer": "0", + "id": "5540CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5169.967838612587, + "max_x": 4599.010353886262, + "max_y": 5172.381299703605 + }, + "value": null, + "layer": "0", + "id": "5540CD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4576.390269250782, + "min_y": 5171.572028331699, + "max_x": 4595.530813871391, + "max_y": 5173.2510234738575 + }, + "value": "D-10113 VACUUM LINE", + "layer": "0", + "id": "5540CF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4546.536653124669, + "min_y": 5185.860726781216, + "max_x": 4551.240154796322, + "max_y": 5186.980608131609 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "5540D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5181.946076403449, + "max_x": 4596.596892795243, + "max_y": 5186.772998585486 + }, + "value": null, + "layer": "0", + "id": "5540D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5181.946076403449, + "max_x": 4599.010353886262, + "max_y": 5186.772998585486 + }, + "value": null, + "layer": "0", + "id": "5540DC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4576.390269250782, + "min_y": 5183.550266122562, + "max_x": 4595.530813871391, + "max_y": 5185.229261264721 + }, + "value": "D-10213 VACUUM LINE", + "layer": "0", + "id": "5540DE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4550.299408630224, + "min_y": 5163.658060748019, + "max_x": 4562.394127214473, + "max_y": 5164.7779420984125 + }, + "value": "N2-10707-25A-F1A-n", + "layer": "LINENO", + "id": "5540DF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4550.558964929648, + "min_y": 5170.607629044948, + "max_x": 4562.653683513897, + "max_y": 5171.727510395342 + }, + "value": "N2-10705-15A-F1A-n", + "layer": "LINENO", + "id": "5540E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4550.848535935258, + "min_y": 5182.360595384801, + "max_x": 4562.943254519507, + "max_y": 5183.480476735194 + }, + "value": "N2-10706-15A-F1A-n", + "layer": "LINENO", + "id": "5540E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4550.832493971676, + "min_y": 5207.220525836715, + "max_x": 4562.927212555925, + "max_y": 5208.340407187108 + }, + "value": "N2-10708-25A-F1A-n", + "layer": "LINENO", + "id": "5540E3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4551.188646781, + "min_y": 5227.385702434252, + "max_x": 4563.283365365249, + "max_y": 5228.505583784646 + }, + "value": "N2-10709-25A-F1A-n", + "layer": "LINENO", + "id": "5540E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4551.455761387994, + "min_y": 5234.686835025376, + "max_x": 4563.550479972243, + "max_y": 5235.80671637577 + }, + "value": "N2-10701-25A-F1A-n", + "layer": "LINENO", + "id": "5540E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4551.722875994985, + "min_y": 5243.056426044471, + "max_x": 4563.817594579234, + "max_y": 5244.176307394864 + }, + "value": "N2-10702-25A-F1A-n", + "layer": "LINENO", + "id": "5540E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4547.215043618835, + "min_y": 5261.679763683455, + "max_x": 4548.223584591325, + "max_y": 5264.611465698371 + }, + "value": null, + "layer": "0", + "id": "5540E9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4544.994585667319, + "min_y": 5262.824760411684, + "max_x": 4550.659470074627, + "max_y": 5270.21705105751 + }, + "value": null, + "layer": "0", + "id": "5540EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4545.107258202619, + "min_y": 5265.826603695739, + "max_x": 4549.787258202619, + "max_y": 5269.481416085401 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5540F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4581.190294961834, + "min_y": 5261.666311513461, + "max_x": 4582.198835934323, + "max_y": 5264.598013528377 + }, + "value": null, + "layer": "0", + "id": "5540F5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4578.9323700549885, + "min_y": 5262.811308241689, + "max_x": 4584.597254462296, + "max_y": 5270.291880854801 + }, + "value": null, + "layer": "0", + "id": "5540F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4567.496158795717, + "min_y": 5257.299178373379, + "max_x": 4607.356791121469, + "max_y": 5257.299178373379 + }, + "value": null, + "layer": "0", + "id": "5540FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.361884755766, + "min_y": 5261.02962584494, + "max_x": 4553.361884755766, + "max_y": 5262.342481005479 + }, + "value": null, + "layer": "0", + "id": "554104" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4552.675451726872, + "min_y": 5262.815079834268, + "max_x": 4557.378953398525, + "max_y": 5263.934961184661 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "554105" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4585.190324640961, + "min_y": 5259.605146903104, + "max_x": 4597.28504322521, + "max_y": 5260.725028253497 + }, + "value": "N2-10704-15A-F1A-n", + "layer": "LINENO", + "id": "554107" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4555.652562660978, + "min_y": 5256.013847218664, + "max_x": 4561.92702796861, + "max_y": 5258.654527780036 + }, + "value": "NBD-10200", + "layer": "LINENO", + "id": "554108" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4555.825870333712, + "min_y": 5255.608454730561, + "max_x": 4563.01604347406, + "max_y": 5255.608454730561 + }, + "value": null, + "layer": "0", + "id": "55410A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4561.144062296629, + "min_y": 5291.776382647998, + "max_x": 4566.914645172047, + "max_y": 5298.971078942894 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55410C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4569.18225976997, + "min_y": 5296.702649323441, + "max_x": 4574.606386933748, + "max_y": 5298.971078942894 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55410D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.910947572759, + "min_y": 5296.702649323441, + "max_x": 4565.253938653044, + "max_y": 5304.328328817189 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55410E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4575.76433893544, + "min_y": 5296.702649323441, + "max_x": 4578.756267872586, + "max_y": 5304.41629284402 + }, + "value": null, + "layer": "VV-BALL", + "id": "554110" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4574.503012053106, + "min_y": 5297.154513251679, + "max_x": 4575.867713816078, + "max_y": 5298.519215014651 + }, + "value": null, + "layer": "VV-BALL", + "id": "554113" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4559.882735414298, + "min_y": 5297.154513251679, + "max_x": 4561.24743717727, + "max_y": 5298.519215014651 + }, + "value": null, + "layer": "VV-BALL", + "id": "55411C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.398091134891, + "min_y": 5303.237054081105, + "max_x": 4578.756267872586, + "max_y": 5305.505483700558 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554122" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.849503586907, + "min_y": 5300.966941416185, + "max_x": 4570.789834196404, + "max_y": 5305.505483700558 + }, + "value": null, + "layer": "VV-BALL", + "id": "554123" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4567.136764252559, + "min_y": 5303.688918009346, + "max_x": 4568.501466015531, + "max_y": 5305.053619772318 + }, + "value": null, + "layer": "VV-BALL", + "id": "554127" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4566.914645172047, + "min_y": 5293.460774294317, + "max_x": 4569.18225976997, + "max_y": 5296.703056834204 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55412F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.185526321196, + "min_y": 5298.97067143213, + "max_x": 4571.906514744634, + "max_y": 5300.966941416184 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554131" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4570.789834196404, + "min_y": 5300.514238133662, + "max_x": 4571.242537478927, + "max_y": 5301.419644698706 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554135" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.849503586911, + "min_y": 5300.514238133662, + "max_x": 4565.30220686943, + "max_y": 5300.966941416184 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554137" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4581.502713386937, + "min_y": 5297.827907434398, + "max_x": 4582.511254359427, + "max_y": 5300.759609449315 + }, + "value": null, + "layer": "0", + "id": "554140" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4579.427090962365, + "min_y": 5298.972904162628, + "max_x": 4585.091975369673, + "max_y": 5306.475828130406 + }, + "value": null, + "layer": "0", + "id": "554141" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.910947572759, + "min_y": 5297.191221765878, + "max_x": 4553.910947572759, + "max_y": 5298.504076926417 + }, + "value": null, + "layer": "0", + "id": "55414D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4553.224514543864, + "min_y": 5298.976675755206, + "max_x": 4557.928016215516, + "max_y": 5300.0965571055995 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "55414E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4585.739387457953, + "min_y": 5296.060042204098, + "max_x": 4597.834106042202, + "max_y": 5297.179923554491 + }, + "value": "N2-10710-15A-F1A-n", + "layer": "LINENO", + "id": "554150" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4555.611789596232, + "min_y": 5292.175443139602, + "max_x": 4562.476090785602, + "max_y": 5294.8161237009745 + }, + "value": "NBD-10201", + "layer": "LINENO", + "id": "554151" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4555.896551431291, + "min_y": 5291.776870418791, + "max_x": 4563.086724571638, + "max_y": 5291.776870418791 + }, + "value": null, + "layer": "0", + "id": "554153" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.044312356247, + "min_y": 5293.45933645733, + "max_x": 4607.904944681999, + "max_y": 5293.45933645733 + }, + "value": null, + "layer": "0", + "id": "554155" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4561.043765904924, + "min_y": 5313.661219207188, + "max_x": 4566.814348780343, + "max_y": 5320.855915502084 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554157" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4569.081963378265, + "min_y": 5318.58748588263, + "max_x": 4574.506090542043, + "max_y": 5320.855915502084 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554158" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.810651181053, + "min_y": 5318.58748588263, + "max_x": 4565.153642261338, + "max_y": 5326.213165376379 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554159" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4575.664042543734, + "min_y": 5318.58748588263, + "max_x": 4578.65597148088, + "max_y": 5326.30112940321 + }, + "value": null, + "layer": "VV-BALL", + "id": "55415B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4574.402715661402, + "min_y": 5319.039349810869, + "max_x": 4575.767417424374, + "max_y": 5320.404051573841 + }, + "value": null, + "layer": "VV-BALL", + "id": "55415E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4559.782439022593, + "min_y": 5319.039349810869, + "max_x": 4561.147140785565, + "max_y": 5320.404051573841 + }, + "value": null, + "layer": "VV-BALL", + "id": "554167" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.297794743187, + "min_y": 5325.121890640295, + "max_x": 4578.65597148088, + "max_y": 5327.390320259748 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55416D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.749207195202, + "min_y": 5322.851777975376, + "max_x": 4570.689537804699, + "max_y": 5327.390320259748 + }, + "value": null, + "layer": "VV-BALL", + "id": "55416E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4567.036467860853, + "min_y": 5325.573754568537, + "max_x": 4568.401169623825, + "max_y": 5326.938456331509 + }, + "value": null, + "layer": "VV-BALL", + "id": "554172" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4566.814348780343, + "min_y": 5315.345610853507, + "max_x": 4569.081963378265, + "max_y": 5318.587893393395 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55417A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.085229929491, + "min_y": 5320.85550799132, + "max_x": 4571.806218352929, + "max_y": 5322.851777975375 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55417C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4570.689537804699, + "min_y": 5322.399074692853, + "max_x": 4571.142241087222, + "max_y": 5323.304481257896 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554180" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.749207195205, + "min_y": 5322.399074692853, + "max_x": 4565.201910477724, + "max_y": 5322.851777975375 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554182" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4551.423141092411, + "min_y": 5297.800285042643, + "max_x": 4553.810767370651, + "max_y": 5364.464185318286 + }, + "value": null, + "layer": "UTIL", + "id": "55418A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4581.640761773996, + "min_y": 5319.712743993588, + "max_x": 4582.649302746485, + "max_y": 5322.644446008505 + }, + "value": null, + "layer": "0", + "id": "55418C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4579.373440711908, + "min_y": 5320.857740721819, + "max_x": 4585.038325119216, + "max_y": 5328.313199905349 + }, + "value": null, + "layer": "0", + "id": "55418D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4585.639091066248, + "min_y": 5317.966132415416, + "max_x": 4597.733809650496, + "max_y": 5319.086013765809 + }, + "value": "N2-10711-15A-F1A-n", + "layer": "LINENO", + "id": "55419B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4555.617833467553, + "min_y": 5314.060279698793, + "max_x": 4562.375794393896, + "max_y": 5316.700960260165 + }, + "value": "NBD-10221", + "layer": "LINENO", + "id": "55419C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4555.791141140288, + "min_y": 5313.654887210688, + "max_x": 4562.981314280633, + "max_y": 5313.654887210688 + }, + "value": null, + "layer": "0", + "id": "55419E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4567.944015964541, + "min_y": 5311.472948956559, + "max_x": 4607.804648290294, + "max_y": 5315.34417301652 + }, + "value": null, + "layer": "0", + "id": "5541A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4561.036653625506, + "min_y": 5335.725774127419, + "max_x": 4566.807236500925, + "max_y": 5342.920470422316 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4569.074851098847, + "min_y": 5340.652040802862, + "max_x": 4574.498978262625, + "max_y": 5342.920470422316 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.803538901637, + "min_y": 5340.652040802862, + "max_x": 4565.146529981921, + "max_y": 5348.277720296611 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4575.656930264316, + "min_y": 5340.652040802862, + "max_x": 4578.648859201463, + "max_y": 5348.365684323442 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541A6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4574.395603381984, + "min_y": 5341.1039047311015, + "max_x": 4575.760305144956, + "max_y": 5342.468606494073 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541A9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4559.775326743175, + "min_y": 5341.1039047311015, + "max_x": 4561.140028506147, + "max_y": 5342.468606494073 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.290682463768, + "min_y": 5347.186445560527, + "max_x": 4578.648859201463, + "max_y": 5349.45487517998 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.742094915784, + "min_y": 5344.916332895607, + "max_x": 4570.682425525281, + "max_y": 5349.45487517998 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541B9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4567.029355581436, + "min_y": 5347.638309488769, + "max_x": 4568.394057344408, + "max_y": 5349.003011251741 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4566.807236500925, + "min_y": 5337.410165773739, + "max_x": 4569.074851098847, + "max_y": 5340.652448313626 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.078117650073, + "min_y": 5342.920062911551, + "max_x": 4571.799106073512, + "max_y": 5344.916332895607 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4570.682425525281, + "min_y": 5344.463629613085, + "max_x": 4571.135128807804, + "max_y": 5345.369036178128 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.742094915787, + "min_y": 5344.463629613085, + "max_x": 4565.194798198307, + "max_y": 5344.916332895607 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4551.435044836593, + "min_y": 5341.1406132453, + "max_x": 4553.803655091234, + "max_y": 5342.453468405839 + }, + "value": null, + "layer": "UTIL", + "id": "5541D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4581.846254154217, + "min_y": 5341.77729891382, + "max_x": 4582.854795126706, + "max_y": 5344.709000928737 + }, + "value": null, + "layer": "0", + "id": "5541D7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4579.613541772966, + "min_y": 5342.922295642049, + "max_x": 4585.2784261802735, + "max_y": 5350.384071701906 + }, + "value": null, + "layer": "0", + "id": "5541D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4585.631978786831, + "min_y": 5339.627208003661, + "max_x": 4597.726697371079, + "max_y": 5340.747089354054 + }, + "value": "N2-10712-15A-F1A-n", + "layer": "LINENO", + "id": "5541E6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4555.610721188135, + "min_y": 5336.124834619024, + "max_x": 4562.36868211448, + "max_y": 5338.7655151803965 + }, + "value": "NBD-10101", + "layer": "LINENO", + "id": "5541E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4555.784028860869, + "min_y": 5335.71944213092, + "max_x": 4562.974202001217, + "max_y": 5335.71944213092 + }, + "value": null, + "layer": "0", + "id": "5541E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4567.937812979442, + "min_y": 5333.350475748524, + "max_x": 4607.798445305194, + "max_y": 5337.410165533694 + }, + "value": null, + "layer": "0", + "id": "5541EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4561.020141759678, + "min_y": 5358.42194927887, + "max_x": 4566.790724635096, + "max_y": 5365.616645573766 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4569.058339233019, + "min_y": 5363.348215954313, + "max_x": 4574.482466396797, + "max_y": 5365.616645573766 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4553.787027035807, + "min_y": 5363.348215954313, + "max_x": 4565.130018116093, + "max_y": 5370.97389544806 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5541EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4575.640418398489, + "min_y": 5363.348215954313, + "max_x": 4578.632347335635, + "max_y": 5371.061859474892 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541F1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4574.379091516156, + "min_y": 5363.80007988255, + "max_x": 4575.743793279128, + "max_y": 5365.1647816455215 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541F4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4559.758814877348, + "min_y": 5363.80007988255, + "max_x": 4561.12351664032, + "max_y": 5365.1647816455215 + }, + "value": null, + "layer": "VV-BALL", + "id": "5541FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4568.27417059794, + "min_y": 5369.882620711977, + "max_x": 4578.632347335635, + "max_y": 5372.151050331431 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554203" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.725583049956, + "min_y": 5367.612508047058, + "max_x": 4570.665913659453, + "max_y": 5372.151050331431 + }, + "value": null, + "layer": "VV-BALL", + "id": "554204" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4567.012843715608, + "min_y": 5370.334484640219, + "max_x": 4568.37754547858, + "max_y": 5371.699186403191 + }, + "value": null, + "layer": "VV-BALL", + "id": "554208" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4566.790724635096, + "min_y": 5360.106340925189, + "max_x": 4569.058339233019, + "max_y": 5363.348623465077 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554210" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.061605784245, + "min_y": 5365.616238063001, + "max_x": 4571.782594207683, + "max_y": 5367.612508047057 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554212" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4570.665913659453, + "min_y": 5367.159804764535, + "max_x": 4571.118616941975, + "max_y": 5368.065211329579 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554216" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4564.725583049959, + "min_y": 5367.159804764535, + "max_x": 4565.178286332479, + "max_y": 5367.612508047057 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554218" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4551.429957555913, + "min_y": 5363.83678839675, + "max_x": 4553.787143225405, + "max_y": 5365.149643557288 + }, + "value": null, + "layer": "UTIL", + "id": "554220" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4581.603765206227, + "min_y": 5364.47347406527, + "max_x": 4582.612306178718, + "max_y": 5367.405176080186 + }, + "value": null, + "layer": "0", + "id": "554222" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4579.296237377463, + "min_y": 5365.6184707935, + "max_x": 4584.9611217847705, + "max_y": 5373.079168742738 + }, + "value": null, + "layer": "0", + "id": "554223" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4585.615466921002, + "min_y": 5362.554441525759, + "max_x": 4597.710185505251, + "max_y": 5363.6743228761525 + }, + "value": "N2-10703-15A-F1A-n", + "layer": "LINENO", + "id": "554231" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4555.594209322307, + "min_y": 5358.821009770474, + "max_x": 4562.3521702486505, + "max_y": 5361.4616903318465 + }, + "value": "NBD-10100", + "layer": "LINENO", + "id": "554232" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4555.767516995041, + "min_y": 5358.41561728237, + "max_x": 4562.957690135386, + "max_y": 5358.41561728237 + }, + "value": null, + "layer": "0", + "id": "554234" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4567.921301113613, + "min_y": 5355.419710540786, + "max_x": 4607.781933439365, + "max_y": 5360.106340685145 + }, + "value": null, + "layer": "0", + "id": "554237" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4553.234896807633, + "min_y": 5320.796317675519, + "max_x": 4557.938398479286, + "max_y": 5321.916199025913 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "554238" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4553.264765191854, + "min_y": 5342.772641396456, + "max_x": 4557.968266863507, + "max_y": 5343.892522746849 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "554239" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4552.966081349637, + "min_y": 5365.549871683652, + "max_x": 4557.669583021289, + "max_y": 5366.669753034045 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "55423A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4055.44932688433, + "min_y": 5193.14467232504, + "max_x": 4072.6093268843297, + "max_y": 5194.57467232504 + }, + "value": "SW-10801-50A-F1A-E50", + "layer": "LINENO", + "id": "55423B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4087.1197222756, + "min_y": 5217.02238598842, + "max_x": 4110.502686278929, + "max_y": 5220.435584560944 + }, + "value": "SW-10802-25A-F1A-E50", + "layer": "LINENO", + "id": "554241" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4084.958560977958, + "min_y": 5325.660959661433, + "max_x": 4102.118560977958, + "max_y": 5327.090959661433 + }, + "value": "SW-10804-25A-F1A-E50", + "layer": "LINENO", + "id": "554243" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4038.648741012039, + "min_y": 5240.908137607077, + "max_x": 4083.468160806969, + "max_y": 5253.728799365312 + }, + "value": null, + "layer": "0", + "id": "554246" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4009.278258153265, + "min_y": 5210.916289653436, + "max_x": 4011.3948339055087, + "max_y": 5212.092165071349 + }, + "value": "50A", + "layer": "0", + "id": "554247" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4108.340205901155, + "min_y": 5198.99028467824, + "max_x": 4115.060205901155, + "max_y": 5200.59028467824 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "55424C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4090.255364921101, + "min_y": 5355.169292069639, + "max_x": 4107.415364921101, + "max_y": 5356.599292069639 + }, + "value": "SW-10806-25A-F1A-E50", + "layer": "LINENO", + "id": "55424E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4090.151018537302, + "min_y": 5366.772685279665, + "max_x": 4107.3110185373025, + "max_y": 5368.202685279665 + }, + "value": "SW-10807-25A-F1A-E50", + "layer": "LINENO", + "id": "55424F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4090.46789403279, + "min_y": 5407.224003989008, + "max_x": 4107.62789403279, + "max_y": 5408.654003989009 + }, + "value": "SW-10809-15A-F1A-E50", + "layer": "LINENO", + "id": "554250" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4088.032614423307, + "min_y": 5403.947016062878, + "max_x": 4119.184301315448, + "max_y": 5406.215445682331 + }, + "value": null, + "layer": "WATER", + "id": "554251" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4111.700493839989, + "min_y": 5403.947016062878, + "max_x": 4119.281167573428, + "max_y": 5406.215445682331 + }, + "value": null, + "layer": "VV-BALL", + "id": "554252" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4110.439166957658, + "min_y": 5404.398879991121, + "max_x": 4111.80386872063, + "max_y": 5405.763581754093 + }, + "value": null, + "layer": "VV-BALL", + "id": "554256" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5402.83086435406, + "max_x": 4141.708108812414, + "max_y": 5407.657786536097 + }, + "value": null, + "layer": "0", + "id": "55425C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4141.708108812414, + "min_y": 5402.83086435406, + "max_x": 4144.121569903433, + "max_y": 5407.657786536097 + }, + "value": null, + "layer": "0", + "id": "55425E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4124.426214929984, + "min_y": 5404.408190817779, + "max_x": 4135.507582868231, + "max_y": 5406.087185959937 + }, + "value": "5F SCRUBBER", + "layer": "0", + "id": "554261" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4090.42265839779, + "min_y": 5391.026830833755, + "max_x": 4107.5826583977905, + "max_y": 5392.456830833756 + }, + "value": "SW-10808-25A-F1A-E50", + "layer": "LINENO", + "id": "554267" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4042.138087155236, + "min_y": 5220.171543094071, + "max_x": 4045.277844818708, + "max_y": 5222.439972713523 + }, + "value": null, + "layer": "0", + "id": "554269" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4045.174469938068, + "min_y": 5220.623407022309, + "max_x": 4046.53917170104, + "max_y": 5221.988108785281 + }, + "value": null, + "layer": "VV-BALL", + "id": "55426D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4046.4357968204, + "min_y": 5220.171543094071, + "max_x": 4048.410764365601, + "max_y": 5222.46990194198 + }, + "value": null, + "layer": "VV-BALL", + "id": "55426E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4044.818170002712, + "min_y": 5218.22089172305, + "max_x": 4046.9347457549557, + "max_y": 5219.396767140963 + }, + "value": "15A", + "layer": "0", + "id": "554273" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3530.692477472268, + "min_y": 5263.825031624276, + "max_x": 3538.851084007644, + "max_y": 5266.09346124373 + }, + "value": null, + "layer": "0", + "id": "554276" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3538.851084007644, + "min_y": 5263.825031624275, + "max_x": 3547.923701759986, + "max_y": 5266.09346124373 + }, + "value": null, + "layer": "STEAM LINE", + "id": "554277" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3544.359219048858, + "min_y": 5264.873961938777, + "max_x": 3547.8510066429517, + "max_y": 5268.365749532871 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554278" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3544.399270484743, + "min_y": 5263.825031624275, + "max_x": 3550.769223974403, + "max_y": 5269.8280881498 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "554279" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3542.133049286143, + "min_y": 5261.092118011116, + "max_x": 3552.631936946081, + "max_y": 5262.258661084443 + }, + "value": "0.65 -> 0.4 MPa", + "layer": "0", + "id": "55428D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3554.898888227501, + "min_y": 5262.84400289419, + "max_x": 3557.5194105874216, + "max_y": 5264.299848649702 + }, + "value": "40A", + "layer": "0", + "id": "55428E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3546.105112845905, + "min_y": 5269.8280881498, + "max_x": 3550.769223974403, + "max_y": 5269.8280881498 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55428F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3587.17065709787, + "min_y": 5283.255068077058, + "max_x": 3589.7911794577903, + "max_y": 5284.7109138325695 + }, + "value": "40A", + "layer": "0", + "id": "554295" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3651.900971703279, + "min_y": 5182.09789838729, + "max_x": 3676.100786920625, + "max_y": 5232.774224773827 + }, + "value": null, + "layer": "0", + "id": "554296" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3635.483225283849, + "min_y": 5277.252611107158, + "max_x": 3683.556291251735, + "max_y": 5279.521040726613 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554297" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3642.498423598891, + "min_y": 5277.252611107158, + "max_x": 3642.498423598891, + "max_y": 5279.521040726613 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "55429F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3634.694114433204, + "min_y": 5299.327442512446, + "max_x": 3689.673302846501, + "max_y": 5301.595872131899 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5542A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3642.424154741936, + "min_y": 5299.327442512446, + "max_x": 3642.424154741936, + "max_y": 5301.595872131899 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5542A8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3682.818527173366, + "min_y": 5194.604051060615, + "max_x": 3684.311702307223, + "max_y": 5278.414440772521 + }, + "value": null, + "layer": "0", + "id": "5542AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3688.959707723264, + "min_y": 5194.604051060615, + "max_x": 3690.452882857122, + "max_y": 5300.51178282352 + }, + "value": null, + "layer": "0", + "id": "5542AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3679.759171727082, + "min_y": 5177.436361539406, + "max_x": 3694.379178167624, + "max_y": 5195.210955085764 + }, + "value": null, + "layer": "0", + "id": "5542AD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3686.669062822388, + "min_y": 5250.408950665912, + "max_x": 3689.289585182308, + "max_y": 5251.864796421423 + }, + "value": "40A", + "layer": "0", + "id": "5542B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3679.820529399555, + "min_y": 5250.181907717725, + "max_x": 3682.4410517594756, + "max_y": 5251.637753473236 + }, + "value": "25A", + "layer": "0", + "id": "5542B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3683.321528024698, + "min_y": 5192.579318958205, + "max_x": 3685.9420503846186, + "max_y": 5194.035164713716 + }, + "value": "50A", + "layer": "0", + "id": "5542B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3679.76985506718, + "min_y": 5185.298261025904, + "max_x": 3682.335903825425, + "max_y": 5188.698510500532 + }, + "value": null, + "layer": "0", + "id": "5542B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3681.667363378167, + "min_y": 5188.704852463586, + "max_x": 3683.160538512024, + "max_y": 5188.953714985895 + }, + "value": null, + "layer": "0", + "id": "5542B6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3667.434643489224, + "min_y": 5192.182858198487, + "max_x": 3670.0551658491445, + "max_y": 5193.638703953999 + }, + "value": "80A", + "layer": "0", + "id": "5542B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3672.605851377563, + "min_y": 5185.37217147244, + "max_x": 3676.099637258443, + "max_y": 5188.772420947068 + }, + "value": null, + "layer": "0", + "id": "5542BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3671.937310930305, + "min_y": 5188.778762910122, + "max_x": 3673.430486064162, + "max_y": 5189.027625432433 + }, + "value": null, + "layer": "0", + "id": "5542BE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3667.290886243251, + "min_y": 5188.276303978414, + "max_x": 3671.6584235097853, + "max_y": 5189.732149733925 + }, + "value": "Spare", + "layer": "0", + "id": "5542C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3683.804399042428, + "min_y": 5188.330349971332, + "max_x": 3688.1719363089624, + "max_y": 5189.786195726843 + }, + "value": "Spare", + "layer": "0", + "id": "5542C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3634.694114521093, + "min_y": 5285.685185218326, + "max_x": 3634.694114521093, + "max_y": 5300.511782815378 + }, + "value": null, + "layer": "0", + "id": "5542C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3635.483218739677, + "min_y": 5264.974171711074, + "max_x": 3635.483218739677, + "max_y": 5278.414670224297 + }, + "value": null, + "layer": "0", + "id": "5542C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3675.445885654614, + "min_y": 5177.440876614443, + "max_x": 3676.758740811167, + "max_y": 5182.098376922217 + }, + "value": null, + "layer": "0", + "id": "5542CA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3672.661846783128, + "min_y": 5181.013467768622, + "max_x": 3677.3653484547804, + "max_y": 5182.133349119015 + }, + "value": "80Ax50A", + "layer": "VALVE NO", + "id": "5542D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3783.328535772724, + "min_y": 5360.744985007942, + "max_x": 3791.340396043189, + "max_y": 5363.013414627396 + }, + "value": null, + "layer": "0", + "id": "5542D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3774.804399128104, + "min_y": 5356.096063766024, + "max_x": 3788.943794552466, + "max_y": 5358.364493385477 + }, + "value": null, + "layer": "0", + "id": "5542D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3791.340396043189, + "min_y": 5357.287136713187, + "max_x": 3791.340396043189, + "max_y": 5361.788201716635 + }, + "value": null, + "layer": "0", + "id": "5542DD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3771.498496412798, + "min_y": 5337.619598833742, + "max_x": 3774.1190187727184, + "max_y": 5339.0754445892535 + }, + "value": "65A", + "layer": "0", + "id": "5542E0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3690.3333680491023, + "min_y": 5160.177918562698, + "max_x": 3695.126965373862, + "max_y": 5167.368314549837 + }, + "value": null, + "layer": "0", + "id": "5542E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3693.731430875679, + "min_y": 5162.447201529959, + "max_x": 3696.15084053061, + "max_y": 5167.149155412606 + }, + "value": null, + "layer": "VALVE NO", + "id": "5542E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3692.7319396654557, + "min_y": 5160.455007597613, + "max_x": 3694.9717023662424, + "max_y": 5162.6947702984 + }, + "value": null, + "layer": "VALVE NO", + "id": "5542E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3682.871285141358, + "min_y": 5160.43309305011, + "max_x": 3689.905559403078, + "max_y": 5162.701522669563 + }, + "value": null, + "layer": "0", + "id": "5542EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3680.710861215788, + "min_y": 5151.02188956347, + "max_x": 3684.45440708972, + "max_y": 5167.301190326877 + }, + "value": null, + "layer": "0", + "id": "5542EB" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3690.3658309317234, + "min_y": 5150.818695695148, + "max_x": 3695.159428256483, + "max_y": 5158.009091682286 + }, + "value": null, + "layer": "0", + "id": "5542EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3693.7638937583, + "min_y": 5153.087978662408, + "max_x": 3696.18330341323, + "max_y": 5157.789932545054 + }, + "value": null, + "layer": "VALVE NO", + "id": "5542EF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3692.764402548076, + "min_y": 5151.095784730061, + "max_x": 3695.0041652488626, + "max_y": 5153.335547430847 + }, + "value": null, + "layer": "VALVE NO", + "id": "5542F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3684.45440708972, + "min_y": 5151.02188956347, + "max_x": 3689.938591381853, + "max_y": 5153.290319182923 + }, + "value": null, + "layer": "0", + "id": "5542F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3707.706890596051, + "min_y": 5178.980274386647, + "max_x": 3710.3274129559713, + "max_y": 5180.436120142158 + }, + "value": "50A", + "layer": "0", + "id": "5542F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3700.774543816709, + "min_y": 5160.596850696079, + "max_x": 3711.203277092844, + "max_y": 5189.719225054979 + }, + "value": null, + "layer": "0", + "id": "5542F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3711.203277092844, + "min_y": 5194.853223984756, + "max_x": 3718.090874497845, + "max_y": 5228.365122594712 + }, + "value": null, + "layer": "0", + "id": "5542F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3719.309997261603, + "min_y": 5179.218485550017, + "max_x": 3721.930519621523, + "max_y": 5180.6743313055285 + }, + "value": "50A", + "layer": "0", + "id": "5542FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3698.325091028813, + "min_y": 5160.596850696079, + "max_x": 3700.777585263885, + "max_y": 5162.865280315532 + }, + "value": null, + "layer": "0", + "id": "5542FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3698.488334410497, + "min_y": 5151.016636027305, + "max_x": 3718.122485024891, + "max_y": 5153.285065646758 + }, + "value": null, + "layer": "0", + "id": "554300" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3696.980985997481, + "min_y": 5161.027480572037, + "max_x": 3698.327207804885, + "max_y": 5162.520655705893 + }, + "value": null, + "layer": "0", + "id": "554305" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3697.027612305977, + "min_y": 5151.625553807793, + "max_x": 3698.488383692273, + "max_y": 5153.11872894165 + }, + "value": null, + "layer": "0", + "id": "554307" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3682.871285141358, + "min_y": 5160.43309305011, + "max_x": 3682.871285141358, + "max_y": 5162.701522669563 + }, + "value": null, + "layer": "0", + "id": "55430F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5190.472323445639, + "max_x": 3712.312576565298, + "max_y": 5194.856088840719 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554319" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5189.72573587871, + "max_x": 3712.312576565298, + "max_y": 5189.72573587871 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554321" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5190.543598888136, + "max_x": 3719.269839340574, + "max_y": 5194.927364283215 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554322" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5152.373559587236, + "max_x": 3719.269839340574, + "max_y": 5189.800514455551 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "55432A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3658.427089059271, + "min_y": 5177.519362455889, + "max_x": 3670.106445294246, + "max_y": 5183.782287329919 + }, + "value": null, + "layer": "0", + "id": "55432D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3669.485389112105, + "min_y": 5177.610381885126, + "max_x": 3670.798244268659, + "max_y": 5178.682645994557 + }, + "value": null, + "layer": "0", + "id": "55432F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3665.833401286713, + "min_y": 5177.567587337005, + "max_x": 3671.8807605788375, + "max_y": 5178.687468687398 + }, + "value": "125Ax100A", + "layer": "VALVE NO", + "id": "554334" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3649.50630828174, + "min_y": 5178.261674044825, + "max_x": 3659.1148902681157, + "max_y": 5179.717519800336 + }, + "value": "Trench Vent", + "layer": "0", + "id": "554336" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3605.516106534263, + "min_y": 5219.55341462621, + "max_x": 3608.1366288941836, + "max_y": 5221.009260381721 + }, + "value": "40A", + "layer": "0", + "id": "554339" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4547.195248891243, + "min_y": 5297.805161307607, + "max_x": 4548.203789863733, + "max_y": 5300.736863322524 + }, + "value": null, + "layer": "0", + "id": "55433B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4544.99245740338, + "min_y": 5298.950158035837, + "max_x": 4550.657341810688, + "max_y": 5306.396314854666 + }, + "value": null, + "layer": "0", + "id": "55433C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5195.697721387994, + "max_x": 3594.489189449476, + "max_y": 5200.524643570032 + }, + "value": null, + "layer": "0", + "id": "554345" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3594.489189449476, + "min_y": 5195.697721387994, + "max_x": 3606.445235412863, + "max_y": 5200.524643570032 + }, + "value": null, + "layer": "0", + "id": "554347" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3576.420634994484, + "min_y": 5197.464258833779, + "max_x": 3596.568576700388, + "max_y": 5199.143253975938 + }, + "value": "1F #10 Plant Utility", + "layer": "0", + "id": "55434E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3608.03267151325, + "min_y": 5197.118365793604, + "max_x": 3616.013076460533, + "max_y": 5198.931962645797 + }, + "value": null, + "layer": "STEAM LINE", + "id": "554356" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3614.038997870142, + "min_y": 5190.949223195218, + "max_x": 3623.499245111993, + "max_y": 5198.119074244857 + }, + "value": null, + "layer": "STEAM LINE", + "id": "554357" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3606.447411429432, + "min_y": 5190.949228119909, + "max_x": 3614.038999879091, + "max_y": 5198.119074244857 + }, + "value": null, + "layer": "STEAM LINE", + "id": "554358" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3616.481301616768, + "min_y": 5194.566552352519, + "max_x": 3620.023194720626, + "max_y": 5198.646811970061 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55435C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3606.445207320254, + "min_y": 5197.596685447241, + "max_x": 3608.032673522199, + "max_y": 5198.641472891864 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55435E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3620.416558595685, + "min_y": 5197.596680522535, + "max_x": 3654.501532586355, + "max_y": 5198.641467967146 + }, + "value": null, + "layer": "0", + "id": "554363" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3620.416558595685, + "min_y": 5197.615311665407, + "max_x": 3620.416560604634, + "max_y": 5198.622845104457 + }, + "value": null, + "layer": "0", + "id": "554368" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3620.935470141633, + "min_y": 5197.796611446607, + "max_x": 3621.5804006629974, + "max_y": 5198.441541967972 + }, + "value": null, + "layer": "0", + "id": "55436B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3608.5515830591976, + "min_y": 5197.796611446623, + "max_x": 3609.196513580562, + "max_y": 5198.441541967987 + }, + "value": null, + "layer": "0", + "id": "554374" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3614.55790941609, + "min_y": 5191.149154119291, + "max_x": 3615.2028399374544, + "max_y": 5191.7940846406555 + }, + "value": null, + "layer": "0", + "id": "55437D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5194.239955505501, + "max_x": 3618.674054441975, + "max_y": 5194.566552352519 + }, + "value": null, + "layer": "0", + "id": "55437F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3617.7713727385485, + "min_y": 5195.136225200213, + "max_x": 3618.473918845027, + "max_y": 5195.838771306691 + }, + "value": null, + "layer": "0", + "id": "554380" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3613.863476005093, + "min_y": 5195.800729197093, + "max_x": 3615.6772806354443, + "max_y": 5198.590217655021 + }, + "value": "20A", + "layer": "0", + "id": "55438B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3659.098224756251, + "min_y": 5196.448919674152, + "max_x": 3660.591399890108, + "max_y": 5196.448919674152 + }, + "value": null, + "layer": "0", + "id": "55438E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3665.239405306149, + "min_y": 5196.476970693534, + "max_x": 3666.732580440007, + "max_y": 5196.476970693534 + }, + "value": null, + "layer": "0", + "id": "554390" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3632.162899554957, + "min_y": 5195.92431267827, + "max_x": 3634.7834219148776, + "max_y": 5197.380158433782 + }, + "value": "20A", + "layer": "0", + "id": "554395" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3616.013076460533, + "min_y": 5197.118365793604, + "max_x": 3616.013078851179, + "max_y": 5198.916600862942 + }, + "value": null, + "layer": "0", + "id": "554398" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3602.550583264878, + "min_y": 5194.56669130492, + "max_x": 3603.653400565256, + "max_y": 5198.119213197244 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55439D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5192.745739328853, + "max_x": 3603.653400565257, + "max_y": 5194.56669130492 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55439E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3602.750718861829, + "min_y": 5195.136364152615, + "max_x": 3603.4532649683074, + "max_y": 5195.838910259094 + }, + "value": null, + "layer": "0", + "id": "5543A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.221650911344, + "min_y": 5194.709266293401, + "max_x": 4094.534871387796, + "max_y": 5196.571395050724 + }, + "value": null, + "layer": "0", + "id": "5543B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4099.472321473945, + "min_y": 5194.706293669547, + "max_x": 4099.472321473945, + "max_y": 5196.568422426884 + }, + "value": null, + "layer": "0", + "id": "5543B2" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4094.5348588597876, + "min_y": 5195.284682147196, + "max_x": 4097.356266067877, + "max_y": 5195.9900339492215 + }, + "value": null, + "layer": "0", + "id": "5543B4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4097.356266067878, + "min_y": 5195.284682147195, + "max_x": 4099.472321473942, + "max_y": 5195.990033949222 + }, + "value": null, + "layer": "0", + "id": "5543B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4083.707447252836, + "min_y": 5193.367509368961, + "max_x": 4087.221650911344, + "max_y": 5196.571395050724 + }, + "value": null, + "layer": "0", + "id": "5543BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4058.557229376674, + "min_y": 5212.369123268668, + "max_x": 4061.717130350522, + "max_y": 5214.637552888121 + }, + "value": null, + "layer": "VV-BALL", + "id": "5543C6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4057.295902494342, + "min_y": 5212.820987196911, + "max_x": 4058.660604257314, + "max_y": 5214.185688959883 + }, + "value": null, + "layer": "VV-BALL", + "id": "5543CA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4065.727514949818, + "min_y": 5212.56321609683, + "max_x": 4073.04073542627, + "max_y": 5214.425344854152 + }, + "value": null, + "layer": "0", + "id": "5543CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4077.978185512419, + "min_y": 5212.560243472976, + "max_x": 4078.51254293819, + "max_y": 5214.422372230313 + }, + "value": null, + "layer": "0", + "id": "5543D1" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4073.040722898261, + "min_y": 5213.138631950625, + "max_x": 4075.862130106351, + "max_y": 5213.84398375265 + }, + "value": null, + "layer": "0", + "id": "5543D3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4075.862130106352, + "min_y": 5213.138631950624, + "max_x": 4077.978185512417, + "max_y": 5213.843983752651 + }, + "value": null, + "layer": "0", + "id": "5543D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4062.21331129131, + "min_y": 5211.22145917239, + "max_x": 4065.727514949818, + "max_y": 5214.425344854152 + }, + "value": null, + "layer": "0", + "id": "5543DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5208.704434464502, + "max_x": 4069.521409173026, + "max_y": 5213.495024850288 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5543E6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4068.3808374782707, + "min_y": 5209.420764369294, + "max_x": 4069.271131627341, + "max_y": 5210.311058518365 + }, + "value": null, + "layer": "0", + "id": "5543E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4068.127217752333, + "min_y": 5206.130528102949, + "max_x": 4069.521409173026, + "max_y": 5208.704434464502 + }, + "value": null, + "layer": "0", + "id": "5543E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4068.127217752333, + "min_y": 5206.130528102949, + "max_x": 4069.518066992774, + "max_y": 5206.130528102949 + }, + "value": null, + "layer": "0", + "id": "5543F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4069.994100866948, + "min_y": 5208.39605182299, + "max_x": 4072.5485849762263, + "max_y": 5209.815209661478 + }, + "value": "20A", + "layer": "LINENO", + "id": "5543F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5190.835579513198, + "max_x": 4090.984343075819, + "max_y": 5195.626169898982 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5543F5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4089.8437713810627, + "min_y": 5191.55190941799, + "max_x": 4090.734065530133, + "max_y": 5192.4422035670605 + }, + "value": null, + "layer": "0", + "id": "5543F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4089.590151655126, + "min_y": 5188.261673151645, + "max_x": 4090.984343075819, + "max_y": 5190.835579513198 + }, + "value": null, + "layer": "0", + "id": "5543F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4089.590151655126, + "min_y": 5188.261673151645, + "max_x": 4090.981000895566, + "max_y": 5188.261673151645 + }, + "value": null, + "layer": "0", + "id": "554402" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4091.45703476974, + "min_y": 5190.527196871685, + "max_x": 4094.0115188790182, + "max_y": 5191.946354710173 + }, + "value": "20A", + "layer": "LINENO", + "id": "554403" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.677711795446, + "min_y": 5204.535730666009, + "max_x": 4110.539840552768, + "max_y": 5204.535730666009 + }, + "value": null, + "layer": "0", + "id": "554404" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5209.473180752158, + "max_x": 4110.731703383284, + "max_y": 5211.47307090037 + }, + "value": null, + "layer": "0", + "id": "554406" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4109.259072896948, + "min_y": 5204.535718137997, + "max_x": 4109.964424698974, + "max_y": 5207.357125346088 + }, + "value": null, + "layer": "0", + "id": "554408" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4109.259072896947, + "min_y": 5207.3571253460905, + "max_x": 4109.964424698975, + "max_y": 5209.473180752155 + }, + "value": null, + "layer": "0", + "id": "55440D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.744473903557, + "min_y": 5222.416457105961, + "max_x": 4089.606602660878, + "max_y": 5222.416457105961 + }, + "value": null, + "layer": "0", + "id": "554410" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4088.325835005058, + "min_y": 5222.41644457795, + "max_x": 4089.0311868070844, + "max_y": 5225.237851786041 + }, + "value": null, + "layer": "0", + "id": "554414" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4088.3258350050573, + "min_y": 5225.237851786043, + "max_x": 4089.031186807085, + "max_y": 5227.353907192107 + }, + "value": null, + "layer": "0", + "id": "554419" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5212.215978704571, + "max_x": 4110.731703383284, + "max_y": 5216.599744099653 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55441D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4084.010628028318, + "min_y": 5235.870532289156, + "max_x": 4088.626270486572, + "max_y": 5238.138961908609 + }, + "value": null, + "layer": "WATER", + "id": "554427" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4077.672982657623, + "min_y": 5235.870532289156, + "max_x": 4082.852676026627, + "max_y": 5238.138961908609 + }, + "value": null, + "layer": "WATER", + "id": "554428" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4080.8664755464697, + "min_y": 5236.322396217394, + "max_x": 4085.9968285084824, + "max_y": 5237.687097980366 + }, + "value": null, + "layer": "VV-BALL", + "id": "55442D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5233.512379832394, + "max_x": 4110.750523688547, + "max_y": 5235.498580312555 + }, + "value": null, + "layer": "VV-BALL", + "id": "554436" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4108.933957997333, + "min_y": 5235.395205431915, + "max_x": 4110.298659760305, + "max_y": 5236.759907194887 + }, + "value": null, + "layer": "VV-BALL", + "id": "554439" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5243.140381487081, + "max_x": 4089.798678753088, + "max_y": 5245.126581967237 + }, + "value": null, + "layer": "VV-BALL", + "id": "55443E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5239.996229005227, + "max_x": 4089.798678753088, + "max_y": 5241.982429485389 + }, + "value": null, + "layer": "VV-BALL", + "id": "55443F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4087.982113061873, + "min_y": 5241.879054604749, + "max_x": 4089.346814824845, + "max_y": 5243.243756367721 + }, + "value": null, + "layer": "VV-BALL", + "id": "554442" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4095.204848968977, + "min_y": 5254.41796479771, + "max_x": 4097.892564209921, + "max_y": 5255.911139931568 + }, + "value": "20A", + "layer": "14-D-PIPELINE-LINE", + "id": "554447" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5249.629424857348, + "max_x": 4101.25691828293, + "max_y": 5254.257834227915 + }, + "value": null, + "layer": "0", + "id": "554448" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5255.415786229606, + "max_x": 4101.25691828293, + "max_y": 5258.55554389308 + }, + "value": null, + "layer": "0", + "id": "554449" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4096.389765638559, + "min_y": 5256.655399142834, + "max_x": 4103.855641307849, + "max_y": 5266.02141956237 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55444A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4097.56823573815, + "min_y": 5259.956852492846, + "max_x": 4102.604006206464, + "max_y": 5264.624315847762 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55444B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4099.440352591717, + "min_y": 5252.271633747753, + "max_x": 4100.805054354689, + "max_y": 5255.519161110246 + }, + "value": null, + "layer": "VV-BALL", + "id": "554451" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4037.960894552101, + "min_y": 5236.992523273655, + "max_x": 4039.454069685958, + "max_y": 5240.907558388827 + }, + "value": null, + "layer": "0", + "id": "554457" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4082.576403753764, + "min_y": 5249.727520598406, + "max_x": 4085.2641189947085, + "max_y": 5251.220695732264 + }, + "value": "20A", + "layer": "14-D-PIPELINE-LINE", + "id": "554458" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4084.626112808661, + "min_y": 5251.460369745859, + "max_x": 4086.612313288816, + "max_y": 5253.728799365312 + }, + "value": null, + "layer": "VV-BALL", + "id": "55445A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4083.364785926327, + "min_y": 5251.912233674102, + "max_x": 4084.729487689299, + "max_y": 5253.276935437074 + }, + "value": null, + "layer": "VV-BALL", + "id": "55445E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4038.240188420456, + "min_y": 5240.907558388827, + "max_x": 4039.11542519415, + "max_y": 5240.907558388827 + }, + "value": null, + "layer": "0", + "id": "554467" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4041.565847302054, + "min_y": 5238.412205440711, + "max_x": 4048.2858473020538, + "max_y": 5240.012205440711 + }, + "value": "40Ax20A", + "layer": "VALVE NO", + "id": "55446A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4462.63522375548, + "min_y": 5183.52232118382, + "max_x": 4463.9550464487975, + "max_y": 5184.255556013441 + }, + "value": "25A", + "layer": "PID", + "id": "55446B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5184.175845159763, + "max_x": 4456.906843874729, + "max_y": 5186.458649528004 + }, + "value": null, + "layer": "0", + "id": "55446E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4457.046907229456, + "min_y": 5183.643780017506, + "max_x": 4458.366729922774, + "max_y": 5184.377014847127 + }, + "value": "15A", + "layer": "PID", + "id": "55446F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4579.117972590286, + "min_y": 5265.901433493029, + "max_x": 4583.797972590286, + "max_y": 5269.556245882693 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554470" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4579.634793497665, + "min_y": 5302.085380768636, + "max_x": 4584.314793497665, + "max_y": 5305.740193158298 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554473" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4579.450200747206, + "min_y": 5323.922752543578, + "max_x": 4584.130200747206, + "max_y": 5327.577564933241 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554476" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4579.719584308266, + "min_y": 5345.993624340135, + "max_x": 4584.399584308267, + "max_y": 5349.648436729798 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554479" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4579.749802412762, + "min_y": 5368.688721380967, + "max_x": 4584.429802412762, + "max_y": 5372.34353377063 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55447C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4545.271984938679, + "min_y": 5302.005867492895, + "max_x": 4549.95198493868, + "max_y": 5305.660679882558 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55447F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4454.329162530168, + "min_y": 5188.217137049075, + "max_x": 4458.229162530168, + "max_y": 5191.469062134346 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "554482" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3549.477526705177, + "min_y": 5204.339594954394, + "max_x": 3588.633784637918, + "max_y": 5209.166517136431 + }, + "value": null, + "layer": "0", + "id": "554485" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3588.633784637918, + "min_y": 5204.339594954394, + "max_x": 3591.047245728937, + "max_y": 5209.166517136431 + }, + "value": null, + "layer": "0", + "id": "554487" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3569.575808611733, + "min_y": 5205.952025626942, + "max_x": 3591.738544488227, + "max_y": 5207.6310207691 + }, + "value": "1~5F #10 Plant Utility", + "layer": "0", + "id": "55448A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3555.384374804904, + "min_y": 5204.887585086845, + "max_x": 3558.0048971648243, + "max_y": 5206.343430842357 + }, + "value": "25A", + "layer": "0", + "id": "554490" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3548.726826648215, + "min_y": 5201.928822181905, + "max_x": 3550.220001782073, + "max_y": 5202.177684704217 + }, + "value": null, + "layer": "0", + "id": "554491" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4017.746100755545, + "min_y": 5236.989123307347, + "max_x": 4023.725362868548, + "max_y": 5240.343696564988 + }, + "value": null, + "layer": "0", + "id": "554493" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4018.464826119062, + "min_y": 5240.851433094817, + "max_x": 4023.403502874297, + "max_y": 5242.02730851273 + }, + "value": "570x570", + "layer": "0", + "id": "554497" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4218.038901617699, + "min_y": 5191.951386533161, + "max_x": 4223.6383083696655, + "max_y": 5192.884620991822 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "554498" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4649.511500602001, + "min_y": 5191.773415451393, + "max_x": 4655.110907353968, + "max_y": 5192.706649910054 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "554499" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3776.231417423777, + "min_y": 5191.696069325827, + "max_x": 3781.830824175744, + "max_y": 5192.629303784488 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "55449A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3793.450585736664, + "min_y": 5191.828173344054, + "max_x": 3797.9301111382374, + "max_y": 5192.761407802715 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55449B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4235.555520446739, + "min_y": 5191.887825628274, + "max_x": 4240.035045848313, + "max_y": 5192.821060086935 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55449C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4454.405472960981, + "min_y": 5195.570927862174, + "max_x": 4458.30547296098, + "max_y": 5198.807902947447 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "55449D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4453.626789708889, + "min_y": 5197.140990051718, + "max_x": 4459.534287228578, + "max_y": 5199.755958326846 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4453.60362169494, + "min_y": 5193.801509786453, + "max_x": 4459.538028409837, + "max_y": 5199.754131034958 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4453.61060696648, + "min_y": 5192.426784801209, + "max_x": 4459.537398932122, + "max_y": 5197.140990051707 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544A4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4667.104393249859, + "min_y": 5191.854826064293, + "max_x": 4671.583918651432, + "max_y": 5192.788060522954 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "5544A9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5364.478826812877, + "max_x": 4590.715165682455, + "max_y": 5366.976508575015 + }, + "value": null, + "layer": "0", + "id": "5544AB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.905458816524, + "min_y": 5369.343631448153, + "max_x": 4592.585458816524, + "max_y": 5373.013393837815 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5544AC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4587.2831990822615, + "min_y": 5365.886252688238, + "max_x": 4593.224320711661, + "max_y": 5381.075190115892 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544AE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4590.057984681535, + "min_y": 5365.065456563006, + "max_x": 4590.383450928776, + "max_y": 5365.390922810247 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5544B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4590.225506988388, + "min_y": 5367.301749765351, + "max_x": 4590.225618191097, + "max_y": 5367.986152584888 + }, + "value": null, + "layer": "0", + "id": "5544C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.298346408084, + "min_y": 5373.727235404073, + "max_x": 4593.223925167445, + "max_y": 5375.127415830931 + }, + "value": null, + "layer": "0", + "id": "5544C2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.889231696305, + "min_y": 5376.896820589371, + "max_x": 4592.569231696305, + "max_y": 5380.133795674641 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "5544C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.313315944213, + "min_y": 5378.466882778915, + "max_x": 4593.220813463902, + "max_y": 5381.081851054042 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.290147930263, + "min_y": 5375.127402513649, + "max_x": 4593.224554645161, + "max_y": 5381.080023762154 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.297133201803, + "min_y": 5375.127415830931, + "max_x": 4587.297139860446, + "max_y": 5378.466882778904 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5341.788015225745, + "max_x": 4590.634689506922, + "max_y": 5344.285696987882 + }, + "value": null, + "layer": "0", + "id": "5544CF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.477460140991, + "min_y": 5346.65281986102, + "max_x": 4592.157460140991, + "max_y": 5350.322582250682 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5544D0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4587.202722906727, + "min_y": 5343.195441101105, + "max_x": 4593.143844536126, + "max_y": 5358.384378528759 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544D2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4589.977508506001, + "min_y": 5342.374644975873, + "max_x": 4590.302974753242, + "max_y": 5342.700111223114 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5544DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4590.145030812855, + "min_y": 5344.610938178218, + "max_x": 4590.145142015564, + "max_y": 5345.295340997755 + }, + "value": null, + "layer": "0", + "id": "5544E5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.217870232551, + "min_y": 5351.036423816941, + "max_x": 4593.143448991912, + "max_y": 5352.436604243798 + }, + "value": null, + "layer": "0", + "id": "5544E6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.461233020773, + "min_y": 5354.206009002238, + "max_x": 4592.141233020773, + "max_y": 5357.442984087509 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "5544E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.20967175473, + "min_y": 5352.436604243798, + "max_x": 4593.138137071266, + "max_y": 5355.776071191771 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4593.14407181098, + "min_y": 5352.436590926516, + "max_x": 4593.144078469627, + "max_y": 5355.776057874474 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5319.718780433482, + "max_x": 4590.768641330821, + "max_y": 5322.216462195619 + }, + "value": null, + "layer": "0", + "id": "5544F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.582129464889, + "min_y": 5324.583585068756, + "max_x": 4592.262129464889, + "max_y": 5328.253347458418 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5544F4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4587.336674730626, + "min_y": 5321.126206308841, + "max_x": 4593.277796360026, + "max_y": 5336.315143736496 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5544F6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4590.111460329899, + "min_y": 5320.30541018361, + "max_x": 4590.43692657714, + "max_y": 5320.630876430851 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "5544FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4590.278982636753, + "min_y": 5322.541703385955, + "max_x": 4590.279093839463, + "max_y": 5323.226106205492 + }, + "value": null, + "layer": "0", + "id": "554509" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.351822056449, + "min_y": 5328.967189024677, + "max_x": 4593.27740081581, + "max_y": 5330.367369451534 + }, + "value": null, + "layer": "0", + "id": "55450A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.56590234467, + "min_y": 5332.136774209974, + "max_x": 4592.24590234467, + "max_y": 5335.373749295246 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "55450B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.343623578628, + "min_y": 5330.367369451534, + "max_x": 4593.272088895164, + "max_y": 5333.706836399508 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554513" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4593.278023634879, + "min_y": 5330.367356134253, + "max_x": 4593.278030293526, + "max_y": 5333.70682308221 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554515" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5297.841253641517, + "max_x": 4590.486333392795, + "max_y": 5300.338935403654 + }, + "value": null, + "layer": "0", + "id": "554517" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.430764026865, + "min_y": 5302.706058276791, + "max_x": 4592.110764026866, + "max_y": 5306.375820666454 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "554518" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4587.054366792601, + "min_y": 5299.248679516877, + "max_x": 4592.995488422001, + "max_y": 5314.43761694453 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55451A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4589.829152391874, + "min_y": 5298.427883391646, + "max_x": 4590.154618639115, + "max_y": 5298.753349638887 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554523" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.996674698728, + "min_y": 5300.66417659399, + "max_x": 4589.996785901438, + "max_y": 5301.348579413527 + }, + "value": null, + "layer": "0", + "id": "55452D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.069514118424, + "min_y": 5307.089662232712, + "max_x": 4592.995092877785, + "max_y": 5308.48984265957 + }, + "value": null, + "layer": "0", + "id": "55452E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4587.414536906645, + "min_y": 5310.259247418009, + "max_x": 4592.094536906645, + "max_y": 5313.496222503281 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "55452F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4587.061315640603, + "min_y": 5308.48984265957, + "max_x": 4592.989780957139, + "max_y": 5311.829309607543 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554537" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4592.995715696853, + "min_y": 5308.489829342288, + "max_x": 4592.995722355501, + "max_y": 5311.829296290246 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554539" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5261.677222693709, + "max_x": 4589.744721415502, + "max_y": 5264.174904455845 + }, + "value": null, + "layer": "0", + "id": "55453B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4586.667052049571, + "min_y": 5266.542027328983, + "max_x": 4591.347052049571, + "max_y": 5270.211789718646 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "55453C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4586.312754815308, + "min_y": 5263.084648569069, + "max_x": 4592.253876444707, + "max_y": 5278.2735859967215 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55453E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4589.087540414582, + "min_y": 5262.263852443836, + "max_x": 4589.413006661823, + "max_y": 5262.589318691077 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554547" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4589.255062721434, + "min_y": 5264.500145646181, + "max_x": 4589.255173924144, + "max_y": 5265.184548465718 + }, + "value": null, + "layer": "0", + "id": "554551" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4586.327902141131, + "min_y": 5270.925631284904, + "max_x": 4592.253480900492, + "max_y": 5272.325811711761 + }, + "value": null, + "layer": "0", + "id": "554552" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4586.650824929352, + "min_y": 5274.095216470201, + "max_x": 4591.330824929352, + "max_y": 5277.3321915554725 + }, + "value": "PI", + "layer": "INSTRUMENT", + "id": "554553" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4586.342871677259, + "min_y": 5275.665278659745, + "max_x": 4592.250369196949, + "max_y": 5278.280246934873 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554556" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4586.31970366331, + "min_y": 5272.325798394479, + "max_x": 4592.254110378208, + "max_y": 5278.278419642985 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554559" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4586.326688934851, + "min_y": 5272.325811711761, + "max_x": 4586.326695593492, + "max_y": 5275.665278659734 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55455B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4456.1149329930395, + "min_y": 5183.625984239059, + "max_x": 4456.709859001818, + "max_y": 5185.041706373073 + }, + "value": null, + "layer": "VV-BALL", + "id": "554564" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3569.457609839342, + "min_y": 5237.002237481441, + "max_x": 3569.457609839342, + "max_y": 5243.951392656621 + }, + "value": null, + "layer": "0", + "id": "554572" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3551.646343745558, + "min_y": 5231.517556058071, + "max_x": 3556.410841036924, + "max_y": 5233.785985677525 + }, + "value": null, + "layer": "0", + "id": "554574" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3556.410841036924, + "min_y": 5231.517556058071, + "max_x": 3561.079292810526, + "max_y": 5233.785985677525 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554575" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3562.523837148646, + "min_y": 5228.743685022075, + "max_x": 3565.1518371486463, + "max_y": 5233.728881704918 + }, + "value": "25A", + "layer": "0", + "id": "55457E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3561.9498497471, + "min_y": 5230.992333734891, + "max_x": 3663.165641054177, + "max_y": 5234.364272796435 + }, + "value": null, + "layer": "0", + "id": "55457F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3561.079225682648, + "min_y": 5230.992341158493, + "max_x": 3561.949854229862, + "max_y": 5234.364265372855 + }, + "value": null, + "layer": "0", + "id": "554580" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3554.668318649966, + "min_y": 5213.692240231861, + "max_x": 3561.155228933227, + "max_y": 5215.960669851315 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554589" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3551.646343722139, + "min_y": 5213.692240231861, + "max_x": 3553.921731083036, + "max_y": 5215.960669851315 + }, + "value": null, + "layer": "VV-GLOBE", + "id": "554591" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3562.599903675761, + "min_y": 5210.918369195866, + "max_x": 3565.2279036757614, + "max_y": 5215.90356587871 + }, + "value": "25A", + "layer": "0", + "id": "554592" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3562.025916274214, + "min_y": 5213.167017908681, + "max_x": 3656.9011068016, + "max_y": 5216.538956970225 + }, + "value": null, + "layer": "0", + "id": "554593" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3561.155292209763, + "min_y": 5213.167025332285, + "max_x": 3562.025920756977, + "max_y": 5216.538949546645 + }, + "value": null, + "layer": "0", + "id": "554594" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3776.354528610697, + "min_y": 5195.167460711832, + "max_x": 3781.9539353626637, + "max_y": 5196.100695170493 + }, + "value": "2025.06.20", + "layer": "REV.UPDATE", + "id": "55459F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3793.489940360261, + "min_y": 5195.192708537869, + "max_x": 3797.9694657618343, + "max_y": 5196.12594299653 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "5545A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3631.504998399192, + "min_y": 5230.151954627437, + "max_x": 3634.1329983991923, + "max_y": 5231.611954627437 + }, + "value": "25A", + "layer": "0", + "id": "5545A1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3632.13262974807, + "min_y": 5212.058239455496, + "max_x": 3634.76062974807, + "max_y": 5213.518239455496 + }, + "value": "25A", + "layer": "0", + "id": "5545A2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2014.172364116902, + "min_y": 5144.394342586694, + "max_x": 2051.426898449195, + "max_y": 5150.675156363957 + }, + "value": "PIPING & INSTRUMENT DIAGRAM", + "layer": "0", + "id": "5545A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1648.575143658974, + "min_y": 5135.934550405232, + "max_x": 1860.610294578582, + "max_y": 5135.934550405232 + }, + "value": null, + "layer": "0", + "id": "5545A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5250.554515940026, + "max_x": 1799.013755121116, + "max_y": 5251.692640632532 + }, + "value": null, + "layer": "0", + "id": "5545A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1794.97750233254, + "min_y": 5245.329549904759, + "max_x": 1814.048409234812, + "max_y": 5282.765689824337 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5545AE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1794.7711820605275, + "min_y": 5250.772305233042, + "max_x": 1795.4737281670066, + "max_y": 5251.474851339521 + }, + "value": null, + "layer": "0", + "id": "5545AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1785.81266037832, + "min_y": 5245.017507940656, + "max_x": 1803.226176469738, + "max_y": 5278.872608224952 + }, + "value": null, + "layer": "0", + "id": "5545B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1784.279024119311, + "min_y": 5244.978416547634, + "max_x": 1788.690883053169, + "max_y": 5278.911699617974 + }, + "value": null, + "layer": "0", + "id": "5545B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5244.550741971341, + "max_x": 1816.816688204441, + "max_y": 5245.648284530277 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5545B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.49694098285, + "min_y": 5253.222455562198, + "max_x": 1790.302998912537, + "max_y": 5273.333353569952 + }, + "value": null, + "layer": "0", + "id": "5545B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5240.144244551514, + "max_x": 1790.451418543743, + "max_y": 5243.748586530085 + }, + "value": null, + "layer": "0", + "id": "5545BD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1789.5513742110395, + "min_y": 5240.709512543107, + "max_x": 1790.2539203175186, + "max_y": 5241.412058649586 + }, + "value": null, + "layer": "0", + "id": "5545BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5239.817647704501, + "max_x": 1790.451418543743, + "max_y": 5240.144244551514 + }, + "value": null, + "layer": "0", + "id": "5545C0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1784.279024119311, + "min_y": 5258.008185366048, + "max_x": 1784.812626027916, + "max_y": 5259.700734738116 + }, + "value": null, + "layer": "0", + "id": "5545DD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1784.515833035576, + "min_y": 5259.403941745779, + "max_x": 1784.6983614786739, + "max_y": 5259.586470188877 + }, + "value": null, + "layer": "0", + "id": "5545E6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1746.4578547183378, + "min_y": 5229.4661878727975, + "max_x": 1748.140606322654, + "max_y": 5231.148939477113 + }, + "value": null, + "layer": "0", + "id": "5545EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1743.512275005767, + "min_y": 5228.51999091527, + "max_x": 1751.671600244511, + "max_y": 5233.756405761647 + }, + "value": null, + "layer": "0", + "id": "5545ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1734.542005856195, + "min_y": 5228.238786163554, + "max_x": 1741.042425246587, + "max_y": 5230.934771706389 + }, + "value": null, + "layer": "0", + "id": "5545F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1745.778759790176, + "min_y": 5232.567178412802, + "max_x": 1748.819717859251, + "max_y": 5235.188243746954 + }, + "value": null, + "layer": "0", + "id": "5545F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1746.899403823185, + "min_y": 5233.063392949399, + "max_x": 1753.3704793770469, + "max_y": 5234.8048700591435 + }, + "value": "I/P", + "layer": "0", + "id": "5545FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1745.778762645145, + "min_y": 5235.188237683518, + "max_x": 1748.819717859251, + "max_y": 5238.849988683468 + }, + "value": null, + "layer": "0", + "id": "5545FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1734.884318875186, + "min_y": 5226.698073798541, + "max_x": 1736.8300105068852, + "max_y": 5229.396279012325 + }, + "value": "MASS", + "layer": "0", + "id": "5545FF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1733.518041582249, + "min_y": 5230.93383518337, + "max_x": 1738.763604998724, + "max_y": 5241.4727700076055 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554600" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1733.470226028554, + "min_y": 5238.849997405563, + "max_x": 1738.811433439825, + "max_y": 5241.520598448703 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554603" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1733.51804914468, + "min_y": 5236.179385712459, + "max_x": 1747.299242721596, + "max_y": 5241.520587798746 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554606" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1733.470220703577, + "min_y": 5236.179385712459, + "max_x": 1738.811422789873, + "max_y": 5238.849997405554 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554607" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1723.990929007959, + "min_y": 5228.238792539344, + "max_x": 1734.54200906075, + "max_y": 5229.845951463135 + }, + "value": null, + "layer": "0", + "id": "55460D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1750.441289833406, + "min_y": 5235.337882971164, + "max_x": 1752.7925175205116, + "max_y": 5236.644120575112 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "554613" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1749.252454603032, + "min_y": 5231.810082981547, + "max_x": 1756.4528664166114, + "max_y": 5237.434696071515 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554614" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1734.276058988855, + "min_y": 5237.272847841238, + "max_x": 1737.636058988855, + "max_y": 5240.530846357086 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "554615" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1734.27606635627, + "min_y": 5231.808087915322, + "max_x": 1737.6360663562698, + "max_y": 5235.202197602531 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "554617" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1752.065099207407, + "min_y": 5223.386142466768, + "max_x": 1757.40419067726, + "max_y": 5230.89767247271 + }, + "value": null, + "layer": "0", + "id": "554619" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1751.671599202905, + "min_y": 5228.519948499154, + "max_x": 1752.065101216356, + "max_y": 5229.564735943776 + }, + "value": null, + "layer": "0", + "id": "55461A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1741.042424204982, + "min_y": 5226.441871903159, + "max_x": 1745.289393855748, + "max_y": 5229.564750223208 + }, + "value": null, + "layer": "0", + "id": "554621" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1740.546821312215, + "min_y": 5223.386156755885, + "max_x": 1746.074932260215, + "max_y": 5229.042353725715 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554629" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1746.074931218602, + "min_y": 5222.863758108883, + "max_x": 1754.51927591982, + "max_y": 5223.90855047819 + }, + "value": null, + "layer": "0", + "id": "55462C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5219.378533066195, + "max_x": 1723.990965226022, + "max_y": 5239.198218472723 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554636" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5218.809763833195, + "max_x": 1730.683524876805, + "max_y": 5229.942386449368 + }, + "value": null, + "layer": "0", + "id": "554637" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1728.4723641944038, + "min_y": 5227.128819703031, + "max_x": 1730.5358619821911, + "max_y": 5227.89783085591 + }, + "value": null, + "layer": "0", + "id": "55463A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5233.595713276329, + "max_x": 1719.253236520688, + "max_y": 5240.55388197063 + }, + "value": null, + "layer": "0", + "id": "554641" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5235.313718466354, + "max_x": 1720.309866213088, + "max_y": 5241.419269882936 + }, + "value": null, + "layer": "0", + "id": "554642" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5231.010564740718, + "max_x": 1717.985634455599, + "max_y": 5233.430176089168 + }, + "value": null, + "layer": "0", + "id": "554659" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1711.0735986743086, + "min_y": 5225.541405529372, + "max_x": 1717.8261917781638, + "max_y": 5233.06950449263 + }, + "value": null, + "layer": "0", + "id": "55465A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5214.279786060489, + "max_x": 1719.253236520688, + "max_y": 5221.237954754794 + }, + "value": null, + "layer": "0", + "id": "554667" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5215.997791250522, + "max_x": 1721.181087624672, + "max_y": 5222.103342667101 + }, + "value": null, + "layer": "0", + "id": "554668" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.677486895245, + "min_y": 5226.812648172479, + "max_x": 1715.709486895245, + "max_y": 5230.199766631679 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55466D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5211.744026238992, + "max_x": 1717.985634455599, + "max_y": 5214.114248873336 + }, + "value": null, + "layer": "0", + "id": "554670" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1717.3747404132082, + "min_y": 5213.302125911842, + "max_x": 1717.8261917781638, + "max_y": 5213.753577276798 + }, + "value": null, + "layer": "0", + "id": "554671" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5218.880321895316, + "max_x": 1710.290490029283, + "max_y": 5239.204091224103 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55467E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1741.9549339755595, + "min_y": 5228.719888777771, + "max_x": 1742.5998644969245, + "max_y": 5229.364819299136 + }, + "value": null, + "layer": "0", + "id": "554682" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1746.9767627371496, + "min_y": 5228.719921839148, + "max_x": 1747.6216932585146, + "max_y": 5229.3648523605125 + }, + "value": null, + "layer": "0", + "id": "554683" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1752.5840107533545, + "min_y": 5228.719874498534, + "max_x": 1753.2289412747195, + "max_y": 5229.364805019899 + }, + "value": null, + "layer": "0", + "id": "554684" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1746.9874409891816, + "min_y": 5223.06368903276, + "max_x": 1747.6323715105466, + "max_y": 5223.708619554124 + }, + "value": null, + "layer": "0", + "id": "554685" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1803.2782533334139, + "min_y": 5250.431139720693, + "max_x": 1808.9924453350122, + "max_y": 5268.933123578236 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554687" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1816.000654109004, + "min_y": 5238.229322185361, + "max_x": 1821.253142670203, + "max_y": 5258.346684028658 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554689" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.518398691421, + "min_y": 5204.731862137024, + "max_x": 1839.753081319064, + "max_y": 5210.522906783691 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55468D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1835.4635260965533, + "min_y": 5206.274573420106, + "max_x": 1839.4316777878485, + "max_y": 5210.242725111401 + }, + "value": null, + "layer": "0", + "id": "55468E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.14212256534, + "min_y": 5204.731862137024, + "max_x": 1839.753081319064, + "max_y": 5204.731862137024 + }, + "value": null, + "layer": "0", + "id": "554691" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.273847922835, + "min_y": 5219.700148824673, + "max_x": 1858.9681620271, + "max_y": 5222.636979760496 + }, + "value": null, + "layer": "0", + "id": "554692" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1858.9681620271, + "min_y": 5219.700148824673, + "max_x": 1863.014745422507, + "max_y": 5221.450885077643 + }, + "value": null, + "layer": "0", + "id": "554693" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1863.443399146919, + "min_y": 5218.01128693478, + "max_x": 1869.639263842213, + "max_y": 5221.951902627873 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554695" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1869.639263842213, + "min_y": 5220.004637750619, + "max_x": 1873.851138302384, + "max_y": 5221.142762443129 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554696" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.851138302384, + "min_y": 5214.595353543229, + "max_x": 1918.036184530109, + "max_y": 5221.142762443129 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554697" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1867.8061817525645, + "min_y": 5221.035361583047, + "max_x": 1869.6392638422153, + "max_y": 5222.868443672699 + }, + "value": null, + "layer": "0", + "id": "55469C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1868.846848436817, + "min_y": 5214.026291196979, + "max_x": 1875.834328234822, + "max_y": 5215.164415889483 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5546A7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1869.4121164284034, + "min_y": 5214.244080489991, + "max_x": 1870.1146625348824, + "max_y": 5214.946626596469 + }, + "value": null, + "layer": "0", + "id": "5546A9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1862.509143928532, + "min_y": 5214.042241890036, + "max_x": 1868.846848436817, + "max_y": 5216.466767698076 + }, + "value": null, + "layer": "0", + "id": "5546AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1867.06641163295, + "min_y": 5222.632681229795, + "max_x": 1871.538344273301, + "max_y": 5231.194258871269 + }, + "value": null, + "layer": "0", + "id": "5546AC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1837.0070724232257, + "min_y": 5207.818119746778, + "max_x": 1837.888131461176, + "max_y": 5208.699178784729 + }, + "value": null, + "layer": "0", + "id": "5546AE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1839.0993979490424, + "min_y": 5237.488071525936, + "max_x": 1839.8019440555215, + "max_y": 5238.190617632415 + }, + "value": null, + "layer": "0", + "id": "5546AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5217.519392983405, + "max_x": 1841.606006065156, + "max_y": 5238.755885623998 + }, + "value": null, + "layer": "0", + "id": "5546B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1822.439895039156, + "min_y": 5207.148792250803, + "max_x": 1827.728028117087, + "max_y": 5208.827711612007 + }, + "value": null, + "layer": "0", + "id": "5546B4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1823.0051630307435, + "min_y": 5207.9073762125145, + "max_x": 1823.7077091372225, + "max_y": 5208.609922318993 + }, + "value": null, + "layer": "0", + "id": "5546B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1826.895635355869, + "min_y": 5204.4764968597, + "max_x": 1831.174054634966, + "max_y": 5208.825894757724 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5546B8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1828.3579866333864, + "min_y": 5205.041764851287, + "max_x": 1829.0605327398655, + "max_y": 5205.744310957765 + }, + "value": null, + "layer": "0", + "id": "5546B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.157851036437, + "min_y": 5202.445384002632, + "max_x": 1829.25803096609, + "max_y": 5204.4764968597 + }, + "value": null, + "layer": "0", + "id": "5546BB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1831.174054634966, + "min_y": 5207.687770065223, + "max_x": 1831.500651481987, + "max_y": 5208.825894757724 + }, + "value": null, + "layer": "0", + "id": "5546BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1816.000654109004, + "min_y": 5207.689586919507, + "max_x": 1822.439895039156, + "max_y": 5208.827711612007 + }, + "value": null, + "layer": "0", + "id": "5546C1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1841.164810953647, + "min_y": 5217.311825629736, + "max_x": 1857.8408807492365, + "max_y": 5222.191023308751 + }, + "value": "MASS", + "layer": "0", + "id": "5546C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1854.3651606325388, + "min_y": 5222.635945550065, + "max_x": 1860.0829354522502, + "max_y": 5234.116385563452 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1862.509143928532, + "min_y": 5214.595353543236, + "max_x": 1863.443399146919, + "max_y": 5221.142762443126 + }, + "value": null, + "layer": "0", + "id": "5546CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1867.936043787478, + "min_y": 5218.85285041754, + "max_x": 1871.042179729771, + "max_y": 5222.303328309045 + }, + "value": "15A", + "layer": "0", + "id": "5546DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1838.884143164882, + "min_y": 5210.522906783691, + "max_x": 1840.001976790598, + "max_y": 5210.822719526062 + }, + "value": null, + "layer": "0", + "id": "5546DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5261.235186100197, + "max_x": 1825.24024063888, + "max_y": 5310.98756874837 + }, + "value": null, + "layer": "0", + "id": "5546DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1814.185045736909, + "min_y": 5280.651297091484, + "max_x": 1825.240240638877, + "max_y": 5281.789421783984 + }, + "value": null, + "layer": "0", + "id": "5546DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1814.388813514137, + "min_y": 5264.212858534174, + "max_x": 1816.139922305365, + "max_y": 5267.334071769655 + }, + "value": null, + "layer": "0", + "id": "5546E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1814.878708784668, + "min_y": 5264.499169203115, + "max_x": 1816.139922305365, + "max_y": 5264.499169203115 + }, + "value": null, + "layer": "0", + "id": "5546E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1808.992364031294, + "min_y": 5253.288226429646, + "max_x": 1817.653593987348, + "max_y": 5260.406978012598 + }, + "value": null, + "layer": "0", + "id": "5546E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1803.85293862606, + "min_y": 5258.528016213394, + "max_x": 1807.88493862606, + "max_y": 5265.362189631302 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "5546E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1804.459912963356, + "min_y": 5266.711449683783, + "max_x": 1807.5948832128302, + "max_y": 5268.017687287731 + }, + "value": "TICA", + "layer": "INSTRUMENT", + "id": "5546E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.747675450243, + "min_y": 5238.755885623998, + "max_x": 1845.855508124698, + "max_y": 5268.801053502036 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5546E8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1828.578852104589, + "min_y": 5252.978217911215, + "max_x": 1832.4975649164319, + "max_y": 5256.7598852402825 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "5546E9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1827.8951814889037, + "min_y": 5251.963760588096, + "max_x": 1833.60935490681, + "max_y": 5257.677934006002 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1849.092691031158, + "min_y": 5223.578739061446, + "max_x": 1860.5154808051707, + "max_y": 5227.22593541326 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "5546EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1868.287168980928, + "min_y": 5226.042652812854, + "max_x": 1874.7772304902649, + "max_y": 5228.590140356684 + }, + "value": "I/P", + "layer": "0", + "id": "5546F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1871.584655162457, + "min_y": 5229.762407607473, + "max_x": 1873.9358828495626, + "max_y": 5231.0686452114205 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "5546F1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1870.1748470627379, + "min_y": 5226.275133034441, + "max_x": 1875.8890204806441, + "max_y": 5231.989306452347 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5289.264905812547, + "max_x": 1828.237456788005, + "max_y": 5290.36244837148 + }, + "value": null, + "layer": "0", + "id": "5546F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1855.052432650029, + "min_y": 5229.345005656923, + "max_x": 1858.9711454618719, + "max_y": 5233.027470424044 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "5546F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5231.259298854499, + "max_x": 1860.135030899625, + "max_y": 5234.168481010826 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5228.350116698163, + "max_x": 1860.135030899625, + "max_y": 5234.168481010826 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5228.350116698158, + "max_x": 1860.135030899625, + "max_y": 5231.259298854485 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546FB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1803.226176469733, + "min_y": 5266.128132316669, + "max_x": 1809.044540782386, + "max_y": 5269.037314472999 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5546FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1803.226176469738, + "min_y": 5263.218950160337, + "max_x": 1809.044540782386, + "max_y": 5269.037314472992 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554702" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1803.226176469733, + "min_y": 5263.218950160337, + "max_x": 1809.044540782386, + "max_y": 5266.128132316659 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554703" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1825.240240638877, + "min_y": 5273.578659038753, + "max_x": 1828.319021725823, + "max_y": 5277.248211845573 + }, + "value": null, + "layer": "0", + "id": "554707" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.319021725823, + "min_y": 5264.62186459932, + "max_x": 1831.125973579331, + "max_y": 5274.716783731254 + }, + "value": null, + "layer": "0", + "id": "554708" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1814.048409234812, + "min_y": 5276.14689591677, + "max_x": 1816.139922305365, + "max_y": 5277.285020609269 + }, + "value": null, + "layer": "0", + "id": "554713" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1803.852920042366, + "min_y": 5251.454379191665, + "max_x": 1807.8849200423658, + "max_y": 5255.22726437289 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "554714" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1824.163829258627, + "min_y": 5261.28077648974, + "max_x": 1828.319021725831, + "max_y": 5263.673059403966 + }, + "value": null, + "layer": "0", + "id": "554715" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1818.0199258023479, + "min_y": 5262.063930867823, + "max_x": 1822.8720555561483, + "max_y": 5272.021124922608 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554717" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5269.331623629128, + "max_x": 1821.015053025499, + "max_y": 5272.586392914195 + }, + "value": null, + "layer": "0", + "id": "554718" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5272.586392914195, + "max_x": 1821.015053025499, + "max_y": 5273.743547790451 + }, + "value": null, + "layer": "0", + "id": "554719" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5261.498662876237, + "max_x": 1821.015053025499, + "max_y": 5264.479493875326 + }, + "value": null, + "layer": "0", + "id": "55471A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5260.233088910384, + "max_x": 1821.015053025499, + "max_y": 5261.498662876237 + }, + "value": null, + "layer": "0", + "id": "55471B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1819.9614958040831, + "min_y": 5273.007222262938, + "max_x": 1820.930485554413, + "max_y": 5273.976212013268 + }, + "value": null, + "layer": "0", + "id": "554720" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1819.9614958040831, + "min_y": 5260.000424687566, + "max_x": 1820.930485554413, + "max_y": 5260.969414437896 + }, + "value": null, + "layer": "0", + "id": "554721" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5276.679149499321, + "max_x": 1829.448919966987, + "max_y": 5279.819262767507 + }, + "value": null, + "layer": "0", + "id": "554726" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5279.819262767507, + "max_x": 1831.355754813028, + "max_y": 5283.336416615721 + }, + "value": null, + "layer": "0", + "id": "554727" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1828.5488756342816, + "min_y": 5278.551448669444, + "max_x": 1829.2514217407606, + "max_y": 5279.253994775922 + }, + "value": null, + "layer": "0", + "id": "554729" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.21488338915, + "min_y": 5284.266999017161, + "max_x": 1830.9173387633614, + "max_y": 5287.926406478918 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55472C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1826.043061978568, + "min_y": 5280.6682904860645, + "max_x": 1832.0975673300413, + "max_y": 5290.164950145253 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55472D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1826.5578652696993, + "min_y": 5277.904147410748, + "max_x": 1831.242432105343, + "max_y": 5282.588714246392 + }, + "value": null, + "layer": "0", + "id": "55472E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5276.130378219853, + "max_x": 1826.485939636173, + "max_y": 5277.227920778786 + }, + "value": null, + "layer": "0", + "id": "554730" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1827.0512076277605, + "min_y": 5273.796448331762, + "max_x": 1827.7537537342396, + "max_y": 5274.4989944382405 + }, + "value": null, + "layer": "0", + "id": "554735" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1867.06641163295, + "min_y": 5225.708850856568, + "max_x": 1867.06641163295, + "max_y": 5227.268600377549 + }, + "value": null, + "layer": "0", + "id": "554759" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1831.9317593200556, + "min_y": 5208.0412784924365, + "max_x": 1834.518406348484, + "max_y": 5208.472386330511 + }, + "value": null, + "layer": "0", + "id": "554770" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1831.5006514819886, + "min_y": 5208.041278492439, + "max_x": 1831.9317593200574, + "max_y": 5208.472386330508 + }, + "value": null, + "layer": "0", + "id": "554777" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.026623044372, + "min_y": 5295.115117686822, + "max_x": 1824.428489204779, + "max_y": 5296.380276223642 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554787" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.237456788005, + "min_y": 5289.244614745764, + "max_x": 1845.855508124695, + "max_y": 5290.382739438265 + }, + "value": null, + "layer": "0", + "id": "55479D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1830.378562816382, + "min_y": 5257.677934006002, + "max_x": 1831.125973579331, + "max_y": 5261.965461451028 + }, + "value": null, + "layer": "0", + "id": "5547A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1799.013755121116, + "min_y": 5247.092553935177, + "max_x": 1818.327884903895, + "max_y": 5264.186186060115 + }, + "value": null, + "layer": "0", + "id": "5547A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1823.052278040682, + "min_y": 5250.750699463858, + "max_x": 1830.752268197857, + "max_y": 5251.963760588095 + }, + "value": null, + "layer": "0", + "id": "5547A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.260458853376, + "min_y": 5307.636796292811, + "max_x": 1816.139922305365, + "max_y": 5308.734338851744 + }, + "value": null, + "layer": "0", + "id": "5547AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.100960144423, + "min_y": 5306.594594316831, + "max_x": 1811.132960144423, + "max_y": 5310.139627247959 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "5547B2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1806.5462854354698, + "min_y": 5299.271559282769, + "max_x": 1812.2604588533761, + "max_y": 5316.756827699136 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547B3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1799.74103562815, + "min_y": 5300.53767273628, + "max_x": 1813.851540643107, + "max_y": 5305.450766777838 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5547B4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.100960144423, + "min_y": 5312.30876773473, + "max_x": 1811.132960144423, + "max_y": 5315.841391408625 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "5547B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5313.899740990183, + "max_x": 1812.312554300751, + "max_y": 5316.808923146513 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5310.990558833855, + "max_x": 1812.312554300751, + "max_y": 5316.80892314651 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5310.99055883385, + "max_x": 1812.312554300751, + "max_y": 5313.899740990183 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1872.583101589676, + "min_y": 5258.321031006152, + "max_x": 1884.6778201739248, + "max_y": 5259.440912356546 + }, + "value": "N2-10701-25A-F1A-n", + "layer": "LINENO", + "id": "5547C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1834.021035640594, + "min_y": 5284.511552999695, + "max_x": 1838.7234910148054, + "max_y": 5287.9414282113585 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5547C6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1833.8492142300158, + "min_y": 5280.6682904860645, + "max_x": 1845.3296565132002, + "max_y": 5289.0505900336275 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1766.686883289046, + "min_y": 5278.5525702374, + "max_x": 1812.025493025454, + "max_y": 5348.257015616176 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5547C8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1864.0086671385054, + "min_y": 5220.222427043632, + "max_x": 1864.7112132449845, + "max_y": 5220.92497315011 + }, + "value": null, + "layer": "0", + "id": "5547CA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1872.5833242043204, + "min_y": 5220.2224270436345, + "max_x": 1873.2858703107995, + "max_y": 5220.924973150113 + }, + "value": null, + "layer": "0", + "id": "5547CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1839.787304505872, + "min_y": 5284.511552999691, + "max_x": 1844.4897598800835, + "max_y": 5288.135153743113 + }, + "value": "PIA", + "layer": "INSTRUMENT", + "id": "5547CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5286.193503324675, + "max_x": 1845.381751960575, + "max_y": 5289.102685481001 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5274.632090628273, + "max_x": 1845.855508124697, + "max_y": 5289.813677092011 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.75129740552, + "min_y": 5280.434748919798, + "max_x": 1845.381751960575, + "max_y": 5286.193503324667 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1889.592650787688, + "min_y": 5255.621526311653, + "max_x": 1899.1059697546, + "max_y": 5259.588626458295 + }, + "value": null, + "layer": "0", + "id": "5547D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1892.29569157217, + "min_y": 5256.858002142721, + "max_x": 1894.0875017327994, + "max_y": 5258.351177276579 + }, + "value": "N2", + "layer": "0", + "id": "5547D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1869.241257337358, + "min_y": 5255.621526311649, + "max_x": 1889.592650787692, + "max_y": 5259.588626458292 + }, + "value": null, + "layer": "TEXT", + "id": "5547DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.2536999579, + "min_y": 5310.98756874837, + "max_x": 1828.879514419387, + "max_y": 5384.503390713059 + }, + "value": null, + "layer": "0", + "id": "5547DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1822.290472327583, + "min_y": 5310.987568748367, + "max_x": 1828.900148687521, + "max_y": 5384.503390713059 + }, + "value": null, + "layer": "0", + "id": "5547E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1833.616047306756, + "min_y": 5386.553808267012, + "max_x": 1838.3185026809674, + "max_y": 5390.191891726107 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5547EE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1826.043061978568, + "min_y": 5382.705427337601, + "max_x": 1839.4754149064204, + "max_y": 5391.097682256914 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5547EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1820.162596322699, + "min_y": 5387.396925203081, + "max_x": 1821.262051046941, + "max_y": 5402.849240825297 + }, + "value": null, + "layer": "0", + "id": "5547F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1818.524596187449, + "min_y": 5376.30507185364, + "max_x": 1822.558545512281, + "max_y": 5377.00238079994 + }, + "value": null, + "layer": "0", + "id": "5547F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.059711563076, + "min_y": 5370.780516674215, + "max_x": 1811.091711563076, + "max_y": 5374.329582420183 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "554807" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1806.5295711682402, + "min_y": 5362.997414904435, + "max_x": 1812.2536999579038, + "max_y": 5380.959501740652 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554808" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.059711563068, + "min_y": 5364.266687417313, + "max_x": 1811.091711563068, + "max_y": 5367.800731430836 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "554809" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.584784717438, + "min_y": 5350.398691867429, + "max_x": 1831.817087722598, + "max_y": 5353.591804550453 + }, + "value": null, + "layer": "0", + "id": "55480C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1806.671950903837, + "min_y": 5376.413668394341, + "max_x": 1811.3744062780484, + "max_y": 5380.041301952608 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "554812" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1865.22403391842, + "min_y": 5275.132169541246, + "max_x": 1870.895275422603, + "max_y": 5280.406147171428 + }, + "value": null, + "layer": "0", + "id": "554814" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1866.598246832771, + "min_y": 5276.677568573403, + "max_x": 1870.573311934345, + "max_y": 5280.652633674978 + }, + "value": null, + "layer": "0", + "id": "554815" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1866.276283344519, + "min_y": 5275.132169541246, + "max_x": 1870.895275422603, + "max_y": 5275.132169541246 + }, + "value": null, + "layer": "0", + "id": "554818" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1852.278416115252, + "min_y": 5277.290962980335, + "max_x": 1856.665438966647, + "max_y": 5279.250755054339 + }, + "value": null, + "layer": "0", + "id": "55481B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1852.8446689304674, + "min_y": 5278.328816224156, + "max_x": 1853.5484390298407, + "max_y": 5279.032586323529 + }, + "value": null, + "layer": "0", + "id": "55481C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.860626984775, + "min_y": 5278.126625976088, + "max_x": 1852.278416115252, + "max_y": 5293.860474636695 + }, + "value": null, + "layer": "0", + "id": "55481D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1856.665438966647, + "min_y": 5274.876359360327, + "max_x": 1860.86073420756, + "max_y": 5279.338963341189 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554820" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1858.2209351065894, + "min_y": 5275.442612175542, + "max_x": 1858.9247052059627, + "max_y": 5276.146382274916 + }, + "value": null, + "layer": "0", + "id": "554821" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1858.021172278132, + "min_y": 5273.662695860427, + "max_x": 1859.120627002371, + "max_y": 5274.874023470518 + }, + "value": null, + "layer": "0", + "id": "554823" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1870.571051299674, + "min_y": 5298.353814536836, + "max_x": 1880.447082169889, + "max_y": 5307.462518167884 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554824" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1848.336856804559, + "min_y": 5368.769988014081, + "max_x": 1858.138781173194, + "max_y": 5377.002380799905 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554825" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1838.751573862065, + "min_y": 5368.785966496821, + "max_x": 1848.336856804559, + "max_y": 5377.002380799903 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554826" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1848.9031096197714, + "min_y": 5368.988156744889, + "max_x": 1849.6068797191447, + "max_y": 5369.6919268442625 + }, + "value": null, + "layer": "0", + "id": "554828" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1829.30891495473, + "min_y": 5376.345558781622, + "max_x": 1842.013325727698, + "max_y": 5379.696720682373 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55482B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1864.998323234719, + "min_y": 5376.123667566147, + "max_x": 1874.383680186803, + "max_y": 5377.877453994353 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55482E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1874.383680186803, + "min_y": 5376.345558781622, + "max_x": 1910.439701002516, + "max_y": 5377.658413938176 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55482F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1889.101435513465, + "min_y": 5305.000393885825, + "max_x": 1895.385369529596, + "max_y": 5307.960995617094 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554832" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1876.537679094867, + "min_y": 5309.159460107327, + "max_x": 1880.4563919067098, + "max_y": 5312.889461876106 + }, + "value": "FIT", + "layer": "TEXT", + "id": "554835" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1893.5490937997968, + "min_y": 5307.042857752194, + "max_x": 1895.3853695295973, + "max_y": 5308.879133481994 + }, + "value": null, + "layer": "0", + "id": "554836" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1894.467231664697, + "min_y": 5306.010338167668, + "max_x": 1898.307110351366, + "max_y": 5313.616594066942 + }, + "value": null, + "layer": "0", + "id": "55483B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1892.808034834711, + "min_y": 5310.066880800286, + "max_x": 1896.126428494689, + "max_y": 5313.286956246754 + }, + "value": null, + "layer": "0", + "id": "554842" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1894.030919015792, + "min_y": 5312.058872806431, + "max_x": 1895.488442886369, + "max_y": 5312.868608290085 + }, + "value": "I/P", + "layer": "0", + "id": "554844" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1892.713222944668, + "min_y": 5300.105588632904, + "max_x": 1900.255941026802, + "max_y": 5306.568639705851 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554845" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1888.16003437362, + "min_y": 5300.105588632904, + "max_x": 1892.713222944668, + "max_y": 5306.582101954012 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554846" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1893.2794757598833, + "min_y": 5300.323757363712, + "max_x": 1893.9832458592566, + "max_y": 5301.027527463085 + }, + "value": null, + "layer": "0", + "id": "554848" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1898.278752838087, + "min_y": 5313.834605968043, + "max_x": 1902.1974656499299, + "max_y": 5317.449999220294 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "55484A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1872.655436186285, + "min_y": 5314.988232350737, + "max_x": 1880.4563919067189, + "max_y": 5320.027948608109 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "55484B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1875.8490307933032, + "min_y": 5308.322203102607, + "max_x": 1881.5731595829627, + "max_y": 5319.822646891258 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55484C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5314.046331892274, + "max_x": 1881.625345792286, + "max_y": 5319.874833100585 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55484D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1868.1444823633526, + "min_y": 5278.223804103985, + "max_x": 1869.0270764037634, + "max_y": 5279.106398144396 + }, + "value": null, + "layer": "0", + "id": "55484F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5344.040151390164, + "max_x": 1811.094567563076, + "max_y": 5347.589217136138 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "554854" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5336.712704770098, + "max_x": 1812.2536999579038, + "max_y": 5354.2191364566015 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554855" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5349.764280179822, + "max_x": 1811.094567563076, + "max_y": 5353.300936668549 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "554856" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1886.771005802646, + "min_y": 5313.286956246754, + "max_x": 1896.126428494689, + "max_y": 5316.943591733486 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554858" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5378.097437345824, + "max_x": 1812.30588616723, + "max_y": 5381.011687949983 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554859" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.529571168248, + "min_y": 5375.183186741665, + "max_x": 1812.30588616723, + "max_y": 5381.011687949979 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55485C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5375.183186741661, + "max_x": 1812.30588616723, + "max_y": 5378.097437345821 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55485D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5351.357072061774, + "max_x": 1812.30588616723, + "max_y": 5354.27132266593 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554861" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.529571168248, + "min_y": 5348.442821457616, + "max_x": 1812.30588616723, + "max_y": 5354.27132266593 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554864" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5348.442821457612, + "max_x": 1812.30588616723, + "max_y": 5351.357072061766 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554865" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1820.698008870138, + "min_y": 5398.30434323342, + "max_x": 1927.610778354268, + "max_y": 5406.594862227342 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554869" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.176889347542, + "min_y": 5318.705269262345, + "max_x": 1881.625345792286, + "max_y": 5321.050788721521 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55486A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5314.046331892267, + "max_x": 1881.625345792286, + "max_y": 5314.046331892274 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55486E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1822.290472327583, + "min_y": 5350.657377711077, + "max_x": 1822.290472327583, + "max_y": 5354.589217985086 + }, + "value": null, + "layer": "0", + "id": "554874" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1860.86073420756, + "min_y": 5278.093227324045, + "max_x": 1862.201029116484, + "max_y": 5279.233334885034 + }, + "value": null, + "layer": "0", + "id": "554878" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1842.013325727698, + "min_y": 5376.43232701941, + "max_x": 1851.140610652061, + "max_y": 5379.719565834268 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55487C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1855.013050906426, + "min_y": 5376.123667566147, + "max_x": 1864.998323234719, + "max_y": 5377.877453994353 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55487D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1847.8662416123398, + "min_y": 5377.464846603936, + "max_x": 1849.7025173421403, + "max_y": 5379.301122333736 + }, + "value": null, + "layer": "0", + "id": "55487E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1848.78437947724, + "min_y": 5375.420672731719, + "max_x": 1854.685885054444, + "max_y": 5382.146478144012 + }, + "value": null, + "layer": "0", + "id": "554883" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.125182647251, + "min_y": 5380.488869652026, + "max_x": 1850.443576307232, + "max_y": 5383.708945098497 + }, + "value": null, + "layer": "0", + "id": "55488A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1848.348066828335, + "min_y": 5380.394800742405, + "max_x": 1854.690543420989, + "max_y": 5383.879624254828 + }, + "value": "I/P", + "layer": "0", + "id": "55488C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1848.4324944275534, + "min_y": 5376.650495750218, + "max_x": 1856.2830738210146, + "max_y": 5384.803048993288 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55488E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.125182647251, + "min_y": 5383.708945098497, + "max_x": 1863.828742149476, + "max_y": 5387.294569625264 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554890" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1864.569576660359, + "min_y": 5379.828907016638, + "max_x": 1868.4882894722018, + "max_y": 5383.385692208949 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "554896" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1863.8809283588002, + "min_y": 5378.788869604578, + "max_x": 1869.6050571484557, + "max_y": 5390.28931339322 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554897" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1864.56957666035, + "min_y": 5385.553035806303, + "max_x": 1868.488289472193, + "max_y": 5389.197275623243 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "554899" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5384.512998394233, + "max_x": 1869.657243357782, + "max_y": 5387.427248998388 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55489B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1863.8809283588, + "min_y": 5384.512998394241, + "max_x": 1869.657243357782, + "max_y": 5390.341499602552 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55489E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1827.713329488754, + "min_y": 5354.5007755288, + "max_x": 1831.3409387494562, + "max_y": 5357.297221003489 + }, + "value": "LG", + "layer": "0", + "id": "55489F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1826.9309932489934, + "min_y": 5351.906064065563, + "max_x": 1831.9926990873664, + "max_y": 5359.602843232121 + }, + "value": null, + "layer": "0", + "id": "5548A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.687019400801, + "min_y": 5358.007562054646, + "max_x": 1829.78482033527, + "max_y": 5359.821011962928 + }, + "value": null, + "layer": "0", + "id": "5548A1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1877.386028528952, + "min_y": 5304.352661753224, + "max_x": 1879.480184388873, + "max_y": 5306.971821054704 + }, + "value": "MASS", + "layer": "0", + "id": "5548AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1878.702412650977, + "min_y": 5305.708731739681, + "max_x": 1881.710432710428, + "max_y": 5308.322295392865 + }, + "value": null, + "layer": "0", + "id": "5548AC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1865.426608631604, + "min_y": 5374.773635323133, + "max_x": 1867.4812400496762, + "max_y": 5377.3867568811675 + }, + "value": "MASS", + "layer": "0", + "id": "5548AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1866.742992753629, + "min_y": 5377.877453994353, + "max_x": 1866.74299275364, + "max_y": 5378.788869604578 + }, + "value": null, + "layer": "0", + "id": "5548AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1884.434459508051, + "min_y": 5306.012048173517, + "max_x": 1889.101435513465, + "max_y": 5307.152155734507 + }, + "value": null, + "layer": "0", + "id": "5548B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1898.498498972937, + "min_y": 5306.012158187315, + "max_x": 1903.156206448756, + "max_y": 5307.152265748306 + }, + "value": null, + "layer": "0", + "id": "5548BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.685885054444, + "min_y": 5376.448305502153, + "max_x": 1855.013050906426, + "max_y": 5377.560096136958 + }, + "value": null, + "layer": "0", + "id": "5548C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1873.1136572722173, + "min_y": 5376.648675730562, + "max_x": 1873.8174273715906, + "max_y": 5377.352445829935 + }, + "value": null, + "layer": "0", + "id": "5548C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1869.926510851508, + "min_y": 5280.406147171433, + "max_x": 1871.220113017184, + "max_y": 5281.676139232837 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5548CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1866.642689841132, + "min_y": 5288.361994005974, + "max_x": 1874.302449192673, + "max_y": 5298.026648684858 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5548CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.35125239, + "min_y": 5372.819500381088, + "max_x": 1827.35125239, + "max_y": 5373.918955105331 + }, + "value": null, + "layer": "0", + "id": "5548D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.35125239, + "min_y": 5346.853825928842, + "max_x": 1827.35125239, + "max_y": 5347.953280653086 + }, + "value": null, + "layer": "0", + "id": "5548D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5278.673702259149, + "max_x": 1848.410354346787, + "max_y": 5313.435380313224 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5548DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.189654198787, + "min_y": 5337.544318075114, + "max_x": 1848.531599770544, + "max_y": 5351.063091269196 + }, + "value": null, + "layer": "0", + "id": "5548E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1844.9220639873, + "min_y": 5316.380402526168, + "max_x": 1881.841653562706, + "max_y": 5336.107659555014 + }, + "value": null, + "layer": "0", + "id": "5548E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1842.89169949435, + "min_y": 5316.336146652043, + "max_x": 1847.406722662819, + "max_y": 5336.151915429142 + }, + "value": null, + "layer": "0", + "id": "5548E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1854.152636664771, + "min_y": 5331.320711253046, + "max_x": 1854.152636664774, + "max_y": 5333.271328685345 + }, + "value": null, + "layer": "0", + "id": "5548F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1851.467371366398, + "min_y": 5334.449624128695, + "max_x": 1856.1698267406096, + "max_y": 5337.868151289714 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5548F7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1851.2905722699463, + "min_y": 5333.271328685346, + "max_x": 1862.5346997032427, + "max_y": 5343.184719578545 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5548F8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1839.89778807385, + "min_y": 5403.449010130792, + "max_x": 1854.008293088807, + "max_y": 5404.568891481185 + }, + "value": "P-10138-600A-F2A-H100", + "layer": "LINENO", + "id": "5548FC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1878.944765996558, + "min_y": 5378.543578374573, + "max_x": 1890.3675557705708, + "max_y": 5379.663459724967 + }, + "value": "P-10143-32A-F2A-n", + "layer": "LINENO", + "id": "5548FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1832.504381413272, + "min_y": 5351.488389033776, + "max_x": 1843.9271711872848, + "max_y": 5352.608270384169 + }, + "value": "P-10127-65A-F2A-n", + "layer": "LINENO", + "id": "5548FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1851.794820916603, + "min_y": 5311.921537107004, + "max_x": 1862.9936344205369, + "max_y": 5313.788006024326 + }, + "value": "E-10117", + "layer": "0", + "id": "554904" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1856.420392679606, + "min_y": 5270.186759627575, + "max_x": 1861.76160009088, + "max_y": 5272.857360670715 + }, + "value": null, + "layer": "0", + "id": "55495A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1862.6328880411043, + "min_y": 5278.447351642228, + "max_x": 1865.2240415888223, + "max_y": 5278.879210566851 + }, + "value": null, + "layer": "0", + "id": "55496C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1862.2010291164822, + "min_y": 5278.44735164223, + "max_x": 1862.6328880411, + "max_y": 5278.879210566848 + }, + "value": null, + "layer": "0", + "id": "554973" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1843.894020925085, + "min_y": 5316.36654662037, + "max_x": 1851.746685253218, + "max_y": 5318.994718083283 + }, + "value": null, + "layer": "0", + "id": "554974" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1844.090365488413, + "min_y": 5316.85697531061, + "max_x": 1845.696320349244, + "max_y": 5316.85697531061 + }, + "value": null, + "layer": "0", + "id": "554976" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1840.066223419219, + "min_y": 5316.91610535787, + "max_x": 1841.634056951408, + "max_y": 5318.2226333013605 + }, + "value": "SG", + "layer": "0", + "id": "554979" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1838.8529927625086, + "min_y": 5315.297631844503, + "max_x": 1843.5181344003695, + "max_y": 5319.962773482363 + }, + "value": null, + "layer": "0", + "id": "55497A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1851.7466852532182, + "min_y": 5315.047062451439, + "max_x": 1863.1949428325277, + "max_y": 5320.771191241095 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554981" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1852.61433319217, + "min_y": 5316.245460072689, + "max_x": 1856.533046004013, + "max_y": 5319.621360142134 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "554982" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5246.203297543613, + "max_x": 1910.873297418609, + "max_y": 5294.049677580845 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554987" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1903.156224627392, + "min_y": 5296.540285014605, + "max_x": 1907.231535456273, + "max_y": 5307.261677199435 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554988" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1871.595224411654, + "min_y": 5331.320711253045, + "max_x": 1876.853807280754, + "max_y": 5336.659337262659 + }, + "value": null, + "layer": "WATER", + "id": "554993" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5283.709212424537, + "max_x": 1910.873297418612, + "max_y": 5284.718501212824 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554995" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1842.89169949435, + "min_y": 5323.353447645463, + "max_x": 1843.426231057162, + "max_y": 5325.048945818167 + }, + "value": null, + "layer": "0", + "id": "55499C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1843.128920984859, + "min_y": 5324.75163574587, + "max_x": 1843.311767433445, + "max_y": 5324.934482194456 + }, + "value": null, + "layer": "0", + "id": "5549A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1847.409764248356, + "min_y": 5290.660806491195, + "max_x": 1858.8325540223686, + "max_y": 5291.780687841589 + }, + "value": "P-10128-50A-F2A-n", + "layer": "LINENO", + "id": "5549AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5283.709212424537, + "max_x": 2005.290227918805, + "max_y": 5287.70485148054 + }, + "value": null, + "layer": "0", + "id": "5549AD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5283.888404452338, + "max_x": 1910.3494321584587, + "max_y": 5284.534458587326 + }, + "value": null, + "layer": "0", + "id": "5549AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5279.486421949474, + "max_x": 1966.42686520761, + "max_y": 5280.495710737759 + }, + "value": null, + "layer": "0", + "id": "5549B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5279.665613977274, + "max_x": 1910.3494321584587, + "max_y": 5280.311668112262 + }, + "value": null, + "layer": "0", + "id": "5549B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1881.348383778283, + "min_y": 5323.944127422869, + "max_x": 1887.326793120677, + "max_y": 5336.659337262659 + }, + "value": null, + "layer": "WATER", + "id": "5549BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5313.435380313224, + "max_x": 1848.410354346787, + "max_y": 5314.932527780144 + }, + "value": null, + "layer": "0", + "id": "5549BF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1840.7433028131125, + "min_y": 5376.650495750217, + "max_x": 1841.4470729124857, + "max_y": 5377.35426584959 + }, + "value": null, + "layer": "0", + "id": "5549C0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1889.6676883286773, + "min_y": 5304.48089073535, + "max_x": 1892.1556328800443, + "max_y": 5306.933987003699 + }, + "value": null, + "layer": "0", + "id": "5549C3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1894.1153466150104, + "min_y": 5306.228506898477, + "max_x": 1894.8191167143837, + "max_y": 5306.93227699785 + }, + "value": null, + "layer": "0", + "id": "5549C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1897.8447075044894, + "min_y": 5306.230326918121, + "max_x": 1898.5484776038627, + "max_y": 5306.934097017494 + }, + "value": null, + "layer": "0", + "id": "5549C5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1874.609559116987, + "min_y": 5403.449010130792, + "max_x": 1886.7042777012357, + "max_y": 5404.568891481185 + }, + "value": "P-10139-600A-F2A-n", + "layer": "LINENO", + "id": "5549C6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1858.159462344432, + "min_y": 5316.225357894786, + "max_x": 1862.078175156275, + "max_y": 5319.850378977837 + }, + "value": "TI", + "layer": "INSTRUMENT", + "id": "5549CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5317.909126846267, + "max_x": 1863.247129041855, + "max_y": 5320.823377450425 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5549CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5314.994876242114, + "max_x": 1863.247129041855, + "max_y": 5320.82337745042 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5549D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5314.994876242107, + "max_x": 1863.247129041855, + "max_y": 5317.909126846267 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5549D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1870.106072704957, + "min_y": 5336.94964557112, + "max_x": 1877.848074221446, + "max_y": 5371.927969300624 + }, + "value": null, + "layer": "TEXT", + "id": "5549D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1877.848074221444, + "min_y": 5359.659634590901, + "max_x": 1877.848074221444, + "max_y": 5370.438817593935 + }, + "value": null, + "layer": "TEXT", + "id": "5549D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1880.352501856006, + "min_y": 5360.812931195884, + "max_x": 1883.330805269401, + "max_y": 5371.592114198914 + }, + "value": null, + "layer": "0", + "id": "5549DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1880.352501856009, + "min_y": 5336.94964557112, + "max_x": 1883.330805269403, + "max_y": 5360.812931195884 + }, + "value": null, + "layer": "TEXT", + "id": "5549E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1909.329001908203, + "min_y": 5332.337335223986, + "max_x": 1912.98718702152, + "max_y": 5336.990647378073 + }, + "value": null, + "layer": "0", + "id": "5549E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1907.0738844964565, + "min_y": 5334.090793935458, + "max_x": 1911.5841193199497, + "max_y": 5338.601028758952 + }, + "value": null, + "layer": "0", + "id": "5549E5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.708574520516, + "min_y": 5332.337335223986, + "max_x": 1911.94942929589, + "max_y": 5338.540152535817 + }, + "value": null, + "layer": "0", + "id": "5549E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.429148465582, + "min_y": 5338.601028758951, + "max_x": 1925.463781484733, + "max_y": 5348.993797135691 + }, + "value": null, + "layer": "0", + "id": "5549E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.417540472241, + "min_y": 5345.167284432838, + "max_x": 1907.730395628795, + "max_y": 5347.444443200659 + }, + "value": null, + "layer": "0", + "id": "5549EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1895.434114051164, + "min_y": 5323.452796195311, + "max_x": 1925.213985124783, + "max_y": 5374.316097823665 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5549ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1925.585197867456, + "min_y": 5324.026175160195, + "max_x": 1933.200084169263, + "max_y": 5326.016076814467 + }, + "value": null, + "layer": "0", + "id": "5549EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1933.200084169263, + "min_y": 5324.026175160195, + "max_x": 1937.397168183503, + "max_y": 5326.016076814467 + }, + "value": null, + "layer": "0", + "id": "5549EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1937.768380926181, + "min_y": 5323.270219399137, + "max_x": 1944.961421781505, + "max_y": 5326.58703021957 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5549F1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1922.9459765521, + "min_y": 5329.204130728391, + "max_x": 1933.1993990808126, + "max_y": 5335.507373647013 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "5549F4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1928.5256604430347, + "min_y": 5328.226801480342, + "max_x": 1933.9153932553254, + "max_y": 5338.909751820891 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5549F5" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1942.8779251517765, + "min_y": 5325.545281904706, + "max_x": 1944.9614217815054, + "max_y": 5327.628778534434 + }, + "value": null, + "layer": "0", + "id": "5549F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1944.448987074394, + "min_y": 5324.3737524663, + "max_x": 1947.628002369722, + "max_y": 5328.103557789495 + }, + "value": null, + "layer": "0", + "id": "5549FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1942.037096167797, + "min_y": 5327.628778534434, + "max_x": 1945.802250765482, + "max_y": 5336.21488541475 + }, + "value": null, + "layer": "0", + "id": "554A01" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1943.424619309605, + "min_y": 5328.40065759318, + "max_x": 1950.3024178496255, + "max_y": 5332.267789415787 + }, + "value": "I/P", + "layer": "0", + "id": "554A04" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1943.938734728891, + "min_y": 5317.289002223517, + "max_x": 1950.352305306116, + "max_y": 5325.021529684976 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1936.915792874076, + "min_y": 5317.307131916352, + "max_x": 1943.938734728891, + "max_y": 5325.019464632999 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A06" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1944.5812231160785, + "min_y": 5317.536543378679, + "max_x": 1945.3797429714314, + "max_y": 5318.335063234032 + }, + "value": null, + "layer": "0", + "id": "554A08" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1945.615302668431, + "min_y": 5327.511139832795, + "max_x": 1950.9085201966868, + "max_y": 5332.80435736105 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1958.055217103227, + "min_y": 5319.583051300476, + "max_x": 1998.208288223069, + "max_y": 5320.844524184419 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A0E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1913.803613934863, + "min_y": 5350.682668474338, + "max_x": 1923.254935607633, + "max_y": 5375.87066030496 + }, + "value": null, + "layer": "0", + "id": "554A0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1930.366009117932, + "min_y": 5349.092959381213, + "max_x": 1933.576216808933, + "max_y": 5378.923397263715 + }, + "value": null, + "layer": "0", + "id": "554A10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5377.41095571749, + "max_x": 1930.211760322028, + "max_y": 5395.74032262883 + }, + "value": null, + "layer": "0", + "id": "554A13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5395.74032262883, + "max_x": 1930.211760322028, + "max_y": 5402.849240825286 + }, + "value": null, + "layer": "0", + "id": "554A15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1928.502723685232, + "min_y": 5377.41095571749, + "max_x": 1930.211760322028, + "max_y": 5395.74032262883 + }, + "value": null, + "layer": "0", + "id": "554A16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1929.394669015559, + "min_y": 5394.242261749383, + "max_x": 1931.004264724463, + "max_y": 5399.220067038744 + }, + "value": null, + "layer": "0", + "id": "554A18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5370.053541598179, + "max_x": 1919.889826251852, + "max_y": 5371.909930522455 + }, + "value": null, + "layer": "0", + "id": "554A1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5362.769066848604, + "max_x": 1919.889826251852, + "max_y": 5364.760324069924 + }, + "value": null, + "layer": "0", + "id": "554A22" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1913.4535489048264, + "min_y": 5363.025671413243, + "max_x": 1920.6316387688685, + "max_y": 5371.671452776769 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1926.987040269364, + "min_y": 5336.345911347186, + "max_x": 1928.234516438287, + "max_y": 5348.993591799545 + }, + "value": null, + "layer": "0", + "id": "554A2A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1932.180700953208, + "min_y": 5345.142360811614, + "max_x": 1944.5275927620687, + "max_y": 5357.358494436985 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1926.696942145299, + "min_y": 5336.47784602257, + "max_x": 1938.1197319193118, + "max_y": 5337.959928516137 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "554A30" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5336.214885414745, + "max_x": 1933.915393255282, + "max_y": 5340.712553159671 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A31" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1928.525660443036, + "min_y": 5333.520019008606, + "max_x": 1933.915393255327, + "max_y": 5338.909751820877 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5333.520019008599, + "max_x": 1933.915393255282, + "max_y": 5336.214885414734 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1931.375477467135, + "min_y": 5394.242261749383, + "max_x": 1945.590819289, + "max_y": 5397.000814383244 + }, + "value": null, + "layer": "0", + "id": "554A39" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1933.54678854719, + "min_y": 5360.932868382723, + "max_x": 1978.022790206111, + "max_y": 5379.952492017804 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1980.401355742564, + "min_y": 5355.772124801352, + "max_x": 1988.158316484435, + "max_y": 5361.565669876663 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A3F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5355.772124801352, + "max_x": 1978.022790206111, + "max_y": 5367.115307683553 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5367.115307683553, + "max_x": 1976.896235003135, + "max_y": 5369.5542435591 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A41" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1976.2740678355246, + "min_y": 5365.03181105383, + "max_x": 1978.8807219039654, + "max_y": 5370.313819717567 + }, + "value": null, + "layer": "0", + "id": "554A42" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1980.781061381788, + "min_y": 5369.190398774798, + "max_x": 1984.699774193631, + "max_y": 5373.0238978731995 + }, + "value": "PCV", + "layer": "INSTRUMENT", + "id": "554A4C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1979.7042566500934, + "min_y": 5367.66237654832, + "max_x": 1986.2046983000184, + "max_y": 5374.162818198245 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1988.52952922711, + "min_y": 5360.304693003516, + "max_x": 1995.385668528287, + "max_y": 5361.500346858912 + }, + "value": null, + "layer": "0", + "id": "554A4E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1999.7287274400785, + "min_y": 5358.681881074913, + "max_x": 2004.2389622635717, + "max_y": 5363.192115898407 + }, + "value": null, + "layer": "0", + "id": "554A4F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.403415737724, + "min_y": 5356.928422363447, + "max_x": 2004.604272239514, + "max_y": 5362.621663669902 + }, + "value": null, + "layer": "0", + "id": "554A50" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2003.351991961491, + "min_y": 5356.928422363447, + "max_x": 2004.604272239514, + "max_y": 5363.4715723567 + }, + "value": null, + "layer": "0", + "id": "554A51" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2003.581662207845, + "min_y": 5363.471572356701, + "max_x": 2004.875264373521, + "max_y": 5365.653207443005 + }, + "value": null, + "layer": "UTIL", + "id": "554A54" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1908.8282923255483, + "min_y": 5335.84520176455, + "max_x": 1909.8297114908578, + "max_y": 5336.84662092986 + }, + "value": null, + "layer": "0", + "id": "554A55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1929.39466901633, + "min_y": 5382.733988766673, + "max_x": 1950.189416103677, + "max_y": 5383.981464935605 + }, + "value": null, + "layer": "0", + "id": "554A57" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1942.192625898927, + "min_y": 5394.865999833843, + "max_x": 1942.192625898927, + "max_y": 5397.079232182415 + }, + "value": null, + "layer": "0", + "id": "554A59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1920.556115556895, + "min_y": 5334.769070242269, + "max_x": 1925.533770697182, + "max_y": 5336.992712430035 + }, + "value": null, + "layer": "0", + "id": "554A60" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1924.0927624546387, + "min_y": 5335.94665141952, + "max_x": 1924.8912823099915, + "max_y": 5336.7451712748725 + }, + "value": null, + "layer": "0", + "id": "554A61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1925.533770697182, + "min_y": 5335.71723995719, + "max_x": 1927.610778353831, + "max_y": 5336.978712841131 + }, + "value": null, + "layer": "0", + "id": "554A62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.788396803454, + "min_y": 5331.436099724714, + "max_x": 1920.556115556895, + "max_y": 5337.000273873508 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554A65" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1919.0509153155335, + "min_y": 5332.078588111904, + "max_x": 1919.8494351708864, + "max_y": 5332.877107967256 + }, + "value": null, + "layer": "0", + "id": "554A66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5329.853559371949, + "max_x": 1920.073913327669, + "max_y": 5331.436099724714 + }, + "value": null, + "layer": "0", + "id": "554A68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.417184060779, + "min_y": 5335.694980160431, + "max_x": 1916.788396803454, + "max_y": 5336.988582326107 + }, + "value": null, + "layer": "0", + "id": "554A6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1988.158316484435, + "min_y": 5360.286067299885, + "max_x": 1988.52952922711, + "max_y": 5361.579669465565 + }, + "value": null, + "layer": "0", + "id": "554A6E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1986.7173082418956, + "min_y": 5360.533608455053, + "max_x": 1987.5158280972485, + "max_y": 5361.332128310405 + }, + "value": null, + "layer": "0", + "id": "554A6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1932.19206350765, + "min_y": 5343.262328160951, + "max_x": 1936.5643856040758, + "max_y": 5349.524545946806 + }, + "value": "10113", + "layer": "INSTRUMENT", + "id": "554A72" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1937.825923401846, + "min_y": 5366.019224032753, + "max_x": 1943.1191409301018, + "max_y": 5371.312441561008 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554A73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5371.672967612267, + "max_x": 1940.472532165974, + "max_y": 5373.843897822709 + }, + "value": null, + "layer": "0", + "id": "554A74" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1932.9288113492237, + "min_y": 5370.0961735451065, + "max_x": 1938.2533296939862, + "max_y": 5375.42069188987 + }, + "value": null, + "layer": "0", + "id": "554A77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5372.134694633028, + "max_x": 1934.063428262897, + "max_y": 5373.382170801947 + }, + "value": null, + "layer": "0", + "id": "554A7B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5362.617885464406, + "max_x": 1938.527345002583, + "max_y": 5364.788815674851 + }, + "value": null, + "layer": "0", + "id": "554A80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1940.472532165974, + "min_y": 5371.312441561008, + "max_x": 1940.472532165974, + "max_y": 5372.758432717488 + }, + "value": null, + "layer": "0", + "id": "554A88" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1938.527345002583, + "min_y": 5357.410680646311, + "max_x": 1941.665528367244, + "max_y": 5366.303355704057 + }, + "value": null, + "layer": "0", + "id": "554A89" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1932.9288113492237, + "min_y": 5361.041091397249, + "max_x": 1938.2533296939862, + "max_y": 5366.365609742013 + }, + "value": null, + "layer": "0", + "id": "554A8C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1925.352184690369, + "min_y": 5322.383812141568, + "max_x": 1931.9809194851227, + "max_y": 5325.45931632096 + }, + "value": "MASS", + "layer": "0", + "id": "554A93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1931.220526849171, + "min_y": 5326.016076814467, + "max_x": 1931.220526849171, + "max_y": 5328.226801480338 + }, + "value": null, + "layer": "0", + "id": "554A94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1948.30965856161, + "min_y": 5324.37777334969, + "max_x": 1952.397049860521, + "max_y": 5325.690628510229 + }, + "value": null, + "layer": "0", + "id": "554A96" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1937.397168183503, + "min_y": 5324.390793242995, + "max_x": 1937.768380926181, + "max_y": 5325.652266126937 + }, + "value": null, + "layer": "0", + "id": "554A99" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1923.7729768822405, + "min_y": 5324.621866059654, + "max_x": 1924.5714967375934, + "max_y": 5325.420385915007 + }, + "value": null, + "layer": "0", + "id": "554A9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1925.213985124783, + "min_y": 5324.397387902868, + "max_x": 1925.585197867456, + "max_y": 5325.644864071793 + }, + "value": null, + "layer": "0", + "id": "554A9E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1976.993878112496, + "min_y": 5346.779080544937, + "max_x": 1981.430267836097, + "max_y": 5354.965656210606 + }, + "value": null, + "layer": "0", + "id": "554A9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1977.390314068789, + "min_y": 5349.705840955255, + "max_x": 1977.390314068789, + "max_y": 5354.965656210606 + }, + "value": null, + "layer": "0", + "id": "554AA0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5360.932868382723, + "max_x": 1967.726469323518, + "max_y": 5364.923268482687 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554AAA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.017266133833, + "min_y": 5364.923268482687, + "max_x": 1969.747095936685, + "max_y": 5368.920895337679 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554AAB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1966.7034713113776, + "min_y": 5363.482260240153, + "max_x": 1967.5019911667305, + "max_y": 5364.280780095505 + }, + "value": null, + "layer": "0", + "id": "554AAD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1964.4404720666728, + "min_y": 5362.7465321467225, + "max_x": 1969.7649904114353, + "max_y": 5368.071050491486 + }, + "value": null, + "layer": "0", + "id": "554AB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1959.523533802958, + "min_y": 5378.923397263726, + "max_x": 1972.652025157789, + "max_y": 5386.828949225725 + }, + "value": null, + "layer": "0", + "id": "554ABE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1938.4108693133676, + "min_y": 5324.620204705323, + "max_x": 1939.2093891687205, + "max_y": 5325.418724560675 + }, + "value": null, + "layer": "0", + "id": "554AC0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1947.5712950313825, + "min_y": 5324.62370789975, + "max_x": 1948.3698148867354, + "max_y": 5325.4222277551025 + }, + "value": null, + "layer": "0", + "id": "554AC1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1934.7059166500846, + "min_y": 5372.359172789812, + "max_x": 1935.5044365054375, + "max_y": 5373.157692645164 + }, + "value": null, + "layer": "0", + "id": "554ACE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1934.7059166500846, + "min_y": 5363.304090641955, + "max_x": 1935.5044365054375, + "max_y": 5364.102610497307 + }, + "value": null, + "layer": "0", + "id": "554ACF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5360.932868382729, + "max_x": 1992.531370290571, + "max_y": 5365.086784299779 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554AD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1990.822167100887, + "min_y": 5365.086784299779, + "max_x": 1993.591376801359, + "max_y": 5370.424303967494 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554AD1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1994.7960548089645, + "min_y": 5366.427619037665, + "max_x": 1995.5945746643174, + "max_y": 5367.226138893017 + }, + "value": null, + "layer": "0", + "id": "554AD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1994.153566421775, + "min_y": 5366.203140880877, + "max_x": 1996.789391631128, + "max_y": 5367.4506170498 + }, + "value": null, + "layer": "0", + "id": "554AD4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1897.707864251495, + "min_y": 5325.65684400431, + "max_x": 1909.1306540255077, + "max_y": 5326.776725354704 + }, + "value": "P-10144-25A-F1A-n", + "layer": "LINENO", + "id": "554AD5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1994.153566421775, + "min_y": 5366.203140880877, + "max_x": 1994.153566421775, + "max_y": 5367.4506170498 + }, + "value": null, + "layer": "0", + "id": "554AD7" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1912.987178318439, + "min_y": 5336.096780833099, + "max_x": 1915.9271832404493, + "max_y": 5336.586781653437 + }, + "value": null, + "layer": "0", + "id": "554B47" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1915.9271832404477, + "min_y": 5336.096780833102, + "max_x": 1916.4171840607803, + "max_y": 5336.586781653435 + }, + "value": null, + "layer": "0", + "id": "554B4E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1932.124970486403, + "min_y": 5364.50781842216, + "max_x": 1942.217828884549, + "max_y": 5370.450223846803 + }, + "value": "10113", + "layer": "INSTRUMENT", + "id": "554B69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5320.415165783131, + "max_x": 1941.793417704075, + "max_y": 5322.739742505234 + }, + "value": null, + "layer": "0", + "id": "554B70" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1940.9931410814424, + "min_y": 5322.695510781335, + "max_x": 1941.6159865686177, + "max_y": 5323.318356268509 + }, + "value": null, + "layer": "0", + "id": "554B71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1906.879819996066, + "min_y": 5365.747728320646, + "max_x": 1920.9298809085344, + "max_y": 5369.336885611516 + }, + "value": "10113B", + "layer": "INSTRUMENT", + "id": "554B78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5378.923397263723, + "max_x": 1955.749662156242, + "max_y": 5384.642695227207 + }, + "value": null, + "layer": "UTIL", + "id": "554B79" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1954.7266641441065, + "min_y": 5383.201686984671, + "max_x": 1955.5251839994594, + "max_y": 5384.000206840024 + }, + "value": null, + "layer": "0", + "id": "554B7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5384.642695227207, + "max_x": 1955.75172720821, + "max_y": 5402.493175179938 + }, + "value": null, + "layer": "0", + "id": "554B7D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1978.880721903965, + "min_y": 5366.073559368694, + "max_x": 1980.904162077667, + "max_y": 5388.993654330274 + }, + "value": null, + "layer": "0", + "id": "554B84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1900.39476978069, + "min_y": 5390.841364289913, + "max_x": 1921.151236308673, + "max_y": 5390.841364289913 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554B86" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1930.656296174501, + "min_y": 5383.35772685114, + "max_x": 1950.189416103677, + "max_y": 5409.763006778 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554B87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1956.536805207486, + "min_y": 5385.07379521938, + "max_x": 1977.033011944327, + "max_y": 5395.971216937923 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554B88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1974.656936211714, + "min_y": 5396.43728070941, + "max_x": 1987.423583606199, + "max_y": 5397.557162059803 + }, + "value": "VG-10441-200A-F1A-n", + "layer": "LINENO", + "id": "554B8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5370.284070368592, + "max_x": 2008.779765873422, + "max_y": 5385.734491824106 + }, + "value": null, + "layer": "UTIL", + "id": "554B8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1950.189416103677, + "min_y": 5409.139268693688, + "max_x": 1955.156450678802, + "max_y": 5410.386744862613 + }, + "value": null, + "layer": "WATER", + "id": "554B8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1945.589245992314, + "min_y": 5394.865999833843, + "max_x": 1955.156450678802, + "max_y": 5427.549866593651 + }, + "value": null, + "layer": "WATER", + "id": "554B8F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1975.7477109991562, + "min_y": 5365.548773449177, + "max_x": 1976.797282838186, + "max_y": 5366.598345288207 + }, + "value": null, + "layer": "0", + "id": "554B95" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1972.652025157789, + "min_y": 5395.971216937921, + "max_x": 2040.53996574971, + "max_y": 5395.971216937921 + }, + "value": null, + "layer": "UTIL", + "id": "554B96" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.127989123749, + "min_y": 5400.508135954911, + "max_x": 1978.310162128711, + "max_y": 5404.478214404967 + }, + "value": null, + "layer": "UTIL", + "id": "554B97" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1976.143808780286, + "min_y": 5401.786047959729, + "max_x": 1981.9338766709923, + "max_y": 5405.949268342527 + }, + "value": "N2", + "layer": "0", + "id": "554B98" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1978.310162128711, + "min_y": 5400.508135954911, + "max_x": 1992.678813071745, + "max_y": 5404.478214404967 + }, + "value": null, + "layer": "TEXT", + "id": "554B99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1978.3101621287, + "min_y": 5400.508135954911, + "max_x": 1992.678813071745, + "max_y": 5400.508135954911 + }, + "value": null, + "layer": "TEXT", + "id": "554B9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1982.206090559474, + "min_y": 5425.956439978563, + "max_x": 1984.893133871608, + "max_y": 5427.449241818637 + }, + "value": "CWR", + "layer": "0", + "id": "554B9E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.527663421477, + "min_y": 5424.987747306598, + "max_x": 1992.303789341347, + "max_y": 5428.957825756657 + }, + "value": null, + "layer": "TEXT", + "id": "554B9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1975.950099173282, + "min_y": 5428.957825756652, + "max_x": 1990.318750116327, + "max_y": 5428.957825756652 + }, + "value": null, + "layer": "TEXT", + "id": "554BA0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1982.369354458216, + "min_y": 5408.949597912308, + "max_x": 1985.05639777035, + "max_y": 5410.442399752382 + }, + "value": "CWS", + "layer": "0", + "id": "554BA4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1975.95009917321, + "min_y": 5407.777967552883, + "max_x": 1992.303789341271, + "max_y": 5411.748046002937 + }, + "value": null, + "layer": "TEXT", + "id": "554BA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1977.935138398226, + "min_y": 5407.777967552883, + "max_x": 1992.303789341271, + "max_y": 5407.777967552883 + }, + "value": null, + "layer": "TEXT", + "id": "554BA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5337.981977282978, + "max_x": 1811.094567563076, + "max_y": 5341.516021296505 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "554BB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.260458853376, + "min_y": 5301.57987471226, + "max_x": 1816.139922305365, + "max_y": 5302.677417271192 + }, + "value": null, + "layer": "0", + "id": "554BB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5276.167186983414, + "max_x": 1794.977502332538, + "max_y": 5277.264729542348 + }, + "value": null, + "layer": "0", + "id": "554BBF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1868.3714497441504, + "min_y": 5220.222427043632, + "max_x": 1869.0739958506294, + "max_y": 5220.92497315011 + }, + "value": null, + "layer": "0", + "id": "554BC3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1841.606006065156, + "min_y": 5232.438064877588, + "max_x": 1852.261380904327, + "max_y": 5237.788740276946 + }, + "value": null, + "layer": "DM", + "id": "554BC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1838.237762451578, + "min_y": 5235.883588922439, + "max_x": 1845.6289793641745, + "max_y": 5238.546831830137 + }, + "value": "H50", + "layer": "LINENO", + "id": "554BC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1847.787856717629, + "min_y": 5237.426950479744, + "max_x": 1850.4755719585733, + "max_y": 5238.546831830137 + }, + "value": "NONE", + "layer": "LINENO", + "id": "554BC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1860.427708583213, + "min_y": 5405.716825160028, + "max_x": 1868.952570950193, + "max_y": 5405.716825160028 + }, + "value": null, + "layer": "DM", + "id": "554BCA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1860.28943545714, + "min_y": 5406.233072430141, + "max_x": 1862.9771506980842, + "max_y": 5407.352953780534 + }, + "value": "H100", + "layer": "LINENO", + "id": "554BCC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1865.759831305537, + "min_y": 5406.233072430141, + "max_x": 1868.4475465464814, + "max_y": 5407.352953780534 + }, + "value": "NONE", + "layer": "LINENO", + "id": "554BCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1952.065393075528, + "min_y": 5410.229070549572, + "max_x": 1972.591814903263, + "max_y": 5411.506626213007 + }, + "value": "CWS-10612-200A-S2A-n", + "layer": "LINENO", + "id": "554BD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1951.591080262677, + "min_y": 5427.392192280676, + "max_x": 1972.5918149031888, + "max_y": 5428.6697479440445 + }, + "value": "CWR-10622-200A-S2A-n", + "layer": "LINENO", + "id": "554BD1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1850.449858688767, + "min_y": 5293.292240875846, + "max_x": 1866.315523989154, + "max_y": 5294.432348436835 + }, + "value": null, + "layer": "0", + "id": "554BD7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1865.0455010745673, + "min_y": 5293.510409606654, + "max_x": 1865.7492711739405, + "max_y": 5294.214179706028 + }, + "value": null, + "layer": "0", + "id": "554BD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1866.315523989154, + "min_y": 5293.30457931929, + "max_x": 1866.642689841132, + "max_y": 5294.416369954095 + }, + "value": null, + "layer": "0", + "id": "554BD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.427083413619, + "min_y": 5338.540152535817, + "max_x": 1907.720685579295, + "max_y": 5338.911365278493 + }, + "value": null, + "layer": "0", + "id": "554BE8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1991.5083722784336, + "min_y": 5363.645776057235, + "max_x": 1992.3068921337865, + "max_y": 5364.444295912587 + }, + "value": null, + "layer": "0", + "id": "554BEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5238.196250176883, + "max_x": 1711.686878565303, + "max_y": 5239.204091224103 + }, + "value": null, + "layer": "0", + "id": "554BF3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1710.2446899242084, + "min_y": 5238.37755163573, + "max_x": 1710.8896204455734, + "max_y": 5239.022482157095 + }, + "value": null, + "layer": "0", + "id": "554BF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5218.880321895316, + "max_x": 1711.686878565303, + "max_y": 5219.888162942535 + }, + "value": null, + "layer": "0", + "id": "554BFD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1710.2446899242084, + "min_y": 5219.061623354161, + "max_x": 1710.8896204455734, + "max_y": 5219.706553875526 + }, + "value": null, + "layer": "0", + "id": "554C01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.734417935883, + "min_y": 5218.874457672768, + "max_x": 1723.990923079304, + "max_y": 5219.882298719988 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554C06" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1721.1352875195985, + "min_y": 5219.055759131614, + "max_x": 1721.7802180409635, + "max_y": 5219.700689652978 + }, + "value": null, + "layer": "0", + "id": "554C0B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1721.1352875195985, + "min_y": 5238.371678884349, + "max_x": 1721.7802180409635, + "max_y": 5239.016609405714 + }, + "value": null, + "layer": "0", + "id": "554C15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1783.563852752799, + "min_y": 5252.000254435272, + "max_x": 1784.743007904825, + "max_y": 5254.977641755087 + }, + "value": null, + "layer": "0", + "id": "554C1A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1860.173613688135, + "min_y": 5248.95612421689, + "max_x": 1868.812603612946, + "max_y": 5260.062319996563 + }, + "value": null, + "layer": "UTIL", + "id": "554C1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.512682025431, + "min_y": 5248.95612421689, + "max_x": 1855.490135919379, + "max_y": 5257.605076384972 + }, + "value": null, + "layer": "UTIL", + "id": "554C1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.319021725831, + "min_y": 5262.534934711465, + "max_x": 1828.747675450243, + "max_y": 5263.673059403966 + }, + "value": null, + "layer": "0", + "id": "554C23" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1827.0512076277655, + "min_y": 5262.752724004475, + "max_x": 1827.7537537342446, + "max_y": 5263.455270110953 + }, + "value": null, + "layer": "0", + "id": "554C29" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1847.5087419349793, + "min_y": 5312.165357398635, + "max_x": 1848.2125120343526, + "max_y": 5312.869127498008 + }, + "value": null, + "layer": "0", + "id": "554C2A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1870.2191662499904, + "min_y": 5294.8074410518, + "max_x": 1877.1645135875008, + "max_y": 5300.531569841456 + }, + "value": null, + "layer": "0", + "id": "554C34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1870.016976001922, + "min_y": 5298.026648684858, + "max_x": 1871.128766636727, + "max_y": 5298.353814536836 + }, + "value": null, + "layer": "0", + "id": "554C35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1979.212072974292, + "min_y": 5346.779080544937, + "max_x": 1982.288263644135, + "max_y": 5348.641212907677 + }, + "value": null, + "layer": "0", + "id": "554C44" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1982.540474291445, + "min_y": 5346.35471679807, + "max_x": 1987.00210097034, + "max_y": 5348.176475703572 + }, + "value": null, + "layer": "0", + "id": "554C46" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1981.1603720694864, + "min_y": 5346.951835334068, + "max_x": 1981.7832175566616, + "max_y": 5347.5746808212425 + }, + "value": null, + "layer": "0", + "id": "554C47" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1986.070202777946, + "min_y": 5344.544710333431, + "max_x": 1986.568479167686, + "max_y": 5345.042986723171 + }, + "value": null, + "layer": "0", + "id": "554C54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1985.931998946643, + "min_y": 5342.792555229574, + "max_x": 1987.00210097034, + "max_y": 5348.176475703572 + }, + "value": null, + "layer": "0", + "id": "554C55" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1984.750226341163, + "min_y": 5349.46193632507, + "max_x": 1985.248502730903, + "max_y": 5349.960212714811 + }, + "value": null, + "layer": "0", + "id": "554C5F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1984.61202250986, + "min_y": 5348.176475703572, + "max_x": 1985.390447639268, + "max_y": 5351.271942789711 + }, + "value": null, + "layer": "0", + "id": "554C60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1983.652326957994, + "min_y": 5349.387858248726, + "max_x": 1987.2564470541631, + "max_y": 5353.208586316049 + }, + "value": "VT", + "layer": "LINENO", + "id": "554C68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1952.397049860521, + "min_y": 5324.373295039858, + "max_x": 1960.137861459927, + "max_y": 5325.66689720554 + }, + "value": null, + "layer": "0", + "id": "554C6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1960.137861459927, + "min_y": 5324.391424732697, + "max_x": 1980.425369724527, + "max_y": 5325.652897616638 + }, + "value": null, + "layer": "0", + "id": "554C6B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1958.7003022041777, + "min_y": 5324.6229012469985, + "max_x": 1959.4988220595305, + "max_y": 5325.421421102351 + }, + "value": null, + "layer": "0", + "id": "554C6D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1871.257656881921, + "min_y": 5340.427261314117, + "max_x": 1901.10450293983, + "max_y": 5341.748439393358 + }, + "value": "CWR-10621-80A-S2A-n", + "layer": "LINENO", + "id": "554C78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1788.230584564094, + "min_y": 5283.13119656047, + "max_x": 1801.669160768815, + "max_y": 5284.251077910863 + }, + "value": "P-10117-300A-F2A-H50", + "layer": "LINENO", + "id": "554C7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5224.791277293011, + "max_x": 1745.289393855748, + "max_y": 5227.006582549709 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554C7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1728.346180976778, + "min_y": 5224.962205359372, + "max_x": 1729.11446076803, + "max_y": 5225.482527340568 + }, + "value": null, + "layer": "0", + "id": "554C81" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1866.1900584413295, + "min_y": 5217.358632536684, + "max_x": 1866.8926045478086, + "max_y": 5218.061178643163 + }, + "value": null, + "layer": "0", + "id": "554C90" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5215.273606491043, + "max_x": 1867.090102774033, + "max_y": 5217.408524245059 + }, + "value": null, + "layer": "0", + "id": "554C93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5302.711821372352, + "max_x": 1892.316020302484, + "max_y": 5304.520873640084 + }, + "value": null, + "layer": "0", + "id": "554C9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5274.920269757989, + "max_x": 1910.873297418609, + "max_y": 5275.929558546274 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554CAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5274.920269757989, + "max_x": 1955.403073995256, + "max_y": 5275.929558546274 + }, + "value": null, + "layer": "0", + "id": "554CAC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5275.099461785789, + "max_x": 1910.3494321584587, + "max_y": 5275.745515920777 + }, + "value": null, + "layer": "0", + "id": "554CAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5373.132100218247, + "max_x": 1852.378963483234, + "max_y": 5377.002380799906 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554CB6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1851.6555599812957, + "min_y": 5374.901169581243, + "max_x": 1852.2185760607942, + "max_y": 5375.464185660742 + }, + "value": null, + "layer": "0", + "id": "554CB8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1851.552404327189, + "min_y": 5372.674502094686, + "max_x": 1852.32068411844, + "max_y": 5373.194824075884 + }, + "value": null, + "layer": "0", + "id": "554CC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2001.983844851825, + "min_y": 5363.192115898407, + "max_x": 2004.82287017696, + "max_y": 5390.841364289912 + }, + "value": null, + "layer": "0", + "id": "554CC9" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2004.0215914902597, + "min_y": 5365.65319978594, + "max_x": 2004.4526993283343, + "max_y": 5368.239846814372 + }, + "value": null, + "layer": "0", + "id": "554CCA" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5368.239846814368, + "max_x": 2004.4526993283314, + "max_y": 5368.670954652437 + }, + "value": null, + "layer": "0", + "id": "554CD1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1744.4631618755375, + "min_y": 5226.960782444637, + "max_x": 1745.1080923969025, + "max_y": 5227.605712966001 + }, + "value": null, + "layer": "0", + "id": "554CD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5214.155820288414, + "max_x": 1840.003259999545, + "max_y": 5217.519476697134 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554CDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1970.428752128573, + "min_y": 5365.711064249119, + "max_x": 1971.499160596772, + "max_y": 5366.972537133062 + }, + "value": null, + "layer": "0", + "id": "554CE0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1969.6903885983456, + "min_y": 5365.942540763423, + "max_x": 1970.4889084536985, + "max_y": 5366.741060618775 + }, + "value": null, + "layer": "0", + "id": "554CE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1989.222366907717, + "min_y": 5371.691931887601, + "max_x": 1993.9248222819285, + "max_y": 5375.553938904877 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554CEE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1988.6574113811455, + "min_y": 5370.4243039674975, + "max_x": 1995.1578530310705, + "max_y": 5376.924745617423 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554CEF" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1989.2453730337268, + "min_y": 5364.249940776537, + "max_x": 1994.5698913784893, + "max_y": 5369.574459121301 + }, + "value": null, + "layer": "0", + "id": "554CF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1725.893851375848, + "min_y": 5230.242199191735, + "max_x": 1727.647219364236, + "max_y": 5235.275775191488 + }, + "value": null, + "layer": "0", + "id": "554CF7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1726.4480701093594, + "min_y": 5230.761109733213, + "max_x": 1727.0930006307244, + "max_y": 5231.406040254577 + }, + "value": null, + "layer": "0", + "id": "554CF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1724.578471370041, + "min_y": 5236.427576959747, + "max_x": 1728.6104713700408, + "max_y": 5239.544135425369 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554CFC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1724.147757443016, + "min_y": 5235.27577519149, + "max_x": 1729.393313297066, + "max_y": 5240.521331045539 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554CFD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1724.6203418782409, + "min_y": 5230.289004674579, + "max_x": 1728.920728861841, + "max_y": 5234.589391658178 + }, + "value": null, + "layer": "0", + "id": "554CFE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1799.674893307364, + "min_y": 5245.452179863836, + "max_x": 1813.113469512085, + "max_y": 5246.5720612142295 + }, + "value": "P-10115-200A-F2A-H50", + "layer": "LINENO", + "id": "554D0B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1817.262203350038, + "min_y": 5208.84332889012, + "max_x": 1833.3674710564183, + "max_y": 5211.277663348167 + }, + "value": "P-10119-32A-F1A-H50", + "layer": "LINENO", + "id": "554D0C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1783.613104813935, + "min_y": 5296.449234159168, + "max_x": 1796.3797522084199, + "max_y": 5297.569115509561 + }, + "value": "P-10113-25A-F1A-H50", + "layer": "LINENO", + "id": "554D0D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5222.657226308628, + "max_x": 1718.931423725388, + "max_y": 5224.574950351546 + }, + "value": null, + "layer": "0", + "id": "554D13" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1718.4211131599047, + "min_y": 5224.256947125685, + "max_x": 1719.0571196116273, + "max_y": 5224.892953577408 + }, + "value": null, + "layer": "0", + "id": "554D14" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1718.1043655131978, + "min_y": 5222.057496761926, + "max_x": 1718.7499409650843, + "max_y": 5222.703072213812 + }, + "value": null, + "layer": "0", + "id": "554D16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5238.700324504579, + "max_x": 1714.478825421332, + "max_y": 5242.467412811596 + }, + "value": null, + "layer": "0", + "id": "554D21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5242.767525366714, + "max_x": 1714.588233731022, + "max_y": 5244.857354240401 + }, + "value": null, + "layer": "0", + "id": "554D22" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1713.6517672091397, + "min_y": 5241.302407907691, + "max_x": 1714.2973426610263, + "max_y": 5241.947983359578 + }, + "value": null, + "layer": "0", + "id": "554D24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.692134935083, + "min_y": 5246.130276883511, + "max_x": 1715.724134935083, + "max_y": 5249.515715342712 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554D27" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1711.0682547141466, + "min_y": 5244.857354240405, + "max_x": 1716.8808551560194, + "max_y": 5250.6699546822765 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554D28" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1712.469419490823, + "min_y": 5240.942436167175, + "max_x": 1715.479690379343, + "max_y": 5243.952707055696 + }, + "value": null, + "layer": "0", + "id": "554D29" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5241.973153524462, + "max_x": 1718.931423725388, + "max_y": 5243.890877567381 + }, + "value": null, + "layer": "0", + "id": "554D35" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1718.4211131599047, + "min_y": 5243.572874341519, + "max_x": 1719.0571196116273, + "max_y": 5244.208880793242 + }, + "value": null, + "layer": "0", + "id": "554D36" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1718.1043655131978, + "min_y": 5241.37342397776, + "max_x": 1718.7499409650843, + "max_y": 5242.018999429646 + }, + "value": null, + "layer": "0", + "id": "554D38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5280.436813971761, + "max_x": 1833.107819473115, + "max_y": 5281.698286855704 + }, + "value": null, + "layer": "0", + "id": "554D47" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1790.749606315565, + "min_y": 5240.368817677524, + "max_x": 1792.7653927462732, + "max_y": 5241.488699027917 + }, + "value": "40A", + "layer": "LINENO", + "id": "554D56" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1794.39543529761, + "min_y": 5251.978350016665, + "max_x": 1801.7866522102065, + "max_y": 5255.63166655685 + }, + "value": "H100", + "layer": "0", + "id": "554D5F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5301.085324540667, + "max_x": 1826.22080613432, + "max_y": 5306.922249415493 + }, + "value": null, + "layer": "0", + "id": "554D60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1828.321493675269, + "min_y": 5301.508262191042, + "max_x": 1831.905113996528, + "max_y": 5303.0014373249005 + }, + "value": "H100", + "layer": "0", + "id": "554D67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1864.313178396761, + "min_y": 5289.097894765706, + "max_x": 1871.9098868541103, + "max_y": 5293.001691259234 + }, + "value": "20A", + "layer": "LINENO", + "id": "554D6D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1953.7154424362595, + "min_y": 5409.363746850473, + "max_x": 1954.5139622916124, + "max_y": 5410.1622667058255 + }, + "value": null, + "layer": "0", + "id": "554D6E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.156450678802, + "min_y": 5409.139268693688, + "max_x": 1975.9500991734, + "max_y": 5410.386744862613 + }, + "value": null, + "layer": "0", + "id": "554D70" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1953.7154424362595, + "min_y": 5426.526868581511, + "max_x": 1954.5139622916124, + "max_y": 5427.325388436863 + }, + "value": null, + "layer": "0", + "id": "554D77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.156450678802, + "min_y": 5426.302390424725, + "max_x": 1955.527663421477, + "max_y": 5427.549866593651 + }, + "value": null, + "layer": "0", + "id": "554D79" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1818.414299439888, + "min_y": 5265.595889659879, + "max_x": 1822.0419087005903, + "max_y": 5268.420087940363 + }, + "value": "10111A", + "layer": "INSTRUMENT", + "id": "554D93" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1869.824643641032, + "min_y": 5359.478320467503, + "max_x": 1890.0083425904386, + "max_y": 5363.569016733553 + }, + "value": "CWR", + "layer": "0", + "id": "554D98" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1882.608762283098, + "min_y": 5360.631617072494, + "max_x": 1898.921419055276, + "max_y": 5364.456862688796 + }, + "value": "CWS", + "layer": "0", + "id": "554D99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1797.074367744272, + "min_y": 5271.213825460744, + "max_x": 1800.0802086969, + "max_y": 5272.149563876435 + }, + "value": null, + "layer": "STEAM LINE", + "id": "554D9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.154509296572, + "min_y": 5343.03992624386, + "max_x": 1944.579778971395, + "max_y": 5351.63436564733 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554D9B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2038.131203604342, + "min_y": 5307.920523432396, + "max_x": 2039.211332201316, + "max_y": 5310.789008254486 + }, + "value": null, + "layer": "0", + "id": "554D9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5293.026028653328, + "max_x": 2051.503243548586, + "max_y": 5306.091311074585 + }, + "value": null, + "layer": "0", + "id": "554DA0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5296.522014202583, + "max_x": 2051.503243548586, + "max_y": 5297.228290515145 + }, + "value": null, + "layer": "0", + "id": "554DA1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2044.5326887341027, + "min_y": 5303.582375985341, + "max_x": 2044.9686617665454, + "max_y": 5304.018349017784 + }, + "value": null, + "layer": "0", + "id": "554DA4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2044.3036479621005, + "min_y": 5291.316845138181, + "max_x": 2048.7371286365533, + "max_y": 5297.093138875087 + }, + "value": null, + "layer": "0", + "id": "554DAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2039.860347072579, + "min_y": 5309.466886753408, + "max_x": 2063.952308246947, + "max_y": 5317.59663253338 + }, + "value": null, + "layer": "UTIL", + "id": "554DB8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2037.981244273856, + "min_y": 5285.888148657431, + "max_x": 2052.314093021931, + "max_y": 5293.262747511056 + }, + "value": "P-10101", + "layer": "0", + "id": "554DB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2040.214550702494, + "min_y": 5287.767918160499, + "max_x": 2056.591101966509, + "max_y": 5290.746221573894 + }, + "value": null, + "layer": "TEXT", + "id": "554DBA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2044.056155039711, + "min_y": 5287.767918160499, + "max_x": 2055.101950259812, + "max_y": 5287.767918160499 + }, + "value": null, + "layer": "TEXT", + "id": "554DBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2040.264710564679, + "min_y": 5313.291301803532, + "max_x": 2052.3594291489276, + "max_y": 5314.411183153926 + }, + "value": "N2-10703-15A-F1A-n", + "layer": "LINENO", + "id": "554DBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5306.358225570731, + "max_x": 1960.137563782644, + "max_y": 5325.021384723296 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554DC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5319.564921607639, + "max_x": 1958.055217103227, + "max_y": 5320.85852377332 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554DC1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1958.7011544772045, + "min_y": 5319.8145278147795, + "max_x": 1959.4996743325573, + "max_y": 5320.613047670132 + }, + "value": null, + "layer": "0", + "id": "554DC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1960.137563782644, + "min_y": 5315.314539405504, + "max_x": 1998.221942143563, + "max_y": 5316.576012289448 + }, + "value": null, + "layer": "0", + "id": "554DD1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1958.7000045268946, + "min_y": 5315.546015919806, + "max_x": 1959.4985243822475, + "max_y": 5316.344535775159 + }, + "value": null, + "layer": "0", + "id": "554DD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5286.695562692252, + "max_x": 1910.873297418612, + "max_y": 5287.70485148054 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554DE0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5286.874754720053, + "max_x": 1910.3494321584587, + "max_y": 5287.520808855041 + }, + "value": null, + "layer": "0", + "id": "554DE3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5286.840802856563, + "max_x": 2019.745750672881, + "max_y": 5311.647073655265 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554DEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1885.837641413976, + "min_y": 5360.812931195884, + "max_x": 1888.815944827371, + "max_y": 5371.592114198914 + }, + "value": null, + "layer": "0", + "id": "554DEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1885.837641413979, + "min_y": 5336.94964557112, + "max_x": 1888.815944827374, + "max_y": 5360.812931195884 + }, + "value": null, + "layer": "TEXT", + "id": "554DF0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1888.09390184107, + "min_y": 5362.963687554938, + "max_x": 1890.7816170820142, + "max_y": 5364.456862688796 + }, + "value": "CHS", + "layer": "0", + "id": "554DF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1870.106072704957, + "min_y": 5336.94964557112, + "max_x": 1871.595224411657, + "max_y": 5371.927969300624 + }, + "value": null, + "layer": "TEXT", + "id": "554DF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1872.36233313205, + "min_y": 5362.075841599695, + "max_x": 1875.0500483729943, + "max_y": 5363.569016733553 + }, + "value": "CHR", + "layer": "0", + "id": "554DF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1886.833523336253, + "min_y": 5333.722310077412, + "max_x": 1887.821677886684, + "max_y": 5336.659337262659 + }, + "value": null, + "layer": "WATER", + "id": "554DFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1868.159145576453, + "min_y": 5335.029930960748, + "max_x": 1876.358922514746, + "max_y": 5338.608808636325 + }, + "value": null, + "layer": "0", + "id": "554DFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1871.101954627231, + "min_y": 5333.722310077412, + "max_x": 1872.088494196077, + "max_y": 5334.739622652283 + }, + "value": null, + "layer": "0", + "id": "554DFD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1871.2845966792495, + "min_y": 5335.532391397713, + "max_x": 1871.9090821072307, + "max_y": 5336.156876825694 + }, + "value": null, + "layer": "0", + "id": "554DFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1875.854704299662, + "min_y": 5336.94964557112, + "max_x": 1876.866370692999, + "max_y": 5336.94964557112 + }, + "value": null, + "layer": "0", + "id": "554E09" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1876.0482947823414, + "min_y": 5335.532391397713, + "max_x": 1876.6727802103226, + "max_y": 5336.156876825694 + }, + "value": null, + "layer": "0", + "id": "554E0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1881.337435347622, + "min_y": 5336.94964557112, + "max_x": 1882.349101740959, + "max_y": 5336.94964557112 + }, + "value": null, + "layer": "0", + "id": "554E16" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1881.5310258303005, + "min_y": 5335.532391397713, + "max_x": 1882.1555112582816, + "max_y": 5336.156876825694 + }, + "value": null, + "layer": "0", + "id": "554E19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1886.822574905593, + "min_y": 5336.94964557112, + "max_x": 1887.834241298929, + "max_y": 5336.94964557112 + }, + "value": null, + "layer": "0", + "id": "554E23" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1887.0161653882715, + "min_y": 5335.532391397713, + "max_x": 1887.6406508162527, + "max_y": 5336.156876825694 + }, + "value": null, + "layer": "0", + "id": "554E26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1993.308086510206, + "min_y": 5426.412950477859, + "max_x": 2003.3870186637466, + "max_y": 5427.532831828253 + }, + "value": "SARF-#10-UFD-CW", + "layer": "0", + "id": "554E38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1993.025574821546, + "min_y": 5409.330578431027, + "max_x": 2003.1045069750865, + "max_y": 5410.45045978142 + }, + "value": "SARF-#10-UFD-CW", + "layer": "0", + "id": "554E39" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1889.411336664299, + "min_y": 5260.38117729625, + "max_x": 1899.4902688178395, + "max_y": 5261.501058646643 + }, + "value": "SARF-#10-UFD-N2", + "layer": "0", + "id": "554E3B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1649.620580189683, + "min_y": 5164.894488659673, + "max_x": 1670.1517382802288, + "max_y": 5166.694488659673 + }, + "value": "\\pi5.16928; .9; DP-10101 \\pi0.24444;DIAPHRAGM PUMP", + "layer": "0", + "id": "554E40" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1650.573805376549, + "min_y": 5158.217097714256, + "max_x": 1704.4137366618127, + "max_y": 5160.138810943575 + }, + "value": ".9; CAPA : 60L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "layer": "0", + "id": "554E44" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1676.654668051405, + "min_y": 5164.906876088671, + "max_x": 1697.1858261419507, + "max_y": 5166.706876088671 + }, + "value": "\\pi5.98478; .9; P-10101 \\pi3.9878;FEED PUMP", + "layer": "0", + "id": "554E48" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1704.052180916746, + "min_y": 5164.490746097157, + "max_x": 1724.5833390072917, + "max_y": 5166.290746097157 + }, + "value": "\\pi5.77266; .9; P-10114 \\pi4.59228;TOP PUMP", + "layer": "0", + "id": "554E50" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1704.844979642343, + "min_y": 5158.321801093152, + "max_x": 1754.1354922616465, + "max_y": 5160.470033151229 + }, + "value": ".9; CAPA : 90L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "layer": "0", + "id": "554E54" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1728.96649432391, + "min_y": 5164.838978155232, + "max_x": 1749.4976524144556, + "max_y": 5166.6389781552325 + }, + "value": "\\pi5.77486; .9; P-10116 \\pi2.21833;BOTTOM PUMP", + "layer": "0", + "id": "554E58" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1756.151109355958, + "min_y": 5165.378688629873, + "max_x": 1776.6822674465036, + "max_y": 5167.178688629873 + }, + "value": "\\pi5.77706; .9; P-10118 \\pi4.32741;SIDE PUMP", + "layer": "0", + "id": "554E60" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1756.151109355958, + "min_y": 5159.247456835664, + "max_x": 1779.9447265799772, + "max_y": 5161.047456835664 + }, + "value": ".9; CAPA : 48L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25Mpa RPM : 3,520", + "layer": "0", + "id": "554E64" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1782.300695897493, + "min_y": 5165.750001952062, + "max_x": 1802.8318539880386, + "max_y": 5167.550001952062 + }, + "value": "\\pi5.00992; .9; VP-10117 \\pi2.026;VACUUM PUMP", + "layer": "0", + "id": "554E68" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1784.318094280375, + "min_y": 5159.607255972446, + "max_x": 1863.2178778714092, + "max_y": 5162.840175771482 + }, + "value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "layer": "0", + "id": "554E6C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1650.369638623337, + "min_y": 5190.771785591385, + "max_x": 1672.7672656312052, + "max_y": 5192.571785591385 + }, + "value": "\\pi6.90702; .9; T-10101 \\pi0.3358;FEED BUFFER TANK", + "layer": "0", + "id": "554E70" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1650.681314579649, + "min_y": 5183.061499445005, + "max_x": 1704.5706370797113, + "max_y": 5185.447007412147 + }, + "value": ".9; SIZE : %%C2,500 x 3,600H VOLUME : 20.6M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "554E74" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1675.802854677018, + "min_y": 5190.576676149512, + "max_x": 1698.2004816848862, + "max_y": 5192.376676149513 + }, + "value": "\\pi6.69491; .9; T-10100 \\pi2.93176;RECYCLE TANK", + "layer": "0", + "id": "554E78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1847.807522099212, + "min_y": 5375.091063698746, + "max_x": 1849.6213267295632, + "max_y": 5376.09873293783 + }, + "value": "25A", + "layer": "0", + "id": "554E82" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1746.328781990294, + "min_y": 5227.277299955176, + "max_x": 1748.142586620645, + "max_y": 5228.28496919426 + }, + "value": "25A", + "layer": "0", + "id": "554E83" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1825.77224933313, + "min_y": 5264.140417899541, + "max_x": 1833.1634662457266, + "max_y": 5265.260299249934 + }, + "value": "C10111BA-01", + "layer": "VALVE NO", + "id": "554E85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.420578357004, + "min_y": 5272.208121179313, + "max_x": 1833.8117952696005, + "max_y": 5276.02940168691 + }, + "value": "C10111BA-04", + "layer": "VALVE NO", + "id": "554E86" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1829.544981468402, + "min_y": 5278.278344764879, + "max_x": 1844.7423506324465, + "max_y": 5279.398226115272 + }, + "value": "C10111BA-05", + "layer": "VALVE NO", + "id": "554E87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1830.465398574414, + "min_y": 5282.0443445914, + "max_x": 1845.6627677384586, + "max_y": 5283.164225941793 + }, + "value": "C10111BA-06", + "layer": "VALVE NO", + "id": "554E88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1825.581085253406, + "min_y": 5290.756346507304, + "max_x": 1829.2766937097042, + "max_y": 5291.316287182502 + }, + "value": "C10111BA-09", + "layer": "0", + "id": "554E89" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1825.18810263829, + "min_y": 5352.807676477374, + "max_x": 1828.8837110945883, + "max_y": 5353.367617152571 + }, + "value": "C10111BA-10", + "layer": "0", + "id": "554E8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1825.18810263829, + "min_y": 5359.813023987996, + "max_x": 1828.8837110945883, + "max_y": 5360.372964663193 + }, + "value": "C10111BA-11", + "layer": "0", + "id": "554E8B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1932.215627548101, + "min_y": 5373.642442445603, + "max_x": 1939.6068444606976, + "max_y": 5374.762323795996 + }, + "value": "D10113BA-01", + "layer": "VALVE NO", + "id": "554E9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1918.008352761652, + "min_y": 5361.386388100996, + "max_x": 1925.3995696742486, + "max_y": 5362.506269451389 + }, + "value": "D10113BA-03", + "layer": "VALVE NO", + "id": "554EA0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1918.004099895634, + "min_y": 5372.111095704653, + "max_x": 1925.3953168082305, + "max_y": 5373.230977055046 + }, + "value": "D10113BA-04", + "layer": "VALVE NO", + "id": "554EA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1954.13906377746, + "min_y": 5380.916683445989, + "max_x": 1961.5302806900565, + "max_y": 5382.036564796383 + }, + "value": "D10113BA-05", + "layer": "VALVE NO", + "id": "554EA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1967.853168928314, + "min_y": 5362.83977185296, + "max_x": 1978.7377888065648, + "max_y": 5365.55025014134 + }, + "value": "SP10601ABA-04", + "layer": "VALVE NO", + "id": "554EA3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1964.440782281909, + "min_y": 5366.847860899465, + "max_x": 1976.6130674102776, + "max_y": 5371.4097060160475 + }, + "value": "SP10601BA-05", + "layer": "VALVE NO", + "id": "554EA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1984.41310888017, + "min_y": 5361.924031124389, + "max_x": 2000.8948581087996, + "max_y": 5364.123169020444 + }, + "value": "VP10117BA-03", + "layer": "VALVE NO", + "id": "554EA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1993.424277816631, + "min_y": 5367.939836642591, + "max_x": 2008.0221588734341, + "max_y": 5369.4205398755075 + }, + "value": "VP10117BA-04", + "layer": "VALVE NO", + "id": "554EA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1975.676981335124, + "min_y": 5342.410561686596, + "max_x": 1984.8937531220581, + "max_y": 5346.45736016623 + }, + "value": "SP10601BA-01", + "layer": "VALVE NO", + "id": "554EA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1987.964330647897, + "min_y": 5349.336114845636, + "max_x": 1996.0274763707296, + "max_y": 5350.455996196029 + }, + "value": "SP10601BA-02", + "layer": "VALVE NO", + "id": "554EA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1986.711367631272, + "min_y": 5344.293247916687, + "max_x": 1997.2504809560626, + "max_y": 5345.41312926708 + }, + "value": "SP10601BA-03", + "layer": "VALVE NO", + "id": "554EA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2036.194971157877, + "min_y": 5303.078047436012, + "max_x": 2050.9912320561325, + "max_y": 5305.298101973733 + }, + "value": "T10100BA-07", + "layer": "VALVE NO", + "id": "554EAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1950.922620073323, + "min_y": 5323.156351455047, + "max_x": 1973.6071867038906, + "max_y": 5327.000725393403 + }, + "value": "HD10114BA-01", + "layer": "VALVE NO", + "id": "554EAC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1955.928001166221, + "min_y": 5320.546527369366, + "max_x": 1973.6083366542007, + "max_y": 5322.111807357345 + }, + "value": "HD10114BA-02", + "layer": "VALVE NO", + "id": "554EAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1955.837344104521, + "min_y": 5316.563662730245, + "max_x": 1973.6161204002558, + "max_y": 5317.9177609203225 + }, + "value": "HD10114BA-03", + "layer": "VALVE NO", + "id": "554EAE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.859308671795, + "min_y": 5287.950821660301, + "max_x": 1916.9224543946275, + "max_y": 5289.070703010694 + }, + "value": "HD10118BA-02", + "layer": "VALVE NO", + "id": "554EAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1906.590038543694, + "min_y": 5276.152464890023, + "max_x": 1918.0128283177066, + "max_y": 5277.836793319244 + }, + "value": "HD10118BA-05", + "layer": "VALVE NO", + "id": "554EB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5405.299920027742, + "max_x": 1834.358855094082, + "max_y": 5413.51238326396 + }, + "value": null, + "layer": "0", + "id": "554EB1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5413.51238326396, + "max_x": 1834.358855094082, + "max_y": 5413.51238326396 + }, + "value": null, + "layer": "0", + "id": "554EB2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1812.289193338829, + "min_y": 5408.659564078923, + "max_x": 1824.6701728993944, + "max_y": 5412.765795697032 + }, + "value": "VAPOR", + "layer": "0", + "id": "554EB3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1812.153207746282, + "min_y": 5406.046507594671, + "max_x": 1816.1847806076983, + "max_y": 5407.166388945065 + }, + "value": "PRESS.", + "layer": "0", + "id": "554EB6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1818.486828014721, + "min_y": 5406.046507594671, + "max_x": 1829.9096177887336, + "max_y": 5407.166388945065 + }, + "value": "0.089~-0.085 MPaG", + "layer": "0", + "id": "554EB7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1962.0179347854, + "min_y": 5387.671078222926, + "max_x": 1967.5342940821376, + "max_y": 5390.3105692673325 + }, + "value": "PSV-10111", + "layer": "0", + "id": "554EBB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1961.616199453724, + "min_y": 5386.138882410269, + "max_x": 1968.2668164316783, + "max_y": 5387.146551649353 + }, + "value": "SP: 0.19MPa", + "layer": "0", + "id": "554EBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2032.667925443842, + "min_y": 5295.356040886541, + "max_x": 2035.807597496206, + "max_y": 5311.530826720424 + }, + "value": null, + "layer": "0", + "id": "554EC0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2032.3527979209862, + "min_y": 5308.170321084502, + "max_x": 2038.098295416582, + "max_y": 5316.9348444970865 + }, + "value": null, + "layer": "0", + "id": "554EC1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2034.643495841363, + "min_y": 5310.268437540472, + "max_x": 2038.078093816164, + "max_y": 5311.403118530116 + }, + "value": null, + "layer": "0", + "id": "554ECB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2033.272958725473, + "min_y": 5311.9615458296, + "max_x": 2038.260411965086, + "max_y": 5316.222311679344 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554ECC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2026.171804457709, + "min_y": 5285.5228979673, + "max_x": 2048.569431465577, + "max_y": 5313.594441760615 + }, + "value": null, + "layer": "0", + "id": "554ECD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1951.291790761694, + "min_y": 5390.841364289913, + "max_x": 1953.725869975692, + "max_y": 5390.841364289913 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "554ED3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1939.46379620532, + "min_y": 5417.278980941994, + "max_x": 1945.585623883262, + "max_y": 5423.503522006175 + }, + "value": null, + "layer": "0", + "id": "554ED4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1931.55878172089, + "min_y": 5417.163507616159, + "max_x": 1937.0001956119436, + "max_y": 5419.802999997797 + }, + "value": "PSV-10112", + "layer": "0", + "id": "554EE2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1931.492373519245, + "min_y": 5415.630808637498, + "max_x": 1937.5383889537488, + "max_y": 5416.638477876582 + }, + "value": "SP: 0.6MPa", + "layer": "0", + "id": "554EE4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1865.842140425875, + "min_y": 5331.320711253039, + "max_x": 1868.159145576453, + "max_y": 5340.363962642666 + }, + "value": null, + "layer": "0", + "id": "554EE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1858.9955035787, + "min_y": 5328.28473368603, + "max_x": 1867.8749837665587, + "max_y": 5333.143029186582 + }, + "value": "PSV-10117", + "layer": "0", + "id": "554EF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1862.543501355942, + "min_y": 5326.752034707368, + "max_x": 1868.589516790446, + "max_y": 5327.759703946452 + }, + "value": "SP: 0.6MPa", + "layer": "0", + "id": "554EF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1940.019209805657, + "min_y": 5398.25984590043, + "max_x": 1943.9379226175, + "max_y": 5401.882548708818 + }, + "value": "10112", + "layer": "INSTRUMENT", + "id": "554EF7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1934.5193732218884, + "min_y": 5397.079232182414, + "max_x": 1945.0546902937538, + "max_y": 5407.60075981763 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554EF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.569397209894, + "min_y": 5230.603300926434, + "max_x": 1745.7786002967948, + "max_y": 5231.610970165518 + }, + "value": "FC", + "layer": "0", + "id": "554EFB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1845.919597814415, + "min_y": 5378.597303724294, + "max_x": 1847.1288009013158, + "max_y": 5379.604972963378 + }, + "value": "FO", + "layer": "0", + "id": "554EFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.879514419387, + "min_y": 5376.432327019404, + "max_x": 1829.30891495473, + "max_y": 5379.700560612349 + }, + "value": null, + "layer": "0", + "id": "554F00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1881.710432710428, + "min_y": 5305.896237690301, + "max_x": 1884.433432457196, + "max_y": 5307.209092850841 + }, + "value": null, + "layer": "0", + "id": "554F03" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5308.76168130662, + "max_x": 2033.021063600124, + "max_y": 5315.660935461277 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1844.13197568828, + "min_y": 5327.072070740517, + "max_x": 1846.8196909292242, + "max_y": 5328.565245874375 + }, + "value": "H50", + "layer": "0", + "id": "554F15" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1943.009422916805, + "min_y": 5322.986824684885, + "max_x": 1944.8232275471562, + "max_y": 5323.994493923969 + }, + "value": "15A", + "layer": "0", + "id": "554F16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1729.201352671679, + "min_y": 5267.993562077, + "max_x": 1731.847491956471, + "max_y": 5283.34468251361 + }, + "value": null, + "layer": "0", + "id": "554F19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1720.498156512986, + "min_y": 5267.378550013763, + "max_x": 1724.443939244513, + "max_y": 5283.043364202367 + }, + "value": null, + "layer": "0", + "id": "554F1A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1727.2620132726308, + "min_y": 5283.313721642581, + "max_x": 1729.7724773441803, + "max_y": 5283.797820732244 + }, + "value": null, + "layer": "0", + "id": "554F1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1727.158649246399, + "min_y": 5283.015270781453, + "max_x": 1729.90762898424, + "max_y": 5300.961074166359 + }, + "value": null, + "layer": "0", + "id": "554F1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1723.878916820579, + "min_y": 5282.449944263277, + "max_x": 1727.442110729086, + "max_y": 5285.334438414976 + }, + "value": null, + "layer": "0", + "id": "554F20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1731.3175313256, + "min_y": 5272.167899794535, + "max_x": 1736.0199866998114, + "max_y": 5275.325548745819 + }, + "value": "10101B", + "layer": "INSTRUMENT", + "id": "554F28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1724.438344582596, + "min_y": 5263.463828540352, + "max_x": 1727.998360506317, + "max_y": 5266.806607467914 + }, + "value": null, + "layer": "0", + "id": "554F2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1725.404239449226, + "min_y": 5280.908454593394, + "max_x": 1727.4200258799342, + "max_y": 5282.028335943787 + }, + "value": "50A", + "layer": "0", + "id": "554F2C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1731.0607353979906, + "min_y": 5268.59142517754, + "max_x": 1731.4967084304333, + "max_y": 5269.027398209983 + }, + "value": null, + "layer": "0", + "id": "554F30" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1732.050165370314, + "min_y": 5266.884936353489, + "max_x": 1733.823664179054, + "max_y": 5271.128293134484 + }, + "value": null, + "layer": "0", + "id": "554F32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1678.424358632831, + "min_y": 5260.143167693243, + "max_x": 1704.728409489607, + "max_y": 5277.538688842362 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F41" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1689.860678527159, + "min_y": 5278.281314391019, + "max_x": 1701.2834683011718, + "max_y": 5279.401195741412 + }, + "value": "P-10103-25A-F1A-n", + "layer": "LINENO", + "id": "554F42" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1686.496900120731, + "min_y": 5280.017136028352, + "max_x": 1718.893629779106, + "max_y": 5283.04615886268 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F43" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1676.561748086732, + "min_y": 5278.189012460547, + "max_x": 1686.190389355698, + "max_y": 5282.998704076306 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F44" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1687.0158106622084, + "min_y": 5280.198437487198, + "max_x": 1687.6607411835735, + "max_y": 5280.843368008563 + }, + "value": null, + "layer": "0", + "id": "554F49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1709.631381408818, + "min_y": 5283.350826971055, + "max_x": 1725.675485477159, + "max_y": 5323.252867762896 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F4F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.016430006572, + "min_y": 5300.11089184421, + "max_x": 1764.7830774010567, + "max_y": 5304.010118596053 + }, + "value": "N2", + "layer": "0", + "id": "554F51" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1750.708592423272, + "min_y": 5299.471922459662, + "max_x": 1763.24353935007, + "max_y": 5302.450225873056 + }, + "value": null, + "layer": "TEXT", + "id": "554F52" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1752.197744129969, + "min_y": 5299.471922459662, + "max_x": 1763.24353935007, + "max_y": 5299.471922459662 + }, + "value": null, + "layer": "TEXT", + "id": "554F55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1727.440758530495, + "min_y": 5300.961074166359, + "max_x": 1750.708592423272, + "max_y": 5300.961074166359 + }, + "value": null, + "layer": "UTIL", + "id": "554F57" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1734.686285000007, + "min_y": 5301.422869809747, + "max_x": 1746.7810035842558, + "max_y": 5302.54275116014 + }, + "value": "N2-10712-15A-F1A-n", + "layer": "LINENO", + "id": "554F58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1724.760742411566, + "min_y": 5306.081093179759, + "max_x": 1763.204093034729, + "max_y": 5309.059396593154 + }, + "value": null, + "layer": "TEXT", + "id": "554F59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1750.66914610793, + "min_y": 5306.081093179759, + "max_x": 1761.714941328031, + "max_y": 5306.081093179759 + }, + "value": null, + "layer": "TEXT", + "id": "554F5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1722.106869699191, + "min_y": 5307.570244886456, + "max_x": 1746.5944125731978, + "max_y": 5309.107559212733 + }, + "value": "VG-10422-50A-F1A-n", + "layer": "LINENO", + "id": "554F5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1750.487831984533, + "min_y": 5306.786009967806, + "max_x": 1761.2386929483096, + "max_y": 5310.660637588848 + }, + "value": "SC-10128", + "layer": "0", + "id": "554F60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1715.918649896709, + "min_y": 5272.329802060731, + "max_x": 1719.8373627085518, + "max_y": 5275.6949586736155 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "554F61" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1715.2073799709774, + "min_y": 5271.685981834473, + "max_x": 1719.7206957338926, + "max_y": 5276.199297597388 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554F62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5276.199297597387, + "max_x": 1720.498156512986, + "max_y": 5280.861152204192 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554F66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1733.741399799674, + "min_y": 5293.057297040035, + "max_x": 1741.601219864529, + "max_y": 5295.72002132011 + }, + "value": "-200~400mmH2O", + "layer": "0", + "id": "554F69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1726.291213592183, + "min_y": 5288.624840593543, + "max_x": 1744.757562153201, + "max_y": 5292.64915177517 + }, + "value": null, + "layer": "0", + "id": "554F6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1725.675485477159, + "min_y": 5286.126778414831, + "max_x": 1727.238180834055, + "max_y": 5289.537523271721 + }, + "value": null, + "layer": "0", + "id": "554F6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1732.794922221379, + "min_y": 5282.184743842127, + "max_x": 1733.501198533941, + "max_y": 5285.228581845411 + }, + "value": null, + "layer": "0", + "id": "554F6F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1732.9300738614377, + "min_y": 5283.313721642581, + "max_x": 1733.3660468938804, + "max_y": 5283.749694675024 + }, + "value": null, + "layer": "0", + "id": "554F70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1732.271376383466, + "min_y": 5285.228581845411, + "max_x": 1734.024744371855, + "max_y": 5286.509955738872 + }, + "value": null, + "layer": "0", + "id": "554F7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1730.865640377659, + "min_y": 5287.663437507132, + "max_x": 1734.897640377659, + "max_y": 5290.778315972752 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "554F7B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1730.525282450634, + "min_y": 5286.509955738874, + "max_x": 1735.770838304684, + "max_y": 5291.7555115929235 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "554F7C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1730.997866885859, + "min_y": 5281.523185221963, + "max_x": 1735.2982538694591, + "max_y": 5285.823572205562 + }, + "value": null, + "layer": "0", + "id": "554F7D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1716.3713078311584, + "min_y": 5264.47597205912, + "max_x": 1721.4765837296663, + "max_y": 5270.015296719764 + }, + "value": null, + "layer": "0", + "id": "554F83" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5269.423604822062, + "max_x": 1720.487153757344, + "max_y": 5270.171015585006 + }, + "value": null, + "layer": "0", + "id": "554F84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5269.79731020354, + "max_x": 1717.464037852435, + "max_y": 5271.685981834473 + }, + "value": null, + "layer": "0", + "id": "554F8E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1720.8489400390247, + "min_y": 5278.845289367993, + "max_x": 1721.4765837296663, + "max_y": 5280.726000564136 + }, + "value": null, + "layer": "0", + "id": "554F90" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.598451750025, + "min_y": 5382.558190833542, + "max_x": 2019.4405249088422, + "max_y": 5386.895337944995 + }, + "value": "SC-10128", + "layer": "0", + "id": "554FAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2008.779765873422, + "min_y": 5381.294054086493, + "max_x": 2025.133456041487, + "max_y": 5385.264132536553 + }, + "value": null, + "layer": "TEXT", + "id": "554FAE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2008.779765873422, + "min_y": 5385.26413253655, + "max_x": 2023.148416816466, + "max_y": 5385.26413253655 + }, + "value": null, + "layer": "TEXT", + "id": "554FAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1981.011650569633, + "min_y": 5357.11191984478, + "max_x": 1999.5739426826613, + "max_y": 5359.735058865131 + }, + "value": "P-10312-100A-F1A-n", + "layer": "LINENO", + "id": "554FB3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1959.681783758454, + "min_y": 5402.884639879013, + "max_x": 1971.7765023427028, + "max_y": 5404.004521229406 + }, + "value": "N2-10705-15A-F1A-n", + "layer": "LINENO", + "id": "554FB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2035.781516906082, + "min_y": 5361.443491483719, + "max_x": 2047.065953935473, + "max_y": 5382.888478343736 + }, + "value": null, + "layer": "UTIL", + "id": "554FB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5412.269279981513, + "max_x": 2029.324034438345, + "max_y": 5415.294241417345 + }, + "value": null, + "layer": "TEXT", + "id": "554FB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5415.247583394908, + "max_x": 2027.834882731653, + "max_y": 5415.247583394908 + }, + "value": null, + "layer": "TEXT", + "id": "554FB8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2016.874385605221, + "min_y": 5413.009775506621, + "max_x": 2027.6252465689977, + "max_y": 5416.848824390601 + }, + "value": "SARF-#10-PID-001", + "layer": "0", + "id": "554FBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5406.733171030476, + "max_x": 2029.324034438345, + "max_y": 5409.758132466308 + }, + "value": null, + "layer": "TEXT", + "id": "554FBE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5409.71147444387, + "max_x": 2027.834882731653, + "max_y": 5409.71147444387 + }, + "value": null, + "layer": "TEXT", + "id": "554FBF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2016.874385605221, + "min_y": 5407.473666555584, + "max_x": 2027.6252465689977, + "max_y": 5411.312715439564 + }, + "value": "SARF-#10-PID-002", + "layer": "0", + "id": "554FC3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2029.324034438345, + "min_y": 5384.22435014936, + "max_x": 2040.53996574971, + "max_y": 5413.758442627052 + }, + "value": null, + "layer": "UTIL", + "id": "554FC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2029.324034438345, + "min_y": 5408.222322737175, + "max_x": 2040.53996574971, + "max_y": 5408.222322737175 + }, + "value": null, + "layer": "UTIL", + "id": "554FC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2044.39113694385, + "min_y": 5382.105380721847, + "max_x": 2054.4700690973905, + "max_y": 5386.192739366566 + }, + "value": "SC-9128", + "layer": "0", + "id": "554FC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2044.572451067248, + "min_y": 5380.841243974799, + "max_x": 2060.926141235313, + "max_y": 5384.873517568763 + }, + "value": null, + "layer": "TEXT", + "id": "554FC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2044.572451067248, + "min_y": 5384.811322424855, + "max_x": 2058.941102010293, + "max_y": 5384.811322424855 + }, + "value": null, + "layer": "TEXT", + "id": "554FC9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.323860854856, + "min_y": 5411.508236606112, + "max_x": 2054.090508249341, + "max_y": 5412.628117956506 + }, + "value": "VG-10440-300A-F1A-N", + "layer": "LINENO", + "id": "554FCE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2035.284804809656, + "min_y": 5366.595580732571, + "max_x": 2036.283691779907, + "max_y": 5382.888478343736 + }, + "value": null, + "layer": "UTIL", + "id": "554FCF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5283.305214841339, + "max_x": 1680.327734956658, + "max_y": 5301.079373519918 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554FD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5283.305214841339, + "max_x": 1683.165420790438, + "max_y": 5306.66052837604 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "554FD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5303.682224962645, + "max_x": 1661.447826953631, + "max_y": 5306.66052837604 + }, + "value": null, + "layer": "TEXT", + "id": "554FD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5303.682224962645, + "max_x": 1661.447826953631, + "max_y": 5303.682224962645 + }, + "value": null, + "layer": "TEXT", + "id": "554FD7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1650.220717610133, + "min_y": 5301.560733165218, + "max_x": 1660.2996497636736, + "max_y": 5308.261769371733 + }, + "value": "T-201", + "layer": "0", + "id": "554FD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5298.101070106524, + "max_x": 1661.447826953631, + "max_y": 5301.079373519918 + }, + "value": null, + "layer": "TEXT", + "id": "554FDB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5298.101070106524, + "max_x": 1661.447826953631, + "max_y": 5298.101070106524 + }, + "value": null, + "layer": "TEXT", + "id": "554FDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1652.908756886449, + "min_y": 5298.805986894572, + "max_x": 1658.2841873683374, + "max_y": 5300.29916202843 + }, + "value": "T-3101", + "layer": "0", + "id": "554FE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1679.82396823713, + "min_y": 5282.998704076306, + "max_x": 1683.669495118131, + "max_y": 5283.305214841339 + }, + "value": null, + "layer": "0", + "id": "554FE6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1682.8429555297555, + "min_y": 5281.834863013466, + "max_x": 1683.4878860511205, + "max_y": 5282.479793534831 + }, + "value": null, + "layer": "0", + "id": "554FE8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1680.0052696959756, + "min_y": 5281.834863013466, + "max_x": 1680.6502002173406, + "max_y": 5282.479793534831 + }, + "value": null, + "layer": "0", + "id": "554FF1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1681.502251982174, + "min_y": 5276.898659237201, + "max_x": 1682.308457829481, + "max_y": 5278.189615077502 + }, + "value": null, + "layer": "0", + "id": "554FFA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1681.6448505177739, + "min_y": 5278.6076754573, + "max_x": 1682.160794934866, + "max_y": 5279.123619874391 + }, + "value": null, + "layer": "0", + "id": "554FFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1677.920284305135, + "min_y": 5277.538688842362, + "max_x": 1678.928125352355, + "max_y": 5278.381747067172 + }, + "value": null, + "layer": "0", + "id": "555006" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1678.1015857639804, + "min_y": 5278.335946962093, + "max_x": 1678.7465162853455, + "max_y": 5278.980877483457 + }, + "value": null, + "layer": "0", + "id": "55500A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5224.177376728118, + "max_x": 1705.228436036774, + "max_y": 5258.273880553073 + }, + "value": null, + "layer": "0", + "id": "555011" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1704.4018964483994, + "min_y": 5230.564516770933, + "max_x": 1705.0468269697644, + "max_y": 5231.209447292297 + }, + "value": null, + "layer": "0", + "id": "555015" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5315.488378418365, + "max_x": 1713.154946028382, + "max_y": 5318.461111844677 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55501E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1712.094422810219, + "min_y": 5319.950032714917, + "max_x": 1722.888886989995, + "max_y": 5323.252867762896 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55501F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1704.493558869894, + "min_y": 5308.467358766256, + "max_x": 1709.108938153519, + "max_y": 5314.700422949972 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555020" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1648.575143658974, + "min_y": 5135.934550405232, + "max_x": 2065.618958545478, + "max_y": 5432.935976887679 + }, + "value": null, + "layer": "0", + "id": "555021" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1704.136128487617, + "min_y": 5308.365413049949, + "max_x": 1705.244264370979, + "max_y": 5308.467358766256 + }, + "value": null, + "layer": "0", + "id": "555026" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1706.858800867579, + "min_y": 5308.365413049949, + "max_x": 1712.599857384374, + "max_y": 5311.650866863269 + }, + "value": null, + "layer": "0", + "id": "55502A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5318.461111844677, + "max_x": 1713.154946028371, + "max_y": 5319.950032714917 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555035" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1712.2760318772284, + "min_y": 5320.468943256394, + "max_x": 1712.9209623985935, + "max_y": 5321.113873777758 + }, + "value": null, + "layer": "0", + "id": "555047" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1698.639856547605, + "min_y": 5310.164321386729, + "max_x": 1702.213522590571, + "max_y": 5314.51028067982 + }, + "value": null, + "layer": "0", + "id": "55504C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1701.7232891303684, + "min_y": 5311.239992464773, + "max_x": 1704.4935588698925, + "max_y": 5311.635745284709 + }, + "value": null, + "layer": "0", + "id": "555050" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1696.873092532435, + "min_y": 5310.91714300707, + "max_x": 1698.639856547602, + "max_y": 5311.961930451682 + }, + "value": null, + "layer": "0", + "id": "55505C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1712.077463662069, + "min_y": 5311.650866863269, + "max_x": 1713.12225110668, + "max_y": 5312.718115707946 + }, + "value": null, + "layer": "0", + "id": "555063" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1712.4003131197717, + "min_y": 5312.718108678834, + "max_x": 1712.7960659397065, + "max_y": 5315.488378418362 + }, + "value": null, + "layer": "0", + "id": "555067" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1717.843800432698, + "min_y": 5347.687953269925, + "max_x": 1725.609981887269, + "max_y": 5350.969474938009 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555070" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1725.609981887269, + "min_y": 5345.922416113523, + "max_x": 1731.910441128394, + "max_y": 5348.826077962426 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555071" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1731.910439119447, + "min_y": 5341.609558288843, + "max_x": 1743.436745036204, + "max_y": 5348.779409338465 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555072" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1723.7768997976207, + "min_y": 5348.71867710235, + "max_x": 1725.6099818872715, + "max_y": 5350.551759192002 + }, + "value": null, + "layer": "0", + "id": "555073" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1723.85012678959, + "min_y": 5341.087164566538, + "max_x": 1733.310374031442, + "max_y": 5344.37789687682 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55507E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1716.258540348881, + "min_y": 5341.087169491228, + "max_x": 1723.850128798539, + "max_y": 5348.257015616176 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55507F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1723.037129678003, + "min_y": 5350.551759192001, + "max_x": 1726.349752006888, + "max_y": 5361.524895104221 + }, + "value": null, + "layer": "0", + "id": "555085" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1724.257887025979, + "min_y": 5353.725968332154, + "max_x": 1725.7128759794539, + "max_y": 5354.534295528529 + }, + "value": "I/P", + "layer": "0", + "id": "555088" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1718.215650587885, + "min_y": 5351.373587664646, + "max_x": 1722.1343633997278, + "max_y": 5354.9782835076685 + }, + "value": "TCV", + "layer": "INSTRUMENT", + "id": "555089" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1717.5174538234648, + "min_y": 5347.934552817942, + "max_x": 1723.2316272413711, + "max_y": 5355.898944748604 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55508E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1708.988955054544, + "min_y": 5347.605317346815, + "max_x": 1717.843802441648, + "max_y": 5348.918172507353 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555092" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1702.786785564455, + "min_y": 5346.460732957566, + "max_x": 1708.5009589823612, + "max_y": 5356.952734926206 + }, + "value": null, + "layer": "0", + "id": "555094" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1699.0231711698, + "min_y": 5346.98685196734, + "max_x": 1706.914035922238, + "max_y": 5349.527179265006 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555095" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1705.643872273408, + "min_y": 5350.053298274791, + "max_x": 1705.643872273408, + "max_y": 5351.239392957634 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "555099" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1703.470456180139, + "min_y": 5352.338791918054, + "max_x": 1707.389168991982, + "max_y": 5355.829873837553 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "55509A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1689.775377515029, + "min_y": 5348.257015616176, + "max_x": 1699.051377890458, + "max_y": 5353.11438906208 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55509C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1678.801125839413, + "min_y": 5347.708244336708, + "max_x": 1691.246173825688, + "max_y": 5351.104407907433 + }, + "value": null, + "layer": "0", + "id": "55509D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1687.5486983320957, + "min_y": 5348.71867710235, + "max_x": 1689.3817804217465, + "max_y": 5350.551759192002 + }, + "value": null, + "layer": "0", + "id": "5550A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5351.104407907428, + "max_x": 1691.246173825688, + "max_y": 5352.204515981888 + }, + "value": null, + "layer": "0", + "id": "5550A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1671.087714601664, + "min_y": 5347.147158601225, + "max_x": 1678.474528992394, + "max_y": 5348.824261108146 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5550A8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1666.914340390632, + "min_y": 5338.922901737156, + "max_x": 1671.087716610613, + "max_y": 5350.240376400976 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5550A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1657.884596623087, + "min_y": 5347.421008792959, + "max_x": 1670.6512440175718, + "max_y": 5351.958811236597 + }, + "value": "STEAM", + "layer": "0", + "id": "5550AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1707.440154932018, + "min_y": 5347.687953269925, + "max_x": 1708.988955054544, + "max_y": 5348.826077962426 + }, + "value": null, + "layer": "0", + "id": "5550AB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1678.9358915561888, + "min_y": 5352.203684532544, + "max_x": 1697.9799144365602, + "max_y": 5361.503108789135 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5550B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1686.291823283652, + "min_y": 5353.310384452707, + "max_x": 1690.210536095495, + "max_y": 5356.939351058697 + }, + "value": "10115", + "layer": "INSTRUMENT", + "id": "5550B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.065910746485, + "min_y": 5346.270595781263, + "max_x": 1666.914340390632, + "max_y": 5350.240376400987 + }, + "value": null, + "layer": "TEXT", + "id": "5550B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1658.065910746485, + "min_y": 5346.270595781263, + "max_x": 1666.914340390632, + "max_y": 5346.270595781263 + }, + "value": null, + "layer": "TEXT", + "id": "5550B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1724.4076610858315, + "min_y": 5347.971235859562, + "max_x": 1724.9792205990607, + "max_y": 5348.542795372791 + }, + "value": null, + "layer": "0", + "id": "5550BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1681.238932244229, + "min_y": 5348.257015616176, + "max_x": 1682.341749544606, + "max_y": 5353.11438906208 + }, + "value": null, + "layer": "0", + "id": "5550BB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1683.938676295966, + "min_y": 5345.114700432667, + "max_x": 1685.041493596343, + "max_y": 5348.257015616176 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5550BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5343.500014227227, + "max_x": 1685.041493596343, + "max_y": 5345.114700432667 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5550BD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1730.7465990610806, + "min_y": 5347.934552817926, + "max_x": 1731.3915295824456, + "max_y": 5348.57948333929 + }, + "value": null, + "layer": "0", + "id": "5550CB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1724.3690383355374, + "min_y": 5341.287095490608, + "max_x": 1725.0139688569025, + "max_y": 5341.932026011973 + }, + "value": null, + "layer": "0", + "id": "5550DD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1671.6066261476105, + "min_y": 5347.934552817942, + "max_x": 1672.2515566689756, + "max_y": 5348.5794833393065 + }, + "value": null, + "layer": "0", + "id": "5550E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5344.37789687682, + "max_x": 1728.485183361424, + "max_y": 5345.324058279905 + }, + "value": null, + "layer": "0", + "id": "5550E9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1727.5825016579975, + "min_y": 5345.274166571533, + "max_x": 1728.2850477644765, + "max_y": 5345.976712678012 + }, + "value": null, + "layer": "0", + "id": "5550EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5353.11438906208, + "max_x": 1695.671599007073, + "max_y": 5355.788935371229 + }, + "value": null, + "layer": "0", + "id": "5550F1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1694.7689173036454, + "min_y": 5351.850979820126, + "max_x": 1695.4714634101244, + "max_y": 5352.553525926604 + }, + "value": null, + "layer": "0", + "id": "5550F3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5353.11438906208, + "max_x": 1682.341749544606, + "max_y": 5355.788935371229 + }, + "value": null, + "layer": "0", + "id": "5550FA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1681.4390678411794, + "min_y": 5351.850979820126, + "max_x": 1682.1416139476585, + "max_y": 5352.553525926604 + }, + "value": null, + "layer": "0", + "id": "5550FC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1684.1388118929165, + "min_y": 5345.68437328036, + "max_x": 1684.8413579993955, + "max_y": 5346.386919386839 + }, + "value": null, + "layer": "0", + "id": "555105" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1703.021103000292, + "min_y": 5357.000558042341, + "max_x": 1708.266658854342, + "max_y": 5362.246113896391 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55510C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.973279884172, + "min_y": 5359.623341294348, + "max_x": 1708.314487295442, + "max_y": 5362.293942337488 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55510D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1703.021103000297, + "min_y": 5356.952729601244, + "max_x": 1708.314487295442, + "max_y": 5362.293931687532 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555110" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.973274559195, + "min_y": 5356.952729601244, + "max_x": 1708.314476645491, + "max_y": 5359.623341294341 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555111" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1703.469236569805, + "min_y": 5357.955215278363, + "max_x": 1707.3879493816478, + "max_y": 5361.304190245872 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "555115" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1725.842336627884, + "min_y": 5350.565998070106, + "max_x": 1727.0515397147847, + "max_y": 5351.57366730919 + }, + "value": "FC", + "layer": "0", + "id": "55511A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1745.842473056357, + "min_y": 5356.854841545766, + "max_x": 1751.2838869474106, + "max_y": 5359.493830092785 + }, + "value": "PSV-10115", + "layer": "0", + "id": "55511B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1745.776064855717, + "min_y": 5355.322142567105, + "max_x": 1751.822080290221, + "max_y": 5356.329811806189 + }, + "value": "SP: 0.7MPa", + "layer": "0", + "id": "55511D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1748.022858684217, + "min_y": 5348.257015616176, + "max_x": 1752.159668568376, + "max_y": 5354.298905329545 + }, + "value": null, + "layer": "0", + "id": "55511E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1744.50823117619, + "min_y": 5344.403564538639, + "max_x": 1761.046960298542, + "max_y": 5346.764615689579 + }, + "value": "ST-10511-100A-S1A-H50", + "layer": "LINENO", + "id": "55512C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1723.674604924542, + "min_y": 5346.395264867503, + "max_x": 1725.4884095548932, + "max_y": 5347.402934106587 + }, + "value": "80A", + "layer": "0", + "id": "555133" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1704.389184690198, + "min_y": 5344.940104309277, + "max_x": 1706.8075908639994, + "max_y": 5345.947773548361 + }, + "value": "100A", + "layer": "0", + "id": "555134" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5285.817062796477, + "max_x": 1792.255828128739, + "max_y": 5291.043175764979 + }, + "value": null, + "layer": "0", + "id": "555137" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5288.430119280728, + "max_x": 1792.255828128739, + "max_y": 5288.430119280728 + }, + "value": null, + "layer": "0", + "id": "555138" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1779.552600194317, + "min_y": 5289.176706847658, + "max_x": 1785.5999594864413, + "max_y": 5293.282938465766 + }, + "value": "FEED", + "layer": "0", + "id": "555139" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1773.082994333329, + "min_y": 5286.563650363405, + "max_x": 1777.1145671947452, + "max_y": 5290.296588198052 + }, + "value": "TEMP.", + "layer": "0", + "id": "55513A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1779.416614601768, + "min_y": 5286.563650363405, + "max_x": 1788.1516891348367, + "max_y": 5287.683531713798 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "55513D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5285.817062796477, + "max_x": 1792.255828128739, + "max_y": 5294.029526032694 + }, + "value": null, + "layer": "0", + "id": "55513F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1698.5507221357484, + "min_y": 5204.229410580306, + "max_x": 1702.5188738270435, + "max_y": 5208.197562271601 + }, + "value": null, + "layer": "0", + "id": "555140" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1696.717113861552, + "min_y": 5202.686699297224, + "max_x": 1702.840277358258, + "max_y": 5206.735880148263 + }, + "value": null, + "layer": "0", + "id": "555141" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1701.738508093979, + "min_y": 5202.686699297224, + "max_x": 1702.840277358258, + "max_y": 5209.743013738694 + }, + "value": null, + "layer": "0", + "id": "555142" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1700.0942684624208, + "min_y": 5205.772956906978, + "max_x": 1700.9753275003711, + "max_y": 5206.654015944929 + }, + "value": null, + "layer": "0", + "id": "555144" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1704.62917631055, + "min_y": 5218.612444323229, + "max_x": 1706.382544298939, + "max_y": 5222.450878729624 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555145" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1705.1833950440625, + "min_y": 5219.131354864706, + "max_x": 1705.8283255654276, + "max_y": 5219.77628538607 + }, + "value": null, + "layer": "0", + "id": "555147" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.518981746586, + "min_y": 5216.206785818979, + "max_x": 1706.009627024271, + "max_y": 5218.312631580861 + }, + "value": null, + "layer": "0", + "id": "555149" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1703.313796304743, + "min_y": 5223.602680497885, + "max_x": 1707.3457963047429, + "max_y": 5226.719238963506 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55514A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1702.1964085663624, + "min_y": 5222.450878729625, + "max_x": 1708.128638231768, + "max_y": 5227.696434583675 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55514B" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1703.355666812943, + "min_y": 5217.464108212716, + "max_x": 1707.6560537965431, + "max_y": 5221.764495196316 + }, + "value": null, + "layer": "0", + "id": "55514C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5213.375927243418, + "max_x": 1706.009627024271, + "max_y": 5215.653455507766 + }, + "value": null, + "layer": "0", + "id": "555157" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1705.1833950440605, + "min_y": 5215.607655402689, + "max_x": 1705.8283255654255, + "max_y": 5216.252585924053 + }, + "value": null, + "layer": "0", + "id": "55515D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5212.81308919148, + "max_x": 1703.079073848838, + "max_y": 5214.650455964592 + }, + "value": null, + "layer": "0", + "id": "555163" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1701.996480104734, + "min_y": 5209.743013738694, + "max_x": 1703.041267549354, + "max_y": 5210.042826481064 + }, + "value": null, + "layer": "0", + "id": "555172" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1702.3209974170725, + "min_y": 5210.042826481066, + "max_x": 1702.7167502370073, + "max_y": 5212.8130962205905 + }, + "value": null, + "layer": "0", + "id": "555174" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.051131703341, + "min_y": 5215.504639316179, + "max_x": 1702.986870119032, + "max_y": 5221.894999639065 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55517C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1689.543798553076, + "min_y": 5205.692760558278, + "max_x": 1693.647038408766, + "max_y": 5206.737548002891 + }, + "value": null, + "layer": "0", + "id": "55517D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1696.417301119182, + "min_y": 5205.691092703643, + "max_x": 1696.417301119182, + "max_y": 5206.735880148263 + }, + "value": null, + "layer": "0", + "id": "55517F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1693.6470313796563, + "min_y": 5206.015610015981, + "max_x": 1696.4173011191804, + "max_y": 5206.411362835916 + }, + "value": null, + "layer": "0", + "id": "555181" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1686.450562510479, + "min_y": 5203.309413722942, + "max_x": 1690.926690640834, + "max_y": 5206.737548002891 + }, + "value": null, + "layer": "0", + "id": "555189" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1690.2657050566659, + "min_y": 5203.724542156124, + "max_x": 1690.781649473758, + "max_y": 5204.240486573215 + }, + "value": null, + "layer": "0", + "id": "555192" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5201.858235918955, + "max_x": 1690.926690640834, + "max_y": 5203.761182240175 + }, + "value": null, + "layer": "0", + "id": "555194" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1671.444339459196, + "min_y": 5205.711079952888, + "max_x": 1685.897232199269, + "max_y": 5220.646293695377 + }, + "value": null, + "layer": "0", + "id": "5551A2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1685.8514320941915, + "min_y": 5205.892381411733, + "max_x": 1686.4963626155566, + "max_y": 5206.537311933098 + }, + "value": null, + "layer": "0", + "id": "5551A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1695.460205389444, + "min_y": 5220.142219367682, + "max_x": 1703.02264054657, + "max_y": 5222.759523027986 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5551B6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1695.9791159309216, + "min_y": 5220.323520826528, + "max_x": 1696.6240464522866, + "max_y": 5220.968451347892 + }, + "value": null, + "layer": "0", + "id": "5551BB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1683.413107173497, + "min_y": 5220.142526975854, + "max_x": 1695.153694624415, + "max_y": 5221.150060414902 + }, + "value": null, + "layer": "0", + "id": "5551BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1652.451933540239, + "min_y": 5220.445681149814, + "max_x": 1658.7232691024421, + "max_y": 5221.938856283672 + }, + "value": "T-10100", + "layer": "0", + "id": "5551C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5219.705694655992, + "max_x": 1662.936978660329, + "max_y": 5222.683998069387 + }, + "value": null, + "layer": "TEXT", + "id": "5551C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5219.705694655992, + "max_x": 1661.447826953631, + "max_y": 5219.705694655992 + }, + "value": null, + "layer": "TEXT", + "id": "5551C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5210.5170548005, + "max_x": 1674.061757971565, + "max_y": 5221.194846362689 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5551C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1678.218173781587, + "min_y": 5206.21528136473, + "max_x": 1681.970432077406, + "max_y": 5253.436811055911 + }, + "value": null, + "layer": "0", + "id": "5551C8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1678.3997828485965, + "min_y": 5209.074953311624, + "max_x": 1679.0447133699615, + "max_y": 5209.719883832989 + }, + "value": null, + "layer": "0", + "id": "5551CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1671.2833293663, + "min_y": 5204.203846489152, + "max_x": 1672.81376608053, + "max_y": 5206.71896093204 + }, + "value": null, + "layer": "0", + "id": "5551D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1673.557683643874, + "min_y": 5206.215194212515, + "max_x": 1674.565524691091, + "max_y": 5210.5170548005 + }, + "value": null, + "layer": "0", + "id": "5551D3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1673.7392927108824, + "min_y": 5209.07486615941, + "max_x": 1674.3842232322475, + "max_y": 5209.719796680774 + }, + "value": null, + "layer": "0", + "id": "5551D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1680.962591030188, + "min_y": 5206.215194212515, + "max_x": 1681.970432077406, + "max_y": 5210.238707222251 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5551DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1681.106953519879, + "min_y": 5210.5170548005, + "max_x": 1721.278225939452, + "max_y": 5259.352315441632 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5551DF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1704.263854439026, + "min_y": 5239.233184141444, + "max_x": 1715.6866442130388, + "max_y": 5242.162155042017 + }, + "value": "P-10106-25A-F1A-n", + "layer": "LINENO", + "id": "5551E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1682.901209564374, + "min_y": 5257.06176835159, + "max_x": 1694.3239993383868, + "max_y": 5258.181649701984 + }, + "value": "P-10109-40A-F1A-n", + "layer": "LINENO", + "id": "5551E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1685.350343605023, + "min_y": 5230.399547475816, + "max_x": 1696.7731333790357, + "max_y": 5231.519428826209 + }, + "value": "P-10111-25A-F1A-n", + "layer": "LINENO", + "id": "5551E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1675.857828171099, + "min_y": 5199.804381343128, + "max_x": 1677.155676974985, + "max_y": 5206.215183741445 + }, + "value": null, + "layer": "0", + "id": "5551E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1674.104475274797, + "min_y": 5199.369531105626, + "max_x": 1688.9259341706306, + "max_y": 5201.3728949108045 + }, + "value": "P-10110-40A-F1A-n", + "layer": "LINENO", + "id": "5551E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.278225939452, + "min_y": 5263.463828540352, + "max_x": 1723.885014271385, + "max_y": 5264.471669587569 + }, + "value": null, + "layer": "0", + "id": "5551EA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1723.8392141663076, + "min_y": 5263.645129999196, + "max_x": 1724.4841446876726, + "max_y": 5264.2900605205605 + }, + "value": null, + "layer": "0", + "id": "5551EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1728.551690817528, + "min_y": 5263.463828540352, + "max_x": 1729.394749042332, + "max_y": 5264.471669587569 + }, + "value": null, + "layer": "0", + "id": "5551F1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1727.9525604012406, + "min_y": 5263.645129999196, + "max_x": 1728.5974909226056, + "max_y": 5264.2900605205605 + }, + "value": null, + "layer": "0", + "id": "5551F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1757.404189672786, + "min_y": 5228.519966194205, + "max_x": 1757.797789906363, + "max_y": 5229.564753638818 + }, + "value": null, + "layer": "0", + "id": "5551FC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1906.8288840862879, + "min_y": 5339.401366098823, + "max_x": 1907.318884906626, + "max_y": 5342.341371020832 + }, + "value": null, + "layer": "0", + "id": "555209" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5338.911365278492, + "max_x": 1907.3188849066232, + "max_y": 5339.401366098825 + }, + "value": null, + "layer": "0", + "id": "555210" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5345.87786187929, + "max_x": 1907.730395628795, + "max_y": 5365.36876431108 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555211" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5343.762894362747, + "max_x": 1902.540227832376, + "max_y": 5345.550696027306 + }, + "value": null, + "layer": "0", + "id": "555212" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1900.884708946659, + "min_y": 5351.019534477932, + "max_x": 1903.055639157103, + "max_y": 5353.410985348658 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555215" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1901.6182890021944, + "min_y": 5349.7495115633465, + "max_x": 1902.3220591015677, + "max_y": 5350.45328166272 + }, + "value": null, + "layer": "0", + "id": "555223" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1901.414278734478, + "min_y": 5345.87786187929, + "max_x": 1902.526069369284, + "max_y": 5345.87786187929 + }, + "value": null, + "layer": "0", + "id": "555226" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1901.6182890021944, + "min_y": 5346.444114694503, + "max_x": 1902.3220591015677, + "max_y": 5347.147884793876 + }, + "value": null, + "layer": "0", + "id": "555231" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1899.796757958611, + "min_y": 5354.591599066673, + "max_x": 1903.7154707704537, + "max_y": 5358.214301875061 + }, + "value": "10114", + "layer": "INSTRUMENT", + "id": "555236" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1899.1081096570522, + "min_y": 5353.410985348657, + "max_x": 1904.8322384467076, + "max_y": 5359.135114138313 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555238" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1896.757349117487, + "min_y": 5349.628204127005, + "max_x": 1904.5698025277832, + "max_y": 5350.7577828981575 + }, + "value": "P10114BA-06", + "layer": "VALVE NO", + "id": "555239" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1896.666692055789, + "min_y": 5346.403709457922, + "max_x": 1904.5110880424181, + "max_y": 5347.55641017404 + }, + "value": "P10114BA-07", + "layer": "VALVE NO", + "id": "55523A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1899.3079148794986, + "min_y": 5347.236622157702, + "max_x": 1904.6324332242611, + "max_y": 5352.561140502466 + }, + "value": null, + "layer": "0", + "id": "55523C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.674389206247, + "max_x": 1913.805433954513, + "max_y": 5367.53220589286 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555247" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1909.881985665463, + "min_y": 5367.53220589286, + "max_x": 1910.993776300271, + "max_y": 5377.001643694423 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555248" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5387.427248998406, + "max_x": 1869.657243357782, + "max_y": 5390.341499602559 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555250" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1916.508367370688, + "min_y": 5330.491654103719, + "max_x": 1927.8781671118875, + "max_y": 5334.152414572396 + }, + "value": "25Ax40A", + "layer": "VALVE NO", + "id": "555254" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1941.579611134834, + "min_y": 5328.006721486783, + "max_x": 1942.7888142217348, + "max_y": 5329.014390725867 + }, + "value": "FC", + "layer": "0", + "id": "555255" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1968.91309539008, + "min_y": 5279.22397775227, + "max_x": 1975.184430952283, + "max_y": 5280.717152886128 + }, + "value": "T-10101", + "layer": "0", + "id": "555257" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5278.499489338071, + "max_x": 1978.902414574071, + "max_y": 5281.477792751466 + }, + "value": null, + "layer": "TEXT", + "id": "555258" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5273.933337146587, + "max_x": 1978.902414574071, + "max_y": 5278.499489338071 + }, + "value": null, + "layer": "TEXT", + "id": "55525B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2031.771211209676, + "min_y": 5293.026028653328, + "max_x": 2033.374201756404, + "max_y": 5309.159751056824 + }, + "value": null, + "layer": "0", + "id": "55526A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2031.9587860363206, + "min_y": 5307.772251334298, + "max_x": 2032.3947590687633, + "max_y": 5308.208224366741 + }, + "value": null, + "layer": "0", + "id": "555276" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2034.833195985824, + "min_y": 5288.752995539505, + "max_x": 2039.936203124244, + "max_y": 5291.196814752746 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555280" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2038.7723620614024, + "min_y": 5288.934296998348, + "max_x": 2039.4172925827675, + "max_y": 5289.579227519713 + }, + "value": null, + "layer": "0", + "id": "555285" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2040.214550702494, + "min_y": 5288.753303147672, + "max_x": 2040.214550702494, + "max_y": 5289.760836586722 + }, + "value": null, + "layer": "0", + "id": "555286" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2035.3521065273014, + "min_y": 5288.934296998348, + "max_x": 2035.9970370486665, + "max_y": 5289.579227519713 + }, + "value": null, + "layer": "0", + "id": "55528E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2034.526685220794, + "min_y": 5288.753303147672, + "max_x": 2034.526685220794, + "max_y": 5289.760836586722 + }, + "value": null, + "layer": "0", + "id": "555290" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5329.218559974425, + "max_x": 1975.703724444132, + "max_y": 5334.444672942929 + }, + "value": null, + "layer": "0", + "id": "555296" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5331.831616458677, + "max_x": 1975.703724444132, + "max_y": 5331.831616458677 + }, + "value": null, + "layer": "0", + "id": "555297" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1956.666876241269, + "min_y": 5332.578204025606, + "max_x": 1969.6952767272392, + "max_y": 5336.684435643715 + }, + "value": "LIGHT ENDS", + "layer": "0", + "id": "555298" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1956.530890648721, + "min_y": 5329.965147541354, + "max_x": 1960.5624635101371, + "max_y": 5331.085028891747 + }, + "value": "PRESS.", + "layer": "0", + "id": "55529B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1962.864510917162, + "min_y": 5329.965147541354, + "max_x": 1971.5995854502307, + "max_y": 5331.085028891747 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "55529C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5329.218559974425, + "max_x": 1975.703724444132, + "max_y": 5337.431023210644 + }, + "value": null, + "layer": "0", + "id": "55529E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1952.008019279564, + "min_y": 5306.055825893707, + "max_x": 1957.682854410245, + "max_y": 5307.968999988172 + }, + "value": null, + "layer": "0", + "id": "55529F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1869.928575903471, + "min_y": 5285.106136272097, + "max_x": 1871.22217806915, + "max_y": 5287.932058387182 + }, + "value": null, + "layer": "0", + "id": "5552A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1869.938042350698, + "min_y": 5287.932058387182, + "max_x": 1871.185518519615, + "max_y": 5287.932058387182 + }, + "value": null, + "layer": "0", + "id": "5552A6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1870.328311524177, + "min_y": 5282.1661400531675, + "max_x": 1870.818312344515, + "max_y": 5285.106144975178 + }, + "value": null, + "layer": "0", + "id": "5552B1" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5281.676139232836, + "max_x": 1870.8183123445124, + "max_y": 5282.166140053169 + }, + "value": null, + "layer": "0", + "id": "5552B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5286.745881424168, + "max_x": 1874.872502973168, + "max_y": 5288.533683088726 + }, + "value": null, + "layer": "0", + "id": "5552BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.74473385562, + "min_y": 5292.166245809553, + "max_x": 1874.856524490429, + "max_y": 5294.807441051801 + }, + "value": null, + "layer": "0", + "id": "5552C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5290.080893224368, + "max_x": 1874.872502973168, + "max_y": 5292.166245809553 + }, + "value": null, + "layer": "0", + "id": "5552C6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1873.9505641429864, + "min_y": 5292.732498624767, + "max_x": 1874.6543342423597, + "max_y": 5293.43626872414 + }, + "value": null, + "layer": "0", + "id": "5552D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.746553875271, + "min_y": 5288.86084894071, + "max_x": 1874.858344510076, + "max_y": 5289.477080386846 + }, + "value": null, + "layer": "0", + "id": "5552D3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1873.9505641429864, + "min_y": 5289.427101755921, + "max_x": 1874.6543342423597, + "max_y": 5290.130871855295 + }, + "value": null, + "layer": "0", + "id": "5552DF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1868.767087023342, + "min_y": 5295.3324033835, + "max_x": 1880.1898767973546, + "max_y": 5299.610757578204 + }, + "value": "10118", + "layer": "INSTRUMENT", + "id": "5552E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1897.5901045365272, + "min_y": 5312.649295169098, + "max_x": 1903.3142333261826, + "max_y": 5318.373423958754 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5552E7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1892.2387217623, + "min_y": 5309.087160503191, + "max_x": 1893.4479248492007, + "max_y": 5310.094829742275 + }, + "value": "FC", + "layer": "0", + "id": "5552EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5290.683006457308, + "max_x": 1909.366612131369, + "max_y": 5291.944479341245 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5552EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1904.367288469405, + "min_y": 5245.895492521325, + "max_x": 1907.735302175798, + "max_y": 5247.669501536954 + }, + "value": null, + "layer": "0", + "id": "5552ED" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2041.8501433632164, + "min_y": 5305.531370399388, + "max_x": 2042.9700247136097, + "max_y": 5306.651251749782 + }, + "value": null, + "layer": "0", + "id": "5552F2" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2031.7712112096763, + "min_y": 5292.46608797813, + "max_x": 2032.8910925600696, + "max_y": 5293.585969328525 + }, + "value": null, + "layer": "0", + "id": "5552F4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2041.8501433632164, + "min_y": 5292.46608797813, + "max_x": 2042.9700247136097, + "max_y": 5293.585969328525 + }, + "value": null, + "layer": "0", + "id": "5552F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2050.263884104721, + "min_y": 5312.213633422159, + "max_x": 2061.9379068991266, + "max_y": 5319.678584549352 + }, + "value": "SC-10128", + "layer": "0", + "id": "5552F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2039.860347072579, + "min_y": 5314.619073695839, + "max_x": 2065.441087665718, + "max_y": 5317.59663253338 + }, + "value": null, + "layer": "TEXT", + "id": "5552F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2060.671949826184, + "min_y": 5311.635892608127, + "max_x": 2060.671949826184, + "max_y": 5314.316365680184 + }, + "value": null, + "layer": "0", + "id": "555300" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2045.032094744549, + "min_y": 5307.440520723942, + "max_x": 2058.4928235546777, + "max_y": 5310.893672393951 + }, + "value": "UFD-9005", + "layer": "0", + "id": "555304" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2027.850006948861, + "min_y": 5314.171783754581, + "max_x": 2033.021063600124, + "max_y": 5315.660935461278 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555308" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2020.200500805774, + "min_y": 5313.437735736417, + "max_x": 2026.4718363679772, + "max_y": 5314.9309108702755 + }, + "value": "E-10119", + "layer": "0", + "id": "555309" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5315.660935461277, + "max_x": 2027.850006948867, + "max_y": 5315.660935461277 + }, + "value": null, + "layer": "TEXT", + "id": "55530B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2039.853627784477, + "min_y": 5316.445206924079, + "max_x": 2051.9483463687257, + "max_y": 5317.565088274472 + }, + "value": "VG-10421-50A-F1A-n", + "layer": "LINENO", + "id": "555310" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2036.323071796497, + "min_y": 5310.809944443447, + "max_x": 2048.56754472878, + "max_y": 5319.825558379941 + }, + "value": null, + "layer": "0", + "id": "555311" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2037.445116756513, + "min_y": 5320.06647600435, + "max_x": 2045.304936821368, + "max_y": 5322.729200284425 + }, + "value": "-200~400mmH2O", + "layer": "0", + "id": "555314" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5214.485185881433, + "max_x": 1835.608852233717, + "max_y": 5216.272987545993 + }, + "value": null, + "layer": "0", + "id": "555318" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.481083116169, + "min_y": 5219.90555026682, + "max_x": 1835.592873750977, + "max_y": 5222.546745509067 + }, + "value": null, + "layer": "0", + "id": "55531B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5217.820197681634, + "max_x": 1839.444727832371, + "max_y": 5219.90555026682 + }, + "value": null, + "layer": "0", + "id": "55531E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1832.1767340583963, + "min_y": 5220.471803082032, + "max_x": 1837.9008628480517, + "max_y": 5228.2708742987215 + }, + "value": null, + "layer": "0", + "id": "555329" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.48290313582, + "min_y": 5216.600153397976, + "max_x": 1835.594693770625, + "max_y": 5217.216384844111 + }, + "value": null, + "layer": "0", + "id": "55532B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1834.6869134035353, + "min_y": 5217.16640621319, + "max_x": 1835.3906835029086, + "max_y": 5217.870176312564 + }, + "value": null, + "layer": "0", + "id": "555337" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1832.865382359955, + "min_y": 5223.727359227082, + "max_x": 1836.7840951717978, + "max_y": 5227.350062035469 + }, + "value": "10116", + "layer": "INSTRUMENT", + "id": "55533C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5213.592982236479, + "max_x": 1840.003259999534, + "max_y": 5214.155820288414 + }, + "value": null, + "layer": "0", + "id": "55533F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1839.2451835677687, + "min_y": 5210.822719526064, + "max_x": 1839.6409363877035, + "max_y": 5213.592989265588 + }, + "value": null, + "layer": "0", + "id": "55534F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1722.7091639313978, + "min_y": 5283.015383335606, + "max_x": 1724.343316413837, + "max_y": 5283.376544427571 + }, + "value": null, + "layer": "0", + "id": "55535D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1686.622564927636, + "min_y": 5206.913029646761, + "max_x": 1697.2063568180783, + "max_y": 5208.130176912914 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "555364" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5235.382808605744, + "max_x": 1928.510156563927, + "max_y": 5240.608921574247 + }, + "value": null, + "layer": "0", + "id": "555365" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5237.995865089995, + "max_x": 1928.510156563927, + "max_y": 5237.995865089995 + }, + "value": null, + "layer": "0", + "id": "555366" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1914.495826390585, + "min_y": 5238.742452656924, + "max_x": 1921.8542879216284, + "max_y": 5242.8486842750335 + }, + "value": "PRODUCT", + "layer": "0", + "id": "555367" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1909.337322768516, + "min_y": 5236.129396172672, + "max_x": 1913.3688956299322, + "max_y": 5239.862334007317 + }, + "value": "TEMP.", + "layer": "0", + "id": "555368" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1915.670943036958, + "min_y": 5236.129396172672, + "max_x": 1924.4060175700267, + "max_y": 5237.249277523066 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "55536B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5235.382808605744, + "max_x": 1928.510156563927, + "max_y": 5243.595271841962 + }, + "value": null, + "layer": "0", + "id": "55536D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1680.113156239552, + "min_y": 5353.32101004191, + "max_x": 1681.792978265142, + "max_y": 5355.8407430802945 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55536E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1679.131029307998, + "min_y": 5356.897594647797, + "max_x": 1683.8334846822095, + "max_y": 5360.525908134986 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "555372" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1689.496714497113, + "min_y": 5356.895635291392, + "max_x": 1701.1434805412046, + "max_y": 5360.841443343451 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "555375" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1693.443005702017, + "min_y": 5353.32101004191, + "max_x": 1695.122827727607, + "max_y": 5355.8407430802945 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555379" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1860.99276932999, + "min_y": 5279.583459822177, + "max_x": 1865.6962710016423, + "max_y": 5280.703341172571 + }, + "value": "50Ax25A", + "layer": "VALVE NO", + "id": "55537F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.04041794971, + "min_y": 5284.634638118209, + "max_x": 1935.4797548158026, + "max_y": 5288.6933822202545 + }, + "value": "P-10137-25A-F1A-n", + "layer": "LINENO", + "id": "555380" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5381.015835394613, + "max_x": 1935.272000656637, + "max_y": 5383.35772685114 + }, + "value": null, + "layer": "0", + "id": "555381" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5379.728189424564, + "max_x": 1935.272000656637, + "max_y": 5380.726289455324 + }, + "value": null, + "layer": "0", + "id": "555383" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1934.4717240340044, + "min_y": 5381.520881482088, + "max_x": 1935.0945695211797, + "max_y": 5382.143726969262 + }, + "value": null, + "layer": "0", + "id": "555384" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1663.181676017946, + "min_y": 5221.71969230284, + "max_x": 1674.6044657919588, + "max_y": 5222.839573653233 + }, + "value": "P-10149-40A-F1A-n", + "layer": "LINENO", + "id": "55538F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.910995921515, + "min_y": 5251.947522868385, + "max_x": 1678.722248109279, + "max_y": 5254.92582628178 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555390" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1654.054695447133, + "min_y": 5252.689395793659, + "max_x": 1659.4301259290214, + "max_y": 5254.182570927517 + }, + "value": "T-9124", + "layer": "0", + "id": "555391" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5251.947522868385, + "max_x": 1662.910995921515, + "max_y": 5254.92582628178 + }, + "value": null, + "layer": "TEXT", + "id": "555392" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5251.947522868385, + "max_x": 1662.910995921515, + "max_y": 5251.947522868385 + }, + "value": null, + "layer": "TEXT", + "id": "555395" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1664.659278171676, + "min_y": 5253.961520515233, + "max_x": 1676.5314231235777, + "max_y": 5258.467020035717 + }, + "value": "P-10107-40A-F1A-n", + "layer": "LINENO", + "id": "555397" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1673.375835811355, + "min_y": 5207.116663403462, + "max_x": 1688.1651547368465, + "max_y": 5208.44482342451 + }, + "value": "P10101BA-01", + "layer": "VALVE NO", + "id": "555399" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5223.312853339201, + "max_x": 1703.02264054657, + "max_y": 5224.177376728118 + }, + "value": null, + "layer": "0", + "id": "55539E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5219.384397288742, + "max_x": 1714.478825421332, + "max_y": 5223.151485595758 + }, + "value": null, + "layer": "0", + "id": "5553AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5223.451598150877, + "max_x": 1714.588233731022, + "max_y": 5225.541427024563 + }, + "value": null, + "layer": "0", + "id": "5553AC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1713.6517672091397, + "min_y": 5221.986480691854, + "max_x": 1714.2973426610263, + "max_y": 5222.632056143741 + }, + "value": null, + "layer": "0", + "id": "5553AE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1712.469419490823, + "min_y": 5221.62650895134, + "max_x": 1715.479690379343, + "max_y": 5224.6367798398605 + }, + "value": null, + "layer": "0", + "id": "5553B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1755.608007433621, + "min_y": 5231.291172440072, + "max_x": 1756.652794878237, + "max_y": 5248.388423326821 + }, + "value": null, + "layer": "0", + "id": "5553BF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1681.1442000971986, + "min_y": 5209.07486615941, + "max_x": 1681.7891306185636, + "max_y": 5209.719796680774 + }, + "value": null, + "layer": "0", + "id": "5553CC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1697.222204701843, + "min_y": 5213.867889824957, + "max_x": 1704.0311290803802, + "max_y": 5217.106575733339 + }, + "value": "P10101CV-01", + "layer": "0", + "id": "5553D2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1842.4978709037605, + "min_y": 5234.444633091148, + "max_x": 1843.2004170102396, + "max_y": 5235.147179197626 + }, + "value": null, + "layer": "0", + "id": "5553E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1841.932602912174, + "min_y": 5234.24713486492, + "max_x": 1847.273847922835, + "max_y": 5234.795906144385 + }, + "value": null, + "layer": "0", + "id": "5553E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.273847922835, + "min_y": 5220.575516951146, + "max_x": 1847.273847922835, + "max_y": 5234.795906144385 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5553EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1840.240100075306, + "min_y": 5215.042298971774, + "max_x": 1844.9436017469582, + "max_y": 5217.730880401165 + }, + "value": "PG10116CV-01", + "layer": "0", + "id": "5553EB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1677.642136231176, + "min_y": 5346.869694347482, + "max_x": 1678.801125839413, + "max_y": 5348.824261108146 + }, + "value": null, + "layer": "0", + "id": "5553ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1877.858176343004, + "min_y": 5217.174482963809, + "max_x": 1882.5616780146563, + "max_y": 5218.2943643142025 + }, + "value": "15Ax20A", + "layer": "VALVE NO", + "id": "5553F8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1821.051500671646, + "min_y": 5271.177025302755, + "max_x": 1828.4427175842425, + "max_y": 5272.296906653149 + }, + "value": "C10111BA-03", + "layer": "VALVE NO", + "id": "5553F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1815.839859703013, + "min_y": 5261.950863674275, + "max_x": 1823.2310766156095, + "max_y": 5263.070745024668 + }, + "value": "C10111BA-02", + "layer": "VALVE NO", + "id": "5553FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.292091887621, + "min_y": 5276.679149499321, + "max_x": 1837.255072218435, + "max_y": 5279.819262767507 + }, + "value": null, + "layer": "0", + "id": "5553FB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.75129740552, + "min_y": 5279.819262767507, + "max_x": 1839.161907064475, + "max_y": 5283.336416615721 + }, + "value": null, + "layer": "0", + "id": "5553FC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1836.3550278857294, + "min_y": 5278.551448669444, + "max_x": 1837.0575739922085, + "max_y": 5279.253994775922 + }, + "value": null, + "layer": "0", + "id": "5553FE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1834.3640175211472, + "min_y": 5277.904147410748, + "max_x": 1839.0485843567908, + "max_y": 5282.588714246392 + }, + "value": null, + "layer": "0", + "id": "555401" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.843563256364, + "min_y": 5280.441747277304, + "max_x": 1840.542758981885, + "max_y": 5280.860384865943 + }, + "value": null, + "layer": "0", + "id": "555418" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5380.027157459373, + "max_x": 1831.355754813028, + "max_y": 5385.377393397234 + }, + "value": null, + "layer": "0", + "id": "55541F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1828.5488756342816, + "min_y": 5380.592425450956, + "max_x": 1829.2514217407606, + "max_y": 5381.294971557435 + }, + "value": null, + "layer": "0", + "id": "555421" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5379.700560612349, + "max_x": 1829.448919966987, + "max_y": 5380.027157459373 + }, + "value": null, + "layer": "0", + "id": "555423" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1826.23819973038, + "min_y": 5386.309935155079, + "max_x": 1830.9406551045915, + "max_y": 5389.967383260432 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "555424" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1826.5578652696993, + "min_y": 5379.94512419226, + "max_x": 1831.242432105343, + "max_y": 5384.629691027903 + }, + "value": null, + "layer": "0", + "id": "555426" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1831.2990474746885, + "min_y": 5382.709267267577, + "max_x": 1832.0975673300413, + "max_y": 5383.50778712293 + }, + "value": null, + "layer": "0", + "id": "555439" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1829.544981468402, + "min_y": 5380.319321546392, + "max_x": 1833.2405899247003, + "max_y": 5380.879262221589 + }, + "value": "C10111BA-12", + "layer": "0", + "id": "55543F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1830.465398574414, + "min_y": 5384.085321372913, + "max_x": 1834.1610070307122, + "max_y": 5384.64526204811 + }, + "value": "C10111BA-13", + "layer": "0", + "id": "555440" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5382.477790753274, + "max_x": 1833.107819473115, + "max_y": 5383.739263637216 + }, + "value": null, + "layer": "0", + "id": "555441" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.322992730452, + "min_y": 5380.023317529396, + "max_x": 1838.733602389407, + "max_y": 5385.373553467259 + }, + "value": null, + "layer": "0", + "id": "555448" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1835.9267232106604, + "min_y": 5380.58858552098, + "max_x": 1836.6292693171395, + "max_y": 5381.2911316274585 + }, + "value": null, + "layer": "0", + "id": "55544A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5379.696720682373, + "max_x": 1836.826767543367, + "max_y": 5380.023317529396 + }, + "value": null, + "layer": "0", + "id": "55544C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1833.935712846078, + "min_y": 5379.941284262285, + "max_x": 1838.6202796817217, + "max_y": 5384.625851097929 + }, + "value": null, + "layer": "0", + "id": "55544D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1836.92282904478, + "min_y": 5380.315481616416, + "max_x": 1840.6184375010782, + "max_y": 5380.875422291613 + }, + "value": "C10111BA-14", + "layer": "0", + "id": "555462" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1837.843246150794, + "min_y": 5384.081481442937, + "max_x": 1841.5388546070922, + "max_y": 5384.641422118134 + }, + "value": "C10111BA-15", + "layer": "0", + "id": "555463" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.415258581295, + "min_y": 5382.473950823298, + "max_x": 1840.485667049495, + "max_y": 5383.73542370724 + }, + "value": null, + "layer": "0", + "id": "555464" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1868.812603612946, + "min_y": 5257.036014038722, + "max_x": 1869.241257337358, + "max_y": 5258.174138731224 + }, + "value": null, + "layer": "0", + "id": "55546C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1867.5447895148795, + "min_y": 5257.253803331728, + "max_x": 1868.2473356213586, + "max_y": 5257.956349438206 + }, + "value": null, + "layer": "0", + "id": "555472" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.165940916881, + "min_y": 5320.50398009933, + "max_x": 1874.177607310218, + "max_y": 5323.944127422865 + }, + "value": null, + "layer": "0", + "id": "555475" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1873.3595313995604, + "min_y": 5321.006440536294, + "max_x": 1873.9840168275416, + "max_y": 5321.630925964275 + }, + "value": null, + "layer": "0", + "id": "555479" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1873.284996847204, + "min_y": 5318.705269262345, + "max_x": 1874.053276638454, + "max_y": 5320.213671790865 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555484" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1877.938373173889, + "min_y": 5373.718640129443, + "max_x": 1882.6418748455412, + "max_y": 5374.838521479836 + }, + "value": "25Ax32A", + "layer": "VALVE NO", + "id": "555490" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1836.855635508385, + "min_y": 5373.708167010448, + "max_x": 1841.5591371800372, + "max_y": 5374.828048360841 + }, + "value": "32Ax25A", + "layer": "VALVE NO", + "id": "555491" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1913.24953863711, + "min_y": 5362.674389206247, + "max_x": 1914.361329271915, + "max_y": 5367.53220589286 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555494" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1913.24771861746, + "min_y": 5367.53220589286, + "max_x": 1914.359509252268, + "max_y": 5374.380101961598 + }, + "value": null, + "layer": "0", + "id": "55549A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1910.0878159528293, + "min_y": 5366.262182978276, + "max_x": 1910.7915860522025, + "max_y": 5366.965953077649 + }, + "value": null, + "layer": "0", + "id": "5554A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.516252713465, + "min_y": 5365.36876431108, + "max_x": 1907.629863367921, + "max_y": 5374.316097823665 + }, + "value": null, + "layer": "0", + "id": "5554A8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1906.7220830008314, + "min_y": 5366.2621829782765, + "max_x": 1907.4258531002047, + "max_y": 5366.96595307765 + }, + "value": null, + "layer": "0", + "id": "5554B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1895.444419107634, + "min_y": 5374.316097823665, + "max_x": 1907.072148030869, + "max_y": 5374.316097823665 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5554B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2041.074657781088, + "min_y": 5307.281979681864, + "max_x": 2043.84380808805, + "max_y": 5309.171403035271 + }, + "value": null, + "layer": "0", + "id": "5554B4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2041.2098094211467, + "min_y": 5308.181973062949, + "max_x": 2043.7086564479882, + "max_y": 5308.913429813529 + }, + "value": null, + "layer": "0", + "id": "5554B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2041.074657781088, + "min_y": 5307.577463400002, + "max_x": 2041.78093409365, + "max_y": 5309.466886753408 + }, + "value": null, + "layer": "0", + "id": "5554BE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2045.447255165186, + "min_y": 5293.802536817517, + "max_x": 2047.0150889661463, + "max_y": 5295.109064984984 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5554C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5293.533585475408, + "max_x": 2044.303647962101, + "max_y": 5293.533585475408 + }, + "value": null, + "layer": "0", + "id": "5554CC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2023.246491615839, + "min_y": 5305.179082228391, + "max_x": 2031.8227988144986, + "max_y": 5309.0921018489025 + }, + "value": "T10100BA-02", + "layer": "VALVE NO", + "id": "5554CF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1730.9002013119782, + "min_y": 5271.507241524458, + "max_x": 1735.583025391288, + "max_y": 5276.190065603767 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5554D3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1733.0236268354106, + "min_y": 5266.479924192075, + "max_x": 1733.4595998678533, + "max_y": 5266.915897224518 + }, + "value": null, + "layer": "0", + "id": "5554D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1732.838599976012, + "min_y": 5264.715139642104, + "max_x": 1733.644626727254, + "max_y": 5266.510885063105 + }, + "value": null, + "layer": "0", + "id": "5554D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1732.659562524212, + "min_y": 5271.128293134484, + "max_x": 1733.823664179054, + "max_y": 5271.507241524457 + }, + "value": null, + "layer": "0", + "id": "5554E0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1731.8140500456918, + "min_y": 5268.126233344991, + "max_x": 1734.6691766575743, + "max_y": 5270.981359956874 + }, + "value": null, + "layer": "0", + "id": "5554E1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1672.152780496363, + "min_y": 5203.724542156124, + "max_x": 1672.6687249134552, + "max_y": 5204.240486573215 + }, + "value": null, + "layer": "0", + "id": "5554EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5201.858235918955, + "max_x": 1672.81376608053, + "max_y": 5203.761182240175 + }, + "value": null, + "layer": "0", + "id": "5554EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5387.841258848222, + "max_x": 1925.826887692103, + "max_y": 5393.678183723049 + }, + "value": null, + "layer": "0", + "id": "5554F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.262543031136, + "min_y": 5388.160836407334, + "max_x": 1926.9502582720802, + "max_y": 5389.654011541192 + }, + "value": "H50", + "layer": "0", + "id": "555500" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2022.616941822233, + "min_y": 5346.083940125693, + "max_x": 2035.781516906082, + "max_y": 5368.815798430127 + }, + "value": null, + "layer": "0", + "id": "555501" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2025.356545170681, + "min_y": 5343.737371763989, + "max_x": 2053.627471190637, + "max_y": 5365.983757928066 + }, + "value": null, + "layer": "0", + "id": "555504" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2034.774672000353, + "min_y": 5347.70342733109, + "max_x": 2036.5402764356763, + "max_y": 5351.062758505651 + }, + "value": "MH", + "layer": "0", + "id": "555508" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2034.1494293732183, + "min_y": 5348.881158584943, + "max_x": 2037.4190672164098, + "max_y": 5352.1507964281345 + }, + "value": null, + "layer": "0", + "id": "555509" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2029.166473008885, + "min_y": 5367.559940803648, + "max_x": 2033.1390829883628, + "max_y": 5369.3559893313095 + }, + "value": "EMERGENCY", + "layer": "0", + "id": "55550D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2042.461409180261, + "min_y": 5347.746881463029, + "max_x": 2044.79087912936, + "max_y": 5370.870228009813 + }, + "value": null, + "layer": "0", + "id": "555514" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2019.207340981901, + "min_y": 5346.971460361127, + "max_x": 2020.9729454172245, + "max_y": 5349.1554827976315 + }, + "value": "PG", + "layer": "0", + "id": "555517" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2018.5890980119232, + "min_y": 5346.41716464383, + "max_x": 2021.8587358551147, + "max_y": 5349.686802487022 + }, + "value": null, + "layer": "0", + "id": "555518" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2021.77894800846, + "min_y": 5347.547492472961, + "max_x": 2025.356545170681, + "max_y": 5348.551427050511 + }, + "value": null, + "layer": "0", + "id": "555519" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2031.003459465011, + "min_y": 5363.139117797063, + "max_x": 2032.7690639003345, + "max_y": 5363.874786311781 + }, + "value": "500A", + "layer": "0", + "id": "55551C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2044.150617631953, + "min_y": 5343.737371763989, + "max_x": 2048.100318325277, + "max_y": 5344.840715365887 + }, + "value": null, + "layer": "0", + "id": "555521" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2046.4556945594545, + "min_y": 5343.948505416203, + "max_x": 2047.1367708569196, + "max_y": 5344.629581713669 + }, + "value": null, + "layer": "0", + "id": "555529" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.882971497204, + "min_y": 5345.354289365173, + "max_x": 2048.295455045463, + "max_y": 5346.139002447539 + }, + "value": "50A", + "layer": "0", + "id": "55552B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5365.182402442702, + "max_x": 2060.485821892239, + "max_y": 5368.107157610257 + }, + "value": null, + "layer": "0", + "id": "55552C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2045.058492787378, + "min_y": 5365.182402442702, + "max_x": 2060.485821892239, + "max_y": 5365.983757928066 + }, + "value": null, + "layer": "0", + "id": "55552D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2044.29143564421, + "min_y": 5366.644780026479, + "max_x": 2047.065953935473, + "max_y": 5366.644780026479 + }, + "value": null, + "layer": "0", + "id": "555531" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5370.148451953914, + "max_x": 2060.485821892239, + "max_y": 5373.073207121471 + }, + "value": null, + "layer": "0", + "id": "555532" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2043.09634675479, + "min_y": 5370.148451953914, + "max_x": 2060.485821892239, + "max_y": 5370.870228009813 + }, + "value": null, + "layer": "0", + "id": "555533" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2049.554019072599, + "min_y": 5366.032591289042, + "max_x": 2058.100078694179, + "max_y": 5369.185091937244 + }, + "value": "WASTE WATER", + "layer": "0", + "id": "555538" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2049.554019072599, + "min_y": 5370.998640800255, + "max_x": 2058.123772298877, + "max_y": 5374.190842525309 + }, + "value": "WASTE WATER", + "layer": "0", + "id": "555539" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2007.010799783049, + "min_y": 5368.222670168512, + "max_x": 2019.6506282961386, + "max_y": 5371.571071934442 + }, + "value": "SC-10128", + "layer": "0", + "id": "55553C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2011.122021067803, + "min_y": 5367.227767050103, + "max_x": 2024.204973202256, + "max_y": 5370.40382981015 + }, + "value": null, + "layer": "TEXT", + "id": "55553D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2011.122021067803, + "min_y": 5370.403829810147, + "max_x": 2022.616941822239, + "max_y": 5370.403829810147 + }, + "value": null, + "layer": "TEXT", + "id": "55553E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2024.204973202256, + "min_y": 5368.815798430127, + "max_x": 2027.274684395542, + "max_y": 5368.815798430127 + }, + "value": null, + "layer": "0", + "id": "555543" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2048.402014539996, + "min_y": 5349.810729806891, + "max_x": 2052.407461837478, + "max_y": 5350.914073408788 + }, + "value": null, + "layer": "0", + "id": "55554C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2050.479071152471, + "min_y": 5349.458043491594, + "max_x": 2051.342319711134, + "max_y": 5351.312252454882 + }, + "value": null, + "layer": "0", + "id": "55554D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2046.5605670635975, + "min_y": 5348.111290989498, + "max_x": 2051.1082810309526, + "max_y": 5352.659004956853 + }, + "value": null, + "layer": "0", + "id": "55554E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2047.295906150049, + "min_y": 5351.334776897491, + "max_x": 2048.7083896983077, + "max_y": 5352.119489979857 + }, + "value": "50A", + "layer": "0", + "id": "55554F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2053.106737103243, + "min_y": 5349.216782778209, + "max_x": 2054.9900485009216, + "max_y": 5351.562213820917 + }, + "value": "LT", + "layer": "0", + "id": "555550" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2052.407461837478, + "min_y": 5347.057352642854, + "max_x": 2059.626174079099, + "max_y": 5352.372439665752 + }, + "value": null, + "layer": "0", + "id": "555551" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2047.7693052603033, + "min_y": 5350.021863459104, + "max_x": 2048.450381557768, + "max_y": 5350.702939756569 + }, + "value": null, + "layer": "0", + "id": "55555C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2053.627471190637, + "min_y": 5346.84621899064, + "max_x": 2056.235642424818, + "max_y": 5347.949562592538 + }, + "value": null, + "layer": "0", + "id": "55555E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5192.911725361944, + "max_x": 1930.300103812631, + "max_y": 5201.200975797591 + }, + "value": null, + "layer": "0", + "id": "55556C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.017530978934, + "min_y": 5190.62089988087, + "max_x": 1923.258740561125, + "max_y": 5215.227378343326 + }, + "value": null, + "layer": "0", + "id": "55556F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1920.408462425195, + "min_y": 5198.550147695313, + "max_x": 1920.408462425195, + "max_y": 5214.658689036908 + }, + "value": null, + "layer": "0", + "id": "55557A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1920.631792782947, + "min_y": 5217.722423571443, + "max_x": 1928.627701557728, + "max_y": 5222.702840541561 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "55557F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1919.9431444813872, + "min_y": 5216.2952658607355, + "max_x": 1929.9918799296447, + "max_y": 5225.940118009252 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555580" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1921.780067400681, + "min_y": 5191.343307948852, + "max_x": 1924.830547248647, + "max_y": 5195.548386640751 + }, + "value": null, + "layer": "0", + "id": "555583" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1924.0942789290564, + "min_y": 5193.349772931742, + "max_x": 1924.6563158142396, + "max_y": 5193.911809816926 + }, + "value": null, + "layer": "0", + "id": "55558B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1927.344784709122, + "min_y": 5200.682207668258, + "max_x": 1930.928386785527, + "max_y": 5209.020581491095 + }, + "value": null, + "layer": "0", + "id": "555590" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1927.5190161435373, + "min_y": 5200.16008414978, + "max_x": 1930.1258723782207, + "max_y": 5200.748761404324 + }, + "value": null, + "layer": "0", + "id": "555595" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1920.408462425195, + "min_y": 5214.089626690654, + "max_x": 1944.672204150745, + "max_y": 5215.22775138316 + }, + "value": null, + "layer": "0", + "id": "55559A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1936.1156055834895, + "min_y": 5214.307415983665, + "max_x": 1936.8181516899685, + "max_y": 5215.009962090144 + }, + "value": null, + "layer": "0", + "id": "5555A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1926.882404839154, + "min_y": 5214.658689036908, + "max_x": 1926.882404839156, + "max_y": 5216.848712880173 + }, + "value": null, + "layer": "0", + "id": "5555A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5213.318452500874, + "max_x": 1955.713705389504, + "max_y": 5215.998925572932 + }, + "value": null, + "layer": "TEXT", + "id": "5555A4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5213.318452500875, + "max_x": 1954.373468853479, + "max_y": 5213.318452500875 + }, + "value": null, + "layer": "TEXT", + "id": "5555A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.649812439983, + "min_y": 5214.004052729221, + "max_x": 1955.7287445935235, + "max_y": 5217.63007136492 + }, + "value": "CWR", + "layer": "0", + "id": "5555AB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1928.099638455602, + "min_y": 5209.801819132563, + "max_x": 1942.0227957302834, + "max_y": 5214.317668242644 + }, + "value": "E10119BA-02", + "layer": "VALVE NO", + "id": "5555AD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1923.110744858074, + "min_y": 5200.061255316235, + "max_x": 1937.9737891344525, + "max_y": 5201.181136666628 + }, + "value": "E10119BA-05", + "layer": "VALVE NO", + "id": "5555AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.873305277967, + "min_y": 5193.365606455991, + "max_x": 1937.9287579167215, + "max_y": 5194.4996546298535 + }, + "value": "E10119BA-06", + "layer": "VALVE NO", + "id": "5555AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1922.236146529962, + "min_y": 5216.551112515954, + "max_x": 1923.374271222466, + "max_y": 5220.215989219597 + }, + "value": null, + "layer": "0", + "id": "5555B0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1921.740984444339, + "min_y": 5223.713068142052, + "max_x": 1923.3084695690761, + "max_y": 5225.019305746 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5555B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1922.256437596746, + "min_y": 5214.658689036908, + "max_x": 1923.353980155685, + "max_y": 5216.551112515954 + }, + "value": null, + "layer": "0", + "id": "5555B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1929.255611610048, + "min_y": 5214.658689036908, + "max_x": 1933.376115209838, + "max_y": 5219.048297970767 + }, + "value": null, + "layer": "0", + "id": "5555BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1929.71086148705, + "min_y": 5217.090232434472, + "max_x": 1934.006184190948, + "max_y": 5220.105524403038 + }, + "value": null, + "layer": "0", + "id": "5555C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1932.11597724761, + "min_y": 5214.658689036907, + "max_x": 1934.432982398188, + "max_y": 5218.980439377807 + }, + "value": null, + "layer": "UTIL", + "id": "5555CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.432982398188, + "min_y": 5218.350370396697, + "max_x": 1940.496553627486, + "max_y": 5218.350370396697 + }, + "value": null, + "layer": "VA NO", + "id": "5555D9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1930.034607099621, + "min_y": 5222.461898917043, + "max_x": 1936.080622534125, + "max_y": 5225.102903553985 + }, + "value": "PSV-10119A", + "layer": "0", + "id": "5555DA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1930.345067190379, + "min_y": 5219.26262800649, + "max_x": 1946.685532844046, + "max_y": 5221.936869177466 + }, + "value": "SP: 0.5MPa", + "layer": "0", + "id": "5555DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1914.967826188833, + "min_y": 5190.62089988087, + "max_x": 1976.511172395021, + "max_y": 5191.343307948852 + }, + "value": null, + "layer": "0", + "id": "5555E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1916.118197480498, + "min_y": 5202.686133711082, + "max_x": 1932.893592291664, + "max_y": 5204.736711185618 + }, + "value": "P-10122-20A-F1A-n", + "layer": "LINENO", + "id": "5555E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1946.012440686769, + "min_y": 5207.680344955067, + "max_x": 1955.713705389504, + "max_y": 5210.360818027123 + }, + "value": null, + "layer": "0", + "id": "5555E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1927.802202797149, + "min_y": 5207.680344955064, + "max_x": 1946.012440686772, + "max_y": 5210.360818027118 + }, + "value": null, + "layer": "TEXT", + "id": "5555E6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1945.569093276168, + "min_y": 5208.532808802885, + "max_x": 1955.6480254297085, + "max_y": 5211.73399223744 + }, + "value": "CWS", + "layer": "0", + "id": "5555F1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1974.081778531061, + "min_y": 5194.505866097286, + "max_x": 1993.8651509452177, + "max_y": 5195.915789247183 + }, + "value": "P-10125-20A-F1A-n", + "layer": "LINENO", + "id": "555606" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1950.658889391466, + "min_y": 5190.620899880872, + "max_x": 1950.658889391466, + "max_y": 5192.88309905481 + }, + "value": null, + "layer": "0", + "id": "555607" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1947.7981850703882, + "min_y": 5192.8830990548095, + "max_x": 1953.5195937125436, + "max_y": 5198.604507696965 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555608" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1948.485473298197, + "min_y": 5194.179532894987, + "max_x": 1952.4041861100397, + "max_y": 5197.5834540173555 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "555609" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1935.128860400269, + "min_y": 5188.622041646261, + "max_x": 1946.5516501742818, + "max_y": 5189.7419229966545 + }, + "value": "P-10123-20A-F1A-n", + "layer": "LINENO", + "id": "55560B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1962.102534103794, + "min_y": 5194.275380924048, + "max_x": 1984.09696338874, + "max_y": 5214.061478852915 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55560C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5210.730913919666, + "max_x": 1986.1688535284982, + "max_y": 5214.286504603186 + }, + "value": "P-10126-20A-F1A-n", + "layer": "LINENO", + "id": "55560D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1986.20541868802, + "min_y": 5211.780950663069, + "max_x": 1992.4767542502232, + "max_y": 5213.274125796927 + }, + "value": "T-10100", + "layer": "0", + "id": "55560E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5206.984990675731, + "max_x": 1996.365298098467, + "max_y": 5214.061478852919 + }, + "value": null, + "layer": "TEXT", + "id": "55560F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5214.061478852915, + "max_x": 1996.365298098467, + "max_y": 5218.20632163914 + }, + "value": null, + "layer": "TEXT", + "id": "555610" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1986.20541868802, + "min_y": 5207.682765899281, + "max_x": 1991.5808491699083, + "max_y": 5209.175941033139 + }, + "value": "T-9124", + "layer": "0", + "id": "555614" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1965.087064351861, + "min_y": 5202.60168244242, + "max_x": 1996.365298098467, + "max_y": 5208.520800404867 + }, + "value": null, + "layer": "TEXT", + "id": "555615" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5209.068438489009, + "max_x": 1982.8246504522438, + "max_y": 5210.1883198394025 + }, + "value": "P-10124-20A-F1A-n", + "layer": "LINENO", + "id": "55561B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1968.075234639226, + "min_y": 5194.275380924048, + "max_x": 1992.486801771152, + "max_y": 5204.233395883878 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55561C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1984.125733767333, + "min_y": 5199.666557717818, + "max_x": 1996.39406847706, + "max_y": 5204.233395883885 + }, + "value": null, + "layer": "0", + "id": "55561E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5203.390454941034, + "max_x": 1990.7128926051932, + "max_y": 5205.648011537031 + }, + "value": "SAMPLE", + "layer": "0", + "id": "555622" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.735552503449, + "min_y": 5190.620899880872, + "max_x": 1959.3568963846, + "max_y": 5196.067735247002 + }, + "value": null, + "layer": "0", + "id": "555624" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1959.3568963846, + "min_y": 5194.31258124066, + "max_x": 1984.09696338874, + "max_y": 5216.670511910006 + }, + "value": null, + "layer": "UTIL", + "id": "555633" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1961.532480323299, + "min_y": 5190.62089988087, + "max_x": 1965.658938152005, + "max_y": 5194.275380924048 + }, + "value": null, + "layer": "0", + "id": "555634" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1961.7506490541073, + "min_y": 5192.678192157483, + "max_x": 1962.4544191534806, + "max_y": 5193.381962256856 + }, + "value": null, + "layer": "0", + "id": "555640" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1964.531169034457, + "min_y": 5190.62089988087, + "max_x": 1968.645288419721, + "max_y": 5208.520800404867 + }, + "value": null, + "layer": "0", + "id": "555643" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1964.7369993218233, + "min_y": 5192.678192157483, + "max_x": 1965.4407694211966, + "max_y": 5193.381962256856 + }, + "value": null, + "layer": "0", + "id": "55564F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1967.517519302173, + "min_y": 5190.62089988087, + "max_x": 1971.353312261981, + "max_y": 5194.275380924048 + }, + "value": null, + "layer": "0", + "id": "555652" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1967.7233495895393, + "min_y": 5192.678192157483, + "max_x": 1968.4271196889126, + "max_y": 5193.381962256856 + }, + "value": null, + "layer": "0", + "id": "55565E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1976.511172395021, + "min_y": 5190.051837534617, + "max_x": 1976.939826119431, + "max_y": 5191.189962227123 + }, + "value": null, + "layer": "0", + "id": "555661" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1983.915649265343, + "min_y": 5215.876336641906, + "max_x": 1990.9829679084783, + "max_y": 5219.760904612397 + }, + "value": "T-3210", + "layer": "0", + "id": "555664" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5216.670511910008, + "max_x": 1996.365298098467, + "max_y": 5218.159663616706 + }, + "value": null, + "layer": "TEXT", + "id": "555666" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5217.09085393239, + "max_x": 1983.4965792624798, + "max_y": 5218.210735282783 + }, + "value": "VG-10443-25A-F1A-n", + "layer": "LINENO", + "id": "55566B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1961.167876544661, + "min_y": 5190.923003982844, + "max_x": 1978.1152103771715, + "max_y": 5192.0528952153545 + }, + "value": "HD10119BA-01", + "layer": "VALVE NO", + "id": "55566C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.604186947965, + "min_y": 5190.165650003867, + "max_x": 1914.967826188833, + "max_y": 5191.076149757872 + }, + "value": null, + "layer": "0", + "id": "555670" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1913.6106519308553, + "min_y": 5190.3398814382745, + "max_x": 1914.1726888160385, + "max_y": 5190.901918323458 + }, + "value": null, + "layer": "0", + "id": "555678" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.604186947965, + "min_y": 5190.217886505248, + "max_x": 1911.604186947965, + "max_y": 5191.023913256491 + }, + "value": null, + "layer": "0", + "id": "55567C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1929.389604058624, + "min_y": 5191.357474772321, + "max_x": 1930.300103812629, + "max_y": 5192.911725361944 + }, + "value": null, + "layer": "0", + "id": "555680" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1929.5638354930384, + "min_y": 5193.363939755211, + "max_x": 1930.1258723782216, + "max_y": 5193.925976640394 + }, + "value": null, + "layer": "0", + "id": "555685" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1973.638006326029, + "min_y": 5190.62089988087, + "max_x": 1986.493715301386, + "max_y": 5193.970544364018 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55568B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1911.652938474622, + "min_y": 5189.17224705493, + "max_x": 1919.0441553872186, + "max_y": 5190.292128405324 + }, + "value": "E10119BA-08", + "layer": "VALVE NO", + "id": "55568D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.629236814933, + "max_x": 1964.388582533062, + "max_y": 5280.3480452746 + }, + "value": null, + "layer": "건축", + "id": "555693" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.056426968798, + "min_y": 5201.792986016608, + "max_x": 1917.775235428464, + "max_y": 5201.792986016608 + }, + "value": null, + "layer": "건축", + "id": "5556A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1834.099173226263, + "min_y": 5262.742775973602, + "max_x": 1836.137455900811, + "max_y": 5263.461584433269 + }, + "value": null, + "layer": "건축", + "id": "5556AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1704.365265087417, + "min_y": 5255.023485677043, + "max_x": 1705.084073547084, + "max_y": 5257.06176835159 + }, + "value": null, + "layer": "건축", + "id": "5556B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1722.529482760162, + "min_y": 5314.689662755679, + "max_x": 1724.521282610303, + "max_y": 5316.727945430227 + }, + "value": null, + "layer": "건축", + "id": "5556BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.87213122644, + "min_y": 5298.787780409881, + "max_x": 1907.590939686106, + "max_y": 5300.826063084429 + }, + "value": null, + "layer": "건축", + "id": "5556CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1898.152337620483, + "min_y": 5376.64245625239, + "max_x": 1900.190620295032, + "max_y": 5377.361264712058 + }, + "value": null, + "layer": "건축", + "id": "5556D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.563993033893, + "max_x": 1948.929748504613, + "max_y": 5379.282801493558 + }, + "value": null, + "layer": "건축", + "id": "5556D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1891.415563578657, + "min_y": 5362.674389206247, + "max_x": 1901.264730409319, + "max_y": 5365.423848147654 + }, + "value": null, + "layer": "건축", + "id": "5556DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5135.934550405232, + "max_x": 2065.618958545478, + "max_y": 5184.177878805336 + }, + "value": null, + "layer": "TITLE", + "id": "5556E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5174.385627940915, + "max_x": 2065.618958545478, + "max_y": 5174.385627940915 + }, + "value": null, + "layer": "TITLE", + "id": "5556E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5153.016013108634, + "max_x": 2065.618958545478, + "max_y": 5153.016013108634 + }, + "value": null, + "layer": "TITLE", + "id": "5556E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5135.934550405232, + "max_x": 2065.618958545478, + "max_y": 5142.331205692503 + }, + "value": null, + "layer": "TITLE", + "id": "5556E7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2026.203242227648, + "min_y": 5137.550813194252, + "max_x": 2050.1452644507453, + "max_y": 5141.519219018664 + }, + "value": "SARF-#10-PID-001", + "layer": "0", + "id": "5556E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5139.12964414832, + "max_x": 2024.755391199748, + "max_y": 5139.12964414832 + }, + "value": null, + "layer": "TITLE", + "id": "5556EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2015.602853244085, + "min_y": 5136.971395691128, + "max_x": 2018.6721361012858, + "max_y": 5141.5558679291935 + }, + "value": "NONE", + "layer": "1", + "id": "5556EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.811500807453, + "min_y": 5136.997399156689, + "max_x": 2008.9228229178436, + "max_y": 5141.157022157101 + }, + "value": "JOB NO.", + "layer": "1", + "id": "5556EE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5150.785254391439, + "max_x": 2008.5530514251716, + "max_y": 5152.002235846294 + }, + "value": "TITLE :", + "layer": "1", + "id": "5556F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5172.154869223718, + "max_x": 2008.5530514251716, + "max_y": 5173.3718506785735 + }, + "value": "ONWER :", + "layer": "1", + "id": "5556F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2002.896221930941, + "min_y": 5182.146471836045, + "max_x": 2012.5905748421983, + "max_y": 5186.039803251185 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "5556F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2059.597435721981, + "min_y": 5137.331595442703, + "max_x": 2064.566856386593, + "max_y": 5137.331595442703 + }, + "value": null, + "layer": "TITLE", + "id": "5556F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5184.177878805336, + "max_x": 2065.618958545478, + "max_y": 5207.543688726367 + }, + "value": null, + "layer": "TITLE", + "id": "5556FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2061.457130402988, + "min_y": 5138.140473025035, + "max_x": 2062.621334600872, + "max_y": 5140.080813354842 + }, + "value": "2", + "layer": "0", + "id": "555700" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2020.953903683634, + "min_y": 5177.983481611517, + "max_x": 2044.4714120418955, + "max_y": 5180.596538095769 + }, + "value": "10th PLANT 증설공사", + "layer": "SH1", + "id": "555702" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2021.297901124275, + "min_y": 5167.707700792951, + "max_x": 2066.765083950247, + "max_y": 5170.320757277203 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "555703" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2015.407519072244, + "min_y": 5169.120402320693, + "max_x": 2016.80045230892, + "max_y": 5170.507629388604 + }, + "value": null, + "layer": "0-BAS", + "id": "55570C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2016.254430963111, + "min_y": 5166.6339712742, + "max_x": 2023.1796836788776, + "max_y": 5167.743752928526 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "55571A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5161.470061807578, + "max_x": 2012.2039957897364, + "max_y": 5162.687043262433 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "55571C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2030.893828993726, + "min_y": 5156.568614522566, + "max_x": 2041.7597348406448, + "max_y": 5159.155734962309 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "55571D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2016.041164993094, + "min_y": 5160.077500759741, + "max_x": 2018.961861301738, + "max_y": 5161.493595939702 + }, + "value": null, + "layer": "0", + "id": "555720" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2016.041164993094, + "min_y": 5160.077500759741, + "max_x": 2016.041164993094, + "max_y": 5160.96256024721 + }, + "value": null, + "layer": "0", + "id": "555724" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2016.8819715061875, + "min_y": 5157.360883429193, + "max_x": 2020.9758708171216, + "max_y": 5158.628450874375 + }, + "value": null, + "layer": "0", + "id": "555729" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2017.66933384518, + "min_y": 5157.412530109931, + "max_x": 2020.188508478128, + "max_y": 5158.576804193642 + }, + "value": null, + "layer": "0", + "id": "55572C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1846.382987268679, + "min_y": 5195.216511204847, + "max_x": 1879.979427780481, + "max_y": 5197.016511204847 + }, + "value": "\\pi12.40092; .9; C-10111 \\pi12.20639;\\lCOLUMN", + "layer": "0", + "id": "555730" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1809.134060098253, + "min_y": 5188.349869355755, + "max_x": 1929.1307492837714, + "max_y": 5190.341259672852 + }, + "value": ".9;SIZE : %%C1,300 x 36,871H (49.5m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "layer": "0", + "id": "555734" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1826.138222415494, + "min_y": 5167.495652045844, + "max_x": 1893.553812524779, + "max_y": 5169.574157316289 + }, + "value": "\\pi12.32838; .9; E-10112 \\pi7.36178;\\lTOP CONDENSER", + "layer": "0", + "id": "555738" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1945.031791555446, + "min_y": 5168.708606206538, + "max_x": 1978.628232067248, + "max_y": 5170.508606206538 + }, + "value": "\\pi12.32289; .9; E-10117 \\pi7.0969;SIDE CONDENSER", + "layer": "0", + "id": "55573C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1946.348652008367, + "min_y": 5161.736861406841, + "max_x": 1985.3473854022654, + "max_y": 5163.536861406841 + }, + "value": ".9;SIZE : %%C800 x 2,982H (1.87m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "layer": "0", + "id": "555740" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1905.657072317515, + "min_y": 5168.848065082132, + "max_x": 1939.253512829317, + "max_y": 5170.648065082132 + }, + "value": "\\pi12.32289; .9; E-10119 \\pi7.34639;BOTTOM COOLER", + "layer": "0", + "id": "555744" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1905.587160633451, + "min_y": 5162.617906419882, + "max_x": 1943.5054354509305, + "max_y": 5164.4179064198825 + }, + "value": ".9;SIZE : %%C259.4 x 982H (0.076m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 109 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "layer": "0", + "id": "555748" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1882.305294959467, + "min_y": 5195.495192185733, + "max_x": 1915.901735471269, + "max_y": 5197.295192185733 + }, + "value": "\\pi12.22287; .9; D-10113 \\pi9.10157;\\lREFLUX DRUM", + "layer": "0", + "id": "55574C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1862.659022148705, + "min_y": 5161.372706358587, + "max_x": 1902.6672190003487, + "max_y": 5163.172706358587 + }, + "value": ".9;SIZE : %%C645 x 2,482H (1.2m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "layer": "0", + "id": "55575C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1807.199138323122, + "min_y": 5194.705741790492, + "max_x": 1840.795578834924, + "max_y": 5196.505741790492 + }, + "value": "\\pi12.33058; .9; E-10103 \\pi10.39515;\\lPREHEATER", + "layer": "0", + "id": "555760" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5219.599778054355, + "max_x": 1972.058827528247, + "max_y": 5224.825891022859 + }, + "value": null, + "layer": "0", + "id": "555768" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5222.212834538607, + "max_x": 1972.058827528247, + "max_y": 5222.212834538607 + }, + "value": null, + "layer": "0", + "id": "555769" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.021979325384, + "min_y": 5222.959422105537, + "max_x": 1965.7635408681401, + "max_y": 5227.0656537236455 + }, + "value": "HEAVY ENDS", + "layer": "0", + "id": "55576A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1952.885993732836, + "min_y": 5220.346365621285, + "max_x": 1956.917566594252, + "max_y": 5221.466246971679 + }, + "value": "PRESS.", + "layer": "0", + "id": "55576D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1959.219614001277, + "min_y": 5220.346365621285, + "max_x": 1967.9546885343457, + "max_y": 5221.466246971679 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "55576E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5219.599778054355, + "max_x": 1972.058827528247, + "max_y": 5227.812241290575 + }, + "value": null, + "layer": "0", + "id": "555770" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1732.531037670812, + "min_y": 5191.433785331277, + "max_x": 1754.9286646786802, + "max_y": 5193.233785331277 + }, + "value": "\\pi4.76827; .9; F-10102A/B \\pi2.22617;FILTER HOUSING", + "layer": "0", + "id": "555771" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1704.792648263734, + "min_y": 5184.118166515938, + "max_x": 1814.1493851022954, + "max_y": 5186.172191494611 + }, + "value": ".9; SIZE : %%C89.1 x 366H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 %%DC .999999x; / AMB MATERIAL : STS304", + "layer": "0", + "id": "555775" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1762.71747835037, + "min_y": 5191.269123762023, + "max_x": 1785.115105358238, + "max_y": 5193.069123762023 + }, + "value": "\\pi6.16516; .9; SP-10601 \\pi4.85619;SEPERATER", + "layer": "0", + "id": "555779" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1704.316961180723, + "min_y": 5190.632305623219, + "max_x": 1730.4475260232357, + "max_y": 5192.432305623219 + }, + "value": "\\pi3.54531; .9; T-3210 (기존설비) \\pi1.71099;\\lWASTE WATER TANK", + "layer": "0", + "id": "555781" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793828, + "min_y": 5187.129534074325, + "max_x": 2065.618958545482, + "max_y": 5187.129534074325 + }, + "value": null, + "layer": "0", + "id": "55578B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5187.129534074366, + "max_x": 2005.902359631034, + "max_y": 5193.934252291306 + }, + "value": null, + "layer": "0", + "id": "55578C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5193.934252291306, + "max_x": 2005.902359631034, + "max_y": 5200.738970508285 + }, + "value": null, + "layer": "0", + "id": "55578E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2050.815354383408, + "min_y": 5184.94290212585, + "max_x": 2053.447917084211, + "max_y": 5186.039803251185 + }, + "value": "APPD", + "layer": "0", + "id": "555793" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2045.468840875969, + "min_y": 5184.94290212585, + "max_x": 2048.101403576772, + "max_y": 5186.039803251185 + }, + "value": "CHKD", + "layer": "0", + "id": "555795" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2039.751232313665, + "min_y": 5184.94290212585, + "max_x": 2042.3837950144682, + "max_y": 5186.039803251185 + }, + "value": "DRWN", + "layer": "0", + "id": "555797" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2023.607901949131, + "min_y": 5184.94290212585, + "max_x": 2030.8474493763401, + "max_y": 5186.039803251185 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "555798" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2057.866476453484, + "min_y": 5184.890662039615, + "max_x": 2061.815320504689, + "max_y": 5185.987563164949 + }, + "value": "REMARK", + "layer": "0", + "id": "55579A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2002.500000522608, + "min_y": 5200.738970508285, + "max_x": 2005.902359631086, + "max_y": 5207.543688725785 + }, + "value": null, + "layer": "0", + "id": "55579B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793819, + "min_y": 5190.531893182836, + "max_x": 2065.618958545482, + "max_y": 5190.531893182836 + }, + "value": null, + "layer": "0", + "id": "55579E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793811, + "min_y": 5193.934252291347, + "max_x": 2065.618958545482, + "max_y": 5193.934252291347 + }, + "value": null, + "layer": "0", + "id": "55579F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793801, + "min_y": 5197.336611399857, + "max_x": 2065.618958545482, + "max_y": 5197.336611399857 + }, + "value": null, + "layer": "0", + "id": "5557A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793792, + "min_y": 5200.738970508369, + "max_x": 2065.618958545482, + "max_y": 5200.738970508369 + }, + "value": null, + "layer": "0", + "id": "5557A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793783, + "min_y": 5204.14132961688, + "max_x": 2065.618958545482, + "max_y": 5204.14132961688 + }, + "value": null, + "layer": "0", + "id": "5557A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5207.54368872539, + "max_x": 2065.618958545482, + "max_y": 5207.54368872539 + }, + "value": null, + "layer": "0", + "id": "5557A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1808.992426751319, + "min_y": 5253.288226429646, + "max_x": 1813.953656662065, + "max_y": 5253.288226429646 + }, + "value": null, + "layer": "0", + "id": "5557A6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1855.490135919379, + "min_y": 5254.618726117256, + "max_x": 1861.4628364548107, + "max_y": 5260.591426652687 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557A8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1856.432911999052, + "min_y": 5255.73977299707, + "max_x": 1860.4615283737032, + "max_y": 5259.471725336127 + }, + "value": "FI", + "layer": "INSTRUMENT", + "id": "5557A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1855.537514615887, + "min_y": 5252.746853956975, + "max_x": 1865.6164467694275, + "max_y": 5253.866735307369 + }, + "value": "BALL FLOW METER", + "layer": "VALVE NO", + "id": "5557AE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1888.41411386697, + "min_y": 5389.159554694839, + "max_x": 1893.1165692411814, + "max_y": 5392.785228896697 + }, + "value": "PICA", + "layer": "INSTRUMENT", + "id": "5557AF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1888.2139984292862, + "min_y": 5387.979299895091, + "max_x": 1893.9381272189416, + "max_y": 5393.7034286847465 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5390.841364289919, + "max_x": 1893.990313428268, + "max_y": 5395.799285396754 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5387.927113685758, + "max_x": 1893.990313428268, + "max_y": 5393.755614894072 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5387.927113685754, + "max_x": 1893.990313428268, + "max_y": 5390.84136428991 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5391.097682256914, + "max_x": 1891.076062824114, + "max_y": 5395.799285396754 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5557BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1966.038506807178, + "min_y": 5372.417974260134, + "max_x": 1967.6059919319152, + "max_y": 5373.724211864082 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5557BF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1964.2406668442263, + "min_y": 5368.920895337678, + "max_x": 1969.9647956338817, + "max_y": 5374.645024127334 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1939.492112273972, + "min_y": 5352.812661090673, + "max_x": 1943.4108250858148, + "max_y": 5356.440294648936 + }, + "value": "LICA", + "layer": "INSTRUMENT", + "id": "5557C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5354.496430042157, + "max_x": 1944.579778971395, + "max_y": 5357.410680646311 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1938.803463972413, + "min_y": 5351.582179437998, + "max_x": 1944.579778971395, + "max_y": 5357.410680646311 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5351.582179437998, + "max_x": 1938.803463972413, + "max_y": 5354.496430042157 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1939.204501177788, + "min_y": 5336.21488541475, + "max_x": 1943.91967346664, + "max_y": 5336.214885414753 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5557D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1865.42399133404, + "min_y": 5231.194258871269, + "max_x": 1868.722722797391, + "max_y": 5231.194258871269 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5557D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1666.414779269184, + "min_y": 5305.822882071932, + "max_x": 1677.8375690431967, + "max_y": 5306.942763422326 + }, + "value": "P-10101-25A-F1A-n", + "layer": "LINENO", + "id": "5557D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1666.364456341964, + "min_y": 5300.572188904467, + "max_x": 1677.7872461159766, + "max_y": 5301.6920702548605 + }, + "value": "P-10102-25A-F1A-n", + "layer": "LINENO", + "id": "5557D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1717.053379113657, + "min_y": 5265.115352547464, + "max_x": 1720.9720919254999, + "max_y": 5268.267348540453 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5557D9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1730.487530263819, + "min_y": 5280.229160749347, + "max_x": 1742.3520870588752, + "max_y": 5281.768997606138 + }, + "value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10101", + "layer": "0", + "id": "5557DC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1828.190322053763, + "min_y": 5241.066960751556, + "max_x": 1832.109034865606, + "max_y": 5244.54887919726 + }, + "value": "LIA", + "layer": "INSTRUMENT", + "id": "5557E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5242.961685584779, + "max_x": 1833.272920303355, + "max_y": 5245.870867741102 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5240.052503428443, + "max_x": 1833.272920303355, + "max_y": 5242.96168558477 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1827.4545559907056, + "min_y": 5240.052503428458, + "max_x": 1833.2729203033464, + "max_y": 5245.8708677411 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1827.454555990706, + "min_y": 5240.052503428446, + "max_x": 1835.439543012842, + "max_y": 5245.870867741096 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1833.609354906809, + "min_y": 5242.961685584779, + "max_x": 1835.439543012842, + "max_y": 5254.820847297049 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5557ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1952.449443044188, + "min_y": 5187.269191711266, + "max_x": 1958.495458478692, + "max_y": 5189.908684880216 + }, + "value": "PSV-10119B", + "layer": "0", + "id": "5557EF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1952.777890033878, + "min_y": 5185.736492732605, + "max_x": 1958.823905468382, + "max_y": 5186.744161971689 + }, + "value": "SP: 0.4MPa", + "layer": "0", + "id": "5557F1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2032.482209226082, + "min_y": 5287.38476827668, + "max_x": 2039.8734261386785, + "max_y": 5288.504649627073 + }, + "value": "T10100BA-05", + "layer": "VALVE NO", + "id": "5557F2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2049.957852835851, + "min_y": 5298.724819226351, + "max_x": 2058.3908860382653, + "max_y": 5301.717205744071 + }, + "value": "LI", + "layer": "INSTRUMENT", + "id": "5557F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5300.337873815238, + "max_x": 2058.274723126778, + "max_y": 5302.595033674639 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5298.080713955839, + "max_x": 2058.274723126778, + "max_y": 5302.595033674639 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5298.080713955839, + "max_x": 2058.274723126778, + "max_y": 5300.337873815234 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557F9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2049.246083689193, + "min_y": 5298.080713955845, + "max_x": 2058.274723126775, + "max_y": 5302.595033674631 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5557FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2043.577109374536, + "min_y": 5297.312224586697, + "max_x": 2052.177768711665, + "max_y": 5301.717205744071 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "5557FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5302.595033674633, + "max_x": 2051.503243548586, + "max_y": 5304.174300653086 + }, + "value": null, + "layer": "0", + "id": "555802" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5303.426889890134, + "max_x": 2049.130168679134, + "max_y": 5304.174300653086 + }, + "value": null, + "layer": "0", + "id": "555804" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5296.501446977393, + "max_x": 2051.503243548586, + "max_y": 5298.080713955846 + }, + "value": null, + "layer": "0", + "id": "55580A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5296.501446977393, + "max_x": 2049.130168679134, + "max_y": 5297.248857740343 + }, + "value": null, + "layer": "0", + "id": "55580C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2042.969220750149, + "min_y": 5307.736004442079, + "max_x": 2050.3604376627454, + "max_y": 5308.855885792473 + }, + "value": "T10100BA-11", + "layer": "VALVE NO", + "id": "555814" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1942.306736169776, + "min_y": 5376.711444917726, + "max_x": 1954.4014547540248, + "max_y": 5377.8313262681195 + }, + "value": "P-10311-125A-F1A-n", + "layer": "LINENO", + "id": "555816" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1897.052173449534, + "min_y": 5331.654760300751, + "max_x": 1908.91673024459, + "max_y": 5333.194597157542 + }, + "value": "\\pi0.56294; \\fArial|b1|i1|c238|p34; .3333x; P-10114", + "layer": "0", + "id": "555817" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1695.189106154921, + "min_y": 5201.734090653488, + "max_x": 1707.0536629499773, + "max_y": 5203.2739275102795 + }, + "value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10101", + "layer": "0", + "id": "55581B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1712.427617847074, + "min_y": 5210.818634686821, + "max_x": 1724.2921746421302, + "max_y": 5212.358471543612 + }, + "value": "\\pi-1.80523; \\fArial|b1|i1|c238|p34; .3333x; F-10102A/B", + "layer": "0", + "id": "55581F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1832.446505979969, + "min_y": 5204.003163160265, + "max_x": 1844.3110627750252, + "max_y": 5205.543000017056 + }, + "value": "\\pi0.54053; \\fArial|b1|i1|c238|p34; .3333x; P-10116", + "layer": "0", + "id": "555828" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1774.884479611345, + "min_y": 5278.633584305755, + "max_x": 1786.749036406401, + "max_y": 5280.173421162546 + }, + "value": "\\pi-0.44889; \\fArial|b1|i1|c238|p34; .3333x; E-10115B", + "layer": "0", + "id": "55582C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1801.076958673355, + "min_y": 5360.475973068592, + "max_x": 1812.9415154684111, + "max_y": 5362.015809925383 + }, + "value": "\\pi0.63226; \\fArial|b1|i1|c238|p34; .3333x; C-10111", + "layer": "0", + "id": "555830" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1833.519397949487, + "min_y": 5339.830128704213, + "max_x": 1845.3839547445432, + "max_y": 5341.369965561004 + }, + "value": "\\pi0.50272; \\fArial|b1|i1|c238|p34; .3333x; E-10117", + "layer": "0", + "id": "555834" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1932.833924642855, + "min_y": 5198.344277679337, + "max_x": 1944.6984814379111, + "max_y": 5199.884114536128 + }, + "value": "\\pi0.56644; \\fArial|b1|i1|c238|p34; .3333x; E-10119", + "layer": "0", + "id": "555838" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2031.787233376009, + "min_y": 5295.563889369724, + "max_x": 2043.6517901710652, + "max_y": 5297.103726226515 + }, + "value": "\\pi0.7415; \\fArial|b1|i1|c238|p34; .3333x; T-10100", + "layer": "0", + "id": "55583C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2029.945778438314, + "min_y": 5345.039934683783, + "max_x": 2041.81033523337, + "max_y": 5346.579771540574 + }, + "value": "\\pi1.53906; \\fArial|b1|i1|c238|p34; .3333x; T-3210", + "layer": "0", + "id": "555840" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2001.613741977652, + "min_y": 5356.010853454417, + "max_x": 2013.478298772708, + "max_y": 5357.550690311208 + }, + "value": "\\pi-0.35015; \\fArial|b1|i1|c238|p34; .3333x; VP-10117", + "layer": "0", + "id": "555844" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1963.897917638695, + "min_y": 5353.665134999359, + "max_x": 1975.762474433751, + "max_y": 5355.20497185615 + }, + "value": "\\pi-0.29274; \\fArial|b1|i1|c238|p34; .3333x; SP-10601", + "layer": "0", + "id": "555848" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1910.848197027406, + "min_y": 5384.325580423471, + "max_x": 1922.7127538224622, + "max_y": 5385.865417280263 + }, + "value": "\\pi0.48802; \\fArial|b1|i1|c238|p34; .3333x; D-10113", + "layer": "0", + "id": "55584C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1910.848197027406, + "min_y": 5388.163441301037, + "max_x": 1922.7127538224622, + "max_y": 5389.703278157828 + }, + "value": "\\pi0.54824; \\fArial|b1|i1|c238|p34; .3333x; E-10112", + "layer": "0", + "id": "555850" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1911.980554006072, + "min_y": 5375.612495550714, + "max_x": 1923.4033437800847, + "max_y": 5376.732376901107 + }, + "value": "P-10142-25A-F2A-n", + "layer": "LINENO", + "id": "555854" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1863.527792600412, + "min_y": 5273.702677545422, + "max_x": 1875.3923493954683, + "max_y": 5275.242514402214 + }, + "value": "\\pi0.55314; \\fArial|b1|i1|c238|p34; .3333x; P-10118", + "layer": "0", + "id": "555855" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1687.397759873107, + "min_y": 5344.820353276528, + "max_x": 1701.5082648880639, + "max_y": 5345.940234626922 + }, + "value": "ST-10511-100A-S1A-H50", + "layer": "LINENO", + "id": "555859" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1840.930531911545, + "min_y": 5243.969402883109, + "max_x": 1853.6971793060297, + "max_y": 5245.089284233502 + }, + "value": "P-10121-25A-F1A-H50", + "layer": "LINENO", + "id": "55585A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1980.425369724527, + "min_y": 5316.593292351285, + "max_x": 2033.866970528111, + "max_y": 5325.024046996518 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55585D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1702.113164780369, + "min_y": 5306.792338133774, + "max_x": 1713.9777215754252, + "max_y": 5308.332174990565 + }, + "value": "\\pi-0.39777; \\fArial|b1|i1|c238|p34; .3333x; DP-10101", + "layer": "0", + "id": "55585E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5407.912976511994, + "max_x": 1834.358855094082, + "max_y": 5407.912976511994 + }, + "value": null, + "layer": "0", + "id": "555863" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5405.299920027742, + "max_x": 1834.358855094082, + "max_y": 5405.299920027742 + }, + "value": null, + "layer": "0", + "id": "555864" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1651.764277121018, + "min_y": 5406.004194409817, + "max_x": 1684.325051759494, + "max_y": 5430.128936785912 + }, + "value": null, + "layer": "0", + "id": "555866" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5427.999305196113, + "max_x": 1688.899384580426, + "max_y": 5427.999305196113 + }, + "value": null, + "layer": "0", + "id": "555867" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1660.259558430345, + "min_y": 5424.038690993786, + "max_x": 1677.057778686246, + "max_y": 5428.238246057761 + }, + "value": "\\pi-5.02801; \\fArial|b0|i1|c0|p34; .9; SAMPLING \\pi-0.95707;BOOTH", + "layer": "0", + "id": "555868" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5425.199601820131, + "max_x": 1688.899384580426, + "max_y": 5425.199601820131 + }, + "value": null, + "layer": "0", + "id": "55586C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5422.399898444147, + "max_x": 1688.899384580426, + "max_y": 5422.399898444147 + }, + "value": null, + "layer": "0", + "id": "55586D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5419.600195068163, + "max_x": 1688.899384580426, + "max_y": 5419.600195068163 + }, + "value": null, + "layer": "0", + "id": "55586E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5416.80049169218, + "max_x": 1688.899384580426, + "max_y": 5416.80049169218 + }, + "value": null, + "layer": "0", + "id": "55586F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5414.000788316197, + "max_x": 1688.899384580426, + "max_y": 5414.000788316197 + }, + "value": null, + "layer": "0", + "id": "555870" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5411.201084940213, + "max_x": 1688.899384580426, + "max_y": 5411.201084940213 + }, + "value": null, + "layer": "0", + "id": "555871" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5408.401381564229, + "max_x": 1688.899384580426, + "max_y": 5408.401381564229 + }, + "value": null, + "layer": "0", + "id": "555872" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5407.841440889033, + "max_x": 1697.3425716922995, + "max_y": 5414.560728991393 + }, + "value": "10216 btm", + "layer": "0", + "id": "555873" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5424.639661144933, + "max_x": 1697.3425716922995, + "max_y": 5428.55924587131 + }, + "value": "10201 feed", + "layer": "0", + "id": "555875" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5419.040254392966, + "max_x": 1697.3425716922995, + "max_y": 5422.959839119342 + }, + "value": "10218 side", + "layer": "0", + "id": "555877" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5416.240551016983, + "max_x": 1696.6706428820635, + "max_y": 5417.360432367376 + }, + "value": "10114 top", + "layer": "0", + "id": "555879" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5424.591962594014, + "max_x": 1712.704744450085, + "max_y": 5428.511547320391 + }, + "value": "SAM-10955-10A-F2A-n", + "layer": "LINENO", + "id": "555883" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5418.992555842046, + "max_x": 1712.704744450085, + "max_y": 5422.912140568424 + }, + "value": "SAM-10957-10A-F2A-n", + "layer": "LINENO", + "id": "555885" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5413.39314909008, + "max_x": 1712.704744450085, + "max_y": 5417.312733816458 + }, + "value": "SAM-10952-10A-F2A-n", + "layer": "LINENO", + "id": "555887" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5407.793742338113, + "max_x": 1712.704744450085, + "max_y": 5411.71332706449 + }, + "value": "SAM-10958-10A-F2A-n", + "layer": "LINENO", + "id": "555889" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1733.597112402258, + "min_y": 5217.178050391735, + "max_x": 1743.652990386909, + "max_y": 5220.441477274654 + }, + "value": null, + "layer": "0", + "id": "55588B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1730.279183927122, + "min_y": 5217.178050391735, + "max_x": 1733.597112402258, + "max_y": 5220.441477274654 + }, + "value": null, + "layer": "0", + "id": "55588D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1731.656754271574, + "min_y": 5215.22109486822, + "max_x": 1744.423401666059, + "max_y": 5219.611121370762 + }, + "value": "SAMPLE", + "layer": "0", + "id": "555890" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5257.605076384972, + "max_x": 1847.512682025431, + "max_y": 5266.982793546353 + }, + "value": null, + "layer": "UTIL", + "id": "555893" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1829.512366582455, + "min_y": 5267.68201770348, + "max_x": 1831.528153013163, + "max_y": 5269.36183972907 + }, + "value": "EA", + "layer": "INSTRUMENT", + "id": "555894" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1818.570461516898, + "min_y": 5298.469940586269, + "max_x": 1823.6099275936683, + "max_y": 5300.14976261186 + }, + "value": "PGMEA", + "layer": "INSTRUMENT", + "id": "555895" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1655.067543526785, + "min_y": 5359.677185144585, + "max_x": 1783.431736544576, + "max_y": 5403.089962413126 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555896" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1776.723861130266, + "min_y": 5359.677185144585, + "max_x": 1781.372012257674, + "max_y": 5362.891459938298 + }, + "value": "H", + "layer": "INSTRUMENT", + "id": "555897" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1724.693440842446, + "min_y": 5361.524895104221, + "max_x": 1778.879096498354, + "max_y": 5361.524895104221 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "555899" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1977.033011944327, + "min_y": 5388.993654330274, + "max_x": 1980.728431863601, + "max_y": 5392.689074249548 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55589A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1978.585125300688, + "min_y": 5388.993654330274, + "max_x": 1982.5942140667007, + "max_y": 5392.1441249200925 + }, + "value": "L", + "layer": "INSTRUMENT", + "id": "55589B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1977.033011944327, + "min_y": 5390.841364289912, + "max_x": 2001.983844851825, + "max_y": 5390.841364289912 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55589E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1930.459089377298, + "min_y": 5341.22148066201, + "max_x": 1934.154509296572, + "max_y": 5344.916900581282 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5558A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1932.002220335269, + "min_y": 5341.22148066201, + "max_x": 1935.3931579434513, + "max_y": 5342.804626365851 + }, + "value": "L", + "layer": "INSTRUMENT", + "id": "5558A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1928.426795263864, + "min_y": 5340.712553159671, + "max_x": 1934.174388034677, + "max_y": 5343.056471915578 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5558A4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1726.088638131, + "min_y": 5284.614352683661, + "max_x": 1726.3046638503943, + "max_y": 5284.974395549319 + }, + "value": "F", + "layer": "ECT-FITTINGS", + "id": "5558A9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1725.912755111826, + "min_y": 5285.334438414976, + "max_x": 1727.491766910093, + "max_y": 5286.482682866832 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5558AC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2038.491246470004, + "min_y": 5309.534788346945, + "max_x": 2038.7072721893983, + "max_y": 5309.894831212602 + }, + "value": "F", + "layer": "ECT-FITTINGS", + "id": "5558BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2038.31536345083, + "min_y": 5310.809944443447, + "max_x": 2039.027172354835, + "max_y": 5310.809944443447 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5558C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1693.067993185844, + "min_y": 5309.695031476213, + "max_x": 1696.319762221222, + "max_y": 5311.943303448901 + }, + "value": null, + "layer": "0", + "id": "5558D2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1694.1190931236283, + "min_y": 5310.259742122763, + "max_x": 1696.9188926375125, + "max_y": 5311.761694381892 + }, + "value": null, + "layer": "0", + "id": "5558D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1693.709495718279, + "min_y": 5306.594126845161, + "max_x": 1694.807038277208, + "max_y": 5309.141701165 + }, + "value": null, + "layer": "0", + "id": "5558D9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1693.9356479329745, + "min_y": 5308.298642855206, + "max_x": 1694.5805784543395, + "max_y": 5309.740831581286 + }, + "value": null, + "layer": "0", + "id": "5558DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1691.645530222886, + "min_y": 5310.890765449912, + "max_x": 1693.439651743842, + "max_y": 5311.988308008842 + }, + "value": null, + "layer": "0", + "id": "5558E8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1688.8752604833612, + "min_y": 5311.241660319411, + "max_x": 1691.6455302228865, + "max_y": 5311.637413139346 + }, + "value": null, + "layer": "0", + "id": "5558EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1687.081145991515, + "min_y": 5310.892433305063, + "max_x": 1688.875267512471, + "max_y": 5311.989975863993 + }, + "value": null, + "layer": "0", + "id": "5558F4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1692.830912666298, + "min_y": 5312.252316212084, + "max_x": 1698.876928100802, + "max_y": 5315.318487985431 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "5558F8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1688.177305454392, + "min_y": 5312.306091144523, + "max_x": 1689.521163074864, + "max_y": 5313.425972494916 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "5558F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1997.627806695401, + "min_y": 5307.030862442605, + "max_x": 1998.725349254331, + "max_y": 5311.876272326823 + }, + "value": null, + "layer": "0", + "id": "5558FB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1997.8542665182695, + "min_y": 5308.735378452651, + "max_x": 1998.4991970396345, + "max_y": 5310.974825468437 + }, + "value": null, + "layer": "0", + "id": "5558FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1996.638717085536, + "min_y": 5311.327501047357, + "max_x": 2000.789314749723, + "max_y": 5312.425043606286 + }, + "value": null, + "layer": "0", + "id": "555909" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2000.7893147497236, + "min_y": 5311.678395916855, + "max_x": 2003.5595844892478, + "max_y": 5312.07414873679 + }, + "value": null, + "layer": "0", + "id": "55590D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2003.559577460138, + "min_y": 5311.329168902508, + "max_x": 2005.353698981095, + "max_y": 5312.426711461437 + }, + "value": null, + "layer": "0", + "id": "555915" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1999.260385622613, + "min_y": 5311.171527427801, + "max_x": 2000.6042432430852, + "max_y": 5312.291408778195 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "555919" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2004.548734655291, + "min_y": 5311.216488221158, + "max_x": 2010.5579180879242, + "max_y": 5312.34518371063 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "55591A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1979.845460880497, + "min_y": 5311.37219799913, + "max_x": 1996.638717085536, + "max_y": 5312.380039046348 + }, + "value": null, + "layer": "0", + "id": "55591D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1995.1965284444445, + "min_y": 5311.553499457973, + "max_x": 1995.8414589658096, + "max_y": 5312.198429979338 + }, + "value": null, + "layer": "0", + "id": "555921" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2008.592085840291, + "min_y": 5281.35131060775, + "max_x": 2009.599619279347, + "max_y": 5284.213856818681 + }, + "value": null, + "layer": "0", + "id": "555928" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2008.7733872991364, + "min_y": 5281.072962944509, + "max_x": 2009.4183178205014, + "max_y": 5283.312409960295 + }, + "value": null, + "layer": "0", + "id": "55592C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2007.557837866403, + "min_y": 5283.665085539214, + "max_x": 2011.70843553059, + "max_y": 5284.762628098146 + }, + "value": null, + "layer": "0", + "id": "555932" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2011.7084355305906, + "min_y": 5284.015980408713, + "max_x": 2014.4787052701147, + "max_y": 5284.411733228649 + }, + "value": null, + "layer": "0", + "id": "555936" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2014.478698241005, + "min_y": 5283.666753394365, + "max_x": 2016.272819761962, + "max_y": 5284.764295953296 + }, + "value": null, + "layer": "0", + "id": "55593E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2010.17950640348, + "min_y": 5283.509111919659, + "max_x": 2011.5233640239521, + "max_y": 5284.628993270052 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "555942" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2015.467855436158, + "min_y": 5283.554072713016, + "max_x": 2021.4770388687912, + "max_y": 5284.68276820249 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "555943" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2005.290227918805, + "min_y": 5283.709782490988, + "max_x": 2007.557837866403, + "max_y": 5284.717623538205 + }, + "value": null, + "layer": "0", + "id": "555946" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2006.1156492253115, + "min_y": 5283.89108394983, + "max_x": 2006.7605797466765, + "max_y": 5284.536014471195 + }, + "value": null, + "layer": "0", + "id": "55594A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1989.75041485885, + "min_y": 5189.1251344798, + "max_x": 1990.84795741778, + "max_y": 5193.970544364018 + }, + "value": null, + "layer": "0", + "id": "555951" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1989.9768746817185, + "min_y": 5190.829650489847, + "max_x": 1990.6218052030836, + "max_y": 5193.069097505632 + }, + "value": null, + "layer": "0", + "id": "555955" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1988.761325248985, + "min_y": 5193.421773084552, + "max_x": 1992.911922913172, + "max_y": 5194.519315643483 + }, + "value": null, + "layer": "0", + "id": "55595F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1992.9119229131716, + "min_y": 5193.77266795405, + "max_x": 1995.6821926526957, + "max_y": 5194.168420773985 + }, + "value": null, + "layer": "0", + "id": "555963" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1995.682185623587, + "min_y": 5193.423440939703, + "max_x": 1997.476307144543, + "max_y": 5194.520983498634 + }, + "value": null, + "layer": "0", + "id": "55596B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1991.382993786062, + "min_y": 5193.265799464996, + "max_x": 1992.726851406534, + "max_y": 5194.38568081539 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "55596F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1996.671342818739, + "min_y": 5193.310760258356, + "max_x": 2002.680526251373, + "max_y": 5194.439455747827 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "555970" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1986.493715301386, + "min_y": 5193.466470036326, + "max_x": 1988.761325248985, + "max_y": 5194.474311083542 + }, + "value": null, + "layer": "0", + "id": "555973" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1987.3191366078934, + "min_y": 5193.647771495169, + "max_x": 1987.9640671292584, + "max_y": 5194.292702016533 + }, + "value": null, + "layer": "0", + "id": "555977" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.57947531391, + "min_y": 5352.269330269167, + "max_x": 1765.329324488139, + "max_y": 5353.449871859373 + }, + "value": "SAFETY AREA TO ATM", + "layer": "0", + "id": "55597D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.822462686267, + "min_y": 5188.35147248671, + "max_x": 2004.3824033614637, + "max_y": 5189.284706945371 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "55597E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.180455269493, + "min_y": 5188.364563952062, + "max_x": 2013.77986202146, + "max_y": 5189.297798410723 + }, + "value": "2024.04.04", + "layer": "REV.UPDATE", + "id": "55597F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2039.912444310675, + "min_y": 5188.397638741117, + "max_x": 2042.7121476866585, + "max_y": 5189.330873199778 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "555980" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2045.622317220807, + "min_y": 5188.397638741111, + "max_x": 2048.4220205967904, + "max_y": 5189.330873199772 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "555981" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2051.210087732588, + "min_y": 5188.409795101781, + "max_x": 2054.0097911085713, + "max_y": 5189.343029560442 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "555982" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.270794958414, + "min_y": 5188.465694216189, + "max_x": 2029.7503203599877, + "max_y": 5189.39892867485 + }, + "value": "AS BUILT", + "layer": "REV.UPDATE", + "id": "555983" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.822462686258, + "min_y": 5191.753831595221, + "max_x": 2004.3824033614546, + "max_y": 5192.687066053882 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "555984" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.822462686249, + "min_y": 5195.169282169084, + "max_x": 2004.3824033614458, + "max_y": 5196.102516627745 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "555985" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.248708881225, + "min_y": 5195.200954301136, + "max_x": 2041.8086495564216, + "max_y": 5196.134188759797 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555986" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.9193073953, + "min_y": 5195.200954301131, + "max_x": 2047.4792480704966, + "max_y": 5196.134188759792 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555987" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2052.265820902739, + "min_y": 5195.200954301117, + "max_x": 2052.8257615779357, + "max_y": 5196.134188759778 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555988" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.82246268624, + "min_y": 5198.571641277593, + "max_x": 2004.3824033614367, + "max_y": 5199.504875736254 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "555989" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.248708881216, + "min_y": 5198.603313409646, + "max_x": 2041.8086495564128, + "max_y": 5199.536547868307 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55598A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.919307395291, + "min_y": 5198.603313409641, + "max_x": 2047.4792480704878, + "max_y": 5199.536547868302 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55598B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2052.26582090273, + "min_y": 5198.603313409628, + "max_x": 2052.8257615779266, + "max_y": 5199.536547868289 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55598C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.82246268623, + "min_y": 5201.987091851457, + "max_x": 2004.3824033614267, + "max_y": 5202.920326310118 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "55598D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.248708881206, + "min_y": 5202.005672518158, + "max_x": 2041.8086495564028, + "max_y": 5202.9389069768185 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55598E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.919307395281, + "min_y": 5202.005672518152, + "max_x": 2047.4792480704778, + "max_y": 5202.938906976813 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55598F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2052.265820902721, + "min_y": 5202.005672518137, + "max_x": 2052.8257615779175, + "max_y": 5202.938906976798 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555990" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2003.822462686222, + "min_y": 5205.377294599283, + "max_x": 2004.3824033614187, + "max_y": 5206.310529057944 + }, + "value": "6", + "layer": "REV.UPDATE", + "id": "555991" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.248708881198, + "min_y": 5205.408031626668, + "max_x": 2041.8086495563946, + "max_y": 5206.341266085329 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555992" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.919307395274, + "min_y": 5205.408031626663, + "max_x": 2047.4792480704707, + "max_y": 5206.341266085324 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555993" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2052.265820902713, + "min_y": 5205.40803162665, + "max_x": 2052.82576157791, + "max_y": 5206.341266085311 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555994" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1708.314476645491, + "min_y": 5356.952729601244, + "max_x": 1713.167295830529, + "max_y": 5357.773975924865 + }, + "value": "\\Fmonotxt.shx; .6; HH 2000 H 1800 L 200 LL 100", + "layer": "INSTRUMENT", + "id": "555995" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1738.811422789873, + "min_y": 5236.179385712459, + "max_x": 1743.664241974911, + "max_y": 5237.000632036081 + }, + "value": "\\Fmonotxt.shx; .6; HH 3000 H 2700 L 1650 LL 1250", + "layer": "INSTRUMENT", + "id": "555999" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1809.614452789027, + "min_y": 5264.210919643591, + "max_x": 1812.5228191832753, + "max_y": 5265.032165967213 + }, + "value": "\\Fmonotxt.shx; .6;HH 102 H 90 L 85 LL 83", + "layer": "INSTRUMENT", + "id": "55599D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1802.099453823103, + "min_y": 5310.990558833855, + "max_x": 1806.952273008141, + "max_y": 5311.811805157477 + }, + "value": "\\Fmonotxt.shx; .6; HH 101 H 89 L 85 LL 83", + "layer": "INSTRUMENT", + "id": "5559A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.879096498354, + "min_y": 5337.243916145119, + "max_x": 1794.096611032117, + "max_y": 5361.52500939783 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5559A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5299.153704829654, + "max_x": 1794.096611032117, + "max_y": 5336.048147194544 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5559A9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1802.082648793921, + "min_y": 5348.442821457616, + "max_x": 1806.935467978959, + "max_y": 5349.264067781238 + }, + "value": "\\Fmonotxt.shx; .6; HH 89 H 88 L 85 LL 83", + "layer": "INSTRUMENT", + "id": "5559AB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1802.0994538232, + "min_y": 5375.183186741665, + "max_x": 1806.952273008238, + "max_y": 5376.004433065286 + }, + "value": "\\Fmonotxt.shx; .6; HH 88 H 87 L 83 LL 82", + "layer": "INSTRUMENT", + "id": "5559AF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1869.657243357782, + "min_y": 5384.512998394241, + "max_x": 1874.51006254282, + "max_y": 5385.4835622312485 + }, + "value": "\\Fmonotxt.shx; .6; HH 5000 H 4900 L 1200 LL 1000", + "layer": "INSTRUMENT", + "id": "5559B3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1893.990313428268, + "min_y": 5387.927113685758, + "max_x": 1898.8431326133061, + "max_y": 5388.897677522766 + }, + "value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 70 LL 50", + "layer": "INSTRUMENT", + "id": "5559B7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1845.381751960575, + "min_y": 5283.284321168343, + "max_x": 1850.234571145613, + "max_y": 5284.254885005351 + }, + "value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 80 LL 60", + "layer": "INSTRUMENT", + "id": "5559BB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1863.247129041855, + "min_y": 5314.994876242114, + "max_x": 1868.099948226893, + "max_y": 5315.965440079121 + }, + "value": "\\Fmonotxt.shx; .6; HH 45 H 35 L 2 LL 1", + "layer": "INSTRUMENT", + "id": "5559BF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1881.625345792286, + "min_y": 5314.046331892274, + "max_x": 1886.478164977324, + "max_y": 5315.016895729282 + }, + "value": "\\Fmonotxt.shx; .6; HH 3000 H 2900 L 500 LL 350", + "layer": "INSTRUMENT", + "id": "5559C3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1944.579778971395, + "min_y": 5351.582179437998, + "max_x": 1949.432598156433, + "max_y": 5352.552743275006 + }, + "value": "\\Fmonotxt.shx; .6; HH 60 H 50 L 20 LL 5", + "layer": "INSTRUMENT", + "id": "5559C7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1933.915393255282, + "min_y": 5333.520019008606, + "max_x": 1938.76821244032, + "max_y": 5334.490582845614 + }, + "value": "\\Fmonotxt.shx; .6; HH 600 H 550 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "5559CB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2058.274723126778, + "min_y": 5298.080713955839, + "max_x": 2062.1569784748085, + "max_y": 5298.857165025445 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "5559CF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1860.135030899625, + "min_y": 5228.350116698163, + "max_x": 1864.987850084663, + "max_y": 5229.320680535171 + }, + "value": "\\Fmonotxt.shx; .6; HH 100 H 75 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "5559D3" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2055.895075536882, + "min_y": 5348.641341123538, + "max_x": 2059.6261740791, + "max_y": 5352.372439665752 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5559D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2055.895075536887, + "min_y": 5350.506890394644, + "max_x": 2059.626174079099, + "max_y": 5350.506890394644 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5559D9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2056.739757360185, + "min_y": 5349.341075777204, + "max_x": 2058.754065547511, + "max_y": 5351.673545989115 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "5559DA" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2059.6261740791, + "min_y": 5348.641341123538, + "max_x": 2062.0525836716192, + "max_y": 5349.238611177081 + }, + "value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "layer": "INSTRUMENT", + "id": "5559DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5206.055686775715, + "max_x": 1796.485045975991, + "max_y": 5207.193811468221 + }, + "value": null, + "layer": "0", + "id": "5559E2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1794.7885781535135, + "min_y": 5206.273476068732, + "max_x": 1795.4911242599926, + "max_y": 5206.97602217521 + }, + "value": null, + "layer": "0", + "id": "5559E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1785.830056471306, + "min_y": 5200.518678776345, + "max_x": 1794.673656211696, + "max_y": 5233.488000161836 + }, + "value": null, + "layer": "0", + "id": "5559EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1785.166430502856, + "min_y": 5200.479587383323, + "max_x": 1788.708279146155, + "max_y": 5233.527091554857 + }, + "value": null, + "layer": "0", + "id": "5559EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.514337075836, + "min_y": 5208.723626397887, + "max_x": 1790.320395005522, + "max_y": 5227.948745506836 + }, + "value": null, + "layer": "0", + "id": "5559F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5195.645415387203, + "max_x": 1790.468814636729, + "max_y": 5199.249757365773 + }, + "value": null, + "layer": "0", + "id": "5559F6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1789.5687703040255, + "min_y": 5196.210683378795, + "max_x": 1790.2713164105046, + "max_y": 5196.913229485273 + }, + "value": null, + "layer": "0", + "id": "5559F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1795.000253058714, + "min_y": 5225.746989258849, + "max_x": 1796.833335148361, + "max_y": 5226.849806559227 + }, + "value": null, + "layer": "0", + "id": "555A02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5195.31881854019, + "max_x": 1790.468814636729, + "max_y": 5195.645415387203 + }, + "value": null, + "layer": "0", + "id": "555A05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5200.205575868886, + "max_x": 1812.016738426569, + "max_y": 5200.924384328553 + }, + "value": null, + "layer": "0", + "id": "555A0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5230.782578920297, + "max_x": 1800.848147749017, + "max_y": 5231.880121479231 + }, + "value": null, + "layer": "0", + "id": "555A0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1783.553156803233, + "min_y": 5209.381270031847, + "max_x": 1784.760403997811, + "max_y": 5213.007218317959 + }, + "value": null, + "layer": "0", + "id": "555A13" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1790.945519021607, + "min_y": 5195.869988513212, + "max_x": 1792.9613054523152, + "max_y": 5196.989869863605 + }, + "value": "40A", + "layer": "LINENO", + "id": "555A14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1795.819821830956, + "min_y": 5213.586669310251, + "max_x": 1799.403442152215, + "max_y": 5215.079844444109 + }, + "value": "H100", + "layer": "0", + "id": "555A1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1794.412831390595, + "min_y": 5207.478694293304, + "max_x": 1801.8040483031916, + "max_y": 5208.598575643698 + }, + "value": "E10115BA-01", + "layer": "VALVE NO", + "id": "555A1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5242.735307555132, + "max_x": 1784.028953207774, + "max_y": 5251.998912333434 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555A20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5247.489569246588, + "max_x": 1780.349612102438, + "max_y": 5249.303166098781 + }, + "value": null, + "layer": "0", + "id": "555A21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5246.422670430188, + "max_x": 1776.231051578519, + "max_y": 5249.303162106009 + }, + "value": null, + "layer": "0", + "id": "555A22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1768.046569727133, + "min_y": 5217.102108515079, + "max_x": 1773.607603088098, + "max_y": 5276.3756821433 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555A27" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.231239611636, + "min_y": 5239.54368870214, + "max_x": 1783.256917219862, + "max_y": 5242.73530755514 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555A28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5238.917279112751, + "max_x": 1781.600516092969, + "max_y": 5239.54368870214 + }, + "value": null, + "layer": "0", + "id": "555A2A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1780.6978343895425, + "min_y": 5240.113361549833, + "max_x": 1781.4003804960216, + "max_y": 5240.8159076563115 + }, + "value": null, + "layer": "0", + "id": "555A2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1775.711097188003, + "min_y": 5245.833459729389, + "max_x": 1781.7584564801273, + "max_y": 5250.946952271451 + }, + "value": "T", + "layer": "0", + "id": "555A35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5247.847595614039, + "max_x": 1772.947279428532, + "max_y": 5248.950412914417 + }, + "value": null, + "layer": "0", + "id": "555A36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1770.52917180297, + "min_y": 5247.847595614039, + "max_x": 1770.855768649989, + "max_y": 5248.945138172969 + }, + "value": null, + "layer": "0", + "id": "555A37" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1771.4254414976815, + "min_y": 5248.047731210987, + "max_x": 1772.1279876041606, + "max_y": 5248.750277317466 + }, + "value": null, + "layer": "0", + "id": "555A38" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1780.9192849501305, + "min_y": 5248.047731210987, + "max_x": 1781.6218310566096, + "max_y": 5248.750277317466 + }, + "value": null, + "layer": "0", + "id": "555A41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1776.15488881536, + "min_y": 5242.212913832828, + "max_x": 1778.23124065325, + "max_y": 5243.257701277439 + }, + "value": null, + "layer": "0", + "id": "555A48" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5239.803746988282, + "max_x": 1776.154890824309, + "max_y": 5244.878151193486 + }, + "value": null, + "layer": "0", + "id": "555A49" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1776.6738003613075, + "min_y": 5242.4128447569, + "max_x": 1777.3187308826725, + "max_y": 5243.057775278265 + }, + "value": null, + "layer": "0", + "id": "555A50" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1773.9984846203904, + "min_y": 5245.774420888197, + "max_x": 1774.7010307268695, + "max_y": 5246.476966994675 + }, + "value": null, + "layer": "0", + "id": "555A55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5245.204748040504, + "max_x": 1774.901166323817, + "max_y": 5245.824312596571 + }, + "value": null, + "layer": "0", + "id": "555A56" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1769.72879366189, + "min_y": 5238.419320741646, + "max_x": 1777.3800834948838, + "max_y": 5241.865296797575 + }, + "value": "NC", + "layer": "0", + "id": "555A60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1780.501305679409, + "min_y": 5234.142687649918, + "max_x": 1781.598848238339, + "max_y": 5236.147016402335 + }, + "value": null, + "layer": "0", + "id": "555A67" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1780.8522005489017, + "min_y": 5236.1470164023385, + "max_x": 1781.2479533688365, + "max_y": 5238.917286141862 + }, + "value": null, + "layer": "0", + "id": "555A6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1776.830966696294, + "min_y": 5232.514312011156, + "max_x": 1782.8783259884183, + "max_y": 5233.6341933615495 + }, + "value": "FOR DRAIN", + "layer": "0", + "id": "555A77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5239.803746988282, + "max_x": 1774.899498469188, + "max_y": 5240.54706410428 + }, + "value": null, + "layer": "0", + "id": "555A79" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1774.1528507797495, + "min_y": 5241.8080757407015, + "max_x": 1774.5486035996844, + "max_y": 5244.578345480226 + }, + "value": null, + "layer": "0", + "id": "555A80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.231239611636, + "min_y": 5212.243151780396, + "max_x": 1784.333065900452, + "max_y": 5223.317213874358 + }, + "value": null, + "layer": "0", + "id": "555A8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1796.160343582197, + "min_y": 5198.766656864034, + "max_x": 1817.0292258967295, + "max_y": 5202.036701503077 + }, + "value": "P-10116-200A-F2A-H50", + "layer": "LINENO", + "id": "555A8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.786836757016, + "min_y": 5200.564980098745, + "max_x": 1816.000654109004, + "max_y": 5238.229322185361 + }, + "value": null, + "layer": "0", + "id": "555A8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1795.934995989456, + "min_y": 5200.205575868886, + "max_x": 1795.934995989456, + "max_y": 5200.924384328553 + }, + "value": null, + "layer": "건축", + "id": "555A92" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1797.091763837258, + "min_y": 5225.830467000157, + "max_x": 1800.097604789885, + "max_y": 5230.877311266564 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555A97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1800.092250156692, + "min_y": 5230.896857725748, + "max_x": 1802.361798743963, + "max_y": 5243.810118585958 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555A98" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1795.062344642235, + "min_y": 5269.85566144043, + "max_x": 1796.8761492725862, + "max_y": 5270.863330679514 + }, + "value": "65A", + "layer": "0", + "id": "555A99" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1794.920450608243, + "min_y": 5223.852722009736, + "max_x": 1811.430631882647, + "max_y": 5225.34060465564 + }, + "value": "65A", + "layer": "0", + "id": "555A9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.86464144013, + "min_y": 5284.718501212824, + "max_x": 1916.9277871629627, + "max_y": 5285.838382563217 + }, + "value": "HD10118BA-03", + "layer": "VALVE NO", + "id": "555A9B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.864641440127, + "min_y": 5280.495710737759, + "max_x": 1916.9277871629595, + "max_y": 5281.615592088152 + }, + "value": "HD10118BA-04", + "layer": "VALVE NO", + "id": "555A9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5274.657825560785, + "max_x": 1974.7429867406142, + "max_y": 5276.151000694643 + }, + "value": "T-6121", + "layer": "0", + "id": "555A9E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5270.657452245021, + "max_x": 1978.902414574071, + "max_y": 5275.422488853283 + }, + "value": null, + "layer": "TEXT", + "id": "555AA1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5275.063084623449, + "max_x": 1966.42686520761, + "max_y": 5275.781893083117 + }, + "value": null, + "layer": "건축", + "id": "555AA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1799.635775983964, + "min_y": 5226.872402586595, + "max_x": 1817.4521760565049, + "max_y": 5231.051384250655 + }, + "value": "P-10118-300A-F2A-H50", + "layer": "LINENO", + "id": "555AAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1817.261349275122, + "min_y": 5235.725318778531, + "max_x": 1830.699925479843, + "max_y": 5236.845200128924 + }, + "value": "P-10114-250A-F2A-H50", + "layer": "LINENO", + "id": "555AAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1952.397049860521, + "min_y": 5324.37777334969, + "max_x": 1952.397049860521, + "max_y": 5325.690628510229 + }, + "value": null, + "layer": "0", + "id": "555AB5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2000.316743522348, + "min_y": 5319.373688184896, + "max_x": 2005.6921740042362, + "max_y": 5320.866863318754 + }, + "value": "T-9124", + "layer": "0", + "id": "555AB8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.208288223069, + "min_y": 5314.536459617093, + "max_x": 2010.490276853294, + "max_y": 5321.654216374742 + }, + "value": null, + "layer": "TEXT", + "id": "555AB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.208288223069, + "min_y": 5321.654216374742, + "max_x": 2008.987471226104, + "max_y": 5321.654216374742 + }, + "value": null, + "layer": "TEXT", + "id": "555ABA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5311.227406192013, + "max_x": 1960.137563782644, + "max_y": 5312.521008357695 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555AC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1960.137563782644, + "min_y": 5311.245535884851, + "max_x": 1979.845460880497, + "max_y": 5312.507008768794 + }, + "value": null, + "layer": "0", + "id": "555AC2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1958.7000045268946, + "min_y": 5311.477012399155, + "max_x": 1959.4985243822475, + "max_y": 5312.275532254507 + }, + "value": null, + "layer": "0", + "id": "555AC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1955.837344104521, + "min_y": 5312.355981214786, + "max_x": 1973.7281338897337, + "max_y": 5313.84875739967 + }, + "value": "HD10114BA-04", + "layer": "VALVE NO", + "id": "555ACF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5265.617473184719, + "max_x": 1910.873297418609, + "max_y": 5266.626761973005 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555AD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5265.617473184719, + "max_x": 1955.403073995256, + "max_y": 5266.626761973005 + }, + "value": null, + "layer": "0", + "id": "555AD4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5265.79666521252, + "max_x": 1910.3494321584587, + "max_y": 5266.442719347508 + }, + "value": null, + "layer": "0", + "id": "555AD5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5266.849668316754, + "max_x": 1916.8945700508225, + "max_y": 5267.9695496671475 + }, + "value": "HD10118BA-07", + "layer": "VALVE NO", + "id": "555ADD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5269.892788952522, + "max_x": 1974.7429867406142, + "max_y": 5271.38596408638 + }, + "value": "T-6125", + "layer": "0", + "id": "555ADE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5266.119692280014, + "max_x": 1978.902414574071, + "max_y": 5270.657452245021 + }, + "value": null, + "layer": "TEXT", + "id": "555AE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5264.630540573318, + "max_x": 1966.42686520761, + "max_y": 5272.146603951718 + }, + "value": null, + "layer": "0", + "id": "555AE3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5265.355028987515, + "max_x": 1974.7429867406142, + "max_y": 5266.848204121373 + }, + "value": "T-6122", + "layer": "0", + "id": "555AE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5262.115199348285, + "max_x": 1978.902414574071, + "max_y": 5266.119692280014 + }, + "value": null, + "layer": "TEXT", + "id": "555AEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5265.76028805018, + "max_x": 1966.42686520761, + "max_y": 5266.479096509847 + }, + "value": null, + "layer": "건축", + "id": "555AEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5280.645647563726, + "max_x": 1935.4797548158026, + "max_y": 5281.765528914119 + }, + "value": "P-10135-25A-F2A-n", + "layer": "LINENO", + "id": "555AF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5275.991825250168, + "max_x": 1935.4797548158026, + "max_y": 5277.111706600562 + }, + "value": "P-10134-25A-F2A-n", + "layer": "LINENO", + "id": "555AF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5266.479617004867, + "max_x": 1935.4797548158026, + "max_y": 5267.59949835526 + }, + "value": "P-10133-25A-F2A-n", + "layer": "LINENO", + "id": "555AF7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5261.350536055786, + "max_x": 1974.7429867406142, + "max_y": 5262.843711189644 + }, + "value": "T-6126", + "layer": "0", + "id": "555AFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5260.626047641588, + "max_x": 1978.902414574071, + "max_y": 5262.115199348285 + }, + "value": null, + "layer": "TEXT", + "id": "555B01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5260.626047641588, + "max_x": 1966.42686520761, + "max_y": 5263.604351054983 + }, + "value": null, + "layer": "0", + "id": "555B03" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.846768852376, + "min_y": 5215.553289789733, + "max_x": 1917.98489354488, + "max_y": 5220.577917583568 + }, + "value": null, + "layer": "0", + "id": "555B09" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1917.0645581453894, + "min_y": 5216.1185577813185, + "max_x": 1917.7671042518684, + "max_y": 5216.821103887797 + }, + "value": null, + "layer": "0", + "id": "555B0A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.86705991916, + "min_y": 5215.226692942714, + "max_x": 1917.964602478098, + "max_y": 5215.553289789733 + }, + "value": null, + "layer": "0", + "id": "555B0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5256.606940363781, + "max_x": 1910.873297418609, + "max_y": 5257.616229152066 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555B12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5256.606940363781, + "max_x": 1955.403073995256, + "max_y": 5257.616229152066 + }, + "value": null, + "layer": "0", + "id": "555B13" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5256.786132391581, + "max_x": 1910.3494321584587, + "max_y": 5257.432186526569 + }, + "value": null, + "layer": "0", + "id": "555B14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5257.839135495815, + "max_x": 1916.8945700508225, + "max_y": 5258.959016846208 + }, + "value": "HD10118BA-09", + "layer": "VALVE NO", + "id": "555B1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5256.344496166576, + "max_x": 1974.7429867406142, + "max_y": 5257.8376713004345 + }, + "value": "T-9125", + "layer": "0", + "id": "555B1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5255.620007752378, + "max_x": 1978.902414574071, + "max_y": 5258.598311165773 + }, + "value": null, + "layer": "TEXT", + "id": "555B1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5255.620007752378, + "max_x": 1977.413262867374, + "max_y": 5255.620007752378 + }, + "value": null, + "layer": "TEXT", + "id": "555B21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5256.749755229241, + "max_x": 1964.388582533062, + "max_y": 5257.468563688908 + }, + "value": null, + "layer": "건축", + "id": "555B25" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5257.469084183928, + "max_x": 1935.4797548158026, + "max_y": 5258.588965534322 + }, + "value": "P-10132-25A-F2A-n", + "layer": "LINENO", + "id": "555B29" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5252.192588808277, + "max_x": 1910.873297418609, + "max_y": 5253.201877596564 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555B2A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5252.192588808277, + "max_x": 1911.173632502022, + "max_y": 5253.201877596564 + }, + "value": null, + "layer": "0", + "id": "555B2B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5252.371780836079, + "max_x": 1910.3494321584587, + "max_y": 5253.017834971067 + }, + "value": null, + "layer": "0", + "id": "555B2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5253.424783940312, + "max_x": 1916.8945700508225, + "max_y": 5254.544665290706 + }, + "value": "HD10118BA-10", + "layer": "VALVE NO", + "id": "555B34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5248.03291138098, + "max_x": 1910.873297418609, + "max_y": 5249.042200169266 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555B42" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5248.03291138098, + "max_x": 1911.173632502022, + "max_y": 5249.042200169266 + }, + "value": null, + "layer": "0", + "id": "555B43" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5248.212103408781, + "max_x": 1910.3494321584587, + "max_y": 5248.858157543769 + }, + "value": null, + "layer": "0", + "id": "555B44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5249.265106513014, + "max_x": 1916.8945700508225, + "max_y": 5250.384987863407 + }, + "value": "HD10118BA-11", + "layer": "VALVE NO", + "id": "555B4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1649.890653749454, + "min_y": 5256.319900690504, + "max_x": 1659.9695859029946, + "max_y": 5257.439782040898 + }, + "value": "SARF-#6-PID-005", + "layer": "0", + "id": "555B4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1794.982856965729, + "min_y": 5271.131597321967, + "max_x": 1797.074367744272, + "max_y": 5272.234414622345 + }, + "value": null, + "layer": "0", + "id": "555B51" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1795.5525298134214, + "min_y": 5271.331732918916, + "max_x": 1796.2550759199005, + "max_y": 5272.034279025394 + }, + "value": null, + "layer": "0", + "id": "555B53" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1794.982856965729, + "min_y": 5271.131597321967, + "max_x": 1794.982856965729, + "max_y": 5272.229139880898 + }, + "value": null, + "layer": "0", + "id": "555B55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1797.091763837258, + "min_y": 5225.746989258849, + "max_x": 1797.091763837258, + "max_y": 5226.84453181778 + }, + "value": null, + "layer": "0", + "id": "555B5B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1795.5699259064074, + "min_y": 5225.947124855798, + "max_x": 1796.2724720128865, + "max_y": 5226.649670962277 + }, + "value": null, + "layer": "0", + "id": "555B5D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5321.790490179118, + "max_x": 1751.583208545517, + "max_y": 5324.715245346674 + }, + "value": null, + "layer": "0", + "id": "555B7F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1751.583208545517, + "min_y": 5321.790490179121, + "max_x": 1763.540698918505, + "max_y": 5324.715245346674 + }, + "value": null, + "layer": "0", + "id": "555B80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1751.583208545517, + "min_y": 5321.790490179118, + "max_x": 1763.540698918505, + "max_y": 5321.790490179118 + }, + "value": null, + "layer": "0", + "id": "555B81" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1752.608896098864, + "min_y": 5322.640679025458, + "max_x": 1757.425281810636, + "max_y": 5323.787437528261 + }, + "value": "P-10118", + "layer": "0", + "id": "555B85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1721.278225939452, + "min_y": 5259.352315441632, + "max_x": 1721.278225939452, + "max_y": 5263.967595259878 + }, + "value": null, + "layer": "0", + "id": "555B87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5221.856370206531, + "max_x": 1780.969176658504, + "max_y": 5223.669967058723 + }, + "value": null, + "layer": "0", + "id": "555B89" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5220.78947139013, + "max_x": 1776.231051578519, + "max_y": 5223.669963065952 + }, + "value": null, + "layer": "0", + "id": "555B8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1778.231238570021, + "min_y": 5213.910489662082, + "max_x": 1780.456481419963, + "max_y": 5217.624502237381 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555B8F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5213.284080072694, + "max_x": 1780.456481419963, + "max_y": 5213.910489662082 + }, + "value": null, + "layer": "0", + "id": "555B91" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1779.5537997165366, + "min_y": 5214.480162509775, + "max_x": 1780.2563458230156, + "max_y": 5215.182708616254 + }, + "value": null, + "layer": "0", + "id": "555B92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1775.711097188003, + "min_y": 5220.200260689331, + "max_x": 1781.7584564801273, + "max_y": 5225.313753231392 + }, + "value": "T", + "layer": "0", + "id": "555B9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5222.21439657398, + "max_x": 1772.947279428532, + "max_y": 5223.317213874358 + }, + "value": null, + "layer": "0", + "id": "555B9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1770.52917180297, + "min_y": 5222.21439657398, + "max_x": 1770.855768649989, + "max_y": 5223.311939132911 + }, + "value": null, + "layer": "0", + "id": "555B9E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1771.4254414976815, + "min_y": 5222.414532170929, + "max_x": 1772.1279876041606, + "max_y": 5223.117078277408 + }, + "value": null, + "layer": "0", + "id": "555B9F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1780.9192849501305, + "min_y": 5222.414532170929, + "max_x": 1781.6218310566096, + "max_y": 5223.117078277408 + }, + "value": null, + "layer": "0", + "id": "555BA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5214.170547948225, + "max_x": 1777.83764242862, + "max_y": 5219.244952153428 + }, + "value": null, + "layer": "0", + "id": "555BB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1777.837640419673, + "min_y": 5216.598342580361, + "max_x": 1777.83764242862, + "max_y": 5217.605876019407 + }, + "value": null, + "layer": "0", + "id": "555BB3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1776.6738003613075, + "min_y": 5216.7796457168415, + "max_x": 1777.3187308826725, + "max_y": 5217.424576238206 + }, + "value": null, + "layer": "0", + "id": "555BB7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1773.9984846203904, + "min_y": 5220.14122184814, + "max_x": 1774.7010307268695, + "max_y": 5220.843767954619 + }, + "value": null, + "layer": "0", + "id": "555BBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5219.571549000447, + "max_x": 1774.901166323817, + "max_y": 5220.191113556513 + }, + "value": null, + "layer": "0", + "id": "555BBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1769.72879366189, + "min_y": 5212.786121701588, + "max_x": 1777.3800834948838, + "max_y": 5216.232097757518 + }, + "value": "NC", + "layer": "0", + "id": "555BC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1779.357271006404, + "min_y": 5208.50948860986, + "max_x": 1780.454813565334, + "max_y": 5210.513817362278 + }, + "value": null, + "layer": "0", + "id": "555BCE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1779.7081658758966, + "min_y": 5210.51381736228, + "max_x": 1780.1039186958315, + "max_y": 5213.2840871018025 + }, + "value": null, + "layer": "0", + "id": "555BD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1775.686932023288, + "min_y": 5206.881112971099, + "max_x": 1781.7342913154123, + "max_y": 5208.000994321493 + }, + "value": "FOR DRAIN", + "layer": "0", + "id": "555BDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5214.170547948225, + "max_x": 1774.899498469188, + "max_y": 5214.913865064222 + }, + "value": null, + "layer": "0", + "id": "555BE0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1774.1528507797495, + "min_y": 5216.174876700644, + "max_x": 1774.5486035996844, + "max_y": 5218.945146440169 + }, + "value": null, + "layer": "0", + "id": "555BE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1769.637859762922, + "min_y": 5217.102108515078, + "max_x": 1773.607603088098, + "max_y": 5217.102108515079 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555BF0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1953.855142266071, + "min_y": 5304.270115367831, + "max_x": 1955.668946896422, + "max_y": 5305.277784606915 + }, + "value": "25A", + "layer": "0", + "id": "555BF7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1893.505065901147, + "min_y": 5304.725100850479, + "max_x": 1895.318870531498, + "max_y": 5305.732770089563 + }, + "value": "20A", + "layer": "0", + "id": "555BF8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1904.8830524093103, + "min_y": 5246.8394047764705, + "max_x": 1905.5291065442977, + "max_y": 5247.485458911458 + }, + "value": null, + "layer": "0", + "id": "555BFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1902.958075612853, + "min_y": 5246.660212748668, + "max_x": 1904.932982968566, + "max_y": 5247.669501536954 + }, + "value": null, + "layer": "0", + "id": "555BFF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1952.5237832194712, + "min_y": 5306.846165374477, + "max_x": 1953.1698373544587, + "max_y": 5307.492219509465 + }, + "value": null, + "layer": "0", + "id": "555C08" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1950.598806423013, + "min_y": 5306.666973346676, + "max_x": 1952.573713778726, + "max_y": 5307.676262134961 + }, + "value": null, + "layer": "0", + "id": "555C0D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1843.713415257506, + "min_y": 5266.982793546353, + "max_x": 1850.838045449032, + "max_y": 5273.089651531179 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "555C15" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1845.5038705046304, + "min_y": 5265.71277063177, + "max_x": 1846.2076406040037, + "max_y": 5268.525602598106 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "555C22" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1845.4833488362995, + "min_y": 5270.714281808288, + "max_x": 1846.1871189356727, + "max_y": 5273.743442999632 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "555C23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1847.273521243468, + "min_y": 5268.046595381156, + "max_x": 1848.5636183974243, + "max_y": 5269.1216763427865 + }, + "value": "FO", + "layer": "0", + "id": "555C24" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1850.8134575765703, + "min_y": 5267.2475590982285, + "max_x": 1861.7137716497791, + "max_y": 5272.846939106719 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555C25" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1851.661148808844, + "min_y": 5268.239780206763, + "max_x": 1855.4379586214716, + "max_y": 5271.738468814369 + }, + "value": "XV", + "layer": "INSTRUMENT", + "id": "555C26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.917067330611, + "min_y": 5271.291660935801, + "max_x": 1846.384961248107, + "max_y": 5275.237105280318 + }, + "value": null, + "layer": "0", + "id": "555C2B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1839.5651822809243, + "min_y": 5269.694472169234, + "max_x": 1840.2689523802976, + "max_y": 5270.398242268608 + }, + "value": null, + "layer": "0", + "id": "555C2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5269.128219354019, + "max_x": 1840.466794692732, + "max_y": 5271.291660935801 + }, + "value": null, + "layer": "0", + "id": "555C2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5268.801053502036, + "max_x": 1840.466794692732, + "max_y": 5269.128219354019 + }, + "value": null, + "layer": "0", + "id": "555C2E" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1775.642783757515, + "min_y": 5197.014608815837, + "max_x": 1787.5073405525711, + "max_y": 5198.554445672628 + }, + "value": "\\pi-0.39637; \\fArial|b1|i1|c238|p34; .3333x; E-10115A", + "layer": "0", + "id": "555C36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.180455269475, + "min_y": 5191.707011251327, + "max_x": 2013.779862021442, + "max_y": 5192.6402457099875 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "555C3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2041.248708881225, + "min_y": 5191.502528584488, + "max_x": 2041.8086495564216, + "max_y": 5192.435763043149 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555C3B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2046.9193073953, + "min_y": 5191.502528584482, + "max_x": 2047.4792480704966, + "max_y": 5192.435763043143 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555C3C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2052.265820902739, + "min_y": 5191.502528584468, + "max_x": 2052.8257615779357, + "max_y": 5192.435763043129 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "555C3D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.221234410993, + "min_y": 5191.571986716562, + "max_x": 2029.7007598125667, + "max_y": 5192.505221175223 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "555C3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1913.809111724617, + "min_y": 5313.359246040018, + "max_x": 1914.853899169234, + "max_y": 5322.899465884096 + }, + "value": null, + "layer": "0", + "id": "555C42" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1914.0090401862424, + "min_y": 5322.853665779016, + "max_x": 1914.6539707076074, + "max_y": 5323.498596300381 + }, + "value": null, + "layer": "0", + "id": "555C49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1916.69783843117, + "min_y": 5311.72753259856, + "max_x": 1926.753716415821, + "max_y": 5314.990959481478 + }, + "value": null, + "layer": "0", + "id": "555C4B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1914.331505446925, + "min_y": 5311.72753259856, + "max_x": 1916.69783843117, + "max_y": 5314.990959481478 + }, + "value": null, + "layer": "0", + "id": "555C4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1913.066194119473, + "min_y": 5310.134659473871, + "max_x": 1925.8328415139579, + "max_y": 5314.160603577585 + }, + "value": "SAMPLE", + "layer": "0", + "id": "555C50" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1882.099163691397, + "min_y": 5294.496413506383, + "max_x": 1892.155041676048, + "max_y": 5297.759840389302 + }, + "value": null, + "layer": "0", + "id": "555C53" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1879.732830707152, + "min_y": 5294.496413506383, + "max_x": 1882.099163691397, + "max_y": 5297.759840389302 + }, + "value": null, + "layer": "0", + "id": "555C55" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1881.300440399015, + "min_y": 5292.75572431982, + "max_x": 1894.0670877935, + "max_y": 5296.929484485409 + }, + "value": "SAMPLE", + "layer": "0", + "id": "555C58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1871.720639401586, + "min_y": 5303.122757597686, + "max_x": 1879.732830707152, + "max_y": 5304.262865158676 + }, + "value": null, + "layer": "0", + "id": "555C5B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1872.2868922168013, + "min_y": 5303.340926328493, + "max_x": 1872.9906623161746, + "max_y": 5304.044696427866 + }, + "value": null, + "layer": "0", + "id": "555C5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1870.571337256196, + "min_y": 5303.122757597686, + "max_x": 1871.720639401586, + "max_y": 5304.262865158676 + }, + "value": null, + "layer": "0", + "id": "555C5E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1879.732830707152, + "min_y": 5296.128126947842, + "max_x": 1879.732830707152, + "max_y": 5303.69281137818 + }, + "value": null, + "layer": "0", + "id": "555C6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1753.994495396353, + "min_y": 5247.675020663513, + "max_x": 1764.418544184243, + "max_y": 5277.928643502227 + }, + "value": null, + "layer": "0", + "id": "555C75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1759.945937615892, + "min_y": 5275.826912692031, + "max_x": 1766.686883289046, + "max_y": 5279.265972900708 + }, + "value": null, + "layer": "0", + "id": "555C78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1761.634976692166, + "min_y": 5244.119187570753, + "max_x": 1762.737793992543, + "max_y": 5247.310382220565 + }, + "value": null, + "layer": "0", + "id": "555C83" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1718.08309965217, + "min_y": 5249.563469212318, + "max_x": 1742.875904507543, + "max_y": 5277.677023544764 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555C84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1748.269888815072, + "min_y": 5247.961848880784, + "max_x": 1754.03726417919, + "max_y": 5253.882146737302 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555C85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5241.998469202777, + "max_x": 1762.737793992543, + "max_y": 5244.119187570753 + }, + "value": null, + "layer": "0", + "id": "555C87" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1761.8351122891154, + "min_y": 5244.688860418446, + "max_x": 1762.5376583955945, + "max_y": 5245.391406524925 + }, + "value": null, + "layer": "0", + "id": "555C88" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1716.655882829111, + "min_y": 5249.563469212318, + "max_x": 1718.083099652172, + "max_y": 5252.417902858435 + }, + "value": null, + "layer": "TEXT", + "id": "555C93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1765.066424231759, + "min_y": 5290.99731646739, + "max_x": 1766.686883289046, + "max_y": 5290.99731646739 + }, + "value": null, + "layer": "0", + "id": "555C95" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1754.575312523665, + "min_y": 5288.374538540365, + "max_x": 1765.06642423176, + "max_y": 5293.620099624023 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555C96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1760.269018149372, + "min_y": 5289.157810487034, + "max_x": 1764.1877309612148, + "max_y": 5292.657920509109 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "555C97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1754.527489407542, + "min_y": 5290.997327021981, + "max_x": 1759.868696818816, + "max_y": 5293.66792806512 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555C9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1754.575312523668, + "min_y": 5288.326715328876, + "max_x": 1759.868696818816, + "max_y": 5293.667917415164 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555C9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1754.527484082568, + "min_y": 5288.326715328876, + "max_x": 1759.86868616886, + "max_y": 5290.997327021972 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555C9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1755.390727882585, + "min_y": 5289.248787556562, + "max_x": 1758.750727882585, + "max_y": 5292.642904003853 + }, + "value": "TI", + "layer": "INSTRUMENT", + "id": "555CA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1717.901785528773, + "min_y": 5247.666428979082, + "max_x": 1730.6684329232578, + "max_y": 5254.387018342109 + }, + "value": "CONDENSATE", + "layer": "0", + "id": "555CA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.137518279337, + "min_y": 5256.204228334246, + "max_x": 1757.046974084845, + "max_y": 5260.058960039167 + }, + "value": "CD-10516-65A-S1A-H50", + "layer": "LINENO", + "id": "555CA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5259.532043188477, + "max_x": 1764.80456369526, + "max_y": 5265.368968063304 + }, + "value": null, + "layer": "0", + "id": "555CA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1763.082407304565, + "min_y": 5241.734498027167, + "max_x": 1765.0981937352733, + "max_y": 5245.675062288445 + }, + "value": "20A", + "layer": "LINENO", + "id": "555CAE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1755.708289818887, + "min_y": 5235.095774797741, + "max_x": 1767.1310795928996, + "max_y": 5236.215656148134 + }, + "value": "P-10112-25A-F1A-n", + "layer": "LINENO", + "id": "555CAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1765.841916617588, + "min_y": 5265.910803559131, + "max_x": 1769.4255369388468, + "max_y": 5267.403978692989 + }, + "value": "H100", + "layer": "0", + "id": "555CB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1746.38355166151, + "min_y": 5247.961848880784, + "max_x": 1749.287555534554, + "max_y": 5277.677023544764 + }, + "value": null, + "layer": "0", + "id": "555CB6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1748.7888003610194, + "min_y": 5248.161984477731, + "max_x": 1750.8863713357446, + "max_y": 5251.259739828779 + }, + "value": null, + "layer": "0", + "id": "555CBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1746.383554726159, + "min_y": 5253.327218229826, + "max_x": 1752.441996101544, + "max_y": 5255.427985403112 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555CBF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1756.130401155929, + "min_y": 5240.608201362836, + "max_x": 1767.994957950985, + "max_y": 5242.148038219627 + }, + "value": "\\pi0.56364; \\fArial|b1|i1|c238|p34; .3333x; E-10103", + "layer": "0", + "id": "555CCC" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1750.192777338541, + "min_y": 5288.326725978823, + "max_x": 1755.045596523579, + "max_y": 5289.147972302444 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 60 L 4 LL 2", + "layer": "INSTRUMENT", + "id": "555CD6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1766.431273349486, + "min_y": 5275.824275321308, + "max_x": 1768.518466609257, + "max_y": 5276.927092621686 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555CE5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1765.7830238074955, + "min_y": 5276.024410918258, + "max_x": 1766.4855699139746, + "max_y": 5276.726957024736 + }, + "value": null, + "layer": "0", + "id": "555CE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1765.03429950271, + "min_y": 5274.3619737434, + "max_x": 1767.0500859334181, + "max_y": 5275.4818550937935 + }, + "value": "65A", + "layer": "LINENO", + "id": "555CF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.661481675778, + "min_y": 5294.049677580845, + "max_x": 1907.801589236768, + "max_y": 5296.213119162628 + }, + "value": null, + "layer": "0", + "id": "555CF6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1906.8796504065863, + "min_y": 5294.943096248042, + "max_x": 1907.5834205059596, + "max_y": 5295.646866347415 + }, + "value": null, + "layer": "0", + "id": "555CF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1906.677460158517, + "min_y": 5296.213119162628, + "max_x": 1907.789250793323, + "max_y": 5296.540285014605 + }, + "value": null, + "layer": "0", + "id": "555CF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5270.657452245021, + "max_x": 1961.014993439497, + "max_y": 5275.422488853283 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555D0E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5262.115199348285, + "max_x": 1961.014993439497, + "max_y": 5266.119692280014 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555D0F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1768.856132929638, + "min_y": 5251.785903496659, + "max_x": 1785.8506788465281, + "max_y": 5256.34111367879 + }, + "value": "CD-10513-40A-S1A-H50", + "layer": "LINENO", + "id": "555D10" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1768.390480169212, + "min_y": 5225.816086678215, + "max_x": 1781.8290563739329, + "max_y": 5226.935968028608 + }, + "value": "CD-10514-40A-S1A-H50", + "layer": "LINENO", + "id": "555D12" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1902.598732835233, + "min_y": 5304.587722570177, + "max_x": 1907.3022345068853, + "max_y": 5305.70760392057 + }, + "value": "20Ax25A", + "layer": "VALVE NO", + "id": "555D18" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1908.770501624111, + "min_y": 5349.485332588693, + "max_x": 1925.3227958791315, + "max_y": 5351.0326364042185 + }, + "value": "P-10141-32A-F2A-n", + "layer": "LINENO", + "id": "555D19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1884.433432457196, + "min_y": 5306.115046883728, + "max_x": 1884.433432457196, + "max_y": 5306.990283657422 + }, + "value": null, + "layer": "0", + "id": "555D1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1884.11035866988, + "min_y": 5307.689883032409, + "max_x": 1888.8138603415323, + "max_y": 5308.809764382802 + }, + "value": "25Ax20A", + "layer": "VALVE NO", + "id": "555D1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.00452512503, + "max_x": 1904.206441265123, + "max_y": 5363.298127290709 + }, + "value": null, + "layer": "0", + "id": "555D1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1901.264520438758, + "min_y": 5361.995461715552, + "max_x": 1901.751731892721, + "max_y": 5363.28906388123 + }, + "value": null, + "layer": "0", + "id": "555D21" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1902.3942202799076, + "min_y": 5362.25206628019, + "max_x": 1903.1927401352605, + "max_y": 5363.050586135542 + }, + "value": null, + "layer": "0", + "id": "555D24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1890.822265942964, + "min_y": 5362.674354597447, + "max_x": 1892.164211514721, + "max_y": 5365.471441262022 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555D33" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1742.86492905054, + "min_y": 5277.677023544764, + "max_x": 1746.383937796322, + "max_y": 5277.677023544764 + }, + "value": null, + "layer": "0", + "id": "555D3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1852.370124443217, + "min_y": 5248.387061870645, + "max_x": 1859.807041483418, + "max_y": 5249.525186563147 + }, + "value": null, + "layer": "0", + "id": "555D41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1859.807041483418, + "min_y": 5248.387061870645, + "max_x": 1865.556131537951, + "max_y": 5249.525186563147 + }, + "value": null, + "layer": "0", + "id": "555D45" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1858.5392273853524, + "min_y": 5248.604851163651, + "max_x": 1859.2417734918315, + "max_y": 5249.3073972701295 + }, + "value": null, + "layer": "0", + "id": "555D4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2034.775046935893, + "min_y": 5339.964155955845, + "max_x": 2037.6412264688358, + "max_y": 5341.158397427905 + }, + "value": "기존설비", + "layer": "0", + "id": "555D4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1769.824004830424, + "min_y": 5272.293213018198, + "max_x": 1783.2625810351449, + "max_y": 5273.413094368591 + }, + "value": "CD-10515-65A-S1A-H50", + "layer": "LINENO", + "id": "555D4E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1702.214896390662, + "min_y": 5314.11957196192, + "max_x": 1709.297586072037, + "max_y": 5314.700422949972 + }, + "value": null, + "layer": "0", + "id": "555D5F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1707.6334460242276, + "min_y": 5314.879579035542, + "max_x": 1708.2386137654223, + "max_y": 5315.484746776736 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "555D60" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1707.829083712493, + "min_y": 5314.286079932101, + "max_x": 1708.2310189499751, + "max_y": 5314.684412939512 + }, + "value": "R", + "layer": "PSV", + "id": "555D61" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1707.594088632968, + "min_y": 5315.484746776736, + "max_x": 1708.277971156682, + "max_y": 5315.484746776736 + }, + "value": null, + "layer": "0", + "id": "555D67" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5314.700422949972, + "max_x": 1709.297586072037, + "max_y": 5323.252867762896 + }, + "value": null, + "layer": "0", + "id": "555D6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5321.763716056199, + "max_x": 1662.936978660329, + "max_y": 5324.742019469593 + }, + "value": null, + "layer": "TEXT", + "id": "555D6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5321.763716056199, + "max_x": 1661.447826953631, + "max_y": 5321.763716056199 + }, + "value": null, + "layer": "TEXT", + "id": "555D6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1650.472975878352, + "min_y": 5319.897904352351, + "max_x": 1663.2396232728368, + "max_y": 5323.961807978104 + }, + "value": "K-10901 (Air)", + "layer": "0", + "id": "555D71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5386.419597002782, + "max_x": 2004.855309325957, + "max_y": 5389.082807772457 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555D74" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2001.522608510205, + "min_y": 5390.739811358773, + "max_x": 2006.2250638844164, + "max_y": 5394.257356253683 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "555D75" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2001.0713121285028, + "min_y": 5389.0812615082705, + "max_x": 2007.4066123986393, + "max_y": 5395.416561778407 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555D76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1692.908812183814, + "min_y": 5315.6990289227, + "max_x": 1706.132738040832, + "max_y": 5319.878689444009 + }, + "value": "PSV-10101", + "layer": "0", + "id": "555D79" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1700.091632793737, + "min_y": 5313.92921572926, + "max_x": 1701.945483225107, + "max_y": 5317.473050811119 + }, + "value": null, + "layer": "0", + "id": "555D7C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1703.235079214341, + "min_y": 5315.749627821078, + "max_x": 1711.3684160210692, + "max_y": 5316.879257933124 + }, + "value": "0.7->0.29MPa", + "layer": "14-D-PIPELINE-LINE", + "id": "555D8C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.417328609859, + "min_y": 5219.985391540626, + "max_x": 1918.962523390176, + "max_y": 5220.993232587846 + }, + "value": null, + "layer": "0", + "id": "555D8D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1714.04572361429, + "min_y": 5344.460838259831, + "max_x": 1719.4211540961783, + "max_y": 5345.580719610224 + }, + "value": "100Ax80A", + "layer": "VALVE NO", + "id": "555D94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1743.436490868854, + "min_y": 5347.5723092055, + "max_x": 1800.0802086969, + "max_y": 5348.885164366039 + }, + "value": null, + "layer": "0", + "id": "555D96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1799.584676575439, + "min_y": 5272.44029008175, + "max_x": 1807.4933977357634, + "max_y": 5273.887597575784 + }, + "value": "100Ax65A", + "layer": "VALVE NO", + "id": "555D9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1780.885644551242, + "min_y": 5210.90722992845, + "max_x": 1786.47232425376, + "max_y": 5213.157695257304 + }, + "value": "65A", + "layer": "0", + "id": "555DA9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1788.522776621401, + "min_y": 5282.765689824337, + "max_x": 1802.855648371894, + "max_y": 5282.765689824337 + }, + "value": null, + "layer": "0", + "id": "555DAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1798.132368200133, + "min_y": 5277.566160909754, + "max_x": 1815.1273071877831, + "max_y": 5280.181478093613 + }, + "value": "P-10117-500A-F2A-H50", + "layer": "LINENO", + "id": "555DAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1802.361557738692, + "min_y": 5231.330873481586, + "max_x": 1802.361557738692, + "max_y": 5244.895125250916 + }, + "value": null, + "layer": "0", + "id": "555DAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1821.698467678447, + "min_y": 5256.01191792987, + "max_x": 1824.1168738522485, + "max_y": 5257.019587168954 + }, + "value": "250A", + "layer": "0", + "id": "555DB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1816.816910880614, + "min_y": 5244.630489911338, + "max_x": 1817.587389538439, + "max_y": 5245.566228327028 + }, + "value": null, + "layer": "0", + "id": "555DB1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1812.016689052498, + "min_y": 5200.103629721795, + "max_x": 1812.787167710323, + "max_y": 5201.039368137486 + }, + "value": null, + "layer": "0", + "id": "555DB5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1815.831977669122, + "min_y": 5243.308342767083, + "max_x": 1821.8793369612463, + "max_y": 5244.428224117476 + }, + "value": "200Ax250A", + "layer": "VALVE NO", + "id": "555DB9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1812.958052918594, + "min_y": 5274.730208685166, + "max_x": 1815.3764590923954, + "max_y": 5275.73787792425 + }, + "value": "500A", + "layer": "0", + "id": "555DBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1793.653697479865, + "min_y": 5274.89321371285, + "max_x": 1796.0721036536665, + "max_y": 5275.900882951934 + }, + "value": "300A", + "layer": "0", + "id": "555DBE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1793.664800405656, + "min_y": 5229.524611959868, + "max_x": 1796.0832065794575, + "max_y": 5230.532281198952 + }, + "value": "300A", + "layer": "0", + "id": "555DBF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1812.271918329717, + "min_y": 5292.612640455455, + "max_x": 1816.9754200013692, + "max_y": 5295.067439125705 + }, + "value": "50A", + "layer": "0", + "id": "555DC0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1765.371715227251, + "min_y": 5248.912540414668, + "max_x": 1770.0752168989031, + "max_y": 5250.032421765061 + }, + "value": "65Ax40A", + "layer": "VALVE NO", + "id": "555DC2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1829.468772527091, + "min_y": 5204.884042483659, + "max_x": 1831.2825771574421, + "max_y": 5205.891711722743 + }, + "value": "20A", + "layer": "0", + "id": "555DC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1831.888333042895, + "min_y": 5220.321592728773, + "max_x": 1833.7021376732462, + "max_y": 5221.329261967857 + }, + "value": "15A", + "layer": "0", + "id": "555DC7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1832.009630551533, + "min_y": 5217.163098805829, + "max_x": 1833.8234351818842, + "max_y": 5218.170768044913 + }, + "value": "15A", + "layer": "0", + "id": "555DC8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1727.381910736633, + "min_y": 5230.46373853386, + "max_x": 1729.1957153669841, + "max_y": 5231.471407772944 + }, + "value": "15A", + "layer": "0", + "id": "555DC9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1725.956636772931, + "min_y": 5226.915601068597, + "max_x": 1727.7704414032821, + "max_y": 5227.923270307681 + }, + "value": "20A", + "layer": "0", + "id": "555DCA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1711.063978201929, + "min_y": 5221.941181969387, + "max_x": 1712.8777828322802, + "max_y": 5222.948851208471 + }, + "value": "15A", + "layer": "0", + "id": "555DCB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1706.002801266031, + "min_y": 5218.974285144896, + "max_x": 1707.816605896382, + "max_y": 5219.98195438398 + }, + "value": "15A", + "layer": "0", + "id": "555DCC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1706.11915016111, + "min_y": 5215.600167187631, + "max_x": 1707.932954791461, + "max_y": 5216.607836426715 + }, + "value": "15A", + "layer": "0", + "id": "555DCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1695.406607085731, + "min_y": 5218.766519260828, + "max_x": 1697.220411716082, + "max_y": 5219.774188499912 + }, + "value": "20A", + "layer": "0", + "id": "555DCE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1691.045908587849, + "min_y": 5203.539983035193, + "max_x": 1692.8597132182, + "max_y": 5204.5476522742765 + }, + "value": "20A", + "layer": "0", + "id": "555DCF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1719.243855502398, + "min_y": 5222.023249245676, + "max_x": 1722.2668632196498, + "max_y": 5223.03091848476 + }, + "value": "1/4''", + "layer": "0", + "id": "555DD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1718.115817495532, + "min_y": 5213.028975709034, + "max_x": 1721.1388252127838, + "max_y": 5214.036644948118 + }, + "value": "1/4''", + "layer": "0", + "id": "555DD1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1718.2104630331, + "min_y": 5232.478633679142, + "max_x": 1721.233470750352, + "max_y": 5233.486302918226 + }, + "value": "1/4''", + "layer": "0", + "id": "555DD2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1719.141707518808, + "min_y": 5241.456438956969, + "max_x": 1722.16471523606, + "max_y": 5242.464108196053 + }, + "value": "1/4''", + "layer": "0", + "id": "555DD3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1741.952006219825, + "min_y": 5225.789676116843, + "max_x": 1743.7658108501762, + "max_y": 5226.797345355927 + }, + "value": "15A", + "layer": "0", + "id": "555DD5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1863.997757902536, + "min_y": 5217.348144470747, + "max_x": 1865.452746856011, + "max_y": 5218.156471667122 + }, + "value": "15A", + "layer": "0", + "id": "555DD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1921.216844296851, + "min_y": 5213.11010798577, + "max_x": 1928.6080612094474, + "max_y": 5214.229989336163 + }, + "value": "E10119BA-04", + "layer": "VALVE NO", + "id": "555DD8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1852.852514960638, + "min_y": 5374.808062222469, + "max_x": 1854.6663195909891, + "max_y": 5375.815731461553 + }, + "value": "20A", + "layer": "0", + "id": "555DD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1849.046438699848, + "min_y": 5338.915893382141, + "max_x": 1850.8602433301992, + "max_y": 5339.923562621225 + }, + "value": "65A", + "layer": "0", + "id": "555DDA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1859.31971394103, + "min_y": 5275.211274521712, + "max_x": 1861.3355003717381, + "max_y": 5276.331155872105 + }, + "value": "20A", + "layer": "LINENO", + "id": "555DDB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1865.202486539025, + "min_y": 5286.626085233748, + "max_x": 1869.234059400441, + "max_y": 5287.186025908945 + }, + "value": "PG10118CV-01", + "layer": "0", + "id": "555DDC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1875.006753441179, + "min_y": 5292.534061276469, + "max_x": 1877.0225398718871, + "max_y": 5293.653942626863 + }, + "value": "15A", + "layer": "LINENO", + "id": "555DDD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1875.007643828675, + "min_y": 5289.331379935839, + "max_x": 1877.0234302593833, + "max_y": 5290.451261286233 + }, + "value": "15A", + "layer": "LINENO", + "id": "555DDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1889.131116597847, + "min_y": 5303.050118249878, + "max_x": 1891.1469030285552, + "max_y": 5304.169999600272 + }, + "value": "15A", + "layer": "LINENO", + "id": "555DDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1902.425023668277, + "min_y": 5245.022695277356, + "max_x": 1909.8162405808735, + "max_y": 5246.14257662775 + }, + "value": "E10118BA-12", + "layer": "VALVE NO", + "id": "555DE1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1909.069975066017, + "min_y": 5345.696456977151, + "max_x": 1913.7734767376692, + "max_y": 5346.816338327544 + }, + "value": "20Ax25A", + "layer": "VALVE NO", + "id": "555DEC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1938.464791071825, + "min_y": 5321.420371947029, + "max_x": 1940.278595702176, + "max_y": 5322.428041186113 + }, + "value": "15A", + "layer": "0", + "id": "555DEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1884.602562851518, + "min_y": 5221.306285415885, + "max_x": 1896.0253526255308, + "max_y": 5222.426166766279 + }, + "value": "P-10122-20A-F1A-n", + "layer": "LINENO", + "id": "555DF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1957.699082273065, + "min_y": 5307.294528240066, + "max_x": 1958.07029501574, + "max_y": 5308.556001124003 + }, + "value": null, + "layer": "0", + "id": "555E08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1794.221414598029, + "min_y": 5248.84093750084, + "max_x": 1796.2372010287372, + "max_y": 5249.960818851233 + }, + "value": "50A", + "layer": "LINENO", + "id": "555E1C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1963.753272958901, + "min_y": 5358.881605714708, + "max_x": 1975.8479915431499, + "max_y": 5360.001487065101 + }, + "value": "P-10311-125A-F1A-n", + "layer": "LINENO", + "id": "555E1E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1995.8167763663566, + "min_y": 5360.65820143073, + "max_x": 1998.403423394788, + "max_y": 5361.089309268804 + }, + "value": null, + "layer": "0", + "id": "555E21" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1995.3856685282906, + "min_y": 5360.658201430732, + "max_x": 1995.8167763663594, + "max_y": 5361.089309268801 + }, + "value": null, + "layer": "0", + "id": "555E28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5247.963516735413, + "max_x": 1746.217480081767, + "max_y": 5249.061059294343 + }, + "value": null, + "layer": "0", + "id": "555E2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1749.614152381572, + "min_y": 5247.961848880784, + "max_x": 1751.447234471219, + "max_y": 5249.059391439715 + }, + "value": null, + "layer": "0", + "id": "555E36" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1746.2174800817697, + "min_y": 5248.314411604915, + "max_x": 1748.9877498212938, + "max_y": 5248.7101644248505 + }, + "value": null, + "layer": "0", + "id": "555E44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1742.860261104326, + "min_y": 5246.009727277555, + "max_x": 1751.614761980759, + "max_y": 5247.216873607886 + }, + "value": "FOR DRAIN", + "layer": "0", + "id": "555E4C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1751.707853455505, + "min_y": 5248.516511811587, + "max_x": 1754.037264080057, + "max_y": 5248.516511811587 + }, + "value": null, + "layer": "0", + "id": "555E4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1757.934864734803, + "min_y": 5251.956987978581, + "max_x": 1759.9506511655113, + "max_y": 5253.076869328975 + }, + "value": "65A", + "layer": "LINENO", + "id": "555E4E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1846.01599782737, + "min_y": 5272.473420085042, + "max_x": 1846.384961248107, + "max_y": 5273.089651531179 + }, + "value": null, + "layer": "0", + "id": "555E55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1769.346261899945, + "min_y": 5348.256390540603, + "max_x": 1770.449079200323, + "max_y": 5353.098848393198 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555E66" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1767.0432212119058, + "min_y": 5355.773394702346, + "max_x": 1772.757394629812, + "max_y": 5361.487568120252 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555E67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1767.18395416751, + "min_y": 5357.067382158107, + "max_x": 1771.8864095417214, + "max_y": 5360.468650575239 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "555E68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5353.098848393198, + "max_x": 1770.449079200323, + "max_y": 5355.773394702346 + }, + "value": null, + "layer": "0", + "id": "555E6A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1769.5463974968955, + "min_y": 5351.835439151246, + "max_x": 1770.2489436033745, + "max_y": 5352.537985257724 + }, + "value": null, + "layer": "0", + "id": "555E6C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 1768.220485895269, + "min_y": 5353.305469373028, + "max_x": 1769.900307920859, + "max_y": 5355.825202411413 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555E74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1696.964354244418, + "min_y": 5283.04615886268, + "max_x": 1700.570382990434, + "max_y": 5289.862352506297 + }, + "value": null, + "layer": "0", + "id": "555E7B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1697.1456557032634, + "min_y": 5281.882317799838, + "max_x": 1700.3887739234244, + "max_y": 5282.527248321203 + }, + "value": null, + "layer": "0", + "id": "555E7D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1849.962866859444, + "min_y": 5343.373121861035, + "max_x": 1854.6653222336554, + "max_y": 5346.789689665649 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "555E8B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1849.7627514217613, + "min_y": 5342.1928670612815, + "max_x": 1855.4868802114167, + "max_y": 5347.916995850937 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555E8C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1847.848725536334, + "min_y": 5345.249598127137, + "max_x": 1849.799342968633, + "max_y": 5345.249598127141 + }, + "value": null, + "layer": "0", + "id": "555E8E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1935.291270686358, + "min_y": 5424.31418060625, + "max_x": 1943.9312706863582, + "max_y": 5425.114180606251 + }, + "value": "SAFETY AREA TO ATM", + "layer": "0", + "id": "555E90" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1669.80249916638, + "min_y": 5320.85141608081, + "max_x": 1681.8972177506287, + "max_y": 5321.971297431203 + }, + "value": "IA-10901-15A-F1A-n", + "layer": "LINENO", + "id": "555E92" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1856.468215795732, + "min_y": 5267.516147934471, + "max_x": 1861.76160009088, + "max_y": 5272.857350020759 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555E9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1856.420387354632, + "min_y": 5267.516147934471, + "max_x": 1861.761589440925, + "max_y": 5270.186759627566 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555EA0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1857.283631154649, + "min_y": 5268.438220162156, + "max_x": 1860.6436311546488, + "max_y": 5271.832336609448 + }, + "value": "HS", + "layer": "INSTRUMENT", + "id": "555EA4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1936.865410723994, + "min_y": 5398.211754324333, + "max_x": 1938.003535416497, + "max_y": 5401.876631027974 + }, + "value": null, + "layer": "0", + "id": "555EA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1935.261056976977, + "min_y": 5403.057244745991, + "max_x": 1939.1797697888198, + "max_y": 5406.679947554377 + }, + "value": "10112", + "layer": "INSTRUMENT", + "id": "555EA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1934.952727154497, + "min_y": 5394.881826524501, + "max_x": 1937.983244349716, + "max_y": 5398.211754324333 + }, + "value": null, + "layer": "0", + "id": "555EAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1933.408207917791, + "min_y": 5396.426860768396, + "max_x": 1934.349964464778, + "max_y": 5397.564985460899 + }, + "value": null, + "layer": "0", + "id": "555EB6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1934.3000727563954, + "min_y": 5396.644650061409, + "max_x": 1935.0026188628744, + "max_y": 5397.347196167888 + }, + "value": null, + "layer": "0", + "id": "555EB7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1933.591245100416, + "min_y": 5395.107459781404, + "max_x": 1935.4050497307671, + "max_y": 5396.115129020488 + }, + "value": "15A", + "layer": "0", + "id": "555EC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1934.499080765221, + "min_y": 5398.693410657385, + "max_x": 1936.312885395572, + "max_y": 5399.701079896469 + }, + "value": "15A", + "layer": "0", + "id": "555EC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1859.149406341888, + "min_y": 5334.139464433202, + "max_x": 1860.287531034392, + "max_y": 5337.460590788889 + }, + "value": null, + "layer": "0", + "id": "555EC6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1857.499219215146, + "min_y": 5338.641204506906, + "max_x": 1861.4179320269889, + "max_y": 5342.263907315292 + }, + "value": "10117", + "layer": "INSTRUMENT", + "id": "555EC7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1859.3671956349024, + "min_y": 5334.70473242479, + "max_x": 1860.0697417413814, + "max_y": 5335.407278531268 + }, + "value": null, + "layer": "0", + "id": "555ECB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1859.169697408672, + "min_y": 5331.340551301583, + "max_x": 1862.160582457334, + "max_y": 5334.139464433202 + }, + "value": null, + "layer": "0", + "id": "555ECC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1862.763345147054, + "min_y": 5332.215002561143, + "max_x": 1865.217752654192, + "max_y": 5333.778267366404 + }, + "value": null, + "layer": "0", + "id": "555ED5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1862.1106907489564, + "min_y": 5332.857931966913, + "max_x": 1862.8132368554354, + "max_y": 5333.560478073392 + }, + "value": null, + "layer": "0", + "id": "555ED6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1860.309378186118, + "min_y": 5334.629343335437, + "max_x": 1862.1231828164691, + "max_y": 5335.637012574521 + }, + "value": "15A", + "layer": "0", + "id": "555EE4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1713.410905620241, + "min_y": 5320.547753332195, + "max_x": 1721.4740513430736, + "max_y": 5321.667634682588 + }, + "value": "DP10101BA-02", + "layer": "VALVE NO", + "id": "555EE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1713.582069161863, + "min_y": 5317.049549480125, + "max_x": 1721.6452148846956, + "max_y": 5318.169430830519 + }, + "value": "DP10101CV-01", + "layer": "VALVE NO", + "id": "555EE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1675.511235521785, + "min_y": 5337.383468443312, + "max_x": 1690.833983058892, + "max_y": 5340.104513637743 + }, + "value": null, + "layer": "0", + "id": "555EE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1672.534144466854, + "min_y": 5338.026407552977, + "max_x": 1675.511237932839, + "max_y": 5339.839996419615 + }, + "value": null, + "layer": "0", + "id": "555EE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1675.383619696154, + "min_y": 5336.370294042994, + "max_x": 1677.3994061268622, + "max_y": 5339.49825542161 + }, + "value": "T", + "layer": "0", + "id": "555EED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1690.83398305889, + "min_y": 5337.383468443312, + "max_x": 1692.194505656107, + "max_y": 5340.104513637743 + }, + "value": null, + "layer": "TEXT", + "id": "555EF2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1679.438996796998, + "min_y": 5335.540729625024, + "max_x": 1691.6090553264733, + "max_y": 5341.947264040311 + }, + "value": "CONDENSATE", + "layer": "0", + "id": "555EF4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1669.661506684451, + "min_y": 5338.430104997957, + "max_x": 1671.980814816232, + "max_y": 5339.474892442578 + }, + "value": null, + "layer": "0", + "id": "555EF8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1671.9350143808585, + "min_y": 5338.630030997338, + "max_x": 1672.5799449022236, + "max_y": 5339.274961518702 + }, + "value": null, + "layer": "0", + "id": "555F00" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.184417887939, + "min_y": 5195.039891140158, + "max_x": 2013.783824639906, + "max_y": 5195.973125598819 + }, + "value": "2025.06.20", + "layer": "REV.UPDATE", + "id": "555F08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.319829637503, + "min_y": 5195.065138966194, + "max_x": 2029.7993550390768, + "max_y": 5195.998373424855 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "555F09" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2003.8323113138165, + "min_y": 5385.6777844857725, + "max_x": 2004.6308311691694, + "max_y": 5386.476304341125 + }, + "value": null, + "layer": "0", + "id": "555F0A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.265592247433, + "min_y": 5198.475629233867, + "max_x": 2029.7451176490067, + "max_y": 5199.408863692528 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "555F11" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.08146557554, + "min_y": 5198.628725886001, + "max_x": 2013.6808723275071, + "max_y": 5199.561960344662 + }, + "value": "2025.06.23", + "layer": "REV.UPDATE", + "id": "555F12" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1965.7974716340336, + "min_y": 5381.753037777722, + "max_x": 1966.5959914893865, + "max_y": 5382.5515576330745 + }, + "value": null, + "layer": "0", + "id": "555F13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1965.572993477249, + "min_y": 5379.326419078783, + "max_x": 1966.820469646175, + "max_y": 5385.068414700413 + }, + "value": null, + "layer": "0", + "id": "555F14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2008.040926103586, + "min_y": 5201.85157708522, + "max_x": 2013.640332855553, + "max_y": 5202.784811543881 + }, + "value": "2025.07.02", + "layer": "REV.UPDATE", + "id": "555F1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.389734065646, + "min_y": 5201.912133055215, + "max_x": 2029.8692594672198, + "max_y": 5202.845367513876 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "555F20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1920.265382584765, + "min_y": 5194.464900581585, + "max_x": 1922.093768897418, + "max_y": 5195.53594448628 + }, + "value": null, + "layer": "0", + "id": "555F24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1919.88456901828, + "min_y": 5193.213498383038, + "max_x": 1921.437470333083, + "max_y": 5194.076221335707 + }, + "value": "H50", + "layer": "0", + "id": "555F28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1970.225543144433, + "min_y": 5190.62089988087, + "max_x": 1971.337333779241, + "max_y": 5199.689886729034 + }, + "value": null, + "layer": "0", + "id": "555F2A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1970.4313734317993, + "min_y": 5192.655325230095, + "max_x": 1971.1351435311726, + "max_y": 5193.359095329468 + }, + "value": null, + "layer": "0", + "id": "555F36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1985.636307805183, + "min_y": 5198.872382449716, + "max_x": 1991.907643367386, + "max_y": 5200.365557583574 + }, + "value": "T-10101", + "layer": "0", + "id": "555F39" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1970.789905085211, + "min_y": 5198.177406011119, + "max_x": 1996.39406847706, + "max_y": 5201.155709424512 + }, + "value": null, + "layer": "TEXT", + "id": "555F3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2000.330397442842, + "min_y": 5315.234234840642, + "max_x": 2006.6017330050452, + "max_y": 5316.7274099745 + }, + "value": "T-10101", + "layer": "0", + "id": "555F42" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1998.221942143563, + "min_y": 5314.536459617093, + "max_x": 2010.490276853294, + "max_y": 5316.025611323791 + }, + "value": null, + "layer": "TEXT", + "id": "555F43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1971.767168760593, + "min_y": 5200.520817245561, + "max_x": 1983.1899585346057, + "max_y": 5201.640698595955 + }, + "value": "P-10151-15A-F1A-n", + "layer": "LINENO", + "id": "555F4A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1708.169003825039, + "min_y": 5292.567601596846, + "max_x": 1721.588871781806, + "max_y": 5295.492356764402 + }, + "value": null, + "layer": "0", + "id": "555F4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1697.453767056363, + "min_y": 5290.556375884528, + "max_x": 1715.473454673937, + "max_y": 5295.9169968208635 + }, + "value": "P-10114", + "layer": "0", + "id": "555F50" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1700.070036051737, + "min_y": 5288.399974922519, + "max_x": 1709.631381408818, + "max_y": 5291.324730090075 + }, + "value": null, + "layer": "0", + "id": "555F53" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1710.657068962165, + "min_y": 5289.25016376886, + "max_x": 1715.473454673937, + "max_y": 5290.396922271663 + }, + "value": "E-10119", + "layer": "0", + "id": "555F56" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1697.471927020987, + "min_y": 5283.352669627713, + "max_x": 1708.169003825039, + "max_y": 5294.029979180623 + }, + "value": null, + "layer": "0", + "id": "555F59" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2007.980905920724, + "min_y": 5205.280214648579, + "max_x": 2013.580312672691, + "max_y": 5206.21344910724 + }, + "value": "2025.07.07", + "layer": "REV.UPDATE", + "id": "555F5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2025.270292252604, + "min_y": 5205.386260718108, + "max_x": 2029.7498176541776, + "max_y": 5206.319495176769 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "555F60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2459.952304237658, + "min_y": 5144.341807664509, + "max_x": 2497.2068385699513, + "max_y": 5150.622621441771 + }, + "value": "PIPING & INSTRUMENT DIAGRAM", + "layer": "0", + "id": "555F61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2094.355083779731, + "min_y": 5135.882015483047, + "max_x": 2306.390234699339, + "max_y": 5135.882015483047 + }, + "value": null, + "layer": "0", + "id": "555F62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5246.55497396627, + "max_x": 2244.793695241873, + "max_y": 5247.693098658777 + }, + "value": null, + "layer": "0", + "id": "555F63" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5271.627833679247, + "max_x": 2261.919862426123, + "max_y": 5295.685689636433 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555F6A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2240.551122181286, + "min_y": 5246.772763259287, + "max_x": 2241.2536682877644, + "max_y": 5247.4753093657655 + }, + "value": null, + "layer": "0", + "id": "555F6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2231.592600499078, + "min_y": 5241.0179659669, + "max_x": 2249.006116590495, + "max_y": 5278.820073302767 + }, + "value": null, + "layer": "0", + "id": "555F6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2230.058964240069, + "min_y": 5240.978874573879, + "max_x": 2234.470823173927, + "max_y": 5278.859164695788 + }, + "value": null, + "layer": "0", + "id": "555F6E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5240.551199997586, + "max_x": 2266.470021593043, + "max_y": 5241.648742556522 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "555F71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2235.276881103607, + "min_y": 5249.222913588443, + "max_x": 2236.082939033294, + "max_y": 5273.280818647767 + }, + "value": null, + "layer": "0", + "id": "555F74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5236.144702577758, + "max_x": 2236.2313586645, + "max_y": 5239.749044556329 + }, + "value": null, + "layer": "0", + "id": "555F79" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2235.331314331798, + "min_y": 5236.709970569352, + "max_x": 2236.0338604382764, + "max_y": 5237.41251667583 + }, + "value": null, + "layer": "0", + "id": "555F7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5235.818105730746, + "max_x": 2236.2313586645, + "max_y": 5236.144702577758 + }, + "value": null, + "layer": "0", + "id": "555F7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2202.857702288334, + "min_y": 5247.954485973747, + "max_x": 2210.198484305001, + "max_y": 5277.87610858004 + }, + "value": null, + "layer": "0", + "id": "555F8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2205.72587773665, + "min_y": 5275.810132856611, + "max_x": 2213.642077037838, + "max_y": 5279.201163612986 + }, + "value": null, + "layer": "0", + "id": "555F90" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2196.662000641023, + "min_y": 5251.394823280568, + "max_x": 2206.320423721075, + "max_y": 5252.402356719613 + }, + "value": null, + "layer": "0", + "id": "555F9B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2207.414916812923, + "min_y": 5244.066652648566, + "max_x": 2208.5177341133, + "max_y": 5247.257847298378 + }, + "value": null, + "layer": "0", + "id": "555F9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2162.101260040156, + "min_y": 5248.862361582013, + "max_x": 2191.136877333056, + "max_y": 5280.515738664553 + }, + "value": null, + "layer": "STEAM LINE", + "id": "555FA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5241.945934280592, + "max_x": 2208.5177341133, + "max_y": 5244.066652648566 + }, + "value": null, + "layer": "0", + "id": "555FA9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2207.615052409874, + "min_y": 5244.63632549626, + "max_x": 2208.3175985163525, + "max_y": 5245.338871602738 + }, + "value": null, + "layer": "0", + "id": "555FAA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2230.058964240069, + "min_y": 5257.955650443864, + "max_x": 2230.592566148673, + "max_y": 5259.64819981593 + }, + "value": null, + "layer": "0", + "id": "555FB8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2230.295773156333, + "min_y": 5259.351406823593, + "max_x": 2230.478301599431, + "max_y": 5259.533935266691 + }, + "value": null, + "layer": "0", + "id": "555FC1" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2190.783979175877, + "min_y": 5229.413651600572, + "max_x": 2192.466730780193, + "max_y": 5231.096403204888 + }, + "value": null, + "layer": "0", + "id": "555FC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2187.838399463307, + "min_y": 5228.467454643045, + "max_x": 2195.99772470205, + "max_y": 5233.703869489422 + }, + "value": null, + "layer": "0", + "id": "555FC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2180.321945976952, + "min_y": 5223.333629847886, + "max_x": 2185.368550745747, + "max_y": 5230.882236784204 + }, + "value": null, + "layer": "0", + "id": "555FD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2190.104884247715, + "min_y": 5232.514642140576, + "max_x": 2193.14584231679, + "max_y": 5235.135707474728 + }, + "value": null, + "layer": "0", + "id": "555FD4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2191.225528280724, + "min_y": 5232.919880225513, + "max_x": 2197.945440371761, + "max_y": 5234.752333786919 + }, + "value": "I/P", + "layer": "0", + "id": "555FD5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2190.104887102685, + "min_y": 5235.135701411292, + "max_x": 2193.14584231679, + "max_y": 5238.797452411242 + }, + "value": null, + "layer": "0", + "id": "555FD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2178.624899566518, + "min_y": 5225.930242089748, + "max_x": 2183.32840123817, + "max_y": 5229.343744090139 + }, + "value": "MASS", + "layer": "0", + "id": "555FDA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2179.2979817030073, + "min_y": 5230.881300261185, + "max_x": 2184.5435451194808, + "max_y": 5241.42023508542 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555FDB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.250166149312, + "min_y": 5238.797462483378, + "max_x": 2184.591373560582, + "max_y": 5241.468063526517 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555FDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.297989265438, + "min_y": 5236.126850790272, + "max_x": 2191.625367179135, + "max_y": 5241.468052876562 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555FE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.250160824335, + "min_y": 5236.126850790272, + "max_x": 2184.59136291063, + "max_y": 5238.797462483368 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555FE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2177.655312991667, + "min_y": 5228.186257617158, + "max_x": 2180.321949181507, + "max_y": 5229.793416540949 + }, + "value": null, + "layer": "0", + "id": "555FE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2194.767414290945, + "min_y": 5235.285346698939, + "max_x": 2197.1186419780506, + "max_y": 5236.591584302887 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "555FEF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2193.5785790605723, + "min_y": 5232.1366039452405, + "max_x": 2198.824134914622, + "max_y": 5237.38215979929 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "555FF0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2179.746122834943, + "min_y": 5237.129336467393, + "max_x": 2183.664835646786, + "max_y": 5240.478311434901 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "555FF1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2179.746130202359, + "min_y": 5231.664576541476, + "max_x": 2183.664843014202, + "max_y": 5235.149662680345 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "555FF3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2196.391223664946, + "min_y": 5223.333606194542, + "max_x": 2204.631585013845, + "max_y": 5229.512194746849 + }, + "value": null, + "layer": "0", + "id": "555FF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2195.997723660444, + "min_y": 5228.467412226929, + "max_x": 2196.391225673895, + "max_y": 5229.512199671551 + }, + "value": null, + "layer": "0", + "id": "555FF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2185.762146887152, + "min_y": 5226.389335630934, + "max_x": 2189.615518313287, + "max_y": 5229.512209026288 + }, + "value": null, + "layer": "0", + "id": "555FFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.429493684734, + "min_y": 5220.461091659507, + "max_x": 2192.477407514031, + "max_y": 5226.089522888562 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556006" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2192.477405505084, + "min_y": 5222.811221836657, + "max_x": 2198.84540037736, + "max_y": 5223.85600928127 + }, + "value": null, + "layer": "0", + "id": "55600A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5219.325998144008, + "max_x": 2169.770905346779, + "max_y": 5239.145683550538 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556012" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2169.770905346766, + "min_y": 5225.367268560746, + "max_x": 2177.655381223472, + "max_y": 5229.889851527182 + }, + "value": null, + "layer": "0", + "id": "556013" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2174.252304315161, + "min_y": 5227.076284780844, + "max_x": 2174.768248732253, + "max_y": 5227.592229197935 + }, + "value": null, + "layer": "0", + "id": "556016" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5233.543178354143, + "max_x": 2165.033176641445, + "max_y": 5240.501347048444 + }, + "value": null, + "layer": "0", + "id": "55601D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5235.261183544168, + "max_x": 2166.089806333846, + "max_y": 5241.366734960751 + }, + "value": null, + "layer": "0", + "id": "55601E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5230.958029818533, + "max_x": 2163.765574576356, + "max_y": 5233.377641166981 + }, + "value": null, + "layer": "0", + "id": "556036" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2156.8535387950656, + "min_y": 5225.488870607187, + "max_x": 2163.606131898921, + "max_y": 5233.0169695704435 + }, + "value": null, + "layer": "0", + "id": "556037" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2176.540766978181, + "min_y": 5223.040627179083, + "max_x": 2177.6554686029, + "max_y": 5229.515223268448 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556042" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2176.540766978181, + "min_y": 5220.461091659502, + "max_x": 2177.585554422797, + "max_y": 5223.040627179083 + }, + "value": null, + "layer": "0", + "id": "556046" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2176.7406954398066, + "min_y": 5223.559537720555, + "max_x": 2177.385625961171, + "max_y": 5224.20446824192 + }, + "value": null, + "layer": "0", + "id": "55604B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5214.227251138303, + "max_x": 2165.033176641445, + "max_y": 5221.185419832607 + }, + "value": null, + "layer": "0", + "id": "55604D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5215.945256328336, + "max_x": 2166.96102774543, + "max_y": 5222.050807744915 + }, + "value": null, + "layer": "0", + "id": "55604E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2157.071289706244, + "min_y": 5226.668355804226, + "max_x": 2161.779496064161, + "max_y": 5230.147231709494 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556053" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5211.691491316806, + "max_x": 2163.765574576356, + "max_y": 5214.061713951149 + }, + "value": null, + "layer": "0", + "id": "556056" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2163.1546805339653, + "min_y": 5213.249590989656, + "max_x": 2163.606131898921, + "max_y": 5213.701042354612 + }, + "value": null, + "layer": "0", + "id": "556057" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5218.827786973129, + "max_x": 2156.070430150041, + "max_y": 5239.151556301918 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556064" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2200.763899543357, + "min_y": 5228.486059059612, + "max_x": 2204.631586018318, + "max_y": 5232.921389122203 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556065" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2202.335308566026, + "min_y": 5232.921389122203, + "max_x": 2203.380096010643, + "max_y": 5248.667888637054 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556066" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2212.021617980554, + "min_y": 5275.810132856611, + "max_x": 2220.133575382496, + "max_y": 5295.758678955206 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556068" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2160.674043217097, + "min_y": 5250.409694916495, + "max_x": 2162.101260040158, + "max_y": 5253.264128562612 + }, + "value": null, + "layer": "TEXT", + "id": "55606D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2186.2810584330987, + "min_y": 5228.667352505547, + "max_x": 2186.9259889544633, + "max_y": 5229.312283026911 + }, + "value": null, + "layer": "0", + "id": "556071" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2191.3028871946885, + "min_y": 5228.667385566922, + "max_x": 2191.947817716053, + "max_y": 5229.312316088287 + }, + "value": null, + "layer": "0", + "id": "556072" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2196.9101352108937, + "min_y": 5228.66733822631, + "max_x": 2197.5550657322583, + "max_y": 5229.312268747674 + }, + "value": null, + "layer": "0", + "id": "556073" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2191.3135654467205, + "min_y": 5223.011152760534, + "max_x": 2191.958495968085, + "max_y": 5223.656083281899 + }, + "value": null, + "layer": "0", + "id": "556074" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2249.058193454171, + "min_y": 5250.378604798508, + "max_x": 2254.77238545577, + "max_y": 5268.880588656051 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556076" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.935540232028, + "min_y": 5241.099971277098, + "max_x": 2267.03308279096, + "max_y": 5258.294149106472 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556078" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2261.661880039881, + "min_y": 5208.206114343568, + "max_x": 2267.893238312893, + "max_y": 5241.099971277089 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556079" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2279.195641621055, + "min_y": 5204.679327214839, + "max_x": 2285.533021439821, + "max_y": 5210.470371861506 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55607D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2281.2434662173114, + "min_y": 5206.22203849792, + "max_x": 2285.2116179086065, + "max_y": 5210.190190189215 + }, + "value": null, + "layer": "0", + "id": "55607E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.922062686097, + "min_y": 5204.679327214839, + "max_x": 2285.533021439821, + "max_y": 5204.679327214839 + }, + "value": null, + "layer": "0", + "id": "556081" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.053788043593, + "min_y": 5219.647613902487, + "max_x": 2304.748102147858, + "max_y": 5222.584444838311 + }, + "value": null, + "layer": "0", + "id": "556082" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2304.748102147858, + "min_y": 5214.542818621051, + "max_x": 2308.794685543265, + "max_y": 5221.398350155457 + }, + "value": null, + "layer": "0", + "id": "556083" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2309.223339267677, + "min_y": 5217.958752012595, + "max_x": 2315.41920396297, + "max_y": 5221.899367705687 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556085" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.41920396297, + "min_y": 5219.952102828434, + "max_x": 2319.631078423141, + "max_y": 5221.090227520943 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556086" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.631078423141, + "min_y": 5214.542818621044, + "max_x": 2364.463363540354, + "max_y": 5221.090227520943 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556087" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2313.5861218733216, + "min_y": 5220.982826660861, + "max_x": 2315.4192039629725, + "max_y": 5222.815908750513 + }, + "value": null, + "layer": "0", + "id": "55608D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2314.626788557575, + "min_y": 5213.973756274793, + "max_x": 2320.670577053962, + "max_y": 5215.111880967298 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556098" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2315.192056549162, + "min_y": 5214.1915455678045, + "max_x": 2315.8946026556405, + "max_y": 5214.894091674283 + }, + "value": null, + "layer": "0", + "id": "55609A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2307.578297758469, + "min_y": 5213.989706967849, + "max_x": 2314.626788557575, + "max_y": 5216.41423277589 + }, + "value": null, + "layer": "0", + "id": "55609B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.846351753707, + "min_y": 5222.580146307609, + "max_x": 2317.318284394058, + "max_y": 5231.141723949083 + }, + "value": null, + "layer": "0", + "id": "55609D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2282.7870125439836, + "min_y": 5207.765584824592, + "max_x": 2283.6680715819343, + "max_y": 5208.646643862543 + }, + "value": null, + "layer": "0", + "id": "55609F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2284.8793380698, + "min_y": 5237.435536603751, + "max_x": 2285.5818841762784, + "max_y": 5238.138082710229 + }, + "value": null, + "layer": "0", + "id": "5560A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5216.231997438991, + "max_x": 2287.385946185914, + "max_y": 5238.703350701812 + }, + "value": null, + "layer": "0", + "id": "5560A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2268.219835159914, + "min_y": 5207.096257328617, + "max_x": 2273.507968237844, + "max_y": 5208.775176689822 + }, + "value": null, + "layer": "0", + "id": "5560A5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2268.7851031515006, + "min_y": 5207.854841290328, + "max_x": 2269.4876492579792, + "max_y": 5208.557387396807 + }, + "value": null, + "layer": "0", + "id": "5560A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2272.675575476626, + "min_y": 5204.423961937514, + "max_x": 2276.177894411621, + "max_y": 5208.773359835539 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5560A9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2274.137926754144, + "min_y": 5204.9892299291005, + "max_x": 2274.8404728606224, + "max_y": 5205.691776035579 + }, + "value": null, + "layer": "0", + "id": "5560AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.937791157195, + "min_y": 5202.392849080446, + "max_x": 2275.037971086847, + "max_y": 5204.423961937514 + }, + "value": null, + "layer": "0", + "id": "5560AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2267.893238312893, + "min_y": 5207.637051997321, + "max_x": 2268.219835159914, + "max_y": 5208.775176689822 + }, + "value": null, + "layer": "0", + "id": "5560B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2301.637724814887, + "min_y": 5218.362651298697, + "max_x": 2303.620820869993, + "max_y": 5220.908506459861 + }, + "value": "MASS", + "layer": "0", + "id": "5560B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2300.145100753296, + "min_y": 5222.583410627879, + "max_x": 2305.862875573008, + "max_y": 5234.063850641266 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2308.794685543265, + "min_y": 5219.952102828434, + "max_x": 2309.223339267677, + "max_y": 5221.09022752094 + }, + "value": null, + "layer": "0", + "id": "5560BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2313.715983908235, + "min_y": 5218.800315495355, + "max_x": 2316.8221198505275, + "max_y": 5222.25079338686 + }, + "value": "15A", + "layer": "0", + "id": "5560CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2284.664083285639, + "min_y": 5210.470371861506, + "max_x": 2285.781916911356, + "max_y": 5210.770184603876 + }, + "value": null, + "layer": "0", + "id": "5560CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5261.182651178012, + "max_x": 2271.020180759637, + "max_y": 5310.935033826184 + }, + "value": null, + "layer": "0", + "id": "5560CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2260.195380565954, + "min_y": 5280.412415196766, + "max_x": 2271.020180759634, + "max_y": 5281.563139399105 + }, + "value": null, + "layer": "0", + "id": "5560CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2260.168753634895, + "min_y": 5264.160323611987, + "max_x": 2261.919862426123, + "max_y": 5267.28153684747 + }, + "value": null, + "layer": "0", + "id": "5560D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2260.658648905425, + "min_y": 5264.446634280929, + "max_x": 2261.919862426123, + "max_y": 5264.446634280929 + }, + "value": null, + "layer": "0", + "id": "5560D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2254.772304152051, + "min_y": 5253.235691507461, + "max_x": 2263.433534108106, + "max_y": 5260.354443090412 + }, + "value": null, + "layer": "0", + "id": "5560D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2249.253349789672, + "min_y": 5258.384783578087, + "max_x": 2253.9558051638833, + "max_y": 5265.405194599943 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "5560D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2250.239853084114, + "min_y": 5266.658914761597, + "max_x": 2253.3748233335887, + "max_y": 5267.965152365545 + }, + "value": "TICA", + "layer": "INSTRUMENT", + "id": "5560D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.527615571, + "min_y": 5238.703350701812, + "max_x": 2291.635448245456, + "max_y": 5268.933854490536 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5560D9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2274.358792225346, + "min_y": 5252.92568298903, + "max_x": 2278.277505037189, + "max_y": 5256.707350318098 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "5560DA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2273.675121609661, + "min_y": 5251.911225665911, + "max_x": 2279.3892950275667, + "max_y": 5257.625399083817 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560DB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2300.828771368981, + "min_y": 5223.526204139261, + "max_x": 2304.747484180824, + "max_y": 5227.173400491074 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "5560DC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2314.067109101685, + "min_y": 5225.99011789067, + "max_x": 2320.5571706110227, + "max_y": 5228.537605434498 + }, + "value": "I/P", + "layer": "0", + "id": "5560E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2317.364595283214, + "min_y": 5229.709872685287, + "max_x": 2319.7158229703196, + "max_y": 5231.016110289235 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "5560E2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2315.9547871834952, + "min_y": 5226.222598112255, + "max_x": 2321.668960601401, + "max_y": 5231.9367715301605 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5289.212370890362, + "max_x": 2274.017396908762, + "max_y": 5290.309913449295 + }, + "value": null, + "layer": "0", + "id": "5560E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2300.832372770786, + "min_y": 5229.292470734737, + "max_x": 2304.751085582629, + "max_y": 5232.974935501859 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "5560E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5231.206763932313, + "max_x": 2305.914971020383, + "max_y": 5234.11594608864 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5228.297581775977, + "max_x": 2305.914971020383, + "max_y": 5234.11594608864 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560EB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5228.297581775972, + "max_x": 2305.914971020383, + "max_y": 5231.2067639323 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2249.00611659049, + "min_y": 5266.075597394483, + "max_x": 2254.824480903144, + "max_y": 5268.984779550814 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2249.006116590495, + "min_y": 5263.166415238152, + "max_x": 2254.824480903144, + "max_y": 5268.984779550805 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560F3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2249.00611659049, + "min_y": 5263.166415238152, + "max_x": 2254.824480903144, + "max_y": 5266.075597394473 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5560F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2271.020180759634, + "min_y": 5273.526124116568, + "max_x": 2274.09896184658, + "max_y": 5277.195676923387 + }, + "value": null, + "layer": "0", + "id": "5560F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.09896184658, + "min_y": 5264.569329677136, + "max_x": 2276.905913700089, + "max_y": 5274.664248809068 + }, + "value": null, + "layer": "0", + "id": "5560F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2249.253331205979, + "min_y": 5251.311146556356, + "max_x": 2253.9557865801903, + "max_y": 5255.174729450703 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "556105" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2269.943769379384, + "min_y": 5261.228241567554, + "max_x": 2274.098961846588, + "max_y": 5263.620524481781 + }, + "value": null, + "layer": "0", + "id": "556106" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2263.799865923105, + "min_y": 5262.011395945638, + "max_x": 2268.651995676905, + "max_y": 5271.9685900004215 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556108" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5269.279088706941, + "max_x": 2266.794993146256, + "max_y": 5272.53385799201 + }, + "value": null, + "layer": "0", + "id": "556109" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5272.53385799201, + "max_x": 2266.794993146256, + "max_y": 5273.691012868265 + }, + "value": null, + "layer": "0", + "id": "55610A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5261.446127954052, + "max_x": 2266.794993146256, + "max_y": 5264.426958953141 + }, + "value": null, + "layer": "0", + "id": "55610B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5260.180553988198, + "max_x": 2266.794993146256, + "max_y": 5261.446127954052 + }, + "value": null, + "layer": "0", + "id": "55610C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2265.7414359248396, + "min_y": 5272.954687340753, + "max_x": 2266.71042567517, + "max_y": 5273.923677091083 + }, + "value": null, + "layer": "0", + "id": "556111" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2265.7414359248396, + "min_y": 5259.947889765379, + "max_x": 2266.71042567517, + "max_y": 5260.916879515709 + }, + "value": null, + "layer": "0", + "id": "556112" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5276.626614577134, + "max_x": 2275.228860087745, + "max_y": 5279.76672784532 + }, + "value": null, + "layer": "0", + "id": "556117" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5279.76672784532, + "max_x": 2277.135694933785, + "max_y": 5283.283881693535 + }, + "value": null, + "layer": "0", + "id": "556118" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2274.3288157550387, + "min_y": 5278.4989137472585, + "max_x": 2275.0313618615173, + "max_y": 5279.201459853737 + }, + "value": null, + "layer": "0", + "id": "55611A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2271.994823509907, + "min_y": 5284.214464094975, + "max_x": 2276.697278884118, + "max_y": 5287.873871556733 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "55611D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2271.823002099325, + "min_y": 5280.615755563877, + "max_x": 2277.877507450798, + "max_y": 5290.112415223069 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55611E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2272.337805390456, + "min_y": 5277.851612488562, + "max_x": 2277.0223722261, + "max_y": 5282.5361793242055 + }, + "value": null, + "layer": "0", + "id": "55611F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5276.077843297668, + "max_x": 2272.265879756931, + "max_y": 5277.175385856601 + }, + "value": null, + "layer": "0", + "id": "556121" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2272.8311477485177, + "min_y": 5273.743913409576, + "max_x": 2273.5336938549963, + "max_y": 5274.446459516054 + }, + "value": null, + "layer": "0", + "id": "556126" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.846351753707, + "min_y": 5225.656315934381, + "max_x": 2312.846351753707, + "max_y": 5227.216065455364 + }, + "value": null, + "layer": "0", + "id": "55614A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2276.6090022496896, + "min_y": 5207.988743570251, + "max_x": 2279.1956492781183, + "max_y": 5208.4198514083255 + }, + "value": null, + "layer": "0", + "id": "556161" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2276.1778944116227, + "min_y": 5207.988743570254, + "max_x": 2276.6090022496915, + "max_y": 5208.419851408323 + }, + "value": null, + "layer": "0", + "id": "556168" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2225.235464563925, + "min_y": 5295.062582764636, + "max_x": 2270.208429325536, + "max_y": 5296.327741301457 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556178" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.017396908762, + "min_y": 5289.192079823578, + "max_x": 2291.635448245453, + "max_y": 5290.330204516079 + }, + "value": null, + "layer": "0", + "id": "55618E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2268.832218161439, + "min_y": 5245.81833281891, + "max_x": 2279.052860424112, + "max_y": 5251.911225665909 + }, + "value": null, + "layer": "0", + "id": "556195" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5257.625399083817, + "max_x": 2276.905913700089, + "max_y": 5261.912926528843 + }, + "value": null, + "layer": "0", + "id": "556196" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2244.793695241873, + "min_y": 5246.750330931051, + "max_x": 2264.107825024652, + "max_y": 5247.497741694004 + }, + "value": null, + "layer": "0", + "id": "556198" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2258.040398974133, + "min_y": 5307.584261370625, + "max_x": 2261.919862426123, + "max_y": 5308.681803929559 + }, + "value": null, + "layer": "0", + "id": "5561A0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.498046966806, + "min_y": 5306.451082325118, + "max_x": 2257.2005023410175, + "max_y": 5310.0870923257735 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "5561A4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2252.326225556228, + "min_y": 5299.219024360585, + "max_x": 2258.040398974134, + "max_y": 5316.70429277695 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2245.520975748908, + "min_y": 5300.394160744566, + "max_x": 2258.9595519536288, + "max_y": 5305.398231855651 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5561A6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.498046966806, + "min_y": 5312.165255743018, + "max_x": 2257.2005023410175, + "max_y": 5315.788856486438 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "5561A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5313.847206067997, + "max_x": 2258.092494421509, + "max_y": 5316.756388224328 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561A9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5310.938023911671, + "max_x": 2258.092494421509, + "max_y": 5316.756388224324 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5310.938023911664, + "max_x": 2258.092494421509, + "max_y": 5313.847206067997 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561AD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2318.363041710433, + "min_y": 5258.268496083966, + "max_x": 2330.457760294682, + "max_y": 5259.388377434359 + }, + "value": "N2-10702-25A-F1A-n", + "layer": "LINENO", + "id": "5561B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2279.80097576135, + "min_y": 5284.459018077509, + "max_x": 2284.503431135561, + "max_y": 5287.888893289173 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5561B8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2279.629154350773, + "min_y": 5280.615755563877, + "max_x": 2291.1095966339567, + "max_y": 5288.998055111441 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561B9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2309.7886072592637, + "min_y": 5220.169892121446, + "max_x": 2310.4911533657423, + "max_y": 5220.872438227924 + }, + "value": null, + "layer": "0", + "id": "5561BB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2318.3632643250776, + "min_y": 5220.169892121447, + "max_x": 2319.065810431556, + "max_y": 5220.872438227926 + }, + "value": null, + "layer": "0", + "id": "5561BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2285.567244626629, + "min_y": 5284.459018077505, + "max_x": 2290.26970000084, + "max_y": 5288.082618820927 + }, + "value": "PIA", + "layer": "INSTRUMENT", + "id": "5561BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5286.140968402488, + "max_x": 2291.161692081333, + "max_y": 5289.050150558816 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5274.886003774958, + "max_x": 2291.635448245454, + "max_y": 5289.761142169826 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2281.531237526277, + "min_y": 5280.382213997611, + "max_x": 2291.161692081333, + "max_y": 5286.140968402481 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2335.372590908446, + "min_y": 5255.568991389466, + "max_x": 2344.885909875357, + "max_y": 5259.53609153611 + }, + "value": null, + "layer": "0", + "id": "5561C9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2338.075631692927, + "min_y": 5256.805467220535, + "max_x": 2339.8674418535566, + "max_y": 5258.298642354393 + }, + "value": "N2", + "layer": "0", + "id": "5561CA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.021197458115, + "min_y": 5255.568991389463, + "max_x": 2335.37259090845, + "max_y": 5259.536091536106 + }, + "value": null, + "layer": "TEXT", + "id": "5561CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2258.033640078657, + "min_y": 5310.935033826184, + "max_x": 2274.659454540145, + "max_y": 5384.450855790873 + }, + "value": null, + "layer": "0", + "id": "5561D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2268.070412448341, + "min_y": 5310.935033826182, + "max_x": 2274.680088808278, + "max_y": 5384.450855790873 + }, + "value": null, + "layer": "0", + "id": "5561D1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2279.395987427513, + "min_y": 5386.501273344826, + "max_x": 2284.098442801724, + "max_y": 5390.139356803922 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5561DF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2271.823002099325, + "min_y": 5382.652892415415, + "max_x": 2285.2553550271773, + "max_y": 5391.0451473347275 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2265.942536443457, + "min_y": 5387.344390280895, + "max_x": 2267.041991167699, + "max_y": 5402.796705903112 + }, + "value": null, + "layer": "0", + "id": "5561E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2264.304536308206, + "min_y": 5376.252536931454, + "max_x": 2268.338485633039, + "max_y": 5376.949845877756 + }, + "value": null, + "layer": "0", + "id": "5561E8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.451891024594, + "min_y": 5370.6370046825, + "max_x": 2257.154346398805, + "max_y": 5374.277047497997 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "5561F8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2252.3095112889973, + "min_y": 5362.94487998225, + "max_x": 2258.0336400786605, + "max_y": 5380.906966818466 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5561F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.451891024586, + "min_y": 5364.123175425599, + "max_x": 2257.1543463987973, + "max_y": 5367.74819650865 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5561FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.364724838195, + "min_y": 5350.378412542237, + "max_x": 2277.735176841913, + "max_y": 5353.539269628267 + }, + "value": null, + "layer": "0", + "id": "5561FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.451891024594, + "min_y": 5376.361133472155, + "max_x": 2257.154346398805, + "max_y": 5379.9887670304215 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "556202" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2311.003974039178, + "min_y": 5275.079634619061, + "max_x": 2316.675215543361, + "max_y": 5280.353612249242 + }, + "value": null, + "layer": "0", + "id": "556204" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2312.378186953529, + "min_y": 5276.625033651216, + "max_x": 2316.353252055103, + "max_y": 5280.6000987527905 + }, + "value": null, + "layer": "0", + "id": "556205" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.056223465276, + "min_y": 5275.079634619061, + "max_x": 2316.675215543361, + "max_y": 5275.079634619061 + }, + "value": null, + "layer": "0", + "id": "556208" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2298.058356236009, + "min_y": 5277.238428058149, + "max_x": 2302.445379087405, + "max_y": 5279.198220132152 + }, + "value": null, + "layer": "0", + "id": "55620B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2298.6246090512245, + "min_y": 5278.276281301972, + "max_x": 2299.328379150598, + "max_y": 5278.980051401345 + }, + "value": null, + "layer": "0", + "id": "55620C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.640567105532, + "min_y": 5278.074091053902, + "max_x": 2298.058356236009, + "max_y": 5293.807939714509 + }, + "value": null, + "layer": "0", + "id": "55620D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.445379087405, + "min_y": 5274.823824438142, + "max_x": 2306.640674328317, + "max_y": 5279.286428419003 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556210" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2304.0008752273466, + "min_y": 5275.390077253356, + "max_x": 2304.70464532672, + "max_y": 5276.093847352729 + }, + "value": null, + "layer": "0", + "id": "556211" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.033175162208, + "min_y": 5272.857533351441, + "max_x": 2307.374377248503, + "max_y": 5274.823824438142 + }, + "value": null, + "layer": "0", + "id": "556213" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2316.350991420431, + "min_y": 5298.301279614651, + "max_x": 2321.137042779239, + "max_y": 5307.253532651969 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556214" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.558757764475, + "min_y": 5371.265217630242, + "max_x": 2303.362190995435, + "max_y": 5376.949726171208 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556215" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2283.973474821981, + "min_y": 5371.281196112982, + "max_x": 2293.558757764475, + "max_y": 5376.949845877717 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556216" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2294.1250105796876, + "min_y": 5371.483386361051, + "max_x": 2294.828780679061, + "max_y": 5372.187156460424 + }, + "value": null, + "layer": "0", + "id": "556218" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2275.088855075487, + "min_y": 5376.395770579964, + "max_x": 2287.793265848455, + "max_y": 5379.644185760187 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55621B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2310.778263355476, + "min_y": 5376.071132643961, + "max_x": 2320.163620307561, + "max_y": 5377.824919072168 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55621E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2320.163620307561, + "min_y": 5376.39829849594, + "max_x": 2356.219641123273, + "max_y": 5377.497753220183 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55621F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2321.137042779239, + "min_y": 5305.656196817494, + "max_x": 2326.227022290647, + "max_y": 5308.269760470679 + }, + "value": null, + "layer": "0", + "id": "556221" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2334.881375634222, + "min_y": 5304.94785896364, + "max_x": 2341.165309650354, + "max_y": 5307.908460694908 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556222" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2322.317619215624, + "min_y": 5309.106925185141, + "max_x": 2326.2363320274667, + "max_y": 5312.837164372606 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "556225" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2339.329033920554, + "min_y": 5306.990322830008, + "max_x": 2341.165309650354, + "max_y": 5308.826598559808 + }, + "value": null, + "layer": "0", + "id": "556226" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2340.247171785454, + "min_y": 5305.957803245482, + "max_x": 2344.087050472124, + "max_y": 5313.564059144756 + }, + "value": null, + "layer": "0", + "id": "55622B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2338.587974955468, + "min_y": 5310.014345878101, + "max_x": 2341.906368615446, + "max_y": 5313.234421324569 + }, + "value": null, + "layer": "0", + "id": "556232" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2339.81085913655, + "min_y": 5312.006337884245, + "max_x": 2341.268383007127, + "max_y": 5312.816073367899 + }, + "value": "I/P", + "layer": "0", + "id": "556234" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2338.493163065425, + "min_y": 5300.053053710718, + "max_x": 2346.035881147559, + "max_y": 5306.516104783665 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556235" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2333.20499874421, + "min_y": 5300.053053710718, + "max_x": 2338.493163065425, + "max_y": 5306.529567031826 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556236" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2339.0594158806402, + "min_y": 5300.271222441526, + "max_x": 2339.7631859800135, + "max_y": 5300.9749925409 + }, + "value": null, + "layer": "0", + "id": "556238" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2344.058692958844, + "min_y": 5313.782071045857, + "max_x": 2347.977405770687, + "max_y": 5317.397464298107 + }, + "value": "FCV", + "layer": "INSTRUMENT", + "id": "55623A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2318.435376307041, + "min_y": 5314.935697428552, + "max_x": 2326.2363320274767, + "max_y": 5319.975413685922 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "55623B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2321.6289709140615, + "min_y": 5308.26966818042, + "max_x": 2327.3530997037196, + "max_y": 5319.770111969072 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55623C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5313.993796970089, + "max_x": 2327.405285913044, + "max_y": 5319.822298178399 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55623D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2313.9244224841104, + "min_y": 5278.1712691817975, + "max_x": 2314.8070165245217, + "max_y": 5279.053863222209 + }, + "value": null, + "layer": "0", + "id": "55623F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5343.896639398451, + "max_x": 2257.1576773046954, + "max_y": 5347.536682213952 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "556244" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5336.660169847911, + "max_x": 2258.0336400786605, + "max_y": 5354.166601534416 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556245" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5349.62076818811, + "max_x": 2257.1576773046954, + "max_y": 5353.248401746364 + }, + "value": "TIA", + "layer": "INSTRUMENT", + "id": "556246" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2332.550945923403, + "min_y": 5313.234421324569, + "max_x": 2341.906368615446, + "max_y": 5316.8910568113 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "556248" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5378.044902423638, + "max_x": 2258.085826287988, + "max_y": 5380.959153027798 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556249" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.309511289006, + "min_y": 5375.130651819478, + "max_x": 2258.085826287988, + "max_y": 5380.959153027793 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55624C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5375.130651819475, + "max_x": 2258.085826287988, + "max_y": 5378.044902423634 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55624D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5351.304537139588, + "max_x": 2258.085826287988, + "max_y": 5354.218787743743 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556251" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.309511289006, + "min_y": 5348.39028653543, + "max_x": 2258.085826287988, + "max_y": 5354.218787743743 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556254" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5348.390286535426, + "max_x": 2258.085826287988, + "max_y": 5351.304537139581 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556255" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2266.477948990896, + "min_y": 5398.251808311234, + "max_x": 2373.390718475025, + "max_y": 5406.542327305158 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556259" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2318.9568294683, + "min_y": 5318.652734340158, + "max_x": 2327.405285913044, + "max_y": 5320.998253799337 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55625A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5313.993796970081, + "max_x": 2327.405285913044, + "max_y": 5313.993796970089 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55625E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2268.070412448341, + "min_y": 5350.604842788892, + "max_x": 2268.070412448341, + "max_y": 5354.5366830629 + }, + "value": null, + "layer": "0", + "id": "556264" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2306.640674328317, + "min_y": 5278.040692401858, + "max_x": 2307.98096923724, + "max_y": 5279.180799962848 + }, + "value": null, + "layer": "0", + "id": "556268" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2287.793265848455, + "min_y": 5376.379792097225, + "max_x": 2296.920550772818, + "max_y": 5379.667030912082 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55626C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.792991027183, + "min_y": 5376.071132643961, + "max_x": 2310.778263355476, + "max_y": 5377.824919072168 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55626D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2293.646181733098, + "min_y": 5377.41231168175, + "max_x": 2295.482457462898, + "max_y": 5379.24858741155 + }, + "value": null, + "layer": "0", + "id": "55626E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2294.564319597998, + "min_y": 5375.368137809534, + "max_x": 2300.465825175201, + "max_y": 5382.093943221825 + }, + "value": null, + "layer": "0", + "id": "556273" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2292.905122768009, + "min_y": 5380.436334729841, + "max_x": 2296.22351642799, + "max_y": 5383.656410176311 + }, + "value": null, + "layer": "0", + "id": "55627A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2294.128006949093, + "min_y": 5380.342265820218, + "max_x": 2300.470483541746, + "max_y": 5383.827089332643 + }, + "value": "I/P", + "layer": "0", + "id": "55627C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2294.212434548311, + "min_y": 5376.597960828033, + "max_x": 2302.0630139417717, + "max_y": 5384.750514071102 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55627E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2292.905122768009, + "min_y": 5383.656410176311, + "max_x": 2309.608682270233, + "max_y": 5387.242034703078 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "556280" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2310.349516781116, + "min_y": 5379.776372094453, + "max_x": 2314.268229592959, + "max_y": 5383.333157286763 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "556286" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2309.6608684795574, + "min_y": 5378.736334682392, + "max_x": 2315.3849972692124, + "max_y": 5390.236778471035 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556287" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2310.349516781107, + "min_y": 5385.500500884117, + "max_x": 2314.26822959295, + "max_y": 5389.144740701058 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "556289" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5384.460463472048, + "max_x": 2315.43718347854, + "max_y": 5387.374714076202 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55628B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2309.660868479557, + "min_y": 5384.460463472056, + "max_x": 2315.43718347854, + "max_y": 5390.288964680365 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55628E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2273.493269609511, + "min_y": 5354.448240606615, + "max_x": 2277.1208788702133, + "max_y": 5357.244686081302 + }, + "value": "LG", + "layer": "0", + "id": "55628F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2272.7109333697504, + "min_y": 5351.853529143378, + "max_x": 2277.7726392081236, + "max_y": 5359.550308309936 + }, + "value": null, + "layer": "0", + "id": "556290" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.466959521558, + "min_y": 5357.955027132461, + "max_x": 2275.564760456027, + "max_y": 5359.768477040743 + }, + "value": null, + "layer": "0", + "id": "556291" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2319.905816202158, + "min_y": 5304.299622996417, + "max_x": 2325.260124508626, + "max_y": 5308.632826255507 + }, + "value": "MASS", + "layer": "0", + "id": "55629A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2311.206548752361, + "min_y": 5374.842513108749, + "max_x": 2313.504005586035, + "max_y": 5377.334221958981 + }, + "value": "MASS", + "layer": "0", + "id": "55629D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.522932874387, + "min_y": 5377.824919072168, + "max_x": 2312.522932874397, + "max_y": 5378.736334682392 + }, + "value": null, + "layer": "0", + "id": "55629E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2331.827588430652, + "min_y": 5305.95951325133, + "max_x": 2334.881375634222, + "max_y": 5307.09962081232 + }, + "value": null, + "layer": "0", + "id": "5562A5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2344.278439093694, + "min_y": 5305.95962326513, + "max_x": 2347.857565903403, + "max_y": 5307.09973082612 + }, + "value": null, + "layer": "0", + "id": "5562AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2300.465825175201, + "min_y": 5376.395770579967, + "max_x": 2300.792991027183, + "max_y": 5377.507561214773 + }, + "value": null, + "layer": "0", + "id": "5562B4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2318.893597392975, + "min_y": 5376.596140808377, + "max_x": 2319.5973674923484, + "max_y": 5377.29991090775 + }, + "value": null, + "layer": "0", + "id": "5562B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.706450972266, + "min_y": 5280.353612249246, + "max_x": 2317.000053137942, + "max_y": 5281.623604310652 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5562BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.422629961889, + "min_y": 5288.309459083789, + "max_x": 2320.082389313431, + "max_y": 5297.974113762673 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5562BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.131192510757, + "min_y": 5372.766965458902, + "max_x": 2273.131192510757, + "max_y": 5373.866420183144 + }, + "value": null, + "layer": "0", + "id": "5562C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.131192510757, + "min_y": 5346.801291006656, + "max_x": 2273.131192510757, + "max_y": 5347.900745730899 + }, + "value": null, + "layer": "0", + "id": "5562C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5278.621167336963, + "max_x": 2294.190294467545, + "max_y": 5313.382845391038 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5562CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2290.702004108057, + "min_y": 5316.327867603983, + "max_x": 2332.902821519661, + "max_y": 5336.055124632828 + }, + "value": null, + "layer": "0", + "id": "5562D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2288.671639615108, + "min_y": 5316.283611729857, + "max_x": 2293.186662783577, + "max_y": 5336.099380506957 + }, + "value": null, + "layer": "0", + "id": "5562D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.505121407538, + "min_y": 5331.26817633086, + "max_x": 2302.50512140754, + "max_y": 5333.21879376316 + }, + "value": null, + "layer": "0", + "id": "5562E3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2300.331705314272, + "min_y": 5334.39708920651, + "max_x": 2304.2504181261147, + "max_y": 5337.815616367528 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5562E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2299.6430570127127, + "min_y": 5333.218793763161, + "max_x": 2310.7864503082255, + "max_y": 5340.63234438471 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5562E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2285.677728194608, + "min_y": 5403.396475208605, + "max_x": 2299.7882332095646, + "max_y": 5404.516356558998 + }, + "value": "P-10228-500A-F2A-H100", + "layer": "LINENO", + "id": "5562E9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2319.687916167948, + "min_y": 5377.956678039446, + "max_x": 2336.1474958913277, + "max_y": 5379.952180610392 + }, + "value": "P-10233-25A-F2A-n", + "layer": "LINENO", + "id": "5562EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2292.661234475288, + "min_y": 5309.668481725896, + "max_x": 2308.773574541295, + "max_y": 5313.735471102139 + }, + "value": "E-10217", + "layer": "0", + "id": "5562F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2326.227022290647, + "min_y": 5305.656196817494, + "max_x": 2329.132511630165, + "max_y": 5307.409983245698 + }, + "value": null, + "layer": "0", + "id": "556323" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2308.412828161861, + "min_y": 5278.3948167200415, + "max_x": 2311.0039817095794, + "max_y": 5278.826675644665 + }, + "value": null, + "layer": "0", + "id": "556358" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2307.98096923724, + "min_y": 5278.394816720044, + "max_x": 2308.4128281618578, + "max_y": 5278.826675644662 + }, + "value": null, + "layer": "0", + "id": "55635F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2289.673961045842, + "min_y": 5316.314011698184, + "max_x": 2297.526625373975, + "max_y": 5318.942183161097 + }, + "value": null, + "layer": "0", + "id": "556360" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2289.87030560917, + "min_y": 5316.804440388424, + "max_x": 2291.476260470002, + "max_y": 5316.804440388424 + }, + "value": null, + "layer": "0", + "id": "556362" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2285.846163539976, + "min_y": 5316.863570435684, + "max_x": 2287.4139970721644, + "max_y": 5318.170098379174 + }, + "value": "SG", + "layer": "0", + "id": "556365" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2284.6329328832658, + "min_y": 5315.245096922317, + "max_x": 2289.2980745211266, + "max_y": 5319.910238560178 + }, + "value": null, + "layer": "0", + "id": "556366" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2297.5266253739755, + "min_y": 5314.994527529252, + "max_x": 2308.9748829532855, + "max_y": 5320.718656318908 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55636D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2298.394273312927, + "min_y": 5316.192925150503, + "max_x": 2302.31298612477, + "max_y": 5319.568825219949 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "55636E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5265.287753325748, + "max_x": 2356.653237539366, + "max_y": 5306.529677045626 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556373" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2347.857565903403, + "min_y": 5305.943831629188, + "max_x": 2353.01147557703, + "max_y": 5307.256686789727 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556374" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2322.652818785995, + "min_y": 5331.26817633086, + "max_x": 2327.911401655094, + "max_y": 5336.606802340472 + }, + "value": null, + "layer": "WATER", + "id": "55637F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5277.354011507731, + "max_x": 2356.653237539369, + "max_y": 5278.363300296018 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556381" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2288.671639615108, + "min_y": 5323.300912723277, + "max_x": 2289.206171177919, + "max_y": 5324.996410895982 + }, + "value": null, + "layer": "0", + "id": "556388" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2288.908861105616, + "min_y": 5324.699100823683, + "max_x": 2289.091707554202, + "max_y": 5324.881947272269 + }, + "value": null, + "layer": "0", + "id": "556391" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2293.189704369114, + "min_y": 5290.608271569009, + "max_x": 2304.612494143127, + "max_y": 5291.728152919402 + }, + "value": "P-10218-40A-F2A-n", + "layer": "LINENO", + "id": "556397" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5274.367661240018, + "max_x": 2492.814046747888, + "max_y": 5281.349650563734 + }, + "value": null, + "layer": "0", + "id": "556399" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5277.533203535533, + "max_x": 2356.1293722792166, + "max_y": 5278.179257670521 + }, + "value": null, + "layer": "0", + "id": "55639A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5274.546853267818, + "max_x": 2356.1293722792166, + "max_y": 5275.192907402806 + }, + "value": null, + "layer": "0", + "id": "5563A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2332.405978152623, + "min_y": 5323.891592500684, + "max_x": 2338.384387495016, + "max_y": 5336.606802340472 + }, + "value": null, + "layer": "WATER", + "id": "5563AA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5313.382845391038, + "max_x": 2294.190294467545, + "max_y": 5314.879992857958 + }, + "value": null, + "layer": "0", + "id": "5563AB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2286.5232429338694, + "min_y": 5376.59796082803, + "max_x": 2287.2270130332427, + "max_y": 5377.301730927404 + }, + "value": null, + "layer": "0", + "id": "5563AC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2335.4476284494344, + "min_y": 5304.428355813163, + "max_x": 2337.9355730008024, + "max_y": 5306.881452081515 + }, + "value": null, + "layer": "0", + "id": "5563AF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2339.8952867357675, + "min_y": 5306.17597197629, + "max_x": 2340.599056835141, + "max_y": 5306.879742075664 + }, + "value": null, + "layer": "0", + "id": "5563B0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2343.6246476252463, + "min_y": 5306.177791995934, + "max_x": 2344.3284177246196, + "max_y": 5306.881562095307 + }, + "value": null, + "layer": "0", + "id": "5563B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2320.389499237744, + "min_y": 5403.396475208605, + "max_x": 2332.484217821993, + "max_y": 5404.516356558998 + }, + "value": "P-10228-500A-F2A-n", + "layer": "LINENO", + "id": "5563B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2303.93940246519, + "min_y": 5316.172822972601, + "max_x": 2307.858115277033, + "max_y": 5319.797844055652 + }, + "value": "TI", + "layer": "INSTRUMENT", + "id": "5563B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5317.85659192408, + "max_x": 2309.027069162612, + "max_y": 5320.770842528239 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5563B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5314.942341319929, + "max_x": 2309.027069162612, + "max_y": 5320.770842528236 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5563BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5314.942341319921, + "max_x": 2309.027069162612, + "max_y": 5317.85659192408 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5563BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2321.163667079297, + "min_y": 5336.897110648934, + "max_x": 2328.905668595787, + "max_y": 5371.875434378438 + }, + "value": null, + "layer": "TEXT", + "id": "5563C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2328.905668595784, + "min_y": 5359.607099668715, + "max_x": 2328.905668595784, + "max_y": 5370.386282671749 + }, + "value": null, + "layer": "TEXT", + "id": "5563C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2331.410096230346, + "min_y": 5360.7603962737, + "max_x": 2334.388399643741, + "max_y": 5371.539579276728 + }, + "value": null, + "layer": "0", + "id": "5563C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2331.410096230349, + "min_y": 5336.897110648934, + "max_x": 2334.388399643744, + "max_y": 5360.7603962737 + }, + "value": null, + "layer": "TEXT", + "id": "5563CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2355.108942028961, + "min_y": 5332.2848003018, + "max_x": 2358.767127142277, + "max_y": 5336.938112455887 + }, + "value": null, + "layer": "0", + "id": "5563CF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2352.8538246172143, + "min_y": 5334.038259013271, + "max_x": 2357.3640594407075, + "max_y": 5338.548493836765 + }, + "value": null, + "layer": "0", + "id": "5563D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.488514641273, + "min_y": 5332.2848003018, + "max_x": 2357.729369416647, + "max_y": 5338.487617613632 + }, + "value": null, + "layer": "0", + "id": "5563D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.209088586339, + "min_y": 5338.548493836766, + "max_x": 2371.24372160549, + "max_y": 5348.941262213505 + }, + "value": null, + "layer": "0", + "id": "5563D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.197480592998, + "min_y": 5345.114749510652, + "max_x": 2353.510335749552, + "max_y": 5347.391908278474 + }, + "value": null, + "layer": "0", + "id": "5563D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2341.214054171921, + "min_y": 5323.400261273126, + "max_x": 2369.127091140335, + "max_y": 5374.263562901479 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5563D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2371.641609427795, + "min_y": 5323.973640238008, + "max_x": 2378.98002429002, + "max_y": 5325.963541892281 + }, + "value": null, + "layer": "0", + "id": "5563D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2378.98002429002, + "min_y": 5317.883268384179, + "max_x": 2383.17710830426, + "max_y": 5325.963541892281 + }, + "value": null, + "layer": "0", + "id": "5563DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2383.548321046938, + "min_y": 5323.217684476952, + "max_x": 2390.741361902263, + "max_y": 5326.534495297384 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5563DC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2368.547596412286, + "min_y": 5329.1496364498, + "max_x": 2378.6841295030918, + "max_y": 5335.454838724828 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "5563DE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2374.3056005637927, + "min_y": 5328.174266558158, + "max_x": 2379.695333376083, + "max_y": 5338.857216898707 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5563DF" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2388.6578652725334, + "min_y": 5325.49274698252, + "max_x": 2390.7413619022623, + "max_y": 5327.576243612248 + }, + "value": null, + "layer": "0", + "id": "5563E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2390.228927195151, + "min_y": 5324.321217544114, + "max_x": 2393.40794249048, + "max_y": 5328.05102286731 + }, + "value": null, + "layer": "0", + "id": "5563E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2387.817036288554, + "min_y": 5327.576243612249, + "max_x": 2391.582190886239, + "max_y": 5336.162350492564 + }, + "value": null, + "layer": "0", + "id": "5563EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2389.204559430363, + "min_y": 5328.346163314589, + "max_x": 2395.787148271891, + "max_y": 5332.215254493601 + }, + "value": "I/P", + "layer": "0", + "id": "5563EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2385.251460447225, + "min_y": 5317.236467301332, + "max_x": 2396.132245426874, + "max_y": 5324.968994762789 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5563EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2381.888942471347, + "min_y": 5317.254596994167, + "max_x": 2385.251460447225, + "max_y": 5318.516069878109 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5563F0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2385.8939488344117, + "min_y": 5317.484008456493, + "max_x": 2386.692468689764, + "max_y": 5318.282528311845 + }, + "value": null, + "layer": "0", + "id": "5563F2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2391.395242789188, + "min_y": 5327.458604910609, + "max_x": 2396.688460317444, + "max_y": 5332.751822438864 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5563F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2359.583554055621, + "min_y": 5351.895844453071, + "max_x": 2369.034875728391, + "max_y": 5375.818125382775 + }, + "value": null, + "layer": "0", + "id": "5563F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2376.145949238689, + "min_y": 5349.81082422254, + "max_x": 2379.356156929691, + "max_y": 5378.870862341528 + }, + "value": null, + "layer": "0", + "id": "5563F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5377.358420795304, + "max_x": 2375.991700442785, + "max_y": 5395.687787706645 + }, + "value": null, + "layer": "0", + "id": "5563FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5395.687787706645, + "max_x": 2375.991700442785, + "max_y": 5402.7967059031 + }, + "value": null, + "layer": "0", + "id": "5563FE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.28266380599, + "min_y": 5377.358420795304, + "max_x": 2375.991700442785, + "max_y": 5395.687787706645 + }, + "value": null, + "layer": "0", + "id": "5563FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2375.174609136316, + "min_y": 5394.189726827196, + "max_x": 2376.78420484522, + "max_y": 5399.167532116558 + }, + "value": null, + "layer": "0", + "id": "556401" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.244424157286, + "min_y": 5371.420371344607, + "max_x": 2365.66976637261, + "max_y": 5373.276760268882 + }, + "value": null, + "layer": "0", + "id": "556407" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5361.71378907375, + "max_x": 2365.66976637261, + "max_y": 5366.127153816351 + }, + "value": null, + "layer": "0", + "id": "55640B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2359.2334890255825, + "min_y": 5364.392501159669, + "max_x": 2366.411578889625, + "max_y": 5373.038282523196 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556411" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2372.766980390121, + "min_y": 5336.293376425011, + "max_x": 2374.014456559044, + "max_y": 5350.188608800596 + }, + "value": null, + "layer": "0", + "id": "556413" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2376.826218956974, + "min_y": 5345.197213832788, + "max_x": 2382.11943648523, + "max_y": 5350.490431361043 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556416" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2372.345720523996, + "min_y": 5336.601155990003, + "max_x": 2383.768510298009, + "max_y": 5338.343179953559 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "556419" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5336.162350492561, + "max_x": 2379.695333376039, + "max_y": 5340.308631347412 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55641A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.305600563793, + "min_y": 5333.46748408642, + "max_x": 2379.695333376084, + "max_y": 5338.857216898691 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55641D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5333.467484086412, + "max_x": 2379.695333376039, + "max_y": 5336.162350492549 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55641E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2377.155417587893, + "min_y": 5394.189726827196, + "max_x": 2392.070527671775, + "max_y": 5396.931864319203 + }, + "value": null, + "layer": "0", + "id": "556422" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.326728667947, + "min_y": 5360.880333460538, + "max_x": 2423.802730326868, + "max_y": 5378.870862341549 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556426" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2426.181295863321, + "min_y": 5355.719589879167, + "max_x": 2433.938256605193, + "max_y": 5361.513134954478 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556428" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5355.719589879167, + "max_x": 2423.802730326868, + "max_y": 5367.062772761368 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556429" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5367.062772761368, + "max_x": 2422.676175123893, + "max_y": 5369.501708636915 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55642A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2422.0540079562825, + "min_y": 5364.979276131645, + "max_x": 2424.6606620247226, + "max_y": 5370.261284795381 + }, + "value": null, + "layer": "0", + "id": "55642B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.561001502545, + "min_y": 5369.137863852612, + "max_x": 2430.479714314388, + "max_y": 5372.971362951015 + }, + "value": "PCV", + "layer": "INSTRUMENT", + "id": "556435" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2425.4841967708503, + "min_y": 5367.609841626135, + "max_x": 2431.9846384207754, + "max_y": 5374.11028327606 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556436" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2444.163837985316, + "min_y": 5356.875887441261, + "max_x": 2449.709068766654, + "max_y": 5362.569128747717 + }, + "value": null, + "layer": "0", + "id": "556437" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2445.5086675608354, + "min_y": 5358.629346152727, + "max_x": 2450.0189023843286, + "max_y": 5363.139580976221 + }, + "value": null, + "layer": "0", + "id": "556438" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2445.143357584892, + "min_y": 5356.875887441261, + "max_x": 2450.384212360271, + "max_y": 5363.419037434514 + }, + "value": null, + "layer": "0", + "id": "55643A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2354.6082324463064, + "min_y": 5335.792666842363, + "max_x": 2355.6096516116154, + "max_y": 5336.794086007673 + }, + "value": null, + "layer": "0", + "id": "55643D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2375.174609137087, + "min_y": 5382.681453844488, + "max_x": 2395.969356224434, + "max_y": 5383.928930013418 + }, + "value": null, + "layer": "0", + "id": "55643F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2388.686618375981, + "min_y": 5394.813464911657, + "max_x": 2388.686618375981, + "max_y": 5397.02669726023 + }, + "value": null, + "layer": "0", + "id": "556441" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2366.336055677652, + "min_y": 5334.716535320083, + "max_x": 2371.31371081794, + "max_y": 5336.940177507848 + }, + "value": null, + "layer": "0", + "id": "556448" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2369.872702575397, + "min_y": 5335.894116497335, + "max_x": 2370.6712224307494, + "max_y": 5336.692636352687 + }, + "value": null, + "layer": "0", + "id": "556449" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2371.31371081794, + "min_y": 5335.664705035005, + "max_x": 2373.390718474588, + "max_y": 5336.926177918945 + }, + "value": null, + "layer": "0", + "id": "55644A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2362.568336924212, + "min_y": 5331.383564802528, + "max_x": 2366.336055677652, + "max_y": 5336.947738951322 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55644D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2364.8308554362907, + "min_y": 5332.0260531897175, + "max_x": 2365.629375291643, + "max_y": 5332.82457304507 + }, + "value": null, + "layer": "0", + "id": "55644E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5329.801024449762, + "max_x": 2365.853853448426, + "max_y": 5331.383564802528 + }, + "value": null, + "layer": "0", + "id": "556450" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2362.197124181536, + "min_y": 5335.642445238244, + "max_x": 2362.568336924212, + "max_y": 5336.936047403921 + }, + "value": null, + "layer": "0", + "id": "556453" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2433.938256605193, + "min_y": 5360.2335323777, + "max_x": 2438.960847151244, + "max_y": 5361.527134543378 + }, + "value": null, + "layer": "0", + "id": "556456" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2432.497248362653, + "min_y": 5360.481073532866, + "max_x": 2433.2957682180054, + "max_y": 5361.279593388218 + }, + "value": null, + "layer": "0", + "id": "556457" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2377.291190795999, + "min_y": 5346.085524361069, + "max_x": 2381.2099036078416, + "max_y": 5349.560500585233 + }, + "value": "10213", + "layer": "INSTRUMENT", + "id": "55645A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2383.605863522604, + "min_y": 5365.966689110567, + "max_x": 2388.89908105086, + "max_y": 5371.259906638822 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55645B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5371.620432690082, + "max_x": 2386.252472286732, + "max_y": 5373.791362900524 + }, + "value": null, + "layer": "0", + "id": "55645C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2378.708751469982, + "min_y": 5370.04363862292, + "max_x": 2384.0332698147445, + "max_y": 5375.368156967684 + }, + "value": null, + "layer": "0", + "id": "55645F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5372.082159710842, + "max_x": 2379.843368383654, + "max_y": 5373.329635879761 + }, + "value": null, + "layer": "0", + "id": "556463" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5362.565350542221, + "max_x": 2384.30728512334, + "max_y": 5364.736280752666 + }, + "value": null, + "layer": "0", + "id": "556468" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2386.252472286732, + "min_y": 5371.259906638822, + "max_x": 2386.252472286732, + "max_y": 5372.705897795302 + }, + "value": null, + "layer": "0", + "id": "556470" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2384.30728512334, + "min_y": 5357.358145724126, + "max_x": 2387.445468488001, + "max_y": 5366.250820781871 + }, + "value": null, + "layer": "0", + "id": "556471" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2378.708751469982, + "min_y": 5360.988556475064, + "max_x": 2384.0332698147445, + "max_y": 5366.313074819827 + }, + "value": null, + "layer": "0", + "id": "556474" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2375.506855832361, + "min_y": 5322.331277219382, + "max_x": 2377.7608596058794, + "max_y": 5325.406781398773 + }, + "value": "MASS", + "layer": "0", + "id": "55647B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2377.000466969928, + "min_y": 5325.963541892281, + "max_x": 2377.000466969928, + "max_y": 5328.174266558153 + }, + "value": null, + "layer": "0", + "id": "55647C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2394.089598682368, + "min_y": 5324.339696463262, + "max_x": 2402.886168912851, + "max_y": 5325.601169347204 + }, + "value": null, + "layer": "0", + "id": "55647E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2383.17710830426, + "min_y": 5324.338258320809, + "max_x": 2383.548321046938, + "max_y": 5325.599731204751 + }, + "value": null, + "layer": "0", + "id": "556481" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2370.899796910785, + "min_y": 5324.569331137467, + "max_x": 2371.6983167661374, + "max_y": 5325.3678509928195 + }, + "value": null, + "layer": "0", + "id": "556484" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2369.071560384047, + "min_y": 5324.344852980682, + "max_x": 2370.956504249122, + "max_y": 5325.592329149607 + }, + "value": null, + "layer": "0", + "id": "556485" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2422.773818233254, + "min_y": 5346.726545622751, + "max_x": 2427.210207956854, + "max_y": 5354.913121288421 + }, + "value": null, + "layer": "0", + "id": "556487" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2423.170254189547, + "min_y": 5349.65330603307, + "max_x": 2423.170254189547, + "max_y": 5354.913121288421 + }, + "value": null, + "layer": "0", + "id": "556488" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5360.880333460538, + "max_x": 2413.506409444276, + "max_y": 5364.870733560501 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556492" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2411.79720625459, + "min_y": 5364.870733560501, + "max_x": 2415.527036057442, + "max_y": 5368.868360415493 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556493" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2412.4834114321357, + "min_y": 5363.429725317967, + "max_x": 2413.281931287488, + "max_y": 5364.228245173319 + }, + "value": null, + "layer": "0", + "id": "556495" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2410.2204121874306, + "min_y": 5362.693997224536, + "max_x": 2415.544930532193, + "max_y": 5368.0185155693 + }, + "value": null, + "layer": "0", + "id": "556498" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.303473923716, + "min_y": 5378.870862341539, + "max_x": 2418.431965278547, + "max_y": 5386.77641430354 + }, + "value": null, + "layer": "0", + "id": "5564A5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2384.1908094341256, + "min_y": 5324.567669783138, + "max_x": 2384.989329289478, + "max_y": 5325.36618963849 + }, + "value": null, + "layer": "0", + "id": "5564A7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2393.351235152141, + "min_y": 5324.571172977565, + "max_x": 2394.1497550074932, + "max_y": 5325.369692832917 + }, + "value": null, + "layer": "0", + "id": "5564A8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2380.4858567708416, + "min_y": 5372.306637867626, + "max_x": 2381.284376626194, + "max_y": 5373.105157722978 + }, + "value": null, + "layer": "0", + "id": "5564B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2380.4858567708416, + "min_y": 5363.251555719769, + "max_x": 2381.284376626194, + "max_y": 5364.050075575122 + }, + "value": null, + "layer": "0", + "id": "5564B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5360.321115192231, + "max_x": 2439.843298243859, + "max_y": 5365.034249377592 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5564B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.602107221645, + "min_y": 5365.034249377592, + "max_x": 2439.371316922116, + "max_y": 5370.371769045309 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5564B8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2440.5759949297226, + "min_y": 5366.375084115479, + "max_x": 2441.374514785075, + "max_y": 5367.173603970831 + }, + "value": null, + "layer": "0", + "id": "5564BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.933506542532, + "min_y": 5366.150605958691, + "max_x": 2442.569331751886, + "max_y": 5367.398082127614 + }, + "value": null, + "layer": "0", + "id": "5564BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2346.669412177496, + "min_y": 5323.229952165307, + "max_x": 2358.0922019515087, + "max_y": 5324.3498335157 + }, + "value": "P-10232-25A-F1A-n", + "layer": "LINENO", + "id": "5564BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.933506542532, + "min_y": 5366.150605958691, + "max_x": 2439.933506542532, + "max_y": 5367.398082127614 + }, + "value": null, + "layer": "0", + "id": "5564BE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2358.7671184391966, + "min_y": 5336.044245910914, + "max_x": 2361.7071233612064, + "max_y": 5336.534246731252 + }, + "value": null, + "layer": "0", + "id": "55652E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2361.7071233612046, + "min_y": 5336.044245910916, + "max_x": 2362.1971241815377, + "max_y": 5336.534246731249 + }, + "value": null, + "layer": "0", + "id": "556535" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2384.079056193463, + "min_y": 5366.7973946479, + "max_x": 2387.997769005306, + "max_y": 5370.397688924618 + }, + "value": "10213", + "layer": "INSTRUMENT", + "id": "55654E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5320.362630860945, + "max_x": 2387.573357824832, + "max_y": 5322.687207583047 + }, + "value": null, + "layer": "0", + "id": "556555" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2386.7730812021996, + "min_y": 5322.6429758591485, + "max_x": 2387.395926689375, + "max_y": 5323.265821346323 + }, + "value": null, + "layer": "0", + "id": "556556" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2360.559158858902, + "min_y": 5367.114558067075, + "max_x": 2365.261614233113, + "max_y": 5370.703715357945 + }, + "value": "10213B", + "layer": "INSTRUMENT", + "id": "55655D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5378.870862341538, + "max_x": 2401.529602277, + "max_y": 5384.590160305021 + }, + "value": null, + "layer": "UTIL", + "id": "55655E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2400.5066042648646, + "min_y": 5383.149152062486, + "max_x": 2401.305124120217, + "max_y": 5383.947671917838 + }, + "value": null, + "layer": "0", + "id": "556561" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5384.590160305021, + "max_x": 2401.531667328967, + "max_y": 5402.440640257752 + }, + "value": null, + "layer": "0", + "id": "556562" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2424.660662024722, + "min_y": 5366.021024446509, + "max_x": 2426.684102198424, + "max_y": 5388.941119408088 + }, + "value": null, + "layer": "0", + "id": "556569" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2346.174709901447, + "min_y": 5390.788829367727, + "max_x": 2366.93117642943, + "max_y": 5390.788829367728 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55656B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2376.436236295258, + "min_y": 5383.305191928954, + "max_x": 2395.969356224434, + "max_y": 5409.710471855814 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55656C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2402.316745328243, + "min_y": 5385.021260297194, + "max_x": 2422.812952065085, + "max_y": 5395.918682015736 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55656D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2420.436876332471, + "min_y": 5396.384745787225, + "max_x": 2432.5315949167198, + "max_y": 5397.504627137619 + }, + "value": "VG-9441-150A-F1A-n", + "layer": "LINENO", + "id": "55656F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2395.969356224434, + "min_y": 5409.086733771502, + "max_x": 2400.93639079956, + "max_y": 5410.334209940428 + }, + "value": null, + "layer": "WATER", + "id": "556572" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2392.042855815542, + "min_y": 5394.813464911657, + "max_x": 2400.93639079956, + "max_y": 5427.497331671465 + }, + "value": null, + "layer": "WATER", + "id": "556573" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2421.5276511199127, + "min_y": 5365.496238526991, + "max_x": 2422.577222958943, + "max_y": 5366.545810366021 + }, + "value": null, + "layer": "0", + "id": "556579" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2418.431965278547, + "min_y": 5395.918682015735, + "max_x": 2486.319905870467, + "max_y": 5395.918682015735 + }, + "value": null, + "layer": "UTIL", + "id": "55657A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.907929244506, + "min_y": 5400.455601032726, + "max_x": 2424.090102249468, + "max_y": 5404.42567948278 + }, + "value": null, + "layer": "UTIL", + "id": "55657B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2425.922454583661, + "min_y": 5401.733513037542, + "max_x": 2427.71381679175, + "max_y": 5403.2263148776165 + }, + "value": "N2", + "layer": "0", + "id": "55657C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2424.090102249468, + "min_y": 5400.455601032726, + "max_x": 2438.458753192502, + "max_y": 5404.42567948278 + }, + "value": null, + "layer": "TEXT", + "id": "55657D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2424.090102249457, + "min_y": 5400.455601032726, + "max_x": 2438.458753192502, + "max_y": 5400.455601032726 + }, + "value": null, + "layer": "TEXT", + "id": "55657E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2427.986030680232, + "min_y": 5425.903905056376, + "max_x": 2430.673073992366, + "max_y": 5427.39670689645 + }, + "value": "CWR", + "layer": "0", + "id": "556582" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2401.307603542235, + "min_y": 5424.935212384411, + "max_x": 2438.083729462105, + "max_y": 5428.905290834471 + }, + "value": null, + "layer": "TEXT", + "id": "556583" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.730039294039, + "min_y": 5428.905290834467, + "max_x": 2436.098690237085, + "max_y": 5428.905290834467 + }, + "value": null, + "layer": "TEXT", + "id": "556584" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2428.149294578973, + "min_y": 5408.897062990123, + "max_x": 2430.8363378911067, + "max_y": 5410.389864830197 + }, + "value": "CWS", + "layer": "0", + "id": "556588" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.730039293967, + "min_y": 5407.725432630696, + "max_x": 2438.083729462028, + "max_y": 5411.695511080752 + }, + "value": null, + "layer": "TEXT", + "id": "556589" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2423.715078518983, + "min_y": 5407.725432630696, + "max_x": 2438.083729462028, + "max_y": 5407.725432630696 + }, + "value": null, + "layer": "TEXT", + "id": "55658A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2201.53050627246, + "min_y": 5292.030910432563, + "max_x": 2212.0216179805557, + "max_y": 5297.276471516221 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55658F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2207.224211898168, + "min_y": 5292.814182379231, + "max_x": 2211.142924710011, + "max_y": 5296.314292401306 + }, + "value": "TE", + "layer": "INSTRUMENT", + "id": "556590" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2201.482683156337, + "min_y": 5294.653698914178, + "max_x": 2206.823890567611, + "max_y": 5297.324299957319 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556593" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2201.530506272463, + "min_y": 5291.983087221074, + "max_x": 2206.823890567611, + "max_y": 5297.324289307362 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556596" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2201.482677831363, + "min_y": 5291.983087221074, + "max_x": 2206.823879917656, + "max_y": 5294.65369891417 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556597" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2202.036045538112, + "min_y": 5292.814182379231, + "max_x": 2205.954758349955, + "max_y": 5296.29927589605 + }, + "value": "TI", + "layer": "INSTRUMENT", + "id": "55659B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5337.838465291263, + "max_x": 2257.1576773046954, + "max_y": 5341.463486374319 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5565A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2258.040398974133, + "min_y": 5301.527339790073, + "max_x": 2261.919862426123, + "max_y": 5302.624882349007 + }, + "value": null, + "layer": "0", + "id": "5565A9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2314.1513898649077, + "min_y": 5220.169892121446, + "max_x": 2314.8539359713864, + "max_y": 5220.872438227924 + }, + "value": null, + "layer": "0", + "id": "5565B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2287.385946185914, + "min_y": 5232.385529955402, + "max_x": 2298.041321025084, + "max_y": 5237.73620535476 + }, + "value": null, + "layer": "DM", + "id": "5565B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2284.017702572334, + "min_y": 5235.831054000254, + "max_x": 2291.4089194849307, + "max_y": 5238.494296907952 + }, + "value": "H50", + "layer": "LINENO", + "id": "5565B9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2293.567796838386, + "min_y": 5237.374415557559, + "max_x": 2296.2555120793304, + "max_y": 5238.494296907952 + }, + "value": "NONE", + "layer": "LINENO", + "id": "5565BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2306.20764870397, + "min_y": 5405.664290237842, + "max_x": 2314.73251107095, + "max_y": 5405.664290237842 + }, + "value": null, + "layer": "DM", + "id": "5565BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2306.069375577897, + "min_y": 5406.180537507956, + "max_x": 2308.7570908188413, + "max_y": 5407.300418858349 + }, + "value": "H100", + "layer": "LINENO", + "id": "5565BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2311.539771426295, + "min_y": 5406.180537507956, + "max_x": 2314.227486667239, + "max_y": 5407.300418858349 + }, + "value": "NONE", + "layer": "LINENO", + "id": "5565C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2397.845333196285, + "min_y": 5410.176535627385, + "max_x": 2418.37175502402, + "max_y": 5411.454091290821 + }, + "value": "CWS-10614-150A-S2A-n", + "layer": "LINENO", + "id": "5565C3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2397.371020383434, + "min_y": 5427.339657358491, + "max_x": 2418.371755023947, + "max_y": 5428.617213021858 + }, + "value": "CWR-10624-150A-S2A-n", + "layer": "LINENO", + "id": "5565C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2296.229798809524, + "min_y": 5293.23970595366, + "max_x": 2312.095464109911, + "max_y": 5294.37981351465 + }, + "value": null, + "layer": "0", + "id": "5565CA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2310.8254411953253, + "min_y": 5293.457874684469, + "max_x": 2311.5292112946986, + "max_y": 5294.161644783842 + }, + "value": null, + "layer": "0", + "id": "5565CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.095464109911, + "min_y": 5293.252044397105, + "max_x": 2312.422629961889, + "max_y": 5294.363835031909 + }, + "value": null, + "layer": "0", + "id": "5565CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.207023534376, + "min_y": 5338.487617613632, + "max_x": 2353.500625700052, + "max_y": 5338.858830356308 + }, + "value": null, + "layer": "0", + "id": "5565DB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2437.288312399191, + "min_y": 5363.5932411350495, + "max_x": 2438.0868322545434, + "max_y": 5364.391760990402 + }, + "value": null, + "layer": "0", + "id": "5565DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5238.143715254698, + "max_x": 2157.46681868606, + "max_y": 5239.151556301918 + }, + "value": null, + "layer": "0", + "id": "5565E6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2156.0246300449658, + "min_y": 5238.325016713544, + "max_x": 2156.6695605663303, + "max_y": 5238.969947234908 + }, + "value": null, + "layer": "0", + "id": "5565EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5218.827786973129, + "max_x": 2157.46681868606, + "max_y": 5219.83562802035 + }, + "value": null, + "layer": "0", + "id": "5565F0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2156.0246300449658, + "min_y": 5219.009088431976, + "max_x": 2156.6695605663303, + "max_y": 5219.654018953341 + }, + "value": null, + "layer": "0", + "id": "5565F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2167.51435805664, + "min_y": 5218.821922750582, + "max_x": 2169.770863200061, + "max_y": 5219.829763797802 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5565F9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2166.9152276403556, + "min_y": 5219.003224209428, + "max_x": 2167.56015816172, + "max_y": 5219.648154730792 + }, + "value": null, + "layer": "0", + "id": "5565FE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2166.9152276403556, + "min_y": 5238.319143962162, + "max_x": 2167.56015816172, + "max_y": 5238.964074483527 + }, + "value": null, + "layer": "0", + "id": "556608" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2228.061529309931, + "min_y": 5244.768269163493, + "max_x": 2230.522948025583, + "max_y": 5250.983374522778 + }, + "value": null, + "layer": "0", + "id": "55660D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.888262343214, + "min_y": 5249.415356658186, + "max_x": 2200.238456717402, + "max_y": 5253.764268429881 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55660E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2305.953553808892, + "min_y": 5248.903589294704, + "max_x": 2314.592543733703, + "max_y": 5260.009785074376 + }, + "value": null, + "layer": "UTIL", + "id": "556611" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.635448245456, + "min_y": 5248.903589294704, + "max_x": 2301.270076040137, + "max_y": 5257.552541462787 + }, + "value": null, + "layer": "UTIL", + "id": "556612" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.098961846588, + "min_y": 5262.482399789281, + "max_x": 2274.527615571, + "max_y": 5263.620524481781 + }, + "value": null, + "layer": "0", + "id": "556617" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2272.8311477485227, + "min_y": 5262.7001890822885, + "max_x": 2273.5336938550013, + "max_y": 5263.402735188767 + }, + "value": null, + "layer": "0", + "id": "55661D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2293.2886820557374, + "min_y": 5312.112822476451, + "max_x": 2293.9924521551106, + "max_y": 5312.816592575824 + }, + "value": null, + "layer": "0", + "id": "55661E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2315.9991063707475, + "min_y": 5294.754906129614, + "max_x": 2322.9444537082586, + "max_y": 5300.47903491927 + }, + "value": null, + "layer": "0", + "id": "556628" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.796916122679, + "min_y": 5297.974113762673, + "max_x": 2316.908706757484, + "max_y": 5298.301279614651 + }, + "value": null, + "layer": "0", + "id": "556629" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2424.99201309505, + "min_y": 5346.726545622751, + "max_x": 2428.068203764893, + "max_y": 5348.588677985492 + }, + "value": null, + "layer": "0", + "id": "556638" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2428.320414412202, + "min_y": 5346.302181875883, + "max_x": 2432.782041091098, + "max_y": 5348.123940781387 + }, + "value": null, + "layer": "0", + "id": "55663A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2426.9403121902433, + "min_y": 5346.899300411881, + "max_x": 2427.5631576774185, + "max_y": 5347.522145899055 + }, + "value": null, + "layer": "0", + "id": "55663B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2431.850142898704, + "min_y": 5344.492175411244, + "max_x": 2432.3484192884443, + "max_y": 5344.990451800984 + }, + "value": null, + "layer": "0", + "id": "556648" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2431.7119390674, + "min_y": 5342.740020307388, + "max_x": 2432.782041091098, + "max_y": 5348.123940781387 + }, + "value": null, + "layer": "0", + "id": "556649" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2430.5301664619196, + "min_y": 5349.409401402885, + "max_x": 2431.02844285166, + "max_y": 5349.907677792626 + }, + "value": null, + "layer": "0", + "id": "556653" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2430.391962630617, + "min_y": 5348.123940781387, + "max_x": 2431.170387760026, + "max_y": 5351.219407867525 + }, + "value": null, + "layer": "0", + "id": "556654" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2429.432267078751, + "min_y": 5349.283241608439, + "max_x": 2433.104996007873, + "max_y": 5353.156051393863 + }, + "value": "VT", + "layer": "LINENO", + "id": "55665C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2402.679651984974, + "min_y": 5324.320760117672, + "max_x": 2405.917801580685, + "max_y": 5325.614362283354 + }, + "value": null, + "layer": "0", + "id": "55665E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.917801580685, + "min_y": 5324.33888981051, + "max_x": 2424.978329306947, + "max_y": 5325.600362694451 + }, + "value": null, + "layer": "0", + "id": "55665F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2404.4802423249357, + "min_y": 5324.570366324813, + "max_x": 2405.278762180288, + "max_y": 5325.368886180166 + }, + "value": null, + "layer": "0", + "id": "556661" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2322.315251256262, + "min_y": 5340.374726391932, + "max_x": 2352.16209731417, + "max_y": 5341.695904471173 + }, + "value": "CWR-10623-50A-S2A-n", + "layer": "LINENO", + "id": "55666C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2241.314746909299, + "min_y": 5274.015457696541, + "max_x": 2254.75332311402, + "max_y": 5275.135339046934 + }, + "value": "P-10208-400A-F2A-H50", + "layer": "LINENO", + "id": "55666E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2161.919945916759, + "min_y": 5248.560693694278, + "max_x": 2174.6865933112435, + "max_y": 5255.233244046285 + }, + "value": "CONDENSATE", + "layer": "0", + "id": "55666F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2174.126121097535, + "min_y": 5224.909670437187, + "max_x": 2174.894400888787, + "max_y": 5225.429992418384 + }, + "value": null, + "layer": "0", + "id": "556676" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2311.969998562087, + "min_y": 5217.306097614498, + "max_x": 2312.6725446685655, + "max_y": 5218.008643720977 + }, + "value": null, + "layer": "0", + "id": "556685" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5215.221071568858, + "max_x": 2312.87004289479, + "max_y": 5217.355989322874 + }, + "value": null, + "layer": "0", + "id": "556688" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5302.659286450166, + "max_x": 2338.095960423241, + "max_y": 5304.468338717899 + }, + "value": null, + "layer": "0", + "id": "556694" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5271.3813109723, + "max_x": 2356.653237539366, + "max_y": 5272.390599760584 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5566A0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2356.083492380083, + "min_y": 5268.394960704585, + "max_x": 2455.09579942431, + "max_y": 5272.390599760584 + }, + "value": null, + "layer": "0", + "id": "5566A1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5271.560503000101, + "max_x": 2356.1293722792166, + "max_y": 5272.206557135089 + }, + "value": null, + "layer": "0", + "id": "5566A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5374.130369701021, + "max_x": 2298.158903603991, + "max_y": 5376.949845877721 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5566AB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2297.4355001020526, + "min_y": 5374.848634659057, + "max_x": 2297.9985161815516, + "max_y": 5375.411650738556 + }, + "value": null, + "layer": "0", + "id": "5566AD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2188.7892863330767, + "min_y": 5226.908246172412, + "max_x": 2189.4342168544413, + "max_y": 5227.553176693777 + }, + "value": null, + "layer": "0", + "id": "5566BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5226.089522888562, + "max_x": 2189.615518313287, + "max_y": 5226.954046277484 + }, + "value": null, + "layer": "0", + "id": "5566BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2416.208692249331, + "min_y": 5365.658529326934, + "max_x": 2417.27910071753, + "max_y": 5366.920002210875 + }, + "value": null, + "layer": "0", + "id": "5566C9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2415.470328719103, + "min_y": 5365.8900058412355, + "max_x": 2416.268848574455, + "max_y": 5366.688525696588 + }, + "value": null, + "layer": "0", + "id": "5566CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2435.002307028474, + "min_y": 5371.639396965416, + "max_x": 2439.7047624026854, + "max_y": 5375.501403982691 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5566D7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2434.4373515019024, + "min_y": 5370.371769045311, + "max_x": 2440.9377931518275, + "max_y": 5376.872210695236 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5566D8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2435.0253131544837, + "min_y": 5364.197405854351, + "max_x": 2440.349831499246, + "max_y": 5369.521924199114 + }, + "value": null, + "layer": "0", + "id": "5566D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.673791496605, + "min_y": 5230.18966426955, + "max_x": 2173.427159484994, + "max_y": 5235.223240269302 + }, + "value": null, + "layer": "0", + "id": "5566E0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2172.2280102301165, + "min_y": 5230.708574811028, + "max_x": 2172.872940751481, + "max_y": 5231.353505332392 + }, + "value": null, + "layer": "0", + "id": "5566E2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2169.993907252352, + "min_y": 5236.284064968034, + "max_x": 2174.6963626265633, + "max_y": 5239.491600503183 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5566E5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2169.927697563773, + "min_y": 5235.223240269304, + "max_x": 2175.1732534178227, + "max_y": 5240.468796123354 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5566E6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2170.400281998998, + "min_y": 5230.2364697523935, + "max_x": 2174.700668982598, + "max_y": 5234.536856735993 + }, + "value": null, + "layer": "0", + "id": "5566E7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2245.454833428122, + "min_y": 5241.451811331031, + "max_x": 2258.893409632843, + "max_y": 5242.571692681425 + }, + "value": "P-10209-200A-F2A-H50", + "layer": "LINENO", + "id": "5566F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2261.57117324776, + "min_y": 5221.411125481573, + "max_x": 2274.3378206422444, + "max_y": 5222.531006831967 + }, + "value": "P-10210-25A-F1A-H50", + "layer": "LINENO", + "id": "5566F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2190.016171438607, + "min_y": 5255.297198707567, + "max_x": 2203.454747643328, + "max_y": 5258.381139836072 + }, + "value": "CD-10523-40A-S1A-H50", + "layer": "LINENO", + "id": "5566F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.843298243859, + "min_y": 5360.235701523762, + "max_x": 2441.14609077588, + "max_y": 5361.378068207136 + }, + "value": null, + "layer": "0", + "id": "5566FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5222.604691386442, + "max_x": 2164.711363846145, + "max_y": 5224.522415429361 + }, + "value": null, + "layer": "0", + "id": "5566FE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2164.201053280663, + "min_y": 5224.2044122034995, + "max_x": 2164.837059732385, + "max_y": 5224.8404186552225 + }, + "value": null, + "layer": "0", + "id": "5566FF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2163.8843056339556, + "min_y": 5222.00496183974, + "max_x": 2164.529881085842, + "max_y": 5222.650537291626 + }, + "value": null, + "layer": "0", + "id": "556701" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5238.647789582393, + "max_x": 2160.258765542089, + "max_y": 5242.414877889411 + }, + "value": null, + "layer": "0", + "id": "55670C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5242.714990444528, + "max_x": 2160.36817385178, + "max_y": 5244.804819318215 + }, + "value": null, + "layer": "0", + "id": "55670D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2159.4317073298976, + "min_y": 5241.249872985506, + "max_x": 2160.077282781784, + "max_y": 5241.895448437393 + }, + "value": null, + "layer": "0", + "id": "55670F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2157.089290602607, + "min_y": 5245.986266267907, + "max_x": 2161.797496960524, + "max_y": 5249.463180420526 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556712" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2156.8481948349045, + "min_y": 5244.80481931822, + "max_x": 2162.660795276777, + "max_y": 5250.617419760092 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556713" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2158.249359611581, + "min_y": 5240.88990124499, + "max_x": 2161.2596305001007, + "max_y": 5243.900172133511 + }, + "value": null, + "layer": "0", + "id": "556714" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5241.920618602277, + "max_x": 2164.711363846145, + "max_y": 5243.838342645195 + }, + "value": null, + "layer": "0", + "id": "556720" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2164.201053280663, + "min_y": 5243.520339419333, + "max_x": 2164.837059732385, + "max_y": 5244.156345871056 + }, + "value": null, + "layer": "0", + "id": "556721" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2163.8843056339556, + "min_y": 5241.320889055573, + "max_x": 2164.529881085842, + "max_y": 5241.96646450746 + }, + "value": null, + "layer": "0", + "id": "556723" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5280.384279049576, + "max_x": 2278.887759593873, + "max_y": 5281.645751933517 + }, + "value": null, + "layer": "0", + "id": "556732" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5259.479508266292, + "max_x": 2210.584503816017, + "max_y": 5265.316433141118 + }, + "value": null, + "layer": "0", + "id": "556741" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2208.931430892471, + "min_y": 5241.681963104981, + "max_x": 2211.053464871174, + "max_y": 5245.5963198355685 + }, + "value": "20A", + "layer": "LINENO", + "id": "556748" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2234.312665729012, + "min_y": 5234.029632353093, + "max_x": 2241.7038826416087, + "max_y": 5240.204480231092 + }, + "value": "40A", + "layer": "LINENO", + "id": "556749" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2202.435590951292, + "min_y": 5235.043239875555, + "max_x": 2213.858380725305, + "max_y": 5236.163121225948 + }, + "value": "P-10205-25A-F1A-n", + "layer": "LINENO", + "id": "55674B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2212.685191356967, + "min_y": 5259.902445916668, + "max_x": 2216.268811678226, + "max_y": 5261.395621050526 + }, + "value": "H100", + "layer": "0", + "id": "55674C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2241.582365858728, + "min_y": 5254.085956500806, + "max_x": 2245.1659861799867, + "max_y": 5255.579131634664 + }, + "value": "H100", + "layer": "0", + "id": "556754" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5301.032789618481, + "max_x": 2272.000746255077, + "max_y": 5306.869714493307 + }, + "value": null, + "layer": "0", + "id": "556755" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2274.101433796027, + "min_y": 5301.455727268856, + "max_x": 2277.6850541172857, + "max_y": 5302.948902402714 + }, + "value": "H100", + "layer": "0", + "id": "55675C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2399.495382557017, + "min_y": 5409.311211928287, + "max_x": 2400.2939024123693, + "max_y": 5410.109731783639 + }, + "value": null, + "layer": "0", + "id": "556762" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.93639079956, + "min_y": 5409.086733771502, + "max_x": 2421.730039294157, + "max_y": 5410.334209940428 + }, + "value": null, + "layer": "0", + "id": "556764" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2399.495382557017, + "min_y": 5426.474333659325, + "max_x": 2400.2939024123693, + "max_y": 5427.272853514677 + }, + "value": null, + "layer": "0", + "id": "55676B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.93639079956, + "min_y": 5426.24985550254, + "max_x": 2401.307603542235, + "max_y": 5427.497331671465 + }, + "value": null, + "layer": "0", + "id": "55676D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2222.725043985274, + "min_y": 5249.52253085495, + "max_x": 2227.463171476313, + "max_y": 5251.336127707144 + }, + "value": null, + "layer": "0", + "id": "556787" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2219.44127424634, + "min_y": 5248.455632038551, + "max_x": 2222.725046396328, + "max_y": 5251.336123714373 + }, + "value": null, + "layer": "0", + "id": "556788" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2224.725234429445, + "min_y": 5241.576650310502, + "max_x": 2229.750912037671, + "max_y": 5244.7682691635 + }, + "value": null, + "layer": "STEAM LINE", + "id": "55678D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5240.950240721114, + "max_x": 2228.094510910778, + "max_y": 5241.576650310502 + }, + "value": null, + "layer": "0", + "id": "55678F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2227.1918292073506, + "min_y": 5242.146323158196, + "max_x": 2227.894375313829, + "max_y": 5242.848869264674 + }, + "value": null, + "layer": "0", + "id": "556790" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2213.546653519083, + "min_y": 5244.768269163497, + "max_x": 2220.101597905907, + "max_y": 5250.978099781331 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556798" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2222.205092005812, + "min_y": 5247.866421337751, + "max_x": 2227.5805224877004, + "max_y": 5252.9799138798135 + }, + "value": "T", + "layer": "0", + "id": "55679A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2218.567685857481, + "min_y": 5249.8805572224, + "max_x": 2219.44127424634, + "max_y": 5250.983374522778 + }, + "value": null, + "layer": "0", + "id": "55679B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2217.9194363154907, + "min_y": 5250.080692819349, + "max_x": 2218.6219824219693, + "max_y": 5250.783238925827 + }, + "value": null, + "layer": "0", + "id": "55679D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2227.41327976794, + "min_y": 5250.080692819349, + "max_x": 2228.1158258744185, + "max_y": 5250.783238925827 + }, + "value": null, + "layer": "0", + "id": "5567A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2222.648883633169, + "min_y": 5244.24587544119, + "max_x": 2224.725235471058, + "max_y": 5245.290662885802 + }, + "value": null, + "layer": "0", + "id": "5567AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5241.836708596646, + "max_x": 2222.648885642118, + "max_y": 5246.911112801848 + }, + "value": null, + "layer": "0", + "id": "5567AE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2223.1677951791166, + "min_y": 5244.445806365263, + "max_x": 2223.812725700481, + "max_y": 5245.090736886627 + }, + "value": null, + "layer": "0", + "id": "5567B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2220.4924794381986, + "min_y": 5247.8073824965595, + "max_x": 2221.1950255446773, + "max_y": 5248.509928603038 + }, + "value": null, + "layer": "0", + "id": "5567BA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5247.237709648866, + "max_x": 2221.395161141626, + "max_y": 5247.857274204934 + }, + "value": null, + "layer": "0", + "id": "5567BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2264.194239560645, + "min_y": 5265.543354737692, + "max_x": 2267.8218488213474, + "max_y": 5268.367553018177 + }, + "value": "10211A", + "layer": "INSTRUMENT", + "id": "5567C6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2320.882238015372, + "min_y": 5359.425785545317, + "max_x": 2341.0659369647788, + "max_y": 5363.516481811368 + }, + "value": "CWR", + "layer": "0", + "id": "5567CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2333.666356657438, + "min_y": 5360.579082150308, + "max_x": 2349.979013429616, + "max_y": 5364.404327766609 + }, + "value": "CWS", + "layer": "0", + "id": "5567CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2240.773433097838, + "min_y": 5271.039579386862, + "max_x": 2245.860148817657, + "max_y": 5272.137121945795 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5567CD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.93444941733, + "min_y": 5342.127716076346, + "max_x": 2390.359719092153, + "max_y": 5351.581830725144 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5567CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2483.911143725098, + "min_y": 5307.86798851021, + "max_x": 2484.991272322073, + "max_y": 5310.736473332301 + }, + "value": null, + "layer": "0", + "id": "5567CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5292.973493731143, + "max_x": 2497.283183669344, + "max_y": 5306.038776152399 + }, + "value": null, + "layer": "0", + "id": "5567D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5296.469479280397, + "max_x": 2497.283183669344, + "max_y": 5297.175755592959 + }, + "value": null, + "layer": "0", + "id": "5567D4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2490.312628854859, + "min_y": 5303.529841063156, + "max_x": 2490.7486018873024, + "max_y": 5303.965814095599 + }, + "value": null, + "layer": "0", + "id": "5567D7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2490.0835880828586, + "min_y": 5291.264310215995, + "max_x": 2494.5170687573113, + "max_y": 5297.0406039529025 + }, + "value": null, + "layer": "0", + "id": "5567E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2485.640287193337, + "min_y": 5309.414351831223, + "max_x": 2509.732248367704, + "max_y": 5317.544097611194 + }, + "value": null, + "layer": "UTIL", + "id": "5567EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2483.761184394613, + "min_y": 5285.835613735245, + "max_x": 2498.094033142689, + "max_y": 5293.210212588869 + }, + "value": "P-10201", + "layer": "0", + "id": "5567EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2485.994490823251, + "min_y": 5287.715383238314, + "max_x": 2502.371042087267, + "max_y": 5290.693686651709 + }, + "value": null, + "layer": "TEXT", + "id": "5567ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2489.836095160468, + "min_y": 5287.715383238314, + "max_x": 2500.881890380569, + "max_y": 5287.715383238314 + }, + "value": null, + "layer": "TEXT", + "id": "5567F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2486.044650685437, + "min_y": 5313.238766881347, + "max_x": 2498.1393692696856, + "max_y": 5314.3586482317405 + }, + "value": "N2-10704-15A-F1A-n", + "layer": "LINENO", + "id": "5567F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.450405975593, + "min_y": 5311.719186788064, + "max_x": 2403.462794531002, + "max_y": 5324.968706746689 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5567F3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2403.462794531002, + "min_y": 5315.243874790481, + "max_x": 2405.917503903401, + "max_y": 5316.537476956162 + }, + "value": null, + "layer": "0", + "id": "5567F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.917503903401, + "min_y": 5315.262004483319, + "max_x": 2426.814813876021, + "max_y": 5316.523477367261 + }, + "value": null, + "layer": "0", + "id": "5567F6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2404.479944647652, + "min_y": 5315.493480997622, + "max_x": 2405.278464503004, + "max_y": 5316.2920008529745 + }, + "value": null, + "layer": "0", + "id": "5567F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5280.340361775447, + "max_x": 2356.653237539369, + "max_y": 5281.349650563734 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556805" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5280.519553803248, + "max_x": 2356.1293722792166, + "max_y": 5281.165607938236 + }, + "value": null, + "layer": "0", + "id": "556808" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5280.485601939757, + "max_x": 2465.525690793639, + "max_y": 5311.594538733078 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55680F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2336.895235788317, + "min_y": 5360.7603962737, + "max_x": 2339.873539201712, + "max_y": 5371.539579276728 + }, + "value": null, + "layer": "0", + "id": "556811" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2336.89523578832, + "min_y": 5336.897110648934, + "max_x": 2339.873539201715, + "max_y": 5360.7603962737 + }, + "value": null, + "layer": "TEXT", + "id": "556815" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2339.15149621541, + "min_y": 5362.911152632751, + "max_x": 2341.8392114563544, + "max_y": 5364.404327766609 + }, + "value": "CHS", + "layer": "0", + "id": "556817" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2321.163667079297, + "min_y": 5336.897110648934, + "max_x": 2322.652818785997, + "max_y": 5371.875434378438 + }, + "value": null, + "layer": "TEXT", + "id": "556818" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2315.1364704703, + "min_y": 5359.441081212331, + "max_x": 2326.1076427473345, + "max_y": 5363.516481811368 + }, + "value": "CHR", + "layer": "0", + "id": "55681D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2337.891117710594, + "min_y": 5333.669775155226, + "max_x": 2338.879272261025, + "max_y": 5336.606802340472 + }, + "value": null, + "layer": "WATER", + "id": "556820" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2318.398721937104, + "min_y": 5334.977396038562, + "max_x": 2327.416516889087, + "max_y": 5338.432575966916 + }, + "value": null, + "layer": "0", + "id": "556821" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2322.159549001571, + "min_y": 5333.669775155226, + "max_x": 2323.146088570418, + "max_y": 5334.687087730098 + }, + "value": null, + "layer": "0", + "id": "556822" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2322.3421910535894, + "min_y": 5335.479856475527, + "max_x": 2322.9666764815706, + "max_y": 5336.104341903509 + }, + "value": null, + "layer": "0", + "id": "556824" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2326.912298674002, + "min_y": 5336.897110648934, + "max_x": 2327.92396506734, + "max_y": 5336.897110648934 + }, + "value": null, + "layer": "0", + "id": "55682E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2327.1058891566813, + "min_y": 5335.479856475527, + "max_x": 2327.7303745846625, + "max_y": 5336.104341903509 + }, + "value": null, + "layer": "0", + "id": "556831" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2332.395029721962, + "min_y": 5336.897110648934, + "max_x": 2333.406696115299, + "max_y": 5336.897110648934 + }, + "value": null, + "layer": "0", + "id": "55683B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2332.5886202046413, + "min_y": 5335.479856475527, + "max_x": 2333.2131056326225, + "max_y": 5336.104341903509 + }, + "value": null, + "layer": "0", + "id": "55683E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2337.880169279933, + "min_y": 5336.897110648934, + "max_x": 2338.89183567327, + "max_y": 5336.897110648934 + }, + "value": null, + "layer": "0", + "id": "556848" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2338.073759762611, + "min_y": 5335.479856475527, + "max_x": 2338.6982451905924, + "max_y": 5336.104341903509 + }, + "value": null, + "layer": "0", + "id": "55684B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2439.088026630963, + "min_y": 5426.360415555672, + "max_x": 2449.166958784504, + "max_y": 5427.480296906066 + }, + "value": "SARF-#10-UFD-CW", + "layer": "0", + "id": "55685D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2438.805514942303, + "min_y": 5409.278043508841, + "max_x": 2448.884447095844, + "max_y": 5410.397924859234 + }, + "value": "SARF-#10-UFD-CW", + "layer": "0", + "id": "55685E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2335.191276785057, + "min_y": 5260.328642374065, + "max_x": 2345.270208938598, + "max_y": 5261.448523724458 + }, + "value": "SARF-#10-UFD-N2", + "layer": "0", + "id": "55685F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2259.903491557223, + "min_y": 5162.053500610388, + "max_x": 2280.4346496477688, + "max_y": 5163.853500610388 + }, + "value": "\\pi5.16928; .9; DP-10201 \\pi0.24444;DIAPHRAGM PUMP", + "layer": "0", + "id": "556865" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2211.293990733262, + "min_y": 5154.275281733205, + "max_x": 2285.533993892603, + "max_y": 5156.602531793223 + }, + "value": ".9; CAPA : 34L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "layer": "0", + "id": "556869" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2285.856974722296, + "min_y": 5161.723762624667, + "max_x": 2306.388132812842, + "max_y": 5163.523762624667 + }, + "value": "\\pi5.98478; .9; P-10201 \\pi3.9878;FEED PUMP", + "layer": "0", + "id": "55686D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2287.719730311717, + "min_y": 5154.661342816875, + "max_x": 2336.2199161732783, + "max_y": 5157.045633513037 + }, + "value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "layer": "0", + "id": "556871" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2309.048584019328, + "min_y": 5161.942434418966, + "max_x": 2329.5797421098737, + "max_y": 5163.742434418966 + }, + "value": "\\pi5.77266; .9; P-10214 \\pi4.59228;TOP PUMP", + "layer": "0", + "id": "556875" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2335.031318947728, + "min_y": 5162.452896186059, + "max_x": 2355.5624770382738, + "max_y": 5164.252896186059 + }, + "value": "\\pi5.77486; .9; P-10216 \\pi2.21833;BOTTOM PUMP", + "layer": "0", + "id": "55687D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2336.264917861659, + "min_y": 5156.107417235585, + "max_x": 2385.1652254781325, + "max_y": 5157.907417235585 + }, + "value": ".9; CAPA : 10L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "layer": "0", + "id": "556881" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2359.109073915826, + "min_y": 5162.452896186059, + "max_x": 2379.6402320063717, + "max_y": 5164.252896186059 + }, + "value": "\\pi5.77706; .9; P-10218 \\pi4.32741;SIDE PUMP", + "layer": "0", + "id": "556885" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2385.499826847547, + "min_y": 5162.6070960503, + "max_x": 2406.030984938093, + "max_y": 5164.4070960503 + }, + "value": "\\pi5.00992; .9; VP-10217 \\pi2.026;VACUUM PUMP", + "layer": "0", + "id": "55688D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2386.270826168754, + "min_y": 5156.107417235585, + "max_x": 2450.289439594079, + "max_y": 5158.355727432754 + }, + "value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "layer": "0", + "id": "556891" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2423.443291287292, + "min_y": 5163.837804022642, + "max_x": 2445.5611659808824, + "max_y": 5165.637804022642 + }, + "value": "\\pi6.77814; .9; P-10221 \\pi0.19812;EL TRANSFER PUMP", + "layer": "0", + "id": "556895" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2098.237318590834, + "min_y": 5159.970992446353, + "max_x": 2120.634945598702, + "max_y": 5161.770992446353 + }, + "value": "\\pi6.90702; .9; T-10201 \\pi0.3358;FEED BUFFER TANK", + "layer": "0", + "id": "55689D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2097.183523936263, + "min_y": 5153.690719179984, + "max_x": 2153.7882955560244, + "max_y": 5155.551342207256 + }, + "value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "5568A1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2123.649516467587, + "min_y": 5159.970992446353, + "max_x": 2174.261746299014, + "max_y": 5161.946602714485 + }, + "value": "\\pi9.50447; .9; T-10221 \\pi0.42192;PRODUCT BUFFER TANK", + "layer": "0", + "id": "5568A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2293.58746221997, + "min_y": 5375.03852877656, + "max_x": 2295.401266850321, + "max_y": 5376.046198015644 + }, + "value": "25A", + "layer": "0", + "id": "5568B3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2190.654906446829, + "min_y": 5227.224259848331, + "max_x": 2192.46871107718, + "max_y": 5228.231929087415 + }, + "value": "15A", + "layer": "0", + "id": "5568B4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2216.222788479699, + "min_y": 5240.452282350007, + "max_x": 2223.874078312693, + "max_y": 5243.8982584059395 + }, + "value": "NC", + "layer": "0", + "id": "5568B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2240.175375418367, + "min_y": 5247.97798148386, + "max_x": 2247.5665923309634, + "max_y": 5249.097862834254 + }, + "value": "E10215BA-01", + "layer": "VALVE NO", + "id": "5568B6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2271.552189453887, + "min_y": 5264.087882977355, + "max_x": 2278.9434063664835, + "max_y": 5265.207764327748 + }, + "value": "C10211BA-01", + "layer": "VALVE NO", + "id": "5568B8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2271.890959372906, + "min_y": 5272.058612376917, + "max_x": 2279.2821762855024, + "max_y": 5275.9512959093545 + }, + "value": "C10211BA-04", + "layer": "VALVE NO", + "id": "5568B9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2271.361025374164, + "min_y": 5290.703811585118, + "max_x": 2275.056633830462, + "max_y": 5291.263752260315 + }, + "value": "C10211BA-09", + "layer": "0", + "id": "5568BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2270.968042759047, + "min_y": 5352.755141555189, + "max_x": 2274.663651215345, + "max_y": 5353.315082230386 + }, + "value": "C10211BA-10", + "layer": "0", + "id": "5568BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2270.968042759047, + "min_y": 5359.760489065811, + "max_x": 2274.663651215345, + "max_y": 5360.320429741008 + }, + "value": "C10211BA-11", + "layer": "0", + "id": "5568BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2269.866237046917, + "min_y": 5246.750330931053, + "max_x": 2270.613647809866, + "max_y": 5247.497741694004 + }, + "value": null, + "layer": "0", + "id": "5568C5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2311.5531089366, + "min_y": 5292.661641251035, + "max_x": 2328.2409473960156, + "max_y": 5297.241757451579 + }, + "value": "P10218BA-04", + "layer": "VALVE NO", + "id": "5568D0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2399.919003898217, + "min_y": 5380.864148523803, + "max_x": 2407.3102208108135, + "max_y": 5381.9840298741965 + }, + "value": "D10213BA-05", + "layer": "VALVE NO", + "id": "5568D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2434.832540916476, + "min_y": 5362.950752747866, + "max_x": 2446.6747982295574, + "max_y": 5364.600433703904 + }, + "value": "VP10217BA-03", + "layer": "VALVE NO", + "id": "5568D4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2439.204217937388, + "min_y": 5367.887301720406, + "max_x": 2453.812582759884, + "max_y": 5369.36837129631 + }, + "value": "VP10217BA-04", + "layer": "VALVE NO", + "id": "5568D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2481.974911278634, + "min_y": 5303.025512513825, + "max_x": 2496.7711721768896, + "max_y": 5305.2455670515465 + }, + "value": "T10200BA-07", + "layer": "VALVE NO", + "id": "5568D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2401.798598348676, + "min_y": 5325.426863266587, + "max_x": 2419.387126824649, + "max_y": 5326.948190471216 + }, + "value": "HD10214BA-01", + "layer": "VALVE NO", + "id": "5568D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2401.617284225279, + "min_y": 5316.370384761285, + "max_x": 2419.508074010491, + "max_y": 5317.865225998137 + }, + "value": "HD10214BA-03", + "layer": "VALVE NO", + "id": "5568D9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2352.369978664452, + "min_y": 5278.586206639769, + "max_x": 2363.792768438465, + "max_y": 5283.241824948071 + }, + "value": "HD10218BA-02", + "layer": "VALVE NO", + "id": "5568DA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2354.611364448747, + "min_y": 5272.613506104335, + "max_x": 2362.674510171579, + "max_y": 5276.719737722446 + }, + "value": "HD10218BA-04", + "layer": "VALVE NO", + "id": "5568DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5405.247385105556, + "max_x": 2280.13879521484, + "max_y": 5413.459848341775 + }, + "value": null, + "layer": "0", + "id": "5568DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5413.459848341775, + "max_x": 2280.13879521484, + "max_y": 5413.459848341775 + }, + "value": null, + "layer": "0", + "id": "5568E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2258.069133459586, + "min_y": 5408.607029156737, + "max_x": 2270.4501130201525, + "max_y": 5412.713260774846 + }, + "value": "VAPOR", + "layer": "0", + "id": "5568E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2257.933147867039, + "min_y": 5405.993972672485, + "max_x": 2261.9647207284556, + "max_y": 5407.1138540228785 + }, + "value": "PRESS.", + "layer": "0", + "id": "5568E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2264.266768135479, + "min_y": 5405.993972672485, + "max_x": 2275.689557909492, + "max_y": 5407.1138540228785 + }, + "value": "0.089~-0.085 MPaG", + "layer": "0", + "id": "5568E5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.771441304113, + "min_y": 5387.373660696146, + "max_x": 2414.2878006008514, + "max_y": 5390.0131517405525 + }, + "value": "PSV-10211", + "layer": "0", + "id": "5568E9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.369705972438, + "min_y": 5385.841464883489, + "max_x": 2415.0203229503923, + "max_y": 5386.849134122573 + }, + "value": "SP: 0.19MPa", + "layer": "0", + "id": "5568EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2195.309835145883, + "min_y": 5258.952092663167, + "max_x": 2200.7512490369363, + "max_y": 5261.4422200884455 + }, + "value": "PSV-10203", + "layer": "0", + "id": "5568EC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2194.544169018616, + "min_y": 5248.860693727383, + "max_x": 2199.044439493668, + "max_y": 5254.874125444835 + }, + "value": null, + "layer": "0", + "id": "5568EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2193.62442016599, + "min_y": 5248.887071284542, + "max_x": 2195.168151679893, + "max_y": 5280.491432022843 + }, + "value": null, + "layer": "0", + "id": "5568F0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2195.063080564563, + "min_y": 5249.0608293243295, + "max_x": 2197.0667802234534, + "max_y": 5252.1666927793785 + }, + "value": null, + "layer": "0", + "id": "5568F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2193.624524959588, + "min_y": 5253.764268429883, + "max_x": 2199.044439493668, + "max_y": 5256.451602022437 + }, + "value": null, + "layer": "STEAM LINE", + "id": "5568F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2307.445120769163, + "min_y": 5332.693121110086, + "max_x": 2308.583245461666, + "max_y": 5335.040861610988 + }, + "value": null, + "layer": "0", + "id": "556907" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2305.79493364242, + "min_y": 5333.18300001232, + "max_x": 2310.4188972437432, + "max_y": 5339.771503174337 + }, + "value": "10217", + "layer": "INSTRUMENT", + "id": "556908" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2307.6629100621767, + "min_y": 5333.258389101674, + "max_x": 2308.3654561686553, + "max_y": 5333.9609352081525 + }, + "value": null, + "layer": "0", + "id": "55690C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2307.465411835946, + "min_y": 5331.26817633086, + "max_x": 2310.416836430385, + "max_y": 5332.693121110086 + }, + "value": null, + "layer": "0", + "id": "55690D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2478.4478655646, + "min_y": 5295.303505964355, + "max_x": 2481.587537616963, + "max_y": 5311.478291798239 + }, + "value": null, + "layer": "0", + "id": "556915" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2478.132738041744, + "min_y": 5308.1177861623155, + "max_x": 2483.87823553734, + "max_y": 5316.882309574899 + }, + "value": null, + "layer": "0", + "id": "556916" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2480.42343596212, + "min_y": 5310.215902618286, + "max_x": 2483.85803393692, + "max_y": 5311.35058360793 + }, + "value": null, + "layer": "0", + "id": "556920" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2479.052898846231, + "min_y": 5311.909010907413, + "max_x": 2484.040352085844, + "max_y": 5316.169776757157 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556921" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2471.951744578466, + "min_y": 5285.470363045114, + "max_x": 2494.349371586334, + "max_y": 5313.541906838429 + }, + "value": null, + "layer": "0", + "id": "556922" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2383.144618831828, + "min_y": 5398.143392711489, + "max_x": 2384.282743524332, + "max_y": 5401.808269415131 + }, + "value": null, + "layer": "0", + "id": "556928" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2381.540265084812, + "min_y": 5402.988883133146, + "max_x": 2385.4589778966547, + "max_y": 5406.611585941533 + }, + "value": "10212", + "layer": "INSTRUMENT", + "id": "556929" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2380.7985813297237, + "min_y": 5397.026697260229, + "max_x": 2391.5486827708073, + "max_y": 5407.532398204785 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55692B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2383.3624081248417, + "min_y": 5398.708660703076, + "max_x": 2384.0649542313204, + "max_y": 5399.411206809555 + }, + "value": null, + "layer": "0", + "id": "55692D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2381.231935262331, + "min_y": 5394.813464911657, + "max_x": 2384.26245245755, + "max_y": 5398.143392711489 + }, + "value": null, + "layer": "0", + "id": "55692E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2397.071730882451, + "min_y": 5390.788829367727, + "max_x": 2399.505810096449, + "max_y": 5390.788829367727 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "556936" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2385.94870470844, + "min_y": 5417.226446019808, + "max_x": 2392.070532386383, + "max_y": 5424.190687140051 + }, + "value": null, + "layer": "0", + "id": "556937" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2378.04369022401, + "min_y": 5417.110972693973, + "max_x": 2383.485104115063, + "max_y": 5419.750465075612 + }, + "value": "PSV-10212", + "layer": "0", + "id": "556946" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2377.977282022365, + "min_y": 5415.578273715312, + "max_x": 2384.023297456869, + "max_y": 5416.585942954396 + }, + "value": "SP: 0.6MPa", + "layer": "0", + "id": "556948" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2298.722977542981, + "min_y": 5331.268176330854, + "max_x": 2318.398721937104, + "max_y": 5359.584436105897 + }, + "value": null, + "layer": "0", + "id": "556949" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2307.065654444901, + "min_y": 5328.232198763843, + "max_x": 2319.2922337400805, + "max_y": 5331.187689061925 + }, + "value": "PSV-10217", + "layer": "0", + "id": "556958" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2313.784411647382, + "min_y": 5326.699499785182, + "max_x": 2319.830427081886, + "max_y": 5327.707169024266 + }, + "value": "SP: 0.6MPa", + "layer": "0", + "id": "55695A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2386.513202282712, + "min_y": 5398.207310978245, + "max_x": 2390.431915094555, + "max_y": 5401.830013786632 + }, + "value": "10212", + "layer": "INSTRUMENT", + "id": "55695B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2188.895521667434, + "min_y": 5230.550764654208, + "max_x": 2190.1047247543347, + "max_y": 5231.558433893292 + }, + "value": "FC", + "layer": "0", + "id": "55695F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2291.699537935173, + "min_y": 5378.544768802109, + "max_x": 2292.9087410220736, + "max_y": 5379.5524380411925 + }, + "value": "FO", + "layer": "0", + "id": "556963" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.659454540145, + "min_y": 5376.379792097219, + "max_x": 2275.088855075487, + "max_y": 5379.648025690162 + }, + "value": null, + "layer": "0", + "id": "556964" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5308.709146384435, + "max_x": 2478.801003720881, + "max_y": 5315.60840053909 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556972" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2153.691677591709, + "min_y": 5153.537898962976, + "max_x": 2209.977770658168, + "max_y": 5155.718571598192 + }, + "value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "layer": "0", + "id": "556978" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2289.911915809037, + "min_y": 5327.01953581833, + "max_x": 2292.5996310499813, + "max_y": 5328.512710952188 + }, + "value": "H50", + "layer": "0", + "id": "556983" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2388.789363037563, + "min_y": 5322.934289762699, + "max_x": 2390.603167667914, + "max_y": 5323.941959001783 + }, + "value": "15A", + "layer": "0", + "id": "556984" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2339.387109556447, + "min_y": 5304.709977337964, + "max_x": 2341.200914186798, + "max_y": 5305.717646577048 + }, + "value": "15A", + "layer": "0", + "id": "556985" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2419.987789252221, + "min_y": 5364.49004598007, + "max_x": 2424.517728927323, + "max_y": 5367.8029952163615 + }, + "value": "FC", + "layer": "0", + "id": "556986" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2174.981292792436, + "min_y": 5267.941027154815, + "max_x": 2177.627432077229, + "max_y": 5283.292147591424 + }, + "value": null, + "layer": "0", + "id": "556988" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5267.326015091576, + "max_x": 2169.206089862527, + "max_y": 5282.990829280182 + }, + "value": null, + "layer": "0", + "id": "556989" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2173.0419533933878, + "min_y": 5283.261186720395, + "max_x": 2175.5524174649377, + "max_y": 5283.745285810058 + }, + "value": null, + "layer": "0", + "id": "55698C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2172.938589367157, + "min_y": 5282.962735859268, + "max_x": 2175.687569104998, + "max_y": 5300.908539244173 + }, + "value": null, + "layer": "0", + "id": "55698E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.508535386095, + "min_y": 5282.39740934109, + "max_x": 2173.222050849842, + "max_y": 5285.28190349279 + }, + "value": null, + "layer": "0", + "id": "55698F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2177.097471446358, + "min_y": 5272.115364872349, + "max_x": 2181.7999268205695, + "max_y": 5275.273013823633 + }, + "value": "10201B", + "layer": "INSTRUMENT", + "id": "556997" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2170.218284703353, + "min_y": 5263.411293618167, + "max_x": 2173.778300627075, + "max_y": 5266.754072545729 + }, + "value": null, + "layer": "0", + "id": "55699A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2171.184179569983, + "min_y": 5280.855919671209, + "max_x": 2182.0681126261074, + "max_y": 5283.7674040224465 + }, + "value": "50A", + "layer": "0", + "id": "55699B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2176.8406755187475, + "min_y": 5268.538890255354, + "max_x": 2177.2766485511906, + "max_y": 5268.974863287797 + }, + "value": null, + "layer": "0", + "id": "55699F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2177.830105491072, + "min_y": 5266.832401431303, + "max_x": 2179.603604299812, + "max_y": 5271.075758212298 + }, + "value": null, + "layer": "0", + "id": "5569A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2166.49098848545, + "min_y": 5283.29829204887, + "max_x": 2171.455425597916, + "max_y": 5319.169849063344 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5569B0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2197.796370127329, + "min_y": 5300.058356922025, + "max_x": 2210.5630175218134, + "max_y": 5303.957583673869 + }, + "value": "N2", + "layer": "0", + "id": "5569B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2196.488532544029, + "min_y": 5299.419387537476, + "max_x": 2209.023479470828, + "max_y": 5302.39769095087 + }, + "value": null, + "layer": "TEXT", + "id": "5569B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2197.977684250727, + "min_y": 5299.419387537476, + "max_x": 2209.023479470828, + "max_y": 5299.419387537476 + }, + "value": null, + "layer": "TEXT", + "id": "5569B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2173.220698651253, + "min_y": 5300.908539244173, + "max_x": 2196.488532544029, + "max_y": 5300.908539244173 + }, + "value": null, + "layer": "UTIL", + "id": "5569B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2180.466225120765, + "min_y": 5301.370334887561, + "max_x": 2192.560943705014, + "max_y": 5302.490216237954 + }, + "value": "N2-10710-15A-F1A-n", + "layer": "LINENO", + "id": "5569B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2170.540682532323, + "min_y": 5306.028558257573, + "max_x": 2208.984033155486, + "max_y": 5309.006861670968 + }, + "value": null, + "layer": "TEXT", + "id": "5569B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2196.449086228687, + "min_y": 5306.028558257573, + "max_x": 2207.494881448789, + "max_y": 5306.028558257573 + }, + "value": null, + "layer": "TEXT", + "id": "5569BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2180.279634109707, + "min_y": 5307.935142940154, + "max_x": 2192.3743526939556, + "max_y": 5309.055024290547 + }, + "value": "VG-10433-50A-F1A-n", + "layer": "LINENO", + "id": "5569BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2196.26777210529, + "min_y": 5306.733475045621, + "max_x": 2207.0186330690667, + "max_y": 5310.608102666662 + }, + "value": "SC-10128", + "layer": "0", + "id": "5569C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2157.185274254539, + "min_y": 5272.277267138541, + "max_x": 2165.6173028293088, + "max_y": 5275.64242375143 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "5569C1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2156.4740043288125, + "min_y": 5271.633446912281, + "max_x": 2165.5006358546498, + "max_y": 5276.146762675202 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5569C2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2158.074046556714, + "min_y": 5274.336186147478, + "max_x": 2159.6415316814514, + "max_y": 5275.642423751426 + }, + "value": "LI", + "layer": "INSTRUMENT", + "id": "5569C4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5273.890104793739, + "max_x": 2160.987320091731, + "max_y": 5276.146762675205 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5569C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5271.633446912275, + "max_x": 2160.987320091731, + "max_y": 5276.146762675205 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5569C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5271.633446912275, + "max_x": 2160.987320091731, + "max_y": 5273.890104793736 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5569C8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2167.838709166643, + "min_y": 5287.520204871824, + "max_x": 2187.381159985285, + "max_y": 5294.012431356932 + }, + "value": "P-10201-25A-F1A-n", + "layer": "LINENO", + "id": "5569CE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2176.89530228093, + "min_y": 5282.647522672053, + "max_x": 2186.9251177740025, + "max_y": 5284.278866418637 + }, + "value": "T10201BA-10", + "layer": "VALVE NO", + "id": "5569D1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2177.344242154343, + "min_y": 5263.814501702239, + "max_x": 2186.9907492679936, + "max_y": 5267.3712120890195 + }, + "value": "T10201BA-07", + "layer": "VALVE NO", + "id": "5569D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2181.79068662204, + "min_y": 5294.659817158839, + "max_x": 2186.627498969643, + "max_y": 5295.667486397923 + }, + "value": "BV-10201", + "layer": "0", + "id": "5569D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2172.07115371294, + "min_y": 5288.572305671357, + "max_x": 2190.537502273959, + "max_y": 5292.596616852985 + }, + "value": null, + "layer": "0", + "id": "5569D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.455425597916, + "min_y": 5286.074243492646, + "max_x": 2173.018120954813, + "max_y": 5289.484988349535 + }, + "value": null, + "layer": "0", + "id": "5569D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2178.574862342137, + "min_y": 5282.132208919941, + "max_x": 2179.281138654699, + "max_y": 5285.176046923224 + }, + "value": null, + "layer": "0", + "id": "5569D9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2178.7100139821946, + "min_y": 5283.261186720395, + "max_x": 2179.1459870146377, + "max_y": 5283.697159752838 + }, + "value": null, + "layer": "0", + "id": "5569DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2178.051316504223, + "min_y": 5285.176046923224, + "max_x": 2179.804684492612, + "max_y": 5286.457420816685 + }, + "value": null, + "layer": "0", + "id": "5569E4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2176.3052225713914, + "min_y": 5286.457420816688, + "max_x": 2181.550778425441, + "max_y": 5291.702976670737 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5569E6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2176.777807006616, + "min_y": 5281.470650299777, + "max_x": 2181.0781939902163, + "max_y": 5285.771037283376 + }, + "value": null, + "layer": "0", + "id": "5569E7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2162.1512479519156, + "min_y": 5264.423437136935, + "max_x": 2167.2565238504244, + "max_y": 5269.9627617975775 + }, + "value": null, + "layer": "0", + "id": "5569ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5269.371069899875, + "max_x": 2166.267093878101, + "max_y": 5270.118480662819 + }, + "value": null, + "layer": "0", + "id": "5569EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5269.744775281354, + "max_x": 2163.243977973192, + "max_y": 5271.633446912287 + }, + "value": null, + "layer": "0", + "id": "5569F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5276.1467626752, + "max_x": 2166.267093878101, + "max_y": 5279.384446343494 + }, + "value": null, + "layer": "0", + "id": "5569F9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2166.8205508179813, + "min_y": 5278.792754445807, + "max_x": 2167.2565238504244, + "max_y": 5279.22872747825 + }, + "value": null, + "layer": "0", + "id": "5569FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2166.267093878101, + "min_y": 5278.657602805748, + "max_x": 2166.267093878101, + "max_y": 5279.363879118309 + }, + "value": null, + "layer": "0", + "id": "5569FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2420.90440846862, + "min_y": 5342.358026764409, + "max_x": 2430.6736932428153, + "max_y": 5346.302223307487 + }, + "value": "DR", + "layer": "LINENO", + "id": "556A0D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2449.409166265775, + "min_y": 5370.231474079414, + "max_x": 2470.899546894938, + "max_y": 5385.890523703094 + }, + "value": null, + "layer": "UTIL", + "id": "556A16" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2456.349581828498, + "min_y": 5382.465427544872, + "max_x": 2467.191654987314, + "max_y": 5386.802574656325 + }, + "value": "SC-10128", + "layer": "0", + "id": "556A17" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2456.530895951895, + "min_y": 5381.201290797824, + "max_x": 2472.88458611996, + "max_y": 5385.171369247883 + }, + "value": null, + "layer": "TEXT", + "id": "556A18" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.79159069039, + "min_y": 5357.490232943342, + "max_x": 2444.6399969584113, + "max_y": 5359.682523942945 + }, + "value": "P-10314-80A-F1A-n", + "layer": "LINENO", + "id": "556A1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2405.461723879211, + "min_y": 5402.832104956827, + "max_x": 2417.55644246346, + "max_y": 5403.95198630722 + }, + "value": "N2-10706-15A-F1A-n", + "layer": "LINENO", + "id": "556A1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2481.56145702684, + "min_y": 5361.390956561534, + "max_x": 2492.84589405623, + "max_y": 5413.707063472641 + }, + "value": null, + "layer": "UTIL", + "id": "556A20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5412.216745059327, + "max_x": 2475.103974559102, + "max_y": 5415.24170649516 + }, + "value": null, + "layer": "TEXT", + "id": "556A21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5415.195048472722, + "max_x": 2473.61482285241, + "max_y": 5415.195048472722 + }, + "value": null, + "layer": "TEXT", + "id": "556A22" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2462.654325725978, + "min_y": 5412.957240584436, + "max_x": 2473.405186689755, + "max_y": 5416.796289468415 + }, + "value": "SARF-#10-PID-001", + "layer": "0", + "id": "556A26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5406.680636108291, + "max_x": 2475.103974559102, + "max_y": 5409.705597544123 + }, + "value": null, + "layer": "TEXT", + "id": "556A28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5409.658939521684, + "max_x": 2473.61482285241, + "max_y": 5409.658939521684 + }, + "value": null, + "layer": "TEXT", + "id": "556A29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2462.654325725978, + "min_y": 5407.421131633398, + "max_x": 2473.405186689755, + "max_y": 5411.260180517378 + }, + "value": "SARF-#10-PID-002", + "layer": "0", + "id": "556A2D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2475.103974559102, + "min_y": 5413.705896766028, + "max_x": 2486.319905870467, + "max_y": 5413.705896766028 + }, + "value": null, + "layer": "UTIL", + "id": "556A2F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2475.103974559102, + "min_y": 5408.16978781499, + "max_x": 2486.319905870467, + "max_y": 5408.16978781499 + }, + "value": null, + "layer": "UTIL", + "id": "556A30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.103800975614, + "min_y": 5411.455701683926, + "max_x": 2499.1985195598627, + "max_y": 5412.57558303432 + }, + "value": "VG-9440-300A-F1A-N", + "layer": "LINENO", + "id": "556A31" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2146.426781025651, + "min_y": 5301.219257514091, + "max_x": 2149.766466035357, + "max_y": 5314.372257218169 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556A33" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.702885709185, + "min_y": 5315.955319437505, + "max_x": 2168.970826669111, + "max_y": 5319.169849063308 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556A34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2139.890575846436, + "min_y": 5298.772806271879, + "max_x": 2144.505955130061, + "max_y": 5305.005870455595 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556A35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5314.372257218169, + "max_x": 2149.766466035346, + "max_y": 5315.648808672471 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556A37" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2148.8844947761945, + "min_y": 5316.474229978981, + "max_x": 2149.529425297559, + "max_y": 5317.119160500346 + }, + "value": null, + "layer": "0", + "id": "556A49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2134.036873524147, + "min_y": 5300.469768892351, + "max_x": 2137.582563121129, + "max_y": 5304.680467193717 + }, + "value": null, + "layer": "0", + "id": "556A4E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2137.1203061069104, + "min_y": 5301.545439970397, + "max_x": 2139.8905758464343, + "max_y": 5301.941192790332 + }, + "value": null, + "layer": "0", + "id": "556A52" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2132.270109508977, + "min_y": 5301.222590512693, + "max_x": 2134.036873524144, + "max_y": 5302.267377957304 + }, + "value": null, + "layer": "0", + "id": "556A5E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2142.25581784412, + "min_y": 5298.772806271879, + "max_x": 2144.689718688947, + "max_y": 5302.265712813338 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556A63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2132.274649800706, + "min_y": 5295.700511660625, + "max_x": 2143.3832720294304, + "max_y": 5296.93782853222 + }, + "value": "DP10201BA-01", + "layer": "VALVE NO", + "id": "556A65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2141.160842684071, + "min_y": 5316.300693756752, + "max_x": 2157.9457544557085, + "max_y": 5317.456218878368 + }, + "value": "DP10201BA-02", + "layer": "VALVE NO", + "id": "556A66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2163.623740553456, + "min_y": 5336.033197689205, + "max_x": 2171.389922008026, + "max_y": 5339.31471935729 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A67" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.389922008026, + "min_y": 5334.267660532802, + "max_x": 2177.690381249151, + "max_y": 5337.171322381706 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2177.690379240205, + "min_y": 5295.818265993014, + "max_x": 2245.860148817657, + "max_y": 5349.870139523501 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A69" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2169.5568399183776, + "min_y": 5337.06392152163, + "max_x": 2171.3899220080284, + "max_y": 5338.897003611281 + }, + "value": null, + "layer": "0", + "id": "556A6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2169.630066910348, + "min_y": 5329.432408985817, + "max_x": 2179.090314152199, + "max_y": 5332.723141296099 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2162.038480469638, + "min_y": 5329.432413910509, + "max_x": 2169.630068919297, + "max_y": 5336.602260035456 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A76" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2168.817069798761, + "min_y": 5338.897003611282, + "max_x": 2172.129692127646, + "max_y": 5349.870139523501 + }, + "value": null, + "layer": "0", + "id": "556A7C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2170.037827146735, + "min_y": 5342.071212751434, + "max_x": 2171.4928161002094, + "max_y": 5342.8795399478095 + }, + "value": "I/P", + "layer": "0", + "id": "556A7F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2163.995590708642, + "min_y": 5339.718832083927, + "max_x": 2167.9143035204847, + "max_y": 5343.32352792695 + }, + "value": "TCV", + "layer": "INSTRUMENT", + "id": "556A80" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2163.297393944222, + "min_y": 5336.279797237223, + "max_x": 2169.011567362128, + "max_y": 5344.244189167884 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556A85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2154.768895175301, + "min_y": 5336.079871237841, + "max_x": 2163.623742562405, + "max_y": 5337.124658682462 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A8A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2148.566725685212, + "min_y": 5334.8059773768455, + "max_x": 2154.280899103118, + "max_y": 5345.297979345488 + }, + "value": null, + "layer": "0", + "id": "556A8C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2144.803111290558, + "min_y": 5335.33209638662, + "max_x": 2152.693976042995, + "max_y": 5337.872423684286 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2151.423812394165, + "min_y": 5338.398542694072, + "max_x": 2151.423812394165, + "max_y": 5339.584637376915 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "556A91" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2149.250396300897, + "min_y": 5340.684036337335, + "max_x": 2153.16910911274, + "max_y": 5344.175118256834 + }, + "value": "FIT", + "layer": "INSTRUMENT", + "id": "556A92" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.555317635786, + "min_y": 5336.602260035456, + "max_x": 2144.803111290558, + "max_y": 5341.459633481361 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556A94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2124.58106596017, + "min_y": 5336.05348875599, + "max_x": 2137.026113946445, + "max_y": 5339.449652326713 + }, + "value": null, + "layer": "0", + "id": "556A95" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2133.3286384528524, + "min_y": 5337.06392152163, + "max_x": 2135.161720542503, + "max_y": 5338.897003611281 + }, + "value": null, + "layer": "0", + "id": "556A99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5339.449652326707, + "max_x": 2137.026113946445, + "max_y": 5340.549760401168 + }, + "value": null, + "layer": "0", + "id": "556A9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2116.867654722421, + "min_y": 5335.492403020505, + "max_x": 2124.254469113151, + "max_y": 5337.169505527426 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556AA0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2206.145605290942, + "min_y": 5344.119264197199, + "max_x": 2211.859778708848, + "max_y": 5349.833437615105 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556AA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2206.286338246546, + "min_y": 5345.41325165296, + "max_x": 2210.9887936207574, + "max_y": 5348.814520070092 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556AA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2112.694280511389, + "min_y": 5324.334206360657, + "max_x": 2116.86765673137, + "max_y": 5338.585620820256 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556AA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2103.664536743845, + "min_y": 5335.766253212239, + "max_x": 2116.4311841383296, + "max_y": 5340.304055655878 + }, + "value": "STEAM", + "layer": "0", + "id": "556AA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2153.220095052775, + "min_y": 5336.033197689205, + "max_x": 2154.768895175301, + "max_y": 5337.171322381706 + }, + "value": null, + "layer": "0", + "id": "556AA7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2124.715831676947, + "min_y": 5340.548928951823, + "max_x": 2143.759854557318, + "max_y": 5349.848353208414 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556AAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2132.071763404409, + "min_y": 5341.655628871986, + "max_x": 2135.990476216252, + "max_y": 5345.284595477976 + }, + "value": "10215", + "layer": "INSTRUMENT", + "id": "556AAE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2103.845850867242, + "min_y": 5334.615840200545, + "max_x": 2112.694280511389, + "max_y": 5338.585620820268 + }, + "value": null, + "layer": "TEXT", + "id": "556AB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2103.845850867242, + "min_y": 5334.615840200545, + "max_x": 2112.694280511389, + "max_y": 5334.615840200545 + }, + "value": null, + "layer": "TEXT", + "id": "556AB1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2170.1876012065886, + "min_y": 5336.3164802788415, + "max_x": 2170.7591607198174, + "max_y": 5336.888039792071 + }, + "value": null, + "layer": "0", + "id": "556AB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.018872364986, + "min_y": 5336.602260035456, + "max_x": 2128.121689665364, + "max_y": 5341.459633481361 + }, + "value": null, + "layer": "0", + "id": "556AB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.065191577002, + "min_y": 5333.459944851947, + "max_x": 2131.168008877379, + "max_y": 5336.602260035456 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556AB8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5331.379528325397, + "max_x": 2131.168008877381, + "max_y": 5333.459944851947 + }, + "value": null, + "layer": "STEAM LINE", + "id": "556AB9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2176.526539181839, + "min_y": 5336.2797972372055, + "max_x": 2177.1714697032035, + "max_y": 5336.92472775857 + }, + "value": null, + "layer": "0", + "id": "556ACA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2170.1489784562955, + "min_y": 5329.63233990989, + "max_x": 2170.79390897766, + "max_y": 5330.277270431255 + }, + "value": null, + "layer": "0", + "id": "556ADC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2117.386566268369, + "min_y": 5336.279797237223, + "max_x": 2118.0314967897334, + "max_y": 5336.924727758587 + }, + "value": null, + "layer": "0", + "id": "556AE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5332.723141296099, + "max_x": 2174.265123482181, + "max_y": 5333.669302699186 + }, + "value": null, + "layer": "0", + "id": "556AE8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2173.3624417787546, + "min_y": 5333.619410990812, + "max_x": 2174.064987885233, + "max_y": 5334.321957097291 + }, + "value": null, + "layer": "0", + "id": "556AE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2208.448645978982, + "min_y": 5339.611635798404, + "max_x": 2209.551463279359, + "max_y": 5344.1192641972 + }, + "value": null, + "layer": "0", + "id": "556AF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5339.285038951385, + "max_x": 2209.551463279359, + "max_y": 5339.611635798404 + }, + "value": null, + "layer": "0", + "id": "556AF1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2208.6487815759315, + "min_y": 5340.181308646097, + "max_x": 2209.35132768241, + "max_y": 5340.883854752576 + }, + "value": null, + "layer": "0", + "id": "556AF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5341.459633481361, + "max_x": 2141.45153912783, + "max_y": 5344.134179790509 + }, + "value": null, + "layer": "0", + "id": "556AF9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2140.5488574244036, + "min_y": 5340.196224239407, + "max_x": 2141.2514035308823, + "max_y": 5340.898770345885 + }, + "value": null, + "layer": "0", + "id": "556AFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5341.459633481361, + "max_x": 2128.121689665364, + "max_y": 5344.134179790509 + }, + "value": null, + "layer": "0", + "id": "556B02" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2127.2190079619377, + "min_y": 5340.196224239407, + "max_x": 2127.9215540684163, + "max_y": 5340.898770345885 + }, + "value": null, + "layer": "0", + "id": "556B04" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2130.2653271739528, + "min_y": 5334.02961769964, + "max_x": 2130.9678732804314, + "max_y": 5334.7321638061185 + }, + "value": null, + "layer": "0", + "id": "556B0D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2148.801043121049, + "min_y": 5345.345802461621, + "max_x": 2154.0465989750987, + "max_y": 5350.591358315671 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556B14" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.753220004929, + "min_y": 5347.96858571363, + "max_x": 2154.0944274162, + "max_y": 5350.639186756769 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556B15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.801043121055, + "min_y": 5345.297974020525, + "max_x": 2154.0944274162, + "max_y": 5350.639176106813 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556B18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.753214679952, + "min_y": 5345.297974020525, + "max_x": 2154.094416766249, + "max_y": 5347.96858571362 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556B19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2149.249176690562, + "min_y": 5346.300459697643, + "max_x": 2153.1678895024047, + "max_y": 5349.649434665152 + }, + "value": "FICQ", + "layer": "INSTRUMENT", + "id": "556B1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2171.622276748641, + "min_y": 5338.911242489387, + "max_x": 2172.831479835542, + "max_y": 5339.918911728471 + }, + "value": "FC", + "layer": "0", + "id": "556B22" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2183.763656500055, + "min_y": 5345.199582130427, + "max_x": 2189.205070391108, + "max_y": 5347.839074512065 + }, + "value": "PSV-10215", + "layer": "0", + "id": "556B23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2183.697248299415, + "min_y": 5343.667386986385, + "max_x": 2189.743263733919, + "max_y": 5344.675056225469 + }, + "value": "SP: 0.7MPa", + "layer": "0", + "id": "556B25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2185.944042127915, + "min_y": 5339.988454068063, + "max_x": 2190.080852012074, + "max_y": 5342.644149748826 + }, + "value": null, + "layer": "0", + "id": "556B26" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2190.087398028431, + "min_y": 5334.453444731895, + "max_x": 2203.525974233152, + "max_y": 5335.573326082288 + }, + "value": "ST-10521-65A-S1A-H50", + "layer": "LINENO", + "id": "556B34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2169.4545450453, + "min_y": 5334.740509286782, + "max_x": 2171.2683496756513, + "max_y": 5335.748178525866 + }, + "value": "65A", + "layer": "0", + "id": "556B3C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2150.504451942995, + "min_y": 5333.285851894561, + "max_x": 2152.318256573346, + "max_y": 5334.293521133645 + }, + "value": "65A", + "layer": "0", + "id": "556B3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2218.297661010554, + "min_y": 5281.187095309126, + "max_x": 2239.876551152874, + "max_y": 5294.297298123417 + }, + "value": null, + "layer": "0", + "id": "556B3F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2218.297661010554, + "min_y": 5288.377584358542, + "max_x": 2238.035768249496, + "max_y": 5288.377584358542 + }, + "value": null, + "layer": "0", + "id": "556B40" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2225.332540315074, + "min_y": 5289.124171925472, + "max_x": 2231.3798996071982, + "max_y": 5293.23040354358 + }, + "value": "FEED", + "layer": "0", + "id": "556B41" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2218.862934454086, + "min_y": 5286.51111544122, + "max_x": 2222.8945073155023, + "max_y": 5290.244053275866 + }, + "value": "TEMP.", + "layer": "0", + "id": "556B42" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2225.196554722526, + "min_y": 5286.51111544122, + "max_x": 2233.9316292555945, + "max_y": 5287.630996791613 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "556B45" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2094.355083779731, + "min_y": 5135.882015483047, + "max_x": 2511.398898666235, + "max_y": 5432.883441965493 + }, + "value": null, + "layer": "0", + "id": "556B47" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2144.3306622565055, + "min_y": 5204.1768756581205, + "max_x": 2148.2988139478007, + "max_y": 5208.145027349416 + }, + "value": null, + "layer": "0", + "id": "556B48" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2142.49705398231, + "min_y": 5202.634164375037, + "max_x": 2148.620217479015, + "max_y": 5206.683345226077 + }, + "value": null, + "layer": "0", + "id": "556B49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.518448214736, + "min_y": 5202.634164375037, + "max_x": 2148.620217479015, + "max_y": 5209.690478816508 + }, + "value": null, + "layer": "0", + "id": "556B4A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2145.8742085831777, + "min_y": 5205.720421984793, + "max_x": 2146.7552676211285, + "max_y": 5206.601481022743 + }, + "value": null, + "layer": "0", + "id": "556B4C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2150.409116431307, + "min_y": 5218.559909401044, + "max_x": 2152.162484419696, + "max_y": 5222.398343807439 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556B4D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2150.96333516482, + "min_y": 5219.078819942519, + "max_x": 2151.6082656861845, + "max_y": 5219.723750463883 + }, + "value": null, + "layer": "0", + "id": "556B4F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2148.298921867343, + "min_y": 5216.154250896793, + "max_x": 2151.789567145029, + "max_y": 5218.260096658676 + }, + "value": null, + "layer": "0", + "id": "556B51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2148.729232187054, + "min_y": 5223.45916850617, + "max_x": 2153.4316875612653, + "max_y": 5226.66670404132 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556B52" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2147.9763486871198, + "min_y": 5222.39834380744, + "max_x": 2153.9085783525256, + "max_y": 5227.64389966149 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556B53" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2149.1356069337007, + "min_y": 5217.41157329053, + "max_x": 2153.435993917301, + "max_y": 5221.7119602741295 + }, + "value": null, + "layer": "0", + "id": "556B54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5213.323392321231, + "max_x": 2151.789567145029, + "max_y": 5215.60092058558 + }, + "value": null, + "layer": "0", + "id": "556B5F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2150.9633351648185, + "min_y": 5215.555120480503, + "max_x": 2151.608265686183, + "max_y": 5216.200051001868 + }, + "value": null, + "layer": "0", + "id": "556B65" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5212.760554269294, + "max_x": 2148.859013969595, + "max_y": 5214.597921042406 + }, + "value": null, + "layer": "0", + "id": "556B6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.776420225491, + "min_y": 5209.690478816508, + "max_x": 2148.821207670111, + "max_y": 5209.990291558878 + }, + "value": null, + "layer": "0", + "id": "556B7A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2148.1009375378294, + "min_y": 5209.99029155888, + "max_x": 2148.4966903577647, + "max_y": 5212.760561298404 + }, + "value": null, + "layer": "0", + "id": "556B7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.831071824098, + "min_y": 5215.452104393994, + "max_x": 2148.76681023979, + "max_y": 5221.842464716878 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556B84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.323738673833, + "min_y": 5205.640225636093, + "max_x": 2139.426978529523, + "max_y": 5206.685013080704 + }, + "value": null, + "layer": "0", + "id": "556B85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2142.197241239939, + "min_y": 5205.638557781458, + "max_x": 2142.197241239939, + "max_y": 5206.683345226077 + }, + "value": null, + "layer": "0", + "id": "556B87" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2139.4269715004143, + "min_y": 5205.963075093797, + "max_x": 2142.197241239938, + "max_y": 5206.358827913732 + }, + "value": null, + "layer": "0", + "id": "556B89" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2132.230502631236, + "min_y": 5203.256878800757, + "max_x": 2136.706630761591, + "max_y": 5206.685013080704 + }, + "value": null, + "layer": "0", + "id": "556B91" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2136.045645177424, + "min_y": 5203.6720072339385, + "max_x": 2136.561589594516, + "max_y": 5204.18795165103 + }, + "value": null, + "layer": "0", + "id": "556B9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5201.805700996769, + "max_x": 2136.706630761591, + "max_y": 5203.70864731799 + }, + "value": null, + "layer": "0", + "id": "556B9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5205.658545030702, + "max_x": 2131.677172320026, + "max_y": 5220.593758773192 + }, + "value": null, + "layer": "0", + "id": "556BAA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2131.631372214949, + "min_y": 5205.839846489548, + "max_x": 2132.2763027363135, + "max_y": 5206.484777010913 + }, + "value": null, + "layer": "0", + "id": "556BAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5222.142277459245, + "max_x": 2148.802580667327, + "max_y": 5228.983951378362 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556BBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2141.240145510202, + "min_y": 5220.089684445496, + "max_x": 2148.802580667327, + "max_y": 5221.842464716878 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556BBE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2141.7590560516787, + "min_y": 5220.270985904342, + "max_x": 2142.4039865730433, + "max_y": 5220.915916425706 + }, + "value": null, + "layer": "0", + "id": "556BC3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2129.193047294254, + "min_y": 5220.089992053668, + "max_x": 2140.933634745172, + "max_y": 5221.097525492716 + }, + "value": null, + "layer": "0", + "id": "556BC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2117.169888879966, + "min_y": 5204.152655578529, + "max_x": 2127.246297870471, + "max_y": 5208.196909930716 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556BC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2119.853061814943, + "min_y": 5208.196766611666, + "max_x": 2123.113134898824, + "max_y": 5220.593758773192 + }, + "value": null, + "layer": "0", + "id": "556BCA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2120.034670881953, + "min_y": 5209.022187918173, + "max_x": 2122.9318334399813, + "max_y": 5209.667118439537 + }, + "value": null, + "layer": "0", + "id": "556BCE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2126.742531150946, + "min_y": 5208.503420695746, + "max_x": 2168.793732980558, + "max_y": 5263.915367945859 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556BD5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2128.681149685131, + "min_y": 5264.387708905728, + "max_x": 2140.103939459144, + "max_y": 5265.507590256121 + }, + "value": "P-10202-40A-F1A-n", + "layer": "LINENO", + "id": "556BD6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2131.13028372578, + "min_y": 5230.347012553631, + "max_x": 2142.553073499793, + "max_y": 5231.466893904025 + }, + "value": "P-10204-25A-F1A-n", + "layer": "LINENO", + "id": "556BD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2168.793732980558, + "min_y": 5263.411293618167, + "max_x": 2169.664954392143, + "max_y": 5264.419134665384 + }, + "value": null, + "layer": "0", + "id": "556BDB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2169.6191542870647, + "min_y": 5263.59259507701, + "max_x": 2170.2640848084293, + "max_y": 5264.237525598374 + }, + "value": null, + "layer": "0", + "id": "556BDD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2174.331630938286, + "min_y": 5263.411293618167, + "max_x": 2175.174689163089, + "max_y": 5264.419134665384 + }, + "value": null, + "layer": "0", + "id": "556BE2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2173.7325005219977, + "min_y": 5263.59259507701, + "max_x": 2174.3774310433623, + "max_y": 5264.237525598374 + }, + "value": null, + "layer": "0", + "id": "556BE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2205.02518215972, + "min_y": 5228.46743127202, + "max_x": 2205.025184242948, + "max_y": 5229.512218716632 + }, + "value": null, + "layer": "0", + "id": "556BEC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2352.608824207046, + "min_y": 5339.348831176637, + "max_x": 2353.0988250273845, + "max_y": 5342.288836098646 + }, + "value": null, + "layer": "0", + "id": "556BF9" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5338.858830356306, + "max_x": 2353.0988250273817, + "max_y": 5339.348831176639 + }, + "value": null, + "layer": "0", + "id": "556C00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5345.825326957104, + "max_x": 2353.510335749552, + "max_y": 5365.316229388894 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556C01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5343.710359440562, + "max_x": 2348.320167953133, + "max_y": 5345.49816110512 + }, + "value": null, + "layer": "0", + "id": "556C02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2346.664649067416, + "min_y": 5350.966999555746, + "max_x": 2348.835579277861, + "max_y": 5353.358450426472 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556C05" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2347.3982291229513, + "min_y": 5349.69697664116, + "max_x": 2348.1019992223246, + "max_y": 5350.400746740534 + }, + "value": null, + "layer": "0", + "id": "556C13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2347.194218855236, + "min_y": 5345.825326957104, + "max_x": 2348.306009490041, + "max_y": 5345.825326957104 + }, + "value": null, + "layer": "0", + "id": "556C16" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2347.3982291229513, + "min_y": 5346.3915797723175, + "max_x": 2348.1019992223246, + "max_y": 5347.095349871691 + }, + "value": null, + "layer": "0", + "id": "556C21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2345.576698079368, + "min_y": 5354.539064144488, + "max_x": 2349.4954108912107, + "max_y": 5358.161766952876 + }, + "value": "10214", + "layer": "INSTRUMENT", + "id": "556C26" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2344.8880497778096, + "min_y": 5353.358450426471, + "max_x": 2350.6121785674645, + "max_y": 5359.082579216127 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556C28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2342.537289238245, + "min_y": 5349.576848421264, + "max_x": 2350.1804085734752, + "max_y": 5350.705247975972 + }, + "value": "P10214BA-06", + "layer": "VALVE NO", + "id": "556C29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2342.446632176546, + "min_y": 5346.316228416821, + "max_x": 2350.29685928792, + "max_y": 5347.503875251854 + }, + "value": "P10214BA-07", + "layer": "VALVE NO", + "id": "556C2A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2345.087855000256, + "min_y": 5347.184087235515, + "max_x": 2350.4123733450183, + "max_y": 5352.5086055802785 + }, + "value": null, + "layer": "0", + "id": "556C2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.853908171275, + "min_y": 5362.621854284062, + "max_x": 2359.585374075269, + "max_y": 5367.479670970675 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556C37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2355.66192578622, + "min_y": 5367.479670970675, + "max_x": 2356.773716421028, + "max_y": 5376.949108772237 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556C38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5387.374714076219, + "max_x": 2315.43718347854, + "max_y": 5390.288964680374 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556C40" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2364.45519352488, + "min_y": 5337.197144852559, + "max_x": 2369.1586951965323, + "max_y": 5338.317026202953 + }, + "value": "25Ax40A", + "layer": "VALVE NO", + "id": "556C44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2354.769051177602, + "min_y": 5345.701925233178, + "max_x": 2359.472552849254, + "max_y": 5346.821806583572 + }, + "value": "20Ax25A", + "layer": "VALVE NO", + "id": "556C45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2387.359551255591, + "min_y": 5327.954186564598, + "max_x": 2388.568754342492, + "max_y": 5328.961855803682 + }, + "value": "FC", + "layer": "0", + "id": "556C46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2477.551151330434, + "min_y": 5292.973493731143, + "max_x": 2479.154141877161, + "max_y": 5309.107216134639 + }, + "value": null, + "layer": "0", + "id": "556C56" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2477.7387261570775, + "min_y": 5307.719716412113, + "max_x": 2478.1746991895207, + "max_y": 5308.155689444556 + }, + "value": null, + "layer": "0", + "id": "556C62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2480.613136106581, + "min_y": 5288.700460617318, + "max_x": 2485.716143245002, + "max_y": 5291.144279830561 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556C6C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2484.5523021821596, + "min_y": 5288.881762076163, + "max_x": 2485.197232703524, + "max_y": 5289.5266925975275 + }, + "value": null, + "layer": "0", + "id": "556C71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2485.994490823251, + "min_y": 5288.700768225485, + "max_x": 2485.994490823251, + "max_y": 5289.708301664536 + }, + "value": null, + "layer": "0", + "id": "556C72" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2481.132046648059, + "min_y": 5288.881762076163, + "max_x": 2481.7769771694234, + "max_y": 5289.5266925975275 + }, + "value": null, + "layer": "0", + "id": "556C7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2480.306625341551, + "min_y": 5288.700768225485, + "max_x": 2480.306625341551, + "max_y": 5289.708301664536 + }, + "value": null, + "layer": "0", + "id": "556C7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5329.166025052239, + "max_x": 2421.483664564889, + "max_y": 5334.392138020742 + }, + "value": null, + "layer": "0", + "id": "556C82" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5331.779081536491, + "max_x": 2421.483664564889, + "max_y": 5331.779081536491 + }, + "value": null, + "layer": "0", + "id": "556C83" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2402.446816362026, + "min_y": 5332.525669103421, + "max_x": 2415.475216847997, + "max_y": 5336.63190072153 + }, + "value": "LIGHT ENDS", + "layer": "0", + "id": "556C84" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2402.310830769479, + "min_y": 5329.912612619168, + "max_x": 2406.342403630895, + "max_y": 5331.032493969561 + }, + "value": "PRESS.", + "layer": "0", + "id": "556C87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.64445103792, + "min_y": 5329.912612619168, + "max_x": 2417.379525570989, + "max_y": 5331.032493969561 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "556C88" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5329.166025052239, + "max_x": 2421.483664564889, + "max_y": 5337.378488288458 + }, + "value": null, + "layer": "0", + "id": "556C8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.708516024228, + "min_y": 5285.05360134991, + "max_x": 2317.002118189907, + "max_y": 5287.879523464996 + }, + "value": null, + "layer": "0", + "id": "556C91" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.717982471455, + "min_y": 5287.879523464996, + "max_x": 2316.965458640372, + "max_y": 5287.879523464996 + }, + "value": null, + "layer": "0", + "id": "556C92" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2316.1082516449337, + "min_y": 5282.113605130981, + "max_x": 2316.5982524652723, + "max_y": 5285.053610052992 + }, + "value": null, + "layer": "0", + "id": "556C9D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5281.623604310649, + "max_x": 2316.5982524652695, + "max_y": 5282.113605130982 + }, + "value": null, + "layer": "0", + "id": "556CA4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5286.693346501982, + "max_x": 2320.652443093926, + "max_y": 5288.481148166541 + }, + "value": null, + "layer": "0", + "id": "556CAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.524673976378, + "min_y": 5292.113710887368, + "max_x": 2320.636464611186, + "max_y": 5294.754906129615 + }, + "value": null, + "layer": "0", + "id": "556CAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5290.028358302182, + "max_x": 2320.652443093926, + "max_y": 5292.113710887368 + }, + "value": null, + "layer": "0", + "id": "556CB2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2319.7305042637445, + "min_y": 5292.679963702581, + "max_x": 2320.4342743631178, + "max_y": 5293.383733801954 + }, + "value": null, + "layer": "0", + "id": "556CBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.526493996029, + "min_y": 5288.808314018524, + "max_x": 2320.638284630833, + "max_y": 5289.42454546466 + }, + "value": null, + "layer": "0", + "id": "556CBF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2319.7305042637445, + "min_y": 5289.374566833736, + "max_x": 2320.4342743631178, + "max_y": 5290.078336933109 + }, + "value": null, + "layer": "0", + "id": "556CCB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2319.018164881555, + "min_y": 5298.25198505207, + "max_x": 2320.5856500062923, + "max_y": 5299.558222656018 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556CD1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2317.369908852694, + "min_y": 5289.333534610404, + "max_x": 2328.1502903343167, + "max_y": 5290.495469614641 + }, + "value": "P10218BA-06", + "layer": "VALVE NO", + "id": "556CD4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2343.3700446572857, + "min_y": 5312.596760246912, + "max_x": 2349.0941734469407, + "max_y": 5318.320889036568 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556CD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2338.018661883057, + "min_y": 5309.034625581006, + "max_x": 2339.227864969958, + "max_y": 5310.04229482009 + }, + "value": "FC", + "layer": "0", + "id": "556CDC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2369.644285597022, + "min_y": 5272.259249149908, + "max_x": 2381.067075371035, + "max_y": 5273.3791305003015 + }, + "value": "P-10222-25A-F2A-n", + "layer": "LINENO", + "id": "556CDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2350.147228590161, + "min_y": 5264.981242560718, + "max_x": 2353.515242296555, + "max_y": 5266.871398246951 + }, + "value": null, + "layer": "0", + "id": "556CDF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2411.248058829454, + "min_y": 5236.847097373703, + "max_x": 2415.860080250791, + "max_y": 5256.180261571154 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556CE1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2417.901026174452, + "min_y": 5251.601568181857, + "max_x": 2420.559627191194, + "max_y": 5254.610078517632 + }, + "value": null, + "layer": "0", + "id": "556CE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2416.392941100982, + "min_y": 5229.94310120104, + "max_x": 2420.229711665352, + "max_y": 5235.01788347312 + }, + "value": null, + "layer": "0", + "id": "556CE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2429.402722820028, + "min_y": 5231.812448790481, + "max_x": 2431.434054482276, + "max_y": 5233.125303947034 + }, + "value": null, + "layer": "0", + "id": "556CE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2434.204317192692, + "min_y": 5228.940337831331, + "max_x": 2437.650582120268, + "max_y": 5232.989518682374 + }, + "value": null, + "layer": "0", + "id": "556CE9" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2407.242276969008, + "min_y": 5229.343966687673, + "max_x": 2434.2043171926903, + "max_y": 5251.74159369554 + }, + "value": null, + "layer": "0", + "id": "556CEB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.876287779449, + "min_y": 5229.564720111688, + "max_x": 2429.402773968408, + "max_y": 5232.991186537001 + }, + "value": null, + "layer": "0", + "id": "556CF4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2428.167052333668, + "min_y": 5229.97984854487, + "max_x": 2428.68299675076, + "max_y": 5230.495792961961 + }, + "value": null, + "layer": "0", + "id": "556CFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5228.1135423077, + "max_x": 2428.828037917836, + "max_y": 5229.564720111688 + }, + "value": null, + "layer": "0", + "id": "556D01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5238.461225493812, + "max_x": 2440.195615352916, + "max_y": 5240.958409067133 + }, + "value": null, + "layer": "0", + "id": "556D0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.103169147623, + "min_y": 5240.910594465894, + "max_x": 2440.300731268498, + "max_y": 5251.324052876554 + }, + "value": null, + "layer": "0", + "id": "556D13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.087123342948, + "min_y": 5232.46712496006, + "max_x": 2440.204956968664, + "max_y": 5235.690962783393 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556D14" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2439.4481637458343, + "min_y": 5235.6909627833975, + "max_x": 2439.8439165657696, + "max_y": 5238.461232522922 + }, + "value": null, + "layer": "0", + "id": "556D19" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2419.9885025186904, + "min_y": 5252.889784982495, + "max_x": 2422.2964376890236, + "max_y": 5253.7928968873675 + }, + "value": null, + "layer": "0", + "id": "556D22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2417.847916386274, + "min_y": 5252.53900145646, + "max_x": 2422.431589329085, + "max_y": 5261.924395044166 + }, + "value": null, + "layer": "0", + "id": "556D24" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2411.8459619764712, + "min_y": 5252.003041783322, + "max_x": 2415.724928610731, + "max_y": 5253.075674611208 + }, + "value": null, + "layer": "0", + "id": "556D2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5238.795626949353, + "max_x": 2437.229118245521, + "max_y": 5241.52682591203 + }, + "value": null, + "layer": "0", + "id": "556D36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5242.130638749553, + "max_x": 2439.644220136159, + "max_y": 5246.052267064537 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556D38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.104989167271, + "min_y": 5246.052267064537, + "max_x": 2437.216779802079, + "max_y": 5246.857186576985 + }, + "value": null, + "layer": "0", + "id": "556D39" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2434.3235269578176, + "min_y": 5244.78224414995, + "max_x": 2438.9946019722342, + "max_y": 5251.528261591402 + }, + "value": null, + "layer": "0", + "id": "556D47" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2436.3071794153393, + "min_y": 5241.476847281107, + "max_x": 2437.0109495147126, + "max_y": 5242.180617380481 + }, + "value": null, + "layer": "0", + "id": "556D55" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2434.739199601062, + "min_y": 5247.702405016599, + "max_x": 2439.447635809434, + "max_y": 5250.953598802299 + }, + "value": "10221C", + "layer": "INSTRUMENT", + "id": "556D5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2423.484111374627, + "min_y": 5251.651218728537, + "max_x": 2441.582870879752, + "max_y": 5258.310220278033 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556D5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2423.332279509884, + "min_y": 5256.189864792369, + "max_x": 2437.5273937360757, + "max_y": 5259.80924951947 + }, + "value": "N2-10711-15A-F1A-n", + "layer": "LINENO", + "id": "556D5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2417.894791742862, + "min_y": 5262.605864173843, + "max_x": 2435.311854573056, + "max_y": 5265.648415619693 + }, + "value": "VG-10432-50A-F1A-n", + "layer": "LINENO", + "id": "556D60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2443.727822645614, + "min_y": 5245.921217617906, + "max_x": 2455.948172305467, + "max_y": 5250.675923104772 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556D61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2416.458291352534, + "min_y": 5257.032456661066, + "max_x": 2451.021817346759, + "max_y": 5264.232597866348 + }, + "value": null, + "layer": "UTIL", + "id": "556D62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2440.061320220328, + "min_y": 5261.200433277381, + "max_x": 2450.8121811841047, + "max_y": 5265.014787746556 + }, + "value": "SC-10128", + "layer": "0", + "id": "556D63" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2451.021817346754, + "min_y": 5260.435243337471, + "max_x": 2452.510969053451, + "max_y": 5263.413546750865 + }, + "value": null, + "layer": "TEXT", + "id": "556D66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2418.144754477251, + "min_y": 5256.969983742004, + "max_x": 2447.364734102637, + "max_y": 5259.650456814064 + }, + "value": null, + "layer": "UTIL", + "id": "556D68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2447.364734102634, + "min_y": 5256.969983742006, + "max_x": 2447.364734102634, + "max_y": 5259.650456814064 + }, + "value": null, + "layer": "0", + "id": "556D69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2441.318989743724, + "min_y": 5255.508183705302, + "max_x": 2446.6944202256127, + "max_y": 5259.0714023281735 + }, + "value": "N", + "layer": "0", + "id": "556D6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2425.933575818877, + "min_y": 5242.862283031254, + "max_x": 2430.637077221758, + "max_y": 5246.04692109231 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556D72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2407.644970101005, + "min_y": 5235.157140921194, + "max_x": 2411.5636614159043, + "max_y": 5238.30967838854 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "556D74" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2410.8430466680406, + "min_y": 5246.624357139457, + "max_x": 2411.279019700484, + "max_y": 5247.0603301719 + }, + "value": null, + "layer": "0", + "id": "556D7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5246.468638274206, + "max_x": 2410.874007539075, + "max_y": 5247.21604903715 + }, + "value": null, + "layer": "0", + "id": "556D7C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2407.0746048788674, + "min_y": 5234.911458804028, + "max_x": 2411.508060472485, + "max_y": 5240.135120029204 + }, + "value": null, + "layer": "0", + "id": "556D85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5239.543428131509, + "max_x": 2411.629803226521, + "max_y": 5240.290838894452 + }, + "value": null, + "layer": "0", + "id": "556D87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2423.484111374627, + "min_y": 5236.847097373703, + "max_x": 2427.935715225463, + "max_y": 5251.192158911514 + }, + "value": null, + "layer": "0", + "id": "556D8E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2425.7548372718206, + "min_y": 5239.069097292728, + "max_x": 2426.190810304264, + "max_y": 5239.505070325171 + }, + "value": null, + "layer": "0", + "id": "556D91" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2425.7189748882365, + "min_y": 5241.984913639645, + "max_x": 2430.1524555626893, + "max_y": 5246.418394314099 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556D9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2414.924891267089, + "min_y": 5252.28891805273, + "max_x": 2416.088992921932, + "max_y": 5254.986903852424 + }, + "value": null, + "layer": "0", + "id": "556D9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2413.627918979112, + "min_y": 5255.595590894492, + "max_x": 2418.330375159459, + "max_y": 5258.941376325277 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556DA7" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2407.242276969008, + "min_y": 5235.0178834731205, + "max_x": 2429.639903976876, + "max_y": 5257.415510480988 + }, + "value": null, + "layer": "0", + "id": "556DA8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2413.249782235117, + "min_y": 5254.986903852424, + "max_x": 2417.7641019539033, + "max_y": 5259.50122357121 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556DAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2429.402722820028, + "min_y": 5231.812448790481, + "max_x": 2429.402825129812, + "max_y": 5233.125303947034 + }, + "value": null, + "layer": "0", + "id": "556DB1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2420.832474355071, + "min_y": 5231.899730468443, + "max_x": 2421.876287779449, + "max_y": 5233.037855160949 + }, + "value": null, + "layer": "0", + "id": "556DB2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2420.179819956974, + "min_y": 5232.117519761454, + "max_x": 2420.8823660634525, + "max_y": 5232.8200658679325 + }, + "value": null, + "layer": "0", + "id": "556DBA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2435.6665062746206, + "min_y": 5230.483049114412, + "max_x": 2439.6346579659157, + "max_y": 5234.451200805707 + }, + "value": null, + "layer": "0", + "id": "556DBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2435.345102743406, + "min_y": 5228.940337831331, + "max_x": 2439.95606149713, + "max_y": 5230.889899888571 + }, + "value": null, + "layer": "0", + "id": "556DC1" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2437.210052601293, + "min_y": 5232.026595441084, + "max_x": 2438.0911116392435, + "max_y": 5232.907654479035 + }, + "value": null, + "layer": "0", + "id": "556DC3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2423.2661248584054, + "min_y": 5251.745615851394, + "max_x": 2423.7020978908486, + "max_y": 5252.181588883837 + }, + "value": null, + "layer": "0", + "id": "556DCC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2421.725313016522, + "min_y": 5251.134429309427, + "max_x": 2423.837249530909, + "max_y": 5255.907452523136 + }, + "value": null, + "layer": "0", + "id": "556DCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2413.33034245179, + "min_y": 5233.33816441573, + "max_x": 2433.9068130262667, + "max_y": 5236.007480977672 + }, + "value": "T10221BA-03", + "layer": "VALVE NO", + "id": "556DD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2416.458291352534, + "min_y": 5264.232597866348, + "max_x": 2428.808813348867, + "max_y": 5264.232597866348 + }, + "value": null, + "layer": "0", + "id": "556DD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2419.1427303632, + "min_y": 5266.348521531927, + "max_x": 2423.979542710803, + "max_y": 5267.356190771011 + }, + "value": "BV-10221", + "layer": "0", + "id": "556DDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.050898024008, + "min_y": 5225.515768106703, + "max_x": 2419.473687798021, + "max_y": 5226.635649457096 + }, + "value": "P-10224-40A-F2A-n", + "layer": "LINENO", + "id": "556DDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2430.316716856549, + "min_y": 5233.419578374663, + "max_x": 2435.0202185282014, + "max_y": 5234.539459725056 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "556DE0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2440.507146205581, + "min_y": 5239.288232722706, + "max_x": 2447.8983631181777, + "max_y": 5243.037970736102 + }, + "value": "20Ax25A", + "layer": "VALVE NO", + "id": "556DE1" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2422.9206158745164, + "min_y": 5249.352439119762, + "max_x": 2424.04049722491, + "max_y": 5250.472320470156 + }, + "value": null, + "layer": "0", + "id": "556DE5" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5236.287156698506, + "max_x": 2413.9615650713686, + "max_y": 5237.4070380489 + }, + "value": null, + "layer": "0", + "id": "556DE7" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2422.9206158745164, + "min_y": 5236.287156698506, + "max_x": 2424.04049722491, + "max_y": 5237.4070380489 + }, + "value": null, + "layer": "0", + "id": "556DE8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2487.6300834839744, + "min_y": 5305.478835477202, + "max_x": 2488.749964834368, + "max_y": 5306.598716827596 + }, + "value": null, + "layer": "0", + "id": "556DED" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2477.551151330433, + "min_y": 5292.413553055946, + "max_x": 2478.6710326808266, + "max_y": 5293.53343440634 + }, + "value": null, + "layer": "0", + "id": "556DEF" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2487.6300834839744, + "min_y": 5292.413553055946, + "max_x": 2488.749964834368, + "max_y": 5293.53343440634 + }, + "value": null, + "layer": "0", + "id": "556DF0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2495.959343687949, + "min_y": 5312.161098499973, + "max_x": 2507.7178470198846, + "max_y": 5319.626049627167 + }, + "value": "SC-10128", + "layer": "0", + "id": "556DF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2485.640287193337, + "min_y": 5314.566538773653, + "max_x": 2511.221027786475, + "max_y": 5317.544097611194 + }, + "value": null, + "layer": "TEXT", + "id": "556DF4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2506.451889946942, + "min_y": 5311.583357685941, + "max_x": 2506.451889946942, + "max_y": 5314.263830757998 + }, + "value": null, + "layer": "0", + "id": "556DFB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2490.812034865306, + "min_y": 5307.387985801756, + "max_x": 2504.2727636754344, + "max_y": 5310.841137471765 + }, + "value": "UFD-9005", + "layer": "0", + "id": "556DFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2473.629947069618, + "min_y": 5314.119248832395, + "max_x": 2478.134832872841, + "max_y": 5315.608400539093 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556E03" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2465.980440926531, + "min_y": 5313.385200814231, + "max_x": 2472.2517764887343, + "max_y": 5314.878375948089 + }, + "value": "E-10219", + "layer": "0", + "id": "556E04" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5315.60840053909, + "max_x": 2473.629947069623, + "max_y": 5315.60840053909 + }, + "value": null, + "layer": "TEXT", + "id": "556E06" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2485.633567905234, + "min_y": 5316.392672001892, + "max_x": 2497.728286489483, + "max_y": 5317.512553352285 + }, + "value": "VG-10431-50A-F1A-n", + "layer": "LINENO", + "id": "556E0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2482.103011917255, + "min_y": 5310.757409521261, + "max_x": 2494.347484849537, + "max_y": 5319.773023457755 + }, + "value": null, + "layer": "0", + "id": "556E0C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2483.22505687727, + "min_y": 5320.013941082164, + "max_x": 2491.0848769421254, + "max_y": 5322.676665362239 + }, + "value": "-200~400mmH2O", + "layer": "0", + "id": "556E0F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2273.229401442199, + "min_y": 5201.317590546777, + "max_x": 2280.6206183547956, + "max_y": 5205.300493352017 + }, + "value": "P10216BA-02", + "layer": "VALVE NO", + "id": "556E13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5214.432650959248, + "max_x": 2281.388792354475, + "max_y": 5216.220452623806 + }, + "value": null, + "layer": "0", + "id": "556E14" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.261023236926, + "min_y": 5219.853015344635, + "max_x": 2281.372813871735, + "max_y": 5222.494210586881 + }, + "value": null, + "layer": "0", + "id": "556E17" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5217.767662759449, + "max_x": 2285.224667953128, + "max_y": 5219.853015344635 + }, + "value": null, + "layer": "0", + "id": "556E1A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2277.9566741791537, + "min_y": 5220.419268159846, + "max_x": 2283.6808029688086, + "max_y": 5228.218339376537 + }, + "value": null, + "layer": "0", + "id": "556E25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.262843256577, + "min_y": 5216.54761847579, + "max_x": 2281.374633891382, + "max_y": 5217.163849921925 + }, + "value": null, + "layer": "0", + "id": "556E27" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2280.4668535242936, + "min_y": 5217.113871291003, + "max_x": 2281.170623623667, + "max_y": 5217.817641390377 + }, + "value": null, + "layer": "0", + "id": "556E33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2278.645322480713, + "min_y": 5223.674824304897, + "max_x": 2282.5640352925557, + "max_y": 5227.297527113284 + }, + "value": "10216", + "layer": "INSTRUMENT", + "id": "556E38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5213.540447314293, + "max_x": 2285.783200120303, + "max_y": 5215.968972129426 + }, + "value": null, + "layer": "0", + "id": "556E3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5215.968972129426, + "max_x": 2285.783200120292, + "max_y": 5216.231997438991 + }, + "value": null, + "layer": "0", + "id": "556E3E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2285.025123688525, + "min_y": 5210.770184603879, + "max_x": 2285.4208765084604, + "max_y": 5213.5404543434015 + }, + "value": null, + "layer": "0", + "id": "556E4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2286.97057563442, + "min_y": 5216.880453333459, + "max_x": 2303.333469431366, + "max_y": 5219.3850947412375 + }, + "value": "P-10211-20A-F1A-H50", + "layer": "LINENO", + "id": "556E55" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2166.594352511682, + "min_y": 5282.962848413422, + "max_x": 2169.105467031852, + "max_y": 5283.324009505387 + }, + "value": null, + "layer": "0", + "id": "556E59" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2138.444056157775, + "min_y": 5202.989070157965, + "max_x": 2143.147557829427, + "max_y": 5204.108951508359 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "556E60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5282.434783912703, + "max_x": 2349.034840124117, + "max_y": 5287.660896881206 + }, + "value": null, + "layer": "0", + "id": "556E61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5285.047840396955, + "max_x": 2349.034840124117, + "max_y": 5285.047840396955 + }, + "value": null, + "layer": "0", + "id": "556E62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2335.020509950775, + "min_y": 5285.794427963883, + "max_x": 2342.378971481817, + "max_y": 5289.900659581992 + }, + "value": "PRODUCT", + "layer": "0", + "id": "556E63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2329.862006328706, + "min_y": 5283.181371479631, + "max_x": 2333.893579190122, + "max_y": 5286.914309314277 + }, + "value": "TEMP.", + "layer": "0", + "id": "556E64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2336.195626597147, + "min_y": 5283.181371479631, + "max_x": 2344.9307011302158, + "max_y": 5284.301252830024 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "556E67" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5282.434783912703, + "max_x": 2349.034840124117, + "max_y": 5290.647247148921 + }, + "value": null, + "layer": "0", + "id": "556E69" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2125.8930963603098, + "min_y": 5341.666254461189, + "max_x": 2127.5729183859003, + "max_y": 5344.185987499574 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556E6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2124.910969428755, + "min_y": 5345.242839067077, + "max_x": 2129.613424802966, + "max_y": 5348.871152554266 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556E6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2135.276654617871, + "min_y": 5345.240879710672, + "max_x": 2146.923420661962, + "max_y": 5349.186687762732 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556E71" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2139.222945822775, + "min_y": 5341.666254461189, + "max_x": 2140.9027678483653, + "max_y": 5344.185987499574 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556E75" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2207.322869974305, + "min_y": 5341.651338867881, + "max_x": 2209.0026919998954, + "max_y": 5344.171071906265 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "556E7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2306.714113999754, + "min_y": 5275.117094840984, + "max_x": 2311.417615671406, + "max_y": 5276.236976191377 + }, + "value": "40Ax25A", + "layer": "VALVE NO", + "id": "556E80" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2369.798399057156, + "min_y": 5278.830763818422, + "max_x": 2381.24314784448, + "max_y": 5282.338181303448 + }, + "value": "P-10220-25A-F1A-n", + "layer": "LINENO", + "id": "556E81" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5380.963300472426, + "max_x": 2381.051940777394, + "max_y": 5383.305191928954 + }, + "value": null, + "layer": "0", + "id": "556E82" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5379.675654502378, + "max_x": 2381.051940777394, + "max_y": 5380.673754533138 + }, + "value": null, + "layer": "0", + "id": "556E84" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2380.2516641547613, + "min_y": 5381.468346559902, + "max_x": 2380.8745096419366, + "max_y": 5382.091192047076 + }, + "value": null, + "layer": "0", + "id": "556E85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2119.853061814943, + "min_y": 5208.196766611666, + "max_x": 2120.86090286216, + "max_y": 5209.067988023249 + }, + "value": null, + "layer": "0", + "id": "556E92" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5219.331862366555, + "max_x": 2160.258765542089, + "max_y": 5223.098950673573 + }, + "value": null, + "layer": "0", + "id": "556EA9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5223.39906322869, + "max_x": 2160.36817385178, + "max_y": 5225.488892102378 + }, + "value": null, + "layer": "0", + "id": "556EAA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2159.4317073298976, + "min_y": 5221.933945769669, + "max_x": 2160.077282781784, + "max_y": 5222.579521221555 + }, + "value": null, + "layer": "0", + "id": "556EAC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2158.249359611581, + "min_y": 5221.573974029153, + "max_x": 2161.2596305001007, + "max_y": 5224.5842449176735 + }, + "value": null, + "layer": "0", + "id": "556EB0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2202.535237027652, + "min_y": 5231.7575480593605, + "max_x": 2203.1801675490165, + "max_y": 5232.402478580725 + }, + "value": null, + "layer": "0", + "id": "556EC5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2126.9241402179555, + "min_y": 5209.022331237223, + "max_x": 2127.56907073932, + "max_y": 5209.667261758587 + }, + "value": null, + "layer": "0", + "id": "556ECA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2126.742531150946, + "min_y": 5208.196909930716, + "max_x": 2127.750064589996, + "max_y": 5208.196909930716 + }, + "value": null, + "layer": "0", + "id": "556ECC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2141.082925221736, + "min_y": 5312.780455832475, + "max_x": 2158.1169179973303, + "max_y": 5313.9223712550765 + }, + "value": "DP10201CV-01", + "layer": "VALVE NO", + "id": "556ED0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2167.369173855494, + "min_y": 5274.875341300627, + "max_x": 2174.7603907680905, + "max_y": 5275.99522265102 + }, + "value": "T10201BA-05", + "layer": "VALVE NO", + "id": "556EDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2167.332823202992, + "min_y": 5270.12725176958, + "max_x": 2174.7240401155887, + "max_y": 5271.247133119973 + }, + "value": "T10201BA-04", + "layer": "VALVE NO", + "id": "556EE0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2288.2778110245185, + "min_y": 5234.392098168962, + "max_x": 2288.980357130997, + "max_y": 5235.09464427544 + }, + "value": null, + "layer": "0", + "id": "556EE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2287.712543032931, + "min_y": 5234.194599942735, + "max_x": 2293.053788043593, + "max_y": 5234.7433712222 + }, + "value": null, + "layer": "0", + "id": "556EE5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2293.053788043593, + "min_y": 5220.52298202896, + "max_x": 2293.053788043593, + "max_y": 5234.7433712222 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556EEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2123.422076351934, + "min_y": 5335.214938766762, + "max_x": 2124.58106596017, + "max_y": 5337.169505527426 + }, + "value": null, + "layer": "0", + "id": "556EEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2288.961686385085, + "min_y": 5229.305477030363, + "max_x": 2296.3529032976817, + "max_y": 5230.425358380757 + }, + "value": "P10216BA-06", + "layer": "VALVE NO", + "id": "556EF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2260.957512030705, + "min_y": 5271.350410717556, + "max_x": 2268.3487289433015, + "max_y": 5272.470292067949 + }, + "value": "C10211BA-03", + "layer": "VALVE NO", + "id": "556EF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2260.983115237712, + "min_y": 5262.042096239264, + "max_x": 2268.3743321503084, + "max_y": 5263.161977589657 + }, + "value": "C10211BA-02", + "layer": "VALVE NO", + "id": "556EF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.072032008379, + "min_y": 5276.626614577134, + "max_x": 2283.035012339192, + "max_y": 5279.76672784532 + }, + "value": null, + "layer": "0", + "id": "556EF8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2281.531237526277, + "min_y": 5279.76672784532, + "max_x": 2284.941847185233, + "max_y": 5283.283881693535 + }, + "value": null, + "layer": "0", + "id": "556EF9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2282.134968006487, + "min_y": 5278.4989137472585, + "max_x": 2282.8375141129654, + "max_y": 5279.201459853737 + }, + "value": null, + "layer": "0", + "id": "556EFB" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2280.1439576419043, + "min_y": 5277.851612488562, + "max_x": 2284.828524477548, + "max_y": 5282.5361793242055 + }, + "value": null, + "layer": "0", + "id": "556EFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.623503377121, + "min_y": 5280.389212355119, + "max_x": 2286.322699102643, + "max_y": 5280.807849943757 + }, + "value": null, + "layer": "0", + "id": "556F15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5379.974622537186, + "max_x": 2277.135694933785, + "max_y": 5385.324858475049 + }, + "value": null, + "layer": "0", + "id": "556F1A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2274.3288157550387, + "min_y": 5380.539890528771, + "max_x": 2275.0313618615173, + "max_y": 5381.24243663525 + }, + "value": null, + "layer": "0", + "id": "556F1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5379.648025690162, + "max_x": 2275.228860087745, + "max_y": 5379.974622537186 + }, + "value": null, + "layer": "0", + "id": "556F1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2272.018139851137, + "min_y": 5386.257400232892, + "max_x": 2276.7205952253485, + "max_y": 5389.914848338246 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "556F1F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2272.337805390456, + "min_y": 5379.8925892700745, + "max_x": 2277.0223722261, + "max_y": 5384.577156105718 + }, + "value": null, + "layer": "0", + "id": "556F21" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2277.0789875954456, + "min_y": 5382.656732345391, + "max_x": 2277.877507450798, + "max_y": 5383.455252200743 + }, + "value": null, + "layer": "0", + "id": "556F34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2275.324921589159, + "min_y": 5380.266786624207, + "max_x": 2279.0205300454572, + "max_y": 5380.826727299404 + }, + "value": "C10211BA-12", + "layer": "0", + "id": "556F3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2276.245338695172, + "min_y": 5384.032786450728, + "max_x": 2279.94094715147, + "max_y": 5384.592727125925 + }, + "value": "C10211BA-13", + "layer": "0", + "id": "556F3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5382.425255831088, + "max_x": 2278.887759593873, + "max_y": 5383.686728715031 + }, + "value": null, + "layer": "0", + "id": "556F3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2281.102932851209, + "min_y": 5379.970782607211, + "max_x": 2284.513542510165, + "max_y": 5385.321018545073 + }, + "value": null, + "layer": "0", + "id": "556F43" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2281.706663331419, + "min_y": 5380.536050598795, + "max_x": 2282.4092094378975, + "max_y": 5381.238596705273 + }, + "value": null, + "layer": "0", + "id": "556F45" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5379.644185760187, + "max_x": 2282.606707664124, + "max_y": 5379.970782607211 + }, + "value": null, + "layer": "0", + "id": "556F47" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2279.7156529668364, + "min_y": 5379.888749340099, + "max_x": 2284.40021980248, + "max_y": 5384.573316175743 + }, + "value": null, + "layer": "0", + "id": "556F48" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2282.702769165537, + "min_y": 5380.26294669423, + "max_x": 2286.398377621835, + "max_y": 5380.822887369427 + }, + "value": "C10211BA-14", + "layer": "0", + "id": "556F5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2283.623186271551, + "min_y": 5384.02894652075, + "max_x": 2287.318794727849, + "max_y": 5384.588887195947 + }, + "value": "C10211BA-15", + "layer": "0", + "id": "556F5E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.195198702052, + "min_y": 5382.421415901113, + "max_x": 2286.265607170252, + "max_y": 5383.682888785054 + }, + "value": null, + "layer": "0", + "id": "556F5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2311.487423419532, + "min_y": 5286.173224744354, + "max_x": 2318.8786403321287, + "max_y": 5290.2176761290675 + }, + "value": "P10218CV-01", + "layer": "VALVE NO", + "id": "556F66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2329.132511630165, + "min_y": 5305.95951325133, + "max_x": 2331.827588430652, + "max_y": 5307.09962081232 + }, + "value": null, + "layer": "0", + "id": "556F68" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2330.1281649807233, + "min_y": 5306.177681982142, + "max_x": 2330.8319350800966, + "max_y": 5306.881452081515 + }, + "value": null, + "layer": "0", + "id": "556F70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2318.945881037639, + "min_y": 5320.451445177144, + "max_x": 2319.957547430975, + "max_y": 5323.891592500679 + }, + "value": null, + "layer": "0", + "id": "556F71" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2319.1394715203173, + "min_y": 5320.953905614108, + "max_x": 2319.7639569482985, + "max_y": 5321.57839104209 + }, + "value": null, + "layer": "0", + "id": "556F75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2319.064936967961, + "min_y": 5318.652734340158, + "max_x": 2319.833216759212, + "max_y": 5320.16113686868 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556F80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5268.394960704585, + "max_x": 2356.653237539366, + "max_y": 5269.40424949287 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556F84" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5268.574152732386, + "max_x": 2356.1293722792166, + "max_y": 5269.220206867374 + }, + "value": null, + "layer": "0", + "id": "556F86" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2354.611364448747, + "min_y": 5269.627155836619, + "max_x": 2362.674510171579, + "max_y": 5270.747037187012 + }, + "value": "HD10218BA-06", + "layer": "VALVE NO", + "id": "556F8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2439.074166355663, + "min_y": 5249.551794026522, + "max_x": 2442.180612509972, + "max_y": 5251.651218728537 + }, + "value": null, + "layer": "0", + "id": "556F9A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2439.2923350864726, + "min_y": 5252.21747154375, + "max_x": 2439.996105185846, + "max_y": 5252.921241643124 + }, + "value": null, + "layer": "0", + "id": "556FA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2451.930099072528, + "min_y": 5250.139709225328, + "max_x": 2455.623324972938, + "max_y": 5252.479551636167 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556FA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2445.089998598792, + "min_y": 5230.958845563977, + "max_x": 2446.230106159783, + "max_y": 5245.921217617906 + }, + "value": null, + "layer": "0", + "id": "556FA9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2445.3081673296006, + "min_y": 5246.48747043312, + "max_x": 2446.011937428974, + "max_y": 5247.191240532493 + }, + "value": null, + "layer": "0", + "id": "556FB4" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2420.051508364041, + "min_y": 5225.86617862843, + "max_x": 2424.184550203618, + "max_y": 5231.646585590866 + }, + "value": null, + "layer": "0", + "id": "556FBB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2411.508060472484, + "min_y": 5237.128186600838, + "max_x": 2412.841683720975, + "max_y": 5237.128186600838 + }, + "value": null, + "layer": "0", + "id": "556FBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2427.353664398042, + "min_y": 5235.745128754555, + "max_x": 2428.517766052885, + "max_y": 5241.984913639647 + }, + "value": null, + "layer": "0", + "id": "556FBF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2427.7177287092404, + "min_y": 5236.957596307263, + "max_x": 2428.1537017416836, + "max_y": 5237.393569339706 + }, + "value": null, + "layer": "0", + "id": "556FC0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2426.5081519195205, + "min_y": 5238.603905460181, + "max_x": 2429.3632785314035, + "max_y": 5241.459032072064 + }, + "value": null, + "layer": "0", + "id": "556FCB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2427.532701849842, + "min_y": 5235.192811757293, + "max_x": 2428.338728601085, + "max_y": 5235.848429802979 + }, + "value": null, + "layer": "0", + "id": "556FD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2359.029478757868, + "min_y": 5362.621854284062, + "max_x": 2360.141269392673, + "max_y": 5367.479670970675 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556FD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2359.027658738217, + "min_y": 5367.479670970675, + "max_x": 2360.139449373025, + "max_y": 5374.327567039411 + }, + "value": null, + "layer": "0", + "id": "556FDE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2355.8677560735864, + "min_y": 5366.20964805609, + "max_x": 2356.5715261729597, + "max_y": 5366.913418155464 + }, + "value": null, + "layer": "0", + "id": "556FEB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.296192834222, + "min_y": 5365.316229388894, + "max_x": 2353.409803488678, + "max_y": 5374.263562901479 + }, + "value": null, + "layer": "0", + "id": "556FEC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2352.5020231215885, + "min_y": 5366.20964805609, + "max_x": 2353.205793220962, + "max_y": 5366.913418155464 + }, + "value": null, + "layer": "0", + "id": "556FF4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2341.224359228392, + "min_y": 5374.263562901479, + "max_x": 2352.852088151626, + "max_y": 5374.263562901479 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "556FF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2486.854597901845, + "min_y": 5307.229444759679, + "max_x": 2489.623748208807, + "max_y": 5309.118868113086 + }, + "value": null, + "layer": "0", + "id": "556FF8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2486.9897495419036, + "min_y": 5308.129438140763, + "max_x": 2489.4885965687454, + "max_y": 5308.860894891343 + }, + "value": null, + "layer": "0", + "id": "556FF9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2486.854597901845, + "min_y": 5307.524928477816, + "max_x": 2487.560874214408, + "max_y": 5309.414351831223 + }, + "value": null, + "layer": "0", + "id": "557002" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2491.227195285944, + "min_y": 5293.750001895332, + "max_x": 2492.7950290869044, + "max_y": 5295.0565300627995 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "55700D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5293.481050553221, + "max_x": 2490.083588082858, + "max_y": 5293.481050553221 + }, + "value": null, + "layer": "0", + "id": "557010" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2469.026431736596, + "min_y": 5305.126547306204, + "max_x": 2477.6027389352557, + "max_y": 5309.039566926715 + }, + "value": "T10200BA-02", + "layer": "VALVE NO", + "id": "557013" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2176.6801414327356, + "min_y": 5271.454706602272, + "max_x": 2181.362965512045, + "max_y": 5276.137530681582 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557017" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2178.8035669561673, + "min_y": 5266.42738926989, + "max_x": 2179.2395399886104, + "max_y": 5266.863362302333 + }, + "value": null, + "layer": "0", + "id": "55701A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2178.618540096769, + "min_y": 5264.662604719919, + "max_x": 2179.424566848012, + "max_y": 5266.458350140919 + }, + "value": null, + "layer": "0", + "id": "55701B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2178.439502644969, + "min_y": 5271.075758212298, + "max_x": 2179.603604299812, + "max_y": 5271.454706602272 + }, + "value": null, + "layer": "0", + "id": "557024" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2177.5939901664487, + "min_y": 5268.073698422805, + "max_x": 2180.4491167783317, + "max_y": 5270.928825034688 + }, + "value": null, + "layer": "0", + "id": "557025" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2118.5381533422637, + "min_y": 5203.6733512455, + "max_x": 2119.054097759356, + "max_y": 5204.189295662592 + }, + "value": null, + "layer": "0", + "id": "557031" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5201.807045008331, + "max_x": 2119.199138926431, + "max_y": 5203.709991329553 + }, + "value": null, + "layer": "0", + "id": "557033" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5387.788723926037, + "max_x": 2371.60682781286, + "max_y": 5393.625648800863 + }, + "value": null, + "layer": "0", + "id": "55703E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2370.042483151893, + "min_y": 5388.108301485149, + "max_x": 2372.7301983928373, + "max_y": 5389.601476619007 + }, + "value": "H50", + "layer": "0", + "id": "557045" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2468.396881942991, + "min_y": 5346.031405203508, + "max_x": 2482.063631900663, + "max_y": 5368.779741409625 + }, + "value": null, + "layer": "0", + "id": "557046" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2471.136485291439, + "min_y": 5343.684836841804, + "max_x": 2499.407411311395, + "max_y": 5365.93122300588 + }, + "value": null, + "layer": "0", + "id": "557049" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2480.55461212111, + "min_y": 5347.650892408904, + "max_x": 2482.3202165564335, + "max_y": 5351.010223583466 + }, + "value": "MH", + "layer": "0", + "id": "55704D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2479.9293694939756, + "min_y": 5348.828623662757, + "max_x": 2483.1990073371667, + "max_y": 5352.098261505949 + }, + "value": null, + "layer": "0", + "id": "55704E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2474.946413129642, + "min_y": 5367.507405881463, + "max_x": 2478.9190231091197, + "max_y": 5369.303454409125 + }, + "value": "EMERGENCY", + "layer": "0", + "id": "557052" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2488.241349301019, + "min_y": 5347.694346540844, + "max_x": 2490.570819250117, + "max_y": 5370.817693087627 + }, + "value": null, + "layer": "0", + "id": "557059" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2464.987281102658, + "min_y": 5346.918925438941, + "max_x": 2466.7528855379815, + "max_y": 5349.102947875446 + }, + "value": "PG", + "layer": "0", + "id": "55705C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2464.3690381326805, + "min_y": 5346.364629721645, + "max_x": 2467.6386759758716, + "max_y": 5349.634267564837 + }, + "value": null, + "layer": "0", + "id": "55705D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2467.558888129217, + "min_y": 5347.494957550775, + "max_x": 2471.136485291439, + "max_y": 5348.498892128326 + }, + "value": null, + "layer": "0", + "id": "55705E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2476.783399585769, + "min_y": 5363.086582874877, + "max_x": 2478.5490040210925, + "max_y": 5363.822251389595 + }, + "value": "500A", + "layer": "0", + "id": "557061" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2489.93055775271, + "min_y": 5343.684836841804, + "max_x": 2493.880258446035, + "max_y": 5344.788180443702 + }, + "value": null, + "layer": "0", + "id": "557066" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2492.2356346802117, + "min_y": 5343.895970494017, + "max_x": 2492.9167109776763, + "max_y": 5344.577046791483 + }, + "value": null, + "layer": "0", + "id": "55706E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.662911617962, + "min_y": 5345.301754442988, + "max_x": 2494.075395166221, + "max_y": 5346.086467525353 + }, + "value": "50A", + "layer": "0", + "id": "557070" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5365.129867520515, + "max_x": 2506.265762012997, + "max_y": 5368.054622688071 + }, + "value": null, + "layer": "0", + "id": "557071" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2490.838432908135, + "min_y": 5365.129867520515, + "max_x": 2506.265762012997, + "max_y": 5365.93122300588 + }, + "value": null, + "layer": "0", + "id": "557072" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2490.071375764967, + "min_y": 5366.592245104294, + "max_x": 2492.84589405623, + "max_y": 5366.592245104294 + }, + "value": null, + "layer": "0", + "id": "557076" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5370.095917031728, + "max_x": 2506.265762012997, + "max_y": 5373.020672199285 + }, + "value": null, + "layer": "0", + "id": "557077" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2488.876286875547, + "min_y": 5370.095917031728, + "max_x": 2506.265762012997, + "max_y": 5370.817693087627 + }, + "value": null, + "layer": "0", + "id": "557078" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2495.333959193356, + "min_y": 5365.980056366857, + "max_x": 2503.880018814936, + "max_y": 5369.132557015059 + }, + "value": "WASTE WATER", + "layer": "0", + "id": "55707D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2495.333959193356, + "min_y": 5370.946105878069, + "max_x": 2503.903712419635, + "max_y": 5374.138307603123 + }, + "value": "WASTE WATER", + "layer": "0", + "id": "55707E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2452.241838956657, + "min_y": 5368.186541525555, + "max_x": 2465.4305684168958, + "max_y": 5371.518537012256 + }, + "value": "SC-10128", + "layer": "0", + "id": "557081" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2456.90196118856, + "min_y": 5367.175232127917, + "max_x": 2469.984913323013, + "max_y": 5370.351294887964 + }, + "value": null, + "layer": "TEXT", + "id": "557082" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2456.90196118856, + "min_y": 5370.351294887962, + "max_x": 2468.396881942996, + "max_y": 5370.351294887962 + }, + "value": null, + "layer": "TEXT", + "id": "557083" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2469.984913323013, + "min_y": 5368.763263507942, + "max_x": 2473.054624516299, + "max_y": 5368.763263507942 + }, + "value": null, + "layer": "0", + "id": "557088" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2494.181954660753, + "min_y": 5349.758194884705, + "max_x": 2498.187401958235, + "max_y": 5350.861538486603 + }, + "value": null, + "layer": "0", + "id": "557091" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2496.259011273228, + "min_y": 5349.405508569407, + "max_x": 2497.122259831891, + "max_y": 5351.259717532697 + }, + "value": null, + "layer": "0", + "id": "557092" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2492.3405071843545, + "min_y": 5348.058756067313, + "max_x": 2496.8882211517093, + "max_y": 5352.606470034668 + }, + "value": null, + "layer": "0", + "id": "557093" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2493.075846270806, + "min_y": 5351.282241975305, + "max_x": 2494.488329819065, + "max_y": 5352.06695505767 + }, + "value": "50A", + "layer": "0", + "id": "557094" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.886677224001, + "min_y": 5349.164247856023, + "max_x": 2500.769988621679, + "max_y": 5351.509678898732 + }, + "value": "LT", + "layer": "0", + "id": "557095" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2498.187401958236, + "min_y": 5347.004817720668, + "max_x": 2505.4061141998573, + "max_y": 5352.319904743565 + }, + "value": null, + "layer": "0", + "id": "557096" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2493.5492453810607, + "min_y": 5349.969328536919, + "max_x": 2494.2303216785253, + "max_y": 5350.650404834385 + }, + "value": null, + "layer": "0", + "id": "5570A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2499.407411311395, + "min_y": 5346.793684068455, + "max_x": 2502.015582545576, + "max_y": 5347.897027670353 + }, + "value": null, + "layer": "0", + "id": "5570A3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5173.971443977545, + "max_x": 2377.369106352051, + "max_y": 5182.260694413193 + }, + "value": null, + "layer": "0", + "id": "5570B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.086533518354, + "min_y": 5171.680618496471, + "max_x": 2370.285182056468, + "max_y": 5215.873091299481 + }, + "value": null, + "layer": "0", + "id": "5570B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2367.477464964615, + "min_y": 5179.609866310915, + "max_x": 2367.477464964615, + "max_y": 5195.71840765251 + }, + "value": null, + "layer": "0", + "id": "5570BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2362.988515427421, + "min_y": 5198.782142187044, + "max_x": 2375.696704097149, + "max_y": 5203.762559157162 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "5570C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2367.0121470208087, + "min_y": 5197.3549844763365, + "max_x": 2377.060882469065, + "max_y": 5206.999836624853 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5570C5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2368.806508896023, + "min_y": 5172.390553018557, + "max_x": 2371.6886955205, + "max_y": 5176.595631710457 + }, + "value": null, + "layer": "0", + "id": "5570C8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2370.9524272009103, + "min_y": 5174.397018001448, + "max_x": 2371.5144640860935, + "max_y": 5174.959054886631 + }, + "value": null, + "layer": "0", + "id": "5570D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.413787248542, + "min_y": 5181.741926283859, + "max_x": 2377.997389324948, + "max_y": 5190.080300106695 + }, + "value": null, + "layer": "0", + "id": "5570D5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2374.588018682957, + "min_y": 5181.219802765381, + "max_x": 2377.194874917641, + "max_y": 5181.808480019925 + }, + "value": null, + "layer": "0", + "id": "5570DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2367.477464964615, + "min_y": 5195.149345306255, + "max_x": 2391.741206690165, + "max_y": 5196.287469998761 + }, + "value": null, + "layer": "0", + "id": "5570DF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2383.1846081229096, + "min_y": 5195.367134599266, + "max_x": 2383.887154229388, + "max_y": 5196.069680705745 + }, + "value": null, + "layer": "0", + "id": "5570E7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2373.951407378573, + "min_y": 5195.71840765251, + "max_x": 2373.951407378577, + "max_y": 5197.908431495774 + }, + "value": null, + "layer": "0", + "id": "5570E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5194.378171116475, + "max_x": 2402.782707928924, + "max_y": 5197.058644188534 + }, + "value": null, + "layer": "TEXT", + "id": "5570E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5194.378171116477, + "max_x": 2401.442471392899, + "max_y": 5194.378171116477 + }, + "value": null, + "layer": "TEXT", + "id": "5570EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2392.718814979403, + "min_y": 5195.063771344822, + "max_x": 2402.7977471329436, + "max_y": 5198.689789980522 + }, + "value": "CWR", + "layer": "0", + "id": "5570F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2378.105447997445, + "min_y": 5194.05662451059, + "max_x": 2388.6972431905397, + "max_y": 5195.574862500156 + }, + "value": "E10219BA-02", + "layer": "VALVE NO", + "id": "5570F2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2369.694085488921, + "min_y": 5181.120973931836, + "max_x": 2384.6534333495215, + "max_y": 5182.240855282229 + }, + "value": "E10219BA-05", + "layer": "VALVE NO", + "id": "5570F3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2371.73145354982, + "min_y": 5174.412851525695, + "max_x": 2384.8030812939655, + "max_y": 5175.5593732454545 + }, + "value": "E10219BA-06", + "layer": "VALVE NO", + "id": "5570F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2369.305149069383, + "min_y": 5197.610831131555, + "max_x": 2370.443273761886, + "max_y": 5201.275707835198 + }, + "value": null, + "layer": "0", + "id": "5570F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2368.80998698376, + "min_y": 5204.772786757653, + "max_x": 2370.3774721084974, + "max_y": 5206.079024361601 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5570F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2369.325440136166, + "min_y": 5195.71840765251, + "max_x": 2370.422982695105, + "max_y": 5197.610831131555 + }, + "value": null, + "layer": "0", + "id": "5570FB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2376.324614149468, + "min_y": 5195.71840765251, + "max_x": 2380.445117749259, + "max_y": 5200.108016586369 + }, + "value": null, + "layer": "0", + "id": "557103" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2376.77986402647, + "min_y": 5198.149951050073, + "max_x": 2381.075186730368, + "max_y": 5201.165243018639 + }, + "value": null, + "layer": "0", + "id": "55710E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2379.184979787031, + "min_y": 5195.71840765251, + "max_x": 2381.501984937608, + "max_y": 5200.040157993409 + }, + "value": null, + "layer": "UTIL", + "id": "557111" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2381.501984937608, + "min_y": 5199.410089012298, + "max_x": 2387.565556166906, + "max_y": 5199.410089012298 + }, + "value": null, + "layer": "VA NO", + "id": "55711E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2377.103609639041, + "min_y": 5203.521617532643, + "max_x": 2383.149625073545, + "max_y": 5206.162622169588 + }, + "value": "PSV-10219A", + "layer": "0", + "id": "55711F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2377.4140697298, + "min_y": 5201.988918553983, + "max_x": 2383.4600851643036, + "max_y": 5202.996587793067 + }, + "value": "SP: 0.5MPa", + "layer": "0", + "id": "557121" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2362.036828728253, + "min_y": 5171.680618496471, + "max_x": 2427.027750485948, + "max_y": 5172.390553018557 + }, + "value": null, + "layer": "0", + "id": "557125" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2393.08144322619, + "min_y": 5188.740063570668, + "max_x": 2402.782707928924, + "max_y": 5191.420536642723 + }, + "value": null, + "layer": "0", + "id": "557127" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.871205336569, + "min_y": 5188.740063570666, + "max_x": 2393.081443226192, + "max_y": 5191.420536642719 + }, + "value": null, + "layer": "TEXT", + "id": "55712B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2392.574146434681, + "min_y": 5189.592527418486, + "max_x": 2402.653078588222, + "max_y": 5192.793710853042 + }, + "value": "CWS", + "layer": "0", + "id": "557136" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2367.195947436599, + "min_y": 5184.676548450826, + "max_x": 2379.9625948310836, + "max_y": 5185.796429801219 + }, + "value": "CWR-10627-25A-F1A-n", + "layer": "LINENO", + "id": "557145" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2375.204154741662, + "min_y": 5190.861537748165, + "max_x": 2387.9708021361466, + "max_y": 5191.981419098558 + }, + "value": "CWS-10617-25A-F1A-n", + "layer": "LINENO", + "id": "557147" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2416.238550652523, + "min_y": 5171.939595311584, + "max_x": 2437.4012203611155, + "max_y": 5176.090907266616 + }, + "value": "P-10216-20A-F1A-n", + "layer": "LINENO", + "id": "55714B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2400.742694573685, + "min_y": 5171.680618496472, + "max_x": 2400.742694573685, + "max_y": 5173.942817670412 + }, + "value": null, + "layer": "0", + "id": "55714C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2397.8819902526075, + "min_y": 5173.9428176704105, + "max_x": 2403.603398894763, + "max_y": 5179.664226312566 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55714D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2398.569278480417, + "min_y": 5175.239251510589, + "max_x": 2402.4879912922597, + "max_y": 5178.643172632958 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "55714E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2385.961942649171, + "min_y": 5172.009546397988, + "max_x": 2397.384732423184, + "max_y": 5173.129427748381 + }, + "value": "P-10214-20A-F1A-n", + "layer": "LINENO", + "id": "557150" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2411.200507676225, + "min_y": 5175.335099539649, + "max_x": 2433.194936961172, + "max_y": 5191.116011549104 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "557151" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5188.633606333755, + "max_x": 2434.643906162616, + "max_y": 5192.2491406364 + }, + "value": "P-10215-20A-F1A-n", + "layer": "LINENO", + "id": "557152" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2435.30339226045, + "min_y": 5189.743586696281, + "max_x": 2441.574727822653, + "max_y": 5191.23676183014 + }, + "value": "T-10200", + "layer": "0", + "id": "557153" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5189.045811472732, + "max_x": 2445.463271670897, + "max_y": 5192.02411488613 + }, + "value": null, + "layer": "TEXT", + "id": "557154" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5192.024114886128, + "max_x": 2445.463271670897, + "max_y": 5196.168957672353 + }, + "value": null, + "layer": "TEXT", + "id": "557155" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2417.173208211656, + "min_y": 5175.335099539649, + "max_x": 2441.584775343583, + "max_y": 5183.827745358552 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "557159" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2441.584775343583, + "min_y": 5180.564318475632, + "max_x": 2443.250814945822, + "max_y": 5183.827745358552 + }, + "value": null, + "layer": "0", + "id": "55715A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5181.353090974248, + "max_x": 2439.8108661776246, + "max_y": 5183.610647570244 + }, + "value": "SAMPLE", + "layer": "0", + "id": "55715F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2403.83352607588, + "min_y": 5171.680618496472, + "max_x": 2408.454869957031, + "max_y": 5177.127453862603 + }, + "value": null, + "layer": "0", + "id": "557161" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2408.454869957031, + "min_y": 5175.372299856261, + "max_x": 2433.194936961172, + "max_y": 5194.633147943218 + }, + "value": null, + "layer": "UTIL", + "id": "557170" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2410.630453895731, + "min_y": 5171.680618496472, + "max_x": 2414.756911724436, + "max_y": 5175.335099539649 + }, + "value": null, + "layer": "0", + "id": "557171" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2410.848622626538, + "min_y": 5173.737910773086, + "max_x": 2411.5523927259114, + "max_y": 5174.441680872459 + }, + "value": null, + "layer": "0", + "id": "55717D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2413.629142606888, + "min_y": 5171.680618496472, + "max_x": 2417.743261992152, + "max_y": 5175.335099539649 + }, + "value": null, + "layer": "0", + "id": "557180" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2413.8349728942544, + "min_y": 5173.737910773086, + "max_x": 2414.5387429936277, + "max_y": 5174.441680872459 + }, + "value": null, + "layer": "0", + "id": "55718C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2416.615492874604, + "min_y": 5171.680618496472, + "max_x": 2420.730751268657, + "max_y": 5175.335099539649 + }, + "value": null, + "layer": "0", + "id": "55718F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2416.8213231619693, + "min_y": 5173.737910773086, + "max_x": 2417.5250932613426, + "max_y": 5174.441680872459 + }, + "value": null, + "layer": "0", + "id": "55719B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2422.267595527879, + "min_y": 5171.111556150219, + "max_x": 2430.98481967715, + "max_y": 5174.152730861512 + }, + "value": null, + "layer": "0", + "id": "55719E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2433.013622837774, + "min_y": 5193.838972675118, + "max_x": 2440.0809414809087, + "max_y": 5197.723540645609 + }, + "value": "T-3210", + "layer": "0", + "id": "5571A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5194.633147943221, + "max_x": 2445.463271670897, + "max_y": 5196.122299649919 + }, + "value": null, + "layer": "TEXT", + "id": "5571A3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5195.053489965602, + "max_x": 2432.5945528349107, + "max_y": 5196.173371315996 + }, + "value": "VG-10444-25A-F1A-n", + "layer": "LINENO", + "id": "5571A8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2410.265850117092, + "min_y": 5171.982722598445, + "max_x": 2421.3153461076395, + "max_y": 5173.102603948839 + }, + "value": "HD10219BA-01", + "layer": "VALVE NO", + "id": "5571A9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2358.669362199318, + "min_y": 5171.225368619468, + "max_x": 2362.036828728253, + "max_y": 5172.135868373473 + }, + "value": null, + "layer": "0", + "id": "5571AC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2360.679654470275, + "min_y": 5171.3996000538755, + "max_x": 2361.2416913554584, + "max_y": 5171.961636939059 + }, + "value": null, + "layer": "0", + "id": "5571B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2358.669519934447, + "min_y": 5171.277653188783, + "max_x": 2358.669519934447, + "max_y": 5172.083679940026 + }, + "value": null, + "layer": "0", + "id": "5571B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2376.458606598044, + "min_y": 5172.417193387921, + "max_x": 2377.369106352049, + "max_y": 5173.971443977545 + }, + "value": null, + "layer": "0", + "id": "5571BC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2376.6328380324585, + "min_y": 5174.4236583708125, + "max_x": 2377.1948749176418, + "max_y": 5174.985695255996 + }, + "value": null, + "layer": "0", + "id": "5571C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2419.602982151109, + "min_y": 5171.680618496471, + "max_x": 2422.267595527879, + "max_y": 5175.406753862183 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5571C7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2369.026328382181, + "min_y": 5196.324748217098, + "max_x": 2376.4175452947775, + "max_y": 5197.444629567492 + }, + "value": "E10219BA-03", + "layer": "VALVE NO", + "id": "5571CA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2441.564381063837, + "min_y": 5249.572120444895, + "max_x": 2443.400656793635, + "max_y": 5250.671575169138 + }, + "value": null, + "layer": "0", + "id": "5571D1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2442.1306338790496, + "min_y": 5249.76996275733, + "max_x": 2442.834403978423, + "max_y": 5250.4737328567035 + }, + "value": null, + "layer": "0", + "id": "5571DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.430502472912, + "max_x": 2233.028339698793, + "max_y": 5296.149310932579 + }, + "value": null, + "layer": "건축", + "id": "5571E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2383.148653157322, + "min_y": 5258.30786585248, + "max_x": 2413.875593794175, + "max_y": 5268.89717979988 + }, + "value": null, + "layer": "건축", + "id": "5571E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2364.125429508217, + "min_y": 5201.0488453393, + "max_x": 2364.844237967883, + "max_y": 5203.087128013848 + }, + "value": null, + "layer": "건축", + "id": "5571F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2279.87911334702, + "min_y": 5262.690241051417, + "max_x": 2281.917396021569, + "max_y": 5263.409049511084 + }, + "value": null, + "layer": "건축", + "id": "5571FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.526551136609, + "max_x": 2432.465804628081, + "max_y": 5272.245359596277 + }, + "value": null, + "layer": "건축", + "id": "557206" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2352.652071347197, + "min_y": 5299.493021353399, + "max_x": 2353.370879806863, + "max_y": 5301.531304027948 + }, + "value": null, + "layer": "건축", + "id": "557215" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2343.93227774124, + "min_y": 5376.589921330205, + "max_x": 2345.970560415789, + "max_y": 5377.308729789872 + }, + "value": null, + "layer": "건축", + "id": "55721A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.511458111706, + "max_x": 2394.70968862537, + "max_y": 5379.230266571372 + }, + "value": null, + "layer": "건축", + "id": "55721F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2340.863105001607, + "min_y": 5363.333030550919, + "max_x": 2341.581913461274, + "max_y": 5365.371313225468 + }, + "value": null, + "layer": "건축", + "id": "557224" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5135.882015483047, + "max_x": 2511.398898666235, + "max_y": 5184.125343883149 + }, + "value": null, + "layer": "TITLE", + "id": "557229" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5174.333093018728, + "max_x": 2511.398898666235, + "max_y": 5174.333093018728 + }, + "value": null, + "layer": "TITLE", + "id": "55722A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5152.963478186449, + "max_x": 2511.398898666235, + "max_y": 5152.963478186449 + }, + "value": null, + "layer": "TITLE", + "id": "55722B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5135.882015483047, + "max_x": 2511.398898666235, + "max_y": 5142.278670770318 + }, + "value": null, + "layer": "TITLE", + "id": "55722F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.983182348405, + "min_y": 5137.498278272065, + "max_x": 2495.9252045715034, + "max_y": 5141.466684096478 + }, + "value": "SARF-#10-PID-002", + "layer": "0", + "id": "557230" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5139.077109226135, + "max_x": 2470.535331320506, + "max_y": 5139.077109226135 + }, + "value": null, + "layer": "TITLE", + "id": "557232" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2461.382793364842, + "min_y": 5136.918860768942, + "max_x": 2464.4520762220436, + "max_y": 5141.503333007008 + }, + "value": "NONE", + "layer": "1", + "id": "557233" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.591440928211, + "min_y": 5136.944864234503, + "max_x": 2454.7027630386015, + "max_y": 5141.104487234916 + }, + "value": "JOB NO.", + "layer": "1", + "id": "557236" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5150.732719469253, + "max_x": 2454.3329915459285, + "max_y": 5151.949700924109 + }, + "value": "TITLE :", + "layer": "1", + "id": "55723E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5172.102334301533, + "max_x": 2454.3329915459285, + "max_y": 5173.319315756388 + }, + "value": "ONWER :", + "layer": "1", + "id": "55723F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2448.676162051699, + "min_y": 5182.093936913858, + "max_x": 2458.3705149629563, + "max_y": 5185.987268329 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "557240" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2505.377375842739, + "min_y": 5137.279060520518, + "max_x": 2510.346796507351, + "max_y": 5137.279060520518 + }, + "value": null, + "layer": "TITLE", + "id": "557241" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5184.125343883149, + "max_x": 2511.398898666235, + "max_y": 5207.491153804181 + }, + "value": null, + "layer": "TITLE", + "id": "557246" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2507.237070523745, + "min_y": 5138.087938102849, + "max_x": 2508.4012747216293, + "max_y": 5140.0282784326555 + }, + "value": "2", + "layer": "0", + "id": "557248" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2466.733843804391, + "min_y": 5177.930946689333, + "max_x": 2490.251352162653, + "max_y": 5180.544003173584 + }, + "value": "10th PLANT 증설공사", + "layer": "SH1", + "id": "55724A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2467.077841245032, + "min_y": 5167.655165870765, + "max_x": 2512.545024071004, + "max_y": 5170.268222355016 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "55724B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2461.187459193002, + "min_y": 5169.067867398506, + "max_x": 2462.580392429677, + "max_y": 5170.455094466419 + }, + "value": null, + "layer": "0-BAS", + "id": "557254" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2462.034371083869, + "min_y": 5166.581436352014, + "max_x": 2468.959623799635, + "max_y": 5167.69121800634 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "557262" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5161.417526885391, + "max_x": 2457.983935910493, + "max_y": 5162.634508340247 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "557264" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2476.673769114484, + "min_y": 5156.51607960038, + "max_x": 2487.539674961403, + "max_y": 5159.103200040123 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "557265" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2461.821105113851, + "min_y": 5160.024965837555, + "max_x": 2464.741801422495, + "max_y": 5161.441061017516 + }, + "value": null, + "layer": "0", + "id": "557268" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2461.821105113851, + "min_y": 5160.024965837555, + "max_x": 2461.821105113851, + "max_y": 5160.910025325025 + }, + "value": null, + "layer": "0", + "id": "55726C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2462.6619116269444, + "min_y": 5157.3083485070065, + "max_x": 2466.7558109378797, + "max_y": 5158.5759159521895 + }, + "value": null, + "layer": "0", + "id": "557271" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2463.449273965938, + "min_y": 5157.359995187745, + "max_x": 2465.968448598885, + "max_y": 5158.524269271456 + }, + "value": null, + "layer": "0", + "id": "557274" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2131.772771660668, + "min_y": 5195.646083142797, + "max_x": 2165.36921217247, + "max_y": 5197.446083142797 + }, + "value": "\\pi12.40092; .9; C-10211 \\pi12.20639;\\lCOLUMN", + "layer": "0", + "id": "557278" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2095.817108658918, + "min_y": 5188.931119336428, + "max_x": 2220.034137253918, + "max_y": 5191.596049420471 + }, + "value": ".9;SIZE : %%C1,000 x 30,614H (24.3m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "layer": "0", + "id": "55727C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2169.10076562657, + "min_y": 5195.34032142933, + "max_x": 2236.1492558431582, + "max_y": 5197.564199124655 + }, + "value": "\\pi12.32838; .9; E-10212 \\pi7.36178;\\lTOP CONDENSER", + "layer": "0", + "id": "557280" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2286.824720524368, + "min_y": 5197.351557350092, + "max_x": 2320.42116103617, + "max_y": 5199.151557350092 + }, + "value": "\\pi12.32289; .9; E-10217 \\pi7.0969;SIDE CONDENSER", + "layer": "0", + "id": "557284" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2248.919296390885, + "min_y": 5190.575073904445, + "max_x": 2365.31710168021, + "max_y": 5193.092889459735 + }, + "value": ".9;SIZE : %%C497 x 2,978H (0.74m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "layer": "0", + "id": "557288" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2324.823030372946, + "min_y": 5197.976150682761, + "max_x": 2358.419470884748, + "max_y": 5199.776150682761 + }, + "value": "\\pi12.32289; .9; E-10219 \\pi7.34639;BOTTOM COOLER", + "layer": "0", + "id": "55728C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2207.389727917043, + "min_y": 5189.648440234981, + "max_x": 2248.4915306283715, + "max_y": 5191.448440234981 + }, + "value": ".9;SIZE : %%C800 x 4,306H (2.3m3) DP : 0.3 MPa / OP : 0.01 MPa DT : 180 %%DC / OT : 45 %%DC MATERIAL : STS316L INSULATION : NONE", + "layer": "0", + "id": "557298" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2244.460274059793, + "min_y": 5196.821974253914, + "max_x": 2278.056714571595, + "max_y": 5198.621974253914 + }, + "value": "\\pi12.32179; .9; E-10215 \\pi11.53817;\\lREBOILER", + "layer": "0", + "id": "5572A0" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2091.213109986126, + "min_y": 5194.794648547065, + "max_x": 2124.809550497928, + "max_y": 5196.594648547065 + }, + "value": "\\pi12.33058; .9; E-10203 \\pi10.39515;\\lPREHEATER", + "layer": "0", + "id": "5572A8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5201.302464727874, + "max_x": 2424.567283619953, + "max_y": 5206.528577696377 + }, + "value": null, + "layer": "0", + "id": "5572B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5203.915521212125, + "max_x": 2424.567283619953, + "max_y": 5203.915521212125 + }, + "value": null, + "layer": "0", + "id": "5572B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2405.53043541709, + "min_y": 5204.662108779054, + "max_x": 2418.2719969598465, + "max_y": 5208.768340397164 + }, + "value": "HEAVY ENDS", + "layer": "0", + "id": "5572B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2405.394449824543, + "min_y": 5202.049052294803, + "max_x": 2409.426022685959, + "max_y": 5203.168933645196 + }, + "value": "PRESS.", + "layer": "0", + "id": "5572B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2411.728070092983, + "min_y": 5202.049052294803, + "max_x": 2420.463144626052, + "max_y": 5203.168933645196 + }, + "value": "0.1~0.25 MPaG", + "layer": "0", + "id": "5572B6" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5201.302464727874, + "max_x": 2424.567283619953, + "max_y": 5209.514927964093 + }, + "value": null, + "layer": "0", + "id": "5572B8" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2180.136288374308, + "min_y": 5160.528701628647, + "max_x": 2202.533915382176, + "max_y": 5162.328701628647 + }, + "value": "\\pi4.76827; .9; F-10202A/B \\pi2.22617;FILTER HOUSING", + "layer": "0", + "id": "5572B9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2208.811578216539, + "min_y": 5160.663419648956, + "max_x": 2231.209205224407, + "max_y": 5162.463419648956 + }, + "value": "\\pi5.96074; .9; SP-10602 \\pi4.85619;SEPERATER", + "layer": "0", + "id": "5572C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914586, + "min_y": 5187.076999152139, + "max_x": 2511.39889866624, + "max_y": 5187.076999152139 + }, + "value": null, + "layer": "0", + "id": "5572CB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5187.076999152181, + "max_x": 2451.682299751791, + "max_y": 5193.881717369119 + }, + "value": null, + "layer": "0", + "id": "5572CC" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5193.881717369119, + "max_x": 2451.682299751791, + "max_y": 5200.686435586099 + }, + "value": null, + "layer": "0", + "id": "5572CE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2496.595294504166, + "min_y": 5184.890367203665, + "max_x": 2499.227857204969, + "max_y": 5185.987268329 + }, + "value": "APPD", + "layer": "0", + "id": "5572D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2491.248780996727, + "min_y": 5184.890367203665, + "max_x": 2493.88134369753, + "max_y": 5185.987268329 + }, + "value": "CHKD", + "layer": "0", + "id": "5572D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2485.531172434423, + "min_y": 5184.890367203665, + "max_x": 2488.163735135226, + "max_y": 5185.987268329 + }, + "value": "DRWN", + "layer": "0", + "id": "5572D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2469.387842069888, + "min_y": 5184.890367203665, + "max_x": 2476.627389497097, + "max_y": 5185.987268329 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "5572D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2503.646416574241, + "min_y": 5184.83812711743, + "max_x": 2507.595260625446, + "max_y": 5185.935028242765 + }, + "value": "REMARK", + "layer": "0", + "id": "5572DA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2448.279940643365, + "min_y": 5200.686435586099, + "max_x": 2451.682299751843, + "max_y": 5207.4911538036 + }, + "value": null, + "layer": "0", + "id": "5572DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914576, + "min_y": 5190.47935826065, + "max_x": 2511.39889866624, + "max_y": 5190.47935826065 + }, + "value": null, + "layer": "0", + "id": "5572DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914568, + "min_y": 5193.881717369162, + "max_x": 2511.39889866624, + "max_y": 5193.881717369162 + }, + "value": null, + "layer": "0", + "id": "5572DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914558, + "min_y": 5197.284076477671, + "max_x": 2511.39889866624, + "max_y": 5197.284076477671 + }, + "value": null, + "layer": "0", + "id": "5572E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914549, + "min_y": 5200.686435586183, + "max_x": 2511.39889866624, + "max_y": 5200.686435586183 + }, + "value": null, + "layer": "0", + "id": "5572E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914541, + "min_y": 5204.088794694694, + "max_x": 2511.39889866624, + "max_y": 5204.088794694694 + }, + "value": null, + "layer": "0", + "id": "5572E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5207.491153803204, + "max_x": 2511.39889866624, + "max_y": 5207.491153803204 + }, + "value": null, + "layer": "0", + "id": "5572E3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2254.772366872077, + "min_y": 5253.235691507461, + "max_x": 2259.733596782822, + "max_y": 5253.235691507461 + }, + "value": null, + "layer": "0", + "id": "5572E6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2301.270076040137, + "min_y": 5254.566191195072, + "max_x": 2307.2427765755688, + "max_y": 5260.538891730503 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5572E8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2302.212852119809, + "min_y": 5255.687238074885, + "max_x": 2306.2414684944606, + "max_y": 5259.419190413941 + }, + "value": "FI", + "layer": "INSTRUMENT", + "id": "5572E9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2302.167360934382, + "min_y": 5252.524337795242, + "max_x": 2312.246293087923, + "max_y": 5253.644219145635 + }, + "value": "BALL FLOW METER", + "layer": "VALVE NO", + "id": "5572EE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2334.194053987726, + "min_y": 5389.107019772653, + "max_x": 2338.896509361937, + "max_y": 5392.732693974511 + }, + "value": "PICA", + "layer": "INSTRUMENT", + "id": "5572EF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2333.9939385500434, + "min_y": 5387.9267649729045, + "max_x": 2339.7180673396983, + "max_y": 5393.65089376256 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5572F0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5390.788829367732, + "max_x": 2339.770253549026, + "max_y": 5395.746750474568 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5572F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5387.874578763574, + "max_x": 2339.770253549026, + "max_y": 5393.703079971887 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5572F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5387.874578763568, + "max_x": 2339.770253549026, + "max_y": 5390.788829367723 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5572F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5391.045147334729, + "max_x": 2336.856002944871, + "max_y": 5395.746750474568 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "5572FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2410.220722402667, + "min_y": 5370.050933489915, + "max_x": 2414.923177776878, + "max_y": 5373.671676941897 + }, + "value": "10217A", + "layer": "INSTRUMENT", + "id": "5572FE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2410.0206069649844, + "min_y": 5368.868360415493, + "max_x": 2415.7447357546394, + "max_y": 5374.592489205149 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557300" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2385.27205239473, + "min_y": 5352.760126168488, + "max_x": 2389.190765206573, + "max_y": 5356.387759726751 + }, + "value": "LICA", + "layer": "INSTRUMENT", + "id": "557301" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2384.5834040931713, + "min_y": 5351.581830725142, + "max_x": 2390.3075328828263, + "max_y": 5357.305959514798 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557302" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5354.44389511997, + "max_x": 2390.359719092153, + "max_y": 5357.358145724126 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557303" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2384.583404093171, + "min_y": 5351.529644515812, + "max_x": 2390.359719092153, + "max_y": 5357.358145724126 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557306" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5351.529644515812, + "max_x": 2384.583404093171, + "max_y": 5354.44389511997 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557308" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2384.984441298545, + "min_y": 5336.162350492564, + "max_x": 2389.699613587397, + "max_y": 5336.162350492568 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55730F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2311.203931454798, + "min_y": 5231.141723949083, + "max_x": 2314.502662918148, + "max_y": 5231.141723949083 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "557313" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2162.833319234414, + "min_y": 5265.062817625278, + "max_x": 2166.7520320462568, + "max_y": 5268.214813618267 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "557314" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2176.267470384576, + "min_y": 5280.176625827162, + "max_x": 2188.132027179632, + "max_y": 5281.716462683953 + }, + "value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10201", + "layer": "0", + "id": "557319" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2273.970262174521, + "min_y": 5241.01442582937, + "max_x": 2277.888974986364, + "max_y": 5244.496344275074 + }, + "value": "LIA", + "layer": "INSTRUMENT", + "id": "55731D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5239.999968506261, + "max_x": 2279.052860424112, + "max_y": 5245.81833281891 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55731F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5239.999968506257, + "max_x": 2279.052860424112, + "max_y": 5239.999968506261 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557321" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2273.2344961114622, + "min_y": 5239.999968506272, + "max_x": 2279.0528604241035, + "max_y": 5245.818332818913 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557324" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2279.052860424105, + "min_y": 5239.999968506261, + "max_x": 2281.219483133599, + "max_y": 5245.81833281891 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557326" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2279.389295027567, + "min_y": 5242.909150662593, + "max_x": 2281.219483133599, + "max_y": 5254.768312374864 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55732A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2401.547416616619, + "min_y": 5168.328910326868, + "max_x": 2407.593432051123, + "max_y": 5170.968403495817 + }, + "value": "PSV-10219B", + "layer": "0", + "id": "55732C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2401.913206984437, + "min_y": 5166.796211348207, + "max_x": 2407.9592224189405, + "max_y": 5167.803880587291 + }, + "value": "SP: 0.4MPa", + "layer": "0", + "id": "55732E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2411.196881548113, + "min_y": 5250.92814142212, + "max_x": 2426.161079167677, + "max_y": 5253.715901475747 + }, + "value": "T10221BA-07", + "layer": "VALVE NO", + "id": "55732F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5243.37973858433, + "max_x": 2403.567401453677, + "max_y": 5245.63689844373 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557331" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5241.12257872493, + "max_x": 2403.567401453677, + "max_y": 5245.63689844373 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557334" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5241.12257872493, + "max_x": 2403.567401453677, + "max_y": 5243.379738584326 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557335" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2399.053081734884, + "min_y": 5241.122578724937, + "max_x": 2408.081721172466, + "max_y": 5245.636898443723 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557338" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2399.764850881541, + "min_y": 5241.766683995442, + "max_x": 2408.1978840839606, + "max_y": 5244.759070513166 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "55733A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2400.653479881116, + "min_y": 5243.825836129158, + "max_x": 2402.221313682076, + "max_y": 5245.132364296625 + }, + "value": "LI", + "layer": "INSTRUMENT", + "id": "55733C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5239.543428131509, + "max_x": 2407.91651485871, + "max_y": 5241.122578724936 + }, + "value": null, + "layer": "0", + "id": "557340" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5245.636898443724, + "max_x": 2407.91651485871, + "max_y": 5247.21604903715 + }, + "value": null, + "layer": "0", + "id": "557345" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2478.262149346839, + "min_y": 5287.332233354494, + "max_x": 2485.6533662594356, + "max_y": 5288.452114704887 + }, + "value": "T10200BA-05", + "layer": "VALVE NO", + "id": "55734B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2495.737792956608, + "min_y": 5298.672284304165, + "max_x": 2504.1708261590225, + "max_y": 5301.664670821885 + }, + "value": "LI", + "layer": "INSTRUMENT", + "id": "55734D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5300.285338893053, + "max_x": 2504.054663247536, + "max_y": 5302.542498752454 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55734E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5298.028179033654, + "max_x": 2504.054663247536, + "max_y": 5302.542498752454 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557351" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5298.028179033654, + "max_x": 2504.054663247536, + "max_y": 5300.285338893049 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557352" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2495.026023809951, + "min_y": 5298.02817903366, + "max_x": 2504.054663247532, + "max_y": 5302.542498752447 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557356" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2489.357049495294, + "min_y": 5297.259689664512, + "max_x": 2497.957708832422, + "max_y": 5301.664670821885 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "557358" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5302.542498752447, + "max_x": 2497.283183669344, + "max_y": 5304.1217657309 + }, + "value": null, + "layer": "0", + "id": "55735B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5303.374354967949, + "max_x": 2494.910108799892, + "max_y": 5304.1217657309 + }, + "value": null, + "layer": "0", + "id": "55735D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5296.448912055208, + "max_x": 2497.283183669344, + "max_y": 5298.028179033661 + }, + "value": null, + "layer": "0", + "id": "557363" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5296.448912055208, + "max_x": 2494.910108799892, + "max_y": 5297.196322818156 + }, + "value": null, + "layer": "0", + "id": "557365" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2488.749160870907, + "min_y": 5307.683469519894, + "max_x": 2496.1403777835035, + "max_y": 5308.803350870287 + }, + "value": "T10200BA-11", + "layer": "VALVE NO", + "id": "55736D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2324.639263704276, + "min_y": 5334.658372593708, + "max_x": 2336.7142815037737, + "max_y": 5335.778253944101 + }, + "value": "E10217BA-05", + "layer": "VALVE NO", + "id": "55736F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2334.737267692447, + "min_y": 5334.601763436733, + "max_x": 2347.8185954188457, + "max_y": 5335.778253944101 + }, + "value": "E10217BA-02", + "layer": "VALVE NO", + "id": "557371" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2342.832113570292, + "min_y": 5331.599332093148, + "max_x": 2354.6966703653484, + "max_y": 5333.13916894994 + }, + "value": "\\pi0.56294; \\fArial|b1|i1|c238|p34; .3333x; P-10214", + "layer": "0", + "id": "557373" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2140.969046275678, + "min_y": 5201.681555731301, + "max_x": 2152.833603070734, + "max_y": 5203.221392588092 + }, + "value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10201", + "layer": "0", + "id": "557377" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2157.882297434829, + "min_y": 5209.802294316815, + "max_x": 2169.7468542298852, + "max_y": 5211.3421311736065 + }, + "value": "\\pi-1.80523; \\fArial|b1|i1|c238|p34; .3333x; F-10202A/B", + "layer": "0", + "id": "55737B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2278.226446100726, + "min_y": 5203.950628238079, + "max_x": 2290.0910028957824, + "max_y": 5205.49046509487 + }, + "value": "\\pi0.54053; \\fArial|b1|i1|c238|p34; .3333x; P-10216", + "layer": "0", + "id": "557382" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2220.664419732103, + "min_y": 5278.581049383569, + "max_x": 2232.528976527159, + "max_y": 5280.12088624036 + }, + "value": "\\pi0.53843; \\fArial|b1|i1|c238|p34; .3333x; E-10215", + "layer": "0", + "id": "557386" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2203.59976425771, + "min_y": 5240.695910455022, + "max_x": 2215.464321052766, + "max_y": 5242.235747311814 + }, + "value": "\\pi0.56364; \\fArial|b1|i1|c238|p34; .3333x; E-10203", + "layer": "0", + "id": "55738A" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2246.856898794113, + "min_y": 5360.423438146407, + "max_x": 2258.721455589169, + "max_y": 5361.963275003198 + }, + "value": "\\pi0.63226; \\fArial|b1|i1|c238|p34; .3333x; C-10211", + "layer": "0", + "id": "55738E" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2276.54400790516, + "min_y": 5335.999395489337, + "max_x": 2288.408564700216, + "max_y": 5337.539232346128 + }, + "value": "\\pi0.50272; \\fArial|b1|i1|c238|p34; .3333x; E-10217", + "layer": "0", + "id": "557392" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2379.902927182275, + "min_y": 5179.403996294939, + "max_x": 2391.7674839773313, + "max_y": 5180.94383315173 + }, + "value": "\\pi0.56644; \\fArial|b1|i1|c238|p34; .3333x; E-10219", + "layer": "0", + "id": "557396" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5239.799036848601, + "max_x": 2424.7062405160314, + "max_y": 5241.338873705392 + }, + "value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10221", + "layer": "0", + "id": "55739A" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2477.567173496766, + "min_y": 5295.511354447538, + "max_x": 2489.431730291822, + "max_y": 5297.051191304329 + }, + "value": "\\pi0.7415; \\fArial|b1|i1|c238|p34; .3333x; T-10200", + "layer": "0", + "id": "55739E" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2475.725718559071, + "min_y": 5344.987399761596, + "max_x": 2487.5902753541272, + "max_y": 5346.527236618387 + }, + "value": "\\pi1.53906; \\fArial|b1|i1|c238|p34; .3333x; T-3210", + "layer": "0", + "id": "5573A2" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2442.933488947535, + "min_y": 5355.958318532231, + "max_x": 2454.798045742591, + "max_y": 5357.498155389022 + }, + "value": "\\pi-0.35015; \\fArial|b1|i1|c238|p34; .3333x; VP-10217", + "layer": "0", + "id": "5573A6" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2410.252145805424, + "min_y": 5353.365318958459, + "max_x": 2422.11670260048, + "max_y": 5354.9051558152505 + }, + "value": "\\pi-0.37886; \\fArial|b1|i1|c238|p34; .3333x; SP-10602", + "layer": "0", + "id": "5573AA" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2356.628137148163, + "min_y": 5384.273045501285, + "max_x": 2368.4926939432194, + "max_y": 5385.812882358076 + }, + "value": "\\pi0.48802; \\fArial|b1|i1|c238|p34; .3333x; D-10213", + "layer": "0", + "id": "5573AE" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2356.628137148163, + "min_y": 5388.110906378851, + "max_x": 2368.4926939432194, + "max_y": 5389.650743235642 + }, + "value": "\\pi0.54824; \\fArial|b1|i1|c238|p34; .3333x; E-10212", + "layer": "0", + "id": "5573B2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2357.760494126829, + "min_y": 5375.559960628528, + "max_x": 2369.183283900842, + "max_y": 5376.679841978921 + }, + "value": "P-10231-15A-F2A-n", + "layer": "LINENO", + "id": "5573B6" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2309.307732721169, + "min_y": 5273.650142623236, + "max_x": 2321.172289516225, + "max_y": 5275.189979480027 + }, + "value": "\\pi0.55314; \\fArial|b1|i1|c238|p34; .3333x; P-10218", + "layer": "0", + "id": "5573B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2170.574368751427, + "min_y": 5258.825059278697, + "max_x": 2182.2043009943786, + "max_y": 5259.981455921053 + }, + "value": "T10201BA-02", + "layer": "VALVE NO", + "id": "5573BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2132.59851051845, + "min_y": 5334.08803789688, + "max_x": 2146.037086723171, + "max_y": 5335.207919247274 + }, + "value": "ST-10521-65A-S1A-H50", + "layer": "LINENO", + "id": "5573BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2286.867361201329, + "min_y": 5243.916867960924, + "max_x": 2299.6340085958136, + "max_y": 5245.036749311317 + }, + "value": "P-10212-20A-F1A-H50", + "layer": "LINENO", + "id": "5573BE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2479.194065954662, + "min_y": 5316.540757429099, + "max_x": 2480.129804370353, + "max_y": 5324.971512074332 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5573C1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2431.748200246448, + "min_y": 5228.060007078521, + "max_x": 2443.612757041504, + "max_y": 5229.5998439353125 + }, + "value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10221", + "layer": "0", + "id": "5573C2" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2137.694725109574, + "min_y": 5297.891086753597, + "max_x": 2149.55928190463, + "max_y": 5299.430923610388 + }, + "value": "\\pi-0.39777; \\fArial|b1|i1|c238|p34; .3333x; DP-10201", + "layer": "0", + "id": "5573C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5407.860441589807, + "max_x": 2280.13879521484, + "max_y": 5407.860441589807 + }, + "value": null, + "layer": "0", + "id": "5573CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5405.247385105556, + "max_x": 2280.13879521484, + "max_y": 5405.247385105556 + }, + "value": null, + "layer": "0", + "id": "5573CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2226.995300497218, + "min_y": 5236.175649258281, + "max_x": 2228.092843056148, + "max_y": 5238.179978010697 + }, + "value": null, + "layer": "0", + "id": "5573CE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2227.3461953667093, + "min_y": 5238.179978010699, + "max_x": 2227.7419481866445, + "max_y": 5240.950247750223 + }, + "value": null, + "layer": "0", + "id": "5573D6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2225.533176665646, + "min_y": 5234.547273619519, + "max_x": 2231.5805359577703, + "max_y": 5235.667154969912 + }, + "value": "FOR DRAIN", + "layer": "0", + "id": "5573DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2220.295950728067, + "min_y": 5241.836708596646, + "max_x": 2221.393493286996, + "max_y": 5242.580025712642 + }, + "value": null, + "layer": "0", + "id": "5573E0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2220.6468455975582, + "min_y": 5243.841037349064, + "max_x": 2221.0425984174935, + "max_y": 5246.611307088588 + }, + "value": null, + "layer": "0", + "id": "5573E7" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2097.544217241776, + "min_y": 5404.930960933328, + "max_x": 2163.166361542768, + "max_y": 5430.494764206465 + }, + "value": null, + "layer": "0", + "id": "5573F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5427.946770273928, + "max_x": 2134.679324701183, + "max_y": 5427.946770273928 + }, + "value": null, + "layer": "0", + "id": "5573F7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2106.039498551103, + "min_y": 5423.986156071601, + "max_x": 2122.837718807004, + "max_y": 5428.185711135576 + }, + "value": "\\pi-5.02801; \\fArial|b0|i1|c0|p34; .9; SAMPLING \\pi-0.95707;BOOTH", + "layer": "0", + "id": "5573F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5425.147066897944, + "max_x": 2134.679324701183, + "max_y": 5425.147066897944 + }, + "value": null, + "layer": "0", + "id": "5573FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5422.347363521961, + "max_x": 2134.679324701183, + "max_y": 5422.347363521961 + }, + "value": null, + "layer": "0", + "id": "5573FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5419.547660145978, + "max_x": 2134.679324701183, + "max_y": 5419.547660145978 + }, + "value": null, + "layer": "0", + "id": "5573FE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5416.747956769995, + "max_x": 2134.679324701183, + "max_y": 5416.747956769995 + }, + "value": null, + "layer": "0", + "id": "5573FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5413.948253394011, + "max_x": 2134.679324701183, + "max_y": 5413.948253394011 + }, + "value": null, + "layer": "0", + "id": "557400" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5411.148550018027, + "max_x": 2134.679324701183, + "max_y": 5411.148550018027 + }, + "value": null, + "layer": "0", + "id": "557401" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5408.348846642043, + "max_x": 2134.679324701183, + "max_y": 5408.348846642043 + }, + "value": null, + "layer": "0", + "id": "557402" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5407.788905966846, + "max_x": 2143.122511813056, + "max_y": 5414.508194069207 + }, + "value": "10116 btm", + "layer": "0", + "id": "557403" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5424.587126222747, + "max_x": 2157.5177966944248, + "max_y": 5428.539801187913 + }, + "value": "10101 feed", + "layer": "0", + "id": "557405" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5418.987719470781, + "max_x": 2157.5177966944248, + "max_y": 5422.9403944359465 + }, + "value": "10118 side", + "layer": "0", + "id": "557407" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5416.188016094798, + "max_x": 2142.45058300282, + "max_y": 5417.307897445191 + }, + "value": "10214 top", + "layer": "0", + "id": "557409" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2179.429493684734, + "min_y": 5218.829378218042, + "max_x": 2189.485371669384, + "max_y": 5220.461091659507 + }, + "value": null, + "layer": "0", + "id": "55741C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2177.063160700489, + "min_y": 5218.829378218042, + "max_x": 2179.429493684734, + "max_y": 5222.09280510096 + }, + "value": null, + "layer": "0", + "id": "55741D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2178.453254595048, + "min_y": 5217.187476054601, + "max_x": 2191.2199019895324, + "max_y": 5221.262449197068 + }, + "value": "SAMPLE", + "layer": "0", + "id": "557420" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5257.552541462787, + "max_x": 2292.172933839553, + "max_y": 5267.230492392942 + }, + "value": null, + "layer": "UTIL", + "id": "557423" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2275.292306703212, + "min_y": 5267.629482781295, + "max_x": 2277.30809313392, + "max_y": 5269.309304806886 + }, + "value": "EA", + "layer": "INSTRUMENT", + "id": "557424" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2267.469241447676, + "min_y": 5298.417405664084, + "max_x": 2269.485027878384, + "max_y": 5300.097227689675 + }, + "value": "EL", + "layer": "INSTRUMENT", + "id": "557425" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2220.963616699837, + "min_y": 5348.022429563865, + "max_x": 2224.659036619112, + "max_y": 5351.717849483139 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557426" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2222.496459723624, + "min_y": 5348.022429563865, + "max_x": 2227.151952378431, + "max_y": 5351.13253990381 + }, + "value": "H", + "layer": "INSTRUMENT", + "id": "557427" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2170.473380963203, + "min_y": 5349.870139523501, + "max_x": 2224.691203969067, + "max_y": 5349.873881476824 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "557429" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2422.812952065085, + "min_y": 5388.941119408088, + "max_x": 2426.508371984359, + "max_y": 5392.636539327362 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55742A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2424.327957081954, + "min_y": 5388.941119408088, + "max_x": 2428.3741541874588, + "max_y": 5392.080773618068 + }, + "value": "L", + "layer": "INSTRUMENT", + "id": "55742B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2426.508371984359, + "min_y": 5363.139580976221, + "max_x": 2450.665688259971, + "max_y": 5390.788829367725 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "55742D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2376.239029498055, + "min_y": 5340.280006116709, + "max_x": 2379.93444941733, + "max_y": 5343.975426035983 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557430" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2377.781489539342, + "min_y": 5340.280006116709, + "max_x": 2381.1730980642083, + "max_y": 5343.39280941791 + }, + "value": "L", + "layer": "INSTRUMENT", + "id": "557431" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2374.206735384621, + "min_y": 5342.127040855925, + "max_x": 2379.952416736902, + "max_y": 5342.127716076346 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "557436" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2171.868578251757, + "min_y": 5284.561817761475, + "max_x": 2172.084603971151, + "max_y": 5284.921860627132 + }, + "value": "F", + "layer": "ECT-FITTINGS", + "id": "55743A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2171.692695232583, + "min_y": 5285.28190349279, + "max_x": 2173.27170703085, + "max_y": 5286.430147944647 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55743D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2417.217983126677, + "min_y": 5254.868284341259, + "max_x": 2417.847916386274, + "max_y": 5255.580093245264 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557456" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2484.271186590762, + "min_y": 5309.482253424759, + "max_x": 2484.4872123101563, + "max_y": 5309.842296290416 + }, + "value": "F", + "layer": "ECT-FITTINGS", + "id": "557463" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2484.095303571587, + "min_y": 5310.757409521261, + "max_x": 2484.807112475591, + "max_y": 5310.757409521261 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55746D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2128.465010162386, + "min_y": 5300.000478981835, + "max_x": 2131.716779197764, + "max_y": 5302.248750954524 + }, + "value": null, + "layer": "0", + "id": "557478" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2129.5161101001704, + "min_y": 5300.565189628387, + "max_x": 2132.3159096140544, + "max_y": 5302.0671418875145 + }, + "value": null, + "layer": "0", + "id": "55747A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2129.10651269482, + "min_y": 5296.899574350783, + "max_x": 2130.20405525375, + "max_y": 5299.447148670622 + }, + "value": null, + "layer": "0", + "id": "55747F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2129.3326649095166, + "min_y": 5298.604090360829, + "max_x": 2129.977595430881, + "max_y": 5300.04627908691 + }, + "value": null, + "layer": "0", + "id": "557483" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2127.042547199428, + "min_y": 5301.196212955535, + "max_x": 2128.836668720385, + "max_y": 5302.293755514465 + }, + "value": null, + "layer": "0", + "id": "55748E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2124.272277459904, + "min_y": 5301.547107825032, + "max_x": 2127.042547199427, + "max_y": 5301.942860644967 + }, + "value": null, + "layer": "0", + "id": "557492" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2120.435154435132, + "min_y": 5301.197880810686, + "max_x": 2124.272284489013, + "max_y": 5302.295423369617 + }, + "value": null, + "layer": "0", + "id": "55749A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2128.193343094241, + "min_y": 5302.557763717708, + "max_x": 2134.2393585287446, + "max_y": 5305.719720817923 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "55749E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2123.574322430934, + "min_y": 5302.611538650145, + "max_x": 2124.918180051406, + "max_y": 5303.7314200005385 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "55749F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2424.978329306947, + "min_y": 5324.968567763614, + "max_x": 2479.646685912309, + "max_y": 5324.971512074332 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5574A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2496.070746305351, + "min_y": 5273.024289030473, + "max_x": 2497.168288864281, + "max_y": 5277.869698914691 + }, + "value": null, + "layer": "0", + "id": "5574A2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2496.29720612822, + "min_y": 5274.728805040521, + "max_x": 2496.9421366495844, + "max_y": 5276.968252056306 + }, + "value": null, + "layer": "0", + "id": "5574A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2495.081656695486, + "min_y": 5277.320927635226, + "max_x": 2499.232254359673, + "max_y": 5278.418470194157 + }, + "value": null, + "layer": "0", + "id": "5574B0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2499.2322543596724, + "min_y": 5277.671822504723, + "max_x": 2502.0025240991977, + "max_y": 5278.067575324659 + }, + "value": null, + "layer": "0", + "id": "5574B4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2502.002517070088, + "min_y": 5277.322595490377, + "max_x": 2503.796638591044, + "max_y": 5278.420138049308 + }, + "value": null, + "layer": "0", + "id": "5574BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2497.703325232563, + "min_y": 5277.164954015669, + "max_x": 2499.0471828530353, + "max_y": 5278.284835366062 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "5574C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2502.991674265241, + "min_y": 5277.209914809028, + "max_x": 2509.0008576978744, + "max_y": 5278.3386102985005 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "5574C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2492.814046747888, + "min_y": 5277.365624587, + "max_x": 2495.081656695486, + "max_y": 5278.373465634217 + }, + "value": null, + "layer": "0", + "id": "5574C4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2493.639468054395, + "min_y": 5277.546926045842, + "max_x": 2494.2843985757595, + "max_y": 5278.191856567207 + }, + "value": null, + "layer": "0", + "id": "5574C8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2369.551868194454, + "min_y": 5269.020156517935, + "max_x": 2380.974657968467, + "max_y": 5270.140037868328 + }, + "value": "P-10223-25A-F2A-n", + "layer": "LINENO", + "id": "5574CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2434.241519234613, + "min_y": 5169.307320977296, + "max_x": 2435.339061793543, + "max_y": 5174.152730861512 + }, + "value": null, + "layer": "0", + "id": "5574CF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2434.467979057482, + "min_y": 5171.011836987342, + "max_x": 2435.1129095788465, + "max_y": 5173.251284003127 + }, + "value": null, + "layer": "0", + "id": "5574D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2433.252429624748, + "min_y": 5173.603959582048, + "max_x": 2437.403027288935, + "max_y": 5174.701502140978 + }, + "value": null, + "layer": "0", + "id": "5574DD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2437.403027288936, + "min_y": 5173.954854451545, + "max_x": 2440.1732970284597, + "max_y": 5174.35060727148 + }, + "value": null, + "layer": "0", + "id": "5574E1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2440.17328999935, + "min_y": 5173.605627437199, + "max_x": 2441.967411520307, + "max_y": 5174.703169996129 + }, + "value": null, + "layer": "0", + "id": "5574E9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2441.162447194503, + "min_y": 5173.49294675585, + "max_x": 2447.1716306271364, + "max_y": 5174.621642245323 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "5574EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2430.98481967715, + "min_y": 5173.648656533821, + "max_x": 2433.252429624748, + "max_y": 5174.656497581038 + }, + "value": null, + "layer": "0", + "id": "5574F1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2431.810240983658, + "min_y": 5173.829957992663, + "max_x": 2432.4551715050225, + "max_y": 5174.474888514028 + }, + "value": null, + "layer": "0", + "id": "5574F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2190.500658757608, + "min_y": 5340.614574688448, + "max_x": 2203.250507931837, + "max_y": 5341.795116278654 + }, + "value": "SAFETY AREA TO ATM", + "layer": "0", + "id": "5574FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402807024, + "min_y": 5188.298937564525, + "max_x": 2450.162343482221, + "max_y": 5189.232172023186 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "5574FC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402807015, + "min_y": 5191.701296673034, + "max_x": 2450.162343482212, + "max_y": 5192.634531131695 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "5574FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402807006, + "min_y": 5195.116747246898, + "max_x": 2450.1623434822027, + "max_y": 5196.049981705559 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "5574FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.028649001982, + "min_y": 5195.14841937895, + "max_x": 2487.588589677179, + "max_y": 5196.081653837611 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "5574FF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.699247516058, + "min_y": 5195.148419378945, + "max_x": 2493.259188191255, + "max_y": 5196.081653837606 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557500" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.045761023497, + "min_y": 5195.148419378931, + "max_x": 2498.605701698694, + "max_y": 5196.081653837592 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557501" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402806997, + "min_y": 5198.519106355409, + "max_x": 2450.1623434821936, + "max_y": 5199.45234081407 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "557502" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.028649001973, + "min_y": 5198.550778487461, + "max_x": 2487.5885896771697, + "max_y": 5199.484012946122 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557503" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.699247516048, + "min_y": 5198.550778487455, + "max_x": 2493.259188191245, + "max_y": 5199.484012946116 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557504" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.045761023487, + "min_y": 5198.550778487441, + "max_x": 2498.605701698684, + "max_y": 5199.484012946102 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557505" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402806988, + "min_y": 5201.934556929271, + "max_x": 2450.1623434821845, + "max_y": 5202.867791387932 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "557506" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.028649001963, + "min_y": 5201.953137595971, + "max_x": 2487.5885896771597, + "max_y": 5202.886372054632 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557507" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.699247516039, + "min_y": 5201.953137595966, + "max_x": 2493.259188191236, + "max_y": 5202.886372054627 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557508" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.045761023478, + "min_y": 5201.953137595952, + "max_x": 2498.6057016986747, + "max_y": 5202.886372054613 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "557509" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2449.602402806979, + "min_y": 5205.324759677099, + "max_x": 2450.162343482176, + "max_y": 5206.25799413576 + }, + "value": "6", + "layer": "REV.UPDATE", + "id": "55750A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.028649001955, + "min_y": 5205.355496704483, + "max_x": 2487.5885896771515, + "max_y": 5206.288731163144 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55750B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.699247516031, + "min_y": 5205.355496704477, + "max_x": 2493.2591881912276, + "max_y": 5206.288731163138 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55750C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.045761023469, + "min_y": 5205.355496704464, + "max_x": 2498.6057016986656, + "max_y": 5206.288731163125 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "55750D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2154.094416766249, + "min_y": 5345.297974020525, + "max_x": 2158.9472359512874, + "max_y": 5346.119220344146 + }, + "value": "\\Fmonotxt.shx; .6; HH 1000 H 900 L 150 LL 100", + "layer": "INSTRUMENT", + "id": "55750E" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2184.59136291063, + "min_y": 5236.126850790272, + "max_x": 2189.444182095668, + "max_y": 5236.948097113894 + }, + "value": "\\Fmonotxt.shx; .6; HH 1700 H 1600 L 950 LL 750", + "layer": "INSTRUMENT", + "id": "557512" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2197.147971087336, + "min_y": 5291.983097871021, + "max_x": 2202.000790272374, + "max_y": 5292.804344194642 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 60 L 4 LL 2", + "layer": "INSTRUMENT", + "id": "557516" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2254.785991014418, + "min_y": 5264.090172567567, + "max_x": 2258.8663027367766, + "max_y": 5264.911418891188 + }, + "value": "\\Fmonotxt.shx; .6; HH 101 H 90 L 78 LL 73", + "layer": "INSTRUMENT", + "id": "55751A" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2247.87939394386, + "min_y": 5310.938023911671, + "max_x": 2252.7322131288984, + "max_y": 5311.759270235292 + }, + "value": "\\Fmonotxt.shx; .6; HH 102 H 89 L 77 LL 72", + "layer": "INSTRUMENT", + "id": "55751E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2224.659036619112, + "min_y": 5349.870139523501, + "max_x": 2239.876551152874, + "max_y": 5349.870139523501 + }, + "value": null, + "layer": "ELECTRIC SIGNAL", + "id": "557524" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2247.862588914678, + "min_y": 5348.39028653543, + "max_x": 2252.715408099716, + "max_y": 5349.211532859052 + }, + "value": "\\Fmonotxt.shx; .6; HH 89 H 88 L 76 LL 71", + "layer": "INSTRUMENT", + "id": "557528" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2247.879393943957, + "min_y": 5375.130651819478, + "max_x": 2252.732213128995, + "max_y": 5375.951898143099 + }, + "value": "\\Fmonotxt.shx; .6; HH 88 H 87 L 75 LL 70", + "layer": "INSTRUMENT", + "id": "55752C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5265.967741956631, + "max_x": 2161.3268235138435, + "max_y": 5266.788988280252 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "557530" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2315.43718347854, + "min_y": 5384.460463472056, + "max_x": 2320.2900026635784, + "max_y": 5385.431027309064 + }, + "value": "\\Fmonotxt.shx; .6; HH 2600 H 2500 L 400 LL 300", + "layer": "INSTRUMENT", + "id": "557534" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2339.770253549026, + "min_y": 5387.874578763574, + "max_x": 2344.6230727340644, + "max_y": 5388.845142600582 + }, + "value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 45 LL 30", + "layer": "INSTRUMENT", + "id": "557538" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2291.161692081333, + "min_y": 5283.231786246158, + "max_x": 2296.0145112663713, + "max_y": 5284.202350083166 + }, + "value": "\\Fmonotxt.shx; .6; HH 100 H 70 L 40 LL 30", + "layer": "INSTRUMENT", + "id": "55753C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2309.027069162612, + "min_y": 5314.942341319929, + "max_x": 2313.87988834765, + "max_y": 5315.912905156937 + }, + "value": "\\Fmonotxt.shx; .6; HH 45 H 35 L 2 LL 1", + "layer": "INSTRUMENT", + "id": "557540" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2327.405285913044, + "min_y": 5313.993796970089, + "max_x": 2332.258105098082, + "max_y": 5314.964360807096 + }, + "value": "\\Fmonotxt.shx; .6; HH 1600 H 1500 L 180 LL 150", + "layer": "INSTRUMENT", + "id": "557544" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2390.127127182306, + "min_y": 5349.854982764917, + "max_x": 2394.9799463673444, + "max_y": 5350.8255466019245 + }, + "value": "\\Fmonotxt.shx; .6; HH 60 H 50 L 20 LL 5", + "layer": "INSTRUMENT", + "id": "557548" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2379.695333376039, + "min_y": 5333.46748408642, + "max_x": 2384.548152561077, + "max_y": 5334.438047923428 + }, + "value": "\\Fmonotxt.shx; .6; HH 200 H 180 L 13 LL 10", + "layer": "INSTRUMENT", + "id": "55754C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2504.054663247536, + "min_y": 5298.028179033654, + "max_x": 2507.9369185955666, + "max_y": 5298.80463010326 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "557550" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2395.783624268458, + "min_y": 5241.12257872493, + "max_x": 2399.6658796164884, + "max_y": 5241.899029794536 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "layer": "INSTRUMENT", + "id": "557554" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2305.914971020383, + "min_y": 5228.297581775977, + "max_x": 2310.767790205421, + "max_y": 5229.268145612985 + }, + "value": "\\Fmonotxt.shx; .6; HH 80 H 75 L 11 LL 10", + "layer": "INSTRUMENT", + "id": "557558" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2501.67501565764, + "min_y": 5348.588806201352, + "max_x": 2505.406114199857, + "max_y": 5352.319904743565 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55755D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2501.675015657645, + "min_y": 5350.454355472457, + "max_x": 2505.406114199856, + "max_y": 5350.454355472457 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55755E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2502.519697480943, + "min_y": 5349.288540855019, + "max_x": 2504.5340056682685, + "max_y": 5351.62101106693 + }, + "value": "LT", + "layer": "INSTRUMENT", + "id": "55755F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2505.406114199857, + "min_y": 5348.588806201352, + "max_x": 2507.832523792376, + "max_y": 5349.186076254895 + }, + "value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "layer": "INSTRUMENT", + "id": "557561" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2496.283083595034, + "min_y": 5230.194182271478, + "max_x": 2501.6585140769225, + "max_y": 5231.687357405336 + }, + "value": "T-8121", + "layer": "0", + "id": "557568" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2449.460760995787, + "min_y": 5229.469693857279, + "max_x": 2505.817941910379, + "max_y": 5232.447997270674 + }, + "value": null, + "layer": "TEXT", + "id": "557569" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2493.28299498358, + "min_y": 5229.469693857279, + "max_x": 2504.328790203681, + "max_y": 5229.469693857279 + }, + "value": null, + "layer": "TEXT", + "id": "55756C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.599441334142, + "max_x": 2491.304109869369, + "max_y": 5231.31824979381 + }, + "value": null, + "layer": "건축", + "id": "557570" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2445.660052379287, + "min_y": 5230.958845563977, + "max_x": 2475.84527584098, + "max_y": 5230.958845563977 + }, + "value": null, + "layer": "0", + "id": "557575" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2430.071513433484, + "min_y": 5310.955514444088, + "max_x": 2431.169055992414, + "max_y": 5315.800924328305 + }, + "value": null, + "layer": "0", + "id": "557576" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2430.2979732563526, + "min_y": 5312.660030454134, + "max_x": 2430.942903777717, + "max_y": 5314.8994774699195 + }, + "value": null, + "layer": "0", + "id": "55757A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2429.082423823619, + "min_y": 5315.25215304884, + "max_x": 2433.233021487806, + "max_y": 5316.349695607771 + }, + "value": null, + "layer": "0", + "id": "557584" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2433.2330214878057, + "min_y": 5315.603047918337, + "max_x": 2436.003291227331, + "max_y": 5315.998800738273 + }, + "value": null, + "layer": "0", + "id": "557588" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2436.003284198221, + "min_y": 5315.253820903991, + "max_x": 2437.797405719178, + "max_y": 5316.351363462922 + }, + "value": null, + "layer": "0", + "id": "557590" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2431.704092360696, + "min_y": 5315.096179429283, + "max_x": 2433.047949981168, + "max_y": 5316.216060779677 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "557594" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2436.992441393373, + "min_y": 5315.141140222642, + "max_x": 2443.0016248260076, + "max_y": 5316.269835712114 + }, + "value": "CC", + "layer": "VALVE NO", + "id": "557595" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2426.814813876021, + "min_y": 5315.296850000613, + "max_x": 2429.082423823619, + "max_y": 5316.304691047831 + }, + "value": null, + "layer": "0", + "id": "557598" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2427.6402351825277, + "min_y": 5315.478151459457, + "max_x": 2428.2851657038923, + "max_y": 5316.123081980822 + }, + "value": null, + "layer": "0", + "id": "55759C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2114.988805686211, + "min_y": 5284.334417743187, + "max_x": 2126.808352199522, + "max_y": 5296.385720070484 + }, + "value": null, + "layer": "0", + "id": "5575A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2114.988805686211, + "min_y": 5284.450295650189, + "max_x": 2126.808352199522, + "max_y": 5296.269842163487 + }, + "value": null, + "layer": "0", + "id": "5575A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2123.404438681595, + "min_y": 5284.450295650189, + "max_x": 2123.404438681595, + "max_y": 5296.269842163487 + }, + "value": null, + "layer": "0", + "id": "5575A3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2118.764003028611, + "min_y": 5290.194315919896, + "max_x": 2122.123647079791, + "max_y": 5292.060784837218 + }, + "value": "IBC", + "layer": "0", + "id": "5575A6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2120.435154435132, + "min_y": 5285.855113266965, + "max_x": 2120.435154435132, + "max_y": 5301.832181273616 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "5575A8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2292.769657638035, + "min_y": 5268.680912730068, + "max_x": 2294.0597547919915, + "max_y": 5269.755993691698 + }, + "value": "FO", + "layer": "0", + "id": "5575AE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2296.485224570917, + "min_y": 5267.1844996353475, + "max_x": 2307.326548807403, + "max_y": 5272.815504998273 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5575AF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2297.369072924219, + "min_y": 5268.235476065552, + "max_x": 2301.1458827368465, + "max_y": 5271.7341646731575 + }, + "value": "XV", + "layer": "INSTRUMENT", + "id": "5575B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2289.480866180621, + "min_y": 5267.554637195155, + "max_x": 2296.472443688555, + "max_y": 5272.393953079649 + }, + "value": null, + "layer": "0", + "id": "5575B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.697007451368, + "min_y": 5271.424461924301, + "max_x": 2292.152412171221, + "max_y": 5275.369906268818 + }, + "value": null, + "layer": "0", + "id": "5575B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2285.3451224016812, + "min_y": 5269.827273157734, + "max_x": 2286.0488925010545, + "max_y": 5270.531043257108 + }, + "value": null, + "layer": "0", + "id": "5575B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5269.261020342519, + "max_x": 2286.246734813489, + "max_y": 5271.424461924301 + }, + "value": null, + "layer": "0", + "id": "5575B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5268.933854490536, + "max_x": 2286.246734813489, + "max_y": 5269.261020342519 + }, + "value": null, + "layer": "0", + "id": "5575B8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2350.6629925300685, + "min_y": 5266.041301486468, + "max_x": 2351.3090466650556, + "max_y": 5266.687355621456 + }, + "value": null, + "layer": "0", + "id": "5575C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2348.73801573361, + "min_y": 5265.862109458666, + "max_x": 2350.712923089323, + "max_y": 5266.871398246951 + }, + "value": null, + "layer": "0", + "id": "5575C6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2454.016001123932, + "min_y": 5188.312029029876, + "max_x": 2459.6154078758987, + "max_y": 5189.245263488537 + }, + "value": "2024.04.04", + "layer": "REV.UPDATE", + "id": "5575CE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2485.747990165114, + "min_y": 5188.345103818931, + "max_x": 2488.5476935410975, + "max_y": 5189.278338277592 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "5575CF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2491.457863075245, + "min_y": 5188.345103818924, + "max_x": 2494.2575664512283, + "max_y": 5189.278338277585 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "5575D0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2497.045633587027, + "min_y": 5188.357260179595, + "max_x": 2499.8453369630106, + "max_y": 5189.290494638256 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "5575D1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.106340812854, + "min_y": 5188.413159294003, + "max_x": 2475.5858662144274, + "max_y": 5189.346393752664 + }, + "value": "AS BUILT", + "layer": "REV.UPDATE", + "id": "5575D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2487.084254735664, + "min_y": 5191.449993662302, + "max_x": 2487.644195410861, + "max_y": 5192.383228120963 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "5575D3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2492.754853249739, + "min_y": 5191.449993662295, + "max_x": 2493.3147939249357, + "max_y": 5192.383228120956 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "5575D4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2498.101366757178, + "min_y": 5191.449993662281, + "max_x": 2498.6613074323745, + "max_y": 5192.383228120942 + }, + "value": "-", + "layer": "REV.UPDATE", + "id": "5575D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2229.705502766761, + "min_y": 5297.187556410197, + "max_x": 2242.4721501612457, + "max_y": 5298.307437760591 + }, + "value": "P-10207-25A-F1A-H50", + "layer": "LINENO", + "id": "5575D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2220.129490093963, + "min_y": 5295.758678955206, + "max_x": 2225.398772077408, + "max_y": 5295.758678955206 + }, + "value": null, + "layer": "0", + "id": "5575D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2166.491114010387, + "min_y": 5282.674311136193, + "max_x": 2166.682052720091, + "max_y": 5283.616651771243 + }, + "value": null, + "layer": "0", + "id": "5575E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.232899026749, + "min_y": 5313.306711117832, + "max_x": 2364.277686471366, + "max_y": 5322.846930961909 + }, + "value": null, + "layer": "0", + "id": "5575EE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2363.4328274883746, + "min_y": 5322.801130856829, + "max_x": 2364.0777580097392, + "max_y": 5323.446061378194 + }, + "value": null, + "layer": "0", + "id": "5575F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2366.121625733302, + "min_y": 5311.674997676373, + "max_x": 2376.177503717953, + "max_y": 5314.938424559292 + }, + "value": null, + "layer": "0", + "id": "5575F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.755292749057, + "min_y": 5311.674997676373, + "max_x": 2366.121625733302, + "max_y": 5314.938424559292 + }, + "value": null, + "layer": "0", + "id": "5575F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2365.145386643616, + "min_y": 5310.082124551685, + "max_x": 2377.9120340381005, + "max_y": 5314.1080686554005 + }, + "value": "SAMPLE", + "layer": "0", + "id": "5575FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2327.879103812155, + "min_y": 5294.443878584196, + "max_x": 2337.934981796805, + "max_y": 5297.707305467116 + }, + "value": null, + "layer": "0", + "id": "5575FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2325.512770827909, + "min_y": 5294.443878584196, + "max_x": 2327.879103812155, + "max_y": 5297.707305467116 + }, + "value": null, + "layer": "0", + "id": "557601" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2327.521788979409, + "min_y": 5292.851005459509, + "max_x": 2340.2884363738935, + "max_y": 5296.876949563223 + }, + "value": "SAMPLE", + "layer": "0", + "id": "557604" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2317.500579522344, + "min_y": 5303.0702226755, + "max_x": 2325.512770827909, + "max_y": 5304.21033023649 + }, + "value": null, + "layer": "0", + "id": "557606" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2318.0668323375585, + "min_y": 5303.288391406308, + "max_x": 2318.7706024369318, + "max_y": 5303.992161505681 + }, + "value": null, + "layer": "0", + "id": "557607" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2316.351277376954, + "min_y": 5303.0702226755, + "max_x": 2317.500579522344, + "max_y": 5304.21033023649 + }, + "value": null, + "layer": "0", + "id": "557609" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2325.512770827909, + "min_y": 5296.075592025656, + "max_x": 2325.512770827909, + "max_y": 5303.640276455994 + }, + "value": null, + "layer": "0", + "id": "557616" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2468.310358703049, + "min_y": 5229.047735457302, + "max_x": 2479.733148477062, + "max_y": 5230.167616807696 + }, + "value": "P-10227-25A-F2A-n", + "layer": "LINENO", + "id": "557619" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2215.924030378448, + "min_y": 5251.449260916715, + "max_x": 2231.7038388186243, + "max_y": 5254.891289743613 + }, + "value": "CD-10522-40A-S1A-H50", + "layer": "LINENO", + "id": "55761A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2314.592543733703, + "min_y": 5256.983479116536, + "max_x": 2315.021197458115, + "max_y": 5258.121603809037 + }, + "value": null, + "layer": "0", + "id": "55761D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2313.3247296356376, + "min_y": 5257.201268409542, + "max_x": 2314.027275742116, + "max_y": 5257.90381451602 + }, + "value": null, + "layer": "0", + "id": "557623" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2439.250823638467, + "min_y": 5401.775294118899, + "max_x": 2449.3297557920077, + "max_y": 5402.895175469293 + }, + "value": "SARF-#10-UFD-N2", + "layer": "0", + "id": "557624" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2349.59496251511, + "min_y": 5303.09210477726, + "max_x": 2354.2984641867624, + "max_y": 5304.211986127653 + }, + "value": "15Ax25A", + "layer": "VALVE NO", + "id": "55762D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2200.763899543357, + "min_y": 5228.73545766761, + "max_x": 2200.764003284179, + "max_y": 5229.35928327807 + }, + "value": null, + "layer": "0", + "id": "557636" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2201.73560065285, + "min_y": 5225.707524815669, + "max_x": 2206.439102324502, + "max_y": 5226.827406166062 + }, + "value": "15Ax25A", + "layer": "VALVE NO", + "id": "55763A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2322.99805846338, + "min_y": 5217.127925508267, + "max_x": 2339.036516148529, + "max_y": 5219.643919962307 + }, + "value": "15Ax20A", + "layer": "VALVE NO", + "id": "557646" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2354.752103174935, + "min_y": 5349.230605024436, + "max_x": 2366.174892948948, + "max_y": 5350.350486374829 + }, + "value": "P-10230-25A-F2A-n", + "layer": "LINENO", + "id": "557647" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2190.807893772412, + "min_y": 5280.49143202358, + "max_x": 2193.624553625302, + "max_y": 5280.49143202358 + }, + "value": null, + "layer": "0", + "id": "557648" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2403.310063963525, + "min_y": 5229.387514895254, + "max_x": 2416.432857145386, + "max_y": 5233.037855160949 + }, + "value": null, + "layer": "0", + "id": "55764A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2414.6951076604328, + "min_y": 5229.605304188265, + "max_x": 2415.4389354293894, + "max_y": 5232.8200658679325 + }, + "value": null, + "layer": "0", + "id": "557652" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2393.608799260791, + "min_y": 5231.128556278668, + "max_x": 2403.310063963525, + "max_y": 5233.809029350724 + }, + "value": null, + "layer": "0", + "id": "557654" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2392.268562724766, + "min_y": 5231.128556278665, + "max_x": 2393.608799260793, + "max_y": 5233.809029350719 + }, + "value": null, + "layer": "TEXT", + "id": "557658" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2396.868785427611, + "min_y": 5231.981020126486, + "max_x": 2414.871671084338, + "max_y": 5233.947062143106 + }, + "value": "P-10201", + "layer": "0", + "id": "55765A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5219.253522237162, + "max_x": 2122.609060571132, + "max_y": 5221.933995309222 + }, + "value": null, + "layer": "0", + "id": "55765C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5219.253522237165, + "max_x": 2097.343590349775, + "max_y": 5221.933995309222 + }, + "value": null, + "layer": "0", + "id": "55765F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2098.003556011425, + "min_y": 5217.584340881169, + "max_x": 2109.426345785438, + "max_y": 5221.432297599368 + }, + "value": "T-10221", + "layer": "0", + "id": "557662" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5268.89717979988, + "max_x": 2413.51618956434, + "max_y": 5268.89717979988 + }, + "value": null, + "layer": "0", + "id": "557663" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2297.979438304471, + "min_y": 5248.334526948458, + "max_x": 2305.416355344672, + "max_y": 5249.47265164096 + }, + "value": null, + "layer": "0", + "id": "557665" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2305.416355344672, + "min_y": 5248.334526948458, + "max_x": 2311.165445399204, + "max_y": 5249.47265164096 + }, + "value": null, + "layer": "0", + "id": "557669" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2304.148541246607, + "min_y": 5248.552316241465, + "max_x": 2304.8510873530854, + "max_y": 5249.254862347943 + }, + "value": null, + "layer": "0", + "id": "55766F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2411.704544262861, + "min_y": 5252.992471755645, + "max_x": 2412.423352722529, + "max_y": 5258.30786585248 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55767C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2372.54833658326, + "min_y": 5264.364324024116, + "max_x": 2379.715577225778, + "max_y": 5265.857499157974 + }, + "value": "DP-10201", + "layer": "0", + "id": "557683" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.613706230523, + "min_y": 5263.639835609918, + "max_x": 2383.148653157322, + "max_y": 5266.618139023313 + }, + "value": null, + "layer": "TEXT", + "id": "557684" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2370.613706230523, + "min_y": 5263.639835609918, + "max_x": 2381.659501450624, + "max_y": 5263.639835609918 + }, + "value": null, + "layer": "TEXT", + "id": "557687" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2481.350778761235, + "min_y": 5340.100510214207, + "max_x": 2484.216958294178, + "max_y": 5341.294751686267 + }, + "value": "기존설비", + "layer": "0", + "id": "557689" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2120.337310464699, + "min_y": 5202.816109937985, + "max_x": 2139.8164268574337, + "max_y": 5208.150613211972 + }, + "value": "P-10203-40A-F1A-n", + "layer": "LINENO", + "id": "55768A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5213.463075119182, + "max_x": 2120.356828534468, + "max_y": 5216.143548191242 + }, + "value": null, + "layer": "0", + "id": "55768B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5213.463075119186, + "max_x": 2097.343590349775, + "max_y": 5216.143548191242 + }, + "value": null, + "layer": "0", + "id": "55768E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2097.758976131478, + "min_y": 5211.516087144424, + "max_x": 2109.181765905491, + "max_y": 5215.641850481388 + }, + "value": "T-10200", + "layer": "0", + "id": "557691" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2422.834763702683, + "min_y": 5390.778760621248, + "max_x": 2426.530183621958, + "max_y": 5390.778760621248 + }, + "value": null, + "layer": "0", + "id": "557698" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2137.60335159512, + "min_y": 5304.30945825759, + "max_x": 2144.289236147995, + "max_y": 5311.664734284866 + }, + "value": null, + "layer": "0", + "id": "55769F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2142.983606123717, + "min_y": 5305.185026541166, + "max_x": 2143.588773864911, + "max_y": 5305.79019428236 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5576A0" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2143.179243811982, + "min_y": 5304.591527437725, + "max_x": 2143.581179049464, + "max_y": 5304.989860445136 + }, + "value": "R", + "layer": "PSV", + "id": "5576A1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2142.674042907982, + "min_y": 5304.055538550641, + "max_x": 2143.898337080646, + "max_y": 5305.79019428236 + }, + "value": null, + "layer": "0", + "id": "5576A7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2107.227767074388, + "min_y": 5310.175582578168, + "max_x": 2147.024710464502, + "max_y": 5314.391979960773 + }, + "value": null, + "layer": "0", + "id": "5576AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2096.181971854287, + "min_y": 5310.175582578168, + "max_x": 2107.227767074388, + "max_y": 5313.153885991564 + }, + "value": null, + "layer": "TEXT", + "id": "5576AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2096.181971854287, + "min_y": 5310.175582578168, + "max_x": 2107.227767074388, + "max_y": 5310.175582578168 + }, + "value": null, + "layer": "TEXT", + "id": "5576AF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2096.111531317347, + "min_y": 5307.956847344737, + "max_x": 2108.8781787118314, + "max_y": 5312.373674500074 + }, + "value": "K-10901 (Air)", + "layer": "0", + "id": "5576B1" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2140.735186393059, + "min_y": 5301.116443913603, + "max_x": 2143.776449295188, + "max_y": 5302.846963680897 + }, + "value": null, + "layer": "0", + "id": "5576B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2139.533145464159, + "min_y": 5298.670860555573, + "max_x": 2140.641281347521, + "max_y": 5298.772806271879 + }, + "value": null, + "layer": "0", + "id": "5576B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2143.870354340721, + "min_y": 5298.670860555573, + "max_x": 2144.978490224096, + "max_y": 5298.772806271879 + }, + "value": null, + "layer": "0", + "id": "5576BE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2128.271242611756, + "min_y": 5306.100261755191, + "max_x": 2140.27674413048, + "max_y": 5309.809192731381 + }, + "value": "PSV-10201", + "layer": "0", + "id": "5576C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2135.460673324295, + "min_y": 5304.099402243157, + "max_x": 2137.314523755665, + "max_y": 5307.630164663052 + }, + "value": null, + "layer": "0", + "id": "5576CA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2138.324108269241, + "min_y": 5306.329031576153, + "max_x": 2146.457445075969, + "max_y": 5307.458661688199 + }, + "value": "0.7->0.29MPa", + "layer": "14-D-PIPELINE-LINE", + "id": "5576D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.88741173592, + "min_y": 5217.786029794327, + "max_x": 2366.003019653403, + "max_y": 5220.938991659349 + }, + "value": null, + "layer": "0", + "id": "5576DB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2364.1052010289336, + "min_y": 5218.351297785914, + "max_x": 2364.8077471354122, + "max_y": 5219.053843892392 + }, + "value": null, + "layer": "0", + "id": "5576DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.907702802704, + "min_y": 5215.783385909958, + "max_x": 2365.005245361642, + "max_y": 5217.786029794327 + }, + "value": null, + "layer": "0", + "id": "5576DD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2115.734325691654, + "min_y": 5203.004277087577, + "max_x": 2117.548130322005, + "max_y": 5204.011946326661 + }, + "value": "20A", + "layer": "0", + "id": "5576ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2140.110470300484, + "min_y": 5218.471835224558, + "max_x": 2147.5016872130805, + "max_y": 5222.513005213783 + }, + "value": "20A", + "layer": "0", + "id": "5576EE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2126.421494694565, + "min_y": 5206.985936607565, + "max_x": 2142.5400635319484, + "max_y": 5208.720832690913 + }, + "value": "P10201ST-01", + "layer": "VALVE NO", + "id": "5576F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2119.392754889369, + "min_y": 5207.542378508811, + "max_x": 2131.7919489131677, + "max_y": 5208.6915462750585 + }, + "value": "P10201BA-03", + "layer": "VALVE NO", + "id": "5576F1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2136.794193654105, + "min_y": 5197.51011421434, + "max_x": 2144.1854105667016, + "max_y": 5198.629995564734 + }, + "value": "P10201BA-06", + "layer": "VALVE NO", + "id": "5576F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2119.264853908678, + "min_y": 5197.467721615197, + "max_x": 2126.6560708212746, + "max_y": 5198.58760296559 + }, + "value": "P10201BA-04", + "layer": "VALVE NO", + "id": "5576F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2143.607673961737, + "min_y": 5213.587311102643, + "max_x": 2150.9988908743335, + "max_y": 5217.16623687379 + }, + "value": "20Ax25A", + "layer": "VALVE NO", + "id": "5576F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2147.351198494232, + "min_y": 5218.905090868368, + "max_x": 2154.7424154068285, + "max_y": 5222.404890435651 + }, + "value": "15A", + "layer": "0", + "id": "5576FA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2152.005407688934, + "min_y": 5215.523497245502, + "max_x": 2153.8192123192853, + "max_y": 5216.531166484586 + }, + "value": "15A", + "layer": "0", + "id": "5576FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2156.753512416024, + "min_y": 5241.313297500654, + "max_x": 2158.567317046375, + "max_y": 5242.320966739738 + }, + "value": "15A", + "layer": "0", + "id": "5576FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2164.926148673016, + "min_y": 5241.489244141734, + "max_x": 2167.3445548468176, + "max_y": 5242.496913380818 + }, + "value": "1/4\"", + "layer": "0", + "id": "5576FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2165.070357195214, + "min_y": 5222.05700187154, + "max_x": 2167.4887633690155, + "max_y": 5223.064671110624 + }, + "value": "1/4\"", + "layer": "0", + "id": "5576FF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2164.244571206725, + "min_y": 5232.320342014197, + "max_x": 2166.6629773805266, + "max_y": 5233.328011253281 + }, + "value": "1/4\"", + "layer": "0", + "id": "557700" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2164.067617066334, + "min_y": 5212.973355998155, + "max_x": 2166.4860232401356, + "max_y": 5213.981025237239 + }, + "value": "1/4\"", + "layer": "0", + "id": "557701" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2156.989451269879, + "min_y": 5221.848342057683, + "max_x": 2158.80325590023, + "max_y": 5222.856011296767 + }, + "value": "15A", + "layer": "0", + "id": "557702" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2173.092278045427, + "min_y": 5230.755033790678, + "max_x": 2174.906082675778, + "max_y": 5231.762703029762 + }, + "value": "15A", + "layer": "0", + "id": "557703" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2171.593051336913, + "min_y": 5226.272195567449, + "max_x": 2173.406855967264, + "max_y": 5227.279864806533 + }, + "value": "20A", + "layer": "0", + "id": "557704" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2186.067877177622, + "min_y": 5225.813022436376, + "max_x": 2187.881681807973, + "max_y": 5226.82069167546 + }, + "value": "15A", + "layer": "0", + "id": "557705" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2239.877041193064, + "min_y": 5269.796353878512, + "max_x": 2241.690845823415, + "max_y": 5270.8040231175955 + }, + "value": "65A", + "layer": "0", + "id": "557706" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2211.0541894279977, + "min_y": 5276.010268453559, + "max_x": 2211.7567355344763, + "max_y": 5276.712814560037 + }, + "value": null, + "layer": "0", + "id": "55770A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2211.702438969988, + "min_y": 5250.434453469035, + "max_x": 2213.546605011688, + "max_y": 5276.907675415541 + }, + "value": null, + "layer": "0", + "id": "55770E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2203.626963564729, + "min_y": 5249.89766000711, + "max_x": 2205.642749995437, + "max_y": 5251.017541357503 + }, + "value": "40A", + "layer": "LINENO", + "id": "557713" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2209.719891991861, + "min_y": 5279.651190568439, + "max_x": 2211.735678422569, + "max_y": 5280.771071918833 + }, + "value": "25A", + "layer": "LINENO", + "id": "557714" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2259.095137991963, + "min_y": 5296.927431909771, + "max_x": 2261.110924422671, + "max_y": 5298.047313260165 + }, + "value": "40A", + "layer": "LINENO", + "id": "557715" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2259.286977341542, + "min_y": 5292.339287316009, + "max_x": 2263.990479013194, + "max_y": 5293.459168666403 + }, + "value": "25Ax40A", + "layer": "VALVE NO", + "id": "557716" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2267.108627464359, + "min_y": 5255.916884999721, + "max_x": 2269.5270336381604, + "max_y": 5256.924554238805 + }, + "value": "200A", + "layer": "0", + "id": "557717" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2258.512911942474, + "min_y": 5274.623198744621, + "max_x": 2261.2006271834184, + "max_y": 5275.743080095014 + }, + "value": "400A", + "layer": "LINENO", + "id": "557719" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2277.663674255883, + "min_y": 5216.920060042349, + "max_x": 2279.477478886234, + "max_y": 5217.927729281433 + }, + "value": "15A", + "layer": "0", + "id": "55771A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2277.663674255883, + "min_y": 5220.268230112429, + "max_x": 2279.477478886234, + "max_y": 5221.275899351513 + }, + "value": "15A", + "layer": "0", + "id": "55771B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2286.148965231391, + "min_y": 5214.502916823614, + "max_x": 2293.5401821439873, + "max_y": 5215.622798174008 + }, + "value": "P10216CV-01", + "layer": "VALVE NO", + "id": "55771C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2309.697662699575, + "min_y": 5216.897992716388, + "max_x": 2311.15265165305, + "max_y": 5217.706319912763 + }, + "value": "15A", + "layer": "0", + "id": "55771F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2298.848256324711, + "min_y": 5374.024187477051, + "max_x": 2300.6620609550623, + "max_y": 5375.031856716135 + }, + "value": "20A", + "layer": "0", + "id": "557721" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2320.229055326751, + "min_y": 5320.790442146318, + "max_x": 2322.0428599571023, + "max_y": 5321.798111385402 + }, + "value": "20A", + "layer": "0", + "id": "557722" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2294.617346447837, + "min_y": 5337.610259239249, + "max_x": 2296.431151078188, + "max_y": 5338.617928478333 + }, + "value": "65A", + "layer": "0", + "id": "557723" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2301.451378569998, + "min_y": 5274.837781242328, + "max_x": 2303.265183200349, + "max_y": 5275.845450481412 + }, + "value": "20A", + "layer": "0", + "id": "557725" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2334.600621394162, + "min_y": 5303.366715186127, + "max_x": 2336.414426024513, + "max_y": 5304.374384425211 + }, + "value": "15A", + "layer": "0", + "id": "557728" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2381.39291817879, + "min_y": 5381.274076038834, + "max_x": 2383.206722809141, + "max_y": 5382.281745277918 + }, + "value": "20A", + "layer": "0", + "id": "557729" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2410.024004946001, + "min_y": 5363.435250683894, + "max_x": 2411.837809576352, + "max_y": 5364.442919922978 + }, + "value": "15A", + "layer": "0", + "id": "55772A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2432.715286548473, + "min_y": 5344.255056615833, + "max_x": 2443.3786349438215, + "max_y": 5345.374937966227 + }, + "value": "15A", + "layer": "0", + "id": "55772C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2434.122844862981, + "min_y": 5349.236100699279, + "max_x": 2442.185990585813, + "max_y": 5350.355982049672 + }, + "value": "SP10602BA-02", + "layer": "VALVE NO", + "id": "55772F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.256022990341, + "min_y": 5345.365971907169, + "max_x": 2428.069827620692, + "max_y": 5346.373641146253 + }, + "value": "20A", + "layer": "0", + "id": "557731" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2450.029386150022, + "min_y": 5363.419403777506, + "max_x": 2450.029386150022, + "max_y": 5365.269776957727 + }, + "value": null, + "layer": "UTIL", + "id": "557733" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2449.81201537671, + "min_y": 5365.601031206744, + "max_x": 2450.243123214784, + "max_y": 5368.187678235176 + }, + "value": null, + "layer": "0", + "id": "557738" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5368.187678235173, + "max_x": 2450.2431232147815, + "max_y": 5368.618786073242 + }, + "value": null, + "layer": "0", + "id": "55773F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2450.029386150033, + "min_y": 5368.942685249535, + "max_x": 2450.595419802798, + "max_y": 5370.231978104836 + }, + "value": null, + "layer": "UTIL", + "id": "557740" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2362.266686728889, + "min_y": 5331.312809437716, + "max_x": 2364.08049135924, + "max_y": 5332.3204786768 + }, + "value": "20A", + "layer": "0", + "id": "557748" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2366.448570895933, + "min_y": 5331.443503413291, + "max_x": 2373.8397878085293, + "max_y": 5332.563384763685 + }, + "value": "P10214BA-02", + "layer": "VALVE NO", + "id": "55774A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2384.212696356016, + "min_y": 5321.570220148728, + "max_x": 2386.026500986367, + "max_y": 5322.577889387812 + }, + "value": "15A", + "layer": "0", + "id": "55774E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2385.178914381434, + "min_y": 5262.82153626813, + "max_x": 2396.601704155447, + "max_y": 5263.941417618524 + }, + "value": "P-10201-25A-F1A-n", + "layer": "LINENO", + "id": "55774F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2426.475994793775, + "min_y": 5227.420104491372, + "max_x": 2433.8672117063716, + "max_y": 5230.584618037911 + }, + "value": "20A", + "layer": "0", + "id": "557751" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2433.853330254815, + "min_y": 5244.618367281088, + "max_x": 2435.667134885166, + "max_y": 5245.6260365201715 + }, + "value": "15A", + "layer": "0", + "id": "557752" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2433.73570643468, + "min_y": 5241.364108257374, + "max_x": 2435.5495110650313, + "max_y": 5242.371777496458 + }, + "value": "15A", + "layer": "0", + "id": "557753" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2447.551778865147, + "min_y": 5247.919898216622, + "max_x": 2458.9745686391598, + "max_y": 5249.039779567015 + }, + "value": "P-10225-25A-F2A-n", + "layer": "LINENO", + "id": "557755" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2428.739739602951, + "min_y": 5236.922978327164, + "max_x": 2436.1309565155475, + "max_y": 5238.042859677557 + }, + "value": "T10221BA-08", + "layer": "VALVE NO", + "id": "557756" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2411.412946388048, + "min_y": 5243.866643540876, + "max_x": 2415.978138038289, + "max_y": 5244.558339245458 + }, + "value": "T10221BA-06", + "layer": "VALVE NO", + "id": "557759" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2411.411173302349, + "min_y": 5240.459782779056, + "max_x": 2416.123248633363, + "max_y": 5241.173733586786 + }, + "value": "T10221BA-05", + "layer": "VALVE NO", + "id": "55775A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2424.843417620813, + "min_y": 5250.617207688818, + "max_x": 2429.408609271054, + "max_y": 5251.3089033934 + }, + "value": "T10221BA-11", + "layer": "VALVE NO", + "id": "55775F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.368091195663, + "min_y": 5337.526359630141, + "max_x": 2294.364987344488, + "max_y": 5351.045132824223 + }, + "value": null, + "layer": "0", + "id": "557762" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2277.867211964343, + "min_y": 5346.219815120909, + "max_x": 2290.919400719759, + "max_y": 5348.842011456323 + }, + "value": "P-10217-65A-F2A-n", + "layer": "LINENO", + "id": "557766" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2277.735176841913, + "min_y": 5347.653586840593, + "max_x": 2294.436810190332, + "max_y": 5351.615186604726 + }, + "value": null, + "layer": "0", + "id": "557768" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2293.19842437674, + "min_y": 5339.860493947988, + "max_x": 2294.223582409264, + "max_y": 5349.605402552299 + }, + "value": null, + "layer": "0", + "id": "55776A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.220613828692, + "min_y": 5351.564823463128, + "max_x": 2281.207153397539, + "max_y": 5354.364482998555 + }, + "value": null, + "layer": "0", + "id": "55776D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2294.223582409264, + "min_y": 5341.566363016084, + "max_x": 2297.350071554799, + "max_y": 5342.57802940942 + }, + "value": null, + "layer": "0", + "id": "55776F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2297.885860612325, + "min_y": 5341.577311446744, + "max_x": 2298.722977542981, + "max_y": 5342.56385101559 + }, + "value": null, + "layer": "0", + "id": "557772" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2297.3057233695713, + "min_y": 5341.759953498762, + "max_x": 2297.9302087975525, + "max_y": 5342.384438926743 + }, + "value": null, + "layer": "0", + "id": "557774" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2280.222228810279, + "min_y": 5354.90027205608, + "max_x": 2310.794264311174, + "max_y": 5357.458086979029 + }, + "value": null, + "layer": "0", + "id": "55777F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2280.403255880711, + "min_y": 5354.320134813327, + "max_x": 2281.0277413086924, + "max_y": 5354.944620241308 + }, + "value": null, + "layer": "0", + "id": "557780" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.052460883813, + "min_y": 5361.07358781259, + "max_x": 2318.03076429721, + "max_y": 5371.85277081562 + }, + "value": null, + "layer": "0", + "id": "55778B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2315.052460883816, + "min_y": 5359.584436105897, + "max_x": 2318.03076429721, + "max_y": 5361.07358781259 + }, + "value": null, + "layer": "TEXT", + "id": "55778E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2317.308721310905, + "min_y": 5363.224344171644, + "max_x": 2319.9964365518495, + "max_y": 5364.717519305502 + }, + "value": "CWS", + "layer": "0", + "id": "557790" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2476.498802638582, + "min_y": 5320.512319000116, + "max_x": 2481.2023043102345, + "max_y": 5321.632200350509 + }, + "value": "15Ax25A", + "layer": "VALVE NO", + "id": "557792" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2400.031658372115, + "min_y": 5310.013654110934, + "max_x": 2401.845463002466, + "max_y": 5311.021323350018 + }, + "value": "15A", + "layer": "0", + "id": "557793" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2414.171121331325, + "min_y": 5229.407805962036, + "max_x": 2417.680594068507, + "max_y": 5229.94310120104 + }, + "value": null, + "layer": "0", + "id": "557795" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2413.742467606912, + "min_y": 5229.387514895254, + "max_x": 2413.742467606912, + "max_y": 5230.52563958776 + }, + "value": null, + "layer": "0", + "id": "55779C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2454.499195894689, + "min_y": 5252.469176181911, + "max_x": 2455.610986529497, + "max_y": 5271.863318713062 + }, + "value": null, + "layer": "0", + "id": "55779F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2454.497375875041, + "min_y": 5249.548619896154, + "max_x": 2456.284837601784, + "max_y": 5252.469176181911 + }, + "value": null, + "layer": "0", + "id": "5577A0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2454.7013861427563, + "min_y": 5253.035428997124, + "max_x": 2455.4051562421296, + "max_y": 5253.739199096497 + }, + "value": null, + "layer": "0", + "id": "5577B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2259.905663823836, + "min_y": 5280.434497040768, + "max_x": 2259.905663823836, + "max_y": 5281.5320395997 + }, + "value": null, + "layer": "0", + "id": "5577BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2259.199908372452, + "min_y": 5279.131693949628, + "max_x": 2261.013713002803, + "max_y": 5280.139363188712 + }, + "value": "40A", + "layer": "0", + "id": "5577BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2239.893203312735, + "min_y": 5244.637665667987, + "max_x": 2241.908989743443, + "max_y": 5245.75754701838 + }, + "value": "80A", + "layer": "LINENO", + "id": "5577BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2390.698928707033, + "min_y": 5376.427594591181, + "max_x": 2402.7936472912816, + "max_y": 5377.547475941575 + }, + "value": "P-10313-100A-F1A-n", + "layer": "LINENO", + "id": "5577BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2408.469115699797, + "min_y": 5359.062027850902, + "max_x": 2420.5638342840457, + "max_y": 5360.181909201296 + }, + "value": "P-10313-100A-F1A-n", + "layer": "LINENO", + "id": "5577C0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2441.5771986139484, + "min_y": 5360.589209950976, + "max_x": 2444.1638456423802, + "max_y": 5361.02031778905 + }, + "value": null, + "layer": "0", + "id": "5577C4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2441.1460907758824, + "min_y": 5360.589209950978, + "max_x": 2441.577198613951, + "max_y": 5361.020317789047 + }, + "value": null, + "layer": "0", + "id": "5577CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2210.448548618288, + "min_y": 5274.369055502756, + "max_x": 2212.464335048996, + "max_y": 5275.488936853149 + }, + "value": "40A", + "layer": "LINENO", + "id": "5577D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5248.862361582013, + "max_x": 2192.397888969476, + "max_y": 5249.933526583788 + }, + "value": null, + "layer": "0", + "id": "5577D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2195.794561269281, + "min_y": 5248.860693727383, + "max_x": 2197.627643358927, + "max_y": 5249.231652819791 + }, + "value": null, + "layer": "0", + "id": "5577DD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2192.3978889694786, + "min_y": 5249.213256451514, + "max_x": 2195.168158709003, + "max_y": 5249.609009271449 + }, + "value": null, + "layer": "0", + "id": "5577EA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2189.040669992034, + "min_y": 5246.908572124153, + "max_x": 2197.795170868468, + "max_y": 5248.1157184544845 + }, + "value": "FOR DRAIN", + "layer": "0", + "id": "5577F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2289.480866180621, + "min_y": 5268.841146913922, + "max_x": 2289.480866180621, + "max_y": 5270.894135185662 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5577FF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2291.2713214277455, + "min_y": 5265.96046947836, + "max_x": 2291.975091527119, + "max_y": 5268.773301444696 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557802" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2291.2507997594134, + "min_y": 5270.961980654879, + "max_x": 2291.9545698587867, + "max_y": 5273.991141846221 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557803" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5272.721118931632, + "max_x": 2292.152412171221, + "max_y": 5273.337350377769 + }, + "value": null, + "layer": "0", + "id": "557807" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5267.230492392942, + "max_x": 2292.172933839553, + "max_y": 5267.557658244926 + }, + "value": null, + "layer": "0", + "id": "55780E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2385.485064914944, + "min_y": 5200.622406944123, + "max_x": 2394.125064914944, + "max_y": 5201.422406944123 + }, + "value": "SAFETY AREA TO ATM", + "layer": "0", + "id": "55781B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2381.434676658221, + "min_y": 5424.967746930249, + "max_x": 2390.074676658221, + "max_y": 5425.767746930249 + }, + "value": "SAFETY AREA TO ATM", + "layer": "0", + "id": "55781C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2114.367537962891, + "min_y": 5312.301001221121, + "max_x": 2126.46225654714, + "max_y": 5313.420882571514 + }, + "value": "IA-10904-15A-F1A-n", + "layer": "LINENO", + "id": "557824" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.033164512255, + "min_y": 5267.522131353074, + "max_x": 2307.326548807396, + "max_y": 5272.863333439371 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557828" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2307.374366598548, + "min_y": 5267.522120703127, + "max_x": 2307.374377248503, + "max_y": 5272.863322789414 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55782A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2302.033164512255, + "min_y": 5267.522120703127, + "max_x": 2307.374366598548, + "max_y": 5267.522131353074 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55782B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2302.896408312273, + "min_y": 5268.444192930812, + "max_x": 2306.256408312273, + "max_y": 5271.838309378103 + }, + "value": "HS", + "layer": "INSTRUMENT", + "id": "55782F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2309.28154529694, + "min_y": 5357.458086979029, + "max_x": 2312.259848710338, + "max_y": 5372.144540712201 + }, + "value": null, + "layer": "TEXT", + "id": "557832" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2312.259848710335, + "min_y": 5359.876206002478, + "max_x": 2312.259848710335, + "max_y": 5370.655389005512 + }, + "value": null, + "layer": "TEXT", + "id": "557833" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2308.9501198741, + "min_y": 5359.22457277586, + "max_x": 2319.029052027641, + "max_y": 5363.7855881451305 + }, + "value": "CWR", + "layer": "0", + "id": "557837" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.005337737842, + "min_y": 5191.581226826525, + "max_x": 2475.4848631394157, + "max_y": 5192.514461285186 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55783A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2454.042813960667, + "min_y": 5191.706805990044, + "max_x": 2459.642220712634, + "max_y": 5192.640040448705 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "55783B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2378.54096395221, + "min_y": 5396.358499155552, + "max_x": 2380.629172572612, + "max_y": 5397.496623848055 + }, + "value": null, + "layer": "0", + "id": "55783D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2380.579280864231, + "min_y": 5396.576288448565, + "max_x": 2381.2818269707095, + "max_y": 5397.278834555043 + }, + "value": null, + "layer": "0", + "id": "55783E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2311.019599120105, + "min_y": 5331.405805092289, + "max_x": 2313.476424489016, + "max_y": 5332.625116535755 + }, + "value": null, + "layer": "0", + "id": "55784C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2310.3669447220077, + "min_y": 5331.7047811362645, + "max_x": 2311.0694908284863, + "max_y": 5332.407327242743 + }, + "value": null, + "layer": "0", + "id": "55784D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2309.770403772783, + "min_y": 5330.150873724113, + "max_x": 2311.584208403134, + "max_y": 5331.158542963197 + }, + "value": "15A", + "layer": "0", + "id": "55785A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2379.87045320825, + "min_y": 5395.03909816856, + "max_x": 2381.6842578386013, + "max_y": 5396.0467674076435 + }, + "value": "15A", + "layer": "0", + "id": "55785B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2380.778288873055, + "min_y": 5398.625049044539, + "max_x": 2382.592093503406, + "max_y": 5399.632718283623 + }, + "value": "15A", + "layer": "0", + "id": "55785C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2285.852199841818, + "min_y": 5337.907398598186, + "max_x": 2290.5546552160295, + "max_y": 5341.323966402799 + }, + "value": "TG", + "layer": "INSTRUMENT", + "id": "55785E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2285.6520844041356, + "min_y": 5336.586201075277, + "max_x": 2291.3762131937906, + "max_y": 5342.310329864933 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "55785F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2121.427856334909, + "min_y": 5322.794773066814, + "max_x": 2136.750603872016, + "max_y": 5325.515818261244 + }, + "value": null, + "layer": "0", + "id": "557862" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2118.450765279978, + "min_y": 5323.437712176478, + "max_x": 2121.427858745963, + "max_y": 5325.251301043117 + }, + "value": null, + "layer": "0", + "id": "557863" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2121.300240509278, + "min_y": 5321.781598666496, + "max_x": 2123.316026939986, + "max_y": 5324.909560045112 + }, + "value": "T", + "layer": "0", + "id": "557868" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2136.750603872014, + "min_y": 5322.794773066814, + "max_x": 2138.111126469232, + "max_y": 5325.515818261244 + }, + "value": null, + "layer": "TEXT", + "id": "55786D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2125.355617610122, + "min_y": 5320.952034248525, + "max_x": 2137.525676139597, + "max_y": 5327.358568663814 + }, + "value": "CONDENSATE", + "layer": "0", + "id": "55786F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2115.578127497575, + "min_y": 5323.841409621458, + "max_x": 2117.897435629356, + "max_y": 5324.886197066081 + }, + "value": null, + "layer": "0", + "id": "557873" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2117.851635193984, + "min_y": 5324.041335620838, + "max_x": 2118.4965657153484, + "max_y": 5324.686266142203 + }, + "value": null, + "layer": "0", + "id": "55787B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2453.959671454424, + "min_y": 5195.003195262011, + "max_x": 2459.559078206391, + "max_y": 5195.936429720672 + }, + "value": "2025.06.20", + "layer": "REV.UPDATE", + "id": "557880" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.095083203988, + "min_y": 5195.028443088047, + "max_x": 2475.5746086055615, + "max_y": 5195.961677546708 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "557881" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2450.02938057616, + "min_y": 5386.57562888177, + "max_x": 2450.6566424347, + "max_y": 5389.23615559069 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "557883" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2447.313026822792, + "min_y": 5390.893159177007, + "max_x": 2452.015482197003, + "max_y": 5394.410704071918 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "557884" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2446.8617304410905, + "min_y": 5389.234609326506, + "max_x": 2453.1970307112274, + "max_y": 5395.569909596643 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557885" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2449.63364442256, + "min_y": 5385.83381636476, + "max_x": 2450.4321642779123, + "max_y": 5386.632336220113 + }, + "value": null, + "layer": "0", + "id": "557887" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.165166156731, + "min_y": 5198.283838139404, + "max_x": 2475.6446915583047, + "max_y": 5199.217072598065 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55788E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2453.981039484839, + "min_y": 5198.436934791538, + "max_x": 2459.580446236806, + "max_y": 5199.370169250199 + }, + "value": "2025.06.23", + "layer": "REV.UPDATE", + "id": "55788F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2412.3341631199037, + "min_y": 5381.705653282592, + "max_x": 2413.132682975256, + "max_y": 5382.504173137944 + }, + "value": null, + "layer": "0", + "id": "557890" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2412.109684963119, + "min_y": 5379.279034583653, + "max_x": 2413.357161132045, + "max_y": 5385.021030205283 + }, + "value": null, + "layer": "0", + "id": "557891" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5313.514664136208, + "max_x": 2147.024710464513, + "max_y": 5317.657793784424 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "55789C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2146.1427392053506, + "min_y": 5316.493952721584, + "max_x": 2146.787669726715, + "max_y": 5317.138883242948 + }, + "value": null, + "layer": "0", + "id": "5578AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2145.961130138342, + "min_y": 5317.936141362682, + "max_x": 2146.96866357739, + "max_y": 5321.474304210019 + }, + "value": null, + "layer": "0", + "id": "5578AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2146.434197841328, + "min_y": 5319.807175704625, + "max_x": 2189.992992205812, + "max_y": 5322.785479118019 + }, + "value": null, + "layer": "0", + "id": "5578B4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2181.492824728518, + "min_y": 5320.531664118823, + "max_x": 2187.764160290721, + "max_y": 5322.024839252681 + }, + "value": "T-10221", + "layer": "0", + "id": "5578B5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2189.992992205812, + "min_y": 5319.807175704625, + "max_x": 2191.48214391251, + "max_y": 5322.785479118019 + }, + "value": null, + "layer": "TEXT", + "id": "5578B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2153.794844433587, + "min_y": 5322.037806359523, + "max_x": 2165.2176342076, + "max_y": 5323.157687709916 + }, + "value": "P-10201-25A-F1A-n", + "layer": "LINENO", + "id": "5578BD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2144.6897116598384, + "min_y": 5301.543774826429, + "max_x": 2147.4599813993614, + "max_y": 5301.939527646365 + }, + "value": null, + "layer": "0", + "id": "5578C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2146.426781025651, + "min_y": 5309.151205854783, + "max_x": 2146.426781025651, + "max_y": 5312.263267888008 + }, + "value": null, + "layer": "0", + "id": "5578CB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2453.859252369304, + "min_y": 5201.737765413992, + "max_x": 2459.458659121271, + "max_y": 5202.670999872653 + }, + "value": "2025.07.02", + "layer": "REV.UPDATE", + "id": "5578CD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.208060331363, + "min_y": 5201.798321383987, + "max_x": 2475.6875857329364, + "max_y": 5202.731555842648 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "5578CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2367.291824080107, + "min_y": 5175.52458780575, + "max_x": 2369.120210392759, + "max_y": 5176.595631710447 + }, + "value": null, + "layer": "0", + "id": "5578D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2366.911010513622, + "min_y": 5174.273185607204, + "max_x": 2368.463911828425, + "max_y": 5175.135908559872 + }, + "value": "H50", + "layer": "0", + "id": "5578D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5171.680618496471, + "max_x": 2420.160697488162, + "max_y": 5175.079588010206 + }, + "value": null, + "layer": "0", + "id": "5578DC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2419.8088124384753, + "min_y": 5173.809565095618, + "max_x": 2420.5125825378486, + "max_y": 5174.513335194992 + }, + "value": null, + "layer": "0", + "id": "5578E3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2300.024359281488, + "min_y": 5342.863729902013, + "max_x": 2312.7910066759728, + "max_y": 5343.983611252406 + }, + "value": "CWS-10615-50A-S2A-n", + "layer": "LINENO", + "id": "5578E7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2282.086183744064, + "min_y": 5358.259376445259, + "max_x": 2294.8528311385485, + "max_y": 5359.379257795652 + }, + "value": "CWR-10625-50A-S2A-n", + "layer": "LINENO", + "id": "5578EC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2453.847248081588, + "min_y": 5205.263107738431, + "max_x": 2459.446654833555, + "max_y": 5206.196342197092 + }, + "value": "2025.07.07", + "layer": "REV.UPDATE", + "id": "5578ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2471.136634413468, + "min_y": 5205.369153807961, + "max_x": 2475.6161598150416, + "max_y": 5206.302388266622 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "5578EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3084.56668073894, + "min_y": 5207.659055925442, + "max_x": 3115.459673725612, + "max_y": 5231.884800494896 + }, + "value": null, + "layer": "0", + "id": "5578F2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3118.774984411618, + "min_y": 5227.902562622761, + "max_x": 3123.97807106253, + "max_y": 5227.902562622761 + }, + "value": null, + "layer": "0", + "id": "5578F3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.898010695544, + "min_y": 5257.358067246602, + "max_x": 3376.81561653091, + "max_y": 5325.401019785918 + }, + "value": null, + "layer": "0", + "id": "5578F5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3154.585194672269, + "min_y": 5326.085801726029, + "max_x": 3172.5032962785635, + "max_y": 5327.578976859887 + }, + "value": "CWS-10601-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5578F7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3113.922996462834, + "min_y": 5251.400755044797, + "max_x": 3376.81561653091, + "max_y": 5324.467199244735 + }, + "value": null, + "layer": "0", + "id": "5578F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3190.708997373028, + "min_y": 5324.467325610878, + "max_x": 3192.202172506885, + "max_y": 5325.401019785918 + }, + "value": null, + "layer": "0", + "id": "5578FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3115.166050519189, + "min_y": 5229.269962585291, + "max_x": 3118.749670840448, + "max_y": 5230.763137719149 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "5578FD" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2978.322374834986, + "min_y": 5135.990628627536, + "max_x": 3395.366189721491, + "max_y": 5432.992055109983 + }, + "value": null, + "layer": "0", + "id": "5578FE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3224.55404624357, + "min_y": 5205.106762810402, + "max_x": 3239.336480068763, + "max_y": 5207.346525511189 + }, + "value": "VP-10217", + "layer": "0", + "id": "5578FF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3187.339957654994, + "min_y": 5201.170000857427, + "max_x": 3211.56230432792, + "max_y": 5211.284515060323 + }, + "value": null, + "layer": "0", + "id": "557900" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3193.65985437007, + "min_y": 5205.106762810402, + "max_x": 3208.4422881952632, + "max_y": 5207.346525511189 + }, + "value": "VP-10117", + "layer": "0", + "id": "557901" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3191.45664182382, + "min_y": 5211.284515060323, + "max_x": 3318.189573646122, + "max_y": 5251.400755044797 + }, + "value": null, + "layer": "0", + "id": "557902" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3237.573725457927, + "min_y": 5258.772558204604, + "max_x": 3254.595921983907, + "max_y": 5260.265733338462 + }, + "value": "CWR-10625-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557903" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3237.135374264564, + "min_y": 5252.05123320473, + "max_x": 3254.1575707905436, + "max_y": 5253.544408338588 + }, + "value": "CWS-10615-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557904" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3154.726204112821, + "min_y": 5313.178300829672, + "max_x": 3172.6443057191154, + "max_y": 5314.67147596353 + }, + "value": "CWR-10620-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557905" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3187.54305240155, + "min_y": 5269.929512936849, + "max_x": 3224.730883360586, + "max_y": 5269.929512936849 + }, + "value": null, + "layer": "0", + "id": "557906" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3204.346812017756, + "min_y": 5270.725523257399, + "max_x": 3207.0345272587, + "max_y": 5272.965285958186 + }, + "value": "2F", + "layer": "0", + "id": "557907" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3340.693504251073, + "min_y": 5326.085801726029, + "max_x": 3358.6116058573675, + "max_y": 5327.578976859887 + }, + "value": "CWS-10601-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "55790E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3340.861390844036, + "min_y": 5313.178300829672, + "max_x": 3358.7794924503305, + "max_y": 5314.67147596353 + }, + "value": "CWS-10620-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "55790F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3037.904061453409, + "min_y": 5266.841223220684, + "max_x": 3055.8221630597036, + "max_y": 5268.334398354542 + }, + "value": "CWS-10601-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557912" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3114.932429401139, + "min_y": 5237.619332979722, + "max_x": 3123.54666726801, + "max_y": 5239.130107106277 + }, + "value": null, + "layer": "0", + "id": "557913" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3077.00047749896, + "min_y": 5272.665480493286, + "max_x": 3086.931209834896, + "max_y": 5280.75853638067 + }, + "value": null, + "layer": "0", + "id": "557914" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5237.619332979722, + "max_x": 3114.161233368014, + "max_y": 5250.26994533108 + }, + "value": null, + "layer": "0", + "id": "557915" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3053.839593957435, + "min_y": 5276.188606431368, + "max_x": 3077.00047749896, + "max_y": 5280.75853638067 + }, + "value": null, + "layer": "0", + "id": "557916" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3053.839593957435, + "min_y": 5276.188606431365, + "max_x": 3077.00047749896, + "max_y": 5276.188606431365 + }, + "value": null, + "layer": "0", + "id": "557917" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3056.08464385266, + "min_y": 5277.506253512225, + "max_x": 3071.1358492019476, + "max_y": 5279.298063672854 + }, + "value": "CITY RAW WATER", + "layer": "0", + "id": "55791A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3118.776190980222, + "min_y": 5256.794269744265, + "max_x": 3121.306904589622, + "max_y": 5256.795501212057 + }, + "value": null, + "layer": "0", + "id": "55791D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3113.16134650147, + "min_y": 5256.795501212057, + "max_x": 3115.707114254224, + "max_y": 5299.681783606478 + }, + "value": null, + "layer": "0", + "id": "55791E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3258.796396026934, + "min_y": 5201.170000857427, + "max_x": 3283.018742699861, + "max_y": 5211.284515060323 + }, + "value": null, + "layer": "0", + "id": "557920" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3265.116292742011, + "min_y": 5205.106762810402, + "max_x": 3278.554868946732, + "max_y": 5207.346525511189 + }, + "value": "E-10119", + "layer": "0", + "id": "557921" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3294.281737778424, + "min_y": 5201.170000857427, + "max_x": 3318.504084451349, + "max_y": 5211.284515060323 + }, + "value": null, + "layer": "0", + "id": "557922" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3300.601634493499, + "min_y": 5205.106762810402, + "max_x": 3314.04021069822, + "max_y": 5207.346525511189 + }, + "value": "E-10219", + "layer": "0", + "id": "557923" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3198.133638398234, + "min_y": 5211.260331024806, + "max_x": 3318.189573646122, + "max_y": 5258.077751619208 + }, + "value": null, + "layer": "0", + "id": "557924" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3263.461574029584, + "min_y": 5211.284515060323, + "max_x": 3263.461574029584, + "max_y": 5251.400755044797 + }, + "value": null, + "layer": "0", + "id": "557926" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3298.946915781074, + "min_y": 5211.284515060323, + "max_x": 3298.946915781074, + "max_y": 5251.400755044797 + }, + "value": null, + "layer": "0", + "id": "557928" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3262.965873895449, + "min_y": 5223.221522866425, + "max_x": 3294.960424732914, + "max_y": 5224.9053113986565 + }, + "value": "CWR-10626-25A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "55792D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3298.451215646938, + "min_y": 5223.221522866425, + "max_x": 3330.4457664844017, + "max_y": 5224.9053113986565 + }, + "value": "CWR-10627-25A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557931" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3194.376261405311, + "min_y": 5223.221522866425, + "max_x": 3223.468427362243, + "max_y": 5224.9053113986565 + }, + "value": "CWS-10618-15A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557934" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3122.786794191116, + "min_y": 5206.986058045594, + "max_x": 3137.569228016309, + "max_y": 5209.225820746381 + }, + "value": "CT-10601", + "layer": "0", + "id": "557937" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3025.107242194924, + "min_y": 5162.803841073004, + "max_x": 3042.577391261061, + "max_y": 5165.043603773791 + }, + "value": "P-10602A/B", + "layer": "0", + "id": "557938" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3025.402232387392, + "min_y": 5158.928833586464, + "max_x": 3053.354670080411, + "max_y": 5160.720656515504 + }, + "value": "COOLING WATER FEEDING PUMP", + "layer": "0", + "id": "557939" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2991.615169876359, + "min_y": 5162.731667446603, + "max_x": 3006.397603701552, + "max_y": 5164.97143014739 + }, + "value": "CT-10601", + "layer": "0", + "id": "55793A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2992.123358297595, + "min_y": 5158.628758578024, + "max_x": 3006.099577144105, + "max_y": 5160.420581507064 + }, + "value": "COOLING TOWER", + "layer": "0", + "id": "55793B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3376.81561653091, + "min_y": 5320.790411641119, + "max_x": 3376.81561653091, + "max_y": 5325.401019785918 + }, + "value": null, + "layer": "0", + "id": "55793D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3051.2796760914953, + "min_y": 5224.140621354317, + "max_x": 3058.803558628385, + "max_y": 5231.664503891206 + }, + "value": null, + "layer": "0", + "id": "55793F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3050.670273376144, + "min_y": 5221.215536986291, + "max_x": 3059.412961343741, + "max_y": 5224.912037790279 + }, + "value": null, + "layer": "0", + "id": "557940" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3050.670273376144, + "min_y": 5221.215536986291, + "max_x": 3052.75930201519, + "max_y": 5224.912037790279 + }, + "value": null, + "layer": "0", + "id": "557941" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3054.2063437583606, + "min_y": 5227.067289021182, + "max_x": 3055.8768909615196, + "max_y": 5228.737836224341 + }, + "value": null, + "layer": "0", + "id": "557943" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3050.525400608454, + "min_y": 5227.902562622761, + "max_x": 3052.026263658424, + "max_y": 5233.265518737209 + }, + "value": null, + "layer": "0", + "id": "557944" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3055.04161735994, + "min_y": 5227.155975055832, + "max_x": 3061.103085490736, + "max_y": 5228.649150189689 + }, + "value": null, + "layer": "0", + "id": "557945" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3041.286338279272, + "min_y": 5205.339657481388, + "max_x": 3050.151543030747, + "max_y": 5208.415237366892 + }, + "value": null, + "layer": "0", + "id": "557949" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3053.436528325235, + "min_y": 5207.659055925442, + "max_x": 3055.869704656981, + "max_y": 5207.659055925442 + }, + "value": null, + "layer": "0", + "id": "55794A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3025.8980106955423, + "min_y": 5203.8971146569975, + "max_x": 3033.421893232432, + "max_y": 5211.420997193886 + }, + "value": null, + "layer": "0", + "id": "55794D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.288607980191, + "min_y": 5200.972030288972, + "max_x": 3034.031295947788, + "max_y": 5204.668531092959 + }, + "value": null, + "layer": "0", + "id": "55794E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.288607980191, + "min_y": 5200.972030288972, + "max_x": 3027.377636619235, + "max_y": 5204.668531092959 + }, + "value": null, + "layer": "0", + "id": "55794F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3028.8246783624077, + "min_y": 5206.823782323862, + "max_x": 3030.4952255655667, + "max_y": 5208.494329527021 + }, + "value": null, + "layer": "0", + "id": "557951" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.151423128614, + "min_y": 5207.659055925442, + "max_x": 3026.644598262471, + "max_y": 5217.884877405098 + }, + "value": null, + "layer": "0", + "id": "557952" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3029.659951963987, + "min_y": 5206.912468358513, + "max_x": 3035.721420094781, + "max_y": 5208.405643492372 + }, + "value": null, + "layer": "0", + "id": "557953" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3059.185015342985, + "min_y": 5207.659055925442, + "max_x": 3087.059436190867, + "max_y": 5207.659055925442 + }, + "value": null, + "layer": "0", + "id": "557957" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3020.832865212003, + "min_y": 5229.586745621255, + "max_x": 3027.921059896063, + "max_y": 5235.880519029937 + }, + "value": null, + "layer": "0", + "id": "55795A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3047.359486147361, + "min_y": 5200.657951954176, + "max_x": 3048.485848006791, + "max_y": 5202.522071840002 + }, + "value": null, + "layer": "0", + "id": "55795B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3027.179031872656, + "min_y": 5236.740409147553, + "max_x": 3030.762652193915, + "max_y": 5238.233584281411 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557963" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3043.843322645112, + "min_y": 5203.18594482458, + "max_x": 3046.5310378860563, + "max_y": 5204.679119958438 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557964" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3023.790212814757, + "min_y": 5195.588547594515, + "max_x": 3038.57264663995, + "max_y": 5197.828310295302 + }, + "value": "P-10602B", + "layer": "0", + "id": "557965" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3049.140231309587, + "min_y": 5216.825877970141, + "max_x": 3063.92266513478, + "max_y": 5219.065640670928 + }, + "value": "P-10602A", + "layer": "0", + "id": "557967" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3027.16714127924, + "min_y": 5223.933608445612, + "max_x": 3035.230287002072, + "max_y": 5228.897855473749 + }, + "value": "300Ax200A", + "layer": "14-D-PIPELINE-LINE", + "id": "557968" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.151423128745, + "min_y": 5222.962423404318, + "max_x": 3026.644598262602, + "max_y": 5226.218814521966 + }, + "value": null, + "layer": "0", + "id": "557969" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3065.939536832155, + "min_y": 5225.583164178708, + "max_x": 3075.5332084267, + "max_y": 5228.67734887792 + }, + "value": null, + "layer": "0", + "id": "55796F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3078.818193721188, + "min_y": 5227.902562622761, + "max_x": 3081.251370052934, + "max_y": 5227.902562622761 + }, + "value": null, + "layer": "0", + "id": "557970" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3072.741151543314, + "min_y": 5220.901458651495, + "max_x": 3073.867513402745, + "max_y": 5222.765578537321 + }, + "value": null, + "layer": "0", + "id": "557973" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3081.081456471633, + "min_y": 5229.269962585293, + "max_x": 3084.665076792892, + "max_y": 5230.763137719151 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557979" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3075.469121992476, + "min_y": 5229.269962585293, + "max_x": 3079.052742313735, + "max_y": 5230.763137719151 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "55797A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3069.224988041065, + "min_y": 5223.429451521899, + "max_x": 3071.9127032820093, + "max_y": 5224.922626655757 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "55797B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2989.347622491164, + "min_y": 5156.784751970023, + "max_x": 3020.4925977398952, + "max_y": 5158.576562130652 + }, + "value": ".9;SIZE : L2,800 x W5,160 CAPA : 500RT DP/OP : F.W / ATM DT/OT : 60 %%DC / 32 %%DC MATERIAL : F.R.P/P.V.C", + "layer": "0", + "id": "55797D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3025.52560798759, + "min_y": 5156.349326289095, + "max_x": 3058.7342067994105, + "max_y": 5158.141136449724 + }, + "value": ".9; CAPA : 8,400L/min PRESSURE : 0.4MPa RPM: 1,750 MATERIAL : GC200/SM45C", + "layer": "0", + "id": "557981" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3115.7071142542227, + "min_y": 5271.572570517412, + "max_x": 3124.5386292626094, + "max_y": 5275.988328021605 + }, + "value": null, + "layer": "0", + "id": "557985" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3116.376442817264, + "min_y": 5272.497048893686, + "max_x": 3119.399450534516, + "max_y": 5275.101315256805 + }, + "value": "TE", + "layer": "0", + "id": "557986" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3120.654114855332, + "min_y": 5272.481541495757, + "max_x": 3123.677122572584, + "max_y": 5275.277986970444 + }, + "value": "TI", + "layer": "0", + "id": "55798C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5273.780449269509, + "max_x": 3124.578887204719, + "max_y": 5276.028585963721 + }, + "value": null, + "layer": "0", + "id": "55798E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5271.532312575301, + "max_x": 3124.578887204719, + "max_y": 5276.028585963717 + }, + "value": null, + "layer": "0", + "id": "557991" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5271.532312575295, + "max_x": 3124.578887204719, + "max_y": 5273.780449269507 + }, + "value": null, + "layer": "0", + "id": "557992" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3100.372079331362, + "min_y": 5229.676921742802, + "max_x": 3109.2035943397464, + "max_y": 5234.092679246995 + }, + "value": null, + "layer": "0", + "id": "557998" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3101.041407894401, + "min_y": 5230.601400119077, + "max_x": 3104.0644156116527, + "max_y": 5233.205666482195 + }, + "value": "TE", + "layer": "0", + "id": "557999" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3105.319079932469, + "min_y": 5230.585892721147, + "max_x": 3108.3420876497207, + "max_y": 5233.382338195835 + }, + "value": "TI", + "layer": "0", + "id": "55799F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5231.884800494899, + "max_x": 3109.243852281859, + "max_y": 5234.13293718911 + }, + "value": null, + "layer": "0", + "id": "5579A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5231.884800494896, + "max_x": 3109.243852281859, + "max_y": 5234.132937189106 + }, + "value": null, + "layer": "0", + "id": "5579A4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3088.571898965473, + "min_y": 5225.102351353672, + "max_x": 3106.4900005717673, + "max_y": 5226.59552648753 + }, + "value": "CWS-10600-300A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5579AB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3338.624643554251, + "min_y": 5325.401019785918, + "max_x": 3344.82618568645, + "max_y": 5371.626091437114 + }, + "value": null, + "layer": "0", + "id": "5579AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3331.947646979837, + "min_y": 5327.109209567174, + "max_x": 3344.82618568645, + "max_y": 5391.333520765783 + }, + "value": null, + "layer": "0", + "id": "5579AE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3344.82618568645, + "min_y": 5369.368632764985, + "max_x": 3354.940699889346, + "max_y": 5393.590979437912 + }, + "value": null, + "layer": "0", + "id": "5579AF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3351.003937936371, + "min_y": 5375.688529480062, + "max_x": 3364.442514141092, + "max_y": 5377.928292180849 + }, + "value": "E-10117", + "layer": "0", + "id": "5579B0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3337.479737377427, + "min_y": 5384.689768063386, + "max_x": 3344.82618568645, + "max_y": 5384.689768063386 + }, + "value": null, + "layer": "0", + "id": "5579B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3322.262483248493, + "min_y": 5382.519730030352, + "max_x": 3342.5178506928464, + "max_y": 5387.725541084723 + }, + "value": "4F", + "layer": "0", + "id": "5579B2" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3378.939307427157, + "min_y": 5369.368632764985, + "max_x": 3389.053821630053, + "max_y": 5393.590979437912 + }, + "value": null, + "layer": "0", + "id": "5579B5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3385.117059677078, + "min_y": 5375.688529480062, + "max_x": 3398.555635881799, + "max_y": 5377.928292180849 + }, + "value": "E-10112", + "layer": "0", + "id": "5579B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3371.592859118134, + "min_y": 5384.689768063386, + "max_x": 3378.939307427157, + "max_y": 5384.689768063386 + }, + "value": null, + "layer": "0", + "id": "5579B7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3373.943257192608, + "min_y": 5385.485778383936, + "max_x": 3376.6309724335524, + "max_y": 5387.725541084723 + }, + "value": "4F", + "layer": "0", + "id": "5579B8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3372.737765294956, + "min_y": 5325.401019785918, + "max_x": 3378.939307427157, + "max_y": 5371.626091437114 + }, + "value": null, + "layer": "0", + "id": "5579B9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3366.060768720544, + "min_y": 5327.109209567174, + "max_x": 3378.939307427157, + "max_y": 5391.333520765783 + }, + "value": null, + "layer": "0", + "id": "5579BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3322.303918624905, + "min_y": 5330.924701009985, + "max_x": 3355.095626666292, + "max_y": 5335.763216017485 + }, + "value": "CWS-10611-80A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5579C4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3365.543996919121, + "min_y": 5333.665519338147, + "max_x": 3390.104653487311, + "max_y": 5335.29555356556 + }, + "value": "CWS-10612-200A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5579C6" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3226.914630876212, + "min_y": 5385.14954311034, + "max_x": 3237.029145079109, + "max_y": 5409.371889783267 + }, + "value": null, + "layer": "0", + "id": "5579C8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3233.092383126134, + "min_y": 5391.469439825417, + "max_x": 3246.530959330855, + "max_y": 5393.709202526204 + }, + "value": "E-10212", + "layer": "0", + "id": "5579C9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3219.568182567188, + "min_y": 5400.470678408742, + "max_x": 3226.914630876212, + "max_y": 5400.470678408742 + }, + "value": null, + "layer": "0", + "id": "5579CA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3221.918580641663, + "min_y": 5401.266688729291, + "max_x": 3224.6062958826074, + "max_y": 5403.5064514300775 + }, + "value": "4F", + "layer": "0", + "id": "5579CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3220.713088744011, + "min_y": 5325.401019785918, + "max_x": 3226.914630876212, + "max_y": 5387.40700178247 + }, + "value": null, + "layer": "0", + "id": "5579CC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3214.036092169597, + "min_y": 5327.949925013762, + "max_x": 3226.914630876212, + "max_y": 5407.114431111138 + }, + "value": null, + "layer": "0", + "id": "5579CD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3213.519320368176, + "min_y": 5349.446429683503, + "max_x": 3238.079976936366, + "max_y": 5351.076463910915 + }, + "value": "CWS-10614-150A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5579D3" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3253.624778024672, + "min_y": 5385.14954311034, + "max_x": 3263.739292227569, + "max_y": 5409.371889783267 + }, + "value": null, + "layer": "0", + "id": "5579D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3259.802530274594, + "min_y": 5391.469439825417, + "max_x": 3273.241106479315, + "max_y": 5393.709202526204 + }, + "value": "E-10217", + "layer": "0", + "id": "5579D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3246.278329715649, + "min_y": 5400.470678408742, + "max_x": 3253.624778024672, + "max_y": 5400.470678408742 + }, + "value": null, + "layer": "0", + "id": "5579D7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3248.628727790125, + "min_y": 5401.266688729291, + "max_x": 3251.3164430310694, + "max_y": 5403.5064514300775 + }, + "value": "4F", + "layer": "0", + "id": "5579D8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3247.423235892473, + "min_y": 5325.401019785918, + "max_x": 3253.624778024672, + "max_y": 5387.40700178247 + }, + "value": null, + "layer": "0", + "id": "5579D9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3240.74623931806, + "min_y": 5328.550447526612, + "max_x": 3253.624778024672, + "max_y": 5407.114431111138 + }, + "value": null, + "layer": "0", + "id": "5579DA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3240.229467516636, + "min_y": 5349.914092135428, + "max_x": 3263.8942190045136, + "max_y": 5351.544126362839 + }, + "value": "CWS-10613-50A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5579E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3318.18957364612, + "min_y": 5251.400755044797, + "max_x": 3318.18957364612, + "max_y": 5253.081597988999 + }, + "value": null, + "layer": "0", + "id": "5579E4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3160.207869653247, + "min_y": 5274.751293334436, + "max_x": 3163.791489974506, + "max_y": 5276.244468468294 + }, + "value": "VVVF", + "layer": "0", + "id": "5579E7" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3159.626601676398, + "min_y": 5273.468268759231, + "max_x": 3164.714457750491, + "max_y": 5277.582795845234 + }, + "value": null, + "layer": "0", + "id": "5579E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3150.603000422952, + "min_y": 5272.375290405171, + "max_x": 3159.626601676398, + "max_y": 5275.525532302232 + }, + "value": null, + "layer": "0", + "id": "5579E9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3153.664765986026, + "min_y": 5269.463551955978, + "max_x": 3169.791057431691, + "max_y": 5271.703314656765 + }, + "value": "FAN-10601", + "layer": "0", + "id": "5579EB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3064.632228651805, + "min_y": 5158.928833586464, + "max_x": 3089.3593850725524, + "max_y": 5160.720656515504 + }, + "value": "COOLING WATER FAN MOTOR", + "layer": "0", + "id": "5579EC" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3064.755604252004, + "min_y": 5156.349326289095, + "max_x": 3110.5061805568052, + "max_y": 5158.141136449724 + }, + "value": ".9; RPM: 1,780 MATERIAL : GC150/P.P(Motor Cooling Fan)", + "layer": "0", + "id": "5579ED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3064.632228651805, + "min_y": 5162.945356442134, + "max_x": 3080.75852009747, + "max_y": 5165.1851191429205 + }, + "value": "FAN-10601", + "layer": "0", + "id": "5579F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3114.890178915978, + "min_y": 5243.674518981194, + "max_x": 3123.54666726801, + "max_y": 5245.18529310775 + }, + "value": null, + "layer": "0", + "id": "5579F2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3113.167405157861, + "min_y": 5241.796039662378, + "max_x": 3122.244969913163, + "max_y": 5243.350391439032 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "5579F3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5243.674518981194, + "max_x": 3114.118982882852, + "max_y": 5245.18529310775 + }, + "value": null, + "layer": "0", + "id": "5579F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3095.424853011883, + "min_y": 5272.665480493286, + "max_x": 3108.461091615472, + "max_y": 5278.473571406017 + }, + "value": null, + "layer": "0", + "id": "5579F6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3082.677794161814, + "min_y": 5282.782890290771, + "max_x": 3100.595895768108, + "max_y": 5284.276065424629 + }, + "value": "PW-10903-25A-F1A-E40", + "layer": "14-D-PIPELINE-LINE", + "id": "5579F7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3092.626344105525, + "min_y": 5276.265692653919, + "max_x": 3097.0421016097175, + "max_y": 5280.681450158113 + }, + "value": null, + "layer": "0", + "id": "5579F8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3093.769141663641, + "min_y": 5277.981828817343, + "max_x": 3095.5829462939923, + "max_y": 5278.989498056427 + }, + "value": "F/M", + "layer": "0", + "id": "5579F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3097.042101609716, + "min_y": 5278.473571406016, + "max_x": 3099.838482949435, + "max_y": 5278.473571406016 + }, + "value": null, + "layer": "0", + "id": "5579FA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3089.748795476283, + "min_y": 5278.473571406016, + "max_x": 3092.626344105525, + "max_y": 5278.473571406016 + }, + "value": null, + "layer": "0", + "id": "5579FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3082.970165285285, + "min_y": 5272.665480493286, + "max_x": 3092.607267370496, + "max_y": 5272.665480493286 + }, + "value": null, + "layer": "0", + "id": "5579FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3126.535902073674, + "min_y": 5224.19053996594, + "max_x": 3126.535902073674, + "max_y": 5225.790282416366 + }, + "value": null, + "layer": "0", + "id": "557A02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3126.53562024574, + "min_y": 5201.643640620321, + "max_x": 3144.464649422079, + "max_y": 5216.849496585183 + }, + "value": null, + "layer": "0", + "id": "557A03" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3125.80262534942, + "min_y": 5216.849324444889, + "max_x": 3127.295800483277, + "max_y": 5221.366913936193 + }, + "value": null, + "layer": "0", + "id": "557A05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3056.01669811374, + "min_y": 5251.928280242504, + "max_x": 3056.01669811374, + "max_y": 5254.183869961845 + }, + "value": null, + "layer": "0", + "id": "557A07" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3053.3080511601624, + "min_y": 5254.175676305483, + "max_x": 3058.9074579121293, + "max_y": 5259.7750830574505 + }, + "value": null, + "layer": "0", + "id": "557A08" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3051.229243399611, + "min_y": 5245.829114263383, + "max_x": 3056.01669811374, + "max_y": 5249.110694601117 + }, + "value": null, + "layer": "0", + "id": "557A09" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3058.764344964272, + "min_y": 5249.771154764779, + "max_x": 3061.452060205216, + "max_y": 5251.264329898637 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557A0B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3053.817870436783, + "min_y": 5255.32625577649, + "max_x": 3059.1933009186714, + "max_y": 5258.9418043548385 + }, + "value": "PG", + "layer": "14-D-PIPELINE-LINE", + "id": "557A0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3055.47299793685, + "min_y": 5241.145603079875, + "max_x": 3056.599359796284, + "max_y": 5243.009722965698 + }, + "value": null, + "layer": "0", + "id": "557A0E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3058.240491312213, + "min_y": 5243.506647201571, + "max_x": 3060.9282065531575, + "max_y": 5244.999822335429 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557A13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3020.828007645372, + "min_y": 5237.354774422888, + "max_x": 3020.828007645372, + "max_y": 5239.61036414223 + }, + "value": null, + "layer": "0", + "id": "557A14" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3018.0142373350527, + "min_y": 5239.604601936902, + "max_x": 3023.6136440870196, + "max_y": 5245.20400868887 + }, + "value": null, + "layer": "0", + "id": "557A15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3020.828007645372, + "min_y": 5231.255608443767, + "max_x": 3020.828007645372, + "max_y": 5234.537188781502 + }, + "value": null, + "layer": "0", + "id": "557A16" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3018.610365961726, + "min_y": 5240.499864285769, + "max_x": 3023.9857964436146, + "max_y": 5244.115412864118 + }, + "value": "PG", + "layer": "14-D-PIPELINE-LINE", + "id": "557A18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3020.284307468481, + "min_y": 5226.572097260259, + "max_x": 3021.410669327913, + "max_y": 5228.436217146082 + }, + "value": null, + "layer": "0", + "id": "557A1A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3016.390797145093, + "min_y": 5234.573087031616, + "max_x": 3019.0785123860373, + "max_y": 5236.066262165474 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557A1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3015.866943493034, + "min_y": 5228.308579468407, + "max_x": 3018.554658733978, + "max_y": 5229.801754602265 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557A20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5135.990628627536, + "max_x": 3393.334171849957, + "max_y": 5184.23395702764 + }, + "value": null, + "layer": "TITLE", + "id": "557A21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5174.441706163218, + "max_x": 3393.334171849957, + "max_y": 5174.441706163218 + }, + "value": null, + "layer": "TITLE", + "id": "557A22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5153.072091330938, + "max_x": 3393.334171849957, + "max_y": 5153.072091330938 + }, + "value": null, + "layer": "TITLE", + "id": "557A23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5135.990628627536, + "max_x": 3393.334171849957, + "max_y": 5142.387283914808 + }, + "value": null, + "layer": "TITLE", + "id": "557A27" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5139.185722370624, + "max_x": 3352.470604504226, + "max_y": 5139.185722370624 + }, + "value": null, + "layer": "TITLE", + "id": "557A29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3343.318066548562, + "min_y": 5137.027473913432, + "max_x": 3346.3873494057634, + "max_y": 5141.611946151499 + }, + "value": "NONE", + "layer": "1", + "id": "557A2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.526714111933, + "min_y": 5137.053477378991, + "max_x": 3336.6380362223235, + "max_y": 5141.213100379405 + }, + "value": "JOB NO.", + "layer": "1", + "id": "557A2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3353.918455532128, + "min_y": 5140.358315786112, + "max_x": 3359.0297776425186, + "max_y": 5141.575297240967 + }, + "value": "DWG NO.", + "layer": "1", + "id": "557A32" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5150.841332613744, + "max_x": 3336.2682647296515, + "max_y": 5152.058314068599 + }, + "value": "TITLE :", + "layer": "1", + "id": "557A34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5172.210947446023, + "max_x": 3336.2682647296515, + "max_y": 5173.427928900878 + }, + "value": "ONWER :", + "layer": "1", + "id": "557A35" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3330.57705201792, + "min_y": 5182.202550058349, + "max_x": 3340.305788146677, + "max_y": 5186.095881473489 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "557A36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3387.312649026461, + "min_y": 5137.387673665007, + "max_x": 3392.282069691072, + "max_y": 5137.387673665007 + }, + "value": null, + "layer": "TITLE", + "id": "557A37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5184.23395702764, + "max_x": 3393.334171849957, + "max_y": 5207.599766947694 + }, + "value": null, + "layer": "TITLE", + "id": "557A3C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3389.172343707468, + "min_y": 5138.196551247339, + "max_x": 3390.3365479053523, + "max_y": 5140.136891577145 + }, + "value": "1", + "layer": "0", + "id": "557A3E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5161.526140029881, + "max_x": 3339.919209094216, + "max_y": 5162.743121484737 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "557A41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098307, + "min_y": 5187.185612296629, + "max_x": 3393.334171849963, + "max_y": 5187.185612296629 + }, + "value": null, + "layer": "0", + "id": "557A44" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5187.185612296671, + "max_x": 3333.617572935513, + "max_y": 5193.99033051361 + }, + "value": null, + "layer": "0", + "id": "557A45" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5193.99033051361, + "max_x": 3333.617572935513, + "max_y": 5200.79504873059 + }, + "value": null, + "layer": "0", + "id": "557A47" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3378.530567687886, + "min_y": 5184.998980348154, + "max_x": 3381.1631303886893, + "max_y": 5186.095881473489 + }, + "value": "APPD", + "layer": "0", + "id": "557A4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3373.184054180448, + "min_y": 5184.998980348154, + "max_x": 3375.8166168812513, + "max_y": 5186.095881473489 + }, + "value": "CHKD", + "layer": "0", + "id": "557A4E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3367.466445618145, + "min_y": 5184.998980348154, + "max_x": 3370.099008318948, + "max_y": 5186.095881473489 + }, + "value": "DRWN", + "layer": "0", + "id": "557A50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3351.323115253608, + "min_y": 5184.998980348154, + "max_x": 3358.562662680817, + "max_y": 5186.095881473489 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "557A51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3385.581689757964, + "min_y": 5184.94674026192, + "max_x": 3389.530533809169, + "max_y": 5186.043641387255 + }, + "value": "REMARK", + "layer": "0", + "id": "557A53" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5200.79504873059, + "max_x": 3333.617572935567, + "max_y": 5207.59976694809 + }, + "value": null, + "layer": "0", + "id": "557A54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098299, + "min_y": 5190.587971405141, + "max_x": 3393.334171849963, + "max_y": 5190.587971405141 + }, + "value": null, + "layer": "0", + "id": "557A57" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098289, + "min_y": 5193.99033051365, + "max_x": 3393.334171849963, + "max_y": 5193.99033051365 + }, + "value": null, + "layer": "0", + "id": "557A58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098279, + "min_y": 5197.392689622162, + "max_x": 3393.334171849963, + "max_y": 5197.392689622162 + }, + "value": null, + "layer": "0", + "id": "557A59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098272, + "min_y": 5200.795048730673, + "max_x": 3393.334171849963, + "max_y": 5200.795048730673 + }, + "value": null, + "layer": "0", + "id": "557A5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098262, + "min_y": 5204.197407839183, + "max_x": 3393.334171849963, + "max_y": 5204.197407839183 + }, + "value": null, + "layer": "0", + "id": "557A5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5207.599766947694, + "max_x": 3393.334171849963, + "max_y": 5207.599766947694 + }, + "value": null, + "layer": "0", + "id": "557A5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5191.809909817032, + "max_x": 3332.0976166659416, + "max_y": 5192.743144275693 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "557A5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5195.212268925515, + "max_x": 3332.0976166659416, + "max_y": 5196.145503384176 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "557A5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5198.627719499337, + "max_x": 3332.0976166659416, + "max_y": 5199.560953957998 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "557A5F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5202.030078607821, + "max_x": 3332.0976166659416, + "max_y": 5202.963313066482 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "557A60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.53767599075, + "min_y": 5205.445529181683, + "max_x": 3332.0976166659466, + "max_y": 5206.378763640344 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "557A61" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5188.420642173902, + "max_x": 3332.0976166659416, + "max_y": 5189.353876632563 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "557A62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3352.986008262916, + "min_y": 5188.422044830904, + "max_x": 3357.4655336644896, + "max_y": 5189.355279289565 + }, + "value": "AS BUILT", + "layer": "REV.UPDATE", + "id": "557A63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3335.895668573995, + "min_y": 5188.420642173902, + "max_x": 3341.495075325962, + "max_y": 5189.353876632563 + }, + "value": "2024.04.15", + "layer": "REV.UPDATE", + "id": "557A64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3367.627657615114, + "min_y": 5188.453716963421, + "max_x": 3370.4273609910974, + "max_y": 5189.386951422082 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "557A65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3373.29082444816, + "min_y": 5188.417317562792, + "max_x": 3376.0905278241435, + "max_y": 5189.399107782761 + }, + "value": "J.W", + "layer": "REV.UPDATE", + "id": "557A66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3378.878594959942, + "min_y": 5188.429473923462, + "max_x": 3381.7250044130083, + "max_y": 5189.399107782747 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "557A67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3347.666516658826, + "min_y": 5144.450420808997, + "max_x": 3375.2624680160798, + "max_y": 5150.731234586261 + }, + "value": "UTILITY FLOW DIAGRAM", + "layer": "0", + "id": "557A68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3348.669116988113, + "min_y": 5178.039559833822, + "max_x": 3372.1866253463745, + "max_y": 5180.652616318073 + }, + "value": "10th PLANT 증설공사", + "layer": "SH1", + "id": "557A6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3349.013114428755, + "min_y": 5167.763779015255, + "max_x": 3394.4802972547272, + "max_y": 5170.376835499506 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "557A6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3343.122732376722, + "min_y": 5169.176480542997, + "max_x": 3344.515665613398, + "max_y": 5170.563707610909 + }, + "value": null, + "layer": "0-BAS", + "id": "557A74" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3343.96964426759, + "min_y": 5166.690049496505, + "max_x": 3350.8948969833564, + "max_y": 5167.799831150831 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "557A82" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3358.609042298206, + "min_y": 5156.62469274487, + "max_x": 3369.474948145125, + "max_y": 5159.211813184613 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "557A83" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3343.756378297573, + "min_y": 5158.051058222216, + "max_x": 3347.903721782607, + "max_y": 5161.018638469515 + }, + "value": null, + "layer": "0", + "id": "557A86" + }, + { + "type": "ARC", + "bbox": { + "min_x": 3344.5971848106665, + "min_y": 5157.416961651497, + "max_x": 3348.6910841216004, + "max_y": 5158.684529096678 + }, + "value": null, + "layer": "0", + "id": "557A8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3345.38454714966, + "min_y": 5157.468608332234, + "max_x": 3347.452157445296, + "max_y": 5158.050432525966 + }, + "value": null, + "layer": "0", + "id": "557A90" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3109.243852281859, + "min_y": 5229.636663800691, + "max_x": 3113.6958342636126, + "max_y": 5230.353387864943 + }, + "value": "\\Fmonotxt.shx; .6; HH 35 H 30 L 10 LL 7", + "layer": "INSTRUMENT", + "id": "557A92" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3124.578887204719, + "min_y": 5271.532312575301, + "max_x": 3129.030869186473, + "max_y": 5272.249036639553 + }, + "value": "\\Fmonotxt.shx; .6; HH 35 H 30 L 10 LL 7", + "layer": "INSTRUMENT", + "id": "557A96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3361.848883230747, + "min_y": 5137.833242704812, + "max_x": 3378.147742001125, + "max_y": 5139.644227012632 + }, + "value": "SARF-#10-UFD-CW", + "layer": "0", + "id": "557A9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3063.989921453338, + "min_y": 5229.393503017847, + "max_x": 3072.0530671761703, + "max_y": 5230.886678151705 + }, + "value": "300Ax250A", + "layer": "14-D-PIPELINE-LINE", + "id": "557A9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3040.568477976894, + "min_y": 5207.336217631155, + "max_x": 3041.286338279272, + "max_y": 5208.00108196903 + }, + "value": null, + "layer": "0", + "id": "557AA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3038.372385914244, + "min_y": 5209.003394932423, + "max_x": 3046.4355316370766, + "max_y": 5210.4965700662815 + }, + "value": "300Ax250A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AA3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3055.45639911179, + "min_y": 5209.341483340782, + "max_x": 3059.0400194330487, + "max_y": 5210.8346584746405 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3049.844064632632, + "min_y": 5209.341483340782, + "max_x": 3053.427684953891, + "max_y": 5210.8346584746405 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3051.27998715649, + "min_y": 5252.113278663679, + "max_x": 3051.27998715649, + "max_y": 5257.358020874254 + }, + "value": null, + "layer": "0", + "id": "557AA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3025.887781510841, + "min_y": 5239.209213018765, + "max_x": 3025.898010695544, + "max_y": 5257.358750948993 + }, + "value": null, + "layer": "0", + "id": "557AA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3041.431045304745, + "min_y": 5239.194560230055, + "max_x": 3049.4941910275775, + "max_y": 5240.687735363913 + }, + "value": "300Ax200A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AAA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3115.287610481364, + "min_y": 5298.296625988223, + "max_x": 3123.3507562041964, + "max_y": 5299.789801122081 + }, + "value": "300Ax250A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AAF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3146.033113462263, + "min_y": 5210.11185029863, + "max_x": 3154.0962591850953, + "max_y": 5211.605025432488 + }, + "value": "DRAIN OUT", + "layer": "14-D-PIPELINE-LINE", + "id": "557AB7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3119.935879847457, + "min_y": 5218.836670249323, + "max_x": 3125.3113103293454, + "max_y": 5223.665953707117 + }, + "value": "80A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AB8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3113.196797272816, + "min_y": 5235.645804423231, + "max_x": 3122.281752784533, + "max_y": 5237.2932576612375 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5249.791206048046, + "max_x": 3108.461091615472, + "max_y": 5278.473571406016 + }, + "value": null, + "layer": "0", + "id": "557ABA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3223.998907677318, + "min_y": 5211.272922520786, + "max_x": 3223.998907677318, + "max_y": 5251.349293913148 + }, + "value": null, + "layer": "0", + "id": "557AC1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3223.503207543183, + "min_y": 5223.197338830908, + "max_x": 3252.187193700776, + "max_y": 5224.893718859119 + }, + "value": "CWS-10619-15A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557AC3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3050.520267374868, + "min_y": 5238.354058684365, + "max_x": 3052.013442508725, + "max_y": 5241.609423397961 + }, + "value": null, + "layer": "0", + "id": "557ACA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3048.854127176545, + "min_y": 5244.982754178269, + "max_x": 3051.229216586911, + "max_y": 5248.815058164741 + }, + "value": null, + "layer": "0", + "id": "557AD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3045.85901754958, + "min_y": 5249.693114831054, + "max_x": 3049.442637870839, + "max_y": 5251.186289964912 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AD3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3046.042031380656, + "min_y": 5242.730823682764, + "max_x": 3049.625651701915, + "max_y": 5244.223998816622 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3030.74425917656, + "min_y": 5231.601451697724, + "max_x": 3033.444701404138, + "max_y": 5232.727813557157 + }, + "value": null, + "layer": "0", + "id": "557ADE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3033.728769523543, + "min_y": 5231.531012306771, + "max_x": 3036.4164847644874, + "max_y": 5233.024187440629 + }, + "value": "40A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3043.949082877406, + "min_y": 5246.215380179903, + "max_x": 3046.036541535158, + "max_y": 5247.341742039336 + }, + "value": null, + "layer": "0", + "id": "557AE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3040.412928460328, + "min_y": 5246.0090994706, + "max_x": 3043.1006437012725, + "max_y": 5247.502274604458 + }, + "value": "40A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3115.204968870695, + "min_y": 5254.070646304274, + "max_x": 3118.788589191954, + "max_y": 5255.563821438132 + }, + "value": "250A", + "layer": "14-D-PIPELINE-LINE", + "id": "557AED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3335.924996595478, + "min_y": 5191.655818577658, + "max_x": 3341.524403347445, + "max_y": 5192.589053036319 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "557AEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3352.901114200085, + "min_y": 5191.645374641473, + "max_x": 3357.3806396016585, + "max_y": 5192.578609100134 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "557AEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3335.904732399385, + "min_y": 5195.14826633052, + "max_x": 3341.504139151352, + "max_y": 5196.081500789181 + }, + "value": "2025.06.19", + "layer": "REV.UPDATE", + "id": "557AF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3352.828431829138, + "min_y": 5195.105701694942, + "max_x": 3357.3079572307115, + "max_y": 5196.038936153603 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "557AF7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3114.0501352123456, + "min_y": 5243.975460357403, + "max_x": 3114.9590265864845, + "max_y": 5244.884351731543 + }, + "value": null, + "layer": "VV-BALL", + "id": "557B02" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 3114.0923856975064, + "min_y": 5237.92027435593, + "max_x": 3115.0012770716453, + "max_y": 5238.82916573007 + }, + "value": null, + "layer": "VV-BALL", + "id": "557B0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5325.401019785918, + "max_x": 3314.734550135066, + "max_y": 5398.164390253802 + }, + "value": null, + "layer": "0", + "id": "557B11" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5327.109209567174, + "max_x": 3285.717616982289, + "max_y": 5398.164390253801 + }, + "value": null, + "layer": "0", + "id": "557B12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3287.089634477955, + "min_y": 5407.332281018194, + "max_x": 3314.787628856742, + "max_y": 5410.374316626895 + }, + "value": null, + "layer": "0", + "id": "557B13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5409.141539495022, + "max_x": 3314.787628856742, + "max_y": 5429.556959983339 + }, + "value": null, + "layer": "0", + "id": "557B14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3280.186502409854, + "min_y": 5326.04105215158, + "max_x": 3307.3415764079996, + "max_y": 5330.0203362805705 + }, + "value": "CWS-10615-50A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B17" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3287.089634477955, + "min_y": 5398.164390253802, + "max_x": 3288.582809611814, + "max_y": 5407.332281018194 + }, + "value": null, + "layer": "0", + "id": "557B1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3280.418067116127, + "min_y": 5398.164390253801, + "max_x": 3281.911242249986, + "max_y": 5409.141539495022 + }, + "value": null, + "layer": "0", + "id": "557B1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3272.978483970638, + "min_y": 5407.548809186559, + "max_x": 3279.2498195328412, + "max_y": 5409.041984320417 + }, + "value": "50Ax25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3289.128581392371, + "min_y": 5407.489918635377, + "max_x": 3295.399916954574, + "max_y": 5408.983093769235 + }, + "value": "50Ax25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3318.466516240687, + "min_y": 5364.119966069509, + "max_x": 3328.1834730471596, + "max_y": 5365.739458870588 + }, + "value": "E-10217", + "layer": "0", + "id": "557B25" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3322.298549628718, + "min_y": 5357.37274739127, + "max_x": 3340.760767561016, + "max_y": 5358.9922401923495 + }, + "value": "Double Jacket Pipe2", + "layer": "0", + "id": "557B26" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3314.693114758655, + "min_y": 5355.978646030003, + "max_x": 3324.442231273945, + "max_y": 5404.840608219632 + }, + "value": null, + "layer": "0", + "id": "557B27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3318.471885236874, + "min_y": 5338.46806366613, + "max_x": 3328.188842043347, + "max_y": 5340.087556467209 + }, + "value": "E-10217", + "layer": "0", + "id": "557B28" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3314.734550135066, + "min_y": 5329.394017592523, + "max_x": 3324.447600270132, + "max_y": 5353.10899714307 + }, + "value": null, + "layer": "0", + "id": "557B2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.303719196405, + "min_y": 5361.056527938548, + "max_x": 3307.3259157223847, + "max_y": 5362.549703072406 + }, + "value": "CWS-10617-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.231025295203, + "min_y": 5345.068533420814, + "max_x": 3307.2532218211827, + "max_y": 5346.561708554672 + }, + "value": "CWR-10626-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B37" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.231025295204, + "min_y": 5376.597505167339, + "max_x": 3307.2532218211836, + "max_y": 5378.090680301197 + }, + "value": "CWR-10627-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.334080652471, + "min_y": 5411.868216868047, + "max_x": 3307.356277178451, + "max_y": 5413.361392001905 + }, + "value": "CWS-10618-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B39" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.641286826588, + "min_y": 5430.183900630282, + "max_x": 3307.6634833525677, + "max_y": 5431.67707576414 + }, + "value": "CWR-10628-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3318.524963958548, + "min_y": 5415.914006615432, + "max_x": 3328.241920765021, + "max_y": 5417.533499416511 + }, + "value": "E-10217", + "layer": "0", + "id": "557B3D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3322.35699734658, + "min_y": 5409.166787937195, + "max_x": 3340.8192152788783, + "max_y": 5410.786280738274 + }, + "value": "Double Jacket Pipe4", + "layer": "0", + "id": "557B3E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 3314.787628856742, + "min_y": 5407.772686575927, + "max_x": 3324.500678991807, + "max_y": 5431.487666126475 + }, + "value": null, + "layer": "0", + "id": "557B3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3335.925069847495, + "min_y": 5198.683172823941, + "max_x": 3341.5244765994617, + "max_y": 5199.616407282602 + }, + "value": "2025.07.07", + "layer": "REV.UPDATE", + "id": "557B44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3352.903463650354, + "min_y": 5198.606580188664, + "max_x": 3357.3829890519273, + "max_y": 5199.539814647325 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "557B45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2912.599200951331, + "min_y": 5136.515210304252, + "max_x": 2936.5412231744303, + "max_y": 5140.483616128664 + }, + "value": "SARF-#10-PID-003", + "layer": "0", + "id": "557B46" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2906.34726207803, + "min_y": 5143.110495670952, + "max_x": 2933.9432134352837, + "max_y": 5149.639553473959 + }, + "value": "UTILITY FLOW DIAGRAM", + "layer": "0", + "id": "557B47" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2540.23945149377, + "min_y": 5192.932352371632, + "max_x": 2566.370016336283, + "max_y": 5194.732352371632 + }, + "value": "\\pi7.73599; .9; SC-10128 \\pi7.11173;\\lSCRUBBER", + "layer": "0", + "id": "557B48" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2542.28176579566, + "min_y": 5185.163208412376, + "max_x": 2583.031756162582, + "max_y": 5186.963208412376 + }, + "value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "557B4C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2542.177867267708, + "min_y": 5166.782232079711, + "max_x": 2562.7090253582537, + "max_y": 5168.5822320797115 + }, + "value": "\\pi3.78668; .9; P-10128A/B \\pi0.77308;SCRUBBER PUMP", + "layer": "0", + "id": "557B50" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2543.560205761963, + "min_y": 5159.10740338812, + "max_x": 2567.885927792983, + "max_y": 5160.90740338812 + }, + "value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,600", + "layer": "0", + "id": "557B54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5159.518890074213, + "max_x": 2702.672247244196, + "max_y": 5219.578540862908 + }, + "value": null, + "layer": "0", + "id": "557B59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2670.397190762271, + "min_y": 5159.518890074213, + "max_x": 2709.933186117841, + "max_y": 5183.518189071128 + }, + "value": null, + "layer": "0", + "id": "557B5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2676.350203009464, + "min_y": 5193.075141133515, + "max_x": 2682.557406102398, + "max_y": 5195.881466957988 + }, + "value": "EMERGENCY", + "layer": "0", + "id": "557B60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2679.220494347164, + "min_y": 5186.167605185725, + "max_x": 2681.9792512773565, + "max_y": 5187.317087239971 + }, + "value": "500A", + "layer": "0", + "id": "557B68" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2754.02517986668, + "min_y": 5189.49965251711, + "max_x": 2819.553594293437, + "max_y": 5332.334070652462 + }, + "value": null, + "layer": "0", + "id": "557B69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5142.316236796443, + "max_x": 2867.225952892818, + "max_y": 5344.330863299241 + }, + "value": null, + "layer": "0", + "id": "557B6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2861.764109019785, + "min_y": 5147.269416101522, + "max_x": 2865.3477293410438, + "max_y": 5150.255766369238 + }, + "value": "1F", + "layer": "0", + "id": "557B6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5243.883022740477, + "max_x": 2865.621078278011, + "max_y": 5246.869373008192 + }, + "value": "3F", + "layer": "0", + "id": "557B6C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5299.333635951863, + "max_x": 2865.621078278011, + "max_y": 5302.319986219578 + }, + "value": "4F", + "layer": "0", + "id": "557B6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5298.537625631313, + "max_x": 2867.225952892818, + "max_y": 5298.537625631313 + }, + "value": null, + "layer": "0", + "id": "557B6E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5204.212811282579, + "max_x": 2865.621078278011, + "max_y": 5207.199161550295 + }, + "value": "2F", + "layer": "0", + "id": "557B6F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5203.136416767941, + "max_x": 2867.225952892818, + "max_y": 5203.136416767941 + }, + "value": null, + "layer": "0", + "id": "557B70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5142.304702005471, + "max_x": 2867.225952892818, + "max_y": 5142.304702005471 + }, + "value": null, + "layer": "0", + "id": "557B71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2809.611617347769, + "min_y": 5254.850420819999, + "max_x": 2839.240466281628, + "max_y": 5260.3624680324865 + }, + "value": "VG-10421-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557B73" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2798.2574593201844, + "min_y": 5210.821727651357, + "max_x": 2803.856866072151, + "max_y": 5216.421134403325 + }, + "value": null, + "layer": "0", + "id": "557B74" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2799.25253325455, + "min_y": 5211.771556048633, + "max_x": 2803.7320586561236, + "max_y": 5215.673300750319 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557B75" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2807.5068699339236, + "min_y": 5248.420679070166, + "max_x": 2813.1062766858904, + "max_y": 5254.020085822134 + }, + "value": null, + "layer": "0", + "id": "557B77" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2808.501943868288, + "min_y": 5249.370507467443, + "max_x": 2812.9814692698615, + "max_y": 5253.272252169129 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557B78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2659.034162464957, + "min_y": 5388.61262801203, + "max_x": 2662.059939861584, + "max_y": 5397.745228107389 + }, + "value": null, + "layer": "0", + "id": "557B7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.572249458673, + "min_y": 5298.15567070841, + "max_x": 2667.411905343403, + "max_y": 5368.416084344217 + }, + "value": null, + "layer": "0", + "id": "557B7B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.115141410454, + "min_y": 5295.139025083086, + "max_x": 2688.694615752674, + "max_y": 5368.416084344217 + }, + "value": null, + "layer": "0", + "id": "557B7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2587.196470737082, + "min_y": 5368.415094915304, + "max_x": 2664.28942991759, + "max_y": 5386.198725063241 + }, + "value": null, + "layer": "0", + "id": "557B84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2664.28942991759, + "min_y": 5368.416084344217, + "max_x": 2666.751386792812, + "max_y": 5386.198725063241 + }, + "value": null, + "layer": "0", + "id": "557B85" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2534.971102382658, + "min_y": 5134.898947515233, + "max_x": 2952.014917269162, + "max_y": 5431.900373997681 + }, + "value": null, + "layer": "0", + "id": "557B8B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2659.884406599852, + "min_y": 5361.793287123209, + "max_x": 2661.208943540834, + "max_y": 5362.940369762349 + }, + "value": null, + "layer": "0", + "id": "557B8C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2658.641176424773, + "min_y": 5302.397072734706, + "max_x": 2661.8094363367914, + "max_y": 5305.037289328055 + }, + "value": "SG", + "layer": "0", + "id": "557B8F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2656.2735089696625, + "min_y": 5299.34400489171, + "max_x": 2664.7983078958114, + "max_y": 5307.868803817858 + }, + "value": null, + "layer": "0", + "id": "557B90" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2660.546675070677, + "min_y": 5396.2059018207565, + "max_x": 2663.6253276439434, + "max_y": 5399.284554394022 + }, + "value": null, + "layer": "0", + "id": "557B92" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5362.19378219542, + "max_x": 2651.225290331875, + "max_y": 5363.686957329279 + }, + "value": null, + "layer": "0", + "id": "557B94" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2610.257205609104, + "min_y": 5236.119351492239, + "max_x": 2625.039639434297, + "max_y": 5238.359114193026 + }, + "value": "P-10128B", + "layer": "0", + "id": "557B96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2617.849451658805, + "min_y": 5242.66916262624, + "max_x": 2620.537166899749, + "max_y": 5244.162337760098 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B97" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2624.760079697646, + "min_y": 5248.77048749288, + "max_x": 2627.44779493859, + "max_y": 5250.263662626739 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B98" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2619.529381219328, + "min_y": 5248.444204687199, + "max_x": 2622.2170964602724, + "max_y": 5249.937379821057 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B99" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2601.430528402824, + "min_y": 5269.236339332047, + "max_x": 2604.1182436437684, + "max_y": 5270.729514465905 + }, + "value": "32A", + "layer": "14-D-PIPELINE-LINE", + "id": "557B9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2603.402596631467, + "min_y": 5246.612350204681, + "max_x": 2651.396951826314, + "max_y": 5248.178958706668 + }, + "value": null, + "layer": "0", + "id": "557B9B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2614.299961295783, + "min_y": 5245.112972695686, + "max_x": 2618.98939176165, + "max_y": 5247.43237113974 + }, + "value": null, + "layer": "0", + "id": "557B9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2622.274377056135, + "min_y": 5246.676984076461, + "max_x": 2626.03036290767, + "max_y": 5248.187758203017 + }, + "value": null, + "layer": "0", + "id": "557B9E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5239.933542123853, + "max_x": 2617.515902871256, + "max_y": 5243.120471529465 + }, + "value": null, + "layer": "0", + "id": "557BA0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2596.428986232365, + "min_y": 5247.404249242618, + "max_x": 2600.396042426172, + "max_y": 5292.050059845466 + }, + "value": null, + "layer": "0", + "id": "557BA4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2599.6406553630222, + "min_y": 5243.670429871296, + "max_x": 2607.164537899912, + "max_y": 5251.1943124081845 + }, + "value": null, + "layer": "0", + "id": "557BA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2599.031252647673, + "min_y": 5240.74534550327, + "max_x": 2607.773940615269, + "max_y": 5244.441846307257 + }, + "value": null, + "layer": "0", + "id": "557BA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2599.031252647673, + "min_y": 5240.74534550327, + "max_x": 2601.120281286717, + "max_y": 5244.441846307257 + }, + "value": null, + "layer": "0", + "id": "557BA9" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2602.5673230298876, + "min_y": 5246.597097538161, + "max_x": 2604.2378702330466, + "max_y": 5248.26764474132 + }, + "value": null, + "layer": "0", + "id": "557BAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2599.640655363024, + "min_y": 5247.43237113974, + "max_x": 2599.640655363024, + "max_y": 5252.795327254189 + }, + "value": null, + "layer": "0", + "id": "557BAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2626.801558940797, + "min_y": 5246.612350204681, + "max_x": 2651.396951826314, + "max_y": 5264.963230672259 + }, + "value": null, + "layer": "0", + "id": "557BB0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2624.893415455107, + "min_y": 5253.650211024758, + "max_x": 2639.6758492803, + "max_y": 5255.889973725545 + }, + "value": "P-10128A", + "layer": "0", + "id": "557BB3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2632.672152858471, + "min_y": 5260.013530805099, + "max_x": 2635.359868099415, + "max_y": 5261.506705938958 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BB4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2639.582780897312, + "min_y": 5266.394592702233, + "max_x": 2642.2704961382565, + "max_y": 5267.887767836091 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BB5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2634.165591065331, + "min_y": 5265.97506421972, + "max_x": 2636.853306306275, + "max_y": 5267.468239353578 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.572249458673, + "min_y": 5264.21664310533, + "max_x": 2661.080124281034, + "max_y": 5265.709818239189 + }, + "value": null, + "layer": "0", + "id": "557BB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2628.936171141786, + "min_y": 5262.643832228206, + "max_x": 2633.625601607653, + "max_y": 5264.963230672259 + }, + "value": null, + "layer": "0", + "id": "557BB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2636.91058690214, + "min_y": 5264.207843608982, + "max_x": 2640.768420678686, + "max_y": 5265.718617735537 + }, + "value": null, + "layer": "0", + "id": "557BBA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5257.464401656374, + "max_x": 2632.15211271726, + "max_y": 5260.651331061984 + }, + "value": null, + "layer": "0", + "id": "557BBC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2614.2768652090253, + "min_y": 5261.201289403814, + "max_x": 2621.800747745915, + "max_y": 5268.725171940703 + }, + "value": null, + "layer": "0", + "id": "557BC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.667462493675, + "min_y": 5258.276205035791, + "max_x": 2622.410150461272, + "max_y": 5261.972705839776 + }, + "value": null, + "layer": "0", + "id": "557BC1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.667462493675, + "min_y": 5258.276205035791, + "max_x": 2615.75649113272, + "max_y": 5261.972705839776 + }, + "value": null, + "layer": "0", + "id": "557BC2" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2617.2035328758907, + "min_y": 5264.127957070679, + "max_x": 2618.8740800790497, + "max_y": 5265.798504273838 + }, + "value": null, + "layer": "0", + "id": "557BC4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5264.410246503508, + "max_x": 2615.023452775954, + "max_y": 5361.614993249562 + }, + "value": null, + "layer": "0", + "id": "557BC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2641.539616711812, + "min_y": 5264.207843608982, + "max_x": 2661.080124281034, + "max_y": 5293.453559492007 + }, + "value": null, + "layer": "0", + "id": "557BCB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2659.789320865546, + "min_y": 5290.754304018896, + "max_x": 2661.282495999404, + "max_y": 5293.438715937487 + }, + "value": null, + "layer": "0", + "id": "557BCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2655.611751071383, + "min_y": 5290.093064823841, + "max_x": 2658.2994663123272, + "max_y": 5291.586239957699 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2598.54727205493, + "min_y": 5270.293111611205, + "max_x": 2614.276865208897, + "max_y": 5292.050059845466 + }, + "value": null, + "layer": "0", + "id": "557BD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5287.823971143724, + "max_x": 2615.032252272174, + "max_y": 5362.953576413495 + }, + "value": null, + "layer": "0", + "id": "557BD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2637.171883576614, + "min_y": 5384.044658192081, + "max_x": 2654.341963348544, + "max_y": 5385.537833325939 + }, + "value": null, + "layer": "0", + "id": "557BD7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2634.415538429464, + "min_y": 5384.035860242969, + "max_x": 2638.013673249624, + "max_y": 5385.546634369524 + }, + "value": null, + "layer": "0", + "id": "557BDA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2584.91150576243, + "min_y": 5375.109218039984, + "max_x": 2615.249095235236, + "max_y": 5387.076212280902 + }, + "value": null, + "layer": "0", + "id": "557BDB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2608.548381316083, + "min_y": 5375.113796433357, + "max_x": 2642.108995496059, + "max_y": 5384.791248853487 + }, + "value": null, + "layer": "0", + "id": "557BDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2609.859770470269, + "min_y": 5376.15826959535, + "max_x": 2626.051933991547, + "max_y": 5379.16093442478 + }, + "value": null, + "layer": "0", + "id": "557BDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2624.86062180578, + "min_y": 5373.911030730934, + "max_x": 2627.548337046724, + "max_y": 5375.404205864792 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BE1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2615.060272338293, + "min_y": 5379.574423649653, + "max_x": 2617.7479875792374, + "max_y": 5381.067598783511 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2665.05843703735, + "min_y": 5188.47767414617, + "max_x": 2666.560938125412, + "max_y": 5295.139025062601 + }, + "value": null, + "layer": "0", + "id": "557BE4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2669.522107523914, + "min_y": 5311.56961294657, + "max_x": 2669.522107523914, + "max_y": 5313.062788080427 + }, + "value": null, + "layer": "0", + "id": "557BE6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2639.469626392026, + "min_y": 5297.884891249927, + "max_x": 2647.899281790807, + "max_y": 5300.202652454029 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BE8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2645.144972199876, + "min_y": 5296.2014506222995, + "max_x": 2650.82961465907, + "max_y": 5301.886093081493 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BEE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2628.2708128880968, + "min_y": 5296.244068476107, + "max_x": 2639.4696263920255, + "max_y": 5301.843475228075 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2634.865293574421, + "min_y": 5297.193896873383, + "max_x": 2639.3448189759943, + "max_y": 5301.09564157507 + }, + "value": "LT", + "layer": "1-SYMBOL", + "id": "557BF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2629.265886822462, + "min_y": 5297.193896873383, + "max_x": 2633.7454122240356, + "max_y": 5301.09564157507 + }, + "value": "LI", + "layer": "1-SYMBOL", + "id": "557BF7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5296.244068476108, + "max_x": 2633.870219640058, + "max_y": 5301.843475228075 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BF9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5296.244068476108, + "max_x": 2633.870219640058, + "max_y": 5296.244068476108 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5301.843475228075, + "max_x": 2633.870219640058, + "max_y": 5301.843475228075 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557BFD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2615.488112898662, + "min_y": 5387.528047264618, + "max_x": 2618.1758281396064, + "max_y": 5389.021222398476 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557BFE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2629.178067778052, + "min_y": 5383.768143239748, + "max_x": 2633.644342396338, + "max_y": 5385.814105719711 + }, + "value": null, + "layer": "0", + "id": "557BFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2617.34310078815, + "min_y": 5383.768174274191, + "max_x": 2621.707876587963, + "max_y": 5385.814211775652 + }, + "value": null, + "layer": "0", + "id": "557C00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2621.707876587963, + "min_y": 5383.768164116902, + "max_x": 2629.178106915962, + "max_y": 5387.706119531406 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2621.707872508316, + "min_y": 5383.768143239744, + "max_x": 2629.178068777742, + "max_y": 5383.768174274191 + }, + "value": null, + "layer": "0", + "id": "557C02" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2622.6432872207715, + "min_y": 5387.706119531405, + "max_x": 2628.2426939727393, + "max_y": 5398.904933035341 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C06" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2623.638361155138, + "min_y": 5388.655947928683, + "max_x": 2628.1178865567117, + "max_y": 5392.23435531878 + }, + "value": "FIT", + "layer": "1-SYMBOL", + "id": "557C07" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2632.560550539976, + "min_y": 5387.528048811855, + "max_x": 2635.24826578092, + "max_y": 5389.021223945713 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C0E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2623.638361155137, + "min_y": 5394.255354680648, + "max_x": 2628.1178865567103, + "max_y": 5397.833762070747 + }, + "value": "FIA", + "layer": "1-SYMBOL", + "id": "557C10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5393.305526283374, + "max_x": 2628.242693972738, + "max_y": 5398.904933035341 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5393.305526283374, + "max_x": 2628.242693972738, + "max_y": 5393.305526283374 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5398.904933035341, + "max_x": 2628.242693972738, + "max_y": 5398.904933035341 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2650.965729954502, + "min_y": 5309.387053482481, + "max_x": 2651.214592476812, + "max_y": 5310.880228616341 + }, + "value": null, + "layer": "0", + "id": "557C18" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2651.706950305921, + "min_y": 5292.06518483417, + "max_x": 2655.003982812421, + "max_y": 5295.362217340668 + }, + "value": null, + "layer": "0", + "id": "557C1A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2646.9275576874697, + "min_y": 5287.285792215717, + "max_x": 2652.5269644394366, + "max_y": 5292.885198967685 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557C1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2647.922631621835, + "min_y": 5288.235620612994, + "max_x": 2652.4021570234086, + "max_y": 5291.814028003091 + }, + "value": "TG", + "layer": "1-SYMBOL", + "id": "557C1E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2648.138299454233, + "min_y": 5301.780573357504, + "max_x": 2650.8260146951775, + "max_y": 5303.273748491362 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2666.610271486435, + "min_y": 5386.390163997049, + "max_x": 2670.193891807694, + "max_y": 5387.883339130907 + }, + "value": "150A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2668.845392345728, + "min_y": 5384.035858695732, + "max_x": 2673.828616745691, + "max_y": 5385.546632822288 + }, + "value": null, + "layer": "0", + "id": "557C24" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2675.170797182685, + "min_y": 5384.067349823731, + "max_x": 2684.1298479858324, + "max_y": 5385.560524957589 + }, + "value": "FOR SAMPLE", + "layer": "14-D-PIPELINE-LINE", + "id": "557C25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5285.360644234559, + "max_x": 2666.574845659436, + "max_y": 5290.367922253109 + }, + "value": null, + "layer": "0", + "id": "557C26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2695.539818391101, + "min_y": 5278.414946649013, + "max_x": 2801.807708788326, + "max_y": 5290.636939406067 + }, + "value": null, + "layer": "0", + "id": "557C28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2566.227927054635, + "min_y": 5382.5062823316, + "max_x": 2584.91150576243, + "max_y": 5387.076212280902 + }, + "value": null, + "layer": "0", + "id": "557C2A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2566.227927054635, + "min_y": 5382.506282331597, + "max_x": 2584.91150576243, + "max_y": 5382.506282331597 + }, + "value": null, + "layer": "0", + "id": "557C2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2566.046612931238, + "min_y": 5383.823929412459, + "max_x": 2579.1746451018957, + "max_y": 5388.683372577956 + }, + "value": "SOFT WATER", + "layer": "0", + "id": "557C2E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2652.751558871278, + "min_y": 5386.140113170316, + "max_x": 2655.4392741122224, + "max_y": 5387.633288304174 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2649.595364757143, + "min_y": 5364.274250866467, + "max_x": 2652.2830799980875, + "max_y": 5365.767426000325 + }, + "value": "32A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C31" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2588.543725760402, + "min_y": 5385.418037538975, + "max_x": 2606.4618273666965, + "max_y": 5386.911212672833 + }, + "value": "SW-10809-15A-F1A-E50", + "layer": "14-D-PIPELINE-LINE", + "id": "557C32" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2613.650074976171, + "min_y": 5313.002192455578, + "max_x": 2631.568176582465, + "max_y": 5314.495367589436 + }, + "value": "SW-10822-32A-F1A-E50", + "layer": "14-D-PIPELINE-LINE", + "id": "557C33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2659.90911819975, + "min_y": 5267.356504925665, + "max_x": 2677.8272198060445, + "max_y": 5268.849680059523 + }, + "value": "SW-10821-50A-F1A-E50", + "layer": "14-D-PIPELINE-LINE", + "id": "557C34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2700.167577441216, + "min_y": 5291.805125248089, + "max_x": 2717.189773967196, + "max_y": 5293.298300381947 + }, + "value": "VG-10401-150A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C35" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2796.855532720448, + "min_y": 5207.498206252129, + "max_x": 2807.6063936842247, + "max_y": 5209.290016412759 + }, + "value": "T-10200", + "layer": "0", + "id": "557C36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2806.104943334185, + "min_y": 5244.233761442617, + "max_x": 2816.8558042979616, + "max_y": 5246.025571603246 + }, + "value": "T-10100", + "layer": "0", + "id": "557C37" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2670.640788289864, + "min_y": 5338.054787521459, + "max_x": 2685.423222115057, + "max_y": 5340.294550222246 + }, + "value": "SC-10128", + "layer": "0", + "id": "557C38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2624.114672300678, + "min_y": 5381.844480084296, + "max_x": 2626.8023875416225, + "max_y": 5383.337655218154 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2693.340904971454, + "min_y": 5187.825373672224, + "max_x": 2694.901665862552, + "max_y": 5193.152455011189 + }, + "value": null, + "layer": "0", + "id": "557C3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2664.789041171391, + "min_y": 5230.075027922722, + "max_x": 2682.7071427776855, + "max_y": 5231.56820305658 + }, + "value": "WW-10191-25A-F1A-E50", + "layer": "14-D-PIPELINE-LINE", + "id": "557C41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2694.121285417006, + "min_y": 5165.649165549815, + "max_x": 2737.855755447404, + "max_y": 5208.281025379172 + }, + "value": null, + "layer": "0", + "id": "557C43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2795.60509592307, + "min_y": 5185.596500769069, + "max_x": 2807.4310429832244, + "max_y": 5187.3883109296985 + }, + "value": "VP-10117", + "layer": "0", + "id": "557C44" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2812.535444264422, + "min_y": 5183.430943995374, + "max_x": 2826.571744322455, + "max_y": 5189.49965251711 + }, + "value": null, + "layer": "0", + "id": "557C45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2814.680611639245, + "min_y": 5185.344803107767, + "max_x": 2826.506558699399, + "max_y": 5187.136613268396 + }, + "value": "VP-10217", + "layer": "0", + "id": "557C46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2749.545103759858, + "min_y": 5189.715656263279, + "max_x": 2800.478078577262, + "max_y": 5326.818406181204 + }, + "value": null, + "layer": "0", + "id": "557C47" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2752.8383503324776, + "min_y": 5139.873072614052, + "max_x": 2759.2001304238524, + "max_y": 5147.369751829659 + }, + "value": null, + "layer": "0", + "id": "557C4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2753.42041202482, + "min_y": 5140.822901011329, + "max_x": 2758.7958425067086, + "max_y": 5144.724645713015 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2751.436423732742, + "min_y": 5136.549551214824, + "max_x": 2762.1872846965184, + "max_y": 5138.341361375453 + }, + "value": "E-10219", + "layer": "0", + "id": "557C4E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2739.7731288103105, + "min_y": 5139.948242779052, + "max_x": 2746.12529224588, + "max_y": 5147.444888577133 + }, + "value": null, + "layer": "0", + "id": "557C50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2740.355190502653, + "min_y": 5140.898071176327, + "max_x": 2757.1167963722733, + "max_y": 5148.255410760413 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2738.371202210575, + "min_y": 5136.624721379823, + "max_x": 2749.1220631743518, + "max_y": 5138.4165315404525 + }, + "value": "E-10119", + "layer": "0", + "id": "557C53" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2807.9574530879804, + "min_y": 5175.282551104071, + "max_x": 2813.5568598399473, + "max_y": 5180.881957856039 + }, + "value": null, + "layer": "0", + "id": "557C54" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2808.952527022346, + "min_y": 5176.232379501347, + "max_x": 2813.4320524239197, + "max_y": 5180.134124203034 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C55" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2841.0266598304, + "min_y": 5329.097522399996, + "max_x": 2851.777520794177, + "max_y": 5330.889332560625 + }, + "value": "D-10113", + "layer": "0", + "id": "557C57" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2789.5636824216117, + "min_y": 5175.3775519825585, + "max_x": 2795.1630891735786, + "max_y": 5180.976958734526 + }, + "value": null, + "layer": "0", + "id": "557C58" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2790.558756355979, + "min_y": 5176.502955281928, + "max_x": 2795.0382817575523, + "max_y": 5180.404699983613 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C59" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2841.025956790178, + "min_y": 5316.675445781869, + "max_x": 2851.7768177539547, + "max_y": 5318.467255942498 + }, + "value": "D-10213", + "layer": "0", + "id": "557C5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2851.490038817939, + "min_y": 5329.755685502112, + "max_x": 2860.520822235919, + "max_y": 5329.755685502112 + }, + "value": null, + "layer": "0", + "id": "557C5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2851.361111865277, + "min_y": 5317.590056708861, + "max_x": 2856.004231116936, + "max_y": 5317.590056708861 + }, + "value": null, + "layer": "0", + "id": "557C5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2754.411110442268, + "min_y": 5146.848299497023, + "max_x": 2770.5374018879334, + "max_y": 5149.663712435279 + }, + "value": "VG-10444-25A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C5E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2726.790736317986, + "min_y": 5206.0412626783855, + "max_x": 2728.2839114518442, + "max_y": 5207.534437812243 + }, + "value": null, + "layer": "0", + "id": "557C64" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2731.148180711932, + "min_y": 5206.0412626783855, + "max_x": 2732.6413558457903, + "max_y": 5207.534437812243 + }, + "value": null, + "layer": "0", + "id": "557C65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2756.271228764397, + "min_y": 5195.498147466349, + "max_x": 2772.3975202100623, + "max_y": 5196.991322600207 + }, + "value": "VG-10411-65A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C68" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2821.4590977934076, + "min_y": 5248.72757719997, + "max_x": 2827.0585045453745, + "max_y": 5254.326983951938 + }, + "value": null, + "layer": "0", + "id": "557C69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2822.534971939186, + "min_y": 5249.677405597246, + "max_x": 2827.0144973407596, + "max_y": 5253.579150298934 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2805.909981881208, + "min_y": 5255.890921973926, + "max_x": 2817.108795385142, + "max_y": 5281.401812894358 + }, + "value": null, + "layer": "0", + "id": "557C6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2669.563883344148, + "min_y": 5318.079660352841, + "max_x": 2679.880093665531, + "max_y": 5320.672327092887 + }, + "value": null, + "layer": "0", + "id": "557C6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2669.564797032267, + "min_y": 5318.18294428295, + "max_x": 2669.564797032267, + "max_y": 5319.505185217966 + }, + "value": null, + "layer": "0", + "id": "557C6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2716.109603596937, + "min_y": 5208.196972216633, + "max_x": 2719.693223918196, + "max_y": 5209.690147350491 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557C70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2756.217901081046, + "min_y": 5200.80960292517, + "max_x": 2772.344192526711, + "max_y": 5202.302778059028 + }, + "value": "VG-10412-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2800.493712504346, + "min_y": 5222.12849844525, + "max_x": 2816.6200039500113, + "max_y": 5223.627710085669 + }, + "value": "VG-10431-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2709.645619330678, + "min_y": 5323.508694150434, + "max_x": 2725.7719107763432, + "max_y": 5325.001869284292 + }, + "value": "VG-10411-65A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C73" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2709.765558180846, + "min_y": 5329.717037408807, + "max_x": 2725.891849626511, + "max_y": 5331.210212542665 + }, + "value": "VG-10412-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2818.075168946468, + "min_y": 5256.198560413313, + "max_x": 2828.307608889075, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2846.599004278835, + "min_y": 5277.612017075703, + "max_x": 2849.254292738575, + "max_y": 5279.10519220956 + }, + "value": null, + "layer": "0", + "id": "557C78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2820.112153289992, + "min_y": 5244.296063227469, + "max_x": 2841.380191833329, + "max_y": 5246.087873388098 + }, + "value": "T-10201", + "layer": "0", + "id": "557C7A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2843.0527133359224, + "min_y": 5248.72757719997, + "max_x": 2848.652120087889, + "max_y": 5254.326983951938 + }, + "value": null, + "layer": "0", + "id": "557C7B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2844.047787270289, + "min_y": 5249.677405597246, + "max_x": 2849.3864298517974, + "max_y": 5256.47040500542 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2839.383362275873, + "min_y": 5256.190321114727, + "max_x": 2847.608307015692, + "max_y": 5281.401812894358 + }, + "value": null, + "layer": "0", + "id": "557C7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2833.908888936271, + "min_y": 5258.869292898628, + "max_x": 2861.283752195431, + "max_y": 5260.728078020297 + }, + "value": "VG-10422-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C7F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2841.828144373486, + "min_y": 5244.296063227469, + "max_x": 2852.5790053372625, + "max_y": 5246.087873388098 + }, + "value": "T-10101", + "layer": "0", + "id": "557C80" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2831.8538998319887, + "min_y": 5248.72757719997, + "max_x": 2837.4533065839555, + "max_y": 5254.326983951938 + }, + "value": null, + "layer": "0", + "id": "557C81" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2832.970174083476, + "min_y": 5249.677405597246, + "max_x": 2838.1849636303614, + "max_y": 5256.55494437313 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557C82" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2829.800784022934, + "min_y": 5256.207520805631, + "max_x": 2839.383362275873, + "max_y": 5281.401812894358 + }, + "value": null, + "layer": "0", + "id": "557C85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2765.127170231954, + "min_y": 5173.334835652897, + "max_x": 2782.149366757934, + "max_y": 5174.828010786755 + }, + "value": "VG-10441-200A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2765.178656100812, + "min_y": 5162.815557733966, + "max_x": 2782.200852626792, + "max_y": 5164.308732867824 + }, + "value": "VG-10442-150A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557C88" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2797.521255955861, + "min_y": 5278.415462626646, + "max_x": 2800.31057512924, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C89" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2797.521255955861, + "min_y": 5279.908637760504, + "max_x": 2801.057162696169, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2820.750833188197, + "min_y": 5278.415462626646, + "max_x": 2820.750833188197, + "max_y": 5280.655225327432 + }, + "value": null, + "layer": "0", + "id": "557C8D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2820.750833188197, + "min_y": 5279.908637760504, + "max_x": 2824.286739928506, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C8F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2801.803750263098, + "min_y": 5278.415462626646, + "max_x": 2806.771009208208, + "max_y": 5280.655225327432 + }, + "value": null, + "layer": "0", + "id": "557C91" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2806.771009208208, + "min_y": 5279.908637760504, + "max_x": 2810.3069159485162, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2831.117696467663, + "min_y": 5278.415462626646, + "max_x": 2831.117696467663, + "max_y": 5280.655225327432 + }, + "value": null, + "layer": "0", + "id": "557C95" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2831.117696467663, + "min_y": 5279.908637760504, + "max_x": 2834.653603207972, + "max_y": 5281.401812894361 + }, + "value": null, + "layer": "0", + "id": "557C97" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2842.316509971596, + "min_y": 5278.415462626643, + "max_x": 2842.316509971596, + "max_y": 5280.655225327429 + }, + "value": null, + "layer": "0", + "id": "557C99" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2842.3165099715948, + "min_y": 5279.908637760501, + "max_x": 2845.8524167119062, + "max_y": 5281.401812894358 + }, + "value": null, + "layer": "0", + "id": "557C9B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2779.048640510676, + "min_y": 5274.82054197801, + "max_x": 2796.0708370366556, + "max_y": 5276.313717111868 + }, + "value": "VG-10401-150A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557CA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2650.577294763286, + "min_y": 5253.216058940494, + "max_x": 2666.560938125412, + "max_y": 5254.709234074351 + }, + "value": null, + "layer": "0", + "id": "557CA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2656.417522760524, + "min_y": 5255.585232158341, + "max_x": 2659.1052380014685, + "max_y": 5257.078407292199 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557CA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2598.894067796094, + "min_y": 5257.88008631002, + "max_x": 2600.387242929953, + "max_y": 5262.607960075897 + }, + "value": null, + "layer": "0", + "id": "557CA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2591.519548656984, + "min_y": 5259.311448181565, + "max_x": 2597.7908842191873, + "max_y": 5260.804623315423 + }, + "value": "40Ax32A", + "layer": "14-D-PIPELINE-LINE", + "id": "557CAE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2610.14367362834, + "min_y": 5286.723646918829, + "max_x": 2612.831388869284, + "max_y": 5288.216822052687 + }, + "value": "32A", + "layer": "14-D-PIPELINE-LINE", + "id": "557CAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5283.454130294424, + "max_x": 2617.628356753835, + "max_y": 5287.052775110598 + }, + "value": null, + "layer": "0", + "id": "557CB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5275.410945842541, + "max_x": 2615.023452775954, + "max_y": 5280.138819608417 + }, + "value": null, + "layer": "0", + "id": "557CB4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2606.037057163698, + "min_y": 5276.958216624311, + "max_x": 2612.3083927259013, + "max_y": 5278.451391758169 + }, + "value": "40Ax32A", + "layer": "14-D-PIPELINE-LINE", + "id": "557CBA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2685.663098570694, + "min_y": 5166.148811738648, + "max_x": 2687.0424770357904, + "max_y": 5167.298293792895 + }, + "value": "MH", + "layer": "0", + "id": "557CCD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2684.1360723287344, + "min_y": 5163.889543916791, + "max_x": 2689.2448814587215, + "max_y": 5168.998353046777 + }, + "value": null, + "layer": "0", + "id": "557CCE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2685.113013933634, + "min_y": 5162.049338832645, + "max_x": 2687.871770863827, + "max_y": 5163.198820886892 + }, + "value": "500A", + "layer": "0", + "id": "557CD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2709.220227664348, + "min_y": 5159.618433911953, + "max_x": 2711.9789845945406, + "max_y": 5163.030968968993 + }, + "value": "TG", + "layer": "0", + "id": "557CD2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2708.1375742997666, + "min_y": 5158.7523468536665, + "max_x": 2713.2463834297537, + "max_y": 5163.861155983653 + }, + "value": null, + "layer": "0", + "id": "557CD3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2708.569675199936, + "min_y": 5173.684428082136, + "max_x": 2711.3284321301285, + "max_y": 5177.096963139175 + }, + "value": "PG", + "layer": "0", + "id": "557CD5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2706.6588726212926, + "min_y": 5170.469013057426, + "max_x": 2712.5958309653433, + "max_y": 5177.927150153848 + }, + "value": null, + "layer": "0", + "id": "557CD6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2707.498916324925, + "min_y": 5168.695869280499, + "max_x": 2710.04142640035, + "max_y": 5172.818341023861 + }, + "value": null, + "layer": "0", + "id": "557CD7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2677.398602011692, + "min_y": 5175.041125931371, + "max_x": 2703.7912800108124, + "max_y": 5176.573768670368 + }, + "value": "\\pi12.536; \\fArial|b1|i1|c238|p34; .3333x;T-3210", + "layer": "0", + "id": "557CDA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2669.629252858969, + "min_y": 5155.85237700905, + "max_x": 2673.40710829372, + "max_y": 5159.518890074213 + }, + "value": null, + "layer": "0", + "id": "557CDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2667.135101690139, + "min_y": 5155.85237700905, + "max_x": 2668.716218074719, + "max_y": 5157.576351387015 + }, + "value": null, + "layer": "0", + "id": "557CDF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2668.6406446094466, + "min_y": 5156.182273340634, + "max_x": 2669.7048263242355, + "max_y": 5157.246455055424 + }, + "value": null, + "layer": "0", + "id": "557CE7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2666.487992094085, + "min_y": 5158.378810760899, + "max_x": 2668.694997638239, + "max_y": 5159.604924952096 + }, + "value": "50A", + "layer": "0", + "id": "557CE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2663.418300397648, + "min_y": 5169.614638402222, + "max_x": 2670.397190762271, + "max_y": 5171.364179787237 + }, + "value": null, + "layer": "0", + "id": "557CEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2660.405189952324, + "min_y": 5169.640205409272, + "max_x": 2666.66370135464, + "max_y": 5171.364179787237 + }, + "value": null, + "layer": "0", + "id": "557CEB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2662.069474524737, + "min_y": 5169.089133041619, + "max_x": 2663.418300397648, + "max_y": 5171.986334546759 + }, + "value": null, + "layer": "0", + "id": "557CEC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2662.4351599625197, + "min_y": 5166.984832257094, + "max_x": 2669.540963036512, + "max_y": 5174.0906353310875 + }, + "value": null, + "layer": "0", + "id": "557CED" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2665.842781699016, + "min_y": 5172.021528988336, + "max_x": 2668.04978724317, + "max_y": 5173.247643179533 + }, + "value": "50A", + "layer": "0", + "id": "557CEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2656.048411149761, + "min_y": 5168.712163176956, + "max_x": 2658.991085208633, + "max_y": 5172.376899181189 + }, + "value": "LT", + "layer": "0", + "id": "557CEF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2649.359145733679, + "min_y": 5167.813035591526, + "max_x": 2660.4051899523233, + "max_y": 5173.40968340485 + }, + "value": null, + "layer": "0", + "id": "557CF0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2666.5881278893685, + "min_y": 5169.970101740855, + "max_x": 2667.6523096041574, + "max_y": 5171.034283455645 + }, + "value": null, + "layer": "0", + "id": "557CFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.52007778746, + "min_y": 5161.711167049503, + "max_x": 2670.397190762271, + "max_y": 5163.435141427469 + }, + "value": null, + "layer": "0", + "id": "557CFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2651.460060244362, + "min_y": 5161.439382260128, + "max_x": 2655.536720148579, + "max_y": 5163.706926216845 + }, + "value": null, + "layer": "0", + "id": "557CFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.186023377632, + "min_y": 5161.711167049503, + "max_x": 2662.733845197807, + "max_y": 5163.435141427469 + }, + "value": null, + "layer": "0", + "id": "557D03" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2653.6162987435346, + "min_y": 5162.041063381087, + "max_x": 2654.6804804583235, + "max_y": 5163.105245095877 + }, + "value": null, + "layer": "0", + "id": "557D05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5134.898947515233, + "max_x": 2952.014917269162, + "max_y": 5183.142275915336 + }, + "value": null, + "layer": "TITLE", + "id": "557D0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5173.350025050915, + "max_x": 2952.014917269162, + "max_y": 5173.350025050915 + }, + "value": null, + "layer": "TITLE", + "id": "557D0D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5151.980410218635, + "max_x": 2952.014917269162, + "max_y": 5151.980410218635 + }, + "value": null, + "layer": "TITLE", + "id": "557D0E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5134.898947515233, + "max_x": 2952.014917269162, + "max_y": 5141.295602802505 + }, + "value": null, + "layer": "TITLE", + "id": "557D12" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5138.094041258321, + "max_x": 2911.151349923432, + "max_y": 5138.094041258321 + }, + "value": null, + "layer": "TITLE", + "id": "557D14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 5135.935792801128, + "max_x": 2905.0680948249696, + "max_y": 5140.520265039195 + }, + "value": "NONE", + "layer": "1", + "id": "557D15" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 5135.961796266689, + "max_x": 2895.3187816415284, + "max_y": 5140.121419267102 + }, + "value": "JOB NO.", + "layer": "1", + "id": "557D18" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5149.749651501441, + "max_x": 2894.9490101488555, + "max_y": 5150.966632956296 + }, + "value": "TITLE :", + "layer": "1", + "id": "557D1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5171.11926633372, + "max_x": 2894.9490101488555, + "max_y": 5172.336247788575 + }, + "value": "ONWER :", + "layer": "1", + "id": "557D20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.292180654626, + "min_y": 5181.110868946046, + "max_x": 2898.9865335658824, + "max_y": 5185.004200361185 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "557D21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 5136.295992552703, + "max_x": 2950.962815110278, + "max_y": 5136.295992552703 + }, + "value": null, + "layer": "TITLE", + "id": "557D22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5183.142275915336, + "max_x": 2952.014917269162, + "max_y": 5206.508085836368 + }, + "value": null, + "layer": "TITLE", + "id": "557D27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2947.853089126672, + "min_y": 5137.104870135035, + "max_x": 2949.0172933245562, + "max_y": 5139.045210464841 + }, + "value": "0", + "layer": "0", + "id": "557D29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.349862407318, + "min_y": 5176.947878721518, + "max_x": 2930.86737076558, + "max_y": 5179.560935205769 + }, + "value": "10th PLANT 증설공사", + "layer": "SH1", + "id": "557D2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.693859847959, + "min_y": 5166.672097902951, + "max_x": 2953.161042673931, + "max_y": 5169.285154387202 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "557D2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 5168.084799430692, + "max_x": 2903.196411032603, + "max_y": 5169.472026498605 + }, + "value": null, + "layer": "0-BAS", + "id": "557D35" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2902.650389686795, + "min_y": 5165.598368384202, + "max_x": 2909.5756424025612, + "max_y": 5166.708150038528 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "557D43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5160.434458917578, + "max_x": 2898.59995451342, + "max_y": 5161.651440372433 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "557D45" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2917.289787717411, + "min_y": 5155.533011632567, + "max_x": 2928.15569356433, + "max_y": 5158.120132072309 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "557D46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 5159.041897869741, + "max_x": 2905.357820025422, + "max_y": 5160.457993049702 + }, + "value": null, + "layer": "0", + "id": "557D49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 5159.041897869741, + "max_x": 2902.437123716778, + "max_y": 5159.926957357212 + }, + "value": null, + "layer": "0", + "id": "557D4D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2903.2779302298704, + "min_y": 5156.325280539193, + "max_x": 2907.3718295408057, + "max_y": 5157.592847984373 + }, + "value": null, + "layer": "0", + "id": "557D52" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2904.065292568864, + "min_y": 5156.376927219931, + "max_x": 2906.584467201812, + "max_y": 5157.541201303642 + }, + "value": null, + "layer": "0", + "id": "557D55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517512, + "min_y": 5186.093931184326, + "max_x": 2952.014917269167, + "max_y": 5186.093931184326 + }, + "value": null, + "layer": "0", + "id": "557D5B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5186.093931184368, + "max_x": 2892.298318354719, + "max_y": 5192.898649401306 + }, + "value": null, + "layer": "0", + "id": "557D5C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5192.898649401306, + "max_x": 2892.298318354719, + "max_y": 5199.703367618287 + }, + "value": null, + "layer": "0", + "id": "557D5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2937.211313107093, + "min_y": 5183.907299235851, + "max_x": 2939.843875807896, + "max_y": 5185.004200361185 + }, + "value": "APPD", + "layer": "0", + "id": "557D63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2931.864799599653, + "min_y": 5183.907299235851, + "max_x": 2934.497362300456, + "max_y": 5185.004200361185 + }, + "value": "CHKD", + "layer": "0", + "id": "557D65" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2926.14719103735, + "min_y": 5183.907299235851, + "max_x": 2928.779753738153, + "max_y": 5185.004200361185 + }, + "value": "DRWN", + "layer": "0", + "id": "557D67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2910.003860672814, + "min_y": 5183.907299235851, + "max_x": 2917.243408100023, + "max_y": 5185.004200361185 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "557D68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2944.262435177169, + "min_y": 5183.855059149616, + "max_x": 2948.211279228374, + "max_y": 5184.951960274951 + }, + "value": "REMARK", + "layer": "0", + "id": "557D6A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246291, + "min_y": 5199.703367618287, + "max_x": 2892.298318354771, + "max_y": 5206.508085835785 + }, + "value": null, + "layer": "0", + "id": "557D6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517503, + "min_y": 5189.496290292837, + "max_x": 2952.014917269167, + "max_y": 5189.496290292837 + }, + "value": null, + "layer": "0", + "id": "557D6E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517495, + "min_y": 5192.898649401347, + "max_x": 2952.014917269167, + "max_y": 5192.898649401347 + }, + "value": null, + "layer": "0", + "id": "557D6F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517485, + "min_y": 5196.301008509859, + "max_x": 2952.014917269167, + "max_y": 5196.301008509859 + }, + "value": null, + "layer": "0", + "id": "557D70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517477, + "min_y": 5199.70336761837, + "max_x": 2952.014917269167, + "max_y": 5199.70336761837 + }, + "value": null, + "layer": "0", + "id": "557D71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517468, + "min_y": 5203.10572672688, + "max_x": 2952.014917269167, + "max_y": 5203.10572672688 + }, + "value": null, + "layer": "0", + "id": "557D72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5206.508085835391, + "max_x": 2952.014917269167, + "max_y": 5206.508085835391 + }, + "value": null, + "layer": "0", + "id": "557D73" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2640.699573008181, + "min_y": 5264.508784985191, + "max_x": 2641.6084643823197, + "max_y": 5265.4176763593305 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.675732416673, + "min_y": 5253.22560474424, + "max_x": 2659.595320169797, + "max_y": 5254.736378870795 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D7D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.178505097097, + "min_y": 5253.22560474424, + "max_x": 2656.675732416673, + "max_y": 5254.736378870795 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D7E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2657.4324669463795, + "min_y": 5253.526546120449, + "max_x": 2658.3413583205183, + "max_y": 5254.435437494589 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D81" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2625.9615152371643, + "min_y": 5246.977925452671, + "max_x": 2626.870406611303, + "max_y": 5247.886816826811 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D8A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2633.5754947258315, + "min_y": 5384.336801619178, + "max_x": 2634.4843860999704, + "max_y": 5385.245692993318 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5382.577749497478, + "max_x": 2616.571904755023, + "max_y": 5385.546632822288 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D99" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2616.5030570845174, + "min_y": 5384.336800071942, + "max_x": 2617.4119484586563, + "max_y": 5385.245691446082 + }, + "value": null, + "layer": "VV-BALL", + "id": "557D9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2626.823130024673, + "min_y": 5376.15826959535, + "max_x": 2628.145939544457, + "max_y": 5377.669043721906 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DA1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2625.9830863210414, + "min_y": 5376.4592109715595, + "max_x": 2626.8919776951802, + "max_y": 5377.368102345699 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2666.751386792812, + "min_y": 5384.035858695732, + "max_x": 2668.074196312602, + "max_y": 5385.546632822288 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DAB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2668.0053486420957, + "min_y": 5384.336800071942, + "max_x": 2668.9142400162345, + "max_y": 5385.245691446082 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DAE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2648.39650911038, + "min_y": 5298.288384788618, + "max_x": 2651.316096863505, + "max_y": 5299.799158915174 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2647.899281790806, + "min_y": 5298.288384788618, + "max_x": 2648.39650911038, + "max_y": 5299.799158915174 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DB4" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2649.1532436400885, + "min_y": 5298.589326164827, + "max_x": 2650.0621350142274, + "max_y": 5299.498217538967 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DB7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2613.8224195218286, + "min_y": 5286.983927440091, + "max_x": 2614.7313108959675, + "max_y": 5287.892818814231 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DC0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2599.1862096758255, + "min_y": 5269.4530679075715, + "max_x": 2600.0951010499643, + "max_y": 5270.361959281711 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5243.89166756259, + "max_x": 2617.515902871256, + "max_y": 5245.21447708238 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DCF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2616.3060701209106, + "min_y": 5243.051623858957, + "max_x": 2617.2149614950495, + "max_y": 5243.960515233097 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5261.42252709511, + "max_x": 2632.15211271726, + "max_y": 5262.745336614899 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DD8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2630.9422799669146, + "min_y": 5260.5824833914785, + "max_x": 2631.8511713410535, + "max_y": 5261.491374765618 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DDB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5189.344238340373, + "max_x": 2666.569737621761, + "max_y": 5284.589448201433 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DE0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2665.3599048714145, + "min_y": 5284.520600530926, + "max_x": 2666.2687962455534, + "max_y": 5285.429491905065 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DE4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2705.404910772011, + "min_y": 5170.168071681217, + "max_x": 2706.727720291799, + "max_y": 5171.678845807773 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DEA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5164.16531662594, + "max_x": 2710.796813463626, + "max_y": 5168.198641960923 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DF2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5168.198641960923, + "max_x": 2710.796813463626, + "max_y": 5168.695869280499 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DF3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2709.5869807132817, + "min_y": 5166.5330160570775, + "max_x": 2710.4958720874206, + "max_y": 5167.441907431217 + }, + "value": null, + "layer": "VV-BALL", + "id": "557DF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5159.322408730158, + "max_x": 2664.314961582388, + "max_y": 5163.435141427469 + }, + "value": null, + "layer": "0", + "id": "557E01" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2664.2393881171165, + "min_y": 5162.041063381087, + "max_x": 2665.3035698319054, + "max_y": 5163.105245095877 + }, + "value": null, + "layer": "0", + "id": "557E09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5157.477560790383, + "max_x": 2662.917395624769, + "max_y": 5160.254221885685 + }, + "value": null, + "layer": "0", + "id": "557E0A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2661.5540534718016, + "min_y": 5156.828257561332, + "max_x": 2662.6182351865905, + "max_y": 5160.903525114737 + }, + "value": null, + "layer": "0", + "id": "557E10" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.522963399482, + "min_y": 5155.714519979472, + "max_x": 2662.649325258913, + "max_y": 5156.828257561331 + }, + "value": null, + "layer": "0", + "id": "557E13" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2648.0243881928704, + "min_y": 5162.142971189337, + "max_x": 2651.460060854581, + "max_y": 5163.00188935477 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E19" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2647.16547002745, + "min_y": 5162.142971189343, + "max_x": 2648.0243881928723, + "max_y": 5163.001889354766 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2645.71536916463, + "min_y": 5162.009249342339, + "max_x": 2647.165470027449, + "max_y": 5163.13561120177 + }, + "value": null, + "layer": "0", + "id": "557E21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2646.679838469951, + "min_y": 5163.912477668434, + "max_x": 2648.023696090423, + "max_y": 5165.032359018827 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "557E25" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2629.613142007716, + "min_y": 5161.526218832274, + "max_x": 2634.268404119707, + "max_y": 5164.175126002088 + }, + "value": null, + "layer": "0", + "id": "557E26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2627.942859611855, + "min_y": 5157.938811932951, + "max_x": 2635.385058938066, + "max_y": 5164.175126002088 + }, + "value": null, + "layer": "0", + "id": "557E27" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2627.773177567464, + "min_y": 5157.782763591892, + "max_x": 2629.469401524014, + "max_y": 5157.938811932951 + }, + "value": null, + "layer": "0", + "id": "557E2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2634.412144603401, + "min_y": 5157.782763591892, + "max_x": 2636.108368559971, + "max_y": 5163.413853346897 + }, + "value": null, + "layer": "0", + "id": "557E2F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2627.322155054275, + "min_y": 5162.850672417182, + "max_x": 2629.613142007716, + "max_y": 5163.413853346897 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "557E3A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2634.268404119707, + "min_y": 5162.850672417182, + "max_x": 2636.559391073149, + "max_y": 5163.413853346897 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "557E3B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2616.586104436041, + "min_y": 5160.451560775172, + "max_x": 2626.217333230796, + "max_y": 5161.991397631963 + }, + "value": "\\pi-0.8037; \\fArial|b1|i1|c238|p34; .3333x; DP-3210", + "layer": "0", + "id": "557E3C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2623.8864823925633, + "min_y": 5162.421213334464, + "max_x": 2627.3221550542744, + "max_y": 5163.280131499898 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E40" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2623.0275642271426, + "min_y": 5162.421213334471, + "max_x": 2623.886482392565, + "max_y": 5163.280131499893 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E44" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2621.577463364322, + "min_y": 5162.287491487465, + "max_x": 2623.027564227142, + "max_y": 5163.413853346897 + }, + "value": null, + "layer": "0", + "id": "557E46" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2636.5590223559757, + "min_y": 5162.403421147278, + "max_x": 2639.994695017686, + "max_y": 5163.2623393127105 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E4D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2639.994695017685, + "min_y": 5162.403421147284, + "max_x": 2640.8536131831074, + "max_y": 5163.262339312706 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "557E51" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2640.853613183108, + "min_y": 5162.269699300279, + "max_x": 2642.303714045927, + "max_y": 5163.39606115971 + }, + "value": null, + "layer": "0", + "id": "557E53" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.621893842153, + "min_y": 5164.212408712478, + "max_x": 2623.965751462625, + "max_y": 5165.332290062871 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "557E5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2628.873752112965, + "min_y": 5164.212408712478, + "max_x": 2630.2176097334373, + "max_y": 5165.332290062871 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "557E5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2636.095149901712, + "min_y": 5164.011814329456, + "max_x": 2637.439007522184, + "max_y": 5165.131695679849 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "557E5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2642.447305364035, + "min_y": 5164.078679123797, + "max_x": 2643.791162984507, + "max_y": 5165.19856047419 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "557E5F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2649.359145733678, + "min_y": 5167.81303559153, + "max_x": 2654.955793547003, + "max_y": 5173.40968340485 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557E61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2649.359145733685, + "min_y": 5170.611359498188, + "max_x": 2654.955793547002, + "max_y": 5170.611359498188 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "557E62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2650.626168468632, + "min_y": 5168.862637572029, + "max_x": 2653.6476307496205, + "max_y": 5172.361342889895 + }, + "value": "LIA", + "layer": "INSTRUMENT", + "id": "557E63" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2645.498990724851, + "min_y": 5167.81303559153, + "max_x": 2649.1386051136296, + "max_y": 5168.708940671845 + }, + "value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "layer": "INSTRUMENT", + "id": "557E65" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2624.342039221149, + "min_y": 5296.244068476108, + "max_x": 2628.8915572071223, + "max_y": 5297.153972073303 + }, + "value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "layer": "INSTRUMENT", + "id": "557E69" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2735.620774244483, + "min_y": 5290.579696162332, + "max_x": 2737.581444818367, + "max_y": 5290.579696162332 + }, + "value": null, + "layer": "0", + "id": "557E6D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2649.31811196888, + "min_y": 5384.79124575901, + "max_x": 2651.278782542764, + "max_y": 5384.79124575901 + }, + "value": null, + "layer": "0", + "id": "557E6E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2641.222551046401, + "min_y": 5362.940369762349, + "max_x": 2643.183221620285, + "max_y": 5362.940369762349 + }, + "value": null, + "layer": "0", + "id": "557E6F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5204.067105659143, + "max_x": 2665.814350558482, + "max_y": 5206.027776233028 + }, + "value": null, + "layer": "0", + "id": "557E70" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2661.26429640942, + "min_y": 5253.980991807517, + "max_x": 2663.224966983304, + "max_y": 5253.980991807517 + }, + "value": null, + "layer": "0", + "id": "557E71" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5326.143282297309, + "max_x": 2614.276865208897, + "max_y": 5328.103952871193 + }, + "value": null, + "layer": "0", + "id": "557E72" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2754.025214949939, + "min_y": 5213.016000093115, + "max_x": 2754.025214949939, + "max_y": 5214.976670666999 + }, + "value": null, + "layer": "0", + "id": "557E73" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2749.54514466938, + "min_y": 5213.422325106298, + "max_x": 2749.54514466938, + "max_y": 5215.382995680183 + }, + "value": null, + "layer": "0", + "id": "557E74" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2732.641355845791, + "min_y": 5184.302265041891, + "max_x": 2732.641355845791, + "max_y": 5186.262935615776 + }, + "value": null, + "layer": "0", + "id": "557E75" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2728.283911451844, + "min_y": 5184.573149331289, + "max_x": 2728.283911451844, + "max_y": 5186.533819905174 + }, + "value": null, + "layer": "0", + "id": "557E76" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2771.665976030512, + "min_y": 5283.40903610157, + "max_x": 2771.665976030512, + "max_y": 5285.369706675455 + }, + "value": null, + "layer": "0", + "id": "557E77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2662.057875981651, + "min_y": 5257.787214010088, + "max_x": 2667.4020608352, + "max_y": 5257.787214010088 + }, + "value": null, + "layer": "0", + "id": "557E78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2669.877177261313, + "min_y": 5359.97898099052, + "max_x": 2670.126039783623, + "max_y": 5361.472156124378 + }, + "value": null, + "layer": "0", + "id": "557E7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2691.407150976784, + "min_y": 5193.157309691024, + "max_x": 2694.12318766001, + "max_y": 5207.534437812243 + }, + "value": null, + "layer": "0", + "id": "557E81" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2691.656013499095, + "min_y": 5195.620193417665, + "max_x": 2694.121285417006, + "max_y": 5195.620193417665 + }, + "value": null, + "layer": "0", + "id": "557E84" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5345.073685248138, + "max_x": 2865.621078278011, + "max_y": 5348.060035515853 + }, + "value": "5F", + "layer": "0", + "id": "557E87" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5344.277674927589, + "max_x": 2867.225952892818, + "max_y": 5344.277674927589 + }, + "value": null, + "layer": "0", + "id": "557E88" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2670.693204015681, + "min_y": 5304.12483794407, + "max_x": 2674.27682433694, + "max_y": 5305.6180130779285 + }, + "value": "H100", + "layer": "0", + "id": "557E90" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2684.158935515301, + "min_y": 5151.63951657712, + "max_x": 2689.5343659971895, + "max_y": 5153.879279277907 + }, + "value": "기존설비", + "layer": "0", + "id": "557E92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2931.927203497594, + "min_y": 5187.120422260067, + "max_x": 2934.7269068735773, + "max_y": 5188.053656718728 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "557E93" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2937.514974009376, + "min_y": 5187.132578620737, + "max_x": 2940.3146773853596, + "max_y": 5188.065813079398 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "557E94" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2912.599200951331, + "min_y": 4823.636406617815, + "max_x": 2937.2429342283717, + "max_y": 4827.604812442227 + }, + "value": "SARF-#9&10-UID-001", + "layer": "0", + "id": "557E95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2906.34726207803, + "min_y": 4830.231691984515, + "max_x": 2933.9432134352837, + "max_y": 4836.7607497875215 + }, + "value": "UTILITY FLOW DIAGRAM", + "layer": "0", + "id": "557E96" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2547.414204121487, + "min_y": 4881.910870994321, + "max_x": 2573.5447689639996, + "max_y": 4883.710870994321 + }, + "value": "\\pi9.1164; .9; C-9128 \\pi7.11173;\\lSCRUBBER", + "layer": "0", + "id": "557E97" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2549.207656133602, + "min_y": 4875.630849060747, + "max_x": 2583.102950349991, + "max_y": 4877.430849060747 + }, + "value": ".9;SIZE : %%C348.3/500 x 7,688H (25m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "557E9B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2547.506190332262, + "min_y": 4854.449441019147, + "max_x": 2568.037348422808, + "max_y": 4856.2494410191475 + }, + "value": "\\pi4.44281; .9; P-9128A/B \\pi0.77308;SCRUBBER PUMP", + "layer": "0", + "id": "557E9F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2549.450434216747, + "min_y": 4847.405432413993, + "max_x": 2572.26880151372, + "max_y": 4849.205432413994 + }, + "value": ".9; CAPA : 50L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,400", + "layer": "0", + "id": "557EA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4883.153079472208, + "max_x": 2747.483119875518, + "max_y": 4918.697354794265 + }, + "value": null, + "layer": "0", + "id": "557EA8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4883.153079472208, + "max_x": 2754.744058749163, + "max_y": 4907.152378469124 + }, + "value": null, + "layer": "0", + "id": "557EAB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2723.124323001595, + "min_y": 4916.709330531511, + "max_x": 2729.3315260945287, + "max_y": 4919.515656355985 + }, + "value": "EMERGENCY", + "layer": "0", + "id": "557EB1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2724.031366978486, + "min_y": 4909.801794583721, + "max_x": 2726.7901239086787, + "max_y": 4910.951276637968 + }, + "value": "500A", + "layer": "0", + "id": "557EB7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2545.364369877367, + "min_y": 4965.893580457048, + "max_x": 2637.96460761082, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557EB8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2577.705283503731, + "min_y": 4965.893580457048, + "max_x": 2577.705283503732, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557EB9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2559.874972431571, + "min_y": 4968.286953345192, + "max_x": 2608.2432722222043, + "max_y": 4970.160067502493 + }, + "value": "VG-9423-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557EBA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2601.179638998095, + "min_y": 4965.893580457048, + "max_x": 2601.179638998095, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557EBB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2600.484683035958, + "min_y": 4968.301282380824, + "max_x": 2622.446686050424, + "max_y": 4969.932207303291 + }, + "value": "VG-9424-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557EBC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2542.5646665013837, + "min_y": 4960.2941737050805, + "max_x": 2555.6497869445056, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557EBE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2551.396200965848, + "min_y": 4961.244002102358, + "max_x": 2554.979821287107, + "max_y": 4965.1457468040435 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557EBF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2574.9055801277477, + "min_y": 4960.2941737050805, + "max_x": 2580.5049868797146, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557EC1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2576.251400901056, + "min_y": 4961.244002102358, + "max_x": 2579.835021222315, + "max_y": 4965.1457468040435 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557EC2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2590.9578967525704, + "min_y": 4960.2941737050805, + "max_x": 2610.7109590231985, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557EC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2599.725756395422, + "min_y": 4961.244002102358, + "max_x": 2603.309376716681, + "max_y": 4965.1457468040435 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557EC5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2582.8454356626066, + "min_y": 4960.2941737050805, + "max_x": 2588.4448424145735, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557EC7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2584.191256435913, + "min_y": 4961.244002102357, + "max_x": 2587.774876757172, + "max_y": 4965.1457468040435 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557EC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2646.038800078228, + "min_y": 5072.936653674589, + "max_x": 2649.064577474855, + "max_y": 5082.069253769947 + }, + "value": null, + "layer": "0", + "id": "557ECA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2638.213470133129, + "min_y": 4982.479696370971, + "max_x": 2654.416542956675, + "max_y": 5052.740110006777 + }, + "value": null, + "layer": "0", + "id": "557ECB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2651.294067530861, + "min_y": 4979.463050745646, + "max_x": 2656.871213305632, + "max_y": 5052.740110006777 + }, + "value": null, + "layer": "0", + "id": "557ECC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2641.346600961816, + "min_y": 5052.739120577864, + "max_x": 2651.294067530861, + "max_y": 5070.522750725801 + }, + "value": null, + "layer": "0", + "id": "557ED4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2651.294067530861, + "min_y": 5052.740110006777, + "max_x": 2653.756024406084, + "max_y": 5070.522750725801 + }, + "value": null, + "layer": "0", + "id": "557ED5" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2534.971102382658, + "min_y": 4822.020143828796, + "max_x": 2952.014917269162, + "max_y": 5119.021570311243 + }, + "value": null, + "layer": "0", + "id": "557EDB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2646.889044213123, + "min_y": 5046.117312785767, + "max_x": 2648.213581154105, + "max_y": 5047.264395424909 + }, + "value": null, + "layer": "0", + "id": "557EDC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2645.645814038044, + "min_y": 4986.721098397264, + "max_x": 2648.8140739500623, + "max_y": 4989.361314990612 + }, + "value": "SG", + "layer": "0", + "id": "557EDF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2643.2781465829344, + "min_y": 4983.668030554269, + "max_x": 2651.802945509083, + "max_y": 4992.192829480417 + }, + "value": null, + "layer": "0", + "id": "557EE0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2647.551312683948, + "min_y": 5080.529927483314, + "max_x": 2650.6299652572143, + "max_y": 5083.60858005658 + }, + "value": null, + "layer": "0", + "id": "557EE2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2637.981065422837, + "min_y": 5046.51780785798, + "max_x": 2638.229927945146, + "max_y": 5048.010982991838 + }, + "value": null, + "layer": "0", + "id": "557EE4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2646.793958478818, + "min_y": 4975.078329681455, + "max_x": 2648.287133612675, + "max_y": 4977.762741600045 + }, + "value": null, + "layer": "0", + "id": "557EE6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2642.616388684654, + "min_y": 4974.4170904864, + "max_x": 2645.304103925598, + "max_y": 4975.9102656202585 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557EE9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2641.097738439505, + "min_y": 5068.36868385464, + "max_x": 2641.346600961816, + "max_y": 5069.861858988497 + }, + "value": null, + "layer": "0", + "id": "557EEB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4913.006339009013, + "max_x": 2653.574375235033, + "max_y": 4979.46305072516 + }, + "value": null, + "layer": "0", + "id": "557EEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2654.727748082164, + "min_y": 4974.4170904864, + "max_x": 2657.4154633231083, + "max_y": 4975.9102656202585 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "557EEF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2637.96460761082, + "min_y": 4995.369510031458, + "max_x": 2638.213470133129, + "max_y": 4996.862685165315 + }, + "value": null, + "layer": "0", + "id": "557EF1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2626.474264005297, + "min_y": 4982.208916912487, + "max_x": 2634.903919404079, + "max_y": 4984.526678116588 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557EF4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2632.149609813147, + "min_y": 4980.525476284857, + "max_x": 2637.834252272341, + "max_y": 4986.21011874405 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557EFA" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2615.2754505013686, + "min_y": 4980.568094138667, + "max_x": 2626.4742640052964, + "max_y": 4986.167500890635 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557EFF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.220678026636, + "min_y": 4981.517922535942, + "max_x": 2625.804298347895, + "max_y": 4985.419667237629 + }, + "value": "LT", + "layer": "1-SYMBOL", + "id": "557F00" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2616.621271274676, + "min_y": 4981.517922535942, + "max_x": 2620.204891595935, + "max_y": 4985.419667237629 + }, + "value": "LI", + "layer": "1-SYMBOL", + "id": "557F03" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4980.568094138668, + "max_x": 2620.874857253329, + "max_y": 4986.167500890633 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557F05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4980.568094138668, + "max_x": 2620.874857253329, + "max_y": 4980.568094138668 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557F06" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4986.167500890633, + "max_x": 2620.874857253329, + "max_y": 4986.167500890633 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557F09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2638.711587919192, + "min_y": 4976.389210496729, + "max_x": 2642.008620425693, + "max_y": 4979.686243003227 + }, + "value": null, + "layer": "0", + "id": "557F0A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2633.9321953007416, + "min_y": 4971.609817878275, + "max_x": 2639.5316020527084, + "max_y": 4977.209224630243 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "557F0D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2635.278016074049, + "min_y": 4972.559646275552, + "max_x": 2638.861636395308, + "max_y": 4976.138053665649 + }, + "value": "TG", + "layer": "1-SYMBOL", + "id": "557F0E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2635.142937067505, + "min_y": 4986.104599020063, + "max_x": 2637.8306523084493, + "max_y": 4987.597774153921 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F11" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2653.527379617586, + "min_y": 5071.852072927176, + "max_x": 2657.110999938845, + "max_y": 5073.345248061034 + }, + "value": "100A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2655.850029958999, + "min_y": 5068.359884358291, + "max_x": 2660.833254358962, + "max_y": 5069.870658484847 + }, + "value": null, + "layer": "0", + "id": "557F14" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2662.175434795956, + "min_y": 5068.39137548629, + "max_x": 2671.1344855991033, + "max_y": 5069.884550620148 + }, + "value": "FOR SAMPLE", + "layer": "14-D-PIPELINE-LINE", + "id": "557F15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4913.006339009013, + "max_x": 2653.574375235033, + "max_y": 4974.933495775959 + }, + "value": null, + "layer": "0", + "id": "557F16" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2639.756196484549, + "min_y": 5070.464138832877, + "max_x": 2642.4439117254933, + "max_y": 5071.9573139667355 + }, + "value": "20A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2658.717462166158, + "min_y": 5024.191182114201, + "max_x": 2672.156038370879, + "max_y": 5026.430944814988 + }, + "value": "SC-9128", + "layer": "0", + "id": "557F1A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2742.82997818693, + "min_y": 4908.15466300615, + "max_x": 2746.273686182633, + "max_y": 4948.942666619525 + }, + "value": null, + "layer": "0", + "id": "557F1B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2651.793678784663, + "min_y": 4950.074691447804, + "max_x": 2667.024065150013, + "max_y": 4951.567866581662 + }, + "value": "WW-9193-25A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F1D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2686.590668428354, + "min_y": 4918.697354794265, + "max_x": 2731.50134952505, + "max_y": 4994.01588659594 + }, + "value": null, + "layer": "0", + "id": "557F1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4826.776586694901, + "max_x": 2777.576775278534, + "max_y": 4938.049030049985 + }, + "value": null, + "layer": "0", + "id": "557F21" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2731.692296514236, + "min_y": 4993.687171271913, + "max_x": 2745.728596572269, + "max_y": 5007.614265506497 + }, + "value": null, + "layer": "0", + "id": "557F22" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2733.83746388906, + "min_y": 5003.459416097155, + "max_x": 2744.5883248528366, + "max_y": 5005.251226257784 + }, + "value": "VP-9117", + "layer": "0", + "id": "557F23" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2733.83746388906, + "min_y": 4995.601030384307, + "max_x": 2744.5883248528366, + "max_y": 4997.392840544936 + }, + "value": "VP-9217", + "layer": "0", + "id": "557F25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2606.722395651768, + "min_y": 4841.601612088994, + "max_x": 2764.827707693378, + "max_y": 4904.877339921812 + }, + "value": null, + "layer": "0", + "id": "557F26" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2621.6423618899207, + "min_y": 4838.801908713011, + "max_x": 2627.2417686418876, + "max_y": 4844.401315464978 + }, + "value": null, + "layer": "0", + "id": "557F27" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.575170421205, + "min_y": 4839.751737110286, + "max_x": 2627.0546958227783, + "max_y": 4843.6534818119735 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2620.240435290185, + "min_y": 4835.478387313782, + "max_x": 2629.916210157584, + "max_y": 4837.270197474411 + }, + "value": "E-9219", + "layer": "0", + "id": "557F2A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2621.6423618899207, + "min_y": 4872.031129880335, + "max_x": 2627.2417686418876, + "max_y": 4877.630536632303 + }, + "value": null, + "layer": "0", + "id": "557F2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.575170421205, + "min_y": 4872.980958277612, + "max_x": 2627.0546958227783, + "max_y": 4876.882702979298 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2620.240435290185, + "min_y": 4868.707608481106, + "max_x": 2629.916210157584, + "max_y": 4870.499418641735 + }, + "value": "E-9119", + "layer": "0", + "id": "557F2E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2601.1229888998005, + "min_y": 4861.022175525889, + "max_x": 2606.7223956517673, + "max_y": 4866.621582277857 + }, + "value": null, + "layer": "0", + "id": "557F2F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2602.468809673109, + "min_y": 4861.972003923165, + "max_x": 2606.0524299943677, + "max_y": 4865.873748624851 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F30" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2599.721062300063, + "min_y": 4858.17136281692, + "max_x": 2609.396837167462, + "max_y": 4859.963172977549 + }, + "value": "D-9113", + "layer": "0", + "id": "557F32" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2601.1229888998005, + "min_y": 4846.337431515785, + "max_x": 2606.7223956517673, + "max_y": 4851.936838267753 + }, + "value": null, + "layer": "0", + "id": "557F33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2602.46880967311, + "min_y": 4847.287259913063, + "max_x": 2606.052429994369, + "max_y": 4851.189004614748 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2599.456466961209, + "min_y": 4843.818353300747, + "max_x": 2609.132241828608, + "max_y": 4845.610163461376 + }, + "value": "D-9213", + "layer": "0", + "id": "557F36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2606.722395651768, + "min_y": 4863.071138907272, + "max_x": 2760.470263299432, + "max_y": 4874.830833256319 + }, + "value": null, + "layer": "0", + "id": "557F37" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2641.449813898062, + "min_y": 4861.394791048558, + "max_x": 2649.5129596208944, + "max_y": 4862.887966182416 + }, + "value": "125Ax150A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F3F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2641.806338050238, + "min_y": 4849.879570031027, + "max_x": 2648.0776736124412, + "max_y": 4851.372745164885 + }, + "value": "65Ax80A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F40" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2758.977088165574, + "min_y": 4929.675452076382, + "max_x": 2760.470263299432, + "max_y": 4931.168627210239 + }, + "value": null, + "layer": "0", + "id": "557F41" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2763.33453255952, + "min_y": 4929.675452076382, + "max_x": 2764.827707693378, + "max_y": 4931.168627210239 + }, + "value": null, + "layer": "0", + "id": "557F42" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2566.5342107051256, + "min_y": 4960.2941737050805, + "max_x": 2572.1336174570924, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557F43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2567.880031478433, + "min_y": 4961.244002102358, + "max_x": 2571.463651799692, + "max_y": 4965.145746804044 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F44" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2557.8176301722915, + "min_y": 4960.2941737050805, + "max_x": 2563.4170369242584, + "max_y": 4965.893580457048 + }, + "value": null, + "layer": "0", + "id": "557F46" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2559.163450945599, + "min_y": 4961.244002102358, + "max_x": 2562.747071266858, + "max_y": 4965.145746804044 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F47" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2585.64513903859, + "min_y": 4965.893580457048, + "max_x": 2585.64513903859, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557F49" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2656.871213305632, + "min_y": 4993.269299029011, + "max_x": 2670.5980191116, + "max_y": 4994.76247416287 + }, + "value": null, + "layer": "0", + "id": "557F4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4931.831161614628, + "max_x": 2749.076926058346, + "max_y": 4933.3243367484865 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "557F4F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2543.987203758246, + "min_y": 4967.287483399025, + "max_x": 2567.5170197420503, + "max_y": 4969.74112983133 + }, + "value": "VG-9421-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2543.910487274691, + "min_y": 4961.244002102358, + "max_x": 2547.49410759595, + "max_y": 4965.145746804044 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2685.773351357982, + "min_y": 4970.152858605358, + "max_x": 2701.899642803647, + "max_y": 4971.646033739216 + }, + "value": "VG-9400-150A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2667.110757127287, + "min_y": 4988.863679800473, + "max_x": 2683.32761580671, + "max_y": 4991.301752155719 + }, + "value": null, + "layer": "0", + "id": "557F55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2662.68292911329, + "min_y": 4984.435851786477, + "max_x": 2683.32761580671, + "max_y": 4991.301752155719 + }, + "value": null, + "layer": "0", + "id": "557F56" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2690.224189189305, + "min_y": 4985.182439353405, + "max_x": 2705.454575554655, + "max_y": 4986.675614487263 + }, + "value": "VG-9411-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F57" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2690.170861505953, + "min_y": 4989.765825132838, + "max_x": 2705.401247871303, + "max_y": 4991.259000266696 + }, + "value": "VG-9412-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F58" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2569.333914081109, + "min_y": 4965.755830668441, + "max_x": 2569.333914081109, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557F59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2545.364369877367, + "min_y": 4965.893580457048, + "max_x": 2545.364369877367, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557F5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2560.617333548275, + "min_y": 4965.893580457048, + "max_x": 2560.617333548275, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557F5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2606.45737304454, + "min_y": 4961.244002102358, + "max_x": 2610.040993365799, + "max_y": 4965.145746804044 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F60" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2607.911255647211, + "min_y": 4965.755830668441, + "max_x": 2607.911255647215, + "max_y": 4996.116097598383 + }, + "value": null, + "layer": "0", + "id": "557F62" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2592.303717525881, + "min_y": 4961.244002102358, + "max_x": 2595.88733784714, + "max_y": 4965.145746804044 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "557F65" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2593.757600128553, + "min_y": 4965.893580457048, + "max_x": 2593.757600128554, + "max_y": 4996.116097598386 + }, + "value": null, + "layer": "0", + "id": "557F68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2614.250629752175, + "min_y": 4849.668478132961, + "max_x": 2629.481016117525, + "max_y": 4851.1616532668195 + }, + "value": "VG-9442-65A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F69" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2614.134887276752, + "min_y": 4864.526725360675, + "max_x": 2630.2611787224173, + "max_y": 4866.019900494533 + }, + "value": "VG-9441-125A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "557F6A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2670.5980191116, + "min_y": 4994.01588659594, + "max_x": 2674.330956946244, + "max_y": 4997.748824430585 + }, + "value": null, + "layer": "0", + "id": "557F6B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2674.330956946244, + "min_y": 4994.01588659594, + "max_x": 2686.590668428354, + "max_y": 4994.01588659594 + }, + "value": null, + "layer": "0", + "id": "557F6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2666.364169560358, + "min_y": 4991.301752155719, + "max_x": 2667.857344694216, + "max_y": 4992.522711462083 + }, + "value": null, + "layer": "0", + "id": "557F6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.936341546361, + "min_y": 4991.301752155719, + "max_x": 2663.429516680219, + "max_y": 4992.522711462083 + }, + "value": null, + "layer": "0", + "id": "557F70" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2659.6965788455745, + "min_y": 4991.029536328225, + "max_x": 2667.110757127287, + "max_y": 4994.015886595941 + }, + "value": null, + "layer": "0", + "id": "557F73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.087215765377, + "min_y": 4988.863679800473, + "max_x": 2710.973711996816, + "max_y": 5004.271953915027 + }, + "value": null, + "layer": "0", + "id": "557F77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2689.087215765377, + "min_y": 4984.435851786477, + "max_x": 2714.672402463365, + "max_y": 4996.7760398679 + }, + "value": null, + "layer": "0", + "id": "557F78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2730.473971202016, + "min_y": 4889.783001136644, + "max_x": 2731.8533496671125, + "max_y": 4890.932483190891 + }, + "value": "MH", + "layer": "0", + "id": "557F7D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2728.9469449600565, + "min_y": 4887.523733314787, + "max_x": 2734.0557540900436, + "max_y": 4892.632542444773 + }, + "value": null, + "layer": "0", + "id": "557F7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2729.923886564956, + "min_y": 4885.68352823064, + "max_x": 2732.6826434951486, + "max_y": 4886.833010284887 + }, + "value": "500A", + "layer": "0", + "id": "557F80" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2754.03110029567, + "min_y": 4883.252623309948, + "max_x": 2756.7898572258628, + "max_y": 4886.665158366987 + }, + "value": "TG", + "layer": "0", + "id": "557F82" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2752.9484469310905, + "min_y": 4882.386536251662, + "max_x": 2758.0572560610776, + "max_y": 4887.495345381648 + }, + "value": null, + "layer": "0", + "id": "557F83" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2753.380547831259, + "min_y": 4897.318617480132, + "max_x": 2756.1393047614515, + "max_y": 4900.7311525371715 + }, + "value": "PG", + "layer": "0", + "id": "557F85" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2751.4697452526157, + "min_y": 4894.103202455422, + "max_x": 2757.4067035966655, + "max_y": 4901.561339551843 + }, + "value": null, + "layer": "0", + "id": "557F86" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2752.309788956248, + "min_y": 4892.330058678496, + "max_x": 2754.852299031672, + "max_y": 4896.452530421857 + }, + "value": null, + "layer": "0", + "id": "557F87" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4898.675315329366, + "max_x": 2741.600741392713, + "max_y": 4900.207958068362 + }, + "value": "\\pi12.536; \\fArial|b1|i1|c238|p34; .3333x;T-3210", + "layer": "0", + "id": "557F8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2714.440125490292, + "min_y": 4879.486566407045, + "max_x": 2718.217980925043, + "max_y": 4883.153079472208 + }, + "value": null, + "layer": "0", + "id": "557F8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2711.945974321462, + "min_y": 4879.486566407045, + "max_x": 2713.527090706041, + "max_y": 4881.21054078501 + }, + "value": null, + "layer": "0", + "id": "557F8F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2713.4515172407696, + "min_y": 4879.81646273863, + "max_x": 2714.5156989555585, + "max_y": 4880.88064445342 + }, + "value": null, + "layer": "0", + "id": "557F97" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2711.298864725408, + "min_y": 4882.013000158894, + "max_x": 2713.505870269562, + "max_y": 4883.239114350091 + }, + "value": "50A", + "layer": "0", + "id": "557F99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2708.22917302897, + "min_y": 4893.248827800218, + "max_x": 2715.208063393593, + "max_y": 4894.998369185232 + }, + "value": null, + "layer": "0", + "id": "557F9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2705.216062583645, + "min_y": 4893.274394807267, + "max_x": 2711.474573985964, + "max_y": 4894.998369185232 + }, + "value": null, + "layer": "0", + "id": "557F9B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2706.880347156059, + "min_y": 4892.723322439615, + "max_x": 2708.22917302897, + "max_y": 4895.620523944755 + }, + "value": null, + "layer": "0", + "id": "557F9C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2707.2460325938428, + "min_y": 4890.61902165509, + "max_x": 2714.351835667835, + "max_y": 4897.724824729084 + }, + "value": null, + "layer": "0", + "id": "557F9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2710.653654330338, + "min_y": 4895.655718386332, + "max_x": 2712.8606598744923, + "max_y": 4896.881832577529 + }, + "value": "50A", + "layer": "0", + "id": "557F9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2700.859283781083, + "min_y": 4892.346352574951, + "max_x": 2703.8019578399553, + "max_y": 4896.011088579185 + }, + "value": "LT", + "layer": "0", + "id": "557F9F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2694.170018365002, + "min_y": 4891.4472249895225, + "max_x": 2705.2160625836455, + "max_y": 4897.043872802846 + }, + "value": null, + "layer": "0", + "id": "557FA0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2711.3990005206915, + "min_y": 4893.60429113885, + "max_x": 2712.4631822354804, + "max_y": 4894.66847285364 + }, + "value": null, + "layer": "0", + "id": "557FAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2701.330950418782, + "min_y": 4885.345356447499, + "max_x": 2715.208063393593, + "max_y": 4887.069330825465 + }, + "value": null, + "layer": "0", + "id": "557FAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2696.270932875685, + "min_y": 4885.073571658123, + "max_x": 2700.347592779901, + "max_y": 4887.341115614841 + }, + "value": null, + "layer": "0", + "id": "557FAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2700.996896008955, + "min_y": 4885.345356447499, + "max_x": 2707.54471782913, + "max_y": 4887.069330825465 + }, + "value": null, + "layer": "0", + "id": "557FB3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2698.4271713748567, + "min_y": 4885.675252779083, + "max_x": 2699.4913530896456, + "max_y": 4886.739434493873 + }, + "value": null, + "layer": "0", + "id": "557FB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4822.020143828796, + "max_x": 2952.014917269162, + "max_y": 4870.263472228899 + }, + "value": null, + "layer": "TITLE", + "id": "557FBC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4860.471221364478, + "max_x": 2952.014917269162, + "max_y": 4860.471221364478 + }, + "value": null, + "layer": "TITLE", + "id": "557FBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4839.101606532199, + "max_x": 2952.014917269162, + "max_y": 4839.101606532199 + }, + "value": null, + "layer": "TITLE", + "id": "557FBE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4822.020143828796, + "max_x": 2952.014917269162, + "max_y": 4828.416799116069 + }, + "value": null, + "layer": "TITLE", + "id": "557FC2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4825.215237571885, + "max_x": 2911.151349923432, + "max_y": 4825.215237571885 + }, + "value": null, + "layer": "TITLE", + "id": "557FC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 4823.056989114691, + "max_x": 2905.0680948249696, + "max_y": 4827.641461352758 + }, + "value": "NONE", + "layer": "1", + "id": "557FC5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 4823.082992580252, + "max_x": 2895.3187816415284, + "max_y": 4827.242615580665 + }, + "value": "JOB NO.", + "layer": "1", + "id": "557FC8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4836.870847815003, + "max_x": 2894.9490101488555, + "max_y": 4838.087829269858 + }, + "value": "TITLE :", + "layer": "1", + "id": "557FCF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4858.240462647284, + "max_x": 2894.9490101488555, + "max_y": 4859.45744410214 + }, + "value": "ONWER :", + "layer": "1", + "id": "557FD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.292180654626, + "min_y": 4868.232065259608, + "max_x": 2898.9865335658824, + "max_y": 4872.12539667475 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "557FD1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 4823.417188866268, + "max_x": 2950.962815110278, + "max_y": 4823.417188866268 + }, + "value": null, + "layer": "TITLE", + "id": "557FD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4870.263472228899, + "max_x": 2952.014917269162, + "max_y": 4893.629282149932 + }, + "value": null, + "layer": "TITLE", + "id": "557FD7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2947.853089126672, + "min_y": 4824.226066448598, + "max_x": 2949.0172933245562, + "max_y": 4826.166406778405 + }, + "value": "0", + "layer": "0", + "id": "557FD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.349862407318, + "min_y": 4864.069075035082, + "max_x": 2915.189031860072, + "max_y": 4866.682131519334 + }, + "value": "PLANT", + "layer": "SH1", + "id": "557FDB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.693859847959, + "min_y": 4853.793294216515, + "max_x": 2953.161042673931, + "max_y": 4856.406350700767 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "557FDC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 4855.205995744256, + "max_x": 2903.196411032603, + "max_y": 4856.593222812169 + }, + "value": null, + "layer": "0-BAS", + "id": "557FE5" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2902.650389686795, + "min_y": 4852.719564697765, + "max_x": 2909.5756424025612, + "max_y": 4853.829346352091 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "557FF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4847.555655231141, + "max_x": 2898.59995451342, + "max_y": 4848.772636685996 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "557FF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2917.289787717411, + "min_y": 4842.65420794613, + "max_x": 2928.15569356433, + "max_y": 4845.241328385872 + }, + "value": "주식회사 한울", + "layer": "SH1", + "id": "557FF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 4846.163094183305, + "max_x": 2905.357820025422, + "max_y": 4847.579189363266 + }, + "value": null, + "layer": "0", + "id": "557FF9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 4846.163094183305, + "max_x": 2902.437123716778, + "max_y": 4847.048153670775 + }, + "value": null, + "layer": "0", + "id": "557FFD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2903.2779302298704, + "min_y": 4843.446476852757, + "max_x": 2907.3718295408057, + "max_y": 4844.714044297937 + }, + "value": null, + "layer": "0", + "id": "558002" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2904.065292568864, + "min_y": 4843.498123533494, + "max_x": 2906.584467201812, + "max_y": 4844.662397617205 + }, + "value": null, + "layer": "0", + "id": "558005" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517512, + "min_y": 4873.215127497889, + "max_x": 2952.014917269167, + "max_y": 4873.215127497889 + }, + "value": null, + "layer": "0", + "id": "55800B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4873.215127497932, + "max_x": 2892.298318354719, + "max_y": 4880.019845714869 + }, + "value": null, + "layer": "0", + "id": "55800C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4880.019845714869, + "max_x": 2892.298318354719, + "max_y": 4886.82456393185 + }, + "value": null, + "layer": "0", + "id": "55800E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2937.211313107093, + "min_y": 4871.028495549415, + "max_x": 2939.843875807896, + "max_y": 4872.12539667475 + }, + "value": "APPD", + "layer": "0", + "id": "558013" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2931.864799599653, + "min_y": 4871.028495549415, + "max_x": 2934.497362300456, + "max_y": 4872.12539667475 + }, + "value": "CHKD", + "layer": "0", + "id": "558015" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2926.14719103735, + "min_y": 4871.028495549415, + "max_x": 2928.779753738153, + "max_y": 4872.12539667475 + }, + "value": "DRWN", + "layer": "0", + "id": "558017" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2910.003860672814, + "min_y": 4871.028495549415, + "max_x": 2917.243408100023, + "max_y": 4872.12539667475 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "558018" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2944.262435177169, + "min_y": 4870.97625546318, + "max_x": 2948.211279228374, + "max_y": 4872.073156588514 + }, + "value": "REMARK", + "layer": "0", + "id": "55801A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2888.895959246291, + "min_y": 4886.82456393185, + "max_x": 2892.298318354771, + "max_y": 4893.62928214935 + }, + "value": null, + "layer": "0", + "id": "55801B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517503, + "min_y": 4876.617486606401, + "max_x": 2952.014917269167, + "max_y": 4876.617486606401 + }, + "value": null, + "layer": "0", + "id": "55801E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517495, + "min_y": 4880.019845714911, + "max_x": 2952.014917269167, + "max_y": 4880.019845714911 + }, + "value": null, + "layer": "0", + "id": "55801F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517485, + "min_y": 4883.422204823422, + "max_x": 2952.014917269167, + "max_y": 4883.422204823422 + }, + "value": null, + "layer": "0", + "id": "558020" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517477, + "min_y": 4886.824563931933, + "max_x": 2952.014917269167, + "max_y": 4886.824563931933 + }, + "value": null, + "layer": "0", + "id": "558021" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517468, + "min_y": 4890.226923040444, + "max_x": 2952.014917269167, + "max_y": 4890.226923040444 + }, + "value": null, + "layer": "0", + "id": "558022" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4893.629282148954, + "max_x": 2952.014917269167, + "max_y": 4893.629282148954 + }, + "value": null, + "layer": "0", + "id": "558023" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2653.756024406084, + "min_y": 5068.359884358291, + "max_x": 2655.078833925873, + "max_y": 5069.870658484847 + }, + "value": null, + "layer": "VV-BALL", + "id": "558025" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2655.0099862553666, + "min_y": 5068.6608257345, + "max_x": 2655.9188776295055, + "max_y": 5069.569717108639 + }, + "value": null, + "layer": "VV-BALL", + "id": "558028" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2635.401146723651, + "min_y": 4982.612410451176, + "max_x": 2638.320734476776, + "max_y": 4984.123184577732 + }, + "value": null, + "layer": "VV-BALL", + "id": "55802D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2634.903919404078, + "min_y": 4982.612410451176, + "max_x": 2635.401146723651, + "max_y": 4984.123184577732 + }, + "value": null, + "layer": "VV-BALL", + "id": "55802E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2636.1578812533608, + "min_y": 4982.9133518273875, + "max_x": 2637.0667726274996, + "max_y": 4983.822243201527 + }, + "value": null, + "layer": "VV-BALL", + "id": "558031" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2652.3645424846854, + "min_y": 4974.864648105453, + "max_x": 2653.2734338588243, + "max_y": 4975.773539479593 + }, + "value": null, + "layer": "VV-BALL", + "id": "55803A" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2550.280114899739, + "min_y": 4907.322901372832, + "max_x": 2570.811272990285, + "max_y": 4909.1229013728325 + }, + "value": "\\pi5.6133; .9; DP-3210 \\pi0.24444;DIAPHRAGM PUMP", + "layer": "0", + "id": "55803F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2550.145289935992, + "min_y": 4899.514522061343, + "max_x": 2573.9122471564724, + "max_y": 4901.314522061343 + }, + "value": ".9; CAPA : 100 L/min SIZE : 100A/100A MATERIAL : STS304 PRESSURE : 0.3MPa SPM : 135", + "layer": "0", + "id": "558043" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2750.215783403333, + "min_y": 4893.802261079212, + "max_x": 2751.538592923122, + "max_y": 4895.313035205769 + }, + "value": null, + "layer": "VV-BALL", + "id": "558048" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4887.799506023935, + "max_x": 2755.607686094949, + "max_y": 4891.832831358919 + }, + "value": null, + "layer": "VV-BALL", + "id": "558050" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4891.832831358919, + "max_x": 2755.607686094949, + "max_y": 4892.330058678496 + }, + "value": null, + "layer": "VV-BALL", + "id": "558051" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2754.3978533446048, + "min_y": 4890.167205455073, + "max_x": 2755.3067447187436, + "max_y": 4891.0760968292125 + }, + "value": null, + "layer": "VV-BALL", + "id": "558054" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4882.956598128154, + "max_x": 2709.12583421371, + "max_y": 4887.069330825465 + }, + "value": null, + "layer": "0", + "id": "55805F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2709.0502607484386, + "min_y": 4885.675252779083, + "max_x": 2710.1144424632275, + "max_y": 4886.739434493873 + }, + "value": null, + "layer": "0", + "id": "558067" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4881.11175018838, + "max_x": 2707.728268256091, + "max_y": 4883.888411283681 + }, + "value": null, + "layer": "0", + "id": "558068" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2706.3649261031246, + "min_y": 4880.462446959327, + "max_x": 2707.4291078179135, + "max_y": 4884.537714512733 + }, + "value": null, + "layer": "0", + "id": "55806E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2706.333836030804, + "min_y": 4879.348709377467, + "max_x": 2707.460197890235, + "max_y": 4880.462446959327 + }, + "value": null, + "layer": "0", + "id": "558071" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2692.8352608241935, + "min_y": 4885.777160587333, + "max_x": 2696.2709334859032, + "max_y": 4886.636078752765 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "558077" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2691.976342658772, + "min_y": 4885.777160587338, + "max_x": 2692.8352608241944, + "max_y": 4886.63607875276 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55807B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2690.526241795952, + "min_y": 4885.643438740334, + "max_x": 2691.976342658771, + "max_y": 4886.769800599765 + }, + "value": null, + "layer": "0", + "id": "55807F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2691.490711101274, + "min_y": 4887.54666706643, + "max_x": 2692.834568721746, + "max_y": 4888.666548416823 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "558083" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2674.424014639039, + "min_y": 4885.160408230269, + "max_x": 2679.079276751029, + "max_y": 4887.809315400083 + }, + "value": null, + "layer": "0", + "id": "558084" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2672.753732243177, + "min_y": 4881.573001330948, + "max_x": 2680.195931569389, + "max_y": 4887.809315400083 + }, + "value": null, + "layer": "0", + "id": "558085" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2672.584050198788, + "min_y": 4881.416952989886, + "max_x": 2674.280274155336, + "max_y": 4881.573001330948 + }, + "value": null, + "layer": "0", + "id": "558089" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2679.223017234724, + "min_y": 4881.416952989886, + "max_x": 2680.919241191294, + "max_y": 4887.048042744892 + }, + "value": null, + "layer": "0", + "id": "55808D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2672.133027685598, + "min_y": 4886.484861815176, + "max_x": 2674.424014639039, + "max_y": 4887.048042744892 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "558098" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2679.079276751029, + "min_y": 4886.484861815176, + "max_x": 2681.37026370447, + "max_y": 4887.048042744892 + }, + "value": null, + "layer": "PROCESS LINE", + "id": "558099" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2661.396977067365, + "min_y": 4884.085750173168, + "max_x": 2671.02820586212, + "max_y": 4885.625587029959 + }, + "value": "\\pi-0.8037; \\fArial|b1|i1|c238|p34; .3333x; DP-3210", + "layer": "0", + "id": "55809A" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2668.6973550238863, + "min_y": 4886.055402732459, + "max_x": 2672.1330276855974, + "max_y": 4886.914320897892 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "55809E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2667.838436858465, + "min_y": 4886.055402732465, + "max_x": 2668.697355023887, + "max_y": 4886.914320897888 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5580A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2666.388335995645, + "min_y": 4885.921680885461, + "max_x": 2667.838436858465, + "max_y": 4887.048042744892 + }, + "value": null, + "layer": "0", + "id": "5580A4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2681.369894987298, + "min_y": 4886.037610545274, + "max_x": 2684.8055676490085, + "max_y": 4886.896528710706 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5580AB" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2684.8055676490076, + "min_y": 4886.037610545279, + "max_x": 2685.66448581443, + "max_y": 4886.896528710701 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5580AF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2685.66448581443, + "min_y": 4885.903888698274, + "max_x": 2687.11458667725, + "max_y": 4887.030250557706 + }, + "value": null, + "layer": "0", + "id": "5580B1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2667.432766473475, + "min_y": 4887.846598110474, + "max_x": 2668.7766240939472, + "max_y": 4888.966479460867 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "5580BA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2673.684624744287, + "min_y": 4887.846598110474, + "max_x": 2675.028482364759, + "max_y": 4888.966479460867 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "5580BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2680.906022533035, + "min_y": 4887.646003727453, + "max_x": 2682.249880153507, + "max_y": 4888.765885077846 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "5580BC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2687.258177995357, + "min_y": 4887.712868521793, + "max_x": 2688.602035615829, + "max_y": 4888.8327498721865 + }, + "value": "CC", + "layer": "14-D-PIPELINE-LINE", + "id": "5580BD" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2694.170018365001, + "min_y": 4891.447224989526, + "max_x": 2699.766666178326, + "max_y": 4897.043872802846 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5580BF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2694.170018365007, + "min_y": 4894.245548896184, + "max_x": 2699.766666178325, + "max_y": 4894.245548896184 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5580C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2695.437041099954, + "min_y": 4892.496826970025, + "max_x": 2698.4585033809426, + "max_y": 4895.99553228789 + }, + "value": "LIA", + "layer": "INSTRUMENT", + "id": "5580C1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2690.309863356174, + "min_y": 4891.447224989526, + "max_x": 2693.9494777449527, + "max_y": 4892.343130069841 + }, + "value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "layer": "INSTRUMENT", + "id": "5580C3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2611.346676834421, + "min_y": 4980.568094138668, + "max_x": 2615.896194820394, + "max_y": 4981.477997735863 + }, + "value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "layer": "INSTRUMENT", + "id": "5580C7" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2703.978623147828, + "min_y": 4988.863679800473, + "max_x": 2705.939293721713, + "max_y": 4988.863679800473 + }, + "value": null, + "layer": "0", + "id": "5580CB" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2703.079314061027, + "min_y": 4984.435851786477, + "max_x": 2705.03998463491, + "max_y": 4984.435851786477 + }, + "value": null, + "layer": "0", + "id": "5580CC" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4946.349848463733, + "max_x": 2652.818988171755, + "max_y": 4948.310519037617 + }, + "value": null, + "layer": "0", + "id": "5580CD" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2764.827707693378, + "min_y": 4911.27879550685, + "max_x": 2764.827707693378, + "max_y": 4913.239466080735 + }, + "value": null, + "layer": "0", + "id": "5580CE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2760.470263299432, + "min_y": 4911.27879550685, + "max_x": 2760.470263299432, + "max_y": 4913.239466080735 + }, + "value": null, + "layer": "0", + "id": "5580CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2710.973711996816, + "min_y": 5004.271953915027, + "max_x": 2731.692296514236, + "max_y": 5004.271953915027 + }, + "value": null, + "layer": "0", + "id": "5580D1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2714.672402463365, + "min_y": 4996.7760398679, + "max_x": 2731.692296514236, + "max_y": 4996.7760398679 + }, + "value": null, + "layer": "0", + "id": "5580D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2627.241768641888, + "min_y": 4874.830833256319, + "max_x": 2642.209224020394, + "max_y": 4874.830833256319 + }, + "value": null, + "layer": "0", + "id": "5580D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2740.807267403805, + "min_y": 4885.747369812982, + "max_x": 2833.175918261698, + "max_y": 4949.854093363596 + }, + "value": null, + "layer": "0", + "id": "5580D7" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2897.9533069730523, + "min_y": 4945.848118813163, + "max_x": 2903.552713725019, + "max_y": 4951.4475255651305 + }, + "value": null, + "layer": "0", + "id": "5580D8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2898.948380907418, + "min_y": 4946.797947210439, + "max_x": 2903.4279063089916, + "max_y": 4950.699691912127 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "5580D9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2907.0520855207637, + "min_y": 4945.848118813163, + "max_x": 2912.6514922727306, + "max_y": 4951.4475255651305 + }, + "value": null, + "layer": "0", + "id": "5580DB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2908.047159455128, + "min_y": 4946.797947210439, + "max_x": 2912.5266848567016, + "max_y": 4950.699691912127 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "5580DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2825.649142601242, + "min_y": 5091.034350235887, + "max_x": 2828.674919997869, + "max_y": 5100.166950331245 + }, + "value": null, + "layer": "0", + "id": "5580DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2817.829572613098, + "min_y": 5000.577392932267, + "max_x": 2834.026885479688, + "max_y": 5070.837806568073 + }, + "value": null, + "layer": "0", + "id": "5580DF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2830.904410053877, + "min_y": 4997.560747306943, + "max_x": 2836.4921573976, + "max_y": 5070.837806568073 + }, + "value": null, + "layer": "0", + "id": "5580E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2820.95694348483, + "min_y": 5070.836817139161, + "max_x": 2830.904410053877, + "max_y": 5088.620447287098 + }, + "value": null, + "layer": "0", + "id": "5580E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2830.904410053877, + "min_y": 5070.837806568073, + "max_x": 2833.366366929098, + "max_y": 5088.620447287098 + }, + "value": null, + "layer": "0", + "id": "5580E9" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2826.499386736137, + "min_y": 5086.065885343071, + "max_x": 2827.823923677119, + "max_y": 5087.21296798221 + }, + "value": null, + "layer": "0", + "id": "5580EF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2826.499386736137, + "min_y": 5064.215009347066, + "max_x": 2827.823923677119, + "max_y": 5065.362091986206 + }, + "value": null, + "layer": "0", + "id": "5580F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2825.256156561059, + "min_y": 5004.818794958563, + "max_x": 2828.424416473077, + "max_y": 5007.459011551911 + }, + "value": "SG", + "layer": "0", + "id": "5580F3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2822.888489105949, + "min_y": 5001.765727115567, + "max_x": 2831.4132880320976, + "max_y": 5010.290526041715 + }, + "value": null, + "layer": "0", + "id": "5580F4" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2827.1616552069627, + "min_y": 5098.627624044612, + "max_x": 2830.240307780229, + "max_y": 5101.706276617878 + }, + "value": null, + "layer": "0", + "id": "5580F6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2817.591407945851, + "min_y": 5064.615504419277, + "max_x": 2817.84027046816, + "max_y": 5066.108679553135 + }, + "value": null, + "layer": "0", + "id": "5580F8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2826.404301001832, + "min_y": 4993.176026242752, + "max_x": 2827.89747613569, + "max_y": 4995.860438161344 + }, + "value": null, + "layer": "0", + "id": "5580FA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2822.226731207669, + "min_y": 4992.514787047698, + "max_x": 2824.9144464486135, + "max_y": 4994.007962181556 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "5580FD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2820.70808096252, + "min_y": 5086.466380415937, + "max_x": 2820.95694348483, + "max_y": 5087.959555549796 + }, + "value": null, + "layer": "0", + "id": "5580FF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4948.942666619525, + "max_x": 2833.184717758046, + "max_y": 4997.560747286457 + }, + "value": null, + "layer": "0", + "id": "558102" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2834.338090605179, + "min_y": 4992.514787047698, + "max_x": 2837.025805846123, + "max_y": 4994.007962181556 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "558103" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2836.482572849133, + "min_y": 5015.357926217764, + "max_x": 2860.27240850367, + "max_y": 5019.158144551295 + }, + "value": null, + "layer": "0", + "id": "558105" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2806.084606528311, + "min_y": 5000.306613473783, + "max_x": 2814.514261927093, + "max_y": 5002.624374677886 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "558108" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2811.7599523361628, + "min_y": 4998.623172846156, + "max_x": 2817.444594795357, + "max_y": 5004.307815305349 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "55810E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2794.8857930243826, + "min_y": 4998.665790699964, + "max_x": 2806.0846065283113, + "max_y": 5004.265197451932 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "558113" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2801.480273710707, + "min_y": 4999.61561909724, + "max_x": 2805.9597991122805, + "max_y": 5003.517363798927 + }, + "value": "LT", + "layer": "1-SYMBOL", + "id": "558114" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2795.880866958748, + "min_y": 4999.61561909724, + "max_x": 2800.3603923603214, + "max_y": 5003.517363798927 + }, + "value": "LI", + "layer": "1-SYMBOL", + "id": "558117" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 4998.665790699964, + "max_x": 2800.485199776344, + "max_y": 5004.265197451932 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "558119" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 4998.665790699964, + "max_x": 2800.485199776344, + "max_y": 4998.665790699964 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "55811A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 5004.265197451932, + "max_x": 2800.485199776344, + "max_y": 5004.265197451932 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "55811D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2817.580710090788, + "min_y": 5011.808775706338, + "max_x": 2817.829572613098, + "max_y": 5013.301950840197 + }, + "value": null, + "layer": "0", + "id": "55811F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2818.321930442207, + "min_y": 4994.486907058026, + "max_x": 2821.618962948708, + "max_y": 4997.783939564525 + }, + "value": null, + "layer": "0", + "id": "558121" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2813.5425378237546, + "min_y": 4989.707514439574, + "max_x": 2819.1419445757215, + "max_y": 4995.306921191542 + }, + "value": null, + "layer": "1-SYMBOL", + "id": "558124" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2814.537611758121, + "min_y": 4990.657342836851, + "max_x": 2819.0171371596944, + "max_y": 4994.235750226948 + }, + "value": "TG", + "layer": "1-SYMBOL", + "id": "558125" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2814.753279590519, + "min_y": 5004.202295581361, + "max_x": 2817.4409948314633, + "max_y": 5005.695470715219 + }, + "value": "50A", + "layer": "14-D-PIPELINE-LINE", + "id": "558128" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2833.1377221406, + "min_y": 5089.949769488475, + "max_x": 2836.721342461859, + "max_y": 5091.442944622333 + }, + "value": "100A", + "layer": "14-D-PIPELINE-LINE", + "id": "55812A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2835.460372482013, + "min_y": 5086.457580919589, + "max_x": 2840.443596881977, + "max_y": 5087.968355046145 + }, + "value": null, + "layer": "0", + "id": "55812B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2841.785777318971, + "min_y": 5086.489072047587, + "max_x": 2850.7448281221186, + "max_y": 5087.982247181445 + }, + "value": "FOR SAMPLE", + "layer": "14-D-PIPELINE-LINE", + "id": "55812C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4949.854093363596, + "max_x": 2833.184717758046, + "max_y": 4993.031192337258 + }, + "value": null, + "layer": "0", + "id": "55812D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2848.688958920524, + "min_y": 4985.393158755606, + "max_x": 2935.840664649134, + "max_y": 4994.914328269939 + }, + "value": null, + "layer": "0", + "id": "55812F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2864.356737762118, + "min_y": 4988.376774574563, + "max_x": 2881.3789342880978, + "max_y": 4989.869949708421 + }, + "value": "VG-10401-150A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558131" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2838.327804689172, + "min_y": 5042.288878675498, + "max_x": 2853.110238514365, + "max_y": 5044.528641376285 + }, + "value": "SC-10128", + "layer": "0", + "id": "558132" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2831.404021307676, + "min_y": 4968.273892395795, + "max_x": 2847.530312753341, + "max_y": 4969.767067529653 + }, + "value": "WW-10193-25A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558133" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2931.204631755422, + "min_y": 5000.122172730327, + "max_x": 2945.240931813455, + "max_y": 5006.190881252063 + }, + "value": null, + "layer": "0", + "id": "558134" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2933.349799130244, + "min_y": 5002.03603184272, + "max_x": 2945.175746190398, + "max_y": 5003.827842003349 + }, + "value": "VP-10117", + "layer": "0", + "id": "558135" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2931.204631755422, + "min_y": 5010.077242665618, + "max_x": 2945.240931813455, + "max_y": 5016.145951187354 + }, + "value": null, + "layer": "0", + "id": "558136" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2933.349799130244, + "min_y": 5011.991101778011, + "max_x": 2945.175746190398, + "max_y": 5013.782911938641 + }, + "value": "VP-10217", + "layer": "0", + "id": "558137" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2848.1040384646594, + "min_y": 4885.903803351469, + "max_x": 2853.7034452166263, + "max_y": 4891.503210103437 + }, + "value": null, + "layer": "0", + "id": "558138" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2848.686100157002, + "min_y": 4886.853631748746, + "max_x": 2854.0615306388904, + "max_y": 4890.755376450432 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "558139" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2846.702111864923, + "min_y": 4882.580281952241, + "max_x": 2857.4529728287, + "max_y": 4884.372092112871 + }, + "value": "E-10219", + "layer": "0", + "id": "55813B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2848.1040384646594, + "min_y": 4914.962694379973, + "max_x": 2853.7034452166263, + "max_y": 4920.562101131941 + }, + "value": null, + "layer": "0", + "id": "55813C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2848.686100157002, + "min_y": 4915.912522777251, + "max_x": 2854.0615306388904, + "max_y": 4919.814267478935 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "55813D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2846.702111864923, + "min_y": 4911.639172980745, + "max_x": 2857.4529728287, + "max_y": 4913.430983141374 + }, + "value": "E-10119", + "layer": "0", + "id": "55813F" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2871.2776426303158, + "min_y": 4905.597284651305, + "max_x": 2876.8770493822826, + "max_y": 4911.196691403273 + }, + "value": null, + "layer": "0", + "id": "558140" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2872.272716564681, + "min_y": 4906.547113048581, + "max_x": 2876.7522419662546, + "max_y": 4910.448857750268 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "558141" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2869.875716030578, + "min_y": 4902.273763252076, + "max_x": 2880.6265769943548, + "max_y": 4904.065573412705 + }, + "value": "D-10113", + "layer": "0", + "id": "558143" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2871.1487156776525, + "min_y": 4893.431655858054, + "max_x": 2876.7481224296193, + "max_y": 4899.031062610022 + }, + "value": null, + "layer": "0", + "id": "558144" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2872.14378961202, + "min_y": 4894.381484255331, + "max_x": 2876.6233150135936, + "max_y": 4898.283228957017 + }, + "value": "PSV", + "layer": "14-D-PIPELINE-LINE", + "id": "558145" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2869.746789077917, + "min_y": 4890.108134458825, + "max_x": 2880.4976500416938, + "max_y": 4891.899944619454 + }, + "value": "D-10213", + "layer": "0", + "id": "558147" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2775.062729388087, + "min_y": 4907.62888927381, + "max_x": 2871.277642630316, + "max_y": 4930.42203964331 + }, + "value": null, + "layer": "0", + "id": "558148" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2770.705284994141, + "min_y": 4888.703506727453, + "max_x": 2871.148715677654, + "max_y": 4930.42203964331 + }, + "value": null, + "layer": "0", + "id": "558149" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2915.8179819264847, + "min_y": 4945.848118813163, + "max_x": 2921.4173886784515, + "max_y": 4951.4475255651305 + }, + "value": null, + "layer": "0", + "id": "55814A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2916.813055860849, + "min_y": 4946.797947210439, + "max_x": 2921.2925812624226, + "max_y": 4950.699691912128 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "55814B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2861.765583637528, + "min_y": 5010.966482986096, + "max_x": 2931.204631755422, + "max_y": 5015.697422544145 + }, + "value": null, + "layer": "0", + "id": "558151" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2857.337755623531, + "min_y": 5001.19985240688, + "max_x": 2931.204631755422, + "max_y": 5016.887086781888 + }, + "value": null, + "layer": "0", + "id": "558152" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.608908089362, + "min_y": 5003.784485425791, + "max_x": 2923.7351995350273, + "max_y": 5005.277660559649 + }, + "value": "VG-10411-65A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558153" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2907.427604573025, + "min_y": 5013.626815051662, + "max_x": 2923.55389601869, + "max_y": 5015.11999018552 + }, + "value": "VG-10412-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558154" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2933.0409612731505, + "min_y": 4945.848118813163, + "max_x": 2938.6403680251174, + "max_y": 4951.4475255651305 + }, + "value": null, + "layer": "0", + "id": "558155" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2934.036035207517, + "min_y": 4946.797947210439, + "max_x": 2938.5155606090907, + "max_y": 4950.699691912128 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "558156" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2924.4729176182095, + "min_y": 4945.848118813163, + "max_x": 2930.0723243701764, + "max_y": 4951.4475255651305 + }, + "value": null, + "layer": "0", + "id": "558158" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2925.467991552576, + "min_y": 4946.797947210439, + "max_x": 2929.9475169541497, + "max_y": 4950.699691912128 + }, + "value": "BV", + "layer": "14-D-PIPELINE-LINE", + "id": "558159" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2861.018996070599, + "min_y": 5015.697422544145, + "max_x": 2862.512171204457, + "max_y": 5016.918381850508 + }, + "value": null, + "layer": "0", + "id": "55815B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2856.591168056602, + "min_y": 5015.697422544146, + "max_x": 2858.08434319046, + "max_y": 5016.918381850508 + }, + "value": null, + "layer": "0", + "id": "55815E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2854.351405355815, + "min_y": 5015.42520671665, + "max_x": 2861.7655836375275, + "max_y": 5018.411556984366 + }, + "value": null, + "layer": "0", + "id": "558161" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2833.366366929098, + "min_y": 5086.457580919589, + "max_x": 2834.689176448887, + "max_y": 5087.968355046145 + }, + "value": null, + "layer": "VV-BALL", + "id": "55816B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2834.6203287783806, + "min_y": 5086.758522295799, + "max_x": 2835.5292201525194, + "max_y": 5087.6674136699385 + }, + "value": null, + "layer": "VV-BALL", + "id": "55816E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2815.011489246666, + "min_y": 5000.710107012475, + "max_x": 2817.931076999792, + "max_y": 5002.22088113903 + }, + "value": null, + "layer": "VV-BALL", + "id": "558173" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2814.514261927092, + "min_y": 5000.710107012475, + "max_x": 2815.011489246666, + "max_y": 5002.22088113903 + }, + "value": null, + "layer": "VV-BALL", + "id": "558174" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2815.7682237763747, + "min_y": 5001.011048388684, + "max_x": 2816.6771151505136, + "max_y": 5001.919939762824 + }, + "value": null, + "layer": "VV-BALL", + "id": "558177" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2831.9748850076994, + "min_y": 4992.96234466675, + "max_x": 2832.8837763818383, + "max_y": 4993.87123604089 + }, + "value": null, + "layer": "VV-BALL", + "id": "558180" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2790.957019357434, + "min_y": 4998.665790699964, + "max_x": 2795.506537343407, + "max_y": 4999.575694297159 + }, + "value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "layer": "INSTRUMENT", + "id": "558185" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2898.633449658069, + "min_y": 5012.724669719297, + "max_x": 2900.594120231954, + "max_y": 5012.724669719297 + }, + "value": null, + "layer": "0", + "id": "558189" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2897.734140571268, + "min_y": 5003.037897858863, + "max_x": 2899.694811145151, + "max_y": 5003.037897858863 + }, + "value": null, + "layer": "0", + "id": "55818A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2831.192484905793, + "min_y": 5014.572034805702, + "max_x": 2831.192484905793, + "max_y": 5016.104513784693 + }, + "value": null, + "layer": "0", + "id": "55818D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2836.4921573976, + "min_y": 5062.400703214377, + "max_x": 2836.741019919908, + "max_y": 5063.893878348235 + }, + "value": null, + "layer": "0", + "id": "55818F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2844.327288926797, + "min_y": 4987.151345488808, + "max_x": 2848.688958920524, + "max_y": 4994.914328269939 + }, + "value": null, + "layer": "0", + "id": "558192" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2840.879856968894, + "min_y": 4987.151345488808, + "max_x": 2844.327288926797, + "max_y": 5016.104513784693 + }, + "value": null, + "layer": "0", + "id": "558194" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2837.097449530607, + "min_y": 5006.960121074651, + "max_x": 2840.6810698518657, + "max_y": 5008.4532962085095 + }, + "value": "H100", + "layer": "0", + "id": "55819C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2858.888544688153, + "min_y": 4997.864840606681, + "max_x": 2860.028652249143, + "max_y": 4999.652642271238 + }, + "value": null, + "layer": "0", + "id": "55819E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2858.902703151246, + "min_y": 4999.979808123222, + "max_x": 2860.014493786051, + "max_y": 5000.596039569359 + }, + "value": null, + "layer": "0", + "id": "5581A1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2859.106713418961, + "min_y": 5000.5460609384345, + "max_x": 2859.8104835183344, + "max_y": 5001.249831037808 + }, + "value": null, + "layer": "0", + "id": "5581AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2854.082716435414, + "min_y": 4982.058146955406, + "max_x": 2855.222823996404, + "max_y": 4983.845948619965 + }, + "value": null, + "layer": "0", + "id": "5581B2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2854.096874898507, + "min_y": 4984.173114471946, + "max_x": 2855.208665533312, + "max_y": 4984.789345918083 + }, + "value": null, + "layer": "0", + "id": "5581B5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2854.3008851662225, + "min_y": 4984.73936728716, + "max_x": 2855.004655265596, + "max_y": 4985.443137386534 + }, + "value": null, + "layer": "0", + "id": "5581C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2864.936276146823, + "min_y": 5007.631471185896, + "max_x": 2866.076383707813, + "max_y": 5009.419272850453 + }, + "value": null, + "layer": "0", + "id": "5581C6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2864.950434609916, + "min_y": 5009.746438702437, + "max_x": 2866.062225244721, + "max_y": 5010.362670148573 + }, + "value": null, + "layer": "0", + "id": "5581C9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2865.1544448776303, + "min_y": 5010.312691517649, + "max_x": 2865.8582149770036, + "max_y": 5011.016461617022 + }, + "value": null, + "layer": "0", + "id": "5581D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2935.840664649134, + "min_y": 4951.44752556513, + "max_x": 2935.840664649134, + "max_y": 4987.151345488807 + }, + "value": null, + "layer": "0", + "id": "5581DA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2927.272620994193, + "min_y": 4951.44752556513, + "max_x": 2927.272620994193, + "max_y": 4987.151345488807 + }, + "value": null, + "layer": "0", + "id": "5581DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2918.617685302468, + "min_y": 4951.44752556513, + "max_x": 2918.617685302468, + "max_y": 4987.151345488807 + }, + "value": null, + "layer": "0", + "id": "5581DC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2909.851788896747, + "min_y": 4951.44752556513, + "max_x": 2909.851788896747, + "max_y": 4987.151345488807 + }, + "value": null, + "layer": "0", + "id": "5581DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2900.753010349036, + "min_y": 4951.44752556513, + "max_x": 2900.753010349036, + "max_y": 4987.151345488807 + }, + "value": null, + "layer": "0", + "id": "5581DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2627.241768641888, + "min_y": 4841.601612088994, + "max_x": 2642.209224020394, + "max_y": 4841.601612088994 + }, + "value": null, + "layer": "0", + "id": "5581E0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2853.963898423726, + "min_y": 5019.296958163704, + "max_x": 2857.5475187449847, + "max_y": 5020.7901332975625 + }, + "value": "100A", + "layer": "14-D-PIPELINE-LINE", + "id": "5581EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2777.576775278534, + "min_y": 4930.42203964331, + "max_x": 2777.825637800846, + "max_y": 4931.915214777167 + }, + "value": null, + "layer": "0", + "id": "5581EC" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2769.212109860283, + "min_y": 4929.675452076382, + "max_x": 2770.705284994141, + "max_y": 4931.168627210239 + }, + "value": null, + "layer": "0", + "id": "5581EF" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2773.569554254229, + "min_y": 4929.675452076382, + "max_x": 2775.062729388087, + "max_y": 4931.168627210239 + }, + "value": null, + "layer": "0", + "id": "5581F0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2770.521663754323, + "min_y": 4931.776828981544, + "max_x": 2774.105284075582, + "max_y": 4933.270004115402 + }, + "value": "300A", + "layer": "14-D-PIPELINE-LINE", + "id": "5581F2" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2770.705284994141, + "min_y": 4911.27879550685, + "max_x": 2770.705284994141, + "max_y": 4913.239466080735 + }, + "value": null, + "layer": "0", + "id": "5581F3" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2775.062729388087, + "min_y": 4911.27879550685, + "max_x": 2775.062729388087, + "max_y": 4913.239466080735 + }, + "value": null, + "layer": "0", + "id": "5581F4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4917.762397755957, + "max_x": 2848.10403846466, + "max_y": 4917.762397755957 + }, + "value": null, + "layer": "0", + "id": "5581F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4888.703506727453, + "max_x": 2848.10403846466, + "max_y": 4888.703506727453 + }, + "value": null, + "layer": "0", + "id": "5581F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2838.047002893839, + "min_y": 4915.737964345703, + "max_x": 2840.734718134783, + "max_y": 4917.2311394795615 + }, + "value": "20A", + "layer": "14-D-PIPELINE-LINE", + "id": "5581FF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2838.047002893839, + "min_y": 4893.744414984968, + "max_x": 2840.734718134783, + "max_y": 4895.237590118826 + }, + "value": "20A", + "layer": "14-D-PIPELINE-LINE", + "id": "558200" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2767.34262425671, + "min_y": 4959.287360489906, + "max_x": 2767.34262425671, + "max_y": 5113.332968995551 + }, + "value": null, + "layer": "0", + "id": "558201" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2720.561729986979, + "min_y": 5104.494722764538, + "max_x": 2742.161729986979, + "max_y": 5108.494722764538 + }, + "value": "9th PLANT", + "layer": "SH1", + "id": "558202" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2774.235418949633, + "min_y": 5104.494722764538, + "max_x": 2798.235418949633, + "max_y": 5108.494722764538 + }, + "value": "10th PLANT", + "layer": "SH1", + "id": "558203" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2848.388794186385, + "min_y": 4905.827676544608, + "max_x": 2865.4109907123648, + "max_y": 4907.320851678466 + }, + "value": "VG-10441-125A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558204" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2848.593265382433, + "min_y": 4897.546593104656, + "max_x": 2865.6154619084127, + "max_y": 4899.039768238514 + }, + "value": "VG-10442-100A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "558205" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2837.764939805092, + "min_y": 4905.796219520847, + "max_x": 2845.8280855279245, + "max_y": 4907.289394654706 + }, + "value": "200Ax125A", + "layer": "14-D-PIPELINE-LINE", + "id": "558206" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2837.085386256077, + "min_y": 4897.424132524335, + "max_x": 2845.1485319789094, + "max_y": 4898.917307658193 + }, + "value": "150Ax100A", + "layer": "14-D-PIPELINE-LINE", + "id": "558207" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2632.295665090876, + "min_y": 4997.287311146461, + "max_x": 2635.879285412135, + "max_y": 4998.78048628032 + }, + "value": "150A", + "layer": "14-D-PIPELINE-LINE", + "id": "55820B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2899.277621925374, + "min_y": 4963.226775054758, + "max_x": 2932.886329654766, + "max_y": 4964.719950188616 + }, + "value": "VG-10426-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "55820C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2925.945714561569, + "min_y": 4963.078618984557, + "max_x": 2950.516902008695, + "max_y": 4964.868106258818 + }, + "value": "VG-10423-50A-F1A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "55820F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2542.563165476119, + "min_y": 5104.542196863456, + "max_x": 2554.563165476119, + "max_y": 5109.542196863456 + }, + "value": "기존설비", + "layer": "0", + "id": "558211" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2537.791456943033, + "min_y": 4828.273479308041, + "max_x": 2767.34262425671, + "max_y": 5099.344662065845 + }, + "value": null, + "layer": "0", + "id": "558212" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2537.791456943033, + "min_y": 5099.344662065845, + "max_x": 2767.34262425671, + "max_y": 5099.344662065845 + }, + "value": null, + "layer": "0", + "id": "558214" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2686.686209098836, + "min_y": 5218.089389156211, + "max_x": 2720.070324612225, + "max_y": 5221.067692569605 + }, + "value": null, + "layer": "0", + "id": "558218" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2711.419792304316, + "min_y": 5218.813877570409, + "max_x": 2717.6911278665193, + "max_y": 5220.307052704267 + }, + "value": "SC-9128", + "layer": "0", + "id": "558219" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2720.070324612225, + "min_y": 5218.089389156211, + "max_x": 2721.559476318922, + "max_y": 5221.067692569605 + }, + "value": null, + "layer": "TEXT", + "id": "55821B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2671.876433323725, + "min_y": 5316.52013511201, + "max_x": 2675.460053644984, + "max_y": 5318.0133102458685 + }, + "value": "100A", + "layer": "14-D-PIPELINE-LINE", + "id": "55821F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2681.263554843284, + "min_y": 5201.588535567383, + "max_x": 2684.847175164543, + "max_y": 5203.081710701241 + }, + "value": "150A", + "layer": "14-D-PIPELINE-LINE", + "id": "558220" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2815.632132919029, + "min_y": 5158.678748928531, + "max_x": 2855.911498885895, + "max_y": 5183.430943995374 + }, + "value": null, + "layer": "0", + "id": "558225" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2661.115141410454, + "min_y": 5310.73142140207, + "max_x": 2661.115141410454, + "max_y": 5312.419381394709 + }, + "value": null, + "layer": "0", + "id": "558227" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2793.025872372751, + "min_y": 5183.646947741543, + "max_x": 2807.062172430784, + "max_y": 5189.715656263279 + }, + "value": null, + "layer": "0", + "id": "558229" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2855.915230071832, + "min_y": 5174.546278888341, + "max_x": 2855.915230071832, + "max_y": 5174.665812900563 + }, + "value": null, + "layer": "0", + "id": "55822A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2693.479299560923, + "min_y": 5193.152352701404, + "max_x": 2694.792154717476, + "max_y": 5193.152455011189 + }, + "value": null, + "layer": "0", + "id": "558230" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2695.202270580382, + "min_y": 5192.110164014741, + "max_x": 2701.2496298725064, + "max_y": 5193.230045365134 + }, + "value": "300Ax150A", + "layer": "VALVE NO", + "id": "558232" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2676.148827027531, + "min_y": 5320.921263007234, + "max_x": 2749.545225166257, + "max_y": 5326.818187737516 + }, + "value": null, + "layer": "0", + "id": "558233" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2673.275487187155, + "min_y": 5320.92915342678, + "max_x": 2754.025135047837, + "max_y": 5332.334092115629 + }, + "value": null, + "layer": "0", + "id": "558235" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2773.48298246352, + "min_y": 5273.321819248923, + "max_x": 2774.623090024511, + "max_y": 5275.109620913482 + }, + "value": null, + "layer": "0", + "id": "558237" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2773.497140926613, + "min_y": 5275.436786765465, + "max_x": 2774.610751581068, + "max_y": 5278.415017782325 + }, + "value": null, + "layer": "0", + "id": "55823A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2773.701151194329, + "min_y": 5276.003039580677, + "max_x": 2774.4049212937025, + "max_y": 5276.70680968005 + }, + "value": null, + "layer": "0", + "id": "558246" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2688.709785547005, + "min_y": 5311.629979641205, + "max_x": 2688.958648069314, + "max_y": 5312.952220576221 + }, + "value": null, + "layer": "0", + "id": "55824A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2682.962568735737, + "min_y": 5290.584157757321, + "max_x": 2695.612683557694, + "max_y": 5322.715705504705 + }, + "value": null, + "layer": "0", + "id": "55824C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2682.279183416318, + "min_y": 5312.402334327834, + "max_x": 2683.601424351334, + "max_y": 5322.715705504705 + }, + "value": null, + "layer": "0", + "id": "55824E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2672.613681339526, + "min_y": 5318.81850474912, + "max_x": 2676.905528936232, + "max_y": 5320.928758037011 + }, + "value": null, + "layer": "0", + "id": "55824F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2685.145600479069, + "min_y": 5312.412651374367, + "max_x": 2686.467841414086, + "max_y": 5314.506820580925 + }, + "value": null, + "layer": "0", + "id": "558258" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2677.689474731003, + "min_y": 5310.199739620387, + "max_x": 2681.273095052262, + "max_y": 5311.692914754245 + }, + "value": "200A", + "layer": "14-D-PIPELINE-LINE", + "id": "55825D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5259.459912911988, + "max_x": 2590.587482271901, + "max_y": 5263.136977888144 + }, + "value": null, + "layer": "0", + "id": "55825F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2588.898860749963, + "min_y": 5265.129479054365, + "max_x": 2590.765329667283, + "max_y": 5271.882582568063 + }, + "value": null, + "layer": "0", + "id": "558260" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2587.0323918326394, + "min_y": 5271.882582568063, + "max_x": 2592.6317985846063, + "max_y": 5277.481989320031 + }, + "value": null, + "layer": "0", + "id": "558262" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2587.633267531666, + "min_y": 5272.832410965339, + "max_x": 2593.0086980135547, + "max_y": 5276.734155667026 + }, + "value": "PG", + "layer": "14-D-PIPELINE-LINE", + "id": "558263" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2585.779775294867, + "min_y": 5262.482678288276, + "max_x": 2588.467490535811, + "max_y": 5263.975853422134 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "558267" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2593.345086447922, + "min_y": 5264.480546466858, + "max_x": 2596.032801688866, + "max_y": 5265.973721600716 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "558268" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5266.477066911868, + "max_x": 2594.436485066147, + "max_y": 5267.987841038423 + }, + "value": null, + "layer": "0", + "id": "55826D" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2586.989773978944, + "min_y": 5265.283235452869, + "max_x": 2592.674416438138, + "max_y": 5270.967877912062 + }, + "value": null, + "layer": "0", + "id": "558273" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2595.207681099273, + "min_y": 5266.477066911868, + "max_x": 2596.530490619057, + "max_y": 5267.987841038423 + }, + "value": null, + "layer": "VV-BALL", + "id": "558274" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2594.3676373956405, + "min_y": 5266.778008288077, + "max_x": 2595.2765287697794, + "max_y": 5267.686899662217 + }, + "value": null, + "layer": "VV-BALL", + "id": "558278" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5263.90817392127, + "max_x": 2590.587482271901, + "max_y": 5265.230983441059 + }, + "value": null, + "layer": "VV-BALL", + "id": "55827E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2589.3776495215557, + "min_y": 5263.068130217636, + "max_x": 2590.2865408956945, + "max_y": 5263.977021591776 + }, + "value": null, + "layer": "VV-BALL", + "id": "558281" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5276.990772444508, + "max_x": 2624.980634840856, + "max_y": 5280.667837420664 + }, + "value": null, + "layer": "0", + "id": "558286" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2623.292013318918, + "min_y": 5282.660338586886, + "max_x": 2625.158482236238, + "max_y": 5289.413442100584 + }, + "value": null, + "layer": "0", + "id": "558287" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2621.4255444015944, + "min_y": 5289.413442100583, + "max_x": 2627.0249511535612, + "max_y": 5295.012848852551 + }, + "value": null, + "layer": "0", + "id": "558289" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2619.620857920053, + "min_y": 5284.007926444388, + "max_x": 2624.225247777578, + "max_y": 5285.518700570944 + }, + "value": null, + "layer": "0", + "id": "558290" + }, + { + "type": "ARC", + "bbox": { + "min_x": 2621.382926548063, + "min_y": 5282.8140949853905, + "max_x": 2627.067569007257, + "max_y": 5288.498737444584 + }, + "value": null, + "layer": "0", + "id": "558296" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2617.526852367144, + "min_y": 5284.007926444388, + "max_x": 2618.849661886928, + "max_y": 5285.518700570944 + }, + "value": null, + "layer": "VV-BALL", + "id": "558297" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2618.7808142164217, + "min_y": 5284.308867820597, + "max_x": 2619.6897055905606, + "max_y": 5285.217759194737 + }, + "value": null, + "layer": "VV-BALL", + "id": "55829B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5281.43903345379, + "max_x": 2624.980634840856, + "max_y": 5282.761842973579 + }, + "value": null, + "layer": "VV-BALL", + "id": "5582A1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2623.7708020905065, + "min_y": 5280.598989750156, + "max_x": 2624.6796934646454, + "max_y": 5281.507881124296 + }, + "value": null, + "layer": "VV-BALL", + "id": "5582A4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2622.007606093934, + "min_y": 5290.363270497859, + "max_x": 2627.3830365758226, + "max_y": 5294.265015199547 + }, + "value": "PG", + "layer": "14-D-PIPELINE-LINE", + "id": "5582A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2617.849392569469, + "min_y": 5282.07362306472, + "max_x": 2620.537107810413, + "max_y": 5283.566798198578 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "5582AB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2625.083546643231, + "min_y": 5280.386840212845, + "max_x": 2627.771261884175, + "max_y": 5281.880015346703 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "5582AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2813.595301810567, + "min_y": 5256.903540591945, + "max_x": 2815.383103475125, + "max_y": 5258.043648152935 + }, + "value": null, + "layer": "0", + "id": "5582AD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2812.651904512448, + "min_y": 5256.917699055037, + "max_x": 2813.268135958584, + "max_y": 5258.029489689842 + }, + "value": null, + "layer": "0", + "id": "5582B0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2811.9981130439983, + "min_y": 5257.121709322753, + "max_x": 2812.7018831433716, + "max_y": 5257.825479422127 + }, + "value": null, + "layer": "0", + "id": "5582BC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2827.603401905335, + "min_y": 5256.920501471792, + "max_x": 2829.391203569893, + "max_y": 5258.060609032781 + }, + "value": null, + "layer": "0", + "id": "5582C0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2826.660004607215, + "min_y": 5256.934659934884, + "max_x": 2827.276236053351, + "max_y": 5258.04645056969 + }, + "value": null, + "layer": "0", + "id": "5582C3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2826.0062131387654, + "min_y": 5257.1386702026, + "max_x": 2826.7099832381386, + "max_y": 5257.8424403019735 + }, + "value": null, + "layer": "0", + "id": "5582CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2837.959904505327, + "min_y": 5256.978835325258, + "max_x": 2839.747706169885, + "max_y": 5258.118942886248 + }, + "value": null, + "layer": "0", + "id": "5582D3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2837.016507207207, + "min_y": 5256.992993788351, + "max_x": 2837.632738653344, + "max_y": 5258.104784423156 + }, + "value": null, + "layer": "0", + "id": "5582D6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2836.362715738758, + "min_y": 5257.197004056066, + "max_x": 2837.0664858381315, + "max_y": 5257.90077415544 + }, + "value": null, + "layer": "0", + "id": "5582E2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2849.155517151333, + "min_y": 5256.933963130284, + "max_x": 2850.943318815892, + "max_y": 5258.074070691274 + }, + "value": null, + "layer": "0", + "id": "5582E6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2848.212119853214, + "min_y": 5256.948121593376, + "max_x": 2848.82835129935, + "max_y": 5258.059912228181 + }, + "value": null, + "layer": "0", + "id": "5582E9" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2847.5583283847645, + "min_y": 5257.152131861092, + "max_x": 2848.262098484138, + "max_y": 5257.855901960465 + }, + "value": null, + "layer": "0", + "id": "5582F5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2804.343035171251, + "min_y": 5220.405774143306, + "max_x": 2806.130836835809, + "max_y": 5221.545881704297 + }, + "value": null, + "layer": "0", + "id": "5582F9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2801.037638302407, + "min_y": 5220.419932606399, + "max_x": 2804.015869319268, + "max_y": 5221.533543260854 + }, + "value": null, + "layer": "0", + "id": "5582FC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2802.7458464046813, + "min_y": 5220.623942874115, + "max_x": 2803.4496165040546, + "max_y": 5221.327712973488 + }, + "value": null, + "layer": "0", + "id": "558308" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2652.416607573319, + "min_y": 5250.428727493561, + "max_x": 2658.6879431355223, + "max_y": 5251.9219026274195 + }, + "value": "50Ax25A", + "layer": "14-D-PIPELINE-LINE", + "id": "558316" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2666.686862491989, + "min_y": 5288.87620590035, + "max_x": 2673.179611422303, + "max_y": 5293.4323866229415 + }, + "value": "40A", + "layer": "14-D-PIPELINE-LINE", + "id": "55831E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2667.225533948474, + "min_y": 5284.357575025286, + "max_x": 2669.9132491894184, + "max_y": 5285.850750159144 + }, + "value": "25A", + "layer": "14-D-PIPELINE-LINE", + "id": "558320" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5379.16093442478, + "max_x": 2614.66769369226, + "max_y": 5382.080522177904 + }, + "value": null, + "layer": "VV-BALL", + "id": "558327" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5382.080522177904, + "max_x": 2614.66769369226, + "max_y": 5382.080522177904 + }, + "value": null, + "layer": "VV-BALL", + "id": "558328" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2613.4578609419136, + "min_y": 5380.414896274057, + "max_x": 2614.3667523160525, + "max_y": 5381.323787648197 + }, + "value": null, + "layer": "VV-BALL", + "id": "55832B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2728.285849773707, + "min_y": 5148.837541465275, + "max_x": 2810.79771337525, + "max_y": 5183.646947741543 + }, + "value": null, + "layer": "0", + "id": "558330" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2732.642981468461, + "min_y": 5171.992279893753, + "max_x": 2792.367257270363, + "max_y": 5175.377552531035 + }, + "value": null, + "layer": "0", + "id": "558331" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2813.562527376384, + "min_y": 5177.965269270535, + "max_x": 2815.639541803133, + "max_y": 5177.965269270535 + }, + "value": null, + "layer": "0", + "id": "558335" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2810.763731227865, + "min_y": 5165.649165549815, + "max_x": 2810.763731227865, + "max_y": 5175.2825588241 + }, + "value": null, + "layer": "0", + "id": "558336" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2797.185210312765, + "min_y": 5148.835393607035, + "max_x": 2860.520822233308, + "max_y": 5148.835393607035 + }, + "value": null, + "layer": "0", + "id": "558337" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2894.657396037541, + "min_y": 5190.692683442382, + "max_x": 2900.2568027895077, + "max_y": 5191.625917901043 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "55833A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2911.321516947987, + "min_y": 5190.682239506196, + "max_x": 2915.8010423495607, + "max_y": 5191.615473964857 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55833B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2549.526438426577, + "min_y": 4931.685148437537, + "max_x": 2575.6570032690897, + "max_y": 4933.485148437537 + }, + "value": "\\pi3.54531; .9; T-3210 (기존설비) \\pi1.71099;\\lWASTE WATER TANK", + "layer": "0", + "id": "55833C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2550.002125509587, + "min_y": 4925.240236919467, + "max_x": 2587.2017481263856, + "max_y": 4927.040236919467 + }, + "value": ".9;SIZE : %%C3,800 x 4,000H VOLUME : 45.36 M .7x; ^ ; DP/OP : F.W / ATM DT/OT : 80 %%DC / 40 %%DC MATERIAL : STS304", + "layer": "0", + "id": "558340" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3864.582588730388, + "min_y": 5152.997497519053, + "max_x": 3928.4021978822498, + "max_y": 5155.140972372789 + }, + "value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : GC200 PRESSURE : 0.3 MPa RPM : 1,750", + "layer": "0", + "id": "558344" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 3864.76249424156, + "min_y": 5160.178510562877, + "max_x": 3928.1020325886666, + "max_y": 5162.321985416615 + }, + "value": ".9;P-10800A/B CITY WATER PUMP", + "layer": "0", + "id": "558348" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4904.444978271951, + "min_y": 5190.857617782217, + "max_x": 5052.135472930924, + "max_y": 5403.333655076854 + }, + "value": null, + "layer": "UTIL", + "id": "55862C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4999.01269867783, + "min_y": 5177.417265763392, + "max_x": 5026.076523432128, + "max_y": 5179.674721542742 + }, + "value": "PCV-10111", + "layer": "PID", + "id": "55862E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5005.305945514747, + "min_y": 5172.527086069025, + "max_x": 5009.038883349391, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "55862F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5009.038883349391, + "min_y": 5174.393554986349, + "max_x": 5009.038883349391, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558630" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5014.305066991315, + "min_y": 5172.527086069025, + "max_x": 5018.038004825959, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558635" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5018.038004825959, + "min_y": 5174.393554986349, + "max_x": 5018.038004825959, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558636" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4983.41443345846, + "min_y": 5177.457221475777, + "max_x": 4992.480015259621, + "max_y": 5179.136032920437 + }, + "value": "FCV-10116", + "layer": "PID", + "id": "55863A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4980.708558818809, + "min_y": 5172.527086069027, + "max_x": 4984.441496653453, + "max_y": 5190.857617782219 + }, + "value": null, + "layer": "PID", + "id": "55863B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4984.441496653453, + "min_y": 5174.39355498635, + "max_x": 4984.441496653453, + "max_y": 5190.857617782219 + }, + "value": null, + "layer": "PID", + "id": "55863C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.295275300514, + "min_y": 5174.515921193723, + "max_x": 5054.443217006417, + "max_y": 5179.136032920437 + }, + "value": "FCV-10216", + "layer": "PID", + "id": "558640" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5040.153942354606, + "min_y": 5172.527086069027, + "max_x": 5043.886880189251, + "max_y": 5190.857617782219 + }, + "value": null, + "layer": "PID", + "id": "558641" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5043.886880189251, + "min_y": 5174.39355498635, + "max_x": 5043.886880189251, + "max_y": 5190.857617782219 + }, + "value": null, + "layer": "PID", + "id": "558642" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5282.794790126969, + "max_x": 5058.898106763281, + "max_y": 5286.527727961614 + }, + "value": null, + "layer": "PID", + "id": "558647" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5040.567575050089, + "min_y": 5282.794790126969, + "max_x": 5057.031637845957, + "max_y": 5282.794790126969 + }, + "value": null, + "layer": "PID", + "id": "558648" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5041.586318520661, + "min_y": 5283.889966806043, + "max_x": 5061.734260226564, + "max_y": 5285.568961948202 + }, + "value": "3F #10 Plant Utility", + "layer": "0", + "id": "558649" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5213.6934112988, + "max_x": 5069.326683854284, + "max_y": 5245.676991562029 + }, + "value": null, + "layer": "UTIL", + "id": "55864A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4984.44886596272, + "min_y": 5245.676991562029, + "max_x": 4988.181803797367, + "max_y": 5247.543460479352 + }, + "value": null, + "layer": "PID", + "id": "55864E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.940638936769, + "min_y": 5229.21292876616, + "max_x": 5030.673576771414, + "max_y": 5247.543460479352 + }, + "value": null, + "layer": "PID", + "id": "558650" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5030.673576771414, + "min_y": 5229.21292876616, + "max_x": 5030.673576771414, + "max_y": 5245.676991562029 + }, + "value": null, + "layer": "PID", + "id": "558651" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4992.58759025003, + "min_y": 5213.6934112988, + "max_x": 4996.320528084676, + "max_y": 5247.543460479352 + }, + "value": null, + "layer": "PID", + "id": "558655" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4996.320528084676, + "min_y": 5229.21292876616, + "max_x": 4996.320528084676, + "max_y": 5245.676991562029 + }, + "value": null, + "layer": "PID", + "id": "558656" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5045.204787260932, + "min_y": 5229.21292876616, + "max_x": 5048.937725095575, + "max_y": 5247.543460479352 + }, + "value": null, + "layer": "PID", + "id": "55865A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5048.937725095575, + "min_y": 5229.21292876616, + "max_x": 5048.937725095575, + "max_y": 5245.676991562029 + }, + "value": null, + "layer": "PID", + "id": "55865B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4996.306824038178, + "min_y": 5172.527086069025, + "max_x": 5000.039761872822, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558660" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5000.039761872822, + "min_y": 5174.393554986349, + "max_x": 5000.039761872822, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558661" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5026.010063107536, + "min_y": 5177.995910098082, + "max_x": 5034.068358041901, + "max_y": 5179.674721542742 + }, + "value": "DP-10201", + "layer": "PID", + "id": "558665" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5023.304188467884, + "min_y": 5172.527086069025, + "max_x": 5027.037126302531, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558666" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5027.037126302531, + "min_y": 5174.393554986349, + "max_x": 5027.037126302531, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558667" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4987.154740602372, + "min_y": 5232.276595255587, + "max_x": 5004.359046690842, + "max_y": 5233.968963102663 + }, + "value": "FCV-10101", + "layer": "PID", + "id": "55866B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5029.64651357642, + "min_y": 5232.276595255589, + "max_x": 5038.712095377581, + "max_y": 5233.955406700249 + }, + "value": "FCV-10201", + "layer": "PID", + "id": "55866C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5047.910661900583, + "min_y": 5232.290151658004, + "max_x": 5056.976243701744, + "max_y": 5233.968963102664 + }, + "value": "TCV-10211", + "layer": "PID", + "id": "55866E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.657514144943, + "min_y": 5172.527086069025, + "max_x": 5035.390451979589, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558670" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5035.390451979589, + "min_y": 5174.393554986349, + "max_x": 5035.390451979589, + "max_y": 5190.857617782217 + }, + "value": null, + "layer": "PID", + "id": "558671" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5011.42555587275, + "min_y": 5292.028064094317, + "max_x": 5029.49025915048, + "max_y": 5294.37613372139 + }, + "value": "FCV-10214", + "layer": "PID", + "id": "558675" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4993.427312919613, + "min_y": 5291.400188614014, + "max_x": 5010.4847293305465, + "max_y": 5294.37613372139 + }, + "value": "FCV-10114A", + "layer": "PID", + "id": "558676" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5017.049423328955, + "min_y": 5350.371964857348, + "max_x": 5026.115005130116, + "max_y": 5352.050776302008 + }, + "value": "FCV-10218", + "layer": "PID", + "id": "558677" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5004.371717413956, + "min_y": 5350.371964857348, + "max_x": 5013.437299215117, + "max_y": 5352.050776302008 + }, + "value": "FCV-10213", + "layer": "PID", + "id": "558678" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4991.694011498957, + "min_y": 5350.371964857348, + "max_x": 5000.759593300118, + "max_y": 5352.050776302008 + }, + "value": "FCV-10113", + "layer": "PID", + "id": "558679" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4979.016305583957, + "min_y": 5350.371964857348, + "max_x": 4988.081887385118, + "max_y": 5352.050776302008 + }, + "value": "FCV-10118", + "layer": "PID", + "id": "55867A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5166.716363854629, + "max_x": 5069.326683854284, + "max_y": 5389.843670637447 + }, + "value": null, + "layer": "0", + "id": "55867B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5341.226509835025, + "max_x": 5060.59166359459, + "max_y": 5344.95944766967 + }, + "value": null, + "layer": "PID", + "id": "558682" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5341.226509835025, + "max_x": 5058.725194677267, + "max_y": 5341.226509835025 + }, + "value": null, + "layer": "PID", + "id": "558683" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5043.27987535197, + "min_y": 5342.321686514099, + "max_x": 5063.427817057874, + "max_y": 5344.000681656258 + }, + "value": "4F #10 Plant Utility", + "layer": "0", + "id": "558684" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5401.467186159532, + "max_x": 5060.59166359459, + "max_y": 5405.200123994177 + }, + "value": null, + "layer": "PID", + "id": "558689" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5401.467186159532, + "max_x": 5058.725194677267, + "max_y": 5401.467186159532 + }, + "value": null, + "layer": "PID", + "id": "55868A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5043.27987535197, + "min_y": 5402.562362838605, + "max_x": 5063.427817057874, + "max_y": 5404.2413579807635 + }, + "value": "5F #10 Plant Utility", + "layer": "0", + "id": "55868B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5250.118833184725, + "max_x": 5057.999551758767, + "max_y": 5253.85177101937 + }, + "value": null, + "layer": "PID", + "id": "558690" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5039.669020045574, + "min_y": 5250.118833184725, + "max_x": 5056.133082841443, + "max_y": 5250.118833184725 + }, + "value": null, + "layer": "PID", + "id": "558691" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5040.687763516146, + "min_y": 5251.214009863799, + "max_x": 5060.83570522205, + "max_y": 5252.893005005958 + }, + "value": "2F #10 Plant Utility", + "layer": "0", + "id": "558692" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5167.512374175179, + "max_x": 5067.721809239479, + "max_y": 5170.498724442894 + }, + "value": "1F", + "layer": "0", + "id": "558697" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5223.294200870885, + "max_x": 5067.721809239479, + "max_y": 5226.2805511386005 + }, + "value": "2F", + "layer": "0", + "id": "558698" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5279.300332734873, + "max_x": 5067.721809239479, + "max_y": 5282.286683002589 + }, + "value": "3F", + "layer": "0", + "id": "558699" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5334.857854262294, + "max_x": 5067.721809239479, + "max_y": 5337.844204530009 + }, + "value": "4F", + "layer": "0", + "id": "55869A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5390.639680957998, + "max_x": 5067.721809239479, + "max_y": 5393.626031225714 + }, + "value": "5F", + "layer": "0", + "id": "55869B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4729.346484094363, + "min_y": 5135.712413002958, + "max_x": 5146.390298980868, + "max_y": 5432.713839485405 + }, + "value": null, + "layer": "0", + "id": "55869E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4818.019971010777, + "min_y": 5253.539402822249, + "max_x": 4819.980641584661, + "max_y": 5273.137326454133 + }, + "value": null, + "layer": "0", + "id": "5586A1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5269.631976900326, + "max_x": 4819.980641584661, + "max_y": 5274.260386270893 + }, + "value": null, + "layer": "0", + "id": "5586A2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5275.418338272584, + "max_x": 4816.926639814376, + "max_y": 5278.558095936058 + }, + "value": null, + "layer": "0", + "id": "5586A3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4815.110074123163, + "min_y": 5274.157011390252, + "max_x": 4816.474775886135, + "max_y": 5275.521713153224 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586A8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4812.059487170004, + "min_y": 5278.558095936058, + "max_x": 4819.525362839294, + "max_y": 5286.0239716053475 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5586AD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4813.237957269595, + "min_y": 5279.959404535825, + "max_x": 4818.273727737909, + "max_y": 5284.62686789074 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "5586AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5246.58882881287, + "max_x": 4826.714263146356, + "max_y": 5250.739699446265 + }, + "value": null, + "layer": "0", + "id": "5586B1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5241.7392193882, + "max_x": 4826.714263146356, + "max_y": 5245.430876811179 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586B3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4824.897697455139, + "min_y": 5245.327501930538, + "max_x": 4826.262399218111, + "max_y": 5246.69220369351 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586B6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.728639112468, + "min_y": 5275.937029830116, + "max_x": 4826.999063710228, + "max_y": 5281.63805552273 + }, + "value": null, + "layer": "0", + "id": "5586BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4800.535593531652, + "min_y": 5215.331815791709, + "max_x": 4818.173724800348, + "max_y": 5217.291608154897 + }, + "value": "INSTRUMENT AIR", + "layer": "PID", + "id": "5586BD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4805.897448622516, + "min_y": 5211.338818561383, + "max_x": 4811.7768257120815, + "max_y": 5213.298610924571 + }, + "value": "DRYER", + "layer": "PID", + "id": "5586BE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4803.746971004297, + "min_y": 5207.106857086801, + "max_x": 4816.162920169393, + "max_y": 5219.759583469011 + }, + "value": null, + "layer": "0", + "id": "5586BF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4806.578970601695, + "min_y": 5231.927390841224, + "max_x": 4820.689475616652, + "max_y": 5233.887183204412 + }, + "value": "AFTER COOLER", + "layer": "PID", + "id": "5586C0" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5226.343594095747, + "max_x": 4826.253521227609, + "max_y": 5240.139147376996 + }, + "value": null, + "layer": "0", + "id": "5586C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5290.444894967603, + "max_x": 4831.831202321808, + "max_y": 5306.960241507447 + }, + "value": null, + "layer": "0", + "id": "5586C2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4801.871822689314, + "min_y": 5299.859010479568, + "max_x": 4829.8688564491495, + "max_y": 5304.412263432835 + }, + "value": "INSTRUMENT AIR COMPRESSOR", + "layer": "0", + "id": "5586C8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4830.711320971413, + "min_y": 5290.444894967603, + "max_x": 4835.315154092752, + "max_y": 5306.960241507447 + }, + "value": null, + "layer": "0", + "id": "5586C9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5310.716072191248, + "max_x": 4813.394917723974, + "max_y": 5312.255909048039 + }, + "value": "\\pi-0.56353; \\fArial|b1|i1|c238|p34; .3333x; K-10901", + "layer": "0", + "id": "5586CB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4834.46374486859, + "min_y": 5299.988543805059, + "max_x": 4836.73416946635, + "max_y": 5305.689569497673 + }, + "value": null, + "layer": "0", + "id": "5586CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4808.298808177564, + "min_y": 5265.55716517215, + "max_x": 4819.980641584661, + "max_y": 5290.444894967603 + }, + "value": null, + "layer": "UTIL", + "id": "5586D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4827.637872187061, + "min_y": 5219.765604657671, + "max_x": 4834.785200708211, + "max_y": 5227.524743050222 + }, + "value": null, + "layer": "0", + "id": "5586D4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4827.637872187061, + "min_y": 5227.038975583589, + "max_x": 4834.318245386151, + "max_y": 5230.161013423181 + }, + "value": null, + "layer": "0", + "id": "5586D5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5231.318965424872, + "max_x": 4834.318245386151, + "max_y": 5235.470154327202 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586DB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4832.501679694943, + "min_y": 5230.05763854254, + "max_x": 4833.866381457915, + "max_y": 5231.422340305512 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586DE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5214.898811251601, + "max_x": 4834.318245386151, + "max_y": 5218.60765265598 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586E5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4832.501679694943, + "min_y": 5218.504277775339, + "max_x": 4833.866381457915, + "max_y": 5219.868979538311 + }, + "value": null, + "layer": "VV-BALL", + "id": "5586E8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5203.131068626845, + "max_x": 4873.131482574539, + "max_y": 5203.131068626845 + }, + "value": null, + "layer": "PID", + "id": "5586ED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5207.610594028419, + "max_x": 4873.131482574539, + "max_y": 5207.610594028419 + }, + "value": null, + "layer": "PID", + "id": "5586EE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5212.090119429992, + "max_x": 4873.131482574539, + "max_y": 5212.090119429992 + }, + "value": null, + "layer": "PID", + "id": "5586EF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5219.273986079172 + }, + "value": null, + "layer": "PID", + "id": "5586F0" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5212.090119429992, + "max_x": 4858.573025019426, + "max_y": 5216.569644831566 + }, + "value": null, + "layer": "PID", + "id": "5586F2" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5203.131068626845, + "max_x": 4875.371245275326, + "max_y": 5207.610594028419 + }, + "value": null, + "layer": "PID", + "id": "5586F3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5203.131068626845, + "max_x": 4858.573025019426, + "max_y": 5207.610594028419 + }, + "value": null, + "layer": "PID", + "id": "5586F8" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5212.090119429992, + "max_x": 4875.371245275326, + "max_y": 5216.569644831566 + }, + "value": null, + "layer": "PID", + "id": "5586FA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4851.636719482056, + "min_y": 5213.087053632101, + "max_x": 4868.098975332839, + "max_y": 5218.904940433762 + }, + "value": "A", + "layer": "PID", + "id": "558709" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4863.966361578191, + "min_y": 5203.833230284582, + "max_x": 4865.6461836037815, + "max_y": 5206.632933660566 + }, + "value": "B", + "layer": "PID", + "id": "55870A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4875.370990904015, + "min_y": 5213.22942229187, + "max_x": 4878.493028743605, + "max_y": 5215.497851911323 + }, + "value": null, + "layer": "0", + "id": "55870B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4879.650980745297, + "min_y": 5213.22942229187, + "max_x": 4884.291729492415, + "max_y": 5215.497851911323 + }, + "value": null, + "layer": "VV-BALL", + "id": "55870D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4878.389653862966, + "min_y": 5213.681286220114, + "max_x": 4879.754355625938, + "max_y": 5215.045987983086 + }, + "value": null, + "layer": "VV-BALL", + "id": "558710" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4850.972119788119, + "min_y": 5213.141379763532, + "max_x": 4854.094157627711, + "max_y": 5215.409809382985 + }, + "value": null, + "layer": "0", + "id": "558715" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4845.540941325822, + "min_y": 5213.141379763532, + "max_x": 4849.814167786428, + "max_y": 5215.409809382985 + }, + "value": null, + "layer": "VV-BALL", + "id": "558717" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4849.710792905788, + "min_y": 5213.5932436917765, + "max_x": 4851.07549466876, + "max_y": 5214.957945454748 + }, + "value": null, + "layer": "VV-BALL", + "id": "55871A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4875.371245275326, + "min_y": 5204.236616517905, + "max_x": 4878.493283114918, + "max_y": 5206.505046137358 + }, + "value": null, + "layer": "0", + "id": "55871F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4879.651235116609, + "min_y": 5204.236616517905, + "max_x": 4884.291729492415, + "max_y": 5206.505046137358 + }, + "value": null, + "layer": "VV-BALL", + "id": "558721" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4878.389908234279, + "min_y": 5204.688480446148, + "max_x": 4879.754609997251, + "max_y": 5206.05318220912 + }, + "value": null, + "layer": "VV-BALL", + "id": "558724" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4850.972374159436, + "min_y": 5204.148573989566, + "max_x": 4854.094411999025, + "max_y": 5206.417003609018 + }, + "value": null, + "layer": "0", + "id": "558729" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4845.540941325822, + "min_y": 5204.148573989566, + "max_x": 4849.814422157744, + "max_y": 5206.417003609018 + }, + "value": null, + "layer": "VV-BALL", + "id": "55872B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4849.711047277103, + "min_y": 5204.600437917809, + "max_x": 4851.075749040075, + "max_y": 5205.965139680781 + }, + "value": null, + "layer": "VV-BALL", + "id": "55872E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4840.085205795343, + "min_y": 5205.282788799293, + "max_x": 4845.540941325822, + "max_y": 5214.275594573258 + }, + "value": null, + "layer": "UTIL", + "id": "558734" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4884.291729492415, + "min_y": 5205.370831327632, + "max_x": 4889.747465022894, + "max_y": 5214.699715220743 + }, + "value": null, + "layer": "UTIL", + "id": "558737" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4826.545644547977, + "min_y": 5204.233033296909, + "max_x": 4834.304782940531, + "max_y": 5211.38036181806 + }, + "value": null, + "layer": "0", + "id": "558739" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4833.819015473896, + "min_y": 5204.233033296909, + "max_x": 4836.941053313489, + "max_y": 5210.913406496001 + }, + "value": null, + "layer": "0", + "id": "55873A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4838.09900531518, + "min_y": 5208.644976876549, + "max_x": 4840.085205795343, + "max_y": 5210.913406496001 + }, + "value": null, + "layer": "VV-BALL", + "id": "558740" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4836.8376784328475, + "min_y": 5209.096840804792, + "max_x": 4838.202380195819, + "max_y": 5210.461542567764 + }, + "value": null, + "layer": "VV-BALL", + "id": "558743" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4814.202249595506, + "min_y": 5208.644976876549, + "max_x": 4825.387692546286, + "max_y": 5210.913406496001 + }, + "value": null, + "layer": "VV-BALL", + "id": "55874A" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4825.284317665647, + "min_y": 5209.096840804792, + "max_x": 4826.649019428619, + "max_y": 5210.461542567764 + }, + "value": null, + "layer": "VV-BALL", + "id": "55874D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4895.527887877706, + "min_y": 5204.489114884822, + "max_x": 4903.28702627026, + "max_y": 5211.636443405972 + }, + "value": null, + "layer": "0", + "id": "558752" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4892.891617504749, + "min_y": 5204.489114884822, + "max_x": 4896.013655344341, + "max_y": 5211.169488083914 + }, + "value": null, + "layer": "0", + "id": "558753" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4889.747465022894, + "min_y": 5208.901058464461, + "max_x": 4891.733665503057, + "max_y": 5211.169488083914 + }, + "value": null, + "layer": "VV-BALL", + "id": "558759" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4891.630290622418, + "min_y": 5209.352922392704, + "max_x": 4892.99499238539, + "max_y": 5210.717624155676 + }, + "value": null, + "layer": "VV-BALL", + "id": "55875C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4903.183651389618, + "min_y": 5209.352922392704, + "max_x": 4904.54835315259, + "max_y": 5210.717624155676 + }, + "value": null, + "layer": "VV-BALL", + "id": "558766" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4815.905262326083, + "min_y": 5203.901368772544, + "max_x": 4827.664016505214, + "max_y": 5205.861161135732 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "55876D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4892.339516229377, + "min_y": 5199.755817939966, + "max_x": 4904.098270408508, + "max_y": 5201.715610303154 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "55876E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4831.179455088595, + "min_y": 5237.89523135644, + "max_x": 4842.326820065058, + "max_y": 5271.093699653246 + }, + "value": null, + "layer": "UTIL", + "id": "55876F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.292850653723, + "min_y": 5237.89523135644, + "max_x": 4842.326820065058, + "max_y": 5237.89523135644 + }, + "value": null, + "layer": "UTIL", + "id": "558771" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.292850653723, + "min_y": 5235.470154327202, + "max_x": 4833.184030576425, + "max_y": 5235.470154327202 + }, + "value": null, + "layer": "UTIL", + "id": "558772" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4814.202249595506, + "min_y": 5214.898811251601, + "max_x": 4833.184030576425, + "max_y": 5214.898811251601 + }, + "value": null, + "layer": "UTIL", + "id": "558775" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4839.670188088166, + "min_y": 5224.264625985208, + "max_x": 4851.428942267296, + "max_y": 5226.224418348396 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "558777" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4806.613572208576, + "min_y": 5261.431840090033, + "max_x": 4816.244801003331, + "max_y": 5262.971676946824 + }, + "value": "\\pi-0.55792; \\fArial|b1|i1|c238|p34; .3333x; D-10901", + "layer": "0", + "id": "558778" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4804.630603065625, + "min_y": 5253.729039819775, + "max_x": 4817.957191135307, + "max_y": 5257.648624546153 + }, + "value": "AIR RECIEVER TANK", + "layer": "PID", + "id": "55877C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4840.366149491172, + "min_y": 5271.093699653246, + "max_x": 4842.326820065058, + "max_y": 5271.093699653246 + }, + "value": null, + "layer": "0", + "id": "55877F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4831.223360002542, + "min_y": 5235.470154327202, + "max_x": 4833.184030576425, + "max_y": 5235.470154327202 + }, + "value": null, + "layer": "0", + "id": "558780" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4818.452778121631, + "min_y": 5209.779191686275, + "max_x": 4820.413448695518, + "max_y": 5209.779191686275 + }, + "value": null, + "layer": "0", + "id": "558781" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4893.517207708615, + "min_y": 5216.366468537632, + "max_x": 4903.14843650337, + "max_y": 5217.906305394423 + }, + "value": "\\pi-0.4907; \\fArial|b1|i1|c238|p34; .3333x; F-10952", + "layer": "0", + "id": "558785" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4824.924676582237, + "min_y": 5280.786646298571, + "max_x": 4826.999063710228, + "max_y": 5283.888009354843 + }, + "value": null, + "layer": "PSV", + "id": "558789" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4827.726986587981, + "min_y": 5279.935237074411, + "max_x": 4832.162018000365, + "max_y": 5281.63805552273 + }, + "value": null, + "layer": "PSV", + "id": "558793" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4834.65978233836, + "min_y": 5304.838160273512, + "max_x": 4836.73416946635, + "max_y": 5307.939523329785 + }, + "value": null, + "layer": "PSV", + "id": "558797" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4837.462092344104, + "min_y": 5303.986751049354, + "max_x": 4841.897123756488, + "max_y": 5305.689569497673 + }, + "value": null, + "layer": "PSV", + "id": "5587A1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4842.366375753606, + "min_y": 5302.968427949033, + "max_x": 4850.1579502489685, + "max_y": 5305.98207693113 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "5587A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4832.557648027539, + "min_y": 5279.427481406472, + "max_x": 4840.349222522901, + "max_y": 5282.44113038857 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "5587A7" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4827.116273741097, + "min_y": 5289.018304307472, + "max_x": 4842.048025079675, + "max_y": 5290.324832549598 + }, + "value": ".9; PSV-10901 SP : 0.98 MPa Ax25A", + "layer": "PSV", + "id": "5587A9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4791.221953772408, + "min_y": 5240.37449022771, + "max_x": 4800.853182567163, + "max_y": 5241.914327084502 + }, + "value": "\\pi-1.59916; \\fArial|b1|i1|c238|p34; .3333x; KA-10901", + "layer": "0", + "id": "5587AD" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4838.304890070993, + "min_y": 5232.274762975945, + "max_x": 4847.936118865748, + "max_y": 5233.814599832736 + }, + "value": "\\pi-2.47024; \\fArial|b1|i1|c238|p34; .3333x; KF-10901A", + "layer": "0", + "id": "5587B1" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4790.756943580121, + "min_y": 5214.280700657153, + "max_x": 4800.3881723748755, + "max_y": 5215.820537513944 + }, + "value": "\\pi-1.59916; \\fArial|b1|i1|c238|p34; .3333x; KD-10901", + "layer": "0", + "id": "5587B5" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4816.867774635499, + "min_y": 5202.209989031016, + "max_x": 4826.499003430254, + "max_y": 5203.749825887808 + }, + "value": "\\pi-2.52276; \\fArial|b1|i1|c238|p34; .3333x; KF-10901B", + "layer": "0", + "id": "5587B9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4861.09736900813, + "min_y": 5200.866945110417, + "max_x": 4870.728597802885, + "max_y": 5202.406781967208 + }, + "value": "\\pi-4.11648; \\fArial|b1|i1|c238|p34; .3333x; KR-10901A/B", + "layer": "0", + "id": "5587BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5135.712413002958, + "max_x": 5146.390298980868, + "max_y": 5183.95574140306 + }, + "value": null, + "layer": "TITLE", + "id": "5587C1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5174.163490538639, + "max_x": 5146.390298980868, + "max_y": 5174.163490538639 + }, + "value": null, + "layer": "TITLE", + "id": "5587C2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5152.79387570636, + "max_x": 5146.390298980868, + "max_y": 5152.79387570636 + }, + "value": null, + "layer": "TITLE", + "id": "5587C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5135.712413002958, + "max_x": 5146.390298980868, + "max_y": 5142.109068290229 + }, + "value": null, + "layer": "TITLE", + "id": "5587C7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5138.907506746046, + "max_x": 5105.526731635141, + "max_y": 5138.907506746046 + }, + "value": null, + "layer": "TITLE", + "id": "5587C9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5096.374193679473, + "min_y": 5136.749258288854, + "max_x": 5099.443476536674, + "max_y": 5141.333730526919 + }, + "value": "NONE", + "layer": "1", + "id": "5587CA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.582841242843, + "min_y": 5136.775261754414, + "max_x": 5089.694163353233, + "max_y": 5140.934884754825 + }, + "value": "JOB NO.", + "layer": "1", + "id": "5587CD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5106.974582663037, + "min_y": 5140.080100161535, + "max_x": 5112.0859047734275, + "max_y": 5141.29708161639 + }, + "value": "DWG NO.", + "layer": "1", + "id": "5587D2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5150.563116989165, + "max_x": 5089.324391860561, + "max_y": 5151.78009844402 + }, + "value": "TITLE :", + "layer": "1", + "id": "5587D4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5171.932731821445, + "max_x": 5089.324391860561, + "max_y": 5173.1497132763 + }, + "value": "ONWER :", + "layer": "1", + "id": "5587D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5083.633179148829, + "min_y": 5181.924334433769, + "max_x": 5093.361915277588, + "max_y": 5185.817665848911 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "5587D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5140.368776157371, + "min_y": 5137.10945804043, + "max_x": 5145.338196821984, + "max_y": 5137.10945804043 + }, + "value": null, + "layer": "TITLE", + "id": "5587D7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5183.95574140306, + "max_x": 5146.390298980868, + "max_y": 5207.321551323115 + }, + "value": null, + "layer": "TITLE", + "id": "5587DC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5142.228470838378, + "min_y": 5137.91833562276, + "max_x": 5143.392675036262, + "max_y": 5139.858675952567 + }, + "value": "3", + "layer": "0", + "id": "5587DE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5102.069241559666, + "min_y": 5167.485563390677, + "max_x": 5147.536424385638, + "max_y": 5170.098619874929 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "5587E0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5096.178859507634, + "min_y": 5168.898264918418, + "max_x": 5097.571792744309, + "max_y": 5170.28549198633 + }, + "value": null, + "layer": "0-BAS", + "id": "5587E9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5097.025771398499, + "min_y": 5166.411833871926, + "max_x": 5103.951024114266, + "max_y": 5167.521615526252 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "5587F7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5161.247924405302, + "max_x": 5092.975336225126, + "max_y": 5162.464905860157 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "5587F9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5112.167468889404, + "min_y": 5148.429070654028, + "max_x": 5122.918329853181, + "max_y": 5150.6688333548145 + }, + "value": "OFF SITE", + "layer": "0", + "id": "5587FA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5104.353940006646, + "min_y": 5143.949545252455, + "max_x": 5125.855661934199, + "max_y": 5146.189307953242 + }, + "value": "AIR P&I DIAGRAM", + "layer": "0", + "id": "5587FB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5087.449424553237, + "min_y": 5177.246652356296, + "max_x": 5132.916607379209, + "max_y": 5179.859708840548 + }, + "value": "72MT/D SOLVENT RECOVERY PLANT", + "layer": "SH1", + "id": "5587FC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229218, + "min_y": 5186.907396672051, + "max_x": 5146.390298980872, + "max_y": 5186.907396672051 + }, + "value": null, + "layer": "0", + "id": "5587FF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5186.907396672093, + "max_x": 5086.673700066423, + "max_y": 5193.712114889031 + }, + "value": null, + "layer": "0", + "id": "558800" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5193.712114889031, + "max_x": 5086.673700066423, + "max_y": 5200.516833106011 + }, + "value": null, + "layer": "0", + "id": "558802" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5131.586694818798, + "min_y": 5184.720764723576, + "max_x": 5134.219257519601, + "max_y": 5185.817665848911 + }, + "value": "APPD", + "layer": "0", + "id": "558807" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5126.240181311359, + "min_y": 5184.720764723576, + "max_x": 5128.872744012163, + "max_y": 5185.817665848911 + }, + "value": "CHKD", + "layer": "0", + "id": "558809" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5120.522572749054, + "min_y": 5184.720764723576, + "max_x": 5123.155135449858, + "max_y": 5185.817665848911 + }, + "value": "DRWN", + "layer": "0", + "id": "55880B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5104.37924238452, + "min_y": 5184.720764723576, + "max_x": 5111.618789811729, + "max_y": 5185.817665848911 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "55880C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5138.637816888873, + "min_y": 5184.668524637341, + "max_x": 5142.586660940078, + "max_y": 5185.7654257626755 + }, + "value": "REMARK", + "layer": "0", + "id": "55880E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5083.271340957997, + "min_y": 5200.516833106011, + "max_x": 5086.673700066474, + "max_y": 5207.321551323511 + }, + "value": null, + "layer": "0", + "id": "55880F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229208, + "min_y": 5190.309755780562, + "max_x": 5146.390298980872, + "max_y": 5190.309755780562 + }, + "value": null, + "layer": "0", + "id": "558812" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229201, + "min_y": 5193.712114889073, + "max_x": 5146.390298980872, + "max_y": 5193.712114889073 + }, + "value": null, + "layer": "0", + "id": "558813" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229191, + "min_y": 5197.114473997583, + "max_x": 5146.390298980872, + "max_y": 5197.114473997583 + }, + "value": null, + "layer": "0", + "id": "558814" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229182, + "min_y": 5200.516833106094, + "max_x": 5146.390298980872, + "max_y": 5200.516833106094 + }, + "value": null, + "layer": "0", + "id": "558815" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229172, + "min_y": 5203.919192214605, + "max_x": 5146.390298980872, + "max_y": 5203.919192214605 + }, + "value": null, + "layer": "0", + "id": "558816" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5207.321551323115, + "max_x": 5146.390298980872, + "max_y": 5207.321551323115 + }, + "value": null, + "layer": "0", + "id": "558817" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5101.605557914754, + "min_y": 5156.080709182758, + "max_x": 5124.460800156516, + "max_y": 5158.321419206461 + }, + "value": "HANMO CORPORATION", + "layer": "0", + "id": "558818" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5096.053611081504, + "min_y": 5157.484475953982, + "max_x": 5099.448626268931, + "max_y": 5157.484475953982 + }, + "value": null, + "layer": "0", + "id": "558819" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5191.531694192455, + "max_x": 5085.153743796853, + "max_y": 5192.464928651116 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "55881A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5194.934053300937, + "max_x": 5085.153743796853, + "max_y": 5195.867287759598 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "55881B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5198.349503874759, + "max_x": 5085.153743796853, + "max_y": 5199.28273833342 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "55881C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5201.751862983242, + "max_x": 5085.153743796853, + "max_y": 5202.685097441903 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "55881D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121657, + "min_y": 5205.167313557105, + "max_x": 5085.1537437968545, + "max_y": 5206.100548015766 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "55881E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5188.142426549323, + "max_x": 5085.153743796853, + "max_y": 5189.075661007984 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "55881F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5102.327899652543, + "min_y": 5188.143829206325, + "max_x": 5111.28695045569, + "max_y": 5189.077063664986 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "558820" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5120.683784746088, + "min_y": 5188.143829206299, + "max_x": 5123.483488122072, + "max_y": 5189.07706366496 + }, + "value": "K.S.Y", + "layer": "REV.UPDATE", + "id": "558821" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5116.33522610903, + "min_y": 5137.232581167281, + "max_x": 5132.634084879409, + "max_y": 5139.043565475101 + }, + "value": "SARF-#10-UFD-IA", + "layer": "0", + "id": "558822" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5113.720914368526, + "min_y": 5184.850595837028, + "max_x": 5115.400736394116, + "max_y": 5185.783830295689 + }, + "value": "J.W", + "layer": "REV.UPDATE", + "id": "558823" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5126.243357489715, + "min_y": 5188.186224619681, + "max_x": 5129.043060865699, + "max_y": 5189.119459078342 + }, + "value": "J.O.Y", + "layer": "REV.UPDATE", + "id": "558824" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5131.831128001497, + "min_y": 5188.198380980352, + "max_x": 5134.630831377481, + "max_y": 5189.131615439013 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "558825" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5278.280017246038, + "max_x": 5069.326683854284, + "max_y": 5278.280017246039 + }, + "value": null, + "layer": "0", + "id": "55882F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5334.061843941743, + "max_x": 5069.326683854284, + "max_y": 5334.061843941744 + }, + "value": null, + "layer": "0", + "id": "558830" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5389.843670637447, + "max_x": 5069.326683854284, + "max_y": 5389.843670637449 + }, + "value": null, + "layer": "0", + "id": "558831" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4920.188006684526, + "min_y": 5207.748734191513, + "max_x": 4932.282725268775, + "max_y": 5208.868615541906 + }, + "value": "IA-10900-25A-F1A-n", + "layer": "LINENO", + "id": "558832" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5032.800132296221, + "min_y": 5255.689219225407, + "max_x": 5044.89485088047, + "max_y": 5256.809100575801 + }, + "value": "IA-10900-25A-F1A-n", + "layer": "LINENO", + "id": "558833" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4993.223036178981, + "min_y": 5193.997086653521, + "max_x": 5018.568069844345, + "max_y": 5196.998971857059 + }, + "value": "IA-10901-15A-F1A-n", + "layer": "LINENO", + "id": "558834" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5015.472472736664, + "min_y": 5193.848952967524, + "max_x": 5040.368410738037, + "max_y": 5197.766572644605 + }, + "value": "IA-10903-15A-F1A-n", + "layer": "LINENO", + "id": "558836" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4981.875964564157, + "min_y": 5193.997086653521, + "max_x": 4996.24270882942, + "max_y": 5198.082757756875 + }, + "value": "IA-10905-15A-F1A-n", + "layer": "LINENO", + "id": "558838" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5041.321348099955, + "min_y": 5193.997086653521, + "max_x": 5053.4160666842035, + "max_y": 5195.116968003915 + }, + "value": "IA-10906-15A-F1A-n", + "layer": "LINENO", + "id": "558839" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5028.108044682118, + "min_y": 5213.17474214549, + "max_x": 5040.202763266367, + "max_y": 5214.294623495884 + }, + "value": "IA-10907-15A-F1A-n", + "layer": "LINENO", + "id": "55883A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4985.61627170807, + "min_y": 5214.87764898368, + "max_x": 5005.849714579629, + "max_y": 5215.997530334073 + }, + "value": "IA-10909-15A-F1A-n", + "layer": "LINENO", + "id": "55883B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5046.372193006278, + "min_y": 5213.17474214549, + "max_x": 5058.466911590527, + "max_y": 5214.294623495884 + }, + "value": "IA-10908-15A-F1A-n", + "layer": "LINENO", + "id": "55883C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5009.887086978446, + "min_y": 5308.855475088242, + "max_x": 5030.980927039263, + "max_y": 5309.975356438636 + }, + "value": "IA-10912-15A-F1A-n", + "layer": "LINENO", + "id": "55883E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4991.888844025308, + "min_y": 5308.855475088242, + "max_x": 5012.982684086127, + "max_y": 5309.975356438636 + }, + "value": "IA-10915-15A-F1A-n", + "layer": "LINENO", + "id": "55883F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5002.833248519653, + "min_y": 5363.78411388145, + "max_x": 5027.605673018902, + "max_y": 5364.903995231851 + }, + "value": "IA-10918-15A-F1A-n", + "layer": "LINENO", + "id": "558842" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4977.477836689655, + "min_y": 5363.78411388145, + "max_x": 5002.250261188903, + "max_y": 5364.9039952318435 + }, + "value": "IA-10920-15A-F1A-n", + "layer": "LINENO", + "id": "558844" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4993.493804451808, + "min_y": 5323.574238243542, + "max_x": 5005.588523036056, + "max_y": 5324.694119593935 + }, + "value": "IA-10900-25A-F1A-n", + "layer": "LINENO", + "id": "558846" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5053.293424932615, + "min_y": 5208.901058464465, + "max_x": 5057.655957259846, + "max_y": 5211.169488083918 + }, + "value": null, + "layer": "VV-BALL", + "id": "558848" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5052.032098050284, + "min_y": 5209.352922392707, + "max_x": 5053.396799813256, + "max_y": 5210.717624155679 + }, + "value": null, + "layer": "VV-BALL", + "id": "55884B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5056.843909199473, + "min_y": 5208.901058464467, + "max_x": 5058.402544826773, + "max_y": 5211.16948808392 + }, + "value": null, + "layer": "UTIL", + "id": "55884F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4996.973793105175, + "min_y": 5212.559196489076, + "max_x": 4998.213406018401, + "max_y": 5214.827626108529 + }, + "value": null, + "layer": "VV-BALL", + "id": "558854" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4999.371358020093, + "min_y": 5212.559196489076, + "max_x": 5003.733890347323, + "max_y": 5214.827626108529 + }, + "value": null, + "layer": "VV-BALL", + "id": "558855" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4998.110031137763, + "min_y": 5213.011060417319, + "max_x": 4999.474732900735, + "max_y": 5214.375762180291 + }, + "value": null, + "layer": "VV-BALL", + "id": "558858" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5002.921842286951, + "min_y": 5212.559196489078, + "max_x": 5004.480477914251, + "max_y": 5214.827626108531 + }, + "value": null, + "layer": "UTIL", + "id": "55885C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5004.647165869858, + "min_y": 5378.174665355435, + "max_x": 5016.741884454107, + "max_y": 5379.294546705828 + }, + "value": "IA-10900-25A-F1A-n", + "layer": "LINENO", + "id": "55885F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5017.718802709667, + "min_y": 5289.377804166761, + "max_x": 5021.451740544311, + "max_y": 5323.119239493294 + }, + "value": null, + "layer": "PID", + "id": "558860" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5017.718802709667, + "min_y": 5291.244273084085, + "max_x": 5017.718802709667, + "max_y": 5303.941584001321 + }, + "value": null, + "layer": "PID", + "id": "558861" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4990.721438279962, + "min_y": 5289.377804166761, + "max_x": 4994.454376114605, + "max_y": 5323.119239493294 + }, + "value": null, + "layer": "PID", + "id": "558865" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4990.721438279962, + "min_y": 5291.244273084085, + "max_x": 4990.721438279962, + "max_y": 5303.941584001321 + }, + "value": null, + "layer": "PID", + "id": "558866" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5014.343548689305, + "min_y": 5348.203859591556, + "max_x": 5018.076486523948, + "max_y": 5377.719666605188 + }, + "value": null, + "layer": "PID", + "id": "55886A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5014.343548689305, + "min_y": 5350.070328508881, + "max_x": 5014.343548689305, + "max_y": 5361.807761978003 + }, + "value": null, + "layer": "PID", + "id": "55886B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5001.665842774306, + "min_y": 5348.203859591556, + "max_x": 5005.39878060895, + "max_y": 5377.719666605188 + }, + "value": null, + "layer": "PID", + "id": "55886C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5001.665842774306, + "min_y": 5350.070328508881, + "max_x": 5001.665842774306, + "max_y": 5361.807761978003 + }, + "value": null, + "layer": "PID", + "id": "55886D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4988.988136859307, + "min_y": 5348.203859591556, + "max_x": 4992.72107469395, + "max_y": 5377.719666605188 + }, + "value": null, + "layer": "PID", + "id": "55886E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4988.988136859307, + "min_y": 5350.070328508881, + "max_x": 4988.988136859307, + "max_y": 5361.807761978003 + }, + "value": null, + "layer": "PID", + "id": "55886F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4976.310430944308, + "min_y": 5348.203859591556, + "max_x": 4980.043368778952, + "max_y": 5377.719666605188 + }, + "value": null, + "layer": "PID", + "id": "558870" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4976.310430944308, + "min_y": 5350.070328508881, + "max_x": 4976.310430944308, + "max_y": 5361.807761978003 + }, + "value": null, + "layer": "PID", + "id": "558871" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4971.062349831227, + "min_y": 5291.244273084085, + "max_x": 5033.523983062266, + "max_y": 5323.119239493297 + }, + "value": null, + "layer": "UTIL", + "id": "558872" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5008.719681233099, + "min_y": 5291.244273084085, + "max_x": 5012.452619067743, + "max_y": 5323.119239493294 + }, + "value": null, + "layer": "UTIL", + "id": "558873" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4999.720559756529, + "min_y": 5289.377804166761, + "max_x": 5003.453497591173, + "max_y": 5291.244273084085 + }, + "value": null, + "layer": "PID", + "id": "558879" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5008.719681233099, + "min_y": 5289.377804166761, + "max_x": 5012.452619067743, + "max_y": 5291.244273084085 + }, + "value": null, + "layer": "PID", + "id": "55887E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4970.107099368241, + "min_y": 5376.585451795468, + "max_x": 5033.523983062266, + "max_y": 5378.85388141492 + }, + "value": null, + "layer": "UTIL", + "id": "558890" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4969.795646516327, + "min_y": 5321.985024683574, + "max_x": 4971.354282143628, + "max_y": 5324.253454303028 + }, + "value": null, + "layer": "UTIL", + "id": "558895" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4870.178516114584, + "min_y": 5220.001908956928, + "max_x": 4872.448940712343, + "max_y": 5224.522287386799 + }, + "value": null, + "layer": "PSV", + "id": "55889A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4870.190519616415, + "min_y": 5219.273986079172, + "max_x": 4873.176863590097, + "max_y": 5222.272333554686 + }, + "value": null, + "layer": "PSV", + "id": "55889D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4873.176863590097, + "min_y": 5221.420924330526, + "max_x": 4877.61189500248, + "max_y": 5221.420924330526 + }, + "value": null, + "layer": "UTIL", + "id": "5588A7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4878.007525029656, + "min_y": 5220.061759438429, + "max_x": 4885.799099525018, + "max_y": 5223.075408420526 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "5588A8" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4872.566150743214, + "min_y": 5229.652582339427, + "max_x": 4887.497902081793, + "max_y": 5230.9591105815525 + }, + "value": ".9; PSV-10902 SP : 0.99 MPa Ax20A", + "layer": "PSV", + "id": "5588AA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4911.891294071139, + "min_y": 5217.862090571366, + "max_x": 4915.251294071139, + "max_y": 5221.26424913421 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "5588AE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.135811315045, + "min_y": 5212.144685911694, + "max_x": 4916.275993681949, + "max_y": 5216.590869423449 + }, + "value": null, + "layer": "0", + "id": "5588B1" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4913.426702385036, + "min_y": 5212.664115363712, + "max_x": 4914.072277836923, + "max_y": 5213.3096908155985 + }, + "value": null, + "layer": "0", + "id": "5588B3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4910.848533850204, + "min_y": 5214.3376044625775, + "max_x": 4916.875723228652, + "max_y": 5222.403448370132 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5588B6" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4912.244354666719, + "min_y": 5212.675951350226, + "max_x": 4915.25462555524, + "max_y": 5215.686222238746 + }, + "value": null, + "layer": "0", + "id": "5588B7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4916.829877323475, + "min_y": 5214.156121702271, + "max_x": 4917.695265235787, + "max_y": 5215.164662674767 + }, + "value": null, + "layer": "0", + "id": "5588C3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4777.905219031929, + "min_y": 5186.81596636516, + "max_x": 4825.543712491702, + "max_y": 5241.7392193882 + }, + "value": null, + "layer": "0", + "id": "5588CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4777.905219031929, + "min_y": 5182.502621886912, + "max_x": 4840.209083717751, + "max_y": 5194.56991046086 + }, + "value": null, + "layer": "0", + "id": "5588D0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4819.869471818025, + "min_y": 5223.16487972874, + "max_x": 4826.151399825747, + "max_y": 5225.433309348193 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588D2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4777.91778892221, + "min_y": 5223.16487972874, + "max_x": 4818.711519816334, + "max_y": 5225.433309348193 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588D3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4818.608144935694, + "min_y": 5223.616743656983, + "max_x": 4819.972846698666, + "max_y": 5224.981445419955 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5197.719576616361, + "max_x": 4832.934830874767, + "max_y": 5202.650957046111 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588DD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5194.575424134507, + "max_x": 4832.934830874767, + "max_y": 5196.56162461467 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588DE" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4831.118265183558, + "min_y": 5196.458249734029, + "max_x": 4832.48296694653, + "max_y": 5197.822951497001 + }, + "value": null, + "layer": "VV-BALL", + "id": "5588E1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4840.941932420951, + "min_y": 5183.931487461196, + "max_x": 4847.997184928429, + "max_y": 5185.238015703322 + }, + "value": "DRAIN OUT", + "layer": "PID", + "id": "5588E8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4997.3911617684935, + "min_y": 5200.049165400675, + "max_x": 4997.996329509688, + "max_y": 5200.654333141869 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "5588E9" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4998.589828613127, + "min_y": 5200.244803088941, + "max_x": 4998.9917638506095, + "max_y": 5200.6431360963525 + }, + "value": "R", + "layer": "PSV", + "id": "5588EA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4998.175485595257, + "min_y": 5199.615120837907, + "max_x": 4998.175485595257, + "max_y": 5199.73960218494 + }, + "value": null, + "layer": "0", + "id": "5588EE" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4997.391161768494, + "min_y": 5199.73960218494, + "max_x": 4999.125817500211, + "max_y": 5200.963896357605 + }, + "value": null, + "layer": "0", + "id": "5588EF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.832049166531, + "min_y": 5200.077590056849, + "max_x": 5007.582910130308, + "max_y": 5201.570765190707 + }, + "value": "0.7->0.29MPa", + "layer": "14-D-PIPELINE-LINE", + "id": "5588F1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4993.750182082273, + "min_y": 5194.44615875175, + "max_x": 4998.175836412386, + "max_y": 5197.679894890053 + }, + "value": null, + "layer": "0", + "id": "5588F2" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5024.413654455476, + "min_y": 5200.120634676091, + "max_x": 5025.01882219667, + "max_y": 5200.725802417285 + }, + "value": null, + "layer": "ECT-FITTINGS", + "id": "558904" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5025.612321300108, + "min_y": 5200.316272364355, + "max_x": 5026.014256537591, + "max_y": 5200.714605371767 + }, + "value": "R", + "layer": "PSV", + "id": "558905" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5025.197978282238, + "min_y": 5199.686590113322, + "max_x": 5025.197978282238, + "max_y": 5199.811071460355 + }, + "value": null, + "layer": "0", + "id": "558909" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5024.413654455475, + "min_y": 5199.811071460355, + "max_x": 5026.148310187193, + "max_y": 5201.03536563302 + }, + "value": null, + "layer": "0", + "id": "55890A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5023.854541853513, + "min_y": 5201.234430522022, + "max_x": 5034.60540281729, + "max_y": 5202.72760565588 + }, + "value": "0.7->0.29MPa", + "layer": "14-D-PIPELINE-LINE", + "id": "55890C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5020.772674769254, + "min_y": 5194.518502778101, + "max_x": 5025.198329099367, + "max_y": 5197.752238916404 + }, + "value": null, + "layer": "0", + "id": "55890D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5018.100968559092, + "min_y": 5197.181640597107, + "max_x": 5023.604105947496, + "max_y": 5198.911495087103 + }, + "value": "15Ax15A", + "layer": "0", + "id": "55891C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.11208765858, + "min_y": 5191.507516099801, + "max_x": 5094.711494410547, + "max_y": 5192.440750558462 + }, + "value": "2025.06.17", + "layer": "REV.UPDATE", + "id": "55892E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5106.709005838614, + "min_y": 5191.631865722561, + "max_x": 5111.188531240187, + "max_y": 5192.565100181222 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55892F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.070712700728, + "min_y": 5194.720169541497, + "max_x": 5094.670119452695, + "max_y": 5195.653404000158 + }, + "value": "2025.06.19", + "layer": "REV.UPDATE", + "id": "558935" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5106.655249985001, + "min_y": 5194.9406063413, + "max_x": 5111.134775386575, + "max_y": 5195.873840799961 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "558936" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4819.297765064717, + "min_y": 5425.633804166816, + "max_x": 4881.914203611889, + "max_y": 5427.614026235024 + }, + "value": ".9;KF-10901A INSTRUMENT AIR FILTER", + "layer": "0", + "id": "558945" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4771.427176844567, + "min_y": 5389.079371029957, + "max_x": 4867.424371968433, + "max_y": 5391.227637189871 + }, + "value": ".9; SIZE : ID254.6 x 1,314H VOLUME : 0.14m3 DP/OP : 0.97Mpa / 0.7Mpa DT/OT : 250 %%DC / 180 %%DC MATERIAL : SPP", + "layer": "0", + "id": "558949" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4771.468346214811, + "min_y": 5397.270642820547, + "max_x": 4867.724111998756, + "max_y": 5399.690752615799 + }, + "value": ".9;KR-10901A/B DESICCANT AIR DRYER", + "layer": "0", + "id": "55894D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4814.776608351114, + "min_y": 5418.173876346205, + "max_x": 4846.506579945594, + "max_y": 5419.9738763462055 + }, + "value": ".9; SIZE : W740 x D350 x H640 VOLUME : 5.1m3/min DP/OP : 0.98Mpa / 0.7Mpa DT/OT : 100 %%DC / 50 %%DC MATERIAL : SS275", + "layer": "0", + "id": "558955" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4777.155613058017, + "min_y": 5417.576204782601, + "max_x": 4808.885584652497, + "max_y": 5419.376204782601 + }, + "value": ".9; SIZE : %%C648 x 1,259H VOLUME : 0.5m3 DP/OP : 0.98MPa / 0.88MPa DT/OT : 80 %%DC / 50 %%DC MATERIAL : SS400", + "layer": "0", + "id": "55895D" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4738.110606132674, + "min_y": 5425.164410270654, + "max_x": 4814.14452649776, + "max_y": 5427.3052825991535 + }, + "value": ".9;D-10901 INSTRUMENT AIR RECEIVER TANK", + "layer": "0", + "id": "558961" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4738.631158928367, + "min_y": 5389.558035874769, + "max_x": 4770.361130522847, + "max_y": 5391.3580358747695 + }, + "value": ".9; SIZE : W641 x D785 x H254 VOLUME : 2.6m3/min DP/OP : 0.98Mpa / 0.7Mpa DT/OT : 100 %%DC / 50 %%DC MATERIAL : SS275", + "layer": "0", + "id": "558965" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4738.912667691815, + "min_y": 5397.41566643772, + "max_x": 4770.642639286295, + "max_y": 5399.21566643772 + }, + "value": ".9;KD-10901 REFRIGERANT AIR DRYER", + "layer": "0", + "id": "558969" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4738.083483513906, + "min_y": 5416.309061712093, + "max_x": 4773.657511850922, + "max_y": 5418.1090617120935 + }, + "value": ".9; SIZE : W1,000 x D1,400 x H1,350 PRESSURE : 0.85MPa CAPACITY : 2.2m3/min POWER : 15kW", + "layer": "0", + "id": "55898F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4837.120688046439, + "min_y": 5313.744329020115, + "max_x": 4855.520662616523, + "max_y": 5315.054329020116 + }, + "value": ".9; PSV-10900 SP : 0.93 MPa Ax8A", + "layer": "PSV", + "id": "558993" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.237780660338, + "min_y": 5198.087508190838, + "max_x": 5094.837187412305, + "max_y": 5199.020742649499 + }, + "value": "2025.07.01", + "layer": "REV.UPDATE", + "id": "55899B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5106.623660415472, + "min_y": 5198.155179972701, + "max_x": 5111.103185817045, + "max_y": 5199.088414431362 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "55899C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4849.745037160154, + "min_y": 5418.411412267291, + "max_x": 4881.4750087546345, + "max_y": 5420.211412267291 + }, + "value": ".9; SIZE : ID105 x 433H VOLUME : 5.0m3/min DP/OP : 0.99Mpa / 0.7Mpa DT/OT : 60 %%DC / 38 %%DC MATERIAL : STS304", + "layer": "0", + "id": "5589A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.254384947264, + "min_y": 5201.54967789644, + "max_x": 5094.853791699231, + "max_y": 5202.482912355101 + }, + "value": "2025.07.07", + "layer": "REV.UPDATE", + "id": "5589A9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5106.399632996389, + "min_y": 5201.746986010707, + "max_x": 5110.879158397963, + "max_y": 5202.680220469368 + }, + "value": "REVISION", + "layer": "REV.UPDATE", + "id": "5589AA" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2845.119954338514, + "min_y": 4876.032437577843, + "max_x": 2871.250519181027, + "max_y": 4877.832437577843 + }, + "value": "\\pi7.73599; .9; SC-10128 \\pi7.11173;\\lSCRUBBER", + "layer": "0", + "id": "5589AB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2847.162268640404, + "min_y": 4868.263293618587, + "max_x": 2887.912259007326, + "max_y": 4870.0632936185875 + }, + "value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "5589AF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2847.058370112451, + "min_y": 4849.882317285921, + "max_x": 2867.589528202997, + "max_y": 4851.682317285921 + }, + "value": "\\pi3.78668; .9; P-10128A/B \\pi0.77308;SCRUBBER PUMP", + "layer": "0", + "id": "5589B3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2848.440708606707, + "min_y": 4842.207488594331, + "max_x": 2872.766430637727, + "max_y": 4844.007488594331 + }, + "value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,600", + "layer": "0", + "id": "5589B7" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2852.911245812326, + "min_y": 4864.865725461753, + "max_x": 2884.166757286649, + "max_y": 4871.981995524698 + }, + "value": null, + "layer": "0", + "id": "5589BB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2881.749371799211, + "min_y": 4870.030960337949, + "max_x": 2882.349371799211, + "max_y": 4871.030960337949 + }, + "value": "1", + "layer": "0", + "id": "5589BD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1831.817087722598, + "min_y": 5350.617501060855, + "max_x": 1847.8481971814, + "max_y": 5351.492737834548 + }, + "value": null, + "layer": "0", + "id": "5589C4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1831.94769591749, + "min_y": 5347.773575334603, + "max_x": 1836.6511975891422, + "max_y": 5348.893456684997 + }, + "value": "80Ax65A", + "layer": "VALVE NO", + "id": "5589C6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3318.430449860462, + "min_y": 5389.26694870859, + "max_x": 3328.147406666935, + "max_y": 5390.886441509669 + }, + "value": "E-10217", + "layer": "0", + "id": "5589C9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.303719196405, + "min_y": 5386.518622000506, + "max_x": 3307.3259157223847, + "max_y": 5388.011797134364 + }, + "value": "CWS-10619-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5589CE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5400.912912589577, + "max_x": 3314.693114758655, + "max_y": 5400.912912589577 + }, + "value": null, + "layer": "0", + "id": "5589CF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5400.904095931814, + "max_x": 3285.717616982289, + "max_y": 5400.904095931814 + }, + "value": null, + "layer": "0", + "id": "5589D0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 3290.231025295204, + "min_y": 5402.102055129375, + "max_x": 3307.2532218211836, + "max_y": 5403.595230263233 + }, + "value": "CWR-10629-25A-S2A-N", + "layer": "14-D-PIPELINE-LINE", + "id": "5589D2" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2278.863537718238, + "min_y": 5350.515722356412, + "max_x": 2290.674117857573, + "max_y": 5351.564823463128 + }, + "value": null, + "layer": "0", + "id": "5589D6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2277.735176841913, + "min_y": 5350.378412542237, + "max_x": 2277.735176841913, + "max_y": 5351.691267702776 + }, + "value": null, + "layer": "0", + "id": "5589DB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5354.429314324177, + "max_x": 2365.66342491488, + "max_y": 5356.420571545495 + }, + "value": null, + "layer": "0", + "id": "5589E3" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 2360.591473935428, + "min_y": 5354.685918888814, + "max_x": 2366.4052374318962, + "max_y": 5363.33170025234 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "5589E9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.308702240199, + "max_x": 2365.66342491488, + "max_y": 5362.727339828837 + }, + "value": null, + "layer": "0", + "id": "558A06" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2360.576133742403, + "min_y": 5357.409935152624, + "max_x": 2365.278589116614, + "max_y": 5360.997133087088 + }, + "value": "10213A", + "layer": "INSTRUMENT", + "id": "558A0A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5358.558899453647, + "max_x": 1919.870827474475, + "max_y": 5360.415288377923 + }, + "value": null, + "layer": "0", + "id": "558A0D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5351.274424704072, + "max_x": 1919.870827474475, + "max_y": 5353.265681925392 + }, + "value": null, + "layer": "0", + "id": "558A11" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1914.798876495023, + "min_y": 5351.531029268712, + "max_x": 1920.6126399914915, + "max_y": 5360.176810632237 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "558A17" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1914.783536301999, + "min_y": 5354.25504553252, + "max_x": 1919.4859916762105, + "max_y": 5357.842243466985 + }, + "value": "10113A", + "layer": "INSTRUMENT", + "id": "558A38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1918.457805808861, + "min_y": 5358.04809140784, + "max_x": 1925.8490227214575, + "max_y": 5359.167972758233 + }, + "value": "D10113BA-06", + "layer": "VALVE NO", + "id": "558A3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2288.686681748848, + "min_y": 5348.228828183014, + "max_x": 2291.018440450364, + "max_y": 5350.515722356412 + }, + "value": null, + "layer": "0", + "id": "558A41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2291.447840985707, + "min_y": 5348.228828183014, + "max_x": 2293.19842437674, + "max_y": 5348.228828183014 + }, + "value": null, + "layer": "0", + "id": "558A48" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2367.742822734204, + "min_y": 5321.604619715198, + "max_x": 2372.446324405856, + "max_y": 5322.7245010655915 + }, + "value": "25Ax15A", + "layer": "VALVE NO", + "id": "558A4B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4054.586126008162, + "min_y": 5250.424161240445, + "max_x": 4071.746126008162, + "max_y": 5251.854161240445 + }, + "value": "SW-10803-20A-F1A-E50", + "layer": "LINENO", + "id": "558A5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2742.558295065036, + "min_y": 5145.547611789642, + "max_x": 2744.528103479315, + "max_y": 5164.121924799292 + }, + "value": null, + "layer": "0", + "id": "558A61" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2755.633133243009, + "min_y": 5145.472475042168, + "max_x": 2757.602941657288, + "max_y": 5165.649165549815 + }, + "value": null, + "layer": "0", + "id": "558A62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2742.558295065036, + "min_y": 5166.71027167673, + "max_x": 2742.558295065036, + "max_y": 5171.992279893753 + }, + "value": null, + "layer": "0", + "id": "558A63" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2747.018710913074, + "min_y": 5146.522949746951, + "max_x": 2748.806512577633, + "max_y": 5147.663057307941 + }, + "value": null, + "layer": "0", + "id": "558A65" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2744.855269331291, + "min_y": 5146.537108210043, + "max_x": 2746.69154506109, + "max_y": 5147.648898844848 + }, + "value": null, + "layer": "0", + "id": "558A68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2744.75356316462, + "min_y": 5148.245674048894, + "max_x": 2747.4412784055644, + "max_y": 5149.738849182752 + }, + "value": "15A", + "layer": "14-D-PIPELINE-LINE", + "id": "558A77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2760.093549091048, + "min_y": 5146.447812999478, + "max_x": 2761.881350755607, + "max_y": 5147.587920560468 + }, + "value": null, + "layer": "0", + "id": "558A7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 2757.930107509265, + "min_y": 5146.461971462571, + "max_x": 2759.766383239063, + "max_y": 5147.573762097375 + }, + "value": null, + "layer": "0", + "id": "558A7D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4552.274609269681, + "min_y": 5385.376129405134, + "max_x": 4564.3693278539295, + "max_y": 5386.496010755527 + }, + "value": "N2-10710-25A-F1A-n", + "layer": "LINENO", + "id": "558A92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4551.6963914272, + "min_y": 5405.324644970773, + "max_x": 4563.791110011449, + "max_y": 5406.444526321166 + }, + "value": "N2-10711-25A-F1A-n", + "layer": "LINENO", + "id": "558A93" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4295.91478592656, + "min_y": 5160.70791387411, + "max_x": 4327.64475752104, + "max_y": 5162.50791387411 + }, + "value": ".9; SIZE : ID89.1 x 336H VOLUME : 0.002m3 DP/OP : 0.99Mpa / 0.15Mpa DT/OT : 40 %%DC / AMB MATERIAL : STS304 INSULATION : NONE", + "layer": "0", + "id": "561077" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4295.91478592656, + "min_y": 5168.159163346725, + "max_x": 4327.64475752104, + "max_y": 5169.959163346725 + }, + "value": ".9;F-10900 N2 FILTER", + "layer": "0", + "id": "56107B" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4439.35115172088, + "min_y": 5169.334064598153, + "max_x": 4448.982380515635, + "max_y": 5170.873901454945 + }, + "value": "\\pi-0.4914; \\fArial|b1|i1|c238|p34; .3333x; F-10900", + "layer": "0", + "id": "5610B0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4297.734708878258, + "min_y": 5175.071525941042, + "max_x": 4298.629861245335, + "max_y": 5176.563446552836 + }, + "value": "1", + "layer": "0", + "id": "561146" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4435.767630206919, + "min_y": 5172.49361820173, + "max_x": 4436.662782573996, + "max_y": 5173.985538813524 + }, + "value": "1", + "layer": "0", + "id": "561176" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4313.342366891655, + "min_y": 5405.698685618102, + "max_x": 4396.942390745162, + "max_y": 5408.698685618102 + }, + "value": "<수정사 \\l 항 > . N2 Filter Tag No. 기 \\l 입 \\l 및 Short Spec 기 \\l 재 . N2 Filter 후 \\l 단 플랜 \\l 지 표 \\l 시", + "layer": "0", + "id": "5611A8" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1650.985727088118, + "min_y": 5250.893500186957, + "max_x": 1667.128089400635, + "max_y": 5259.885889033368 + }, + "value": null, + "layer": "0", + "id": "5611DB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 1658.990147469383, + "min_y": 5401.541489263084, + "max_x": 1778.2953757750265, + "max_y": 5404.541489263084 + }, + "value": "<수정사 \\l 항 > . T-9123/T-9124  T-9124 (T-9123에 \\l 서 P-10101 \\l 로 가 \\l 는 라 \\l 인 삭 \\l 제 : Pump trip \\l 시 배관 \\l 에 Air \\l 가 차 \\l 서 Suction \\l 이 불가 \\l 능 ) . P-10118  T-9123 삭 \\l 제 (T/B 운전 \\l 시 Side 생산 \\l 은 T-10101 \\l 로 \\l 만 진 \\l 행 ) . R/D Line \\l 에 valve 설 \\l 치 (#9-1 에서 \\l 도 라인 \\l 이 가 \\l 기 때문 \\l 에 세척 \\l 필 ) . 9-1 \\l 차 5F Side Cut  C-10111 Feed Line 구 \\l 성 협의 \\l 중 . PSV-10117 CWR Line Header \\l 에 물 \\l 림", + "layer": "0", + "id": "56120D" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1912.149189260411, + "min_y": 5250.033562125804, + "max_x": 1984.777591102556, + "max_y": 5258.618207671752 + }, + "value": null, + "layer": "0", + "id": "561244" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1982.308779873597, + "min_y": 5255.14764415784, + "max_x": 1983.2039322406733, + "max_y": 5256.639564769634 + }, + "value": "2", + "layer": "0", + "id": "561274" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5274.924542958456, + "max_x": 1957.626740763788, + "max_y": 5275.933831746741 + }, + "value": null, + "layer": "0", + "id": "5612AB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5275.103734986257, + "max_x": 1956.8025404202247, + "max_y": 5275.749789121245 + }, + "value": null, + "layer": "0", + "id": "5612AC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5274.924542958456, + "max_x": 1955.403073995256, + "max_y": 5275.933831746741 + }, + "value": null, + "layer": "0", + "id": "5612B3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5265.617833730601, + "max_x": 1957.626740763788, + "max_y": 5266.627122518888 + }, + "value": null, + "layer": "0", + "id": "561394" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5265.797025758403, + "max_x": 1956.8025404202247, + "max_y": 5266.443079893391 + }, + "value": null, + "layer": "0", + "id": "561395" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5265.617833730601, + "max_x": 1955.403073995256, + "max_y": 5266.627122518888 + }, + "value": null, + "layer": "0", + "id": "56139C" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1954.607318706119, + "min_y": 5269.191866472139, + "max_x": 1958.693838014491, + "max_y": 5276.800124941292 + }, + "value": null, + "layer": "0", + "id": "5613CF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1954.947405754414, + "min_y": 5264.637283573239, + "max_x": 1958.177157681182, + "max_y": 5267.382572710991 + }, + "value": null, + "layer": "0", + "id": "5613FD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1956.225026785532, + "min_y": 5269.820106396799, + "max_x": 1957.1201791526084, + "max_y": 5271.312027008593 + }, + "value": "3", + "layer": "0", + "id": "56142D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4941.430094226793, + "min_y": 5228.912490918253, + "max_x": 4957.546684095524, + "max_y": 5230.591302362913 + }, + "value": "#9 Plant Utility", + "layer": "PID", + "id": "561463" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4938.724219587142, + "min_y": 5225.398642816504, + "max_x": 4942.457157421786, + "max_y": 5243.729174529696 + }, + "value": null, + "layer": "PID", + "id": "561464" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4942.457157421786, + "min_y": 5227.265111733828, + "max_x": 4942.457157421786, + "max_y": 5243.729174529696 + }, + "value": null, + "layer": "PID", + "id": "561465" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5107.647819253656, + "min_y": 4824.442619298467, + "max_x": 5133.768330390727, + "max_y": 4828.4110251228785 + }, + "value": "SARF-UTILITY-UFD-AIR", + "layer": "0", + "id": "561A1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4822.826356509446, + "max_x": 5147.063535571487, + "max_y": 4871.069684909549 + }, + "value": null, + "layer": "TITLE", + "id": "561A20" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4861.277434045129, + "max_x": 5147.063535571487, + "max_y": 4861.277434045129 + }, + "value": null, + "layer": "TITLE", + "id": "561A21" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4839.907819212849, + "max_x": 5147.063535571487, + "max_y": 4839.907819212849 + }, + "value": null, + "layer": "TITLE", + "id": "561A22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4822.826356509446, + "max_x": 5147.063535571487, + "max_y": 4829.223011796718 + }, + "value": null, + "layer": "TITLE", + "id": "561A26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4826.021450252535, + "max_x": 5106.199968225758, + "max_y": 4826.021450252535 + }, + "value": null, + "layer": "TITLE", + "id": "561A28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5097.047430270092, + "min_y": 4823.863201795342, + "max_x": 5100.116713127294, + "max_y": 4828.447674033408 + }, + "value": "NONE", + "layer": "1", + "id": "561A29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.256077833462, + "min_y": 4823.889205260902, + "max_x": 5090.367399943852, + "max_y": 4828.048828261315 + }, + "value": "JOB NO.", + "layer": "1", + "id": "561A2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4837.677060495654, + "max_x": 5089.997628451179, + "max_y": 4838.894041950509 + }, + "value": "TITLE :", + "layer": "1", + "id": "561A33" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4859.046675327934, + "max_x": 5089.997628451179, + "max_y": 4860.263656782789 + }, + "value": "ONWER :", + "layer": "1", + "id": "561A34" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.306415739448, + "min_y": 4869.038277940259, + "max_x": 5094.035151868207, + "max_y": 4872.9316093554 + }, + "value": "PROJECT NAME", + "layer": "1", + "id": "561A35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5141.04201274799, + "min_y": 4824.223401546919, + "max_x": 5146.011433412603, + "max_y": 4824.223401546919 + }, + "value": null, + "layer": "TITLE", + "id": "561A36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4871.069684909549, + "max_x": 5147.063535571487, + "max_y": 4894.435494829604 + }, + "value": null, + "layer": "TITLE", + "id": "561A3B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5142.901707428997, + "min_y": 4825.032279129249, + "max_x": 5144.065911626881, + "max_y": 4826.972619459056 + }, + "value": "1", + "layer": "0", + "id": "561A3D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5102.742478150285, + "min_y": 4854.599506897166, + "max_x": 5148.2096609762575, + "max_y": 4857.212563381418 + }, + "value": "SHINAM REFINED FUEL CO.,LTD.", + "layer": "SH1", + "id": "561A3F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5096.852096098253, + "min_y": 4856.012208424907, + "max_x": 5098.245029334929, + "max_y": 4857.39943549282 + }, + "value": null, + "layer": "0-BAS", + "id": "561A48" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5097.699007989119, + "min_y": 4853.525777378415, + "max_x": 5104.624260704886, + "max_y": 4854.635559032741 + }, + "value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "layer": "8-치수선", + "id": "561A56" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4730.019720684982, + "min_y": 4822.826356509446, + "max_x": 5147.063535571487, + "max_y": 5119.827782991894 + }, + "value": null, + "layer": "0", + "id": "561A57" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4848.361867911792, + "max_x": 5093.648572815743, + "max_y": 4849.578849366647 + }, + "value": "CONTRACTOR :", + "layer": "1", + "id": "561A58" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5112.840705480023, + "min_y": 4835.543014160517, + "max_x": 5123.5915664438, + "max_y": 4837.782776861303 + }, + "value": "OFF SITE", + "layer": "0", + "id": "561A59" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5105.027176597266, + "min_y": 4831.063488758944, + "max_x": 5126.528898524819, + "max_y": 4833.303251459731 + }, + "value": "AIR P&I DIAGRAM", + "layer": "0", + "id": "561A5A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5088.122661143856, + "min_y": 4864.360595862785, + "max_x": 5133.5898439698285, + "max_y": 4866.9736523470365 + }, + "value": "72MT/D SOLVENT RECOVERY PLANT", + "layer": "SH1", + "id": "561A5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819837, + "min_y": 4874.02134017854, + "max_x": 5147.06353557149, + "max_y": 4874.02134017854 + }, + "value": null, + "layer": "0", + "id": "561A5E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5132.259931409417, + "min_y": 4871.834708230065, + "max_x": 5134.8924941102205, + "max_y": 4872.9316093554 + }, + "value": "APPD", + "layer": "0", + "id": "561A66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5126.913417901978, + "min_y": 4871.834708230065, + "max_x": 5129.545980602782, + "max_y": 4872.9316093554 + }, + "value": "CHKD", + "layer": "0", + "id": "561A68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.195809339673, + "min_y": 4871.834708230065, + "max_x": 5123.828372040477, + "max_y": 4872.9316093554 + }, + "value": "DRWN", + "layer": "0", + "id": "561A6A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5105.052478975139, + "min_y": 4871.834708230065, + "max_x": 5112.292026402348, + "max_y": 4872.9316093554 + }, + "value": "DESCRIPTION", + "layer": "0", + "id": "561A6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5139.311053479491, + "min_y": 4871.782468143829, + "max_x": 5143.259897530696, + "max_y": 4872.879369269163 + }, + "value": "REMARK", + "layer": "0", + "id": "561A6D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819826, + "min_y": 4877.423699287049, + "max_x": 5147.06353557149, + "max_y": 4877.423699287049 + }, + "value": null, + "layer": "0", + "id": "561A71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819819, + "min_y": 4880.826058395561, + "max_x": 5147.06353557149, + "max_y": 4880.826058395561 + }, + "value": null, + "layer": "0", + "id": "561A72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.80844081981, + "min_y": 4884.228417504073, + "max_x": 5147.06353557149, + "max_y": 4884.228417504073 + }, + "value": null, + "layer": "0", + "id": "561A73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819799, + "min_y": 4887.630776612584, + "max_x": 5147.06353557149, + "max_y": 4887.630776612584 + }, + "value": null, + "layer": "0", + "id": "561A74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819792, + "min_y": 4891.033135721094, + "max_x": 5147.06353557149, + "max_y": 4891.033135721094 + }, + "value": null, + "layer": "0", + "id": "561A75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4894.435494829604, + "max_x": 5147.06353557149, + "max_y": 4894.435494829604 + }, + "value": null, + "layer": "0", + "id": "561A76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5102.278794505371, + "min_y": 4843.194652689247, + "max_x": 5125.134036747132, + "max_y": 4845.435362712949 + }, + "value": "HANMO CORPORATION", + "layer": "0", + "id": "561A77" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5107.0103975072, + "min_y": 4878.672288182009, + "max_x": 5110.37004155838, + "max_y": 4879.60552264067 + }, + "value": "UPDATE", + "layer": "REV.UPDATE", + "id": "561A79" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4878.645637698943, + "max_x": 5085.826980387472, + "max_y": 4879.578872157604 + }, + "value": "1", + "layer": "REV.UPDATE", + "id": "561A7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.625032295526, + "min_y": 4878.658729164324, + "max_x": 5095.2244390474925, + "max_y": 4879.591963622985 + }, + "value": "2015.12.21", + "layer": "REV.UPDATE", + "id": "561A7B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4882.047996807425, + "max_x": 5085.826980387472, + "max_y": 4882.981231266086 + }, + "value": "2", + "layer": "REV.UPDATE", + "id": "561A7C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4885.463447381248, + "max_x": 5085.826980387472, + "max_y": 4886.396681839909 + }, + "value": "3", + "layer": "REV.UPDATE", + "id": "561A7D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4888.865806489731, + "max_x": 5085.826980387472, + "max_y": 4889.799040948392 + }, + "value": "4", + "layer": "REV.UPDATE", + "id": "561A7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712277, + "min_y": 4892.281257063594, + "max_x": 5085.826980387475, + "max_y": 4893.214491522255 + }, + "value": "5", + "layer": "REV.UPDATE", + "id": "561A7F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4875.256370055812, + "max_x": 5085.826980387472, + "max_y": 4876.189604514473 + }, + "value": "0", + "layer": "REV.UPDATE", + "id": "561A80" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5103.001136243161, + "min_y": 4875.257772712815, + "max_x": 5111.960187046308, + "max_y": 4876.191007171476 + }, + "value": "FOR CONSTRUCTION", + "layer": "REV.UPDATE", + "id": "561A81" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5089.625032295526, + "min_y": 4875.256370055812, + "max_x": 5095.2244390474925, + "max_y": 4876.189604514473 + }, + "value": "2008.09.24", + "layer": "REV.UPDATE", + "id": "561A82" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.468766344531, + "min_y": 4875.257772712787, + "max_x": 5124.268469720515, + "max_y": 4876.191007171448 + }, + "value": "Y.J.S", + "layer": "REV.UPDATE", + "id": "561A83" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5126.987410350059, + "min_y": 4875.257772712787, + "max_x": 5129.787113726043, + "max_y": 4876.191007171448 + }, + "value": "J.D.O", + "layer": "REV.UPDATE", + "id": "561A84" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5132.562089396488, + "min_y": 4875.257772712787, + "max_x": 5135.361792772472, + "max_y": 4876.191007171448 + }, + "value": "S.J.J", + "layer": "REV.UPDATE", + "id": "561A85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.442115861494, + "min_y": 4878.660131821298, + "max_x": 5124.241819237478, + "max_y": 4879.593366279959 + }, + "value": "P.J.S", + "layer": "REV.UPDATE", + "id": "561A86" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5126.978526855713, + "min_y": 4878.672288181983, + "max_x": 5129.778230231697, + "max_y": 4879.605522640644 + }, + "value": "B.M.J", + "layer": "REV.UPDATE", + "id": "561A87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5132.654664758621, + "min_y": 4878.672288181983, + "max_x": 5135.454368134605, + "max_y": 4879.605522640644 + }, + "value": "H.J.I", + "layer": "REV.UPDATE", + "id": "561A88" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5052.087860519538, + "max_x": 4791.683628987088, + "max_y": 5056.716269890105 + }, + "value": null, + "layer": "0", + "id": "561A8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5057.874221891796, + "max_x": 4788.629627216802, + "max_y": 5061.013979555269 + }, + "value": null, + "layer": "0", + "id": "561A8E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4786.813061525589, + "min_y": 5056.612895009465, + "max_x": 4788.1777632885605, + "max_y": 5057.977596772437 + }, + "value": null, + "layer": "VV-BALL", + "id": "561A93" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4783.76247457243, + "min_y": 5061.0139795552695, + "max_x": 4791.228350241719, + "max_y": 5068.479855224559 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "561A98" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4785.451838219032, + "min_y": 5062.415288155037, + "max_x": 4789.480454593683, + "max_y": 5067.082751509953 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "561A99" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5029.044712432082, + "max_x": 4798.417250548783, + "max_y": 5033.195583065477 + }, + "value": null, + "layer": "0", + "id": "561A9C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5025.900559950227, + "max_x": 4798.417250548783, + "max_y": 5027.886760430391 + }, + "value": null, + "layer": "VV-BALL", + "id": "561A9E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4796.600684857565, + "min_y": 5027.78338554975, + "max_x": 4797.965386620537, + "max_y": 5029.148087312722 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AA1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.431626514894, + "min_y": 5058.392913449328, + "max_x": 4798.702051112654, + "max_y": 5064.093939141941 + }, + "value": null, + "layer": "0", + "id": "561AA6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4779.011941463866, + "min_y": 4997.78769941092, + "max_x": 4783.715443135518, + "max_y": 4999.747491774108 + }, + "value": "AIR", + "layer": "PID", + "id": "561AA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4777.600436024943, + "min_y": 4993.794702180594, + "max_x": 4783.479813114508, + "max_y": 4995.754494543782 + }, + "value": "DRYER", + "layer": "PID", + "id": "561AA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4778.281958004121, + "min_y": 5014.383274460436, + "max_x": 4792.392463019079, + "max_y": 5016.343066823624 + }, + "value": "AFTER COOLER", + "layer": "PID", + "id": "561AAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5072.900778586816, + "max_x": 4803.534189724235, + "max_y": 5089.416125126658 + }, + "value": null, + "layer": "0", + "id": "561AAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4779.141143140233, + "min_y": 5082.314894098781, + "max_x": 4795.703968549427, + "max_y": 5086.868147052046 + }, + "value": "AIR COMPRESSOR", + "layer": "0", + "id": "561AB3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4802.41430837384, + "min_y": 5072.900778586816, + "max_x": 4807.018141495178, + "max_y": 5089.416125126658 + }, + "value": null, + "layer": "0", + "id": "561AB4" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5093.17195581046, + "max_x": 4785.0979051264, + "max_y": 5094.711792667251 + }, + "value": "\\pi0.23403; \\fArial|b1|i1|c238|p34; .3333x; K-2901", + "layer": "0", + "id": "561AB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 5082.44442742427, + "max_x": 4808.437156868777, + "max_y": 5088.145453116884 + }, + "value": null, + "layer": "0", + "id": "561ABA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 5048.013048791361, + "max_x": 4791.683628987088, + "max_y": 5072.900778586816 + }, + "value": null, + "layer": "UTIL", + "id": "561ABD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 5002.221488276883, + "max_x": 4806.488188110638, + "max_y": 5009.980626669435 + }, + "value": null, + "layer": "0", + "id": "561ABF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 5009.494859202801, + "max_x": 4806.021232788578, + "max_y": 5012.616897042392 + }, + "value": null, + "layer": "0", + "id": "561AC0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5013.774849044083, + "max_x": 4806.021232788578, + "max_y": 5017.926037946415 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AC6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 5012.513522161752, + "max_x": 4805.569368860342, + "max_y": 5013.878223924724 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4997.354694870813, + "max_x": 4806.021232788578, + "max_y": 5001.063536275192 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AD0" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 5000.9601613945515, + "max_x": 4805.569368860342, + "max_y": 5002.324863157523 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4985.586952246057, + "max_x": 4844.834469976966, + "max_y": 4985.586952246057 + }, + "value": null, + "layer": "PID", + "id": "561AD8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4990.06647764763, + "max_x": 4844.834469976966, + "max_y": 4990.06647764763 + }, + "value": null, + "layer": "PID", + "id": "561AD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4994.546003049205, + "max_x": 4844.834469976966, + "max_y": 4994.546003049205 + }, + "value": null, + "layer": "PID", + "id": "561ADA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777 + }, + "value": null, + "layer": "PID", + "id": "561ADB" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4994.546003049203, + "max_x": 4830.276012421853, + "max_y": 4999.025528450777 + }, + "value": null, + "layer": "PID", + "id": "561ADD" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4985.586952246057, + "max_x": 4847.074232677753, + "max_y": 4990.066477647631 + }, + "value": null, + "layer": "PID", + "id": "561ADE" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4985.586952246057, + "max_x": 4830.276012421853, + "max_y": 4990.066477647631 + }, + "value": null, + "layer": "PID", + "id": "561AE3" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4994.546003049203, + "max_x": 4847.074232677753, + "max_y": 4999.025528450777 + }, + "value": null, + "layer": "PID", + "id": "561AE5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4836.558857225998, + "min_y": 4996.014621833667, + "max_x": 4839.918501277178, + "max_y": 4998.814325209651 + }, + "value": "A", + "layer": "PID", + "id": "561AF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4835.669348980617, + "min_y": 4986.289113903794, + "max_x": 4837.349171006207, + "max_y": 4989.088817279778 + }, + "value": "B", + "layer": "PID", + "id": "561AF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4847.073978306442, + "min_y": 4995.685305911083, + "max_x": 4850.196016146032, + "max_y": 4997.953735530535 + }, + "value": null, + "layer": "0", + "id": "561AF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4995.685305911083, + "max_x": 4855.994716894842, + "max_y": 4997.953735530535 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AF8" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4850.092641265392, + "min_y": 4996.137169839326, + "max_x": 4851.4573430283635, + "max_y": 4997.501871602298 + }, + "value": null, + "layer": "VV-BALL", + "id": "561AFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4995.597263382745, + "max_x": 4825.797145030137, + "max_y": 4997.865693002196 + }, + "value": null, + "layer": "0", + "id": "561B00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4995.597263382745, + "max_x": 4821.517155188854, + "max_y": 4997.865693002196 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B02" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4821.413780308215, + "min_y": 4996.049127310987, + "max_x": 4822.778482071187, + "max_y": 4997.413829073959 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4847.074232677752, + "min_y": 4986.692500137117, + "max_x": 4850.196270517344, + "max_y": 4988.96092975657 + }, + "value": null, + "layer": "0", + "id": "561B0A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4986.692500137117, + "max_x": 4855.994716894842, + "max_y": 4988.96092975657 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B0C" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4850.092895636705, + "min_y": 4987.14436406536, + "max_x": 4851.457597399677, + "max_y": 4988.509065828332 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4986.604457608779, + "max_x": 4825.797399401452, + "max_y": 4988.872887228231 + }, + "value": null, + "layer": "0", + "id": "561B14" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4986.604457608779, + "max_x": 4821.51740956017, + "max_y": 4988.872887228231 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B16" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4821.414034679529, + "min_y": 4987.056321537021, + "max_x": 4822.778736442501, + "max_y": 4988.421023299993 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B19" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4987.738672418505, + "max_x": 4817.243928728249, + "max_y": 4996.73147819247 + }, + "value": null, + "layer": "UTIL", + "id": "561B1F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4987.826714946844, + "max_x": 4861.45045242532, + "max_y": 4997.155598839955 + }, + "value": null, + "layer": "UTIL", + "id": "561B22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4986.688916916121, + "max_x": 4806.007770342958, + "max_y": 4993.836245437272 + }, + "value": null, + "layer": "0", + "id": "561B24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4986.688916916121, + "max_x": 4808.644040715915, + "max_y": 4993.369290115214 + }, + "value": null, + "layer": "0", + "id": "561B25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4991.100860495761, + "max_x": 4811.78819319777, + "max_y": 4993.369290115214 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B2B" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4808.540665835274, + "min_y": 4991.552724424004, + "max_x": 4809.905367598246, + "max_y": 4992.917426186976 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B2E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4991.100860495761, + "max_x": 4797.090679948713, + "max_y": 4993.369290115214 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B35" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4796.987305068073, + "min_y": 4991.552724424004, + "max_x": 4798.3520068310445, + "max_y": 4992.917426186976 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B38" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4986.944998504034, + "max_x": 4874.990013672686, + "max_y": 4994.092327025184 + }, + "value": null, + "layer": "0", + "id": "561B3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4986.944998504034, + "max_x": 4867.716642746767, + "max_y": 4993.625371703126 + }, + "value": null, + "layer": "0", + "id": "561B3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4861.45045242532, + "min_y": 4991.356942083672, + "max_x": 4863.436652905484, + "max_y": 4993.625371703126 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B44" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4863.333278024844, + "min_y": 4991.808806011916, + "max_x": 4864.697979787816, + "max_y": 4993.173507774888 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B47" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4991.356942083672, + "max_x": 5131.055578888764, + "max_y": 4993.625371703126 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B4E" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4874.886638792045, + "min_y": 4991.808806011916, + "max_x": 4876.251340555017, + "max_y": 4993.173507774888 + }, + "value": null, + "layer": "VV-BALL", + "id": "561B51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4797.921763003293, + "min_y": 4981.633505853686, + "max_x": 4809.6805171824235, + "max_y": 4983.593298216874 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561B58" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4864.042503631804, + "min_y": 4982.211701559179, + "max_x": 4875.801257810935, + "max_y": 4984.1714939223675 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561B59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 5020.351114975652, + "max_x": 4814.029807467484, + "max_y": 5053.549583272459 + }, + "value": null, + "layer": "UTIL", + "id": "561B5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 5020.351114975652, + "max_x": 4814.029807467484, + "max_y": 5020.351114975652 + }, + "value": null, + "layer": "UTIL", + "id": "561B5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 5017.926037946415, + "max_x": 4804.887017978852, + "max_y": 5017.926037946415 + }, + "value": null, + "layer": "UTIL", + "id": "561B5D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4997.354694870813, + "max_x": 4804.887017978852, + "max_y": 4997.354694870813 + }, + "value": null, + "layer": "UTIL", + "id": "561B60" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4811.373175490592, + "min_y": 5006.72050960442, + "max_x": 4823.131929669723, + "max_y": 5008.680301967608 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561B62" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4778.316559611003, + "min_y": 5043.887723709244, + "max_x": 4787.947788405758, + "max_y": 5045.427560566035 + }, + "value": "\\pi0.23963; \\fArial|b1|i1|c238|p34; .3333x; D-2901", + "layer": "0", + "id": "561B63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4776.333590468051, + "min_y": 5036.184923438987, + "max_x": 4789.6601785377325, + "max_y": 5040.104508165364 + }, + "value": "AIR RECIEVER TANK", + "layer": "PID", + "id": "561B67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4827.770098803281, + "min_y": 5000.940374194606, + "max_x": 4844.232354654064, + "max_y": 5002.246902436732 + }, + "value": "REGENERATOR AIR DRYER", + "layer": "PID", + "id": "561B6F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4865.220195111042, + "min_y": 4998.822352156843, + "max_x": 4874.851423905797, + "max_y": 5000.362189013635 + }, + "value": "\\pi0.30686; \\fArial|b1|i1|c238|p34; .3333x; F-2952", + "layer": "0", + "id": "561B70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5020.651495647978, + "max_x": 4910.157101018226, + "max_y": 5022.330307092638 + }, + "value": "LCV-2131", + "layer": "PID", + "id": "561B75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5016.171970246405, + "max_x": 4910.105729388019, + "max_y": 5017.850781691065 + }, + "value": "FCV-2122", + "layer": "PID", + "id": "561B76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5011.692444844832, + "max_x": 4910.157101018226, + "max_y": 5013.371256289492 + }, + "value": "LCV-2705", + "layer": "PID", + "id": "561B77" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4901.107048222928, + "min_y": 5007.212919443258, + "max_x": 4911.179916890885, + "max_y": 5008.891730887918 + }, + "value": "XV-3470 AB", + "layer": "PID", + "id": "561B78" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.716692636068, + "min_y": 5002.733394041683, + "max_x": 4909.767700703638, + "max_y": 5004.412205486343 + }, + "value": "XV-2136", + "layer": "PID", + "id": "561B79" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5015.144907051412, + "max_x": 4913.842660987974, + "max_y": 5027.836895689204 + }, + "value": null, + "layer": "PID", + "id": "561B7A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5019.624432452985, + "max_x": 4915.709129905295, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "PID", + "id": "561B7B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5015.144907051412, + "max_x": 4915.709129905295, + "max_y": 5018.877844886056 + }, + "value": null, + "layer": "PID", + "id": "561B80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5006.185856248265, + "max_x": 4913.842660987974, + "max_y": 5014.398319484484 + }, + "value": null, + "layer": "PID", + "id": "561B84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5010.665381649839, + "max_x": 4915.709129905295, + "max_y": 5014.398319484484 + }, + "value": null, + "layer": "PID", + "id": "561B85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5006.185856248265, + "max_x": 4915.709129905295, + "max_y": 5009.91879408291 + }, + "value": null, + "layer": "PID", + "id": "561B8A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5001.706330846691, + "max_x": 4913.842660987974, + "max_y": 5005.439268681336 + }, + "value": null, + "layer": "PID", + "id": "561B8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5001.706330846691, + "max_x": 4915.709129905295, + "max_y": 5005.439268681336 + }, + "value": null, + "layer": "PID", + "id": "561B8F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5003.572799764014, + "max_x": 4899.284203432859, + "max_y": 5070.765680787618 + }, + "value": null, + "layer": "UTIL", + "id": "561B94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5008.052325165587, + "max_x": 4899.284203432859, + "max_y": 5008.052325165587 + }, + "value": null, + "layer": "UTIL", + "id": "561B96" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5021.747426815335, + "max_x": 4897.0267002290175, + "max_y": 5022.867308165728 + }, + "value": "15A", + "layer": "PID", + "id": "561B99" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5017.267901413762, + "max_x": 4897.0267002290175, + "max_y": 5018.387782764155 + }, + "value": "15A", + "layer": "PID", + "id": "561B9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5012.788376012188, + "max_x": 4897.0267002290175, + "max_y": 5013.908257362581 + }, + "value": "15A", + "layer": "PID", + "id": "561B9B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5008.308850610615, + "max_x": 4897.0267002290175, + "max_y": 5009.428731961008 + }, + "value": "15A", + "layer": "PID", + "id": "561B9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5003.829325209042, + "max_x": 4897.0267002290175, + "max_y": 5004.949206559435 + }, + "value": "15A", + "layer": "PID", + "id": "561B9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4893.337639306134, + "min_y": 5066.345507208724, + "max_x": 4897.0267002290175, + "max_y": 5067.662562181466 + }, + "value": "20A", + "layer": "PID", + "id": "561B9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5025.131021049553, + "max_x": 4910.105729388019, + "max_y": 5026.809832494213 + }, + "value": "FCV-2123", + "layer": "PID", + "id": "561B9F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5025.970426771881, + "max_x": 4915.709129905295, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "PID", + "id": "561BA1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5025.970426771881, + "max_x": 4899.284203432859, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "UTIL", + "id": "561BA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5029.610546451126, + "max_x": 4910.105729388019, + "max_y": 5031.2893578957855 + }, + "value": "FCV-2124", + "layer": "PID", + "id": "561BA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5028.583483256134, + "max_x": 4913.842660987974, + "max_y": 5036.795946492351 + }, + "value": null, + "layer": "PID", + "id": "561BA7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5030.449952173455, + "max_x": 4915.709129905295, + "max_y": 5034.929477575029 + }, + "value": null, + "layer": "PID", + "id": "561BA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5034.090071852699, + "max_x": 4910.105729388019, + "max_y": 5035.768883297359 + }, + "value": "FCV-2131", + "layer": "PID", + "id": "561BAD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5034.929477575029, + "max_x": 4915.709129905295, + "max_y": 5039.409002976602 + }, + "value": null, + "layer": "PID", + "id": "561BAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5034.929477575029, + "max_x": 4899.284203432859, + "max_y": 5034.929477575029 + }, + "value": null, + "layer": "UTIL", + "id": "561BB3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5038.569597254273, + "max_x": 4910.157101018226, + "max_y": 5040.2484086989325 + }, + "value": "LCV-2121", + "layer": "PID", + "id": "561BB4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5037.54253405928, + "max_x": 4913.842660987974, + "max_y": 5045.754997295499 + }, + "value": null, + "layer": "PID", + "id": "561BB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5039.409002976602, + "max_x": 4915.709129905295, + "max_y": 5043.888528378176 + }, + "value": null, + "layer": "PID", + "id": "561BB6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.007478741271, + "min_y": 5043.049122655848, + "max_x": 4910.065773675637, + "max_y": 5044.727934100508 + }, + "value": "PCV-2121", + "layer": "PID", + "id": "561BBB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5043.888528378176, + "max_x": 4915.709129905295, + "max_y": 5048.36805377975 + }, + "value": null, + "layer": "PID", + "id": "561BBD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5043.888528378176, + "max_x": 4899.284203432859, + "max_y": 5043.888528378176 + }, + "value": null, + "layer": "UTIL", + "id": "561BC1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5047.52864805742, + "max_x": 4910.157101018226, + "max_y": 5049.2074595020795 + }, + "value": "LCV-2111", + "layer": "PID", + "id": "561BC2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5046.501584862427, + "max_x": 4913.842660987974, + "max_y": 5054.714048098645 + }, + "value": null, + "layer": "PID", + "id": "561BC3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5048.36805377975, + "max_x": 4915.709129905295, + "max_y": 5052.847579181324 + }, + "value": null, + "layer": "PID", + "id": "561BC4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5052.008173458994, + "max_x": 4910.157101018226, + "max_y": 5053.686984903654 + }, + "value": "LCV-2113", + "layer": "PID", + "id": "561BC9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5052.847579181324, + "max_x": 4915.709129905295, + "max_y": 5057.327104582896 + }, + "value": null, + "layer": "PID", + "id": "561BCB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5052.847579181324, + "max_x": 4899.284203432859, + "max_y": 5052.847579181324 + }, + "value": null, + "layer": "UTIL", + "id": "561BCF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5056.487698860568, + "max_x": 4910.105729388019, + "max_y": 5058.166510305228 + }, + "value": "FCV-2111", + "layer": "PID", + "id": "561BD0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5055.460635665575, + "max_x": 4913.842660987974, + "max_y": 5063.673098901793 + }, + "value": null, + "layer": "PID", + "id": "561BD1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5057.327104582896, + "max_x": 4915.709129905295, + "max_y": 5061.80662998447 + }, + "value": null, + "layer": "PID", + "id": "561BD2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.007478741271, + "min_y": 5060.967224262141, + "max_x": 4910.065773675637, + "max_y": 5062.646035706801 + }, + "value": "PCV-2111", + "layer": "PID", + "id": "561BD7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5061.80662998447, + "max_x": 4915.709129905295, + "max_y": 5066.286155386044 + }, + "value": null, + "layer": "PID", + "id": "561BD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5061.80662998447, + "max_x": 4899.284203432859, + "max_y": 5061.80662998447 + }, + "value": null, + "layer": "UTIL", + "id": "561BDD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.06099085607, + "min_y": 5065.446749663714, + "max_x": 4910.119285790435, + "max_y": 5067.125561108374 + }, + "value": "TCV-2111", + "layer": "PID", + "id": "561BDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5064.419686468721, + "max_x": 4913.842660987974, + "max_y": 5072.63214970494 + }, + "value": null, + "layer": "PID", + "id": "561BDF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5066.286155386044, + "max_x": 4915.709129905295, + "max_y": 5070.765680787618 + }, + "value": null, + "layer": "PID", + "id": "561BE0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5069.926275065288, + "max_x": 4910.105729388019, + "max_y": 5071.605086509948 + }, + "value": "FCV-2111", + "layer": "PID", + "id": "561BE5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5070.765680787618, + "max_x": 4915.709129905295, + "max_y": 5075.245206189191 + }, + "value": null, + "layer": "PID", + "id": "561BE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 4996.202285828182, + "max_x": 4899.284203432859, + "max_y": 5075.245206189191 + }, + "value": null, + "layer": "UTIL", + "id": "561BEB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4901.19338110147, + "min_y": 5074.405800466863, + "max_x": 4916.302684103405, + "max_y": 5076.084611911523 + }, + "value": "UTILITY STATION", + "layer": "PID", + "id": "561BEC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 5073.378737271869, + "max_x": 4913.842660987974, + "max_y": 5077.111675106514 + }, + "value": null, + "layer": "PID", + "id": "561BED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5075.245206189191, + "max_x": 4915.709129905295, + "max_y": 5077.111675106514 + }, + "value": null, + "layer": "PID", + "id": "561BEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4889.604701471488, + "min_y": 5002.138976452836, + "max_x": 4891.620487902196, + "max_y": 5003.258857803229 + }, + "value": "20A", + "layer": "PID", + "id": "561BF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5026.226952216909, + "max_x": 4897.0267002290175, + "max_y": 5027.346833567302 + }, + "value": "15A", + "layer": "PID", + "id": "561BF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5030.706477618482, + "max_x": 4897.0267002290175, + "max_y": 5031.826358968875 + }, + "value": "15A", + "layer": "PID", + "id": "561BF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5035.186003020057, + "max_x": 4897.0267002290175, + "max_y": 5036.30588437045 + }, + "value": "15A", + "layer": "PID", + "id": "561BF7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5039.665528421631, + "max_x": 4897.0267002290175, + "max_y": 5040.785409772025 + }, + "value": "15A", + "layer": "PID", + "id": "561BF8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5044.145053823203, + "max_x": 4897.0267002290175, + "max_y": 5045.264935173596 + }, + "value": "15A", + "layer": "PID", + "id": "561BF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5048.624579224777, + "max_x": 4897.0267002290175, + "max_y": 5049.744460575171 + }, + "value": "15A", + "layer": "PID", + "id": "561BFA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5053.104104626351, + "max_x": 4897.0267002290175, + "max_y": 5054.223985976744 + }, + "value": "15A", + "layer": "PID", + "id": "561BFB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5057.583630027924, + "max_x": 4897.0267002290175, + "max_y": 5058.703511378318 + }, + "value": "15A", + "layer": "PID", + "id": "561BFC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5062.063155429498, + "max_x": 4897.0267002290175, + "max_y": 5063.183036779891 + }, + "value": "15A", + "layer": "PID", + "id": "561BFD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5071.022206232646, + "max_x": 4897.0267002290175, + "max_y": 5072.142087583039 + }, + "value": "15A", + "layer": "PID", + "id": "561BFF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5075.501731634219, + "max_x": 4897.0267002290175, + "max_y": 5076.6216129846125 + }, + "value": "20A", + "layer": "PID", + "id": "561C00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5131.055578888764, + "min_y": 4991.356942083672, + "max_x": 5131.802166455692, + "max_y": 4993.625371703126 + }, + "value": null, + "layer": "0", + "id": "561C02" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4889.159306387987, + "min_y": 4992.491156893399, + "max_x": 4891.03175374749, + "max_y": 4996.202334458351 + }, + "value": null, + "layer": "0", + "id": "561C04" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4891.607131623305, + "min_y": 4995.092067043603, + "max_x": 4896.310633294957, + "max_y": 4996.211948393996 + }, + "value": "25Ax20A", + "layer": "PID", + "id": "561C09" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4932.633849810908, + "max_x": 4791.683628987088, + "max_y": 4937.262259181475 + }, + "value": null, + "layer": "0", + "id": "561C0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4938.420211183166, + "max_x": 4788.629627216802, + "max_y": 4941.55996884664 + }, + "value": null, + "layer": "0", + "id": "561C10" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4786.813061525589, + "min_y": 4937.158884300835, + "max_x": 4788.1777632885605, + "max_y": 4938.523586063807 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C15" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4783.76247457243, + "min_y": 4941.559968846639, + "max_x": 4791.228350241719, + "max_y": 4949.025844515929 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "561C1A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4785.962731766043, + "min_y": 4942.961277446407, + "max_x": 4788.984194047031, + "max_y": 4947.628740801323 + }, + "value": "PG", + "layer": "INSTRUMENT", + "id": "561C1B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4909.590701723452, + "max_x": 4798.417250548783, + "max_y": 4913.741572356848 + }, + "value": null, + "layer": "0", + "id": "561C1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4906.446549241597, + "max_x": 4798.417250548783, + "max_y": 4908.43274972176 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C20" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4796.600684857565, + "min_y": 4908.32937484112, + "max_x": 4797.965386620537, + "max_y": 4909.694076604092 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.431626514897, + "min_y": 4938.938902740699, + "max_x": 4798.702051112654, + "max_y": 4946.161959387668 + }, + "value": null, + "layer": "0", + "id": "561C28" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4779.011941463866, + "min_y": 4878.333688702292, + "max_x": 4783.715443135518, + "max_y": 4880.293481065481 + }, + "value": "AIR", + "layer": "PID", + "id": "561C29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4777.600436024943, + "min_y": 4874.340691471966, + "max_x": 4783.479813114508, + "max_y": 4876.300483835154 + }, + "value": "DRYER", + "layer": "PID", + "id": "561C2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4778.281958004121, + "min_y": 4894.929263751806, + "max_x": 4792.392463019079, + "max_y": 4896.889056114994 + }, + "value": "AFTER COOLER", + "layer": "PID", + "id": "561C2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4956.504582200473, + "max_x": 4803.534189724235, + "max_y": 4973.019928740316 + }, + "value": null, + "layer": "0", + "id": "561C2E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4779.141143140233, + "min_y": 4965.918697712439, + "max_x": 4795.703968549427, + "max_y": 4970.471950665702 + }, + "value": "AIR COMPRESSOR", + "layer": "0", + "id": "561C34" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4802.41430837384, + "min_y": 4956.504582200473, + "max_x": 4807.018141495178, + "max_y": 4973.019928740316 + }, + "value": null, + "layer": "0", + "id": "561C35" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4976.775759424118, + "max_x": 4785.0979051264, + "max_y": 4978.31559628091 + }, + "value": "\\pi0.00086; \\fArial|b1|i1|c238|p34; .3333x; K-901A", + "layer": "0", + "id": "561C37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 4966.048231037929, + "max_x": 4808.437156868777, + "max_y": 4971.749256730542 + }, + "value": null, + "layer": "0", + "id": "561C3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 4928.559038082731, + "max_x": 4828.529987430371, + "max_y": 4956.504582200473 + }, + "value": null, + "layer": "UTIL", + "id": "561C3E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 4882.767477568252, + "max_x": 4806.488188110638, + "max_y": 4890.526615960805 + }, + "value": null, + "layer": "0", + "id": "561C40" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 4890.04084849417, + "max_x": 4806.021232788578, + "max_y": 4893.162886333763 + }, + "value": null, + "layer": "0", + "id": "561C41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4894.320838335454, + "max_x": 4806.021232788578, + "max_y": 4898.472027237786 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C47" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 4893.0595114531225, + "max_x": 4805.569368860342, + "max_y": 4894.424213216094 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C4A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4877.900684162185, + "max_x": 4806.021232788578, + "max_y": 4881.609525566561 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C51" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 4881.506150685921, + "max_x": 4805.569368860342, + "max_y": 4882.870852448893 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4866.132941537427, + "max_x": 4844.834469976966, + "max_y": 4866.132941537427 + }, + "value": null, + "layer": "PID", + "id": "561C59" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4870.612466939, + "max_x": 4844.834469976966, + "max_y": 4870.612466939 + }, + "value": null, + "layer": "PID", + "id": "561C5A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4875.091992340575, + "max_x": 4844.834469976966, + "max_y": 4875.091992340575 + }, + "value": null, + "layer": "PID", + "id": "561C5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148 + }, + "value": null, + "layer": "PID", + "id": "561C5C" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4875.0919923405745, + "max_x": 4830.276012421853, + "max_y": 4879.571517742148 + }, + "value": null, + "layer": "PID", + "id": "561C5E" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4866.1329415374275, + "max_x": 4847.074232677753, + "max_y": 4870.612466939001 + }, + "value": null, + "layer": "PID", + "id": "561C5F" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4866.1329415374275, + "max_x": 4830.276012421853, + "max_y": 4870.612466939001 + }, + "value": null, + "layer": "PID", + "id": "561C64" + }, + { + "type": "ARC", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4875.0919923405745, + "max_x": 4847.074232677753, + "max_y": 4879.571517742148 + }, + "value": null, + "layer": "PID", + "id": "561C66" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4836.558857225998, + "min_y": 4876.560611125039, + "max_x": 4839.918501277178, + "max_y": 4879.360314501023 + }, + "value": "A", + "layer": "PID", + "id": "561C75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4835.669348980617, + "min_y": 4866.835103195164, + "max_x": 4837.349171006207, + "max_y": 4869.634806571148 + }, + "value": "B", + "layer": "PID", + "id": "561C76" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4847.073978306442, + "min_y": 4876.231295202453, + "max_x": 4850.196016146032, + "max_y": 4878.499724821907 + }, + "value": null, + "layer": "0", + "id": "561C77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4876.231295202453, + "max_x": 4855.994716894842, + "max_y": 4878.499724821907 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C79" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4850.092641265392, + "min_y": 4876.683159130696, + "max_x": 4851.4573430283635, + "max_y": 4878.047860893668 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C7C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4876.143252674115, + "max_x": 4825.797145030137, + "max_y": 4878.411682293568 + }, + "value": null, + "layer": "0", + "id": "561C81" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4876.143252674115, + "max_x": 4821.517155188854, + "max_y": 4878.411682293568 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C83" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4821.413780308215, + "min_y": 4876.595116602357, + "max_x": 4822.778482071187, + "max_y": 4877.959818365329 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C86" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4847.074232677752, + "min_y": 4867.238489428487, + "max_x": 4850.196270517344, + "max_y": 4869.50691904794 + }, + "value": null, + "layer": "0", + "id": "561C8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4867.238489428487, + "max_x": 4855.994716894842, + "max_y": 4869.50691904794 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C8D" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4850.092895636705, + "min_y": 4867.69035335673, + "max_x": 4851.457597399677, + "max_y": 4869.055055119702 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C90" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4867.150446900148, + "max_x": 4825.797399401452, + "max_y": 4869.418876519602 + }, + "value": null, + "layer": "0", + "id": "561C95" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4867.150446900148, + "max_x": 4821.51740956017, + "max_y": 4869.418876519602 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C97" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4821.414034679529, + "min_y": 4867.602310828392, + "max_x": 4822.778736442501, + "max_y": 4868.9670125913635 + }, + "value": null, + "layer": "VV-BALL", + "id": "561C9A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4868.284661709875, + "max_x": 4817.243928728249, + "max_y": 4877.277467483841 + }, + "value": null, + "layer": "UTIL", + "id": "561CA0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4868.372704238214, + "max_x": 4861.45045242532, + "max_y": 4877.701588131325 + }, + "value": null, + "layer": "UTIL", + "id": "561CA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4867.234906207492, + "max_x": 4806.007770342958, + "max_y": 4874.382234728642 + }, + "value": null, + "layer": "0", + "id": "561CA5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4867.234906207492, + "max_x": 4808.644040715915, + "max_y": 4873.915279406584 + }, + "value": null, + "layer": "0", + "id": "561CA6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4871.646849787131, + "max_x": 4811.78819319777, + "max_y": 4873.915279406584 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CAC" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4808.540665835274, + "min_y": 4872.098713715375, + "max_x": 4809.905367598246, + "max_y": 4873.463415478347 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4871.646849787131, + "max_x": 4797.090679948713, + "max_y": 4873.915279406584 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CB6" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4796.987305068073, + "min_y": 4872.098713715375, + "max_x": 4798.3520068310445, + "max_y": 4873.463415478347 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CB9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4867.490987795404, + "max_x": 4874.990013672686, + "max_y": 4874.638316316555 + }, + "value": null, + "layer": "0", + "id": "561CBE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4867.490987795404, + "max_x": 4867.716642746767, + "max_y": 4874.171360994496 + }, + "value": null, + "layer": "0", + "id": "561CBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4861.45045242532, + "min_y": 4871.902931375043, + "max_x": 4863.436652905484, + "max_y": 4874.171360994496 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CC5" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4863.333278024844, + "min_y": 4872.354795303286, + "max_x": 4864.697979787816, + "max_y": 4873.719497066258 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4871.902931375043, + "max_x": 4987.368526641795, + "max_y": 4874.171360994496 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CCF" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4874.886638792045, + "min_y": 4872.354795303286, + "max_x": 4876.251340555017, + "max_y": 4873.719497066258 + }, + "value": null, + "layer": "VV-BALL", + "id": "561CD2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4797.921763003293, + "min_y": 4862.179495145056, + "max_x": 4809.6805171824235, + "max_y": 4864.139287508244 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561CD9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4864.042503631804, + "min_y": 4862.757690850549, + "max_x": 4875.801257810935, + "max_y": 4864.717483213737 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561CDA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 4900.897104267023, + "max_x": 4814.029807467484, + "max_y": 4934.095572563829 + }, + "value": null, + "layer": "UTIL", + "id": "561CDB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 4900.897104267023, + "max_x": 4814.029807467484, + "max_y": 4900.897104267023 + }, + "value": null, + "layer": "UTIL", + "id": "561CDD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 4898.472027237786, + "max_x": 4804.887017978852, + "max_y": 4898.472027237786 + }, + "value": null, + "layer": "UTIL", + "id": "561CDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4877.900684162185, + "max_x": 4804.887017978852, + "max_y": 4877.900684162185 + }, + "value": null, + "layer": "UTIL", + "id": "561CE1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4811.373175490592, + "min_y": 4887.26649889579, + "max_x": 4823.131929669723, + "max_y": 4889.226291258979 + }, + "value": "AIR FILTER", + "layer": "PID", + "id": "561CE3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4778.316559611003, + "min_y": 4924.433713000613, + "max_x": 4787.947788405758, + "max_y": 4925.973549857405 + }, + "value": "\\pi1.03719; \\fArial|b1|i1|c238|p34; .3333x; D-901", + "layer": "0", + "id": "561CE4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4776.333590468051, + "min_y": 4919.343969214608, + "max_x": 4789.6601785377325, + "max_y": 4920.650497456733 + }, + "value": "AIR RECIEVER TANK", + "layer": "PID", + "id": "561CE8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4827.770098803281, + "min_y": 4881.486363485976, + "max_x": 4844.232354654064, + "max_y": 4882.7928917281015 + }, + "value": "REGENERATOR AIR DRYER", + "layer": "PID", + "id": "561CEF" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4865.220195111042, + "min_y": 4879.368341448213, + "max_x": 4874.851423905797, + "max_y": 4880.908178305004 + }, + "value": "\\pi1.10441; \\fArial|b1|i1|c238|p34; .3333x; F-952", + "layer": "0", + "id": "561CF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4956.504582200473, + "max_x": 4852.062381574615, + "max_y": 4973.019928740316 + }, + "value": null, + "layer": "0", + "id": "561CF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4827.669334990615, + "min_y": 4965.918697712439, + "max_x": 4844.232160399808, + "max_y": 4970.471950665702 + }, + "value": "AIR COMPRESSOR", + "layer": "0", + "id": "561CFA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4850.942500224221, + "min_y": 4956.504582200473, + "max_x": 4855.546333345559, + "max_y": 4973.019928740316 + }, + "value": null, + "layer": "0", + "id": "561CFB" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4976.775759424118, + "max_x": 4833.626096976781, + "max_y": 4978.31559628091 + }, + "value": "\\pi-0.05166; \\fArial|b1|i1|c238|p34; .3333x; K-901B", + "layer": "0", + "id": "561CFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4854.694924121399, + "min_y": 4966.048231037929, + "max_x": 4856.965348719157, + "max_y": 4971.749256730542 + }, + "value": null, + "layer": "0", + "id": "561D01" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4828.529987430371, + "min_y": 4952.866800385867, + "max_x": 4828.529987430371, + "max_y": 4956.504582200473 + }, + "value": null, + "layer": "UTIL", + "id": "561D05" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4928.055123076494, + "min_y": 4891.118552785808, + "max_x": 4934.098844277269, + "max_y": 4892.797364230468 + }, + "value": "분석실 6동", + "layer": "PID", + "id": "561D07" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4927.693381180457, + "min_y": 4886.639027384234, + "max_x": 4936.758962981618, + "max_y": 4888.317838828894 + }, + "value": "IMS #1 5동", + "layer": "PID", + "id": "561D08" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4928.622351493359, + "min_y": 4882.159501982661, + "max_x": 4933.658785827338, + "max_y": 4883.838313427321 + }, + "value": "#1연수실", + "layer": "PID", + "id": "561D09" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4928.298424825111, + "min_y": 4877.679976581088, + "max_x": 4934.342146025886, + "max_y": 4879.358788025748 + }, + "value": "#2 연수실", + "layer": "PID", + "id": "561D0A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4904.601033899847, + "min_y": 4885.611964189242, + "max_x": 4939.920272107483, + "max_y": 4893.82442742546 + }, + "value": null, + "layer": "PID", + "id": "561D0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4890.091489590815, + "max_x": 4941.786741024806, + "max_y": 4893.82442742546 + }, + "value": null, + "layer": "PID", + "id": "561D0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4885.611964189242, + "max_x": 4941.786741024806, + "max_y": 4889.344902023887 + }, + "value": null, + "layer": "PID", + "id": "561D11" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.560084702995, + "min_y": 4876.652913386094, + "max_x": 4939.920272107483, + "max_y": 4884.865376622312 + }, + "value": null, + "layer": "PID", + "id": "561D15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4881.132438787669, + "max_x": 4941.786741024806, + "max_y": 4884.865376622312 + }, + "value": null, + "layer": "PID", + "id": "561D16" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4876.652913386094, + "max_x": 4941.786741024806, + "max_y": 4880.385851220739 + }, + "value": null, + "layer": "PID", + "id": "561D1B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4892.214483953165, + "max_x": 4923.104311348529, + "max_y": 4893.334365303558 + }, + "value": "15A", + "layer": "PID", + "id": "561D1F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4887.734958551591, + "max_x": 4923.104311348529, + "max_y": 4888.854839901985 + }, + "value": "15A", + "layer": "PID", + "id": "561D20" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4883.255433150018, + "max_x": 4923.104311348529, + "max_y": 4884.375314500411 + }, + "value": "15A", + "layer": "PID", + "id": "561D21" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4878.775907748444, + "max_x": 4923.104311348529, + "max_y": 4879.895789098838 + }, + "value": "15A", + "layer": "PID", + "id": "561D22" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4909.080559301421, + "min_y": 4873.037146184771, + "max_x": 4925.36181455237, + "max_y": 4887.478433106564 + }, + "value": null, + "layer": "UTIL", + "id": "561D24" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4918.039610104568, + "min_y": 4873.037146184771, + "max_x": 4925.36181455237, + "max_y": 4878.519382303417 + }, + "value": null, + "layer": "UTIL", + "id": "561D26" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4913.560084702995, + "min_y": 4873.037146184771, + "max_x": 4913.560084702995, + "max_y": 4882.99890770499 + }, + "value": null, + "layer": "UTIL", + "id": "561D28" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4904.601033899847, + "min_y": 4873.037146184771, + "max_x": 4904.601033899847, + "max_y": 4891.957958508137 + }, + "value": null, + "layer": "UTIL", + "id": "561D2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4887.315729741472, + "min_y": 5080.397633867561, + "max_x": 4896.274780544619, + "max_y": 5082.264102784883 + }, + "value": "#2 PLANT", + "layer": "0", + "id": "561D2B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4901.197484939348, + "max_x": 4969.600727227333, + "max_y": 4902.876296384008 + }, + "value": "FCV-124", + "layer": "PID", + "id": "561D2C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4896.717959537775, + "max_x": 4969.600727227333, + "max_y": 4898.396770982435 + }, + "value": "FCV-123", + "layer": "PID", + "id": "561D2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4892.238434136201, + "max_x": 4969.652098857539, + "max_y": 4893.917245580861 + }, + "value": "LCV-131", + "layer": "PID", + "id": "561D2E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4887.758908734628, + "max_x": 4969.600727227333, + "max_y": 4889.437720179288 + }, + "value": "FCV-122", + "layer": "PID", + "id": "561D2F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4963.218977342176, + "min_y": 4883.279383333054, + "max_x": 4969.262698542951, + "max_y": 4884.958194777714 + }, + "value": "XV-705", + "layer": "PID", + "id": "561D30" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4895.690896342782, + "max_x": 4973.786279215585, + "max_y": 4908.382884980574 + }, + "value": null, + "layer": "PID", + "id": "561D31" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4900.170421744356, + "max_x": 4975.652748132906, + "max_y": 4906.516416063252 + }, + "value": null, + "layer": "PID", + "id": "561D32" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4895.690896342782, + "max_x": 4975.652748132906, + "max_y": 4899.423834177427 + }, + "value": null, + "layer": "PID", + "id": "561D37" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4886.731845539635, + "max_x": 4973.786279215585, + "max_y": 4894.944308775854 + }, + "value": null, + "layer": "PID", + "id": "561D3B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4891.211370941209, + "max_x": 4975.652748132906, + "max_y": 4894.944308775854 + }, + "value": null, + "layer": "PID", + "id": "561D3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4886.731845539635, + "max_x": 4975.652748132906, + "max_y": 4890.46478337428 + }, + "value": null, + "layer": "PID", + "id": "561D41" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4882.252320138062, + "max_x": 4973.786279215585, + "max_y": 4885.985257972706 + }, + "value": null, + "layer": "PID", + "id": "561D45" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4882.252320138062, + "max_x": 4975.652748132906, + "max_y": 4885.985257972706 + }, + "value": null, + "layer": "PID", + "id": "561D46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4873.037146184771, + "max_x": 4959.22782166047, + "max_y": 4946.832144677415 + }, + "value": null, + "layer": "UTIL", + "id": "561D4B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4888.598314456957, + "max_x": 4959.22782166047, + "max_y": 4888.598314456957 + }, + "value": null, + "layer": "UTIL", + "id": "561D4D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4902.293416106706, + "max_x": 4956.970318456631, + "max_y": 4903.413297457099 + }, + "value": "15A", + "layer": "PID", + "id": "561D4F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4897.813890705132, + "max_x": 4956.970318456631, + "max_y": 4898.933772055525 + }, + "value": "15A", + "layer": "PID", + "id": "561D50" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4893.334365303559, + "max_x": 4956.970318456631, + "max_y": 4894.454246653952 + }, + "value": "15A", + "layer": "PID", + "id": "561D51" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4888.854839901984, + "max_x": 4956.970318456631, + "max_y": 4889.974721252377 + }, + "value": "15A", + "layer": "PID", + "id": "561D52" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4953.281257533745, + "min_y": 4882.684965744206, + "max_x": 4956.970318456631, + "max_y": 4885.4951958508045 + }, + "value": "15A", + "layer": "PID", + "id": "561D53" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4905.677010340923, + "max_x": 4969.600727227333, + "max_y": 4907.3558217855825 + }, + "value": "FCV-131", + "layer": "PID", + "id": "561D54" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4906.516416063252, + "max_x": 4975.652748132906, + "max_y": 4910.995941464825 + }, + "value": null, + "layer": "PID", + "id": "561D56" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4906.516416063252, + "max_x": 4959.22782166047, + "max_y": 4906.516416063252 + }, + "value": null, + "layer": "UTIL", + "id": "561D5A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4910.156535742496, + "max_x": 4969.652098857539, + "max_y": 4911.835347187156 + }, + "value": "LCV-121", + "layer": "PID", + "id": "561D5B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4909.129472547504, + "max_x": 4973.786279215585, + "max_y": 4917.341935783721 + }, + "value": null, + "layer": "PID", + "id": "561D5C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4910.995941464825, + "max_x": 4975.652748132906, + "max_y": 4915.475466866399 + }, + "value": null, + "layer": "PID", + "id": "561D5D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.509763447379, + "min_y": 4914.63606114407, + "max_x": 4969.560771514949, + "max_y": 4916.3148725887295 + }, + "value": "PCV-121", + "layer": "PID", + "id": "561D62" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4915.475466866399, + "max_x": 4975.652748132906, + "max_y": 4919.954992267973 + }, + "value": null, + "layer": "PID", + "id": "561D64" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4915.475466866399, + "max_x": 4959.22782166047, + "max_y": 4915.475466866399 + }, + "value": null, + "layer": "UTIL", + "id": "561D68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4919.115586545643, + "max_x": 4969.652098857539, + "max_y": 4920.794397990303 + }, + "value": "LCV-111", + "layer": "PID", + "id": "561D69" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4918.08852335065, + "max_x": 4973.786279215585, + "max_y": 4926.300986586869 + }, + "value": null, + "layer": "PID", + "id": "561D6A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4919.954992267973, + "max_x": 4975.652748132906, + "max_y": 4924.434517669546 + }, + "value": null, + "layer": "PID", + "id": "561D6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4923.595111947217, + "max_x": 4969.652098857539, + "max_y": 4925.273923391877 + }, + "value": "LCV-113", + "layer": "PID", + "id": "561D70" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4924.434517669546, + "max_x": 4975.652748132906, + "max_y": 4928.91404307112 + }, + "value": null, + "layer": "PID", + "id": "561D72" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4924.434517669546, + "max_x": 4959.22782166047, + "max_y": 4924.434517669546 + }, + "value": null, + "layer": "UTIL", + "id": "561D76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4928.074637348791, + "max_x": 4969.600727227333, + "max_y": 4929.753448793451 + }, + "value": "FCV-111", + "layer": "PID", + "id": "561D77" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4927.047574153798, + "max_x": 4973.786279215585, + "max_y": 4935.260037390015 + }, + "value": null, + "layer": "PID", + "id": "561D78" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4928.91404307112, + "max_x": 4975.652748132906, + "max_y": 4933.393568472694 + }, + "value": null, + "layer": "PID", + "id": "561D79" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4932.554162750364, + "max_x": 4969.600727227333, + "max_y": 4934.232974195024 + }, + "value": "FCV-113", + "layer": "PID", + "id": "561D7E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4933.393568472694, + "max_x": 4975.652748132906, + "max_y": 4937.873093874268 + }, + "value": null, + "layer": "PID", + "id": "561D80" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4933.393568472694, + "max_x": 4959.22782166047, + "max_y": 4933.393568472694 + }, + "value": null, + "layer": "UTIL", + "id": "561D84" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.509763447379, + "min_y": 4937.033688151938, + "max_x": 4969.560771514949, + "max_y": 4938.712499596598 + }, + "value": "PCV-111", + "layer": "PID", + "id": "561D85" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4936.006624956945, + "max_x": 4973.786279215585, + "max_y": 4944.219088193163 + }, + "value": null, + "layer": "PID", + "id": "561D86" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4937.873093874268, + "max_x": 4975.652748132906, + "max_y": 4942.35261927584 + }, + "value": null, + "layer": "PID", + "id": "561D87" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.563275562178, + "min_y": 4941.513213553512, + "max_x": 4969.614283629749, + "max_y": 4943.192024998172 + }, + "value": "TCV-111", + "layer": "PID", + "id": "561D8C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4942.35261927584, + "max_x": 4975.652748132906, + "max_y": 4946.832144677415 + }, + "value": null, + "layer": "PID", + "id": "561D8E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4942.35261927584, + "max_x": 4959.22782166047, + "max_y": 4942.35261927584 + }, + "value": null, + "layer": "UTIL", + "id": "561D92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4945.992738955085, + "max_x": 4969.600727227333, + "max_y": 4947.671550399745 + }, + "value": "FCV-111", + "layer": "PID", + "id": "561D93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4944.965675760093, + "max_x": 4973.786279215585, + "max_y": 4948.698613594736 + }, + "value": null, + "layer": "PID", + "id": "561D94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4946.832144677415, + "max_x": 4975.652748132906, + "max_y": 4948.698613594736 + }, + "value": null, + "layer": "PID", + "id": "561D95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4906.772941508279, + "max_x": 4956.970318456631, + "max_y": 4907.892822858672 + }, + "value": "15A", + "layer": "PID", + "id": "561D9C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4911.252466909854, + "max_x": 4956.970318456631, + "max_y": 4912.372348260247 + }, + "value": "15A", + "layer": "PID", + "id": "561D9D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4915.731992311426, + "max_x": 4956.970318456631, + "max_y": 4916.85187366182 + }, + "value": "15A", + "layer": "PID", + "id": "561D9E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4920.211517713001, + "max_x": 4956.970318456631, + "max_y": 4921.331399063394 + }, + "value": "15A", + "layer": "PID", + "id": "561D9F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4924.691043114574, + "max_x": 4956.970318456631, + "max_y": 4925.810924464968 + }, + "value": "15A", + "layer": "PID", + "id": "561DA0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4929.170568516148, + "max_x": 4956.970318456631, + "max_y": 4930.290449866541 + }, + "value": "15A", + "layer": "PID", + "id": "561DA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4933.650093917721, + "max_x": 4956.970318456631, + "max_y": 4934.769975268115 + }, + "value": "15A", + "layer": "PID", + "id": "561DA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4938.129619319295, + "max_x": 4956.970318456631, + "max_y": 4939.249500669688 + }, + "value": "15A", + "layer": "PID", + "id": "561DA3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4942.609144720869, + "max_x": 4956.970318456631, + "max_y": 4943.7290260712625 + }, + "value": "15A", + "layer": "PID", + "id": "561DA4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4947.088670122441, + "max_x": 4956.970318456631, + "max_y": 4948.208551472834 + }, + "value": "15A", + "layer": "PID", + "id": "561DA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4950.710396626789, + "min_y": 4952.286195248601, + "max_x": 4959.669447429936, + "max_y": 4954.152664165923 + }, + "value": "#1 PLANT", + "layer": "0", + "id": "561DA7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4995.039151404957, + "min_y": 4892.238434136201, + "max_x": 5014.177601874076, + "max_y": 4893.917245580861 + }, + "value": "#1 TANK YARD T-207앞", + "layer": "PID", + "id": "561DA8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4995.039151404957, + "min_y": 4887.758908734628, + "max_x": 5014.177601874076, + "max_y": 4889.437720179288 + }, + "value": "#1 TANK YARD T-104앞", + "layer": "PID", + "id": "561DA9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4994.776249532723, + "min_y": 4883.279383333054, + "max_x": 5014.921986868638, + "max_y": 4884.958194777714 + }, + "value": "#2 TANK YARD T-3250앞", + "layer": "PID", + "id": "561DAA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4886.731845539635, + "max_x": 5007.382719727388, + "max_y": 4894.944308775854 + }, + "value": null, + "layer": "PID", + "id": "561DAB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4891.211370941209, + "max_x": 5009.24918864471, + "max_y": 4894.944308775854 + }, + "value": null, + "layer": "PID", + "id": "561DAC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4886.731845539635, + "max_x": 5009.24918864471, + "max_y": 4890.46478337428 + }, + "value": null, + "layer": "PID", + "id": "561DB1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4882.252320138062, + "max_x": 5007.382719727388, + "max_y": 4885.985257972706 + }, + "value": null, + "layer": "PID", + "id": "561DB5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4882.252320138062, + "max_x": 5009.24918864471, + "max_y": 4885.985257972706 + }, + "value": null, + "layer": "PID", + "id": "561DB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4873.037146184771, + "max_x": 4992.824262172273, + "max_y": 4893.077839858531 + }, + "value": null, + "layer": "UTIL", + "id": "561DBB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4893.334365303559, + "max_x": 4990.566758968432, + "max_y": 4894.454246653952 + }, + "value": "15A", + "layer": "PID", + "id": "561DBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4888.854839901984, + "max_x": 4990.566758968432, + "max_y": 4889.974721252377 + }, + "value": "15A", + "layer": "PID", + "id": "561DBE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4884.375314500411, + "max_x": 4990.566758968432, + "max_y": 4885.4951958508045 + }, + "value": "15A", + "layer": "PID", + "id": "561DBF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4900.121508498274, + "min_y": 4873.037146184771, + "max_x": 4900.121508498274, + "max_y": 4992.491156893399 + }, + "value": null, + "layer": "UTIL", + "id": "561DC1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5093.229267930508, + "min_y": 4996.106924094725, + "max_x": 5113.243461016103, + "max_y": 4999.83986192937 + }, + "value": null, + "layer": "PID", + "id": "561DC5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5113.243461016103, + "min_y": 4996.106924094725, + "max_x": 5115.109929933424, + "max_y": 4999.83986192937 + }, + "value": null, + "layer": "PID", + "id": "561DC6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5090.405032557123, + "min_y": 4992.491156893399, + "max_x": 5093.229267930508, + "max_y": 4999.83986192937 + }, + "value": null, + "layer": "UTIL", + "id": "561DCB" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5100.484554742263, + "min_y": 4994.673100783546, + "max_x": 5121.637578944973, + "max_y": 4998.812798734377 + }, + "value": "#6 TANK YARD T-6222 앞", + "layer": "PID", + "id": "561DCC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5094.411713826438, + "min_y": 4998.229918457074, + "max_x": 5096.427500257147, + "max_y": 4999.349799807467 + }, + "value": "15A", + "layer": "PID", + "id": "561DCD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5127.311219092251, + "min_y": 5022.517964565301, + "max_x": 5142.420522094187, + "max_y": 5024.196776009961 + }, + "value": "UTILITY STATION", + "layer": "PID", + "id": "561DCE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5018.038439163728, + "max_x": 5135.885538694421, + "max_y": 5019.717250608388 + }, + "value": "XV-6220", + "layer": "PID", + "id": "561DCF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5013.558913762153, + "max_x": 5135.885538694421, + "max_y": 5015.237725206813 + }, + "value": "XV-6120", + "layer": "PID", + "id": "561DD0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5009.07938836058, + "max_x": 5135.885538694421, + "max_y": 5010.75819980524 + }, + "value": "XV-5320", + "layer": "PID", + "id": "561DD1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5130.895103794024, + "min_y": 5004.599862959007, + "max_x": 5133.9169643944115, + "max_y": 5006.278674403667 + }, + "value": "DFU", + "layer": "PID", + "id": "561DD2" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5017.011375968735, + "max_x": 5139.960498978755, + "max_y": 5025.223839204953 + }, + "value": null, + "layer": "PID", + "id": "561DD3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5021.490901370309, + "max_x": 5141.826967896079, + "max_y": 5025.223839204953 + }, + "value": null, + "layer": "PID", + "id": "561DD4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5017.011375968735, + "max_x": 5141.826967896079, + "max_y": 5020.74431380338 + }, + "value": null, + "layer": "PID", + "id": "561DD9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5008.052325165587, + "max_x": 5139.960498978755, + "max_y": 5016.264788401805 + }, + "value": null, + "layer": "PID", + "id": "561DDD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5012.531850567161, + "max_x": 5141.826967896079, + "max_y": 5016.264788401805 + }, + "value": null, + "layer": "PID", + "id": "561DDE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5008.052325165587, + "max_x": 5141.826967896079, + "max_y": 5011.785263000231 + }, + "value": null, + "layer": "PID", + "id": "561DE3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5003.572799764014, + "max_x": 5139.960498978755, + "max_y": 5007.305737598659 + }, + "value": null, + "layer": "PID", + "id": "561DE7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5003.572799764014, + "max_x": 5141.826967896079, + "max_y": 5007.305737598659 + }, + "value": null, + "layer": "PID", + "id": "561DE8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 4992.491156893399, + "max_x": 5125.402041423642, + "max_y": 5023.35737028763 + }, + "value": null, + "layer": "UTIL", + "id": "561DED" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5009.91879408291, + "max_x": 5125.402041423642, + "max_y": 5009.91879408291 + }, + "value": null, + "layer": "UTIL", + "id": "561DEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5023.613895732658, + "max_x": 5123.144538219801, + "max_y": 5024.733777083052 + }, + "value": "15A", + "layer": "PID", + "id": "561DF2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5019.134370331084, + "max_x": 5123.144538219801, + "max_y": 5020.254251681477 + }, + "value": "15A", + "layer": "PID", + "id": "561DF3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5014.65484492951, + "max_x": 5123.144538219801, + "max_y": 5015.774726279903 + }, + "value": "15A", + "layer": "PID", + "id": "561DF4" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5010.175319527937, + "max_x": 5123.144538219801, + "max_y": 5011.29520087833 + }, + "value": "15A", + "layer": "PID", + "id": "561DF5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5005.695794126364, + "max_x": 5123.144538219801, + "max_y": 5006.815675476757 + }, + "value": "15A", + "layer": "PID", + "id": "561DF6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5116.819861951587, + "min_y": 5028.969726564199, + "max_x": 5130.258438156307, + "max_y": 5030.836195481521 + }, + "value": "PACKING ROOM", + "layer": "0", + "id": "561DF9" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5002.733394041683, + "max_x": 4944.221109197057, + "max_y": 5004.412205486343 + }, + "value": "FCV-6216", + "layer": "PID", + "id": "561DFB" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5001.706330846691, + "max_x": 4947.95804079701, + "max_y": 5009.91879408291 + }, + "value": null, + "layer": "PID", + "id": "561DFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5001.706330846691, + "max_x": 4949.824509714332, + "max_y": 5008.052325165587 + }, + "value": null, + "layer": "PID", + "id": "561DFD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5003.829325209042, + "max_x": 4931.1420800380565, + "max_y": 5004.949206559435 + }, + "value": "15A", + "layer": "PID", + "id": "561E02" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5007.212919443258, + "max_x": 4944.221109197057, + "max_y": 5008.891730887918 + }, + "value": "FCV-6218", + "layer": "PID", + "id": "561E03" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5008.052325165587, + "max_x": 4949.824509714332, + "max_y": 5012.531850567161 + }, + "value": null, + "layer": "PID", + "id": "561E05" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 4992.491156893399, + "max_x": 4933.399583241897, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "UTIL", + "id": "561E09" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5008.308850610615, + "max_x": 4931.1420800380565, + "max_y": 5009.428731961008 + }, + "value": "15A", + "layer": "PID", + "id": "561E0A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5011.692444844832, + "max_x": 4944.221109197057, + "max_y": 5013.371256289492 + }, + "value": "FCV-6214", + "layer": "PID", + "id": "561E0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5010.665381649839, + "max_x": 4947.95804079701, + "max_y": 5018.877844886056 + }, + "value": null, + "layer": "PID", + "id": "561E0C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5012.531850567161, + "max_x": 4949.824509714332, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "PID", + "id": "561E0D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5012.788376012188, + "max_x": 4931.1420800380565, + "max_y": 5013.908257362581 + }, + "value": "15A", + "layer": "PID", + "id": "561E12" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.122858550309, + "min_y": 5016.171970246405, + "max_x": 4944.181153484674, + "max_y": 5017.850781691065 + }, + "value": "PCV-6211", + "layer": "PID", + "id": "561E13" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5017.011375968735, + "max_x": 4949.824509714332, + "max_y": 5021.490901370309 + }, + "value": null, + "layer": "PID", + "id": "561E15" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5017.011375968735, + "max_x": 4933.399583241897, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "UTIL", + "id": "561E19" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5017.267901413762, + "max_x": 4931.1420800380565, + "max_y": 5018.387782764155 + }, + "value": "15A", + "layer": "PID", + "id": "561E1A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5020.651495647978, + "max_x": 4944.221109197057, + "max_y": 5022.330307092638 + }, + "value": "FCV-6213", + "layer": "PID", + "id": "561E1B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5019.624432452985, + "max_x": 4947.95804079701, + "max_y": 5027.836895689204 + }, + "value": null, + "layer": "PID", + "id": "561E1C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5021.490901370309, + "max_x": 4949.824509714332, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "PID", + "id": "561E1D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5021.747426815335, + "max_x": 4931.1420800380565, + "max_y": 5022.867308165728 + }, + "value": "15A", + "layer": "PID", + "id": "561E22" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.176370665108, + "min_y": 5025.131021049553, + "max_x": 4944.234665599473, + "max_y": 5026.809832494213 + }, + "value": "TCV-6211", + "layer": "PID", + "id": "561E23" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5025.970426771881, + "max_x": 4949.824509714332, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "PID", + "id": "561E25" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5025.970426771881, + "max_x": 4933.399583241897, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "UTIL", + "id": "561E29" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5026.226952216909, + "max_x": 4931.1420800380565, + "max_y": 5027.346833567302 + }, + "value": "15A", + "layer": "PID", + "id": "561E2A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5029.610546451126, + "max_x": 4944.221109197057, + "max_y": 5031.2893578957855 + }, + "value": "FCV-6201", + "layer": "PID", + "id": "561E2B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5028.583483256134, + "max_x": 4947.95804079701, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561E2C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5030.449952173455, + "max_x": 4949.824509714332, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561E2D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5030.706477618482, + "max_x": 4931.1420800380565, + "max_y": 5031.826358968875 + }, + "value": "15A", + "layer": "PID", + "id": "561E32" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5002.733394041683, + "max_x": 4977.81754970886, + "max_y": 5004.412205486343 + }, + "value": "FCV-6116", + "layer": "PID", + "id": "561E35" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5001.706330846691, + "max_x": 4981.554481308814, + "max_y": 5009.91879408291 + }, + "value": null, + "layer": "PID", + "id": "561E36" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5001.706330846691, + "max_x": 4983.420950226136, + "max_y": 5008.052325165587 + }, + "value": null, + "layer": "PID", + "id": "561E37" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5003.829325209042, + "max_x": 4964.738520549858, + "max_y": 5004.949206559435 + }, + "value": "15A", + "layer": "PID", + "id": "561E3C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5007.212919443258, + "max_x": 4977.81754970886, + "max_y": 5008.891730887918 + }, + "value": "FCV-6118", + "layer": "PID", + "id": "561E3D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5008.052325165587, + "max_x": 4983.420950226136, + "max_y": 5012.531850567161 + }, + "value": null, + "layer": "PID", + "id": "561E3F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 4992.491156893399, + "max_x": 4966.996023753699, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "UTIL", + "id": "561E43" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5008.308850610615, + "max_x": 4964.738520549858, + "max_y": 5009.428731961008 + }, + "value": "15A", + "layer": "PID", + "id": "561E44" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5011.692444844832, + "max_x": 4977.81754970886, + "max_y": 5013.371256289492 + }, + "value": "FCV-6114", + "layer": "PID", + "id": "561E45" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5010.665381649839, + "max_x": 4981.554481308814, + "max_y": 5018.877844886056 + }, + "value": null, + "layer": "PID", + "id": "561E46" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5012.531850567161, + "max_x": 4983.420950226136, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "PID", + "id": "561E47" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5012.788376012188, + "max_x": 4964.738520549858, + "max_y": 5013.908257362581 + }, + "value": "15A", + "layer": "PID", + "id": "561E4C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.719299062112, + "min_y": 5016.171970246405, + "max_x": 4977.777593996478, + "max_y": 5017.850781691065 + }, + "value": "PCV-6111", + "layer": "PID", + "id": "561E4D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5017.011375968735, + "max_x": 4983.420950226136, + "max_y": 5021.490901370309 + }, + "value": null, + "layer": "PID", + "id": "561E4F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5017.011375968735, + "max_x": 4966.996023753699, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "UTIL", + "id": "561E53" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5017.267901413762, + "max_x": 4964.738520549858, + "max_y": 5018.387782764155 + }, + "value": "15A", + "layer": "PID", + "id": "561E54" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5020.651495647978, + "max_x": 4977.81754970886, + "max_y": 5022.330307092638 + }, + "value": "FCV-6113", + "layer": "PID", + "id": "561E55" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5019.624432452985, + "max_x": 4981.554481308814, + "max_y": 5027.836895689204 + }, + "value": null, + "layer": "PID", + "id": "561E56" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5021.490901370309, + "max_x": 4983.420950226136, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "PID", + "id": "561E57" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5021.747426815335, + "max_x": 4964.738520549858, + "max_y": 5022.867308165728 + }, + "value": "15A", + "layer": "PID", + "id": "561E5C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.77281117691, + "min_y": 5025.131021049553, + "max_x": 4977.831106111275, + "max_y": 5026.809832494213 + }, + "value": "TCV-6111", + "layer": "PID", + "id": "561E5D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5025.970426771881, + "max_x": 4983.420950226136, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "PID", + "id": "561E5F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5025.970426771881, + "max_x": 4966.996023753699, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "UTIL", + "id": "561E63" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5026.226952216909, + "max_x": 4964.738520549858, + "max_y": 5027.346833567302 + }, + "value": "15A", + "layer": "PID", + "id": "561E64" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5029.610546451126, + "max_x": 4977.81754970886, + "max_y": 5031.2893578957855 + }, + "value": "FCV-6101", + "layer": "PID", + "id": "561E65" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5028.583483256134, + "max_x": 4981.554481308814, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561E66" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5030.449952173455, + "max_x": 4983.420950226136, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561E67" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5030.706477618482, + "max_x": 4964.738520549858, + "max_y": 5031.826358968875 + }, + "value": "15A", + "layer": "PID", + "id": "561E6C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4925.426958426992, + "min_y": 5035.519206646021, + "max_x": 4936.625771930926, + "max_y": 5037.385675563343 + }, + "value": "#6-2 PLANT", + "layer": "0", + "id": "561E6F" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4959.023398938795, + "min_y": 5035.519206646021, + "max_x": 4970.222212442729, + "max_y": 5037.385675563343 + }, + "value": "#6-1 PLANT", + "layer": "0", + "id": "561E70" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4927.453019115171, + "min_y": 4994.673100783546, + "max_x": 4929.468805545879, + "max_y": 4995.792982133939 + }, + "value": "25A", + "layer": "PID", + "id": "561E71" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4961.049459626973, + "min_y": 4994.673100783546, + "max_x": 4963.065246057681, + "max_y": 4995.792982133939 + }, + "value": "25A", + "layer": "PID", + "id": "561E72" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5002.733394041683, + "max_x": 5011.413990220662, + "max_y": 5004.412205486343 + }, + "value": "FCV-5116", + "layer": "PID", + "id": "561E73" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5001.706330846691, + "max_x": 5015.150921820615, + "max_y": 5009.91879408291 + }, + "value": null, + "layer": "PID", + "id": "561E74" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5001.706330846691, + "max_x": 5017.017390737937, + "max_y": 5008.052325165587 + }, + "value": null, + "layer": "PID", + "id": "561E75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5003.829325209042, + "max_x": 4998.334961061661, + "max_y": 5004.949206559435 + }, + "value": "15A", + "layer": "PID", + "id": "561E7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5007.212919443258, + "max_x": 5011.413990220662, + "max_y": 5008.891730887918 + }, + "value": "FCV-5118", + "layer": "PID", + "id": "561E7B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5008.052325165587, + "max_x": 5017.017390737937, + "max_y": 5012.531850567161 + }, + "value": null, + "layer": "PID", + "id": "561E7D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 4992.491156893399, + "max_x": 5000.592464265501, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "UTIL", + "id": "561E81" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5008.308850610615, + "max_x": 4998.334961061661, + "max_y": 5009.428731961008 + }, + "value": "15A", + "layer": "PID", + "id": "561E82" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5011.692444844832, + "max_x": 5011.413990220662, + "max_y": 5013.371256289492 + }, + "value": "FCV-5114", + "layer": "PID", + "id": "561E83" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5010.665381649839, + "max_x": 5015.150921820615, + "max_y": 5018.877844886056 + }, + "value": null, + "layer": "PID", + "id": "561E84" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5012.531850567161, + "max_x": 5017.017390737937, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "PID", + "id": "561E85" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5012.788376012188, + "max_x": 4998.334961061661, + "max_y": 5013.908257362581 + }, + "value": "15A", + "layer": "PID", + "id": "561E8A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.315739573912, + "min_y": 5016.171970246405, + "max_x": 5011.374034508277, + "max_y": 5017.850781691065 + }, + "value": "PCV-5111", + "layer": "PID", + "id": "561E8B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5017.011375968735, + "max_x": 5017.017390737937, + "max_y": 5021.490901370309 + }, + "value": null, + "layer": "PID", + "id": "561E8D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5017.011375968735, + "max_x": 5000.592464265501, + "max_y": 5017.011375968735 + }, + "value": null, + "layer": "UTIL", + "id": "561E91" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5017.267901413762, + "max_x": 4998.334961061661, + "max_y": 5018.387782764155 + }, + "value": "15A", + "layer": "PID", + "id": "561E92" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5020.651495647978, + "max_x": 5011.413990220662, + "max_y": 5022.330307092638 + }, + "value": "FCV-5113", + "layer": "PID", + "id": "561E93" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5019.624432452985, + "max_x": 5015.150921820615, + "max_y": 5027.836895689204 + }, + "value": null, + "layer": "PID", + "id": "561E94" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5021.490901370309, + "max_x": 5017.017390737937, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "PID", + "id": "561E95" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5021.747426815335, + "max_x": 4998.334961061661, + "max_y": 5022.867308165728 + }, + "value": "15A", + "layer": "PID", + "id": "561E9A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.369251688711, + "min_y": 5025.131021049553, + "max_x": 5011.4275466230765, + "max_y": 5026.809832494213 + }, + "value": "TCV-5111", + "layer": "PID", + "id": "561E9B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5025.970426771881, + "max_x": 5017.017390737937, + "max_y": 5030.449952173455 + }, + "value": null, + "layer": "PID", + "id": "561E9D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5025.970426771881, + "max_x": 5000.592464265501, + "max_y": 5025.970426771881 + }, + "value": null, + "layer": "UTIL", + "id": "561EA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5026.226952216909, + "max_x": 4998.334961061661, + "max_y": 5027.346833567302 + }, + "value": "15A", + "layer": "PID", + "id": "561EA2" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5029.610546451126, + "max_x": 5011.413990220662, + "max_y": 5031.2893578957855 + }, + "value": "FCV-5101", + "layer": "PID", + "id": "561EA3" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5028.583483256134, + "max_x": 5015.150921820615, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561EA4" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5030.449952173455, + "max_x": 5017.017390737937, + "max_y": 5032.316421090778 + }, + "value": null, + "layer": "PID", + "id": "561EA5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5030.706477618482, + "max_x": 4998.334961061661, + "max_y": 5031.826358968875 + }, + "value": "15A", + "layer": "PID", + "id": "561EAA" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4993.762303578722, + "min_y": 5035.519206646021, + "max_x": 5002.721354381869, + "max_y": 5037.385675563343 + }, + "value": "#5 PLANT", + "layer": "0", + "id": "561EAD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4994.645900138775, + "min_y": 4994.673100783546, + "max_x": 4996.661686569483, + "max_y": 4995.792982133939 + }, + "value": "25A", + "layer": "PID", + "id": "561EAE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 5045.381703512034, + "max_x": 4942.731927828507, + "max_y": 5053.594166748252 + }, + "value": null, + "layer": "PID", + "id": "561EAF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5047.248172429356, + "max_x": 4944.598396745831, + "max_y": 5053.594166748252 + }, + "value": null, + "layer": "PID", + "id": "561EB0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 4992.491156893399, + "max_x": 4942.731927828507, + "max_y": 5051.72769783093 + }, + "value": null, + "layer": "UTIL", + "id": "561EB3" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4930.544992613864, + "min_y": 5050.8882921086, + "max_x": 4940.617861281821, + "max_y": 5052.56710355326 + }, + "value": "#5 UTILITY", + "layer": "PID", + "id": "561EB5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5051.984223275957, + "max_x": 4925.9159670695535, + "max_y": 5053.104104626351 + }, + "value": "15A", + "layer": "PID", + "id": "561EB6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5042.768647027783, + "max_x": 4944.598396745831, + "max_y": 5047.248172429356 + }, + "value": null, + "layer": "PID", + "id": "561EB8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 5047.248172429356, + "max_x": 4928.173470273395, + "max_y": 5047.248172429356 + }, + "value": null, + "layer": "UTIL", + "id": "561EBC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4931.605959476602, + "min_y": 5046.408766707028, + "max_x": 4938.656967544172, + "max_y": 5048.087578151688 + }, + "value": "XV-3208", + "layer": "PID", + "id": "561EBD" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5047.504697874384, + "max_x": 4925.9159670695535, + "max_y": 5048.624579224777 + }, + "value": "15A", + "layer": "PID", + "id": "561EBE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5040.90217811046, + "max_x": 4944.598396745831, + "max_y": 5042.768647027783 + }, + "value": null, + "layer": "PID", + "id": "561EC0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4930.544992613864, + "min_y": 5041.929241305453, + "max_x": 4940.617861281821, + "max_y": 5043.608052750113 + }, + "value": "#3 UTILITY", + "layer": "PID", + "id": "561EC5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5043.025172472811, + "max_x": 4925.9159670695535, + "max_y": 5044.145053823205 + }, + "value": "15A", + "layer": "PID", + "id": "561EC6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 5040.90217811046, + "max_x": 4976.328368340311, + "max_y": 5049.114641346679 + }, + "value": null, + "layer": "PID", + "id": "561EC7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5042.768647027783, + "max_x": 4978.194837257632, + "max_y": 5049.114641346679 + }, + "value": null, + "layer": "PID", + "id": "561EC8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 4992.491156893399, + "max_x": 4976.328368340311, + "max_y": 5047.248172429356 + }, + "value": null, + "layer": "UTIL", + "id": "561ECC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4965.202399988405, + "min_y": 5046.408766707028, + "max_x": 4972.253408055975, + "max_y": 5048.087578151688 + }, + "value": "XV-3402", + "layer": "PID", + "id": "561ECE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4957.496621150646, + "min_y": 5047.504697874384, + "max_x": 4959.512407581355, + "max_y": 5048.624579224777 + }, + "value": "15A", + "layer": "PID", + "id": "561ECF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5040.90217811046, + "max_x": 4978.194837257632, + "max_y": 5042.768647027783 + }, + "value": null, + "layer": "PID", + "id": "561ED1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4964.584513436198, + "min_y": 5041.929241305453, + "max_x": 4972.642808370563, + "max_y": 5043.608052750113 + }, + "value": "LCV-3402", + "layer": "PID", + "id": "561ED6" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4957.496621150646, + "min_y": 5043.025172472811, + "max_x": 4959.512407581355, + "max_y": 5044.145053823205 + }, + "value": "15A", + "layer": "PID", + "id": "561ED7" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4989.910615766516, + "min_y": 5040.90217811046, + "max_x": 5009.924808852113, + "max_y": 5044.635115945105 + }, + "value": null, + "layer": "PID", + "id": "561ED8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5009.924808852113, + "min_y": 5040.90217811046, + "max_x": 5011.791277769436, + "max_y": 5044.635115945105 + }, + "value": null, + "layer": "PID", + "id": "561ED9" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4989.910615766516, + "min_y": 4992.491156893399, + "max_x": 4989.910615766516, + "max_y": 5042.768647027783 + }, + "value": null, + "layer": "UTIL", + "id": "561EDE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5000.418473841444, + "min_y": 5041.929241305453, + "max_x": 5004.447621308627, + "max_y": 5043.608052750113 + }, + "value": "10 동", + "layer": "PID", + "id": "561EDF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4991.093061662449, + "min_y": 5043.025172472811, + "max_x": 4993.108848093158, + "max_y": 5044.145053823205 + }, + "value": "15A", + "layer": "PID", + "id": "561EE0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5070.390839471526, + "min_y": 4996.106924094725, + "max_x": 5090.405032557123, + "max_y": 4999.83986192937 + }, + "value": null, + "layer": "PID", + "id": "561EE8" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5070.390839471526, + "min_y": 4992.491156893399, + "max_x": 5070.390839471526, + "max_y": 4997.973393012046 + }, + "value": null, + "layer": "UTIL", + "id": "561EEE" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5080.033228276445, + "min_y": 4997.133987289717, + "max_x": 5086.076949477219, + "max_y": 4998.812798734377 + }, + "value": "IMS #2", + "layer": "PID", + "id": "561EEF" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5071.573285367459, + "min_y": 4998.229918457074, + "max_x": 5073.589071798167, + "max_y": 4999.349799807467 + }, + "value": "15A", + "layer": "PID", + "id": "561EF0" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 5063.242529917783, + "max_x": 4798.702051112654, + "max_y": 5066.343892974054 + }, + "value": null, + "layer": "PSV", + "id": "561EF1" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.429973990407, + "min_y": 5062.391120693623, + "max_x": 4803.865005402791, + "max_y": 5064.093939141941 + }, + "value": null, + "layer": "PSV", + "id": "561EFC" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 5087.294043892724, + "max_x": 4808.437156868777, + "max_y": 5090.395406948996 + }, + "value": null, + "layer": "PSV", + "id": "561F00" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 5086.442634668566, + "max_x": 4813.600111158914, + "max_y": 5088.145453116884 + }, + "value": null, + "layer": "PSV", + "id": "561F0B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4854.890961591169, + "min_y": 4970.897847506382, + "max_x": 4856.965348719157, + "max_y": 4973.999210562653 + }, + "value": null, + "layer": "PSV", + "id": "561F0F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4857.693271596912, + "min_y": 4970.046438282223, + "max_x": 4862.128303009295, + "max_y": 4971.749256730542 + }, + "value": null, + "layer": "PSV", + "id": "561F1A" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 4970.897847506382, + "max_x": 4808.437156868777, + "max_y": 4973.999210562653 + }, + "value": null, + "layer": "PSV", + "id": "561F1E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 4970.046438282223, + "max_x": 4813.600111158914, + "max_y": 4971.749256730542 + }, + "value": null, + "layer": "PSV", + "id": "561F29" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 4944.013293241837, + "max_x": 4797.938407493446, + "max_y": 4945.100280878438 + }, + "value": null, + "layer": "PSV", + "id": "561F2E" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4799.42997399041, + "min_y": 4942.209187107238, + "max_x": 4803.865005402794, + "max_y": 4943.912005555556 + }, + "value": null, + "layer": "PSV", + "id": "561F38" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4859.015774798785, + "min_y": 4979.269324514305, + "max_x": 4873.947526137364, + "max_y": 4980.57585275643 + }, + "value": ".9; PSV-900B SP : 0.95 MPa Ax25A", + "layer": "PSV", + "id": "561F3C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4808.036588659454, + "min_y": 4980.781569201637, + "max_x": 4822.968339998032, + "max_y": 4982.088097443762 + }, + "value": ".9; PSV-900A SP : 0.95 MPa Ax25A", + "layer": "PSV", + "id": "561F40" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4809.751109083633, + "min_y": 5094.688561538344, + "max_x": 4824.682860422212, + "max_y": 5095.99508978047 + }, + "value": ".9; PSV-2900 SP : 0.95 MPa Ax25A", + "layer": "PSV", + "id": "561F44" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4857.898465319989, + "max_x": 4798.970807108798, + "max_y": 4859.018346670382 + }, + "value": ".9; SIZE : Ø900 x 1,350H (0.95m3) DP : 1 MPa OP : 0.8 MPa DT : 100 °C OT : 40 °C MATERIAL : SS275 INSULATION : NONE", + "layer": "0", + "id": "561F48" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4862.377990721562, + "max_x": 4798.970807108798, + "max_y": 4863.4978720719555 + }, + "value": ".9;D-2901 Air Receiver Tank", + "layer": "0", + "id": "561F4C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4835.50083831212, + "max_x": 4798.970807108798, + "max_y": 4836.620719662514 + }, + "value": ".9; CAPA : 2,200 L/min MATERIAL : SS275 PRESSURE : 0.85 MPa RPM : 1,800", + "layer": "0", + "id": "561F50" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4839.980363713695, + "max_x": 4798.970807108798, + "max_y": 4841.100245064088 + }, + "value": ".9;K-2901 Air Compressor", + "layer": "0", + "id": "561F54" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4877.276042204007, + "min_y": 5005.826527942517, + "max_x": 4884.741917873297, + "max_y": 5013.292403611807 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "561F68" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4878.96540585061, + "min_y": 5007.227836542284, + "max_x": 4882.994022225262, + "max_y": 5011.892776966104 + }, + "value": "PT", + "layer": "INSTRUMENT", + "id": "561F69" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4866.550404398163, + "min_y": 5005.826527942517, + "max_x": 4874.0162800674525, + "max_y": 5013.292403611807 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "561F6B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4868.239768044765, + "min_y": 5007.227836542284, + "max_x": 4872.268384419416, + "max_y": 5011.892776966104 + }, + "value": "PIA", + "layer": "INSTRUMENT", + "id": "561F6C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4866.550404398163, + "min_y": 5009.559465777162, + "max_x": 4877.276042204009, + "max_y": 5009.559465777162 + }, + "value": null, + "layer": "INSTRUMENT", + "id": "561F6F" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4860.879597210593, + "min_y": 5005.826527942518, + "max_x": 4868.299567180183, + "max_y": 5007.021068049604 + }, + "value": "\\Fmonotxt.shx; .6; HH 9 H 8 L 6 LL 5", + "layer": "INSTRUMENT", + "id": "561F71" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4884.741917873299, + "min_y": 5009.559465777162, + "max_x": 4890.095530067732, + "max_y": 5009.559465777162 + }, + "value": null, + "layer": "0", + "id": "561F75" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4814.069363156032, + "min_y": 5085.424311568245, + "max_x": 4821.860937651394, + "max_y": 5088.437960550343 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "561F76" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4804.260635429966, + "min_y": 5061.883365025685, + "max_x": 4812.0522099253285, + "max_y": 5064.897014007781 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "561F78" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4798.819261143524, + "min_y": 5071.474187926683, + "max_x": 4813.751012482103, + "max_y": 5072.780716168809 + }, + "value": ".9; PSV-2901 SP : 0.95 MPa Ax25A", + "layer": "PSV", + "id": "561F7A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4813.232119565171, + "min_y": 4969.353851455349, + "max_x": 4821.023694060534, + "max_y": 4972.367500437445 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "561F7E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4862.457057808253, + "min_y": 4969.405234480655, + "max_x": 4870.2486323036155, + "max_y": 4972.418883462751 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "561F80" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4803.397267619561, + "min_y": 4941.745763514839, + "max_x": 4811.188842114923, + "max_y": 4944.759412496936 + }, + "value": "SAFETY AREA", + "layer": "0", + "id": "561F82" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4798.318119369174, + "min_y": 4951.410362653581, + "max_x": 4813.249870707753, + "max_y": 4952.7168908957065 + }, + "value": ".9; PSV-901 SP : 0.95 MPa Ax25A", + "layer": "PSV", + "id": "561F84" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5056.77612007562, + "max_x": 5042.326592032672, + "max_y": 5058.45493152028 + }, + "value": "FCV-9116", + "layer": "PID", + "id": "561FF5" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5051.234352776496, + "max_x": 5046.063523632626, + "max_y": 5063.961520116846 + }, + "value": null, + "layer": "PID", + "id": "561FF6" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5055.749056880628, + "max_x": 5047.929992549948, + "max_y": 5062.095051199523 + }, + "value": null, + "layer": "PID", + "id": "561FF7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5057.872051242978, + "max_x": 5029.247562873671, + "max_y": 5058.9919325933715 + }, + "value": "15A", + "layer": "PID", + "id": "561FFC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5061.255645477194, + "max_x": 5042.326592032672, + "max_y": 5062.934456921854 + }, + "value": "FCV-9118", + "layer": "PID", + "id": "561FFD" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5062.095051199523, + "max_x": 5047.929992549948, + "max_y": 5066.574576601098 + }, + "value": null, + "layer": "PID", + "id": "561FFF" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.030985002583, + "min_y": 4992.491156893399, + "max_x": 5031.505066077514, + "max_y": 5084.416161578611 + }, + "value": null, + "layer": "UTIL", + "id": "562003" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5062.351576644552, + "max_x": 5029.247562873671, + "max_y": 5063.471457994945 + }, + "value": "15A", + "layer": "PID", + "id": "562004" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5065.735170878769, + "max_x": 5042.326592032672, + "max_y": 5067.413982323429 + }, + "value": "FCV-9114", + "layer": "PID", + "id": "562005" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5064.708107683775, + "max_x": 5046.063523632626, + "max_y": 5072.920570919993 + }, + "value": null, + "layer": "PID", + "id": "562006" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5066.574576601098, + "max_x": 5047.929992549948, + "max_y": 5071.054102002671 + }, + "value": null, + "layer": "PID", + "id": "562007" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5066.831102046125, + "max_x": 5029.247562873671, + "max_y": 5067.9509833965185 + }, + "value": "15A", + "layer": "PID", + "id": "56200C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.228341385924, + "min_y": 5070.214696280341, + "max_x": 5042.286636320289, + "max_y": 5071.893507725001 + }, + "value": "PCV-9111", + "layer": "PID", + "id": "56200D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5071.054102002671, + "max_x": 5047.929992549948, + "max_y": 5075.533627404245 + }, + "value": null, + "layer": "PID", + "id": "56200F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5070.977585373891, + "max_x": 5031.505066077514, + "max_y": 5070.977585373891 + }, + "value": null, + "layer": "UTIL", + "id": "562013" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5071.310627447698, + "max_x": 5029.247562873671, + "max_y": 5072.430508798091 + }, + "value": "15A", + "layer": "PID", + "id": "562014" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5074.694221681915, + "max_x": 5042.326592032672, + "max_y": 5076.373033126575 + }, + "value": "FCV-9113", + "layer": "PID", + "id": "562015" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5073.667158486922, + "max_x": 5046.063523632626, + "max_y": 5081.87962172314 + }, + "value": null, + "layer": "PID", + "id": "562016" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5075.533627404245, + "max_x": 5047.929992549948, + "max_y": 5080.013152805818 + }, + "value": null, + "layer": "PID", + "id": "562017" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5075.790152849272, + "max_x": 5029.247562873671, + "max_y": 5076.9100341996655 + }, + "value": "15A", + "layer": "PID", + "id": "56201C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.281853500722, + "min_y": 5079.173747083489, + "max_x": 5042.340148435087, + "max_y": 5080.852558528149 + }, + "value": "TCV-9111", + "layer": "PID", + "id": "56201D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5080.013152805818, + "max_x": 5047.929992549948, + "max_y": 5084.492678207392 + }, + "value": null, + "layer": "PID", + "id": "56201F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5079.936636177038, + "max_x": 5031.505066077514, + "max_y": 5079.936636177038 + }, + "value": null, + "layer": "UTIL", + "id": "562023" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5080.269678250846, + "max_x": 5029.247562873671, + "max_y": 5081.389559601239 + }, + "value": "15A", + "layer": "PID", + "id": "562024" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5083.653272485062, + "max_x": 5042.326592032672, + "max_y": 5085.332083929722 + }, + "value": "FCV-9101", + "layer": "PID", + "id": "562025" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5082.62620929007, + "max_x": 5046.063523632626, + "max_y": 5086.359147124714 + }, + "value": null, + "layer": "PID", + "id": "562026" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5084.492678207392, + "max_x": 5047.929992549948, + "max_y": 5086.359147124714 + }, + "value": null, + "layer": "PID", + "id": "562027" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5084.749203652419, + "max_x": 5029.247562873671, + "max_y": 5085.869085002812 + }, + "value": "15A", + "layer": "PID", + "id": "56202C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5023.243326887512, + "min_y": 5090.626043056467, + "max_x": 5032.202377690659, + "max_y": 5092.492511973789 + }, + "value": "#9 PLANT", + "layer": "0", + "id": "56202E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5025.558501950786, + "min_y": 4994.648455256296, + "max_x": 5027.574288381495, + "max_y": 4995.768336606689 + }, + "value": "25A", + "layer": "PID", + "id": "56202F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5256.606517110442, + "max_x": 1957.626740763788, + "max_y": 5257.615805898727 + }, + "value": null, + "layer": "0", + "id": "5620FD" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5256.785709138242, + "max_x": 1956.8025404202247, + "max_y": 5257.43176327323 + }, + "value": null, + "layer": "0", + "id": "5620FE" + }, + { + "type": "LINE", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5256.606517110442, + "max_x": 1955.403073995256, + "max_y": 5257.615805898727 + }, + "value": null, + "layer": "0", + "id": "562105" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5001.729818542629, + "max_x": 5042.31683893885, + "max_y": 5003.408629987289 + }, + "value": "FCV-9216", + "layer": "PID", + "id": "56221F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5000.702755347636, + "max_x": 5046.053770538804, + "max_y": 5008.915218583855 + }, + "value": null, + "layer": "PID", + "id": "562220" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5000.702755347636, + "max_x": 5047.920239456126, + "max_y": 5007.048749666532 + }, + "value": null, + "layer": "PID", + "id": "562221" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5002.825749709987, + "max_x": 5029.23780977985, + "max_y": 5003.94563106038 + }, + "value": "15A", + "layer": "PID", + "id": "562226" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5006.209343944203, + "max_x": 5042.31683893885, + "max_y": 5007.888155388863 + }, + "value": "FCV-9218", + "layer": "PID", + "id": "562227" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5007.048749666532, + "max_x": 5047.920239456126, + "max_y": 5011.528275068106 + }, + "value": null, + "layer": "PID", + "id": "562229" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5006.972233037751, + "max_x": 5031.495312983691, + "max_y": 5006.972233037751 + }, + "value": null, + "layer": "UTIL", + "id": "56222D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5007.30527511156, + "max_x": 5029.23780977985, + "max_y": 5008.4251564619535 + }, + "value": "15A", + "layer": "PID", + "id": "56222E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5010.688869345777, + "max_x": 5042.31683893885, + "max_y": 5012.367680790437 + }, + "value": "FCV-9214", + "layer": "PID", + "id": "56222F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5009.661806150783, + "max_x": 5046.053770538804, + "max_y": 5017.874269387002 + }, + "value": null, + "layer": "PID", + "id": "562230" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5011.528275068106, + "max_x": 5047.920239456126, + "max_y": 5016.007800469679 + }, + "value": null, + "layer": "PID", + "id": "562231" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5011.784800513133, + "max_x": 5029.23780977985, + "max_y": 5012.904681863526 + }, + "value": "15A", + "layer": "PID", + "id": "562236" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.218588292102, + "min_y": 5015.16839474735, + "max_x": 5042.276883226467, + "max_y": 5016.84720619201 + }, + "value": "PCV-9211", + "layer": "PID", + "id": "562237" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5016.007800469679, + "max_x": 5047.920239456126, + "max_y": 5020.487325871253 + }, + "value": null, + "layer": "PID", + "id": "562239" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5015.931283840899, + "max_x": 5031.495312983691, + "max_y": 5015.931283840899 + }, + "value": null, + "layer": "UTIL", + "id": "56223D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5016.264325914708, + "max_x": 5029.23780977985, + "max_y": 5017.384207265101 + }, + "value": "15A", + "layer": "PID", + "id": "56223E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5019.647920148924, + "max_x": 5042.31683893885, + "max_y": 5021.326731593584 + }, + "value": "FCV-9213", + "layer": "PID", + "id": "56223F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5018.62085695393, + "max_x": 5046.053770538804, + "max_y": 5026.833320190149 + }, + "value": null, + "layer": "PID", + "id": "562240" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5020.487325871253, + "max_x": 5047.920239456126, + "max_y": 5024.966851272827 + }, + "value": null, + "layer": "PID", + "id": "562241" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5020.74385131628, + "max_x": 5029.23780977985, + "max_y": 5021.863732666673 + }, + "value": "15A", + "layer": "PID", + "id": "562246" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.272100406901, + "min_y": 5024.127445550497, + "max_x": 5042.330395341266, + "max_y": 5025.806256995157 + }, + "value": "TCV-9211", + "layer": "PID", + "id": "562247" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5024.966851272827, + "max_x": 5047.920239456126, + "max_y": 5029.4463766744 + }, + "value": null, + "layer": "PID", + "id": "562249" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5024.890334644046, + "max_x": 5031.495312983691, + "max_y": 5024.890334644046 + }, + "value": null, + "layer": "UTIL", + "id": "56224D" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5025.223376717854, + "max_x": 5029.23780977985, + "max_y": 5026.343258068247 + }, + "value": "15A", + "layer": "PID", + "id": "56224E" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5028.606970952071, + "max_x": 5042.31683893885, + "max_y": 5030.285782396731 + }, + "value": "FCV-9201", + "layer": "PID", + "id": "56224F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5027.579907757078, + "max_x": 5046.053770538804, + "max_y": 5031.312845591723 + }, + "value": null, + "layer": "PID", + "id": "562250" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5029.4463766744, + "max_x": 5047.920239456126, + "max_y": 5031.312845591723 + }, + "value": null, + "layer": "PID", + "id": "562251" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5029.702902119428, + "max_x": 5029.23780977985, + "max_y": 5030.822783469821 + }, + "value": "15A", + "layer": "PID", + "id": "562256" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.399894088627, + "min_y": 5053.415138724822, + "max_x": 5029.415680519335, + "max_y": 5054.5350200752155 + }, + "value": "25A", + "layer": "PID", + "id": "562512" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5034.343314365194, + "max_x": 5041.988468727722, + "max_y": 5036.022125809854 + }, + "value": "XV-6126", + "layer": "PID", + "id": "562623" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039119010936, + "min_y": 5033.316251170202, + "max_x": 5046.063429012056, + "max_y": 5041.528714406419 + }, + "value": null, + "layer": "PID", + "id": "562624" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5033.316251170202, + "max_x": 5047.929897929378, + "max_y": 5039.662245489097 + }, + "value": null, + "layer": "PID", + "id": "562625" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5038.822839766767, + "max_x": 5041.988468727722, + "max_y": 5040.501651211427 + }, + "value": "XV-6122", + "layer": "PID", + "id": "562629" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5039.662245489097, + "max_x": 5047.929897929378, + "max_y": 5044.141770890671 + }, + "value": null, + "layer": "PID", + "id": "56262B" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5043.302365168341, + "max_x": 5041.988468727722, + "max_y": 5044.981176613001 + }, + "value": "XV-6125", + "layer": "PID", + "id": "56262F" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.040825934, + "min_y": 5042.275301973348, + "max_x": 5046.063429012056, + "max_y": 5050.487765209567 + }, + "value": null, + "layer": "PID", + "id": "562630" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5044.141770890671, + "max_x": 5047.929897929378, + "max_y": 5048.621296292244 + }, + "value": null, + "layer": "PID", + "id": "562631" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5047.781890569915, + "max_x": 5041.988468727722, + "max_y": 5049.460702014575 + }, + "value": "XV-6121", + "layer": "PID", + "id": "562635" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5048.621296292244, + "max_x": 5047.929897929378, + "max_y": 5053.100821693818 + }, + "value": null, + "layer": "PID", + "id": "562637" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5052.261415971488, + "max_x": 5041.988468727722, + "max_y": 5053.9402274161475 + }, + "value": "XV-9125", + "layer": "PID", + "id": "56263B" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5053.100821693818, + "max_x": 5047.929897929378, + "max_y": 5054.96729061114 + }, + "value": null, + "layer": "PID", + "id": "56263D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.042532857065, + "min_y": 5053.100821693818, + "max_x": 5031.504971456943, + "max_y": 5053.101862424916 + }, + "value": null, + "layer": "0", + "id": "562641" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.041679395532, + "min_y": 5048.621296292244, + "max_x": 5031.504971456943, + "max_y": 5048.622337185948 + }, + "value": null, + "layer": "0", + "id": "562642" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.039972472468, + "min_y": 5039.662245489097, + "max_x": 5031.504971456943, + "max_y": 5039.663286708012 + }, + "value": null, + "layer": "0", + "id": "562644" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.5088027003, + "min_y": 5048.921065389993, + "max_x": 5029.524589131009, + "max_y": 5050.040946740386 + }, + "value": "25A", + "layer": "PID", + "id": "562675" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.640402788446, + "min_y": 5044.592864314632, + "max_x": 5029.656189219155, + "max_y": 5045.712745665025 + }, + "value": "25A", + "layer": "PID", + "id": "5626A5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.668581037625, + "min_y": 5040.056166196928, + "max_x": 5029.684367468333, + "max_y": 5041.176047547321 + }, + "value": "25A", + "layer": "PID", + "id": "5626D5" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5027.520645229439, + "min_y": 5035.582869139876, + "max_x": 5029.536431660147, + "max_y": 5036.702750490269 + }, + "value": "25A", + "layer": "PID", + "id": "562705" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4821.557605210881, + "min_y": 5063.8927618576, + "max_x": 4833.557605210881, + "max_y": 5068.8927618576 + }, + "value": "기존설비", + "layer": "0", + "id": "562792" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4820.648797748634, + "min_y": 4931.661276100655, + "max_x": 4832.648797748634, + "max_y": 4936.661276100655 + }, + "value": "기존설비", + "layer": "0", + "id": "5627C1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4943.971630173075, + "min_y": 5212.009713891608, + "max_x": 4956.066348757324, + "max_y": 5213.129595242001 + }, + "value": "IA-10922-25A-F1A-n", + "layer": "LINENO", + "id": "5627F3" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 4744.899765828277, + "min_y": 5366.721770971031, + "max_x": 4828.499789681784, + "max_y": 5369.721770971031 + }, + "value": "<수정사 \\l 항 > . Line 추 \\l 가 : #9 Plant Air Line  #10 Plant Air Line Tie", + "layer": "0", + "id": "562829" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4742.366311884594, + "min_y": 5318.312832379453, + "max_x": 4827.045479209727, + "max_y": 5368.01905713621 + }, + "value": null, + "layer": "0", + "id": "56282D" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5057.391053304153, + "min_y": 5010.099456682922, + "max_x": 5081.767625951318, + "max_y": 5013.832394517567 + }, + "value": null, + "layer": "PID", + "id": "562862" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5063.437094238126, + "min_y": 5010.099456682922, + "max_x": 5079.901157033994, + "max_y": 5010.099456682922 + }, + "value": null, + "layer": "PID", + "id": "562863" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5065.785112294568, + "min_y": 5011.194633361998, + "max_x": 5082.910862744586, + "max_y": 5012.873628504157 + }, + "value": "#10 Plant Utility", + "layer": "0", + "id": "562864" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5032.612269245151, + "min_y": 4994.950563428332, + "max_x": 5057.391053356221, + "max_y": 5011.965925600245 + }, + "value": null, + "layer": "0", + "id": "562869" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 4931.541041150315, + "min_y": 5211.490503005268, + "max_x": 4946.454919979097, + "max_y": 5248.73298204567 + }, + "value": null, + "layer": "0", + "id": "5628A7" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4933.158749229729, + "min_y": 5245.822192436224, + "max_x": 4934.053901596806, + "max_y": 5247.314113048018 + }, + "value": "1", + "layer": "0", + "id": "5628A8" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5057.636547868702, + "min_y": 5018.126919556475, + "max_x": 5058.531700235779, + "max_y": 5019.618840168268 + }, + "value": "1", + "layer": "0", + "id": "5628D8" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5060.94489843279, + "min_y": 5111.461052280958, + "max_x": 5144.544922286297, + "max_y": 5114.461052280958 + }, + "value": "<수정사 \\l 항 > . Line 추 \\l 가 : #9 Plant Air Line  #10 Plant Air Line Tie", + "layer": "0", + "id": "56290A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 5035.747412823476, + "min_y": 4993.211266582041, + "max_x": 5047.842131407725, + "max_y": 4994.331147932435 + }, + "value": "IA-10922-25A-F1A-n", + "layer": "LINENO", + "id": "562940" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5424.620216461536, + "max_x": 2157.5177966944248, + "max_y": 5425.740097811929 + }, + "value": "SAM-10951-10A-F2A-n", + "layer": "LINENO", + "id": "562A36" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5416.221106333585, + "max_x": 2157.5177966944248, + "max_y": 5420.140691059962 + }, + "value": "SAM-10956-10A-F2A-n", + "layer": "LINENO", + "id": "562A38" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5410.621699581618, + "max_x": 2157.5177966944248, + "max_y": 5414.541284307996 + }, + "value": "SAM-10953-10A-F2A-n", + "layer": "LINENO", + "id": "562A3A" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5407.821996205634, + "max_x": 2157.5177966944248, + "max_y": 5408.941877556027 + }, + "value": "SAM-10954-10A-F2A-n", + "layer": "LINENO", + "id": "562A3C" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5216.736834605121, + "max_x": 4941.713741864643, + "max_y": 5225.398642816504 + }, + "value": null, + "layer": "VV-BALL", + "id": "562A75" + }, + { + "type": "LINE", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5213.592682123268, + "max_x": 4941.713741864643, + "max_y": 5215.57888260343 + }, + "value": null, + "layer": "VV-BALL", + "id": "562A76" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 4939.897176173434, + "min_y": 5215.47550772279, + "max_x": 4941.261877936406, + "max_y": 5216.840209485762 + }, + "value": null, + "layer": "VV-BALL", + "id": "562A79" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5030.626068764995, + "min_y": 4993.861299393635, + "max_x": 5032.612269245151, + "max_y": 4996.129729013088 + }, + "value": null, + "layer": "VV-BALL", + "id": "562ABA" + }, + { + "type": "LINE", + "bbox": { + "min_x": 5026.031475882692, + "min_y": 4993.861299393635, + "max_x": 5029.468116763304, + "max_y": 4996.129729013088 + }, + "value": null, + "layer": "VV-BALL", + "id": "562ABB" + }, + { + "type": "CIRCLE", + "bbox": { + "min_x": 5029.364741882663, + "min_y": 4994.313163321874, + "max_x": 5030.729443645635, + "max_y": 4995.6778650848455 + }, + "value": null, + "layer": "VV-BALL", + "id": "562ABE" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2109.674355800482, + "min_y": 5395.667902481613, + "max_x": 2228.9795841061255, + "max_y": 5398.667902481613 + }, + "value": "<수정사 \\l 항 > . #10-2 Sample Line No. 수 \\l 정 . PSV-10217 토출 \\l 측 CWR Line Header \\l 에 물 \\l 림", + "layer": "0", + "id": "562AF6" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 2885.703159344574, + "min_y": 5248.070615663613, + "max_x": 3005.0083876502176, + "max_y": 5251.070615663613 + }, + "value": "<수정사 \\l 항 > . Overflow Line 보 \\l 온 표 \\l 시 (E50) . Vent Line No. 표 \\l 시", + "layer": "0", + "id": "562B2E" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2882.30812460158, + "min_y": 5222.329595663971, + "max_x": 2945.936156689656, + "max_y": 5250.058599666058 + }, + "value": null, + "layer": "0", + "id": "562B32" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2661.875704534175, + "min_y": 5246.996881225335, + "max_x": 2672.087173769261, + "max_y": 5251.007305072533 + }, + "value": null, + "layer": "0", + "id": "562B35" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2704.665253525318, + "min_y": 5204.665543327486, + "max_x": 2717.4319009198025, + "max_y": 5205.78542467788 + }, + "value": "VG-10440-300A-F1A-N", + "layer": "LINENO", + "id": "562BDA" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2703.171657489614, + "min_y": 5201.697442253497, + "max_x": 2724.586312616887, + "max_y": 5206.646352626555 + }, + "value": null, + "layer": "0", + "id": "562BDC" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2669.618362540303, + "min_y": 5247.625121149996, + "max_x": 2670.5135149073794, + "max_y": 5249.11704176179 + }, + "value": "1", + "layer": "0", + "id": "562C0C" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2722.117501387929, + "min_y": 5202.325682178158, + "max_x": 2723.0126537550054, + "max_y": 5203.817602789952 + }, + "value": "2", + "layer": "0", + "id": "562C3C" + }, + { + "type": "MTEXT", + "bbox": { + "min_x": 5179.364574509388, + "min_y": 5419.860799967974, + "max_x": 5262.964598362895, + "max_y": 5422.860799967974 + }, + "value": "<수정사 \\l 항 > . 기존설 \\l 비 E-9112 삭 \\l 제 (Chiller 사 \\l 용 x)", + "layer": "0", + "id": "562C9B" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5176.831120565704, + "min_y": 5371.451861376397, + "max_x": 5261.510287890837, + "max_y": 5421.158086133154 + }, + "value": null, + "layer": "0", + "id": "562C9F" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 5435.404770888342, + "min_y": 5385.206693334176, + "max_x": 5463.476898303412, + "max_y": 5416.411004513861 + }, + "value": null, + "layer": "0", + "id": "562CA1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 4448.362026991179, + "min_y": 5177.206582650296, + "max_x": 4449.257179358256, + "max_y": 5178.69850326209 + }, + "value": "2", + "layer": "0", + "id": "562D3A" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1651.861711856456, + "min_y": 5334.004098044961, + "max_x": 1655.948231164828, + "max_y": 5337.543127579067 + }, + "value": null, + "layer": "0", + "id": "563260" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1653.47941993587, + "min_y": 5334.632337969622, + "max_x": 1654.3745723029465, + "max_y": 5336.124258581416 + }, + "value": "4", + "layer": "0", + "id": "563261" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 1864.585214695051, + "min_y": 5337.906223279258, + "max_x": 1875.116162234002, + "max_y": 5344.863932372394 + }, + "value": null, + "layer": "0", + "id": "563291" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2316.263154987633, + "min_y": 5338.522455302254, + "max_x": 2324.954171663677, + "max_y": 5344.747028122966 + }, + "value": null, + "layer": "0", + "id": "5632BF" + }, + { + "type": "LWPOLYLINE", + "bbox": { + "min_x": 2107.508188813326, + "min_y": 5370.259725699715, + "max_x": 2197.908381891476, + "max_y": 5396.548712429758 + }, + "value": null, + "layer": "0", + "id": "5632C0" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 1866.202922774464, + "min_y": 5341.95314276295, + "max_x": 1867.0980751415404, + "max_y": 5343.445063374744 + }, + "value": "5", + "layer": "0", + "id": "5632F1" + }, + { + "type": "TEXT", + "bbox": { + "min_x": 2317.880863067046, + "min_y": 5341.836238513522, + "max_x": 2318.776015434122, + "max_y": 5343.328159125316 + }, + "value": "2", + "layer": "0", + "id": "563321" + } + ], + "edges": [ + { + "relation": "associated_with", + "source": "3EABCA", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EABCB", + "target": "3EABDF" + }, + { + "relation": "associated_with", + "source": "3EABCF", + "target": "3EABDC" + }, + { + "relation": "associated_with", + "source": "3EABD0", + "target": "3EABDF" + }, + { + "relation": "associated_with", + "source": "3EABD1", + "target": "3EABDF" + }, + { + "relation": "associated_with", + "source": "3EABD2", + "target": "3EABDF" + }, + { + "relation": "associated_with", + "source": "3EABDA", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EABDB", + "target": "3EABD8" + }, + { + "relation": "pipe", + "source": "3EABDC", + "target": "3EABDF" + }, + { + "relation": "pipe", + "source": "3EABDC", + "target": "3EABD8" + }, + { + "relation": "pipe", + "source": "3EABDC", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EABE0", + "target": "3EABDF" + }, + { + "relation": "pipe", + "source": "3EABE3", + "target": "3EABD8" + }, + { + "relation": "associated_with", + "source": "3EABE4", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC01", + "target": "46E38B" + }, + { + "relation": "associated_with", + "source": "3EAC24", + "target": "46E38B" + }, + { + "relation": "associated_with", + "source": "3EAC25", + "target": "3EAEB5" + }, + { + "relation": "associated_with", + "source": "3EAC2C", + "target": "3EAEB5" + }, + { + "relation": "associated_with", + "source": "3EAC2D", + "target": "3EAEF8" + }, + { + "relation": "associated_with", + "source": "3EAC2F", + "target": "3EAEB5" + }, + { + "relation": "associated_with", + "source": "3EAC30", + "target": "3EAEB5" + }, + { + "relation": "associated_with", + "source": "3EAC37", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC57", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC58", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC59", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC5A", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC5B", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC5C", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC5D", + "target": "3EABD8" + }, + { + "relation": "associated_with", + "source": "3EAC5E", + "target": "3EABD8" + }, + { + "relation": "associated_with", + "source": "3EAC5F", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EAC60", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EAC62", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC63", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC64", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC65", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EAC66", + "target": "3EABD9" + }, + { + "relation": "associated_with", + "source": "3EAC67", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC69", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6A", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6B", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6C", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6D", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6E", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC6F", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC70", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC71", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC72", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC73", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC74", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC75", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC76", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC77", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC79", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7A", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7B", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7C", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7D", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7E", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC7F", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC80", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAC81", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC88", + "target": "3EAC89" + }, + { + "relation": "pipe", + "source": "3EAC8E", + "target": "3EAC8D" + }, + { + "relation": "pipe", + "source": "3EAC8E", + "target": "3EAE33" + }, + { + "relation": "pipe", + "source": "3EAC8E", + "target": "46E38B" + }, + { + "relation": "associated_with", + "source": "3EAC95", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAC96", + "target": "3EAC8E" + }, + { + "relation": "associated_with", + "source": "3EAC97", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAC9C", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EAC9D", + "target": "51725D" + }, + { + "relation": "associated_with", + "source": "3EAC9E", + "target": "3EAE1C" + }, + { + "relation": "associated_with", + "source": "3EACA6", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACA7", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACA8", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACA9", + "target": "3EAE1C" + }, + { + "relation": "associated_with", + "source": "3EACAA", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACAB", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACAC", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACAD", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACCC", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACCD", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACCE", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EACEF", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EACF0", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EAD0E", + "target": "3EAD0F" + }, + { + "relation": "associated_with", + "source": "3EAD1B", + "target": "3EAE01" + }, + { + "relation": "associated_with", + "source": "3EAD1F", + "target": "410E20" + }, + { + "relation": "associated_with", + "source": "3EAD21", + "target": "3EADF9" + }, + { + "relation": "associated_with", + "source": "3EAD37", + "target": "51725D" + }, + { + "relation": "associated_with", + "source": "3EAD3A", + "target": "3EAE01" + }, + { + "relation": "associated_with", + "source": "3EAD3F", + "target": "3EAE01" + }, + { + "relation": "associated_with", + "source": "3EAD40", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EAD48", + "target": "3EABDF" + }, + { + "relation": "associated_with", + "source": "3EAD51", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EAD52", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EAD67", + "target": "3EAE33" + }, + { + "relation": "associated_with", + "source": "3EAD6F", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD72", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD75", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD7A", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD7D", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD7E", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD7F", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD87", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD88", + "target": "4C432C" + }, + { + "relation": "associated_with", + "source": "3EAD8A", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EAD8B", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADA4", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADA5", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADC2", + "target": "4C42C6" + }, + { + "relation": "associated_with", + "source": "3EADC4", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADC6", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADC7", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "3EADC9", + "target": "4C42C6" + }, + { + "relation": "associated_with", + "source": "3EADD3", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD4", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD5", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD6", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD7", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD8", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADD9", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADDA", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADDB", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADDE", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADDF", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EADEE", + "target": "3EAD05" + }, + { + "relation": "pipe", + "source": "3EADF9", + "target": "51725C" + }, + { + "relation": "pipe", + "source": "3EADF9", + "target": "3EAE01" + }, + { + "relation": "pipe", + "source": "3EADF9", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EAE05", + "target": "3EAE01" + }, + { + "relation": "associated_with", + "source": "3EAE09", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "3EAE16", + "target": "3EAD4C" + }, + { + "relation": "pipe", + "source": "3EAE1C", + "target": "3EAD05" + }, + { + "relation": "pipe", + "source": "3EAE1C", + "target": "3EAF07" + }, + { + "relation": "associated_with", + "source": "3EAE2B", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EAE2C", + "target": "3EAD05" + }, + { + "relation": "associated_with", + "source": "3EAE2D", + "target": "3EAC8E" + }, + { + "relation": "associated_with", + "source": "3EAE2E", + "target": "3EAC8E" + }, + { + "relation": "associated_with", + "source": "3EAE30", + "target": "3EAE33" + }, + { + "relation": "associated_with", + "source": "3EAE31", + "target": "3EAE33" + }, + { + "relation": "associated_with", + "source": "3EAE36", + "target": "3EAE33" + }, + { + "relation": "associated_with", + "source": "3EAE38", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "3EAE3D", + "target": "3EAE42" + }, + { + "relation": "associated_with", + "source": "3EAE5D", + "target": "3EAE42" + }, + { + "relation": "associated_with", + "source": "3EAE65", + "target": "3EAE42" + }, + { + "relation": "associated_with", + "source": "3EAE71", + "target": "3EAE6E" + }, + { + "relation": "pipe", + "source": "3EAE76", + "target": "3EAE54" + }, + { + "relation": "associated_with", + "source": "3EAE7B", + "target": "3EAE76" + }, + { + "relation": "associated_with", + "source": "3EAE7C", + "target": "3EAE1C" + }, + { + "relation": "pipe", + "source": "3EAEB5", + "target": "3EAEBE" + }, + { + "relation": "pipe", + "source": "3EAEB5", + "target": "3EAEF8" + }, + { + "relation": "pipe", + "source": "3EAEB5", + "target": "3EAE6E" + }, + { + "relation": "associated_with", + "source": "3EAEBB", + "target": "3EAEB5" + }, + { + "relation": "associated_with", + "source": "3EAEC1", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAEC2", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAEC3", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAEC4", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAEC5", + "target": "3EAED7" + }, + { + "relation": "pipe", + "source": "3EAED7", + "target": "3EAC8D" + }, + { + "relation": "associated_with", + "source": "3EAEDC", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3EAEF6", + "target": "3EAEF8" + }, + { + "relation": "associated_with", + "source": "3EAF04", + "target": "3EAF07" + }, + { + "relation": "associated_with", + "source": "3EAF24", + "target": "3EAE1C" + }, + { + "relation": "associated_with", + "source": "3EAF27", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAF28", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "3EAF2B", + "target": "3EAED7" + }, + { + "relation": "associated_with", + "source": "3F16A7", + "target": "3EAD4C" + }, + { + "relation": "associated_with", + "source": "4051D6", + "target": "410E20" + }, + { + "relation": "associated_with", + "source": "405236", + "target": "410E20" + }, + { + "relation": "associated_with", + "source": "405237", + "target": "410E20" + }, + { + "relation": "associated_with", + "source": "40523C", + "target": "410E20" + }, + { + "relation": "associated_with", + "source": "410858", + "target": "41081C" + }, + { + "relation": "associated_with", + "source": "410E1C", + "target": "410E20" + }, + { + "relation": "pipe", + "source": "410E20", + "target": "3EAD4C" + }, + { + "relation": "pipe", + "source": "46E38B", + "target": "3EAEBE" + }, + { + "relation": "pipe", + "source": "46E38B", + "target": "3EAE6E" + }, + { + "relation": "associated_with", + "source": "46E38E", + "target": "46E38B" + }, + { + "relation": "associated_with", + "source": "4B1F1D", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4B1F1E", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4B1F1F", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4B1F20", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4B1F21", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4B1F22", + "target": "4C42C6" + }, + { + "relation": "associated_with", + "source": "4C42C4", + "target": "4C42C6" + }, + { + "relation": "pipe", + "source": "4C42C6", + "target": "3EADA2" + }, + { + "relation": "associated_with", + "source": "4C42C8", + "target": "4C42C6" + }, + { + "relation": "associated_with", + "source": "4C42CA", + "target": "4C42EC" + }, + { + "relation": "associated_with", + "source": "4C42D6", + "target": "4C4326" + }, + { + "relation": "associated_with", + "source": "4C42DD", + "target": "4C4319" + }, + { + "relation": "pipe", + "source": "4C42ED", + "target": "4C4390" + }, + { + "relation": "associated_with", + "source": "4C42FA", + "target": "4C42ED" + }, + { + "relation": "associated_with", + "source": "4C4300", + "target": "4C42EC" + }, + { + "relation": "associated_with", + "source": "4C4302", + "target": "4C42ED" + }, + { + "relation": "associated_with", + "source": "4C430A", + "target": "4C431E" + }, + { + "relation": "pipe", + "source": "4C431E", + "target": "4C42ED" + }, + { + "relation": "pipe", + "source": "4C4322", + "target": "4C431E" + }, + { + "relation": "pipe", + "source": "4C4322", + "target": "4C4326" + }, + { + "relation": "pipe", + "source": "4C4322", + "target": "4C4345" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "4C4390" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "4C42ED" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "4C4359" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "51686F" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "4C4355" + }, + { + "relation": "pipe", + "source": "4C4345", + "target": "4C43A2" + }, + { + "relation": "associated_with", + "source": "4C436E", + "target": "4C432C" + }, + { + "relation": "associated_with", + "source": "4C4373", + "target": "4C432C" + }, + { + "relation": "pipe", + "source": "4C4390", + "target": "4C42ED" + }, + { + "relation": "pipe", + "source": "4C4390", + "target": "4C42EC" + }, + { + "relation": "pipe", + "source": "4C43A2", + "target": "4C4390" + }, + { + "relation": "associated_with", + "source": "4C43A3", + "target": "4C43A2" + }, + { + "relation": "associated_with", + "source": "4C43A7", + "target": "4C43A2" + }, + { + "relation": "associated_with", + "source": "4C43A9", + "target": "4C43A2" + }, + { + "relation": "associated_with", + "source": "4C43B0", + "target": "4C43A2" + }, + { + "relation": "associated_with", + "source": "4C43B2", + "target": "4C4326" + }, + { + "relation": "associated_with", + "source": "4C43B3", + "target": "4C4326" + }, + { + "relation": "associated_with", + "source": "50733D", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "50736C", + "target": "3EABE3" + }, + { + "relation": "associated_with", + "source": "515815", + "target": "3EAC89" + }, + { + "relation": "associated_with", + "source": "51585B", + "target": "555C96" + }, + { + "relation": "pipe", + "source": "51686F", + "target": "4C4390" + }, + { + "relation": "pipe", + "source": "51686F", + "target": "4C4359" + }, + { + "relation": "pipe", + "source": "51725C", + "target": "3EAE01" + }, + { + "relation": "pipe", + "source": "51725C", + "target": "3EAE1C" + }, + { + "relation": "pipe", + "source": "51725C", + "target": "51725D" + }, + { + "relation": "associated_with", + "source": "517291", + "target": "51725C" + }, + { + "relation": "associated_with", + "source": "5201B9", + "target": "552835" + }, + { + "relation": "associated_with", + "source": "52612B", + "target": "526540" + }, + { + "relation": "associated_with", + "source": "52612C", + "target": "526548" + }, + { + "relation": "associated_with", + "source": "52612F", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "526130", + "target": "526199" + }, + { + "relation": "associated_with", + "source": "526134", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "526140", + "target": "52657C" + }, + { + "relation": "associated_with", + "source": "526143", + "target": "52659C" + }, + { + "relation": "associated_with", + "source": "526146", + "target": "526568" + }, + { + "relation": "associated_with", + "source": "526149", + "target": "526558" + }, + { + "relation": "associated_with", + "source": "52614C", + "target": "526574" + }, + { + "relation": "associated_with", + "source": "52614F", + "target": "526560" + }, + { + "relation": "associated_with", + "source": "526152", + "target": "526594" + }, + { + "relation": "associated_with", + "source": "526155", + "target": "52658C" + }, + { + "relation": "associated_with", + "source": "52615D", + "target": "526234" + }, + { + "relation": "associated_with", + "source": "526160", + "target": "52649E" + }, + { + "relation": "associated_with", + "source": "526166", + "target": "5265A0" + }, + { + "relation": "associated_with", + "source": "526170", + "target": "526520" + }, + { + "relation": "associated_with", + "source": "526175", + "target": "526528" + }, + { + "relation": "associated_with", + "source": "52617A", + "target": "5261EC" + }, + { + "relation": "associated_with", + "source": "52617B", + "target": "526548" + }, + { + "relation": "associated_with", + "source": "52617C", + "target": "526548" + }, + { + "relation": "associated_with", + "source": "52617E", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "526181", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "526185", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "52618B", + "target": "526548" + }, + { + "relation": "associated_with", + "source": "52618D", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "52618E", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "526194", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "52619D", + "target": "532F82" + }, + { + "relation": "associated_with", + "source": "5261A1", + "target": "526195" + }, + { + "relation": "associated_with", + "source": "5261A3", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261AD", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261AE", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261AF", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261B0", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261B6", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261B7", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261BB", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261BC", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261BD", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261BE", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261BF", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "5261C3", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261C4", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261C9", + "target": "5261E0" + }, + { + "relation": "pipe", + "source": "5261EC", + "target": "5261F3" + }, + { + "relation": "pipe", + "source": "5261F3", + "target": "526199" + }, + { + "relation": "associated_with", + "source": "5261F5", + "target": "5261E0" + }, + { + "relation": "associated_with", + "source": "5261FE", + "target": "5261F9" + }, + { + "relation": "associated_with", + "source": "52620B", + "target": "52620A" + }, + { + "relation": "pipe", + "source": "526233", + "target": "526234" + }, + { + "relation": "pipe", + "source": "526235", + "target": "52621D" + }, + { + "relation": "pipe", + "source": "526236", + "target": "526235" + }, + { + "relation": "pipe", + "source": "526236", + "target": "526233" + }, + { + "relation": "associated_with", + "source": "52624D", + "target": "52624C" + }, + { + "relation": "pipe", + "source": "52625F", + "target": "526278" + }, + { + "relation": "pipe", + "source": "526275", + "target": "526276" + }, + { + "relation": "pipe", + "source": "526276", + "target": "526275" + }, + { + "relation": "associated_with", + "source": "5262BB", + "target": "5262C0" + }, + { + "relation": "associated_with", + "source": "5262C4", + "target": "5262C0" + }, + { + "relation": "associated_with", + "source": "5262D7", + "target": "5262C6" + }, + { + "relation": "associated_with", + "source": "526305", + "target": "526301" + }, + { + "relation": "pipe", + "source": "52630D", + "target": "526391" + }, + { + "relation": "associated_with", + "source": "526311", + "target": "52630D" + }, + { + "relation": "pipe", + "source": "52632A", + "target": "52638D" + }, + { + "relation": "associated_with", + "source": "52632E", + "target": "52632A" + }, + { + "relation": "associated_with", + "source": "526353", + "target": "526301" + }, + { + "relation": "associated_with", + "source": "52635D", + "target": "5262C6" + }, + { + "relation": "associated_with", + "source": "52635E", + "target": "526301" + }, + { + "relation": "associated_with", + "source": "526360", + "target": "52632A" + }, + { + "relation": "associated_with", + "source": "526361", + "target": "526399" + }, + { + "relation": "associated_with", + "source": "526362", + "target": "52630D" + }, + { + "relation": "associated_with", + "source": "52637F", + "target": "526372" + }, + { + "relation": "associated_with", + "source": "526383", + "target": "526372" + }, + { + "relation": "associated_with", + "source": "52638B", + "target": "526389" + }, + { + "relation": "associated_with", + "source": "52638F", + "target": "52638D" + }, + { + "relation": "associated_with", + "source": "526393", + "target": "526391" + }, + { + "relation": "associated_with", + "source": "526395", + "target": "526507" + }, + { + "relation": "associated_with", + "source": "52639B", + "target": "526399" + }, + { + "relation": "associated_with", + "source": "5263A1", + "target": "52639F" + }, + { + "relation": "associated_with", + "source": "5263B1", + "target": "526391" + }, + { + "relation": "associated_with", + "source": "5263B5", + "target": "52620A" + }, + { + "relation": "associated_with", + "source": "5263B6", + "target": "52624C" + }, + { + "relation": "associated_with", + "source": "5263B7", + "target": "52621D" + }, + { + "relation": "associated_with", + "source": "5263B8", + "target": "52625F" + }, + { + "relation": "associated_with", + "source": "5263E9", + "target": "526463" + }, + { + "relation": "associated_with", + "source": "52644E", + "target": "52651C" + }, + { + "relation": "associated_with", + "source": "52644F", + "target": "52651C" + }, + { + "relation": "associated_with", + "source": "526450", + "target": "52651C" + }, + { + "relation": "associated_with", + "source": "526451", + "target": "52651C" + }, + { + "relation": "associated_with", + "source": "526452", + "target": "526520" + }, + { + "relation": "associated_with", + "source": "526453", + "target": "526520" + }, + { + "relation": "associated_with", + "source": "526454", + "target": "526520" + }, + { + "relation": "associated_with", + "source": "526455", + "target": "52651C" + }, + { + "relation": "pipe", + "source": "526463", + "target": "526474" + }, + { + "relation": "associated_with", + "source": "526468", + "target": "526463" + }, + { + "relation": "associated_with", + "source": "526475", + "target": "526474" + }, + { + "relation": "pipe", + "source": "52649D", + "target": "5264A0" + }, + { + "relation": "pipe", + "source": "52649D", + "target": "52649E" + }, + { + "relation": "pipe", + "source": "52649F", + "target": "526487" + }, + { + "relation": "associated_with", + "source": "5264AA", + "target": "526474" + }, + { + "relation": "associated_with", + "source": "5264AB", + "target": "526487" + }, + { + "relation": "associated_with", + "source": "5264BC", + "target": "526301" + }, + { + "relation": "associated_with", + "source": "5264FF", + "target": "526372" + }, + { + "relation": "associated_with", + "source": "5265AC", + "target": "5261F9" + }, + { + "relation": "associated_with", + "source": "5265B2", + "target": "5261F9" + }, + { + "relation": "associated_with", + "source": "52663F", + "target": "5265A0" + }, + { + "relation": "associated_with", + "source": "526B1D", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B1E", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B21", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B22", + "target": "526E1A" + }, + { + "relation": "associated_with", + "source": "526B26", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526B32", + "target": "526E71" + }, + { + "relation": "associated_with", + "source": "526B35", + "target": "526E59" + }, + { + "relation": "associated_with", + "source": "526B38", + "target": "526E61" + }, + { + "relation": "associated_with", + "source": "526B3B", + "target": "5334E1" + }, + { + "relation": "associated_with", + "source": "526B3E", + "target": "526EC1" + }, + { + "relation": "associated_with", + "source": "526B41", + "target": "526EC9" + }, + { + "relation": "associated_with", + "source": "526B44", + "target": "5336A5" + }, + { + "relation": "associated_with", + "source": "526B48", + "target": "526199" + }, + { + "relation": "associated_with", + "source": "526B4B", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "526B57", + "target": "526E7D" + }, + { + "relation": "associated_with", + "source": "526B61", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526B66", + "target": "526E9D" + }, + { + "relation": "associated_with", + "source": "526B6B", + "target": "526EB9" + }, + { + "relation": "associated_with", + "source": "526B6C", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B6D", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B6F", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B72", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B76", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B7C", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B7E", + "target": "526EB5" + }, + { + "relation": "associated_with", + "source": "526B7F", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B81", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B86", + "target": "5338D0" + }, + { + "relation": "associated_with", + "source": "526B89", + "target": "526B82" + }, + { + "relation": "associated_with", + "source": "526B8B", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526B95", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526B96", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526B97", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526B98", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526B9E", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526B9F", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526BA3", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526BA4", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526BA5", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526BA6", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526BA7", + "target": "526BAF" + }, + { + "relation": "associated_with", + "source": "526BAD", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526BAE", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526BB3", + "target": "526BCA" + }, + { + "relation": "pipe", + "source": "526BD6", + "target": "526BDD" + }, + { + "relation": "pipe", + "source": "526BDD", + "target": "5338D0" + }, + { + "relation": "associated_with", + "source": "526BDF", + "target": "526BCA" + }, + { + "relation": "associated_with", + "source": "526C18", + "target": "526C1D" + }, + { + "relation": "associated_with", + "source": "526C21", + "target": "526C1D" + }, + { + "relation": "associated_with", + "source": "526C34", + "target": "526C23" + }, + { + "relation": "associated_with", + "source": "526C62", + "target": "526C5E" + }, + { + "relation": "associated_with", + "source": "526C6E", + "target": "526C6A" + }, + { + "relation": "pipe", + "source": "526C88", + "target": "526D20" + }, + { + "relation": "associated_with", + "source": "526C8C", + "target": "526C88" + }, + { + "relation": "associated_with", + "source": "526CB2", + "target": "526C5E" + }, + { + "relation": "associated_with", + "source": "526CC2", + "target": "526CBE" + }, + { + "relation": "associated_with", + "source": "526CE1", + "target": "526DFF" + }, + { + "relation": "associated_with", + "source": "526CE2", + "target": "526D1C" + }, + { + "relation": "associated_with", + "source": "526CE3", + "target": "526D1C" + }, + { + "relation": "associated_with", + "source": "526CE5", + "target": "526C88" + }, + { + "relation": "associated_with", + "source": "526CE6", + "target": "526D2D" + }, + { + "relation": "associated_with", + "source": "526CE7", + "target": "526C6A" + }, + { + "relation": "associated_with", + "source": "526CF8", + "target": "526CBE" + }, + { + "relation": "associated_with", + "source": "526D12", + "target": "526D05" + }, + { + "relation": "associated_with", + "source": "526D1E", + "target": "526D1C" + }, + { + "relation": "associated_with", + "source": "526D22", + "target": "526D20" + }, + { + "relation": "pipe", + "source": "526D24", + "target": "526C6A" + }, + { + "relation": "associated_with", + "source": "526D26", + "target": "526D24" + }, + { + "relation": "associated_with", + "source": "526D28", + "target": "526E23" + }, + { + "relation": "associated_with", + "source": "526D2F", + "target": "526D2D" + }, + { + "relation": "associated_with", + "source": "526D34", + "target": "526D32" + }, + { + "relation": "associated_with", + "source": "526D44", + "target": "526D24" + }, + { + "relation": "associated_with", + "source": "526D8A", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "526D8C", + "target": "526199" + }, + { + "relation": "associated_with", + "source": "526D93", + "target": "526199" + }, + { + "relation": "associated_with", + "source": "526DE1", + "target": "526E89" + }, + { + "relation": "associated_with", + "source": "526DE4", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526DE6", + "target": "526E89" + }, + { + "relation": "associated_with", + "source": "526DE7", + "target": "526E89" + }, + { + "relation": "associated_with", + "source": "526DE8", + "target": "526E89" + }, + { + "relation": "associated_with", + "source": "526DE9", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526DEA", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526DEB", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526DEC", + "target": "526E8D" + }, + { + "relation": "associated_with", + "source": "526DED", + "target": "526E89" + }, + { + "relation": "associated_with", + "source": "526DF6", + "target": "5261C5" + }, + { + "relation": "associated_with", + "source": "526DF9", + "target": "526CBE" + }, + { + "relation": "associated_with", + "source": "526E15", + "target": "526DFF" + }, + { + "relation": "associated_with", + "source": "526E35", + "target": "526D32" + }, + { + "relation": "pipe", + "source": "526E79", + "target": "526E7D" + }, + { + "relation": "pipe", + "source": "526E7D", + "target": "526E59" + }, + { + "relation": "pipe", + "source": "526E81", + "target": "5336A5" + }, + { + "relation": "pipe", + "source": "526E8D", + "target": "526E89" + }, + { + "relation": "pipe", + "source": "526EB5", + "target": "526BCA" + }, + { + "relation": "pipe", + "source": "526EC9", + "target": "526EC1" + }, + { + "relation": "pipe", + "source": "526ED1", + "target": "53363B" + }, + { + "relation": "pipe", + "source": "5334E1", + "target": "526E65" + }, + { + "relation": "pipe", + "source": "533831", + "target": "526E41" + }, + { + "relation": "associated_with", + "source": "5525E5", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525E8", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525ED", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525EF", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525F0", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525F1", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5525F9", + "target": "558344" + }, + { + "relation": "associated_with", + "source": "5525FB", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552614", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552615", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552616", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552617", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552622", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552624", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552626", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552627", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552629", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552633", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552635", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552636", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552637", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552638", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552639", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55263A", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55263B", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55263C", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55263D", + "target": "552612" + }, + { + "relation": "pipe", + "source": "552644", + "target": "552643" + }, + { + "relation": "pipe", + "source": "552644", + "target": "55274C" + }, + { + "relation": "associated_with", + "source": "552647", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "55266A", + "target": "552653" + }, + { + "relation": "associated_with", + "source": "55266B", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "55266F", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "552670", + "target": "55436B" + }, + { + "relation": "pipe", + "source": "552674", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "5526B9", + "target": "552747" + }, + { + "relation": "associated_with", + "source": "5526CF", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "5526D0", + "target": "552653" + }, + { + "relation": "associated_with", + "source": "5526D1", + "target": "55268B" + }, + { + "relation": "associated_with", + "source": "5526D2", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "5526D3", + "target": "55268B" + }, + { + "relation": "associated_with", + "source": "5526D4", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "5526D5", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "5526D9", + "target": "5526DD" + }, + { + "relation": "pipe", + "source": "5526DD", + "target": "554278" + }, + { + "relation": "associated_with", + "source": "552705", + "target": "5526DD" + }, + { + "relation": "pipe", + "source": "55270A", + "target": "55270B" + }, + { + "relation": "pipe", + "source": "55270A", + "target": "5542E1" + }, + { + "relation": "associated_with", + "source": "55270C", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "552711", + "target": "5542EC" + }, + { + "relation": "associated_with", + "source": "552715", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "552717", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "552718", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "552719", + "target": "554374" + }, + { + "relation": "associated_with", + "source": "55271B", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "552720", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "552721", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "552742", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "552744", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "552745", + "target": "5526DD" + }, + { + "relation": "pipe", + "source": "55274C", + "target": "552644" + }, + { + "relation": "associated_with", + "source": "552755", + "target": "552643" + }, + { + "relation": "associated_with", + "source": "552756", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "55275C", + "target": "552653" + }, + { + "relation": "associated_with", + "source": "552768", + "target": "552653" + }, + { + "relation": "associated_with", + "source": "55276E", + "target": "55268B" + }, + { + "relation": "associated_with", + "source": "552775", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552776", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552777", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "552781", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "552784", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "552789", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "55278B", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "55278C", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "55278D", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "552795", + "target": "561077" + }, + { + "relation": "associated_with", + "source": "552797", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527B0", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527B1", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527B2", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527B3", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527BE", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527C0", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527C2", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527C3", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527C5", + "target": "56107B" + }, + { + "relation": "associated_with", + "source": "5527CF", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D1", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D2", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D3", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D4", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D5", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D6", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D7", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D8", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527D9", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527DA", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527DB", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "5527DC", + "target": "5527AE" + }, + { + "relation": "pipe", + "source": "5527EF", + "target": "55444A" + }, + { + "relation": "pipe", + "source": "55280C", + "target": "55281C" + }, + { + "relation": "pipe", + "source": "55280C", + "target": "5543CA" + }, + { + "relation": "associated_with", + "source": "55281D", + "target": "55281C" + }, + { + "relation": "associated_with", + "source": "552821", + "target": "55281C" + }, + { + "relation": "pipe", + "source": "552834", + "target": "5543B9" + }, + { + "relation": "pipe", + "source": "552834", + "target": "5543D8" + }, + { + "relation": "pipe", + "source": "552834", + "target": "554439" + }, + { + "relation": "associated_with", + "source": "55285A", + "target": "55281C" + }, + { + "relation": "pipe", + "source": "552860", + "target": "55280C" + }, + { + "relation": "pipe", + "source": "552860", + "target": "55426D" + }, + { + "relation": "associated_with", + "source": "552861", + "target": "552867" + }, + { + "relation": "pipe", + "source": "552867", + "target": "55280C" + }, + { + "relation": "associated_with", + "source": "552872", + "target": "552885" + }, + { + "relation": "associated_with", + "source": "55287B", + "target": "552890" + }, + { + "relation": "associated_with", + "source": "55287F", + "target": "5528B2" + }, + { + "relation": "pipe", + "source": "552885", + "target": "5528CC" + }, + { + "relation": "pipe", + "source": "552885", + "target": "5528B2" + }, + { + "relation": "pipe", + "source": "552890", + "target": "5528A7" + }, + { + "relation": "pipe", + "source": "552890", + "target": "5528E2" + }, + { + "relation": "associated_with", + "source": "55289E", + "target": "5528A7" + }, + { + "relation": "pipe", + "source": "5528A7", + "target": "554256" + }, + { + "relation": "associated_with", + "source": "5528BB", + "target": "552890" + }, + { + "relation": "associated_with", + "source": "5528BC", + "target": "552885" + }, + { + "relation": "associated_with", + "source": "5528C3", + "target": "5528CC" + }, + { + "relation": "associated_with", + "source": "5528D9", + "target": "5528E2" + }, + { + "relation": "associated_with", + "source": "5528F3", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5528F6", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5528FB", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5528FD", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5528FE", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5528FF", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552907", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552909", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552922", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552923", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552924", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552925", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552930", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552932", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552934", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552935", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552937", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552941", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552943", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552944", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552945", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552946", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552947", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552948", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "552949", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294A", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294B", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294C", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294D", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294E", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55294F", + "target": "55297A" + }, + { + "relation": "associated_with", + "source": "552951", + "target": "55297A" + }, + { + "relation": "pipe", + "source": "55295F", + "target": "55295C" + }, + { + "relation": "associated_with", + "source": "552960", + "target": "55295F" + }, + { + "relation": "associated_with", + "source": "552964", + "target": "55296B" + }, + { + "relation": "associated_with", + "source": "55296F", + "target": "55295F" + }, + { + "relation": "pipe", + "source": "55297A", + "target": "55295F" + }, + { + "relation": "pipe", + "source": "55297A", + "target": "55295C" + }, + { + "relation": "associated_with", + "source": "55298D", + "target": "55297A" + }, + { + "relation": "associated_with", + "source": "55298E", + "target": "55297A" + }, + { + "relation": "associated_with", + "source": "5529A0", + "target": "5529A7" + }, + { + "relation": "associated_with", + "source": "5529A1", + "target": "5529A7" + }, + { + "relation": "pipe", + "source": "5529A7", + "target": "55296B" + }, + { + "relation": "associated_with", + "source": "5529B1", + "target": "55297A" + }, + { + "relation": "associated_with", + "source": "5529B4", + "target": "5529A7" + }, + { + "relation": "associated_with", + "source": "5529C7", + "target": "5529D6" + }, + { + "relation": "associated_with", + "source": "5529C8", + "target": "5529D6" + }, + { + "relation": "associated_with", + "source": "5529C9", + "target": "5529D7" + }, + { + "relation": "associated_with", + "source": "5529CB", + "target": "5610B0" + }, + { + "relation": "associated_with", + "source": "5529EF", + "target": "56107B" + }, + { + "relation": "associated_with", + "source": "5529F7", + "target": "554547" + }, + { + "relation": "associated_with", + "source": "552A01", + "target": "554041" + }, + { + "relation": "associated_with", + "source": "552A0E", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "552A0F", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "552A10", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "552A1D", + "target": "553FBA" + }, + { + "relation": "associated_with", + "source": "552A1E", + "target": "553FC8" + }, + { + "relation": "associated_with", + "source": "552A1F", + "target": "553FC8" + }, + { + "relation": "associated_with", + "source": "552A21", + "target": "553FC8" + }, + { + "relation": "associated_with", + "source": "552A26", + "target": "553FBA" + }, + { + "relation": "associated_with", + "source": "552A27", + "target": "553FBA" + }, + { + "relation": "associated_with", + "source": "552A2C", + "target": "553FA9" + }, + { + "relation": "associated_with", + "source": "552A2D", + "target": "553FA9" + }, + { + "relation": "associated_with", + "source": "552A43", + "target": "553F5A" + }, + { + "relation": "pipe", + "source": "552A9E", + "target": "552F61" + }, + { + "relation": "pipe", + "source": "552A9E", + "target": "552C49" + }, + { + "relation": "associated_with", + "source": "55341A", + "target": "552E20" + }, + { + "relation": "pipe", + "source": "553C9F", + "target": "552C49" + }, + { + "relation": "associated_with", + "source": "553D5E", + "target": "553D95" + }, + { + "relation": "associated_with", + "source": "553D5F", + "target": "553D95" + }, + { + "relation": "pipe", + "source": "553D6B", + "target": "553D74" + }, + { + "relation": "associated_with", + "source": "553D6D", + "target": "553D6B" + }, + { + "relation": "pipe", + "source": "553D74", + "target": "553D3B" + }, + { + "relation": "pipe", + "source": "553D7F", + "target": "552A50" + }, + { + "relation": "associated_with", + "source": "553D9F", + "target": "553E1E" + }, + { + "relation": "pipe", + "source": "553DA3", + "target": "553D95" + }, + { + "relation": "pipe", + "source": "553DBC", + "target": "553E10" + }, + { + "relation": "pipe", + "source": "553DD5", + "target": "553DBC" + }, + { + "relation": "pipe", + "source": "553DD5", + "target": "553E03" + }, + { + "relation": "pipe", + "source": "553DD5", + "target": "553E2F" + }, + { + "relation": "pipe", + "source": "553DD5", + "target": "553ED0" + }, + { + "relation": "associated_with", + "source": "553DE1", + "target": "553DE0" + }, + { + "relation": "pipe", + "source": "553E2F", + "target": "553DBC" + }, + { + "relation": "associated_with", + "source": "553E62", + "target": "553D95" + }, + { + "relation": "associated_with", + "source": "553E63", + "target": "552E20" + }, + { + "relation": "associated_with", + "source": "553E64", + "target": "553E2B" + }, + { + "relation": "associated_with", + "source": "553E66", + "target": "553FC8" + }, + { + "relation": "associated_with", + "source": "553E67", + "target": "553FA9" + }, + { + "relation": "associated_with", + "source": "553E68", + "target": "553FA9" + }, + { + "relation": "associated_with", + "source": "553E6A", + "target": "553FA9" + }, + { + "relation": "associated_with", + "source": "553E73", + "target": "553E80" + }, + { + "relation": "associated_with", + "source": "553E74", + "target": "553E80" + }, + { + "relation": "pipe", + "source": "553E80", + "target": "553E87" + }, + { + "relation": "pipe", + "source": "553EA1", + "target": "553EA8" + }, + { + "relation": "pipe", + "source": "553EB5", + "target": "553EBC" + }, + { + "relation": "pipe", + "source": "553ED0", + "target": "553EBC" + }, + { + "relation": "pipe", + "source": "553ED0", + "target": "553EC9" + }, + { + "relation": "associated_with", + "source": "553ED2", + "target": "553E80" + }, + { + "relation": "associated_with", + "source": "553ED3", + "target": "553E80" + }, + { + "relation": "associated_with", + "source": "553ED4", + "target": "553EA1" + }, + { + "relation": "associated_with", + "source": "553ED5", + "target": "553EA1" + }, + { + "relation": "associated_with", + "source": "553ED6", + "target": "553EB5" + }, + { + "relation": "associated_with", + "source": "553ED7", + "target": "553EB5" + }, + { + "relation": "associated_with", + "source": "553ED8", + "target": "553EC9" + }, + { + "relation": "associated_with", + "source": "553ED9", + "target": "553EC9" + }, + { + "relation": "associated_with", + "source": "553EDA", + "target": "553EA1" + }, + { + "relation": "associated_with", + "source": "553EDB", + "target": "553EB5" + }, + { + "relation": "associated_with", + "source": "553EDC", + "target": "553EC9" + }, + { + "relation": "associated_with", + "source": "553EDD", + "target": "553EC9" + }, + { + "relation": "associated_with", + "source": "553EDE", + "target": "553F9D" + }, + { + "relation": "associated_with", + "source": "553EE0", + "target": "562C9B" + }, + { + "relation": "associated_with", + "source": "553EEA", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553EED", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553EF5", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553EF6", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553EF7", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553EFF", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553F01", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553F02", + "target": "553F19" + }, + { + "relation": "pipe", + "source": "553F19", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553F1B", + "target": "553F28" + }, + { + "relation": "associated_with", + "source": "553F1C", + "target": "553F28" + }, + { + "relation": "pipe", + "source": "553F2F", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "553F49", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553F4B", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553F4D", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553F4E", + "target": "553F19" + }, + { + "relation": "associated_with", + "source": "553F50", + "target": "553F19" + }, + { + "relation": "pipe", + "source": "553F5A", + "target": "553DA3" + }, + { + "relation": "pipe", + "source": "553F5A", + "target": "553E10" + }, + { + "relation": "associated_with", + "source": "553F5B", + "target": "553F5A" + }, + { + "relation": "associated_with", + "source": "553F5E", + "target": "553F5A" + }, + { + "relation": "pipe", + "source": "553F62", + "target": "553F5A" + }, + { + "relation": "associated_with", + "source": "553F8B", + "target": "553FC6" + }, + { + "relation": "associated_with", + "source": "553F8C", + "target": "553FC6" + }, + { + "relation": "associated_with", + "source": "553F8F", + "target": "553D95" + }, + { + "relation": "associated_with", + "source": "553F90", + "target": "553F9D" + }, + { + "relation": "associated_with", + "source": "553F91", + "target": "562C9B" + }, + { + "relation": "pipe", + "source": "553F97", + "target": "553F9D" + }, + { + "relation": "pipe", + "source": "553FA9", + "target": "553FA3" + }, + { + "relation": "pipe", + "source": "553FC6", + "target": "553FBA" + }, + { + "relation": "pipe", + "source": "553FC8", + "target": "553FAF" + }, + { + "relation": "associated_with", + "source": "553FCA", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "553FCB", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "553FCC", + "target": "55451A" + }, + { + "relation": "associated_with", + "source": "553FCE", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "553FD2", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "553FDD", + "target": "554041" + }, + { + "relation": "associated_with", + "source": "553FE9", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "553FF4", + "target": "554041" + }, + { + "relation": "associated_with", + "source": "553FFF", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "554003", + "target": "5544D2" + }, + { + "relation": "associated_with", + "source": "554016", + "target": "552830" + }, + { + "relation": "associated_with", + "source": "554017", + "target": "55283F" + }, + { + "relation": "associated_with", + "source": "55401A", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "554021", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "554028", + "target": "55451A" + }, + { + "relation": "associated_with", + "source": "55402F", + "target": "5544F6" + }, + { + "relation": "associated_with", + "source": "554038", + "target": "55297A" + }, + { + "relation": "pipe", + "source": "55404A", + "target": "5540EA" + }, + { + "relation": "pipe", + "source": "55404A", + "target": "5540F6" + }, + { + "relation": "pipe", + "source": "55404A", + "target": "554055" + }, + { + "relation": "pipe", + "source": "55404A", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "55406F", + "target": "5526DD" + }, + { + "relation": "associated_with", + "source": "5540A3", + "target": "5540AA" + }, + { + "relation": "pipe", + "source": "5540A4", + "target": "554564" + }, + { + "relation": "associated_with", + "source": "5540AC", + "target": "5540A4" + }, + { + "relation": "associated_with", + "source": "5540C0", + "target": "5529DF" + }, + { + "relation": "associated_with", + "source": "5540E3", + "target": "55404A" + }, + { + "relation": "associated_with", + "source": "5540E4", + "target": "55404A" + }, + { + "relation": "associated_with", + "source": "5540E5", + "target": "55404A" + }, + { + "relation": "associated_with", + "source": "5540E6", + "target": "55404A" + }, + { + "relation": "associated_with", + "source": "5540F2", + "target": "5540EA" + }, + { + "relation": "pipe", + "source": "5540F6", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "554105", + "target": "55404A" + }, + { + "relation": "associated_with", + "source": "554107", + "target": "554547" + }, + { + "relation": "associated_with", + "source": "554108", + "target": "55404A" + }, + { + "relation": "pipe", + "source": "554141", + "target": "554523" + }, + { + "relation": "associated_with", + "source": "55414E", + "target": "55411C" + }, + { + "relation": "associated_with", + "source": "554150", + "target": "554523" + }, + { + "relation": "associated_with", + "source": "554151", + "target": "55411C" + }, + { + "relation": "pipe", + "source": "554167", + "target": "55418D" + }, + { + "relation": "pipe", + "source": "554167", + "target": "55433C" + }, + { + "relation": "pipe", + "source": "554167", + "target": "5541D8" + }, + { + "relation": "pipe", + "source": "55418D", + "target": "55433C" + }, + { + "relation": "pipe", + "source": "55418D", + "target": "5541B2" + }, + { + "relation": "associated_with", + "source": "55419B", + "target": "5544FF" + }, + { + "relation": "associated_with", + "source": "55419C", + "target": "554167" + }, + { + "relation": "pipe", + "source": "5541B2", + "target": "55433C" + }, + { + "relation": "pipe", + "source": "5541B2", + "target": "5541A9" + }, + { + "relation": "pipe", + "source": "5541B2", + "target": "5541BD" + }, + { + "relation": "pipe", + "source": "5541D8", + "target": "55418D" + }, + { + "relation": "pipe", + "source": "5541D8", + "target": "5541F4" + }, + { + "relation": "pipe", + "source": "5541D8", + "target": "5541B2" + }, + { + "relation": "associated_with", + "source": "5541E6", + "target": "5544DB" + }, + { + "relation": "associated_with", + "source": "5541E7", + "target": "5541B2" + }, + { + "relation": "pipe", + "source": "5541F4", + "target": "5541BD" + }, + { + "relation": "pipe", + "source": "5541F4", + "target": "5544B7" + }, + { + "relation": "pipe", + "source": "5541FD", + "target": "5541BD" + }, + { + "relation": "pipe", + "source": "5541FD", + "target": "554208" + }, + { + "relation": "pipe", + "source": "554223", + "target": "5544AE" + }, + { + "relation": "pipe", + "source": "554223", + "target": "5541FD" + }, + { + "relation": "associated_with", + "source": "554231", + "target": "5544B7" + }, + { + "relation": "associated_with", + "source": "554232", + "target": "5541FD" + }, + { + "relation": "associated_with", + "source": "554238", + "target": "554167" + }, + { + "relation": "associated_with", + "source": "554239", + "target": "5541B2" + }, + { + "relation": "associated_with", + "source": "55423A", + "target": "5541FD" + }, + { + "relation": "associated_with", + "source": "55423B", + "target": "5527FD" + }, + { + "relation": "associated_with", + "source": "554241", + "target": "552835" + }, + { + "relation": "associated_with", + "source": "554243", + "target": "552885" + }, + { + "relation": "associated_with", + "source": "554247", + "target": "552815" + }, + { + "relation": "associated_with", + "source": "55424C", + "target": "552830" + }, + { + "relation": "associated_with", + "source": "55424E", + "target": "5528CC" + }, + { + "relation": "associated_with", + "source": "55424F", + "target": "5528E2" + }, + { + "relation": "associated_with", + "source": "554250", + "target": "554256" + }, + { + "relation": "associated_with", + "source": "554261", + "target": "554256" + }, + { + "relation": "associated_with", + "source": "554267", + "target": "5528A7" + }, + { + "relation": "pipe", + "source": "55426D", + "target": "5543CA" + }, + { + "relation": "associated_with", + "source": "554273", + "target": "55426D" + }, + { + "relation": "pipe", + "source": "554278", + "target": "5526DD" + }, + { + "relation": "pipe", + "source": "554278", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "55428D", + "target": "554278" + }, + { + "relation": "associated_with", + "source": "55428E", + "target": "554278" + }, + { + "relation": "associated_with", + "source": "554295", + "target": "552723" + }, + { + "relation": "associated_with", + "source": "5542B1", + "target": "552643" + }, + { + "relation": "associated_with", + "source": "5542B3", + "target": "55270B" + }, + { + "relation": "associated_with", + "source": "5542B8", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "5542C0", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "5542C1", + "target": "55270B" + }, + { + "relation": "associated_with", + "source": "5542D0", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "5542E0", + "target": "552644" + }, + { + "relation": "pipe", + "source": "5542EC", + "target": "5542F1" + }, + { + "relation": "pipe", + "source": "5542F1", + "target": "5542EC" + }, + { + "relation": "associated_with", + "source": "5542F6", + "target": "5542E1" + }, + { + "relation": "associated_with", + "source": "5542FA", + "target": "5542E1" + }, + { + "relation": "associated_with", + "source": "554334", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "554336", + "target": "55270A" + }, + { + "relation": "associated_with", + "source": "554339", + "target": "554374" + }, + { + "relation": "pipe", + "source": "55433C", + "target": "554113" + }, + { + "relation": "pipe", + "source": "55433C", + "target": "55411C" + }, + { + "relation": "associated_with", + "source": "55434E", + "target": "5543A4" + }, + { + "relation": "pipe", + "source": "554380", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "55438B", + "target": "554380" + }, + { + "relation": "associated_with", + "source": "554395", + "target": "55436B" + }, + { + "relation": "pipe", + "source": "5543A4", + "target": "554374" + }, + { + "relation": "pipe", + "source": "5543D8", + "target": "554419" + }, + { + "relation": "pipe", + "source": "5543D8", + "target": "5543E7" + }, + { + "relation": "pipe", + "source": "5543E7", + "target": "55426D" + }, + { + "relation": "associated_with", + "source": "5543F4", + "target": "5543E7" + }, + { + "relation": "associated_with", + "source": "554403", + "target": "5543F6" + }, + { + "relation": "pipe", + "source": "554419", + "target": "55442D" + }, + { + "relation": "pipe", + "source": "55442D", + "target": "55445E" + }, + { + "relation": "pipe", + "source": "55442D", + "target": "55281B" + }, + { + "relation": "pipe", + "source": "554439", + "target": "554419" + }, + { + "relation": "pipe", + "source": "554439", + "target": "554451" + }, + { + "relation": "pipe", + "source": "554439", + "target": "55440D" + }, + { + "relation": "pipe", + "source": "554439", + "target": "552849" + }, + { + "relation": "pipe", + "source": "554439", + "target": "55442D" + }, + { + "relation": "associated_with", + "source": "554447", + "target": "55444A" + }, + { + "relation": "associated_with", + "source": "55444B", + "target": "55444A" + }, + { + "relation": "pipe", + "source": "554451", + "target": "5527EF" + }, + { + "relation": "associated_with", + "source": "554458", + "target": "55445E" + }, + { + "relation": "pipe", + "source": "55445E", + "target": "5527EF" + }, + { + "relation": "associated_with", + "source": "55446A", + "target": "55281B" + }, + { + "relation": "associated_with", + "source": "55446B", + "target": "5529DF" + }, + { + "relation": "associated_with", + "source": "55446F", + "target": "554564" + }, + { + "relation": "associated_with", + "source": "554470", + "target": "5540F6" + }, + { + "relation": "associated_with", + "source": "554473", + "target": "554141" + }, + { + "relation": "associated_with", + "source": "554476", + "target": "55418D" + }, + { + "relation": "associated_with", + "source": "554479", + "target": "5541D8" + }, + { + "relation": "associated_with", + "source": "55447C", + "target": "554223" + }, + { + "relation": "associated_with", + "source": "55447F", + "target": "55433C" + }, + { + "relation": "associated_with", + "source": "554482", + "target": "5540AA" + }, + { + "relation": "associated_with", + "source": "55448A", + "target": "5543A4" + }, + { + "relation": "associated_with", + "source": "554490", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "554497", + "target": "55281B" + }, + { + "relation": "associated_with", + "source": "554498", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "554499", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "55449A", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55449B", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "55449C", + "target": "5527AE" + }, + { + "relation": "associated_with", + "source": "55449D", + "target": "5540AA" + }, + { + "relation": "associated_with", + "source": "5544A9", + "target": "552920" + }, + { + "relation": "associated_with", + "source": "5544AC", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "5544C3", + "target": "5544AE" + }, + { + "relation": "associated_with", + "source": "5544D0", + "target": "5544D2" + }, + { + "relation": "associated_with", + "source": "5544E7", + "target": "5544D2" + }, + { + "relation": "associated_with", + "source": "5544F4", + "target": "5544F6" + }, + { + "relation": "pipe", + "source": "5544F6", + "target": "5544DB" + }, + { + "relation": "pipe", + "source": "5544F6", + "target": "5544FF" + }, + { + "relation": "pipe", + "source": "5544F6", + "target": "55451A" + }, + { + "relation": "pipe", + "source": "5544F6", + "target": "554167" + }, + { + "relation": "pipe", + "source": "5544F6", + "target": "5541D8" + }, + { + "relation": "associated_with", + "source": "55450B", + "target": "5544F6" + }, + { + "relation": "associated_with", + "source": "554518", + "target": "55451A" + }, + { + "relation": "pipe", + "source": "55451A", + "target": "554113" + }, + { + "relation": "pipe", + "source": "55451A", + "target": "55433C" + }, + { + "relation": "pipe", + "source": "55451A", + "target": "554523" + }, + { + "relation": "pipe", + "source": "55451A", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "55452F", + "target": "55451A" + }, + { + "relation": "associated_with", + "source": "55453C", + "target": "55453E" + }, + { + "relation": "pipe", + "source": "55453E", + "target": "554547" + }, + { + "relation": "pipe", + "source": "55453E", + "target": "554055" + }, + { + "relation": "pipe", + "source": "554547", + "target": "5540F6" + }, + { + "relation": "associated_with", + "source": "554553", + "target": "55453E" + }, + { + "relation": "associated_with", + "source": "55457E", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "554592", + "target": "552674" + }, + { + "relation": "associated_with", + "source": "55459F", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5545A0", + "target": "552612" + }, + { + "relation": "associated_with", + "source": "5545A1", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "5545A2", + "target": "55436B" + }, + { + "relation": "associated_with", + "source": "5545A5", + "target": "555729" + }, + { + "relation": "pipe", + "source": "5545BE", + "target": "555A50" + }, + { + "relation": "associated_with", + "source": "5545FA", + "target": "554614" + }, + { + "relation": "associated_with", + "source": "5545FF", + "target": "554600" + }, + { + "relation": "associated_with", + "source": "554613", + "target": "554614" + }, + { + "relation": "associated_with", + "source": "554615", + "target": "554600" + }, + { + "relation": "associated_with", + "source": "554617", + "target": "554600" + }, + { + "relation": "pipe", + "source": "55465A", + "target": "5553B2" + }, + { + "relation": "associated_with", + "source": "55466D", + "target": "55465A" + }, + { + "relation": "pipe", + "source": "554682", + "target": "554CFD" + }, + { + "relation": "pipe", + "source": "554682", + "target": "554D14" + }, + { + "relation": "pipe", + "source": "554682", + "target": "555CCC" + }, + { + "relation": "pipe", + "source": "554682", + "target": "555BE7" + }, + { + "relation": "pipe", + "source": "5546A9", + "target": "555329" + }, + { + "relation": "pipe", + "source": "5546A9", + "target": "5559D3" + }, + { + "relation": "associated_with", + "source": "5546C4", + "target": "5546C5" + }, + { + "relation": "associated_with", + "source": "5546DA", + "target": "55469C" + }, + { + "relation": "associated_with", + "source": "5546E5", + "target": "554687" + }, + { + "relation": "associated_with", + "source": "5546E6", + "target": "554687" + }, + { + "relation": "associated_with", + "source": "5546E9", + "target": "5546EA" + }, + { + "relation": "associated_with", + "source": "5546EB", + "target": "5546C5" + }, + { + "relation": "associated_with", + "source": "5546F0", + "target": "5546F2" + }, + { + "relation": "associated_with", + "source": "5546F1", + "target": "5546F2" + }, + { + "relation": "associated_with", + "source": "5546F5", + "target": "5546C5" + }, + { + "relation": "associated_with", + "source": "554714", + "target": "554687" + }, + { + "relation": "pipe", + "source": "554729", + "target": "5553FE" + }, + { + "relation": "pipe", + "source": "554729", + "target": "55599D" + }, + { + "relation": "pipe", + "source": "554729", + "target": "555329" + }, + { + "relation": "pipe", + "source": "554729", + "target": "5547C7" + }, + { + "relation": "associated_with", + "source": "55472C", + "target": "55472D" + }, + { + "relation": "associated_with", + "source": "5547B2", + "target": "5547B3" + }, + { + "relation": "pipe", + "source": "5547B3", + "target": "5559A1" + }, + { + "relation": "associated_with", + "source": "5547B4", + "target": "5547B3" + }, + { + "relation": "associated_with", + "source": "5547B5", + "target": "5547B3" + }, + { + "relation": "associated_with", + "source": "5547C3", + "target": "555472" + }, + { + "relation": "associated_with", + "source": "5547C6", + "target": "5547C7" + }, + { + "relation": "pipe", + "source": "5547C7", + "target": "55472E" + }, + { + "relation": "associated_with", + "source": "5547CC", + "target": "5547C7" + }, + { + "relation": "associated_with", + "source": "5547D9", + "target": "555BFA" + }, + { + "relation": "associated_with", + "source": "5547EE", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "554807", + "target": "554808" + }, + { + "relation": "associated_with", + "source": "554809", + "target": "554808" + }, + { + "relation": "associated_with", + "source": "554812", + "target": "554808" + }, + { + "relation": "associated_with", + "source": "554835", + "target": "55484C" + }, + { + "relation": "associated_with", + "source": "554844", + "target": "5552E7" + }, + { + "relation": "associated_with", + "source": "55484A", + "target": "5552E7" + }, + { + "relation": "associated_with", + "source": "55484B", + "target": "55484C" + }, + { + "relation": "associated_with", + "source": "554854", + "target": "554855" + }, + { + "relation": "pipe", + "source": "554855", + "target": "555834" + }, + { + "relation": "pipe", + "source": "554855", + "target": "5548A0" + }, + { + "relation": "associated_with", + "source": "554856", + "target": "554855" + }, + { + "relation": "associated_with", + "source": "55488C", + "target": "55488E" + }, + { + "relation": "associated_with", + "source": "554896", + "target": "554897" + }, + { + "relation": "pipe", + "source": "554897", + "target": "5549C0" + }, + { + "relation": "pipe", + "source": "554897", + "target": "55488E" + }, + { + "relation": "pipe", + "source": "554897", + "target": "55487E" + }, + { + "relation": "associated_with", + "source": "554899", + "target": "554897" + }, + { + "relation": "associated_with", + "source": "55489F", + "target": "5548A0" + }, + { + "relation": "pipe", + "source": "5548A0", + "target": "555830" + }, + { + "relation": "pipe", + "source": "5548A0", + "target": "555E8C" + }, + { + "relation": "associated_with", + "source": "5548AA", + "target": "55484C" + }, + { + "relation": "associated_with", + "source": "5548AD", + "target": "554897" + }, + { + "relation": "pipe", + "source": "5548C8", + "target": "55488E" + }, + { + "relation": "pipe", + "source": "5548C8", + "target": "554897" + }, + { + "relation": "associated_with", + "source": "5548F7", + "target": "5548F8" + }, + { + "relation": "pipe", + "source": "5548F8", + "target": "555834" + }, + { + "relation": "pipe", + "source": "5548F8", + "target": "554E0C" + }, + { + "relation": "associated_with", + "source": "5548FC", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "5548FD", + "target": "5548C8" + }, + { + "relation": "associated_with", + "source": "5548FE", + "target": "5548A0" + }, + { + "relation": "associated_with", + "source": "554904", + "target": "5559BF" + }, + { + "relation": "associated_with", + "source": "554979", + "target": "55497A" + }, + { + "relation": "associated_with", + "source": "554982", + "target": "554981" + }, + { + "relation": "associated_with", + "source": "5549AB", + "target": "5547C7" + }, + { + "relation": "pipe", + "source": "5549B6", + "target": "554CAD" + }, + { + "relation": "pipe", + "source": "5549B6", + "target": "5552E7" + }, + { + "relation": "pipe", + "source": "5549C0", + "target": "55544D" + }, + { + "relation": "associated_with", + "source": "5549C6", + "target": "5557B0" + }, + { + "relation": "associated_with", + "source": "5549CC", + "target": "554981" + }, + { + "relation": "associated_with", + "source": "5549F4", + "target": "5549F5" + }, + { + "relation": "associated_with", + "source": "554A04", + "target": "554A0C" + }, + { + "relation": "associated_with", + "source": "554A30", + "target": "5549F5" + }, + { + "relation": "pipe", + "source": "554A42", + "target": "554BEA" + }, + { + "relation": "associated_with", + "source": "554A4C", + "target": "554A4D" + }, + { + "relation": "pipe", + "source": "554A66", + "target": "554A8C" + }, + { + "relation": "associated_with", + "source": "554A72", + "target": "554A2D" + }, + { + "relation": "pipe", + "source": "554A77", + "target": "555EB7" + }, + { + "relation": "pipe", + "source": "554A8C", + "target": "5559C7" + }, + { + "relation": "associated_with", + "source": "554A93", + "target": "554A9C" + }, + { + "relation": "pipe", + "source": "554A9C", + "target": "555223" + }, + { + "relation": "pipe", + "source": "554A9C", + "target": "554A66" + }, + { + "relation": "pipe", + "source": "554AD3", + "target": "554C5F" + }, + { + "relation": "pipe", + "source": "554AD3", + "target": "554CCA" + }, + { + "relation": "pipe", + "source": "554AD3", + "target": "554A6F" + }, + { + "relation": "associated_with", + "source": "554AD5", + "target": "555817" + }, + { + "relation": "pipe", + "source": "554B4E", + "target": "5549E5" + }, + { + "relation": "associated_with", + "source": "554B69", + "target": "554A73" + }, + { + "relation": "pipe", + "source": "554B71", + "target": "554A9C" + }, + { + "relation": "pipe", + "source": "554B71", + "target": "554DC5" + }, + { + "relation": "pipe", + "source": "554B71", + "target": "555921" + }, + { + "relation": "pipe", + "source": "554B71", + "target": "554C47" + }, + { + "relation": "associated_with", + "source": "554B78", + "target": "554A28" + }, + { + "relation": "associated_with", + "source": "554B8A", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554B98", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554B9E", + "target": "554D77" + }, + { + "relation": "associated_with", + "source": "554BA4", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554BB3", + "target": "554855" + }, + { + "relation": "associated_with", + "source": "554BC6", + "target": "5546AF" + }, + { + "relation": "associated_with", + "source": "554BC7", + "target": "5546C5" + }, + { + "relation": "associated_with", + "source": "554BCC", + "target": "554897" + }, + { + "relation": "associated_with", + "source": "554BCD", + "target": "554897" + }, + { + "relation": "associated_with", + "source": "554BD0", + "target": "554D6E" + }, + { + "relation": "associated_with", + "source": "554BD1", + "target": "554D77" + }, + { + "relation": "pipe", + "source": "554C15", + "target": "55465A" + }, + { + "relation": "pipe", + "source": "554C47", + "target": "554AD3" + }, + { + "relation": "pipe", + "source": "554C47", + "target": "554BEA" + }, + { + "relation": "pipe", + "source": "554C47", + "target": "555F13" + }, + { + "relation": "pipe", + "source": "554C47", + "target": "554C5F" + }, + { + "relation": "associated_with", + "source": "554C68", + "target": "554C5F" + }, + { + "relation": "associated_with", + "source": "554C78", + "target": "554DFF" + }, + { + "relation": "associated_with", + "source": "554C7A", + "target": "55582C" + }, + { + "relation": "pipe", + "source": "554CCA", + "target": "554A42" + }, + { + "relation": "pipe", + "source": "554CCA", + "target": "555F0A" + }, + { + "relation": "associated_with", + "source": "554CEE", + "target": "554CEF" + }, + { + "relation": "associated_with", + "source": "554CFC", + "target": "554CFD" + }, + { + "relation": "pipe", + "source": "554CFD", + "target": "554CF9" + }, + { + "relation": "pipe", + "source": "554CFD", + "target": "554F90" + }, + { + "relation": "pipe", + "source": "554CFD", + "target": "554D28" + }, + { + "relation": "associated_with", + "source": "554D0B", + "target": "554687" + }, + { + "relation": "associated_with", + "source": "554D0C", + "target": "5546B5" + }, + { + "relation": "associated_with", + "source": "554D0D", + "target": "5547B3" + }, + { + "relation": "associated_with", + "source": "554D27", + "target": "554D28" + }, + { + "relation": "pipe", + "source": "554D28", + "target": "5551EC" + }, + { + "relation": "associated_with", + "source": "554D56", + "target": "5545BE" + }, + { + "relation": "associated_with", + "source": "554D5F", + "target": "5545AF" + }, + { + "relation": "associated_with", + "source": "554D67", + "target": "55472D" + }, + { + "relation": "associated_with", + "source": "554D6D", + "target": "554BD8" + }, + { + "relation": "pipe", + "source": "554D77", + "target": "555EB7" + }, + { + "relation": "pipe", + "source": "554D77", + "target": "554EF9" + }, + { + "relation": "pipe", + "source": "554D77", + "target": "554D6E" + }, + { + "relation": "associated_with", + "source": "554D93", + "target": "554717" + }, + { + "relation": "associated_with", + "source": "554D98", + "target": "555238" + }, + { + "relation": "associated_with", + "source": "554D99", + "target": "555238" + }, + { + "relation": "pipe", + "source": "554DAF", + "target": "5552F2" + }, + { + "relation": "associated_with", + "source": "554DB9", + "target": "554DAF" + }, + { + "relation": "associated_with", + "source": "554DBF", + "target": "554ECD" + }, + { + "relation": "pipe", + "source": "554DC5", + "target": "554DD3" + }, + { + "relation": "associated_with", + "source": "554DF2", + "target": "555238" + }, + { + "relation": "associated_with", + "source": "554DF8", + "target": "5548C8" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "5559C3" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "554A9C" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "554B4E" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "555223" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "5548F8" + }, + { + "relation": "pipe", + "source": "554E26", + "target": "5559BF" + }, + { + "relation": "associated_with", + "source": "554E38", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554E39", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554E3B", + "target": "555B14" + }, + { + "relation": "associated_with", + "source": "554E82", + "target": "55488E" + }, + { + "relation": "associated_with", + "source": "554E83", + "target": "554683" + }, + { + "relation": "associated_with", + "source": "554E85", + "target": "554C29" + }, + { + "relation": "associated_with", + "source": "554E86", + "target": "554735" + }, + { + "relation": "associated_with", + "source": "554E87", + "target": "55472E" + }, + { + "relation": "associated_with", + "source": "554E88", + "target": "55472D" + }, + { + "relation": "associated_with", + "source": "554E89", + "target": "55472D" + }, + { + "relation": "associated_with", + "source": "554E8A", + "target": "5548A0" + }, + { + "relation": "associated_with", + "source": "554E8B", + "target": "5548A0" + }, + { + "relation": "associated_with", + "source": "554E9E", + "target": "554A77" + }, + { + "relation": "associated_with", + "source": "554EA0", + "target": "554A28" + }, + { + "relation": "associated_with", + "source": "554EA1", + "target": "554A28" + }, + { + "relation": "associated_with", + "source": "554EA2", + "target": "554B7C" + }, + { + "relation": "associated_with", + "source": "554EA3", + "target": "554A42" + }, + { + "relation": "associated_with", + "source": "554EA4", + "target": "554A42" + }, + { + "relation": "associated_with", + "source": "554EA5", + "target": "554A4F" + }, + { + "relation": "associated_with", + "source": "554EA6", + "target": "554CCA" + }, + { + "relation": "associated_with", + "source": "554EA7", + "target": "554C47" + }, + { + "relation": "associated_with", + "source": "554EA8", + "target": "554C5F" + }, + { + "relation": "associated_with", + "source": "554EA9", + "target": "554C54" + }, + { + "relation": "associated_with", + "source": "554EAB", + "target": "554DA4" + }, + { + "relation": "associated_with", + "source": "554EAC", + "target": "554C6D" + }, + { + "relation": "associated_with", + "source": "554EAD", + "target": "554DC5" + }, + { + "relation": "associated_with", + "source": "554EAE", + "target": "554DD3" + }, + { + "relation": "associated_with", + "source": "554EAF", + "target": "554DE3" + }, + { + "relation": "associated_with", + "source": "554EB0", + "target": "554CAD" + }, + { + "relation": "associated_with", + "source": "554EB3", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "554EB6", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "554EB7", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "554EBB", + "target": "555F13" + }, + { + "relation": "associated_with", + "source": "554EBD", + "target": "555F13" + }, + { + "relation": "associated_with", + "source": "554ECC", + "target": "554EC1" + }, + { + "relation": "pipe", + "source": "554ECD", + "target": "555936" + }, + { + "relation": "pipe", + "source": "554ECD", + "target": "5558FF" + }, + { + "relation": "associated_with", + "source": "554EE2", + "target": "554EF9" + }, + { + "relation": "associated_with", + "source": "554EE4", + "target": "554EF9" + }, + { + "relation": "associated_with", + "source": "554EF4", + "target": "555ED6" + }, + { + "relation": "associated_with", + "source": "554EF6", + "target": "555ED6" + }, + { + "relation": "associated_with", + "source": "554EF7", + "target": "554EF9" + }, + { + "relation": "pipe", + "source": "554EF9", + "target": "555F13" + }, + { + "relation": "associated_with", + "source": "554EFB", + "target": "5545EC" + }, + { + "relation": "associated_with", + "source": "554EFF", + "target": "55487E" + }, + { + "relation": "associated_with", + "source": "554F15", + "target": "5549A5" + }, + { + "relation": "associated_with", + "source": "554F16", + "target": "554B71" + }, + { + "relation": "associated_with", + "source": "554F28", + "target": "5554D3" + }, + { + "relation": "associated_with", + "source": "554F2C", + "target": "554F1D" + }, + { + "relation": "associated_with", + "source": "554F42", + "target": "554F49" + }, + { + "relation": "associated_with", + "source": "554F51", + "target": "555C96" + }, + { + "relation": "associated_with", + "source": "554F58", + "target": "554F7C" + }, + { + "relation": "associated_with", + "source": "554F5F", + "target": "55585E" + }, + { + "relation": "associated_with", + "source": "554F60", + "target": "555C96" + }, + { + "relation": "associated_with", + "source": "554F61", + "target": "554F62" + }, + { + "relation": "associated_with", + "source": "554F69", + "target": "554F7C" + }, + { + "relation": "associated_with", + "source": "554F7B", + "target": "554F7C" + }, + { + "relation": "pipe", + "source": "554F7C", + "target": "554F90" + }, + { + "relation": "pipe", + "source": "554F90", + "target": "554D28" + }, + { + "relation": "pipe", + "source": "554F90", + "target": "554F70" + }, + { + "relation": "associated_with", + "source": "554FAD", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554FB3", + "target": "554A4F" + }, + { + "relation": "associated_with", + "source": "554FB5", + "target": "554D6E" + }, + { + "relation": "associated_with", + "source": "554FBC", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554FC3", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554FC7", + "target": "55554E" + }, + { + "relation": "associated_with", + "source": "554FCE", + "target": "555D76" + }, + { + "relation": "associated_with", + "source": "554FD9", + "target": "554FF1" + }, + { + "relation": "associated_with", + "source": "554FE0", + "target": "554FF1" + }, + { + "relation": "pipe", + "source": "554FFB", + "target": "554F90" + }, + { + "relation": "pipe", + "source": "554FFB", + "target": "554FE8" + }, + { + "relation": "pipe", + "source": "555015", + "target": "554C15" + }, + { + "relation": "pipe", + "source": "555015", + "target": "555147" + }, + { + "relation": "pipe", + "source": "555047", + "target": "55585E" + }, + { + "relation": "associated_with", + "source": "555088", + "target": "55508E" + }, + { + "relation": "associated_with", + "source": "555089", + "target": "55508E" + }, + { + "relation": "pipe", + "source": "555094", + "target": "555995" + }, + { + "relation": "associated_with", + "source": "55509A", + "target": "555094" + }, + { + "relation": "associated_with", + "source": "5550AA", + "target": "5550E7" + }, + { + "relation": "associated_with", + "source": "5550B2", + "target": "5550B1" + }, + { + "relation": "pipe", + "source": "5550BA", + "target": "555073" + }, + { + "relation": "pipe", + "source": "55510C", + "target": "555094" + }, + { + "relation": "pipe", + "source": "55510C", + "target": "555379" + }, + { + "relation": "pipe", + "source": "55510C", + "target": "55536E" + }, + { + "relation": "associated_with", + "source": "555115", + "target": "55510C" + }, + { + "relation": "associated_with", + "source": "55511A", + "target": "555073" + }, + { + "relation": "associated_with", + "source": "55511B", + "target": "555E67" + }, + { + "relation": "associated_with", + "source": "55511D", + "target": "555E67" + }, + { + "relation": "associated_with", + "source": "55512C", + "target": "555E74" + }, + { + "relation": "associated_with", + "source": "555133", + "target": "5550BA" + }, + { + "relation": "associated_with", + "source": "555134", + "target": "555094" + }, + { + "relation": "associated_with", + "source": "555139", + "target": "55582C" + }, + { + "relation": "associated_with", + "source": "55513A", + "target": "55582C" + }, + { + "relation": "associated_with", + "source": "55513D", + "target": "55582C" + }, + { + "relation": "pipe", + "source": "555147", + "target": "55465A" + }, + { + "relation": "pipe", + "source": "555147", + "target": "554C15" + }, + { + "relation": "pipe", + "source": "555147", + "target": "555775" + }, + { + "relation": "pipe", + "source": "555147", + "target": "5551BB" + }, + { + "relation": "associated_with", + "source": "55514A", + "target": "55514B" + }, + { + "relation": "associated_with", + "source": "5551C1", + "target": "5551D7" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "555140" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "5554EC" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "5553CC" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "554E70" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "554FFB" + }, + { + "relation": "pipe", + "source": "5551CC", + "target": "55581B" + }, + { + "relation": "associated_with", + "source": "5551E0", + "target": "554D24" + }, + { + "relation": "associated_with", + "source": "5551E1", + "target": "554D28" + }, + { + "relation": "associated_with", + "source": "5551E3", + "target": "55514B" + }, + { + "relation": "associated_with", + "source": "5551E7", + "target": "555192" + }, + { + "relation": "pipe", + "source": "555223", + "target": "554A66" + }, + { + "relation": "pipe", + "source": "555223", + "target": "554A8C" + }, + { + "relation": "pipe", + "source": "555223", + "target": "55523C" + }, + { + "relation": "pipe", + "source": "555223", + "target": "5554B0" + }, + { + "relation": "pipe", + "source": "555223", + "target": "554B4E" + }, + { + "relation": "associated_with", + "source": "555236", + "target": "555238" + }, + { + "relation": "associated_with", + "source": "555239", + "target": "555223" + }, + { + "relation": "associated_with", + "source": "55523A", + "target": "555231" + }, + { + "relation": "pipe", + "source": "55523C", + "target": "5548C8" + }, + { + "relation": "associated_with", + "source": "555254", + "target": "554A66" + }, + { + "relation": "associated_with", + "source": "555255", + "target": "5549F8" + }, + { + "relation": "associated_with", + "source": "555257", + "target": "5612AC" + }, + { + "relation": "pipe", + "source": "555285", + "target": "554DAF" + }, + { + "relation": "associated_with", + "source": "555298", + "target": "554A0C" + }, + { + "relation": "associated_with", + "source": "55529B", + "target": "554C6D" + }, + { + "relation": "associated_with", + "source": "55529C", + "target": "554C6D" + }, + { + "relation": "associated_with", + "source": "5552E4", + "target": "554C34" + }, + { + "relation": "associated_with", + "source": "5552EA", + "target": "554836" + }, + { + "relation": "pipe", + "source": "5552F2", + "target": "5557FD" + }, + { + "relation": "pipe", + "source": "5552F2", + "target": "555276" + }, + { + "relation": "pipe", + "source": "5552F4", + "target": "555285" + }, + { + "relation": "pipe", + "source": "5552F4", + "target": "554DAF" + }, + { + "relation": "pipe", + "source": "5552F4", + "target": "55590D" + }, + { + "relation": "associated_with", + "source": "5552F7", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555304", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555309", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555310", + "target": "554EC1" + }, + { + "relation": "associated_with", + "source": "555314", + "target": "554EC1" + }, + { + "relation": "pipe", + "source": "555329", + "target": "55599D" + }, + { + "relation": "pipe", + "source": "555329", + "target": "555760" + }, + { + "relation": "pipe", + "source": "555329", + "target": "555337" + }, + { + "relation": "pipe", + "source": "555329", + "target": "5559D3" + }, + { + "relation": "pipe", + "source": "555329", + "target": "554777" + }, + { + "relation": "pipe", + "source": "555329", + "target": "5557E7" + }, + { + "relation": "pipe", + "source": "555329", + "target": "555B5D" + }, + { + "relation": "associated_with", + "source": "55533C", + "target": "555329" + }, + { + "relation": "associated_with", + "source": "555364", + "target": "5551A4" + }, + { + "relation": "associated_with", + "source": "555367", + "target": "555B44" + }, + { + "relation": "associated_with", + "source": "555368", + "target": "555BFA" + }, + { + "relation": "associated_with", + "source": "55536B", + "target": "555580" + }, + { + "relation": "pipe", + "source": "55536E", + "target": "555379" + }, + { + "relation": "pipe", + "source": "55536E", + "target": "555F00" + }, + { + "relation": "associated_with", + "source": "555372", + "target": "5550B1" + }, + { + "relation": "associated_with", + "source": "555375", + "target": "5550B1" + }, + { + "relation": "pipe", + "source": "555379", + "target": "555094" + }, + { + "relation": "associated_with", + "source": "55537F", + "target": "55496C" + }, + { + "relation": "associated_with", + "source": "555380", + "target": "554DE3" + }, + { + "relation": "associated_with", + "source": "55538F", + "target": "5551D7" + }, + { + "relation": "associated_with", + "source": "555391", + "target": "55500A" + }, + { + "relation": "associated_with", + "source": "555397", + "target": "55500A" + }, + { + "relation": "associated_with", + "source": "555399", + "target": "5551A4" + }, + { + "relation": "associated_with", + "source": "5553D2", + "target": "55514C" + }, + { + "relation": "associated_with", + "source": "5553EB", + "target": "55534F" + }, + { + "relation": "associated_with", + "source": "5553F8", + "target": "5547CB" + }, + { + "relation": "associated_with", + "source": "5553F9", + "target": "554717" + }, + { + "relation": "associated_with", + "source": "5553FA", + "target": "554717" + }, + { + "relation": "pipe", + "source": "5553FE", + "target": "555855" + }, + { + "relation": "associated_with", + "source": "555424", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "55543F", + "target": "555426" + }, + { + "relation": "associated_with", + "source": "555440", + "target": "5547EF" + }, + { + "relation": "associated_with", + "source": "555462", + "target": "55544D" + }, + { + "relation": "associated_with", + "source": "555463", + "target": "5547EF" + }, + { + "relation": "pipe", + "source": "555472", + "target": "555BFA" + }, + { + "relation": "associated_with", + "source": "555490", + "target": "5548C8" + }, + { + "relation": "associated_with", + "source": "555491", + "target": "5549C0" + }, + { + "relation": "associated_with", + "source": "5554C9", + "target": "554DAF" + }, + { + "relation": "associated_with", + "source": "5554CF", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555500", + "target": "555850" + }, + { + "relation": "associated_with", + "source": "555508", + "target": "555509" + }, + { + "relation": "associated_with", + "source": "55550D", + "target": "555509" + }, + { + "relation": "associated_with", + "source": "555517", + "target": "555518" + }, + { + "relation": "pipe", + "source": "555518", + "target": "554AD3" + }, + { + "relation": "pipe", + "source": "555518", + "target": "55555C" + }, + { + "relation": "pipe", + "source": "555518", + "target": "555840" + }, + { + "relation": "pipe", + "source": "555518", + "target": "554CCA" + }, + { + "relation": "associated_with", + "source": "55551C", + "target": "555509" + }, + { + "relation": "associated_with", + "source": "55552B", + "target": "555529" + }, + { + "relation": "associated_with", + "source": "555538", + "target": "55554E" + }, + { + "relation": "associated_with", + "source": "555539", + "target": "55554E" + }, + { + "relation": "associated_with", + "source": "55553C", + "target": "554CCA" + }, + { + "relation": "pipe", + "source": "55554E", + "target": "555509" + }, + { + "relation": "associated_with", + "source": "55554F", + "target": "55554E" + }, + { + "relation": "associated_with", + "source": "555550", + "target": "555551" + }, + { + "relation": "pipe", + "source": "555551", + "target": "55554E" + }, + { + "relation": "pipe", + "source": "55555C", + "target": "555840" + }, + { + "relation": "pipe", + "source": "55555C", + "target": "555551" + }, + { + "relation": "associated_with", + "source": "55557F", + "target": "555580" + }, + { + "relation": "pipe", + "source": "5555A2", + "target": "555580" + }, + { + "relation": "associated_with", + "source": "5555AB", + "target": "5555A2" + }, + { + "relation": "associated_with", + "source": "5555AD", + "target": "5555A2" + }, + { + "relation": "associated_with", + "source": "5555AE", + "target": "555595" + }, + { + "relation": "associated_with", + "source": "5555AF", + "target": "555685" + }, + { + "relation": "associated_with", + "source": "5555B2", + "target": "555580" + }, + { + "relation": "associated_with", + "source": "5555DA", + "target": "555580" + }, + { + "relation": "associated_with", + "source": "5555DC", + "target": "555580" + }, + { + "relation": "associated_with", + "source": "5555E1", + "target": "555595" + }, + { + "relation": "associated_with", + "source": "5555F1", + "target": "555838" + }, + { + "relation": "associated_with", + "source": "555606", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "555609", + "target": "555608" + }, + { + "relation": "associated_with", + "source": "55560B", + "target": "555608" + }, + { + "relation": "associated_with", + "source": "55560D", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "55560E", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "555614", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "55561B", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "555622", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "555664", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "55566B", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "55566C", + "target": "555F36" + }, + { + "relation": "associated_with", + "source": "55568D", + "target": "555734" + }, + { + "relation": "associated_with", + "source": "5556E8", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "5556EB", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "5556EE", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "5556F6", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "5556F7", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "5556F8", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555700", + "target": "5568A1" + }, + { + "relation": "associated_with", + "source": "555702", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555703", + "target": "55571A" + }, + { + "relation": "pipe", + "source": "55571A", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "55571C", + "target": "555729" + }, + { + "relation": "associated_with", + "source": "55571D", + "target": "555729" + }, + { + "relation": "pipe", + "source": "555734", + "target": "555685" + }, + { + "relation": "pipe", + "source": "555740", + "target": "55571A" + }, + { + "relation": "pipe", + "source": "555760", + "target": "555775" + }, + { + "relation": "associated_with", + "source": "55576A", + "target": "5555A2" + }, + { + "relation": "associated_with", + "source": "55576D", + "target": "5555A2" + }, + { + "relation": "associated_with", + "source": "55576E", + "target": "555608" + }, + { + "relation": "associated_with", + "source": "555793", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555795", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555797", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555798", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "55579A", + "target": "5572A8" + }, + { + "relation": "associated_with", + "source": "5557A9", + "target": "5557A8" + }, + { + "relation": "associated_with", + "source": "5557AE", + "target": "5557A8" + }, + { + "relation": "associated_with", + "source": "5557AF", + "target": "5557B0" + }, + { + "relation": "associated_with", + "source": "5557BF", + "target": "5557C0" + }, + { + "relation": "associated_with", + "source": "5557C4", + "target": "554A2D" + }, + { + "relation": "associated_with", + "source": "5557D7", + "target": "5558EC" + }, + { + "relation": "associated_with", + "source": "5557D8", + "target": "5558EC" + }, + { + "relation": "associated_with", + "source": "5557D9", + "target": "554F83" + }, + { + "relation": "associated_with", + "source": "5557E0", + "target": "5557E7" + }, + { + "relation": "associated_with", + "source": "5557EF", + "target": "555608" + }, + { + "relation": "associated_with", + "source": "5557F1", + "target": "555608" + }, + { + "relation": "associated_with", + "source": "5557F2", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "5557F4", + "target": "5557FD" + }, + { + "relation": "associated_with", + "source": "5557FF", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555814", + "target": "554ECD" + }, + { + "relation": "associated_with", + "source": "555816", + "target": "554A77" + }, + { + "relation": "pipe", + "source": "55582C", + "target": "554717" + }, + { + "relation": "pipe", + "source": "55582C", + "target": "554687" + }, + { + "relation": "pipe", + "source": "555838", + "target": "5555A2" + }, + { + "relation": "pipe", + "source": "555838", + "target": "555580" + }, + { + "relation": "pipe", + "source": "555838", + "target": "555734" + }, + { + "relation": "pipe", + "source": "555838", + "target": "555F36" + }, + { + "relation": "pipe", + "source": "555838", + "target": "555608" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "554B4E" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "554A8C" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "555850" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "554A77" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "5559B7" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "555F13" + }, + { + "relation": "pipe", + "source": "55584C", + "target": "555223" + }, + { + "relation": "pipe", + "source": "555850", + "target": "555EB7" + }, + { + "relation": "associated_with", + "source": "555854", + "target": "554A28" + }, + { + "relation": "pipe", + "source": "555855", + "target": "555C22" + }, + { + "relation": "pipe", + "source": "555855", + "target": "5547C7" + }, + { + "relation": "pipe", + "source": "555855", + "target": "554815" + }, + { + "relation": "associated_with", + "source": "555859", + "target": "555094" + }, + { + "relation": "associated_with", + "source": "55585A", + "target": "5546AF" + }, + { + "relation": "pipe", + "source": "55585E", + "target": "554F7C" + }, + { + "relation": "pipe", + "source": "55585E", + "target": "555CD6" + }, + { + "relation": "pipe", + "source": "55585E", + "target": "5558DD" + }, + { + "relation": "pipe", + "source": "55585E", + "target": "554F90" + }, + { + "relation": "pipe", + "source": "555868", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555873", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555875", + "target": "555868" + }, + { + "relation": "associated_with", + "source": "555877", + "target": "555868" + }, + { + "relation": "associated_with", + "source": "555879", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555883", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555885", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555887", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555889", + "target": "56120D" + }, + { + "relation": "associated_with", + "source": "555890", + "target": "554685" + }, + { + "relation": "associated_with", + "source": "555894", + "target": "554C29" + }, + { + "relation": "associated_with", + "source": "555895", + "target": "5547B3" + }, + { + "relation": "associated_with", + "source": "555897", + "target": "555E67" + }, + { + "relation": "associated_with", + "source": "55589B", + "target": "554CEF" + }, + { + "relation": "associated_with", + "source": "5558A1", + "target": "5549F5" + }, + { + "relation": "associated_with", + "source": "5558A9", + "target": "554F1D" + }, + { + "relation": "associated_with", + "source": "5558BE", + "target": "554ECD" + }, + { + "relation": "pipe", + "source": "5558DD", + "target": "554FE8" + }, + { + "relation": "associated_with", + "source": "5558F8", + "target": "5558D4" + }, + { + "relation": "associated_with", + "source": "5558F9", + "target": "5558EC" + }, + { + "relation": "pipe", + "source": "55590D", + "target": "5552F2" + }, + { + "relation": "pipe", + "source": "55590D", + "target": "5558FF" + }, + { + "relation": "associated_with", + "source": "555919", + "target": "55590D" + }, + { + "relation": "associated_with", + "source": "55591A", + "target": "55590D" + }, + { + "relation": "associated_with", + "source": "555942", + "target": "555936" + }, + { + "relation": "associated_with", + "source": "555943", + "target": "555936" + }, + { + "relation": "pipe", + "source": "55594A", + "target": "5552F4" + }, + { + "relation": "pipe", + "source": "555955", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "55596F", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555970", + "target": "555963" + }, + { + "relation": "pipe", + "source": "555977", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "55597D", + "target": "555E67" + }, + { + "relation": "associated_with", + "source": "55597E", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "55597F", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555980", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555981", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555982", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555983", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555984", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555985", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555986", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555987", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555988", + "target": "5572A8" + }, + { + "relation": "associated_with", + "source": "555989", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "55598A", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "55598B", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "55598C", + "target": "5572A8" + }, + { + "relation": "associated_with", + "source": "55598D", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "55598E", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "55598F", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555990", + "target": "5572A8" + }, + { + "relation": "associated_with", + "source": "555991", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555992", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555993", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555994", + "target": "5572A8" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "555A55" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "5557E7" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "55582C" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "55472E" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "554717" + }, + { + "relation": "pipe", + "source": "55599D", + "target": "554687" + }, + { + "relation": "pipe", + "source": "5559AF", + "target": "55544D" + }, + { + "relation": "pipe", + "source": "5559AF", + "target": "5549C0" + }, + { + "relation": "pipe", + "source": "5559AF", + "target": "5547EF" + }, + { + "relation": "pipe", + "source": "5559AF", + "target": "554855" + }, + { + "relation": "pipe", + "source": "5559B7", + "target": "554897" + }, + { + "relation": "pipe", + "source": "5559B7", + "target": "5557B0" + }, + { + "relation": "pipe", + "source": "5559BF", + "target": "5548F8" + }, + { + "relation": "pipe", + "source": "5559C3", + "target": "555C5C" + }, + { + "relation": "pipe", + "source": "5559C3", + "target": "5552E7" + }, + { + "relation": "pipe", + "source": "5559C3", + "target": "555C49" + }, + { + "relation": "pipe", + "source": "5559C3", + "target": "555ECB" + }, + { + "relation": "pipe", + "source": "5559C3", + "target": "554815" + }, + { + "relation": "associated_with", + "source": "5559DA", + "target": "555551" + }, + { + "relation": "associated_with", + "source": "555A14", + "target": "5559F7" + }, + { + "relation": "associated_with", + "source": "555A1C", + "target": "5559E9" + }, + { + "relation": "associated_with", + "source": "555A1D", + "target": "5559E9" + }, + { + "relation": "associated_with", + "source": "555A35", + "target": "555A41" + }, + { + "relation": "pipe", + "source": "555A55", + "target": "5545BE" + }, + { + "relation": "pipe", + "source": "555A55", + "target": "555CCC" + }, + { + "relation": "pipe", + "source": "555A55", + "target": "555BA8" + }, + { + "relation": "associated_with", + "source": "555A60", + "target": "555A80" + }, + { + "relation": "associated_with", + "source": "555A77", + "target": "555A6F" + }, + { + "relation": "associated_with", + "source": "555A8D", + "target": "555760" + }, + { + "relation": "associated_with", + "source": "555A99", + "target": "555B53" + }, + { + "relation": "associated_with", + "source": "555A9A", + "target": "555B5D" + }, + { + "relation": "associated_with", + "source": "555A9B", + "target": "5549AE" + }, + { + "relation": "associated_with", + "source": "555A9C", + "target": "5549B6" + }, + { + "relation": "associated_with", + "source": "555A9E", + "target": "5612AC" + }, + { + "relation": "associated_with", + "source": "555AAB", + "target": "555B5D" + }, + { + "relation": "associated_with", + "source": "555AAC", + "target": "5557E7" + }, + { + "relation": "associated_with", + "source": "555AB8", + "target": "55590D" + }, + { + "relation": "associated_with", + "source": "555ACF", + "target": "555AC4" + }, + { + "relation": "associated_with", + "source": "555ADD", + "target": "555AD5" + }, + { + "relation": "associated_with", + "source": "555ADE", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "555AE9", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "555AF5", + "target": "5549B6" + }, + { + "relation": "associated_with", + "source": "555AF6", + "target": "554CAD" + }, + { + "relation": "associated_with", + "source": "555AF7", + "target": "555AD5" + }, + { + "relation": "associated_with", + "source": "555AFE", + "target": "561395" + }, + { + "relation": "pipe", + "source": "555B0A", + "target": "555580" + }, + { + "relation": "pipe", + "source": "555B14", + "target": "554CAD" + }, + { + "relation": "pipe", + "source": "555B14", + "target": "5549B6" + }, + { + "relation": "pipe", + "source": "555B14", + "target": "555B44" + }, + { + "relation": "pipe", + "source": "555B14", + "target": "555580" + }, + { + "relation": "pipe", + "source": "555B14", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "555B1C", + "target": "555B14" + }, + { + "relation": "associated_with", + "source": "555B1D", + "target": "5620FE" + }, + { + "relation": "associated_with", + "source": "555B29", + "target": "555B14" + }, + { + "relation": "associated_with", + "source": "555B34", + "target": "555B2C" + }, + { + "relation": "associated_with", + "source": "555B4C", + "target": "555B44" + }, + { + "relation": "associated_with", + "source": "555B4D", + "target": "55500A" + }, + { + "relation": "pipe", + "source": "555B53", + "target": "55599D" + }, + { + "relation": "pipe", + "source": "555B5D", + "target": "555A55" + }, + { + "relation": "pipe", + "source": "555B5D", + "target": "555B92" + }, + { + "relation": "pipe", + "source": "555B5D", + "target": "555BA8" + }, + { + "relation": "pipe", + "source": "555B5D", + "target": "5545BE" + }, + { + "relation": "associated_with", + "source": "555B85", + "target": "555C96" + }, + { + "relation": "pipe", + "source": "555B92", + "target": "555760" + }, + { + "relation": "associated_with", + "source": "555B9C", + "target": "555BA8" + }, + { + "relation": "pipe", + "source": "555BA8", + "target": "555B5D" + }, + { + "relation": "associated_with", + "source": "555BC7", + "target": "555BE7" + }, + { + "relation": "associated_with", + "source": "555BDE", + "target": "555BD6" + }, + { + "relation": "pipe", + "source": "555BE7", + "target": "555B5D" + }, + { + "relation": "pipe", + "source": "555BE7", + "target": "555B92" + }, + { + "relation": "associated_with", + "source": "555BF7", + "target": "555C08" + }, + { + "relation": "associated_with", + "source": "555BF8", + "target": "5549C4" + }, + { + "relation": "associated_with", + "source": "555C24", + "target": "555C22" + }, + { + "relation": "pipe", + "source": "555C25", + "target": "555855" + }, + { + "relation": "pipe", + "source": "555C25", + "target": "555329" + }, + { + "relation": "pipe", + "source": "555C25", + "target": "5559D3" + }, + { + "relation": "associated_with", + "source": "555C26", + "target": "555C25" + }, + { + "relation": "associated_with", + "source": "555C3A", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555C3B", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555C3C", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555C3D", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555C3E", + "target": "55571A" + }, + { + "relation": "associated_with", + "source": "555C50", + "target": "555C49" + }, + { + "relation": "associated_with", + "source": "555C58", + "target": "554848" + }, + { + "relation": "associated_with", + "source": "555C97", + "target": "555C96" + }, + { + "relation": "associated_with", + "source": "555CA2", + "target": "555C96" + }, + { + "relation": "associated_with", + "source": "555CA5", + "target": "554D28" + }, + { + "relation": "associated_with", + "source": "555CA6", + "target": "555CBD" + }, + { + "relation": "associated_with", + "source": "555CAE", + "target": "555CCC" + }, + { + "relation": "associated_with", + "source": "555CAF", + "target": "554614" + }, + { + "relation": "associated_with", + "source": "555CB0", + "target": "555CE8" + }, + { + "relation": "pipe", + "source": "555CCC", + "target": "554C15" + }, + { + "relation": "pipe", + "source": "555CCC", + "target": "555A38" + }, + { + "relation": "pipe", + "source": "555CCC", + "target": "555C88" + }, + { + "relation": "pipe", + "source": "555CCC", + "target": "554684" + }, + { + "relation": "pipe", + "source": "555CD6", + "target": "5559A1" + }, + { + "relation": "pipe", + "source": "555CD6", + "target": "555C96" + }, + { + "relation": "pipe", + "source": "555CD6", + "target": "554F7C" + }, + { + "relation": "pipe", + "source": "555CD6", + "target": "555B53" + }, + { + "relation": "pipe", + "source": "555CD6", + "target": "555CE8" + }, + { + "relation": "associated_with", + "source": "555CF5", + "target": "555CE8" + }, + { + "relation": "associated_with", + "source": "555D10", + "target": "555A38" + }, + { + "relation": "associated_with", + "source": "555D12", + "target": "555B9F" + }, + { + "relation": "associated_with", + "source": "555D18", + "target": "5549C5" + }, + { + "relation": "associated_with", + "source": "555D19", + "target": "558A17" + }, + { + "relation": "associated_with", + "source": "555D1E", + "target": "5549C3" + }, + { + "relation": "associated_with", + "source": "555D4D", + "target": "555840" + }, + { + "relation": "associated_with", + "source": "555D4E", + "target": "555CE8" + }, + { + "relation": "associated_with", + "source": "555D71", + "target": "555F00" + }, + { + "relation": "associated_with", + "source": "555D75", + "target": "555D76" + }, + { + "relation": "pipe", + "source": "555D76", + "target": "555F0A" + }, + { + "relation": "associated_with", + "source": "555D79", + "target": "555D60" + }, + { + "relation": "associated_with", + "source": "555D8C", + "target": "555D60" + }, + { + "relation": "associated_with", + "source": "555D94", + "target": "55508E" + }, + { + "relation": "associated_with", + "source": "555D9C", + "target": "555B53" + }, + { + "relation": "associated_with", + "source": "555DA9", + "target": "555BD6" + }, + { + "relation": "associated_with", + "source": "555DAD", + "target": "555B53" + }, + { + "relation": "associated_with", + "source": "555DB0", + "target": "554721" + }, + { + "relation": "associated_with", + "source": "555DB9", + "target": "5557E7" + }, + { + "relation": "associated_with", + "source": "555DBD", + "target": "554717" + }, + { + "relation": "associated_with", + "source": "555DBE", + "target": "555B53" + }, + { + "relation": "associated_with", + "source": "555DBF", + "target": "555B5D" + }, + { + "relation": "associated_with", + "source": "555DC0", + "target": "5547B3" + }, + { + "relation": "associated_with", + "source": "555DC2", + "target": "555A38" + }, + { + "relation": "associated_with", + "source": "555DC6", + "target": "5546B9" + }, + { + "relation": "associated_with", + "source": "555DC7", + "target": "555329" + }, + { + "relation": "associated_with", + "source": "555DC8", + "target": "555337" + }, + { + "relation": "associated_with", + "source": "555DC9", + "target": "554CFE" + }, + { + "relation": "associated_with", + "source": "555DCA", + "target": "55463A" + }, + { + "relation": "associated_with", + "source": "555DCB", + "target": "5553B2" + }, + { + "relation": "associated_with", + "source": "555DCC", + "target": "55514C" + }, + { + "relation": "associated_with", + "source": "555DCD", + "target": "55515D" + }, + { + "relation": "associated_with", + "source": "555DCE", + "target": "5551BB" + }, + { + "relation": "associated_with", + "source": "555DCF", + "target": "555192" + }, + { + "relation": "associated_with", + "source": "555DD0", + "target": "554D16" + }, + { + "relation": "associated_with", + "source": "555DD1", + "target": "554671" + }, + { + "relation": "associated_with", + "source": "555DD2", + "target": "55465A" + }, + { + "relation": "associated_with", + "source": "555DD3", + "target": "554D38" + }, + { + "relation": "associated_with", + "source": "555DD5", + "target": "554CD4" + }, + { + "relation": "associated_with", + "source": "555DD6", + "target": "554C90" + }, + { + "relation": "associated_with", + "source": "555DD8", + "target": "555580" + }, + { + "relation": "associated_with", + "source": "555DD9", + "target": "554CB8" + }, + { + "relation": "associated_with", + "source": "555DDA", + "target": "5548F8" + }, + { + "relation": "associated_with", + "source": "555DDB", + "target": "554821" + }, + { + "relation": "associated_with", + "source": "555DDC", + "target": "5552B1" + }, + { + "relation": "associated_with", + "source": "555DDD", + "target": "5552D1" + }, + { + "relation": "associated_with", + "source": "555DDE", + "target": "5552DF" + }, + { + "relation": "associated_with", + "source": "555DDF", + "target": "5549C3" + }, + { + "relation": "associated_with", + "source": "555DE1", + "target": "555BFA" + }, + { + "relation": "associated_with", + "source": "555DEC", + "target": "555209" + }, + { + "relation": "associated_with", + "source": "555DEF", + "target": "554B71" + }, + { + "relation": "associated_with", + "source": "555DF0", + "target": "5546F2" + }, + { + "relation": "associated_with", + "source": "555E1C", + "target": "5545AF" + }, + { + "relation": "associated_with", + "source": "555E1E", + "target": "554AB0" + }, + { + "relation": "associated_with", + "source": "555E4C", + "target": "555CBD" + }, + { + "relation": "associated_with", + "source": "555E4E", + "target": "555C88" + }, + { + "relation": "pipe", + "source": "555E67", + "target": "555E74" + }, + { + "relation": "pipe", + "source": "555E67", + "target": "555E6C" + }, + { + "relation": "associated_with", + "source": "555E68", + "target": "555E67" + }, + { + "relation": "associated_with", + "source": "555E8B", + "target": "555E8C" + }, + { + "relation": "associated_with", + "source": "555E90", + "target": "554D77" + }, + { + "relation": "associated_with", + "source": "555E92", + "target": "5558EC" + }, + { + "relation": "associated_with", + "source": "555EA4", + "target": "555C25" + }, + { + "relation": "associated_with", + "source": "555EA8", + "target": "554EF9" + }, + { + "relation": "associated_with", + "source": "555EC4", + "target": "555EB7" + }, + { + "relation": "associated_with", + "source": "555EC5", + "target": "554EF9" + }, + { + "relation": "associated_with", + "source": "555EC7", + "target": "5548F8" + }, + { + "relation": "pipe", + "source": "555ECB", + "target": "555C5C" + }, + { + "relation": "associated_with", + "source": "555EE4", + "target": "5548F8" + }, + { + "relation": "associated_with", + "source": "555EE5", + "target": "555047" + }, + { + "relation": "associated_with", + "source": "555EE6", + "target": "555067" + }, + { + "relation": "associated_with", + "source": "555EED", + "target": "555F00" + }, + { + "relation": "associated_with", + "source": "555EF4", + "target": "555105" + }, + { + "relation": "pipe", + "source": "555F00", + "target": "555105" + }, + { + "relation": "associated_with", + "source": "555F08", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F09", + "target": "55571A" + }, + { + "relation": "pipe", + "source": "555F0A", + "target": "555F13" + }, + { + "relation": "associated_with", + "source": "555F11", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F12", + "target": "555963" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554CE2" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554BEA" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554EF9" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554A77" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554D6E" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "555EB7" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554A8C" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "554A42" + }, + { + "relation": "pipe", + "source": "555F13", + "target": "555F0A" + }, + { + "relation": "associated_with", + "source": "555F1F", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F20", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F28", + "target": "55558B" + }, + { + "relation": "pipe", + "source": "555F36", + "target": "555608" + }, + { + "relation": "pipe", + "source": "555F36", + "target": "555955" + }, + { + "relation": "associated_with", + "source": "555F39", + "target": "555977" + }, + { + "relation": "associated_with", + "source": "555F42", + "target": "55590D" + }, + { + "relation": "associated_with", + "source": "555F4A", + "target": "555F36" + }, + { + "relation": "associated_with", + "source": "555F50", + "target": "555E7D" + }, + { + "relation": "associated_with", + "source": "555F56", + "target": "55535D" + }, + { + "relation": "associated_with", + "source": "555F5F", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F60", + "target": "555963" + }, + { + "relation": "associated_with", + "source": "555F61", + "target": "557271" + }, + { + "relation": "associated_with", + "source": "555FD5", + "target": "555FF0" + }, + { + "relation": "associated_with", + "source": "555FDA", + "target": "555FDB" + }, + { + "relation": "associated_with", + "source": "555FEF", + "target": "555FF0" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "5567A6" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "5573E7" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "557512" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "556071" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "555FAA" + }, + { + "relation": "pipe", + "source": "555FF0", + "target": "557025" + }, + { + "relation": "associated_with", + "source": "555FF1", + "target": "555FDB" + }, + { + "relation": "associated_with", + "source": "555FF3", + "target": "555FDB" + }, + { + "relation": "associated_with", + "source": "556053", + "target": "556037" + }, + { + "relation": "pipe", + "source": "556071", + "target": "556608" + }, + { + "relation": "pipe", + "source": "556071", + "target": "556074" + }, + { + "relation": "pipe", + "source": "556071", + "target": "555FF0" + }, + { + "relation": "pipe", + "source": "556071", + "target": "556EAC" + }, + { + "relation": "pipe", + "source": "556076", + "target": "5567A6" + }, + { + "relation": "pipe", + "source": "556076", + "target": "556112" + }, + { + "relation": "pipe", + "source": "556076", + "target": "5560DB" + }, + { + "relation": "pipe", + "source": "556076", + "target": "556126" + }, + { + "relation": "pipe", + "source": "556076", + "target": "556111" + }, + { + "relation": "associated_with", + "source": "5560B5", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "5560CB", + "target": "55608D" + }, + { + "relation": "associated_with", + "source": "5560D6", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "5560D7", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "5560DA", + "target": "5560DB" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "556E33" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "556112" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "556E25" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "5572E8" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "556126" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "55661D" + }, + { + "relation": "pipe", + "source": "5560DB", + "target": "557558" + }, + { + "relation": "associated_with", + "source": "5560DC", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "5560E1", + "target": "5560E3" + }, + { + "relation": "associated_with", + "source": "5560E2", + "target": "5560E3" + }, + { + "relation": "associated_with", + "source": "5560E6", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "556105", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "55611D", + "target": "55611E" + }, + { + "relation": "pipe", + "source": "55611E", + "target": "5561A5" + }, + { + "relation": "pipe", + "source": "556126", + "target": "556111" + }, + { + "relation": "pipe", + "source": "556126", + "target": "55661D" + }, + { + "relation": "pipe", + "source": "556126", + "target": "5561B9" + }, + { + "relation": "pipe", + "source": "556126", + "target": "556108" + }, + { + "relation": "associated_with", + "source": "5561A4", + "target": "5561A5" + }, + { + "relation": "pipe", + "source": "5561A5", + "target": "55751E" + }, + { + "relation": "pipe", + "source": "5561A5", + "target": "556245" + }, + { + "relation": "pipe", + "source": "5561A5", + "target": "557386" + }, + { + "relation": "associated_with", + "source": "5561A6", + "target": "5561A5" + }, + { + "relation": "associated_with", + "source": "5561A7", + "target": "5561A5" + }, + { + "relation": "associated_with", + "source": "5561B5", + "target": "557623" + }, + { + "relation": "associated_with", + "source": "5561B8", + "target": "5561B9" + }, + { + "relation": "pipe", + "source": "5561B9", + "target": "55611F" + }, + { + "relation": "pipe", + "source": "5561B9", + "target": "556211" + }, + { + "relation": "pipe", + "source": "5561B9", + "target": "556366" + }, + { + "relation": "associated_with", + "source": "5561BD", + "target": "5561B9" + }, + { + "relation": "associated_with", + "source": "5561CA", + "target": "5575C1" + }, + { + "relation": "associated_with", + "source": "5561DF", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "5561F8", + "target": "5561F9" + }, + { + "relation": "associated_with", + "source": "5561FA", + "target": "5561F9" + }, + { + "relation": "associated_with", + "source": "556202", + "target": "5561F9" + }, + { + "relation": "associated_with", + "source": "556225", + "target": "55623C" + }, + { + "relation": "pipe", + "source": "556226", + "target": "556628" + }, + { + "relation": "associated_with", + "source": "556234", + "target": "556CD9" + }, + { + "relation": "associated_with", + "source": "55623A", + "target": "556CD9" + }, + { + "relation": "associated_with", + "source": "55623B", + "target": "55623C" + }, + { + "relation": "pipe", + "source": "55623F", + "target": "556628" + }, + { + "relation": "pipe", + "source": "55623F", + "target": "5566A2" + }, + { + "relation": "pipe", + "source": "55623F", + "target": "5575B6" + }, + { + "relation": "pipe", + "source": "55623F", + "target": "556211" + }, + { + "relation": "associated_with", + "source": "556244", + "target": "556245" + }, + { + "relation": "pipe", + "source": "556245", + "target": "5561F9" + }, + { + "relation": "associated_with", + "source": "556246", + "target": "556245" + }, + { + "relation": "associated_with", + "source": "55627C", + "target": "55627E" + }, + { + "relation": "pipe", + "source": "55627E", + "target": "556287" + }, + { + "relation": "associated_with", + "source": "556286", + "target": "556287" + }, + { + "relation": "pipe", + "source": "556287", + "target": "557534" + }, + { + "relation": "pipe", + "source": "556287", + "target": "5573B2" + }, + { + "relation": "pipe", + "source": "556287", + "target": "5562E5" + }, + { + "relation": "associated_with", + "source": "556289", + "target": "556287" + }, + { + "relation": "associated_with", + "source": "55628F", + "target": "556290" + }, + { + "relation": "pipe", + "source": "556290", + "target": "55738E" + }, + { + "relation": "associated_with", + "source": "55629A", + "target": "55623C" + }, + { + "relation": "associated_with", + "source": "55629D", + "target": "556287" + }, + { + "relation": "associated_with", + "source": "5562E4", + "target": "5562E5" + }, + { + "relation": "associated_with", + "source": "5562E9", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "5562EA", + "target": "5562B8" + }, + { + "relation": "associated_with", + "source": "5562F0", + "target": "55661E" + }, + { + "relation": "associated_with", + "source": "556365", + "target": "556366" + }, + { + "relation": "pipe", + "source": "556366", + "target": "55636D" + }, + { + "relation": "pipe", + "source": "556366", + "target": "55784D" + }, + { + "relation": "associated_with", + "source": "55636E", + "target": "55636D" + }, + { + "relation": "associated_with", + "source": "556397", + "target": "5561B9" + }, + { + "relation": "pipe", + "source": "5563A2", + "target": "556F86" + }, + { + "relation": "associated_with", + "source": "5563B2", + "target": "5572F0" + }, + { + "relation": "associated_with", + "source": "5563B7", + "target": "55636D" + }, + { + "relation": "associated_with", + "source": "5563DE", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "5563EE", + "target": "5563F6" + }, + { + "relation": "pipe", + "source": "556416", + "target": "556661" + }, + { + "relation": "pipe", + "source": "556416", + "target": "556474" + }, + { + "relation": "pipe", + "source": "556416", + "target": "557302" + }, + { + "relation": "pipe", + "source": "556416", + "target": "55754C" + }, + { + "relation": "associated_with", + "source": "556419", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "556435", + "target": "556436" + }, + { + "relation": "pipe", + "source": "556436", + "target": "557300" + }, + { + "relation": "pipe", + "source": "556438", + "target": "55705D" + }, + { + "relation": "pipe", + "source": "556438", + "target": "557738" + }, + { + "relation": "pipe", + "source": "55643D", + "target": "556C13" + }, + { + "relation": "associated_with", + "source": "55645A", + "target": "556416" + }, + { + "relation": "pipe", + "source": "55645B", + "target": "5564B6" + }, + { + "relation": "pipe", + "source": "556474", + "target": "55783E" + }, + { + "relation": "pipe", + "source": "556474", + "target": "556C28" + }, + { + "relation": "pipe", + "source": "556474", + "target": "557302" + }, + { + "relation": "pipe", + "source": "556474", + "target": "556561" + }, + { + "relation": "associated_with", + "source": "55647B", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "5564BC", + "target": "556CD9" + }, + { + "relation": "associated_with", + "source": "55654E", + "target": "55645B" + }, + { + "relation": "associated_with", + "source": "55655D", + "target": "556411" + }, + { + "relation": "pipe", + "source": "556561", + "target": "557300" + }, + { + "relation": "pipe", + "source": "556561", + "target": "55645F" + }, + { + "relation": "pipe", + "source": "556561", + "target": "55692B" + }, + { + "relation": "associated_with", + "source": "55656F", + "target": "557885" + }, + { + "relation": "pipe", + "source": "556579", + "target": "557302" + }, + { + "relation": "pipe", + "source": "556579", + "target": "55663B" + }, + { + "relation": "pipe", + "source": "556579", + "target": "557890" + }, + { + "relation": "pipe", + "source": "556579", + "target": "556561" + }, + { + "relation": "pipe", + "source": "556579", + "target": "556438" + }, + { + "relation": "associated_with", + "source": "55657C", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "556582", + "target": "55676B" + }, + { + "relation": "associated_with", + "source": "556588", + "target": "557885" + }, + { + "relation": "pipe", + "source": "55658F", + "target": "557516" + }, + { + "relation": "associated_with", + "source": "556590", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "55659B", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "5565A6", + "target": "556245" + }, + { + "relation": "associated_with", + "source": "5565B9", + "target": "5560A0" + }, + { + "relation": "associated_with", + "source": "5565BA", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "5565BF", + "target": "556287" + }, + { + "relation": "associated_with", + "source": "5565C0", + "target": "556287" + }, + { + "relation": "associated_with", + "source": "5565C3", + "target": "556762" + }, + { + "relation": "associated_with", + "source": "5565C4", + "target": "55676B" + }, + { + "relation": "pipe", + "source": "5565EA", + "target": "5566FF" + }, + { + "relation": "pipe", + "source": "556608", + "target": "556713" + }, + { + "relation": "pipe", + "source": "556608", + "target": "556EAC" + }, + { + "relation": "pipe", + "source": "556628", + "target": "556F70" + }, + { + "relation": "pipe", + "source": "556628", + "target": "557540" + }, + { + "relation": "pipe", + "source": "55663B", + "target": "556648" + }, + { + "relation": "pipe", + "source": "556648", + "target": "556438" + }, + { + "relation": "associated_with", + "source": "55665C", + "target": "556653" + }, + { + "relation": "pipe", + "source": "556661", + "target": "55754C" + }, + { + "relation": "pipe", + "source": "556661", + "target": "5564A7" + }, + { + "relation": "pipe", + "source": "556661", + "target": "5563E2" + }, + { + "relation": "pipe", + "source": "556661", + "target": "55663B" + }, + { + "relation": "pipe", + "source": "556661", + "target": "556648" + }, + { + "relation": "associated_with", + "source": "55666C", + "target": "556BF9" + }, + { + "relation": "associated_with", + "source": "55666E", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "55666F", + "target": "556713" + }, + { + "relation": "pipe", + "source": "5566A2", + "target": "556808" + }, + { + "relation": "pipe", + "source": "5566A2", + "target": "55739E" + }, + { + "relation": "pipe", + "source": "5566A2", + "target": "5563A2" + }, + { + "relation": "pipe", + "source": "5566AD", + "target": "556218" + }, + { + "relation": "pipe", + "source": "5566AD", + "target": "55627E" + }, + { + "relation": "associated_with", + "source": "5566D7", + "target": "5566D8" + }, + { + "relation": "associated_with", + "source": "5566E5", + "target": "5566E6" + }, + { + "relation": "associated_with", + "source": "5566F6", + "target": "555F6B" + }, + { + "relation": "associated_with", + "source": "5566F7", + "target": "556E25" + }, + { + "relation": "associated_with", + "source": "5566F8", + "target": "5568F7" + }, + { + "relation": "pipe", + "source": "5566FF", + "target": "556608" + }, + { + "relation": "associated_with", + "source": "556712", + "target": "556713" + }, + { + "relation": "associated_with", + "source": "556748", + "target": "55738A" + }, + { + "relation": "associated_with", + "source": "556749", + "target": "555F7A" + }, + { + "relation": "associated_with", + "source": "55674B", + "target": "556EC5" + }, + { + "relation": "associated_with", + "source": "55674C", + "target": "55679D" + }, + { + "relation": "associated_with", + "source": "556754", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "55675C", + "target": "55611E" + }, + { + "relation": "pipe", + "source": "556762", + "target": "55676B" + }, + { + "relation": "associated_with", + "source": "55679A", + "target": "5567A6" + }, + { + "relation": "pipe", + "source": "5567A6", + "target": "5573E7" + }, + { + "relation": "associated_with", + "source": "5567C6", + "target": "556108" + }, + { + "relation": "associated_with", + "source": "5567CB", + "target": "556C28" + }, + { + "relation": "associated_with", + "source": "5567CC", + "target": "556C28" + }, + { + "relation": "pipe", + "source": "5567D7", + "target": "556DF0" + }, + { + "relation": "pipe", + "source": "5567D7", + "target": "55739E" + }, + { + "relation": "pipe", + "source": "5567D7", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "5567EC", + "target": "5567E2" + }, + { + "relation": "associated_with", + "source": "5567F2", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "556817", + "target": "556C28" + }, + { + "relation": "associated_with", + "source": "55681D", + "target": "5562B8" + }, + { + "relation": "associated_with", + "source": "55685D", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "55685E", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "55685F", + "target": "5575C1" + }, + { + "relation": "pipe", + "source": "556869", + "target": "5568A1" + }, + { + "relation": "pipe", + "source": "556891", + "target": "5574F5" + }, + { + "relation": "associated_with", + "source": "5568B3", + "target": "55627E" + }, + { + "relation": "associated_with", + "source": "5568B4", + "target": "556072" + }, + { + "relation": "associated_with", + "source": "5568B5", + "target": "5573E7" + }, + { + "relation": "associated_with", + "source": "5568B6", + "target": "555F6B" + }, + { + "relation": "associated_with", + "source": "5568B8", + "target": "55661D" + }, + { + "relation": "associated_with", + "source": "5568B9", + "target": "556126" + }, + { + "relation": "associated_with", + "source": "5568BA", + "target": "55611E" + }, + { + "relation": "associated_with", + "source": "5568BB", + "target": "556290" + }, + { + "relation": "associated_with", + "source": "5568BC", + "target": "556290" + }, + { + "relation": "associated_with", + "source": "5568D0", + "target": "556628" + }, + { + "relation": "associated_with", + "source": "5568D3", + "target": "556561" + }, + { + "relation": "associated_with", + "source": "5568D4", + "target": "556438" + }, + { + "relation": "associated_with", + "source": "5568D5", + "target": "5566D9" + }, + { + "relation": "associated_with", + "source": "5568D7", + "target": "5567D7" + }, + { + "relation": "associated_with", + "source": "5568D8", + "target": "556661" + }, + { + "relation": "associated_with", + "source": "5568D9", + "target": "5567F8" + }, + { + "relation": "associated_with", + "source": "5568DA", + "target": "556808" + }, + { + "relation": "associated_with", + "source": "5568DC", + "target": "5563A2" + }, + { + "relation": "associated_with", + "source": "5568E1", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "5568E4", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "5568E5", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "5568E9", + "target": "557890" + }, + { + "relation": "associated_with", + "source": "5568EB", + "target": "557890" + }, + { + "relation": "associated_with", + "source": "5568EC", + "target": "5568F7" + }, + { + "relation": "associated_with", + "source": "556908", + "target": "5562E5" + }, + { + "relation": "associated_with", + "source": "556921", + "target": "556916" + }, + { + "relation": "associated_with", + "source": "556929", + "target": "55692B" + }, + { + "relation": "pipe", + "source": "55692B", + "target": "556762" + }, + { + "relation": "associated_with", + "source": "556946", + "target": "55692B" + }, + { + "relation": "associated_with", + "source": "556948", + "target": "55692B" + }, + { + "relation": "associated_with", + "source": "556958", + "target": "55784D" + }, + { + "relation": "associated_with", + "source": "55695A", + "target": "55784D" + }, + { + "relation": "associated_with", + "source": "55695B", + "target": "55692B" + }, + { + "relation": "associated_with", + "source": "55695F", + "target": "555FC7" + }, + { + "relation": "associated_with", + "source": "556963", + "target": "55626E" + }, + { + "relation": "associated_with", + "source": "556983", + "target": "556391" + }, + { + "relation": "associated_with", + "source": "556984", + "target": "556556" + }, + { + "relation": "associated_with", + "source": "556985", + "target": "5563B0" + }, + { + "relation": "associated_with", + "source": "556986", + "target": "55642B" + }, + { + "relation": "associated_with", + "source": "556997", + "target": "557017" + }, + { + "relation": "associated_with", + "source": "55699B", + "target": "55698C" + }, + { + "relation": "associated_with", + "source": "5569B1", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "5569B8", + "target": "5569E6" + }, + { + "relation": "associated_with", + "source": "5569BF", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "5569C0", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "5569C1", + "target": "5569C2" + }, + { + "relation": "associated_with", + "source": "5569C4", + "target": "5569C2" + }, + { + "relation": "associated_with", + "source": "5569CE", + "target": "5569E6" + }, + { + "relation": "associated_with", + "source": "5569D1", + "target": "5569DA" + }, + { + "relation": "associated_with", + "source": "5569D2", + "target": "55701A" + }, + { + "relation": "associated_with", + "source": "5569D4", + "target": "5569E6" + }, + { + "relation": "pipe", + "source": "5569DA", + "target": "557530" + }, + { + "relation": "pipe", + "source": "5569DA", + "target": "5569E6" + }, + { + "relation": "pipe", + "source": "5569E6", + "target": "55658F" + }, + { + "relation": "associated_with", + "source": "556A0D", + "target": "55663B" + }, + { + "relation": "associated_with", + "source": "556A17", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "556A1D", + "target": "5573A6" + }, + { + "relation": "associated_with", + "source": "556A1F", + "target": "556762" + }, + { + "relation": "associated_with", + "source": "556A26", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "556A2D", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "556A31", + "target": "557885" + }, + { + "relation": "pipe", + "source": "556A49", + "target": "556A52" + }, + { + "relation": "pipe", + "source": "556A49", + "target": "556B0D" + }, + { + "relation": "pipe", + "source": "556A52", + "target": "5578C2" + }, + { + "relation": "pipe", + "source": "556A52", + "target": "557492" + }, + { + "relation": "associated_with", + "source": "556A65", + "target": "5573C6" + }, + { + "relation": "associated_with", + "source": "556A66", + "target": "556A49" + }, + { + "relation": "pipe", + "source": "556A6A", + "target": "556AB6" + }, + { + "relation": "pipe", + "source": "556A6A", + "target": "556A49" + }, + { + "relation": "associated_with", + "source": "556A7F", + "target": "556A85" + }, + { + "relation": "associated_with", + "source": "556A80", + "target": "556A85" + }, + { + "relation": "associated_with", + "source": "556A92", + "target": "556A8C" + }, + { + "relation": "associated_with", + "source": "556AA3", + "target": "556AA2" + }, + { + "relation": "associated_with", + "source": "556AA6", + "target": "556AE6" + }, + { + "relation": "associated_with", + "source": "556AAE", + "target": "556AAD" + }, + { + "relation": "pipe", + "source": "556ACA", + "target": "556AE9" + }, + { + "relation": "pipe", + "source": "556B14", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "556B1D", + "target": "556B14" + }, + { + "relation": "associated_with", + "source": "556B22", + "target": "556A6A" + }, + { + "relation": "associated_with", + "source": "556B23", + "target": "556ACA" + }, + { + "relation": "associated_with", + "source": "556B25", + "target": "556ACA" + }, + { + "relation": "associated_with", + "source": "556B34", + "target": "556AF2" + }, + { + "relation": "associated_with", + "source": "556B3C", + "target": "556AB6" + }, + { + "relation": "associated_with", + "source": "556B3D", + "target": "556A8C" + }, + { + "relation": "associated_with", + "source": "556B41", + "target": "557386" + }, + { + "relation": "associated_with", + "source": "556B42", + "target": "557386" + }, + { + "relation": "associated_with", + "source": "556B45", + "target": "557386" + }, + { + "relation": "associated_with", + "source": "556B52", + "target": "556B53" + }, + { + "relation": "pipe", + "source": "556B54", + "target": "55727C" + }, + { + "relation": "pipe", + "source": "556B54", + "target": "556EAC" + }, + { + "relation": "pipe", + "source": "556B89", + "target": "556B9A" + }, + { + "relation": "associated_with", + "source": "556BD6", + "target": "557530" + }, + { + "relation": "associated_with", + "source": "556BD8", + "target": "556B53" + }, + { + "relation": "pipe", + "source": "556BF9", + "target": "556C2C" + }, + { + "relation": "associated_with", + "source": "556C26", + "target": "556C28" + }, + { + "relation": "pipe", + "source": "556C28", + "target": "556287" + }, + { + "relation": "pipe", + "source": "556C28", + "target": "556C2C" + }, + { + "relation": "pipe", + "source": "556C28", + "target": "55643D" + }, + { + "relation": "pipe", + "source": "556C28", + "target": "556FF4" + }, + { + "relation": "associated_with", + "source": "556C29", + "target": "556C13" + }, + { + "relation": "associated_with", + "source": "556C2A", + "target": "556C21" + }, + { + "relation": "associated_with", + "source": "556C44", + "target": "556449" + }, + { + "relation": "associated_with", + "source": "556C45", + "target": "556BF9" + }, + { + "relation": "associated_with", + "source": "556C46", + "target": "5563E2" + }, + { + "relation": "associated_with", + "source": "556C84", + "target": "5563F6" + }, + { + "relation": "associated_with", + "source": "556C87", + "target": "556661" + }, + { + "relation": "associated_with", + "source": "556C88", + "target": "556661" + }, + { + "relation": "associated_with", + "source": "556CD1", + "target": "556628" + }, + { + "relation": "associated_with", + "source": "556CD4", + "target": "556CCB" + }, + { + "relation": "pipe", + "source": "556CD9", + "target": "556226" + }, + { + "relation": "pipe", + "source": "556CD9", + "target": "556F70" + }, + { + "relation": "pipe", + "source": "556CD9", + "target": "55684B" + }, + { + "relation": "pipe", + "source": "556CD9", + "target": "55643D" + }, + { + "relation": "pipe", + "source": "556CD9", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "556CDC", + "target": "556226" + }, + { + "relation": "associated_with", + "source": "556CDE", + "target": "5566A2" + }, + { + "relation": "associated_with", + "source": "556D5A", + "target": "556D47" + }, + { + "relation": "associated_with", + "source": "556D5E", + "target": "556DA8" + }, + { + "relation": "associated_with", + "source": "556D60", + "target": "556DAD" + }, + { + "relation": "associated_with", + "source": "556D63", + "target": "556FA5" + }, + { + "relation": "associated_with", + "source": "556D6A", + "target": "556FA5" + }, + { + "relation": "associated_with", + "source": "556D72", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "556D74", + "target": "556CEB" + }, + { + "relation": "pipe", + "source": "556D85", + "target": "557338" + }, + { + "relation": "pipe", + "source": "556D85", + "target": "556DBF" + }, + { + "relation": "pipe", + "source": "556D9A", + "target": "557652" + }, + { + "relation": "pipe", + "source": "556D9A", + "target": "556DE8" + }, + { + "relation": "pipe", + "source": "556D9A", + "target": "5571DB" + }, + { + "relation": "associated_with", + "source": "556DA7", + "target": "556DA8" + }, + { + "relation": "pipe", + "source": "556DA8", + "target": "556DAD" + }, + { + "relation": "pipe", + "source": "556DBF", + "target": "556FA5" + }, + { + "relation": "pipe", + "source": "556DBF", + "target": "556D55" + }, + { + "relation": "associated_with", + "source": "556DD8", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "556DDE", + "target": "556DAD" + }, + { + "relation": "associated_with", + "source": "556DDF", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "556DE0", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "556DE1", + "target": "556D19" + }, + { + "relation": "pipe", + "source": "556DF0", + "target": "5567D7" + }, + { + "relation": "pipe", + "source": "556DF0", + "target": "556922" + }, + { + "relation": "pipe", + "source": "556DF0", + "target": "55739E" + }, + { + "relation": "associated_with", + "source": "556DF2", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "556DFF", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "556E04", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "556E0B", + "target": "556916" + }, + { + "relation": "associated_with", + "source": "556E0F", + "target": "556916" + }, + { + "relation": "associated_with", + "source": "556E13", + "target": "5560AA" + }, + { + "relation": "pipe", + "source": "556E25", + "target": "556E33" + }, + { + "relation": "pipe", + "source": "556E25", + "target": "557558" + }, + { + "relation": "associated_with", + "source": "556E38", + "target": "556E25" + }, + { + "relation": "associated_with", + "source": "556E55", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "556E60", + "target": "557377" + }, + { + "relation": "associated_with", + "source": "556E63", + "target": "556238" + }, + { + "relation": "associated_with", + "source": "556E64", + "target": "556CCB" + }, + { + "relation": "associated_with", + "source": "556E67", + "target": "556808" + }, + { + "relation": "pipe", + "source": "556E6A", + "target": "556B0D" + }, + { + "relation": "associated_with", + "source": "556E6E", + "target": "556AAD" + }, + { + "relation": "associated_with", + "source": "556E71", + "target": "556AAD" + }, + { + "relation": "pipe", + "source": "556E7A", + "target": "556AF2" + }, + { + "relation": "associated_with", + "source": "556E80", + "target": "5573B7" + }, + { + "relation": "associated_with", + "source": "556E81", + "target": "556808" + }, + { + "relation": "pipe", + "source": "556EAC", + "target": "5566E7" + }, + { + "relation": "pipe", + "source": "556EAC", + "target": "556B89" + }, + { + "relation": "pipe", + "source": "556EAC", + "target": "556713" + }, + { + "relation": "pipe", + "source": "556ECA", + "target": "556BAC" + }, + { + "relation": "associated_with", + "source": "556ED0", + "target": "556A49" + }, + { + "relation": "associated_with", + "source": "556EDF", + "target": "5569C2" + }, + { + "relation": "associated_with", + "source": "556EE0", + "target": "5569ED" + }, + { + "relation": "pipe", + "source": "556EE2", + "target": "55611F" + }, + { + "relation": "associated_with", + "source": "556EF5", + "target": "5560B6" + }, + { + "relation": "associated_with", + "source": "556EF6", + "target": "556108" + }, + { + "relation": "associated_with", + "source": "556EF7", + "target": "556108" + }, + { + "relation": "associated_with", + "source": "556F1F", + "target": "5561E0" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "556F1C" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "556290" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "55738E" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "55627E" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "5566AD" + }, + { + "relation": "pipe", + "source": "556F21", + "target": "5561F9" + }, + { + "relation": "associated_with", + "source": "556F3A", + "target": "556F21" + }, + { + "relation": "associated_with", + "source": "556F3B", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "556F5D", + "target": "556F48" + }, + { + "relation": "associated_with", + "source": "556F5E", + "target": "5561E0" + }, + { + "relation": "associated_with", + "source": "556F66", + "target": "556CCB" + }, + { + "relation": "pipe", + "source": "556F70", + "target": "556808" + }, + { + "relation": "pipe", + "source": "556F70", + "target": "557540" + }, + { + "relation": "associated_with", + "source": "556F8E", + "target": "556F86" + }, + { + "relation": "pipe", + "source": "556FA5", + "target": "556FB4" + }, + { + "relation": "pipe", + "source": "556FA5", + "target": "556D55" + }, + { + "relation": "pipe", + "source": "556FA5", + "target": "556DA8" + }, + { + "relation": "pipe", + "source": "556FA5", + "target": "556D19" + }, + { + "relation": "associated_with", + "source": "55700D", + "target": "5567E2" + }, + { + "relation": "associated_with", + "source": "557013", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "557045", + "target": "5573B2" + }, + { + "relation": "associated_with", + "source": "55704D", + "target": "55704E" + }, + { + "relation": "pipe", + "source": "55704E", + "target": "5573A2" + }, + { + "relation": "pipe", + "source": "55704E", + "target": "5570A1" + }, + { + "relation": "associated_with", + "source": "557052", + "target": "55704E" + }, + { + "relation": "associated_with", + "source": "55705C", + "target": "55705D" + }, + { + "relation": "pipe", + "source": "55705D", + "target": "55704E" + }, + { + "relation": "associated_with", + "source": "557061", + "target": "55704E" + }, + { + "relation": "associated_with", + "source": "557070", + "target": "55706E" + }, + { + "relation": "associated_with", + "source": "55707D", + "target": "557093" + }, + { + "relation": "associated_with", + "source": "55707E", + "target": "557093" + }, + { + "relation": "associated_with", + "source": "557081", + "target": "557738" + }, + { + "relation": "associated_with", + "source": "557094", + "target": "557093" + }, + { + "relation": "associated_with", + "source": "557095", + "target": "557096" + }, + { + "relation": "pipe", + "source": "5570A1", + "target": "557093" + }, + { + "relation": "associated_with", + "source": "5570C4", + "target": "5570C5" + }, + { + "relation": "pipe", + "source": "5570D0", + "target": "556881" + }, + { + "relation": "pipe", + "source": "5570D0", + "target": "5570C5" + }, + { + "relation": "pipe", + "source": "5570D0", + "target": "55688D" + }, + { + "relation": "pipe", + "source": "5570E7", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "5570F0", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "5570F2", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "5570F3", + "target": "5570DA" + }, + { + "relation": "associated_with", + "source": "5570F4", + "target": "5571C1" + }, + { + "relation": "associated_with", + "source": "5570F7", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "55711F", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "557121", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "557136", + "target": "557396" + }, + { + "relation": "associated_with", + "source": "557145", + "target": "5570DA" + }, + { + "relation": "associated_with", + "source": "557147", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "55714B", + "target": "55719B" + }, + { + "relation": "pipe", + "source": "55714D", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "55714E", + "target": "55714D" + }, + { + "relation": "associated_with", + "source": "557150", + "target": "55714D" + }, + { + "relation": "associated_with", + "source": "557152", + "target": "5578E3" + }, + { + "relation": "associated_with", + "source": "557153", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "55715F", + "target": "5578E3" + }, + { + "relation": "associated_with", + "source": "5571A1", + "target": "5574F5" + }, + { + "relation": "associated_with", + "source": "5571A8", + "target": "5578E3" + }, + { + "relation": "associated_with", + "source": "5571A9", + "target": "55717D" + }, + { + "relation": "associated_with", + "source": "5571CA", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "557230", + "target": "557271" + }, + { + "relation": "associated_with", + "source": "557233", + "target": "557271" + }, + { + "relation": "associated_with", + "source": "557236", + "target": "556891" + }, + { + "relation": "associated_with", + "source": "55723E", + "target": "556891" + }, + { + "relation": "associated_with", + "source": "55723F", + "target": "556895" + }, + { + "relation": "associated_with", + "source": "557240", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "557248", + "target": "557B54" + }, + { + "relation": "associated_with", + "source": "55724A", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "55724B", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557264", + "target": "556891" + }, + { + "relation": "associated_with", + "source": "557265", + "target": "557271" + }, + { + "relation": "pipe", + "source": "557271", + "target": "556895" + }, + { + "relation": "pipe", + "source": "557271", + "target": "556891" + }, + { + "relation": "pipe", + "source": "557271", + "target": "557262" + }, + { + "relation": "pipe", + "source": "55727C", + "target": "5572A8" + }, + { + "relation": "pipe", + "source": "5572A8", + "target": "556ECA" + }, + { + "relation": "associated_with", + "source": "5572B2", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "5572B5", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "5572B6", + "target": "55714D" + }, + { + "relation": "associated_with", + "source": "5572D3", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5572D5", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5572D7", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5572D8", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5572DA", + "target": "557B48" + }, + { + "relation": "pipe", + "source": "5572E8", + "target": "556211" + }, + { + "relation": "associated_with", + "source": "5572E9", + "target": "5572E8" + }, + { + "relation": "associated_with", + "source": "5572EE", + "target": "5572E8" + }, + { + "relation": "associated_with", + "source": "5572EF", + "target": "5572F0" + }, + { + "relation": "associated_with", + "source": "5572FE", + "target": "557300" + }, + { + "relation": "pipe", + "source": "557300", + "target": "55642B" + }, + { + "relation": "associated_with", + "source": "557301", + "target": "557302" + }, + { + "relation": "associated_with", + "source": "557314", + "target": "5569ED" + }, + { + "relation": "associated_with", + "source": "55731D", + "target": "557324" + }, + { + "relation": "associated_with", + "source": "55732C", + "target": "55714D" + }, + { + "relation": "associated_with", + "source": "55732E", + "target": "55688D" + }, + { + "relation": "associated_with", + "source": "55732F", + "target": "556CEB" + }, + { + "relation": "pipe", + "source": "557338", + "target": "556FA5" + }, + { + "relation": "pipe", + "source": "557338", + "target": "556DA8" + }, + { + "relation": "associated_with", + "source": "55733A", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "55733C", + "target": "557338" + }, + { + "relation": "associated_with", + "source": "55734B", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "55734D", + "target": "557356" + }, + { + "relation": "associated_with", + "source": "557358", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "55736D", + "target": "556922" + }, + { + "relation": "associated_with", + "source": "55736F", + "target": "556831" + }, + { + "relation": "associated_with", + "source": "557371", + "target": "55684B" + }, + { + "relation": "pipe", + "source": "55738E", + "target": "556F21" + }, + { + "relation": "pipe", + "source": "557392", + "target": "556290" + }, + { + "relation": "pipe", + "source": "55739E", + "target": "556922" + }, + { + "relation": "pipe", + "source": "5573A2", + "target": "5573A6" + }, + { + "relation": "pipe", + "source": "5573AE", + "target": "5573B2" + }, + { + "relation": "associated_with", + "source": "5573B6", + "target": "556411" + }, + { + "relation": "associated_with", + "source": "5573BB", + "target": "556BE6" + }, + { + "relation": "associated_with", + "source": "5573BD", + "target": "556B0D" + }, + { + "relation": "associated_with", + "source": "5573BE", + "target": "55766F" + }, + { + "relation": "pipe", + "source": "5573C2", + "target": "556D9A" + }, + { + "relation": "pipe", + "source": "5573C2", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "5573DE", + "target": "5573D6" + }, + { + "relation": "pipe", + "source": "5573F8", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "557403", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "557405", + "target": "5573F8" + }, + { + "relation": "associated_with", + "source": "557407", + "target": "5573F8" + }, + { + "relation": "associated_with", + "source": "557409", + "target": "5573F8" + }, + { + "relation": "associated_with", + "source": "557420", + "target": "556074" + }, + { + "relation": "associated_with", + "source": "557424", + "target": "55661D" + }, + { + "relation": "associated_with", + "source": "557425", + "target": "55611E" + }, + { + "relation": "associated_with", + "source": "557427", + "target": "556AA2" + }, + { + "relation": "associated_with", + "source": "55742B", + "target": "557890" + }, + { + "relation": "associated_with", + "source": "557431", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "55743A", + "target": "55698C" + }, + { + "relation": "associated_with", + "source": "557463", + "target": "556922" + }, + { + "relation": "pipe", + "source": "557492", + "target": "55787B" + }, + { + "relation": "associated_with", + "source": "55749E", + "target": "55747A" + }, + { + "relation": "associated_with", + "source": "55749F", + "target": "557492" + }, + { + "relation": "associated_with", + "source": "5574C0", + "target": "5574B4" + }, + { + "relation": "associated_with", + "source": "5574C1", + "target": "5574B4" + }, + { + "relation": "associated_with", + "source": "5574CE", + "target": "556F86" + }, + { + "relation": "pipe", + "source": "5574D3", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5574EE", + "target": "5574E1" + }, + { + "relation": "pipe", + "source": "5574F5", + "target": "5578E3" + }, + { + "relation": "pipe", + "source": "5574F5", + "target": "5574D3" + }, + { + "relation": "associated_with", + "source": "5574FB", + "target": "556AA2" + }, + { + "relation": "associated_with", + "source": "5574FC", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "5574FD", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "5574FE", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "5574FF", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557500", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557501", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557502", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "557503", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557504", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557505", + "target": "557B48" + }, + { + "relation": "associated_with", + "source": "557506", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "557507", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557508", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557509", + "target": "557B48" + }, + { + "relation": "associated_with", + "source": "55750A", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "55750B", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "55750C", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "55750D", + "target": "557B48" + }, + { + "relation": "pipe", + "source": "55750E", + "target": "556A6A" + }, + { + "relation": "pipe", + "source": "55750E", + "target": "556E6A" + }, + { + "relation": "pipe", + "source": "55750E", + "target": "556AAD" + }, + { + "relation": "pipe", + "source": "557516", + "target": "55770A" + }, + { + "relation": "pipe", + "source": "557516", + "target": "55658F" + }, + { + "relation": "pipe", + "source": "557516", + "target": "5569E6" + }, + { + "relation": "pipe", + "source": "557516", + "target": "557386" + }, + { + "relation": "pipe", + "source": "557530", + "target": "556608" + }, + { + "relation": "pipe", + "source": "557530", + "target": "556E59" + }, + { + "relation": "pipe", + "source": "55753C", + "target": "5573B7" + }, + { + "relation": "pipe", + "source": "55753C", + "target": "55611F" + }, + { + "relation": "pipe", + "source": "557540", + "target": "556366" + }, + { + "relation": "pipe", + "source": "557540", + "target": "55784D" + }, + { + "relation": "pipe", + "source": "55754C", + "target": "556CD9" + }, + { + "relation": "pipe", + "source": "55754C", + "target": "5564A7" + }, + { + "relation": "pipe", + "source": "55754C", + "target": "55643D" + }, + { + "relation": "pipe", + "source": "557558", + "target": "5561BB" + }, + { + "relation": "pipe", + "source": "557558", + "target": "5572E8" + }, + { + "relation": "associated_with", + "source": "55755F", + "target": "557096" + }, + { + "relation": "associated_with", + "source": "557568", + "target": "5574A6" + }, + { + "relation": "pipe", + "source": "557588", + "target": "55759C" + }, + { + "relation": "associated_with", + "source": "557594", + "target": "557588" + }, + { + "relation": "associated_with", + "source": "557595", + "target": "557588" + }, + { + "relation": "associated_with", + "source": "5575A6", + "target": "557492" + }, + { + "relation": "associated_with", + "source": "5575AE", + "target": "557802" + }, + { + "relation": "associated_with", + "source": "5575B0", + "target": "5575AF" + }, + { + "relation": "pipe", + "source": "5575C1", + "target": "557623" + }, + { + "relation": "associated_with", + "source": "5575CE", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "5575CF", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D0", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D1", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D2", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D3", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D4", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D5", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5575D8", + "target": "5561A5" + }, + { + "relation": "associated_with", + "source": "5575FC", + "target": "5563F2" + }, + { + "relation": "associated_with", + "source": "557604", + "target": "556238" + }, + { + "relation": "associated_with", + "source": "557619", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "55761A", + "target": "55679D" + }, + { + "relation": "associated_with", + "source": "557624", + "target": "557885" + }, + { + "relation": "associated_with", + "source": "55762D", + "target": "5563B1" + }, + { + "relation": "associated_with", + "source": "55763A", + "target": "556073" + }, + { + "relation": "associated_with", + "source": "557646", + "target": "5561BC" + }, + { + "relation": "associated_with", + "source": "557647", + "target": "5589E9" + }, + { + "relation": "associated_with", + "source": "55765A", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557662", + "target": "556BCE" + }, + { + "relation": "associated_with", + "source": "557683", + "target": "556F86" + }, + { + "relation": "associated_with", + "source": "557689", + "target": "5573A2" + }, + { + "relation": "associated_with", + "source": "55768A", + "target": "556B89" + }, + { + "relation": "associated_with", + "source": "557691", + "target": "556BCE" + }, + { + "relation": "associated_with", + "source": "5576B1", + "target": "55787B" + }, + { + "relation": "associated_with", + "source": "5576C7", + "target": "5576A0" + }, + { + "relation": "associated_with", + "source": "5576D9", + "target": "5576A0" + }, + { + "relation": "pipe", + "source": "5576DC", + "target": "5570C5" + }, + { + "relation": "associated_with", + "source": "5576ED", + "target": "557031" + }, + { + "relation": "associated_with", + "source": "5576EE", + "target": "556BC3" + }, + { + "relation": "associated_with", + "source": "5576F0", + "target": "556ECA" + }, + { + "relation": "associated_with", + "source": "5576F1", + "target": "556BCE" + }, + { + "relation": "associated_with", + "source": "5576F5", + "target": "557278" + }, + { + "relation": "associated_with", + "source": "5576F6", + "target": "5572A8" + }, + { + "relation": "associated_with", + "source": "5576F7", + "target": "556B65" + }, + { + "relation": "associated_with", + "source": "5576FA", + "target": "556B4F" + }, + { + "relation": "associated_with", + "source": "5576FB", + "target": "556B65" + }, + { + "relation": "associated_with", + "source": "5576FD", + "target": "556714" + }, + { + "relation": "associated_with", + "source": "5576FE", + "target": "556723" + }, + { + "relation": "associated_with", + "source": "5576FF", + "target": "556701" + }, + { + "relation": "associated_with", + "source": "557700", + "target": "556037" + }, + { + "relation": "associated_with", + "source": "557701", + "target": "556057" + }, + { + "relation": "associated_with", + "source": "557702", + "target": "556EB0" + }, + { + "relation": "associated_with", + "source": "557703", + "target": "5566E7" + }, + { + "relation": "associated_with", + "source": "557704", + "target": "556016" + }, + { + "relation": "associated_with", + "source": "557705", + "target": "5566BD" + }, + { + "relation": "associated_with", + "source": "557706", + "target": "556076" + }, + { + "relation": "associated_with", + "source": "557713", + "target": "555FAA" + }, + { + "relation": "associated_with", + "source": "557714", + "target": "55770A" + }, + { + "relation": "associated_with", + "source": "557715", + "target": "5561A5" + }, + { + "relation": "associated_with", + "source": "557716", + "target": "5561A5" + }, + { + "relation": "associated_with", + "source": "557717", + "target": "556112" + }, + { + "relation": "associated_with", + "source": "557719", + "target": "556108" + }, + { + "relation": "associated_with", + "source": "55771A", + "target": "556E33" + }, + { + "relation": "associated_with", + "source": "55771B", + "target": "556E25" + }, + { + "relation": "associated_with", + "source": "55771C", + "target": "556E4B" + }, + { + "relation": "associated_with", + "source": "55771F", + "target": "556685" + }, + { + "relation": "associated_with", + "source": "557721", + "target": "5566AD" + }, + { + "relation": "associated_with", + "source": "557722", + "target": "556F75" + }, + { + "relation": "associated_with", + "source": "557723", + "target": "5562E5" + }, + { + "relation": "associated_with", + "source": "557725", + "target": "556211" + }, + { + "relation": "associated_with", + "source": "557728", + "target": "5563AF" + }, + { + "relation": "associated_with", + "source": "557729", + "target": "556E85" + }, + { + "relation": "associated_with", + "source": "55772A", + "target": "556498" + }, + { + "relation": "associated_with", + "source": "55772C", + "target": "556648" + }, + { + "relation": "associated_with", + "source": "55772F", + "target": "556653" + }, + { + "relation": "associated_with", + "source": "557731", + "target": "55663B" + }, + { + "relation": "pipe", + "source": "557738", + "target": "55773F" + }, + { + "relation": "associated_with", + "source": "557748", + "target": "55644E" + }, + { + "relation": "associated_with", + "source": "55774A", + "target": "5563DF" + }, + { + "relation": "associated_with", + "source": "55774E", + "target": "556556" + }, + { + "relation": "associated_with", + "source": "55774F", + "target": "556DA8" + }, + { + "relation": "associated_with", + "source": "557751", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557752", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557753", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557755", + "target": "556FB4" + }, + { + "relation": "associated_with", + "source": "557756", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557759", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "55775A", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "55775F", + "target": "556CEB" + }, + { + "relation": "associated_with", + "source": "557766", + "target": "556290" + }, + { + "relation": "pipe", + "source": "557780", + "target": "556F21" + }, + { + "relation": "pipe", + "source": "557780", + "target": "556290" + }, + { + "relation": "associated_with", + "source": "557790", + "target": "5562B8" + }, + { + "relation": "associated_with", + "source": "557792", + "target": "556916" + }, + { + "relation": "associated_with", + "source": "557793", + "target": "5567F8" + }, + { + "relation": "associated_with", + "source": "5577BC", + "target": "556111" + }, + { + "relation": "associated_with", + "source": "5577BD", + "target": "555F6B" + }, + { + "relation": "associated_with", + "source": "5577BF", + "target": "55645B" + }, + { + "relation": "associated_with", + "source": "5577C0", + "target": "556498" + }, + { + "relation": "associated_with", + "source": "5577D2", + "target": "55770A" + }, + { + "relation": "associated_with", + "source": "5577F2", + "target": "5568F7" + }, + { + "relation": "associated_with", + "source": "55781B", + "target": "5570E7" + }, + { + "relation": "associated_with", + "source": "55781C", + "target": "55676B" + }, + { + "relation": "associated_with", + "source": "557824", + "target": "557492" + }, + { + "relation": "associated_with", + "source": "55782F", + "target": "5575AF" + }, + { + "relation": "associated_with", + "source": "557837", + "target": "5562B8" + }, + { + "relation": "associated_with", + "source": "55783A", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "55783B", + "target": "5574E1" + }, + { + "relation": "pipe", + "source": "55783E", + "target": "55692B" + }, + { + "relation": "pipe", + "source": "55783E", + "target": "55645F" + }, + { + "relation": "pipe", + "source": "55783E", + "target": "556561" + }, + { + "relation": "pipe", + "source": "55784D", + "target": "556F75" + }, + { + "relation": "pipe", + "source": "55784D", + "target": "557774" + }, + { + "relation": "associated_with", + "source": "55785A", + "target": "55784D" + }, + { + "relation": "associated_with", + "source": "55785B", + "target": "55783E" + }, + { + "relation": "associated_with", + "source": "55785C", + "target": "55692B" + }, + { + "relation": "associated_with", + "source": "55785E", + "target": "55785F" + }, + { + "relation": "associated_with", + "source": "557868", + "target": "55787B" + }, + { + "relation": "associated_with", + "source": "55786F", + "target": "556B0D" + }, + { + "relation": "associated_with", + "source": "557880", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "557881", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "557884", + "target": "557885" + }, + { + "relation": "pipe", + "source": "557885", + "target": "557887" + }, + { + "relation": "associated_with", + "source": "55788E", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "55788F", + "target": "5574E1" + }, + { + "relation": "associated_with", + "source": "5578B5", + "target": "556ADC" + }, + { + "relation": "associated_with", + "source": "5578BD", + "target": "556A49" + }, + { + "relation": "associated_with", + "source": "5578CD", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "5578CE", + "target": "557262" + }, + { + "relation": "associated_with", + "source": "5578D6", + "target": "5570D0" + }, + { + "relation": "pipe", + "source": "5578E3", + "target": "55714D" + }, + { + "relation": "pipe", + "source": "5578E3", + "target": "556891" + }, + { + "relation": "associated_with", + "source": "5578E7", + "target": "557774" + }, + { + "relation": "associated_with", + "source": "5578EC", + "target": "557780" + }, + { + "relation": "associated_with", + "source": "5578ED", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "5578EE", + "target": "5573C2" + }, + { + "relation": "associated_with", + "source": "5578F7", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "5578FD", + "target": "557A92" + }, + { + "relation": "associated_with", + "source": "557905", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "557912", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "55791A", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557923", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557931", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557937", + "target": "557A92" + }, + { + "relation": "associated_with", + "source": "557938", + "target": "557981" + }, + { + "relation": "associated_with", + "source": "557939", + "target": "557981" + }, + { + "relation": "associated_with", + "source": "55793A", + "target": "55797D" + }, + { + "relation": "associated_with", + "source": "55793B", + "target": "55797D" + }, + { + "relation": "pipe", + "source": "557943", + "target": "55793F" + }, + { + "relation": "pipe", + "source": "557943", + "target": "55794D" + }, + { + "relation": "pipe", + "source": "557943", + "target": "557A08" + }, + { + "relation": "pipe", + "source": "55794D", + "target": "557951" + }, + { + "relation": "associated_with", + "source": "557963", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557964", + "target": "55794D" + }, + { + "relation": "associated_with", + "source": "557965", + "target": "55794D" + }, + { + "relation": "associated_with", + "source": "557967", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557968", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557979", + "target": "557998" + }, + { + "relation": "associated_with", + "source": "55797A", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "55797B", + "target": "55793F" + }, + { + "relation": "pipe", + "source": "557985", + "target": "557A96" + }, + { + "relation": "associated_with", + "source": "557986", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "55798C", + "target": "557985" + }, + { + "relation": "pipe", + "source": "557998", + "target": "557A92" + }, + { + "relation": "pipe", + "source": "557998", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "557999", + "target": "557998" + }, + { + "relation": "associated_with", + "source": "55799F", + "target": "557998" + }, + { + "relation": "associated_with", + "source": "5579AB", + "target": "557998" + }, + { + "relation": "associated_with", + "source": "5579E7", + "target": "557A96" + }, + { + "relation": "associated_with", + "source": "5579EB", + "target": "557A96" + }, + { + "relation": "associated_with", + "source": "5579EC", + "target": "5579ED" + }, + { + "relation": "associated_with", + "source": "5579F1", + "target": "5579ED" + }, + { + "relation": "associated_with", + "source": "5579F3", + "target": "557B02" + }, + { + "relation": "associated_with", + "source": "5579F7", + "target": "5579F8" + }, + { + "relation": "pipe", + "source": "5579F8", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "5579F9", + "target": "5579F8" + }, + { + "relation": "pipe", + "source": "557A08", + "target": "5579F8" + }, + { + "relation": "associated_with", + "source": "557A0B", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557A0C", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557A13", + "target": "557A08" + }, + { + "relation": "pipe", + "source": "557A15", + "target": "557A08" + }, + { + "relation": "pipe", + "source": "557A15", + "target": "55794D" + }, + { + "relation": "pipe", + "source": "557A15", + "target": "562B2E" + }, + { + "relation": "pipe", + "source": "557A15", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557A18", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557A1F", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557A20", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557A2A", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A2D", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A32", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A34", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A35", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A36", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A3E", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A41", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A4C", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A4E", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A50", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A51", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A53", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A5D", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A5E", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A5F", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A60", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A61", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A62", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A63", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A64", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A65", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A66", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A67", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A68", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A6A", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A6B", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557A83", + "target": "557A8B" + }, + { + "relation": "pipe", + "source": "557A8B", + "target": "557A82" + }, + { + "relation": "pipe", + "source": "557A96", + "target": "557B02" + }, + { + "relation": "pipe", + "source": "557A96", + "target": "557985" + }, + { + "relation": "pipe", + "source": "557A96", + "target": "5579F8" + }, + { + "relation": "associated_with", + "source": "557A9A", + "target": "557A8B" + }, + { + "relation": "associated_with", + "source": "557A9D", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557AA3", + "target": "55794D" + }, + { + "relation": "associated_with", + "source": "557AA4", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557AA5", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557AAA", + "target": "55793F" + }, + { + "relation": "associated_with", + "source": "557AAF", + "target": "557985" + }, + { + "relation": "associated_with", + "source": "557AB7", + "target": "557A92" + }, + { + "relation": "associated_with", + "source": "557AB8", + "target": "557A92" + }, + { + "relation": "associated_with", + "source": "557AB9", + "target": "557B0B" + }, + { + "relation": "associated_with", + "source": "557AD3", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557AD4", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557AE0", + "target": "557A15" + }, + { + "relation": "associated_with", + "source": "557AE7", + "target": "557A08" + }, + { + "relation": "associated_with", + "source": "557AED", + "target": "557B02" + }, + { + "relation": "associated_with", + "source": "557AEE", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557AEF", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557AF6", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557AF7", + "target": "557A82" + }, + { + "relation": "pipe", + "source": "557B0B", + "target": "557B02" + }, + { + "relation": "pipe", + "source": "557B0B", + "target": "557998" + }, + { + "relation": "associated_with", + "source": "557B44", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557B45", + "target": "557A82" + }, + { + "relation": "associated_with", + "source": "557B46", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557B47", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557B60", + "target": "557CDA" + }, + { + "relation": "associated_with", + "source": "557B68", + "target": "557CDA" + }, + { + "relation": "associated_with", + "source": "557B6B", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557B6C", + "target": "557C7B" + }, + { + "relation": "associated_with", + "source": "557B6D", + "target": "557C9B" + }, + { + "relation": "associated_with", + "source": "557B6F", + "target": "557C7B" + }, + { + "relation": "associated_with", + "source": "557B73", + "target": "5582BC" + }, + { + "relation": "associated_with", + "source": "557B75", + "target": "557B74" + }, + { + "relation": "associated_with", + "source": "557B78", + "target": "557B77" + }, + { + "relation": "associated_with", + "source": "557B8F", + "target": "557B90" + }, + { + "relation": "pipe", + "source": "557B92", + "target": "557DAE" + }, + { + "relation": "associated_with", + "source": "557B96", + "target": "557DD2" + }, + { + "relation": "associated_with", + "source": "557B97", + "target": "557DD2" + }, + { + "relation": "associated_with", + "source": "557B98", + "target": "557D8A" + }, + { + "relation": "associated_with", + "source": "557B99", + "target": "557D8A" + }, + { + "relation": "associated_with", + "source": "557B9A", + "target": "557DC9" + }, + { + "relation": "pipe", + "source": "557BAB", + "target": "557BA7" + }, + { + "relation": "associated_with", + "source": "557BB3", + "target": "557DDB" + }, + { + "relation": "associated_with", + "source": "557BB4", + "target": "557DDB" + }, + { + "relation": "associated_with", + "source": "557BB5", + "target": "557D78" + }, + { + "relation": "associated_with", + "source": "557BB6", + "target": "557D78" + }, + { + "relation": "associated_with", + "source": "557BD0", + "target": "557C1D" + }, + { + "relation": "associated_with", + "source": "557BE1", + "target": "557DA5" + }, + { + "relation": "associated_with", + "source": "557BE2", + "target": "55832B" + }, + { + "relation": "pipe", + "source": "557BEE", + "target": "557C1D" + }, + { + "relation": "pipe", + "source": "557BF3", + "target": "557BEE" + }, + { + "relation": "pipe", + "source": "557BF3", + "target": "5582A4" + }, + { + "relation": "pipe", + "source": "557BF3", + "target": "557DC0" + }, + { + "relation": "associated_with", + "source": "557BF4", + "target": "557BF3" + }, + { + "relation": "associated_with", + "source": "557BF7", + "target": "557BF3" + }, + { + "relation": "associated_with", + "source": "557BFE", + "target": "557D9C" + }, + { + "relation": "associated_with", + "source": "557C07", + "target": "557C06" + }, + { + "relation": "associated_with", + "source": "557C0E", + "target": "557D93" + }, + { + "relation": "associated_with", + "source": "557C10", + "target": "557C06" + }, + { + "relation": "associated_with", + "source": "557C1E", + "target": "557C1D" + }, + { + "relation": "associated_with", + "source": "557C21", + "target": "557BEE" + }, + { + "relation": "associated_with", + "source": "557C23", + "target": "557DAE" + }, + { + "relation": "associated_with", + "source": "557C25", + "target": "557DAE" + }, + { + "relation": "associated_with", + "source": "557C2E", + "target": "55832B" + }, + { + "relation": "associated_with", + "source": "557C30", + "target": "557B92" + }, + { + "relation": "associated_with", + "source": "557C31", + "target": "557D93" + }, + { + "relation": "associated_with", + "source": "557C32", + "target": "55832B" + }, + { + "relation": "associated_with", + "source": "557C33", + "target": "557BF3" + }, + { + "relation": "associated_with", + "source": "557C34", + "target": "557D81" + }, + { + "relation": "associated_with", + "source": "557C35", + "target": "557DE4" + }, + { + "relation": "associated_with", + "source": "557C36", + "target": "557B74" + }, + { + "relation": "associated_with", + "source": "557C37", + "target": "557B77" + }, + { + "relation": "associated_with", + "source": "557C38", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "557C3E", + "target": "557C06" + }, + { + "relation": "associated_with", + "source": "557C41", + "target": "557D81" + }, + { + "relation": "associated_with", + "source": "557C44", + "target": "557C58" + }, + { + "relation": "associated_with", + "source": "557C46", + "target": "557C54" + }, + { + "relation": "associated_with", + "source": "557C4C", + "target": "557C4B" + }, + { + "relation": "associated_with", + "source": "557C4E", + "target": "557C4B" + }, + { + "relation": "pipe", + "source": "557C50", + "target": "557C4B" + }, + { + "relation": "associated_with", + "source": "557C51", + "target": "557C4B" + }, + { + "relation": "associated_with", + "source": "557C53", + "target": "557C50" + }, + { + "relation": "pipe", + "source": "557C54", + "target": "557C58" + }, + { + "relation": "associated_with", + "source": "557C55", + "target": "557C54" + }, + { + "relation": "associated_with", + "source": "557C57", + "target": "557C9B" + }, + { + "relation": "pipe", + "source": "557C58", + "target": "557C54" + }, + { + "relation": "associated_with", + "source": "557C59", + "target": "557C58" + }, + { + "relation": "associated_with", + "source": "557C5B", + "target": "557C9B" + }, + { + "relation": "associated_with", + "source": "557C5E", + "target": "557C4B" + }, + { + "relation": "pipe", + "source": "557C64", + "target": "557C65" + }, + { + "relation": "associated_with", + "source": "557C68", + "target": "557C58" + }, + { + "relation": "associated_with", + "source": "557C6A", + "target": "557C69" + }, + { + "relation": "associated_with", + "source": "557C70", + "target": "557C64" + }, + { + "relation": "associated_with", + "source": "557C71", + "target": "557C65" + }, + { + "relation": "associated_with", + "source": "557C72", + "target": "558308" + }, + { + "relation": "associated_with", + "source": "557C73", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "557C74", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "557C7A", + "target": "557C69" + }, + { + "relation": "pipe", + "source": "557C7B", + "target": "5582CF" + }, + { + "relation": "pipe", + "source": "557C7B", + "target": "5582E2" + }, + { + "relation": "associated_with", + "source": "557C7C", + "target": "557C7B" + }, + { + "relation": "associated_with", + "source": "557C7F", + "target": "5582E2" + }, + { + "relation": "associated_with", + "source": "557C80", + "target": "557C7B" + }, + { + "relation": "associated_with", + "source": "557C82", + "target": "557C81" + }, + { + "relation": "associated_with", + "source": "557C87", + "target": "557C58" + }, + { + "relation": "associated_with", + "source": "557C88", + "target": "557C58" + }, + { + "relation": "pipe", + "source": "557C8B", + "target": "557C93" + }, + { + "relation": "pipe", + "source": "557C8F", + "target": "557C97" + }, + { + "relation": "pipe", + "source": "557C97", + "target": "557C8B" + }, + { + "relation": "pipe", + "source": "557C9B", + "target": "5582F5" + }, + { + "relation": "pipe", + "source": "557C9B", + "target": "557C97" + }, + { + "relation": "associated_with", + "source": "557CA5", + "target": "557C8B" + }, + { + "relation": "associated_with", + "source": "557CA7", + "target": "557D81" + }, + { + "relation": "associated_with", + "source": "557CAE", + "target": "558281" + }, + { + "relation": "associated_with", + "source": "557CAF", + "target": "557DC0" + }, + { + "relation": "associated_with", + "source": "557CBA", + "target": "557BC0" + }, + { + "relation": "associated_with", + "source": "557CCD", + "target": "557CCE" + }, + { + "relation": "pipe", + "source": "557CCE", + "target": "557CFB" + }, + { + "relation": "pipe", + "source": "557CCE", + "target": "557CD3" + }, + { + "relation": "pipe", + "source": "557CCE", + "target": "557E09" + }, + { + "relation": "pipe", + "source": "557CCE", + "target": "557E10" + }, + { + "relation": "associated_with", + "source": "557CD0", + "target": "557CCE" + }, + { + "relation": "associated_with", + "source": "557CD2", + "target": "557CD3" + }, + { + "relation": "associated_with", + "source": "557CD5", + "target": "557CD6" + }, + { + "relation": "pipe", + "source": "557CD6", + "target": "557CDA" + }, + { + "relation": "pipe", + "source": "557CD6", + "target": "557C64" + }, + { + "relation": "associated_with", + "source": "557CE9", + "target": "557CE7" + }, + { + "relation": "associated_with", + "source": "557CEE", + "target": "557CED" + }, + { + "relation": "associated_with", + "source": "557CEF", + "target": "557CF0" + }, + { + "relation": "associated_with", + "source": "557D15", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557D18", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557D1F", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557D20", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D21", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D29", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557D2B", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D2C", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D45", + "target": "557D52" + }, + { + "relation": "associated_with", + "source": "557D46", + "target": "557D52" + }, + { + "relation": "pipe", + "source": "557D52", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D63", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D65", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D67", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D68", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557D6A", + "target": "557D43" + }, + { + "relation": "pipe", + "source": "557D81", + "target": "557D8A" + }, + { + "relation": "pipe", + "source": "557D81", + "target": "557DDB" + }, + { + "relation": "pipe", + "source": "557D81", + "target": "557D78" + }, + { + "relation": "pipe", + "source": "557D8A", + "target": "557DD2" + }, + { + "relation": "pipe", + "source": "557D8A", + "target": "5582A4" + }, + { + "relation": "pipe", + "source": "557D93", + "target": "557B92" + }, + { + "relation": "pipe", + "source": "557D93", + "target": "557C06" + }, + { + "relation": "pipe", + "source": "557D93", + "target": "55832B" + }, + { + "relation": "pipe", + "source": "557DB7", + "target": "557B90" + }, + { + "relation": "pipe", + "source": "557DE4", + "target": "557BEE" + }, + { + "relation": "pipe", + "source": "557DE4", + "target": "557B90" + }, + { + "relation": "pipe", + "source": "557E09", + "target": "557E10" + }, + { + "relation": "pipe", + "source": "557E10", + "target": "557CFB" + }, + { + "relation": "associated_with", + "source": "557E25", + "target": "557E1D" + }, + { + "relation": "pipe", + "source": "557E40", + "target": "557E10" + }, + { + "relation": "pipe", + "source": "557E40", + "target": "557E44" + }, + { + "relation": "associated_with", + "source": "557E5C", + "target": "557E40" + }, + { + "relation": "associated_with", + "source": "557E5D", + "target": "557E40" + }, + { + "relation": "associated_with", + "source": "557E5E", + "target": "557E4D" + }, + { + "relation": "associated_with", + "source": "557E5F", + "target": "557E51" + }, + { + "relation": "associated_with", + "source": "557E63", + "target": "557CF0" + }, + { + "relation": "associated_with", + "source": "557E90", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "557E92", + "target": "557CCE" + }, + { + "relation": "associated_with", + "source": "557E93", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557E94", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "557E95", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557E96", + "target": "558002" + }, + { + "relation": "pipe", + "source": "557EA3", + "target": "557F27" + }, + { + "relation": "associated_with", + "source": "557EB1", + "target": "557F8A" + }, + { + "relation": "associated_with", + "source": "557EB7", + "target": "557F8A" + }, + { + "relation": "associated_with", + "source": "557EBA", + "target": "557EC1" + }, + { + "relation": "associated_with", + "source": "557EBC", + "target": "557EC4" + }, + { + "relation": "associated_with", + "source": "557EBF", + "target": "557EBE" + }, + { + "relation": "pipe", + "source": "557EC1", + "target": "557EBE" + }, + { + "relation": "associated_with", + "source": "557EC2", + "target": "557EC1" + }, + { + "relation": "pipe", + "source": "557EC4", + "target": "557F46" + }, + { + "relation": "pipe", + "source": "557EC4", + "target": "557EFA" + }, + { + "relation": "pipe", + "source": "557EC4", + "target": "557F43" + }, + { + "relation": "pipe", + "source": "557EC4", + "target": "5580C7" + }, + { + "relation": "associated_with", + "source": "557EC5", + "target": "557EC4" + }, + { + "relation": "associated_with", + "source": "557EC8", + "target": "557EC7" + }, + { + "relation": "associated_with", + "source": "557EDF", + "target": "557EE0" + }, + { + "relation": "pipe", + "source": "557EE0", + "target": "557F73" + }, + { + "relation": "associated_with", + "source": "557EE9", + "target": "557F0D" + }, + { + "relation": "associated_with", + "source": "557EEF", + "target": "55803A" + }, + { + "relation": "pipe", + "source": "557EFA", + "target": "55803A" + }, + { + "relation": "pipe", + "source": "557EFA", + "target": "557EFF" + }, + { + "relation": "pipe", + "source": "557EFF", + "target": "557EC4" + }, + { + "relation": "associated_with", + "source": "557F00", + "target": "557EFF" + }, + { + "relation": "associated_with", + "source": "557F03", + "target": "557EFF" + }, + { + "relation": "associated_with", + "source": "557F0E", + "target": "557F0D" + }, + { + "relation": "associated_with", + "source": "557F11", + "target": "557EFA" + }, + { + "relation": "associated_with", + "source": "557F13", + "target": "558028" + }, + { + "relation": "associated_with", + "source": "557F15", + "target": "558028" + }, + { + "relation": "associated_with", + "source": "557F19", + "target": "557EE2" + }, + { + "relation": "associated_with", + "source": "557F1A", + "target": "557F73" + }, + { + "relation": "associated_with", + "source": "557F1D", + "target": "55803A" + }, + { + "relation": "associated_with", + "source": "557F23", + "target": "558185" + }, + { + "relation": "associated_with", + "source": "557F25", + "target": "558185" + }, + { + "relation": "associated_with", + "source": "557F28", + "target": "557F27" + }, + { + "relation": "associated_with", + "source": "557F2A", + "target": "557F27" + }, + { + "relation": "associated_with", + "source": "557F2C", + "target": "557F2B" + }, + { + "relation": "associated_with", + "source": "557F2E", + "target": "557F2B" + }, + { + "relation": "associated_with", + "source": "557F30", + "target": "557F2F" + }, + { + "relation": "associated_with", + "source": "557F32", + "target": "557F2F" + }, + { + "relation": "associated_with", + "source": "557F34", + "target": "557F33" + }, + { + "relation": "associated_with", + "source": "557F36", + "target": "557F33" + }, + { + "relation": "associated_with", + "source": "557F3F", + "target": "557F2B" + }, + { + "relation": "associated_with", + "source": "557F40", + "target": "557F27" + }, + { + "relation": "pipe", + "source": "557F41", + "target": "557F7E" + }, + { + "relation": "pipe", + "source": "557F42", + "target": "5581EF" + }, + { + "relation": "pipe", + "source": "557F42", + "target": "557F41" + }, + { + "relation": "associated_with", + "source": "557F44", + "target": "557F43" + }, + { + "relation": "pipe", + "source": "557F46", + "target": "557EBE" + }, + { + "relation": "pipe", + "source": "557F46", + "target": "557EC1" + }, + { + "relation": "associated_with", + "source": "557F47", + "target": "557F46" + }, + { + "relation": "associated_with", + "source": "557F4F", + "target": "557F41" + }, + { + "relation": "associated_with", + "source": "557F50", + "target": "557EBE" + }, + { + "relation": "associated_with", + "source": "557F51", + "target": "557EBE" + }, + { + "relation": "associated_with", + "source": "557F54", + "target": "557F73" + }, + { + "relation": "associated_with", + "source": "557F57", + "target": "557F73" + }, + { + "relation": "associated_with", + "source": "557F58", + "target": "557F73" + }, + { + "relation": "associated_with", + "source": "557F60", + "target": "557EC4" + }, + { + "relation": "associated_with", + "source": "557F65", + "target": "557EC4" + }, + { + "relation": "associated_with", + "source": "557F69", + "target": "557F27" + }, + { + "relation": "associated_with", + "source": "557F6A", + "target": "557F2B" + }, + { + "relation": "associated_with", + "source": "557F7D", + "target": "557F7E" + }, + { + "relation": "pipe", + "source": "557F7E", + "target": "557F8A" + }, + { + "relation": "associated_with", + "source": "557F80", + "target": "557F7E" + }, + { + "relation": "associated_with", + "source": "557F82", + "target": "557F83" + }, + { + "relation": "associated_with", + "source": "557F85", + "target": "557F86" + }, + { + "relation": "pipe", + "source": "557F86", + "target": "557F42" + }, + { + "relation": "pipe", + "source": "557F8A", + "target": "557F86" + }, + { + "relation": "pipe", + "source": "557F97", + "target": "55806E" + }, + { + "relation": "associated_with", + "source": "557F99", + "target": "557F97" + }, + { + "relation": "pipe", + "source": "557F9D", + "target": "557FAB" + }, + { + "relation": "pipe", + "source": "557F9D", + "target": "55807B" + }, + { + "relation": "associated_with", + "source": "557F9E", + "target": "557F9D" + }, + { + "relation": "associated_with", + "source": "557F9F", + "target": "557FA0" + }, + { + "relation": "pipe", + "source": "557FAB", + "target": "557F9D" + }, + { + "relation": "associated_with", + "source": "557FC5", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557FC8", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557FCF", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557FD0", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "557FD1", + "target": "5589AF" + }, + { + "relation": "associated_with", + "source": "557FD9", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557FDB", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "557FDC", + "target": "557FF3" + }, + { + "relation": "pipe", + "source": "557FF3", + "target": "5589B7" + }, + { + "relation": "pipe", + "source": "557FF3", + "target": "558002" + }, + { + "relation": "pipe", + "source": "557FF3", + "target": "5589AB" + }, + { + "relation": "associated_with", + "source": "557FF5", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "557FF6", + "target": "558002" + }, + { + "relation": "associated_with", + "source": "558013", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "558015", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "558017", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "558018", + "target": "557FF3" + }, + { + "relation": "associated_with", + "source": "55801A", + "target": "557FF3" + }, + { + "relation": "pipe", + "source": "558028", + "target": "557EE2" + }, + { + "relation": "pipe", + "source": "55803A", + "target": "557EE0" + }, + { + "relation": "pipe", + "source": "55807B", + "target": "557FA0" + }, + { + "relation": "pipe", + "source": "55807B", + "target": "5580C3" + }, + { + "relation": "associated_with", + "source": "558083", + "target": "55807B" + }, + { + "relation": "pipe", + "source": "5580AF", + "target": "55809E" + }, + { + "relation": "associated_with", + "source": "5580BA", + "target": "55809E" + }, + { + "relation": "associated_with", + "source": "5580BB", + "target": "55809E" + }, + { + "relation": "associated_with", + "source": "5580BC", + "target": "5580AB" + }, + { + "relation": "associated_with", + "source": "5580BD", + "target": "5580AF" + }, + { + "relation": "associated_with", + "source": "5580C1", + "target": "557FA0" + }, + { + "relation": "associated_with", + "source": "5580D9", + "target": "5580D8" + }, + { + "relation": "associated_with", + "source": "5580DC", + "target": "5580DB" + }, + { + "relation": "associated_with", + "source": "5580F3", + "target": "5580F4" + }, + { + "relation": "pipe", + "source": "5580F6", + "target": "55816E" + }, + { + "relation": "associated_with", + "source": "5580FD", + "target": "558124" + }, + { + "relation": "associated_with", + "source": "558103", + "target": "558180" + }, + { + "relation": "pipe", + "source": "55810E", + "target": "5580F4" + }, + { + "relation": "pipe", + "source": "55810E", + "target": "558113" + }, + { + "relation": "pipe", + "source": "55810E", + "target": "558177" + }, + { + "relation": "associated_with", + "source": "558114", + "target": "558113" + }, + { + "relation": "associated_with", + "source": "558117", + "target": "558113" + }, + { + "relation": "associated_with", + "source": "558125", + "target": "558124" + }, + { + "relation": "associated_with", + "source": "558128", + "target": "55810E" + }, + { + "relation": "associated_with", + "source": "55812A", + "target": "55816E" + }, + { + "relation": "associated_with", + "source": "55812C", + "target": "55816E" + }, + { + "relation": "associated_with", + "source": "558131", + "target": "5581C1" + }, + { + "relation": "associated_with", + "source": "558132", + "target": "558161" + }, + { + "relation": "associated_with", + "source": "558133", + "target": "5581C1" + }, + { + "relation": "associated_with", + "source": "558135", + "target": "558155" + }, + { + "relation": "pipe", + "source": "558138", + "target": "557F86" + }, + { + "relation": "pipe", + "source": "558138", + "target": "55813C" + }, + { + "relation": "pipe", + "source": "558138", + "target": "5589AB" + }, + { + "relation": "pipe", + "source": "558138", + "target": "5589B3" + }, + { + "relation": "associated_with", + "source": "558139", + "target": "558138" + }, + { + "relation": "associated_with", + "source": "55813B", + "target": "558138" + }, + { + "relation": "associated_with", + "source": "55813D", + "target": "55813C" + }, + { + "relation": "associated_with", + "source": "55813F", + "target": "55813C" + }, + { + "relation": "associated_with", + "source": "558141", + "target": "558140" + }, + { + "relation": "associated_with", + "source": "558143", + "target": "558140" + }, + { + "relation": "pipe", + "source": "558144", + "target": "5589AB" + }, + { + "relation": "pipe", + "source": "558144", + "target": "5589AF" + }, + { + "relation": "pipe", + "source": "558144", + "target": "558140" + }, + { + "relation": "associated_with", + "source": "558145", + "target": "558144" + }, + { + "relation": "associated_with", + "source": "558147", + "target": "558144" + }, + { + "relation": "pipe", + "source": "55814A", + "target": "558155" + }, + { + "relation": "pipe", + "source": "55814A", + "target": "558158" + }, + { + "relation": "pipe", + "source": "55814A", + "target": "5580D8" + }, + { + "relation": "associated_with", + "source": "55814B", + "target": "55814A" + }, + { + "relation": "associated_with", + "source": "558153", + "target": "5581D5" + }, + { + "relation": "associated_with", + "source": "558154", + "target": "5581D5" + }, + { + "relation": "pipe", + "source": "558155", + "target": "558158" + }, + { + "relation": "associated_with", + "source": "558156", + "target": "558155" + }, + { + "relation": "associated_with", + "source": "558159", + "target": "558158" + }, + { + "relation": "pipe", + "source": "558161", + "target": "5580F4" + }, + { + "relation": "associated_with", + "source": "55819C", + "target": "5580F4" + }, + { + "relation": "pipe", + "source": "5581AD", + "target": "5581C1" + }, + { + "relation": "pipe", + "source": "5581C1", + "target": "5581AD" + }, + { + "relation": "pipe", + "source": "5581D5", + "target": "558161" + }, + { + "relation": "associated_with", + "source": "5581EA", + "target": "558161" + }, + { + "relation": "associated_with", + "source": "5581F2", + "target": "5581EF" + }, + { + "relation": "associated_with", + "source": "5581FF", + "target": "55813C" + }, + { + "relation": "associated_with", + "source": "558200", + "target": "558138" + }, + { + "relation": "associated_with", + "source": "558202", + "target": "557C50" + }, + { + "relation": "associated_with", + "source": "558203", + "target": "5580F6" + }, + { + "relation": "associated_with", + "source": "558204", + "target": "558140" + }, + { + "relation": "associated_with", + "source": "558205", + "target": "558144" + }, + { + "relation": "associated_with", + "source": "558206", + "target": "55813C" + }, + { + "relation": "associated_with", + "source": "558207", + "target": "558138" + }, + { + "relation": "associated_with", + "source": "55820B", + "target": "557EE0" + }, + { + "relation": "associated_with", + "source": "55820C", + "target": "5580D8" + }, + { + "relation": "associated_with", + "source": "55820F", + "target": "558155" + }, + { + "relation": "associated_with", + "source": "558211", + "target": "557B54" + }, + { + "relation": "associated_with", + "source": "558219", + "target": "557C64" + }, + { + "relation": "associated_with", + "source": "55821F", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "558220", + "target": "557CDA" + }, + { + "relation": "associated_with", + "source": "558232", + "target": "557CD6" + }, + { + "relation": "associated_with", + "source": "55825D", + "target": "557B90" + }, + { + "relation": "associated_with", + "source": "558263", + "target": "558262" + }, + { + "relation": "associated_with", + "source": "558267", + "target": "558281" + }, + { + "relation": "associated_with", + "source": "558268", + "target": "558273" + }, + { + "relation": "pipe", + "source": "558281", + "target": "557BAB" + }, + { + "relation": "pipe", + "source": "558281", + "target": "557DD2" + }, + { + "relation": "pipe", + "source": "558281", + "target": "557DC0" + }, + { + "relation": "pipe", + "source": "558281", + "target": "558273" + }, + { + "relation": "pipe", + "source": "5582A4", + "target": "557DC0" + }, + { + "relation": "associated_with", + "source": "5582A9", + "target": "558289" + }, + { + "relation": "associated_with", + "source": "5582AB", + "target": "55829B" + }, + { + "relation": "associated_with", + "source": "5582AC", + "target": "5582A4" + }, + { + "relation": "pipe", + "source": "5582BC", + "target": "557C7B" + }, + { + "relation": "pipe", + "source": "5582BC", + "target": "5582CF" + }, + { + "relation": "pipe", + "source": "558308", + "target": "557B74" + }, + { + "relation": "associated_with", + "source": "558316", + "target": "557D81" + }, + { + "relation": "associated_with", + "source": "55831E", + "target": "557DE4" + }, + { + "relation": "associated_with", + "source": "558320", + "target": "557DE4" + }, + { + "relation": "pipe", + "source": "55832B", + "target": "557C06" + }, + { + "relation": "associated_with", + "source": "55833A", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "55833B", + "target": "557D43" + }, + { + "relation": "associated_with", + "source": "55862E", + "target": "5588E9" + }, + { + "relation": "associated_with", + "source": "55863A", + "target": "5588E9" + }, + { + "relation": "associated_with", + "source": "558640", + "target": "558905" + }, + { + "relation": "associated_with", + "source": "558665", + "target": "558904" + }, + { + "relation": "associated_with", + "source": "55866B", + "target": "558858" + }, + { + "relation": "associated_with", + "source": "55866C", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55866E", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "558692", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "558697", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558698", + "target": "55884B" + }, + { + "relation": "pipe", + "source": "5586AD", + "target": "5586B6" + }, + { + "relation": "pipe", + "source": "5586AD", + "target": "5586A8" + }, + { + "relation": "associated_with", + "source": "5586AE", + "target": "5586AD" + }, + { + "relation": "associated_with", + "source": "5586BD", + "target": "5587B5" + }, + { + "relation": "associated_with", + "source": "5586BE", + "target": "5587B5" + }, + { + "relation": "associated_with", + "source": "5586C0", + "target": "5588D6" + }, + { + "relation": "associated_with", + "source": "5586C8", + "target": "5586CB" + }, + { + "relation": "pipe", + "source": "5586CB", + "target": "5586AD" + }, + { + "relation": "pipe", + "source": "5586CB", + "target": "558993" + }, + { + "relation": "associated_with", + "source": "558709", + "target": "5586F2" + }, + { + "relation": "associated_with", + "source": "55870A", + "target": "5587BD" + }, + { + "relation": "pipe", + "source": "558724", + "target": "55875C" + }, + { + "relation": "pipe", + "source": "55874D", + "target": "5587B1" + }, + { + "relation": "pipe", + "source": "55875C", + "target": "5588B7" + }, + { + "relation": "associated_with", + "source": "55876D", + "target": "5587B9" + }, + { + "relation": "associated_with", + "source": "55876E", + "target": "55875C" + }, + { + "relation": "associated_with", + "source": "558777", + "target": "5587B1" + }, + { + "relation": "pipe", + "source": "558778", + "target": "5587B1" + }, + { + "relation": "associated_with", + "source": "55877C", + "target": "558778" + }, + { + "relation": "associated_with", + "source": "5587A5", + "target": "558993" + }, + { + "relation": "associated_with", + "source": "5587A7", + "target": "5587A9" + }, + { + "relation": "pipe", + "source": "5587A9", + "target": "5586AD" + }, + { + "relation": "pipe", + "source": "5587A9", + "target": "558993" + }, + { + "relation": "pipe", + "source": "5587B9", + "target": "55874D" + }, + { + "relation": "pipe", + "source": "5587B9", + "target": "5588E1" + }, + { + "relation": "pipe", + "source": "5587BD", + "target": "5586F2" + }, + { + "relation": "pipe", + "source": "5587BD", + "target": "558724" + }, + { + "relation": "associated_with", + "source": "5587CA", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "5587CD", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "5587D2", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587D4", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587D5", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587D6", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587DE", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "5587E0", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587F9", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587FA", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587FB", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5587FC", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558807", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558809", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55880B", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55880C", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55880E", + "target": "553F2F" + }, + { + "relation": "associated_with", + "source": "558818", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55881A", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55881B", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55881C", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55881D", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55881E", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55881F", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558820", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558821", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558822", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "558823", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558824", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558825", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558832", + "target": "5588B7" + }, + { + "relation": "associated_with", + "source": "558833", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "558834", + "target": "5588E9" + }, + { + "relation": "associated_with", + "source": "558836", + "target": "558904" + }, + { + "relation": "associated_with", + "source": "558838", + "target": "5588E9" + }, + { + "relation": "associated_with", + "source": "558839", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55883A", + "target": "55884B" + }, + { + "relation": "associated_with", + "source": "55883B", + "target": "558858" + }, + { + "relation": "associated_with", + "source": "55883C", + "target": "55884B" + }, + { + "relation": "pipe", + "source": "55884B", + "target": "55875C" + }, + { + "relation": "associated_with", + "source": "5588A8", + "target": "5586FA" + }, + { + "relation": "associated_with", + "source": "5588AE", + "target": "5588B6" + }, + { + "relation": "pipe", + "source": "5588B7", + "target": "558766" + }, + { + "relation": "pipe", + "source": "5588D6", + "target": "5587B1" + }, + { + "relation": "associated_with", + "source": "5588E8", + "target": "5588E1" + }, + { + "relation": "pipe", + "source": "5588EA", + "target": "5588E9" + }, + { + "relation": "pipe", + "source": "5588EA", + "target": "558904" + }, + { + "relation": "associated_with", + "source": "5588F1", + "target": "5588E9" + }, + { + "relation": "pipe", + "source": "558904", + "target": "558905" + }, + { + "relation": "associated_with", + "source": "55890C", + "target": "558904" + }, + { + "relation": "associated_with", + "source": "55891C", + "target": "558904" + }, + { + "relation": "associated_with", + "source": "55892E", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55892F", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558935", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "558936", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55899B", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "55899C", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5589A9", + "target": "5587F7" + }, + { + "relation": "associated_with", + "source": "5589AA", + "target": "5587F7" + }, + { + "relation": "pipe", + "source": "5589AB", + "target": "5589AF" + }, + { + "relation": "associated_with", + "source": "5589BD", + "target": "5589AF" + }, + { + "relation": "associated_with", + "source": "5589C6", + "target": "5548A0" + }, + { + "relation": "associated_with", + "source": "558A0A", + "target": "5589E9" + }, + { + "relation": "associated_with", + "source": "558A38", + "target": "558A17" + }, + { + "relation": "associated_with", + "source": "558A3B", + "target": "558A17" + }, + { + "relation": "associated_with", + "source": "558A4B", + "target": "556484" + }, + { + "relation": "associated_with", + "source": "558A5C", + "target": "55445E" + }, + { + "relation": "associated_with", + "source": "558A77", + "target": "557C50" + }, + { + "relation": "associated_with", + "source": "558A92", + "target": "554208" + }, + { + "relation": "associated_with", + "source": "558A93", + "target": "5544AE" + }, + { + "relation": "pipe", + "source": "5610B0", + "target": "55408C" + }, + { + "relation": "pipe", + "source": "5610B0", + "target": "5540A4" + }, + { + "relation": "associated_with", + "source": "561146", + "target": "56107B" + }, + { + "relation": "associated_with", + "source": "561176", + "target": "5610B0" + }, + { + "relation": "associated_with", + "source": "561274", + "target": "5620FE" + }, + { + "relation": "pipe", + "source": "5612AC", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "56142D", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "561463", + "target": "562A79" + }, + { + "relation": "associated_with", + "source": "561A1F", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A29", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A2C", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A33", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A34", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A35", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A3D", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A3F", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A58", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A59", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A5A", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A5B", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A66", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A68", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A6A", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A6B", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A6D", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A77", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A79", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7A", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7B", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7C", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7D", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7E", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A7F", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A80", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A81", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A82", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A83", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A84", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A85", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A86", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A87", + "target": "561A56" + }, + { + "relation": "associated_with", + "source": "561A88", + "target": "561A56" + }, + { + "relation": "pipe", + "source": "561A98", + "target": "561B63" + }, + { + "relation": "associated_with", + "source": "561A99", + "target": "561A98" + }, + { + "relation": "associated_with", + "source": "561AA8", + "target": "561B38" + }, + { + "relation": "associated_with", + "source": "561AA9", + "target": "561B38" + }, + { + "relation": "associated_with", + "source": "561AAB", + "target": "561AC9" + }, + { + "relation": "associated_with", + "source": "561AB3", + "target": "561AB6" + }, + { + "relation": "pipe", + "source": "561AB6", + "target": "561A98" + }, + { + "relation": "pipe", + "source": "561AC9", + "target": "561B63" + }, + { + "relation": "pipe", + "source": "561AC9", + "target": "561AD3" + }, + { + "relation": "pipe", + "source": "561AD3", + "target": "561F40" + }, + { + "relation": "associated_with", + "source": "561AF4", + "target": "561AE5" + }, + { + "relation": "associated_with", + "source": "561AF5", + "target": "561ADE" + }, + { + "relation": "pipe", + "source": "561B0F", + "target": "561ADE" + }, + { + "relation": "pipe", + "source": "561B0F", + "target": "561F6B" + }, + { + "relation": "associated_with", + "source": "561B58", + "target": "561F40" + }, + { + "relation": "associated_with", + "source": "561B59", + "target": "561F3C" + }, + { + "relation": "associated_with", + "source": "561B62", + "target": "561AC9" + }, + { + "relation": "associated_with", + "source": "561B67", + "target": "561B63" + }, + { + "relation": "associated_with", + "source": "561B6F", + "target": "561ADD" + }, + { + "relation": "associated_with", + "source": "561B75", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B76", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B77", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B78", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B79", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B99", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9A", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9B", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9C", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9D", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9E", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561B9F", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BA6", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BAD", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BB4", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BBB", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BC2", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BC9", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BD0", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BD7", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BDE", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BE5", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF4", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF5", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF6", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF7", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF8", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BF9", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BFA", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BFB", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BFC", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BFD", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561BFF", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561C09", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561C1B", + "target": "561C1A" + }, + { + "relation": "associated_with", + "source": "561C29", + "target": "561CB9" + }, + { + "relation": "associated_with", + "source": "561C2A", + "target": "561F4C" + }, + { + "relation": "associated_with", + "source": "561C2C", + "target": "561C4A" + }, + { + "relation": "associated_with", + "source": "561C34", + "target": "561C37" + }, + { + "relation": "pipe", + "source": "561C37", + "target": "561C1A" + }, + { + "relation": "pipe", + "source": "561C37", + "target": "561F40" + }, + { + "relation": "pipe", + "source": "561C4A", + "target": "561C23" + }, + { + "relation": "associated_with", + "source": "561C75", + "target": "561C66" + }, + { + "relation": "associated_with", + "source": "561C76", + "target": "561C5F" + }, + { + "relation": "pipe", + "source": "561C90", + "target": "561CAF" + }, + { + "relation": "pipe", + "source": "561C90", + "target": "561C5E" + }, + { + "relation": "pipe", + "source": "561C90", + "target": "561C5F" + }, + { + "relation": "pipe", + "source": "561C90", + "target": "561CC8" + }, + { + "relation": "pipe", + "source": "561CAF", + "target": "561C4A" + }, + { + "relation": "pipe", + "source": "561CAF", + "target": "561C54" + }, + { + "relation": "pipe", + "source": "561CAF", + "target": "561C5E" + }, + { + "relation": "pipe", + "source": "561CAF", + "target": "561F48" + }, + { + "relation": "pipe", + "source": "561CAF", + "target": "561C9A" + }, + { + "relation": "pipe", + "source": "561CC8", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561CD9", + "target": "561F4C" + }, + { + "relation": "associated_with", + "source": "561CDA", + "target": "561CC8" + }, + { + "relation": "associated_with", + "source": "561CE3", + "target": "561C4A" + }, + { + "relation": "pipe", + "source": "561CE4", + "target": "561F84" + }, + { + "relation": "associated_with", + "source": "561CE8", + "target": "561CE4" + }, + { + "relation": "associated_with", + "source": "561CEF", + "target": "561C5E" + }, + { + "relation": "associated_with", + "source": "561CFA", + "target": "561CFD" + }, + { + "relation": "associated_with", + "source": "561D07", + "target": "561CF0" + }, + { + "relation": "associated_with", + "source": "561D08", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561D09", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561D0A", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561D1F", + "target": "561CF0" + }, + { + "relation": "associated_with", + "source": "561D20", + "target": "561CF0" + }, + { + "relation": "associated_with", + "source": "561D21", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561D22", + "target": "561CD2" + }, + { + "relation": "associated_with", + "source": "561DFB", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E02", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E03", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E0A", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E0B", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E12", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E13", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E1A", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E1B", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E22", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E23", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E2A", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E2B", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E32", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E35", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E3D", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E45", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E4D", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E55", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E5D", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E6F", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E71", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561E73", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E7A", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E7B", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E82", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E83", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E8A", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E8B", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E92", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E93", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E9A", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561E9B", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EA2", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EA3", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EAA", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EAD", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EAE", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EB5", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EB6", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EBD", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EBE", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EC5", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EC6", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561EDF", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EE0", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EEF", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "561EF0", + "target": "562ABE" + }, + { + "relation": "pipe", + "source": "561F40", + "target": "561ADE" + }, + { + "relation": "pipe", + "source": "561F40", + "target": "561F84" + }, + { + "relation": "pipe", + "source": "561F68", + "target": "561F6B" + }, + { + "relation": "pipe", + "source": "561F68", + "target": "561B51" + }, + { + "relation": "associated_with", + "source": "561F69", + "target": "561F68" + }, + { + "relation": "pipe", + "source": "561F6B", + "target": "561F3C" + }, + { + "relation": "pipe", + "source": "561F6B", + "target": "561AFB" + }, + { + "relation": "pipe", + "source": "561F6B", + "target": "561F68" + }, + { + "relation": "associated_with", + "source": "561F6C", + "target": "561F6B" + }, + { + "relation": "associated_with", + "source": "561F76", + "target": "561F44" + }, + { + "relation": "associated_with", + "source": "561F78", + "target": "561F7A" + }, + { + "relation": "pipe", + "source": "561F7A", + "target": "561A98" + }, + { + "relation": "pipe", + "source": "561F7A", + "target": "561F44" + }, + { + "relation": "associated_with", + "source": "561F7E", + "target": "561CFD" + }, + { + "relation": "associated_with", + "source": "561F80", + "target": "561F3C" + }, + { + "relation": "associated_with", + "source": "561F82", + "target": "561F84" + }, + { + "relation": "pipe", + "source": "561F84", + "target": "561F40" + }, + { + "relation": "pipe", + "source": "561F84", + "target": "561C15" + }, + { + "relation": "associated_with", + "source": "561FF5", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "561FFD", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562004", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562005", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56200C", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56200D", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562014", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562015", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56201C", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56201D", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562024", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "562025", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56202C", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56202E", + "target": "56290A" + }, + { + "relation": "associated_with", + "source": "56202F", + "target": "562ABE" + }, + { + "relation": "pipe", + "source": "5620FE", + "target": "5612AC" + }, + { + "relation": "pipe", + "source": "5620FE", + "target": "561395" + }, + { + "relation": "associated_with", + "source": "56221F", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562226", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562227", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56222E", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56222F", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562236", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562237", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56223E", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56223F", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562246", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562247", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56224E", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56224F", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562256", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562512", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562623", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562629", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56262F", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562635", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "56263B", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562675", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "5626A5", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "5626D5", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562705", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562792", + "target": "561F7A" + }, + { + "relation": "associated_with", + "source": "5627C1", + "target": "561F84" + }, + { + "relation": "associated_with", + "source": "5627F3", + "target": "562A79" + }, + { + "relation": "associated_with", + "source": "562864", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "5628A8", + "target": "5588B6" + }, + { + "relation": "associated_with", + "source": "5628D8", + "target": "562ABE" + }, + { + "relation": "pipe", + "source": "56290A", + "target": "561F54" + }, + { + "relation": "associated_with", + "source": "562940", + "target": "562ABE" + }, + { + "relation": "associated_with", + "source": "562A36", + "target": "5573F8" + }, + { + "relation": "associated_with", + "source": "562A38", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "562A3A", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "562A3C", + "target": "562AF6" + }, + { + "relation": "associated_with", + "source": "562BDA", + "target": "557C64" + }, + { + "relation": "associated_with", + "source": "562C0C", + "target": "557D81" + }, + { + "relation": "associated_with", + "source": "562C3C", + "target": "557C64" + }, + { + "relation": "associated_with", + "source": "562D3A", + "target": "5540A4" + }, + { + "relation": "associated_with", + "source": "563261", + "target": "555F00" + }, + { + "relation": "associated_with", + "source": "5632F1", + "target": "5548F8" + }, + { + "relation": "associated_with", + "source": "563321", + "target": "556824" + } + ] +} \ No newline at end of file diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_intelligent_mapper.py b/futurePlan/End-to-End P&ID Graph Pipeline/pid_intelligent_mapper.py new file mode 100644 index 0000000..da39887 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_intelligent_mapper.py @@ -0,0 +1,126 @@ +import networkx as nx +import asyncio +import json +from typing import List, Optional, Dict, Any, Tuple +from pydantic import BaseModel, Field +from rapidfuzz import process, fuzz +from openai import AsyncOpenAI + +# --- 응답 구조화를 위한 Pydantic 모델 --- +class MappingResult(BaseModel): + resolved_tag: str = Field(..., description="The final mapped system tag") + reason: str = Field(..., description="Reason for this mapping based on context") + confidence: float = Field(..., ge=0.0, le=1.0, description="Confidence score from 0 to 1") + +class IntelligentMapper: + def __init__(self, graph: nx.Graph, system_tags: List[str], api_key: str = None): + self.graph = graph # Phase 2에서 생성된 NetworkX 그래프 + self.system_tags = system_tags # Experion 시스템의 전체 태그 리스트 + self.client = AsyncOpenAI(api_key=api_key) if api_key else None + + def get_node_context(self, node_id: str) -> str: + """노드의 주변 위상 정보를 텍스트로 변환""" + if not self.graph.has_node(node_id): + return "Node not found in graph" + + neighbors = list(self.graph.neighbors(node_id)) + context = [] + for n in neighbors: + attr = self.graph.nodes[n] + val = attr.get('value', n) + typ = attr.get('type', 'Unknown') + context.append(f"Connected to {val} (Type: {typ})") + + return ", ".join(context) if context else "No connected neighbors" + + async def _resolve_generic(self, node_id: str, category_prompt: str) -> MappingResult: + """공통 매핑 로직 (비동기 + 구조화 응답)""" + if not self.client: + return MappingResult(resolved_tag="UNKNOWN", reason="API Key not provided", confidence=0.0) + + # Phase 2에서 'value'에 clean_value가 저장됨 + node_data = self.graph.nodes.get(node_id, {}) + tag_text = node_data.get('value', '') + + # 1차 후보 추출 (RapidFuzz) + candidates = process.extract(tag_text, self.system_tags, scorer=fuzz.WRatio, limit=5) + context = self.get_node_context(node_id) + + prompt = f""" + {category_prompt} + P&ID 도면의 태그 '{tag_text}'를 실제 시스템 태그와 매핑해야 합니다. + 위상 맥락: {context} + 후보 리스트: {candidates} + + 반드시 다음 JSON 형식으로만 응답하세요: + {{ + "resolved_tag": "태그명 또는 UNKNOWN", + "reason": "매핑 이유", + "confidence": 0.0~1.0 + }} + """ + + try: + response = await self.client.chat.completions.create( + model="gpt-4-turbo", + messages=[{"role": "user", "content": prompt}], + response_format={ "type": "json_object" } # JSON 모드 강제 + ) + raw_content = response.choices[0].message.content + # Pydantic을 통한 유효성 검사 + return MappingResult.model_validate_json(raw_content) + except Exception as e: + print(f"Error resolving node {node_id}: {e}") + return MappingResult(resolved_tag="UNKNOWN", reason=f"Error: {str(e)}", confidence=0.0) + + # --- 전문화된 Worker 함수들 --- + async def extract_transmitters(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 계측기 전문 엔지니어입니다. 특히 Pressure/Flow/Level Transmitter 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + + async def extract_valves(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 밸브 및 액추에이터 전문 엔지니어입니다. 밸브의 개폐 상태 및 제어 태그 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + + async def extract_equipment(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 공정 설비 전문 엔지니어입니다. 펌프, 탱크, 열교환기 등의 메인 설비 태그 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + +def validate_mapping(resolved_tag: str, symbol_type: str, tag_metadata: Dict[str, Any]) -> Tuple[bool, str]: + """심볼 타입과 실제 태그 메타데이터의 엄격한 일치 여부 검증""" + if resolved_tag == "UNKNOWN": + return False, "Tag not resolved" + + # 단순 키워드가 아닌 허용 단위(Unit) 정의 + unit_map = { + "Pressure Transmitter": ["bar", "psi", "kPa", "Pa"], + "Flow Meter": ["m3/h", "lpm", "kg/h"], + "Temperature Sensor": ["°C", "C", "K", "°F"] + } + + actual_unit = tag_metadata.get('unit', '').strip() + allowed_units = unit_map.get(symbol_type, []) + + # 1. 단위 일치 확인 (최우선) + if actual_unit and actual_unit in allowed_units: + return True, "Unit Match" + + # 2. 단위가 없는 경우 설명(Description) 기반 2차 검증 + actual_desc = tag_metadata.get('description', '').lower() + expected_keywords = { + "Pressure Transmitter": ["pressure", "press"], + "Flow Meter": ["flow", "flowrate"], + "Temperature Sensor": ["temp", "temperature"] + } + + keywords = expected_keywords.get(symbol_type, []) + if any(kw in actual_desc for kw in keywords): + return True, "Description Match (Unit Missing)" + + return False, "Mismatch: Symbol type and Tag metadata do not align" diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/pid_topology_builder.py b/futurePlan/End-to-End P&ID Graph Pipeline/pid_topology_builder.py new file mode 100644 index 0000000..fb9f26c --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/pid_topology_builder.py @@ -0,0 +1,190 @@ +import networkx as nx +from shapely.geometry import box, Point, LineString +import json +from typing import List, Dict, Any, Optional, Tuple + +class PidTopologyBuilder: + def __init__(self, geometric_data: List[Dict[str, Any]], all_extracted_tags: Optional[List[Dict[str, Any]]] = None, config: Optional[Dict[str, float]] = None): + """ + - geometric_data: Phase 1에서 추출된 기하학적 데이터 (List of dicts) + - all_extracted_tags: 통합된 태그 리스트 + - config: {'dist_threshold': 50.0, 'tag_threshold': 100.0} 등 설정값 + """ + self.data = geometric_data + self.all_tags = all_extracted_tags if all_extracted_tags else [] + + if config: + self.config = config + else: + try: + with open('futurePlan/End-to-End P&ID Graph Pipeline/topology_config.json', 'r') as f: + self.config = json.load(f) + except Exception: + self.config = {'dist_threshold': 50.0, 'tag_threshold': 100.0, 'merge_threshold': 2.0} + + self.G = nx.DiGraph() # 방향성 그래프 생성 + + def build_graph(self): + # 1. 노드 병합 및 추가 (Merging) + self.merged_data = self._merge_nodes() + for item in self.merged_data: + bbox_vals = item['bbox'] + bbox_geom = box(bbox_vals['min_x'], bbox_vals['min_y'], bbox_vals['max_x'], bbox_vals['max_y']) + + self.G.add_node(item['entity_id'], + type=item['entity_type'], + bbox=bbox_geom, + value=item.get('clean_value'), + layer=item.get('layer')) + + # 2. 분산 추출된 태그 통합 및 노드 추가 + for tag in self.all_tags: + bbox_vals = tag['bbox'] + bbox_geom = box(bbox_vals['min_x'], bbox_vals['min_y'], bbox_vals['max_x'], bbox_vals['max_y']) + self.G.add_node(tag['entity_id'], + type='TEXT', + bbox=bbox_geom, + value=tag.get('clean_value') or tag.get('tagName')) + + # 3. 태그-설비 논리적 연결 (Association) + tags = [n for n, d in self.G.nodes(data=True) if d['type'] == 'TEXT'] + equipments = [n for n, d in self.G.nodes(data=True) if d['type'] not in ['TEXT', 'LINE', 'LWPOLYLINE']] + + for tag in tags: + best_match = self._find_nearest_equipment(tag, equipments) + if best_match: + self.G.add_edge(tag, best_match, relation='associated_with') + + # 4. 배관 기반 물리적 연결 (Pipe) [개선: Proximity 기반] + lines = [n for n, d in self.G.nodes(data=True) if d['type'] in ['LINE', 'LWPOLYLINE']] + for line_id in lines: + # 저장된 merged_data에서 coordinates 찾기 + original_item = next((item for item in self.merged_data if item['entity_id'] == line_id), None) + if not original_item: + original_item = next((item for item in self.data if item['entity_id'] == line_id), None) + + if not original_item or not original_item.get('coordinates'): + continue + + coords = original_item['coordinates'] + line_geom = LineString(coords) + + connected_nodes = [] + for eq_id in equipments: + eq_bbox = self.G.nodes[eq_id]['bbox'] + # End-point뿐만 아니라 Line 전체와 BBox 간의 최단 거리 측정 + if line_geom.distance(eq_bbox) < self.config['dist_threshold']: + connected_nodes.append(eq_id) + + # 중복 제거 + connected_nodes = list(set(connected_nodes)) + + if len(connected_nodes) >= 2: + # 방향성 추론 (단순화: 첫 번째 -> 두 번째) + self.G.add_edge(connected_nodes[0], connected_nodes[1], relation='pipe') + elif len(connected_nodes) == 1: + # 단일 연결 노드 처리 (나중에 분석용) + pass + + def _find_nearest_equipment(self, tag_id, equipment_ids): + tag_bbox = self.G.nodes[tag_id]['bbox'] + min_dist = float('inf') + nearest = None + for eq_id in equipment_ids: + eq_bbox = self.G.nodes[eq_id]['bbox'] + dist = tag_bbox.distance(eq_bbox) + if dist < min_dist: + min_dist = dist + nearest = eq_id + return nearest if min_dist < self.config['tag_threshold'] else None + + def validate_topology(self): + """위상 무결성 검증""" + isolated = list(nx.isolates(self.G)) + return { + "isolated_nodes": isolated, + "node_count": self.G.number_of_nodes(), + "edge_count": self.G.number_of_edges() + } + + def _merge_nodes(self) -> List[Dict[str, Any]]: + """기하학적으로 거의 동일한 노드들을 병합하여 그래프 단순화""" + if not self.data: + return [] + + merge_threshold = self.config.get('merge_threshold', 2.0) + merged = [] + visited = set() + + for i in range(len(self.data)): + if i in visited: + continue + + current = self.data[i] + current_bbox = box(*(current['bbox']['min_x'], current['bbox']['min_y'], current['bbox']['max_x'], current['bbox']['max_y'])) + + # 동일 타입이면서 BBox 거리가 매우 가까운 노드들 탐색 + cluster = [current] + visited.add(i) + + for j in range(i + 1, len(self.data)): + if j in visited: + continue + + target = self.data[j] + if target['entity_type'] != current['entity_type']: + continue + + target_bbox = box(*(target['bbox']['min_x'], target['bbox']['min_y'], target['bbox']['max_x'], target['bbox']['max_y'])) + if current_bbox.distance(target_bbox) < merge_threshold: + cluster.append(target) + visited.add(j) + + # 클러스터 대표값 설정 (첫 번째 노드 기준, BBox는 합집합으로 확장) + if len(cluster) > 1: + # BBox 합집합 계산 + min_x = min(c['bbox']['min_x'] for c in cluster) + min_y = min(c['bbox']['min_y'] for c in cluster) + max_x = max(c['bbox']['max_x'] for c in cluster) + max_y = max(c['bbox']['max_y'] for c in cluster) + + representative = cluster[0].copy() + representative['bbox'] = {'min_x': min_x, 'min_y': min_y, 'max_x': max_x, 'max_y': max_y} + # 병합된 원본 ID 리스트 저장 + representative['merged_ids'] = [c['entity_id'] for c in cluster] + merged.append(representative) + else: + merged.append(current) + + return merged + + def save_graph(self, output_path: str): + """그래프 구조를 JSON 형태로 저장 (NetworkX의 node_link_data 활용) { + "nodes": [...], + "links": [...] + }""" + from networkx.readwrite import json_graph + data = json_graph.node_link_data(self.G) + + # shapely geometry 객체는 JSON 직렬화가 안 되므로 변환 + for node in data['nodes']: + if 'bbox' in node: + bbox = node['bbox'] + node['bbox'] = { + 'min_x': bbox.bounds[0], + 'min_y': bbox.bounds[1], + 'max_x': bbox.bounds[2], + 'max_y': bbox.bounds[3] + } + + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=4) + return output_path + +def analyze_impact(graph, start_node): + """특정 설비 장애 시 하류(Downstream)에 영향을 받는 모든 노드 추출""" + if start_node not in graph: + return [] + # BFS를 통해 도달 가능한 모든 노드 탐색 + impacted_nodes = nx.descendants(graph, start_node) + return list(impacted_nodes) diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/shared_geo_data.json b/futurePlan/End-to-End P&ID Graph Pipeline/shared_geo_data.json new file mode 100644 index 0000000..67e827b --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/shared_geo_data.json @@ -0,0 +1,848536 @@ +[ + { + "entity_id": "3EABC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5826.527891317375, + "max_x": 1939.570242615078, + "max_y": 5826.527891317375, + "center": [ + 1937.6587749675555, + 5826.527891317375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.747307320033, + 5826.527891317375 + ], + [ + 1939.570242615078, + 5826.527891317375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABCA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5817.693412272501, + "max_x": 1967.0375852158902, + "max_y": 5820.679762540216, + "center": [ + 1948.223578529281, + 5819.186587406359 + ] + }, + "raw_value": "%%UINSTRUMENT SYMBOLS", + "clean_value": "INSTRUMENT SYMBOLS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EABCB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5825.315731106853, + "max_x": 1982.1394149848848, + "max_y": 5827.555493807639, + "center": [ + 1968.028909969928, + 5826.435612457246 + ] + }, + "raw_value": "SOFTWARE OF DATA LINK", + "clean_value": "SOFTWARE OF DATA LINK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABCC", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5834.891766465066, + "max_x": 1949.201028900347, + "max_y": 5834.891766465066, + "center": [ + 1942.47416811019, + 5834.891766465066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.747307320033, + 5834.891766465066 + ], + [ + 1949.201028900347, + 5834.891766465066 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5842.778167808198, + "max_x": 1949.201028900347, + "max_y": 5842.778167808198, + "center": [ + 1942.47416811019, + 5842.778167808198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.747307320033, + 5842.778167808198 + ], + [ + 1949.201028900347, + 5842.778167808198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.747307320033, + "min_y": 5850.565989187566, + "max_x": 1949.201028900347, + "max_y": 5850.565989187566, + "center": [ + 1942.47416811019, + 5850.565989187566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.747307320033, + 5850.565989187566 + ], + [ + 1949.201028900347, + 5850.565989187566 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABCF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5869.531254295882, + "max_x": 1975.9966360190376, + "max_y": 5872.517604563597, + "center": [ + 1952.703103930855, + 5871.024429429739 + ] + }, + "raw_value": "%%UINSTRUMENT LINE SYMBOLS", + "clean_value": "INSTRUMENT LINE SYMBOLS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EABD0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5833.679606254545, + "max_x": 1976.7639845029964, + "max_y": 5835.919368955332, + "center": [ + 1965.3411947289837, + 5834.799487604939 + ] + }, + "raw_value": "ELECTRICAL SIGNAL", + "clean_value": "ELECTRICAL SIGNAL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5841.566007597677, + "max_x": 1975.4201268825243, + "max_y": 5843.805770298463, + "center": [ + 1964.6692659187477, + 5842.68588894807 + ] + }, + "raw_value": "PNEUMATIC SIGNAL", + "clean_value": "PNEUMATIC SIGNAL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5849.353828977045, + "max_x": 1982.1394149848848, + "max_y": 5851.593591677832, + "center": [ + 1968.028909969928, + 5850.473710327438 + ] + }, + "raw_value": "CONNECTION TO PROCESS", + "clean_value": "CONNECTION TO PROCESS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.577257236812, + "min_y": 5842.069086417658, + "max_x": 1941.056519532469, + "max_y": 5843.252046689833, + "center": [ + 1940.3168883846406, + 5842.660566553745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.056519532469, + 5843.252046689833 + ], + [ + 1939.577257236812, + 5842.069086417658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1938.886934381903, + "min_y": 5842.069086417658, + "max_x": 1940.366196677568, + "max_y": 5843.252046689833, + "center": [ + 1939.6265655297357, + 5842.660566553745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.366196677568, + 5843.252046689833 + ], + [ + 1938.886934381903, + 5842.069086417658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.494307384304, + "min_y": 5842.069086417658, + "max_x": 1946.97356967996, + "max_y": 5843.252046689833, + "center": [ + 1946.233938532132, + 5842.660566553745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.97356967996, + 5843.252046689833 + ], + [ + 1945.494307384304, + 5842.069086417658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.184630239204, + "min_y": 5842.069086417658, + "max_x": 1947.663892534861, + "max_y": 5843.252046689833, + "center": [ + 1946.9242613870324, + 5842.660566553745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1947.663892534861, + 5843.252046689833 + ], + [ + 1946.184630239204, + 5842.069086417658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.202741244584, + "min_y": 5801.012673184939, + "max_x": 1941.127725729624, + "max_y": 5801.012673184939, + "center": [ + 1938.1652334871042, + 5801.012673184939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.127725729624, + 5801.012673184939 + ], + [ + 1935.202741244584, + 5801.012673184939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5798.0501809424195, + "max_x": 1941.1277257296233, + "max_y": 5803.975165427458, + "center": [ + 1938.165233487104, + 5801.012673184939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.165233487104, + 5801.012673184939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABD9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5807.060193836422, + "max_x": 1941.1277257296233, + "max_y": 5812.98517832146, + "center": [ + 1938.165233487104, + 5810.022686078941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.165233487104, + 5810.022686078941 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5809.507201765811, + "max_x": 1986.3014632412094, + "max_y": 5811.746964466598, + "center": [ + 1966.143598934128, + 5810.627083116205 + ] + }, + "raw_value": "LOCAL FIELD DEVICE/TRANSMITTER", + "clean_value": "LOCAL FIELD DEVICE/TRANSMITTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5802.083525465751, + "max_x": 1983.6137480002653, + "max_y": 5804.323288166538, + "center": [ + 1964.799741313656, + 5803.203406816145 + ] + }, + "raw_value": "DESK OR PANEL MOUNTED DEVICE", + "clean_value": "DESK OR PANEL MOUNTED DEVICE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1939.5701983635208, + "min_y": 5826.203647579384, + "max_x": 1940.208060505473, + "max_y": 5826.841509721336, + "center": [ + 1939.889129434497, + 5826.52257865036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.889129434497, + 5826.52257865036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.533295355147, + "min_y": 5826.527891317375, + "max_x": 1949.201028900347, + "max_y": 5826.527891317375, + "center": [ + 1947.367162127747, + 5826.527891317375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.533295355147, + 5826.527891317375 + ], + [ + 1949.201028900347, + 5826.527891317375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.208016253924, + "min_y": 5826.527891317375, + "max_x": 1944.895521716301, + "max_y": 5826.527891317375, + "center": [ + 1942.5517689851124, + 5826.527891317375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.208016253924, + 5826.527891317375 + ], + [ + 1944.895521716301, + 5826.527891317375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABDF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1944.8954774647518, + "min_y": 5826.203647579384, + "max_x": 1945.533339606704, + "max_y": 5826.841509721336, + "center": [ + 1945.214408535728, + 5826.52257865036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.214408535728, + 5826.52257865036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5863.009690300525, + "max_x": 1987.514845466773, + "max_y": 5865.249453001312, + "center": [ + 1970.716625210872, + 5864.1295716509185 + ] + }, + "raw_value": "DIAPHRAM OR CHEMICAL SEAL", + "clean_value": "DIAPHRAM OR CHEMICAL SEAL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1938.906971635245, + "min_y": 5862.469791860874, + "max_x": 1944.893857334454, + "max_y": 5865.463234710475, + "center": [ + 1941.9004144848495, + 5863.966513285674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.893857334454, + 5865.463234710475 + ], + [ + 1938.906971635245, + 5865.463234710475 + ], + [ + 1938.906971635245, + 5862.469791860874 + ], + [ + 1944.893857334454, + 5862.469791860874 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.2027412445846, + "min_y": 5789.474927438829, + "max_x": 1941.1277257296233, + "max_y": 5795.399911923867, + "center": [ + 1938.165233487104, + 5792.437419681348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.165233487104, + 5792.437419681348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.985734627047, + "min_y": 5791.921935368218, + "max_x": 1964.799741313656, + "max_y": 5794.161698069005, + "center": [ + 1955.3927379703514, + 5793.041816718612 + ] + }, + "raw_value": "DCS INSTRUMENT", + "clean_value": "DCS INSTRUMENT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE5", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.202741244584, + "min_y": 5789.474927438833, + "max_x": 1941.127725729624, + "max_y": 5795.399911923868, + "center": [ + 1938.1652334871042, + 5792.437419681351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.165233487104, + 5795.399911923868 + ], + [ + 1935.202741244584, + 5795.399911923865 + ], + [ + 1935.202741244592, + 5789.474927438833 + ], + [ + 1941.127725729624, + 5789.474927438833 + ], + [ + 1941.127725729622, + 5795.399911923868 + ], + [ + 1938.165233487104, + 5795.399911923868 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.202741244589, + "min_y": 5792.437419681348, + "max_x": 1941.127725729622, + "max_y": 5792.437419681348, + "center": [ + 1938.1652334871055, + 5792.437419681348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.202741244589, + 5792.437419681348 + ], + [ + 1941.127725729622, + 5792.437419681348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.462987909916, + "min_y": 5862.915859761957, + "max_x": 1788.1225741445505, + "max_y": 5865.155622462744, + "center": [ + 1767.292781027233, + 5864.0357411123505 + ] + }, + "raw_value": "P - 10107 - 500A - F1 A - H 100", + "clean_value": "P - 10107 - 500A - F1 A - H 100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABE8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5869.531254295882, + "max_x": 1767.7162109438063, + "max_y": 5872.517604563597, + "center": [ + 1750.6940144178266, + 5871.024429429739 + ] + }, + "raw_value": "%%UPIPE LINE NUMBER", + "clean_value": "PIPE LINE NUMBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EABE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.559979402434, + "min_y": 5858.95528307439, + "max_x": 1760.9196234536141, + "max_y": 5860.821751991712, + "center": [ + 1759.239801428024, + 5859.888517533051 + ] + }, + "raw_value": "(2)", + "clean_value": "(2)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABEA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1772.877392993122, + "min_y": 5858.95528307439, + "max_x": 1776.237037044302, + "max_y": 5860.821751991712, + "center": [ + 1774.557215018712, + 5859.888517533051 + ] + }, + "raw_value": "(3)", + "clean_value": "(3)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABEB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1790.724520619282, + "min_y": 5858.95528307439, + "max_x": 1794.084164670462, + "max_y": 5860.821751991712, + "center": [ + 1792.404342644872, + 5859.888517533051 + ] + }, + "raw_value": "(5)", + "clean_value": "(5)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABEC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1785.752165916711, + "min_y": 5858.95528307439, + "max_x": 1789.111809967891, + "max_y": 5860.821751991712, + "center": [ + 1787.431987942301, + 5859.888517533051 + ] + }, + "raw_value": "(4)", + "clean_value": "(4)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5652.520990027204, + "max_x": 1745.2569742452931, + "max_y": 5654.760752727991, + "center": [ + 1744.585045435057, + 5653.640871377597 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABEE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5647.92530386418, + "max_x": 1745.2569742452931, + "max_y": 5650.165066564967, + "center": [ + 1744.585045435057, + 5649.045185214573 + ] + }, + "raw_value": "P", + "clean_value": "P", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABEF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5643.840285090687, + "max_x": 1745.2569742452931, + "max_y": 5646.080047791474, + "center": [ + 1744.585045435057, + 5644.96016644108 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5639.282110842805, + "max_x": 1745.2569742452931, + "max_y": 5641.521873543592, + "center": [ + 1744.585045435057, + 5640.401992193199 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5830.452070692198, + "max_x": 1768.6987965989806, + "max_y": 5832.691833392984, + "center": [ + 1755.9321492044958, + 5831.571952042591 + ] + }, + "raw_value": "(6) INSULATION CODE", + "clean_value": "(6) INSULATION CODE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5843.999451920975, + "max_x": 1760.635650876148, + "max_y": 5846.239214621762, + "center": [ + 1751.9005763430796, + 5845.119333271368 + ] + }, + "raw_value": "(3) LINE SIZE", + "clean_value": "(3) LINE SIZE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5839.167585283111, + "max_x": 1767.3549389785085, + "max_y": 5841.407347983898, + "center": [ + 1755.2602203942597, + 5840.287466633505 + ] + }, + "raw_value": "(4) MATERIAL SPEC.", + "clean_value": "(4) MATERIAL SPEC.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5852.574170588159, + "max_x": 1772.7303694603968, + "max_y": 5854.813933288946, + "center": [ + 1757.947935635204, + 5853.694051938553 + ] + }, + "raw_value": "(1) FLUID SERVICE NAME", + "clean_value": "(1) FLUID SERVICE NAME", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5848.402747635205, + "max_x": 1772.7303694603968, + "max_y": 5850.642510335992, + "center": [ + 1757.947935635204, + 5849.522628985598 + ] + }, + "raw_value": "(2) LINE SERIAL NUMBER", + "clean_value": "(2) LINE SERIAL NUMBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5634.653361217736, + "max_x": 1745.2569742452931, + "max_y": 5636.893123918523, + "center": [ + 1744.585045435057, + 5635.77324256813 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5630.2727784041, + "max_x": 1745.2569742452931, + "max_y": 5632.512541104887, + "center": [ + 1744.585045435057, + 5631.392659754493 + ] + }, + "raw_value": "N", + "clean_value": "N", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1805.830564387671, + "min_y": 5858.95528307439, + "max_x": 1809.1902084388512, + "max_y": 5860.821751991712, + "center": [ + 1807.5103864132611, + 5859.888517533051 + ] + }, + "raw_value": "(7)", + "clean_value": "(7)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABF9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5826.106782287318, + "max_x": 1775.418084701341, + "max_y": 5828.346544988105, + "center": [ + 1759.291793255676, + 5827.226663637712 + ] + }, + "raw_value": "(7) INSULATION THICKNESS", + "clean_value": "(7) INSULATION THICKNESS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1745.64742792516, + "min_y": 5858.95528307439, + "max_x": 1749.00707197634, + "max_y": 5860.821751991712, + "center": [ + 1747.32724995075, + 5859.888517533051 + ] + }, + "raw_value": "(1)", + "clean_value": "(1)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.270965040896, + "min_y": 5861.973277291813, + "max_x": 1749.312431282798, + "max_y": 5861.973277291813, + "center": [ + 1747.2916981618469, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.270965040896, + 5861.973277291813 + ], + [ + 1749.312431282798, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1754.155733692213, + "min_y": 5861.973277291813, + "max_x": 1764.608283475046, + "max_y": 5861.973277291813, + "center": [ + 1759.3820085836296, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.155733692213, + 5861.973277291813 + ], + [ + 1764.608283475046, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.639172503205, + "min_y": 5861.973277291813, + "max_x": 1780.759671845429, + "max_y": 5861.973277291813, + "center": [ + 1774.699422174317, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.639172503205, + 5861.973277291813 + ], + [ + 1780.759671845429, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.828444163841, + "min_y": 5861.973277291813, + "max_x": 1789.319946031972, + "max_y": 5861.973277291813, + "center": [ + 1787.5741950979063, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.828444163841, + 5861.973277291813 + ], + [ + 1789.319946031972, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EABFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.746260292722, + "min_y": 5861.973277291813, + "max_x": 1794.346839308233, + "max_y": 5861.973277291813, + "center": [ + 1792.5465498004774, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.746260292722, + 5861.973277291813 + ], + [ + 1794.346839308233, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1804.13957924496, + "min_y": 5861.973277291813, + "max_x": 1811.165607892775, + "max_y": 5861.973277291813, + "center": [ + 1807.6525935688674, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1804.13957924496, + 5861.973277291813 + ], + [ + 1811.165607892775, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC01", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.913116624821, + "min_y": 5625.892195590465, + "max_x": 1786.9165604799277, + "max_y": 5628.131958291252, + "center": [ + 1765.4148385523745, + 5627.012076940859 + ] + }, + "raw_value": "(BUFFING) BUFFING OR EQUIVALENT", + "clean_value": "(BUFFING) BUFFING OR EQUIVALENT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC02", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5727.701298708899, + "max_x": 1780.2588820682126, + "max_y": 5730.687648976615, + "center": [ + 1756.9653499800297, + 5729.194473842757 + ] + }, + "raw_value": "%%UPIPING CLASS & MATERIAL", + "clean_value": "PIPING CLASS & MATERIAL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC03", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.950673671031, + "min_y": 5721.174930035594, + "max_x": 1761.733107496224, + "max_y": 5723.414692736381, + "center": [ + 1754.3418905836274, + 5722.2948113859875 + ] + }, + "raw_value": "%%uMATERIAL", + "clean_value": "%%uMATERIAL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC05", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5715.698076644885, + "max_x": 1745.4843073597192, + "max_y": 5717.937839345672, + "center": [ + 1744.140449739247, + 5716.817957995278 + ] + }, + "raw_value": "S1", + "clean_value": "S1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC09", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5817.668975810851, + "max_x": 1780.2588820682126, + "max_y": 5820.655326078567, + "center": [ + 1756.9653499800297, + 5819.162150944709 + ] + }, + "raw_value": "%%UFLUID NAME ABBREVIATION", + "clean_value": "FLUID NAME ABBREVIATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC0A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5786.125962649141, + "max_x": 1773.4413529016044, + "max_y": 5788.365725349928, + "center": [ + 1770.081708850424, + 5787.245843999534 + ] + }, + "raw_value": "STEAM", + "clean_value": "STEAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC0B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5790.807066693784, + "max_x": 1781.504498624437, + "max_y": 5793.0468293945705, + "center": [ + 1774.1132817118405, + 5791.926948044177 + ] + }, + "raw_value": "WASTE WATER", + "clean_value": "WASTE WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC0C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5786.125962649141, + "max_x": 1745.7543167458844, + "max_y": 5788.365725349928, + "center": [ + 1744.4104591254122, + 5787.245843999534 + ] + }, + "raw_value": "ST", + "clean_value": "ST", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC0D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5790.807066693784, + "max_x": 1745.7543167458844, + "max_y": 5793.0468293945705, + "center": [ + 1744.4104591254122, + 5791.926948044177 + ] + }, + "raw_value": "WW", + "clean_value": "WW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC0E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5810.837349404884, + "max_x": 1751.1297472277727, + "max_y": 5813.0771121056705, + "center": [ + 1747.0981743663565, + 5811.957230755277 + ] + }, + "raw_value": "P, CHE", + "clean_value": "P, CHE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC0F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5810.905408796208, + "max_x": 1784.192213865381, + "max_y": 5813.145171496994, + "center": [ + 1775.4571393323126, + 5812.025290146601 + ] + }, + "raw_value": "PROCESS FLUID", + "clean_value": "PROCESS FLUID", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC10", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5777.147224446347, + "max_x": 1752.4736048482446, + "max_y": 5779.386987147133, + "center": [ + 1747.7701031765923, + 5778.26710579674 + ] + }, + "raw_value": "IA, AIR", + "clean_value": "IA, AIR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC11", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5777.160749672407, + "max_x": 1785.5360714858532, + "max_y": 5779.400512373194, + "center": [ + 1776.1290681425485, + 5778.280631022801 + ] + }, + "raw_value": "INSTRUMENT AIR", + "clean_value": "INSTRUMENT AIR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC12", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5772.78243403478, + "max_x": 1745.7543167458844, + "max_y": 5775.0221967355665, + "center": [ + 1744.4104591254122, + 5773.902315385173 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC13", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5772.79595926084, + "max_x": 1777.4729257630206, + "max_y": 5775.035721961627, + "center": [ + 1772.0974952811323, + 5773.915840611234 + ] + }, + "raw_value": "NITROGEN", + "clean_value": "NITROGEN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC14", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5806.859653121929, + "max_x": 1793.5992172086856, + "max_y": 5809.099415822716, + "center": [ + 1780.1606410039649, + 5807.9795344723225 + ] + }, + "raw_value": "COOLING WATER SUPPLY", + "clean_value": "COOLING WATER SUPPLY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC15", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5806.671737151097, + "max_x": 1747.0981743663563, + "max_y": 5808.9114998518835, + "center": [ + 1745.082387935648, + 5807.79161850149 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC16", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5768.612646205529, + "max_x": 1757.8490353301331, + "max_y": 5770.852408906316, + "center": [ + 1750.4578184175366, + 5769.732527555922 + ] + }, + "raw_value": "VG, SCR, SC", + "clean_value": "VG, SCR, SC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC17", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5768.626171431588, + "max_x": 1777.4729257630206, + "max_y": 5770.865934132375, + "center": [ + 1772.0974952811323, + 5769.746052781981 + ] + }, + "raw_value": "VENT GAS", + "clean_value": "VENT GAS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC18", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5781.444858604495, + "max_x": 1788.2237867267972, + "max_y": 5783.684621305281, + "center": [ + 1777.4729257630206, + 5782.564739954888 + ] + }, + "raw_value": "STEAM CONDENSATE", + "clean_value": "STEAM CONDENSATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC19", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5781.444858604495, + "max_x": 1745.7543167458844, + "max_y": 5783.684621305281, + "center": [ + 1744.4104591254122, + 5782.564739954888 + ] + }, + "raw_value": "CD", + "clean_value": "CD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC1B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5764.382317301159, + "max_x": 1747.0981743663563, + "max_y": 5766.6220800019455, + "center": [ + 1745.082387935648, + 5765.502198651552 + ] + }, + "raw_value": "DIW", + "clean_value": "DIW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC1C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5802.793500360268, + "max_x": 1747.0981743663563, + "max_y": 5805.033263061055, + "center": [ + 1745.082387935648, + 5803.913381710661 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC1D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5802.662570751921, + "max_x": 1793.5992172086856, + "max_y": 5804.902333452707, + "center": [ + 1780.1606410039649, + 5803.782452102314 + ] + }, + "raw_value": "COOLING WATER RETURN", + "clean_value": "COOLING WATER RETURN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC1E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5760.206295310987, + "max_x": 1780.1606410039649, + "max_y": 5762.446058011774, + "center": [ + 1773.4413529016044, + 5761.3261766613805 + ] + }, + "raw_value": "SOFT WATER", + "clean_value": "SOFT WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC1F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5760.206295310987, + "max_x": 1745.7543167458844, + "max_y": 5762.446058011774, + "center": [ + 1744.4104591254122, + 5761.3261766613805 + ] + }, + "raw_value": "SW", + "clean_value": "SW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC20", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5756.228599028031, + "max_x": 1793.5992172086856, + "max_y": 5758.468361728817, + "center": [ + 1780.1606410039649, + 5757.348480378424 + ] + }, + "raw_value": "CHILLER WATER SUPPLY", + "clean_value": "CHILLER WATER SUPPLY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC21", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5756.040683057199, + "max_x": 1747.0981743663563, + "max_y": 5758.280445757986, + "center": [ + 1745.082387935648, + 5757.160564407593 + ] + }, + "raw_value": "CHS", + "clean_value": "CHS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC22", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5752.16244626637, + "max_x": 1747.0981743663563, + "max_y": 5754.402208967157, + "center": [ + 1745.082387935648, + 5753.282327616764 + ] + }, + "raw_value": "CHR", + "clean_value": "CHR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC23", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5752.031516658025, + "max_x": 1793.5992172086856, + "max_y": 5754.271279358812, + "center": [ + 1780.1606410039649, + 5753.151398008418 + ] + }, + "raw_value": "CHILLER WATER RETURN", + "clean_value": "CHILLER WATER RETURN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC24", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5616.98304752601, + "max_x": 1803.5524141563953, + "max_y": 5619.969397793725, + "center": [ + 1768.6121160241212, + 5618.476222659867 + ] + }, + "raw_value": "%%UABBREVIATIONS IDENTIFIED WITH VALVES", + "clean_value": "ABBREVIATIONS IDENTIFIED WITH VALVES", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC25", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5589.008168775376, + "max_x": 1772.1896174565181, + "max_y": 5591.247931476163, + "center": [ + 1764.7984005439216, + 5590.12805012577 + ] + }, + "raw_value": "NOMAL CLOSE", + "clean_value": "NOMAL CLOSE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC26", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5597.640852307266, + "max_x": 1746.7112745771653, + "max_y": 5599.880615008053, + "center": [ + 1745.3674169566932, + 5598.760733657659 + ] + }, + "raw_value": "FS", + "clean_value": "FS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC27", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5589.153177603595, + "max_x": 1746.7112745771653, + "max_y": 5591.392940304382, + "center": [ + 1745.3674169566932, + 5590.273058953989 + ] + }, + "raw_value": "NC", + "clean_value": "NC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC28", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5584.639838068401, + "max_x": 1746.7112745771653, + "max_y": 5586.879600769188, + "center": [ + 1745.3674169566932, + 5585.759719418795 + ] + }, + "raw_value": "NO", + "clean_value": "NO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5593.296343868993, + "max_x": 1746.7112745771653, + "max_y": 5595.53610656978, + "center": [ + 1745.3674169566932, + 5594.416225219386 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.394950699672, + "min_y": 5608.605893770931, + "max_x": 1750.4580964225047, + "max_y": 5610.845656471718, + "center": [ + 1746.4265235610883, + 5609.725775121325 + ] + }, + "raw_value": "%%uABB", + "clean_value": "%%uABB", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.023559336221, + "min_y": 5602.356180857973, + "max_x": 1746.7112745771653, + "max_y": 5604.59594355876, + "center": [ + 1745.3674169566932, + 5603.476062208367 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5597.495843479048, + "max_x": 1769.5019022155739, + "max_y": 5599.735606179835, + "center": [ + 1763.4545429234495, + 5598.615724829441 + ] + }, + "raw_value": "FAIL STAY", + "clean_value": "FAIL STAY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5584.518466604793, + "max_x": 1770.845759836046, + "max_y": 5586.758229305579, + "center": [ + 1764.1264717336855, + 5585.638347955186 + ] + }, + "raw_value": "NOMAL OPEN", + "clean_value": "NOMAL OPEN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5593.151335040775, + "max_x": 1769.5019022155739, + "max_y": 5595.391097741562, + "center": [ + 1763.4545429234495, + 5594.271216391168 + ] + }, + "raw_value": "FAIL OPEN", + "clean_value": "FAIL OPEN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC2F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1756.555208221364, + "min_y": 5608.532213935776, + "max_x": 1775.3692149079732, + "max_y": 5610.771976636563, + "center": [ + 1765.9622115646685, + 5609.652095286169 + ] + }, + "raw_value": "%%uDESCRIPTION", + "clean_value": "%%uDESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC30", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1757.407183631325, + "min_y": 5602.211172029754, + "max_x": 1770.845759836046, + "max_y": 5604.450934730541, + "center": [ + 1764.1264717336855, + 5603.331053380148 + ] + }, + "raw_value": "FAIL CLOSE", + "clean_value": "FAIL CLOSE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC31", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1835.299511197001, + "min_y": 5841.159008554998, + "max_x": 1858.1450907450264, + "max_y": 5843.398771255785, + "center": [ + 1846.7223009710137, + 5842.278889905391 + ] + }, + "raw_value": "(2) SERIAL NUMBER", + "clean_value": "(2) SERIAL NUMBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC32", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1835.299511197001, + "min_y": 5847.312096326302, + "max_x": 1874.2713821906914, + "max_y": 5849.5518590270885, + "center": [ + 1854.785446693846, + 5848.431977676695 + ] + }, + "raw_value": "(1) INSTRUMENT IDENTIFICATION", + "clean_value": "(1) INSTRUMENT IDENTIFICATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC33", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5869.531254295882, + "max_x": 1873.1343753941724, + "max_y": 5872.517604563597, + "center": [ + 1844.4654128241013, + 5871.024429429739 + ] + }, + "raw_value": "%%uINSTRUMENT NUMBER DESIGNATION", + "clean_value": "%%uINSTRUMENT NUMBER DESIGNATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC34", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5753.798997694193, + "max_x": 1847.7486931475398, + "max_y": 5756.038760394979, + "center": [ + 1841.0294050451794, + 5754.918879044586 + ] + }, + "raw_value": "MAN, MOTOR", + "clean_value": "MAN, MOTOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC35", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5747.662222541517, + "max_x": 1855.8118388703722, + "max_y": 5749.901985242303, + "center": [ + 1845.0609779065956, + 5748.78210389191 + ] + }, + "raw_value": "PRESSURE, VACUUM", + "clean_value": "PRESSURE, VACUUM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC36", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5774.466537029002, + "max_x": 1859.8434117317886, + "max_y": 5776.706299729789, + "center": [ + 1847.0767643373038, + 5775.586418379396 + ] + }, + "raw_value": "CURRENT(ELECTRICAL)", + "clean_value": "CURRENT(ELECTRICAL)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC37", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5780.081651906321, + "max_x": 1882.688991279814, + "max_y": 5782.321414607108, + "center": [ + 1858.4995541113165, + 5781.201533256714 + ] + }, + "raw_value": "HAND, HAND-CONTROLLED SHUT-OFF VALVE", + "clean_value": "HAND, HAND-CONTROLLED SHUT-OFF VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC38", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5790.473932879405, + "max_x": 1846.4048355270677, + "max_y": 5792.713695580192, + "center": [ + 1840.3574762349433, + 5791.593814229798 + ] + }, + "raw_value": "FLOW RATE", + "clean_value": "FLOW RATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC39", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5796.252097447203, + "max_x": 1867.906557454621, + "max_y": 5798.491860147989, + "center": [ + 1851.10833719872, + 5797.371978797596 + ] + }, + "raw_value": "VOLTAGE(EMF), HEAT ENERGY", + "clean_value": "VOLTAGE(EMF), HEAT ENERGY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC3A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5810.372026715231, + "max_x": 1857.1556964908443, + "max_y": 5812.611789416018, + "center": [ + 1845.7329067168316, + 5811.491908065625 + ] + }, + "raw_value": "BURNER COMBUSTION", + "clean_value": "BURNER COMBUSTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC3B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1845.991097198375, + "min_y": 5822.019645484361, + "max_x": 1862.11738864404, + "max_y": 5824.259408185148, + "center": [ + 1854.0542429212073, + 5823.139526834754 + ] + }, + "raw_value": "FIRST LETTER", + "clean_value": "FIRST LETTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC3C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5830.772357552959, + "max_x": 1876.7179957154312, + "max_y": 5833.758707820674, + "center": [ + 1846.2572229847306, + 5832.265532686817 + ] + }, + "raw_value": "%%UINSTRUMENT IDENTIFICATION TABLE", + "clean_value": "INSTRUMENT IDENTIFICATION TABLE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5819.729059206555, + "max_x": 1923.810165090705, + "max_y": 5819.729059206555, + "center": [ + 1872.8100011422844, + 5819.729059206555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.810165090705, + 5819.729059206555 + ], + [ + 1821.809837193864, + 5819.729059206555 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC3E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5826.518418498335, + "max_x": 1923.810165090705, + "max_y": 5826.518418498335, + "center": [ + 1872.8100011422844, + 5826.518418498335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.810165090705, + 5826.518418498335 + ], + [ + 1821.809837193864, + 5826.518418498335 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC3F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5741.638858077767, + "max_x": 1827.4677964212112, + "max_y": 5743.878620778553, + "center": [ + 1826.7958676109752, + 5742.75873942816 + ] + }, + "raw_value": "Q", + "clean_value": "Q", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC40", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5747.662221834495, + "max_x": 1827.4677964212112, + "max_y": 5749.901984535281, + "center": [ + 1826.7958676109752, + 5748.782103184888 + ] + }, + "raw_value": "P", + "clean_value": "P", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC41", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5753.798996987171, + "max_x": 1827.4677964212112, + "max_y": 5756.038759687958, + "center": [ + 1826.7958676109752, + 5754.918878337565 + ] + }, + "raw_value": "M", + "clean_value": "M", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC42", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5758.875272637188, + "max_x": 1827.4677964212112, + "max_y": 5761.115035337974, + "center": [ + 1826.7958676109752, + 5759.995153987581 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC43", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5763.668632346167, + "max_x": 1827.4677964212112, + "max_y": 5765.908395046954, + "center": [ + 1826.7958676109752, + 5764.788513696561 + ] + }, + "raw_value": "K", + "clean_value": "K", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC44", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5741.638858784789, + "max_x": 1854.4679812499003, + "max_y": 5743.878621485575, + "center": [ + 1844.3890490963595, + 5742.758740135182 + ] + }, + "raw_value": "QUANTITY, EVENT", + "clean_value": "QUANTITY, EVENT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC45", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5763.668633053189, + "max_x": 1839.6855474247072, + "max_y": 5765.908395753976, + "center": [ + 1836.997832183763, + 5764.788514403583 + ] + }, + "raw_value": "TIME", + "clean_value": "TIME", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC46", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5758.87527334421, + "max_x": 1841.0294050451794, + "max_y": 5761.1150360449965, + "center": [ + 1837.6697609939993, + 5759.995154694603 + ] + }, + "raw_value": "LEVEL", + "clean_value": "LEVEL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC47", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5768.824431617961, + "max_x": 1827.4677964212112, + "max_y": 5771.0641943187475, + "center": [ + 1826.7958676109752, + 5769.944312968354 + ] + }, + "raw_value": "J", + "clean_value": "J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC48", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.406961812178, + "min_y": 5774.46653632198, + "max_x": 1827.7508194326501, + "max_y": 5776.706299022767, + "center": [ + 1827.078890622414, + 5775.5864176723735 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC49", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5780.081651199299, + "max_x": 1827.4677964212112, + "max_y": 5782.321413900086, + "center": [ + 1826.7958676109752, + 5781.201532549692 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5785.408453442874, + "max_x": 1827.4677964212112, + "max_y": 5787.648216143661, + "center": [ + 1826.7958676109752, + 5786.528334793267 + ] + }, + "raw_value": "G", + "clean_value": "G", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5801.01846662246, + "max_x": 1827.4677964212112, + "max_y": 5803.258229323247, + "center": [ + 1826.7958676109752, + 5802.138347972854 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5790.473932172384, + "max_x": 1827.4677964212112, + "max_y": 5792.71369487317, + "center": [ + 1826.7958676109752, + 5791.593813522777 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5796.252096740181, + "max_x": 1827.4677964212112, + "max_y": 5798.491859440967, + "center": [ + 1826.7958676109752, + 5797.371978090574 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5805.937090688747, + "max_x": 1827.4677964212112, + "max_y": 5808.176853389534, + "center": [ + 1826.7958676109752, + 5807.05697203914 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC4F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5810.372026008209, + "max_x": 1827.4677964212112, + "max_y": 5812.611788708996, + "center": [ + 1826.7958676109752, + 5811.4919073586025 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC50", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5768.824432324982, + "max_x": 1853.1241236294281, + "max_y": 5771.064195025769, + "center": [ + 1843.7171202861236, + 5769.944313675375 + ] + }, + "raw_value": "POWER(MW,MVAR)", + "clean_value": "POWER(MW,MVAR)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC51", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5785.408454149894, + "max_x": 1847.7486931475398, + "max_y": 5787.648216850681, + "center": [ + 1841.0294050451794, + 5786.5283355002875 + ] + }, + "raw_value": "GAUGE, GAS", + "clean_value": "GAUGE, GAS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC52", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5801.018467329478, + "max_x": 1843.7171202861234, + "max_y": 5803.258230030265, + "center": [ + 1839.0136186144712, + 5802.138348679871 + ] + }, + "raw_value": "DENSITY", + "clean_value": "DENSITY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC53", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5805.937091395769, + "max_x": 1850.4364083884839, + "max_y": 5808.176854096556, + "center": [ + 1842.3732626656515, + 5807.0569727461625 + ] + }, + "raw_value": "CONDUCTIVITY", + "clean_value": "CONDUCTIVITY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC54", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1822.850800961426, + "min_y": 5822.019645484361, + "max_x": 1830.9139466842587, + "max_y": 5824.259408185148, + "center": [ + 1826.8823738228425, + 5823.139526834754 + ] + }, + "raw_value": "LETTER", + "clean_value": "LETTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC55", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5814.925592412234, + "max_x": 1827.4677964212112, + "max_y": 5817.165355113021, + "center": [ + 1826.7958676109752, + 5816.045473762628 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC56", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5814.925593119256, + "max_x": 1853.1241236294281, + "max_y": 5817.165355820042, + "center": [ + 1843.7171202861236, + 5816.045474469649 + ] + }, + "raw_value": "ANALYSIS, AUTO", + "clean_value": "ANALYSIS, AUTO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC57", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5763.668633053189, + "max_x": 1905.3067604769044, + "max_y": 5765.908395753976, + "center": [ + 1895.2278283233636, + 5764.788514403583 + ] + }, + "raw_value": "CONTROL STATION", + "clean_value": "CONTROL STATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC58", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5747.662222541517, + "max_x": 1914.713763820209, + "max_y": 5749.901985242303, + "center": [ + 1899.9313299950159, + 5748.78210389191 + ] + }, + "raw_value": "POINT(TEST) CONNECTION", + "clean_value": "POINT(TEST) CONNECTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC59", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5741.638858784789, + "max_x": 1897.2436147540718, + "max_y": 5743.878621485575, + "center": [ + 1891.1962554619474, + 5742.758740135182 + ] + }, + "raw_value": "TOTALIZER", + "clean_value": "TOTALIZER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5758.87527334421, + "max_x": 1906.6506180973763, + "max_y": 5761.1150360449965, + "center": [ + 1895.8997571335997, + 5759.995154694603 + ] + }, + "raw_value": "LOW, PILOT LIGHT", + "clean_value": "LOW, PILOT LIGHT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5753.798997694193, + "max_x": 1903.9629028564323, + "max_y": 5756.038760394979, + "center": [ + 1894.5558995131278, + 5754.918879044586 + ] + }, + "raw_value": "MOTOR OPERATOR", + "clean_value": "MOTOR OPERATOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5774.466537029002, + "max_x": 1897.2436147540718, + "max_y": 5776.706299729789, + "center": [ + 1891.1962554619474, + 5775.586418379396 + ] + }, + "raw_value": "INDICATOR", + "clean_value": "INDICATOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5796.252097447203, + "max_x": 1916.057621440681, + "max_y": 5798.491860147989, + "center": [ + 1900.6032588052522, + 5797.371978797596 + ] + }, + "raw_value": "PRIMARY ELEMENT,ELEMENT", + "clean_value": "PRIMARY ELEMENT,ELEMENT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5801.018467329478, + "max_x": 1914.713763820209, + "max_y": 5803.258230030265, + "center": [ + 1899.9313299950159, + 5802.138348679871 + ] + }, + "raw_value": "DIFFERENTIAL, DETECTOR", + "clean_value": "DIFFERENTIAL, DETECTOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC5F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5805.937091395769, + "max_x": 1894.5558995131275, + "max_y": 5808.176854096556, + "center": [ + 1889.8523978414753, + 5807.0569727461625 + ] + }, + "raw_value": "CONTROL", + "clean_value": "CONTROL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5810.372026715231, + "max_x": 1895.8997571335997, + "max_y": 5812.611789416018, + "center": [ + 1890.5243266517114, + 5811.491908065625 + ] + }, + "raw_value": "BISTABLE", + "clean_value": "BISTABLE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1885.902846207793, + "min_y": 5770.177546436492, + "max_x": 1888.241744599866, + "max_y": 5770.177546436492, + "center": [ + 1887.0722954038295, + 5770.177546436492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.902846207793, + 5770.177546436492 + ], + [ + 1888.241744599866, + 5770.177546436492 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC62", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5780.081651906321, + "max_x": 1898.587472374544, + "max_y": 5782.321414607108, + "center": [ + 1891.8681842721835, + 5781.201533256714 + ] + }, + "raw_value": "HIGH, HOLE", + "clean_value": "HIGH, HOLE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5785.408454149894, + "max_x": 1901.275187615488, + "max_y": 5787.648216850681, + "center": [ + 1893.2120418926556, + 5786.5283355002875 + ] + }, + "raw_value": "GAUGE, GLASS", + "clean_value": "GAUGE, GLASS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC64", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5790.473932879405, + "max_x": 1891.8681842721835, + "max_y": 5792.713695580192, + "center": [ + 1888.5085402210034, + 5791.593814229798 + ] + }, + "raw_value": "RATIO", + "clean_value": "RATIO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC65", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1886.776698178215, + "min_y": 5822.019645484361, + "max_x": 1910.9661353467125, + "max_y": 5824.259408185148, + "center": [ + 1898.8714167624637, + 5823.139526834754 + ] + }, + "raw_value": "SUCCEEDING LETTERS", + "clean_value": "SUCCEEDING LETTERS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5814.925593119256, + "max_x": 1891.8681842721835, + "max_y": 5817.165355820042, + "center": [ + 1888.5085402210034, + 5816.045474469649 + ] + }, + "raw_value": "ALARM", + "clean_value": "ALARM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5724.353798588584, + "max_x": 1857.1556964908443, + "max_y": 5726.593561289371, + "center": [ + 1845.7329067168316, + 5725.4736799389775 + ] + }, + "raw_value": "TEMPERATURE, TEST", + "clean_value": "TEMPERATURE, TEST", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5735.884785256837, + "max_x": 1865.218842213677, + "max_y": 5738.124547957624, + "center": [ + 1849.764479578248, + 5737.00466660723 + ] + }, + "raw_value": "RADIOACTIVITY, RESTRICT", + "clean_value": "RADIOACTIVITY, RESTRICT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC69", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5730.212862641377, + "max_x": 1855.8118388703722, + "max_y": 5732.452625342164, + "center": [ + 1845.0609779065956, + 5731.33274399177 + ] + }, + "raw_value": "SIGHT, FREQUENCY", + "clean_value": "SIGHT, FREQUENCY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.147693463671, + "min_y": 5730.212861934359, + "max_x": 1827.491551084143, + "max_y": 5732.452624635146, + "center": [ + 1826.819622273907, + 5731.332743284753 + ] + }, + "raw_value": "S", + "clean_value": "S", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5707.384773326767, + "max_x": 1827.4677964212112, + "max_y": 5709.624536027553, + "center": [ + 1826.7958676109752, + 5708.50465467716 + ] + }, + "raw_value": "W", + "clean_value": "W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5688.534462261772, + "max_x": 1827.4677964212112, + "max_y": 5690.774224962559, + "center": [ + 1826.7958676109752, + 5689.654343612166 + ] + }, + "raw_value": "Z", + "clean_value": "Z", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.147693463671, + "min_y": 5694.617133783546, + "max_x": 1827.491551084143, + "max_y": 5696.8568964843325, + "center": [ + 1826.819622273907, + 5695.737015133939 + ] + }, + "raw_value": "Y", + "clean_value": "Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5701.407093036858, + "max_x": 1827.4677964212112, + "max_y": 5703.646855737645, + "center": [ + 1826.7958676109752, + 5702.526974387251 + ] + }, + "raw_value": "X", + "clean_value": "X", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5719.326509608356, + "max_x": 1827.4677964212112, + "max_y": 5721.566272309143, + "center": [ + 1826.7958676109752, + 5720.446390958749 + ] + }, + "raw_value": "U", + "clean_value": "U", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC70", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5713.184530321537, + "max_x": 1827.4677964212112, + "max_y": 5715.424293022324, + "center": [ + 1826.7958676109752, + 5714.30441167193 + ] + }, + "raw_value": "V", + "clean_value": "V", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC71", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5724.353797881561, + "max_x": 1827.4677964212112, + "max_y": 5726.593560582348, + "center": [ + 1826.7958676109752, + 5725.4736792319545 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC72", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5707.384774033789, + "max_x": 1851.780266008956, + "max_y": 5709.6245367345755, + "center": [ + 1843.0451914758873, + 5708.504655384182 + ] + }, + "raw_value": "WEIGHT, FORCE", + "clean_value": "WEIGHT, FORCE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC73", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5701.407093743879, + "max_x": 1842.3732626656515, + "max_y": 5703.646856444666, + "center": [ + 1838.341689804235, + 5702.5269750942725 + ] + }, + "raw_value": "ON-OFF", + "clean_value": "ON-OFF", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC74", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5694.617134490567, + "max_x": 1846.4048355270677, + "max_y": 5696.856897191354, + "center": [ + 1840.3574762349433, + 5695.73701584096 + ] + }, + "raw_value": "VIBRATION", + "clean_value": "VIBRATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC75", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5688.534462968794, + "max_x": 1854.4679812499003, + "max_y": 5690.774225669581, + "center": [ + 1844.3890490963595, + 5689.654344319188 + ] + }, + "raw_value": "POSITION, LIMIT", + "clean_value": "POSITION, LIMIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC76", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5719.326510315377, + "max_x": 1850.4364083884839, + "max_y": 5721.566273016164, + "center": [ + 1842.3732626656515, + 5720.4463916657705 + ] + }, + "raw_value": "POWER FACTOR", + "clean_value": "POWER FACTOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC77", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1834.310116942819, + "min_y": 5713.184531028559, + "max_x": 1846.4048355270677, + "max_y": 5715.424293729346, + "center": [ + 1840.3574762349433, + 5714.304412378952 + ] + }, + "raw_value": "VISCOSITY", + "clean_value": "VISCOSITY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC78", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1826.123938800739, + "min_y": 5735.884784549814, + "max_x": 1827.4677964212112, + "max_y": 5738.124547250601, + "center": [ + 1826.7958676109752, + 5737.004665900207 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC79", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5730.212862641377, + "max_x": 1893.2120418926556, + "max_y": 5732.452625342164, + "center": [ + 1889.1804690312392, + 5731.33274399177 + ] + }, + "raw_value": "SWITCH", + "clean_value": "SWITCH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1884.630359472802, + "min_y": 5719.326510315377, + "max_x": 1902.100508538939, + "max_y": 5721.566273016164, + "center": [ + 1893.3654340058706, + 5720.4463916657705 + ] + }, + "raw_value": "MULTIFUNCTION", + "clean_value": "MULTIFUNCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5713.184531028559, + "max_x": 1902.6190452359601, + "max_y": 5715.424293729346, + "center": [ + 1893.8839707028915, + 5714.304412378952 + ] + }, + "raw_value": "VALVE, DAMPER", + "clean_value": "VALVE, DAMPER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5701.407093743879, + "max_x": 1899.931329995016, + "max_y": 5703.646856444666, + "center": [ + 1892.5401130824196, + 5702.5269750942725 + ] + }, + "raw_value": "PUSH BUTTON", + "clean_value": "PUSH BUTTON", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5694.617134490567, + "max_x": 1903.9629028564323, + "max_y": 5696.856897191354, + "center": [ + 1894.5558995131278, + 5695.73701584096 + ] + }, + "raw_value": "RELAY, COMPUTE", + "clean_value": "RELAY, COMPUTE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5688.656235348473, + "max_x": 1910.6821909587927, + "max_y": 5690.89599804926, + "center": [ + 1897.9155435643079, + 5689.776116698867 + ] + }, + "raw_value": "DRIVE, INTERLOCKING", + "clean_value": "DRIVE, INTERLOCKING", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC7F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5724.475570968263, + "max_x": 1899.931329995016, + "max_y": 5726.71533366905, + "center": [ + 1892.5401130824196, + 5725.5954523186565 + ] + }, + "raw_value": "TRANSMITTER", + "clean_value": "TRANSMITTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC80", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5707.384774033789, + "max_x": 1890.5243266517114, + "max_y": 5709.6245367345755, + "center": [ + 1887.836611410767, + 5708.504655384182 + ] + }, + "raw_value": "WELL", + "clean_value": "WELL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC81", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.148896169823, + "min_y": 5735.884785256837, + "max_x": 1912.0260485792646, + "max_y": 5738.124547957624, + "center": [ + 1898.5874723745437, + 5737.00466660723 + ] + }, + "raw_value": "RECORD, PRINT, TRENT", + "clean_value": "RECORD, PRINT, TRENT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.267205264454, + "min_y": 5684.72630581239, + "max_x": 1833.267205264454, + "max_y": 5826.518418498335, + "center": [ + 1833.267205264454, + 5755.622362155363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.267205264454, + 5684.72630581239 + ], + [ + 1833.267205264454, + 5826.518418498335 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.560429036264, + "min_y": 5684.72630581239, + "max_x": 1883.560429036264, + "max_y": 5826.518418498335, + "center": [ + 1883.560429036264, + 5755.622362155363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.560429036264, + 5684.72630581239 + ], + [ + 1883.560429036264, + 5826.518418498335 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5684.72630581239, + "max_x": 1821.809837193864, + "max_y": 5826.518418498335, + "center": [ + 1821.809837193864, + 5755.622362155363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.809837193864, + 5826.518418498335 + ], + [ + 1821.809837193864, + 5684.72630581239 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1821.809837193864, + "min_y": 5684.72630581239, + "max_x": 1923.810165090705, + "max_y": 5684.72630581239, + "center": [ + 1872.8100011422844, + 5684.72630581239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.809837193864, + 5684.72630581239 + ], + [ + 1923.810165090705, + 5684.72630581239 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.810165090705, + "min_y": 5684.72630581239, + "max_x": 1923.810165090705, + "max_y": 5826.518418498335, + "center": [ + 1923.810165090705, + 5755.622362155363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.810165090705, + 5684.72630581239 + ], + [ + 1923.810165090705, + 5826.518418498335 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC88", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1815.79645025403, + "min_y": 5677.575577541218, + "max_x": 1874.9261855548018, + "max_y": 5680.561927808933, + "center": [ + 1845.361317904416, + 5679.068752675075 + ] + }, + "raw_value": "%%UROTATIONARY EQUIPMENT SYSMBOLS", + "clean_value": "ROTATIONARY EQUIPMENT SYSMBOLS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC89", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.4744005956932, + "min_y": 5665.602483563597, + "max_x": 1835.3978041061528, + "max_y": 5671.525887074057, + "center": [ + 1832.436102350923, + 5668.564185318827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.436102350923, + 5668.564185318827 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5663.29962264982, + "max_x": 1830.63928074199, + "max_y": 5666.209804425133, + "center": [ + 1829.8169553326488, + 5664.754713537477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.63928074199, + 5666.209804425133 + ], + [ + 1828.994629923308, + 5663.29962264982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.232923959861, + "min_y": 5663.29962264982, + "max_x": 1835.877574778546, + "max_y": 5666.209804425133, + "center": [ + 1835.0552493692035, + 5664.754713537477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.232923959861, + 5666.209804425133 + ], + [ + 1835.877574778546, + 5663.29962264982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5663.29962264982, + "max_x": 1835.877574778546, + "max_y": 5663.29962264982, + "center": [ + 1832.4361023509268, + 5663.29962264982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.877574778546, + 5663.29962264982 + ], + [ + 1828.994629923308, + 5663.29962264982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1831.778508009234, + "min_y": 5667.906590977138, + "max_x": 1833.093696692612, + "max_y": 5669.221779660516, + "center": [ + 1832.436102350923, + 5668.564185318827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.436102350923, + 5668.564185318827 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.474552251103, + "min_y": 5654.24812398248, + "max_x": 1835.399828148119, + "max_y": 5660.173399879496, + "center": [ + 1832.437190199611, + 5657.210761930988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199611, + 5657.210761930988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5651.944535134878, + "max_x": 1830.639800615756, + "max_y": 5654.855636818014, + "center": [ + 1829.817215269532, + 5653.400085976446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.639800615756, + 5654.855636818014 + ], + [ + 1828.994629923308, + 5651.944535134878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.234579783467, + "min_y": 5651.944535134878, + "max_x": 1835.879750475915, + "max_y": 5654.855636818014, + "center": [ + 1835.057165129691, + 5653.400085976446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.234579783467, + 5654.855636818014 + ], + [ + 1835.879750475915, + 5651.944535134878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.994629923308, + "min_y": 5651.944535134878, + "max_x": 1835.879750475915, + "max_y": 5651.944535134878, + "center": [ + 1832.4371901996115, + 5651.944535134878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.879750475915, + 5651.944535134878 + ], + [ + 1828.994629923308, + 5651.944535134878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.881593067976, + "min_y": 5657.210761930988, + "max_x": 1834.992787331237, + "max_y": 5657.210761930988, + "center": [ + 1832.4371901996064, + 5657.210761930988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.992787331237, + 5657.210761930988 + ], + [ + 1829.881593067976, + 5657.210761930988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.159391633795, + "min_y": 5654.997549893159, + "max_x": 1833.714988765426, + "max_y": 5659.423973968821, + "center": [ + 1832.4371901996105, + 5657.21076193099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.159391633795, + 5659.423973968821 + ], + [ + 1833.714988765426, + 5654.997549893159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.159391633795, + "min_y": 5654.997549893163, + "max_x": 1833.714988765426, + "max_y": 5659.423973968821, + "center": [ + 1832.4371901996105, + 5657.210761930992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.159391633795, + 5654.997549893163 + ], + [ + 1833.714988765426, + 5659.423973968821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAC95", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.279686297775, + "min_y": 5666.762908223258, + "max_x": 1857.40597774344, + "max_y": 5669.002670924045, + "center": [ + 1849.3428320206076, + 5667.882789573651 + ] + }, + "raw_value": "GENERAL PUMP", + "clean_value": "GENERAL PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC96", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5655.35914227329, + "max_x": 1855.916266775894, + "max_y": 5657.5989049740765, + "center": [ + 1848.5250498632975, + 5656.479023623683 + ] + }, + "raw_value": "VACUUM PUMP", + "clean_value": "VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC97", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.772867579966, + "min_y": 5783.170027042101, + "max_x": 1957.8675861642148, + "max_y": 5785.409789742887, + "center": [ + 1951.8202268720904, + 5784.289908392494 + ] + }, + "raw_value": "INTERLOCK", + "clean_value": "INTERLOCK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC98", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1661.667520255043, + "min_y": 5789.632340088289, + "max_x": 1662.037081100672, + "max_y": 5789.632340088289, + "center": [ + 1661.8523006778573, + 5789.632340088289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.667520255043, + 5789.632340088289 + ], + [ + 1662.037081100672, + 5789.632340088289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.542916659724, + "min_y": 5788.815705425284, + "max_x": 1661.852300677857, + "max_y": 5789.632340088289, + "center": [ + 1661.1976086687905, + 5789.224022756787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5789.632340088289 + ], + [ + 1660.542916659724, + 5788.815705425284 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5788.49812527856, + "max_x": 1660.033711763784, + "max_y": 5790.766554898014, + "center": [ + 1660.033711763784, + 5789.632340088287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5790.766554898014 + ], + [ + 1660.033711763784, + 5788.49812527856 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5788.49812527856, + "max_x": 1663.670889591937, + "max_y": 5790.766554898014, + "center": [ + 1663.670889591937, + 5789.632340088287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5790.766554898014 + ], + [ + 1663.670889591937, + 5788.49812527856 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5788.512458737895, + "max_x": 1694.3186157679634, + "max_y": 5790.752221438682, + "center": [ + 1684.2396836144226, + 5789.632340088288 + ] + }, + "raw_value": "BUTTERFLY VALVE", + "clean_value": "BUTTERFLY VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5718.363977864221, + "max_x": 1707.29084451739, + "max_y": 5720.603740565008, + "center": [ + 1690.492624261489, + 5719.483859214614 + ] + }, + "raw_value": "Y-STRAINER, CONE-STRAINER", + "clean_value": "Y-STRAINER, CONE-STRAINER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5760.527817957413, + "max_x": 1691.5806774788512, + "max_y": 5762.7675806582, + "center": [ + 1682.8456029457825, + 5761.647699307807 + ] + }, + "raw_value": "CONTROL VALVE", + "clean_value": "CONTROL VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAC9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.40392334393, + "min_y": 5716.357249045273, + "max_x": 1659.901511078784, + "max_y": 5717.640407652698, + "center": [ + 1659.152717211357, + 5716.998828348986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.40392334393, + 5716.357249045273 + ], + [ + 1659.901511078784, + 5717.640407652698 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.298508613866, + "min_y": 5719.483859214617, + "max_x": 1660.21915389056, + "max_y": 5719.483859214617, + "center": [ + 1657.758831252213, + 5719.483859214617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.298508613866, + 5719.483859214617 + ], + [ + 1660.21915389056, + 5719.483859214617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.441188922867, + "min_y": 5716.998828348986, + "max_x": 1659.152717211357, + "max_y": 5719.483859214617, + "center": [ + 1658.296953067112, + 5718.241343781801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.441188922867, + 5719.483859214617 + ], + [ + 1659.152717211357, + 5716.998828348986 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.298508613866, + "min_y": 5718.349644404888, + "max_x": 1655.298508613866, + "max_y": 5720.618074024341, + "center": [ + 1655.298508613866, + 5719.483859214614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.298508613866, + 5720.618074024341 + ], + [ + 1655.298508613866, + 5718.349644404888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.21915389056, + "min_y": 5718.349644404888, + "max_x": 1660.21915389056, + "max_y": 5720.618074024341, + "center": [ + 1660.21915389056, + 5719.483859214614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.21915389056, + 5720.618074024341 + ], + [ + 1660.21915389056, + 5718.349644404888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.938392669681, + "min_y": 5761.647699307806, + "max_x": 1659.983488715614, + "max_y": 5761.647699307806, + "center": [ + 1657.4609406926475, + 5761.647699307806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5761.647699307806 + ], + [ + 1654.938392669681, + 5761.647699307806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.620666543767, + "min_y": 5761.647699307806, + "max_x": 1668.287294238144, + "max_y": 5761.647699307806, + "center": [ + 1665.9539803909556, + 5761.647699307806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.620666543767, + 5761.647699307806 + ], + [ + 1668.287294238144, + 5761.647699307806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5827.708306001664, + "max_x": 1688.943185286075, + "max_y": 5829.948068702451, + "center": [ + 1681.5519683734785, + 5828.828187352057 + ] + }, + "raw_value": "END CLOSURE", + "clean_value": "END CLOSURE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5833.307712753632, + "max_x": 1688.943185286075, + "max_y": 5835.547475454418, + "center": [ + 1681.5519683734785, + 5834.427594104025 + ] + }, + "raw_value": "END CLOSURE", + "clean_value": "END CLOSURE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5838.907119505599, + "max_x": 1701.0379038703236, + "max_y": 5841.146882206386, + "center": [ + 1687.5993276656027, + 5840.027000855993 + ] + }, + "raw_value": "SLOPE (GRAVITY FLOW)", + "clean_value": "SLOPE (GRAVITY FLOW)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACA9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5777.313645233961, + "max_x": 1688.943185286075, + "max_y": 5779.553407934748, + "center": [ + 1681.5519683734785, + 5778.433526584355 + ] + }, + "raw_value": "CHECK VALVE", + "clean_value": "CHECK VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5794.111865489862, + "max_x": 1687.599327665603, + "max_y": 5796.351628190649, + "center": [ + 1680.8800395632425, + 5795.231746840255 + ] + }, + "raw_value": "BALL VALVE", + "clean_value": "BALL VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5799.71127224183, + "max_x": 1688.943185286075, + "max_y": 5801.951034942616, + "center": [ + 1681.5519683734785, + 5800.831153592223 + ] + }, + "raw_value": "GLOBE VALVE", + "clean_value": "GLOBE VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5805.310678993796, + "max_x": 1707.757191972684, + "max_y": 5807.550441694582, + "center": [ + 1690.958971716783, + 5806.430560344189 + ] + }, + "raw_value": "GATE VALVE, GENERAL VALVE", + "clean_value": "GATE VALVE, GENERAL VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5810.910085745764, + "max_x": 1691.630900527019, + "max_y": 5813.149848446551, + "center": [ + 1682.8958259939504, + 5812.029967096158 + ] + }, + "raw_value": "FLEXIBLE HOSE", + "clean_value": "FLEXIBLE HOSE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.852300677857, + "min_y": 5777.299311774626, + "max_x": 1663.670889591937, + "max_y": 5778.433526584354, + "center": [ + 1662.761595134897, + 5777.866419179491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5778.433526584354 + ], + [ + 1663.670889591937, + 5777.299311774626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.852300677857, + "min_y": 5789.632340088289, + "max_x": 1663.161684695995, + "max_y": 5790.448974751289, + "center": [ + 1662.506992686926, + 5790.04065741979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5789.632340088289 + ], + [ + 1663.161684695995, + 5790.448974751289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5778.433526584354, + "max_x": 1661.852300677857, + "max_y": 5779.567741394079, + "center": [ + 1660.9430062208205, + 5779.000633989217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5778.433526584354 + ], + [ + 1660.033711763784, + 5779.567741394079 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5777.299311774626, + "max_x": 1660.033711763784, + "max_y": 5779.567741394079, + "center": [ + 1660.033711763784, + 5778.433526584353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5779.567741394079 + ], + [ + 1660.033711763784, + 5777.299311774626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5778.433526584354, + "max_x": 1660.033711763784, + "max_y": 5778.433526584354, + "center": [ + 1657.5111637408181, + 5778.433526584354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5778.433526584354 + ], + [ + 1654.988615717852, + 5778.433526584354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5789.632340088289, + "max_x": 1660.033711763784, + "max_y": 5789.632340088289, + "center": [ + 1657.5111637408181, + 5789.632340088289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5789.632340088289 + ], + [ + 1654.988615717852, + 5789.632340088289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5777.299311774626, + "max_x": 1663.670889591937, + "max_y": 5779.567741394079, + "center": [ + 1663.670889591937, + 5778.433526584353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5779.567741394079 + ], + [ + 1663.670889591937, + 5777.299311774626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5778.433526584354, + "max_x": 1668.337517286315, + "max_y": 5778.433526584354, + "center": [ + 1666.004203439126, + 5778.433526584354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5778.433526584354 + ], + [ + 1668.337517286315, + 5778.433526584354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5789.632340088289, + "max_x": 1668.337517286315, + "max_y": 5789.632340088289, + "center": [ + 1666.004203439126, + 5789.632340088289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5789.632340088289 + ], + [ + 1668.337517286315, + 5789.632340088289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5794.109742809439, + "max_x": 1660.033711763784, + "max_y": 5796.378172428892, + "center": [ + 1660.033711763784, + 5795.2439576191655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5796.378172428892 + ], + [ + 1660.033711763784, + 5794.109742809439 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5795.243957619163, + "max_x": 1660.033711763784, + "max_y": 5795.243957619163, + "center": [ + 1657.5111637408181, + 5795.243957619163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5795.243957619163 + ], + [ + 1654.988615717852, + 5795.243957619163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5794.109742809439, + "max_x": 1663.670889591937, + "max_y": 5796.378172428892, + "center": [ + 1663.670889591937, + 5795.2439576191655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5796.378172428892 + ], + [ + 1663.670889591937, + 5794.109742809439 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5795.243957619163, + "max_x": 1668.337517286315, + "max_y": 5795.243957619163, + "center": [ + 1666.004203439126, + 5795.243957619163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5795.243957619163 + ], + [ + 1668.337517286315, + 5795.243957619163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.852300677857, + "min_y": 5800.831153592223, + "max_x": 1663.670889591937, + "max_y": 5801.965368401951, + "center": [ + 1662.761595134897, + 5801.398260997087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5800.831153592223 + ], + [ + 1663.670889591937, + 5801.965368401951 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.852300677857, + "min_y": 5799.696938782497, + "max_x": 1663.670889591937, + "max_y": 5800.831153592223, + "center": [ + 1662.761595134897, + 5800.26404618736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5800.831153592223 + ], + [ + 1663.670889591937, + 5799.696938782497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.943773136096, + "min_y": 5805.296345534465, + "max_x": 1663.762362050175, + "max_y": 5806.43056034419, + "center": [ + 1662.8530675931356, + 5805.8634529393275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.943773136096, + 5806.43056034419 + ], + [ + 1663.762362050175, + 5805.296345534465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.943773136096, + "min_y": 5806.43056034419, + "max_x": 1663.762362050175, + "max_y": 5807.564775153918, + "center": [ + 1662.8530675931356, + 5806.997667749054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.943773136096, + 5806.43056034419 + ], + [ + 1663.762362050175, + 5807.564775153918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717852, + "min_y": 5800.831153592223, + "max_x": 1660.033711763784, + "max_y": 5800.831153592223, + "center": [ + 1657.5111637408181, + 5800.831153592223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5800.831153592223 + ], + [ + 1654.988615717852, + 5800.831153592223 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1661.482739832227, + "min_y": 5800.831153592223, + "max_x": 1662.221861523488, + "max_y": 5800.831153592223, + "center": [ + 1661.8523006778576, + 5800.831153592223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.482739832227, + 5800.831153592223 + ], + [ + 1662.221861523488, + 5800.831153592223 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5800.831153592223, + "max_x": 1661.852300677857, + "max_y": 5801.965368401951, + "center": [ + 1660.9430062208205, + 5801.398260997087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5800.831153592223 + ], + [ + 1660.033711763784, + 5801.965368401951 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5799.696938782497, + "max_x": 1660.033711763784, + "max_y": 5801.965368401951, + "center": [ + 1660.033711763784, + 5800.831153592224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5801.965368401951 + ], + [ + 1660.033711763784, + 5799.696938782497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5799.696938782497, + "max_x": 1661.852300677857, + "max_y": 5800.831153592223, + "center": [ + 1660.9430062208205, + 5800.26404618736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5800.831153592223 + ], + [ + 1660.033711763784, + 5799.696938782497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.080088176089, + "min_y": 5806.43056034419, + "max_x": 1660.125184222023, + "max_y": 5806.43056034419, + "center": [ + 1657.6026361990562, + 5806.43056034419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.125184222023, + 5806.43056034419 + ], + [ + 1655.080088176089, + 5806.43056034419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.125184222023, + "min_y": 5805.296345534465, + "max_x": 1661.943773136096, + "max_y": 5806.43056034419, + "center": [ + 1661.0344786790597, + 5805.8634529393275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.943773136096, + 5806.43056034419 + ], + [ + 1660.125184222023, + 5805.296345534465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.125184222023, + "min_y": 5805.296345534465, + "max_x": 1660.125184222023, + "max_y": 5807.564775153918, + "center": [ + 1660.125184222023, + 5806.430560344192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.125184222023, + 5807.564775153918 + ], + [ + 1660.125184222023, + 5805.296345534465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.125184222023, + "min_y": 5806.43056034419, + "max_x": 1661.943773136096, + "max_y": 5807.564775153918, + "center": [ + 1661.0344786790597, + 5806.997667749054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.943773136096, + 5806.43056034419 + ], + [ + 1660.125184222023, + 5807.564775153918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5800.831153592223, + "max_x": 1668.337517286315, + "max_y": 5800.831153592223, + "center": [ + 1666.004203439126, + 5800.831153592223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5800.831153592223 + ], + [ + 1668.337517286315, + 5800.831153592223 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591937, + "min_y": 5799.696938782497, + "max_x": 1663.670889591937, + "max_y": 5801.965368401951, + "center": [ + 1663.670889591937, + 5800.831153592224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591937, + 5801.965368401951 + ], + [ + 1663.670889591937, + 5799.696938782497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.762362050175, + "min_y": 5806.43056034419, + "max_x": 1668.428989744554, + "max_y": 5806.43056034419, + "center": [ + 1666.0956758973643, + 5806.43056034419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.762362050175, + 5806.43056034419 + ], + [ + 1668.428989744554, + 5806.43056034419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.762362050175, + "min_y": 5805.296345534465, + "max_x": 1663.762362050175, + "max_y": 5807.564775153918, + "center": [ + 1663.762362050175, + 5806.430560344192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.762362050175, + 5807.564775153918 + ], + [ + 1663.762362050175, + 5805.296345534465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5822.108899249697, + "max_x": 1683.5677548041865, + "max_y": 5824.348661950484, + "center": [ + 1678.8642531325343, + 5823.22878060009 + ] + }, + "raw_value": "REDUCER", + "clean_value": "REDUCER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5816.50949249773, + "max_x": 1706.4133343522121, + "max_y": 5818.749255198517, + "center": [ + 1690.287042906547, + 5817.629373848124 + ] + }, + "raw_value": "GROUND OR PAVING SURFACE", + "clean_value": "GROUND OR PAVING SURFACE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5850.105933009532, + "max_x": 1688.943185286075, + "max_y": 5852.345695710319, + "center": [ + 1681.5519683734785, + 5851.225814359926 + ] + }, + "raw_value": "HEAT TRACED", + "clean_value": "HEAT TRACED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.040696554105, + "min_y": 5816.868376546693, + "max_x": 1663.278725189677, + "max_y": 5818.390371149554, + "center": [ + 1662.659710871891, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.278725189677, + 5818.390371149554 + ], + [ + 1662.040696554105, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.848106748139, + "min_y": 5816.868376546693, + "max_x": 1664.086135383717, + "max_y": 5818.390371149554, + "center": [ + 1663.467121065928, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.086135383717, + 5818.390371149554 + ], + [ + 1662.848106748139, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.105988144318, + "min_y": 5818.390371149554, + "max_x": 1668.50580517174, + "max_y": 5818.390371149554, + "center": [ + 1661.8058966580288, + 5818.390371149554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.105988144318, + 5818.390371149554 + ], + [ + 1668.50580517174, + 5818.390371149554 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.581415001818, + "min_y": 5816.868376546693, + "max_x": 1656.819443637397, + "max_y": 5818.390371149554, + "center": [ + 1656.2004293196073, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.819443637397, + 5818.390371149554 + ], + [ + 1655.581415001818, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.388825195858, + "min_y": 5816.868376546693, + "max_x": 1657.62685383143, + "max_y": 5818.390371149554, + "center": [ + 1657.007839513644, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.62685383143, + 5818.390371149554 + ], + [ + 1656.388825195858, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.196235389891, + "min_y": 5816.868376546693, + "max_x": 1658.434264025463, + "max_y": 5818.390371149554, + "center": [ + 1657.8152497076771, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.434264025463, + 5818.390371149554 + ], + [ + 1657.196235389891, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.003645583925, + "min_y": 5816.868376546693, + "max_x": 1659.241674219504, + "max_y": 5818.390371149554, + "center": [ + 1658.6226599017145, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.241674219504, + 5818.390371149554 + ], + [ + 1658.003645583925, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.811055777965, + "min_y": 5816.868376546693, + "max_x": 1660.049084413537, + "max_y": 5818.390371149554, + "center": [ + 1659.430070095751, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.049084413537, + 5818.390371149554 + ], + [ + 1658.811055777965, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.618465971998, + "min_y": 5816.868376546693, + "max_x": 1660.85649460757, + "max_y": 5818.390371149554, + "center": [ + 1660.237480289784, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.85649460757, + 5818.390371149554 + ], + [ + 1659.618465971998, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.425876166032, + "min_y": 5816.868376546693, + "max_x": 1661.663904801611, + "max_y": 5818.390371149554, + "center": [ + 1661.0448904838213, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.663904801611, + 5818.390371149554 + ], + [ + 1660.425876166032, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.233286360072, + "min_y": 5816.868376546693, + "max_x": 1662.471314995644, + "max_y": 5818.390371149554, + "center": [ + 1661.852300677858, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.471314995644, + 5818.390371149554 + ], + [ + 1661.233286360072, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.655516942179, + "min_y": 5816.868376546693, + "max_x": 1664.893545577751, + "max_y": 5818.390371149554, + "center": [ + 1664.274531259965, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.893545577751, + 5818.390371149554 + ], + [ + 1663.655516942179, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.462927136212, + "min_y": 5816.868376546693, + "max_x": 1665.700955771784, + "max_y": 5818.390371149554, + "center": [ + 1665.081941453998, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.700955771784, + 5818.390371149554 + ], + [ + 1664.462927136212, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.270337330246, + "min_y": 5816.868376546693, + "max_x": 1666.508365965825, + "max_y": 5818.390371149554, + "center": [ + 1665.8893516480357, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.508365965825, + 5818.390371149554 + ], + [ + 1665.270337330246, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1666.077747524286, + "min_y": 5816.868376546693, + "max_x": 1667.315776159858, + "max_y": 5818.390371149554, + "center": [ + 1666.696761842072, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.315776159858, + 5818.390371149554 + ], + [ + 1666.077747524286, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1666.885157718319, + "min_y": 5816.868376546693, + "max_x": 1668.123186353891, + "max_y": 5818.390371149554, + "center": [ + 1667.504172036105, + 5817.629373848124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.123186353891, + 5818.390371149554 + ], + [ + 1666.885157718319, + 5816.868376546693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.659710378974, + "min_y": 5823.22878060009, + "max_x": 1668.634542857327, + "max_y": 5823.22878060009, + "center": [ + 1665.6471266181507, + 5823.22878060009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.659710378974, + 5823.22878060009 + ], + [ + 1668.634542857327, + 5823.22878060009 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.548274215723, + "min_y": 5828.828187352057, + "max_x": 1668.156327139992, + "max_y": 5828.828187352057, + "center": [ + 1661.8523006778576, + 5828.828187352057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.548274215723, + 5828.828187352057 + ], + [ + 1668.156327139992, + 5828.828187352057 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.180821277005, + "min_y": 5823.22878060009, + "max_x": 1661.044890976741, + "max_y": 5823.22878060009, + "center": [ + 1658.1128561268729, + 5823.22878060009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.180821277005, + 5823.22878060009 + ], + [ + 1661.044890976741, + 5823.22878060009 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.044890976741, + "min_y": 5823.88788207264, + "max_x": 1662.659710378974, + "max_y": 5824.217432808911, + "center": [ + 1661.8523006778576, + 5824.052657440776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.044890976741, + 5824.217432808911 + ], + [ + 1662.659710378974, + 5823.88788207264 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.044890976741, + "min_y": 5822.240128391271, + "max_x": 1662.659710378974, + "max_y": 5822.569679127545, + "center": [ + 1661.8523006778576, + 5822.404903759409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.044890976741, + 5822.240128391271 + ], + [ + 1662.659710378974, + 5822.569679127545 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.659710378974, + "min_y": 5822.569679127545, + "max_x": 1662.659710378974, + "max_y": 5823.88788207264, + "center": [ + 1662.659710378974, + 5823.228780600093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.659710378974, + 5822.569679127545 + ], + [ + 1662.659710378974, + 5823.88788207264 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.044890976741, + "min_y": 5822.240128391271, + "max_x": 1661.044890976741, + "max_y": 5824.217432808911, + "center": [ + 1661.044890976741, + 5823.228780600091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.044890976741, + 5822.240128391271 + ], + [ + 1661.044890976741, + 5824.217432808911 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.156327139992, + "min_y": 5828.004310511375, + "max_x": 1668.948091243143, + "max_y": 5828.004310511375, + "center": [ + 1668.5522091915675, + 5828.004310511375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.156327139992, + 5828.004310511375 + ], + [ + 1668.948091243143, + 5828.004310511375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.156327139992, + "min_y": 5829.652064192743, + "max_x": 1668.948091243143, + "max_y": 5829.652064192743, + "center": [ + 1668.5522091915675, + 5829.652064192743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.156327139992, + 5829.652064192743 + ], + [ + 1668.948091243143, + 5829.652064192743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.156327139992, + "min_y": 5828.004310511375, + "max_x": 1668.156327139992, + "max_y": 5829.652064192743, + "center": [ + 1668.156327139992, + 5828.828187352059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.156327139992, + 5829.652064192743 + ], + [ + 1668.156327139992, + 5828.004310511375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.371813784784, + "min_y": 5834.427594104025, + "max_x": 1668.332787570932, + "max_y": 5834.427594104025, + "center": [ + 1661.852300677858, + 5834.427594104025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.371813784784, + 5834.427594104025 + ], + [ + 1668.332787570932, + 5834.427594104025 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5840.027000855992, + "max_x": 1668.579161468019, + "max_y": 5840.027000855992, + "center": [ + 1661.8523006778576, + 5840.027000855992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.125439887696, + 5840.027000855992 + ], + [ + 1668.579161468019, + 5840.027000855992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.332787570932, + "min_y": 5833.603717263343, + "max_x": 1668.332787570932, + "max_y": 5835.251470944711, + "center": [ + 1668.332787570932, + 5834.427594104027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.332787570932, + 5833.603717263343 + ], + [ + 1668.332787570932, + 5835.251470944711 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.825535365105, + "min_y": 5833.603717263343, + "max_x": 1668.825535365105, + "max_y": 5835.251470944711, + "center": [ + 1668.825535365105, + 5834.427594104027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.825535365105, + 5833.603717263343 + ], + [ + 1668.825535365105, + 5835.251470944711 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5861.304746513467, + "max_x": 1692.9747581474912, + "max_y": 5863.544509214254, + "center": [ + 1683.5677548041867, + 5862.42462786386 + ] + }, + "raw_value": "FLOW DIRECTION", + "clean_value": "FLOW DIRECTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5862.42462786386, + "max_x": 1668.579161468019, + "max_y": 5862.42462786386, + "center": [ + 1661.8523006778576, + 5862.42462786386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.125439887696, + 5862.42462786386 + ], + [ + 1668.579161468019, + 5862.42462786386 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACEF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5667.596023313151, + "max_x": 1687.132980210309, + "max_y": 5669.835786013938, + "center": [ + 1680.4136921079485, + 5668.715904663544 + ] + }, + "raw_value": "STEAM TRAP", + "clean_value": "STEAM TRAP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5688.127181403537, + "max_x": 1701.9154140355017, + "max_y": 5690.366944104324, + "center": [ + 1687.804909020545, + 5689.247062753931 + ] + }, + "raw_value": "PRESSURE SAFETY VALVE", + "clean_value": "PRESSURE SAFETY VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5850.724023109591, + "max_x": 1668.579161468019, + "max_y": 5850.724023109591, + "center": [ + 1661.8523006778576, + 5850.724023109591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.125439887696, + 5850.724023109591 + ], + [ + 1668.579161468019, + 5850.724023109591 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.204542136636, + "min_y": 5689.247062753929, + "max_x": 1667.13083815096, + "max_y": 5689.247062753929, + "center": [ + 1665.1676901437982, + 5689.247062753929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.204542136636, + 5689.247062753929 + ], + [ + 1667.13083815096, + 5689.247062753929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.204542136636, + "min_y": 5688.112847944205, + "max_x": 1663.204542136636, + "max_y": 5690.381277563658, + "center": [ + 1663.204542136636, + 5689.2470627539315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.204542136636, + 5688.112847944205 + ], + [ + 1663.204542136636, + 5690.381277563658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5688.112847944205, + "max_x": 1663.204542136636, + "max_y": 5689.247062753929, + "center": [ + 1662.2952476795995, + 5688.679955349067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5689.247062753929 + ], + [ + 1663.204542136636, + 5688.112847944205 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5687.428473839854, + "max_x": 1662.520168032284, + "max_y": 5689.247062753929, + "center": [ + 1661.9530606274234, + 5688.337768296891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5689.247062753929 + ], + [ + 1662.520168032284, + 5687.428473839854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.251738412835, + "min_y": 5687.428473839854, + "max_x": 1661.385953222563, + "max_y": 5689.247062753929, + "center": [ + 1660.8188458176992, + 5688.337768296891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5689.247062753929 + ], + [ + 1660.251738412835, + 5687.428473839854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.251738412835, + "min_y": 5687.428473839854, + "max_x": 1662.520168032284, + "max_y": 5687.428473839854, + "center": [ + 1661.3859532225595, + 5687.428473839854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.520168032284, + 5687.428473839854 + ], + [ + 1660.251738412835, + 5687.428473839854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5684.804639573856, + "max_x": 1661.385953222563, + "max_y": 5687.428473839854, + "center": [ + 1661.385953222563, + 5686.116556706855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5687.428473839854 + ], + [ + 1661.385953222563, + 5684.804639573856 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.983060759347, + "min_y": 5689.87304102348, + "max_x": 1661.872676418975, + "max_y": 5690.224903897632, + "center": [ + 1661.4278685891609, + 5690.048972460556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.983060759347, + 5689.87304102348 + ], + [ + 1661.872676418975, + 5690.224903897632 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.964526999282, + "min_y": 5690.317499136952, + "max_x": 1661.854142658903, + "max_y": 5690.669362011107, + "center": [ + 1661.4093348290926, + 5690.49343057403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.964526999282, + 5690.317499136952 + ], + [ + 1661.854142658903, + 5690.669362011107 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.945993239209, + "min_y": 5690.761957250428, + "max_x": 1661.835608898839, + "max_y": 5691.113820124581, + "center": [ + 1661.3908010690238, + 5690.937888687505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.945993239209, + 5690.761957250428 + ], + [ + 1661.835608898839, + 5691.113820124581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5689.247062753929, + "max_x": 1663.204542136636, + "max_y": 5690.381277563658, + "center": [ + 1662.2952476795995, + 5689.814170158794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5689.247062753929 + ], + [ + 1663.204542136636, + 5690.381277563658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5689.247062753929, + "max_x": 1661.385953222563, + "max_y": 5691.473134885423, + "center": [ + 1661.385953222563, + 5690.360098819676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5691.473134885423 + ], + [ + 1661.385953222563, + 5689.247062753929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.494956332005, + "min_y": 5855.231311748545, + "max_x": 1667.955534329208, + "max_y": 5855.231311748545, + "center": [ + 1662.2252453306064, + 5855.231311748545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.494956332005, + 5855.231311748545 + ], + [ + 1667.955534329208, + 5855.231311748545 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EACFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.494956332005, + "min_y": 5858.419130475236, + "max_x": 1667.955534329208, + "max_y": 5858.419130475236, + "center": [ + 1662.2252453306064, + 5858.419130475236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.494956332005, + 5858.419130475236 + ], + [ + 1667.955534329208, + 5858.419130475236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.494956332005, + "min_y": 5855.231311748545, + "max_x": 1656.494956332005, + "max_y": 5858.419130475236, + "center": [ + 1656.494956332005, + 5856.825221111891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.494956332005, + 5858.419130475236 + ], + [ + 1656.494956332005, + 5855.231311748545 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1667.955534329208, + "min_y": 5855.231311748545, + "max_x": 1669.948677912327, + "max_y": 5856.825221111892, + "center": [ + 1668.9521061207674, + 5856.028266430218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1669.948677912327, + 5856.825221111892 + ], + [ + 1667.955534329208, + 5855.231311748545 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1667.955534329208, + "min_y": 5856.825221111892, + "max_x": 1669.948677912327, + "max_y": 5858.419130475236, + "center": [ + 1668.9521061207674, + 5857.622175793564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.955534329208, + 5858.419130475236 + ], + [ + 1669.948677912327, + 5856.825221111892 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5794.109742809439, + "max_x": 1661.273324677011, + "max_y": 5794.882862734254, + "center": [ + 1660.6535182203975, + 5794.496302771846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5794.109742809439 + ], + [ + 1661.273324677011, + 5794.882862734254 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.033711763784, + "min_y": 5795.605052504078, + "max_x": 1661.273324677011, + "max_y": 5796.378172428892, + "center": [ + 1660.6535182203975, + 5795.991612466485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763784, + 5796.378172428892 + ], + [ + 1661.273324677011, + 5795.605052504078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD05", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1661.1699497963714, + "min_y": 5794.561606737677, + "max_x": 1662.5346515593428, + "max_y": 5795.926308500649, + "center": [ + 1661.852300677857, + 5795.243957619163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5795.243957619163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.431276678703, + "min_y": 5794.109742809439, + "max_x": 1663.670889591937, + "max_y": 5794.882862734254, + "center": [ + 1663.05108313532, + 5794.496302771846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.431276678703, + 5794.882862734254 + ], + [ + 1663.670889591937, + 5794.109742809439 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.431276678703, + "min_y": 5795.605052504078, + "max_x": 1663.670889591937, + "max_y": 5796.378172428892, + "center": [ + 1663.05108313532, + 5795.991612466485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.431276678703, + 5795.605052504078 + ], + [ + 1663.670889591937, + 5796.378172428892 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD08", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1660.901207690522, + "min_y": 5840.565453579476, + "max_x": 1663.051782166943, + "max_y": 5841.329050958802, + "center": [ + 1661.9764949287323, + 5840.947252269139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.051782166943, + 5840.565453579476 + ], + [ + 1660.901207690522, + 5840.565453579476 + ], + [ + 1660.901207690522, + 5841.329050958802 + ], + [ + 1663.051782166943, + 5840.565453579476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.128795486957, + "min_y": 5810.688461226515, + "max_x": 1664.128795486957, + "max_y": 5813.371472965795, + "center": [ + 1664.128795486957, + 5812.029967096155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.128795486957, + 5813.371472965795 + ], + [ + 1664.128795486957, + 5810.688461226515 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1659.575805868759, + "min_y": 5812.029967096157, + "max_x": 1664.128795486957, + "max_y": 5812.029967096157, + "center": [ + 1661.852300677858, + 5812.029967096157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.128795486957, + 5812.029967096157 + ], + [ + 1663.478368398645, + 5812.029967096157 + ], + [ + 1662.827941310332, + 5812.029967096157 + ], + [ + 1662.177514222014, + 5812.029967096157 + ], + [ + 1661.527087133701, + 5812.029967096157 + ], + [ + 1660.876660045383, + 5812.029967096157 + ], + [ + 1660.226232957071, + 5812.029967096157 + ], + [ + 1659.575805868759, + 5812.029967096157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.575805868759, + "min_y": 5810.688461226515, + "max_x": 1659.575805868759, + "max_y": 5813.371472965795, + "center": [ + 1659.575805868759, + 5812.029967096155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.575805868759, + 5813.371472965795 + ], + [ + 1659.575805868759, + 5810.688461226515 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.023457616998, + "min_y": 5812.029967096157, + "max_x": 1659.575805868759, + "max_y": 5812.029967096157, + "center": [ + 1657.2996317428785, + 5812.029967096157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.575805868759, + 5812.029967096157 + ], + [ + 1655.023457616998, + 5812.029967096157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.128154120512, + "min_y": 5812.029967096157, + "max_x": 1668.680502372271, + "max_y": 5812.029967096157, + "center": [ + 1666.4043282463913, + 5812.029967096157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.128154120512, + 5812.029967096157 + ], + [ + 1668.680502372271, + 5812.029967096157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5742.609716351118, + "max_x": 1707.706968924516, + "max_y": 5744.849479051904, + "center": [ + 1690.908748668615, + 5743.729597701511 + ] + }, + "raw_value": "PRESSURE REGULATING VALVE", + "clean_value": "PRESSURE REGULATING VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD0F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1660.056183832642, + "min_y": 5743.644313206285, + "max_x": 1663.5479714267358, + "max_y": 5747.136100800379, + "center": [ + 1661.802077629689, + 5745.390207003332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5745.390207003332 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715616, + "min_y": 5742.595382891786, + "max_x": 1663.62066654377, + "max_y": 5744.863812511237, + "center": [ + 1661.802077629693, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715616, + 5742.595382891786 + ], + [ + 1663.62066654377, + 5744.863812511237 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715616, + "min_y": 5742.595382891786, + "max_x": 1663.62066654377, + "max_y": 5744.863812511237, + "center": [ + 1661.802077629693, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715616, + 5744.863812511237 + ], + [ + 1663.62066654377, + 5742.595382891786 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.096235268527, + "min_y": 5745.762022803726, + "max_x": 1663.507919990859, + "max_y": 5745.762022803726, + "center": [ + 1661.802077629693, + 5745.762022803726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.096235268527, + 5745.762022803726 + ], + [ + 1663.507919990859, + 5745.762022803726 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715616, + "min_y": 5742.595382891786, + "max_x": 1659.983488715616, + "max_y": 5744.863812511237, + "center": [ + 1659.983488715616, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715616, + 5744.863812511237 + ], + [ + 1659.983488715616, + 5742.595382891786 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.938392669684, + "min_y": 5743.729597701511, + "max_x": 1659.983488715616, + "max_y": 5743.729597701511, + "center": [ + 1657.46094069265, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715616, + 5743.729597701511 + ], + [ + 1654.938392669684, + 5743.729597701511 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629689, + "min_y": 5743.729597701511, + "max_x": 1661.802077629689, + "max_y": 5745.762022803726, + "center": [ + 1661.802077629689, + 5744.745810252618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5743.729597701511 + ], + [ + 1661.802077629689, + 5745.762022803726 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.62066654377, + "min_y": 5742.595382891786, + "max_x": 1663.62066654377, + "max_y": 5744.863812511237, + "center": [ + 1663.62066654377, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.62066654377, + 5744.863812511237 + ], + [ + 1663.62066654377, + 5742.595382891786 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.62066654377, + "min_y": 5743.729597701511, + "max_x": 1668.287294238146, + "max_y": 5743.729597701511, + "center": [ + 1665.953980390958, + 5743.729597701511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.62066654377, + 5743.729597701511 + ], + [ + 1668.287294238146, + 5743.729597701511 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629689, + "min_y": 5747.13610080038, + "max_x": 1661.802077629689, + "max_y": 5749.146329010635, + "center": [ + 1661.802077629689, + 5748.141214905507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5747.13610080038 + ], + [ + 1661.802077629689, + 5749.146329010635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.789442601337, + "min_y": 5749.146329010635, + "max_x": 1661.802077629689, + "max_y": 5749.146329010635, + "center": [ + 1659.295760115513, + 5749.146329010635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5749.146329010635 + ], + [ + 1656.789442601337, + 5749.146329010635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1656.789442601337, + "min_y": 5743.729597701511, + "max_x": 1661.802077629689, + "max_y": 5749.146329010635, + "center": [ + 1659.295760115513, + 5746.437963356073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.789442601337, + 5749.146329010635 + ], + [ + 1661.802077629689, + 5743.729597701511 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5711.644689761861, + "max_x": 1692.5084106921972, + "max_y": 5713.8844524626475, + "center": [ + 1683.1014073488927, + 5712.764571112254 + ] + }, + "raw_value": "BREATHER VALVE", + "clean_value": "BREATHER VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1662.526372356025, + "min_y": 5717.920501863492, + "max_x": 1668.023934430603, + "max_y": 5721.047216565736, + "center": [ + 1665.275153393314, + 5719.483859214613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.526372356025, + 5721.047216565736 + ], + [ + 1668.023934430603, + 5721.047216565736 + ], + [ + 1668.023934430603, + 5717.920501863492 + ], + [ + 1662.526372356025, + 5717.920501863492 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.526372356025, + "min_y": 5719.483859214614, + "max_x": 1668.023934430603, + "max_y": 5721.047216565736, + "center": [ + 1665.275153393314, + 5720.2655378901745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.526372356025, + 5721.047216565736 + ], + [ + 1668.023934430603, + 5719.483859214614 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.526372356025, + "min_y": 5717.920501863492, + "max_x": 1668.023934430603, + "max_y": 5719.483859214614, + "center": [ + 1665.275153393314, + 5718.702180539053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.023934430603, + 5719.483859214614 + ], + [ + 1662.526372356025, + 5717.920501863492 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD1F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5656.397209809022, + "max_x": 1697.8838411740855, + "max_y": 5658.636972509808, + "center": [ + 1685.7891225898368, + 5657.517091159415 + ] + }, + "raw_value": "PIPE CAP(THREADED)", + "clean_value": "PIPE CAP(THREADED)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD21", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5693.726588155566, + "max_x": 1693.8522683126694, + "max_y": 5695.966350856353, + "center": [ + 1683.7733361591286, + 5694.846469505959 + ] + }, + "raw_value": "SPECTACLE BLIND", + "clean_value": "SPECTACLE BLIND", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.180467040525, + "min_y": 5725.083265966582, + "max_x": 1668.737540699331, + "max_y": 5725.083265966582, + "center": [ + 1666.459003869928, + 5725.083265966582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.180467040525, + 5725.083265966582 + ], + [ + 1668.737540699331, + 5725.083265966582 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.034365745811, + "min_y": 5725.083265966582, + "max_x": 1658.591439404599, + "max_y": 5725.083265966582, + "center": [ + 1656.312902575205, + 5725.083265966582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1654.034365745811, + 5725.083265966582 + ], + [ + 1658.591439404599, + 5725.083265966582 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.180467040527, + "min_y": 5724.327394433938, + "max_x": 1664.180467040527, + "max_y": 5725.839137499221, + "center": [ + 1664.180467040527, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.180467040527, + 5725.839137499221 + ], + [ + 1664.180467040527, + 5724.327394433938 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.87811842747, + "min_y": 5724.327394433938, + "max_x": 1663.87811842747, + "max_y": 5725.839137499221, + "center": [ + 1663.87811842747, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.87811842747, + 5725.839137499221 + ], + [ + 1663.87811842747, + 5724.327394433938 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.252145923601, + "min_y": 5723.949458667617, + "max_x": 1662.519760521526, + "max_y": 5723.949458667617, + "center": [ + 1661.3859532225633, + 5723.949458667617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.252145923601, + 5723.949458667617 + ], + [ + 1662.519760521526, + 5723.949458667617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.519760521526, + "min_y": 5723.949458667617, + "max_x": 1662.519760521526, + "max_y": 5726.217073265541, + "center": [ + 1662.519760521526, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.519760521526, + 5723.949458667617 + ], + [ + 1662.519760521526, + 5726.217073265541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.252145923601, + "min_y": 5726.217073265541, + "max_x": 1662.519760521526, + "max_y": 5726.217073265541, + "center": [ + 1661.3859532225633, + 5726.217073265541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.519760521526, + 5726.217073265541 + ], + [ + 1660.252145923601, + 5726.217073265541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.252145923601, + "min_y": 5723.949458667617, + "max_x": 1660.252145923601, + "max_y": 5726.217073265541, + "center": [ + 1660.252145923601, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.252145923601, + 5726.217073265541 + ], + [ + 1660.252145923601, + 5723.949458667617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.519760521526, + "min_y": 5725.08326596658, + "max_x": 1663.87811842747, + "max_y": 5725.08326596658, + "center": [ + 1663.198939474498, + 5725.08326596658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.87811842747, + 5725.08326596658 + ], + [ + 1662.519760521526, + 5725.08326596658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5726.217073265541, + "max_x": 1661.385953222563, + "max_y": 5727.760639967075, + "center": [ + 1661.385953222563, + 5726.988856616308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5726.217073265541 + ], + [ + 1661.385953222563, + 5727.760639967075 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.639707620985, + "min_y": 5727.760639967075, + "max_x": 1664.127334947961, + "max_y": 5727.760639967075, + "center": [ + 1661.3835212844729, + 5727.760639967075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.639707620985, + 5727.760639967075 + ], + [ + 1664.127334947961, + 5727.760639967075 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.127334947961, + "min_y": 5728.213343249596, + "max_x": 1664.580038230482, + "max_y": 5728.666046532119, + "center": [ + 1664.3536865892215, + 5728.439694890858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.580038230482, + 5728.213343249596 + ], + [ + 1664.127334947961, + 5728.666046532119 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.639707620985, + "min_y": 5728.666046532119, + "max_x": 1664.127334947961, + "max_y": 5728.666046532119, + "center": [ + 1661.3835212844729, + 5728.666046532119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.127334947961, + 5728.666046532119 + ], + [ + 1658.639707620985, + 5728.666046532119 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.187004338465, + "min_y": 5727.760639967075, + "max_x": 1658.639707620985, + "max_y": 5728.213343249596, + "center": [ + 1658.413355979725, + 5727.986991608335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.187004338465, + 5728.213343249596 + ], + [ + 1658.639707620985, + 5727.760639967075 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.127334947961, + "min_y": 5727.760639967075, + "max_x": 1664.580038230482, + "max_y": 5728.213343249596, + "center": [ + 1664.3536865892215, + 5727.986991608335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.580038230482, + 5728.213343249596 + ], + [ + 1664.127334947961, + 5727.760639967075 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.187004338463, + "min_y": 5728.213343249598, + "max_x": 1658.639707620985, + "max_y": 5728.666046532119, + "center": [ + 1658.4133559797242, + 5728.439694890859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.187004338463, + 5728.213343249598 + ], + [ + 1658.639707620985, + 5728.666046532119 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.523027072751, + "min_y": 5728.213343249596, + "max_x": 1665.24401549619, + "max_y": 5728.213343249596, + "center": [ + 1661.3835212844706, + 5728.213343249596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.523027072751, + 5728.213343249596 + ], + [ + 1665.24401549619, + 5728.213343249596 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.591439404599, + "min_y": 5724.327394433938, + "max_x": 1658.591439404599, + "max_y": 5725.839137499221, + "center": [ + 1658.591439404599, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.591439404599, + 5725.839137499221 + ], + [ + 1658.591439404599, + 5724.327394433938 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.893788017656, + "min_y": 5724.327394433938, + "max_x": 1658.893788017656, + "max_y": 5725.839137499221, + "center": [ + 1658.893788017656, + 5725.083265966579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.893788017656, + 5725.839137499221 + ], + [ + 1658.893788017656, + 5724.327394433938 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.893788017656, + "min_y": 5725.08326596658, + "max_x": 1660.252145923601, + "max_y": 5725.08326596658, + "center": [ + 1659.5729669706284, + 5725.08326596658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.893788017656, + 5725.08326596658 + ], + [ + 1660.252145923601, + 5725.08326596658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD37", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5723.963384616189, + "max_x": 1699.2276987945577, + "max_y": 5726.203147316975, + "center": [ + 1686.4610514000728, + 5725.083265966582 + ] + }, + "raw_value": "N2 BLANKETING DVICE", + "clean_value": "N2 BLANKETING DVICE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.893670292521, + "min_y": 5706.045283009894, + "max_x": 1661.385953222563, + "max_y": 5707.537565939921, + "center": [ + 1660.639811757542, + 5706.791424474907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5707.537565939921 + ], + [ + 1659.893670292521, + 5706.045283009894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.893670292521, + "min_y": 5704.553000079869, + "max_x": 1661.385953222563, + "max_y": 5706.045283009894, + "center": [ + 1660.639811757542, + 5705.299141544881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.893670292521, + 5706.045283009894 + ], + [ + 1661.385953222563, + 5704.553000079869 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1660.888525579221, + "min_y": 5705.547855366551, + "max_x": 1661.4854387512316, + "max_y": 5706.542710653235, + "center": [ + 1661.1869821652263, + 5706.045283009893 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5704.553000079869, + "max_x": 1662.878236152581, + "max_y": 5706.045283009894, + "center": [ + 1662.1320946875721, + 5705.299141544881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5704.553000079869 + ], + [ + 1662.878236152581, + 5706.045283009894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5706.045283009894, + "max_x": 1662.878236152581, + "max_y": 5707.537565939921, + "center": [ + 1662.1320946875721, + 5706.791424474907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.878236152581, + 5706.045283009894 + ], + [ + 1661.385953222563, + 5707.537565939921 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.446378124587, + "min_y": 5707.537565939921, + "max_x": 1662.32552832054, + "max_y": 5707.537565939921, + "center": [ + 1661.3859532225633, + 5707.537565939921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.446378124587, + 5707.537565939921 + ], + [ + 1662.32552832054, + 5707.537565939921 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.446378124587, + "min_y": 5704.553000079869, + "max_x": 1662.32552832054, + "max_y": 5704.553000079869, + "center": [ + 1661.3859532225633, + 5704.553000079869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.446378124587, + 5704.553000079869 + ], + [ + 1662.32552832054, + 5704.553000079869 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD3F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5704.925401659501, + "max_x": 1692.5084106921972, + "max_y": 5707.165164360288, + "center": [ + 1683.1014073488927, + 5706.045283009895 + ] + }, + "raw_value": "FLAME ARRESTER", + "clean_value": "FLAME ARRESTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD40", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5844.506526257565, + "max_x": 1686.2554700451308, + "max_y": 5846.746288958352, + "center": [ + 1680.2081107530064, + 5845.626407607959 + ] + }, + "raw_value": "CAPILLARY", + "clean_value": "CAPILLARY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5845.626407607959, + "max_x": 1668.579161468019, + "max_y": 5845.626407607959, + "center": [ + 1661.8523006778576, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.125439887696, + 5845.626407607959 + ], + [ + 1668.579161468019, + 5845.626407607959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.558804771, + "min_y": 5845.065849535745, + "max_x": 1658.679920915425, + "max_y": 5846.186965680173, + "center": [ + 1658.1193628432125, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.558804771, + 5845.065849535745 + ], + [ + 1658.679920915425, + 5846.186965680173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.558804771, + "min_y": 5845.065849535745, + "max_x": 1658.679920915425, + "max_y": 5846.186965680173, + "center": [ + 1658.1193628432125, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.558804771, + 5846.186965680173 + ], + [ + 1658.679920915425, + 5845.065849535745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.291742605645, + "min_y": 5845.065849535745, + "max_x": 1662.41285875007, + "max_y": 5846.186965680173, + "center": [ + 1661.8523006778573, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.291742605645, + 5845.065849535745 + ], + [ + 1662.41285875007, + 5846.186965680173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.291742605645, + "min_y": 5845.065849535745, + "max_x": 1662.41285875007, + "max_y": 5846.186965680173, + "center": [ + 1661.8523006778573, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.291742605645, + 5846.186965680173 + ], + [ + 1662.41285875007, + 5845.065849535745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.024680440289, + "min_y": 5845.065849535745, + "max_x": 1666.145796584714, + "max_y": 5846.186965680173, + "center": [ + 1665.5852385125015, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.024680440289, + 5845.065849535745 + ], + [ + 1666.145796584714, + 5846.186965680173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.024680440289, + "min_y": 5845.065849535745, + "max_x": 1666.145796584714, + "max_y": 5846.186965680173, + "center": [ + 1665.5852385125015, + 5845.626407607959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.024680440289, + 5846.186965680173 + ], + [ + 1666.145796584714, + 5845.065849535745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD48", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.918404954971, + "min_y": 5857.01070308642, + "max_x": 1968.700838780164, + "max_y": 5859.250465787207, + "center": [ + 1961.3096218675676, + 5858.1305844368135 + ] + }, + "raw_value": "SIPHON TUBE", + "clean_value": "SIPHON TUBE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD4C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1658.6915292346469, + "min_y": 5677.220294179464, + "max_x": 1664.0803772104794, + "max_y": 5682.609142155297, + "center": [ + 1661.385953222563, + 5679.914718167381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5679.914718167381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.958591400003, + "min_y": 5679.914718167381, + "max_x": 1658.691529234648, + "max_y": 5679.914718167381, + "center": [ + 1656.8250603173256, + 5679.914718167381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.691529234648, + 5679.914718167381 + ], + [ + 1654.958591400003, + 5679.914718167381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.480707749317, + "min_y": 5678.009472694127, + "max_x": 1663.291198695809, + "max_y": 5681.819963640627, + "center": [ + 1661.3859532225629, + 5679.914718167377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.291198695809, + 5681.819963640627 + ], + [ + 1659.480707749317, + 5678.009472694127 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.480707749317, + "min_y": 5678.009472694127, + "max_x": 1663.291198695809, + "max_y": 5681.819963640627, + "center": [ + 1661.3859532225629, + 5679.914718167377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.480707749317, + 5681.819963640627 + ], + [ + 1663.291198695809, + 5678.009472694127 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.080377210478, + "min_y": 5679.914718167381, + "max_x": 1667.813315045123, + "max_y": 5679.914718167381, + "center": [ + 1665.9468461278007, + 5679.914718167381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.813315045123, + 5679.914718167381 + ], + [ + 1664.080377210478, + 5679.914718167381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD51", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5673.195430065021, + "max_x": 1693.8522683126694, + "max_y": 5675.435192765808, + "center": [ + 1683.7733361591286, + 5674.315311415415 + ] + }, + "raw_value": "MASS FLOW METER", + "clean_value": "MASS FLOW METER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD52", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5678.794836816987, + "max_x": 1696.5399835536134, + "max_y": 5681.034599517774, + "center": [ + 1685.1171937796007, + 5679.914718167381 + ] + }, + "raw_value": "VORTEX FLOW METER", + "clean_value": "VORTEX FLOW METER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD53", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1830.109559143615, + "min_y": 5644.513240907347, + "max_x": 1834.764821255605, + "max_y": 5647.16214807716, + "center": [ + 1832.43719019961, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.764821255605, + 5647.16214807716 + ], + [ + 1833.075712933555, + 5647.16214807716 + ], + [ + 1831.798667465651, + 5647.16214807716 + ], + [ + 1830.109559143615, + 5647.16214807716 + ], + [ + 1830.109559143615, + 5644.513240907347 + ], + [ + 1831.798667465651, + 5644.513240907347 + ], + [ + 1833.075712933555, + 5644.513240907347 + ], + [ + 1834.764821255605, + 5644.513240907347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.992904325255, + "min_y": 5643.563478545301, + "max_x": 1832.437190199606, + "max_y": 5643.563478545301, + "center": [ + 1830.7150472624305, + 5643.563478545301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5643.563478545301 + ], + [ + 1828.992904325255, + 5643.563478545301 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.992904325255, + "min_y": 5640.925834008024, + "max_x": 1828.992904325255, + "max_y": 5643.563478545301, + "center": [ + 1828.992904325255, + 5642.244656276663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.992904325255, + 5643.563478545301 + ], + [ + 1828.992904325255, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.242509038028, + "min_y": 5640.925834008024, + "max_x": 1829.242509038028, + "max_y": 5643.31387383254, + "center": [ + 1829.242509038028, + 5642.1198539202815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.242509038028, + 5643.31387383254 + ], + [ + 1829.242509038028, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.992904325255, + "min_y": 5643.31387383254, + "max_x": 1832.437190199606, + "max_y": 5643.31387383254, + "center": [ + 1830.7150472624305, + 5643.31387383254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5643.31387383254 + ], + [ + 1828.992904325255, + 5643.31387383254 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.269594703363, + "min_y": 5640.925834008024, + "max_x": 1829.965818659912, + "max_y": 5640.925834008024, + "center": [ + 1829.1177066816376, + 5640.925834008024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.965818659912, + 5640.925834008024 + ], + [ + 1828.269594703363, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.269594703363, + "min_y": 5640.769785666964, + "max_x": 1829.965818659912, + "max_y": 5640.769785666964, + "center": [ + 1829.1177066816376, + 5640.769785666964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.269594703363, + 5640.769785666964 + ], + [ + 1829.965818659912, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.965818659912, + "min_y": 5640.769785666964, + "max_x": 1829.965818659912, + "max_y": 5640.925834008024, + "center": [ + 1829.965818659912, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.965818659912, + 5640.925834008024 + ], + [ + 1829.965818659912, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.437190199606, + "min_y": 5643.563478545301, + "max_x": 1835.881476073964, + "max_y": 5643.563478545301, + "center": [ + 1834.1593331367849, + 5643.563478545301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5643.563478545301 + ], + [ + 1835.881476073964, + 5643.563478545301 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.881476073964, + "min_y": 5640.925834008024, + "max_x": 1835.881476073964, + "max_y": 5643.563478545301, + "center": [ + 1835.881476073964, + 5642.244656276663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.881476073964, + 5643.563478545301 + ], + [ + 1835.881476073964, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.631871361191, + "min_y": 5640.925834008024, + "max_x": 1835.631871361191, + "max_y": 5643.31387383254, + "center": [ + 1835.631871361191, + 5642.1198539202815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.631871361191, + 5643.31387383254 + ], + [ + 1835.631871361191, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.437190199606, + "min_y": 5643.31387383254, + "max_x": 1835.881476073964, + "max_y": 5643.31387383254, + "center": [ + 1834.1593331367849, + 5643.31387383254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5643.31387383254 + ], + [ + 1835.881476073964, + 5643.31387383254 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.9085617393, + "min_y": 5640.925834008024, + "max_x": 1836.60478569587, + "max_y": 5640.925834008024, + "center": [ + 1835.756673717585, + 5640.925834008024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.9085617393, + 5640.925834008024 + ], + [ + 1836.60478569587, + 5640.925834008024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.60478569587, + "min_y": 5640.769785666964, + "max_x": 1836.60478569587, + "max_y": 5640.925834008024, + "center": [ + 1836.60478569587, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.60478569587, + 5640.925834008024 + ], + [ + 1836.60478569587, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.9085617393, + "min_y": 5640.769785666964, + "max_x": 1836.60478569587, + "max_y": 5640.769785666964, + "center": [ + 1835.756673717585, + 5640.769785666964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.60478569587, + 5640.769785666964 + ], + [ + 1834.9085617393, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.9085617393, + "min_y": 5640.769785666964, + "max_x": 1834.9085617393, + "max_y": 5640.925834008024, + "center": [ + 1834.9085617393, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.9085617393, + 5640.925834008024 + ], + [ + 1834.9085617393, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.60478569587, + "min_y": 5640.769785666964, + "max_x": 1836.60478569587, + "max_y": 5640.925834008024, + "center": [ + 1836.60478569587, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.60478569587, + 5640.925834008024 + ], + [ + 1836.60478569587, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.269594703363, + "min_y": 5640.769785666964, + "max_x": 1828.269594703363, + "max_y": 5640.925834008024, + "center": [ + 1828.269594703363, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.269594703363, + 5640.925834008024 + ], + [ + 1828.269594703363, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.269594703363, + "min_y": 5640.769785666964, + "max_x": 1828.269594703363, + "max_y": 5640.925834008024, + "center": [ + 1828.269594703363, + 5640.847809837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.269594703363, + 5640.925834008024 + ], + [ + 1828.269594703363, + 5640.769785666964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.109559143615, + "min_y": 5644.513240907347, + "max_x": 1830.109559143615, + "max_y": 5647.16214807716, + "center": [ + 1830.109559143615, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.109559143615, + 5647.16214807716 + ], + [ + 1830.109559143615, + 5644.513240907347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5643.667933679302, + "max_x": 1859.9478396373102, + "max_y": 5645.907696380089, + "center": [ + 1850.5408362940057, + 5644.787815029696 + ] + }, + "raw_value": "DIAPHRAGM PUMP", + "clean_value": "DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAD68", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5606.743498609294, + "max_x": 2061.307339633341, + "max_y": 5606.743498609294, + "center": [ + 2029.6797922574892, + 5606.743498609294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5606.743498609294 + ], + [ + 1998.052244881637, + 5606.743498609294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD69", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5617.428306025437, + "max_x": 2061.307339633341, + "max_y": 5617.428306025437, + "center": [ + 2029.6797922574892, + 5617.428306025437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5617.428306025437 + ], + [ + 1998.052244881637, + 5617.428306025437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5596.058691193157, + "max_x": 2061.307339633341, + "max_y": 5596.058691193157, + "center": [ + 2029.6797922574892, + 5596.058691193157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5596.058691193157 + ], + [ + 1998.052244881637, + 5596.058691193157 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6B", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5596.058691193157, + "max_x": 2061.307339633341, + "max_y": 5596.058691193157, + "center": [ + 2029.6797922574892, + 5596.058691193157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5596.058691193157 + ], + [ + 1998.052244881637, + 5596.058691193157 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5606.743498609294, + "max_x": 2061.307339633341, + "max_y": 5606.743498609294, + "center": [ + 2029.6797922574892, + 5606.743498609294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5606.743498609294 + ], + [ + 1998.052244881637, + 5606.743498609294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5617.428306025437, + "max_x": 2061.307339633341, + "max_y": 5617.428306025437, + "center": [ + 2029.6797922574892, + 5617.428306025437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5617.428306025437 + ], + [ + 1998.052244881637, + 5617.428306025437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5585.373883777027, + "max_x": 2061.307339633341, + "max_y": 5585.373883777027, + "center": [ + 2029.6797922574892, + 5585.373883777027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5585.373883777027 + ], + [ + 1998.052244881637, + 5585.373883777027 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2030.716327006134, + "min_y": 5580.593491278773, + "max_x": 2043.7554140224365, + "max_y": 5582.404475586593, + "center": [ + 2037.2358705142851, + 5581.498983432683 + ] + }, + "raw_value": "SARF-S&L-000", + "clean_value": "SARF-S&L-000", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD70", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5585.373883777027, + "max_x": 2061.307339633341, + "max_y": 5585.373883777027, + "center": [ + 2029.6797922574892, + 5585.373883777027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5585.373883777027 + ], + [ + 1998.052244881637, + 5585.373883777027 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD71", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5582.172322232842, + "max_x": 2020.443772287612, + "max_y": 5582.172322232842, + "center": [ + 2009.2480085846246, + 5582.172322232842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.052244881637, + 5582.172322232842 + ], + [ + 2020.443772287612, + 5582.172322232842 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD72", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2011.291234331946, + "min_y": 5580.01407377565, + "max_x": 2014.2119898235978, + "max_y": 5581.231055230505, + "center": [ + 2012.7516120777718, + 5580.622564503077 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD73", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2011.291234331946, + "min_y": 5580.01407377565, + "max_x": 2014.2119898235978, + "max_y": 5581.231055230505, + "center": [ + 2012.7516120777718, + 5580.622564503077 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD74", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2013.358882465456, + "min_y": 5582.929154807562, + "max_x": 2014.3605171891477, + "max_y": 5584.598546013714, + "center": [ + 2013.859699827302, + 5583.763850410638 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD75", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.499881895315, + "min_y": 5582.982718786768, + "max_x": 2004.6112040057055, + "max_y": 5584.199700241623, + "center": [ + 2002.0555429505102, + 5583.591209514196 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD76", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.499881895315, + "min_y": 5582.982718786768, + "max_x": 2004.6112040057055, + "max_y": 5584.199700241623, + "center": [ + 2002.0555429505102, + 5583.591209514196 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD77", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2000.0256603591, + "min_y": 5580.040077241211, + "max_x": 2003.6766047236647, + "max_y": 5581.257058696066, + "center": [ + 2001.8511325413824, + 5580.648567968639 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD78", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2000.0256603591, + "min_y": 5580.040077241211, + "max_x": 2003.6766047236647, + "max_y": 5581.257058696066, + "center": [ + 2001.8511325413824, + 5580.648567968639 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD79", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2006.939003592156, + "min_y": 5578.977228489755, + "max_x": 2006.939003592156, + "max_y": 5585.373883777027, + "center": [ + 2006.939003592156, + 5582.175556133391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.939003592156, + 5585.373883777027 + ], + [ + 2006.939003592156, + 5578.977228489755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7A", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2021.891623315509, + "min_y": 5583.344915648331, + "max_x": 2027.0029454258995, + "max_y": 5584.561897103186, + "center": [ + 2024.4472843707042, + 5583.953406375758 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2021.891623315509, + "min_y": 5583.344915648331, + "max_x": 2027.0029454258995, + "max_y": 5584.561897103186, + "center": [ + 2024.4472843707042, + 5583.953406375758 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2020.443772287612, + "min_y": 5578.977228489755, + "max_x": 2020.443772287612, + "max_y": 5585.373883777027, + "center": [ + 2020.443772287612, + 5582.175556133391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2020.443772287612, + 5585.373883777027 + ], + [ + 2020.443772287612, + 5578.977228489755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5593.827932475961, + "max_x": 2004.2414325130326, + "max_y": 5595.044913930816, + "center": [ + 2001.6857714578373, + 5594.436423203388 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5615.197547308241, + "max_x": 2004.2414325130326, + "max_y": 5616.414528763096, + "center": [ + 2001.6857714578373, + 5615.806038035669 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD7F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5625.189149920567, + "max_x": 2007.8923768775974, + "max_y": 5626.406131375422, + "center": [ + 2003.5112436401196, + 5625.797640647994 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD80", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2055.285816809843, + "min_y": 5580.374273527226, + "max_x": 2060.255237474457, + "max_y": 5580.374273527226, + "center": [ + 2057.77052714215, + 5580.374273527226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.285816809843, + 5580.374273527226 + ], + [ + 2060.255237474457, + 5580.374273527226 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD81", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2055.285816809843, + "min_y": 5580.374273527226, + "max_x": 2057.743581227601, + "max_y": 5584.681829059396, + "center": [ + 2056.5146990187222, + 5582.528051293311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.285816809843, + 5580.374273527226 + ], + [ + 2057.743581227601, + 5584.681829059396 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD82", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2055.285816809843, + "min_y": 5580.374273527226, + "max_x": 2057.743581227601, + "max_y": 5584.681829059396, + "center": [ + 2056.5146990187222, + 5582.528051293311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.285816809843, + 5580.374273527226 + ], + [ + 2057.743581227601, + 5584.681829059396 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD83", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2054.554955285617, + "min_y": 5578.977228489755, + "max_x": 2054.554955285617, + "max_y": 5585.373883777027, + "center": [ + 2054.554955285617, + 5582.175556133391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.554955285617, + 5585.373883777027 + ], + [ + 2054.554955285617, + 5578.977228489755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD84", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2057.743581227601, + "min_y": 5580.374273527226, + "max_x": 2060.255237474457, + "max_y": 5584.681829059396, + "center": [ + 2058.999409351029, + 5582.528051293311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2057.743581227601, + 5584.681829059396 + ], + [ + 2060.255237474457, + 5580.374273527226 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD85", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5627.220556889857, + "max_x": 2061.307339633341, + "max_y": 5627.220556889857, + "center": [ + 2029.6797922574892, + 5627.220556889857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5627.220556889857 + ], + [ + 1998.052244881637, + 5627.220556889857 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD86", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5627.220556889857, + "max_x": 2061.307339633341, + "max_y": 5627.220556889857, + "center": [ + 2029.6797922574892, + 5627.220556889857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633341, + 5627.220556889857 + ], + [ + 1998.052244881637, + 5627.220556889857 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD87", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2009.860745204763, + "min_y": 5591.418171835375, + "max_x": 2047.1152795370558, + "max_y": 5593.717834448479, + "center": [ + 2028.4880123709095, + 5592.568003141927 + ] + }, + "raw_value": "PIPING & INSTRUMENT DIAGRAM", + "clean_value": "PIPING & INSTRUMENT DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD88", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2057.145511490849, + "min_y": 5581.183151109557, + "max_x": 2058.3097156887334, + "max_y": 5583.1234914393635, + "center": [ + 2057.727613589791, + 5582.15332127446 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD89", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5578.977228489755, + "max_x": 1998.052244881637, + "max_y": 5627.220556889857, + "center": [ + 1998.052244881637, + 5603.098892689806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.052244881637, + 5627.220556889857 + ], + [ + 1998.052244881637, + 5578.977228489755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD8A", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2016.642284771497, + "min_y": 5621.02615969604, + "max_x": 2040.1597931297586, + "max_y": 5623.639216180291, + "center": [ + 2028.401038950628, + 5622.332687938166 + ] + }, + "raw_value": "SYMBOL & LEGEND", + "clean_value": "SYMBOL & LEGEND", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD8B", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2016.986282212139, + "min_y": 5610.750378877472, + "max_x": 2062.453465038111, + "max_y": 5613.3634353617235, + "center": [ + 2039.719873625125, + 5612.056907119598 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD94", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.442706927088, + "min_y": 5613.550307473126, + "max_x": 2011.792366778445, + "max_y": 5613.550307473126, + "center": [ + 2011.6175368527665, + 5613.550307473126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.442706927088, + 5613.550307473126 + ], + [ + 2011.792366778445, + 5613.550307473126 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD95", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.492632264909, + "min_y": 5612.370207542553, + "max_x": 2011.792366778445, + "max_y": 5612.370207542553, + "center": [ + 2011.642499521677, + 5612.370207542553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5612.370207542553 + ], + [ + 2011.492632264909, + 5612.370207542553 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD96", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.689919037058, + "min_y": 5612.666894659476, + "max_x": 2011.792366778445, + "max_y": 5612.666894659476, + "center": [ + 2011.7411429077515, + 5612.666894659476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5612.666894659476 + ], + [ + 2011.689919037058, + 5612.666894659476 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD97", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.095900160107, + "min_y": 5612.163080405214, + "max_x": 2011.453380393093, + "max_y": 5612.163080405214, + "center": [ + 2011.2746402766002, + 5612.163080405214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.453380393093, + 5612.163080405214 + ], + [ + 2011.095900160107, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD98", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.095900160107, + "min_y": 5612.163080405214, + "max_x": 2011.442706927088, + "max_y": 5613.550307473126, + "center": [ + 2011.2693035435975, + 5612.856693939169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.442706927088, + 5613.550307473126 + ], + [ + 2011.095900160107, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD99", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.689919037058, + "min_y": 5612.666894659476, + "max_x": 2011.792366778445, + "max_y": 5613.076685625031, + "center": [ + 2011.7411429077515, + 5612.871790142253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5613.076685625031 + ], + [ + 2011.689919037058, + 5612.666894659476 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.453380393093, + "min_y": 5612.163080405214, + "max_x": 2011.492632264909, + "max_y": 5612.370207542553, + "center": [ + 2011.473006329001, + 5612.266643973883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.492632264909, + 5612.370207542553 + ], + [ + 2011.453380393093, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.792366778445, + "min_y": 5613.550307473126, + "max_x": 2012.142026629805, + "max_y": 5613.550307473126, + "center": [ + 2011.967196704125, + 5613.550307473126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.142026629805, + 5613.550307473126 + ], + [ + 2011.792366778445, + 5613.550307473126 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.792366778445, + "min_y": 5612.370207542553, + "max_x": 2012.092101291988, + "max_y": 5612.370207542553, + "center": [ + 2011.9422340352166, + 5612.370207542553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5612.370207542553 + ], + [ + 2012.092101291988, + 5612.370207542553 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.792366778445, + "min_y": 5612.666894659476, + "max_x": 2011.894814519835, + "max_y": 5612.666894659476, + "center": [ + 2011.84359064914, + 5612.666894659476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5612.666894659476 + ], + [ + 2011.894814519835, + 5612.666894659476 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2012.131353163801, + "min_y": 5612.163080405214, + "max_x": 2012.488833396782, + "max_y": 5612.163080405214, + "center": [ + 2012.3100932802913, + 5612.163080405214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.131353163801, + 5612.163080405214 + ], + [ + 2012.488833396782, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAD9F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2012.142026629805, + "min_y": 5612.163080405214, + "max_x": 2012.488833396782, + "max_y": 5613.550307473126, + "center": [ + 2012.3154300132935, + 5612.856693939169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.142026629805, + 5613.550307473126 + ], + [ + 2012.488833396782, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EADA0", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2011.792366778445, + "min_y": 5612.666894659476, + "max_x": 2011.894814519835, + "max_y": 5613.076685625031, + "center": [ + 2011.84359064914, + 5612.871790142253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.792366778445, + 5613.076685625031 + ], + [ + 2011.894814519835, + 5612.666894659476 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EADA1", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2012.092101291988, + "min_y": 5612.163080405214, + "max_x": 2012.131353163801, + "max_y": 5612.370207542553, + "center": [ + 2012.1117272278943, + 5612.266643973883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.092101291988, + 5612.370207542553 + ], + [ + 2012.131353163801, + 5612.163080405214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EADA2", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2011.942812050973, + "min_y": 5609.676649358723, + "max_x": 2018.8680647667397, + "max_y": 5610.786431013049, + "center": [ + 2015.4054384088563, + 5610.231540185886 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EADA3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1644.263524746835, + "min_y": 5578.977228489755, + "max_x": 2061.307339633341, + "max_y": 5875.978654972201, + "center": [ + 1852.7854321900882, + 5727.477941730978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1644.263524746835, + 5875.978654972201 + ], + [ + 2061.307339633341, + 5875.978654972201 + ], + [ + 2061.307339633341, + 5578.977228489755 + ], + [ + 1644.263524746835, + 5578.977228489755 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADA4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1999.130110402642, + "min_y": 5604.5127398921, + "max_x": 2007.8923768775974, + "max_y": 5605.729721346956, + "center": [ + 2003.5112436401196, + 5605.121230619528 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "3EADA5", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2026.58221008159, + "min_y": 5599.611292607089, + "max_x": 2028.1344823454353, + "max_y": 5602.198413046832, + "center": [ + 2027.3583462135125, + 5600.90485282696 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "3EADB8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1998.584603018804, + "min_y": 5627.985580210373, + "max_x": 2000.7621128482297, + "max_y": 5628.892875972634, + "center": [ + 1999.6733579335169, + 5628.4392280915035 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2001.590740718813, + "min_y": 5627.220556889857, + "max_x": 2001.590740718961, + "max_y": 5650.586366810787, + "center": [ + 2001.590740718887, + 5638.903461850322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718813, + 5627.220556889857 + ], + [ + 2001.590740718961, + 5650.586366810787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881691, + "min_y": 5630.172212158847, + "max_x": 2061.307339633345, + "max_y": 5630.172212158847, + "center": [ + 2029.6797922575179, + 5630.172212158847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5630.172212158847 + ], + [ + 1998.052244881691, + 5630.172212158847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5630.172212158889, + "max_x": 2001.590740718897, + "max_y": 5633.574571267359, + "center": [ + 1999.8895611646815, + 5631.873391713124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718897, + 5631.873391713103 + ], + [ + 1999.889561164639, + 5633.574571267359 + ], + [ + 1998.188381610466, + 5631.873391713103 + ], + [ + 1999.889561164639, + 5630.172212158889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5633.574571267359, + "max_x": 2001.590740718897, + "max_y": 5636.976930375827, + "center": [ + 1999.8895611646815, + 5635.275750821593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718897, + 5635.275750821613 + ], + [ + 1999.889561164639, + 5636.976930375827 + ], + [ + 1998.188381610466, + 5635.275750821613 + ], + [ + 1999.889561164639, + 5633.574571267359 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5636.976930375827, + "max_x": 2001.590740718897, + "max_y": 5640.379289484297, + "center": [ + 1999.8895611646815, + 5638.678109930062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718897, + 5638.678109930083 + ], + [ + 1999.889561164639, + 5640.379289484297 + ], + [ + 1998.188381610466, + 5638.678109930083 + ], + [ + 1999.889561164639, + 5636.976930375827 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610466, + "min_y": 5640.379289484297, + "max_x": 2001.590740718897, + "max_y": 5643.781648592806, + "center": [ + 1999.8895611646815, + 5642.080469038552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718897, + 5642.080469038552 + ], + [ + 1999.889561164639, + 5643.781648592806 + ], + [ + 1998.188381610466, + 5642.080469038552 + ], + [ + 1999.889561164639, + 5640.379289484297 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADBF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2005.646393229258, + "min_y": 5627.985580210373, + "max_x": 2008.278955930061, + "max_y": 5629.082481335708, + "center": [ + 2006.9626745796595, + 5628.53403077304 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.858567303097, + "min_y": 5627.220556889898, + "max_x": 2050.858567303245, + "max_y": 5650.586366809352, + "center": [ + 2050.858567303171, + 5638.903461849624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.858567303097, + 5627.220556889898 + ], + [ + 2050.858567303245, + 5650.586366809352 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.825913101744, + "min_y": 5627.220556889857, + "max_x": 2045.825913101802, + "max_y": 5650.586366809498, + "center": [ + 2045.825913101773, + 5638.903461849677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.825913101744, + 5627.220556889857 + ], + [ + 2045.825913101802, + 5650.586366809498 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2046.50373547127, + "min_y": 5627.985580210373, + "max_x": 2049.136298172073, + "max_y": 5629.082481335708, + "center": [ + 2047.8200168216715, + 5628.53403077304 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2040.155314587616, + "min_y": 5627.220556889857, + "max_x": 2040.155314587674, + "max_y": 5650.586366809664, + "center": [ + 2040.155314587645, + 5638.903461849761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.155314587616, + 5627.220556889857 + ], + [ + 2040.155314587674, + 5650.586366809664 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2041.157221963831, + "min_y": 5627.985580210373, + "max_x": 2043.7897846646342, + "max_y": 5629.082481335708, + "center": [ + 2042.4735033142326, + 5628.53403077304 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.484716073487, + "min_y": 5627.220556889857, + "max_x": 2034.484716073635, + "max_y": 5650.586366809829, + "center": [ + 2034.484716073561, + 5638.903461849843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.484716073487, + 5627.220556889857 + ], + [ + 2034.484716073635, + 5650.586366809829 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2035.439613401529, + "min_y": 5627.985580210373, + "max_x": 2038.0721761023322, + "max_y": 5629.082481335708, + "center": [ + 2036.7558947519306, + 5628.53403077304 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2019.296283036992, + "min_y": 5627.985580210373, + "max_x": 2026.5358304642011, + "max_y": 5629.082481335708, + "center": [ + 2022.9160567505965, + 5628.53403077304 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.180789308379, + "min_y": 5627.220556889898, + "max_x": 2013.180789308439, + "max_y": 5650.58636681045, + "center": [ + 2013.180789308409, + 5638.903461850174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.180789308439, + 5650.58636681045 + ], + [ + 2013.180789308379, + 5627.220556889898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADC9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2053.554857541346, + "min_y": 5627.933340124137, + "max_x": 2057.503701592551, + "max_y": 5629.030241249472, + "center": [ + 2055.5292795669484, + 5628.481790686805 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610469, + "min_y": 5643.781648592806, + "max_x": 2001.590740718898, + "max_y": 5647.184007701318, + "center": [ + 1999.8895611646835, + 5645.482828147062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718898, + 5645.482828147063 + ], + [ + 1999.889561164642, + 5647.184007701318 + ], + [ + 1998.188381610469, + 5645.482828147063 + ], + [ + 1999.889561164642, + 5643.781648592806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1998.188381610518, + "min_y": 5647.184007701797, + "max_x": 2001.590740718949, + "max_y": 5650.586366810308, + "center": [ + 1999.8895611647335, + 5648.885187256053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.590740718949, + 5648.885187256053 + ], + [ + 1999.88956116469, + 5650.586366810308 + ], + [ + 1998.188381610518, + 5648.885187256053 + ], + [ + 1999.88956116469, + 5647.184007701797 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881641, + "min_y": 5627.22055688996, + "max_x": 1998.052244881789, + "max_y": 5650.586366810889, + "center": [ + 1998.052244881715, + 5638.903461850425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.052244881641, + 5627.22055688996 + ], + [ + 1998.052244881789, + 5650.586366810889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.05224488168, + "min_y": 5633.574571267359, + "max_x": 2061.307339633345, + "max_y": 5633.574571267359, + "center": [ + 2029.6797922575124, + 5633.574571267359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5633.574571267359 + ], + [ + 1998.05224488168, + 5633.574571267359 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881672, + "min_y": 5636.976930375869, + "max_x": 2061.307339633345, + "max_y": 5636.976930375869, + "center": [ + 2029.6797922575083, + 5636.976930375869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5636.976930375869 + ], + [ + 1998.052244881672, + 5636.976930375869 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881664, + "min_y": 5640.37928948438, + "max_x": 2061.307339633345, + "max_y": 5640.37928948438, + "center": [ + 2029.6797922575042, + 5640.37928948438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5640.37928948438 + ], + [ + 1998.052244881664, + 5640.37928948438 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881655, + "min_y": 5643.781648592891, + "max_x": 2061.307339633345, + "max_y": 5643.781648592891, + "center": [ + 2029.6797922575, + 5643.781648592891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5643.781648592891 + ], + [ + 1998.052244881655, + 5643.781648592891 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881645, + "min_y": 5647.184007701401, + "max_x": 2061.307339633345, + "max_y": 5647.184007701401, + "center": [ + 2029.679792257495, + 5647.184007701401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5647.184007701401 + ], + [ + 1998.052244881645, + 5647.184007701401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.052244881637, + "min_y": 5650.586366809913, + "max_x": 2061.307339633345, + "max_y": 5650.586366809913, + "center": [ + 2029.679792257491, + 5650.586366809913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2061.307339633345, + 5650.586366809913 + ], + [ + 1998.052244881637, + 5650.586366809913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5766.730480580527, + "max_x": 1977.788446179667, + "max_y": 5769.716830848242, + "center": [ + 1953.5990090111695, + 5768.223655714384 + ] + }, + "raw_value": "%%UEQUIPMENT IDENDIFICATION", + "clean_value": "EQUIPMENT IDENDIFICATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EADD4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5757.436059471841, + "max_x": 1941.105170907514, + "max_y": 5759.675822172628, + "center": [ + 1940.433242097278, + 5758.555940822234 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5757.436059471841, + "max_x": 1962.6068928350676, + "max_y": 5759.675822172628, + "center": [ + 1958.5753199736514, + 5758.555940822234 + ] + }, + "raw_value": "COLUMN", + "clean_value": "COLUMN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5752.598614506833, + "max_x": 1941.105170907514, + "max_y": 5754.8383772076195, + "center": [ + 1940.433242097278, + 5753.718495857226 + ] + }, + "raw_value": "K", + "clean_value": "K", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5752.598614506833, + "max_x": 1967.982323316956, + "max_y": 5754.8383772076195, + "center": [ + 1961.2630352145954, + 5753.718495857226 + ] + }, + "raw_value": "COMPRESSOR", + "clean_value": "COMPRESSOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5743.374328932973, + "max_x": 1941.105170907514, + "max_y": 5745.61409163376, + "center": [ + 1940.433242097278, + 5744.494210283367 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADD9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5743.374328932973, + "max_x": 1973.3577537988442, + "max_y": 5745.61409163376, + "center": [ + 1963.9507504555395, + 5744.494210283367 + ] + }, + "raw_value": "HEAT EXCHANGER", + "clean_value": "HEAT EXCHANGER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5747.652152698119, + "max_x": 1941.105170907514, + "max_y": 5749.891915398905, + "center": [ + 1940.433242097278, + 5748.772034048512 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5747.652152698119, + "max_x": 1969.326180937428, + "max_y": 5749.891915398905, + "center": [ + 1961.9349640248315, + 5748.772034048512 + ] + }, + "raw_value": "FILTER, FAN", + "clean_value": "FILTER, FAN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5739.476034712971, + "max_x": 1941.105170907514, + "max_y": 5741.715797413758, + "center": [ + 1940.433242097278, + 5740.595916063365 + ] + }, + "raw_value": "P", + "clean_value": "P", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5739.476034712971, + "max_x": 1959.9191775941233, + "max_y": 5741.715797413758, + "center": [ + 1957.2314623531793, + 5740.595916063365 + ] + }, + "raw_value": "PUMP", + "clean_value": "PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5731.198037742765, + "max_x": 1941.105170907514, + "max_y": 5733.437800443552, + "center": [ + 1940.433242097278, + 5732.317919093159 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADDF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5731.198037742765, + "max_x": 1959.9191775941233, + "max_y": 5733.437800443552, + "center": [ + 1957.2314623531793, + 5732.317919093159 + ] + }, + "raw_value": "TANK", + "clean_value": "TANK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5727.278351610057, + "max_x": 1941.105170907514, + "max_y": 5729.518114310844, + "center": [ + 1940.433242097278, + 5728.3982329604505 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5727.278351610057, + "max_x": 1959.9191775941233, + "max_y": 5729.518114310844, + "center": [ + 1957.2314623531793, + 5728.3982329604505 + ] + }, + "raw_value": "DRUM", + "clean_value": "DRUM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5723.358665477345, + "max_x": 1941.105170907514, + "max_y": 5725.598428178132, + "center": [ + 1940.433242097278, + 5724.478546827739 + ] + }, + "raw_value": "M", + "clean_value": "M", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5723.358665477345, + "max_x": 1974.7016114193164, + "max_y": 5725.598428178132, + "center": [ + 1964.6226792657758, + 5724.478546827739 + ] + }, + "raw_value": "MIXER, AGITATOR", + "clean_value": "MIXER, AGITATOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5719.595484656481, + "max_x": 1942.4490285279862, + "max_y": 5721.835247357268, + "center": [ + 1941.105170907514, + 5720.715366006874 + ] + }, + "raw_value": "CH", + "clean_value": "CH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5719.595484656481, + "max_x": 1963.9507504555395, + "max_y": 5721.835247357268, + "center": [ + 1959.2472487838872, + 5720.715366006874 + ] + }, + "raw_value": "CHILLER", + "clean_value": "CHILLER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5715.735645009788, + "max_x": 1941.105170907514, + "max_y": 5717.9754077105745, + "center": [ + 1940.433242097278, + 5716.855526360181 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5715.735645009788, + "max_x": 1963.9507504555395, + "max_y": 5717.9754077105745, + "center": [ + 1959.2472487838872, + 5716.855526360181 + ] + }, + "raw_value": "REACTOR", + "clean_value": "REACTOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5711.972464188924, + "max_x": 1942.4490285279862, + "max_y": 5714.212226889711, + "center": [ + 1941.105170907514, + 5713.092345539318 + ] + }, + "raw_value": "SC", + "clean_value": "SC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5711.972464188924, + "max_x": 1965.2946080760116, + "max_y": 5714.212226889711, + "center": [ + 1959.9191775941233, + 5713.092345539318 + ] + }, + "raw_value": "SCRUBBER", + "clean_value": "SCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADEA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5708.112624542231, + "max_x": 1942.4490285279862, + "max_y": 5710.352387243018, + "center": [ + 1941.105170907514, + 5709.232505892624 + ] + }, + "raw_value": "CT", + "clean_value": "CT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADEB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5708.112624542231, + "max_x": 1972.013896178372, + "max_y": 5710.352387243018, + "center": [ + 1963.2788216453037, + 5709.232505892624 + ] + }, + "raw_value": "COOLING TOWER", + "clean_value": "COOLING TOWER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.03371176378, + "min_y": 5782.898718526593, + "max_x": 1660.03371176378, + "max_y": 5785.167148146046, + "center": [ + 1660.03371176378, + 5784.03293333632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.03371176378, + 5785.167148146046 + ], + [ + 1660.03371176378, + 5782.898718526593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591934, + "min_y": 5782.898718526593, + "max_x": 1663.670889591934, + "max_y": 5785.167148146046, + "center": [ + 1663.670889591934, + 5784.03293333632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591934, + 5785.167148146046 + ], + [ + 1663.670889591934, + 5782.898718526593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADEE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5782.913051985929, + "max_x": 1705.06947673174, + "max_y": 5785.152814686716, + "center": [ + 1689.6151140963111, + 5784.0329333363225 + ] + }, + "raw_value": "TEFLON LINED PLUG VALVE", + "clean_value": "TEFLON LINED PLUG VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717848, + "min_y": 5784.032933336321, + "max_x": 1660.03371176378, + "max_y": 5784.032933336321, + "center": [ + 1657.511163740814, + 5784.032933336321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.03371176378, + 5784.032933336321 + ], + [ + 1654.988615717848, + 5784.032933336321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.670889591934, + "min_y": 5784.032933336321, + "max_x": 1668.337517286311, + "max_y": 5784.032933336321, + "center": [ + 1666.0042034391224, + 5784.032933336321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.670889591934, + 5784.032933336321 + ], + [ + 1668.337517286311, + 5784.032933336321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF1", + "entity_type": "LINE", + "layer": "CONTORNO", + "bbox": { + "min_x": 1660.03371176378, + "min_y": 5784.434657974276, + "max_x": 1661.208179329032, + "max_y": 5785.167148146046, + "center": [ + 1660.620945546406, + 5784.800903060161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.03371176378, + 5785.167148146046 + ], + [ + 1661.208179329032, + 5784.434657974276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF2", + "entity_type": "LINE", + "layer": "CONTORNO", + "bbox": { + "min_x": 1660.03371176378, + "min_y": 5782.898718526593, + "max_x": 1661.335813060599, + "max_y": 5783.710811112873, + "center": [ + 1660.6847624121897, + 5783.3047648197335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.03371176378, + 5782.898718526593 + ], + [ + 1661.335813060599, + 5783.710811112873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF3", + "entity_type": "LINE", + "layer": "CONTORNO", + "bbox": { + "min_x": 1662.368788295116, + "min_y": 5782.898718526593, + "max_x": 1663.670889591934, + "max_y": 5783.710811112873, + "center": [ + 1663.019838943525, + 5783.3047648197335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.368788295116, + 5783.710811112873 + ], + [ + 1663.670889591934, + 5782.898718526593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF4", + "entity_type": "LINE", + "layer": "CONTORNO", + "bbox": { + "min_x": 1662.496422026684, + "min_y": 5784.434657974276, + "max_x": 1663.670889591934, + "max_y": 5785.167148146046, + "center": [ + 1663.083655809309, + 5784.800903060161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.496422026684, + 5784.434657974276 + ], + [ + 1663.670889591934, + 5785.167148146046 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF5", + "entity_type": "LWPOLYLINE", + "layer": "CONTORNO", + "bbox": { + "min_x": 1661.465661113252, + "min_y": 5783.531771628964, + "max_x": 1662.238940242465, + "max_y": 5784.665986438692, + "center": [ + 1661.8523006778587, + 5784.098879033828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.238940242465, + 5784.665986438692 + ], + [ + 1662.038947569589, + 5783.531771628964 + ], + [ + 1661.665653786125, + 5783.531771628964 + ], + [ + 1661.465661113252, + 5784.665986438692 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.015162775346, + "min_y": 5693.636347877239, + "max_x": 1661.015162775346, + "max_y": 5695.904777496692, + "center": [ + 1661.015162775346, + 5694.770562686966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.015162775346, + 5693.636347877239 + ], + [ + 1661.015162775346, + 5695.904777496692 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.761750342275, + "min_y": 5693.636347877239, + "max_x": 1661.761750342275, + "max_y": 5695.904777496692, + "center": [ + 1661.761750342275, + 5694.770562686966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.761750342275, + 5693.636347877239 + ], + [ + 1661.761750342275, + 5695.904777496692 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5693.579744870032, + "max_x": 1661.385953222563, + "max_y": 5696.231074305718, + "center": [ + 1661.385953222563, + 5694.905409587875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5696.231074305718 + ], + [ + 1661.385953222563, + 5693.579744870032 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADF9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1660.7782529015408, + "min_y": 5696.231074305722, + "max_x": 1661.9936535435854, + "max_y": 5697.446474947767, + "center": [ + 1661.385953222563, + 5696.838774626744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5696.838774626744 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADFB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1660.7782529015408, + "min_y": 5697.446474947765, + "max_x": 1661.9936535435854, + "max_y": 5698.661875589809, + "center": [ + 1661.385953222563, + 5698.054175268787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5698.054175268787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.482673345233, + "min_y": 5694.770562686965, + "max_x": 1661.015162775346, + "max_y": 5694.770562686965, + "center": [ + 1659.7489180602895, + 5694.770562686965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.482673345233, + 5694.770562686965 + ], + [ + 1661.015162775346, + 5694.770562686965 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.761750342275, + "min_y": 5694.770562686965, + "max_x": 1664.078168699506, + "max_y": 5694.770562686965, + "center": [ + 1662.9199595208906, + 5694.770562686965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.761750342275, + 5694.770562686965 + ], + [ + 1664.078168699506, + 5694.770562686965 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.015162775346, + "min_y": 5699.3116614482, + "max_x": 1661.015162775346, + "max_y": 5701.580091067654, + "center": [ + 1661.015162775346, + 5700.445876257927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.015162775346, + 5699.3116614482 + ], + [ + 1661.015162775346, + 5701.580091067654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EADFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.761750342275, + "min_y": 5699.3116614482, + "max_x": 1661.761750342275, + "max_y": 5701.580091067654, + "center": [ + 1661.761750342275, + 5700.445876257927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.761750342275, + 5699.3116614482 + ], + [ + 1661.761750342275, + 5701.580091067654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5699.255058440992, + "max_x": 1661.385953222563, + "max_y": 5701.906387876679, + "center": [ + 1661.385953222563, + 5700.580723158835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5701.906387876679 + ], + [ + 1661.385953222563, + 5699.255058440992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE01", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1660.7782529015408, + "min_y": 5701.906387876683, + "max_x": 1661.9936535435854, + "max_y": 5703.121788518727, + "center": [ + 1661.385953222563, + 5702.514088197705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5702.514088197705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.482673345233, + "min_y": 5700.445876257926, + "max_x": 1661.015162775346, + "max_y": 5700.445876257926, + "center": [ + 1659.7489180602895, + 5700.445876257926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.482673345233, + 5700.445876257926 + ], + [ + 1661.015162775346, + 5700.445876257926 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.761750342275, + "min_y": 5700.445876257926, + "max_x": 1664.078168699506, + "max_y": 5700.445876257926, + "center": [ + 1662.9199595208906, + 5700.445876257926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.761750342275, + 5700.445876257926 + ], + [ + 1664.078168699506, + 5700.445876257926 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE05", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5699.325994907534, + "max_x": 1680.4136921079485, + "max_y": 5701.56575760832, + "center": [ + 1677.0540480567684, + 5700.445876257927 + ] + }, + "raw_value": "BLIND", + "clean_value": "BLIND", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE06", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1663.374888124704, + "min_y": 5668.715904663544, + "max_x": 1664.917403208006, + "max_y": 5668.715904663544, + "center": [ + 1664.146145666355, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.917403208006, + 5668.715904663544 + ], + [ + 1663.374888124704, + 5668.715904663544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE07", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1657.819647978168, + "min_y": 5668.715904663544, + "max_x": 1659.3769117038, + "max_y": 5668.715904663544, + "center": [ + 1658.598279840984, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.3769117038, + 5668.715904663544 + ], + [ + 1657.819647978168, + 5668.715904663544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE08", + "entity_type": "LWPOLYLINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.3769117038, + "min_y": 5666.716916453093, + "max_x": 1663.374888124704, + "max_y": 5670.714892873997, + "center": [ + 1661.375899914252, + 5668.715904663545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.3769117038, + 5670.714892873997 + ], + [ + 1663.374888124704, + 5670.714892873997 + ], + [ + 1663.374888124704, + 5666.716916453093 + ], + [ + 1659.3769117038, + 5666.716916453093 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE09", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.329154788637, + "min_y": 5667.319256671429, + "max_x": 1661.9283453569988, + "max_y": 5669.984574285365, + "center": [ + 1661.1287500728179, + 5668.651915478396 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1657.819647978168, + "min_y": 5667.596290550205, + "max_x": 1657.819647978168, + "max_y": 5669.835518776884, + "center": [ + 1657.819647978168, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.819647978168, + 5667.596290550205 + ], + [ + 1657.819647978168, + 5669.835518776884 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1657.153318574682, + "min_y": 5667.596290550205, + "max_x": 1657.153318574682, + "max_y": 5669.835518776884, + "center": [ + 1657.153318574682, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.153318574682, + 5667.596290550205 + ], + [ + 1657.153318574682, + 5669.835518776884 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1664.932151850332, + "min_y": 5667.596290550205, + "max_x": 1664.932151850332, + "max_y": 5669.835518776884, + "center": [ + 1664.932151850332, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.932151850332, + 5667.596290550205 + ], + [ + 1664.932151850332, + 5669.835518776884 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1665.598481253816, + "min_y": 5667.596290550205, + "max_x": 1665.598481253816, + "max_y": 5669.835518776884, + "center": [ + 1665.598481253816, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.598481253816, + 5667.596290550205 + ], + [ + 1665.598481253816, + 5669.835518776884 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1652.099619066612, + "min_y": 5668.715904663544, + "max_x": 1657.153318574682, + "max_y": 5668.715904663544, + "center": [ + 1654.626468820647, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.153318574682, + 5668.715904663544 + ], + [ + 1652.099619066612, + 5668.715904663544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.598481253816, + "min_y": 5668.715904663544, + "max_x": 1671.429944343344, + "max_y": 5668.715904663544, + "center": [ + 1668.51421279858, + 5668.715904663544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.598481253816, + 5668.715904663544 + ], + [ + 1671.429944343344, + 5668.715904663544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE10", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1656.186729503547, + "min_y": 5674.315311415365, + "max_x": 1657.783815899238, + "max_y": 5674.315311415369, + "center": [ + 1656.9852727013927, + 5674.3153114153665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.186729503547, + 5674.315311415365 + ], + [ + 1657.783815899238, + 5674.315311415369 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE11", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1664.98809054589, + "min_y": 5674.315311415389, + "max_x": 1666.585176941583, + "max_y": 5674.315311415394, + "center": [ + 1665.7866337437365, + 5674.315311415392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.98809054589, + 5674.315311415389 + ], + [ + 1666.585176941583, + 5674.315311415394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE12", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1655.511245514414, + "min_y": 5673.180315115398, + "max_x": 1655.511245514421, + "max_y": 5675.450307715471, + "center": [ + 1655.5112455144176, + 5674.315311415435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.511245514421, + 5675.450307715471 + ], + [ + 1655.511245514414, + 5673.180315115398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE13", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1656.186729503544, + "min_y": 5673.180315115349, + "max_x": 1656.186729503551, + "max_y": 5675.450307715422, + "center": [ + 1656.1867295035477, + 5674.315311415386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1656.186729503551, + 5675.450307715422 + ], + [ + 1656.186729503544, + 5673.180315115349 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE14", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1666.585176941579, + "min_y": 5673.180315115427, + "max_x": 1666.585176941584, + "max_y": 5675.4503077155, + "center": [ + 1666.5851769415815, + 5674.315311415463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.585176941584, + 5675.4503077155 + ], + [ + 1666.585176941579, + 5673.180315115427 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE15", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1667.260660930709, + "min_y": 5673.180315115377, + "max_x": 1667.260660930714, + "max_y": 5675.450307715451, + "center": [ + 1667.2606609307115, + 5674.315311415414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.260660930714, + 5675.450307715451 + ], + [ + 1667.260660930709, + 5673.180315115377 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE16", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1658.735152070633, + "min_y": 5673.496398177949, + "max_x": 1662.766724932049, + "max_y": 5675.17622020354, + "center": [ + 1660.750938501341, + 5674.336309190745 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE17", + "entity_type": "LWPOLYLINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1657.783815899238, + "min_y": 5673.180315115427, + "max_x": 1664.98809054589, + "max_y": 5675.450307715422, + "center": [ + 1661.385953222564, + 5674.315311415425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.783815899238, + 5675.450307715422 + ], + [ + 1664.98809054589, + 5675.450307715422 + ], + [ + 1664.98809054589, + 5673.180315115427 + ], + [ + 1657.783815899238, + 5673.180315115427 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1651.778307679774, + "min_y": 5674.315311415434, + "max_x": 1655.511245514419, + "max_y": 5674.315311415434, + "center": [ + 1653.6447765970966, + 5674.315311415434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.778307679774, + 5674.315311415434 + ], + [ + 1655.511245514419, + 5674.315311415434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1667.260660930711, + "min_y": 5674.315311415414, + "max_x": 1670.993598765356, + "max_y": 5674.315311415414, + "center": [ + 1669.1271298480335, + 5674.315311415414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.260660930711, + 5674.315311415414 + ], + [ + 1670.993598765356, + 5674.315311415414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE1A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5856.825221111892, + "max_x": 1701.0379038703236, + "max_y": 5859.064983812678, + "center": [ + 1687.5993276656027, + 5857.945102462285 + ] + }, + "raw_value": "CONTINUATION OF LINE", + "clean_value": "CONTINUATION OF LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE1B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460882, + "min_y": 5854.144467032701, + "max_x": 1701.0379038703236, + "max_y": 5856.384229733488, + "center": [ + 1687.5993276656027, + 5855.264348383094 + ] + }, + "raw_value": "OR REFERENCE DWG NO.", + "clean_value": "OR REFERENCE DWG NO.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE1C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1660.0561838326391, + "min_y": 5761.56241481258, + "max_x": 1663.5479714267328, + "max_y": 5765.0542024066735, + "center": [ + 1661.802077629686, + 5763.308308609627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629686, + 5763.308308609627 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.096235268525, + "min_y": 5763.680124410019, + "max_x": 1663.507919990854, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296894, + 5763.680124410019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.096235268525, + 5763.680124410019 + ], + [ + 1663.507919990854, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1659.983488715614, + "max_y": 5762.781914117532, + "center": [ + 1659.983488715614, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1659.983488715614, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629686, + "min_y": 5761.647699307806, + "max_x": 1661.802077629689, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296876, + 5762.663911858912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5761.647699307806 + ], + [ + 1661.802077629686, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.620666543765, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1663.620666543765, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.620666543765, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5760.51348449808 + ], + [ + 1663.620666543765, + 5762.781914117532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.096235268525, + "min_y": 5763.680124410019, + "max_x": 1663.507919990854, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296894, + 5763.680124410019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.096235268525, + 5763.680124410019 + ], + [ + 1663.507919990854, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1659.983488715614, + "max_y": 5762.781914117532, + "center": [ + 1659.983488715614, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1659.983488715614, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629686, + "min_y": 5761.647699307806, + "max_x": 1661.802077629689, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296876, + 5762.663911858912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5761.647699307806 + ], + [ + 1661.802077629686, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.620666543765, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1663.620666543765, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.620666543765, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5760.51348449808 + ], + [ + 1663.620666543765, + 5762.781914117532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE29", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1659.891630103972, + "min_y": 5862.42462786386, + "max_x": 1661.852300677857, + "max_y": 5862.42462786386, + "center": [ + 1660.8719653909145, + 5862.42462786386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.852300677857, + 5862.42462786386 + ], + [ + 1659.891630103972, + 5862.42462786386 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1655.125439887696, + "min_y": 5851.470610676519, + "max_x": 1668.579161468019, + "max_y": 5851.470610676519, + "center": [ + 1661.8523006778576, + 5851.470610676519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.125439887696, + 5851.470610676519 + ], + [ + 1668.579161468019, + 5851.470610676519 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1700.291316303395, + "min_y": 5827.708306001664, + "max_x": 1723.1368958514204, + "max_y": 5829.948068702451, + "center": [ + 1711.7141060774077, + 5828.828187352057 + ] + }, + "raw_value": "(HOSE CONNECTION)", + "clean_value": "(HOSE CONNECTION)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1700.291316303395, + "min_y": 5833.307712753632, + "max_x": 1719.1053229900042, + "max_y": 5835.547475454418, + "center": [ + 1709.6983196466995, + 5834.427594104025 + ] + }, + "raw_value": "(BLIND FLANGE)", + "clean_value": "(BLIND FLANGE)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5652.520990027204, + "max_x": 1776.0910407594583, + "max_y": 5654.760752727991, + "center": [ + 1764.6682509854456, + 5653.640871377597 + ] + }, + "raw_value": "HEAT CONSERVATION", + "clean_value": "HEAT CONSERVATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5647.92530386418, + "max_x": 1780.1226136208745, + "max_y": 5650.165066564967, + "center": [ + 1766.6840374161538, + 5649.045185214573 + ] + }, + "raw_value": "PERSONNEL PROTECTION", + "clean_value": "PERSONNEL PROTECTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE2F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5643.840285090687, + "max_x": 1776.0910407594583, + "max_y": 5646.080047791474, + "center": [ + 1764.6682509854456, + 5644.96016644108 + ] + }, + "raw_value": "COLD CONSERVATION", + "clean_value": "COLD CONSERVATION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE30", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5639.282110842805, + "max_x": 1774.7471831389862, + "max_y": 5641.521873543592, + "center": [ + 1763.9963221752096, + 5640.401992193199 + ] + }, + "raw_value": "ELECTRIC TRACING", + "clean_value": "ELECTRIC TRACING", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE31", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5634.653361217736, + "max_x": 1770.71561027757, + "max_y": 5636.893123918523, + "center": [ + 1761.9805357445016, + 5635.77324256813 + ] + }, + "raw_value": "STEAM TRACING", + "clean_value": "STEAM TRACING", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE32", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1753.245461211433, + "min_y": 5630.2727784041, + "max_x": 1758.6208916933213, + "max_y": 5632.512541104887, + "center": [ + 1755.9331764523772, + 5631.392659754493 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE33", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.4754884443762, + "min_y": 5630.358932623128, + "max_x": 1835.3988919548358, + "max_y": 5636.282336133588, + "center": [ + 1832.437190199606, + 5633.320634378358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5633.320634378358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE34", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1835.179004024061, + "min_y": 5632.200753027964, + "max_x": 1836.17012803425, + "max_y": 5634.440515728751, + "center": [ + 1835.6745660291554, + 5633.320634378358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.179004024061, + 5634.440515728751 + ], + [ + 1836.17012803425, + 5634.440515728751 + ], + [ + 1836.17012803425, + 5632.200753027964 + ], + [ + 1835.179004024061, + 5632.200753027964 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE35", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1828.704252364961, + "min_y": 5632.200753027964, + "max_x": 1829.695376375152, + "max_y": 5634.440515728751, + "center": [ + 1829.1998143700564, + 5633.320634378358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.695376375152, + 5632.200753027964 + ], + [ + 1828.704252364961, + 5632.200753027964 + ], + [ + 1828.704252364961, + 5634.440515728751 + ], + [ + 1829.695376375152, + 5634.440515728751 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE36", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5631.605813118238, + "max_x": 1858.603982016838, + "max_y": 5633.845575819025, + "center": [ + 1849.8689074837694, + 5632.725694468631 + ] + }, + "raw_value": "METERING PUMP", + "clean_value": "METERING PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE38", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5715.698076644885, + "max_x": 1791.1008076990774, + "max_y": 5717.937839345672, + "center": [ + 1771.6148722022322, + 5716.817957995278 + ] + }, + "raw_value": "SPPS380 (Black Pipe Sch. 40S)", + "clean_value": "SPPS380 (Black Pipe Sch. 40S)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE3D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5612.457621412265, + "max_x": 1684.8613893764907, + "max_y": 5614.697384113052, + "center": [ + 1679.4859588946024, + 5613.577502762659 + ] + }, + "raw_value": "THREADED", + "clean_value": "THREADED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE3E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1663.986206199906, + "min_y": 5612.443287952935, + "max_x": 1663.986206199906, + "max_y": 5614.711717572387, + "center": [ + 1663.986206199906, + 5613.5775027626605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5612.443287952935 + ], + [ + 1663.986206199906, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE3F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5612.443287952935, + "max_x": 1660.349028371751, + "max_y": 5614.711717572387, + "center": [ + 1660.349028371751, + 5613.5775027626605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.349028371751, + 5612.443287952935 + ], + [ + 1660.349028371751, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE40", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5613.938597647575, + "max_x": 1663.986206199906, + "max_y": 5614.711717572387, + "center": [ + 1663.366399743292, + 5614.325157609981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5614.711717572387 + ], + [ + 1662.746593286678, + 5613.938597647575 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE41", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5612.443287952935, + "max_x": 1663.986206199906, + "max_y": 5613.216407877748, + "center": [ + 1663.366399743292, + 5612.829847915342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5612.443287952935 + ], + [ + 1662.746593286678, + 5613.216407877748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE42", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5612.895151881177, + "max_x": 1662.8499681673177, + "max_y": 5614.259853644149, + "center": [ + 1662.167617285832, + 5613.577502762663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.167617285832, + 5613.577502762663 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE43", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5613.938597647575, + "max_x": 1661.588641284987, + "max_y": 5614.711717572387, + "center": [ + 1660.968834828369, + 5614.325157609981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5613.938597647575 + ], + [ + 1660.349028371751, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE44", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5612.443287952935, + "max_x": 1661.588641284987, + "max_y": 5613.216407877748, + "center": [ + 1660.968834828369, + 5612.829847915342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5613.216407877748 + ], + [ + 1660.349028371751, + 5612.443287952935 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE45", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 1659.6024408048254, + "min_y": 5613.204208979197, + "max_x": 1660.3490283717545, + "max_y": 5613.950796546126, + "center": [ + 1659.97573458829, + 5613.577502762661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.97573458829, + 5613.577502762661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE46", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 1663.9862061999054, + "min_y": 5613.204208979197, + "max_x": 1664.7327937668344, + "max_y": 5613.950796546126, + "center": [ + 1664.35949998337, + 5613.577502762661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.35949998337, + 5613.577502762661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE47", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1663.986206199906, + "min_y": 5612.443287952935, + "max_x": 1663.986206199906, + "max_y": 5614.711717572387, + "center": [ + 1663.986206199906, + 5613.5775027626605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5612.443287952935 + ], + [ + 1663.986206199906, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE48", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5612.443287952935, + "max_x": 1660.349028371751, + "max_y": 5614.711717572387, + "center": [ + 1660.349028371751, + 5613.5775027626605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.349028371751, + 5612.443287952935 + ], + [ + 1660.349028371751, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE49", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5613.938597647575, + "max_x": 1663.986206199906, + "max_y": 5614.711717572387, + "center": [ + 1663.366399743292, + 5614.325157609981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5614.711717572387 + ], + [ + 1662.746593286678, + 5613.938597647575 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5612.443287952935, + "max_x": 1663.986206199906, + "max_y": 5613.216407877748, + "center": [ + 1663.366399743292, + 5612.829847915342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5612.443287952935 + ], + [ + 1662.746593286678, + 5613.216407877748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5612.895151881177, + "max_x": 1662.8499681673177, + "max_y": 5614.259853644149, + "center": [ + 1662.167617285832, + 5613.577502762663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.167617285832, + 5613.577502762663 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5613.938597647575, + "max_x": 1661.588641284987, + "max_y": 5614.711717572387, + "center": [ + 1660.968834828369, + 5614.325157609981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5613.938597647575 + ], + [ + 1660.349028371751, + 5614.711717572387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371751, + "min_y": 5612.443287952935, + "max_x": 1661.588641284987, + "max_y": 5613.216407877748, + "center": [ + 1660.968834828369, + 5612.829847915342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5613.216407877748 + ], + [ + 1660.349028371751, + 5612.443287952935 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4E", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 1659.6024408048254, + "min_y": 5613.204208979197, + "max_x": 1660.3490283717545, + "max_y": 5613.950796546126, + "center": [ + 1659.97573458829, + 5613.577502762661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.97573458829, + 5613.577502762661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE4F", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 1663.9862061999054, + "min_y": 5613.204208979197, + "max_x": 1664.7327937668344, + "max_y": 5613.950796546126, + "center": [ + 1664.35949998337, + 5613.577502762661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.35949998337, + 5613.577502762661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE50", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1663.986206199906, + "min_y": 5606.843881200967, + "max_x": 1663.986206199906, + "max_y": 5609.11231082042, + "center": [ + 1663.986206199906, + 5607.978096010694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5606.843881200967 + ], + [ + 1663.986206199906, + 5609.11231082042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE51", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5606.843881200967, + "max_x": 1660.349028371754, + "max_y": 5609.11231082042, + "center": [ + 1660.349028371754, + 5607.978096010694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.349028371754, + 5606.843881200967 + ], + [ + 1660.349028371754, + 5609.11231082042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE52", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5608.339190895606, + "max_x": 1663.986206199906, + "max_y": 5609.11231082042, + "center": [ + 1663.366399743292, + 5608.725750858013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5609.11231082042 + ], + [ + 1662.746593286678, + 5608.339190895606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE53", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5606.843881200967, + "max_x": 1663.986206199906, + "max_y": 5607.617001125781, + "center": [ + 1663.366399743292, + 5607.230441163374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5606.843881200967 + ], + [ + 1662.746593286678, + 5607.617001125781 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE54", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5607.29574512921, + "max_x": 1662.8499681673177, + "max_y": 5608.660446892182, + "center": [ + 1662.167617285832, + 5607.978096010696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.167617285832, + 5607.978096010696 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE55", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5608.339190895606, + "max_x": 1661.588641284987, + "max_y": 5609.11231082042, + "center": [ + 1660.9688348283705, + 5608.725750858013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5608.339190895606 + ], + [ + 1660.349028371754, + 5609.11231082042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE56", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5606.843881200967, + "max_x": 1661.588641284987, + "max_y": 5607.617001125781, + "center": [ + 1660.9688348283705, + 5607.230441163374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5607.617001125781 + ], + [ + 1660.349028371754, + 5606.843881200967 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE57", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1659.602440804825, + "min_y": 5606.843881200967, + "max_x": 1659.602440804825, + "max_y": 5609.11231082042, + "center": [ + 1659.602440804825, + 5607.978096010694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.602440804825, + 5606.843881200967 + ], + [ + 1659.602440804825, + 5609.11231082042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE58", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1664.732793766834, + "min_y": 5606.843881200967, + "max_x": 1664.732793766834, + "max_y": 5609.11231082042, + "center": [ + 1664.732793766834, + 5607.978096010694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.732793766834, + 5606.843881200967 + ], + [ + 1664.732793766834, + 5609.11231082042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.732793766834, + "min_y": 5613.577502762661, + "max_x": 1669.399421461213, + "max_y": 5613.577502762661, + "center": [ + 1667.0661076140236, + 5613.577502762661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.732793766834, + 5613.577502762661 + ], + [ + 1669.399421461213, + 5613.577502762661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5613.577502762659, + "max_x": 1659.602440804825, + "max_y": 5613.577502762659, + "center": [ + 1657.079892781858, + 5613.577502762659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.602440804825, + 5613.577502762659 + ], + [ + 1654.557344758891, + 5613.577502762659 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5607.978096010691, + "max_x": 1659.602440804825, + "max_y": 5607.978096010691, + "center": [ + 1657.079892781858, + 5607.978096010691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.602440804825, + 5607.978096010691 + ], + [ + 1654.557344758891, + 5607.978096010691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.732793766834, + "min_y": 5607.978096010691, + "max_x": 1669.399421461213, + "max_y": 5607.978096010691, + "center": [ + 1667.0661076140236, + 5607.978096010691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.732793766834, + 5607.978096010691 + ], + [ + 1669.399421461213, + 5607.978096010691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE5D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5606.858214660299, + "max_x": 1683.5175317560186, + "max_y": 5609.097977361086, + "center": [ + 1678.8140300843663, + 5607.978096010693 + ] + }, + "raw_value": "FLANGED", + "clean_value": "FLANGED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE5E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2015.852195849516, + "min_y": 5587.68523400073, + "max_x": 2040.6885520710446, + "max_y": 5589.984896613834, + "center": [ + 2028.2703739602803, + 5588.835065307282 + ] + }, + "raw_value": "SYMBOL AND LEGENDS", + "clean_value": "SYMBOL AND LEGENDS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE61", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1799.68357142243, + "min_y": 5858.95528307439, + "max_x": 1803.0432154736102, + "max_y": 5860.821751991712, + "center": [ + 1801.3633934480201, + 5859.888517533051 + ] + }, + "raw_value": "(6)", + "clean_value": "(6)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.705311095869, + "min_y": 5861.973277291813, + "max_x": 1803.305890111381, + "max_y": 5861.973277291813, + "center": [ + 1801.505600603625, + 5861.973277291813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.705311095869, + 5861.973277291813 + ], + [ + 1803.305890111381, + 5861.973277291813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.165501810011, + "min_y": 5834.797359097077, + "max_x": 1766.0110813580363, + "max_y": 5837.037121797864, + "center": [ + 1754.5882915840236, + 5835.91724044747 + ] + }, + "raw_value": "(5) FLANGE RATING", + "clean_value": "(5) FLANGE RATING", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE64", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1647.212080413621, + "min_y": 5869.531254295882, + "max_x": 1692.0073344293571, + "max_y": 5872.517604563597, + "center": [ + 1669.609707421489, + 5871.024429429739 + ] + }, + "raw_value": "%%ULINE AND VALVE SYMBOLS", + "clean_value": "LINE AND VALVE SYMBOLS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE65", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1647.161857365454, + "min_y": 5620.77529742487, + "max_x": 1695.540731702449, + "max_y": 5623.761647692585, + "center": [ + 1671.3512945339514, + 5622.268472558728 + ] + }, + "raw_value": "%%UVALVE CONNECTION SYMBOLS", + "clean_value": "VALVE CONNECTION SYMBOLS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.950673671031, + "min_y": 5678.350544480054, + "max_x": 1768.4523955985842, + "max_y": 5680.590307180841, + "center": [ + 1757.7015346348076, + 5679.470425830447 + ] + }, + "raw_value": "%%uFLANGE RATING", + "clean_value": "%%uFLANGE RATING", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5672.873691089346, + "max_x": 1744.140449739247, + "max_y": 5675.113453790133, + "center": [ + 1743.468520929011, + 5673.993572439739 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5668.416307559673, + "max_x": 1744.140449739247, + "max_y": 5670.65607026046, + "center": [ + 1743.468520929011, + 5669.536188910067 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE69", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5672.873691089346, + "max_x": 1758.8482248077476, + "max_y": 5675.113453790133, + "center": [ + 1755.4885807565674, + 5673.993572439739 + ] + }, + "raw_value": "KS10K", + "clean_value": "KS10K", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5668.416307559673, + "max_x": 1758.8482248077476, + "max_y": 5670.65607026046, + "center": [ + 1755.4885807565674, + 5669.536188910067 + ] + }, + "raw_value": "KS20K", + "clean_value": "KS20K", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE6B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.671817891847, + "min_y": 5660.244725767918, + "max_x": 1767.7162109438063, + "max_y": 5663.231076035633, + "center": [ + 1750.6940144178266, + 5661.737900901775 + ] + }, + "raw_value": "%%UINSULATION CODES", + "clean_value": "INSULATION CODES", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAE6C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5748.28420947554, + "max_x": 1747.0981743663563, + "max_y": 5750.523972176326, + "center": [ + 1745.082387935648, + 5749.404090825933 + ] + }, + "raw_value": "HOS", + "clean_value": "HOS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5748.153279867195, + "max_x": 1785.5360714858532, + "max_y": 5750.393042567982, + "center": [ + 1776.1290681425485, + 5749.2731612175885 + ] + }, + "raw_value": "HOT OIL SUPPLY", + "clean_value": "HOT OIL SUPPLY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE6E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1831.2913888935514, + "min_y": 5608.801802100467, + "max_x": 1836.0849862183109, + "max_y": 5613.595399425226, + "center": [ + 1833.688187555931, + 5611.198600762847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.688187555931, + 5611.198600762847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE6F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1831.2913888935514, + "min_y": 5606.40500343809, + "max_x": 1836.0849862183109, + "max_y": 5611.198600762848, + "center": [ + 1833.688187555931, + 5608.801802100469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.688187555931, + 5608.801802100469 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE70", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1830.267513736804, + "min_y": 5606.405003438089, + "max_x": 1833.688187555931, + "max_y": 5613.376240287996, + "center": [ + 1831.9778506463676, + 5609.890621863042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.688187555931, + 5606.405003438089 + ], + [ + 1831.760688870662, + 5606.405003438089 + ], + [ + 1830.267513736804, + 5607.898178571947 + ], + [ + 1830.267513736804, + 5613.376240287996 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE71", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5607.409782249877, + "max_x": 1854.5724091554218, + "max_y": 5609.649544950664, + "center": [ + 1847.8531210530614, + 5608.52966360027 + ] + }, + "raw_value": "OGDEN PUMP", + "clean_value": "OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE72", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1663.986206199906, + "min_y": 5601.244474448998, + "max_x": 1663.986206199906, + "max_y": 5603.512904068452, + "center": [ + 1663.986206199906, + 5602.378689258725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5601.244474448998 + ], + [ + 1663.986206199906, + 5603.512904068452 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE73", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5601.244474448998, + "max_x": 1660.349028371754, + "max_y": 5603.512904068452, + "center": [ + 1660.349028371754, + 5602.378689258725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.349028371754, + 5601.244474448998 + ], + [ + 1660.349028371754, + 5603.512904068452 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE74", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5602.739784143637, + "max_x": 1663.986206199906, + "max_y": 5603.512904068452, + "center": [ + 1663.366399743292, + 5603.126344106045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5603.512904068452 + ], + [ + 1662.746593286678, + 5602.739784143637 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE75", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1662.746593286678, + "min_y": 5601.244474448998, + "max_x": 1663.986206199906, + "max_y": 5602.017594373813, + "center": [ + 1663.366399743292, + 5601.631034411405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5601.244474448998 + ], + [ + 1662.746593286678, + 5602.017594373813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE76", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1661.4852664043462, + "min_y": 5601.696338377241, + "max_x": 1662.8499681673177, + "max_y": 5603.061040140213, + "center": [ + 1662.167617285832, + 5602.378689258727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.167617285832, + 5602.378689258727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE77", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5602.739784143637, + "max_x": 1661.588641284987, + "max_y": 5603.512904068452, + "center": [ + 1660.9688348283705, + 5603.126344106045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5602.739784143637 + ], + [ + 1660.349028371754, + 5603.512904068452 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE78", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 1660.349028371754, + "min_y": 5601.244474448998, + "max_x": 1661.588641284987, + "max_y": 5602.017594373813, + "center": [ + 1660.9688348283705, + 5601.631034411405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.588641284987, + 5602.017594373813 + ], + [ + 1660.349028371754, + 5601.244474448998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.557344758891, + "min_y": 5602.378689258723, + "max_x": 1660.349028371754, + "max_y": 5602.378689258723, + "center": [ + 1657.4531865653225, + 5602.378689258723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.349028371754, + 5602.378689258723 + ], + [ + 1654.557344758891, + 5602.378689258723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.986206199906, + "min_y": 5602.378689258723, + "max_x": 1669.399421461213, + "max_y": 5602.378689258723, + "center": [ + 1666.6928138305595, + 5602.378689258723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.986206199906, + 5602.378689258723 + ], + [ + 1669.399421461213, + 5602.378689258723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.110528412714, + "min_y": 5601.25880790833, + "max_x": 1682.1736741355467, + "max_y": 5603.4985706091165, + "center": [ + 1678.1421012741303, + 5602.378689258723 + ] + }, + "raw_value": "WELDED", + "clean_value": "WELDED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.1356399368, + "min_y": 5766.121028219703, + "max_x": 1694.2935042438814, + "max_y": 5768.360790920489, + "center": [ + 1684.2145720903409, + 5767.240909570096 + ] + }, + "raw_value": "DIAPHRAGM VALVE", + "clean_value": "DIAPHRAGM VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.988615717854, + "min_y": 5772.834119832388, + "max_x": 1660.033711763789, + "max_y": 5772.834119832388, + "center": [ + 1657.5111637408213, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.033711763789, + 5772.834119832388 + ], + [ + 1654.988615717854, + 5772.834119832388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.67088959194, + "min_y": 5772.834119832388, + "max_x": 1668.337517286319, + "max_y": 5772.834119832388, + "center": [ + 1666.0042034391295, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.67088959194, + 5772.834119832388 + ], + [ + 1668.337517286319, + 5772.834119832388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.096235268525, + "min_y": 5763.680124410019, + "max_x": 1663.507919990854, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296894, + 5763.680124410019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.096235268525, + 5763.680124410019 + ], + [ + 1663.507919990854, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1659.983488715614, + "max_y": 5762.781914117532, + "center": [ + 1659.983488715614, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1659.983488715614, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629686, + "min_y": 5761.647699307806, + "max_x": 1661.802077629689, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296876, + 5762.663911858912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5761.647699307806 + ], + [ + 1661.802077629686, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.620666543765, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1663.620666543765, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.620666543765, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5760.51348449808 + ], + [ + 1663.620666543765, + 5762.781914117532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.096235268525, + "min_y": 5763.680124410019, + "max_x": 1663.507919990854, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296894, + 5763.680124410019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.096235268525, + 5763.680124410019 + ], + [ + 1663.507919990854, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1659.983488715614, + "max_y": 5762.781914117532, + "center": [ + 1659.983488715614, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1659.983488715614, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.802077629686, + "min_y": 5761.647699307806, + "max_x": 1661.802077629689, + "max_y": 5763.680124410019, + "center": [ + 1661.8020776296876, + 5762.663911858912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.802077629689, + 5761.647699307806 + ], + [ + 1661.802077629686, + 5763.680124410019 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.620666543765, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1663.620666543765, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.620666543765, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5760.51348449808 + ], + [ + 1663.620666543765, + 5762.781914117532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.983488715614, + "min_y": 5760.51348449808, + "max_x": 1663.620666543765, + "max_y": 5762.781914117532, + "center": [ + 1661.8020776296894, + 5761.647699307807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.983488715614, + 5762.781914117532 + ], + [ + 1663.620666543765, + 5760.51348449808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5774.8665449346, + "center": [ + 1661.827189153775, + 5774.8665449346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5774.8665449346 + ], + [ + 1663.53303151494, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1660.0086002397, + "max_y": 5773.968334642114, + "center": [ + 1660.0086002397, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1660.0086002397, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.827189153773, + "min_y": 5772.834119832388, + "max_x": 1661.827189153775, + "max_y": 5774.8665449346, + "center": [ + 1661.8271891537738, + 5773.850332383494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.827189153775, + 5772.834119832388 + ], + [ + 1661.827189153773, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1663.645778067851, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5771.699905022661 + ], + [ + 1663.645778067851, + 5773.968334642114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5774.8665449346, + "center": [ + 1661.827189153775, + 5774.8665449346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5774.8665449346 + ], + [ + 1663.53303151494, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1660.0086002397, + "max_y": 5773.968334642114, + "center": [ + 1660.0086002397, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1660.0086002397, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.827189153773, + "min_y": 5772.834119832388, + "max_x": 1661.827189153775, + "max_y": 5774.8665449346, + "center": [ + 1661.8271891537738, + 5773.850332383494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.827189153775, + 5772.834119832388 + ], + [ + 1661.827189153773, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1663.645778067851, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5771.699905022661 + ], + [ + 1663.645778067851, + 5773.968334642114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5774.8665449346, + "center": [ + 1661.827189153775, + 5774.8665449346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5774.8665449346 + ], + [ + 1663.53303151494, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1660.0086002397, + "max_y": 5773.968334642114, + "center": [ + 1660.0086002397, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1660.0086002397, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.827189153773, + "min_y": 5772.834119832388, + "max_x": 1661.827189153775, + "max_y": 5774.8665449346, + "center": [ + 1661.8271891537738, + 5773.850332383494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.827189153775, + 5772.834119832388 + ], + [ + 1661.827189153773, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1663.645778067851, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5771.699905022661 + ], + [ + 1663.645778067851, + 5773.968334642114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5774.8665449346, + "center": [ + 1661.827189153775, + 5774.8665449346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5774.8665449346 + ], + [ + 1663.53303151494, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1660.0086002397, + "max_y": 5773.968334642114, + "center": [ + 1660.0086002397, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1660.0086002397, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAE9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.827189153773, + "min_y": 5772.834119832388, + "max_x": 1661.827189153775, + "max_y": 5774.8665449346, + "center": [ + 1661.8271891537738, + 5773.850332383494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.827189153775, + 5772.834119832388 + ], + [ + 1661.827189153773, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1663.645778067851, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5771.699905022661 + ], + [ + 1663.645778067851, + 5773.968334642114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5771.699905022661, + "max_x": 1663.645778067851, + "max_y": 5773.968334642114, + "center": [ + 1661.8271891537756, + 5772.834119832388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5773.968334642114 + ], + [ + 1663.645778067851, + 5771.699905022661 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5775.61313250153, + "max_x": 1663.53303151494, + "max_y": 5775.61313250153, + "center": [ + 1661.827189153775, + 5775.61313250153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5775.61313250153 + ], + [ + 1663.53303151494, + 5775.61313250153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5775.61313250153, + "max_x": 1663.53303151494, + "max_y": 5775.61313250153, + "center": [ + 1661.827189153775, + 5775.61313250153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5775.61313250153 + ], + [ + 1663.53303151494, + 5775.61313250153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5775.61313250153, + "max_x": 1663.53303151494, + "max_y": 5775.61313250153, + "center": [ + 1661.827189153775, + 5775.61313250153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5775.61313250153 + ], + [ + 1663.53303151494, + 5775.61313250153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5775.61313250153, + "max_x": 1663.53303151494, + "max_y": 5775.61313250153, + "center": [ + 1661.827189153775, + 5775.61313250153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5775.61313250153 + ], + [ + 1663.53303151494, + 5775.61313250153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5776.359720068459, + "max_x": 1663.53303151494, + "max_y": 5776.359720068459, + "center": [ + 1661.827189153775, + 5776.359720068459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5776.359720068459 + ], + [ + 1663.53303151494, + 5776.359720068459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5776.359720068459, + "max_x": 1663.53303151494, + "max_y": 5776.359720068459, + "center": [ + 1661.827189153775, + 5776.359720068459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5776.359720068459 + ], + [ + 1663.53303151494, + 5776.359720068459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5776.359720068459, + "max_x": 1663.53303151494, + "max_y": 5776.359720068459, + "center": [ + 1661.827189153775, + 5776.359720068459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5776.359720068459 + ], + [ + 1663.53303151494, + 5776.359720068459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5776.359720068459, + "max_x": 1663.53303151494, + "max_y": 5776.359720068459, + "center": [ + 1661.827189153775, + 5776.359720068459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5776.359720068459 + ], + [ + 1663.53303151494, + 5776.359720068459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAB", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1660.12134679261, + "min_y": 5774.8665449346, + "max_x": 1660.12134679261, + "max_y": 5776.359720068459, + "center": [ + 1660.12134679261, + 5775.613132501529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.12134679261, + 5776.359720068459 + ], + [ + 1660.12134679261, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAC", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1663.53303151494, + "min_y": 5774.8665449346, + "max_x": 1663.53303151494, + "max_y": 5776.359720068459, + "center": [ + 1663.53303151494, + 5775.613132501529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.53303151494, + 5776.359720068459 + ], + [ + 1663.53303151494, + 5774.8665449346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAD", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.850347998682, + "min_y": 5783.494911027656, + "max_x": 1938.850347998682, + "max_y": 5784.988086161513, + "center": [ + 1938.850347998682, + 5784.241498594584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.850347998682, + 5784.988086161513 + ], + [ + 1938.850347998682, + 5783.494911027656 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAE", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1937.002638039044, + "min_y": 5782.393788634947, + "max_x": 1940.698057958318, + "max_y": 5786.089208554222, + "center": [ + 1938.8503479986812, + 5784.241498594584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.002638039044, + 5784.241498594584 + ], + [ + 1938.850347998682, + 5786.089208554222 + ], + [ + 1940.698057958318, + 5784.241498594584 + ], + [ + 1938.850347998682, + 5782.393788634947 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.589359008186, + "min_y": 5596.18248943719, + "max_x": 1836.144958701158, + "max_y": 5596.18248943719, + "center": [ + 1832.367158854672, + 5596.18248943719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.589359008186, + 5596.18248943719 + ], + [ + 1836.144958701158, + 5596.18248943719 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.589359008186, + "min_y": 5594.626776749766, + "max_x": 1828.589359008186, + "max_y": 5596.18248943719, + "center": [ + 1828.589359008186, + 5595.404633093478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.589359008186, + 5596.18248943719 + ], + [ + 1828.589359008186, + 5594.626776749766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.144958701158, + "min_y": 5594.626776749766, + "max_x": 1836.144958701158, + "max_y": 5596.18248943719, + "center": [ + 1836.144958701158, + 5595.404633093478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.144958701158, + 5596.18248943719 + ], + [ + 1836.144958701158, + 5594.626776749766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.458674989511, + "min_y": 5599.120409465344, + "max_x": 1829.429238826518, + "max_y": 5599.120409465344, + "center": [ + 1828.9439569080146, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.429238826518, + 5599.120409465344 + ], + [ + 1828.458674989511, + 5599.120409465344 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.890601273294, + "min_y": 5594.626776749766, + "max_x": 1836.144958701158, + "max_y": 5594.626776749766, + "center": [ + 1835.0177799872258, + 5594.626776749766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.144958701158, + 5594.626776749766 + ], + [ + 1833.890601273294, + 5594.626776749766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.589359008186, + "min_y": 5594.626776749766, + "max_x": 1830.84371643605, + "max_y": 5594.626776749766, + "center": [ + 1829.7165377221181, + 5594.626776749766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.84371643605, + 5594.626776749766 + ], + [ + 1828.589359008186, + 5594.626776749766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.4292388265178, + "min_y": 5596.18248943719, + "max_x": 1835.3050788828261, + "max_y": 5602.058329493498, + "center": [ + 1832.367158854672, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.367158854672, + 5599.120409465344 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.712087422582, + "min_y": 5597.986194655618, + "max_x": 1827.712087422582, + "max_y": 5600.25462427507, + "center": [ + 1827.712087422582, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.712087422582, + 5597.986194655618 + ], + [ + 1827.712087422582, + 5600.25462427507 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.458674989511, + "min_y": 5597.986194655618, + "max_x": 1828.458674989511, + "max_y": 5600.25462427507, + "center": [ + 1828.458674989511, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.458674989511, + 5597.986194655618 + ], + [ + 1828.458674989511, + 5600.25462427507 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.305078882826, + "min_y": 5599.120409465344, + "max_x": 1836.275642719833, + "max_y": 5599.120409465344, + "center": [ + 1835.7903608013294, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.305078882826, + 5599.120409465344 + ], + [ + 1836.275642719833, + 5599.120409465344 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.022230286762, + "min_y": 5597.986194655618, + "max_x": 1837.022230286762, + "max_y": 5600.25462427507, + "center": [ + 1837.022230286762, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.022230286762, + 5597.986194655618 + ], + [ + 1837.022230286762, + 5600.25462427507 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.275642719833, + "min_y": 5597.986194655618, + "max_x": 1836.275642719833, + "max_y": 5600.25462427507, + "center": [ + 1836.275642719833, + 5599.120409465344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.275642719833, + 5597.986194655618 + ], + [ + 1836.275642719833, + 5600.25462427507 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5596.957556312872, + "max_x": 1853.2285515349497, + "max_y": 5599.197319013659, + "center": [ + 1847.1811922428253, + 5598.077437663265 + ] + }, + "raw_value": "GEAR PUMP", + "clean_value": "GEAR PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBC", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1830.810128550561, + "min_y": 5609.983613346744, + "max_x": 1831.71358014759, + "max_y": 5613.376240287996, + "center": [ + 1831.2618543490755, + 5611.67992681737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.71358014759, + 5613.376240287996 + ], + [ + 1830.810128550561, + 5609.983613346744 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBD", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1830.810128550561, + "min_y": 5608.674286405348, + "max_x": 1831.864247698298, + "max_y": 5609.983613346744, + "center": [ + 1831.3371881244295, + 5609.328949876046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.810128550561, + 5609.983613346744 + ], + [ + 1831.864247698298, + 5608.674286405348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBE", + "entity_type": "CIRCLE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1831.4466519011717, + "min_y": 5606.682092473003, + "max_x": 1833.6864146019584, + "max_y": 5608.9218551737895, + "center": [ + 1832.566533251565, + 5607.801973823396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.566533251565, + 5607.801973823396 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEBF", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1835.293274365659, + "min_y": 5607.021818909195, + "max_x": 1836.512794864334, + "max_y": 5608.854955809195, + "center": [ + 1835.9030346149966, + 5607.938387359195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.084396751979, + 5608.854955809195 + ], + [ + 1836.512794864334, + 5608.854955809195 + ], + [ + 1836.512794864334, + 5607.021818909195 + ], + [ + 1835.293274365659, + 5607.021818909195 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC0", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 1829.42319311855, + "min_y": 5607.021818909195, + "max_x": 1830.551736546592, + "max_y": 5608.854955809195, + "center": [ + 1829.987464832571, + 5607.938387359195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.551736546592, + 5607.021818909195 + ], + [ + 1829.42319311855, + 5607.021818909195 + ], + [ + 1829.42319311855, + 5608.854955809195 + ], + [ + 1830.267513736804, + 5608.854955809195 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1929.409571842672, + "min_y": 5690.515593805336, + "max_x": 1990.3311173040731, + "max_y": 5693.501944073051, + "center": [ + 1959.8703445733727, + 5692.008768939193 + ] + }, + "raw_value": "%%UABBREVIATIONS FOR DETECTING GAS", + "clean_value": "ABBREVIATIONS FOR DETECTING GAS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "3EAEC2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5671.173398586592, + "max_x": 1942.4490285279862, + "max_y": 5673.413161287379, + "center": [ + 1941.105170907514, + 5672.2932799369855 + ] + }, + "raw_value": "EA", + "clean_value": "EA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5666.828890148319, + "max_x": 1942.4490285279862, + "max_y": 5669.068652849106, + "center": [ + 1941.105170907514, + 5667.948771498713 + ] + }, + "raw_value": "FG", + "clean_value": "FG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1938.132704650495, + "min_y": 5682.138440050257, + "max_x": 1946.1958503733276, + "max_y": 5684.378202751043, + "center": [ + 1942.1642775119112, + 5683.25832140065 + ] + }, + "raw_value": "%%uABB", + "clean_value": "%%uABB", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5675.888727137298, + "max_x": 1942.4490285279862, + "max_y": 5678.1284898380845, + "center": [ + 1941.105170907514, + 5677.008608487691 + ] + }, + "raw_value": "HC", + "clean_value": "HC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5671.028389758374, + "max_x": 1970.615086648284, + "max_y": 5673.268152459161, + "center": [ + 1961.8800121152153, + 5672.148271108767 + ] + }, + "raw_value": "ETHYL ACETATE", + "clean_value": "ETHYL ACETATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5666.683881320101, + "max_x": 1970.615086648284, + "max_y": 5668.923644020888, + "center": [ + 1961.8800121152153, + 5667.8037626704945 + ] + }, + "raw_value": "FLAMMABLE GAS", + "clean_value": "FLAMMABLE GAS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1952.292962172188, + "min_y": 5682.064760215101, + "max_x": 1971.1069688587972, + "max_y": 5684.304522915888, + "center": [ + 1961.6999655154927, + 5683.1846415654945 + ] + }, + "raw_value": "%%uDESCRIPTION", + "clean_value": "%%uDESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEC9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5675.74371830908, + "max_x": 1967.92737140734, + "max_y": 5677.983481009866, + "center": [ + 1960.5361544947434, + 5676.863599659473 + ] + }, + "raw_value": "HYDROCARBON", + "clean_value": "HYDROCARBON", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5661.063423988746, + "max_x": 1885.17773404966, + "max_y": 5661.063423988746, + "center": [ + 1883.7442859211565, + 5661.063423988746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.310837792653, + 5661.063423988746 + ], + [ + 1885.17773404966, + 5661.063423988746 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.147015867613, + "min_y": 5644.86247378639, + "max_x": 1883.147015867613, + "max_y": 5661.063423988746, + "center": [ + 1883.147015867613, + 5652.962948887568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.147015867613, + 5661.063423988746 + ], + [ + 1883.147015867613, + 5644.86247378639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5646.728942703713, + "max_x": 1882.310837792653, + "max_y": 5661.063423988746, + "center": [ + 1882.310837792653, + 5653.896183346229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.310837792653, + 5661.063423988746 + ], + [ + 1882.310837792653, + 5646.728942703713 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1884.341555974698, + "min_y": 5644.86247378639, + "max_x": 1884.341555974698, + "max_y": 5661.063423988746, + "center": [ + 1884.341555974698, + 5652.962948887568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.341555974698, + 5661.063423988746 + ], + [ + 1884.341555974698, + 5644.86247378639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1885.17773404966, + "min_y": 5646.728942703713, + "max_x": 1885.17773404966, + "max_y": 5661.063423988746, + "center": [ + 1885.17773404966, + 5653.896183346229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.17773404966, + 5661.063423988746 + ], + [ + 1885.17773404966, + 5646.728942703713 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAECF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.147015867613, + "min_y": 5644.86247378639, + "max_x": 1884.341555974698, + "max_y": 5644.86247378639, + "center": [ + 1883.7442859211556, + 5644.86247378639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.147015867613, + 5644.86247378639 + ], + [ + 1884.341555974698, + 5644.86247378639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.147015867613, + "min_y": 5661.063423988746, + "max_x": 1883.147015867613, + "max_y": 5661.780148053, + "center": [ + 1883.147015867613, + 5661.421786020873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.147015867613, + 5661.063423988746 + ], + [ + 1883.147015867613, + 5661.780148053 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1884.341555974698, + "min_y": 5661.063423988746, + "max_x": 1884.341555974698, + "max_y": 5661.780148053, + "center": [ + 1884.341555974698, + 5661.421786020873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.341555974698, + 5661.063423988746 + ], + [ + 1884.341555974698, + 5661.780148053 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.147015867613, + "min_y": 5661.780148053, + "max_x": 1884.341555974698, + "max_y": 5661.780148053, + "center": [ + 1883.7442859211556, + 5661.780148053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.341555974698, + 5661.780148053 + ], + [ + 1883.147015867613, + 5661.780148053 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5643.667933679302, + "max_x": 1882.310837792653, + "max_y": 5646.728942703713, + "center": [ + 1882.310837792653, + 5645.198438191508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.310837792653, + 5646.728942703713 + ], + [ + 1882.310837792653, + 5643.667933679302 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.310837792653, + "min_y": 5643.667933679302, + "max_x": 1885.17773404966, + "max_y": 5643.667933679302, + "center": [ + 1883.7442859211565, + 5643.667933679302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.310837792653, + 5643.667933679302 + ], + [ + 1885.17773404966, + 5643.667933679302 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1885.17773404966, + "min_y": 5643.667933679302, + "max_x": 1885.17773404966, + "max_y": 5646.728942703713, + "center": [ + 1885.17773404966, + 5645.198438191508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.17773404966, + 5646.728942703713 + ], + [ + 1885.17773404966, + 5643.667933679302 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1887.504478136509, + "min_y": 5669.24602372229, + "max_x": 1887.504478136509, + "max_y": 5672.271531823168, + "center": [ + 1887.504478136509, + 5670.758777772729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.504478136509, + 5669.24602372229 + ], + [ + 1887.504478136509, + 5672.271531823168 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1880.7187778202776, + "min_y": 5666.220515621413, + "max_x": 1886.7697940220326, + "max_y": 5672.271531823168, + "center": [ + 1883.744285921155, + 5669.24602372229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.744285921155, + 5669.24602372229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.744285921155, + "min_y": 5672.271531823168, + "max_x": 1887.504478136509, + "max_y": 5672.271531823168, + "center": [ + 1885.624382028832, + 5672.271531823168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.744285921155, + 5672.271531823168 + ], + [ + 1887.504478136509, + 5672.271531823168 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.648295611613, + "min_y": 5664.718579051006, + "max_x": 1884.840276230698, + "max_y": 5664.718579051006, + "center": [ + 1883.7442859211556, + 5664.718579051006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.648295611613, + 5664.718579051006 + ], + [ + 1884.840276230698, + 5664.718579051006 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.769794022032, + "min_y": 5669.24602372229, + "max_x": 1887.504478136509, + "max_y": 5669.24602372229, + "center": [ + 1887.1371360792705, + 5669.24602372229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.769794022032, + 5669.24602372229 + ], + [ + 1887.504478136509, + 5669.24602372229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.744285921155, + "min_y": 5661.780148053, + "max_x": 1883.744285921155, + "max_y": 5669.24602372229, + "center": [ + 1883.744285921155, + 5665.5130858876455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.744285921155, + 5661.780148053 + ], + [ + 1883.744285921155, + 5669.24602372229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1891.830647196292, + "min_y": 5666.762908223258, + "max_x": 1909.300796262429, + "max_y": 5669.002670924045, + "center": [ + 1900.5657217293606, + 5667.882789573651 + ] + }, + "raw_value": "DEEPWELL PUMP", + "clean_value": "DEEPWELL PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.296401039464, + "min_y": 5712.054086913687, + "max_x": 1663.250894950594, + "max_y": 5714.426783260364, + "center": [ + 1661.273647995029, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.296401039464, + 5714.426783260364 + ], + [ + 1663.250894950594, + 5712.054086913687 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.296401039464, + "min_y": 5712.054086913687, + "max_x": 1663.250894950594, + "max_y": 5714.426783260364, + "center": [ + 1661.273647995029, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.250894950594, + 5714.426783260364 + ], + [ + 1659.296401039464, + 5712.054086913687 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEDF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1663.250894950594, + "min_y": 5712.054086913687, + "max_x": 1663.250894950594, + "max_y": 5714.426783260364, + "center": [ + 1663.250894950594, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.250894950594, + 5714.426783260364 + ], + [ + 1663.250894950594, + 5712.054086913687 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1663.250894950594, + "min_y": 5712.070812516447, + "max_x": 1663.250894950594, + "max_y": 5714.410057657605, + "center": [ + 1663.250894950594, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.250894950594, + 5712.070812516447 + ], + [ + 1663.250894950594, + 5714.410057657605 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.296401039464, + "min_y": 5712.054086913687, + "max_x": 1659.296401039464, + "max_y": 5714.426783260364, + "center": [ + 1659.296401039464, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.296401039464, + 5714.426783260364 + ], + [ + 1659.296401039464, + 5712.054086913687 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.08729982169, + "min_y": 5711.263188131461, + "max_x": 1662.459996168368, + "max_y": 5711.263188131461, + "center": [ + 1661.273647995029, + 5711.263188131461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.08729982169, + 5711.263188131461 + ], + [ + 1662.459996168368, + 5711.263188131461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.273647995029, + "min_y": 5711.263188131461, + "max_x": 1661.273647995029, + "max_y": 5711.263188131461, + "center": [ + 1661.273647995029, + 5711.263188131461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.273647995029, + 5711.263188131461 + ], + [ + 1661.273647995029, + 5711.263188131461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.08729982169, + "min_y": 5711.263188131461, + "max_x": 1661.273647995029, + "max_y": 5713.240435087026, + "center": [ + 1660.6804739083595, + 5712.251811609243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.08729982169, + 5711.263188131461 + ], + [ + 1661.273647995029, + 5713.240435087026 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.273647995029, + "min_y": 5711.263188131461, + "max_x": 1662.459996168368, + "max_y": 5713.240435087026, + "center": [ + 1661.8668220816985, + 5712.251811609243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.273647995029, + 5713.240435087026 + ], + [ + 1662.459996168368, + 5711.263188131461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.273647995029, + "min_y": 5713.240435087026, + "max_x": 1661.273647995029, + "max_y": 5715.877340191806, + "center": [ + 1661.273647995029, + 5714.558887639416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.273647995029, + 5713.240435087026 + ], + [ + 1661.273647995029, + 5715.877340191806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1657.196623507477, + "min_y": 5713.240435087026, + "max_x": 1659.296401039464, + "max_y": 5713.240435087026, + "center": [ + 1658.2465122734704, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.296401039464, + 5713.240435087026 + ], + [ + 1657.196623507477, + 5713.240435087026 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.273647995029, + "min_y": 5709.412953580834, + "max_x": 1661.273647995029, + "max_y": 5711.193400834927, + "center": [ + 1661.273647995029, + 5710.303177207881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.273647995029, + 5711.193400834927 + ], + [ + 1661.273647995029, + 5709.412953580834 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEE9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1663.250894950594, + "min_y": 5713.240435087026, + "max_x": 1665.350672482581, + "max_y": 5713.240435087026, + "center": [ + 1664.3007837165876, + 5713.240435087026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.350672482581, + 5713.240435087026 + ], + [ + 1663.250894950594, + 5713.240435087026 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.267513736804, + "min_y": 5613.376240287996, + "max_x": 1832.686923391734, + "max_y": 5613.376240287996, + "center": [ + 1831.477218564269, + 5613.376240287996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.686923391734, + 5613.376240287996 + ], + [ + 1830.267513736804, + 5613.376240287996 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEEB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1853.055859344015, + "min_y": 5861.792466440781, + "max_x": 1863.8067203077917, + "max_y": 5864.032229141568, + "center": [ + 1858.4312898259034, + 5862.912347791174 + ] + }, + "raw_value": "PG - 111", + "clean_value": "PG - 111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEEC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1864.504602562853, + "min_y": 5857.831889753214, + "max_x": 1867.8642466140332, + "max_y": 5859.698358670536, + "center": [ + 1866.184424588443, + 5858.765124211875 + ] + }, + "raw_value": "(2)", + "clean_value": "(2)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1852.986886926187, + "min_y": 5857.831889753214, + "max_x": 1856.3465309773671, + "max_y": 5859.698358670536, + "center": [ + 1854.666708951777, + 5858.765124211875 + ] + }, + "raw_value": "(1)", + "clean_value": "(1)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.610424041924, + "min_y": 5860.849883970637, + "max_x": 1856.651890283825, + "max_y": 5860.849883970637, + "center": [ + 1854.6311571628744, + 5860.849883970637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.610424041924, + 5860.849883970637 + ], + [ + 1856.651890283825, + 5860.849883970637 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.273149567988, + "min_y": 5860.849883970637, + "max_x": 1869.380113920109, + "max_y": 5860.849883970637, + "center": [ + 1866.3266317440484, + 5860.849883970637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.273149567988, + 5860.849883970637 + ], + [ + 1869.380113920109, + 5860.849883970637 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.458674989511, + "min_y": 5585.308765622488, + "max_x": 1829.429238826518, + "max_y": 5585.308765622488, + "center": [ + 1828.9439569080146, + 5585.308765622488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.429238826518, + 5585.308765622488 + ], + [ + 1828.458674989511, + 5585.308765622488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.712087422582, + "min_y": 5584.174550812761, + "max_x": 1827.712087422582, + "max_y": 5586.442980432214, + "center": [ + 1827.712087422582, + 5585.308765622487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.712087422582, + 5584.174550812761 + ], + [ + 1827.712087422582, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.458674989511, + "min_y": 5584.174550812761, + "max_x": 1828.458674989511, + "max_y": 5586.442980432214, + "center": [ + 1828.458674989511, + 5585.308765622487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.458674989511, + 5584.174550812761 + ], + [ + 1828.458674989511, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.305078882826, + "min_y": 5585.308765622488, + "max_x": 1836.275642719833, + "max_y": 5585.308765622488, + "center": [ + 1835.7903608013294, + 5585.308765622488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.305078882826, + 5585.308765622488 + ], + [ + 1836.275642719833, + 5585.308765622488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.022230286762, + "min_y": 5584.174550812761, + "max_x": 1837.022230286762, + "max_y": 5586.442980432214, + "center": [ + 1837.022230286762, + 5585.308765622487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.022230286762, + 5584.174550812761 + ], + [ + 1837.022230286762, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.275642719833, + "min_y": 5584.174550812761, + "max_x": 1836.275642719833, + "max_y": 5586.442980432214, + "center": [ + 1836.275642719833, + 5585.308765622487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.275642719833, + 5584.174550812761 + ], + [ + 1836.275642719833, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5586.505330375867, + "max_x": 1858.603982016838, + "max_y": 5588.745093076654, + "center": [ + 1849.8689074837694, + 5587.62521172626 + ] + }, + "raw_value": "VERTICAL PUMP", + "clean_value": "VERTICAL PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1830.563453636244, + "min_y": 5586.442980432214, + "max_x": 1834.170864073099, + "max_y": 5586.442980432214, + "center": [ + 1832.3671588546715, + 5586.442980432214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.563453636244, + 5586.442980432214 + ], + [ + 1834.170864073099, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1829.4292388265183, + "min_y": 5584.174550812762, + "max_x": 1831.6976684459698, + "max_y": 5586.4429804322135, + "center": [ + 1830.563453636244, + 5585.308765622488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.563453636244, + 5585.308765622488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEF9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1833.0366492633732, + "min_y": 5584.174550812762, + "max_x": 1835.3050788828248, + "max_y": 5586.4429804322135, + "center": [ + 1834.170864073099, + 5585.308765622488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.170864073099, + 5585.308765622488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1830.563453636244, + "min_y": 5584.174550812761, + "max_x": 1834.170864073099, + "max_y": 5584.174550812761, + "center": [ + 1832.3671588546715, + 5584.174550812761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.170864073099, + 5584.174550812761 + ], + [ + 1830.563453636244, + 5584.174550812761 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1830.563453636244, + "min_y": 5587.189567999143, + "max_x": 1834.296391470889, + "max_y": 5590.866078716394, + "center": [ + 1832.4299225535665, + 5589.027823357768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.310041203173, + 5587.189567999143 + ], + [ + 1833.54980390396, + 5587.189567999143 + ], + [ + 1834.296391470889, + 5587.936155566072 + ], + [ + 1834.296391470889, + 5590.119491149465 + ], + [ + 1833.54980390396, + 5590.866078716394 + ], + [ + 1831.310041203173, + 5590.866078716394 + ], + [ + 1830.563453636244, + 5590.119491149465 + ], + [ + 1830.563453636244, + 5587.936155566072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.807766247792, + "min_y": 5586.442980432214, + "max_x": 1831.807766247792, + "max_y": 5590.866078716394, + "center": [ + 1831.807766247792, + 5588.654529574304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.807766247792, + 5590.866078716394 + ], + [ + 1831.807766247792, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.05207885934, + "min_y": 5586.442980432214, + "max_x": 1833.05207885934, + "max_y": 5590.866078716394, + "center": [ + 1833.05207885934, + 5588.654529574304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.05207885934, + 5590.866078716394 + ], + [ + 1833.05207885934, + 5586.442980432214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.138995306607, + "min_y": 5645.837694492253, + "max_x": 1830.109559143615, + "max_y": 5645.837694492253, + "center": [ + 1829.624277225111, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.109559143615, + 5645.837694492253 + ], + [ + 1829.138995306607, + 5645.837694492253 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAEFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.392407739679, + "min_y": 5644.703479682526, + "max_x": 1828.392407739679, + "max_y": 5646.97190930198, + "center": [ + 1828.392407739679, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.392407739679, + 5644.703479682526 + ], + [ + 1828.392407739679, + 5646.97190930198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.138995306607, + "min_y": 5644.703479682526, + "max_x": 1829.138995306607, + "max_y": 5646.97190930198, + "center": [ + 1829.138995306607, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.138995306607, + 5644.703479682526 + ], + [ + 1829.138995306607, + 5646.97190930198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.764821255605, + "min_y": 5645.837694492253, + "max_x": 1835.735385092612, + "max_y": 5645.837694492253, + "center": [ + 1835.2501031741085, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.764821255605, + 5645.837694492253 + ], + [ + 1835.735385092612, + 5645.837694492253 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.481972659541, + "min_y": 5644.703479682526, + "max_x": 1836.481972659541, + "max_y": 5646.97190930198, + "center": [ + 1836.481972659541, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.481972659541, + 5644.703479682526 + ], + [ + 1836.481972659541, + 5646.97190930198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.735385092612, + "min_y": 5644.703479682526, + "max_x": 1835.735385092612, + "max_y": 5646.97190930198, + "center": [ + 1835.735385092612, + 5645.837694492253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.735385092612, + 5644.703479682526 + ], + [ + 1835.735385092612, + 5646.97190930198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF04", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.08541688863, + "min_y": 5754.934607695122, + "max_x": 1699.6187116775998, + "max_y": 5757.174370395909, + "center": [ + 1686.852064283115, + 5756.054489045516 + ] + }, + "raw_value": "3-WAY CONTROL VALVE", + "clean_value": "3-WAY CONTROL VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.913281145595, + "min_y": 5756.054489045514, + "max_x": 1659.958377191529, + "max_y": 5756.054489045514, + "center": [ + 1657.4358291685621, + 5756.054489045514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.958377191529, + 5756.054489045514 + ], + [ + 1654.913281145595, + 5756.054489045514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.595555019681, + "min_y": 5756.054489045514, + "max_x": 1668.262182714059, + "max_y": 5756.054489045514, + "center": [ + 1665.9288688668698, + 5756.054489045514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.595555019681, + 5756.054489045514 + ], + [ + 1668.262182714059, + 5756.054489045514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF07", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.031072308556, + "min_y": 5755.969204550289, + "max_x": 1663.5228599026498, + "max_y": 5759.4609921443825, + "center": [ + 1661.776966105603, + 5757.715098347336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.776966105603, + 5757.715098347336 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF08", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.071123744441, + "min_y": 5758.086914147728, + "max_x": 1663.48280846677, + "max_y": 5758.086914147728, + "center": [ + 1661.7769661056054, + 5758.086914147728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.071123744441, + 5758.086914147728 + ], + [ + 1663.48280846677, + 5758.086914147728 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF09", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.95837719153, + "min_y": 5754.920274235789, + "max_x": 1659.95837719153, + "max_y": 5757.188703855241, + "center": [ + 1659.95837719153, + 5756.054489045515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.95837719153, + 5757.188703855241 + ], + [ + 1659.95837719153, + 5754.920274235789 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.776966105603, + "min_y": 5756.054489045514, + "max_x": 1661.776966105606, + "max_y": 5758.086914147728, + "center": [ + 1661.7769661056045, + 5757.070701596621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.776966105606, + 5756.054489045514 + ], + [ + 1661.776966105603, + 5758.086914147728 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1663.595555019681, + "min_y": 5754.920274235789, + "max_x": 1663.595555019681, + "max_y": 5757.188703855241, + "center": [ + 1663.595555019681, + 5756.054489045515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.595555019681, + 5757.188703855241 + ], + [ + 1663.595555019681, + 5754.920274235789 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.95837719153, + "min_y": 5754.920274235789, + "max_x": 1663.595555019681, + "max_y": 5757.188703855241, + "center": [ + 1661.7769661056054, + 5756.054489045515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.95837719153, + 5754.920274235789 + ], + [ + 1663.595555019681, + 5757.188703855241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1659.95837719153, + "min_y": 5754.920274235789, + "max_x": 1663.595555019681, + "max_y": 5757.188703855241, + "center": [ + 1661.7769661056054, + 5756.054489045515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.95837719153, + 5757.188703855241 + ], + [ + 1663.595555019681, + 5754.920274235789 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.642751295879, + "min_y": 5754.23590013144, + "max_x": 1662.911180915333, + "max_y": 5754.23590013144, + "center": [ + 1661.7769661056059, + 5754.23590013144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.911180915333, + 5754.23590013144 + ], + [ + 1660.642751295879, + 5754.23590013144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF0F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1661.776966105606, + "min_y": 5754.23590013144, + "max_x": 1662.911180915333, + "max_y": 5756.054489045516, + "center": [ + 1662.3440735104696, + 5755.145194588478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.776966105606, + 5756.054489045516 + ], + [ + 1662.911180915333, + 5754.23590013144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF10", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.642751295879, + "min_y": 5754.23590013144, + "max_x": 1661.776966105606, + "max_y": 5756.054489045516, + "center": [ + 1661.2098587007426, + 5755.145194588478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.776966105606, + 5756.054489045516 + ], + [ + 1660.642751295879, + 5754.23590013144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.776966105606, + "min_y": 5751.163274916159, + "max_x": 1661.776966105606, + "max_y": 5754.23590013144, + "center": [ + 1661.776966105606, + 5752.699587523799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.776966105606, + 5754.23590013144 + ], + [ + 1661.776966105606, + 5751.163274916159 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.963504193767, + "min_y": 5767.240909570097, + "max_x": 1660.0086002397, + "max_y": 5767.240909570097, + "center": [ + 1657.4860522167335, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5767.240909570097 + ], + [ + 1654.963504193767, + 5767.240909570097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067852, + "min_y": 5767.240909570097, + "max_x": 1668.31240576223, + "max_y": 5767.240909570097, + "center": [ + 1665.979091915041, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067852, + 5767.240909570097 + ], + [ + 1668.31240576223, + 5767.240909570097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1660.0086002397, + "max_y": 5768.375124379823, + "center": [ + 1660.0086002397, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1660.0086002397, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1663.645778067851, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5766.10669476037 + ], + [ + 1663.645778067851, + 5768.375124379823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1660.0086002397, + "max_y": 5768.375124379823, + "center": [ + 1660.0086002397, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1660.0086002397, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1663.645778067851, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5766.10669476037 + ], + [ + 1663.645778067851, + 5768.375124379823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1660.0086002397, + "max_y": 5768.375124379823, + "center": [ + 1660.0086002397, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1660.0086002397, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1663.645778067851, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5766.10669476037 + ], + [ + 1663.645778067851, + 5768.375124379823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1660.0086002397, + "max_y": 5768.375124379823, + "center": [ + 1660.0086002397, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1660.0086002397, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.645778067851, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1663.645778067851, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.645778067851, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5766.10669476037 + ], + [ + 1663.645778067851, + 5768.375124379823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.0086002397, + "min_y": 5766.10669476037, + "max_x": 1663.645778067851, + "max_y": 5768.375124379823, + "center": [ + 1661.8271891537756, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1660.0086002397, + 5768.375124379823 + ], + [ + 1663.645778067851, + 5766.10669476037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF24", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1674.160751460886, + "min_y": 5771.714238481994, + "max_x": 1690.287042906551, + "max_y": 5773.95400118278, + "center": [ + 1682.2238971837187, + 5772.834119832387 + ] + }, + "raw_value": "ON/OFF VALVE", + "clean_value": "ON/OFF VALVE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF25", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1660.0086002396993, + "min_y": 5765.422320656021, + "max_x": 1663.6457780678506, + "max_y": 5769.059498484173, + "center": [ + 1661.827189153775, + 5767.240909570097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.827189153775, + 5767.240909570097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF26", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": -176.4865289798189, + "min_y": 5658.225991807964, + "max_x": 1167.3710914922658, + "max_y": 5807.543505193752, + "center": [ + 495.44228125622345, + 5732.884748500858 + ] + }, + "raw_value": "SYMBOL & LEGEND", + "clean_value": "SYMBOL & LEGEND", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "3EAF27", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5735.577740492969, + "max_x": 1942.4490285279862, + "max_y": 5737.817503193755, + "center": [ + 1941.105170907514, + 5736.697621843362 + ] + }, + "raw_value": "VP", + "clean_value": "VP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF28", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5735.577740492969, + "max_x": 1969.326180937428, + "max_y": 5737.817503193755, + "center": [ + 1961.9349640248315, + 5736.697621843362 + ] + }, + "raw_value": "VACUUM PUMP", + "clean_value": "VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5704.252784895537, + "max_x": 1942.4490285279862, + "max_y": 5706.492547596324, + "center": [ + 1941.105170907514, + 5705.37266624593 + ] + }, + "raw_value": "AG", + "clean_value": "AG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF2A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1954.543747112235, + "min_y": 5704.252784895537, + "max_x": 1965.2946080760116, + "max_y": 5706.492547596324, + "center": [ + 1959.9191775941233, + 5705.37266624593 + ] + }, + "raw_value": "AGITATOR", + "clean_value": "AGITATOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1939.761313287042, + "min_y": 5662.484381710045, + "max_x": 1943.7928861484581, + "max_y": 5664.724144410832, + "center": [ + 1941.77709971775, + 5663.604263060439 + ] + }, + "raw_value": "MMF", + "clean_value": "MMF", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EAF2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.144937582147, + "min_y": 5662.339372881827, + "max_x": 1975.9905171301723, + "max_y": 5664.579135582614, + "center": [ + 1964.5677273561596, + 5663.459254232221 + ] + }, + "raw_value": "N-METHYLFORMAMIDE", + "clean_value": "N-METHYLFORMAMIDE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5697.137787014536, + "max_x": 1745.4843073597192, + "max_y": 5699.377549715323, + "center": [ + 1744.140449739247, + 5698.2576683649295 + ] + }, + "raw_value": "TL", + "clean_value": "TL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5692.658261612963, + "max_x": 1745.4843073597192, + "max_y": 5694.898024313749, + "center": [ + 1744.140449739247, + 5693.778142963356 + ] + }, + "raw_value": "TC", + "clean_value": "TC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5706.096837817684, + "max_x": 1745.4843073597192, + "max_y": 5708.336600518471, + "center": [ + 1744.140449739247, + 5707.216719168077 + ] + }, + "raw_value": "F1", + "clean_value": "F1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5683.699210809816, + "max_x": 1745.4843073597192, + "max_y": 5685.938973510602, + "center": [ + 1744.140449739247, + 5684.819092160209 + ] + }, + "raw_value": "PE", + "clean_value": "PE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5701.617312416111, + "max_x": 1745.4843073597192, + "max_y": 5703.857075116898, + "center": [ + 1744.140449739247, + 5702.737193766505 + ] + }, + "raw_value": "F2", + "clean_value": "F2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5697.137787014536, + "max_x": 1768.255228151052, + "max_y": 5699.377549715323, + "center": [ + 1760.1920824282197, + 5698.2576683649295 + ] + }, + "raw_value": "TEFLON LINED", + "clean_value": "TEFLON LINED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEEC9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5692.658261612963, + "max_x": 1769.5990857715242, + "max_y": 5694.898024313749, + "center": [ + 1760.8640112384555, + 5693.778142963356 + ] + }, + "raw_value": "TEFLON COATED", + "clean_value": "TEFLON COATED", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5706.096837817684, + "max_x": 1760.1920824282197, + "max_y": 5708.336600518471, + "center": [ + 1756.1605095668033, + 5707.216719168077 + ] + }, + "raw_value": "STS304", + "clean_value": "STS304", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5683.699210809816, + "max_x": 1760.1920824282197, + "max_y": 5685.938973510602, + "center": [ + 1756.1605095668033, + 5684.819092160209 + ] + }, + "raw_value": "PE/FRP", + "clean_value": "PE/FRP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5701.617312416111, + "max_x": 1760.1920824282197, + "max_y": 5703.857075116898, + "center": [ + 1756.1605095668033, + 5702.737193766505 + ] + }, + "raw_value": "STS316", + "clean_value": "STS316", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5688.178736211389, + "max_x": 1745.4843073597192, + "max_y": 5690.418498912176, + "center": [ + 1744.140449739247, + 5689.2986175617825 + ] + }, + "raw_value": "A1", + "clean_value": "A1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5688.178736211389, + "max_x": 1756.1605095668033, + "max_y": 5690.418498912176, + "center": [ + 1754.1447231360953, + 5689.2986175617825 + ] + }, + "raw_value": "SPP", + "clean_value": "SPP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEECF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5764.382317301159, + "max_x": 1785.5360714858532, + "max_y": 5766.6220800019455, + "center": [ + 1776.1290681425485, + 5765.502198651552 + ] + }, + "raw_value": "DEIONZED WATER", + "clean_value": "DEIONZED WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEED0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5744.405972684711, + "max_x": 1747.0981743663563, + "max_y": 5746.645735385498, + "center": [ + 1745.082387935648, + 5745.525854035104 + ] + }, + "raw_value": "HOR", + "clean_value": "HOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEED1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5744.275043076367, + "max_x": 1785.5360714858532, + "max_y": 5746.514805777154, + "center": [ + 1776.1290681425485, + 5745.394924426761 + ] + }, + "raw_value": "HOT OIL RETURN", + "clean_value": "HOT OIL RETURN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEED2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5740.527735893883, + "max_x": 1745.7543167458844, + "max_y": 5742.76749859467, + "center": [ + 1744.4104591254122, + 5741.647617244276 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EEED3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5740.396806285538, + "max_x": 1777.4729257630206, + "max_y": 5742.636568986325, + "center": [ + 1772.0974952811323, + 5741.516687635932 + ] + }, + "raw_value": "FUEL OIL", + "clean_value": "FUEL OIL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA28", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5798.815804077311, + "max_x": 1793.5992172086856, + "max_y": 5801.055566778098, + "center": [ + 1780.1606410039649, + 5799.935685427705 + ] + }, + "raw_value": "CHILLED WATER SUPPLY", + "clean_value": "CHILLED WATER SUPPLY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5798.627888106479, + "max_x": 1747.0981743663563, + "max_y": 5800.867650807266, + "center": [ + 1745.082387935648, + 5799.747769456872 + ] + }, + "raw_value": "CHS", + "clean_value": "CHS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5794.74965131565, + "max_x": 1747.0981743663563, + "max_y": 5796.989414016437, + "center": [ + 1745.082387935648, + 5795.869532666044 + ] + }, + "raw_value": "CHR", + "clean_value": "CHR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5794.618721707305, + "max_x": 1793.5992172086856, + "max_y": 5796.8584844080915, + "center": [ + 1780.1606410039649, + 5795.738603057698 + ] + }, + "raw_value": "CHILLED WATER RETURN", + "clean_value": "CHILLED WATER RETURN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5736.649499103054, + "max_x": 1745.7543167458844, + "max_y": 5738.889261803841, + "center": [ + 1744.4104591254122, + 5737.769380453447 + ] + }, + "raw_value": "PR", + "clean_value": "PR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5736.518569494709, + "max_x": 1778.8167833834927, + "max_y": 5738.758332195495, + "center": [ + 1772.7694240913684, + 5737.638450845102 + ] + }, + "raw_value": "PR SLURRY", + "clean_value": "PR SLURRY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1743.06660150494, + "min_y": 5732.771262312224, + "max_x": 1745.7543167458844, + "max_y": 5735.011025013011, + "center": [ + 1744.4104591254122, + 5733.891143662618 + ] + }, + "raw_value": "DR", + "clean_value": "DR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3EFA2F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1766.722064799244, + "min_y": 5732.640332703879, + "max_x": 1773.4413529016044, + "max_y": 5734.880095404666, + "center": [ + 1770.081708850424, + 5733.760214054272 + ] + }, + "raw_value": "DRAIN", + "clean_value": "DRAIN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5657.405687286149, + "max_x": 1666.591020151672, + "max_y": 5657.405687286149, + "center": [ + 1659.439012341703, + 5657.405687286149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1652.287004531734, + 5657.405687286149 + ], + [ + 1666.591020151672, + 5657.405687286149 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1666.026969240919, + "min_y": 5656.510623329792, + "max_x": 1667.155071062425, + "max_y": 5656.510623329792, + "center": [ + 1666.591020151672, + 5656.510623329792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.026969240919, + 5656.510623329792 + ], + [ + 1667.155071062425, + 5656.510623329792 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1667.155071062425, + "min_y": 5656.510623329792, + "max_x": 1667.155071062425, + "max_y": 5658.300751242505, + "center": [ + 1667.155071062425, + 5657.405687286148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.155071062425, + 5656.510623329792 + ], + [ + 1667.155071062425, + 5658.300751242505 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1666.026969240919, + "min_y": 5658.300751242505, + "max_x": 1667.155071062425, + "max_y": 5658.300751242505, + "center": [ + 1666.591020151672, + 5658.300751242505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.026969240919, + 5658.300751242505 + ], + [ + 1667.155071062425, + 5658.300751242505 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16A7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5661.996616561281, + "max_x": 1689.820695451253, + "max_y": 5664.236379262068, + "center": [ + 1681.7575497284206, + 5663.116497911675 + ] + }, + "raw_value": "BLIND FLANGE", + "clean_value": "BLIND FLANGE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1666.488741658941, + "min_y": 5661.996883798335, + "max_x": 1666.488741658941, + "max_y": 5664.236112025013, + "center": [ + 1666.488741658941, + 5663.116497911675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.488741658941, + 5661.996883798335 + ], + [ + 1666.488741658941, + 5664.236112025013 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1667.155071062425, + "min_y": 5661.996883798335, + "max_x": 1667.155071062425, + "max_y": 5664.236112025013, + "center": [ + 1667.155071062425, + 5663.116497911675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.155071062425, + 5661.996883798335 + ], + [ + 1667.155071062425, + 5664.236112025013 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "3F16B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1652.099619066612, + "min_y": 5663.116497911674, + "max_x": 1666.488741658941, + "max_y": 5663.116497911674, + "center": [ + 1659.2941803627764, + 5663.116497911674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.488741658941, + 5663.116497911674 + ], + [ + 1652.099619066612, + 5663.116497911674 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4051D6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5650.797803056764, + "max_x": 1693.8522683126694, + "max_y": 5653.0375657575505, + "center": [ + 1683.7733361591286, + 5651.917684407157 + ] + }, + "raw_value": "CAMLOCK COUPLER", + "clean_value": "CAMLOCK COUPLER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4051D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5651.80628053389, + "max_x": 1661.998387946457, + "max_y": 5651.80628053389, + "center": [ + 1657.1426962390956, + 5651.80628053389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1652.287004531734, + 5651.80628053389 + ], + [ + 1661.998387946457, + 5651.80628053389 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4051D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5650.911216577534, + "max_x": 1663.126489767963, + "max_y": 5650.911216577534, + "center": [ + 1662.56243885721, + 5650.911216577534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.126489767963, + 5650.911216577534 + ], + [ + 1661.998387946457, + 5650.911216577534 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4051D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5650.911216577534, + "max_x": 1661.998387946457, + "max_y": 5652.701344490247, + "center": [ + 1661.998387946457, + 5651.8062805338905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.998387946457, + 5650.911216577534 + ], + [ + 1661.998387946457, + 5652.701344490247 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4051DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5652.701344490247, + "max_x": 1663.126489767963, + "max_y": 5652.701344490247, + "center": [ + 1662.56243885721, + 5652.701344490247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.126489767963, + 5652.701344490247 + ], + [ + 1661.998387946457, + 5652.701344490247 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "405236", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1664.141865075864, + "min_y": 5650.759930673351, + "max_x": 1666.8295803168082, + "max_y": 5652.999693374138, + "center": [ + 1665.485722696336, + 5651.879812023744 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "405237", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5644.165604829088, + "max_x": 1691.164553071725, + "max_y": 5646.405367529875, + "center": [ + 1682.4294785386564, + 5645.285486179481 + ] + }, + "raw_value": "QUICK COUPLER", + "clean_value": "QUICK COUPLER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "405238", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1652.287004531734, + "min_y": 5645.174082306214, + "max_x": 1661.998387946457, + "max_y": 5645.174082306214, + "center": [ + 1657.1426962390956, + 5645.174082306214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1652.287004531734, + 5645.174082306214 + ], + [ + 1661.998387946457, + 5645.174082306214 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "405239", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5644.279018349858, + "max_x": 1663.126489767963, + "max_y": 5644.279018349858, + "center": [ + 1662.56243885721, + 5644.279018349858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.126489767963, + 5644.279018349858 + ], + [ + 1661.998387946457, + 5644.279018349858 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "40523A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5644.279018349858, + "max_x": 1661.998387946457, + "max_y": 5646.06914626257, + "center": [ + 1661.998387946457, + 5645.174082306214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.998387946457, + 5644.279018349858 + ], + [ + 1661.998387946457, + 5646.06914626257 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "40523B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.998387946457, + "min_y": 5646.06914626257, + "max_x": 1663.126489767963, + "max_y": 5646.06914626257, + "center": [ + 1662.56243885721, + 5646.06914626257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.126489767963, + 5646.06914626257 + ], + [ + 1661.998387946457, + 5646.06914626257 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "40523C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1664.141865075864, + "min_y": 5644.127732445674, + "max_x": 1666.8295803168082, + "max_y": 5646.367495146461, + "center": [ + 1665.485722696336, + 5645.2476137960675 + ] + }, + "raw_value": "QC", + "clean_value": "QC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "41081C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1880.632363141864, + "min_y": 5631.660364617771, + "max_x": 1886.606464276164, + "max_y": 5637.63446575207, + "center": [ + 1883.619413709014, + 5634.647415184921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.619413709014, + 5634.647415184921 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "41081D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.148486176049, + "min_y": 5629.337793823333, + "max_x": 1881.807213342636, + "max_y": 5632.272883457942, + "center": [ + 1880.9778497593425, + 5630.805338640637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.807213342636, + 5632.272883457942 + ], + [ + 1880.148486176049, + 5629.337793823333 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "41081E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1885.431614075383, + "min_y": 5629.337793823333, + "max_x": 1887.090341241967, + "max_y": 5632.272883457942, + "center": [ + 1886.260977658675, + 5630.805338640637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.431614075383, + 5632.272883457942 + ], + [ + 1887.090341241967, + 5629.337793823333 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "41081F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.148486176049, + "min_y": 5629.337793823333, + "max_x": 1887.090341241967, + "max_y": 5629.337793823333, + "center": [ + 1883.6194137090079, + 5629.337793823333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.090341241967, + 5629.337793823333 + ], + [ + 1880.148486176049, + 5629.337793823333 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410820", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1884.282636313322, + "min_y": 5634.647415184921, + "max_x": 1886.606464276162, + "max_y": 5638.494159494838, + "center": [ + 1885.444550294742, + 5636.570787339879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.606464276162, + 5634.647415184921 + ], + [ + 1886.606464276162, + 5638.494159494838 + ], + [ + 1884.282636313322, + 5638.494159494838 + ], + [ + 1884.282636313322, + 5637.559906707284 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410821", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1884.0371741376937, + "min_y": 5632.750573817929, + "max_x": 1885.5428969617521, + "max_y": 5634.256296641987, + "center": [ + 1884.790035549723, + 5633.503435229958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.790035549723, + 5633.503435229958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410822", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.619413709014, + "min_y": 5634.223570260025, + "max_x": 1885.009593843109, + "max_y": 5634.647415184921, + "center": [ + 1884.3145037760614, + 5634.435492722472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.619413709014, + 5634.647415184921 + ], + [ + 1885.009593843109, + 5634.223570260025 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.619413709014, + "min_y": 5633.267359284687, + "max_x": 1884.075145030987, + "max_y": 5634.647415184921, + "center": [ + 1883.8472793700005, + 5633.957387234804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.619413709014, + 5634.647415184921 + ], + [ + 1884.075145030987, + 5633.267359284687 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410824", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1881.6959304562668, + "min_y": 5635.038533727855, + "max_x": 1883.2016532803252, + "max_y": 5636.544256551913, + "center": [ + 1882.448791868296, + 5635.791395139884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.448791868296, + 5635.791395139884 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410825", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.163682387038, + "min_y": 5634.647415184921, + "max_x": 1883.619413709014, + "max_y": 5636.027471085152, + "center": [ + 1883.391548048026, + 5635.337443135037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.619413709014, + 5634.647415184921 + ], + [ + 1883.163682387038, + 5636.027471085152 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410826", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.229233574916, + "min_y": 5634.647415184921, + "max_x": 1883.619413709014, + "max_y": 5635.071260109814, + "center": [ + 1882.924323641965, + 5634.859337647367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.619413709014, + 5634.647415184921 + ], + [ + 1882.229233574916, + 5635.071260109814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "410858", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1891.830647196292, + "min_y": 5633.55101374395, + "max_x": 1899.8937929191245, + "max_y": 5635.790776444736, + "center": [ + 1895.8622200577083, + 5634.670895094343 + ] + }, + "raw_value": "BLOWER", + "clean_value": "BLOWER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E18", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1661.201172799749, + "min_y": 5639.686079427514, + "max_x": 1661.570733645377, + "max_y": 5639.686079427514, + "center": [ + 1661.3859532225629, + 5639.686079427514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.201172799749, + 5639.686079427514 + ], + [ + 1661.570733645377, + 5639.686079427514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1660.07656920443, + "min_y": 5638.86944476451, + "max_x": 1661.385953222563, + "max_y": 5639.686079427514, + "center": [ + 1660.7312612134965, + 5639.277762096012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5639.686079427514 + ], + [ + 1660.07656920443, + 5638.86944476451 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1659.56736430849, + "min_y": 5638.551864617785, + "max_x": 1659.56736430849, + "max_y": 5640.820294237239, + "center": [ + 1659.56736430849, + 5639.686079427513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.56736430849, + 5640.820294237239 + ], + [ + 1659.56736430849, + 5638.551864617785 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.204542136643, + "min_y": 5638.551864617785, + "max_x": 1663.204542136643, + "max_y": 5640.820294237239, + "center": [ + 1663.204542136643, + 5639.686079427513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.204542136643, + 5640.820294237239 + ], + [ + 1663.204542136643, + 5638.551864617785 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.694404005588, + "min_y": 5638.566198077121, + "max_x": 1681.7575497284206, + "max_y": 5640.805960777908, + "center": [ + 1677.7259768670042, + 5639.686079427514 + ] + }, + "raw_value": "DAMPER", + "clean_value": "DAMPER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.385953222563, + "min_y": 5639.686079427514, + "max_x": 1662.695337240701, + "max_y": 5640.502714090514, + "center": [ + 1662.040645231632, + 5640.094396759014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5639.686079427514 + ], + [ + 1662.695337240701, + 5640.502714090514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1654.522268262558, + "min_y": 5639.686079427514, + "max_x": 1659.56736430849, + "max_y": 5639.686079427514, + "center": [ + 1657.0448162855241, + 5639.686079427514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.56736430849, + 5639.686079427514 + ], + [ + 1654.522268262558, + 5639.686079427514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.204542136643, + "min_y": 5639.686079427514, + "max_x": 1667.87116983102, + "max_y": 5639.686079427514, + "center": [ + 1665.5378559838316, + 5639.686079427514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.204542136643, + 5639.686079427514 + ], + [ + 1667.87116983102, + 5639.686079427514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "410E20", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1659.5673643084833, + "min_y": 5637.867490513435, + "max_x": 1663.2045421366429, + "max_y": 5641.504668341594, + "center": [ + 1661.385953222563, + 5639.686079427514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.385953222563, + 5639.686079427514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E385", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1836.17012803425, + "min_y": 5633.320634378358, + "max_x": 1837.140691871258, + "max_y": 5633.320634378358, + "center": [ + 1836.6554099527539, + 5633.320634378358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.17012803425, + 5633.320634378358 + ], + [ + 1837.140691871258, + 5633.320634378358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E386", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.887279438186, + "min_y": 5632.18641956863, + "max_x": 1837.887279438186, + "max_y": 5634.454849188084, + "center": [ + 1837.887279438186, + 5633.320634378357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.887279438186, + 5632.18641956863 + ], + [ + 1837.887279438186, + 5634.454849188084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E387", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.140691871258, + "min_y": 5632.18641956863, + "max_x": 1837.140691871258, + "max_y": 5634.454849188084, + "center": [ + 1837.140691871258, + 5633.320634378357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.140691871258, + 5632.18641956863 + ], + [ + 1837.140691871258, + 5634.454849188084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E388", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1827.733688527954, + "min_y": 5633.320634378358, + "max_x": 1828.704252364961, + "max_y": 5633.320634378358, + "center": [ + 1828.2189704464574, + 5633.320634378358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.704252364961, + 5633.320634378358 + ], + [ + 1827.733688527954, + 5633.320634378358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E389", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.987100961025, + "min_y": 5632.18641956863, + "max_x": 1826.987100961025, + "max_y": 5634.454849188084, + "center": [ + 1826.987100961025, + 5633.320634378357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.987100961025, + 5632.18641956863 + ], + [ + 1826.987100961025, + 5634.454849188084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E38A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.733688527954, + "min_y": 5632.18641956863, + "max_x": 1827.733688527954, + "max_y": 5634.454849188084, + "center": [ + 1827.733688527954, + 5633.320634378357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.733688527954, + 5632.18641956863 + ], + [ + 1827.733688527954, + 5634.454849188084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E38B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.4754884443762, + "min_y": 5618.296812062062, + "max_x": 1835.3988919548358, + "max_y": 5624.220215572522, + "center": [ + 1832.437190199606, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.437190199606, + 5621.258513817292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "46E38C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1835.179004024061, + "min_y": 5620.1386324669, + "max_x": 1836.17012803425, + "max_y": 5622.378395167686, + "center": [ + 1835.6745660291554, + 5621.258513817293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.179004024061, + 5622.378395167686 + ], + [ + 1836.17012803425, + 5622.378395167686 + ], + [ + 1836.17012803425, + 5620.1386324669 + ], + [ + 1835.179004024061, + 5620.1386324669 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E38D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1828.704252364961, + "min_y": 5620.1386324669, + "max_x": 1829.695376375152, + "max_y": 5622.378395167686, + "center": [ + 1829.1998143700564, + 5621.258513817293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.695376375152, + 5620.1386324669 + ], + [ + 1828.704252364961, + 5620.1386324669 + ], + [ + 1828.704252364961, + 5622.378395167686 + ], + [ + 1829.695376375152, + 5622.378395167686 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E38E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1841.133832950701, + "min_y": 5619.543692557172, + "max_x": 1855.916266775894, + "max_y": 5621.783455257959, + "center": [ + 1848.5250498632975, + 5620.6635739075655 + ] + }, + "raw_value": "ROTARY PUMP", + "clean_value": "ROTARY PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E38F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1836.17012803425, + "min_y": 5621.258513817292, + "max_x": 1837.140691871258, + "max_y": 5621.258513817292, + "center": [ + 1836.6554099527539, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.17012803425, + 5621.258513817292 + ], + [ + 1837.140691871258, + 5621.258513817292 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E390", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.887279438186, + "min_y": 5620.124299007565, + "max_x": 1837.887279438186, + "max_y": 5622.392728627018, + "center": [ + 1837.887279438186, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.887279438186, + 5620.124299007565 + ], + [ + 1837.887279438186, + 5622.392728627018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E391", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.140691871258, + "min_y": 5620.124299007565, + "max_x": 1837.140691871258, + "max_y": 5622.392728627018, + "center": [ + 1837.140691871258, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.140691871258, + 5620.124299007565 + ], + [ + 1837.140691871258, + 5622.392728627018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E392", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1827.733688527954, + "min_y": 5621.258513817292, + "max_x": 1828.704252364961, + "max_y": 5621.258513817292, + "center": [ + 1828.2189704464574, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.704252364961, + 5621.258513817292 + ], + [ + 1827.733688527954, + 5621.258513817292 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E393", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.987100961025, + "min_y": 5620.124299007565, + "max_x": 1826.987100961025, + "max_y": 5622.392728627018, + "center": [ + 1826.987100961025, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.987100961025, + 5620.124299007565 + ], + [ + 1826.987100961025, + 5622.392728627018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.733688527954, + "min_y": 5620.124299007565, + "max_x": 1827.733688527954, + "max_y": 5622.392728627018, + "center": [ + 1827.733688527954, + 5621.258513817292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.733688527954, + 5620.124299007565 + ], + [ + 1827.733688527954, + 5622.392728627018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "46E395", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1829.7414952164272, + "min_y": 5619.578502625843, + "max_x": 1834.2210206180007, + "max_y": 5624.058028027416, + "center": [ + 1831.981257917214, + 5621.818265326629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.981257917214, + 5621.818265326629 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F1D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 1999.51084377413, + "min_y": 5631.40724203612, + "max_x": 2000.0707844493268, + "max_y": 5632.340476494781, + "center": [ + 1999.7908141117284, + 5631.87385926545 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F1E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2017.244940305016, + "min_y": 5631.408644693123, + "max_x": 2026.203991108163, + "max_y": 5632.341879151784, + "center": [ + 2021.7244657065894, + 5631.875261922454 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F1F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.86883635738, + "min_y": 5631.40724203612, + "max_x": 2009.468243109347, + "max_y": 5632.340476494781, + "center": [ + 2006.6685397333636, + 5631.87385926545 + ] + }, + "raw_value": "2008.09.24", + "clean_value": "2008.09.24", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F20", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2035.6976087317, + "min_y": 5631.420801053806, + "max_x": 2038.4973121076835, + "max_y": 5632.354035512467, + "center": [ + 2037.0974604196917, + 5631.887418283137 + ] + }, + "raw_value": "L.H.J", + "clean_value": "L.H.J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F21", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.082532769701, + "min_y": 5631.40724203612, + "max_x": 2043.8822361456844, + "max_y": 5632.340476494781, + "center": [ + 2042.4823844576927, + 5631.87385926545 + ] + }, + "raw_value": "K.H.M", + "clean_value": "K.H.M", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4B1F22", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.805893458342, + "min_y": 5631.408644693123, + "max_x": 2049.6055968343258, + "max_y": 5632.341879151784, + "center": [ + 2048.205745146334, + 5631.875261922454 + ] + }, + "raw_value": "S.J.J", + "clean_value": "S.J.J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.556784825669, + "min_y": 5622.139956195895, + "max_x": 2090.968469547998, + "max_y": 5622.139956195895, + "center": [ + 2089.262627186834, + 5622.139956195895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.556784825669, + 5622.139956195895 + ], + [ + 2090.968469547998, + 5622.139956195895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2087.444038272758, + "max_y": 5621.241745903408, + "center": [ + 2087.444038272758, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5621.241745903408 + ], + [ + 2087.444038272758, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2089.262627186831, + "min_y": 5620.107531093681, + "max_x": 2089.262627186833, + "max_y": 5622.139956195895, + "center": [ + 2089.262627186832, + 5621.123743644788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.262627186833, + 5620.107531093681 + ], + [ + 2089.262627186831, + 5622.139956195895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2091.081216100909, + "min_y": 5618.973316283955, + "max_x": 2091.081216100909, + "max_y": 5621.241745903408, + "center": [ + 2091.081216100909, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2091.081216100909, + 5621.241745903408 + ], + [ + 2091.081216100909, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2091.081216100909, + "max_y": 5621.241745903408, + "center": [ + 2089.2626271868335, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5618.973316283955 + ], + [ + 2091.081216100909, + 5621.241745903408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2091.081216100909, + "max_y": 5621.241745903408, + "center": [ + 2089.2626271868335, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5621.241745903408 + ], + [ + 2091.081216100909, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2087.444038272758, + "max_y": 5621.241745903408, + "center": [ + 2087.444038272758, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5621.241745903408 + ], + [ + 2087.444038272758, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2087.444038272758, + "max_y": 5621.241745903408, + "center": [ + 2087.444038272758, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5621.241745903408 + ], + [ + 2087.444038272758, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42B9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.444038272758, + "min_y": 5618.973316283955, + "max_x": 2087.444038272758, + "max_y": 5621.241745903408, + "center": [ + 2087.444038272758, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.444038272758, + 5621.241745903408 + ], + [ + 2087.444038272758, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.556784825669, + "min_y": 5622.886543762825, + "max_x": 2090.968469547998, + "max_y": 5622.886543762825, + "center": [ + 2089.262627186834, + 5622.886543762825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.556784825669, + 5622.886543762825 + ], + [ + 2090.968469547998, + 5622.886543762825 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.556784825669, + "min_y": 5623.633131329754, + "max_x": 2090.968469547998, + "max_y": 5623.633131329754, + "center": [ + 2089.262627186834, + 5623.633131329754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.556784825669, + 5623.633131329754 + ], + [ + 2090.968469547998, + 5623.633131329754 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.556784825669, + "min_y": 5622.139956195895, + "max_x": 2087.556784825669, + "max_y": 5623.633131329754, + "center": [ + 2087.556784825669, + 5622.886543762825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.556784825669, + 5623.633131329754 + ], + [ + 2087.556784825669, + 5622.139956195895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2090.968469547998, + "min_y": 5622.139956195895, + "max_x": 2090.968469547998, + "max_y": 5623.633131329754, + "center": [ + 2090.968469547998, + 5622.886543762825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2090.968469547998, + 5623.633131329754 + ], + [ + 2090.968469547998, + 5622.139956195895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2086.697450705829, + "min_y": 5618.973316283955, + "max_x": 2086.697450705829, + "max_y": 5621.241745903408, + "center": [ + 2086.697450705829, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705829, + 5618.973316283955 + ], + [ + 2086.697450705829, + 5621.241745903408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42BF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2091.827803667838, + "min_y": 5618.973316283955, + "max_x": 2091.827803667838, + "max_y": 5621.241745903408, + "center": [ + 2091.827803667838, + 5620.107531093681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2091.827803667838, + 5618.973316283955 + ], + [ + 2091.827803667838, + 5621.241745903408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2089.262627186833, + "min_y": 5623.633131329754, + "max_x": 2089.262627186835, + "max_y": 5625.775030870935, + "center": [ + 2089.262627186834, + 5624.704081100344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.262627186833, + 5623.633131329754 + ], + [ + 2089.262627186835, + 5625.775030870935 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2088.826409952134, + "min_y": 5624.240747552514, + "max_x": 2089.698844421535, + "max_y": 5624.744447828271, + "center": [ + 2089.2626271868344, + 5624.492597690392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2088.826409952134, + 5624.240747552514 + ], + [ + 2089.698844421535, + 5624.744447828271 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2088.826409952134, + "min_y": 5624.651370714325, + "max_x": 2089.698844421535, + "max_y": 5625.155070990085, + "center": [ + 2089.2626271868344, + 5624.903220852205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2088.826409952134, + 5624.651370714325 + ], + [ + 2089.698844421535, + 5625.155070990085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2087.369496047298, + "min_y": 5625.775030870935, + "max_x": 2091.155758326372, + "max_y": 5627.55779394797, + "center": [ + 2089.262627186835, + 5626.666412409452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.369496047298, + 5627.55779394797 + ], + [ + 2091.155758326372, + 5627.55779394797 + ], + [ + 2091.155758326372, + 5625.775030870935 + ], + [ + 2087.369496047298, + 5625.775030870935 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2088.554664094372, + "min_y": 5626.215548177784, + "max_x": 2090.217687899706, + "max_y": 5627.139450291858, + "center": [ + 2089.386175997039, + 5626.677499234821 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2085.885351472484, + "min_y": 5620.107531093681, + "max_x": 2089.262627186833, + "max_y": 5623.759442594622, + "center": [ + 2087.5739893296586, + 5621.933486844151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.885351472484, + 5623.759442594622 + ], + [ + 2089.262627186833, + 5620.107531093681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2078.861257179975, + "min_y": 5621.788070554145, + "max_x": 2086.3271328492647, + "max_y": 5629.2539462234345, + "center": [ + 2082.59419501462, + 5625.52100838879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2082.59419501462, + 5625.52100838879 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2089.262627186835, + "min_y": 5627.55779394797, + "max_x": 2089.262627186835, + "max_y": 5629.518464521854, + "center": [ + 2089.262627186835, + 5628.538129234912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.262627186835, + 5627.55779394797 + ], + [ + 2089.262627186835, + 5629.518464521854 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2081.538348350798, + "min_y": 5626.175729421627, + "max_x": 2083.5526565381238, + "max_y": 5627.854319577731, + "center": [ + 2082.545502444461, + 5627.0150244996785 + ] + }, + "raw_value": "XV", + "clean_value": "XV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42C9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2080.550620826576, + "min_y": 5623.189379153911, + "max_x": 2084.5792372012274, + "max_y": 5624.867969310016, + "center": [ + 2082.5649290139017, + 5624.028674231964 + ] + }, + "raw_value": "5301", + "clean_value": "5301", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42CA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2091.295593651111, + "min_y": 5621.805876842346, + "max_x": 2092.5856969667643, + "max_y": 5622.880962938724, + "center": [ + 2091.9406453089377, + 5622.343419890535 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "4C42CB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2091.295593651111, + "min_y": 5623.627732277042, + "max_x": 2093.230748624591, + "max_y": 5624.70281837342, + "center": [ + 2092.263171137851, + 5624.165275325231 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "4C42CC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2118.289119978234, + "min_y": 5621.538492764957, + "max_x": 2119.423334787963, + "max_y": 5623.357081679037, + "center": [ + 2118.8562273830985, + 5622.447787221997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.289119978234, + 5621.538492764957 + ], + [ + 2119.423334787963, + 5623.357081679037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42CD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5619.719903850885, + "max_x": 2118.289119978234, + "max_y": 5621.538492764957, + "center": [ + 2117.722012573372, + 5620.629198307921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.289119978234, + 5621.538492764957 + ], + [ + 2117.15490516851, + 5619.719903850885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42CE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5619.719903850885, + "max_x": 2119.423334787963, + "max_y": 5619.719903850885, + "center": [ + 2118.2891199782366, + 5619.719903850885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.15490516851, + 5619.719903850885 + ], + [ + 2119.423334787963, + 5619.719903850885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42CF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5623.357081679037, + "max_x": 2119.423334787963, + "max_y": 5623.357081679037, + "center": [ + 2118.2891199782366, + 5623.357081679037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.15490516851, + 5623.357081679037 + ], + [ + 2119.423334787963, + 5623.357081679037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5618.973316283955, + "max_x": 2119.423334787963, + "max_y": 5618.973316283955, + "center": [ + 2118.2891199782366, + 5618.973316283955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.423334787963, + 5618.973316283955 + ], + [ + 2117.15490516851, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2117.15490516851, + "min_y": 5624.103669245966, + "max_x": 2119.423334787963, + "max_y": 5624.103669245966, + "center": [ + 2118.2891199782366, + 5624.103669245966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.423334787963, + 5624.103669245966 + ], + [ + 2117.15490516851, + 5624.103669245966 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2106.846454708329, + "min_y": 5612.6705401756, + "max_x": 2108.388969791632, + "max_y": 5612.6705401756, + "center": [ + 2107.6177122499803, + 5612.6705401756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.388969791632, + 5612.6705401756 + ], + [ + 2106.846454708329, + 5612.6705401756 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2101.291214561793, + "min_y": 5612.6705401756, + "max_x": 2102.848478287425, + "max_y": 5612.6705401756, + "center": [ + 2102.069846424609, + 5612.6705401756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2102.848478287425, + 5612.6705401756 + ], + [ + 2101.291214561793, + 5612.6705401756 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D5", + "entity_type": "LWPOLYLINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2102.848478287425, + "min_y": 5610.671551965149, + "max_x": 2106.846454708329, + "max_y": 5614.669528386053, + "center": [ + 2104.847466497877, + 5612.670540175601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2102.848478287425, + 5614.669528386053 + ], + [ + 2106.846454708329, + 5614.669528386053 + ], + [ + 2106.846454708329, + 5610.671551965149 + ], + [ + 2102.848478287425, + 5610.671551965149 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D6", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2103.800721372261, + "min_y": 5611.273892183485, + "max_x": 2105.3999119406226, + "max_y": 5613.939209797421, + "center": [ + 2104.6003166564415, + 5612.606550990453 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2101.291214561793, + "min_y": 5611.550926062262, + "max_x": 2101.291214561793, + "max_y": 5613.790154288939, + "center": [ + 2101.291214561793, + 5612.670540175601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2101.291214561793, + 5611.550926062262 + ], + [ + 2101.291214561793, + 5613.790154288939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2100.624885158307, + "min_y": 5611.550926062262, + "max_x": 2100.624885158307, + "max_y": 5613.790154288939, + "center": [ + 2100.624885158307, + 5612.670540175601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2100.624885158307, + 5611.550926062262 + ], + [ + 2100.624885158307, + 5613.790154288939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42D9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2108.403718433957, + "min_y": 5611.550926062262, + "max_x": 2108.403718433957, + "max_y": 5613.790154288939, + "center": [ + 2108.403718433957, + 5612.670540175601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.403718433957, + 5611.550926062262 + ], + [ + 2108.403718433957, + 5613.790154288939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2109.07004783744, + "min_y": 5611.550926062262, + "max_x": 2109.07004783744, + "max_y": 5613.790154288939, + "center": [ + 2109.07004783744, + 5612.670540175601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.07004783744, + 5611.550926062262 + ], + [ + 2109.07004783744, + 5613.790154288939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2124.98496160121, + "min_y": 5620.773530612241, + "max_x": 2126.785175929516, + "max_y": 5622.573744940526, + "center": [ + 2125.885068765363, + 5621.673637776384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.785175929516, + 5622.573744940526 + ], + [ + 2124.98496160121, + 5620.773530612241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2124.98496160121, + "min_y": 5618.973316283955, + "max_x": 2126.785175929516, + "max_y": 5620.773530612241, + "center": [ + 2125.885068765363, + 5619.873423448098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.98496160121, + 5620.773530612241 + ], + [ + 2126.785175929516, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DD", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.185104486754, + "min_y": 5620.173459169479, + "max_x": 2126.905190218068, + "max_y": 5621.373602055003, + "center": [ + 2126.545147352411, + 5620.773530612241 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.785175929516, + "min_y": 5618.973316283955, + "max_x": 2128.585390257791, + "max_y": 5620.773530612241, + "center": [ + 2127.685283093653, + 5619.873423448098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.785175929516, + 5618.973316283955 + ], + [ + 2128.585390257791, + 5620.773530612241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42DF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.785175929516, + "min_y": 5620.773530612241, + "max_x": 2128.585390257791, + "max_y": 5622.573744940526, + "center": [ + 2127.685283093653, + 5621.673637776384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.585390257791, + 5620.773530612241 + ], + [ + 2126.785175929516, + 5622.573744940526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2125.651720255766, + "min_y": 5622.573744940526, + "max_x": 2127.918631603261, + "max_y": 5622.573744940526, + "center": [ + 2126.7851759295136, + 5622.573744940526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.651720255766, + 5622.573744940526 + ], + [ + 2127.918631603261, + 5622.573744940526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2125.651720255766, + "min_y": 5618.973316283955, + "max_x": 2127.918631603261, + "max_y": 5618.973316283955, + "center": [ + 2126.7851759295136, + 5618.973316283955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.651720255766, + 5618.973316283955 + ], + [ + 2127.918631603261, + 5618.973316283955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2124.807928973951, + "min_y": 5623.364643722752, + "max_x": 2128.76242288508, + "max_y": 5625.73734006943, + "center": [ + 2126.7851759295154, + 5624.550991896091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.807928973951, + 5625.73734006943 + ], + [ + 2128.76242288508, + 5623.364643722752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2124.807928973951, + "min_y": 5623.364643722752, + "max_x": 2128.76242288508, + "max_y": 5625.73734006943, + "center": [ + 2126.7851759295154, + 5624.550991896091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.76242288508, + 5625.73734006943 + ], + [ + 2124.807928973951, + 5623.364643722752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2124.807928973951, + "min_y": 5623.364643722752, + "max_x": 2124.807928973951, + "max_y": 5625.73734006943, + "center": [ + 2124.807928973951, + 5624.550991896091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.807928973951, + 5625.73734006943 + ], + [ + 2124.807928973951, + 5623.364643722752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.785175929516, + "min_y": 5622.573744940526, + "max_x": 2126.785175929516, + "max_y": 5622.573744940526, + "center": [ + 2126.785175929516, + 5622.573744940526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.785175929516, + 5622.573744940526 + ], + [ + 2126.785175929516, + 5622.573744940526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2125.598827756176, + "min_y": 5622.573744940526, + "max_x": 2126.785175929516, + "max_y": 5624.55099189609, + "center": [ + 2126.192001842846, + 5623.562368418308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.598827756176, + 5622.573744940526 + ], + [ + 2126.785175929516, + 5624.55099189609 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.785175929516, + "min_y": 5622.573744940526, + "max_x": 2127.971524102854, + "max_y": 5624.55099189609, + "center": [ + 2127.378350016185, + 5623.562368418308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.785175929516, + 5624.55099189609 + ], + [ + 2127.971524102854, + 5622.573744940526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2126.785175929516, + "min_y": 5624.55099189609, + "max_x": 2126.785175929516, + "max_y": 5627.18789700087, + "center": [ + 2126.785175929516, + 5625.86944444848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.785175929516, + 5624.55099189609 + ], + [ + 2126.785175929516, + 5627.18789700087 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42E9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2122.708151441964, + "min_y": 5624.55099189609, + "max_x": 2124.807928973951, + "max_y": 5624.55099189609, + "center": [ + 2123.7580402079575, + 5624.55099189609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.807928973951, + 5624.55099189609 + ], + [ + 2122.708151441964, + 5624.55099189609 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42EA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2128.76242288508, + "min_y": 5623.364643722752, + "max_x": 2128.76242288508, + "max_y": 5625.73734006943, + "center": [ + 2128.76242288508, + 5624.550991896091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.76242288508, + 5625.73734006943 + ], + [ + 2128.76242288508, + 5623.364643722752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2102.558235108742, + "min_y": 5621.467389187162, + "max_x": 2105.935510823092, + "max_y": 5625.119300688103, + "center": [ + 2104.2468729659167, + 5623.293344937632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2102.558235108742, + 5625.119300688103 + ], + [ + 2105.935510823092, + 5621.467389187162 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42EC", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2095.534140816233, + "min_y": 5623.147928647624, + "max_x": 2103.000016485523, + "max_y": 5630.613804316914, + "center": [ + 2099.267078650878, + 5626.880866482269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2099.267078650878, + 5626.880866482269 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42ED", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.189617026042, + "min_y": 5621.382104691938, + "max_x": 2107.6814046201357, + "max_y": 5624.873892286032, + "center": [ + 2105.935510823089, + 5623.127998488985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823089, + 5623.127998488985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42EE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.229668461928, + "min_y": 5623.499814289376, + "max_x": 2107.641353184259, + "max_y": 5623.499814289376, + "center": [ + 2105.935510823094, + 5623.499814289376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.229668461928, + 5623.499814289376 + ], + [ + 2107.641353184259, + 5623.499814289376 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42EF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.116921909017, + "min_y": 5620.333174377435, + "max_x": 2104.116921909017, + "max_y": 5622.601603996888, + "center": [ + 2104.116921909017, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.116921909017, + 5622.601603996888 + ], + [ + 2104.116921909017, + 5620.333174377435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2105.935510823089, + "min_y": 5621.467389187162, + "max_x": 2105.935510823092, + "max_y": 5623.499814289376, + "center": [ + 2105.93551082309, + 5622.4836017382695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823092, + 5621.467389187162 + ], + [ + 2105.935510823089, + 5623.499814289376 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2107.754099737167, + "min_y": 5620.333174377435, + "max_x": 2107.754099737167, + "max_y": 5622.601603996888, + "center": [ + 2107.754099737167, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.754099737167, + 5622.601603996888 + ], + [ + 2107.754099737167, + 5620.333174377435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.116921909017, + "min_y": 5620.333174377435, + "max_x": 2107.754099737167, + "max_y": 5622.601603996888, + "center": [ + 2105.935510823092, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.116921909017, + 5620.333174377435 + ], + [ + 2107.754099737167, + 5622.601603996888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.116921909017, + "min_y": 5620.333174377435, + "max_x": 2107.754099737167, + "max_y": 5622.601603996888, + "center": [ + 2105.935510823092, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.116921909017, + 5622.601603996888 + ], + [ + 2107.754099737167, + 5620.333174377435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2103.370334342088, + "min_y": 5620.333174377435, + "max_x": 2103.370334342088, + "max_y": 5622.601603996888, + "center": [ + 2103.370334342088, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2103.370334342088, + 5620.333174377435 + ], + [ + 2103.370334342088, + 5622.601603996888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2108.500687304096, + "min_y": 5620.333174377435, + "max_x": 2108.500687304096, + "max_y": 5622.601603996888, + "center": [ + 2108.500687304096, + 5621.467389187162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.500687304096, + 5620.333174377435 + ], + [ + 2108.500687304096, + 5622.601603996888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2105.935510823089, + "min_y": 5624.87389228603, + "max_x": 2105.935510823089, + "max_y": 5627.015791827211, + "center": [ + 2105.935510823089, + 5625.9448420566205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823089, + 5624.87389228603 + ], + [ + 2105.935510823089, + 5627.015791827211 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2105.499293588387, + "min_y": 5625.481508508791, + "max_x": 2106.371728057789, + "max_y": 5625.985208784548, + "center": [ + 2105.935510823088, + 5625.73335864667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.499293588387, + 5625.481508508791 + ], + [ + 2106.371728057789, + 5625.985208784548 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2105.499293588387, + "min_y": 5625.892131670602, + "max_x": 2106.371728057789, + "max_y": 5626.395831946361, + "center": [ + 2105.935510823088, + 5626.143981808482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.499293588387, + 5625.892131670602 + ], + [ + 2106.371728057789, + 5626.395831946361 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42F9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2104.042379683554, + "min_y": 5627.015791827211, + "max_x": 2107.828641962625, + "max_y": 5628.798554904246, + "center": [ + 2105.9355108230893, + 5627.907173365728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.042379683554, + 5628.798554904246 + ], + [ + 2107.828641962625, + 5628.798554904246 + ], + [ + 2107.828641962625, + 5627.015791827211 + ], + [ + 2104.042379683554, + 5627.015791827211 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2105.227547730627, + "min_y": 5627.456309134061, + "max_x": 2106.890571535961, + "max_y": 5628.380211248135, + "center": [ + 2106.059059633294, + 5627.918260191098 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2105.935510823089, + "min_y": 5628.798554904246, + "max_x": 2105.935510823089, + "max_y": 5630.759225478131, + "center": [ + 2105.935510823089, + 5629.778890191188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823089, + 5628.798554904246 + ], + [ + 2105.935510823089, + 5630.759225478131 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.801296013366, + "min_y": 5619.648800273086, + "max_x": 2107.069725632821, + "max_y": 5619.648800273086, + "center": [ + 2105.9355108230934, + 5619.648800273086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.069725632821, + 5619.648800273086 + ], + [ + 2104.801296013366, + 5619.648800273086 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2105.935510823092, + "min_y": 5619.648800273086, + "max_x": 2107.069725632821, + "max_y": 5621.467389187162, + "center": [ + 2106.502618227956, + 5620.558094730124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823092, + 5621.467389187162 + ], + [ + 2107.069725632821, + 5619.648800273086 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.801296013366, + "min_y": 5619.648800273086, + "max_x": 2105.935510823092, + "max_y": 5621.467389187162, + "center": [ + 2105.368403418229, + 5620.558094730124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.935510823092, + 5621.467389187162 + ], + [ + 2104.801296013366, + 5619.648800273086 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C42FF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2104.799733032697, + "min_y": 5618.973316283955, + "max_x": 2107.069725632772, + "max_y": 5618.973316283963, + "center": [ + 2105.9347293327346, + 5618.973316283958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.069725632772, + 5618.973316283955 + ], + [ + 2104.799733032697, + 5618.973316283963 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4300", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2098.211231987056, + "min_y": 5627.535587515107, + "max_x": 2100.225540174382, + "max_y": 5629.2141776712115, + "center": [ + 2099.218386080719, + 5628.37488259316 + ] + }, + "raw_value": "XV", + "clean_value": "XV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4301", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2097.223504462835, + "min_y": 5624.549237247391, + "max_x": 2101.2521208374865, + "max_y": 5626.227827403495, + "center": [ + 2099.237812650161, + 5625.3885323254435 + ] + }, + "raw_value": "5402", + "clean_value": "5402", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4302", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2108.023901733257, + "min_y": 5623.302583548478, + "max_x": 2109.31400504891, + "max_y": 5624.377669644856, + "center": [ + 2108.6689533910835, + 5623.840126596667 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "4C4303", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2108.023901733257, + "min_y": 5625.124438983174, + "max_x": 2109.9590567067366, + "max_y": 5626.199525079552, + "center": [ + 2108.991479219997, + 5625.661982031363 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "4C4304", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.372934694961, + "min_y": 5612.685922362249, + "max_x": 2088.970021090652, + "max_y": 5612.685922362255, + "center": [ + 2088.1714778928063, + 5612.685922362252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.372934694961, + 5612.685922362249 + ], + [ + 2088.970021090652, + 5612.685922362255 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4305", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.174295737304, + "min_y": 5612.685922362274, + "max_x": 2097.771382132997, + "max_y": 5612.685922362279, + "center": [ + 2096.9728389351503, + 5612.685922362276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.174295737304, + 5612.685922362274 + ], + [ + 2097.771382132997, + 5612.685922362279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4306", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2086.697450705829, + "min_y": 5611.550926062282, + "max_x": 2086.697450705836, + "max_y": 5613.820918662355, + "center": [ + 2086.6974507058326, + 5612.685922362319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705836, + 5613.820918662355 + ], + [ + 2086.697450705829, + 5611.550926062282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4307", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2087.372934694958, + "min_y": 5611.550926062232, + "max_x": 2087.372934694966, + "max_y": 5613.820918662306, + "center": [ + 2087.372934694962, + 5612.685922362269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.372934694966, + 5613.820918662306 + ], + [ + 2087.372934694958, + 5611.550926062232 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4308", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2097.771382132993, + "min_y": 5611.550926062311, + "max_x": 2097.771382132998, + "max_y": 5613.820918662385, + "center": [ + 2097.7713821329953, + 5612.685922362349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.771382132998, + 5613.820918662385 + ], + [ + 2097.771382132993, + 5611.550926062311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4309", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2098.446866122123, + "min_y": 5611.550926062262, + "max_x": 2098.446866122129, + "max_y": 5613.820918662336, + "center": [ + 2098.4468661221263, + 5612.6859223623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.446866122129, + 5613.820918662336 + ], + [ + 2098.446866122123, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430A", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2089.921357262047, + "min_y": 5611.867009124834, + "max_x": 2093.9529301234634, + "max_y": 5613.546831150425, + "center": [ + 2091.937143692755, + 5612.706920137629 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430B", + "entity_type": "LWPOLYLINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2088.970021090652, + "min_y": 5611.550926062311, + "max_x": 2096.174295737304, + "max_y": 5613.820918662306, + "center": [ + 2092.5721584139783, + 5612.685922362309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2088.970021090652, + 5613.820918662306 + ], + [ + 2096.174295737304, + 5613.820918662306 + ], + [ + 2096.174295737304, + 5611.550926062311 + ], + [ + 2088.970021090652, + 5611.550926062311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2115.870670342856, + "min_y": 5612.685140871988, + "max_x": 2117.689259256936, + "max_y": 5613.819355681715, + "center": [ + 2116.7799647998963, + 5613.252248276851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.870670342856, + 5612.685140871988 + ], + [ + 2117.689259256936, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2115.870670342856, + "min_y": 5611.550926062262, + "max_x": 2117.689259256936, + "max_y": 5612.685140871988, + "center": [ + 2116.7799647998963, + 5612.118033467124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.870670342856, + 5612.685140871988 + ], + [ + 2117.689259256936, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430E", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2115.501109497226, + "min_y": 5612.685140871988, + "max_x": 2116.240231188487, + "max_y": 5612.685140871988, + "center": [ + 2115.8706703428566, + 5612.685140871988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.501109497226, + 5612.685140871988 + ], + [ + 2116.240231188487, + 5612.685140871988 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C430F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2114.052081428785, + "min_y": 5612.685140871988, + "max_x": 2115.870670342856, + "max_y": 5613.819355681715, + "center": [ + 2114.9613758858204, + 5613.252248276851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.870670342856, + 5612.685140871988 + ], + [ + 2114.052081428785, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4310", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2114.052081428785, + "min_y": 5611.550926062262, + "max_x": 2114.052081428785, + "max_y": 5613.819355681715, + "center": [ + 2114.052081428785, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2114.052081428785, + 5613.819355681715 + ], + [ + 2114.052081428785, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4311", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2114.052081428785, + "min_y": 5611.550926062262, + "max_x": 2115.870670342856, + "max_y": 5612.685140871988, + "center": [ + 2114.9613758858204, + 5612.118033467124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.870670342856, + 5612.685140871988 + ], + [ + 2114.052081428785, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4312", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2117.689259256936, + "min_y": 5611.550926062262, + "max_x": 2117.689259256936, + "max_y": 5613.819355681715, + "center": [ + 2117.689259256936, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.689259256936, + 5613.819355681715 + ], + [ + 2117.689259256936, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4313", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2118.435846823865, + "min_y": 5611.550926062262, + "max_x": 2118.435846823865, + "max_y": 5613.819355681715, + "center": [ + 2118.435846823865, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.435846823865, + 5613.819355681715 + ], + [ + 2118.435846823865, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4314", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2113.305493861856, + "min_y": 5611.550926062262, + "max_x": 2113.305493861856, + "max_y": 5613.819355681715, + "center": [ + 2113.305493861856, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2113.305493861856, + 5613.819355681715 + ], + [ + 2113.305493861856, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4315", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2125.091901743015, + "min_y": 5611.550926062262, + "max_x": 2125.091901743015, + "max_y": 5613.819355681715, + "center": [ + 2125.091901743015, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.091901743015, + 5611.550926062262 + ], + [ + 2125.091901743015, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4316", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2121.454723914864, + "min_y": 5611.550926062262, + "max_x": 2121.454723914864, + "max_y": 5613.819355681715, + "center": [ + 2121.454723914864, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.454723914864, + 5611.550926062262 + ], + [ + 2121.454723914864, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4317", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2123.852288829787, + "min_y": 5613.0462357569, + "max_x": 2125.091901743015, + "max_y": 5613.819355681715, + "center": [ + 2124.472095286401, + 5613.432795719307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.091901743015, + 5613.819355681715 + ], + [ + 2123.852288829787, + 5613.0462357569 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4318", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2123.852288829787, + "min_y": 5611.550926062262, + "max_x": 2125.091901743015, + "max_y": 5612.324045987077, + "center": [ + 2124.472095286401, + 5611.93748602467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.091901743015, + 5611.550926062262 + ], + [ + 2123.852288829787, + 5612.324045987077 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4319", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2122.590961947456, + "min_y": 5612.002789990505, + "max_x": 2123.955663710428, + "max_y": 5613.367491753477, + "center": [ + 2123.273312828942, + 5612.685140871991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.273312828942, + 5612.685140871991 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C431A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2121.454723914864, + "min_y": 5613.0462357569, + "max_x": 2122.694336828097, + "max_y": 5613.819355681715, + "center": [ + 2122.0745303714807, + 5613.432795719307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.694336828097, + 5613.0462357569 + ], + [ + 2121.454723914864, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C431B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2121.454723914864, + "min_y": 5611.550926062262, + "max_x": 2122.694336828097, + "max_y": 5612.324045987077, + "center": [ + 2122.0745303714807, + 5611.93748602467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.694336828097, + 5612.324045987077 + ], + [ + 2121.454723914864, + 5611.550926062262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C431C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2120.708136347935, + "min_y": 5611.550926062262, + "max_x": 2120.708136347935, + "max_y": 5613.819355681715, + "center": [ + 2120.708136347935, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.708136347935, + 5611.550926062262 + ], + [ + 2120.708136347935, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C431D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2125.838489309944, + "min_y": 5611.550926062262, + "max_x": 2125.838489309944, + "max_y": 5613.819355681715, + "center": [ + 2125.838489309944, + 5612.685140871989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.838489309944, + 5611.550926062262 + ], + [ + 2125.838489309944, + 5613.819355681715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C431E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2087.1772213781474, + "min_y": 5601.537064022978, + "max_x": 2093.1006248886065, + "max_y": 5607.460467533438, + "center": [ + 2090.138923133377, + 5604.498765778208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2090.138923133377, + 5604.498765778208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C431F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5599.234203109201, + "max_x": 2088.342101524444, + "max_y": 5602.144384884514, + "center": [ + 2087.519776115103, + 5600.6892939968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2088.342101524444, + 5602.144384884514 + ], + [ + 2086.697450705762, + 5599.234203109201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C4320", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2091.935744742315, + "min_y": 5599.234203109201, + "max_x": 2093.580395561, + "max_y": 5602.144384884514, + "center": [ + 2092.758070151657, + 5600.6892939968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2091.935744742315, + 5602.144384884514 + ], + [ + 2093.580395561, + 5599.234203109201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C4321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5599.234203109201, + "max_x": 2093.580395561, + "max_y": 5599.234203109201, + "center": [ + 2090.138923133381, + 5599.234203109201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2093.580395561, + 5599.234203109201 + ], + [ + 2086.697450705762, + 5599.234203109201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C4322", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2089.481328791688, + "min_y": 5603.841171436518, + "max_x": 2090.7965174750657, + "max_y": 5605.156360119897, + "center": [ + 2090.138923133377, + 5604.498765778208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2090.138923133377, + 5604.498765778208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C4323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2105.414784077319, + "min_y": 5602.195904864431, + "max_x": 2106.13720484234, + "max_y": 5602.195904864431, + "center": [ + 2105.7759944598292, + 5602.195904864431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.414784077319, + 5602.195904864431 + ], + [ + 2106.13720484234, + 5602.195904864431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2106.13720484234, + "min_y": 5601.078840530107, + "max_x": 2106.13720484234, + "max_y": 5603.312969198761, + "center": [ + 2106.13720484234, + 5602.195904864434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2106.13720484234, + 5603.312969198761 + ], + [ + 2106.13720484234, + 5601.078840530107 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C4325", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2106.663255461473, + "min_y": 5601.078840530107, + "max_x": 2106.663255461473, + "max_y": 5603.312969198761, + "center": [ + 2106.663255461473, + 5602.195904864434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2106.663255461473, + 5603.312969198761 + ], + [ + 2106.663255461473, + 5601.078840530107 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C4326", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2098.7201444874445, + "min_y": 5599.234203109201, + "max_x": 2104.6435479979036, + "max_y": 5605.157606619661, + "center": [ + 2101.681846242674, + 5602.195904864431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2101.681846242674, + 5602.195904864431 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "4C4327", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2104.423660067128, + "min_y": 5601.076023514038, + "max_x": 2105.414784077319, + "max_y": 5603.315786214825, + "center": [ + 2104.9192220722234, + 5602.195904864431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2104.423660067128, + 5603.315786214825 + ], + [ + 2105.414784077319, + 5603.315786214825 + ], + [ + 2105.414784077319, + 5601.076023514038 + ], + [ + 2104.423660067128, + 5601.076023514038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4328", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2097.94890840803, + "min_y": 5601.076023514038, + "max_x": 2098.94003241822, + "max_y": 5603.315786214825, + "center": [ + 2098.444470413125, + 5602.195904864431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.94003241822, + 5601.076023514038 + ], + [ + 2097.94890840803, + 5601.076023514038 + ], + [ + 2097.94890840803, + 5603.315786214825 + ], + [ + 2098.94003241822, + 5603.315786214825 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4329", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2096.549717278614, + "min_y": 5601.15111741982, + "max_x": 2096.549717278614, + "max_y": 5603.240692309058, + "center": [ + 2096.549717278614, + 5602.195904864439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.549717278614, + 5603.240692309058 + ], + [ + 2096.549717278614, + 5601.15111741982 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C432A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2097.149342763354, + "min_y": 5601.15111741982, + "max_x": 2097.149342763354, + "max_y": 5603.240692309058, + "center": [ + 2097.149342763354, + 5602.195904864439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.149342763354, + 5603.240692309058 + ], + [ + 2097.149342763354, + 5601.15111741982 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "4C432B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2097.149342763354, + "min_y": 5602.195904864431, + "max_x": 2097.94890840803, + "max_y": 5602.195904864431, + "center": [ + 2097.5491255856923, + 5602.195904864431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.149342763354, + 5602.195904864431 + ], + [ + 2097.94890840803, + 5602.195904864431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C432C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5595.935611169664, + "max_x": 2096.3286795005174, + "max_y": 5597.4754480264555, + "center": [ + 2091.5130651031395, + 5596.70552959806 + ] + }, + "raw_value": "\\pi0.31456;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-5101}", + "clean_value": "\\pi0.31456; \\fArial|b1|i1|c238|p34; .3333x; P-5101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.111681054468, + "min_y": 5601.078840530107, + "max_x": 2110.640866094463, + "max_y": 5601.390915090966, + "center": [ + 2109.876273574466, + 5601.234877810537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.111681054468, + 5601.078840530107 + ], + [ + 2110.640866094463, + 5601.390915090966 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.111681054468, + "min_y": 5602.63921333443, + "max_x": 2110.640866094463, + "max_y": 5602.951287895296, + "center": [ + 2109.876273574466, + 5602.795250614863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.111681054468, + 5602.951287895296 + ], + [ + 2110.640866094463, + 5602.63921333443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4332", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2110.640866094463, + "min_y": 5601.390915090966, + "max_x": 2110.640866094463, + "max_y": 5602.63921333443, + "center": [ + 2110.640866094463, + 5602.015064212697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2110.640866094463, + 5602.63921333443 + ], + [ + 2110.640866094463, + 5601.390915090966 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.111681054468, + "min_y": 5601.078840530107, + "max_x": 2109.111681054468, + "max_y": 5602.951287895296, + "center": [ + 2109.111681054468, + 5602.015064212702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.111681054468, + 5602.951287895296 + ], + [ + 2109.111681054468, + 5601.078840530107 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2114.730764400747, + "min_y": 5601.078840530107, + "max_x": 2116.259949440741, + "max_y": 5601.390915090966, + "center": [ + 2115.4953569207437, + 5601.234877810537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.259949440741, + 5601.078840530107 + ], + [ + 2114.730764400747, + 5601.390915090966 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2114.730764400747, + "min_y": 5602.63921333443, + "max_x": 2116.259949440741, + "max_y": 5602.951287895296, + "center": [ + 2115.4953569207437, + 5602.795250614863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.259949440741, + 5602.951287895296 + ], + [ + 2114.730764400747, + 5602.63921333443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2114.730764400747, + "min_y": 5601.390915090966, + "max_x": 2114.730764400747, + "max_y": 5602.63921333443, + "center": [ + 2114.730764400747, + 5602.015064212697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2114.730764400747, + 5602.63921333443 + ], + [ + 2114.730764400747, + 5601.390915090966 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4337", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.259949440741, + "min_y": 5601.078840530107, + "max_x": 2116.259949440741, + "max_y": 5602.951287895296, + "center": [ + 2116.259949440741, + 5602.015064212702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.259949440741, + 5602.951287895296 + ], + [ + 2116.259949440741, + 5601.078840530107 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4338", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2122.190985361769, + "min_y": 5601.825428097035, + "max_x": 2123.325200171498, + "max_y": 5603.644017011116, + "center": [ + 2122.7580927666336, + 5602.734722554076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.190985361769, + 5603.644017011116 + ], + [ + 2123.325200171498, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4339", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5601.825428097035, + "max_x": 2122.190985361769, + "max_y": 5603.644017011116, + "center": [ + 2121.6238779569076, + 5602.734722554076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.190985361769, + 5603.644017011116 + ], + [ + 2121.056770552046, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433A", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2122.190985361769, + "min_y": 5603.274456165484, + "max_x": 2122.190985361769, + "max_y": 5604.013577856743, + "center": [ + 2122.190985361769, + 5603.644017011113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.190985361769, + 5604.013577856743 + ], + [ + 2122.190985361769, + 5603.274456165484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2122.190985361769, + "min_y": 5603.644017011116, + "max_x": 2123.325200171498, + "max_y": 5605.462605925186, + "center": [ + 2122.7580927666336, + 5604.553311468151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.190985361769, + 5603.644017011116 + ], + [ + 2123.325200171498, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5605.462605925186, + "max_x": 2123.325200171498, + "max_y": 5605.462605925186, + "center": [ + 2122.190985361772, + 5605.462605925186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.325200171498, + 5605.462605925186 + ], + [ + 2121.056770552046, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5603.644017011116, + "max_x": 2122.190985361769, + "max_y": 5605.462605925186, + "center": [ + 2121.6238779569076, + 5604.553311468151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.190985361769, + 5603.644017011116 + ], + [ + 2121.056770552046, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5601.825428097035, + "max_x": 2123.325200171498, + "max_y": 5601.825428097035, + "center": [ + 2122.190985361772, + 5601.825428097035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.325200171498, + 5601.825428097035 + ], + [ + 2121.056770552046, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C433F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5601.078840530107, + "max_x": 2123.325200171498, + "max_y": 5601.078840530107, + "center": [ + 2122.190985361772, + 5601.078840530107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.325200171498, + 5601.078840530107 + ], + [ + 2121.056770552046, + 5601.078840530107 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4340", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2121.056770552046, + "min_y": 5606.209193492116, + "max_x": 2123.325200171498, + "max_y": 5606.209193492116, + "center": [ + 2122.190985361772, + 5606.209193492116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.325200171498, + 5606.209193492116 + ], + [ + 2121.056770552046, + 5606.209193492116 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4341", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5601.825428097035, + "max_x": 2129.589225972584, + "max_y": 5601.825428097035, + "center": [ + 2128.4550111628573, + 5601.825428097035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.320796353131, + 5601.825428097035 + ], + [ + 2129.589225972584, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4342", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5605.462605925186, + "max_x": 2129.589225972584, + "max_y": 5605.462605925186, + "center": [ + 2128.4550111628573, + 5605.462605925186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.320796353131, + 5605.462605925186 + ], + [ + 2129.589225972584, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4343", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2128.81610604777, + "min_y": 5601.825428097035, + "max_x": 2129.589225972584, + "max_y": 5603.065041010262, + "center": [ + 2129.202666010177, + 5602.445234553648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.589225972584, + 5601.825428097035 + ], + [ + 2128.81610604777, + 5603.065041010262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4344", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5601.825428097035, + "max_x": 2128.093916277945, + "max_y": 5603.065041010262, + "center": [ + 2127.707356315538, + 5602.445234553648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.320796353131, + 5601.825428097035 + ], + [ + 2128.093916277945, + 5603.065041010262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4345", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.7726602813723, + "min_y": 5602.961666129623, + "max_x": 2129.137362044344, + "max_y": 5604.326367892595, + "center": [ + 2128.455011162858, + 5603.644017011109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.455011162858, + 5603.644017011109 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4346", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2128.81610604777, + "min_y": 5604.222993011954, + "max_x": 2129.589225972584, + "max_y": 5605.462605925186, + "center": [ + 2129.202666010177, + 5604.84279946857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.81610604777, + 5604.222993011954 + ], + [ + 2129.589225972584, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4347", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5604.222993011954, + "max_x": 2128.093916277945, + "max_y": 5605.462605925186, + "center": [ + 2127.707356315538, + 5604.84279946857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.093916277945, + 5604.222993011954 + ], + [ + 2127.320796353131, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4348", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5606.209193492116, + "max_x": 2129.589225972584, + "max_y": 5606.209193492116, + "center": [ + 2128.4550111628573, + 5606.209193492116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.320796353131, + 5606.209193492116 + ], + [ + 2129.589225972584, + 5606.209193492116 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4349", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2127.320796353131, + "min_y": 5601.078840530107, + "max_x": 2129.589225972584, + "max_y": 5601.078840530107, + "center": [ + 2128.4550111628573, + 5601.078840530107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.320796353131, + 5601.078840530107 + ], + [ + 2129.589225972584, + 5601.078840530107 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2135.605749162987, + "min_y": 5601.825428097035, + "max_x": 2136.739963972714, + "max_y": 5603.644017011116, + "center": [ + 2136.1728565678504, + 5602.734722554076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5603.644017011116 + ], + [ + 2136.739963972714, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2134.471534353261, + "min_y": 5601.825428097035, + "max_x": 2135.605749162987, + "max_y": 5603.644017011116, + "center": [ + 2135.038641758124, + 5602.734722554076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5603.644017011116 + ], + [ + 2134.471534353261, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434C", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2135.605749162987, + "min_y": 5603.274456165484, + "max_x": 2135.605749162987, + "max_y": 5604.013577856743, + "center": [ + 2135.605749162987, + 5603.644017011113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5604.013577856743 + ], + [ + 2135.605749162987, + 5603.274456165484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2135.605749162987, + "min_y": 5603.644017011116, + "max_x": 2136.739963972714, + "max_y": 5605.462605925186, + "center": [ + 2136.1728565678504, + 5604.553311468151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5603.644017011116 + ], + [ + 2136.739963972714, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2134.471534353261, + "min_y": 5605.462605925186, + "max_x": 2136.739963972714, + "max_y": 5605.462605925186, + "center": [ + 2135.6057491629876, + 5605.462605925186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.739963972714, + 5605.462605925186 + ], + [ + 2134.471534353261, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C434F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2134.471534353261, + "min_y": 5603.644017011116, + "max_x": 2135.605749162987, + "max_y": 5605.462605925186, + "center": [ + 2135.038641758124, + 5604.553311468151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5603.644017011116 + ], + [ + 2134.471534353261, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4350", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2134.471534353261, + "min_y": 5601.825428097035, + "max_x": 2136.739963972714, + "max_y": 5601.825428097035, + "center": [ + 2135.6057491629876, + 5601.825428097035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.739963972714, + 5601.825428097035 + ], + [ + 2134.471534353261, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4351", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5601.825428097035, + "max_x": 2143.0039897738, + "max_y": 5601.825428097035, + "center": [ + 2141.8697749640733, + 5601.825428097035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.735560154347, + 5601.825428097035 + ], + [ + 2143.0039897738, + 5601.825428097035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4352", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5605.462605925186, + "max_x": 2143.0039897738, + "max_y": 5605.462605925186, + "center": [ + 2141.8697749640733, + 5605.462605925186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.735560154347, + 5605.462605925186 + ], + [ + 2143.0039897738, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4353", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2142.230869848988, + "min_y": 5601.825428097035, + "max_x": 2143.0039897738, + "max_y": 5603.065041010262, + "center": [ + 2142.617429811394, + 5602.445234553648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.0039897738, + 5601.825428097035 + ], + [ + 2142.230869848988, + 5603.065041010262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4354", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5601.825428097035, + "max_x": 2141.508680079161, + "max_y": 5603.065041010262, + "center": [ + 2141.1221201167536, + 5602.445234553648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.735560154347, + 5601.825428097035 + ], + [ + 2141.508680079161, + 5603.065041010262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4355", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2141.18742408259, + "min_y": 5602.961666129623, + "max_x": 2142.552125845562, + "max_y": 5604.326367892595, + "center": [ + 2141.869774964076, + 5603.644017011109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.869774964076, + 5603.644017011109 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4356", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2142.230869848988, + "min_y": 5604.222993011954, + "max_x": 2143.0039897738, + "max_y": 5605.462605925186, + "center": [ + 2142.617429811394, + 5604.84279946857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.230869848988, + 5604.222993011954 + ], + [ + 2143.0039897738, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4357", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2140.735560154347, + "min_y": 5604.222993011954, + "max_x": 2141.508680079161, + "max_y": 5605.462605925186, + "center": [ + 2141.1221201167536, + 5604.84279946857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.508680079161, + 5604.222993011954 + ], + [ + 2140.735560154347, + 5605.462605925186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4358", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2135.232455379523, + "min_y": 5601.078840530106, + "max_x": 2135.9790429464515, + "max_y": 5601.825428097036, + "center": [ + 2135.605749162987, + 5601.452134313571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5601.452134313571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4359", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 2135.232455379523, + "min_y": 5605.462605925186, + "max_x": 2135.9790429464515, + "max_y": 5606.209193492115, + "center": [ + 2135.605749162987, + 5605.835899708651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.605749162987, + 5605.835899708651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2141.4964811806085, + "min_y": 5605.462605925186, + "max_x": 2142.243068747537, + "max_y": 5606.209193492115, + "center": [ + 2141.869774964073, + 5605.835899708651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.869774964073, + 5605.835899708651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2141.4964811806085, + "min_y": 5601.078840530106, + "max_x": 2142.243068747537, + "max_y": 5601.825428097036, + "center": [ + 2141.869774964073, + 5601.452134313571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.869774964073, + 5601.452134313571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435C", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.8490779764043, + "min_y": 5636.213222872858, + "max_x": 2100.340865570498, + "max_y": 5639.7050104669515, + "center": [ + 2098.594971773451, + 5637.959116669905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.594971773451, + 5637.959116669905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.88912941228, + "min_y": 5638.330932470295, + "max_x": 2100.300814134612, + "max_y": 5638.330932470295, + "center": [ + 2098.594971773446, + 5638.330932470295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2100.300814134612, + 5638.330932470295 + ], + [ + 2096.88912941228, + 5638.330932470295 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2100.413560687524, + "min_y": 5635.164292558354, + "max_x": 2100.413560687524, + "max_y": 5637.432722177809, + "center": [ + 2100.413560687524, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2100.413560687524, + 5637.432722177809 + ], + [ + 2100.413560687524, + 5635.164292558354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C435F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2098.594971773447, + "min_y": 5636.298507368081, + "max_x": 2098.594971773451, + "max_y": 5638.330932470295, + "center": [ + 2098.5949717734493, + 5637.314719919188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.594971773447, + 5636.298507368081 + ], + [ + 2098.594971773451, + 5638.330932470295 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4360", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.77638285937, + "min_y": 5635.164292558354, + "max_x": 2096.77638285937, + "max_y": 5637.432722177809, + "center": [ + 2096.77638285937, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.77638285937, + 5637.432722177809 + ], + [ + 2096.77638285937, + 5635.164292558354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4361", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.77638285937, + "min_y": 5635.164292558354, + "max_x": 2100.413560687524, + "max_y": 5637.432722177809, + "center": [ + 2098.594971773447, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2100.413560687524, + 5635.164292558354 + ], + [ + 2096.77638285937, + 5637.432722177809 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4362", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.77638285937, + "min_y": 5635.164292558354, + "max_x": 2100.413560687524, + "max_y": 5637.432722177809, + "center": [ + 2098.594971773447, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2100.413560687524, + 5637.432722177809 + ], + [ + 2096.77638285937, + 5635.164292558354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4363", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2098.594971773458, + "min_y": 5636.298507368081, + "max_x": 2103.259082901948, + "max_y": 5641.167349083882, + "center": [ + 2100.9270273377033, + 5638.732928225982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.594971773458, + 5636.298507368081 + ], + [ + 2103.259082901948, + 5641.167349083882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4364", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2098.594971773451, + "min_y": 5639.705010466951, + "max_x": 2098.594971773451, + "max_y": 5641.167349083882, + "center": [ + 2098.594971773451, + 5640.436179775416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.594971773451, + 5639.705010466951 + ], + [ + 2098.594971773451, + 5641.167349083882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4365", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2098.594971773451, + "min_y": 5641.167349083882, + "max_x": 2103.259082901948, + "max_y": 5641.167349083882, + "center": [ + 2100.9270273376997, + 5641.167349083882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.594971773451, + 5641.167349083882 + ], + [ + 2103.259082901948, + 5641.167349083882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4366", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2101.160148254452, + "min_y": 5635.164292558354, + "max_x": 2101.160148254452, + "max_y": 5637.432722177809, + "center": [ + 2101.160148254452, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2101.160148254452, + 5637.432722177809 + ], + [ + 2101.160148254452, + 5635.164292558354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4367", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2096.029795292441, + "min_y": 5635.164292558354, + "max_x": 2096.029795292441, + "max_y": 5637.432722177809, + "center": [ + 2096.029795292441, + 5636.298507368081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.029795292441, + 5637.432722177809 + ], + [ + 2096.029795292441, + 5635.164292558354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4368", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5586.206681684446, + "max_x": 2086.697450705762, + "max_y": 5591.033576256748, + "center": [ + 2086.697450705762, + 5588.620128970597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5591.033576256748 + ], + [ + 2086.697450705762, + 5586.206681684446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4369", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5586.206681684446, + "max_x": 2098.672071957884, + "max_y": 5586.206681684446, + "center": [ + 2092.684761331823, + 5586.206681684446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5586.206681684446 + ], + [ + 2098.672071957884, + 5586.206681684446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5591.033576256748, + "max_x": 2098.67205992896, + "max_y": 5591.033591837561, + "center": [ + 2092.684755317361, + 5591.033584047154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5591.033576256748 + ], + [ + 2098.67205992896, + 5591.033591837561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.67205992896, + "min_y": 5586.206669655523, + "max_x": 2101.08552101998, + "max_y": 5588.620130746543, + "center": [ + 2099.8787904744704, + 5587.413400201032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.67205992896, + 5586.206669655523 + ], + [ + 2101.08552101998, + 5588.620130746543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.67205992896, + "min_y": 5588.620130746543, + "max_x": 2101.08552101998, + "max_y": 5591.033591837561, + "center": [ + 2099.8787904744704, + 5589.826861292052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2101.08552101998, + 5588.620130746543 + ], + [ + 2098.67205992896, + 5591.033591837561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5586.206681684446, + "max_x": 2086.697450705762, + "max_y": 5591.033576256748, + "center": [ + 2086.697450705762, + 5588.620128970597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5591.033576256748 + ], + [ + 2086.697450705762, + 5586.206681684446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2089.017427127902, + "min_y": 5587.783154939311, + "max_x": 2096.0692067249684, + "max_y": 5589.46215008147, + "center": [ + 2092.543316926435, + 5588.62265251039 + ] + }, + "raw_value": "BT-6200", + "clean_value": "BT-6200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C436F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5586.206681684446, + "max_x": 2098.672071957884, + "max_y": 5586.206681684446, + "center": [ + 2092.684761331823, + 5586.206681684446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5586.206681684446 + ], + [ + 2098.672071957884, + 5586.206681684446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4370", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5591.033576256748, + "max_x": 2098.67205992896, + "max_y": 5591.033591837561, + "center": [ + 2092.684755317361, + 5591.033584047154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2086.697450705762, + 5591.033576256748 + ], + [ + 2098.67205992896, + 5591.033591837561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4371", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.67205992896, + "min_y": 5586.206669655523, + "max_x": 2101.08552101998, + "max_y": 5588.620130746543, + "center": [ + 2099.8787904744704, + 5587.413400201032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.67205992896, + 5586.206669655523 + ], + [ + 2101.08552101998, + 5588.620130746543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4372", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.67205992896, + "min_y": 5588.620130746543, + "max_x": 2101.08552101998, + "max_y": 5591.033591837561, + "center": [ + 2099.8787904744704, + 5589.826861292052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2101.08552101998, + 5588.620130746543 + ], + [ + 2098.67205992896, + 5591.033591837561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4373", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2086.697450705762, + "min_y": 5584.340212767124, + "max_x": 2098.1265647778446, + "max_y": 5585.610114330689, + "center": [ + 2092.4120077418033, + 5584.9751635489065 + ] + }, + "raw_value": "SARF-#6-PID-002", + "clean_value": "SARF-#6-PID-002", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4374", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5594.577369558994, + "max_x": 2135.901487232748, + "max_y": 5594.577369558994, + "center": [ + 2129.36884602212, + 5594.577369558994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.836204811492, + 5594.577369558994 + ], + [ + 2135.901487232748, + 5594.577369558994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4375", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5590.84443172435, + "max_x": 2135.901487232748, + "max_y": 5590.84443172435, + "center": [ + 2129.36884602212, + 5590.84443172435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.836204811492, + 5590.84443172435 + ], + [ + 2135.901487232748, + 5590.84443172435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4376", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5587.111493889705, + "max_x": 2135.901487232748, + "max_y": 5587.111493889705, + "center": [ + 2129.36884602212, + 5587.111493889705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.836204811492, + 5587.111493889705 + ], + [ + 2135.901487232748, + 5587.111493889705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4377", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5583.378556055061, + "max_x": 2135.901487232748, + "max_y": 5583.378556055061, + "center": [ + 2129.36884602212, + 5583.378556055061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.836204811492, + 5583.378556055061 + ], + [ + 2135.901487232748, + 5583.378556055061 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4378", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2122.836204811492, + "min_y": 5579.645618220416, + "max_x": 2135.901487232748, + "max_y": 5579.645618220416, + "center": [ + 2129.36884602212, + 5579.645618220416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.836204811492, + 5579.645618220416 + ], + [ + 2135.901487232748, + 5579.645618220416 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4379", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2130.141890626282, + "min_y": 5609.591169101861, + "max_x": 2131.639478361135, + "max_y": 5610.874327709286, + "center": [ + 2130.8906844937082, + 5610.232748405573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.639478361135, + 5609.591169101861 + ], + [ + 2130.141890626282, + 5610.874327709286 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2129.824247814505, + "min_y": 5612.717779271203, + "max_x": 2134.7448930912, + "max_y": 5612.717779271203, + "center": [ + 2132.2845704528527, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.7448930912, + 5612.717779271203 + ], + [ + 2129.824247814505, + 5612.717779271203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2130.890684493707, + "min_y": 5610.232748405573, + "max_x": 2132.602212782199, + "max_y": 5612.717779271203, + "center": [ + 2131.746448637953, + 5611.475263838388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.602212782199, + 5612.717779271203 + ], + [ + 2130.890684493707, + 5610.232748405573 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2134.7448930912, + "min_y": 5611.583564461476, + "max_x": 2134.7448930912, + "max_y": 5613.851994080928, + "center": [ + 2134.7448930912, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.7448930912, + 5613.851994080928 + ], + [ + 2134.7448930912, + 5611.583564461476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2129.824247814505, + "min_y": 5611.583564461476, + "max_x": 2129.824247814505, + "max_y": 5613.851994080928, + "center": [ + 2129.824247814505, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.824247814505, + 5613.851994080928 + ], + [ + 2129.824247814505, + 5611.583564461476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2135.491480658129, + "min_y": 5611.583564461476, + "max_x": 2135.491480658129, + "max_y": 5613.851994080928, + "center": [ + 2135.491480658129, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.491480658129, + 5613.851994080928 + ], + [ + 2135.491480658129, + 5611.583564461476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C437F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2129.077660247577, + "min_y": 5611.583564461476, + "max_x": 2129.077660247577, + "max_y": 5613.851994080928, + "center": [ + 2129.077660247577, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.077660247577, + 5613.851994080928 + ], + [ + 2129.077660247577, + 5611.583564461476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4380", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5634.122714801173, + "max_x": 2108.865446446912, + "max_y": 5639.117314177752, + "center": [ + 2108.865446446912, + 5636.620014489463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.865446446912, + 5639.117314177752 + ], + [ + 2108.865446446912, + 5634.122714801173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4381", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5640.536329551351, + "max_x": 2108.865446446912, + "max_y": 5643.637692607622, + "center": [ + 2108.865446446912, + 5642.087011079486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.865446446912, + 5643.637692607622 + ], + [ + 2108.865446446912, + 5640.536329551351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4382", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5641.955344924948, + "max_x": 2108.865446446912, + "max_y": 5641.955344924948, + "center": [ + 2108.865446446912, + 5641.955344924948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.865446446912, + 5641.955344924948 + ], + [ + 2108.865446446912, + 5641.955344924948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4383", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.014037222753, + "min_y": 5639.117314177752, + "max_x": 2109.71685567107, + "max_y": 5639.117314177752, + "center": [ + 2108.8654464469114, + 5639.117314177752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.014037222753, + 5639.117314177752 + ], + [ + 2109.71685567107, + 5639.117314177752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4384", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.026040724581, + "min_y": 5639.117314177752, + "max_x": 2109.704852169243, + "max_y": 5639.117314177752, + "center": [ + 2108.865446446912, + 5639.117314177752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.704852169243, + 5639.117314177752 + ], + [ + 2108.026040724581, + 5639.117314177752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4385", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.026040724581, + "min_y": 5638.389391299996, + "max_x": 2109.704852169243, + "max_y": 5638.389391299996, + "center": [ + 2108.865446446912, + 5638.389391299996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.704852169243, + 5638.389391299996 + ], + [ + 2108.026040724581, + 5638.389391299996 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4386", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.014037222753, + "min_y": 5639.117314177752, + "max_x": 2108.865446446912, + "max_y": 5640.536329551351, + "center": [ + 2108.4397418348326, + 5639.826821864552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.014037222753, + 5639.117314177752 + ], + [ + 2108.865446446912, + 5640.536329551351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4387", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.210074692521, + "min_y": 5641.489026461791, + "max_x": 2109.520818201303, + "max_y": 5642.576014098393, + "center": [ + 2108.865446446912, + 5642.032520280092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.210074692521, + 5641.489026461791 + ], + [ + 2109.520818201303, + 5642.576014098393 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4388", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5639.117314177752, + "max_x": 2109.71685567107, + "max_y": 5640.536329551351, + "center": [ + 2109.291151058991, + 5639.826821864552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.865446446912, + 5640.536329551351 + ], + [ + 2109.71685567107, + 5639.117314177752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4389", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5640.536329551351, + "max_x": 2110.28446182051, + "max_y": 5641.387738775511, + "center": [ + 2109.574954133711, + 5640.962034163431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2110.28446182051, + 5641.387738775511 + ], + [ + 2108.865446446912, + 5640.536329551351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.865446446912, + "min_y": 5639.684920327193, + "max_x": 2110.28446182051, + "max_y": 5640.536329551351, + "center": [ + 2109.574954133711, + 5640.110624939272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.865446446912, + 5640.536329551351 + ], + [ + 2110.28446182051, + 5639.684920327193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2110.28446182051, + "min_y": 5639.684920327193, + "max_x": 2110.28446182051, + "max_y": 5641.387738775511, + "center": [ + 2110.28446182051, + 5640.5363295513525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2110.28446182051, + 5641.387738775511 + ], + [ + 2110.28446182051, + 5639.684920327193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2111.012384698267, + "min_y": 5639.684920327193, + "max_x": 2111.012384698267, + "max_y": 5641.387738775511, + "center": [ + 2111.012384698267, + 5640.5363295513525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2111.012384698267, + 5641.387738775511 + ], + [ + 2111.012384698267, + 5639.684920327193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.210074692521, + "min_y": 5641.087772973673, + "max_x": 2109.520818201303, + "max_y": 5642.174760610272, + "center": [ + 2108.865446446912, + 5641.631266791972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.210074692521, + 5641.087772973673 + ], + [ + 2109.520818201303, + 5642.174760610272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 2108.210074692521, + "min_y": 5640.686518831308, + "max_x": 2109.520818201303, + "max_y": 5641.773506467907, + "center": [ + 2108.865446446912, + 5641.2300126496075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.210074692521, + 5640.686518831308 + ], + [ + 2109.520818201303, + 5641.773506467907 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C438F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2111.012384698267, + "min_y": 5640.536329551351, + "max_x": 2113.895335543056, + "max_y": 5640.536329551351, + "center": [ + 2112.4538601206614, + 5640.536329551351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2111.012384698267, + 5640.536329551351 + ], + [ + 2113.895335543056, + 5640.536329551351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4390", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 2112.100523627847, + "min_y": 5639.657297393101, + "max_x": 2127.0322749664256, + "max_y": 5640.963825635226, + "center": [ + 2119.5663992971363, + 5640.310561514163 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-6203\\PSP : 0.85 MPa\\P25Ax40A", + "clean_value": ".9; PSV-6203 SP : 0.85 MPa Ax40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.136650823451, + "min_y": 5607.861571886126, + "max_x": 2147.136650823451, + "max_y": 5610.382176370167, + "center": [ + 2147.136650823451, + 5609.121874128146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.136650823451, + 5607.861571886126 + ], + [ + 2147.136650823451, + 5610.382176370167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4395", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2147.136650823451, + "min_y": 5601.07169493136, + "max_x": 2147.136650823451, + "max_y": 5602.731218924116, + "center": [ + 2147.136650823451, + 5601.901456927738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.136650823451, + 5602.731218924116 + ], + [ + 2147.136650823451, + 5601.07169493136 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4396", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2146.241586867096, + "min_y": 5600.507644020606, + "max_x": 2146.241586867096, + "max_y": 5601.635745842113, + "center": [ + 2146.241586867096, + 5601.071694931359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.241586867096, + 5601.635745842113 + ], + [ + 2146.241586867096, + 5600.507644020606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4397", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2146.241586867096, + "min_y": 5600.507644020606, + "max_x": 2148.031714779807, + "max_y": 5600.507644020606, + "center": [ + 2147.1366508234514, + 5600.507644020606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.241586867096, + 5600.507644020606 + ], + [ + 2148.031714779807, + 5600.507644020606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4398", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2148.031714779807, + "min_y": 5600.507644020606, + "max_x": 2148.031714779807, + "max_y": 5601.635745842113, + "center": [ + 2148.031714779807, + 5601.071694931359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.031714779807, + 5601.635745842113 + ], + [ + 2148.031714779807, + 5600.507644020606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C4399", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5603.477806491046, + "max_x": 2148.270865633178, + "max_y": 5603.477806491046, + "center": [ + 2147.1366508234514, + 5603.477806491046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.002436013725, + 5603.477806491046 + ], + [ + 2148.270865633178, + 5603.477806491046 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5607.114984319196, + "max_x": 2148.270865633178, + "max_y": 5607.114984319196, + "center": [ + 2147.1366508234514, + 5607.114984319196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.002436013725, + 5607.114984319196 + ], + [ + 2148.270865633178, + 5607.114984319196 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2147.497745708366, + "min_y": 5603.477806491046, + "max_x": 2148.270865633178, + "max_y": 5604.717419404272, + "center": [ + 2147.884305670772, + 5604.0976129476585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.270865633178, + 5603.477806491046 + ], + [ + 2147.497745708366, + 5604.717419404272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5603.477806491046, + "max_x": 2146.775555938539, + "max_y": 5604.717419404272, + "center": [ + 2146.388995976132, + 5604.0976129476585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.002436013725, + 5603.477806491046 + ], + [ + 2146.775555938539, + 5604.717419404272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.454299941968, + "min_y": 5604.6140445236315, + "max_x": 2147.81900170494, + "max_y": 5605.978746286603, + "center": [ + 2147.136650823454, + 5605.296395405117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.136650823454, + 5605.296395405117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2147.497745708366, + "min_y": 5605.875371405963, + "max_x": 2148.270865633178, + "max_y": 5607.114984319196, + "center": [ + 2147.884305670772, + 5606.49517786258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.497745708366, + 5605.875371405963 + ], + [ + 2148.270865633178, + 5607.114984319196 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C439F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5605.875371405963, + "max_x": 2146.775555938539, + "max_y": 5607.114984319196, + "center": [ + 2146.388995976132, + 5606.49517786258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.775555938539, + 5605.875371405963 + ], + [ + 2146.002436013725, + 5607.114984319196 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5607.861571886126, + "max_x": 2148.270865633178, + "max_y": 5607.861571886126, + "center": [ + 2147.1366508234514, + 5607.861571886126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.002436013725, + 5607.861571886126 + ], + [ + 2148.270865633178, + 5607.861571886126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2146.002436013725, + "min_y": 5602.731218924116, + "max_x": 2148.270865633178, + "max_y": 5602.731218924116, + "center": [ + 2147.1366508234514, + 5602.731218924116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.002436013725, + 5602.731218924116 + ], + [ + 2148.270865633178, + 5602.731218924116 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2140.4107619371703, + "min_y": 5633.523686023552, + "max_x": 2147.87663760646, + "max_y": 5640.989561692842, + "center": [ + 2144.143699771815, + 5637.256623858197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.143699771815, + 5637.256623858197 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2142.72328956457, + "min_y": 5637.913867822131, + "max_x": 2145.7447518455588, + "max_y": 5639.592457978235, + "center": [ + 2144.2340207050647, + 5638.753162900182 + ] + }, + "raw_value": "PIC", + "clean_value": "PIC", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2142.100125583772, + "min_y": 5634.926676577384, + "max_x": 2146.1287419584232, + "max_y": 5636.605266733488, + "center": [ + 2144.1144337710975, + 5635.765971655435 + ] + }, + "raw_value": "6211", + "clean_value": "6211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A5", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2140.410761937171, + "min_y": 5633.523686023552, + "max_x": 2147.87663760646, + "max_y": 5640.989561692842, + "center": [ + 2144.1436997718156, + 5637.256623858197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.410761937171, + 5640.989561692842 + ], + [ + 2147.87663760646, + 5640.989561692842 + ], + [ + 2147.87663760646, + 5633.523686023552 + ], + [ + 2140.410761937171, + 5633.523686023552 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2140.410761937171, + "min_y": 5637.256623858197, + "max_x": 2147.87663760646, + "max_y": 5637.256623858197, + "center": [ + 2144.1436997718156, + 5637.256623858197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.410761937171, + 5637.256623858197 + ], + [ + 2147.87663760646, + 5637.256623858197 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5633.523686023552, + "max_x": 2149.65111627, + "max_y": 5634.830214265678, + "center": [ + 2148.8671993247244, + 5634.176950144614 + ] + }, + "raw_value": "LL", + "clean_value": "LL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5635.576801832607, + "max_x": 2148.8671993247244, + "max_y": 5636.883330074733, + "center": [ + 2148.4752408520867, + 5636.23006595367 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43A9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5637.629917641661, + "max_x": 2148.8671993247244, + "max_y": 5638.936445883787, + "center": [ + 2148.4752408520867, + 5638.283181762725 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.083282379449, + "min_y": 5639.683033450717, + "max_x": 2149.65111627, + "max_y": 5640.9895616928425, + "center": [ + 2148.8671993247244, + 5640.336297571779 + ] + }, + "raw_value": "HH", + "clean_value": "HH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.696338863701, + "min_y": 5633.523686023552, + "max_x": 2153.0480896995273, + "max_y": 5634.830214265678, + "center": [ + 2151.872214281614, + 5634.176950144614 + ] + }, + "raw_value": "110", + "clean_value": "110", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.696338863701, + "min_y": 5635.576801832607, + "max_x": 2153.0480896995273, + "max_y": 5636.883330074733, + "center": [ + 2151.872214281614, + 5636.23006595367 + ] + }, + "raw_value": "115", + "clean_value": "115", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AD", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.696338863701, + "min_y": 5637.629917641661, + "max_x": 2153.0480896995273, + "max_y": 5638.936445883787, + "center": [ + 2151.872214281614, + 5638.283181762725 + ] + }, + "raw_value": "125", + "clean_value": "125", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.696338863701, + "min_y": 5639.683033450717, + "max_x": 2153.0480896995273, + "max_y": 5640.9895616928425, + "center": [ + 2151.872214281614, + 5640.336297571779 + ] + }, + "raw_value": "130", + "clean_value": "130", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43AF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2132.944886267881, + "min_y": 5633.523686023552, + "max_x": 2140.4107619371707, + "max_y": 5640.989561692842, + "center": [ + 2136.677824102526, + 5637.256623858197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.677824102526, + 5637.256623858197 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43B0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2135.457356184667, + "min_y": 5637.913867822131, + "max_x": 2137.4716643719926, + "max_y": 5639.592457978235, + "center": [ + 2136.4645102783297, + 5638.753162900182 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43B1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2134.634249914483, + "min_y": 5634.926676577384, + "max_x": 2138.6628662891344, + "max_y": 5636.605266733488, + "center": [ + 2136.6485581018087, + 5635.765971655435 + ] + }, + "raw_value": "6212", + "clean_value": "6212", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43B2", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2104.281077354528, + "min_y": 5595.035059851379, + "max_x": 2115.703867128541, + "max_y": 5596.154941201772, + "center": [ + 2109.9924722415344, + 5595.595000526575 + ] + }, + "raw_value": "VG-6203-15A-F1A-n", + "clean_value": "VG-6203-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43B3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2109.730867477728, + "min_y": 5578.977228489755, + "max_x": 2121.153657251741, + "max_y": 5580.097109840149, + "center": [ + 2115.4422623647347, + 5579.5371691649525 + ] + }, + "raw_value": "VG-6203-15A-F1A-n", + "clean_value": "VG-6203-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C43B4", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2111.799847254203, + "min_y": 5593.994304121697, + "max_x": 2123.222637028216, + "max_y": 5595.11418547209, + "center": [ + 2117.5112421412096, + 5594.554244796893 + ] + }, + "raw_value": "VG-6203-15A-F1A-n", + "clean_value": "VG-6203-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C8F73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2137.385720601309, + "min_y": 5611.583564461476, + "max_x": 2137.385720601309, + "max_y": 5613.851994080928, + "center": [ + 2137.385720601309, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.385720601309, + 5611.583564461476 + ], + [ + 2137.385720601309, + 5613.851994080928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C8F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2138.132308168239, + "min_y": 5611.583564461476, + "max_x": 2138.132308168239, + "max_y": 5613.851994080928, + "center": [ + 2138.132308168239, + 5612.717779271203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.132308168239, + 5611.583564461476 + ], + [ + 2138.132308168239, + 5613.851994080928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C8F75", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2137.759014384774, + "min_y": 5611.583564461476, + "max_x": 2137.759014384774, + "max_y": 5614.234893897163, + "center": [ + 2137.759014384774, + 5612.9092291793195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.759014384774, + 5614.234893897163 + ], + [ + 2137.759014384774, + 5611.583564461476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4C8F76", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2137.151314063752, + "min_y": 5614.234893897166, + "max_x": 2138.3667147057963, + "max_y": 5615.4502945392105, + "center": [ + 2137.759014384774, + 5614.842594218188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.759014384774, + 5614.842594218188 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "4D5AF1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2141.123691705212, + "min_y": 5619.874102083892, + "max_x": 2141.123691705212, + "max_y": 5621.834772657777, + "center": [ + 2141.123691705212, + 5620.854437370834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.123691705212, + 5619.874102083892 + ], + [ + 2141.123691705212, + 5621.834772657777 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "4D5AF2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2143.017744776481, + "min_y": 5622.677300629372, + "max_x": 2144.978415350365, + "max_y": 5622.677300629372, + "center": [ + 2143.998080063423, + 5622.677300629372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.978415350365, + 5622.677300629372 + ], + [ + 2143.017744776481, + 5622.677300629372 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "4D5AF3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2137.411347685524, + "min_y": 5623.131873366475, + "max_x": 2139.372018259408, + "max_y": 5623.131873366475, + "center": [ + 2138.391682972466, + 5623.131873366475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.411347685524, + 5623.131873366475 + ], + [ + 2139.372018259408, + 5623.131873366475 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "4D5AF4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2140.366070476705, + "min_y": 5625.177450683446, + "max_x": 2140.366070476705, + "max_y": 5627.138121257329, + "center": [ + 2140.366070476705, + 5626.1577859703875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.366070476705, + 5627.138121257329 + ], + [ + 2140.366070476705, + 5625.177450683446 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "501D34", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 110.1582734523338, + "min_y": 5178.569273229499, + "max_x": 916.4728457355847, + "max_y": 5327.886786615287, + "center": [ + 513.3155595939593, + 5253.228029922393 + ] + }, + "raw_value": "#10 PLANT", + "clean_value": "#10 PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "50733D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1936.70993759693, + "min_y": 5776.220454907806, + "max_x": 1939.3976528378744, + "max_y": 5777.713630041664, + "center": [ + 1938.0537952174022, + 5776.967042474735 + ] + }, + "raw_value": "VVF", + "clean_value": "VVF", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "50733E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1935.610201884227, + "min_y": 5774.937430332601, + "max_x": 1940.698057958318, + "max_y": 5779.051957418605, + "center": [ + 1938.1541299212727, + 5776.994693875603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.610201884227, + 5779.051957418605 + ], + [ + 1940.698057958318, + 5779.051957418605 + ], + [ + 1940.698057958318, + 5774.937430332601 + ], + [ + 1935.610201884227, + 5774.937430332601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "50736C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.794165970641, + "min_y": 5776.084296511353, + "max_x": 1994.173040307636, + "max_y": 5778.32405921214, + "center": [ + 1969.9836031391385, + 5777.204177861747 + ] + }, + "raw_value": "VARIABLE VOLTAGE FREQUENCY INVERTER ", + "clean_value": "VARIABLE VOLTAGE FREQUENCY INVERTER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "510267", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 445.7890193938404, + "min_y": 6376.919391471711, + "max_x": 714.5605434882574, + "max_y": 6526.236904857498, + "center": [ + 580.1747814410489, + 6451.5781481646045 + ] + }, + "raw_value": "PFD", + "clean_value": "PFD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "515814", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.796592118775, + "min_y": 5711.050086406004, + "max_x": 1745.4843073597192, + "max_y": 5713.289849106791, + "center": [ + 1744.140449739247, + 5712.169967756397 + ] + }, + "raw_value": "S2", + "clean_value": "S2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "515815", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.128936705387, + "min_y": 5711.050086406004, + "max_x": 1797.820095801438, + "max_y": 5713.289849106791, + "center": [ + 1774.9745162534125, + 5712.169967756397 + ] + }, + "raw_value": "SPPS380 (Galvanized Pipe Sch. 10S)", + "clean_value": "SPPS380 (Galvanized Pipe Sch. 10S)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "51585B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1771.065527997345, + "min_y": 5314.402801145791, + "max_x": 1771.065527997345, + "max_y": 5315.448023739492, + "center": [ + 1771.065527997345, + 5314.925412442642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "516809", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2143.218510423556, + "min_y": 5614.157110531357, + "max_x": 2143.82367816475, + "max_y": 5614.762278272551, + "center": [ + 2143.521094294153, + 5614.459694401954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.521094294153, + 5614.459694401954 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "516846", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 2143.414148111821, + "min_y": 5613.563611427917, + "max_x": 2143.816083349303, + "max_y": 5613.961944435328, + "center": [ + 2143.615115730562, + 5613.762777931623 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "516851", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.133241380485, + "min_y": 5613.977954445787, + "max_x": 2144.258019601716, + "max_y": 5613.977954445787, + "center": [ + 2144.1956304911005, + 5613.977954445787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.258019601716, + 5613.977954445787 + ], + [ + 2144.133241380485, + 5613.977954445787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "516852", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.784465860787, + "min_y": 5613.977954445787, + "max_x": 2142.908947207821, + "max_y": 5613.977954445787, + "center": [ + 2142.846706534304, + 5613.977954445787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.784465860787, + 5613.977954445787 + ], + [ + 2142.908947207821, + 5613.977954445787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "516867", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.229424121264, + "min_y": 5613.287723405028, + "max_x": 2150.229426204492, + "max_y": 5614.33251084964, + "center": [ + 2150.229425162878, + 5613.810117127334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.229426204492, + 5614.33251084964 + ], + [ + 2150.229424121264, + 5613.287723405028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "516868", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.759574362101, + "min_y": 5613.287728329719, + "max_x": 2147.759576445329, + "max_y": 5614.332515774341, + "center": [ + 2147.7595754037147, + 5613.81012205203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.759576445329, + 5614.332515774341 + ], + [ + 2147.759574362101, + 5613.287728329719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "516869", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.153076375552, + "min_y": 5613.975771087766, + "max_x": 2148.717786347924, + "max_y": 5614.31388798695, + "center": [ + 2148.4354313617378, + 5614.1448295373575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.153076375552, + 5614.31388798695 + ], + [ + 2148.717786347924, + 5613.975771087766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.271115998545, + "min_y": 5613.30635119262, + "max_x": 2149.835825970917, + "max_y": 5613.644468091798, + "center": [ + 2149.553470984731, + 5613.475409642209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.271115998545, + 5613.644468091798 + ], + [ + 2149.835825970917, + 5613.30635119262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.835825970917, + "min_y": 5613.30635119262, + "max_x": 2149.835827979863, + "max_y": 5614.313884631664, + "center": [ + 2149.83582697539, + 5613.810117912142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.835827979863, + 5614.313884631664 + ], + [ + 2149.835825970917, + 5613.30635119262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.153074366603, + "min_y": 5613.3063545479, + "max_x": 2148.153076375552, + "max_y": 5614.31388798695, + "center": [ + 2148.1530753710776, + 5613.810121267425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.153076375552, + 5614.31388798695 + ], + [ + 2148.153074366603, + 5613.3063545479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.153074366603, + "min_y": 5613.3063545479, + "max_x": 2148.717785687332, + "max_y": 5613.644469195104, + "center": [ + 2148.4354300269674, + 5613.475411871502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.153074366603, + 5613.3063545479 + ], + [ + 2148.717785687332, + 5613.644469195104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.271116659137, + "min_y": 5613.975769984466, + "max_x": 2149.835827979863, + "max_y": 5614.313884631664, + "center": [ + 2149.5534723195, + 5614.144827308065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.271116659137, + 5613.975769984466 + ], + [ + 2149.835827979863, + 5614.313884631664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "51686F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2148.6719859125506, + "min_y": 5613.487654329099, + "max_x": 2149.316916433915, + "max_y": 5614.132584850464, + "center": [ + 2148.994451173233, + 5613.810119589782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.994451173233, + 5613.810119589782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "516871", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2143.179153032296, + "min_y": 5614.762278272552, + "max_x": 2143.863035556009, + "max_y": 5614.762278272552, + "center": [ + 2143.5210942941526, + 5614.762278272552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.863035556009, + 5614.762278272552 + ], + [ + 2143.521094294153, + 5614.762278272552 + ], + [ + 2143.179153032296, + 5614.762278272552 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "516872", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2142.908947207821, + "min_y": 5613.027622540832, + "max_x": 2144.133241380485, + "max_y": 5614.157110531355, + "center": [ + 2143.521094294153, + 5613.592366536093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.168818411635, + 5613.798798360221 + ], + [ + 2142.908947207821, + 5613.798798360221 + ], + [ + 2142.908947207821, + 5614.157110531355 + ], + [ + 2143.168818411635, + 5614.157110531355 + ], + [ + 2143.873370176672, + 5614.157110531355 + ], + [ + 2144.133241380485, + 5614.157110531355 + ], + [ + 2144.133241380485, + 5613.798798360221 + ], + [ + 2143.168818411635, + 5613.798798360221 + ], + [ + 2143.168818411634, + 5613.027622540832 + ], + [ + 2143.873370176672, + 5613.027622540832 + ], + [ + 2143.873370176672, + 5613.798798360221 + ], + [ + 2143.873370176672, + 5613.798798360221 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "51725C", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1660.0142940826513, + "min_y": 5736.83207376485, + "max_x": 1662.639152816541, + "max_y": 5739.456932498741, + "center": [ + 1661.326723449596, + 5738.144503131795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.326723449596, + 5738.144503131795 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "51725D", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 1660.86285434085, + "min_y": 5734.257826660824, + "max_x": 1662.6062110116472, + "max_y": 5735.985558994073, + "center": [ + 1661.7345326762486, + 5735.121692827448 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "517261", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1659.843585062394, + "min_y": 5739.456932498741, + "max_x": 1662.809861836796, + "max_y": 5739.456932498741, + "center": [ + 1661.326723449595, + 5739.456932498741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.809861836796, + 5739.456932498741 + ], + [ + 1661.326723449596, + 5739.456932498741 + ], + [ + 1659.843585062394, + 5739.456932498741 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "517262", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1658.671592455977, + "min_y": 5731.93302476581, + "max_x": 1663.981854443215, + "max_y": 5736.832073764841, + "center": [ + 1661.326723449596, + 5734.382549265325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1659.79875960747, + 5735.277928082846 + ], + [ + 1658.671592455977, + 5735.277928082846 + ], + [ + 1658.671592455977, + 5736.832073764841 + ], + [ + 1659.79875960747, + 5736.832073764841 + ], + [ + 1662.854687291723, + 5736.832073764841 + ], + [ + 1663.981854443215, + 5736.832073764841 + ], + [ + 1663.981854443215, + 5735.277928082846 + ], + [ + 1659.79875960747, + 5735.277928082846 + ], + [ + 1659.798759607467, + 5731.93302476581 + ], + [ + 1662.854687291723, + 5731.93302476581 + ], + [ + 1662.854687291723, + 5735.277928082846 + ], + [ + 1662.854687291723, + 5735.277928082846 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "517291", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1673.607320370645, + "min_y": 5734.208349809123, + "max_x": 1691.0774694367822, + "max_y": 5736.44811250991, + "center": [ + 1682.3423949037137, + 5735.328231159517 + ] + }, + "raw_value": "AIR REGULATOR", + "clean_value": "AIR REGULATOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5201B9", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 4078.870010267297, + "min_y": 5221.629730063514, + "max_x": 4078.870010267297, + "max_y": 5223.122905197372, + "center": [ + 4078.870010267297, + 5222.376317630444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526126", + "entity_type": "LINE", + "layer": "TIT", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 1549.094955657286, + "max_y": 6179.9428955954, + "center": [ + 1549.094955657286, + 6141.1348955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6102.3268955954 + ], + [ + 1549.094955657286, + 6179.9428955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526127", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 2506.838132792086, + "max_y": 6102.3268955954, + "center": [ + 2027.966544224686, + 6102.3268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6102.3268955954 + ], + [ + 1549.094955657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526128", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6102.3268955954, + "max_x": 2506.838132792087, + "max_y": 6749.558735814638, + "center": [ + 2506.8381327920865, + 6425.942815705019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792087, + 6749.558735814638 + ], + [ + 2506.838132792086, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526129", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6095.792729115581, + "max_x": 2267.401929657288, + "max_y": 6102.3268955954, + "center": [ + 2267.401929657288, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.401929657288, + 6095.792729115581 + ], + [ + 2267.401929657288, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6095.792729115581, + "max_x": 2267.401929657288, + "max_y": 6102.3268955954, + "center": [ + 2267.401929657288, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.401929657288, + 6095.792729115581 + ], + [ + 2267.401929657288, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2207.693152820926, + "min_y": 6096.812645253775, + "max_x": 2209.330365320926, + "max_y": 6099.541332753775, + "center": [ + 2208.511759070926, + 6098.176989003776 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2325.302176623063, + "min_y": 6096.437105143682, + "max_x": 2326.939389123063, + "max_y": 6099.165792643682, + "center": [ + 2326.120782873063, + 6097.801448893682 + ] + }, + "raw_value": "G", + "clean_value": "G", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6095.792729115581, + "max_x": 2387.119758657286, + "max_y": 6102.3268955954, + "center": [ + 2387.119758657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6095.792729115581 + ], + [ + 2387.119758657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6095.792729115581, + "max_x": 2387.119758657286, + "max_y": 6102.3268955954, + "center": [ + 2387.119758657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6095.792729115581 + ], + [ + 2387.119758657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52612F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2446.659614220975, + "min_y": 6099.101461942019, + "max_x": 2448.296826720975, + "max_y": 6101.830149442019, + "center": [ + 2447.478220470975, + 6100.46580569202 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526130", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6149.604849859353, + "max_x": 2516.391669016539, + "max_y": 6152.333537359353, + "center": [ + 2515.573062766539, + 6150.969193609353 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526131", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6213.309553298413, + "max_x": 2513.372299271905, + "max_y": 6213.309553298413, + "center": [ + 2510.1052160319955, + 6213.309553298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6213.309553298413 + ], + [ + 2513.372299271905, + 6213.309553298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526132", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6213.309553298413, + "max_x": 2513.372299271905, + "max_y": 6213.309553298413, + "center": [ + 2510.1052160319955, + 6213.309553298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6213.309553298413 + ], + [ + 2513.372299271905, + 6213.309553298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526133", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6749.558735814638, + "max_x": 2506.838132792087, + "max_y": 6749.558735814638, + "center": [ + 2027.9665442246865, + 6749.558735814638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6749.558735814638 + ], + [ + 2506.838132792087, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526134", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6263.469848304183, + "max_x": 2516.391669016539, + "max_y": 6266.198535804183, + "center": [ + 2515.573062766539, + 6264.8341920541825 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526135", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6324.288305798414, + "max_x": 2513.372299271905, + "max_y": 6324.288305798414, + "center": [ + 2510.1052160319955, + 6324.288305798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6324.288305798414 + ], + [ + 2513.372299271905, + 6324.288305798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526136", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6324.288305798414, + "max_x": 2513.372299271905, + "max_y": 6324.288305798414, + "center": [ + 2510.1052160319955, + 6324.288305798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6324.288305798414 + ], + [ + 2513.372299271905, + 6324.288305798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526137", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6379.245905337712, + "max_x": 2516.391669016539, + "max_y": 6381.974592837712, + "center": [ + 2515.573062766539, + 6380.610249087713 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526138", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6435.267058298413, + "max_x": 2513.372299271905, + "max_y": 6435.267058298413, + "center": [ + 2510.1052160319955, + 6435.267058298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6435.267058298413 + ], + [ + 2513.372299271905, + 6435.267058298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526139", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6435.267058298413, + "max_x": 2513.372299271905, + "max_y": 6435.267058298413, + "center": [ + 2510.1052160319955, + 6435.267058298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6435.267058298413 + ], + [ + 2513.372299271905, + 6435.267058298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6487.867121038251, + "max_x": 2516.391669016539, + "max_y": 6490.595808538251, + "center": [ + 2515.573062766539, + 6489.23146478825 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6546.245810798414, + "max_x": 2513.372299271905, + "max_y": 6546.245810798414, + "center": [ + 2510.1052160319955, + 6546.245810798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6546.245810798414 + ], + [ + 2513.372299271905, + 6546.245810798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6546.245810798414, + "max_x": 2513.372299271905, + "max_y": 6546.245810798414, + "center": [ + 2510.1052160319955, + 6546.245810798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6546.245810798414 + ], + [ + 2513.372299271905, + 6546.245810798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6601.021285843831, + "max_x": 2516.391669016539, + "max_y": 6603.749973343831, + "center": [ + 2515.573062766539, + 6602.385629593831 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6638.579983314638, + "max_x": 2513.372299271905, + "max_y": 6638.579983314638, + "center": [ + 2510.1052160319955, + 6638.579983314638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6638.579983314638 + ], + [ + 2513.372299271905, + 6638.579983314638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52613F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.838132792086, + "min_y": 6638.579983314638, + "max_x": 2513.372299271905, + "max_y": 6638.579983314638, + "center": [ + 2510.1052160319955, + 6638.579983314638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6638.579983314638 + ], + [ + 2513.372299271905, + 6638.579983314638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526140", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1605.561528039671, + "min_y": 6752.783927112588, + "max_x": 1607.198740539671, + "max_y": 6755.512614612588, + "center": [ + 1606.3801342896709, + 6754.148270862588 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526141", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6749.558735814638, + "max_x": 1668.812784657286, + "max_y": 6756.092902294456, + "center": [ + 1668.812784657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.812784657286, + 6756.092902294456 + ], + [ + 1668.812784657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526142", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6749.558735814638, + "max_x": 1668.812784657286, + "max_y": 6756.092902294456, + "center": [ + 1668.812784657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.812784657286, + 6756.092902294456 + ], + [ + 1668.812784657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526143", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1726.057851786716, + "min_y": 6752.727160107912, + "max_x": 1727.695064286716, + "max_y": 6755.455847607912, + "center": [ + 1726.876458036716, + 6754.091503857911 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526144", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6749.558735814638, + "max_x": 1788.530613657286, + "max_y": 6756.092902294456, + "center": [ + 1788.530613657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.530613657286, + 6756.092902294456 + ], + [ + 1788.530613657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526145", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6749.558735814638, + "max_x": 1788.530613657286, + "max_y": 6756.092902294456, + "center": [ + 1788.530613657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.530613657286, + 6756.092902294456 + ], + [ + 1788.530613657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526146", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1849.032888229783, + "min_y": 6752.974411882354, + "max_x": 1850.6701007297831, + "max_y": 6755.703099382354, + "center": [ + 1849.851494479783, + 6754.338755632354 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526147", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6749.558735814638, + "max_x": 1908.248442657286, + "max_y": 6756.092902294456, + "center": [ + 1908.248442657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.248442657286, + 6756.092902294456 + ], + [ + 1908.248442657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6749.558735814638, + "max_x": 1908.248442657286, + "max_y": 6756.092902294456, + "center": [ + 1908.248442657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.248442657286, + 6756.092902294456 + ], + [ + 1908.248442657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526149", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1968.001238067512, + "min_y": 6752.699342947678, + "max_x": 1969.638450567512, + "max_y": 6755.428030447678, + "center": [ + 1968.819844317512, + 6754.063686697678 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6749.558735814638, + "max_x": 2027.966271657287, + "max_y": 6756.092902294456, + "center": [ + 2027.966271657287, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.966271657287, + 6756.092902294456 + ], + [ + 2027.966271657287, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6749.558735814638, + "max_x": 2027.966271657287, + "max_y": 6756.092902294456, + "center": [ + 2027.966271657287, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.966271657287, + 6756.092902294456 + ], + [ + 2027.966271657287, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2088.277524840135, + "min_y": 6752.606302833175, + "max_x": 2089.9147373401347, + "max_y": 6755.334990333175, + "center": [ + 2089.096131090135, + 6753.970646583175 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6749.558735814638, + "max_x": 2149.392865407285, + "max_y": 6756.092902294456, + "center": [ + 2149.392865407285, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.392865407285, + 6756.092902294456 + ], + [ + 2149.392865407285, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6749.558735814638, + "max_x": 2149.392865407285, + "max_y": 6756.092902294456, + "center": [ + 2149.392865407285, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.392865407285, + 6756.092902294456 + ], + [ + 2149.392865407285, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52614F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2209.613576310884, + "min_y": 6752.513262718671, + "max_x": 2211.250788810884, + "max_y": 6755.241950218671, + "center": [ + 2210.432182560884, + 6753.877606468672 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526150", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6749.558735814638, + "max_x": 2267.401929657288, + "max_y": 6756.092902294456, + "center": [ + 2267.401929657288, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.401929657288, + 6756.092902294456 + ], + [ + 2267.401929657288, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526151", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.401929657288, + "min_y": 6749.558735814638, + "max_x": 2267.401929657288, + "max_y": 6756.092902294456, + "center": [ + 2267.401929657288, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.401929657288, + 6756.092902294456 + ], + [ + 2267.401929657288, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526152", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2324.148887242639, + "min_y": 6752.901227847823, + "max_x": 2325.7860997426387, + "max_y": 6755.629915347823, + "center": [ + 2324.967493492639, + 6754.2655715978235 + ] + }, + "raw_value": "G", + "clean_value": "G", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526153", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6749.558735814638, + "max_x": 2387.119758657286, + "max_y": 6756.092902294456, + "center": [ + 2387.119758657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6756.092902294456 + ], + [ + 2387.119758657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526154", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6749.558735814638, + "max_x": 2387.119758657286, + "max_y": 6756.092902294456, + "center": [ + 2387.119758657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6756.092902294456 + ], + [ + 2387.119758657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526155", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2446.659614220975, + "min_y": 6752.784169468018, + "max_x": 2448.296826720975, + "max_y": 6755.512856968018, + "center": [ + 2447.478220470975, + 6754.148513218019 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526156", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 1549.094955657286, + "max_y": 6749.558735814638, + "center": [ + 1549.094955657286, + 6425.942815705019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6102.3268955954 + ], + [ + 1549.094955657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526157", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6149.604849859353, + "max_x": 1544.462025388398, + "max_y": 6152.333537359353, + "center": [ + 1543.6434191383978, + 6150.969193609353 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526158", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6213.309553298413, + "max_x": 1549.094955657286, + "max_y": 6213.309553298413, + "center": [ + 1545.827872417377, + 6213.309553298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6213.309553298413 + ], + [ + 1549.094955657286, + 6213.309553298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526159", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6213.309553298413, + "max_x": 1549.094955657286, + "max_y": 6213.309553298413, + "center": [ + 1545.827872417377, + 6213.309553298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6213.309553298413 + ], + [ + 1549.094955657286, + 6213.309553298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6263.469848304183, + "max_x": 1544.462025388398, + "max_y": 6266.198535804183, + "center": [ + 1543.6434191383978, + 6264.8341920541825 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6324.288305798414, + "max_x": 1549.094955657286, + "max_y": 6324.288305798414, + "center": [ + 1545.827872417377, + 6324.288305798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6324.288305798414 + ], + [ + 1549.094955657286, + 6324.288305798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6324.288305798414, + "max_x": 1549.094955657286, + "max_y": 6324.288305798414, + "center": [ + 1545.827872417377, + 6324.288305798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6324.288305798414 + ], + [ + 1549.094955657286, + 6324.288305798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6379.245905337712, + "max_x": 1544.462025388398, + "max_y": 6381.974592837712, + "center": [ + 1543.6434191383978, + 6380.610249087713 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6435.267058298413, + "max_x": 1549.094955657286, + "max_y": 6435.267058298413, + "center": [ + 1545.827872417377, + 6435.267058298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6435.267058298413 + ], + [ + 1549.094955657286, + 6435.267058298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52615F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6435.267058298413, + "max_x": 1549.094955657286, + "max_y": 6435.267058298413, + "center": [ + 1545.827872417377, + 6435.267058298413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6435.267058298413 + ], + [ + 1549.094955657286, + 6435.267058298413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526160", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6487.867121038251, + "max_x": 1544.462025388398, + "max_y": 6490.595808538251, + "center": [ + 1543.6434191383978, + 6489.23146478825 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526161", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6546.245810798414, + "max_x": 1549.094955657286, + "max_y": 6546.245810798414, + "center": [ + 1545.827872417377, + 6546.245810798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6546.245810798414 + ], + [ + 1549.094955657286, + 6546.245810798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526162", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6546.245810798414, + "max_x": 1549.094955657286, + "max_y": 6546.245810798414, + "center": [ + 1545.827872417377, + 6546.245810798414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6546.245810798414 + ], + [ + 1549.094955657286, + 6546.245810798414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526163", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6601.021285843831, + "max_x": 1544.462025388398, + "max_y": 6603.749973343831, + "center": [ + 1543.6434191383978, + 6602.385629593831 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526164", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6638.579983314638, + "max_x": 1549.094955657286, + "max_y": 6638.579983314638, + "center": [ + 1545.827872417377, + 6638.579983314638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6638.579983314638 + ], + [ + 1549.094955657286, + 6638.579983314638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526165", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1542.560789177468, + "min_y": 6638.579983314638, + "max_x": 1549.094955657286, + "max_y": 6638.579983314638, + "center": [ + 1545.827872417377, + 6638.579983314638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1542.560789177468, + 6638.579983314638 + ], + [ + 1549.094955657286, + 6638.579983314638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526166", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1542.824812888398, + "min_y": 6701.44994302363, + "max_x": 1544.462025388398, + "max_y": 6704.17863052363, + "center": [ + 1543.6434191383978, + 6702.81428677363 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526167", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6095.792729115581, + "max_x": 1668.812784657286, + "max_y": 6102.3268955954, + "center": [ + 1668.812784657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.812784657286, + 6095.792729115581 + ], + [ + 1668.812784657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526168", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1668.812784657286, + "min_y": 6095.792729115581, + "max_x": 1668.812784657286, + "max_y": 6102.3268955954, + "center": [ + 1668.812784657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.812784657286, + 6095.792729115581 + ], + [ + 1668.812784657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526169", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1609.024885015978, + "min_y": 6095.88517951682, + "max_x": 1610.662097515978, + "max_y": 6098.61386701682, + "center": [ + 1609.8434912659782, + 6097.249523266821 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6095.792729115581, + "max_x": 1788.530613657286, + "max_y": 6102.3268955954, + "center": [ + 1788.530613657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.530613657286, + 6095.792729115581 + ], + [ + 1788.530613657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.530613657286, + "min_y": 6095.792729115581, + "max_x": 1788.530613657286, + "max_y": 6102.3268955954, + "center": [ + 1788.530613657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.530613657286, + 6095.792729115581 + ], + [ + 1788.530613657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1726.057851786716, + "min_y": 6099.158471302125, + "max_x": 1727.695064286716, + "max_y": 6101.887158802125, + "center": [ + 1726.876458036716, + 6100.522815052125 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1849.032888229783, + "min_y": 6098.911219527684, + "max_x": 1850.6701007297831, + "max_y": 6101.639907027684, + "center": [ + 1849.851494479783, + 6100.275563277684 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6095.792729115581, + "max_x": 1908.248442657286, + "max_y": 6102.3268955954, + "center": [ + 1908.248442657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.248442657286, + 6095.792729115581 + ], + [ + 1908.248442657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52616F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.248442657286, + "min_y": 6095.792729115581, + "max_x": 1908.248442657286, + "max_y": 6102.3268955954, + "center": [ + 1908.248442657286, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.248442657286, + 6095.792729115581 + ], + [ + 1908.248442657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526170", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1968.001238067512, + "min_y": 6099.18628846236, + "max_x": 1969.638450567512, + "max_y": 6101.91497596236, + "center": [ + 1968.819844317512, + 6100.55063221236 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526171", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6095.792729115581, + "max_x": 2027.966271657287, + "max_y": 6102.3268955954, + "center": [ + 2027.966271657287, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.966271657287, + 6095.792729115581 + ], + [ + 2027.966271657287, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526172", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.966271657287, + "min_y": 6095.792729115581, + "max_x": 2027.966271657287, + "max_y": 6102.3268955954, + "center": [ + 2027.966271657287, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.966271657287, + 6095.792729115581 + ], + [ + 2027.966271657287, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526173", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6095.792729115581, + "max_x": 2149.392865407285, + "max_y": 6102.3268955954, + "center": [ + 2149.392865407285, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.392865407285, + 6095.792729115581 + ], + [ + 2149.392865407285, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526174", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.392865407285, + "min_y": 6095.792729115581, + "max_x": 2149.392865407285, + "max_y": 6102.3268955954, + "center": [ + 2149.392865407285, + 6099.05981235549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.392865407285, + 6095.792729115581 + ], + [ + 2149.392865407285, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526175", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2088.277524840135, + "min_y": 6099.279328576863, + "max_x": 2089.9147373401347, + "max_y": 6102.008016076863, + "center": [ + 2089.096131090135, + 6100.643672326863 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526176", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6117.069112353019, + "max_x": 2506.838132792086, + "max_y": 6117.069112353019, + "center": [ + 2438.4630211859935, + 6117.069112353019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6117.069112353019 + ], + [ + 2370.087909579901, + 6117.069112353019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526177", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6135.266850149381, + "max_x": 2506.838132792086, + "max_y": 6135.266850149381, + "center": [ + 2438.4630211859935, + 6135.266850149381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6135.266850149381 + ], + [ + 2370.087909579901, + 6135.266850149381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526178", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6162.563456843925, + "max_x": 2506.838132792086, + "max_y": 6162.563456843925, + "center": [ + 2438.4630211859935, + 6162.563456843925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6162.563456843925 + ], + [ + 2370.087909579901, + 6162.563456843925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526179", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6180.761194640288, + "max_x": 2506.838132792086, + "max_y": 6180.761194640288, + "center": [ + 2438.4630211859935, + 6180.761194640288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6180.761194640288 + ], + [ + 2370.087909579901, + 6180.761194640288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2373.248975655953, + "min_y": 6177.087770485517, + "max_x": 2391.746425912946, + "max_y": 6179.459238467182, + "center": [ + 2382.4977007844495, + 6178.273504476349 + ] + }, + "raw_value": "PROJECT NAME:", + "clean_value": "PROJECT NAME:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2373.467271888614, + "min_y": 6158.890032689154, + "max_x": 2382.004556622611, + "max_y": 6161.26150067082, + "center": [ + 2377.7359142556124, + 6160.075766679987 + ] + }, + "raw_value": "TITLE:", + "clean_value": "TITLE:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2373.248975655953, + "min_y": 6131.593425994609, + "max_x": 2384.6320219679487, + "max_y": 6133.964893976275, + "center": [ + 2378.940498811951, + 6132.779159985442 + ] + }, + "raw_value": "DWG. NO.", + "clean_value": "DWG. NO.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6102.326895103239, + "max_x": 2370.087909579901, + "max_y": 6301.588336271909, + "center": [ + 2370.087909579901, + 6201.957615687574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.087909579901, + 6301.588336271909 + ], + [ + 2370.087909579901, + 6102.326895103239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.380843739732, + "min_y": 6108.182066474209, + "max_x": 2417.476468739732, + "max_y": 6111.213941474209, + "center": [ + 2412.928656239732, + 6109.698003974208 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52617F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.7662740662, + "min_y": 6102.3268955954, + "max_x": 2422.7662740662, + "max_y": 6117.069112353019, + "center": [ + 2422.7662740662, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.7662740662, + 6117.069112353019 + ], + [ + 2422.7662740662, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526180", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.482224624377, + "min_y": 6102.3268955954, + "max_x": 2439.482224624377, + "max_y": 6117.069112353019, + "center": [ + 2439.482224624377, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.482224624377, + 6117.069112353019 + ], + [ + 2439.482224624377, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526181", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2442.303773806734, + "min_y": 6108.24877354097, + "max_x": 2449.2600798862873, + "max_y": 6111.147234407451, + "center": [ + 2445.781926846511, + 6109.69800397421 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526182", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.57697734167, + "min_y": 6102.3268955954, + "max_x": 2454.57697734167, + "max_y": 6117.069112353019, + "center": [ + 2454.57697734167, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2454.57697734167, + 6117.069112353019 + ], + [ + 2454.57697734167, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526183", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.558051898133, + "min_y": 6102.3268955954, + "max_x": 2479.558051898133, + "max_y": 6117.069112353019, + "center": [ + 2479.558051898133, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.558051898133, + 6117.069112353019 + ], + [ + 2479.558051898133, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526184", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.551165872301, + "min_y": 6102.3268955954, + "max_x": 2490.551165872302, + "max_y": 6117.069112353019, + "center": [ + 2490.5511658723017, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.551165872302, + 6117.069112353019 + ], + [ + 2490.551165872301, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526185", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2481.606950674196, + "min_y": 6108.248773294889, + "max_x": 2486.8241802338607, + "max_y": 6111.14723416137, + "center": [ + 2484.2155654540284, + 6109.69800372813 + ] + }, + "raw_value": "REV", + "clean_value": "REV", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526186", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2493.577671931642, + "min_y": 6106.275006062354, + "max_x": 2504.1416777594, + "max_y": 6115.423703474919, + "center": [ + 2498.859674845521, + 6110.849354768637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2498.859674845522, + 6115.423703474919 + ], + [ + 2493.577671931642, + 6106.275006062354 + ], + [ + 2504.1416777594, + 6106.275006062354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526187", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6180.761194640288, + "max_x": 2506.838132792086, + "max_y": 6180.761194640288, + "center": [ + 2438.4630211859935, + 6180.761194640288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6180.761194640288 + ], + [ + 2370.087909579901, + 6180.761194640288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526188", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6203.712471310575, + "max_x": 2506.838132792086, + "max_y": 6203.712471310575, + "center": [ + 2438.4630211859935, + 6203.712471310575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6203.712471310575 + ], + [ + 2370.087909579901, + 6203.712471310575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526189", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.13233106106, + "min_y": 6102.3268955954, + "max_x": 2406.13233106106, + "max_y": 6117.069112353019, + "center": [ + 2406.13233106106, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.13233106106, + 6117.069112353019 + ], + [ + 2406.13233106106, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.816303967786, + "min_y": 6102.3268955954, + "max_x": 2387.816303967786, + "max_y": 6117.069112353019, + "center": [ + 2387.816303967786, + 6109.698003974209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.816303967786, + 6117.069112353019 + ], + [ + 2387.816303967786, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2371.819606001304, + "min_y": 6108.248773294889, + "max_x": 2382.254065120633, + "max_y": 6111.14723416137, + "center": [ + 2377.0368355609685, + 6109.69800372813 + ] + }, + "raw_value": "JOB.NO", + "clean_value": "JOB.NO", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2373.248975655953, + "min_y": 6177.087770485517, + "max_x": 2391.746425912946, + "max_y": 6179.459238467182, + "center": [ + 2382.4977007844495, + 6178.273504476349 + ] + }, + "raw_value": "PROJECT NAME:", + "clean_value": "PROJECT NAME:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2395.903949025103, + "min_y": 6108.248773294889, + "max_x": 2397.6430255449914, + "max_y": 6111.14723416137, + "center": [ + 2396.773487285047, + 6109.69800372813 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2426.087374915693, + "min_y": 6108.248773294889, + "max_x": 2433.043680995246, + "max_y": 6111.14723416137, + "center": [ + 2429.5655279554694, + 6109.69800372813 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52618F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2444.526771185994, + "min_y": 6170.449575742106, + "max_x": 2543.451480466336, + "max_y": 6175.300575742106, + "center": [ + 2493.989125826165, + 6172.875075742106 + ] + }, + "raw_value": "\\C256;\\fGulim|b0|i0|c129|p50;\\W1;PGMEA REFINE PLANT", + "clean_value": "\\fGulim|b0|i0|c129|p50; PGMEA REFINE PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6223.491120353706, + "max_x": 2506.838132792086, + "max_y": 6223.491120353706, + "center": [ + 2438.4630211859935, + 6223.491120353706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6223.491120353706 + ], + [ + 2370.087909579901, + 6223.491120353706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526194", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2497.587316228486, + "min_y": 6108.182066228128, + "max_x": 2499.406441228486, + "max_y": 6111.213941228128, + "center": [ + 2498.496878728486, + 6109.698003728128 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526195", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2442.610872905186, + "min_y": 6126.167981251199, + "max_x": 2541.535582185528, + "max_y": 6131.018981251199, + "center": [ + 2492.073227545357, + 6128.593481251199 + ] + }, + "raw_value": "{\\Fromans|c129;\\W1;PFD-001}", + "clean_value": "\\Fromans|c129; PFD-001", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526199", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2442.610872905185, + "min_y": 6148.915153496653, + "max_x": 2558.1620581134493, + "max_y": 6153.766153496653, + "center": [ + 2500.386465509317, + 6151.3406534966525 + ] + }, + "raw_value": "{\\Fromans|c129;\\W1;REFINE PLANT\\W0.9;\\T0.85; \\PPROCESS FLOW DIAGRAM}", + "clean_value": "\\Fromans|c129; REFINE PLANT .9; .85; PROCESS FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52619D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2514.754456516539, + "min_y": 6693.319914334505, + "max_x": 2516.391669016539, + "max_y": 6696.048601834505, + "center": [ + 2515.573062766539, + 6694.684258084504 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52619E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6749.558735814638, + "max_x": 2387.119758657286, + "max_y": 6756.092902294456, + "center": [ + 2387.119758657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6756.092902294456 + ], + [ + 2387.119758657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52619F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.119758657286, + "min_y": 6749.558735814638, + "max_x": 2387.119758657286, + "max_y": 6756.092902294456, + "center": [ + 2387.119758657286, + 6752.825819054547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.119758657286, + 6756.092902294456 + ], + [ + 2387.119758657286, + 6749.558735814638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2446.659614220975, + "min_y": 6752.784169468018, + "max_x": 2448.296826720975, + "max_y": 6755.512856968018, + "center": [ + 2447.478220470975, + 6754.148513218019 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2456.784354612386, + "min_y": 6108.182066474209, + "max_x": 2474.9756046123857, + "max_y": 6111.213941474209, + "center": [ + 2465.879979612386, + 6109.698003974208 + ] + }, + "raw_value": "2019.03.19", + "clean_value": "2019.03.19", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6265.783742942773, + "max_x": 2506.838132792086, + "max_y": 6265.783742942773, + "center": [ + 2438.4630211859935, + 6265.783742942773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6265.783742942773 + ], + [ + 2370.087909579901, + 6265.783742942773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2370.869546560046, + "min_y": 6267.761688895927, + "max_x": 2376.6907465600457, + "max_y": 6270.187188895928, + "center": [ + 2373.780146560046, + 6268.974438895928 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.738033540191, + "min_y": 6265.783742942685, + "max_x": 2377.738033540191, + "max_y": 6301.58833627182, + "center": [ + 2377.738033540191, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.738033540191, + 6265.783742942685 + ], + [ + 2377.738033540191, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6272.165134849079, + "max_x": 2506.838132792086, + "max_y": 6272.165134849079, + "center": [ + 2438.4630211859935, + 6272.165134849079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6272.165134849079 + ], + [ + 2370.087909579901, + 6272.165134849079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6279.520935204742, + "max_x": 2506.838132792086, + "max_y": 6279.520935204742, + "center": [ + 2438.4630211859935, + 6279.520935204742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6279.520935204742 + ], + [ + 2370.087909579901, + 6279.520935204742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6286.876735560494, + "max_x": 2506.838132792086, + "max_y": 6286.876735560494, + "center": [ + 2438.4630211859935, + 6286.876735560494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6286.876735560494 + ], + [ + 2370.087909579901, + 6286.876735560494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6294.232535916158, + "max_x": 2506.838132792086, + "max_y": 6294.232535916158, + "center": [ + 2438.4630211859935, + 6294.232535916158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6294.232535916158 + ], + [ + 2370.087909579901, + 6294.232535916158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261A9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6272.165134849169, + "max_x": 2377.738033540374, + "max_y": 6279.520935204832, + "center": [ + 2374.0601333625855, + 6275.843035027001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.738033540374, + 6275.843035026955 + ], + [ + 2374.060133362494, + 6279.520935204832 + ], + [ + 2370.382233184797, + 6275.843035026955 + ], + [ + 2374.060133362494, + 6272.165134849169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6279.520935204832, + "max_x": 2377.738033540374, + "max_y": 6286.876735560494, + "center": [ + 2374.0601333625855, + 6283.198835382664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.738033540374, + 6283.198835382707 + ], + [ + 2374.060133362494, + 6286.876735560494 + ], + [ + 2370.382233184797, + 6283.198835382707 + ], + [ + 2374.060133362494, + 6279.520935204832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6286.876735560494, + "max_x": 2377.738033540374, + "max_y": 6294.232535916158, + "center": [ + 2374.0601333625855, + 6290.554635738326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.738033540374, + 6290.55463573837 + ], + [ + 2374.060133362494, + 6294.232535916158 + ], + [ + 2370.382233184797, + 6290.55463573837 + ], + [ + 2374.060133362494, + 6286.876735560494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2370.382233184797, + "min_y": 6294.232535916158, + "max_x": 2377.738033540374, + "max_y": 6301.588336271909, + "center": [ + 2374.0601333625855, + 6297.910436094033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.738033540374, + 6297.910436094032 + ], + [ + 2374.060133362494, + 6301.588336271909 + ], + [ + 2370.382233184797, + 6297.910436094032 + ], + [ + 2374.060133362494, + 6294.232535916158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2386.420555679042, + "min_y": 6267.761688895927, + "max_x": 2392.241755679042, + "max_y": 6270.187188895928, + "center": [ + 2389.3311556790422, + 6268.974438895928 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2486.481257792087, + "min_y": 6267.761688895927, + "max_x": 2492.302457792087, + "max_y": 6270.187188895928, + "center": [ + 2489.3918577920867, + 6268.974438895928 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261AF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2476.779257792087, + "min_y": 6267.761688895927, + "max_x": 2482.6004577920867, + "max_y": 6270.187188895928, + "center": [ + 2479.6898577920865, + 6268.974438895928 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2467.077257792087, + "min_y": 6267.761688895927, + "max_x": 2472.898457792087, + "max_y": 6270.187188895928, + "center": [ + 2469.987857792087, + 6268.974438895928 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.902632792086, + "min_y": 6265.783742942685, + "max_x": 2455.902632792086, + "max_y": 6301.58833627182, + "center": [ + 2455.902632792086, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.902632792086, + 6265.783742942685 + ], + [ + 2455.902632792086, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2465.604632792086, + "min_y": 6265.783742942685, + "max_x": 2465.604632792086, + "max_y": 6301.58833627182, + "center": [ + 2465.604632792086, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.604632792086, + 6265.783742942685 + ], + [ + 2465.604632792086, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2475.306632792087, + "min_y": 6265.783742942685, + "max_x": 2475.306632792087, + "max_y": 6301.58833627182, + "center": [ + 2475.306632792087, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.306632792087, + 6265.783742942685 + ], + [ + 2475.306632792087, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.008632792086, + "min_y": 6265.783742942685, + "max_x": 2485.008632792086, + "max_y": 6301.58833627182, + "center": [ + 2485.008632792086, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.008632792086, + 6265.783742942685 + ], + [ + 2485.008632792086, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.710632792086, + "min_y": 6265.783742942685, + "max_x": 2494.710632792086, + "max_y": 6301.58833627182, + "center": [ + 2494.710632792086, + 6283.6860396072525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.710632792086, + 6265.783742942685 + ], + [ + 2494.710632792086, + 6301.58833627182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2457.288632792085, + "min_y": 6267.761688895927, + "max_x": 2463.109832792085, + "max_y": 6270.187188895928, + "center": [ + 2460.1992327920852, + 6268.974438895928 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2419.31783030499, + "min_y": 6267.761688895882, + "max_x": 2435.32613030499, + "max_y": 6270.187188895882, + "center": [ + 2427.3219803049897, + 6268.9744388958825 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6265.783742942773, + "max_x": 2506.838132792086, + "max_y": 6265.783742942773, + "center": [ + 2438.4630211859935, + 6265.783742942773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.087909579901, + 6265.783742942773 + ], + [ + 2506.838132792086, + 6265.783742942773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6301.588336271909, + "max_x": 2506.838132792086, + "max_y": 6301.588336271909, + "center": [ + 2438.4630211859935, + 6301.588336271909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.087909579901, + 6301.588336271909 + ], + [ + 2506.838132792086, + 6301.588336271909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2402.795377817892, + "min_y": 6265.783742942773, + "max_x": 2402.795377817892, + "max_y": 6301.588336271909, + "center": [ + 2402.795377817892, + 6283.686039607341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.795377817892, + 6301.588336271909 + ], + [ + 2402.795377817892, + 6265.783742942773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2495.533570292086, + "min_y": 6267.761688895927, + "max_x": 2504.265370292086, + "max_y": 6270.187188895928, + "center": [ + 2499.8994702920863, + 6268.974438895928 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2373.251633362539, + "min_y": 6274.630285026955, + "max_x": 2374.706933362539, + "max_y": 6277.055785026955, + "center": [ + 2373.979283362539, + 6275.8430350269555 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2380.841905679043, + "min_y": 6274.630285026911, + "max_x": 2396.850205679043, + "max_y": 6277.0557850269115, + "center": [ + 2388.8460556790433, + 6275.843035026912 + ] + }, + "raw_value": "MAR.19.2019", + "clean_value": "MAR.19.2019", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2427.03900530499, + "min_y": 6274.630285026911, + "max_x": 2431.40490530499, + "max_y": 6277.0557850269115, + "center": [ + 2429.22195530499, + 6275.843035026912 + ] + }, + "raw_value": "IFD", + "clean_value": "IFD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261BF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2457.635132792086, + "min_y": 6274.630285026911, + "max_x": 2462.001032792086, + "max_y": 6277.0557850269115, + "center": [ + 2459.818082792086, + 6275.843035026912 + ] + }, + "raw_value": "SYS", + "clean_value": "SYS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.087909579901, + "min_y": 6244.038813393448, + "max_x": 2506.838132792086, + "max_y": 6244.038813393448, + "center": [ + 2438.4630211859935, + 6244.038813393448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.838132792086, + 6244.038813393448 + ], + [ + 2370.087909579901, + 6244.038813393448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6168.46011550675, + "max_x": 1549.094955657286, + "max_y": 6225.05511550675, + "center": [ + 1549.094955657286, + 6196.75761550675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6225.05511550675 + ], + [ + 1549.094955657286, + 6168.46011550675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6102.3268955954, + "max_x": 1549.094955657286, + "max_y": 6158.9218955954, + "center": [ + 1549.094955657286, + 6130.6243955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6158.9218955954 + ], + [ + 1549.094955657286, + 6102.3268955954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2372.455120852798, + "min_y": 6199.732945678231, + "max_x": 2390.952571109791, + "max_y": 6202.104413659897, + "center": [ + 2381.7038459812943, + 6200.918679669064 + ] + }, + "raw_value": "MANUFACTURER:", + "clean_value": "MANUFACTURER:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2372.204267761148, + "min_y": 6240.257823778509, + "max_x": 2382.1644332841443, + "max_y": 6242.629291760175, + "center": [ + 2377.184350522646, + 6241.443557769342 + ] + }, + "raw_value": "CLIENT:", + "clean_value": "CLIENT:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C5", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 2440.553532268682, + "min_y": 6254.866487767513, + "max_x": 2686.7098648651418, + "max_y": 6265.174640519641, + "center": [ + 2563.631698566912, + 6260.020564143577 + ] + }, + "raw_value": "10th Plant", + "clean_value": "10th Plant", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261C9", + "entity_type": "TEXT", + "layer": "C3", + "bbox": { + "min_x": 2395.527764827856, + "min_y": 6229.040461467022, + "max_x": 2465.851187227856, + "max_y": 6233.082037467022, + "center": [ + 2430.689476027856, + 6231.061249467022 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261D2", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.021235364053, + "min_y": 6233.05182560149, + "max_x": 2386.519353287172, + "max_y": 6233.05182560149, + "center": [ + 2386.2702943256127, + 6233.05182560149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.021235364053, + 6233.05182560149 + ], + [ + 2386.519353287172, + 6233.05182560149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D3", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.092357929284, + "min_y": 6231.370680556644, + "max_x": 2386.519353287172, + "max_y": 6231.370680556644, + "center": [ + 2386.305855608228, + 6231.370680556644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6231.370680556644 + ], + [ + 2386.092357929284, + 6231.370680556644 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D4", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.373408432568, + "min_y": 6231.793334658696, + "max_x": 2386.519353287172, + "max_y": 6231.793334658696, + "center": [ + 2386.4463808598703, + 6231.793334658696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6231.793334658696 + ], + [ + 2386.373408432568, + 6231.793334658696 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D5", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2385.527181883734, + "min_y": 6231.075611680214, + "max_x": 2386.036440554751, + "max_y": 6231.075611680214, + "center": [ + 2385.7818112192426, + 6231.075611680214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.036440554751, + 6231.075611680214 + ], + [ + 2385.527181883734, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D6", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2385.527181883734, + "min_y": 6231.075611680214, + "max_x": 2386.021235364053, + "max_y": 6233.05182560149, + "center": [ + 2385.7742086238936, + 6232.063718640852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.021235364053, + 6233.05182560149 + ], + [ + 2385.527181883734, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D7", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.373408432568, + "min_y": 6231.793334658696, + "max_x": 2386.519353287172, + "max_y": 6232.377114077133, + "center": [ + 2386.4463808598703, + 6232.085224367915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6232.377114077133 + ], + [ + 2386.373408432568, + 6231.793334658696 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D8", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.036440554751, + "min_y": 6231.075611680214, + "max_x": 2386.092357929284, + "max_y": 6231.370680556644, + "center": [ + 2386.0643992420173, + 6231.223146118429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.092357929284, + 6231.370680556644 + ], + [ + 2386.036440554751, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261D9", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.519353287172, + "min_y": 6233.05182560149, + "max_x": 2387.017471210297, + "max_y": 6233.05182560149, + "center": [ + 2386.7684122487344, + 6233.05182560149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.017471210297, + 6233.05182560149 + ], + [ + 2386.519353287172, + 6233.05182560149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DA", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.519353287172, + "min_y": 6231.370680556644, + "max_x": 2386.946348645071, + "max_y": 6231.370680556644, + "center": [ + 2386.7328509661215, + 6231.370680556644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6231.370680556644 + ], + [ + 2386.946348645071, + 6231.370680556644 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DB", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.519353287172, + "min_y": 6231.793334658696, + "max_x": 2386.665298141787, + "max_y": 6231.793334658696, + "center": [ + 2386.5923257144796, + 6231.793334658696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6231.793334658696 + ], + [ + 2386.665298141787, + 6231.793334658696 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DC", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2387.002266019599, + "min_y": 6231.075611680214, + "max_x": 2387.511524690616, + "max_y": 6231.075611680214, + "center": [ + 2387.2568953551076, + 6231.075611680214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.002266019599, + 6231.075611680214 + ], + [ + 2387.511524690616, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DD", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2387.017471210297, + "min_y": 6231.075611680214, + "max_x": 2387.511524690616, + "max_y": 6233.05182560149, + "center": [ + 2387.2644979504566, + 6232.063718640852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.017471210297, + 6233.05182560149 + ], + [ + 2387.511524690616, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DE", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.519353287172, + "min_y": 6231.793334658696, + "max_x": 2386.665298141787, + "max_y": 6232.377114077133, + "center": [ + 2386.5923257144796, + 6232.085224367915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.519353287172, + 6232.377114077133 + ], + [ + 2386.665298141787, + 6231.793334658696 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261DF", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2386.946348645071, + "min_y": 6231.075611680214, + "max_x": 2387.002266019599, + "max_y": 6231.370680556644, + "center": [ + 2386.9743073323352, + 6231.223146118429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.946348645071, + 6231.370680556644 + ], + [ + 2387.002266019599, + 6231.075611680214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261E0", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2386.73367439497, + "min_y": 6227.533495351877, + "max_x": 2396.599240848956, + "max_y": 6229.1144664888925, + "center": [ + 2391.6664576219628, + 6228.323980920384 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5261E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.673861802406, + "min_y": 6197.097963614594, + "max_x": 2420.847954758514, + "max_y": 6197.097963614594, + "center": [ + 2420.26090828046, + 6197.097963614594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.847954758514, + 6197.097963614594 + ], + [ + 2419.673861802406, + 6197.097963614594 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.312945108295, + "min_y": 6197.097963614594, + "max_x": 2416.487038064402, + "max_y": 6197.097963614594, + "center": [ + 2415.8999915863487, + 6197.097963614594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.487038064402, + 6197.097963614594 + ], + [ + 2415.312945108295, + 6197.097963614594 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.312945108295, + "min_y": 6195.420687963012, + "max_x": 2420.847954758514, + "max_y": 6195.420687963012, + "center": [ + 2418.0804499334045, + 6195.420687963012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.847954758514, + 6195.420687963012 + ], + [ + 2415.312945108295, + 6195.420687963012 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.487038064402, + "min_y": 6197.097963614594, + "max_x": 2416.487038064402, + "max_y": 6198.104329005542, + "center": [ + 2416.487038064402, + 6197.601146310068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.487038064402, + 6198.104329005542 + ], + [ + 2416.487038064402, + 6197.097963614594 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.312945108295, + "min_y": 6195.420687963012, + "max_x": 2415.312945108295, + "max_y": 6197.097963614594, + "center": [ + 2415.312945108295, + 6196.259325788803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.312945108295, + 6197.097963614594 + ], + [ + 2415.312945108295, + 6195.420687963012 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.673861802406, + "min_y": 6197.097963614594, + "max_x": 2419.673861802406, + "max_y": 6198.104329005542, + "center": [ + 2419.673861802406, + 6197.601146310068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.673861802406, + 6198.104329005542 + ], + [ + 2419.673861802406, + 6197.097963614594 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.847954758514, + "min_y": 6195.420687963012, + "max_x": 2420.847954758514, + "max_y": 6197.097963614594, + "center": [ + 2420.847954758514, + 6196.259325788803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.847954758514, + 6197.097963614594 + ], + [ + 2420.847954758514, + 6195.420687963012 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2416.906356977297, + "min_y": 6190.326408567737, + "max_x": 2419.254542889511, + "max_y": 6192.67459447995, + "center": [ + 2418.080449933404, + 6191.500501523844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.080449933404, + 6191.500501523844 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261EE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2422.316516951986, + "min_y": 6190.272428249701, + "max_x": 2424.6647028642, + "max_y": 6192.620614161914, + "center": [ + 2423.490609908093, + 6191.446521205808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.490609908093, + 6191.446521205808 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5261EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.225560373298, + "min_y": 6192.310230147456, + "max_x": 2423.172573014322, + "max_y": 6192.576718889303, + "center": [ + 2422.69906669381, + 6192.44347451838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.172573014322, + 6192.576718889303 + ], + [ + 2422.225560373298, + 6192.310230147456 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5261F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.254246105296, + "min_y": 6191.474104243106, + "max_x": 2422.225560373298, + "max_y": 6192.310230147456, + "center": [ + 2420.739903239297, + 6191.892167195281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.225560373298, + 6192.310230147456 + ], + [ + 2419.254246105296, + 6191.474104243106 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.398486827175, + "min_y": 6190.370303840348, + "max_x": 2419.345499468199, + "max_y": 6190.636792582195, + "center": [ + 2418.871993147687, + 6190.503548211272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.398486827175, + 6190.370303840348 + ], + [ + 2419.345499468199, + 6190.636792582195 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "5261F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.345499468199, + "min_y": 6190.636792582195, + "max_x": 2422.316813736201, + "max_y": 6191.47291848655, + "center": [ + 2420.8311566022, + 6191.054855534372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.345499468199, + 6190.636792582195 + ], + [ + 2422.316813736201, + 6191.47291848655 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5261F3", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 2431.35522160844, + "min_y": 6192.719735621661, + "max_x": 2456.458375002525, + "max_y": 6196.40974205514, + "center": [ + 2443.9067983054824, + 6194.5647388384 + ] + }, + "raw_value": "{\\fMalgun Gothic|b0|i0|c129|p50;주식회사}", + "clean_value": "\\fMalgun Gothic|b0|i0|c129|p50;주식회사", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F4", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 2449.699327682468, + "min_y": 6194.794332137971, + "max_x": 2492.6582785058026, + "max_y": 6200.161614223031, + "center": [ + 2471.178803094135, + 6197.477973180501 + ] + }, + "raw_value": "{\\fMalgun Gothic|b0|i0|c129|p50; \\H1.0313x;한울}", + "clean_value": "\\fMalgun Gothic|b0|i0|c129|p50; .0313x;한울", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2372.455120852798, + "min_y": 6219.511594721364, + "max_x": 2389.5296903207914, + "max_y": 6221.88306270303, + "center": [ + 2380.9924055867946, + 6220.697328712197 + ] + }, + "raw_value": "DESIGNED BY:", + "clean_value": "DESIGNED BY:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1740.343401288356, + "min_y": 6382.27312017957, + "max_x": 1747.7674032392, + "max_y": 6382.27312017957, + "center": [ + 1744.055402263778, + 6382.27312017957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1740.343401288356, + 6382.27312017957 + ], + [ + 1747.7674032392, + 6382.27312017957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1746.196674390191, + "min_y": 6378.073120179571, + "max_x": 1747.7674032392, + "max_y": 6378.073120179571, + "center": [ + 1746.9820388146954, + 6378.073120179571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.196674390191, + 6378.073120179571 + ], + [ + 1747.7674032392, + 6378.073120179571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1747.7674032392, + "min_y": 6378.073120179571, + "max_x": 1747.7674032392, + "max_y": 6382.27312017957, + "center": [ + 1747.7674032392, + 6380.17312017957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.7674032392, + 6378.073120179571 + ], + [ + 1747.7674032392, + 6382.27312017957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261F9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1734.1647339068497, + "min_y": 6369.915785416557, + "max_x": 1746.5220686698624, + "max_y": 6382.2731201795705, + "center": [ + 1740.343401288356, + 6376.094452798064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1740.343401288356, + 6376.094452798064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1735.443401288356, + "min_y": 6368.222114536492, + "max_x": 1745.243401288357, + "max_y": 6368.222114536492, + "center": [ + 1740.3434012883565, + 6368.222114536492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.243401288357, + 6368.222114536492 + ], + [ + 1735.443401288356, + 6368.222114536492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1735.443401288356, + "min_y": 6368.222114536492, + "max_x": 1736.843401288356, + "max_y": 6371.002701565797, + "center": [ + 1736.143401288356, + 6369.6124080511445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1735.443401288356, + 6368.222114536492 + ], + [ + 1736.843401288356, + 6371.002701565797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.843401288356, + "min_y": 6368.222114536492, + "max_x": 1745.243401288357, + "max_y": 6371.002701565797, + "center": [ + 1744.5434012883566, + 6369.6124080511445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.243401288357, + 6368.222114536492 + ], + [ + 1743.843401288356, + 6371.002701565797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6415.380372615861, + "max_x": 1726.665616454304, + "max_y": 6415.380372615863, + "center": [ + 1716.6210219540885, + 6415.380372615862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6415.380372615863 + ], + [ + 1726.665616454304, + 6415.380372615861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FE", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1734.642527623891, + "min_y": 6358.549843900642, + "max_x": 1752.642527623891, + "max_y": 6363.549843900642, + "center": [ + 1743.642527623891, + 6361.049843900642 + ] + }, + "raw_value": "P-6101", + "clean_value": "P-6101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5261FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6409.738260550064, + "max_x": 1665.416427453873, + "max_y": 6457.424602792993, + "center": [ + 1665.416427453873, + 6433.581431671529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6409.738260550064 + ], + [ + 1665.416427453873, + 6457.424602792993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526200", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6409.738260550064, + "max_x": 1694.672880994206, + "max_y": 6409.738260550064, + "center": [ + 1678.868850766888, + 6409.738260550064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6409.738260550064 + ], + [ + 1694.672880994206, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526201", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.576427453873, + "min_y": 6409.738260550064, + "max_x": 1708.928034368176, + "max_y": 6409.738260550064, + "center": [ + 1707.2522309110245, + 6409.738260550064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6409.738260550064 + ], + [ + 1708.928034368176, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526202", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6406.434582274783, + "max_x": 1663.06482053957, + "max_y": 6409.738260550064, + "center": [ + 1663.06482053957, + 6408.086421412423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6406.434582274783 + ], + [ + 1663.06482053957, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526203", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6406.434582274783, + "max_x": 1708.928034368176, + "max_y": 6406.434582274783, + "center": [ + 1685.996427453873, + 6406.434582274783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6406.434582274783 + ], + [ + 1708.928034368176, + 6406.434582274783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526204", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.928034368176, + "min_y": 6406.434582274783, + "max_x": 1708.928034368176, + "max_y": 6409.738260550064, + "center": [ + 1708.928034368176, + 6408.086421412423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.928034368176, + 6406.434582274783 + ], + [ + 1708.928034368176, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526205", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6457.424602792993, + "max_x": 1685.996427453873, + "max_y": 6464.74387752335, + "center": [ + 1675.706427453873, + 6461.084240158172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6457.424602792993 + ], + [ + 1685.996427453873, + 6464.74387752335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526206", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.996427453873, + "min_y": 6457.424602792993, + "max_x": 1706.576427453873, + "max_y": 6464.74387752335, + "center": [ + 1696.2864274538729, + 6461.084240158172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6457.424602792993 + ], + [ + 1685.996427453873, + 6464.74387752335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526207", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6409.738260550064, + "max_x": 1706.576427453873, + "max_y": 6457.424602792993, + "center": [ + 1706.576427453873, + 6433.581431671529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6457.424602792993 + ], + [ + 1706.576427453873, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526208", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6449.985959136601, + "max_x": 1665.416427453873, + "max_y": 6449.985959136601, + "center": [ + 1663.9308209978285, + 6449.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6449.985959136601 + ], + [ + 1662.445214541784, + 6449.985959136601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526209", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6448.290998979448, + "max_x": 1662.445214541784, + "max_y": 6451.680919293756, + "center": [ + 1662.445214541784, + 6449.985959136602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.445214541784, + 6448.290998979448 + ], + [ + 1662.445214541784, + 6451.680919293756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52620A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1681.7226052277022, + "min_y": 6414.299584447208, + "max_x": 1690.198272427702, + "max_y": 6422.775251647208, + "center": [ + 1685.960438827702, + 6418.537418047208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.960438827702, + 6418.537418047208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52620B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1683.551875613938, + "min_y": 6417.112302805773, + "max_x": 1687.1518756139378, + "max_y": 6420.112302805773, + "center": [ + 1685.3518756139379, + 6418.612302805773 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52620D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6449.985959136601, + "max_x": 1670.416427453872, + "max_y": 6449.985959136601, + "center": [ + 1667.9164274538725, + 6449.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6449.985959136601 + ], + [ + 1670.416427453872, + 6449.985959136601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52620E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1670.416427453872, + "min_y": 6414.9859591366, + "max_x": 1670.416427453872, + "max_y": 6449.985959136601, + "center": [ + 1670.416427453872, + 6432.4859591366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1670.416427453872, + 6449.985959136601 + ], + [ + 1670.416427453872, + 6414.9859591366 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52620F", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6407.831239387113, + "max_x": 1705.576427453873, + "max_y": 6407.831239387113, + "center": [ + 1700.124654224039, + 6407.831239387113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6407.831239387113 + ], + [ + 1694.672880994205, + 6407.831239387113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526210", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6407.831239387113, + "max_x": 1694.672880994205, + "max_y": 6409.738260550064, + "center": [ + 1694.672880994205, + 6408.784749968589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.672880994205, + 6407.831239387113 + ], + [ + 1694.672880994205, + 6409.738260550064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526211", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1698.266817398378, + "min_y": 6460.379914692814, + "max_x": 1698.266817398378, + "max_y": 6463.900120207094, + "center": [ + 1698.266817398378, + 6462.140017449954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.266817398378, + 6460.379914692814 + ], + [ + 1698.266817398378, + 6463.900120207094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526212", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1693.790780141494, + "min_y": 6461.971816849589, + "max_x": 1693.790780141494, + "max_y": 6463.900120207094, + "center": [ + 1693.790780141494, + 6462.935968528342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.790780141494, + 6463.900120207094 + ], + [ + 1693.790780141494, + 6461.971816849589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526213", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1692.730472187054, + "min_y": 6463.93940535889, + "max_x": 1699.136865853655, + "max_y": 6463.93940535889, + "center": [ + 1695.9336690203545, + 6463.93940535889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.730472187054, + 6463.93940535889 + ], + [ + 1699.136865853655, + 6463.93940535889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526214", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1692.730472187054, + "min_y": 6464.939405358889, + "max_x": 1699.136865853655, + "max_y": 6464.939405358889, + "center": [ + 1695.9336690203545, + 6464.939405358889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.730472187054, + 6464.939405358889 + ], + [ + 1699.136865853655, + 6464.939405358889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526215", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1705.576427453873, + "min_y": 6407.831239387113, + "max_x": 1705.576427453873, + "max_y": 6409.738260550064, + "center": [ + 1705.576427453873, + 6408.784749968589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6409.738260550064 + ], + [ + 1705.576427453873, + 6407.831239387113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526217", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6449.985959136601, + "max_x": 1662.445214541778, + "max_y": 6449.985959136601, + "center": [ + 1656.8966247390174, + 6449.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.445214541778, + 6449.985959136601 + ], + [ + 1651.348034936257, + 6449.985959136601 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526218", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6417.335733069276, + "max_x": 1651.348034936257, + "max_y": 6449.985959136601, + "center": [ + 1651.348034936257, + 6433.660846102939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.348034936257, + 6449.985959136601 + ], + [ + 1651.348034936257, + 6417.335733069276 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526219", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6417.335733069276, + "max_x": 1651.348034936257, + "max_y": 6417.335733069276, + "center": [ + 1646.7817741043114, + 6417.335733069276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.348034936257, + 6417.335733069276 + ], + [ + 1642.215513272366, + 6417.335733069276 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52621A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1634.791511321523, + "min_y": 6419.435733069277, + "max_x": 1642.215513272366, + "max_y": 6419.435733069277, + "center": [ + 1638.5035122969446, + 6419.435733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6419.435733069277 + ], + [ + 1642.215513272366, + 6419.435733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52621B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1640.644784423357, + "min_y": 6415.235733069277, + "max_x": 1642.215513272366, + "max_y": 6415.235733069277, + "center": [ + 1641.4301488478613, + 6415.235733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1640.644784423357, + 6415.235733069277 + ], + [ + 1642.215513272366, + 6415.235733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52621C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6415.235733069277, + "max_x": 1642.215513272366, + "max_y": 6419.435733069277, + "center": [ + 1642.215513272366, + 6417.335733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1642.215513272366, + 6415.235733069277 + ], + [ + 1642.215513272366, + 6419.435733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52621D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1628.6128439400168, + "min_y": 6407.078398306263, + "max_x": 1640.9701787030294, + "max_y": 6419.4357330692765, + "center": [ + 1634.791511321523, + 6413.25706568777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6413.25706568777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52621E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6405.384727426199, + "max_x": 1639.691511321523, + "max_y": 6405.384727426199, + "center": [ + 1634.7915113215226, + 6405.384727426199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1639.691511321523, + 6405.384727426199 + ], + [ + 1629.891511321522, + 6405.384727426199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52621F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6405.384727426199, + "max_x": 1631.291511321523, + "max_y": 6408.165314455503, + "center": [ + 1630.5915113215226, + 6406.775020940851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1629.891511321522, + 6405.384727426199 + ], + [ + 1631.291511321523, + 6408.165314455503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526220", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1638.291511321523, + "min_y": 6405.384727426199, + "max_x": 1639.691511321523, + "max_y": 6408.165314455503, + "center": [ + 1638.991511321523, + 6406.775020940851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1639.691511321523, + 6405.384727426199 + ], + [ + 1638.291511321523, + 6408.165314455503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526222", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1618.366807126406, + "min_y": 6413.25706568777, + "max_x": 1634.791511321523, + "max_y": 6413.25706568777, + "center": [ + 1626.5791592239646, + 6413.25706568777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6413.25706568777 + ], + [ + 1618.366807126406, + 6413.25706568777 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526223", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1585.2860777727, + "min_y": 6417.475575426561, + "max_x": 1591.612544740483, + "max_y": 6417.475575426561, + "center": [ + 1588.4493112565915, + 6417.475575426561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6417.475575426561 + ], + [ + 1585.2860777727, + 6417.475575426561 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1585.817334530507, + "min_y": 6416.475575426559, + "max_x": 1589.460371857129, + "max_y": 6416.475575426559, + "center": [ + 1587.638853193818, + 6416.475575426559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1589.460371857129, + 6416.475575426559 + ], + [ + 1585.817334530507, + 6416.475575426559 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526225", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6409.318854845806, + "max_x": 1585.2860777727, + "max_y": 6417.475575426561, + "center": [ + 1582.5309980881052, + 6413.397215136183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.2860777727, + 6417.475575426561 + ], + [ + 1579.77591840351, + 6409.318854845806 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526226", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6410.790216109828, + "max_x": 1585.817334530507, + "max_y": 6416.475575426559, + "center": [ + 1583.8970017450356, + 6413.6328957681935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.817334530507, + 6416.475575426559 + ], + [ + 1581.976668959564, + 6410.790216109828 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6403.71109641881, + "max_x": 1579.77591840351, + "max_y": 6409.318854845806, + "center": [ + 1579.77591840351, + 6406.514975632308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1579.77591840351, + 6409.318854845806 + ], + [ + 1579.77591840351, + 6403.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6403.71109641881, + "max_x": 1582.822816636367, + "max_y": 6403.71109641881, + "center": [ + 1581.2993675199386, + 6403.71109641881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1579.77591840351, + 6403.71109641881 + ], + [ + 1582.822816636367, + 6403.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526229", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.415548118238, + "min_y": 6403.71109641881, + "max_x": 1591.612544740483, + "max_y": 6403.71109641881, + "center": [ + 1591.0140464293604, + 6403.71109641881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.415548118238, + 6403.71109641881 + ], + [ + 1591.612544740483, + 6403.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6403.71109641881, + "max_x": 1591.612544740483, + "max_y": 6417.475575426561, + "center": [ + 1591.612544740483, + 6410.593335922686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6403.71109641881 + ], + [ + 1591.612544740483, + 6417.475575426561 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1589.460371857129, + "min_y": 6410.790216109828, + "max_x": 1589.460371857129, + "max_y": 6416.475575426559, + "center": [ + 1589.460371857129, + 6413.6328957681935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1589.460371857129, + 6410.790216109828 + ], + [ + 1589.460371857129, + 6416.475575426559 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6407.585551485528, + "max_x": 1591.612544740483, + "max_y": 6407.585551485528, + "center": [ + 1591.612544740483, + 6407.585551485528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6407.585551485528 + ], + [ + 1591.612544740483, + 6407.585551485528 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6405.990749429067, + "max_x": 1609.141991675775, + "max_y": 6405.990749429067, + "center": [ + 1600.377268208129, + 6405.990749429067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6405.990749429067 + ], + [ + 1609.141991675775, + 6405.990749429067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1609.493441984038, + "min_y": 6405.990749429067, + "max_x": 1611.151892731574, + "max_y": 6405.990749429067, + "center": [ + 1610.322667357806, + 6405.990749429067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1609.493441984038, + 6405.990749429067 + ], + [ + 1611.151892731574, + 6405.990749429067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52622F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1613.083882841245, + "min_y": 6405.990749429067, + "max_x": 1614.74233358878, + "max_y": 6405.990749429067, + "center": [ + 1613.9131082150125, + 6405.990749429067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1613.083882841245, + 6405.990749429067 + ], + [ + 1614.74233358878, + 6405.990749429067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526230", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1615.093783897043, + "min_y": 6405.990749429067, + "max_x": 1618.040924572576, + "max_y": 6405.990749429067, + "center": [ + 1616.5673542348095, + 6405.990749429067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1615.093783897043, + 6405.990749429067 + ], + [ + 1618.040924572576, + 6405.990749429067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526231", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1618.040924572576, + "min_y": 6405.990749429067, + "max_x": 1618.040924572576, + "max_y": 6407.927967487715, + "center": [ + 1618.040924572576, + 6406.959358458391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1618.040924572576, + 6405.990749429067 + ], + [ + 1618.040924572576, + 6407.927967487715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526232", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6407.927967487715, + "max_x": 1618.040924572576, + "max_y": 6407.927967487715, + "center": [ + 1604.8267346565294, + 6407.927967487715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1618.040924572576, + 6407.927967487715 + ], + [ + 1591.612544740483, + 6407.927967487715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526233", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1583.6664703267318, + "min_y": 6400.247811221424, + "max_x": 1589.5718944278722, + "max_y": 6406.153235322564, + "center": [ + 1586.619182377302, + 6403.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1586.619182377302, + 6403.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526234", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1582.7886370144067, + "min_y": 6399.369977909098, + "max_x": 1590.4497277401972, + "max_y": 6407.031068634889, + "center": [ + 1586.619182377302, + 6403.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1586.619182377302, + 6403.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526235", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1609.1651757358388, + "min_y": 6400.247811221424, + "max_x": 1615.0705998369792, + "max_y": 6406.153235322564, + "center": [ + 1612.117887786409, + 6403.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6403.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526236", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1608.2873424235138, + "min_y": 6399.369977909098, + "max_x": 1615.9484331493043, + "max_y": 6407.031068634889, + "center": [ + 1612.117887786409, + 6403.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6403.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526237", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1608.0385104235138, + "min_y": 6399.121145909098, + "max_x": 1616.1972651493043, + "max_y": 6407.27990063489, + "center": [ + 1612.117887786409, + 6403.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6403.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526238", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1615.914253527344, + "min_y": 6403.71109641881, + "max_x": 1616.160865221126, + "max_y": 6403.744263220201, + "center": [ + 1616.0375593742351, + 6403.727679819505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1615.914253527344, + 6403.71109641881 + ], + [ + 1616.160865221126, + 6403.744263220201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526239", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1608.074910351693, + "min_y": 6403.71109641881, + "max_x": 1608.321522045474, + "max_y": 6403.744263220201, + "center": [ + 1608.1982161985834, + 6403.727679819505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1608.321522045474, + 6403.71109641881 + ], + [ + 1608.074910351693, + 6403.744263220201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52623A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.918566532122, + "min_y": 6417.664987811544, + "max_x": 1616.391486982645, + "max_y": 6417.664987811544, + "center": [ + 1605.6550267573834, + 6417.664987811544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.918566532122, + 6417.664987811544 + ], + [ + 1616.391486982645, + 6417.664987811544 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52623B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.870216538154, + "min_y": 6408.861129603171, + "max_x": 1616.343136988678, + "max_y": 6408.861129603171, + "center": [ + 1605.606676763416, + 6408.861129603171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.870216538154, + 6408.861129603171 + ], + [ + 1616.343136988678, + 6408.861129603171 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52623E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6410.790216109828, + "max_x": 1589.460371857129, + "max_y": 6410.790216109828, + "center": [ + 1585.7185204083466, + 6410.790216109828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1581.976668959564, + 6410.790216109828 + ], + [ + 1589.460371857129, + 6410.790216109828 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52623F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.7674032392, + "min_y": 6380.173120179571, + "max_x": 1884.26428000546, + "max_y": 6380.173120179571, + "center": [ + 1816.0158416223298, + 6380.173120179571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.7674032392, + 6380.173120179571 + ], + [ + 1884.26428000546, + 6380.173120179571 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526240", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6340.380372615861, + "max_x": 1726.665616454304, + "max_y": 6340.380372615862, + "center": [ + 1716.6210219540885, + 6340.380372615862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6340.380372615862 + ], + [ + 1726.665616454304, + 6340.380372615861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526241", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6334.738260550063, + "max_x": 1665.416427453873, + "max_y": 6382.424602792993, + "center": [ + 1665.416427453873, + 6358.581431671528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6334.738260550063 + ], + [ + 1665.416427453873, + 6382.424602792993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526242", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6334.738260550063, + "max_x": 1694.672880994206, + "max_y": 6334.738260550063, + "center": [ + 1678.868850766888, + 6334.738260550063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6334.738260550063 + ], + [ + 1694.672880994206, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526243", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.576427453873, + "min_y": 6334.738260550063, + "max_x": 1708.928034368176, + "max_y": 6334.738260550063, + "center": [ + 1707.2522309110245, + 6334.738260550063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6334.738260550063 + ], + [ + 1708.928034368176, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526244", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6331.434582274781, + "max_x": 1663.06482053957, + "max_y": 6334.738260550063, + "center": [ + 1663.06482053957, + 6333.086421412422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6331.434582274781 + ], + [ + 1663.06482053957, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526245", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1663.06482053957, + "min_y": 6331.434582274781, + "max_x": 1708.928034368176, + "max_y": 6331.434582274781, + "center": [ + 1685.996427453873, + 6331.434582274781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1663.06482053957, + 6331.434582274781 + ], + [ + 1708.928034368176, + 6331.434582274781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526246", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.928034368176, + "min_y": 6331.434582274781, + "max_x": 1708.928034368176, + "max_y": 6334.738260550063, + "center": [ + 1708.928034368176, + 6333.086421412422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.928034368176, + 6331.434582274781 + ], + [ + 1708.928034368176, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526247", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6382.424602792993, + "max_x": 1685.996427453873, + "max_y": 6389.74387752335, + "center": [ + 1675.706427453873, + 6386.084240158172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6382.424602792993 + ], + [ + 1685.996427453873, + 6389.74387752335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526248", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.996427453873, + "min_y": 6382.424602792993, + "max_x": 1706.576427453873, + "max_y": 6389.74387752335, + "center": [ + 1696.2864274538729, + 6386.084240158172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6382.424602792993 + ], + [ + 1685.996427453873, + 6389.74387752335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526249", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.576427453873, + "min_y": 6334.738260550063, + "max_x": 1706.576427453873, + "max_y": 6382.424602792993, + "center": [ + 1706.576427453873, + 6358.581431671528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.576427453873, + 6382.424602792993 + ], + [ + 1706.576427453873, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52624A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6374.985959136601, + "max_x": 1665.416427453873, + "max_y": 6374.985959136601, + "center": [ + 1663.9308209978285, + 6374.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6374.985959136601 + ], + [ + 1662.445214541784, + 6374.985959136601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52624B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1662.445214541784, + "min_y": 6373.290998979448, + "max_x": 1662.445214541784, + "max_y": 6376.680919293756, + "center": [ + 1662.445214541784, + 6374.985959136602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.445214541784, + 6373.290998979448 + ], + [ + 1662.445214541784, + 6376.680919293756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52624C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1681.7226052277022, + "min_y": 6339.299584447208, + "max_x": 1690.198272427702, + "max_y": 6347.775251647208, + "center": [ + 1685.960438827702, + 6343.537418047208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.960438827702, + 6343.537418047208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52624D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1683.551875613938, + "min_y": 6342.112302805773, + "max_x": 1687.1518756139378, + "max_y": 6345.112302805773, + "center": [ + 1685.3518756139379, + 6343.612302805773 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52624F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1665.416427453873, + "min_y": 6374.985959136601, + "max_x": 1670.416427453872, + "max_y": 6374.985959136601, + "center": [ + 1667.9164274538725, + 6374.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1665.416427453873, + 6374.985959136601 + ], + [ + 1670.416427453872, + 6374.985959136601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526250", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1670.416427453872, + "min_y": 6339.985959136601, + "max_x": 1670.416427453872, + "max_y": 6374.985959136601, + "center": [ + 1670.416427453872, + 6357.485959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1670.416427453872, + 6374.985959136601 + ], + [ + 1670.416427453872, + 6339.985959136601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526251", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6332.831239387113, + "max_x": 1705.576427453873, + "max_y": 6332.831239387113, + "center": [ + 1700.124654224039, + 6332.831239387113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6332.831239387113 + ], + [ + 1694.672880994205, + 6332.831239387113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526252", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1694.672880994205, + "min_y": 6332.831239387113, + "max_x": 1694.672880994205, + "max_y": 6334.738260550063, + "center": [ + 1694.672880994205, + 6333.784749968589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.672880994205, + 6332.831239387113 + ], + [ + 1694.672880994205, + 6334.738260550063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526253", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1698.266817398378, + "min_y": 6385.379914692813, + "max_x": 1698.266817398378, + "max_y": 6388.900120207094, + "center": [ + 1698.266817398378, + 6387.140017449954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.266817398378, + 6385.379914692813 + ], + [ + 1698.266817398378, + 6388.900120207094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526254", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1693.790780141494, + "min_y": 6386.971816849589, + "max_x": 1693.790780141494, + "max_y": 6388.900120207094, + "center": [ + 1693.790780141494, + 6387.935968528342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.790780141494, + 6388.900120207094 + ], + [ + 1693.790780141494, + 6386.971816849589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526255", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1692.730472187054, + "min_y": 6388.93940535889, + "max_x": 1699.136865853655, + "max_y": 6388.93940535889, + "center": [ + 1695.9336690203545, + 6388.93940535889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.730472187054, + 6388.93940535889 + ], + [ + 1699.136865853655, + 6388.93940535889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526256", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1692.730472187054, + "min_y": 6389.939405358889, + "max_x": 1699.136865853655, + "max_y": 6389.939405358889, + "center": [ + 1695.9336690203545, + 6389.939405358889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.730472187054, + 6389.939405358889 + ], + [ + 1699.136865853655, + 6389.939405358889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526257", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1705.576427453873, + "min_y": 6332.831239387113, + "max_x": 1705.576427453873, + "max_y": 6334.738260550063, + "center": [ + 1705.576427453873, + 6333.784749968589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.576427453873, + 6334.738260550063 + ], + [ + 1705.576427453873, + 6332.831239387113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526259", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6374.985959136601, + "max_x": 1662.445214541778, + "max_y": 6374.985959136601, + "center": [ + 1656.8966247390174, + 6374.985959136601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.445214541778, + 6374.985959136601 + ], + [ + 1651.348034936257, + 6374.985959136601 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52625A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1651.348034936257, + "min_y": 6342.335733069277, + "max_x": 1651.348034936257, + "max_y": 6374.985959136601, + "center": [ + 1651.348034936257, + 6358.660846102939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.348034936257, + 6374.985959136601 + ], + [ + 1651.348034936257, + 6342.335733069277 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52625B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6342.335733069277, + "max_x": 1651.348034936257, + "max_y": 6342.335733069277, + "center": [ + 1646.7817741043114, + 6342.335733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.348034936257, + 6342.335733069277 + ], + [ + 1642.215513272366, + 6342.335733069277 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52625C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1634.791511321523, + "min_y": 6344.435733069277, + "max_x": 1642.215513272366, + "max_y": 6344.435733069277, + "center": [ + 1638.5035122969446, + 6344.435733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6344.435733069277 + ], + [ + 1642.215513272366, + 6344.435733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52625D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1640.644784423357, + "min_y": 6340.235733069277, + "max_x": 1642.215513272366, + "max_y": 6340.235733069277, + "center": [ + 1641.4301488478613, + 6340.235733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1640.644784423357, + 6340.235733069277 + ], + [ + 1642.215513272366, + 6340.235733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52625E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1642.215513272366, + "min_y": 6340.235733069277, + "max_x": 1642.215513272366, + "max_y": 6344.435733069277, + "center": [ + 1642.215513272366, + 6342.335733069277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1642.215513272366, + 6340.235733069277 + ], + [ + 1642.215513272366, + 6344.435733069277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52625F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1628.6128439400168, + "min_y": 6332.078398306264, + "max_x": 1640.9701787030294, + "max_y": 6344.435733069277, + "center": [ + 1634.791511321523, + 6338.257065687771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6338.257065687771 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526260", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6330.384727426198, + "max_x": 1639.691511321523, + "max_y": 6330.384727426198, + "center": [ + 1634.7915113215226, + 6330.384727426198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1639.691511321523, + 6330.384727426198 + ], + [ + 1629.891511321522, + 6330.384727426198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526261", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1629.891511321522, + "min_y": 6330.384727426198, + "max_x": 1631.291511321523, + "max_y": 6333.165314455503, + "center": [ + 1630.5915113215226, + 6331.7750209408505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1629.891511321522, + 6330.384727426198 + ], + [ + 1631.291511321523, + 6333.165314455503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526262", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1638.291511321523, + "min_y": 6330.384727426198, + "max_x": 1639.691511321523, + "max_y": 6333.165314455503, + "center": [ + 1638.991511321523, + 6331.7750209408505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1639.691511321523, + 6330.384727426198 + ], + [ + 1638.291511321523, + 6333.165314455503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526264", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1618.366807126406, + "min_y": 6338.257065687771, + "max_x": 1634.791511321523, + "max_y": 6338.257065687771, + "center": [ + 1626.5791592239646, + 6338.257065687771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1634.791511321523, + 6338.257065687771 + ], + [ + 1618.366807126406, + 6338.257065687771 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1585.2860777727, + "min_y": 6342.47557542656, + "max_x": 1591.612544740483, + "max_y": 6342.47557542656, + "center": [ + 1588.4493112565915, + 6342.47557542656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6342.47557542656 + ], + [ + 1585.2860777727, + 6342.47557542656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1585.817334530507, + "min_y": 6341.47557542656, + "max_x": 1589.460371857129, + "max_y": 6341.47557542656, + "center": [ + 1587.638853193818, + 6341.47557542656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1589.460371857129, + 6341.47557542656 + ], + [ + 1585.817334530507, + 6341.47557542656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526267", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6334.318854845806, + "max_x": 1585.2860777727, + "max_y": 6342.47557542656, + "center": [ + 1582.5309980881052, + 6338.397215136183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.2860777727, + 6342.47557542656 + ], + [ + 1579.77591840351, + 6334.318854845806 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526268", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6335.790216109828, + "max_x": 1585.817334530507, + "max_y": 6341.47557542656, + "center": [ + 1583.8970017450356, + 6338.632895768194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.817334530507, + 6341.47557542656 + ], + [ + 1581.976668959564, + 6335.790216109828 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6328.71109641881, + "max_x": 1579.77591840351, + "max_y": 6334.318854845806, + "center": [ + 1579.77591840351, + 6331.514975632308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1579.77591840351, + 6334.318854845806 + ], + [ + 1579.77591840351, + 6328.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1579.77591840351, + "min_y": 6328.71109641881, + "max_x": 1582.822816636367, + "max_y": 6328.71109641881, + "center": [ + 1581.2993675199386, + 6328.71109641881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1579.77591840351, + 6328.71109641881 + ], + [ + 1582.822816636367, + 6328.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.415548118238, + "min_y": 6328.71109641881, + "max_x": 1591.612544740483, + "max_y": 6328.71109641881, + "center": [ + 1591.0140464293604, + 6328.71109641881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.415548118238, + 6328.71109641881 + ], + [ + 1591.612544740483, + 6328.71109641881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6328.71109641881, + "max_x": 1591.612544740483, + "max_y": 6342.47557542656, + "center": [ + 1591.612544740483, + 6335.593335922685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6328.71109641881 + ], + [ + 1591.612544740483, + 6342.47557542656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1589.460371857129, + "min_y": 6335.790216109828, + "max_x": 1589.460371857129, + "max_y": 6341.47557542656, + "center": [ + 1589.460371857129, + 6338.632895768194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1589.460371857129, + 6335.790216109828 + ], + [ + 1589.460371857129, + 6341.47557542656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6332.585551485528, + "max_x": 1591.612544740483, + "max_y": 6332.585551485528, + "center": [ + 1591.612544740483, + 6332.585551485528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6332.585551485528 + ], + [ + 1591.612544740483, + 6332.585551485528 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52626F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6330.990749429068, + "max_x": 1609.141991675775, + "max_y": 6330.990749429068, + "center": [ + 1600.377268208129, + 6330.990749429068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1591.612544740483, + 6330.990749429068 + ], + [ + 1609.141991675775, + 6330.990749429068 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526270", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1609.493441984038, + "min_y": 6330.990749429068, + "max_x": 1611.151892731574, + "max_y": 6330.990749429068, + "center": [ + 1610.322667357806, + 6330.990749429068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1609.493441984038, + 6330.990749429068 + ], + [ + 1611.151892731574, + 6330.990749429068 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526271", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1613.083882841245, + "min_y": 6330.990749429068, + "max_x": 1614.74233358878, + "max_y": 6330.990749429068, + "center": [ + 1613.9131082150125, + 6330.990749429068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1613.083882841245, + 6330.990749429068 + ], + [ + 1614.74233358878, + 6330.990749429068 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526272", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1615.093783897043, + "min_y": 6330.990749429068, + "max_x": 1618.040924572576, + "max_y": 6330.990749429068, + "center": [ + 1616.5673542348095, + 6330.990749429068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1615.093783897043, + 6330.990749429068 + ], + [ + 1618.040924572576, + 6330.990749429068 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526273", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1618.040924572576, + "min_y": 6330.990749429068, + "max_x": 1618.040924572576, + "max_y": 6332.927967487716, + "center": [ + 1618.040924572576, + 6331.959358458393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1618.040924572576, + 6330.990749429068 + ], + [ + 1618.040924572576, + 6332.927967487716 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526274", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1591.612544740483, + "min_y": 6332.927967487716, + "max_x": 1618.040924572576, + "max_y": 6332.927967487716, + "center": [ + 1604.8267346565294, + 6332.927967487716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1618.040924572576, + 6332.927967487716 + ], + [ + 1591.612544740483, + 6332.927967487716 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526275", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1583.6664703267318, + "min_y": 6325.247811221424, + "max_x": 1589.5718944278722, + "max_y": 6331.153235322564, + "center": [ + 1586.619182377302, + 6328.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1586.619182377302, + 6328.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526276", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1582.7886370144067, + "min_y": 6324.369977909098, + "max_x": 1590.4497277401972, + "max_y": 6332.031068634889, + "center": [ + 1586.619182377302, + 6328.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1586.619182377302, + 6328.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526277", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1609.1651757358388, + "min_y": 6325.247811221424, + "max_x": 1615.0705998369792, + "max_y": 6331.153235322564, + "center": [ + 1612.117887786409, + 6328.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6328.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526278", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1608.2873424235138, + "min_y": 6324.369977909098, + "max_x": 1615.9484331493043, + "max_y": 6332.031068634889, + "center": [ + 1612.117887786409, + 6328.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6328.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526279", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1608.0385104235138, + "min_y": 6324.121145909098, + "max_x": 1616.1972651493043, + "max_y": 6332.27990063489, + "center": [ + 1612.117887786409, + 6328.200523271994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.117887786409, + 6328.200523271994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52627A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1615.914253527344, + "min_y": 6328.71109641881, + "max_x": 1616.160865221126, + "max_y": 6328.744263220201, + "center": [ + 1616.0375593742351, + 6328.727679819505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1615.914253527344, + 6328.71109641881 + ], + [ + 1616.160865221126, + 6328.744263220201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52627B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1608.074910351693, + "min_y": 6328.71109641881, + "max_x": 1608.321522045474, + "max_y": 6328.744263220201, + "center": [ + 1608.1982161985834, + 6328.727679819505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1608.321522045474, + 6328.71109641881 + ], + [ + 1608.074910351693, + 6328.744263220201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52627C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.918566532122, + "min_y": 6342.664987811544, + "max_x": 1616.391486982645, + "max_y": 6342.664987811544, + "center": [ + 1605.6550267573834, + 6342.664987811544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.918566532122, + 6342.664987811544 + ], + [ + 1616.391486982645, + 6342.664987811544 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52627D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.870216538154, + "min_y": 6333.861129603171, + "max_x": 1616.343136988678, + "max_y": 6333.861129603171, + "center": [ + 1605.606676763416, + 6333.861129603171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.870216538154, + 6333.861129603171 + ], + [ + 1616.343136988678, + 6333.861129603171 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526280", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.976668959564, + "min_y": 6335.790216109828, + "max_x": 1589.460371857129, + "max_y": 6335.790216109828, + "center": [ + 1585.7185204083466, + 6335.790216109828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1581.976668959564, + 6335.790216109828 + ], + [ + 1589.460371857129, + 6335.790216109828 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526281", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1674.426610288618, + "min_y": 6246.67263045205, + "max_x": 1706.089464150304, + "max_y": 6278.956324585533, + "center": [ + 1690.258037219461, + 6262.814477518792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.426610288618, + 6278.956324585533 + ], + [ + 1706.089464150304, + 6278.956324585533 + ], + [ + 1706.089464150304, + 6246.67263045205 + ], + [ + 1674.426610288618, + 6246.67263045205 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526282", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.545201780653, + "min_y": 6246.983050587974, + "max_x": 1683.545201780653, + "max_y": 6278.645904449624, + "center": [ + 1683.545201780653, + 6262.814477518799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.545201780653, + 6246.983050587974 + ], + [ + 1683.545201780653, + 6278.645904449624 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526283", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.970872658276, + "min_y": 6246.983050587974, + "max_x": 1696.970872658276, + "max_y": 6278.645904449624, + "center": [ + 1696.970872658276, + 6262.814477518799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.970872658276, + 6246.983050587974 + ], + [ + 1696.970872658276, + 6278.645904449624 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526284", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1674.426610288618, + "min_y": 6269.527312957611, + "max_x": 1706.089464150304, + "max_y": 6269.527312957611, + "center": [ + 1690.258037219461, + 6269.527312957611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.089464150304, + 6269.527312957611 + ], + [ + 1674.426610288618, + 6269.527312957611 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526285", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1674.426610288618, + "min_y": 6256.101642079995, + "max_x": 1706.089464150304, + "max_y": 6256.101642079995, + "center": [ + 1690.258037219461, + 6256.101642079995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.089464150304, + 6256.101642079995 + ], + [ + 1674.426610288618, + 6256.101642079995 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526286", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1683.653158891189, + "min_y": 6264.547567871474, + "max_x": 1693.411491285555, + "max_y": 6269.9688636461215, + "center": [ + 1688.532325088372, + 6267.258215758798 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526287", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1677.655354259274, + "min_y": 6257.671663377124, + "max_x": 1693.9192415832176, + "max_y": 6263.0929591517715, + "center": [ + 1685.7872979212457, + 6260.382311264448 + ] + }, + "raw_value": "(재활용)", + "clean_value": "(재활용)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526288", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1722.227499087556, + "min_y": 6281.718273285469, + "max_x": 1734.199441363243, + "max_y": 6288.530470529742, + "center": [ + 1728.2134702253995, + 6285.124371907606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.199441363243, + 6288.530470529742 + ], + [ + 1729.855559785256, + 6288.530470529742 + ], + [ + 1726.571380665508, + 6288.530470529742 + ], + [ + 1722.227499087556, + 6288.530470529742 + ], + [ + 1722.227499087556, + 6281.718273285469 + ], + [ + 1726.571380665508, + 6281.718273285469 + ], + [ + 1729.855559785256, + 6281.718273285469 + ], + [ + 1734.199441363243, + 6281.718273285469 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526289", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.355796763242, + "min_y": 6279.275768459641, + "max_x": 1728.213470225391, + "max_y": 6279.275768459641, + "center": [ + 1723.7846334943165, + 6279.275768459641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.213470225391, + 6279.275768459641 + ], + [ + 1719.355796763242, + 6279.275768459641 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.355796763242, + "min_y": 6272.492535338837, + "max_x": 1719.355796763242, + "max_y": 6279.275768459641, + "center": [ + 1719.355796763242, + 6275.884151899239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.355796763242, + 6279.275768459641 + ], + [ + 1719.355796763242, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.997705455211, + "min_y": 6272.492535338837, + "max_x": 1719.997705455211, + "max_y": 6278.633859767708, + "center": [ + 1719.997705455211, + 6275.563197553272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.997705455211, + 6278.633859767708 + ], + [ + 1719.997705455211, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.355796763242, + "min_y": 6278.633859767708, + "max_x": 1728.213470225391, + "max_y": 6278.633859767708, + "center": [ + 1723.7846334943165, + 6278.633859767708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.213470225391, + 6278.633859767708 + ], + [ + 1719.355796763242, + 6278.633859767708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.495660678012, + "min_y": 6272.492535338837, + "max_x": 1721.857841540425, + "max_y": 6272.492535338837, + "center": [ + 1719.6767511092185, + 6272.492535338837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.857841540425, + 6272.492535338837 + ], + [ + 1717.495660678012, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.495660678012, + "min_y": 6272.091225662509, + "max_x": 1721.857841540425, + "max_y": 6272.091225662509, + "center": [ + 1719.6767511092185, + 6272.091225662509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.495660678012, + 6272.091225662509 + ], + [ + 1721.857841540425, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52628F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.857841540425, + "min_y": 6272.091225662509, + "max_x": 1721.857841540425, + "max_y": 6272.492535338837, + "center": [ + 1721.857841540425, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.857841540425, + 6272.492535338837 + ], + [ + 1721.857841540425, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526290", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.213470225391, + "min_y": 6279.275768459641, + "max_x": 1737.071143687557, + "max_y": 6279.275768459641, + "center": [ + 1732.642306956474, + 6279.275768459641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.213470225391, + 6279.275768459641 + ], + [ + 1737.071143687557, + 6279.275768459641 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526291", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1737.071143687557, + "min_y": 6272.492535338837, + "max_x": 1737.071143687557, + "max_y": 6279.275768459641, + "center": [ + 1737.071143687557, + 6275.884151899239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1737.071143687557, + 6279.275768459641 + ], + [ + 1737.071143687557, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526292", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1736.429234995588, + "min_y": 6272.492535338837, + "max_x": 1736.429234995588, + "max_y": 6278.633859767708, + "center": [ + 1736.429234995588, + 6275.563197553272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.429234995588, + 6278.633859767708 + ], + [ + 1736.429234995588, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526293", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.213470225391, + "min_y": 6278.633859767708, + "max_x": 1737.071143687557, + "max_y": 6278.633859767708, + "center": [ + 1732.642306956474, + 6278.633859767708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.213470225391, + 6278.633859767708 + ], + [ + 1737.071143687557, + 6278.633859767708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526294", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.569098910357, + "min_y": 6272.492535338837, + "max_x": 1738.931279772822, + "max_y": 6272.492535338837, + "center": [ + 1736.7501893415897, + 6272.492535338837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.569098910357, + 6272.492535338837 + ], + [ + 1738.931279772822, + 6272.492535338837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526295", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.931279772822, + "min_y": 6272.091225662509, + "max_x": 1738.931279772822, + "max_y": 6272.492535338837, + "center": [ + 1738.931279772822, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.931279772822, + 6272.492535338837 + ], + [ + 1738.931279772822, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526296", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.569098910357, + "min_y": 6272.091225662509, + "max_x": 1738.931279772822, + "max_y": 6272.091225662509, + "center": [ + 1736.7501893415897, + 6272.091225662509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.931279772822, + 6272.091225662509 + ], + [ + 1734.569098910357, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526297", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.569098910357, + "min_y": 6272.091225662509, + "max_x": 1734.569098910357, + "max_y": 6272.492535338837, + "center": [ + 1734.569098910357, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.569098910357, + 6272.492535338837 + ], + [ + 1734.569098910357, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526298", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.931279772822, + "min_y": 6272.091225662509, + "max_x": 1738.931279772822, + "max_y": 6272.492535338837, + "center": [ + 1738.931279772822, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.931279772822, + 6272.492535338837 + ], + [ + 1738.931279772822, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526299", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.495660678012, + "min_y": 6272.091225662509, + "max_x": 1717.495660678012, + "max_y": 6272.492535338837, + "center": [ + 1717.495660678012, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.495660678012, + 6272.492535338837 + ], + [ + 1717.495660678012, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52629A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.495660678012, + "min_y": 6272.091225662509, + "max_x": 1717.495660678012, + "max_y": 6272.492535338837, + "center": [ + 1717.495660678012, + 6272.291880500673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.495660678012, + 6272.492535338837 + ], + [ + 1717.495660678012, + 6272.091225662509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52629B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.227499087556, + "min_y": 6281.094050517616, + "max_x": 1722.227499087556, + "max_y": 6289.154693297629, + "center": [ + 1722.227499087556, + 6285.124371907623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.227499087556, + 6289.154693297629 + ], + [ + 1722.227499087556, + 6281.094050517616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52629C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.258037219461, + "min_y": 6278.956324585533, + "max_x": 1690.258037219461, + "max_y": 6285.124371907623, + "center": [ + 1690.258037219461, + 6282.040348246578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.258037219461, + 6278.956324585533 + ], + [ + 1690.258037219461, + 6285.124371907623 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52629D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.258037219461, + "min_y": 6285.124371907623, + "max_x": 1722.227499087556, + "max_y": 6285.124371907623, + "center": [ + 1706.2427681535085, + 6285.124371907623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.227499087556, + 6285.124371907623 + ], + [ + 1690.258037219461, + 6285.124371907623 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52629E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.199441363243, + "min_y": 6285.124371907606, + "max_x": 1792.097034863376, + "max_y": 6285.124371907607, + "center": [ + 1763.1482381133096, + 6285.1243719076065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.199441363243, + 6285.124371907606 + ], + [ + 1792.097034863376, + 6285.124371907607 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52629F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.097034863376, + "min_y": 6285.124371907607, + "max_x": 1792.097034863376, + "max_y": 6354.719259206001, + "center": [ + 1792.097034863376, + 6319.921815556804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.097034863376, + 6354.719259206001 + ], + [ + 1792.097034863376, + 6285.124371907607 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.418993211489, + "min_y": 6319.561825074121, + "max_x": 1835.418993211489, + "max_y": 6344.898659556037, + "center": [ + 1835.418993211489, + 6332.2302423150795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.418993211489, + 6344.898659556037 + ], + [ + 1835.418993211489, + 6319.561825074121 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1808.836925884984, + "min_y": 6319.707811386537, + "max_x": 1808.836925884984, + "max_y": 6345.044645868457, + "center": [ + 1808.836925884984, + 6332.376228627498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1808.836925884984, + 6345.044645868457 + ], + [ + 1808.836925884984, + 6319.707811386537 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1808.836925884984, + "min_y": 6309.589296990417, + "max_x": 1808.836925884984, + "max_y": 6319.707811386537, + "center": [ + 1808.836925884984, + 6314.648554188478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1808.836925884984, + 6319.707811386537 + ], + [ + 1808.836925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.352682486401, + "min_y": 6309.589296990417, + "max_x": 1835.352682486401, + "max_y": 6318.974668100469, + "center": [ + 1835.352682486401, + 6314.281982545443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.352682486401, + 6318.974668100469 + ], + [ + 1835.352682486401, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1806.029410423069, + "min_y": 6324.149583526176, + "max_x": 1808.821889604776, + "max_y": 6324.149583526176, + "center": [ + 1807.4256500139227, + 6324.149583526176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1808.821889604776, + 6324.149583526176 + ], + [ + 1806.029410423069, + 6324.149583526176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1806.029410423069, + "min_y": 6320.608481386397, + "max_x": 1808.836925884984, + "max_y": 6320.608481386397, + "center": [ + 1807.4331681540266, + 6320.608481386397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1808.836925884984, + 6320.608481386397 + ], + [ + 1806.029410423069, + 6320.608481386397 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1806.029410423069, + "min_y": 6319.95441470387, + "max_x": 1806.029410423069, + "max_y": 6324.782082610282, + "center": [ + 1806.029410423069, + 6322.368248657076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.029410423069, + 6324.782082610282 + ], + [ + 1806.029410423069, + 6319.95441470387 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1805.767552909992, + "min_y": 6319.95441470387, + "max_x": 1805.767552909992, + "max_y": 6324.782082610282, + "center": [ + 1805.767552909992, + 6322.368248657076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1805.767552909992, + 6324.782082610282 + ], + [ + 1805.767552909992, + 6319.95441470387 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.392682486401, + "min_y": 6309.589296990417, + "max_x": 1833.392682486401, + "max_y": 6316.38154059918, + "center": [ + 1833.392682486401, + 6312.9854187947985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.392682486401, + 6316.38154059918 + ], + [ + 1833.392682486401, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1810.796925884984, + "min_y": 6309.589296990417, + "max_x": 1810.796925884984, + "max_y": 6316.528641748946, + "center": [ + 1810.796925884984, + 6313.058969369682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1810.796925884984, + 6316.528641748946 + ], + [ + 1810.796925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.412682486401, + "min_y": 6309.589296990417, + "max_x": 1836.332682486401, + "max_y": 6309.589296990417, + "center": [ + 1834.3726824864011, + 6309.589296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.412682486401, + 6309.589296990417 + ], + [ + 1836.332682486401, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1808.836925884984, + "min_y": 6309.589296990417, + "max_x": 1810.796925884984, + "max_y": 6309.589296990417, + "center": [ + 1809.816925884984, + 6309.589296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1810.796925884984, + 6309.589296990417 + ], + [ + 1808.836925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.412682486401, + "min_y": 6309.099296990416, + "max_x": 1836.332682486401, + "max_y": 6309.099296990416, + "center": [ + 1834.3726824864011, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.412682486401, + 6309.099296990416 + ], + [ + 1836.332682486401, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.412682486401, + "min_y": 6309.099296990416, + "max_x": 1832.412682486401, + "max_y": 6309.099296990416, + "center": [ + 1832.412682486401, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.412682486401, + 6309.099296990416 + ], + [ + 1832.412682486401, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.412682486401, + "min_y": 6309.099296990416, + "max_x": 1832.412682486401, + "max_y": 6309.589296990417, + "center": [ + 1832.412682486401, + 6309.344296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.412682486401, + 6309.099296990416 + ], + [ + 1832.412682486401, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.332682486401, + "min_y": 6309.099296990416, + "max_x": 1836.332682486401, + "max_y": 6309.099296990416, + "center": [ + 1836.332682486401, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.332682486401, + 6309.099296990416 + ], + [ + 1836.332682486401, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.332682486401, + "min_y": 6309.099296990416, + "max_x": 1836.332682486401, + "max_y": 6309.589296990417, + "center": [ + 1836.332682486401, + 6309.344296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.332682486401, + 6309.099296990416 + ], + [ + 1836.332682486401, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.589296990417, + "max_x": 1811.776925884984, + "max_y": 6309.589296990417, + "center": [ + 1809.816925884984, + 6309.589296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1807.856925884984, + 6309.589296990417 + ], + [ + 1811.776925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.099296990416, + "max_x": 1811.776925884984, + "max_y": 6309.099296990416, + "center": [ + 1809.816925884984, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1807.856925884984, + 6309.099296990416 + ], + [ + 1811.776925884984, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.099296990416, + "max_x": 1807.856925884984, + "max_y": 6309.099296990416, + "center": [ + 1807.856925884984, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1807.856925884984, + 6309.099296990416 + ], + [ + 1807.856925884984, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1807.856925884984, + "min_y": 6309.099296990416, + "max_x": 1807.856925884984, + "max_y": 6309.589296990417, + "center": [ + 1807.856925884984, + 6309.344296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1807.856925884984, + 6309.099296990416 + ], + [ + 1807.856925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.776925884984, + "min_y": 6309.099296990416, + "max_x": 1811.776925884984, + "max_y": 6309.099296990416, + "center": [ + 1811.776925884984, + 6309.099296990416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.776925884984, + 6309.099296990416 + ], + [ + 1811.776925884984, + 6309.099296990416 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.776925884984, + "min_y": 6309.099296990416, + "max_x": 1811.776925884984, + "max_y": 6309.589296990417, + "center": [ + 1811.776925884984, + 6309.344296990417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.776925884984, + 6309.099296990416 + ], + [ + 1811.776925884984, + 6309.589296990417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.310826713114, + "min_y": 6296.782765537234, + "max_x": 1816.310826713114, + "max_y": 6313.597690058638, + "center": [ + 1816.310826713114, + 6305.190227797936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.310826713114, + 6313.597690058638 + ], + [ + 1816.310826713114, + 6296.782765537234 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262BB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1835.179933040044, + "min_y": 6348.479334173397, + "max_x": 1856.179933040044, + "max_y": 6353.479334173397, + "center": [ + 1845.679933040044, + 6350.979334173397 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1813.799851336548, + "min_y": 6326.261078911671, + "max_x": 1813.799851336548, + "max_y": 6354.719259206001, + "center": [ + 1813.799851336548, + 6340.490169058836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.799851336548, + 6326.261078911671 + ], + [ + 1813.799851336548, + 6354.719259206001 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5262BD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1866.310826713114, + "min_y": 6302.961432918742, + "max_x": 1873.734828663958, + "max_y": 6302.961432918742, + "center": [ + 1870.022827688536, + 6302.961432918742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.310826713114, + 6302.961432918742 + ], + [ + 1873.734828663958, + 6302.961432918742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262BE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1872.164099814948, + "min_y": 6298.761432918741, + "max_x": 1873.734828663958, + "max_y": 6298.761432918741, + "center": [ + 1872.949464239453, + 6298.761432918741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.164099814948, + 6298.761432918741 + ], + [ + 1873.734828663958, + 6298.761432918741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262BF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1873.734828663957, + "min_y": 6298.761432918741, + "max_x": 1873.734828663958, + "max_y": 6302.961432918742, + "center": [ + 1873.7348286639576, + 6300.861432918741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.734828663957, + 6298.761432918741 + ], + [ + 1873.734828663958, + 6302.961432918742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1860.1321593316077, + "min_y": 6290.604098155727, + "max_x": 1872.4894940946203, + "max_y": 6302.961432918741, + "center": [ + 1866.310826713114, + 6296.782765537234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.310826713114, + 6296.782765537234 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1861.410826713114, + "min_y": 6288.910427275663, + "max_x": 1871.210826713114, + "max_y": 6288.910427275663, + "center": [ + 1866.310826713114, + 6288.910427275663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.210826713114, + 6288.910427275663 + ], + [ + 1861.410826713114, + 6288.910427275663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.410826713114, + "min_y": 6288.910427275663, + "max_x": 1862.810826713114, + "max_y": 6291.691014304968, + "center": [ + 1862.110826713114, + 6290.300720790316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.410826713114, + 6288.910427275663 + ], + [ + 1862.810826713114, + 6291.691014304968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.810826713114, + "min_y": 6288.910427275663, + "max_x": 1871.210826713114, + "max_y": 6291.691014304968, + "center": [ + 1870.510826713114, + 6290.300720790316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.210826713114, + 6288.910427275663 + ], + [ + 1869.810826713114, + 6291.691014304968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1860.609953048649, + "min_y": 6283.460076861889, + "max_x": 1881.609953048649, + "max_y": 6288.460076861889, + "center": [ + 1871.109953048649, + 6285.960076861889 + ] + }, + "raw_value": "P-10101", + "clean_value": "P-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1908.0170741910572, + "min_y": 6287.083816010995, + "max_x": 1915.697074191057, + "max_y": 6294.7638160109955, + "center": [ + 1911.857074191057, + 6290.923816010995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.857074191057, + 6290.923816010995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.876608481811, + "min_y": 6291.825167828211, + "max_x": 1913.876608481811, + "max_y": 6303.726346744316, + "center": [ + 1913.876608481811, + 6297.775757286264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.876608481811, + 6303.726346744316 + ], + [ + 1913.876608481811, + 6291.825167828211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.568980474894, + "min_y": 6291.825167828211, + "max_x": 1907.568980474894, + "max_y": 6303.726346744316, + "center": [ + 1907.568980474894, + 6297.775757286264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.568980474894, + 6303.726346744316 + ], + [ + 1907.568980474894, + 6291.825167828211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1915.697074191058, + "min_y": 6290.923816010995, + "max_x": 1915.697074191058, + "max_y": 6303.726346744316, + "center": [ + 1915.697074191058, + 6297.325081377656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1915.697074191058, + 6290.923816010995 + ], + [ + 1915.697074191058, + 6303.726346744316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1905.748514765648, + "min_y": 6290.923816010995, + "max_x": 1905.748514765648, + "max_y": 6303.726346744316, + "center": [ + 1905.748514765648, + 6297.325081377656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1905.748514765648, + 6303.726346744316 + ], + [ + 1905.748514765648, + 6290.923816010995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1905.748514765648, + "min_y": 6287.083816010995, + "max_x": 1913.4285147656478, + "max_y": 6294.7638160109955, + "center": [ + 1909.588514765648, + 6290.923816010995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.588514765648, + 6290.923816010995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.722794478353, + "min_y": 6289.896383611676, + "max_x": 1913.876608481811, + "max_y": 6291.825167828211, + "center": [ + 1912.2997014800821, + 6290.860775719944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.876608481811, + 6291.825167828211 + ], + [ + 1910.722794478353, + 6289.896383611676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.568980474894, + "min_y": 6289.896383611676, + "max_x": 1910.722794478353, + "max_y": 6291.825167828211, + "center": [ + 1909.1458874766236, + 6290.860775719944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.568980474894, + 6291.825167828211 + ], + [ + 1910.722794478353, + 6289.896383611676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.588514765648, + "min_y": 6287.083816010995, + "max_x": 1911.857074191057, + "max_y": 6287.083816010995, + "center": [ + 1910.7227944783526, + 6287.083816010995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.588514765648, + 6287.083816010995 + ], + [ + 1911.857074191057, + 6287.083816010995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1915.697074191058, + "min_y": 6303.726346744316, + "max_x": 1917.476511598745, + "max_y": 6303.726346744316, + "center": [ + 1916.5867928949015, + 6303.726346744316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1915.697074191058, + 6303.726346744316 + ], + [ + 1917.476511598745, + 6303.726346744316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.689786155118, + "min_y": 6303.147585896535, + "max_x": 1904.689786155118, + "max_y": 6305.187057601389, + "center": [ + 1904.689786155118, + 6304.167321748962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.689786155118, + 6305.187057601389 + ], + [ + 1904.689786155118, + 6303.147585896535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.969077357961, + "min_y": 6303.726346744316, + "max_x": 1905.748514765648, + "max_y": 6303.726346744316, + "center": [ + 1904.8587960618045, + 6303.726346744316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.969077357961, + 6303.726346744316 + ], + [ + 1905.748514765648, + 6303.726346744316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.755802801588, + "min_y": 6303.147585896535, + "max_x": 1916.755802801588, + "max_y": 6305.187057601389, + "center": [ + 1916.755802801588, + 6304.167321748962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.755802801588, + 6305.187057601389 + ], + [ + 1916.755802801588, + 6303.147585896535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.969077357961, + "min_y": 6304.608296753609, + "max_x": 1917.476511598745, + "max_y": 6304.608296753609, + "center": [ + 1910.722794478353, + 6304.608296753609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.969077357961, + 6304.608296753609 + ], + [ + 1917.476511598745, + 6304.608296753609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1905.748514765648, + "min_y": 6303.726346744316, + "max_x": 1915.697074191058, + "max_y": 6303.726346744316, + "center": [ + 1910.722794478353, + 6303.726346744316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1905.748514765648, + 6303.726346744316 + ], + [ + 1915.697074191058, + 6303.726346744316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.568980474894, + "min_y": 6291.825167828211, + "max_x": 1913.876608481811, + "max_y": 6303.726346744316, + "center": [ + 1910.7227944783526, + 6297.775757286264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.876608481811, + 6303.726346744316 + ], + [ + 1907.568980474894, + 6291.825167828211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.568980474894, + "min_y": 6291.825167828211, + "max_x": 1913.876608481811, + "max_y": 6303.726346744316, + "center": [ + 1910.7227944783526, + 6297.775757286264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.568980474894, + 6303.726346744316 + ], + [ + 1913.876608481811, + 6291.825167828211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1902.169984057079, + "min_y": 6278.846865953543, + "max_x": 1932.169984057079, + "max_y": 6283.846865953543, + "center": [ + 1917.169984057079, + 6281.346865953543 + ] + }, + "raw_value": "F-10102A/B", + "clean_value": "F-10102A/B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.140070756517, + "min_y": 6315.818801091888, + "max_x": 1950.140070756517, + "max_y": 6324.60724819796, + "center": [ + 1950.140070756517, + 6320.213024644924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.140070756517, + 6324.60724819796 + ], + [ + 1950.140070756517, + 6315.818801091888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6315.818801091888, + "max_x": 1942.140070756517, + "max_y": 6324.60724819796, + "center": [ + 1942.140070756517, + 6320.213024644924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.140070756517, + 6324.60724819796 + ], + [ + 1942.140070756517, + 6315.818801091888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6346.607248197959, + "max_x": 1942.140070756517, + "max_y": 6350.60724819796, + "center": [ + 1942.140070756517, + 6348.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.140070756517, + 6350.60724819796 + ], + [ + 1942.140070756517, + 6346.607248197959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.140070756517, + "min_y": 6346.607248197959, + "max_x": 1950.140070756517, + "max_y": 6350.60724819796, + "center": [ + 1950.140070756517, + 6348.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.140070756517, + 6350.60724819796 + ], + [ + 1950.140070756517, + 6346.607248197959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6325.60724819796, + "max_x": 1942.140070756517, + "max_y": 6345.607248197959, + "center": [ + 1942.140070756517, + 6335.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.140070756517, + 6345.607248197959 + ], + [ + 1942.140070756517, + 6325.60724819796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.140070756517, + "min_y": 6325.60724819796, + "max_x": 1950.140070756517, + "max_y": 6345.607248197959, + "center": [ + 1950.140070756517, + 6335.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.140070756517, + 6345.607248197959 + ], + [ + 1950.140070756517, + 6325.60724819796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6324.60724819796, + "max_x": 1952.140070756517, + "max_y": 6324.60724819796, + "center": [ + 1946.140070756517, + 6324.60724819796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.140070756517, + 6324.60724819796 + ], + [ + 1940.140070756517, + 6324.60724819796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6325.60724819796, + "max_x": 1952.140070756517, + "max_y": 6325.60724819796, + "center": [ + 1946.140070756517, + 6325.60724819796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.140070756517, + 6325.60724819796 + ], + [ + 1940.140070756517, + 6325.60724819796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6346.607248197959, + "max_x": 1952.140070756517, + "max_y": 6346.607248197959, + "center": [ + 1946.140070756517, + 6346.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.140070756517, + 6346.607248197959 + ], + [ + 1940.140070756517, + 6346.607248197959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.140070756517, + "min_y": 6345.607248197959, + "max_x": 1952.140070756517, + "max_y": 6345.607248197959, + "center": [ + 1946.140070756517, + 6345.607248197959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.140070756517, + 6345.607248197959 + ], + [ + 1940.140070756517, + 6345.607248197959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6350.60724819796, + "max_x": 1950.140070756517, + "max_y": 6350.60724819796, + "center": [ + 1946.140070756517, + 6350.60724819796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.140070756517, + 6350.60724819796 + ], + [ + 1950.140070756517, + 6350.60724819796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.140070756517, + "min_y": 6315.818801091888, + "max_x": 1950.140070756517, + "max_y": 6315.818801091888, + "center": [ + 1946.140070756517, + 6315.818801091888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.140070756517, + 6315.818801091888 + ], + [ + 1942.140070756517, + 6315.818801091888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6394.149348558756, + "max_x": 2044.06018449754, + "max_y": 6572.054244885785, + "center": [ + 2044.06018449754, + 6483.101796722271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6572.054244885785 + ], + [ + 2044.06018449754, + 6394.149348558756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2058.06018449754, + "min_y": 6394.149348558756, + "max_x": 2058.06018449754, + "max_y": 6572.054244885785, + "center": [ + 2058.06018449754, + 6483.101796722271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6572.054244885785 + ], + [ + 2058.06018449754, + 6394.149348558756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6572.054244885785, + "max_x": 2058.06018449754, + "max_y": 6575.313055110624, + "center": [ + 2051.06018449754, + 6573.683649998205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6572.054244885785 + ], + [ + 2057.646861202654, + 6573.140590041575 + ], + [ + 2056.009931965846, + 6574.358571694368 + ], + [ + 2053.899628905531, + 6575.041782126039 + ], + [ + 2051.06018449754, + 6575.313055110624 + ], + [ + 2048.22074008955, + 6575.041782126039 + ], + [ + 2046.110437029234, + 6574.358571694368 + ], + [ + 2044.473507792426, + 6573.140590041575 + ], + [ + 2044.06018449754, + 6572.054244885785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6390.890538333918, + "max_x": 2058.06018449754, + "max_y": 6394.149348558756, + "center": [ + 2051.06018449754, + 6392.5199434463375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6394.149348558756 + ], + [ + 2057.646861202654, + 6393.063003402967 + ], + [ + 2056.009931965846, + 6391.845021750174 + ], + [ + 2053.899628905531, + 6391.161811318504 + ], + [ + 2051.06018449754, + 6390.890538333918 + ], + [ + 2048.22074008955, + 6391.161811318504 + ], + [ + 2046.110437029234, + 6391.845021750174 + ], + [ + 2044.473507792426, + 6393.063003402967 + ], + [ + 2044.06018449754, + 6394.149348558756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6559.612134434319, + "max_x": 2058.06018449754, + "max_y": 6559.612134434319, + "center": [ + 2051.06018449754, + 6559.612134434319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6559.612134434319 + ], + [ + 2058.06018449754, + 6559.612134434319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6496.848295454246, + "max_x": 2058.06018449754, + "max_y": 6496.848295454246, + "center": [ + 2051.06018449754, + 6496.848295454246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6496.848295454246 + ], + [ + 2058.06018449754, + 6496.848295454246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6496.848295454246, + "max_x": 2058.06018449754, + "max_y": 6559.612134434319, + "center": [ + 2051.06018449754, + 6528.230214944282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6496.848295454246 + ], + [ + 2058.06018449754, + 6559.612134434319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6496.848295454246, + "max_x": 2058.06018449754, + "max_y": 6559.612134434319, + "center": [ + 2051.06018449754, + 6528.230214944282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6559.612134434319 + ], + [ + 2058.06018449754, + 6496.848295454246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6468.195495322136, + "max_x": 2058.06018449754, + "max_y": 6468.195495322136, + "center": [ + 2051.06018449754, + 6468.195495322136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6468.195495322136 + ], + [ + 2058.06018449754, + 6468.195495322136 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6576.626077165729, + "max_x": 2117.385708320925, + "max_y": 6579.664600590212, + "center": [ + 2117.385708320925, + 6578.14533887797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.385708320925, + 6579.664600590212 + ], + [ + 2117.385708320925, + 6576.626077165729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.385708320925, + "min_y": 6576.626077165729, + "max_x": 2109.385708320925, + "max_y": 6579.664600590212, + "center": [ + 2109.385708320925, + 6578.14533887797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.385708320925, + 6579.664600590212 + ], + [ + 2109.385708320925, + 6576.626077165729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.385708320925, + "min_y": 6601.664600590211, + "max_x": 2109.385708320925, + "max_y": 6605.664600590211, + "center": [ + 2109.385708320925, + 6603.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.385708320925, + 6605.664600590211 + ], + [ + 2109.385708320925, + 6601.664600590211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6601.664600590211, + "max_x": 2117.385708320925, + "max_y": 6605.664600590211, + "center": [ + 2117.385708320925, + 6603.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.385708320925, + 6605.664600590211 + ], + [ + 2117.385708320925, + 6601.664600590211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.385708320925, + "min_y": 6580.66460059021, + "max_x": 2109.385708320925, + "max_y": 6600.664600590211, + "center": [ + 2109.385708320925, + 6590.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.385708320925, + 6600.664600590211 + ], + [ + 2109.385708320925, + 6580.66460059021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6580.66460059021, + "max_x": 2117.385708320925, + "max_y": 6600.664600590211, + "center": [ + 2117.385708320925, + 6590.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.385708320925, + 6600.664600590211 + ], + [ + 2117.385708320925, + 6580.66460059021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6579.664600590212, + "max_x": 2119.385708320926, + "max_y": 6579.664600590212, + "center": [ + 2113.385708320926, + 6579.664600590212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.385708320926, + 6579.664600590212 + ], + [ + 2107.385708320926, + 6579.664600590212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6580.66460059021, + "max_x": 2119.385708320926, + "max_y": 6580.66460059021, + "center": [ + 2113.385708320926, + 6580.66460059021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.385708320926, + 6580.66460059021 + ], + [ + 2107.385708320926, + 6580.66460059021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6601.664600590211, + "max_x": 2119.385708320926, + "max_y": 6601.664600590211, + "center": [ + 2113.385708320926, + 6601.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.385708320926, + 6601.664600590211 + ], + [ + 2107.385708320926, + 6601.664600590211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2107.385708320926, + "min_y": 6600.664600590211, + "max_x": 2119.385708320926, + "max_y": 6600.664600590211, + "center": [ + 2113.385708320926, + 6600.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.385708320926, + 6600.664600590211 + ], + [ + 2107.385708320926, + 6600.664600590211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.385708320925, + "min_y": 6605.664600590211, + "max_x": 2117.385708320925, + "max_y": 6605.664600590211, + "center": [ + 2113.385708320925, + 6605.664600590211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2109.385708320925, + 6605.664600590211 + ], + [ + 2117.385708320925, + 6605.664600590211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.385708320925, + "min_y": 6557.258466939512, + "max_x": 2120.385708320925, + "max_y": 6561.743278622376, + "center": [ + 2120.385708320925, + 6559.500872780944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.385708320925, + 6557.258466939512 + ], + [ + 2120.385708320925, + 6561.743278622376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6557.258466939514, + "max_x": 2106.385708320924, + "max_y": 6573.743278622375, + "center": [ + 2106.385708320924, + 6565.5008727809445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2106.385708320924, + 6557.258466939514 + ], + [ + 2106.385708320924, + 6573.743278622375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6553.756210065592, + "max_x": 2120.385708320925, + "max_y": 6557.258466939514, + "center": [ + 2113.3857083209246, + 6555.5073385025535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2106.385708320924, + 6557.258466939514 + ], + [ + 2106.81315193103, + 6556.07188315785 + ], + [ + 2108.435960852619, + 6554.781997354506 + ], + [ + 2110.55477355287, + 6554.046468211549 + ], + [ + 2113.385708320925, + 6553.756210065592 + ], + [ + 2116.21664308898, + 6554.046468211549 + ], + [ + 2118.335455789231, + 6554.781997354506 + ], + [ + 2119.95826471082, + 6556.07188315785 + ], + [ + 2120.385708320925, + 6557.258466939514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2106.385708320924, + "min_y": 6573.743278622375, + "max_x": 2109.385708320925, + "max_y": 6576.626077165729, + "center": [ + 2107.8857083209246, + 6575.184677894053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2106.385708320924, + 6573.743278622375 + ], + [ + 2106.81315193103, + 6574.929862404039 + ], + [ + 2108.435960852619, + 6576.219748207382 + ], + [ + 2109.385708320925, + 6576.626077165729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2117.385708320925, + "min_y": 6573.743278622375, + "max_x": 2120.385708320925, + "max_y": 6576.626077165729, + "center": [ + 2118.885708320925, + 6575.184677894053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.385708320925, + 6576.626077165729 + ], + [ + 2118.335455789231, + 6576.219748207382 + ], + [ + 2119.95826471082, + 6574.929862404039 + ], + [ + 2120.385708320925, + 6573.743278622375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.385708320925, + "min_y": 6561.743278622376, + "max_x": 2120.385708320925, + "max_y": 6573.743278622375, + "center": [ + 2120.385708320925, + 6567.743278622376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.385708320925, + 6561.743278622376 + ], + [ + 2120.385708320925, + 6573.743278622375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2085.875467848341, + "min_y": 6338.550994965809, + "max_x": 2093.299469799185, + "max_y": 6338.550994965809, + "center": [ + 2089.5874688237627, + 6338.550994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.875467848341, + 6338.550994965809 + ], + [ + 2093.299469799185, + 6338.550994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5262FF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2091.728740950176, + "min_y": 6334.350994965809, + "max_x": 2093.299469799185, + "max_y": 6334.350994965809, + "center": [ + 2092.51410537468, + 6334.350994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2091.728740950176, + 6334.350994965809 + ], + [ + 2093.299469799185, + 6334.350994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526300", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2093.299469799185, + "min_y": 6334.350994965809, + "max_x": 2093.299469799185, + "max_y": 6338.550994965809, + "center": [ + 2093.299469799185, + 6336.4509949658095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2093.299469799185, + 6334.350994965809 + ], + [ + 2093.299469799185, + 6338.550994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526301", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2079.6968004668347, + "min_y": 6326.193660202795, + "max_x": 2092.0541352298474, + "max_y": 6338.550994965809, + "center": [ + 2085.875467848341, + 6332.372327584302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.875467848341, + 6332.372327584302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526302", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2080.975467848342, + "min_y": 6324.499989322731, + "max_x": 2090.775467848342, + "max_y": 6324.499989322731, + "center": [ + 2085.875467848342, + 6324.499989322731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2090.775467848342, + 6324.499989322731 + ], + [ + 2080.975467848342, + 6324.499989322731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526303", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2080.975467848342, + "min_y": 6324.499989322731, + "max_x": 2082.375467848342, + "max_y": 6327.280576352036, + "center": [ + 2081.675467848342, + 6325.890282837384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2080.975467848342, + 6324.499989322731 + ], + [ + 2082.375467848342, + 6327.280576352036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526304", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2089.375467848341, + "min_y": 6324.499989322731, + "max_x": 2090.775467848342, + "max_y": 6327.280576352036, + "center": [ + 2090.0754678483418, + 6325.890282837384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2090.775467848342, + 6324.499989322731 + ], + [ + 2089.375467848341, + 6327.280576352036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526305", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2080.174594183876, + "min_y": 6319.049638908956, + "max_x": 2101.174594183876, + "max_y": 6324.049638908956, + "center": [ + 2090.674594183876, + 6321.549638908956 + ] + }, + "raw_value": "P-10116", + "clean_value": "P-10116", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526307", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6575.313055110624, + "max_x": 2051.06018449754, + "max_y": 6625.721314362202, + "center": [ + 2051.06018449754, + 6600.517184736413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.06018449754, + 6575.313055110624 + ], + [ + 2051.06018449754, + 6625.721314362202 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526308", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6625.721314362202, + "max_x": 2078.914891146353, + "max_y": 6625.721314362202, + "center": [ + 2064.9875378219467, + 6625.721314362202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.06018449754, + 6625.721314362202 + ], + [ + 2078.914891146353, + 6625.721314362202 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526309", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2113.385708320925, + "min_y": 6605.664600590211, + "max_x": 2113.385708320925, + "max_y": 6625.721314362202, + "center": [ + 2113.385708320925, + 6615.692957476207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2113.385708320925, + 6605.664600590211 + ], + [ + 2113.385708320925, + 6625.721314362202 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52630A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2138.195610870392, + "min_y": 6531.16777595467, + "max_x": 2145.619612821235, + "max_y": 6531.16777595467, + "center": [ + 2141.9076118458133, + 6531.16777595467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.195610870392, + 6531.16777595467 + ], + [ + 2145.619612821235, + 6531.16777595467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52630B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2144.048883972226, + "min_y": 6526.96777595467, + "max_x": 2145.619612821235, + "max_y": 6526.96777595467, + "center": [ + 2144.834248396731, + 6526.96777595467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.048883972226, + 6526.96777595467 + ], + [ + 2145.619612821235, + 6526.96777595467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52630C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2145.619612821235, + "min_y": 6526.96777595467, + "max_x": 2145.619612821235, + "max_y": 6531.16777595467, + "center": [ + 2145.619612821235, + 6529.067775954671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.619612821235, + 6526.96777595467 + ], + [ + 2145.619612821235, + 6531.16777595467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52630D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2132.0169434888858, + "min_y": 6518.8104411916565, + "max_x": 2144.3742782518984, + "max_y": 6531.16777595467, + "center": [ + 2138.195610870392, + 6524.989108573163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.195610870392, + 6524.989108573163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52630E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2133.295610870391, + "min_y": 6517.116770311591, + "max_x": 2143.095610870392, + "max_y": 6517.116770311591, + "center": [ + 2138.1956108703916, + 6517.116770311591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.095610870392, + 6517.116770311591 + ], + [ + 2133.295610870391, + 6517.116770311591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52630F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.295610870391, + "min_y": 6517.116770311591, + "max_x": 2134.695610870392, + "max_y": 6519.897357340896, + "center": [ + 2133.995610870392, + 6518.507063826243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.295610870391, + 6517.116770311591 + ], + [ + 2134.695610870392, + 6519.897357340896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526310", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.695610870392, + "min_y": 6517.116770311591, + "max_x": 2143.095610870392, + "max_y": 6519.897357340896, + "center": [ + 2142.3956108703924, + 6518.507063826243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.095610870392, + 6517.116770311591 + ], + [ + 2141.695610870392, + 6519.897357340896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526311", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2132.494737205926, + "min_y": 6511.666419897817, + "max_x": 2153.494737205926, + "max_y": 6516.666419897817, + "center": [ + 2142.994737205926, + 6514.166419897817 + ] + }, + "raw_value": "P-10114", + "clean_value": "P-10114", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2113.385708320925, + "min_y": 6524.989108573163, + "max_x": 2113.385708320925, + "max_y": 6553.756210065592, + "center": [ + 2113.385708320925, + 6539.372659319378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2113.385708320925, + 6553.756210065592 + ], + [ + 2113.385708320925, + 6524.989108573163 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526314", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2113.385708320925, + "min_y": 6524.989108573163, + "max_x": 2138.195610870392, + "max_y": 6524.989108573163, + "center": [ + 2125.7906595956583, + 6524.989108573163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.195610870392, + 6524.989108573163 + ], + [ + 2113.385708320925, + 6524.989108573163 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526315", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.619612821235, + "min_y": 6529.067775954669, + "max_x": 2160.282560607711, + "max_y": 6529.067775954669, + "center": [ + 2152.9510867144727, + 6529.067775954669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.619612821235, + 6529.067775954669 + ], + [ + 2160.282560607711, + 6529.067775954669 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526316", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2160.282560607711, + "min_y": 6498.55423754788, + "max_x": 2160.282560607711, + "max_y": 6529.067775954669, + "center": [ + 2160.282560607711, + 6513.811006751274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.282560607711, + 6529.067775954669 + ], + [ + 2160.282560607711, + 6498.55423754788 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526317", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2058.06018449754, + "min_y": 6565.717543341289, + "max_x": 2075.625733339276, + "max_y": 6565.717543341289, + "center": [ + 2066.842958918408, + 6565.717543341289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6565.717543341289 + ], + [ + 2075.625733339276, + 6565.717543341289 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.625733339276, + "min_y": 6498.55423754788, + "max_x": 2075.625733339276, + "max_y": 6565.717543341289, + "center": [ + 2075.625733339276, + 6532.135890444584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.625733339276, + 6565.717543341289 + ], + [ + 2075.625733339276, + 6498.55423754788 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526319", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2083.336880980755, + "min_y": 6439.109921068774, + "max_x": 2083.336880980755, + "max_y": 6447.898368174846, + "center": [ + 2083.336880980755, + 6443.50414462181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.336880980755, + 6447.898368174846 + ], + [ + 2083.336880980755, + 6439.109921068774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6439.109921068774, + "max_x": 2075.336880980755, + "max_y": 6447.898368174846, + "center": [ + 2075.336880980755, + 6443.50414462181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.336880980755, + 6447.898368174846 + ], + [ + 2075.336880980755, + 6439.109921068774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6469.898368174844, + "max_x": 2075.336880980755, + "max_y": 6473.898368174845, + "center": [ + 2075.336880980755, + 6471.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.336880980755, + 6473.898368174845 + ], + [ + 2075.336880980755, + 6469.898368174844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2083.336880980755, + "min_y": 6469.898368174844, + "max_x": 2083.336880980755, + "max_y": 6473.898368174845, + "center": [ + 2083.336880980755, + 6471.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.336880980755, + 6473.898368174845 + ], + [ + 2083.336880980755, + 6469.898368174844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6448.898368174846, + "max_x": 2075.336880980755, + "max_y": 6468.898368174845, + "center": [ + 2075.336880980755, + 6458.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.336880980755, + 6468.898368174845 + ], + [ + 2075.336880980755, + 6448.898368174846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2083.336880980755, + "min_y": 6448.898368174846, + "max_x": 2083.336880980755, + "max_y": 6468.898368174845, + "center": [ + 2083.336880980755, + 6458.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.336880980755, + 6468.898368174845 + ], + [ + 2083.336880980755, + 6448.898368174846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52631F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6447.898368174846, + "max_x": 2085.336880980755, + "max_y": 6447.898368174846, + "center": [ + 2079.336880980755, + 6447.898368174846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.336880980755, + 6447.898368174846 + ], + [ + 2073.336880980755, + 6447.898368174846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526320", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6448.898368174846, + "max_x": 2085.336880980755, + "max_y": 6448.898368174846, + "center": [ + 2079.336880980755, + 6448.898368174846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.336880980755, + 6448.898368174846 + ], + [ + 2073.336880980755, + 6448.898368174846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6469.898368174844, + "max_x": 2085.336880980755, + "max_y": 6469.898368174844, + "center": [ + 2079.336880980755, + 6469.898368174844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.336880980755, + 6469.898368174844 + ], + [ + 2073.336880980755, + 6469.898368174844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526322", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2073.336880980755, + "min_y": 6468.898368174845, + "max_x": 2085.336880980755, + "max_y": 6468.898368174845, + "center": [ + 2079.336880980755, + 6468.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.336880980755, + 6468.898368174845 + ], + [ + 2073.336880980755, + 6468.898368174845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6473.898368174845, + "max_x": 2083.336880980755, + "max_y": 6473.898368174845, + "center": [ + 2079.336880980755, + 6473.898368174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.336880980755, + 6473.898368174845 + ], + [ + 2083.336880980755, + 6473.898368174845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.336880980755, + "min_y": 6439.109921068774, + "max_x": 2083.336880980755, + "max_y": 6439.109921068774, + "center": [ + 2079.336880980755, + 6439.109921068774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.336880980755, + 6439.109921068774 + ], + [ + 2075.336880980755, + 6439.109921068774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526325", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2058.06018449754, + "min_y": 6483.10179672227, + "max_x": 2079.336880980755, + "max_y": 6483.10179672227, + "center": [ + 2068.6985327391476, + 6483.10179672227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6483.10179672227 + ], + [ + 2079.336880980755, + 6483.10179672227 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526326", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.336880980755, + "min_y": 6473.898368174845, + "max_x": 2079.336880980755, + "max_y": 6483.10179672227, + "center": [ + 2079.336880980755, + 6478.500082448558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.336880980755, + 6473.898368174845 + ], + [ + 2079.336880980755, + 6483.10179672227 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526327", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2111.969242933897, + "min_y": 6437.24480125325, + "max_x": 2119.393244884741, + "max_y": 6437.24480125325, + "center": [ + 2115.681243909319, + 6437.24480125325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2111.969242933897, + 6437.24480125325 + ], + [ + 2119.393244884741, + 6437.24480125325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526328", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2117.822516035731, + "min_y": 6433.044801253251, + "max_x": 2119.393244884741, + "max_y": 6433.044801253251, + "center": [ + 2118.6078804602357, + 6433.044801253251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.822516035731, + 6433.044801253251 + ], + [ + 2119.393244884741, + 6433.044801253251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526329", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2119.393244884741, + "min_y": 6433.044801253251, + "max_x": 2119.393244884741, + "max_y": 6437.24480125325, + "center": [ + 2119.393244884741, + 6435.144801253251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.393244884741, + 6433.044801253251 + ], + [ + 2119.393244884741, + 6437.24480125325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52632A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2105.7905755523907, + "min_y": 6424.887466490237, + "max_x": 2118.1479103154034, + "max_y": 6437.24480125325, + "center": [ + 2111.969242933897, + 6431.066133871744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2111.969242933897, + 6431.066133871744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52632B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2107.069242933897, + "min_y": 6423.193795610171, + "max_x": 2116.869242933898, + "max_y": 6423.193795610171, + "center": [ + 2111.9692429338975, + 6423.193795610171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.869242933898, + 6423.193795610171 + ], + [ + 2107.069242933897, + 6423.193795610171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52632C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2107.069242933897, + "min_y": 6423.193795610171, + "max_x": 2108.469242933897, + "max_y": 6425.974382639477, + "center": [ + 2107.7692429338967, + 6424.5840891248245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.069242933897, + 6423.193795610171 + ], + [ + 2108.469242933897, + 6425.974382639477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52632D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2115.469242933897, + "min_y": 6423.193795610171, + "max_x": 2116.869242933898, + "max_y": 6425.974382639477, + "center": [ + 2116.1692429338973, + 6424.5840891248245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.869242933898, + 6423.193795610171 + ], + [ + 2115.469242933897, + 6425.974382639477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52632E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2106.268369269432, + "min_y": 6417.743445196397, + "max_x": 2127.268369269432, + "max_y": 6422.743445196397, + "center": [ + 2116.768369269432, + 6420.243445196397 + ] + }, + "raw_value": "P-10118", + "clean_value": "P-10118", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.336880980755, + "min_y": 6431.066133871744, + "max_x": 2079.336880980755, + "max_y": 6439.109921068774, + "center": [ + 2079.336880980755, + 6435.0880274702595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.336880980755, + 6439.109921068774 + ], + [ + 2079.336880980755, + 6431.066133871744 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.336880980755, + "min_y": 6431.066133871744, + "max_x": 2111.969242933897, + "max_y": 6431.066133871744, + "center": [ + 2095.653061957326, + 6431.066133871744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2111.969242933897, + 6431.066133871744 + ], + [ + 2079.336880980755, + 6431.066133871744 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526332", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2039.86018449754, + "min_y": 6406.623129675044, + "max_x": 2044.06018449754, + "max_y": 6406.623129675044, + "center": [ + 2041.96018449754, + 6406.623129675044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.86018449754, + 6406.623129675044 + ], + [ + 2044.06018449754, + 6406.623129675044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.052579456116, + "min_y": 6406.623129675044, + "max_x": 2039.86018449754, + "max_y": 6406.623129675044, + "center": [ + 2028.4563819768282, + 6406.623129675044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.052579456116, + 6406.623129675044 + ], + [ + 2039.86018449754, + 6406.623129675044 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6356.478456534761, + "max_x": 2051.06018449754, + "max_y": 6390.890538333918, + "center": [ + 2051.06018449754, + 6373.684497434339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.06018449754, + 6390.890538333918 + ], + [ + 2051.06018449754, + 6356.478456534761 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2021.052579456116, + "min_y": 6366.754342739377, + "max_x": 2021.052579456116, + "max_y": 6375.542789845449, + "center": [ + 2021.052579456116, + 6371.148566292413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.052579456116, + 6375.542789845449 + ], + [ + 2021.052579456116, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526337", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6366.754342739377, + "max_x": 2013.052579456116, + "max_y": 6375.542789845449, + "center": [ + 2013.052579456116, + 6371.148566292413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.052579456116, + 6375.542789845449 + ], + [ + 2013.052579456116, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6397.542789845449, + "max_x": 2013.052579456116, + "max_y": 6401.542789845449, + "center": [ + 2013.052579456116, + 6399.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.052579456116, + 6401.542789845449 + ], + [ + 2013.052579456116, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526339", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2021.052579456116, + "min_y": 6397.542789845449, + "max_x": 2021.052579456116, + "max_y": 6401.542789845449, + "center": [ + 2021.052579456116, + 6399.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.052579456116, + 6401.542789845449 + ], + [ + 2021.052579456116, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6376.542789845449, + "max_x": 2013.052579456116, + "max_y": 6396.542789845449, + "center": [ + 2013.052579456116, + 6386.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.052579456116, + 6396.542789845449 + ], + [ + 2013.052579456116, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2021.052579456116, + "min_y": 6376.542789845449, + "max_x": 2021.052579456116, + "max_y": 6396.542789845449, + "center": [ + 2021.052579456116, + 6386.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.052579456116, + 6396.542789845449 + ], + [ + 2021.052579456116, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6375.542789845449, + "max_x": 2023.052579456115, + "max_y": 6375.542789845449, + "center": [ + 2017.0525794561154, + 6375.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.052579456115, + 6375.542789845449 + ], + [ + 2011.052579456116, + 6375.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6376.542789845449, + "max_x": 2023.052579456115, + "max_y": 6376.542789845449, + "center": [ + 2017.0525794561154, + 6376.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.052579456115, + 6376.542789845449 + ], + [ + 2011.052579456116, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6397.542789845449, + "max_x": 2023.052579456116, + "max_y": 6397.542789845449, + "center": [ + 2017.052579456116, + 6397.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.052579456116, + 6397.542789845449 + ], + [ + 2011.052579456116, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52633F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.052579456116, + "min_y": 6396.542789845449, + "max_x": 2023.052579456116, + "max_y": 6396.542789845449, + "center": [ + 2017.052579456116, + 6396.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.052579456116, + 6396.542789845449 + ], + [ + 2011.052579456116, + 6396.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6401.542789845449, + "max_x": 2021.052579456116, + "max_y": 6401.542789845449, + "center": [ + 2017.052579456116, + 6401.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.052579456116, + 6401.542789845449 + ], + [ + 2021.052579456116, + 6401.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2013.052579456116, + "min_y": 6366.754342739377, + "max_x": 2021.052579456116, + "max_y": 6366.754342739377, + "center": [ + 2017.052579456116, + 6366.754342739377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.052579456116, + 6366.754342739377 + ], + [ + 2013.052579456116, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526342", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.052579456116, + "min_y": 6401.542789845449, + "max_x": 2017.052579456116, + "max_y": 6406.623129675044, + "center": [ + 2017.052579456116, + 6404.082959760246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.052579456116, + 6401.542789845449 + ], + [ + 2017.052579456116, + 6406.623129675044 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526343", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.052579456115, + "min_y": 6357.676965768449, + "max_x": 2017.052579456115, + "max_y": 6366.754342739377, + "center": [ + 2017.052579456115, + 6362.215654253912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.052579456115, + 6366.754342739377 + ], + [ + 2017.052579456115, + 6357.676965768449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526344", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.052579456115, + "min_y": 6357.676965768449, + "max_x": 2051.06018449754, + "max_y": 6357.676965768449, + "center": [ + 2034.0563819768274, + 6357.676965768449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.052579456115, + 6357.676965768449 + ], + [ + 2051.06018449754, + 6357.676965768449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526345", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6332.372327584302, + "max_x": 2051.06018449754, + "max_y": 6356.478456534761, + "center": [ + 2051.06018449754, + 6344.425392059531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.06018449754, + 6356.478456534761 + ], + [ + 2051.06018449754, + 6332.372327584302 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526346", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6332.372327584302, + "max_x": 2085.875467848341, + "max_y": 6332.372327584302, + "center": [ + 2068.4678261729405, + 6332.372327584302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.875467848341, + 6332.372327584302 + ], + [ + 2051.06018449754, + 6332.372327584302 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.839669230072, + "min_y": 6333.250994965808, + "max_x": 2139.039669230072, + "max_y": 6333.250994965808, + "center": [ + 2137.439669230072, + 6333.250994965808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.039669230072, + 6333.250994965808 + ], + [ + 2135.839669230072, + 6333.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.839669230072, + "min_y": 6339.650994965809, + "max_x": 2139.039669230072, + "max_y": 6339.650994965809, + "center": [ + 2137.439669230072, + 6339.650994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.039669230072, + 6339.650994965809 + ], + [ + 2135.839669230072, + 6339.650994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.639669230072, + "min_y": 6339.650994965809, + "max_x": 2159.839669230072, + "max_y": 6339.650994965809, + "center": [ + 2158.2396692300717, + 6339.650994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.839669230072, + 6339.650994965809 + ], + [ + 2156.639669230072, + 6339.650994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.639669230072, + "min_y": 6333.250994965808, + "max_x": 2159.839669230072, + "max_y": 6333.250994965808, + "center": [ + 2158.2396692300717, + 6333.250994965808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.839669230072, + 6333.250994965808 + ], + [ + 2156.639669230072, + 6333.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.839669230072, + "min_y": 6339.650994965809, + "max_x": 2155.839669230072, + "max_y": 6339.650994965809, + "center": [ + 2147.839669230072, + 6339.650994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.839669230072, + 6339.650994965809 + ], + [ + 2139.839669230072, + 6339.650994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.839669230072, + "min_y": 6333.250994965808, + "max_x": 2155.839669230072, + "max_y": 6333.250994965808, + "center": [ + 2147.839669230072, + 6333.250994965808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.839669230072, + 6333.250994965808 + ], + [ + 2139.839669230072, + 6333.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.039669230072, + "min_y": 6331.650994965809, + "max_x": 2139.039669230072, + "max_y": 6341.250994965808, + "center": [ + 2139.039669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.039669230072, + 6331.650994965809 + ], + [ + 2139.039669230072, + 6341.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.839669230072, + "min_y": 6331.650994965809, + "max_x": 2139.839669230072, + "max_y": 6341.250994965808, + "center": [ + 2139.839669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.839669230072, + 6331.650994965809 + ], + [ + 2139.839669230072, + 6341.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52634F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.639669230072, + "min_y": 6331.650994965809, + "max_x": 2156.639669230072, + "max_y": 6341.250994965808, + "center": [ + 2156.639669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.639669230072, + 6331.650994965809 + ], + [ + 2156.639669230072, + 6341.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526350", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.839669230072, + "min_y": 6331.650994965809, + "max_x": 2155.839669230072, + "max_y": 6341.250994965808, + "center": [ + 2155.839669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.839669230072, + 6331.650994965809 + ], + [ + 2155.839669230072, + 6341.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526351", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.839669230072, + "min_y": 6333.250994965808, + "max_x": 2159.839669230072, + "max_y": 6339.650994965809, + "center": [ + 2159.839669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.839669230072, + 6339.650994965809 + ], + [ + 2159.839669230072, + 6333.250994965808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526352", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.839669230072, + "min_y": 6333.250994965808, + "max_x": 2135.839669230072, + "max_y": 6339.650994965809, + "center": [ + 2135.839669230072, + 6336.450994965809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.839669230072, + 6333.250994965808 + ], + [ + 2135.839669230072, + 6339.650994965809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526353", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2141.702409241241, + "min_y": 6323.245195214735, + "max_x": 2162.702409241241, + "max_y": 6328.245195214735, + "center": [ + 2152.202409241241, + 6325.745195214735 + ] + }, + "raw_value": "E-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526354", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2093.299469799185, + "min_y": 6336.450994965808, + "max_x": 2135.839669230072, + "max_y": 6336.450994965808, + "center": [ + 2114.5695695146287, + 6336.450994965808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2093.299469799185, + 6336.450994965808 + ], + [ + 2135.839669230072, + 6336.450994965808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526355", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.734828663958, + "min_y": 6300.861432918742, + "max_x": 1905.748514765648, + "max_y": 6300.861432918742, + "center": [ + 1889.741671714803, + 6300.861432918742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.734828663958, + 6300.861432918742 + ], + [ + 1905.748514765648, + 6300.861432918742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526356", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1915.697074191058, + "min_y": 6300.861432918742, + "max_x": 1946.140070756517, + "max_y": 6300.861432918742, + "center": [ + 1930.9185724737874, + 6300.861432918742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1915.697074191058, + 6300.861432918742 + ], + [ + 1946.140070756517, + 6300.861432918742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526357", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.140070756517, + "min_y": 6300.861432918742, + "max_x": 1946.140070756517, + "max_y": 6315.818801091888, + "center": [ + 1946.140070756517, + 6308.340117005315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.140070756517, + 6300.861432918742 + ], + [ + 1946.140070756517, + 6315.818801091888 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526358", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.140070756517, + "min_y": 6350.60724819796, + "max_x": 1946.140070756517, + "max_y": 6416.136768701758, + "center": [ + 1946.140070756517, + 6383.372008449859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.140070756517, + 6350.60724819796 + ], + [ + 1946.140070756517, + 6416.136768701758 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526359", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.140070756517, + "min_y": 6416.136768701758, + "max_x": 1981.785735347995, + "max_y": 6416.136768701758, + "center": [ + 1963.962903052256, + 6416.136768701758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.140070756517, + 6416.136768701758 + ], + [ + 1981.785735347995, + 6416.136768701758 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52635A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2039.86018449754, + "min_y": 6416.136768701758, + "max_x": 2044.06018449754, + "max_y": 6416.136768701758, + "center": [ + 2041.96018449754, + 6416.136768701758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.86018449754, + 6416.136768701758 + ], + [ + 2044.06018449754, + 6416.136768701758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52635C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1720.186217751058, + "min_y": 6265.732588908871, + "max_x": 1744.186217751058, + "max_y": 6270.732588908871, + "center": [ + 1732.186217751058, + 6268.232588908871 + ] + }, + "raw_value": "DP-10101", + "clean_value": "DP-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52635D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1957.926755930968, + "min_y": 6331.046281830812, + "max_x": 1978.926755930968, + "max_y": 6336.046281830812, + "center": [ + 1968.426755930968, + 6333.546281830812 + ] + }, + "raw_value": "E-10103", + "clean_value": "E-10103", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52635E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2023.791017195323, + "min_y": 6368.433236971266, + "max_x": 2047.791017195323, + "max_y": 6373.433236971266, + "center": [ + 2035.791017195323, + 6370.933236971266 + ] + }, + "raw_value": "E-10115A", + "clean_value": "E-10115A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52635F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2017.439089477755, + "min_y": 6480.447994518633, + "max_x": 2038.439089477755, + "max_y": 6485.447994518633, + "center": [ + 2027.939089477755, + 6482.947994518633 + ] + }, + "raw_value": "C-10111", + "clean_value": "C-10111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526360", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2090.464784270925, + "min_y": 6455.910784147883, + "max_x": 2111.464784270925, + "max_y": 6460.910784147883, + "center": [ + 2100.964784270925, + 6458.410784147883 + ] + }, + "raw_value": "E-10117", + "clean_value": "E-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526361", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2127.872502152303, + "min_y": 6587.388198955999, + "max_x": 2148.872502152303, + "max_y": 6592.388198955999, + "center": [ + 2138.372502152303, + 6589.888198955999 + ] + }, + "raw_value": "E-10112", + "clean_value": "E-10112", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526362", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2127.872502152303, + "min_y": 6567.703834091855, + "max_x": 2148.872502152303, + "max_y": 6572.703834091855, + "center": [ + 2138.372502152303, + 6570.203834091855 + ] + }, + "raw_value": "D-10113", + "clean_value": "D-10113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.839669230072, + "min_y": 6336.450994965808, + "max_x": 2179.839669230072, + "max_y": 6336.450994965808, + "center": [ + 2169.839669230072, + 6336.450994965808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.839669230072, + 6336.450994965808 + ], + [ + 2179.839669230072, + 6336.450994965808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526364", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2160.282560607711, + "min_y": 6529.067775954669, + "max_x": 2165.009272427754, + "max_y": 6529.067775954669, + "center": [ + 2162.645916517732, + 6529.067775954669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.282560607711, + 6529.067775954669 + ], + [ + 2165.009272427754, + 6529.067775954669 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526365", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.839669230072, + "min_y": 6336.450994965808, + "max_x": 2179.839669230072, + "max_y": 6382.038919453241, + "center": [ + 2179.839669230072, + 6359.244957209525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.839669230072, + 6336.450994965808 + ], + [ + 2179.839669230072, + 6382.038919453241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526366", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.839669230072, + "min_y": 6440.137122984721, + "max_x": 2179.839669230072, + "max_y": 6529.067775954669, + "center": [ + 2179.839669230072, + 6484.602449469695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.839669230072, + 6440.137122984721 + ], + [ + 2179.839669230072, + 6529.067775954669 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526367", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2158.268771992426, + "min_y": 6435.14480125325, + "max_x": 2197.14429910011, + "max_y": 6435.144801253253, + "center": [ + 2177.7065355462682, + 6435.144801253251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6435.14480125325 + ], + [ + 2158.268771992426, + 6435.144801253253 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526368", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6435.14480125325, + "max_x": 2293.438969638737, + "max_y": 6435.14480125325, + "center": [ + 2245.2916343694233, + 6435.14480125325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6435.14480125325 + ], + [ + 2293.438969638737, + 6435.14480125325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526369", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2427.578443758919, + "min_y": 6425.586391482413, + "max_x": 2436.578443758919, + "max_y": 6430.586391482413, + "center": [ + 2432.078443758919, + 6428.086391482413 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6423.806484537981, + "max_x": 2441.566172911609, + "max_y": 6423.806484537981, + "center": [ + 2431.6345989930755, + 6423.806484537981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6423.806484537981 + ], + [ + 2441.566172911609, + 6423.806484537981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6431.48311796852, + "max_x": 2441.566172911609, + "max_y": 6431.48311796852, + "center": [ + 2431.6345989930755, + 6431.48311796852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6431.48311796852 + ], + [ + 2441.566172911609, + 6431.48311796852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6423.806484537981, + "max_x": 2421.703025074542, + "max_y": 6431.48311796852, + "center": [ + 2421.703025074542, + 6427.644801253251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6431.48311796852 + ], + [ + 2421.703025074542, + 6423.806484537981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6423.806484537981, + "max_x": 2444.719546555842, + "max_y": 6427.64480125325, + "center": [ + 2443.1428597337253, + 6425.725642895615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6427.64480125325 + ], + [ + 2441.566172911609, + 6423.806484537981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6427.64480125325, + "max_x": 2444.719546555842, + "max_y": 6431.48311796852, + "center": [ + 2443.1428597337253, + 6429.563959610885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6427.64480125325 + ], + [ + 2441.566172911609, + 6431.48311796852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52636F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2243.803300824055, + "min_y": 6580.130600983662, + "max_x": 2243.80331171107, + "max_y": 6583.23675784486, + "center": [ + 2243.803306267562, + 6581.683679414261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.80331171107, + 6580.130600983662 + ], + [ + 2243.803300824055, + 6583.23675784486 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526370", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2242.540027341119, + "min_y": 6583.23675784486, + "max_x": 2245.066454220095, + "max_y": 6583.23675784486, + "center": [ + 2243.8032407806068, + 6583.23675784486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.066454220095, + 6583.23675784486 + ], + [ + 2242.540027341119, + 6583.23675784486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526371", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2232.011412713188, + "min_y": 6574.396154648209, + "max_x": 2232.011412713188, + "max_y": 6576.922581527185, + "center": [ + 2232.011412713188, + 6575.659368087697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.011412713188, + 6574.396154648209 + ], + [ + 2232.011412713188, + 6576.922581527185 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526372", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2235.2728699029594, + "min_y": 6570.222348344868, + "max_x": 2246.146909388619, + "max_y": 6581.096387830527, + "center": [ + 2240.709889645789, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.709889645789, + 6575.659368087698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526373", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2236.019869366255, + "min_y": 6575.659368087698, + "max_x": 2245.399909925303, + "max_y": 6575.659368087698, + "center": [ + 2240.709889645779, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.399909925303, + 6575.659368087698 + ], + [ + 2236.019869366255, + 6575.659368087698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526374", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.364879506022, + "min_y": 6571.597691381367, + "max_x": 2243.054899785549, + "max_y": 6579.721044794034, + "center": [ + 2240.7098896457856, + 6575.659368087701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.364879506022, + 6579.721044794034 + ], + [ + 2243.054899785549, + 6571.597691381367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526375", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.364879506022, + "min_y": 6571.597691381374, + "max_x": 2243.054899785549, + "max_y": 6579.721044794034, + "center": [ + 2240.7098896457856, + 6575.659368087704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.364879506022, + 6571.597691381374 + ], + [ + 2243.054899785549, + 6579.721044794034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526376", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2234.809737964659, + "min_y": 6567.811771900699, + "max_x": 2236.954469951812, + "max_y": 6571.727700934184, + "center": [ + 2235.8821039582353, + 6569.769736417442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.954469951812, + 6571.727700934184 + ], + [ + 2234.809737964659, + 6567.811771900699 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526377", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2234.809737964659, + "min_y": 6567.811771900699, + "max_x": 2246.609943254407, + "max_y": 6567.811771900699, + "center": [ + 2240.709840609533, + 6567.811771900699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2234.809737964659, + 6567.811771900699 + ], + [ + 2246.609943254407, + 6567.811771900699 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526378", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2244.465211267254, + "min_y": 6567.811771900699, + "max_x": 2246.609943254407, + "max_y": 6571.727700934184, + "center": [ + 2245.5375772608304, + 6569.769736417442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2244.465211267254, + 6571.727700934184 + ], + [ + 2246.609943254407, + 6567.811771900699 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526379", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2232.011412713188, + "min_y": 6574.396154648209, + "max_x": 2232.011412713188, + "max_y": 6576.922581527185, + "center": [ + 2232.011412713188, + 6575.659368087697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.011412713188, + 6576.922581527185 + ], + [ + 2232.011412713188, + 6574.396154648209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52637A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2231.288573276568, + "min_y": 6574.399892653321, + "max_x": 2231.288573276568, + "max_y": 6576.918843522074, + "center": [ + 2231.288573276568, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2231.288573276568, + 6576.918843522074 + ], + [ + 2231.288573276568, + 6574.399892653321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52637B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2242.540088648265, + "min_y": 6583.23675784486, + "max_x": 2245.066515527241, + "max_y": 6583.23675784486, + "center": [ + 2243.803302087753, + 6583.23675784486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2242.540088648265, + 6583.23675784486 + ], + [ + 2245.066515527241, + 6583.23675784486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52637C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2242.540088648265, + "min_y": 6583.23675784486, + "max_x": 2245.066515527241, + "max_y": 6583.23675784486, + "center": [ + 2243.803302087753, + 6583.23675784486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.066515527241, + 6583.23675784486 + ], + [ + 2242.540088648265, + 6583.23675784486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52637D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2242.543826653377, + "min_y": 6583.959597281479, + "max_x": 2245.06277752213, + "max_y": 6583.959597281479, + "center": [ + 2243.8033020877538, + 6583.959597281479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.06277752213, + 6583.959597281479 + ], + [ + 2242.543826653377, + 6583.959597281479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52637E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.011412713188, + "min_y": 6575.659368087698, + "max_x": 2235.272869902959, + "max_y": 6575.659368087698, + "center": [ + 2233.6421413080734, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.011412713188, + 6575.659368087698 + ], + [ + 2235.272869902959, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52637F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2232.85818313889, + "min_y": 6560.803324144046, + "max_x": 2256.85818313889, + "max_y": 6565.803324144046, + "center": [ + 2244.85818313889, + 6563.303324144046 + ] + }, + "raw_value": "VP-10117", + "clean_value": "VP-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526380", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.214074775732, + "min_y": 6575.659368087698, + "max_x": 2154.703901336771, + "max_y": 6575.659368087698, + "center": [ + 2136.9589880562517, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.214074775732, + 6575.659368087698 + ], + [ + 2154.703901336771, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526381", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2243.803302087753, + "min_y": 6583.959597281479, + "max_x": 2243.803302087753, + "max_y": 6596.425859904492, + "center": [ + 2243.803302087753, + 6590.192728592985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.803302087753, + 6583.959597281479 + ], + [ + 2243.803302087753, + 6596.425859904492 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526382", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2243.803302087753, + "min_y": 6596.425859904492, + "max_x": 2287.478578719076, + "max_y": 6596.425859904492, + "center": [ + 2265.6409404034143, + 6596.425859904492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.803302087753, + 6596.425859904492 + ], + [ + 2287.478578719076, + 6596.425859904492 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526383", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2291.932835254496, + "min_y": 6593.904326485048, + "max_x": 2315.932835254496, + "max_y": 6598.904326485048, + "center": [ + 2303.932835254496, + 6596.404326485048 + ] + }, + "raw_value": "SCRUBBER", + "clean_value": "SCRUBBER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526384", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2287.478578719076, + "min_y": 6592.587543189222, + "max_x": 2321.216564609283, + "max_y": 6592.587543189222, + "center": [ + 2304.3475716641797, + 6592.587543189222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.478578719076, + 6592.587543189222 + ], + [ + 2321.216564609283, + 6592.587543189222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526385", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2287.478578719076, + "min_y": 6600.264176619763, + "max_x": 2321.216564609283, + "max_y": 6600.264176619763, + "center": [ + 2304.3475716641797, + 6600.264176619763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.478578719076, + 6600.264176619763 + ], + [ + 2321.216564609283, + 6600.264176619763 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526386", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2287.478578719075, + "min_y": 6592.587543189222, + "max_x": 2287.478578719076, + "max_y": 6600.264176619763, + "center": [ + 2287.4785787190754, + 6596.425859904492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.478578719075, + 6600.264176619763 + ], + [ + 2287.478578719076, + 6592.587543189222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526387", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2321.216564609283, + "min_y": 6592.587543189222, + "max_x": 2324.369938253517, + "max_y": 6596.425859904492, + "center": [ + 2322.7932514313998, + 6594.506701546858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.369938253517, + 6596.425859904492 + ], + [ + 2321.216564609283, + 6592.587543189222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526388", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2321.216564609283, + "min_y": 6596.425859904492, + "max_x": 2324.369938253517, + "max_y": 6600.264176619763, + "center": [ + 2322.7932514313998, + 6598.345018262127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.369938253517, + 6596.425859904492 + ], + [ + 2321.216564609283, + 6600.264176619763 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526389", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 1981.785735347995, + "min_y": 6412.216768701758, + "max_x": 1989.625735347995, + "max_y": 6420.056768701758, + "center": [ + 1985.705735347995, + 6416.136768701758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.705735347995, + 6416.136768701758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.024344062153, + "min_y": 6412.976000815529, + "max_x": 1992.333158037374, + "max_y": 6416.136768701758, + "center": [ + 1990.1787510497634, + 6414.556384758644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.024344062153, + 6412.976000815529 + ], + [ + 1992.333158037374, + 6416.136768701758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1984.278553731651, + "min_y": 6414.056336701223, + "max_x": 1987.278553731651, + "max_y": 6419.056336701223, + "center": [ + 1985.778553731651, + 6416.556336701223 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.024344062153, + "min_y": 6416.136768701758, + "max_x": 1992.333158037374, + "max_y": 6419.297536587992, + "center": [ + 1990.1787510497634, + 6417.717152644875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.333158037374, + 6416.136768701758 + ], + [ + 1988.024344062153, + 6419.297536587992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638D", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2147.721349303046, + "min_y": 6431.224801253253, + "max_x": 2155.561349303046, + "max_y": 6439.064801253253, + "center": [ + 2151.641349303046, + 6435.144801253253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.641349303046, + 6435.144801253253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2153.959958017203, + "min_y": 6431.984033367021, + "max_x": 2158.268771992426, + "max_y": 6435.144801253253, + "center": [ + 2156.1143650048143, + 6433.564417310137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2153.959958017203, + 6431.984033367021 + ], + [ + 2158.268771992426, + 6435.144801253253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52638F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2149.457625260462, + "min_y": 6432.65719306259, + "max_x": 2152.457625260462, + "max_y": 6437.65719306259, + "center": [ + 2150.957625260462, + 6435.15719306259 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526390", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2153.959958017203, + "min_y": 6435.144801253253, + "max_x": 2158.268771992426, + "max_y": 6438.305569139484, + "center": [ + 2156.1143650048143, + 6436.725185196368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2158.268771992426, + 6435.144801253253 + ], + [ + 2153.959958017203, + 6438.305569139484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526391", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2165.009272427754, + "min_y": 6525.147775954669, + "max_x": 2172.849272427754, + "max_y": 6532.987775954669, + "center": [ + 2168.929272427754, + 6529.067775954669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.929272427754, + 6529.067775954669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526392", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.247881141912, + "min_y": 6525.907008068438, + "max_x": 2175.556695117133, + "max_y": 6529.067775954669, + "center": [ + 2173.4022881295223, + 6527.487392011553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.247881141912, + 6525.907008068438 + ], + [ + 2175.556695117133, + 6529.067775954669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526393", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2166.74554838517, + "min_y": 6526.52285814749, + "max_x": 2169.74554838517, + "max_y": 6531.52285814749, + "center": [ + 2168.24554838517, + 6529.02285814749 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.247881141912, + "min_y": 6529.067775954669, + "max_x": 2175.556695117133, + "max_y": 6532.228543840901, + "center": [ + 2173.4022881295223, + 6530.648159897784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.556695117133, + 6529.067775954669 + ], + [ + 2171.247881141912, + 6532.228543840901 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526395", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2102.986824662296, + "min_y": 6495.393469661649, + "max_x": 2105.986824662296, + "max_y": 6500.393469661649, + "center": [ + 2104.486824662296, + 6497.893469661649 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.310826713114, + "min_y": 6296.782765537234, + "max_x": 1866.310826713114, + "max_y": 6296.782765537234, + "center": [ + 1841.310826713114, + 6296.782765537234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.310826713114, + 6296.782765537234 + ], + [ + 1866.310826713114, + 6296.782765537234 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526397", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.333158037374, + "min_y": 6416.136768701758, + "max_x": 2044.06018449754, + "max_y": 6416.136768701758, + "center": [ + 2018.196671267457, + 6416.136768701758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.333158037374, + 6416.136768701758 + ], + [ + 2044.06018449754, + 6416.136768701758 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526398", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.556695117133, + "min_y": 6529.067775954669, + "max_x": 2421.703025074542, + "max_y": 6529.067775954674, + "center": [ + 2298.6298600958376, + 6529.067775954672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.556695117133, + 6529.067775954669 + ], + [ + 2421.703025074542, + 6529.067775954674 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526399", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2078.914891146353, + "min_y": 6621.801314362202, + "max_x": 2086.754891146353, + "max_y": 6629.641314362202, + "center": [ + 2082.834891146353, + 6625.721314362202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2082.834891146353, + 6625.721314362202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52639A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2085.15349986051, + "min_y": 6622.56054647597, + "max_x": 2089.462313835733, + "max_y": 6625.721314362202, + "center": [ + 2087.307906848121, + 6624.140930419086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2085.15349986051, + 6622.56054647597 + ], + [ + 2089.462313835733, + 6625.721314362202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52639B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2081.364218086058, + "min_y": 6623.523150342427, + "max_x": 2084.364218086058, + "max_y": 6628.523150342427, + "center": [ + 2082.864218086058, + 6626.023150342427 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52639C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2085.15349986051, + "min_y": 6625.721314362202, + "max_x": 2089.462313835733, + "max_y": 6628.882082248432, + "center": [ + 2087.307906848121, + 6627.301698305317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.462313835733, + 6625.721314362202 + ], + [ + 2085.15349986051, + 6628.882082248432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52639D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2075.625733339276, + "min_y": 6498.55423754788, + "max_x": 2098.678010687073, + "max_y": 6498.55423754788, + "center": [ + 2087.1518720131744, + 6498.55423754788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2075.625733339276, + 6498.55423754788 + ], + [ + 2098.678010687073, + 6498.55423754788 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52639E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2089.462313835733, + "min_y": 6625.721314362202, + "max_x": 2113.385708320925, + "max_y": 6625.721314362202, + "center": [ + 2101.424011078329, + 6625.721314362202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.462313835733, + 6625.721314362202 + ], + [ + 2113.385708320925, + 6625.721314362202 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52639F", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2175.919669230072, + "min_y": 6382.038919453241, + "max_x": 2183.759669230072, + "max_y": 6389.878919453241, + "center": [ + 2179.839669230072, + 6385.958919453241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.839669230072, + 6385.958919453241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.839669230072, + "min_y": 6388.277528167399, + "max_x": 2183.000437116303, + "max_y": 6392.58634214262, + "center": [ + 2181.4200531731876, + 6390.431935155009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2183.000437116303, + 6388.277528167399 + ], + [ + 2179.839669230072, + 6392.58634214262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2182.165666143686, + "min_y": 6384.031992731614, + "max_x": 2185.165666143686, + "max_y": 6389.031992731614, + "center": [ + 2183.665666143686, + 6386.531992731614 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.67890134384, + "min_y": 6388.277528167399, + "max_x": 2179.839669230072, + "max_y": 6392.58634214262, + "center": [ + 2178.259285286956, + 6390.431935155009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.839669230072, + 6392.58634214262 + ], + [ + 2176.67890134384, + 6388.277528167399 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.839669230072, + "min_y": 6392.58634214262, + "max_x": 2179.839669230072, + "max_y": 6430.54435258309, + "center": [ + 2179.839669230072, + 6411.565347362855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.839669230072, + 6392.58634214262 + ], + [ + 2179.839669230072, + 6430.54435258309 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.393244884741, + "min_y": 6435.144801253253, + "max_x": 2147.721349303046, + "max_y": 6435.144801253255, + "center": [ + 2133.5572970938933, + 6435.144801253254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.721349303046, + 6435.144801253253 + ], + [ + 2119.393244884741, + 6435.144801253255 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.801557033143, + "min_y": 6555.44612110595, + "max_x": 2188.801557033143, + "max_y": 6566.096377198573, + "center": [ + 2188.801557033143, + 6560.771249152262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.801557033143, + 6555.44612110595 + ], + [ + 2188.801557033143, + 6566.096377198573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.041100330136, + "min_y": 6555.44612110595, + "max_x": 2179.041100330136, + "max_y": 6566.096377198573, + "center": [ + 2179.041100330136, + 6560.771249152262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.041100330136, + 6555.44612110595 + ], + [ + 2179.041100330136, + 6566.096377198573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.97910579968, + "min_y": 6566.15988588116, + "max_x": 2189.863551563622, + "max_y": 6566.15988588116, + "center": [ + 2183.921328681651, + 6566.15988588116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.97910579968, + 6566.15988588116 + ], + [ + 2189.863551563622, + 6566.15988588116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.97910579968, + "min_y": 6567.19436287446, + "max_x": 2189.863551563622, + "max_y": 6567.19436287446, + "center": [ + 2183.921328681651, + 6567.19436287446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.97910579968, + 6567.19436287446 + ], + [ + 2189.863551563622, + 6567.19436287446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.80155703315, + "min_y": 6567.194362874452, + "max_x": 2188.80155703315, + "max_y": 6569.536404652962, + "center": [ + 2188.80155703315, + 6568.365383763707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.80155703315, + 6569.536404652962 + ], + [ + 2188.80155703315, + 6567.194362874452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.041100330136, + "min_y": 6567.194362874452, + "max_x": 2179.041100330136, + "max_y": 6569.536404652962, + "center": [ + 2179.041100330136, + 6568.365383763707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.041100330136, + 6569.536404652962 + ], + [ + 2179.041100330136, + 6567.194362874452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2181.496463957262, + "min_y": 6572.011419384013, + "max_x": 2181.496463957262, + "max_y": 6575.659368087698, + "center": [ + 2181.496463957262, + 6573.835393735855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.496463957262, + 6572.011419384013 + ], + [ + 2181.496463957262, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.346193406019, + "min_y": 6572.011419384013, + "max_x": 2186.346193406019, + "max_y": 6575.659368087698, + "center": [ + 2186.346193406019, + 6573.835393735855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.346193406019, + 6572.011419384013 + ], + [ + 2186.346193406019, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2154.703901336771, + "min_y": 6575.659368087698, + "max_x": 2181.496463957262, + "max_y": 6575.659368087698, + "center": [ + 2168.1001826470165, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.703901336771, + 6575.659368087698 + ], + [ + 2181.496463957262, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.346193406019, + "min_y": 6575.659368087698, + "max_x": 2231.288573276568, + "max_y": 6575.659368087698, + "center": [ + 2208.817383341294, + 6575.659368087698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.346193406019, + 6575.659368087698 + ], + [ + 2231.288573276568, + 6575.659368087698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263B1", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2175.549904347307, + "min_y": 6546.105846500322, + "max_x": 2199.549904347307, + "max_y": 6551.105846500322, + "center": [ + 2187.549904347307, + 6548.605846500322 + ] + }, + "raw_value": "SP-10601", + "clean_value": "SP-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6423.06338547403, + "max_x": 2058.06018449754, + "max_y": 6423.06338547403, + "center": [ + 2051.06018449754, + 6423.06338547403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.06018449754, + 6423.06338547403 + ], + [ + 2058.06018449754, + 6423.06338547403 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6423.06338547403, + "max_x": 2058.06018449754, + "max_y": 6468.195495322136, + "center": [ + 2051.06018449754, + 6445.629440398083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6423.06338547403 + ], + [ + 2044.06018449754, + 6468.195495322136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.06018449754, + "min_y": 6423.06338547403, + "max_x": 2058.06018449754, + "max_y": 6468.195495322136, + "center": [ + 2051.06018449754, + 6445.629440398083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.06018449754, + 6468.195495322136 + ], + [ + 2044.06018449754, + 6423.06338547403 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263B5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1680.38131926952, + "min_y": 6399.838419510542, + "max_x": 1695.38131926952, + "max_y": 6404.838419510542, + "center": [ + 1687.88131926952, + 6402.338419510542 + ] + }, + "raw_value": "T-201", + "clean_value": "T-201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263B6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1679.1755095657, + "min_y": 6324.763364760369, + "max_x": 1694.1755095657, + "max_y": 6329.763364760369, + "center": [ + 1686.6755095657, + 6327.263364760369 + ] + }, + "raw_value": "T-202", + "clean_value": "T-202", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263B7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1627.759952748379, + "min_y": 6399.168899458072, + "max_x": 1642.759952748379, + "max_y": 6404.168899458072, + "center": [ + 1635.259952748379, + 6401.668899458072 + ] + }, + "raw_value": "P-201", + "clean_value": "P-201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263B8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1629.044342373586, + "min_y": 6323.871557680334, + "max_x": 1644.044342373586, + "max_y": 6328.871557680334, + "center": [ + 1636.544342373586, + 6326.371557680334 + ] + }, + "raw_value": "P-202", + "clean_value": "P-202", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2330.2005409542, + "min_y": 6463.000064195497, + "max_x": 2330.2005409542, + "max_y": 6488.336898677414, + "center": [ + 2330.2005409542, + 6475.668481436455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.2005409542, + 6488.336898677414 + ], + [ + 2330.2005409542, + 6463.000064195497 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.618473627696, + "min_y": 6463.146050507915, + "max_x": 2303.618473627696, + "max_y": 6488.482884989834, + "center": [ + 2303.618473627696, + 6475.814467748874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.618473627696, + 6488.482884989834 + ], + [ + 2303.618473627696, + 6463.146050507915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.618473627696, + "min_y": 6453.027536111793, + "max_x": 2303.618473627696, + "max_y": 6463.146050507915, + "center": [ + 2303.618473627696, + 6458.086793309854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.618473627696, + 6463.146050507915 + ], + [ + 2303.618473627696, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2330.134230229113, + "min_y": 6453.027536111793, + "max_x": 2330.134230229113, + "max_y": 6462.412907221845, + "center": [ + 2330.134230229113, + 6457.720221666819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.134230229113, + 6462.412907221845 + ], + [ + 2330.134230229113, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.810958165781, + "min_y": 6467.587822647553, + "max_x": 2303.603437347488, + "max_y": 6467.587822647553, + "center": [ + 2302.2071977566347, + 6467.587822647553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.603437347488, + 6467.587822647553 + ], + [ + 2300.810958165781, + 6467.587822647553 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.810958165781, + "min_y": 6464.046720507773, + "max_x": 2303.618473627696, + "max_y": 6464.046720507773, + "center": [ + 2302.214715896738, + 6464.046720507773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.618473627696, + 6464.046720507773 + ], + [ + 2300.810958165781, + 6464.046720507773 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.810958165781, + "min_y": 6463.392653825247, + "max_x": 2300.810958165781, + "max_y": 6468.220321731658, + "center": [ + 2300.810958165781, + 6465.806487778453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.810958165781, + 6468.220321731658 + ], + [ + 2300.810958165781, + 6463.392653825247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.549100652703, + "min_y": 6463.392653825247, + "max_x": 2300.549100652703, + "max_y": 6468.220321731658, + "center": [ + 2300.549100652703, + 6465.806487778453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.549100652703, + 6468.220321731658 + ], + [ + 2300.549100652703, + 6463.392653825247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2328.174230229113, + "min_y": 6453.027536111793, + "max_x": 2328.174230229113, + "max_y": 6459.819779720557, + "center": [ + 2328.174230229113, + 6456.423657916175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2328.174230229113, + 6459.819779720557 + ], + [ + 2328.174230229113, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.578473627696, + "min_y": 6453.027536111793, + "max_x": 2305.578473627696, + "max_y": 6459.966880870324, + "center": [ + 2305.578473627696, + 6456.497208491059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.578473627696, + 6459.966880870324 + ], + [ + 2305.578473627696, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.194230229112, + "min_y": 6453.027536111793, + "max_x": 2331.114230229113, + "max_y": 6453.027536111793, + "center": [ + 2329.1542302291127, + 6453.027536111793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.194230229112, + 6453.027536111793 + ], + [ + 2331.114230229113, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.618473627696, + "min_y": 6453.027536111793, + "max_x": 2305.578473627696, + "max_y": 6453.027536111793, + "center": [ + 2304.598473627696, + 6453.027536111793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.578473627696, + 6453.027536111793 + ], + [ + 2303.618473627696, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.194230229112, + "min_y": 6452.537536111794, + "max_x": 2331.114230229113, + "max_y": 6452.537536111794, + "center": [ + 2329.1542302291127, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.194230229112, + 6452.537536111794 + ], + [ + 2331.114230229113, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.194230229112, + "min_y": 6452.537536111794, + "max_x": 2327.194230229112, + "max_y": 6452.537536111794, + "center": [ + 2327.194230229112, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.194230229112, + 6452.537536111794 + ], + [ + 2327.194230229112, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.194230229112, + "min_y": 6452.537536111794, + "max_x": 2327.194230229112, + "max_y": 6453.027536111793, + "center": [ + 2327.194230229112, + 6452.782536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.194230229112, + 6452.537536111794 + ], + [ + 2327.194230229112, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.114230229113, + "min_y": 6452.537536111794, + "max_x": 2331.114230229113, + "max_y": 6452.537536111794, + "center": [ + 2331.114230229113, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.114230229113, + 6452.537536111794 + ], + [ + 2331.114230229113, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.114230229113, + "min_y": 6452.537536111794, + "max_x": 2331.114230229113, + "max_y": 6453.027536111793, + "center": [ + 2331.114230229113, + 6452.782536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.114230229113, + 6452.537536111794 + ], + [ + 2331.114230229113, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6453.027536111793, + "max_x": 2306.558473627696, + "max_y": 6453.027536111793, + "center": [ + 2304.5984736276964, + 6453.027536111793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.638473627697, + 6453.027536111793 + ], + [ + 2306.558473627696, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6452.537536111794, + "max_x": 2306.558473627696, + "max_y": 6452.537536111794, + "center": [ + 2304.5984736276964, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.638473627697, + 6452.537536111794 + ], + [ + 2306.558473627696, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6452.537536111794, + "max_x": 2302.638473627697, + "max_y": 6452.537536111794, + "center": [ + 2302.638473627697, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.638473627697, + 6452.537536111794 + ], + [ + 2302.638473627697, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.638473627697, + "min_y": 6452.537536111794, + "max_x": 2302.638473627697, + "max_y": 6453.027536111793, + "center": [ + 2302.638473627697, + 6452.782536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.638473627697, + 6452.537536111794 + ], + [ + 2302.638473627697, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.558473627696, + "min_y": 6452.537536111794, + "max_x": 2306.558473627696, + "max_y": 6452.537536111794, + "center": [ + 2306.558473627696, + 6452.537536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.558473627696, + 6452.537536111794 + ], + [ + 2306.558473627696, + 6452.537536111794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.558473627696, + "min_y": 6452.537536111794, + "max_x": 2306.558473627696, + "max_y": 6453.027536111793, + "center": [ + 2306.558473627696, + 6452.782536111794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.558473627696, + 6452.537536111794 + ], + [ + 2306.558473627696, + 6453.027536111793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2308.581399079259, + "min_y": 6469.699318033049, + "max_x": 2308.581399079259, + "max_y": 6505.404954238054, + "center": [ + 2308.581399079259, + 6487.552136135551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.581399079259, + 6469.699318033049 + ], + [ + 2308.581399079259, + 6505.404954238054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2335.650791668898, + "min_y": 6473.6245131086, + "max_x": 2356.650791668898, + "max_y": 6478.6245131086, + "center": [ + 2346.150791668898, + 6476.1245131086 + ] + }, + "raw_value": "T-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.891412173639, + "min_y": 6439.338109399407, + "max_x": 2330.579144404316, + "max_y": 6439.338109399407, + "center": [ + 2323.7352782889775, + 6439.338109399407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.891412173639, + 6439.338109399407 + ], + [ + 2330.579144404316, + 6439.338109399407 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263D6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2337.967416662804, + "min_y": 6438.17312196068, + "max_x": 2358.967416662804, + "max_y": 6443.17312196068, + "center": [ + 2348.467416662804, + 6440.67312196068 + ] + }, + "raw_value": "P-10101", + "clean_value": "P-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263D7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2330.579144404317, + "min_y": 6435.499792684137, + "max_x": 2364.317130294523, + "max_y": 6435.499792684137, + "center": [ + 2347.44813734942, + 6435.499792684137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.579144404317, + 6435.499792684137 + ], + [ + 2364.317130294523, + 6435.499792684137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263D8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2330.579144404317, + "min_y": 6443.176426114677, + "max_x": 2364.317130294523, + "max_y": 6443.176426114677, + "center": [ + 2347.44813734942, + 6443.176426114677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.579144404317, + 6443.176426114677 + ], + [ + 2364.317130294523, + 6443.176426114677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263D9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2330.579144404316, + "min_y": 6435.499792684137, + "max_x": 2330.579144404317, + "max_y": 6443.176426114677, + "center": [ + 2330.5791444043166, + 6439.338109399407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.579144404316, + 6443.176426114677 + ], + [ + 2330.579144404317, + 6435.499792684137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263DA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2364.317130294523, + "min_y": 6435.499792684137, + "max_x": 2367.470503938757, + "max_y": 6439.338109399407, + "center": [ + 2365.89381711664, + 6437.418951041772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.470503938757, + 6439.338109399407 + ], + [ + 2364.317130294523, + 6435.499792684137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263DB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2364.317130294523, + "min_y": 6439.338109399407, + "max_x": 2367.470503938757, + "max_y": 6443.176426114677, + "center": [ + 2365.89381711664, + 6441.257267757042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.470503938757, + 6439.338109399407 + ], + [ + 2364.317130294523, + 6443.176426114677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.891412173639, + "min_y": 6439.338109399407, + "max_x": 2316.946299011709, + "max_y": 6457.035628642002, + "center": [ + 2316.918855592674, + 6448.186869020705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.891412173639, + 6439.338109399407 + ], + [ + 2316.946299011709, + 6457.035628642002 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6427.64480125325, + "max_x": 2421.703025074542, + "max_y": 6427.64480125325, + "center": [ + 2309.423662087326, + 6427.64480125325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6427.64480125325 + ], + [ + 2421.703025074542, + 6427.64480125325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6356.86479909647, + "max_x": 2197.14429910011, + "max_y": 6435.14480125325, + "center": [ + 2197.14429910011, + 6396.00480017486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6356.86479909647 + ], + [ + 2197.14429910011, + 6435.14480125325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6505.404954238054, + "max_x": 2197.14429910011, + "max_y": 6529.067775954669, + "center": [ + 2197.14429910011, + 6517.236365096362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6529.067775954669 + ], + [ + 2197.14429910011, + 6505.404954238054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6505.404954238054, + "max_x": 2308.581399079259, + "max_y": 6505.404954238054, + "center": [ + 2252.8628490896845, + 6505.404954238054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6505.404954238054 + ], + [ + 2308.581399079259, + 6505.404954238054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.438969638737, + "min_y": 6435.14480125325, + "max_x": 2293.438969638737, + "max_y": 6505.404954238054, + "center": [ + 2293.438969638737, + 6470.274877745653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.438969638737, + 6435.14480125325 + ], + [ + 2293.438969638737, + 6505.404954238054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263E3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2426.655205037304, + "min_y": 6526.743626488379, + "max_x": 2435.655205037304, + "max_y": 6531.743626488379, + "center": [ + 2431.155205037304, + 6529.243626488379 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6525.229459239405, + "max_x": 2441.566172911609, + "max_y": 6525.229459239405, + "center": [ + 2431.6345989930755, + 6525.229459239405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6525.229459239405 + ], + [ + 2441.566172911609, + 6525.229459239405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6532.906092669944, + "max_x": 2441.566172911609, + "max_y": 6532.906092669944, + "center": [ + 2431.6345989930755, + 6532.906092669944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6532.906092669944 + ], + [ + 2441.566172911609, + 6532.906092669944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6525.229459239405, + "max_x": 2421.703025074542, + "max_y": 6532.906092669944, + "center": [ + 2421.703025074542, + 6529.067775954674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6532.906092669944 + ], + [ + 2421.703025074542, + 6525.229459239405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6525.229459239405, + "max_x": 2444.719546555842, + "max_y": 6529.067775954674, + "center": [ + 2443.1428597337253, + 6527.148617597039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6529.067775954674 + ], + [ + 2441.566172911609, + 6525.229459239405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6529.067775954674, + "max_x": 2444.719546555842, + "max_y": 6532.906092669944, + "center": [ + 2443.1428597337253, + 6530.986934312309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6529.067775954674 + ], + [ + 2441.566172911609, + 6532.906092669944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263E9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1729.231650919022, + "min_y": 6570.287578365983, + "max_x": 1747.231650919022, + "max_y": 6575.287578365983, + "center": [ + 1738.231650919022, + 6572.787578365983 + ] + }, + "raw_value": "C-9111", + "clean_value": "C-9111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263EA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6568.726106107085, + "max_x": 1755.69352102391, + "max_y": 6568.726106107085, + "center": [ + 1738.8245280788065, + 6568.726106107085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6568.726106107085 + ], + [ + 1755.69352102391, + 6568.726106107085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263EB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6576.402739537624, + "max_x": 1755.69352102391, + "max_y": 6576.402739537624, + "center": [ + 1738.8245280788065, + 6576.402739537624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6576.402739537624 + ], + [ + 1755.69352102391, + 6576.402739537624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263EC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6568.726106107085, + "max_x": 1721.955535133703, + "max_y": 6576.402739537624, + "center": [ + 1721.955535133703, + 6572.564422822355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6576.402739537624 + ], + [ + 1721.955535133703, + 6568.726106107085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263ED", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1755.69352102391, + "min_y": 6568.726106107085, + "max_x": 1758.846894668144, + "max_y": 6572.564422822356, + "center": [ + 1757.270207846027, + 6570.645264464721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846894668144, + 6572.564422822356 + ], + [ + 1755.69352102391, + 6568.726106107085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263EE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1755.69352102391, + "min_y": 6572.564422822356, + "max_x": 1758.846894668144, + "max_y": 6576.402739537624, + "center": [ + 1757.270207846027, + 6574.48358117999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846894668144, + 6572.564422822356 + ], + [ + 1755.69352102391, + 6576.402739537624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6199.5268955954, + "max_x": 1657.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1603.364955657286, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6199.5268955954 + ], + [ + 1657.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6187.3768955954, + "max_x": 1657.634955657286, + "max_y": 6187.3768955954, + "center": [ + 1603.364955657286, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6187.3768955954 + ], + [ + 1657.634955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6163.0768955954, + "max_x": 1657.634955657286, + "max_y": 6163.0768955954, + "center": [ + 1603.364955657286, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6163.0768955954 + ], + [ + 1657.634955657286, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1591.057036962754, + "min_y": 6191.426895595401, + "max_x": 1615.357036962754, + "max_y": 6195.476895595401, + "center": [ + 1603.207036962754, + 6193.451895595401 + ] + }, + "raw_value": "STREAM NO.", + "clean_value": "STREAM NO.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6175.2268955954, + "max_x": 1657.634955657286, + "max_y": 6187.3768955954, + "center": [ + 1603.364955657286, + 6181.301895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6175.2268955954 + ], + [ + 1549.094955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1551.906017182073, + "min_y": 6177.2518955954, + "max_x": 1578.636017182073, + "max_y": 6181.3018955954, + "center": [ + 1565.271017182073, + 6179.2768955954 + ] + }, + "raw_value": "COMPOSITION", + "clean_value": "COMPOSITION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263F5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1627.717102183269, + "min_y": 6181.3018955954, + "max_x": 1654.447102183269, + "max_y": 6185.3518955954005, + "center": [ + 1641.082102183269, + 6183.326895595401 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6150.9268955954, + "max_x": 1657.634955657286, + "max_y": 6150.9268955954, + "center": [ + 1603.364955657286, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6150.9268955954 + ], + [ + 1657.634955657286, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1596.666368125079, + "min_y": 6154.9768955954, + "max_x": 1608.8163681250792, + "max_y": 6159.0268955954, + "center": [ + 1602.7413681250791, + 6157.0018955954 + ] + }, + "raw_value": "PGMEA", + "clean_value": "PGMEA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6138.7768955954, + "max_x": 1657.634955657286, + "max_y": 6138.7768955954, + "center": [ + 1603.364955657286, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6138.7768955954 + ], + [ + 1657.634955657286, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263F9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1588.30715595073, + "min_y": 6142.8268955954, + "max_x": 1617.46715595073, + "max_y": 6146.8768955954, + "center": [ + 1602.8871559507302, + 6144.8518955954005 + ] + }, + "raw_value": "TOTAL STREAM", + "clean_value": "TOTAL STREAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6126.6268955954, + "max_x": 1657.634955657286, + "max_y": 6126.6268955954, + "center": [ + 1603.364955657286, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6126.6268955954 + ], + [ + 1657.634955657286, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263FB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1572.905083054938, + "min_y": 6130.6768955954, + "max_x": 1645.8050830549378, + "max_y": 6134.7268955954005, + "center": [ + 1609.355083054938, + 6132.701895595401 + ] + }, + "raw_value": "OPERATION PRESS.(kgf/cm%%178G)", + "clean_value": "OPERATION PRESS.(kgf/cm%%178G)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6114.476895595401, + "max_x": 1657.634955657286, + "max_y": 6114.476895595401, + "center": [ + 1603.364955657286, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6114.476895595401 + ], + [ + 1657.634955657286, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5263FD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1581.029939016862, + "min_y": 6118.5268955954, + "max_x": 1632.059939016862, + "max_y": 6122.5768955954, + "center": [ + 1606.544939016862, + 6120.551895595399 + ] + }, + "raw_value": "OPERATION TEMP.(%%DC)", + "clean_value": "OPERATION TEMP.(%%DC)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263FE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1594.048883155139, + "min_y": 6106.3768955954, + "max_x": 1611.058883155139, + "max_y": 6110.4268955954, + "center": [ + 1602.553883155139, + 6108.4018955954 + ] + }, + "raw_value": "REMARKS", + "clean_value": "REMARKS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5263FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6102.3268955954, + "max_x": 1657.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1657.634955657286, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6102.3268955954 + ], + [ + 1657.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526400", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1676.652302851675, + "min_y": 6191.426895595401, + "max_x": 1679.082302851675, + "max_y": 6195.476895595401, + "center": [ + 1677.867302851675, + 6193.451895595401 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526401", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1671.090147290553, + "min_y": 6167.126895595401, + "max_x": 1683.240147290553, + "max_y": 6171.176895595401, + "center": [ + 1677.165147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526402", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1672.161489975924, + "min_y": 6154.9768955954, + "max_x": 1684.3114899759241, + "max_y": 6159.0268955954, + "center": [ + 1678.236489975924, + 6157.0018955954 + ] + }, + "raw_value": "2,600", + "clean_value": "2,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526403", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1672.161489975924, + "min_y": 6142.8268955954, + "max_x": 1684.3114899759241, + "max_y": 6146.8768955954, + "center": [ + 1678.236489975924, + 6144.8518955954005 + ] + }, + "raw_value": "2,600", + "clean_value": "2,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526404", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1669.696184364701, + "min_y": 6130.6768955954, + "max_x": 1686.706184364701, + "max_y": 6134.7268955954005, + "center": [ + 1678.201184364701, + 6132.701895595401 + ] + }, + "raw_value": "1.0~2.0", + "clean_value": "1.0~2.0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526405", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1671.281893282537, + "min_y": 6118.5268955954, + "max_x": 1683.4318932825372, + "max_y": 6122.5768955954, + "center": [ + 1677.3568932825372, + 6120.551895595399 + ] + }, + "raw_value": "50~90", + "clean_value": "50~90", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526406", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1672.426282060092, + "min_y": 6179.2768955954, + "max_x": 1682.146282060092, + "max_y": 6183.3268955954, + "center": [ + 1677.2862820600922, + 6181.301895595399 + ] + }, + "raw_value": "FEED", + "clean_value": "FEED", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526407", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1717.152302851675, + "min_y": 6191.426895595401, + "max_x": 1719.582302851675, + "max_y": 6195.476895595401, + "center": [ + 1718.367302851675, + 6193.451895595401 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526408", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1711.590147290553, + "min_y": 6167.126895595401, + "max_x": 1723.740147290553, + "max_y": 6171.176895595401, + "center": [ + 1717.665147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526409", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1705.265573142256, + "min_y": 6154.9768955954, + "max_x": 1731.995573142256, + "max_y": 6159.0268955954, + "center": [ + 1718.630573142256, + 6157.0018955954 + ] + }, + "raw_value": "2,600~5,200", + "clean_value": "2,600~5,200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1705.265573142256, + "min_y": 6142.8268955954, + "max_x": 1731.995573142256, + "max_y": 6146.8768955954, + "center": [ + 1718.630573142256, + 6144.8518955954005 + ] + }, + "raw_value": "2,600~5,200", + "clean_value": "2,600~5,200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1707.266731709391, + "min_y": 6130.6768955954, + "max_x": 1731.566731709391, + "max_y": 6134.7268955954005, + "center": [ + 1719.4167317093911, + 6132.701895595401 + ] + }, + "raw_value": "50~100torr", + "clean_value": "50~100torr", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1711.781893282537, + "min_y": 6118.5268955954, + "max_x": 1723.9318932825372, + "max_y": 6122.5768955954, + "center": [ + 1717.8568932825372, + 6120.551895595399 + ] + }, + "raw_value": "70~98", + "clean_value": "70~98", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1711.346660316605, + "min_y": 6179.2768955954, + "max_x": 1723.4966603166051, + "max_y": 6183.3268955954, + "center": [ + 1717.421660316605, + 6181.301895595399 + ] + }, + "raw_value": "VAPOR", + "clean_value": "VAPOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1757.652302851675, + "min_y": 6191.426895595401, + "max_x": 1760.082302851675, + "max_y": 6195.476895595401, + "center": [ + 1758.867302851675, + 6193.451895595401 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52640F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1752.090147290553, + "min_y": 6167.126895595401, + "max_x": 1764.240147290553, + "max_y": 6171.176895595401, + "center": [ + 1758.165147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526410", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1750.925975196365, + "min_y": 6179.2768955954, + "max_x": 1765.505975196365, + "max_y": 6183.3268955954, + "center": [ + 1758.215975196365, + 6181.301895595399 + ] + }, + "raw_value": "REFLUX", + "clean_value": "REFLUX", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526411", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1798.152302851675, + "min_y": 6191.426895595401, + "max_x": 1800.582302851675, + "max_y": 6195.476895595401, + "center": [ + 1799.367302851675, + 6193.451895595401 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526412", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1792.590147290553, + "min_y": 6167.126895595401, + "max_x": 1804.740147290553, + "max_y": 6171.176895595401, + "center": [ + 1798.665147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526413", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1796.919650046064, + "min_y": 6154.9768955954, + "max_x": 1801.7796500460638, + "max_y": 6159.0268955954, + "center": [ + 1799.3496500460637, + 6157.0018955954 + ] + }, + "raw_value": "55", + "clean_value": "55", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526414", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1796.919650046064, + "min_y": 6142.8268955954, + "max_x": 1801.7796500460638, + "max_y": 6146.8768955954, + "center": [ + 1799.3496500460637, + 6144.8518955954005 + ] + }, + "raw_value": "55", + "clean_value": "55", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526415", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1791.196184364701, + "min_y": 6130.6768955954, + "max_x": 1808.206184364701, + "max_y": 6134.7268955954005, + "center": [ + 1799.701184364701, + 6132.701895595401 + ] + }, + "raw_value": "1.0~2.0", + "clean_value": "1.0~2.0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526416", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1792.781893282537, + "min_y": 6118.5268955954, + "max_x": 1804.9318932825372, + "max_y": 6122.5768955954, + "center": [ + 1798.8568932825372, + 6120.551895595399 + ] + }, + "raw_value": "20~40", + "clean_value": "20~40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526417", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1786.959511018008, + "min_y": 6179.2768955954, + "max_x": 1811.259511018008, + "max_y": 6183.3268955954, + "center": [ + 1799.109511018008, + 6181.301895595399 + ] + }, + "raw_value": "LIGHT ENDS", + "clean_value": "LIGHT ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526418", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6199.5268955954, + "max_x": 1698.134955657286, + "max_y": 6199.5268955954, + "center": [ + 1677.884955657286, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6199.5268955954 + ], + [ + 1698.134955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526419", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6187.3768955954, + "max_x": 1698.134955657286, + "max_y": 6187.3768955954, + "center": [ + 1677.884955657286, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6187.3768955954 + ], + [ + 1698.134955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6163.0768955954, + "max_x": 1698.134955657286, + "max_y": 6163.0768955954, + "center": [ + 1677.884955657286, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6163.0768955954 + ], + [ + 1698.134955657286, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6150.9268955954, + "max_x": 1698.134955657286, + "max_y": 6150.9268955954, + "center": [ + 1677.884955657286, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6150.9268955954 + ], + [ + 1698.134955657286, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6138.7768955954, + "max_x": 1698.134955657286, + "max_y": 6138.7768955954, + "center": [ + 1677.884955657286, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6138.7768955954 + ], + [ + 1698.134955657286, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6126.6268955954, + "max_x": 1698.134955657286, + "max_y": 6126.6268955954, + "center": [ + 1677.884955657286, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6126.6268955954 + ], + [ + 1698.134955657286, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6114.476895595401, + "max_x": 1698.134955657286, + "max_y": 6114.476895595401, + "center": [ + 1677.884955657286, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6114.476895595401 + ], + [ + 1698.134955657286, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52641F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6102.3268955954, + "max_x": 1698.134955657286, + "max_y": 6199.5268955954, + "center": [ + 1698.134955657286, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6102.3268955954 + ], + [ + 1698.134955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526420", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6199.5268955954, + "max_x": 1738.634955657287, + "max_y": 6199.5268955954, + "center": [ + 1718.3849556572864, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6199.5268955954 + ], + [ + 1738.634955657287, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526421", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6187.3768955954, + "max_x": 1738.634955657287, + "max_y": 6187.3768955954, + "center": [ + 1718.3849556572864, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6187.3768955954 + ], + [ + 1738.634955657287, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526422", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6163.0768955954, + "max_x": 1738.634955657287, + "max_y": 6163.0768955954, + "center": [ + 1718.3849556572864, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6163.0768955954 + ], + [ + 1738.634955657287, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526423", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6150.9268955954, + "max_x": 1738.634955657287, + "max_y": 6150.9268955954, + "center": [ + 1718.3849556572864, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6150.9268955954 + ], + [ + 1738.634955657287, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526424", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6138.7768955954, + "max_x": 1738.634955657287, + "max_y": 6138.7768955954, + "center": [ + 1718.3849556572864, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6138.7768955954 + ], + [ + 1738.634955657287, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526425", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6126.6268955954, + "max_x": 1738.634955657287, + "max_y": 6126.6268955954, + "center": [ + 1718.3849556572864, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6126.6268955954 + ], + [ + 1738.634955657287, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526426", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6114.476895595401, + "max_x": 1738.634955657287, + "max_y": 6114.476895595401, + "center": [ + 1718.3849556572864, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6114.476895595401 + ], + [ + 1738.634955657287, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526427", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6102.3268955954, + "max_x": 1738.634955657287, + "max_y": 6199.5268955954, + "center": [ + 1738.634955657287, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6102.3268955954 + ], + [ + 1738.634955657287, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526428", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6199.5268955954, + "max_x": 1779.134955657286, + "max_y": 6199.5268955954, + "center": [ + 1758.8849556572864, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6199.5268955954 + ], + [ + 1779.134955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526429", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6187.3768955954, + "max_x": 1779.134955657286, + "max_y": 6187.3768955954, + "center": [ + 1758.8849556572864, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6187.3768955954 + ], + [ + 1779.134955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6163.0768955954, + "max_x": 1779.134955657286, + "max_y": 6163.0768955954, + "center": [ + 1758.8849556572864, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6163.0768955954 + ], + [ + 1779.134955657286, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6150.9268955954, + "max_x": 1779.134955657286, + "max_y": 6150.9268955954, + "center": [ + 1758.8849556572864, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6150.9268955954 + ], + [ + 1779.134955657286, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6138.7768955954, + "max_x": 1779.134955657286, + "max_y": 6138.7768955954, + "center": [ + 1758.8849556572864, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6138.7768955954 + ], + [ + 1779.134955657286, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6126.6268955954, + "max_x": 1779.134955657286, + "max_y": 6126.6268955954, + "center": [ + 1758.8849556572864, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6126.6268955954 + ], + [ + 1779.134955657286, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6114.476895595401, + "max_x": 1779.134955657286, + "max_y": 6114.476895595401, + "center": [ + 1758.8849556572864, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6114.476895595401 + ], + [ + 1779.134955657286, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52642F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6102.3268955954, + "max_x": 1779.134955657286, + "max_y": 6199.5268955954, + "center": [ + 1779.134955657286, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6102.3268955954 + ], + [ + 1779.134955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526430", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6199.5268955954, + "max_x": 1819.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1799.384955657286, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6199.5268955954 + ], + [ + 1819.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526431", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6187.3768955954, + "max_x": 1819.634955657286, + "max_y": 6187.3768955954, + "center": [ + 1799.384955657286, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6187.3768955954 + ], + [ + 1819.634955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526432", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6163.0768955954, + "max_x": 1819.634955657286, + "max_y": 6163.0768955954, + "center": [ + 1799.384955657286, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6163.0768955954 + ], + [ + 1819.634955657286, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526433", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6150.9268955954, + "max_x": 1819.634955657286, + "max_y": 6150.9268955954, + "center": [ + 1799.384955657286, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6150.9268955954 + ], + [ + 1819.634955657286, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526434", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6138.7768955954, + "max_x": 1819.634955657286, + "max_y": 6138.7768955954, + "center": [ + 1799.384955657286, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6138.7768955954 + ], + [ + 1819.634955657286, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526435", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6126.6268955954, + "max_x": 1819.634955657286, + "max_y": 6126.6268955954, + "center": [ + 1799.384955657286, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6126.6268955954 + ], + [ + 1819.634955657286, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526436", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6114.476895595401, + "max_x": 1819.634955657286, + "max_y": 6114.476895595401, + "center": [ + 1799.384955657286, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6114.476895595401 + ], + [ + 1819.634955657286, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526437", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6102.3268955954, + "max_x": 1819.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1819.634955657286, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6102.3268955954 + ], + [ + 1819.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526438", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6199.5268955954, + "max_x": 1860.134955657287, + "max_y": 6199.5268955954, + "center": [ + 1839.8849556572864, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6199.5268955954 + ], + [ + 1860.134955657287, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526439", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6187.3768955954, + "max_x": 1860.134955657287, + "max_y": 6187.3768955954, + "center": [ + 1839.8849556572864, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6187.3768955954 + ], + [ + 1860.134955657287, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6163.0768955954, + "max_x": 1860.134955657287, + "max_y": 6163.0768955954, + "center": [ + 1839.8849556572864, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6163.0768955954 + ], + [ + 1860.134955657287, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6150.9268955954, + "max_x": 1860.134955657287, + "max_y": 6150.9268955954, + "center": [ + 1839.8849556572864, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6150.9268955954 + ], + [ + 1860.134955657287, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6138.7768955954, + "max_x": 1860.134955657287, + "max_y": 6138.7768955954, + "center": [ + 1839.8849556572864, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6138.7768955954 + ], + [ + 1860.134955657287, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6126.6268955954, + "max_x": 1860.134955657287, + "max_y": 6126.6268955954, + "center": [ + 1839.8849556572864, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6126.6268955954 + ], + [ + 1860.134955657287, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6114.476895595401, + "max_x": 1860.134955657287, + "max_y": 6114.476895595401, + "center": [ + 1839.8849556572864, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6114.476895595401 + ], + [ + 1860.134955657287, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52643F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6102.3268955954, + "max_x": 1860.134955657287, + "max_y": 6199.5268955954, + "center": [ + 1860.134955657287, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6102.3268955954 + ], + [ + 1860.134955657287, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526440", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6199.5268955954, + "max_x": 1900.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1880.3849556572864, + 6199.5268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6199.5268955954 + ], + [ + 1900.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526441", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6187.3768955954, + "max_x": 1900.634955657286, + "max_y": 6187.3768955954, + "center": [ + 1880.3849556572864, + 6187.3768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6187.3768955954 + ], + [ + 1900.634955657286, + 6187.3768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526442", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6163.0768955954, + "max_x": 1900.634955657286, + "max_y": 6163.0768955954, + "center": [ + 1880.3849556572864, + 6163.0768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6163.0768955954 + ], + [ + 1900.634955657286, + 6163.0768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526443", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6150.9268955954, + "max_x": 1900.634955657286, + "max_y": 6150.9268955954, + "center": [ + 1880.3849556572864, + 6150.9268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6150.9268955954 + ], + [ + 1900.634955657286, + 6150.9268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526444", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6138.7768955954, + "max_x": 1900.634955657286, + "max_y": 6138.7768955954, + "center": [ + 1880.3849556572864, + 6138.7768955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6138.7768955954 + ], + [ + 1900.634955657286, + 6138.7768955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526445", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6126.6268955954, + "max_x": 1900.634955657286, + "max_y": 6126.6268955954, + "center": [ + 1880.3849556572864, + 6126.6268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6126.6268955954 + ], + [ + 1900.634955657286, + 6126.6268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526446", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6114.476895595401, + "max_x": 1900.634955657286, + "max_y": 6114.476895595401, + "center": [ + 1880.3849556572864, + 6114.476895595401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6114.476895595401 + ], + [ + 1900.634955657286, + 6114.476895595401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526447", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1900.634955657286, + "min_y": 6102.3268955954, + "max_x": 1900.634955657286, + "max_y": 6199.5268955954, + "center": [ + 1900.634955657286, + 6150.926895595399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.634955657286, + 6102.3268955954 + ], + [ + 1900.634955657286, + 6199.5268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526448", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1838.652302851675, + "min_y": 6191.426895595401, + "max_x": 1841.082302851675, + "max_y": 6195.476895595401, + "center": [ + 1839.867302851675, + 6193.451895595401 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526449", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1833.090147290553, + "min_y": 6167.126895595401, + "max_x": 1845.240147290553, + "max_y": 6171.176895595401, + "center": [ + 1839.165147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1837.419650046064, + "min_y": 6154.9768955954, + "max_x": 1842.2796500460638, + "max_y": 6159.0268955954, + "center": [ + 1839.8496500460637, + 6157.0018955954 + ] + }, + "raw_value": "30", + "clean_value": "30", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1837.419650046064, + "min_y": 6142.8268955954, + "max_x": 1842.2796500460638, + "max_y": 6146.8768955954, + "center": [ + 1839.8496500460637, + 6144.8518955954005 + ] + }, + "raw_value": "30", + "clean_value": "30", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1831.696184364701, + "min_y": 6130.6768955954, + "max_x": 1848.706184364701, + "max_y": 6134.7268955954005, + "center": [ + 1840.201184364701, + 6132.701895595401 + ] + }, + "raw_value": "1.0~2.0", + "clean_value": "1.0~2.0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1833.281893282537, + "min_y": 6118.5268955954, + "max_x": 1845.4318932825372, + "max_y": 6122.5768955954, + "center": [ + 1839.3568932825372, + 6120.551895595399 + ] + }, + "raw_value": "20~45", + "clean_value": "20~45", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1826.681874494962, + "min_y": 6179.2768955954, + "max_x": 1850.9818744949619, + "max_y": 6183.3268955954, + "center": [ + 1838.831874494962, + 6181.301895595399 + ] + }, + "raw_value": "HEAVY ENDS", + "clean_value": "HEAVY ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52644F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1879.152302851675, + "min_y": 6191.426895595401, + "max_x": 1881.582302851675, + "max_y": 6195.476895595401, + "center": [ + 1880.367302851675, + 6193.451895595401 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526450", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1873.590147290553, + "min_y": 6167.126895595401, + "max_x": 1885.740147290553, + "max_y": 6171.176895595401, + "center": [ + 1879.665147290553, + 6169.151895595402 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526451", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1874.661489975924, + "min_y": 6154.9768955954, + "max_x": 1886.8114899759241, + "max_y": 6159.0268955954, + "center": [ + 1880.736489975924, + 6157.0018955954 + ] + }, + "raw_value": "2,515", + "clean_value": "2,515", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526452", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1874.661489975924, + "min_y": 6142.8268955954, + "max_x": 1886.8114899759241, + "max_y": 6146.8768955954, + "center": [ + 1880.736489975924, + 6144.8518955954005 + ] + }, + "raw_value": "2,515", + "clean_value": "2,515", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526453", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1872.196184364701, + "min_y": 6130.6768955954, + "max_x": 1889.206184364701, + "max_y": 6134.7268955954005, + "center": [ + 1880.701184364701, + 6132.701895595401 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526454", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1873.781893282537, + "min_y": 6118.5268955954, + "max_x": 1885.9318932825372, + "max_y": 6122.5768955954, + "center": [ + 1879.8568932825372, + 6120.551895595399 + ] + }, + "raw_value": "15~32", + "clean_value": "15~32", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526455", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1870.210243733439, + "min_y": 6179.2768955954, + "max_x": 1887.220243733439, + "max_y": 6183.3268955954, + "center": [ + 1878.715243733439, + 6181.301895595399 + ] + }, + "raw_value": "PRODUCT", + "clean_value": "PRODUCT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526456", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6175.2268955954, + "max_x": 1657.634955657286, + "max_y": 6175.2268955954, + "center": [ + 1603.364955657286, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1549.094955657286, + 6175.2268955954 + ], + [ + 1657.634955657286, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526457", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1657.634955657286, + "min_y": 6175.2268955954, + "max_x": 1698.134955657286, + "max_y": 6175.2268955954, + "center": [ + 1677.884955657286, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1657.634955657286, + 6175.2268955954 + ], + [ + 1698.134955657286, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526458", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.134955657286, + "min_y": 6175.2268955954, + "max_x": 1738.634955657287, + "max_y": 6175.2268955954, + "center": [ + 1718.3849556572864, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.134955657286, + 6175.2268955954 + ], + [ + 1738.634955657287, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526459", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1738.634955657287, + "min_y": 6175.2268955954, + "max_x": 1779.134955657286, + "max_y": 6175.2268955954, + "center": [ + 1758.8849556572864, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.634955657287, + 6175.2268955954 + ], + [ + 1779.134955657286, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52645A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.134955657286, + "min_y": 6175.2268955954, + "max_x": 1819.634955657286, + "max_y": 6175.2268955954, + "center": [ + 1799.384955657286, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.134955657286, + 6175.2268955954 + ], + [ + 1819.634955657286, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52645B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.634955657286, + "min_y": 6175.2268955954, + "max_x": 1860.134955657287, + "max_y": 6175.2268955954, + "center": [ + 1839.8849556572864, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.634955657286, + 6175.2268955954 + ], + [ + 1860.134955657287, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52645C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.134955657287, + "min_y": 6175.2268955954, + "max_x": 1900.634955657286, + "max_y": 6175.2268955954, + "center": [ + 1880.3849556572864, + 6175.2268955954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.134955657287, + 6175.2268955954 + ], + [ + 1900.634955657286, + 6175.2268955954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52645D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1599.276244127083, + "min_y": 6167.126895595401, + "max_x": 1608.996244127083, + "max_y": 6171.176895595401, + "center": [ + 1604.136244127083, + 6169.151895595402 + ] + }, + "raw_value": "UNIT", + "clean_value": "UNIT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52645E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1561.446751137082, + "min_y": 6298.718994434485, + "max_x": 1775.385667900849, + "max_y": 6650.747521175929, + "center": [ + 1668.4162095189654, + 6474.733257805206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1561.446751137082, + 6650.747521175929 + ], + [ + 1775.385667900849, + 6650.747521175929 + ], + [ + 1775.385667900849, + 6298.718994434485 + ], + [ + 1561.446751137082, + 6298.718994434485 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "52645F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1567.602975751796, + "min_y": 6632.991853712258, + "max_x": 1597.602975751796, + "max_y": 6642.991853712258, + "center": [ + 1582.602975751796, + 6637.991853712258 + ] + }, + "raw_value": "기존 설비", + "clean_value": "기존 설비", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "526460", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1725.852770013765, + "min_y": 6525.479847105721, + "max_x": 1733.276771964609, + "max_y": 6525.479847105721, + "center": [ + 1729.5647709891869, + 6525.479847105721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.852770013765, + 6525.479847105721 + ], + [ + 1733.276771964609, + 6525.479847105721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526461", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1731.706043115599, + "min_y": 6521.279847105721, + "max_x": 1733.276771964609, + "max_y": 6521.279847105721, + "center": [ + 1732.4914075401039, + 6521.279847105721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.706043115599, + 6521.279847105721 + ], + [ + 1733.276771964609, + 6521.279847105721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526462", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1733.276771964608, + "min_y": 6521.279847105721, + "max_x": 1733.276771964609, + "max_y": 6525.479847105721, + "center": [ + 1733.2767719646085, + 6523.379847105722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.276771964608, + 6521.279847105721 + ], + [ + 1733.276771964609, + 6525.479847105721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526463", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1719.6741026322586, + "min_y": 6513.122512342708, + "max_x": 1732.0314373952713, + "max_y": 6525.479847105722, + "center": [ + 1725.852770013765, + 6519.301179724215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.852770013765, + 6519.301179724215 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526464", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1720.952770013765, + "min_y": 6511.428841462643, + "max_x": 1730.752770013765, + "max_y": 6511.428841462643, + "center": [ + 1725.8527700137652, + 6511.428841462643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.752770013765, + 6511.428841462643 + ], + [ + 1720.952770013765, + 6511.428841462643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526465", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.952770013765, + "min_y": 6511.428841462643, + "max_x": 1722.352770013765, + "max_y": 6514.209428491948, + "center": [ + 1721.652770013765, + 6512.819134977295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.952770013765, + 6511.428841462643 + ], + [ + 1722.352770013765, + 6514.209428491948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526466", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.352770013765, + "min_y": 6511.428841462643, + "max_x": 1730.752770013765, + "max_y": 6514.209428491948, + "center": [ + 1730.052770013765, + 6512.819134977295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.752770013765, + 6511.428841462643 + ], + [ + 1729.352770013765, + 6514.209428491948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526467", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1705.763581013334, + "min_y": 6519.301179724215, + "max_x": 1725.852770013765, + "max_y": 6519.301179724215, + "center": [ + 1715.8081755135495, + 6519.301179724215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.763581013334, + 6519.301179724215 + ], + [ + 1725.852770013765, + 6519.301179724215 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526468", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1718.000796334068, + "min_y": 6504.20555273532, + "max_x": 1736.000796334068, + "max_y": 6509.20555273532, + "center": [ + 1727.000796334068, + 6506.70555273532 + ] + }, + "raw_value": "P-9102", + "clean_value": "P-9102", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526469", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.603581013333, + "min_y": 6513.659067658416, + "max_x": 1664.603581013333, + "max_y": 6561.345409901346, + "center": [ + 1664.603581013333, + 6537.502238779881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.603581013333, + 6513.659067658416 + ], + [ + 1664.603581013333, + 6561.345409901346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.251974099031, + "min_y": 6513.659067658416, + "max_x": 1693.860034553666, + "max_y": 6513.659067658416, + "center": [ + 1678.0560043263486, + 6513.659067658416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.251974099031, + 6513.659067658416 + ], + [ + 1693.860034553666, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.763581013334, + "min_y": 6513.659067658416, + "max_x": 1708.115187927636, + "max_y": 6513.659067658416, + "center": [ + 1706.439384470485, + 6513.659067658416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.763581013334, + 6513.659067658416 + ], + [ + 1708.115187927636, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.251974099031, + "min_y": 6510.355389383135, + "max_x": 1662.251974099031, + "max_y": 6513.659067658416, + "center": [ + 1662.251974099031, + 6512.007228520775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.251974099031, + 6510.355389383135 + ], + [ + 1662.251974099031, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.251974099031, + "min_y": 6510.355389383135, + "max_x": 1708.115187927636, + "max_y": 6510.355389383135, + "center": [ + 1685.1835810133334, + 6510.355389383135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.251974099031, + 6510.355389383135 + ], + [ + 1708.115187927636, + 6510.355389383135 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.115187927636, + "min_y": 6510.355389383135, + "max_x": 1708.115187927636, + "max_y": 6513.659067658416, + "center": [ + 1708.115187927636, + 6512.007228520775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.115187927636, + 6510.355389383135 + ], + [ + 1708.115187927636, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52646F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.603581013333, + "min_y": 6561.345409901346, + "max_x": 1685.183581013333, + "max_y": 6568.664684631703, + "center": [ + 1674.893581013333, + 6565.005047266524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.603581013333, + 6561.345409901346 + ], + [ + 1685.183581013333, + 6568.664684631703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526470", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.183581013333, + "min_y": 6561.345409901346, + "max_x": 1705.763581013334, + "max_y": 6568.664684631703, + "center": [ + 1695.4735810133334, + 6565.005047266524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.763581013334, + 6561.345409901346 + ], + [ + 1685.183581013333, + 6568.664684631703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526471", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.763581013334, + "min_y": 6513.659067658416, + "max_x": 1705.763581013334, + "max_y": 6561.345409901346, + "center": [ + 1705.763581013334, + 6537.502238779881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.763581013334, + 6561.345409901346 + ], + [ + 1705.763581013334, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526472", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1661.632368101244, + "min_y": 6553.906766244954, + "max_x": 1664.603581013333, + "max_y": 6553.906766244954, + "center": [ + 1663.1179745572886, + 6553.906766244954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.603581013333, + 6553.906766244954 + ], + [ + 1661.632368101244, + 6553.906766244954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526473", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1661.632368101244, + "min_y": 6552.211806087801, + "max_x": 1661.632368101244, + "max_y": 6555.601726402108, + "center": [ + 1661.632368101244, + 6553.906766244954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.632368101244, + 6552.211806087801 + ], + [ + 1661.632368101244, + 6555.601726402108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526474", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1680.9097587871631, + "min_y": 6518.220391555562, + "max_x": 1689.385425987163, + "max_y": 6526.696058755562, + "center": [ + 1685.147592387163, + 6522.458225155562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.147592387163, + 6522.458225155562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526475", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1682.739029173399, + "min_y": 6521.033109914125, + "max_x": 1686.339029173399, + "max_y": 6524.033109914125, + "center": [ + 1684.539029173399, + 6522.533109914125 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526477", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1664.603581013333, + "min_y": 6553.906766244954, + "max_x": 1669.603581013333, + "max_y": 6553.906766244954, + "center": [ + 1667.103581013333, + 6553.906766244954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.603581013333, + 6553.906766244954 + ], + [ + 1669.603581013333, + 6553.906766244954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526478", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1669.603581013333, + "min_y": 6518.906766244954, + "max_x": 1669.603581013333, + "max_y": 6553.906766244954, + "center": [ + 1669.603581013333, + 6536.406766244954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1669.603581013333, + 6553.906766244954 + ], + [ + 1669.603581013333, + 6518.906766244954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526479", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1693.860034553666, + "min_y": 6511.752046495466, + "max_x": 1704.763581013334, + "max_y": 6511.752046495466, + "center": [ + 1699.3118077835002, + 6511.752046495466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.763581013334, + 6511.752046495466 + ], + [ + 1693.860034553666, + 6511.752046495466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647A", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1693.860034553666, + "min_y": 6511.752046495466, + "max_x": 1693.860034553666, + "max_y": 6513.659067658416, + "center": [ + 1693.860034553666, + 6512.705557076941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.860034553666, + 6511.752046495466 + ], + [ + 1693.860034553666, + 6513.659067658416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647B", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1697.453970957839, + "min_y": 6564.300721801166, + "max_x": 1697.453970957839, + "max_y": 6567.820927315446, + "center": [ + 1697.453970957839, + 6566.060824558306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.453970957839, + 6564.300721801166 + ], + [ + 1697.453970957839, + 6567.820927315446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647C", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1692.977933700955, + "min_y": 6565.892623957942, + "max_x": 1692.977933700955, + "max_y": 6567.820927315446, + "center": [ + 1692.977933700955, + 6566.856775636694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.977933700955, + 6567.820927315446 + ], + [ + 1692.977933700955, + 6565.892623957942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647D", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1691.917625746515, + "min_y": 6567.860212467242, + "max_x": 1698.324019413116, + "max_y": 6567.860212467242, + "center": [ + 1695.1208225798155, + 6567.860212467242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.917625746515, + 6567.860212467242 + ], + [ + 1698.324019413116, + 6567.860212467242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647E", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1691.917625746515, + "min_y": 6568.860212467242, + "max_x": 1698.324019413116, + "max_y": 6568.860212467242, + "center": [ + 1695.1208225798155, + 6568.860212467242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.917625746515, + 6568.860212467242 + ], + [ + 1698.324019413116, + 6568.860212467242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52647F", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1704.763581013334, + "min_y": 6511.752046495466, + "max_x": 1704.763581013334, + "max_y": 6513.659067658416, + "center": [ + 1704.763581013334, + 6512.705557076941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.763581013334, + 6513.659067658416 + ], + [ + 1704.763581013334, + 6511.752046495466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526481", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.535188495717, + "min_y": 6553.906766244954, + "max_x": 1661.632368101239, + "max_y": 6553.906766244954, + "center": [ + 1656.0837782984781, + 6553.906766244954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.632368101239, + 6553.906766244954 + ], + [ + 1650.535188495717, + 6553.906766244954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526482", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.535188495717, + "min_y": 6521.25654017763, + "max_x": 1650.535188495717, + "max_y": 6553.906766244954, + "center": [ + 1650.535188495717, + 6537.581653211292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.535188495717, + 6553.906766244954 + ], + [ + 1650.535188495717, + 6521.25654017763 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526483", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1641.402666831827, + "min_y": 6521.25654017763, + "max_x": 1650.535188495717, + "max_y": 6521.25654017763, + "center": [ + 1645.9689276637719, + 6521.25654017763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.535188495717, + 6521.25654017763 + ], + [ + 1641.402666831827, + 6521.25654017763 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526484", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1633.978664880984, + "min_y": 6523.35654017763, + "max_x": 1641.402666831827, + "max_y": 6523.35654017763, + "center": [ + 1637.6906658564055, + 6523.35654017763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1633.978664880984, + 6523.35654017763 + ], + [ + 1641.402666831827, + 6523.35654017763 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526485", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1639.831937982817, + "min_y": 6519.15654017763, + "max_x": 1641.402666831827, + "max_y": 6519.15654017763, + "center": [ + 1640.6173024073219, + 6519.15654017763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1639.831937982817, + 6519.15654017763 + ], + [ + 1641.402666831827, + 6519.15654017763 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526486", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1641.402666831827, + "min_y": 6519.15654017763, + "max_x": 1641.402666831827, + "max_y": 6523.35654017763, + "center": [ + 1641.402666831827, + 6521.25654017763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1641.402666831827, + 6519.15654017763 + ], + [ + 1641.402666831827, + 6523.35654017763 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526487", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1627.7999974994777, + "min_y": 6510.999205414617, + "max_x": 1640.1573322624904, + "max_y": 6523.35654017763, + "center": [ + 1633.978664880984, + 6517.177872796124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1633.978664880984, + 6517.177872796124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526488", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1629.078664880983, + "min_y": 6509.305534534551, + "max_x": 1638.878664880984, + "max_y": 6509.305534534551, + "center": [ + 1633.9786648809836, + 6509.305534534551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1638.878664880984, + 6509.305534534551 + ], + [ + 1629.078664880983, + 6509.305534534551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526489", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1629.078664880983, + "min_y": 6509.305534534551, + "max_x": 1630.478664880984, + "max_y": 6512.086121563855, + "center": [ + 1629.7786648809836, + 6510.695828049204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1629.078664880983, + 6509.305534534551 + ], + [ + 1630.478664880984, + 6512.086121563855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52648A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1637.478664880983, + "min_y": 6509.305534534551, + "max_x": 1638.878664880984, + "max_y": 6512.086121563855, + "center": [ + 1638.1786648809834, + 6510.695828049204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1638.878664880984, + 6509.305534534551 + ], + [ + 1637.478664880983, + 6512.086121563855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52648C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1617.553960685867, + "min_y": 6517.177872796124, + "max_x": 1633.978664880984, + "max_y": 6517.177872796124, + "center": [ + 1625.7663127834255, + 6517.177872796124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1633.978664880984, + 6517.177872796124 + ], + [ + 1617.553960685867, + 6517.177872796124 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52648D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1584.47323133216, + "min_y": 6521.396382534913, + "max_x": 1590.799698299943, + "max_y": 6521.396382534913, + "center": [ + 1587.6364648160516, + 6521.396382534913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.799698299943, + 6521.396382534913 + ], + [ + 1584.47323133216, + 6521.396382534913 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52648E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1585.004488089968, + "min_y": 6520.396382534913, + "max_x": 1588.647525416589, + "max_y": 6520.396382534913, + "center": [ + 1586.8260067532783, + 6520.396382534913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1588.647525416589, + 6520.396382534913 + ], + [ + 1585.004488089968, + 6520.396382534913 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52648F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1578.963071962971, + "min_y": 6513.239661954159, + "max_x": 1584.47323133216, + "max_y": 6521.396382534913, + "center": [ + 1581.7181516475655, + 6517.318022244535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1584.47323133216, + 6521.396382534913 + ], + [ + 1578.963071962971, + 6513.239661954159 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526490", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.163822519025, + "min_y": 6514.71102321818, + "max_x": 1585.004488089968, + "max_y": 6520.396382534913, + "center": [ + 1583.0841553044966, + 6517.553702876547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.004488089968, + 6520.396382534913 + ], + [ + 1581.163822519025, + 6514.71102321818 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526491", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1578.963071962971, + "min_y": 6507.631903527164, + "max_x": 1578.963071962971, + "max_y": 6513.239661954159, + "center": [ + 1578.963071962971, + 6510.435782740661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1578.963071962971, + 6513.239661954159 + ], + [ + 1578.963071962971, + 6507.631903527164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526492", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1578.963071962971, + "min_y": 6507.631903527164, + "max_x": 1582.009970195828, + "max_y": 6507.631903527164, + "center": [ + 1580.4865210793996, + 6507.631903527164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1578.963071962971, + 6507.631903527164 + ], + [ + 1582.009970195828, + 6507.631903527164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526493", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1589.602701677698, + "min_y": 6507.631903527164, + "max_x": 1590.799698299943, + "max_y": 6507.631903527164, + "center": [ + 1590.2011999888205, + 6507.631903527164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1589.602701677698, + 6507.631903527164 + ], + [ + 1590.799698299943, + 6507.631903527164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526494", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.799698299943, + "min_y": 6507.631903527164, + "max_x": 1590.799698299943, + "max_y": 6521.396382534913, + "center": [ + 1590.799698299943, + 6514.514143031038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.799698299943, + 6507.631903527164 + ], + [ + 1590.799698299943, + 6521.396382534913 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526495", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1588.647525416589, + "min_y": 6514.71102321818, + "max_x": 1588.647525416589, + "max_y": 6520.396382534913, + "center": [ + 1588.647525416589, + 6517.553702876547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1588.647525416589, + 6514.71102321818 + ], + [ + 1588.647525416589, + 6520.396382534913 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526496", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.799698299943, + "min_y": 6511.506358593881, + "max_x": 1590.799698299943, + "max_y": 6511.506358593881, + "center": [ + 1590.799698299943, + 6511.506358593881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.799698299943, + 6511.506358593881 + ], + [ + 1590.799698299943, + 6511.506358593881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526497", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.799698299943, + "min_y": 6509.911556537421, + "max_x": 1608.329145235236, + "max_y": 6509.911556537421, + "center": [ + 1599.5644217675895, + 6509.911556537421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1590.799698299943, + 6509.911556537421 + ], + [ + 1608.329145235236, + 6509.911556537421 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526498", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1608.680595543499, + "min_y": 6509.911556537421, + "max_x": 1610.339046291034, + "max_y": 6509.911556537421, + "center": [ + 1609.5098209172666, + 6509.911556537421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1608.680595543499, + 6509.911556537421 + ], + [ + 1610.339046291034, + 6509.911556537421 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526499", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1612.271036400705, + "min_y": 6509.911556537421, + "max_x": 1613.929487148241, + "max_y": 6509.911556537421, + "center": [ + 1613.100261774473, + 6509.911556537421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1612.271036400705, + 6509.911556537421 + ], + [ + 1613.929487148241, + 6509.911556537421 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1614.280937456504, + "min_y": 6509.911556537421, + "max_x": 1617.228078132036, + "max_y": 6509.911556537421, + "center": [ + 1615.75450779427, + 6509.911556537421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1614.280937456504, + 6509.911556537421 + ], + [ + 1617.228078132036, + 6509.911556537421 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1617.228078132036, + "min_y": 6509.911556537421, + "max_x": 1617.228078132036, + "max_y": 6511.848774596067, + "center": [ + 1617.228078132036, + 6510.880165566745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1617.228078132036, + 6509.911556537421 + ], + [ + 1617.228078132036, + 6511.848774596067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1590.799698299943, + "min_y": 6511.848774596067, + "max_x": 1617.228078132036, + "max_y": 6511.848774596067, + "center": [ + 1604.0138882159895, + 6511.848774596067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1617.228078132036, + 6511.848774596067 + ], + [ + 1590.799698299943, + 6511.848774596067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1582.8536238861927, + "min_y": 6504.168618329777, + "max_x": 1588.7590479873331, + "max_y": 6510.074042430917, + "center": [ + 1585.806335936763, + 6507.121330380347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.806335936763, + 6507.121330380347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1581.9757905738677, + "min_y": 6503.2907850174515, + "max_x": 1589.6368812996582, + "max_y": 6510.951875743242, + "center": [ + 1585.806335936763, + 6507.121330380347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1585.806335936763, + 6507.121330380347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52649F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1608.3523292952998, + "min_y": 6504.168618329777, + "max_x": 1614.2577533964402, + "max_y": 6510.074042430917, + "center": [ + 1611.30504134587, + 6507.121330380347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1611.30504134587, + 6507.121330380347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1607.4744959829748, + "min_y": 6503.2907850174515, + "max_x": 1615.1355867087652, + "max_y": 6510.951875743242, + "center": [ + 1611.30504134587, + 6507.121330380347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1611.30504134587, + 6507.121330380347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1607.2256639829748, + "min_y": 6503.041953017451, + "max_x": 1615.3844187087652, + "max_y": 6511.200707743243, + "center": [ + 1611.30504134587, + 6507.121330380347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1611.30504134587, + 6507.121330380347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1615.101407086805, + "min_y": 6507.631903527164, + "max_x": 1615.348018780587, + "max_y": 6507.665070328553, + "center": [ + 1615.224712933696, + 6507.648486927858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1615.101407086805, + 6507.631903527164 + ], + [ + 1615.348018780587, + 6507.665070328553 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1607.262063911154, + "min_y": 6507.631903527164, + "max_x": 1607.508675604934, + "max_y": 6507.665070328553, + "center": [ + 1607.385369758044, + 6507.648486927858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1607.508675604934, + 6507.631903527164 + ], + [ + 1607.262063911154, + 6507.665070328553 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.105720091583, + "min_y": 6521.585794919897, + "max_x": 1615.578640542106, + "max_y": 6521.585794919897, + "center": [ + 1604.8421803168444, + 6521.585794919897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.105720091583, + 6521.585794919897 + ], + [ + 1615.578640542106, + 6521.585794919897 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1594.057370097615, + "min_y": 6512.781936711525, + "max_x": 1615.530290548139, + "max_y": 6512.781936711525, + "center": [ + 1604.793830322877, + 6512.781936711525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1594.057370097615, + 6512.781936711525 + ], + [ + 1615.530290548139, + 6512.781936711525 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1581.163822519025, + "min_y": 6514.71102321818, + "max_x": 1588.647525416589, + "max_y": 6514.71102321818, + "center": [ + 1584.905673967807, + 6514.71102321818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1581.163822519025, + 6514.71102321818 + ], + [ + 1588.647525416589, + 6514.71102321818 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.276771964608, + "min_y": 6523.379847105721, + "max_x": 1889.928671453157, + "max_y": 6523.379847105721, + "center": [ + 1811.6027217088827, + 6523.379847105721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.276771964608, + 6523.379847105721 + ], + [ + 1889.928671453157, + 6523.379847105721 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264AA", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1679.568472828981, + "min_y": 6503.759226618895, + "max_x": 1697.568472828981, + "max_y": 6508.759226618895, + "center": [ + 1688.568472828981, + 6506.259226618895 + ] + }, + "raw_value": "T-3101", + "clean_value": "T-3101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264AB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 1626.94710630784, + "min_y": 6503.284681226016, + "max_x": 1644.94710630784, + "max_y": 6508.284681226016, + "center": [ + 1635.94710630784, + 6505.784681226016 + ] + }, + "raw_value": "P-3101", + "clean_value": "P-3101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1889.928671453157, + "min_y": 6300.861432918742, + "max_x": 1889.928671453157, + "max_y": 6523.379847105721, + "center": [ + 1889.928671453157, + 6412.120640012232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.928671453157, + 6523.379847105721 + ], + [ + 1889.928671453157, + 6300.861432918742 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1884.26428000546, + "min_y": 6300.861432918742, + "max_x": 1884.26428000546, + "max_y": 6380.173120179571, + "center": [ + 1884.26428000546, + 6340.517276549157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.26428000546, + 6380.173120179571 + ], + [ + 1884.26428000546, + 6300.861432918742 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2087.986242677235, + "min_y": 6366.754342739377, + "max_x": 2087.986242677237, + "max_y": 6375.542789845449, + "center": [ + 2087.986242677236, + 6371.148566292413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.986242677237, + 6375.542789845449 + ], + [ + 2087.986242677235, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6366.754342739377, + "max_x": 2079.986242677236, + "max_y": 6375.542789845449, + "center": [ + 2079.986242677236, + 6371.148566292413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.986242677236, + 6375.542789845449 + ], + [ + 2079.986242677236, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6397.542789845449, + "max_x": 2079.986242677236, + "max_y": 6401.542789845449, + "center": [ + 2079.986242677236, + 6399.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.986242677236, + 6401.542789845449 + ], + [ + 2079.986242677236, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2087.986242677237, + "min_y": 6397.542789845449, + "max_x": 2087.986242677237, + "max_y": 6401.542789845449, + "center": [ + 2087.986242677237, + 6399.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.986242677237, + 6401.542789845449 + ], + [ + 2087.986242677237, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6376.542789845449, + "max_x": 2079.986242677236, + "max_y": 6396.542789845449, + "center": [ + 2079.986242677236, + 6386.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.986242677236, + 6396.542789845449 + ], + [ + 2079.986242677236, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2087.986242677237, + "min_y": 6376.542789845449, + "max_x": 2087.986242677237, + "max_y": 6396.542789845449, + "center": [ + 2087.986242677237, + 6386.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.986242677237, + 6396.542789845449 + ], + [ + 2087.986242677237, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6375.542789845449, + "max_x": 2089.986242677236, + "max_y": 6375.542789845449, + "center": [ + 2083.9862426772365, + 6375.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.986242677236, + 6375.542789845449 + ], + [ + 2077.986242677237, + 6375.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6376.542789845449, + "max_x": 2089.986242677236, + "max_y": 6376.542789845449, + "center": [ + 2083.9862426772365, + 6376.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.986242677236, + 6376.542789845449 + ], + [ + 2077.986242677237, + 6376.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6397.542789845449, + "max_x": 2089.986242677237, + "max_y": 6397.542789845449, + "center": [ + 2083.986242677237, + 6397.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.986242677237, + 6397.542789845449 + ], + [ + 2077.986242677237, + 6397.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2077.986242677237, + "min_y": 6396.542789845449, + "max_x": 2089.986242677237, + "max_y": 6396.542789845449, + "center": [ + 2083.986242677237, + 6396.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2089.986242677237, + 6396.542789845449 + ], + [ + 2077.986242677237, + 6396.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6401.542789845449, + "max_x": 2087.986242677237, + "max_y": 6401.542789845449, + "center": [ + 2083.9862426772365, + 6401.542789845449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2079.986242677236, + 6401.542789845449 + ], + [ + 2087.986242677237, + 6401.542789845449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2079.986242677236, + "min_y": 6366.754342739377, + "max_x": 2087.986242677235, + "max_y": 6366.754342739377, + "center": [ + 2083.9862426772356, + 6366.754342739377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2087.986242677235, + 6366.754342739377 + ], + [ + 2079.986242677236, + 6366.754342739377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2083.986242677237, + "min_y": 6401.542789845449, + "max_x": 2083.986242677237, + "max_y": 6406.623129675044, + "center": [ + 2083.986242677237, + 6404.082959760246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.986242677237, + 6401.542789845449 + ], + [ + 2083.986242677237, + 6406.623129675044 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2083.986242677235, + "min_y": 6357.676965768449, + "max_x": 2083.986242677235, + "max_y": 6366.754342739377, + "center": [ + 2083.986242677235, + 6362.215654253912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.986242677235, + 6366.754342739377 + ], + [ + 2083.986242677235, + 6357.676965768449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264BC", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2091.366364961085, + "min_y": 6366.754342739377, + "max_x": 2115.366364961085, + "max_y": 6371.754342739377, + "center": [ + 2103.366364961085, + 6369.254342739377 + ] + }, + "raw_value": "E-10115B", + "clean_value": "E-10115B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2058.06018449754, + "min_y": 6406.623129675044, + "max_x": 2083.986242677237, + "max_y": 6406.623129675044, + "center": [ + 2071.0232135873885, + 6406.623129675044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.986242677237, + 6406.623129675044 + ], + [ + 2058.06018449754, + 6406.623129675044 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.06018449754, + "min_y": 6357.676965768449, + "max_x": 2083.986242677235, + "max_y": 6357.676965768449, + "center": [ + 2067.5232135873875, + 6357.676965768449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2083.986242677235, + 6357.676965768449 + ], + [ + 2051.06018449754, + 6357.676965768449 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264BF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.581085121488, + "min_y": 6412.594975910764, + "max_x": 2441.581085121488, + "max_y": 6417.594975910764, + "center": [ + 2432.581085121488, + 6415.094975910764 + ] + }, + "raw_value": "T-6121", + "clean_value": "T-6121", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6411.277044328639, + "max_x": 2441.566172911609, + "max_y": 6411.277044328639, + "center": [ + 2431.6345989930755, + 6411.277044328639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6411.277044328639 + ], + [ + 2441.566172911609, + 6411.277044328639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6418.95367775918, + "max_x": 2441.566172911609, + "max_y": 6418.95367775918, + "center": [ + 2431.6345989930755, + 6418.95367775918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6418.95367775918 + ], + [ + 2441.566172911609, + 6418.95367775918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6411.277044328639, + "max_x": 2421.703025074542, + "max_y": 6418.95367775918, + "center": [ + 2421.703025074542, + 6415.11536104391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6418.95367775918 + ], + [ + 2421.703025074542, + 6411.277044328639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6411.277044328639, + "max_x": 2444.719546555842, + "max_y": 6415.115361043909, + "center": [ + 2443.1428597337253, + 6413.196202686274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6415.115361043909 + ], + [ + 2441.566172911609, + 6411.277044328639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6415.115361043909, + "max_x": 2444.719546555842, + "max_y": 6418.95367775918, + "center": [ + 2443.1428597337253, + 6417.0345194015445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6415.115361043909 + ], + [ + 2441.566172911609, + 6418.95367775918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6415.115361043909, + "max_x": 2421.703025074542, + "max_y": 6415.115361043909, + "center": [ + 2309.423662087326, + 6415.115361043909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6415.115361043909 + ], + [ + 2421.703025074542, + 6415.115361043909 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264C6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.706002578909, + "min_y": 6399.978312711375, + "max_x": 2441.706002578909, + "max_y": 6404.978312711375, + "center": [ + 2432.706002578909, + 6402.478312711375 + ] + }, + "raw_value": "T-6122", + "clean_value": "T-6122", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6398.594424711733, + "max_x": 2441.566172911609, + "max_y": 6398.594424711733, + "center": [ + 2431.6345989930755, + 6398.594424711733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6398.594424711733 + ], + [ + 2441.566172911609, + 6398.594424711733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6406.271058142272, + "max_x": 2441.566172911609, + "max_y": 6406.271058142272, + "center": [ + 2431.6345989930755, + 6406.271058142272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6406.271058142272 + ], + [ + 2441.566172911609, + 6406.271058142272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264C9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6398.594424711733, + "max_x": 2421.703025074542, + "max_y": 6406.271058142272, + "center": [ + 2421.703025074542, + 6402.432741427003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6406.271058142272 + ], + [ + 2421.703025074542, + 6398.594424711733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264CA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6398.594424711733, + "max_x": 2444.719546555842, + "max_y": 6402.432741427003, + "center": [ + 2443.1428597337253, + 6400.513583069368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6402.432741427003 + ], + [ + 2441.566172911609, + 6398.594424711733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264CB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6402.432741427003, + "max_x": 2444.719546555842, + "max_y": 6406.271058142272, + "center": [ + 2443.1428597337253, + 6404.351899784637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6402.432741427003 + ], + [ + 2441.566172911609, + 6406.271058142272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6402.432741427003, + "max_x": 2421.703025074542, + "max_y": 6402.432741427003, + "center": [ + 2309.423662087326, + 6402.432741427003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6402.432741427003 + ], + [ + 2421.703025074542, + 6402.432741427003 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264CD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.706002578909, + "min_y": 6387.986236799083, + "max_x": 2441.706002578909, + "max_y": 6392.986236799083, + "center": [ + 2432.706002578909, + 6390.486236799083 + ] + }, + "raw_value": "T-6125", + "clean_value": "T-6125", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264CE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6386.597352101145, + "max_x": 2441.566172911609, + "max_y": 6386.597352101145, + "center": [ + 2431.6345989930755, + 6386.597352101145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6386.597352101145 + ], + [ + 2441.566172911609, + 6386.597352101145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264CF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6394.273985531685, + "max_x": 2441.566172911609, + "max_y": 6394.273985531685, + "center": [ + 2431.6345989930755, + 6394.273985531685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6394.273985531685 + ], + [ + 2441.566172911609, + 6394.273985531685 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6386.597352101145, + "max_x": 2421.703025074542, + "max_y": 6394.273985531685, + "center": [ + 2421.703025074542, + 6390.435668816415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6394.273985531685 + ], + [ + 2421.703025074542, + 6386.597352101145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6386.597352101145, + "max_x": 2444.719546555842, + "max_y": 6390.435668816415, + "center": [ + 2443.1428597337253, + 6388.5165104587795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6390.435668816415 + ], + [ + 2441.566172911609, + 6386.597352101145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6390.435668816415, + "max_x": 2444.719546555842, + "max_y": 6394.273985531685, + "center": [ + 2443.1428597337253, + 6392.35482717405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6390.435668816415 + ], + [ + 2441.566172911609, + 6394.273985531685 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6390.435668816415, + "max_x": 2421.703025074542, + "max_y": 6390.435668816415, + "center": [ + 2309.423662087326, + 6390.435668816415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6390.435668816415 + ], + [ + 2421.703025074542, + 6390.435668816415 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264D4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.830920036328, + "min_y": 6375.744325971953, + "max_x": 2441.830920036328, + "max_y": 6380.744325971953, + "center": [ + 2432.830920036328, + 6378.244325971953 + ] + }, + "raw_value": "T-6126", + "clean_value": "T-6126", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6374.257505987397, + "max_x": 2441.566172911609, + "max_y": 6374.257505987397, + "center": [ + 2431.6345989930755, + 6374.257505987397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6374.257505987397 + ], + [ + 2441.566172911609, + 6374.257505987397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6381.934139417937, + "max_x": 2441.566172911609, + "max_y": 6381.934139417937, + "center": [ + 2431.6345989930755, + 6381.934139417937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6381.934139417937 + ], + [ + 2441.566172911609, + 6381.934139417937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6374.257505987397, + "max_x": 2421.703025074542, + "max_y": 6381.934139417937, + "center": [ + 2421.703025074542, + 6378.095822702668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6381.934139417937 + ], + [ + 2421.703025074542, + 6374.257505987397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6374.257505987397, + "max_x": 2444.719546555842, + "max_y": 6378.095822702668, + "center": [ + 2443.1428597337253, + 6376.176664345032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6378.095822702668 + ], + [ + 2441.566172911609, + 6374.257505987397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264D9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6378.095822702668, + "max_x": 2444.719546555842, + "max_y": 6381.934139417937, + "center": [ + 2443.1428597337253, + 6380.0149810603025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6378.095822702668 + ], + [ + 2441.566172911609, + 6381.934139417937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6378.095822702668, + "max_x": 2421.703025074542, + "max_y": 6378.095822702668, + "center": [ + 2309.423662087326, + 6378.095822702668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6378.095822702668 + ], + [ + 2421.703025074542, + 6378.095822702668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264DB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.955837493747, + "min_y": 6364.251919889341, + "max_x": 2441.955837493747, + "max_y": 6369.251919889341, + "center": [ + 2432.955837493747, + 6366.751919889341 + ] + }, + "raw_value": "T-9125", + "clean_value": "T-9125", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264DC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6362.60320687997, + "max_x": 2441.566172911609, + "max_y": 6362.60320687997, + "center": [ + 2431.6345989930755, + 6362.60320687997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6362.60320687997 + ], + [ + 2441.566172911609, + 6362.60320687997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264DD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6370.279840310509, + "max_x": 2441.566172911609, + "max_y": 6370.279840310509, + "center": [ + 2431.6345989930755, + 6370.279840310509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6370.279840310509 + ], + [ + 2441.566172911609, + 6370.279840310509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264DE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6362.60320687997, + "max_x": 2421.703025074542, + "max_y": 6370.279840310509, + "center": [ + 2421.703025074542, + 6366.441523595239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6370.279840310509 + ], + [ + 2421.703025074542, + 6362.60320687997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264DF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6362.60320687997, + "max_x": 2444.719546555842, + "max_y": 6366.44152359524, + "center": [ + 2443.1428597337253, + 6364.522365237604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6366.44152359524 + ], + [ + 2441.566172911609, + 6362.60320687997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6366.44152359524, + "max_x": 2444.719546555842, + "max_y": 6370.279840310509, + "center": [ + 2443.1428597337253, + 6368.360681952874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6366.44152359524 + ], + [ + 2441.566172911609, + 6370.279840310509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6366.44152359524, + "max_x": 2421.703025074542, + "max_y": 6366.44152359524, + "center": [ + 2309.423662087326, + 6366.44152359524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6366.44152359524 + ], + [ + 2421.703025074542, + 6366.44152359524 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264E2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2393.471154971436, + "min_y": 6346.86479909647, + "max_x": 2453.264564862605, + "max_y": 6421.538897319011, + "center": [ + 2423.3678599170207, + 6384.20184820774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.471154971436, + 6421.538897319011 + ], + [ + 2453.264564862605, + 6421.538897319011 + ], + [ + 2453.264564862605, + 6346.86479909647 + ], + [ + 2393.471154971436, + 6346.86479909647 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5264E3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2395.428669136947, + "min_y": 6326.86479909647, + "max_x": 2425.428669136947, + "max_y": 6336.86479909647, + "center": [ + 2410.428669136947, + 6331.86479909647 + ] + }, + "raw_value": "기존 설비", + "clean_value": "기존 설비", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5264E5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6607.910506932666, + "max_x": 1754.955535133703, + "max_y": 6612.910506932666, + "center": [ + 1738.455535133703, + 6610.410506932666 + ] + }, + "raw_value": "T-9123/9124", + "clean_value": "T-9123/9124", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6606.349034673766, + "max_x": 1755.69352102391, + "max_y": 6606.349034673766, + "center": [ + 1738.8245280788065, + 6606.349034673766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6606.349034673766 + ], + [ + 1755.69352102391, + 6606.349034673766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6614.025668104305, + "max_x": 1755.69352102391, + "max_y": 6614.025668104305, + "center": [ + 1738.8245280788065, + 6614.025668104305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6614.025668104305 + ], + [ + 1755.69352102391, + 6614.025668104305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1721.955535133703, + "min_y": 6606.349034673766, + "max_x": 1721.955535133703, + "max_y": 6614.025668104305, + "center": [ + 1721.955535133703, + 6610.187351389035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.955535133703, + 6614.025668104305 + ], + [ + 1721.955535133703, + 6606.349034673766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264E9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1755.69352102391, + "min_y": 6606.349034673766, + "max_x": 1758.846894668144, + "max_y": 6610.187351389036, + "center": [ + 1757.270207846027, + 6608.268193031401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846894668144, + 6610.187351389036 + ], + [ + 1755.69352102391, + 6606.349034673766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264EA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1755.69352102391, + "min_y": 6610.187351389036, + "max_x": 1758.846894668144, + "max_y": 6614.025668104305, + "center": [ + 1757.270207846027, + 6612.106509746671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846894668144, + 6610.187351389036 + ], + [ + 1755.69352102391, + 6614.025668104305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1758.846894668144, + "min_y": 6610.187351389036, + "max_x": 1850.638965211876, + "max_y": 6610.187351389036, + "center": [ + 1804.74292994001, + 6610.187351389036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846894668144, + 6610.187351389036 + ], + [ + 1850.638965211876, + 6610.187351389036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.638965195007, + "min_y": 6296.782765537544, + "max_x": 1850.638965211869, + "max_y": 6610.187351389038, + "center": [ + 1850.638965203438, + 6453.485058463291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.638965211869, + 6610.187351389038 + ], + [ + 1850.638965195007, + 6296.782765537544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264F0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1557.466713903784, + "min_y": 6209.689163610392, + "max_x": 1647.466713903784, + "max_y": 6219.689163610392, + "center": [ + 1602.466713903784, + 6214.689163610392 + ] + }, + "raw_value": "PGMEA REFINE 공정", + "clean_value": "PGMEA REFINE 공정", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.665616454304, + "min_y": 6340.380372615861, + "max_x": 1726.665616454304, + "max_y": 6415.380372615861, + "center": [ + 1726.665616454304, + 6377.880372615861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.665616454304, + 6340.380372615861 + ], + [ + 1726.665616454304, + 6415.380372615861 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264F2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1726.665616454304, + "min_y": 6376.094452798064, + "max_x": 1740.343401288356, + "max_y": 6376.094452798064, + "center": [ + 1733.50450887133, + 6376.094452798064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.665616454304, + 6376.094452798064 + ], + [ + 1740.343401288356, + 6376.094452798064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5264F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.121543242498, + "min_y": 6354.719259206001, + "max_x": 1813.799851336548, + "max_y": 6354.719259206001, + "center": [ + 1802.960697289523, + 6354.719259206001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.799851336548, + 6354.719259206001 + ], + [ + 1792.121543242498, + 6354.719259206001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.488597377332, + "min_y": 6319.387202741784, + "max_x": 1833.488597377332, + "max_y": 6380.173120179571, + "center": [ + 1833.488597377332, + 6349.780161460678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.488597377332, + 6319.387202741784 + ], + [ + 1833.488597377332, + 6380.173120179571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5264F7", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2394.636138967057, + "min_y": 6676.685099067865, + "max_x": 2420.7667038095697, + "max_y": 6680.685099067865, + "center": [ + 2407.701421388313, + 6678.685099067865 + ] + }, + "raw_value": "\\pi1.22241;{\\W0.9;\\LSC-10128\\P\\pi-0.16484;\\lSCRUBBER}", + "clean_value": "\\pi1.22241; .9; SC-10128 \\pi-0.16484;\\lSCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264FB", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2375.812431377262, + "min_y": 6662.81432446577, + "max_x": 2469.3040396023157, + "max_y": 6666.81432446577, + "center": [ + 2422.558235489789, + 6664.81432446577 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C750 x 3,641L (30m3/min)\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 30 %%DC \\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5264FF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2291.834298836957, + "min_y": 6585.570262062233, + "max_x": 2315.834298836957, + "max_y": 6590.570262062233, + "center": [ + 2303.834298836957, + 6588.070262062233 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526500", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2423.955837493747, + "min_y": 6354.675195390571, + "max_x": 2441.955837493747, + "max_y": 6359.675195390571, + "center": [ + 2432.955837493747, + 6357.175195390571 + ] + }, + "raw_value": "T-9123", + "clean_value": "T-9123", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526501", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6353.0264823812, + "max_x": 2441.566172911609, + "max_y": 6353.0264823812, + "center": [ + 2431.6345989930755, + 6353.0264823812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6353.0264823812 + ], + [ + 2441.566172911609, + 6353.0264823812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526502", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6360.70311581174, + "max_x": 2441.566172911609, + "max_y": 6360.70311581174, + "center": [ + 2431.6345989930755, + 6360.70311581174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6360.70311581174 + ], + [ + 2441.566172911609, + 6360.70311581174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526503", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.703025074542, + "min_y": 6353.0264823812, + "max_x": 2421.703025074542, + "max_y": 6360.70311581174, + "center": [ + 2421.703025074542, + 6356.86479909647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.703025074542, + 6360.70311581174 + ], + [ + 2421.703025074542, + 6353.0264823812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526504", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6353.0264823812, + "max_x": 2444.719546555842, + "max_y": 6356.86479909647, + "center": [ + 2443.1428597337253, + 6354.945640738835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6356.86479909647 + ], + [ + 2441.566172911609, + 6353.0264823812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526505", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2441.566172911609, + "min_y": 6356.86479909647, + "max_x": 2444.719546555842, + "max_y": 6360.70311581174, + "center": [ + 2443.1428597337253, + 6358.783957454105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.719546555842, + 6356.86479909647 + ], + [ + 2441.566172911609, + 6360.70311581174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526506", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.14429910011, + "min_y": 6356.86479909647, + "max_x": 2421.703025074542, + "max_y": 6356.86479909647, + "center": [ + 2309.423662087326, + 6356.86479909647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.14429910011, + 6356.86479909647 + ], + [ + 2421.703025074542, + 6356.86479909647 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526507", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2101.385433376452, + "min_y": 6494.63423754788, + "max_x": 2109.225433376452, + "max_y": 6502.47423754788, + "center": [ + 2105.305433376452, + 6498.55423754788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2105.305433376452, + 6498.55423754788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526508", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.678010687073, + "min_y": 6495.393469661649, + "max_x": 2102.986824662296, + "max_y": 6498.55423754788, + "center": [ + 2100.8324176746846, + 6496.973853604764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2102.986824662296, + 6495.393469661649 + ], + [ + 2098.678010687073, + 6498.55423754788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526509", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2098.678010687073, + "min_y": 6498.55423754788, + "max_x": 2102.986824662296, + "max_y": 6501.715005434111, + "center": [ + 2100.8324176746846, + 6500.134621490995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2098.678010687073, + 6498.55423754788 + ], + [ + 2102.986824662296, + 6501.715005434111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52650A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2109.225433376453, + "min_y": 6498.55423754788, + "max_x": 2160.282560607711, + "max_y": 6498.55423754788, + "center": [ + 2134.7539969920817, + 6498.55423754788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.282560607711, + 6498.55423754788 + ], + [ + 2109.225433376453, + 6498.55423754788 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "52650B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1745.882078534836, + "min_y": 6154.9768955954, + "max_x": 1772.612078534836, + "max_y": 6159.0268955954, + "center": [ + 1759.247078534836, + 6157.0018955954 + ] + }, + "raw_value": "2,545~5,145", + "clean_value": "2,545~5,145", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52650C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1745.647301047018, + "min_y": 6142.8268955954, + "max_x": 1772.377301047018, + "max_y": 6146.8768955954, + "center": [ + 1759.012301047018, + 6144.8518955954005 + ] + }, + "raw_value": "2,545~5,145", + "clean_value": "2,545~5,145", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52650D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1750.767500962376, + "min_y": 6130.6768955954, + "max_x": 1767.777500962376, + "max_y": 6134.7268955954005, + "center": [ + 1759.272500962376, + 6132.701895595401 + ] + }, + "raw_value": "1.0~2.0", + "clean_value": "1.0~2.0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52650E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1752.353209880212, + "min_y": 6118.5268955954, + "max_x": 1764.5032098802121, + "max_y": 6122.5768955954, + "center": [ + 1758.428209880212, + 6120.551895595399 + ] + }, + "raw_value": "20~40", + "clean_value": "20~40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52650F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1758.846903019756, + "min_y": 6572.564443803909, + "max_x": 1848.083500012448, + "max_y": 6572.564443803909, + "center": [ + 1803.4652015161018, + 6572.564443803909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1758.846903019756, + 6572.564443803909 + ], + [ + 1848.083500012448, + 6572.564443803909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526510", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.478066358182, + "min_y": 6421.267023651527, + "max_x": 2011.478066358182, + "max_y": 6572.564443803909, + "center": [ + 2011.478066358182, + 6496.915733727717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.478066358182, + 6572.564443803909 + ], + [ + 2011.478066358182, + 6421.267023651527 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526511", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.478066358182, + "min_y": 6421.267023651527, + "max_x": 2044.060454472912, + "max_y": 6421.267023651527, + "center": [ + 2027.769260415547, + 6421.267023651527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.478066358182, + 6421.267023651527 + ], + [ + 2044.060454472912, + 6421.267023651527 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526513", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1777.48016407069, + "min_y": 6256.98029018994, + "max_x": 1798.48016407069, + "max_y": 6261.98029018994, + "center": [ + 1787.98016407069, + 6259.48029018994 + ] + }, + "raw_value": "T-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526514", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1767.784455816736, + "min_y": 6255.268057637949, + "max_x": 1801.522441706943, + "max_y": 6255.268057637949, + "center": [ + 1784.6534487618396, + 6255.268057637949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.784455816736, + 6255.268057637949 + ], + [ + 1801.522441706943, + 6255.268057637949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526515", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1767.784455816736, + "min_y": 6262.944691068488, + "max_x": 1801.522441706943, + "max_y": 6262.944691068488, + "center": [ + 1784.6534487618396, + 6262.944691068488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.784455816736, + 6262.944691068488 + ], + [ + 1801.522441706943, + 6262.944691068488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526516", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1767.784455816736, + "min_y": 6255.268057637949, + "max_x": 1767.784455816736, + "max_y": 6262.944691068488, + "center": [ + 1767.784455816736, + 6259.106374353219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.784455816736, + 6262.944691068488 + ], + [ + 1767.784455816736, + 6255.268057637949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526517", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1801.522441706943, + "min_y": 6255.268057637949, + "max_x": 1804.675815351177, + "max_y": 6259.106374353219, + "center": [ + 1803.0991285290602, + 6257.187215995584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1804.675815351177, + 6259.106374353219 + ], + [ + 1801.522441706943, + 6255.268057637949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526518", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1801.522441706943, + "min_y": 6259.106374353219, + "max_x": 1804.675815351177, + "max_y": 6262.944691068488, + "center": [ + 1803.0991285290602, + 6261.025532710853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1804.675815351177, + 6259.106374353219 + ], + [ + 1801.522441706943, + 6262.944691068488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526519", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1804.675815351177, + "min_y": 6259.106374353219, + "max_x": 1826.633799954028, + "max_y": 6259.106374353219, + "center": [ + 1815.6548076526026, + 6259.106374353219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1804.675815351177, + 6259.106374353219 + ], + [ + 1826.633799954028, + 6259.106374353219 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52651A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.633799954028, + "min_y": 6259.106374353219, + "max_x": 1826.633799954028, + "max_y": 6296.782765537236, + "center": [ + 1826.633799954028, + 6277.944569945227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.633799954028, + 6296.782765537236 + ], + [ + 1826.633799954028, + 6259.106374353219 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "52651B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.677403911003, + "min_y": 6572.564443803909, + "max_x": 2011.478066358182, + "max_y": 6572.564443803909, + "center": [ + 1933.0777351345926, + 6572.564443803909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.677403911003, + 6572.564443803909 + ], + [ + 2011.478066358182, + 6572.564443803909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "52651C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1907.775000755329, + "min_y": 6167.816491811305, + "max_x": 1960.311367389182, + "max_y": 6171.816491811305, + "center": [ + 1934.0431840722554, + 6169.816491811305 + ] + }, + "raw_value": "\\pi14.94308;{\\W0.9;\\LDP-10101\\P\\pi3.99898;DIAPHRAGM PUMP}", + "clean_value": "\\pi14.94308; .9; DP-10101 \\pi3.99898;DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526520", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1911.702731109955, + "min_y": 6148.23330235824, + "max_x": 1982.119156636222, + "max_y": 6152.23330235824, + "center": [ + 1946.9109438730884, + 6150.23330235824 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 60L/min\\PSIZE : 25A/25A}\\PMATERIAL : STS316/PTFE\\PPRESSURE : 0.3MPa\\PSPM : 3,600\\PREMARK : AIR OPERATING", + "clean_value": ".9; CAPA : 60L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526524", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1984.798614606235, + "min_y": 6167.190552374076, + "max_x": 2022.730662778579, + "max_y": 6171.190552374076, + "center": [ + 2003.764638692407, + 6169.190552374076 + ] + }, + "raw_value": "\\pi9.45313;{\\W0.9;\\LP-10101\\P\\pi5.01541;FEED PUMP}", + "clean_value": "\\pi9.45313; .9; P-10101 \\pi5.01541;FEED PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526528", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1986.122889141902, + "min_y": 6146.950359307568, + "max_x": 2047.3594633802386, + "max_y": 6150.950359307568, + "center": [ + 2016.7411762610704, + 6148.950359307568 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 60L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 60L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52652C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2045.646335124768, + "min_y": 6166.774422382564, + "max_x": 2078.606700416598, + "max_y": 6170.774422382564, + "center": [ + 2062.1265177706828, + 6168.774422382564 + ] + }, + "raw_value": "\\pi6.49592;{\\W0.9;\\LP-10114\\P\\pi3.87286;TOP PUMP}", + "clean_value": "\\pi6.49592; .9; P-10114 \\pi3.87286;TOP PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526530", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2046.439133850365, + "min_y": 6148.79773053734, + "max_x": 2104.413070877916, + "max_y": 6152.79773053734, + "center": [ + 2075.4261023641407, + 6150.79773053734 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 90L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.35MPa\\PRPM : 3,530", + "clean_value": ".9; CAPA : 90L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526534", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2115.109482948632, + "min_y": 6168.030700138452, + "max_x": 2153.973721661072, + "max_y": 6172.030700138452, + "center": [ + 2134.541602304852, + 6170.030700138452 + ] + }, + "raw_value": "\\pi9.45274;{\\W0.9;\\LP-10116\\P\\pi1.54935;BOTTOM PUMP}", + "clean_value": "\\pi9.45274; .9; P-10116 \\pi1.54935;BOTTOM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526538", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2115.902281674229, + "min_y": 6149.743278113195, + "max_x": 2178.1875628502858, + "max_y": 6153.743278113195, + "center": [ + 2147.0449222622574, + 6151.743278113195 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 15L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 15L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52653C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2188.013418590658, + "min_y": 6168.25968043306, + "max_x": 2222.527434782649, + "max_y": 6172.25968043306, + "center": [ + 2205.2704266866535, + 6170.25968043306 + ] + }, + "raw_value": "\\pi7.28252;{\\W0.9;\\LP-10118\\P\\pi4.06108;SIDE PUMP}", + "clean_value": "\\pi7.28252; .9; P-10118 \\pi4.06108;SIDE PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526540", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2190.188529850883, + "min_y": 6150.942162157694, + "max_x": 2248.473197058466, + "max_y": 6154.942162157694, + "center": [ + 2219.3308634546747, + 6152.942162157694 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 48L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25Mpa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 48L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25Mpa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526544", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2254.087104111837, + "min_y": 6170.507447256584, + "max_x": 2295.437184264534, + "max_y": 6174.507447256584, + "center": [ + 2274.7621441881856, + 6172.507447256584 + ] + }, + "raw_value": "\\pi8.9958;{\\W0.9;\\LVP-10117\\P\\pi2.36486;VACUUM PUMP}", + "clean_value": "\\pi8.9958; .9; VP-10117 \\pi2.36486;VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526548", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2257.634008552597, + "min_y": 6151.410613084754, + "max_x": 2346.8979466687365, + "max_y": 6155.410613084754, + "center": [ + 2302.2659776106666, + 6153.410613084754 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 345m\\H0.7x;\\S3^ ;\\H1.42857x;/h\\PSIZE : 50A/40A}\\H0.999999x;\\P{\\A1;MATERIAL : FCD400+PTFE Coated\\P}PRESSURE : 0.05Torr\\PRPM : 3,550", + "clean_value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52654C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1756.654604069, + "min_y": 6736.646781355357, + "max_x": 1790.251044580802, + "max_y": 6740.646781355357, + "center": [ + 1773.452824324901, + 6738.646781355357 + ] + }, + "raw_value": "\\pi7.02644;{\\W0.9;\\LC-10111\\P\\pi6.59415;\\lCOLUMN}", + "clean_value": "\\pi7.02644; .9; C-10111 \\pi6.59415;\\lCOLUMN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526554", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2009.817713260733, + "min_y": 6738.796669665562, + "max_x": 2062.0331919103664, + "max_y": 6742.796669665562, + "center": [ + 2035.9254525855497, + 6740.796669665562 + ] + }, + "raw_value": "\\pi16.17477;{\\W0.9;\\LE-10112\\P\\pi5.13786;\\lTOP CONDENSER}", + "clean_value": "\\pi16.17477; .9; E-10112 \\pi5.13786;\\lTOP CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526558", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1923.034822703295, + "min_y": 6737.178810904706, + "max_x": 1970.5519752805353, + "max_y": 6741.178810904706, + "center": [ + 1946.7933989919152, + 6739.178810904706 + ] + }, + "raw_value": "\\pi13.81339;{\\W0.9;\\LE-10117\\P\\pi2.2001;SIDE CONDENSER}", + "clean_value": "\\pi13.81339; .9; E-10117 \\pi2.2001;SIDE CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526560", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2183.873872123704, + "min_y": 6742.788103687885, + "max_x": 2233.4791315107605, + "max_y": 6746.788103687885, + "center": [ + 2208.6765018172323, + 6744.788103687885 + ] + }, + "raw_value": "\\pi14.85745;{\\W0.9;\\LE-10119\\P\\pi3.79856;BOTTOM COOLER}", + "clean_value": "\\pi14.85745; .9; E-10119 \\pi3.79856;BOTTOM COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526568", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1835.951642792371, + "min_y": 6737.04263452005, + "max_x": 1880.3863927658028, + "max_y": 6741.04263452005, + "center": [ + 1858.169017779087, + 6739.04263452005 + ] + }, + "raw_value": "\\pi12.04994;{\\W0.9;\\LD-10113\\P\\pi5.11371;\\lREFLUX DRUM}", + "clean_value": "\\pi12.04994; .9; D-10113 \\pi5.11371;\\lREFLUX DRUM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526574", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2105.482686752861, + "min_y": 6740.383251052846, + "max_x": 2147.6656951611244, + "max_y": 6744.383251052846, + "center": [ + 2126.5741909569924, + 6742.383251052846 + ] + }, + "raw_value": "\\pi5.89286;{\\W0.9;\\LE-10115 A/B\\P\\pi9.40249;\\lREBOILER}", + "clean_value": "\\pi5.89286; .9; E-10115 A/B \\pi9.40249;\\lREBOILER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52657C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1586.853180192905, + "min_y": 6734.675363607303, + "max_x": 1620.449620704707, + "max_y": 6738.675363607303, + "center": [ + 1603.651400448806, + 6736.675363607303 + ] + }, + "raw_value": "\\pi6.87013;{\\W0.9;\\LE-10103\\P\\pi2.56918;\\lPREHEATER}", + "clean_value": "\\pi6.87013; .9; E-10103 \\pi2.56918;\\lPREHEATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526584", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2362.383296251633, + "min_y": 6738.927911988618, + "max_x": 2414.729769519717, + "max_y": 6742.927911988618, + "center": [ + 2388.556532885675, + 6740.927911988618 + ] + }, + "raw_value": "\\pi16.63592;{\\W0.9;\\LT-10101\\P\\pi2.03321;FEED BUFFER TANK}", + "clean_value": "\\pi16.63592; .9; T-10101 \\pi2.03321;FEED BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52658C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2433.547013278831, + "min_y": 6739.132815283835, + "max_x": 2481.0105224827494, + "max_y": 6743.132815283835, + "center": [ + 2457.27876788079, + 6741.132815283835 + ] + }, + "raw_value": "\\pi13.72307;{\\W0.9;\\LT-10100\\P\\pi5.36052;RECYCLE TANK}", + "clean_value": "\\pi13.72307; .9; T-10100 \\pi5.36052;RECYCLE TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526594", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2277.113931081862, + "min_y": 6741.176668444087, + "max_x": 2313.509388407005, + "max_y": 6745.176668444087, + "center": [ + 2295.3116597444337, + 6743.176668444087 + ] + }, + "raw_value": "\\pi7.01184;{\\W0.9;\\LSP-10601\\P\\pi4.10302;SEPERATER}", + "clean_value": "\\pi7.01184; .9; SP-10601 \\pi4.10302;SEPERATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "52659C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1659.66366159626, + "min_y": 6733.828298668743, + "max_x": 1704.848454236901, + "max_y": 6737.828298668743, + "center": [ + 1682.2560579165806, + 6735.828298668743 + ] + }, + "raw_value": "\\pi8.3023;{\\W0.9;\\LF-10102A/B\\P\\pi2.65318;FILTER HOUSING}", + "clean_value": "\\pi8.3023; .9; F-10102A/B \\pi2.65318;FILTER HOUSING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A0", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1661.099788214027, + "min_y": 6717.112320623782, + "max_x": 1733.6996001951932, + "max_y": 6721.112320623782, + "center": [ + 1697.3996942046101, + 6719.112320623782 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C89.1 x 366H\\PVOLUME : 0.002M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.99MPa / 0.5MPa\\PDT/ OT : 40}%%DC\\H0.999999x;\\A0; / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C89.1 x 366H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 %%DC .999999x; / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2429.342092951066, + "min_y": 6512.641840287686, + "max_x": 2450.342092951066, + "max_y": 6517.641840287686, + "center": [ + 2439.842092951066, + 6515.141840287686 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.953820692577, + "min_y": 6511.267823989351, + "max_x": 2455.691806582784, + "max_y": 6511.267823989351, + "center": [ + 2438.8228136376806, + 6511.267823989351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.953820692577, + 6511.267823989351 + ], + [ + 2455.691806582784, + 6511.267823989351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.953820692577, + "min_y": 6518.94445741989, + "max_x": 2455.691806582784, + "max_y": 6518.94445741989, + "center": [ + 2438.8228136376806, + 6518.94445741989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.953820692577, + 6518.94445741989 + ], + [ + 2455.691806582784, + 6518.94445741989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2421.953820692577, + "min_y": 6511.267823989351, + "max_x": 2421.953820692577, + "max_y": 6518.94445741989, + "center": [ + 2421.953820692577, + 6515.10614070462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.953820692577, + 6518.94445741989 + ], + [ + 2421.953820692577, + 6511.267823989351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2455.691806582784, + "min_y": 6511.267823989351, + "max_x": 2458.845180227018, + "max_y": 6515.106140704621, + "center": [ + 2457.268493404901, + 6513.186982346986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2458.845180227018, + 6515.106140704621 + ], + [ + 2455.691806582784, + 6511.267823989351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265A9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2455.691806582784, + "min_y": 6515.106140704621, + "max_x": 2458.845180227018, + "max_y": 6518.94445741989, + "center": [ + 2457.268493404901, + 6517.025299062256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2458.845180227018, + 6515.106140704621 + ], + [ + 2455.691806582784, + 6518.94445741989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2225.276630558337, + "min_y": 6515.106140704621, + "max_x": 2421.953820692577, + "max_y": 6515.106140704627, + "center": [ + 2323.6152256254572, + 6515.106140704624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.953820692577, + 6515.106140704627 + ], + [ + 2225.276630558337, + 6515.106140704621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2225.276630558336, + "min_y": 6515.106140704621, + "max_x": 2225.276630558337, + "max_y": 6529.067775954671, + "center": [ + 2225.2766305583364, + 6522.086958329646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2225.276630558337, + 6515.106140704621 + ], + [ + 2225.276630558336, + 6529.067775954671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265AC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1787.883338833983, + "min_y": 6403.483675908313, + "max_x": 1808.883338833983, + "max_y": 6408.483675908313, + "center": [ + 1798.383338833983, + 6405.983675908313 + ] + }, + "raw_value": "P-10114", + "clean_value": "P-10114", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265AD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.187630580029, + "min_y": 6401.771443356321, + "max_x": 1811.925616470236, + "max_y": 6401.771443356321, + "center": [ + 1795.0566235251326, + 6401.771443356321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.187630580029, + 6401.771443356321 + ], + [ + 1811.925616470236, + 6401.771443356321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265AE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.187630580029, + "min_y": 6409.44807678686, + "max_x": 1811.925616470236, + "max_y": 6409.44807678686, + "center": [ + 1795.0566235251326, + 6409.44807678686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.187630580029, + 6409.44807678686 + ], + [ + 1811.925616470236, + 6409.44807678686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265AF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.187630580029, + "min_y": 6401.771443356321, + "max_x": 1778.187630580029, + "max_y": 6409.44807678686, + "center": [ + 1778.187630580029, + 6405.60976007159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.187630580029, + 6409.44807678686 + ], + [ + 1778.187630580029, + 6401.771443356321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1811.925616470236, + "min_y": 6401.771443356321, + "max_x": 1815.07899011447, + "max_y": 6405.609760071591, + "center": [ + 1813.502303292353, + 6403.690601713955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1815.07899011447, + 6405.609760071591 + ], + [ + 1811.925616470236, + 6401.771443356321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1811.925616470236, + "min_y": 6405.609760071591, + "max_x": 1815.07899011447, + "max_y": 6409.44807678686, + "center": [ + 1813.502303292353, + 6407.528918429225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1815.07899011447, + 6405.609760071591 + ], + [ + 1811.925616470236, + 6409.44807678686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 1787.795452419026, + "min_y": 6392.128408280713, + "max_x": 1808.795452419026, + "max_y": 6397.128408280713, + "center": [ + 1798.295452419026, + 6394.628408280713 + ] + }, + "raw_value": "E-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.099744165072, + "min_y": 6390.416175728722, + "max_x": 1811.837730055279, + "max_y": 6390.416175728722, + "center": [ + 1794.9687371101754, + 6390.416175728722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.099744165072, + 6390.416175728722 + ], + [ + 1811.837730055279, + 6390.416175728722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.099744165072, + "min_y": 6398.092809159262, + "max_x": 1811.837730055279, + "max_y": 6398.092809159262, + "center": [ + 1794.9687371101754, + 6398.092809159262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.099744165072, + 6398.092809159262 + ], + [ + 1811.837730055279, + 6398.092809159262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1778.099744165072, + "min_y": 6390.416175728722, + "max_x": 1778.099744165072, + "max_y": 6398.092809159262, + "center": [ + 1778.099744165072, + 6394.254492443992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.099744165072, + 6398.092809159262 + ], + [ + 1778.099744165072, + 6390.416175728722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1811.837730055279, + "min_y": 6390.416175728722, + "max_x": 1814.991103699513, + "max_y": 6394.254492443992, + "center": [ + 1813.414416877396, + 6392.335334086357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.991103699513, + 6394.254492443992 + ], + [ + 1811.837730055279, + 6390.416175728722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 1811.837730055279, + "min_y": 6394.254492443992, + "max_x": 1814.991103699513, + "max_y": 6398.092809159262, + "center": [ + 1813.414416877396, + 6396.173650801627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.991103699513, + 6394.254492443992 + ], + [ + 1811.837730055279, + 6398.092809159262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5265B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.747195560166, + "min_y": 6357.787386013769, + "max_x": 1833.488597377332, + "max_y": 6357.787386013769, + "center": [ + 1828.617896468749, + 6357.787386013769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.747195560166, + 6357.787386013769 + ], + [ + 1833.488597377332, + 6357.787386013769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.991103699513, + "min_y": 6394.254492443992, + "max_x": 1823.337117115198, + "max_y": 6394.254492443992, + "center": [ + 1819.1641104073556, + 6394.254492443992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.991103699513, + 6394.254492443992 + ], + [ + 1823.337117115198, + 6394.254492443992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.337117115198, + "min_y": 6383.469234346518, + "max_x": 1823.337117115198, + "max_y": 6394.254492443992, + "center": [ + 1823.337117115198, + 6388.861863395255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.337117115198, + 6394.254492443992 + ], + [ + 1823.337117115198, + 6383.469234346518 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.337117115198, + "min_y": 6357.787386013769, + "max_x": 1833.488597377332, + "max_y": 6357.787386013769, + "center": [ + 1828.412857246265, + 6357.787386013769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.337117115198, + 6357.787386013769 + ], + [ + 1833.488597377332, + 6357.787386013769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1815.07899011447, + "min_y": 6405.609760071591, + "max_x": 1827.397004623652, + "max_y": 6405.609760071591, + "center": [ + 1821.2379973690608, + 6405.609760071591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1815.07899011447, + 6405.609760071591 + ], + [ + 1827.397004623652, + 6405.609760071591 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.397004623652, + "min_y": 6383.529490013117, + "max_x": 1827.397004623652, + "max_y": 6405.609760071591, + "center": [ + 1827.397004623652, + 6394.569625042353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.397004623652, + 6405.609760071591 + ], + [ + 1827.397004623652, + 6383.529490013117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.397004623652, + "min_y": 6362.532785968395, + "max_x": 1833.488597377332, + "max_y": 6362.532785968395, + "center": [ + 1830.4428010004922, + 6362.532785968395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.397004623652, + 6362.532785968395 + ], + [ + 1833.488597377332, + 6362.532785968395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.337117115198, + "min_y": 6357.787386013769, + "max_x": 1823.337117115198, + "max_y": 6378.413133157597, + "center": [ + 1823.337117115198, + 6368.100259585683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.337117115198, + 6378.413133157597 + ], + [ + 1823.337117115198, + 6357.787386013769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.397004623652, + "min_y": 6362.532785968395, + "max_x": 1827.397004623652, + "max_y": 6378.257119185636, + "center": [ + 1827.397004623652, + 6370.394952577015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.397004623652, + 6378.257119185636 + ], + [ + 1827.397004623652, + 6362.532785968395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5265D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.385667900849, + "min_y": 6382.913578642166, + "max_x": 1775.385667900849, + "max_y": 6474.733257805207, + "center": [ + 1775.385667900849, + 6428.8234182236865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.385667900849, + 6474.733257805207 + ], + [ + 1775.385667900849, + 6382.913578642166 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "52663E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1549.094955657286, + "min_y": 6739.069063552358, + "max_x": 1559.70928335705, + "max_y": 6748.261340984446, + "center": [ + 1554.402119507168, + 6743.665202268402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1559.70928335705, + 6739.069063552358 + ], + [ + 1554.402119507168, + 6748.261340984446 + ], + [ + 1549.094955657286, + 6739.069063552358 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "52663F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1553.296791591907, + "min_y": 6740.700854309046, + "max_x": 1555.621860886429, + "max_y": 6744.575969799916, + "center": [ + 1554.4593262391681, + 6742.638412054481 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "526B18", + "entity_type": "LINE", + "layer": "TIT", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 2580.902385564113, + "max_y": 6180.177476026954, + "center": [ + 2580.902385564113, + 6141.369476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6102.561476026954 + ], + [ + 2580.902385564113, + 6180.177476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 3538.645562698913, + "max_y": 6102.561476026954, + "center": [ + 3059.773974131513, + 6102.561476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6102.561476026954 + ], + [ + 2580.902385564113, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6102.561476026954, + "max_x": 3538.645562698913, + "max_y": 6749.793316246192, + "center": [ + 3538.645562698913, + 6426.1773961365725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6749.793316246192 + ], + [ + 3538.645562698913, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6096.027309547135, + "max_x": 3299.209359564115, + "max_y": 6102.561476026954, + "center": [ + 3299.209359564115, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3299.209359564115, + 6096.027309547135 + ], + [ + 3299.209359564115, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6096.027309547135, + "max_x": 3299.209359564115, + "max_y": 6102.561476026954, + "center": [ + 3299.209359564115, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3299.209359564115, + 6096.027309547135 + ], + [ + 3299.209359564115, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3239.500582727752, + "min_y": 6097.047225685329, + "max_x": 3241.1377952277517, + "max_y": 6099.775913185329, + "center": [ + 3240.3191889777518, + 6098.4115694353295 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3357.10960652989, + "min_y": 6096.671685575234, + "max_x": 3358.7468190298896, + "max_y": 6099.400373075234, + "center": [ + 3357.9282127798897, + 6098.036029325234 + ] + }, + "raw_value": "G", + "clean_value": "G", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6096.027309547135, + "max_x": 3418.927188564114, + "max_y": 6102.561476026954, + "center": [ + 3418.927188564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6096.027309547135 + ], + [ + 3418.927188564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6096.027309547135, + "max_x": 3418.927188564114, + "max_y": 6102.561476026954, + "center": [ + 3418.927188564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6096.027309547135 + ], + [ + 3418.927188564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B21", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3478.467044127802, + "min_y": 6099.336042373573, + "max_x": 3480.104256627802, + "max_y": 6102.064729873573, + "center": [ + 3479.285650377802, + 6100.7003861235735 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B22", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6149.839430290906, + "max_x": 3548.199098923365, + "max_y": 6152.568117790906, + "center": [ + 3547.380492673365, + 6151.203774040907 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6213.544133729968, + "max_x": 3545.179729178733, + "max_y": 6213.544133729968, + "center": [ + 3541.912645938823, + 6213.544133729968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6213.544133729968 + ], + [ + 3545.179729178733, + 6213.544133729968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6213.544133729968, + "max_x": 3545.179729178733, + "max_y": 6213.544133729968, + "center": [ + 3541.912645938823, + 6213.544133729968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6213.544133729968 + ], + [ + 3545.179729178733, + 6213.544133729968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6749.793316246192, + "max_x": 3538.645562698913, + "max_y": 6749.793316246192, + "center": [ + 3059.773974131513, + 6749.793316246192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6749.793316246192 + ], + [ + 3538.645562698913, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B26", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6263.704428735738, + "max_x": 3548.199098923365, + "max_y": 6266.4331162357375, + "center": [ + 3547.380492673365, + 6265.068772485738 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6324.522886229967, + "max_x": 3545.179729178733, + "max_y": 6324.522886229967, + "center": [ + 3541.912645938823, + 6324.522886229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6324.522886229967 + ], + [ + 3545.179729178733, + 6324.522886229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6324.522886229967, + "max_x": 3545.179729178733, + "max_y": 6324.522886229967, + "center": [ + 3541.912645938823, + 6324.522886229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6324.522886229967 + ], + [ + 3545.179729178733, + 6324.522886229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6379.480485769266, + "max_x": 3548.199098923365, + "max_y": 6382.209173269266, + "center": [ + 3547.380492673365, + 6380.844829519267 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6435.501638729967, + "max_x": 3545.179729178733, + "max_y": 6435.501638729967, + "center": [ + 3541.912645938823, + 6435.501638729967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6435.501638729967 + ], + [ + 3545.179729178733, + 6435.501638729967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6435.501638729967, + "max_x": 3545.179729178733, + "max_y": 6435.501638729967, + "center": [ + 3541.912645938823, + 6435.501638729967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6435.501638729967 + ], + [ + 3545.179729178733, + 6435.501638729967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6488.101701469805, + "max_x": 3548.199098923365, + "max_y": 6490.830388969805, + "center": [ + 3547.380492673365, + 6489.466045219806 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6546.480391229967, + "max_x": 3545.179729178733, + "max_y": 6546.480391229967, + "center": [ + 3541.912645938823, + 6546.480391229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6546.480391229967 + ], + [ + 3545.179729178733, + 6546.480391229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6546.480391229967, + "max_x": 3545.179729178733, + "max_y": 6546.480391229967, + "center": [ + 3541.912645938823, + 6546.480391229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6546.480391229967 + ], + [ + 3545.179729178733, + 6546.480391229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B2F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6601.255866275384, + "max_x": 3548.199098923365, + "max_y": 6603.984553775384, + "center": [ + 3547.380492673365, + 6602.620210025383 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6638.814563746191, + "max_x": 3545.179729178733, + "max_y": 6638.814563746191, + "center": [ + 3541.912645938823, + 6638.814563746191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6638.814563746191 + ], + [ + 3545.179729178733, + 6638.814563746191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3538.645562698913, + "min_y": 6638.814563746191, + "max_x": 3545.179729178733, + "max_y": 6638.814563746191, + "center": [ + 3541.912645938823, + 6638.814563746191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6638.814563746191 + ], + [ + 3545.179729178733, + 6638.814563746191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B32", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2637.368957946498, + "min_y": 6753.01850754414, + "max_x": 2639.006170446498, + "max_y": 6755.74719504414, + "center": [ + 2638.187564196498, + 6754.38285129414 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6749.793316246192, + "max_x": 2700.620214564113, + "max_y": 6756.32748272601, + "center": [ + 2700.620214564113, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.620214564113, + 6756.32748272601 + ], + [ + 2700.620214564113, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6749.793316246192, + "max_x": 2700.620214564113, + "max_y": 6756.32748272601, + "center": [ + 2700.620214564113, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.620214564113, + 6756.32748272601 + ], + [ + 2700.620214564113, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B35", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2757.865281693544, + "min_y": 6752.961740539466, + "max_x": 2759.502494193544, + "max_y": 6755.690428039466, + "center": [ + 2758.683887943544, + 6754.326084289465 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6749.793316246192, + "max_x": 2820.338043564114, + "max_y": 6756.32748272601, + "center": [ + 2820.338043564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.338043564114, + 6756.32748272601 + ], + [ + 2820.338043564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6749.793316246192, + "max_x": 2820.338043564114, + "max_y": 6756.32748272601, + "center": [ + 2820.338043564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.338043564114, + 6756.32748272601 + ], + [ + 2820.338043564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B38", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2880.84031813661, + "min_y": 6753.208992313907, + "max_x": 2882.47753063661, + "max_y": 6755.937679813907, + "center": [ + 2881.65892438661, + 6754.573336063908 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6749.793316246192, + "max_x": 2940.055872564114, + "max_y": 6756.32748272601, + "center": [ + 2940.055872564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2940.055872564114, + 6756.32748272601 + ], + [ + 2940.055872564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6749.793316246192, + "max_x": 2940.055872564114, + "max_y": 6756.32748272601, + "center": [ + 2940.055872564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2940.055872564114, + 6756.32748272601 + ], + [ + 2940.055872564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2999.808667974339, + "min_y": 6752.933923379231, + "max_x": 3001.445880474339, + "max_y": 6755.662610879231, + "center": [ + 3000.627274224339, + 6754.29826712923 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6749.793316246192, + "max_x": 3059.773701564114, + "max_y": 6756.32748272601, + "center": [ + 3059.773701564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.773701564114, + 6756.32748272601 + ], + [ + 3059.773701564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6749.793316246192, + "max_x": 3059.773701564114, + "max_y": 6756.32748272601, + "center": [ + 3059.773701564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.773701564114, + 6756.32748272601 + ], + [ + 3059.773701564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3120.084954746962, + "min_y": 6752.840883264728, + "max_x": 3121.722167246962, + "max_y": 6755.569570764728, + "center": [ + 3120.903560996962, + 6754.205227014729 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6749.793316246192, + "max_x": 3181.200295314111, + "max_y": 6756.32748272601, + "center": [ + 3181.200295314111, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3181.200295314111, + 6756.32748272601 + ], + [ + 3181.200295314111, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6749.793316246192, + "max_x": 3181.200295314111, + "max_y": 6756.32748272601, + "center": [ + 3181.200295314111, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3181.200295314111, + 6756.32748272601 + ], + [ + 3181.200295314111, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B41", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3241.421006217712, + "min_y": 6752.747843150224, + "max_x": 3243.058218717712, + "max_y": 6755.476530650224, + "center": [ + 3242.239612467712, + 6754.112186900224 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6749.793316246192, + "max_x": 3299.209359564115, + "max_y": 6756.32748272601, + "center": [ + 3299.209359564115, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3299.209359564115, + 6756.32748272601 + ], + [ + 3299.209359564115, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3299.209359564115, + "min_y": 6749.793316246192, + "max_x": 3299.209359564115, + "max_y": 6756.32748272601, + "center": [ + 3299.209359564115, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3299.209359564115, + 6756.32748272601 + ], + [ + 3299.209359564115, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B44", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3355.956317149465, + "min_y": 6753.135808279377, + "max_x": 3357.593529649465, + "max_y": 6755.864495779377, + "center": [ + 3356.774923399465, + 6754.500152029377 + ] + }, + "raw_value": "G", + "clean_value": "G", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6749.793316246192, + "max_x": 3418.927188564114, + "max_y": 6756.32748272601, + "center": [ + 3418.927188564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6756.32748272601 + ], + [ + 3418.927188564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6749.793316246192, + "max_x": 3418.927188564114, + "max_y": 6756.32748272601, + "center": [ + 3418.927188564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6756.32748272601 + ], + [ + 3418.927188564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 2580.902385564113, + "max_y": 6749.793316246192, + "center": [ + 2580.902385564113, + 6426.1773961365725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6102.561476026954 + ], + [ + 2580.902385564113, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B48", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6149.839430290906, + "max_x": 2576.269455295225, + "max_y": 6152.568117790906, + "center": [ + 2575.450849045225, + 6151.203774040907 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6213.544133729968, + "max_x": 2580.902385564113, + "max_y": 6213.544133729968, + "center": [ + 2577.635302324204, + 6213.544133729968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6213.544133729968 + ], + [ + 2580.902385564113, + 6213.544133729968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6213.544133729968, + "max_x": 2580.902385564113, + "max_y": 6213.544133729968, + "center": [ + 2577.635302324204, + 6213.544133729968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6213.544133729968 + ], + [ + 2580.902385564113, + 6213.544133729968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6263.704428735738, + "max_x": 2576.269455295225, + "max_y": 6266.4331162357375, + "center": [ + 2575.450849045225, + 6265.068772485738 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6324.522886229967, + "max_x": 2580.902385564113, + "max_y": 6324.522886229967, + "center": [ + 2577.635302324204, + 6324.522886229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6324.522886229967 + ], + [ + 2580.902385564113, + 6324.522886229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6324.522886229967, + "max_x": 2580.902385564113, + "max_y": 6324.522886229967, + "center": [ + 2577.635302324204, + 6324.522886229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6324.522886229967 + ], + [ + 2580.902385564113, + 6324.522886229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6379.480485769266, + "max_x": 2576.269455295225, + "max_y": 6382.209173269266, + "center": [ + 2575.450849045225, + 6380.844829519267 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6435.501638729967, + "max_x": 2580.902385564113, + "max_y": 6435.501638729967, + "center": [ + 2577.635302324204, + 6435.501638729967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6435.501638729967 + ], + [ + 2580.902385564113, + 6435.501638729967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6435.501638729967, + "max_x": 2580.902385564113, + "max_y": 6435.501638729967, + "center": [ + 2577.635302324204, + 6435.501638729967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6435.501638729967 + ], + [ + 2580.902385564113, + 6435.501638729967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B51", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6488.101701469805, + "max_x": 2576.269455295225, + "max_y": 6490.830388969805, + "center": [ + 2575.450849045225, + 6489.466045219806 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6546.480391229967, + "max_x": 2580.902385564113, + "max_y": 6546.480391229967, + "center": [ + 2577.635302324204, + 6546.480391229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6546.480391229967 + ], + [ + 2580.902385564113, + 6546.480391229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6546.480391229967, + "max_x": 2580.902385564113, + "max_y": 6546.480391229967, + "center": [ + 2577.635302324204, + 6546.480391229967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6546.480391229967 + ], + [ + 2580.902385564113, + 6546.480391229967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B54", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6601.255866275384, + "max_x": 2576.269455295225, + "max_y": 6603.984553775384, + "center": [ + 2575.450849045225, + 6602.620210025383 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6638.814563746191, + "max_x": 2580.902385564113, + "max_y": 6638.814563746191, + "center": [ + 2577.635302324204, + 6638.814563746191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6638.814563746191 + ], + [ + 2580.902385564113, + 6638.814563746191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2574.368219084295, + "min_y": 6638.814563746191, + "max_x": 2580.902385564113, + "max_y": 6638.814563746191, + "center": [ + 2577.635302324204, + 6638.814563746191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2574.368219084295, + 6638.814563746191 + ], + [ + 2580.902385564113, + 6638.814563746191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B57", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2574.632242795225, + "min_y": 6701.684523455182, + "max_x": 2576.269455295225, + "max_y": 6704.413210955182, + "center": [ + 2575.450849045225, + 6703.0488672051815 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6096.027309547135, + "max_x": 2700.620214564113, + "max_y": 6102.561476026954, + "center": [ + 2700.620214564113, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.620214564113, + 6096.027309547135 + ], + [ + 2700.620214564113, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.620214564113, + "min_y": 6096.027309547135, + "max_x": 2700.620214564113, + "max_y": 6102.561476026954, + "center": [ + 2700.620214564113, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.620214564113, + 6096.027309547135 + ], + [ + 2700.620214564113, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2640.832314922806, + "min_y": 6096.119759948373, + "max_x": 2642.4695274228056, + "max_y": 6098.848447448373, + "center": [ + 2641.6509211728057, + 6097.484103698373 + ] + }, + "raw_value": "A", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6096.027309547135, + "max_x": 2820.338043564114, + "max_y": 6102.561476026954, + "center": [ + 2820.338043564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.338043564114, + 6096.027309547135 + ], + [ + 2820.338043564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.338043564114, + "min_y": 6096.027309547135, + "max_x": 2820.338043564114, + "max_y": 6102.561476026954, + "center": [ + 2820.338043564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.338043564114, + 6096.027309547135 + ], + [ + 2820.338043564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2757.865281693544, + "min_y": 6099.393051733678, + "max_x": 2759.502494193544, + "max_y": 6102.1217392336775, + "center": [ + 2758.683887943544, + 6100.757395483677 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2880.84031813661, + "min_y": 6099.145799959238, + "max_x": 2882.47753063661, + "max_y": 6101.874487459238, + "center": [ + 2881.65892438661, + 6100.510143709238 + ] + }, + "raw_value": "C", + "clean_value": "C", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6096.027309547135, + "max_x": 2940.055872564114, + "max_y": 6102.561476026954, + "center": [ + 2940.055872564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2940.055872564114, + 6096.027309547135 + ], + [ + 2940.055872564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2940.055872564114, + "min_y": 6096.027309547135, + "max_x": 2940.055872564114, + "max_y": 6102.561476026954, + "center": [ + 2940.055872564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2940.055872564114, + 6096.027309547135 + ], + [ + 2940.055872564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B61", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2999.808667974339, + "min_y": 6099.420868893913, + "max_x": 3001.445880474339, + "max_y": 6102.149556393913, + "center": [ + 3000.627274224339, + 6100.785212643914 + ] + }, + "raw_value": "D", + "clean_value": "D", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6096.027309547135, + "max_x": 3059.773701564114, + "max_y": 6102.561476026954, + "center": [ + 3059.773701564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.773701564114, + 6096.027309547135 + ], + [ + 3059.773701564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3059.773701564114, + "min_y": 6096.027309547135, + "max_x": 3059.773701564114, + "max_y": 6102.561476026954, + "center": [ + 3059.773701564114, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.773701564114, + 6096.027309547135 + ], + [ + 3059.773701564114, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6096.027309547135, + "max_x": 3181.200295314111, + "max_y": 6102.561476026954, + "center": [ + 3181.200295314111, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3181.200295314111, + 6096.027309547135 + ], + [ + 3181.200295314111, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3181.200295314111, + "min_y": 6096.027309547135, + "max_x": 3181.200295314111, + "max_y": 6102.561476026954, + "center": [ + 3181.200295314111, + 6099.294392787044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3181.200295314111, + 6096.027309547135 + ], + [ + 3181.200295314111, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3120.084954746962, + "min_y": 6099.513909008416, + "max_x": 3121.722167246962, + "max_y": 6102.242596508416, + "center": [ + 3120.903560996962, + 6100.878252758415 + ] + }, + "raw_value": "E", + "clean_value": "E", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6117.303692784572, + "max_x": 3538.645562698913, + "max_y": 6117.303692784572, + "center": [ + 3470.2704510928206, + 6117.303692784572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6117.303692784572 + ], + [ + 3401.895339486728, + 6117.303692784572 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6135.501430580935, + "max_x": 3538.645562698913, + "max_y": 6135.501430580935, + "center": [ + 3470.2704510928206, + 6135.501430580935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6135.501430580935 + ], + [ + 3401.895339486728, + 6135.501430580935 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6162.798037275479, + "max_x": 3538.645562698913, + "max_y": 6162.798037275479, + "center": [ + 3470.2704510928206, + 6162.798037275479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6162.798037275479 + ], + [ + 3401.895339486728, + 6162.798037275479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6180.995775071842, + "max_x": 3538.645562698913, + "max_y": 6180.995775071842, + "center": [ + 3470.2704510928206, + 6180.995775071842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6180.995775071842 + ], + [ + 3401.895339486728, + 6180.995775071842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3405.05640556278, + "min_y": 6177.32235091707, + "max_x": 3423.553855819773, + "max_y": 6179.693818898736, + "center": [ + 3414.3051306912766, + 6178.508084907903 + ] + }, + "raw_value": "PROJECT NAME:", + "clean_value": "PROJECT NAME:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3405.274701795441, + "min_y": 6159.124613120707, + "max_x": 3413.811986529438, + "max_y": 6161.496081102373, + "center": [ + 3409.5433441624396, + 6160.31034711154 + ] + }, + "raw_value": "TITLE:", + "clean_value": "TITLE:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3405.05640556278, + "min_y": 6131.828006426164, + "max_x": 3416.439451874776, + "max_y": 6134.19947440783, + "center": [ + 3410.747928718778, + 6133.013740416997 + ] + }, + "raw_value": "DWG. NO.", + "clean_value": "DWG. NO.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6102.561475534792, + "max_x": 3401.895339486728, + "max_y": 6301.822916703463, + "center": [ + 3401.895339486728, + 6202.192196119127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3401.895339486728, + 6301.822916703463 + ], + [ + 3401.895339486728, + 6102.561475534792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3440.18827364656, + "min_y": 6108.416646905762, + "max_x": 3449.28389864656, + "max_y": 6111.4485219057615, + "center": [ + 3444.73608614656, + 6109.932584405762 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3454.573703973027, + "min_y": 6102.561476026954, + "max_x": 3454.573703973027, + "max_y": 6117.303692784572, + "center": [ + 3454.573703973027, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3454.573703973027, + 6117.303692784572 + ], + [ + 3454.573703973027, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3471.289654531204, + "min_y": 6102.561476026954, + "max_x": 3471.289654531204, + "max_y": 6117.303692784572, + "center": [ + 3471.289654531204, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3471.289654531204, + 6117.303692784572 + ], + [ + 3471.289654531204, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B72", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3474.111203713561, + "min_y": 6108.483353972523, + "max_x": 3481.067509793114, + "max_y": 6111.381814839004, + "center": [ + 3477.5893567533376, + 6109.932584405764 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3486.384407248497, + "min_y": 6102.561476026954, + "max_x": 3486.384407248497, + "max_y": 6117.303692784572, + "center": [ + 3486.384407248497, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3486.384407248497, + 6117.303692784572 + ], + [ + 3486.384407248497, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3511.36548180496, + "min_y": 6102.561476026954, + "max_x": 3511.36548180496, + "max_y": 6117.303692784572, + "center": [ + 3511.36548180496, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3511.36548180496, + 6117.303692784572 + ], + [ + 3511.36548180496, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3522.358595779127, + "min_y": 6102.561476026954, + "max_x": 3522.358595779128, + "max_y": 6117.303692784572, + "center": [ + 3522.3585957791274, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.358595779128, + 6117.303692784572 + ], + [ + 3522.358595779127, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B76", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3513.414380581023, + "min_y": 6108.483353726442, + "max_x": 3518.631610140688, + "max_y": 6111.381814592923, + "center": [ + 3516.0229953608555, + 6109.932584159682 + ] + }, + "raw_value": "REV", + "clean_value": "REV", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B77", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3525.38510183847, + "min_y": 6106.509586493907, + "max_x": 3535.949107666227, + "max_y": 6115.658283906473, + "center": [ + 3530.6671047523487, + 6111.083935200189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.667104752348, + 6115.658283906473 + ], + [ + 3525.38510183847, + 6106.509586493907 + ], + [ + 3535.949107666227, + 6106.509586493907 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6180.995775071842, + "max_x": 3538.645562698913, + "max_y": 6180.995775071842, + "center": [ + 3470.2704510928206, + 6180.995775071842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6180.995775071842 + ], + [ + 3401.895339486728, + 6180.995775071842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6203.947051742129, + "max_x": 3538.645562698913, + "max_y": 6203.947051742129, + "center": [ + 3470.2704510928206, + 6203.947051742129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6203.947051742129 + ], + [ + 3401.895339486728, + 6203.947051742129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3437.939760967888, + "min_y": 6102.561476026954, + "max_x": 3437.939760967888, + "max_y": 6117.303692784572, + "center": [ + 3437.939760967888, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3437.939760967888, + 6117.303692784572 + ], + [ + 3437.939760967888, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3419.623733874613, + "min_y": 6102.561476026954, + "max_x": 3419.623733874613, + "max_y": 6117.303692784572, + "center": [ + 3419.623733874613, + 6109.932584405763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3419.623733874613, + 6117.303692784572 + ], + [ + 3419.623733874613, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3403.627035908132, + "min_y": 6108.483353726442, + "max_x": 3414.061495027461, + "max_y": 6111.381814592923, + "center": [ + 3408.8442654677965, + 6109.932584159682 + ] + }, + "raw_value": "JOB.NO", + "clean_value": "JOB.NO", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3405.05640556278, + "min_y": 6177.32235091707, + "max_x": 3423.553855819773, + "max_y": 6179.693818898736, + "center": [ + 3414.3051306912766, + 6178.508084907903 + ] + }, + "raw_value": "PROJECT NAME:", + "clean_value": "PROJECT NAME:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3427.71137893193, + "min_y": 6108.483353726442, + "max_x": 3429.4504554518185, + "max_y": 6111.381814592923, + "center": [ + 3428.5809171918745, + 6109.932584159682 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B7F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3457.894804822519, + "min_y": 6108.483353726442, + "max_x": 3464.851110902072, + "max_y": 6111.381814592923, + "center": [ + 3461.372957862295, + 6109.932584159682 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6223.725700785259, + "max_x": 3538.645562698913, + "max_y": 6223.725700785259, + "center": [ + 3470.2704510928206, + 6223.725700785259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6223.725700785259 + ], + [ + 3401.895339486728, + 6223.725700785259 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B81", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3529.394746135313, + "min_y": 6108.416646659682, + "max_x": 3531.213871135313, + "max_y": 6111.448521659681, + "center": [ + 3530.304308635313, + 6109.932584159682 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B82", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3474.418302812012, + "min_y": 6126.402561682753, + "max_x": 3573.3430120923535, + "max_y": 6131.253561682753, + "center": [ + 3523.8806574521827, + 6128.828061682752 + ] + }, + "raw_value": "{\\Fromans|c129;\\W1;PFD-002}", + "clean_value": "\\Fromans|c129; PFD-002", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B86", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3546.561886423365, + "min_y": 6693.554494766059, + "max_x": 3548.199098923365, + "max_y": 6696.283182266059, + "center": [ + 3547.380492673365, + 6694.91883851606 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6749.793316246192, + "max_x": 3418.927188564114, + "max_y": 6756.32748272601, + "center": [ + 3418.927188564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6756.32748272601 + ], + [ + 3418.927188564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3418.927188564114, + "min_y": 6749.793316246192, + "max_x": 3418.927188564114, + "max_y": 6756.32748272601, + "center": [ + 3418.927188564114, + 6753.060399486101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.927188564114, + 6756.32748272601 + ], + [ + 3418.927188564114, + 6749.793316246192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B89", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3488.591784519214, + "min_y": 6108.416646905762, + "max_x": 3506.7830345192137, + "max_y": 6111.4485219057615, + "center": [ + 3497.687409519214, + 6109.932584405762 + ] + }, + "raw_value": "2019.03.20", + "clean_value": "2019.03.20", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6266.018323374328, + "max_x": 3538.645562698913, + "max_y": 6266.018323374328, + "center": [ + 3470.2704510928206, + 6266.018323374328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6266.018323374328 + ], + [ + 3401.895339486728, + 6266.018323374328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3402.676976466873, + "min_y": 6267.99626932748, + "max_x": 3408.498176466873, + "max_y": 6270.42176932748, + "center": [ + 3405.5875764668726, + 6269.20901932748 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3409.545463447018, + "min_y": 6266.018323374238, + "max_x": 3409.545463447018, + "max_y": 6301.822916703375, + "center": [ + 3409.545463447018, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3409.545463447018, + 6266.018323374238 + ], + [ + 3409.545463447018, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6272.399715280633, + "max_x": 3538.645562698913, + "max_y": 6272.399715280633, + "center": [ + 3470.2704510928206, + 6272.399715280633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6272.399715280633 + ], + [ + 3401.895339486728, + 6272.399715280633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6279.755515636296, + "max_x": 3538.645562698913, + "max_y": 6279.755515636296, + "center": [ + 3470.2704510928206, + 6279.755515636296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6279.755515636296 + ], + [ + 3401.895339486728, + 6279.755515636296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6287.111315992047, + "max_x": 3538.645562698913, + "max_y": 6287.111315992047, + "center": [ + 3470.2704510928206, + 6287.111315992047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6287.111315992047 + ], + [ + 3401.895339486728, + 6287.111315992047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6294.467116347711, + "max_x": 3538.645562698913, + "max_y": 6294.467116347711, + "center": [ + 3470.2704510928206, + 6294.467116347711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6294.467116347711 + ], + [ + 3401.895339486728, + 6294.467116347711 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B91", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6272.399715280722, + "max_x": 3409.545463447201, + "max_y": 6279.755515636384, + "center": [ + 3405.867563269412, + 6276.077615458553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3409.545463447201, + 6276.077615458509 + ], + [ + 3405.867563269321, + 6279.755515636384 + ], + [ + 3402.189663091623, + 6276.077615458509 + ], + [ + 3405.867563269321, + 6272.399715280722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B92", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6279.755515636384, + "max_x": 3409.545463447201, + "max_y": 6287.111315992047, + "center": [ + 3405.867563269412, + 6283.433415814216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3409.545463447201, + 6283.433415814261 + ], + [ + 3405.867563269321, + 6287.111315992047 + ], + [ + 3402.189663091623, + 6283.433415814261 + ], + [ + 3405.867563269321, + 6279.755515636384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B93", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6287.111315992047, + "max_x": 3409.545463447201, + "max_y": 6294.467116347711, + "center": [ + 3405.867563269412, + 6290.789216169879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3409.545463447201, + 6290.789216169923 + ], + [ + 3405.867563269321, + 6294.467116347711 + ], + [ + 3402.189663091623, + 6290.789216169923 + ], + [ + 3405.867563269321, + 6287.111315992047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B94", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3402.189663091623, + "min_y": 6294.467116347711, + "max_x": 3409.545463447201, + "max_y": 6301.822916703463, + "center": [ + 3405.867563269412, + 6298.145016525587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3409.545463447201, + 6298.145016525587 + ], + [ + 3405.867563269321, + 6301.822916703463 + ], + [ + 3402.189663091623, + 6298.145016525587 + ], + [ + 3405.867563269321, + 6294.467116347711 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B95", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3418.227985585869, + "min_y": 6267.99626932748, + "max_x": 3424.049185585869, + "max_y": 6270.42176932748, + "center": [ + 3421.138585585869, + 6269.20901932748 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B96", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3518.288687698913, + "min_y": 6267.99626932748, + "max_x": 3524.1098876989126, + "max_y": 6270.42176932748, + "center": [ + 3521.1992876989125, + 6269.20901932748 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B97", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3508.586687698914, + "min_y": 6267.99626932748, + "max_x": 3514.407887698914, + "max_y": 6270.42176932748, + "center": [ + 3511.497287698914, + 6269.20901932748 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B98", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3498.884687698914, + "min_y": 6267.99626932748, + "max_x": 3504.705887698914, + "max_y": 6270.42176932748, + "center": [ + 3501.795287698914, + 6269.20901932748 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3487.710062698913, + "min_y": 6266.018323374238, + "max_x": 3487.710062698913, + "max_y": 6301.822916703375, + "center": [ + 3487.710062698913, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3487.710062698913, + 6266.018323374238 + ], + [ + 3487.710062698913, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3497.412062698913, + "min_y": 6266.018323374238, + "max_x": 3497.412062698913, + "max_y": 6301.822916703375, + "center": [ + 3497.412062698913, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3497.412062698913, + 6266.018323374238 + ], + [ + 3497.412062698913, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3507.114062698914, + "min_y": 6266.018323374238, + "max_x": 3507.114062698914, + "max_y": 6301.822916703375, + "center": [ + 3507.114062698914, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.114062698914, + 6266.018323374238 + ], + [ + 3507.114062698914, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3516.816062698913, + "min_y": 6266.018323374238, + "max_x": 3516.816062698913, + "max_y": 6301.822916703375, + "center": [ + 3516.816062698913, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3516.816062698913, + 6266.018323374238 + ], + [ + 3516.816062698913, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3526.518062698914, + "min_y": 6266.018323374238, + "max_x": 3526.518062698914, + "max_y": 6301.822916703375, + "center": [ + 3526.518062698914, + 6283.920620038807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3526.518062698914, + 6266.018323374238 + ], + [ + 3526.518062698914, + 6301.822916703375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3489.096062698913, + "min_y": 6267.99626932748, + "max_x": 3494.917262698913, + "max_y": 6270.42176932748, + "center": [ + 3492.006662698913, + 6269.20901932748 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526B9F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3451.125260211816, + "min_y": 6267.996269327436, + "max_x": 3467.133560211816, + "max_y": 6270.421769327436, + "center": [ + 3459.1294102118163, + 6269.209019327436 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6266.018323374328, + "max_x": 3538.645562698913, + "max_y": 6266.018323374328, + "center": [ + 3470.2704510928206, + 6266.018323374328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3401.895339486728, + 6266.018323374328 + ], + [ + 3538.645562698913, + 6266.018323374328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6301.822916703463, + "max_x": 3538.645562698913, + "max_y": 6301.822916703463, + "center": [ + 3470.2704510928206, + 6301.822916703463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3401.895339486728, + 6301.822916703463 + ], + [ + 3538.645562698913, + 6301.822916703463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3434.602807724719, + "min_y": 6266.018323374328, + "max_x": 3434.602807724719, + "max_y": 6301.822916703463, + "center": [ + 3434.602807724719, + 6283.920620038896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3434.602807724719, + 6301.822916703463 + ], + [ + 3434.602807724719, + 6266.018323374328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3527.341000198914, + "min_y": 6267.99626932748, + "max_x": 3536.072800198914, + "max_y": 6270.42176932748, + "center": [ + 3531.706900198914, + 6269.20901932748 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3405.059063269366, + "min_y": 6274.86486545851, + "max_x": 3406.514363269366, + "max_y": 6277.290365458511, + "center": [ + 3405.7867132693664, + 6276.077615458511 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3412.452985585869, + "min_y": 6274.864865458464, + "max_x": 3428.461285585869, + "max_y": 6277.290365458464, + "center": [ + 3420.457135585869, + 6276.077615458464 + ] + }, + "raw_value": "MAR.20.2019", + "clean_value": "MAR.20.2019", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3458.846435211817, + "min_y": 6274.864865458464, + "max_x": 3463.212335211817, + "max_y": 6277.290365458464, + "center": [ + 3461.029385211817, + 6276.077615458464 + ] + }, + "raw_value": "IFD", + "clean_value": "IFD", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3489.442562698913, + "min_y": 6274.864865458464, + "max_x": 3493.808462698913, + "max_y": 6277.290365458464, + "center": [ + 3491.625512698913, + 6276.077615458464 + ] + }, + "raw_value": "SYS", + "clean_value": "SYS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3401.895339486728, + "min_y": 6244.273393825001, + "max_x": 3538.645562698913, + "max_y": 6244.273393825001, + "center": [ + 3470.2704510928206, + 6244.273393825001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.645562698913, + 6244.273393825001 + ], + [ + 3401.895339486728, + 6244.273393825001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6237.085653590458, + "max_x": 2580.902385564113, + "max_y": 6293.680653590458, + "center": [ + 2580.902385564113, + 6265.383153590457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6293.680653590458 + ], + [ + 2580.902385564113, + 6237.085653590458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6168.694695938302, + "max_x": 2580.902385564113, + "max_y": 6225.289695938304, + "center": [ + 2580.902385564113, + 6196.992195938303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6225.289695938304 + ], + [ + 2580.902385564113, + 6168.694695938302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 3167.168089026976, + "max_y": 6102.561476026954, + "center": [ + 2874.0352372955444, + 6102.561476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6102.561476026954 + ], + [ + 3167.168089026976, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6102.561476026954, + "max_x": 2580.902385564113, + "max_y": 6159.156476026954, + "center": [ + 2580.902385564113, + 6130.858976026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6159.156476026954 + ], + [ + 2580.902385564113, + 6102.561476026954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3404.262550759625, + "min_y": 6199.967526109785, + "max_x": 3422.760001016618, + "max_y": 6202.33899409145, + "center": [ + 3413.5112758881214, + 6201.153260100617 + ] + }, + "raw_value": "MANUFACTURER:", + "clean_value": "MANUFACTURER:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3404.011697667975, + "min_y": 6240.492404210062, + "max_x": 3413.9718631909714, + "max_y": 6242.863872191728, + "center": [ + 3408.9917804294732, + 6241.678138200895 + ] + }, + "raw_value": "CLIENT:", + "clean_value": "CLIENT:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BAF", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 3472.360962175509, + "min_y": 6255.101068199067, + "max_x": 3718.5172947719684, + "max_y": 6265.4092209511955, + "center": [ + 3595.4391284737385, + 6260.255144575131 + ] + }, + "raw_value": "10th Plant", + "clean_value": "10th Plant", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BB3", + "entity_type": "TEXT", + "layer": "C3", + "bbox": { + "min_x": 3427.335194734683, + "min_y": 6229.275041898576, + "max_x": 3497.6586171346826, + "max_y": 6233.316617898576, + "center": [ + 3462.4969059346827, + 6231.295829898576 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BBC", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3417.828665270881, + "min_y": 6233.286406033045, + "max_x": 3418.326783193999, + "max_y": 6233.286406033045, + "center": [ + 3418.0777242324402, + 6233.286406033045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3417.828665270881, + 6233.286406033045 + ], + [ + 3418.326783193999, + 6233.286406033045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BBD", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3417.899787836112, + "min_y": 6231.605260988197, + "max_x": 3418.326783193999, + "max_y": 6231.605260988197, + "center": [ + 3418.1132855150554, + 6231.605260988197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6231.605260988197 + ], + [ + 3417.899787836112, + 6231.605260988197 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BBE", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.180838339396, + "min_y": 6232.027915090249, + "max_x": 3418.326783193999, + "max_y": 6232.027915090249, + "center": [ + 3418.2538107666974, + 6232.027915090249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6232.027915090249 + ], + [ + 3418.180838339396, + 6232.027915090249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BBF", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3417.334611790562, + "min_y": 6231.310192111767, + "max_x": 3417.843870461579, + "max_y": 6231.310192111767, + "center": [ + 3417.5892411260706, + 6231.310192111767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3417.843870461579, + 6231.310192111767 + ], + [ + 3417.334611790562, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC0", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3417.334611790562, + "min_y": 6231.310192111767, + "max_x": 3417.828665270881, + "max_y": 6233.286406033045, + "center": [ + 3417.5816385307216, + 6232.298299072406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3417.828665270881, + 6233.286406033045 + ], + [ + 3417.334611790562, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC1", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.180838339396, + "min_y": 6232.027915090249, + "max_x": 3418.326783193999, + "max_y": 6232.611694508686, + "center": [ + 3418.2538107666974, + 6232.319804799467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6232.611694508686 + ], + [ + 3418.180838339396, + 6232.027915090249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC2", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3417.843870461579, + "min_y": 6231.310192111767, + "max_x": 3417.899787836112, + "max_y": 6231.605260988197, + "center": [ + 3417.871829148846, + 6231.457726549982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3417.899787836112, + 6231.605260988197 + ], + [ + 3417.843870461579, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC3", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.326783193999, + "min_y": 6233.286406033045, + "max_x": 3418.824901117124, + "max_y": 6233.286406033045, + "center": [ + 3418.5758421555615, + 6233.286406033045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.824901117124, + 6233.286406033045 + ], + [ + 3418.326783193999, + 6233.286406033045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC4", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.326783193999, + "min_y": 6231.605260988197, + "max_x": 3418.753778551899, + "max_y": 6231.605260988197, + "center": [ + 3418.5402808729486, + 6231.605260988197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6231.605260988197 + ], + [ + 3418.753778551899, + 6231.605260988197 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC5", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.326783193999, + "min_y": 6232.027915090249, + "max_x": 3418.472728048615, + "max_y": 6232.027915090249, + "center": [ + 3418.399755621307, + 6232.027915090249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6232.027915090249 + ], + [ + 3418.472728048615, + 6232.027915090249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC6", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.809695926426, + "min_y": 6231.310192111767, + "max_x": 3419.318954597443, + "max_y": 6231.310192111767, + "center": [ + 3419.0643252619343, + 6231.310192111767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.809695926426, + 6231.310192111767 + ], + [ + 3419.318954597443, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC7", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.824901117124, + "min_y": 6231.310192111767, + "max_x": 3419.318954597443, + "max_y": 6233.286406033045, + "center": [ + 3419.0719278572833, + 6232.298299072406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.824901117124, + 6233.286406033045 + ], + [ + 3419.318954597443, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC8", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.326783193999, + "min_y": 6232.027915090249, + "max_x": 3418.472728048615, + "max_y": 6232.611694508686, + "center": [ + 3418.399755621307, + 6232.319804799467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.326783193999, + 6232.611694508686 + ], + [ + 3418.472728048615, + 6232.027915090249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BC9", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3418.753778551899, + "min_y": 6231.310192111767, + "max_x": 3418.809695926426, + "max_y": 6231.605260988197, + "center": [ + 3418.7817372391623, + 6231.457726549982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3418.753778551899, + 6231.605260988197 + ], + [ + 3418.809695926426, + 6231.310192111767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BCA", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 3418.541104301797, + "min_y": 6227.76807578343, + "max_x": 3428.406670755783, + "max_y": 6229.349046920445, + "center": [ + 3423.4738875287903, + 6228.558561351938 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3451.481291709234, + "min_y": 6197.332544046147, + "max_x": 3452.65538466534, + "max_y": 6197.332544046147, + "center": [ + 3452.068338187287, + 6197.332544046147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3452.65538466534, + 6197.332544046147 + ], + [ + 3451.481291709234, + 6197.332544046147 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3447.120375015122, + "min_y": 6197.332544046147, + "max_x": 3448.294467971229, + "max_y": 6197.332544046147, + "center": [ + 3447.7074214931754, + 6197.332544046147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3448.294467971229, + 6197.332544046147 + ], + [ + 3447.120375015122, + 6197.332544046147 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3447.120375015122, + "min_y": 6195.655268394566, + "max_x": 3452.65538466534, + "max_y": 6195.655268394566, + "center": [ + 3449.887879840231, + 6195.655268394566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3452.65538466534, + 6195.655268394566 + ], + [ + 3447.120375015122, + 6195.655268394566 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3448.294467971229, + "min_y": 6197.332544046147, + "max_x": 3448.294467971229, + "max_y": 6198.338909437096, + "center": [ + 3448.294467971229, + 6197.835726741621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3448.294467971229, + 6198.338909437096 + ], + [ + 3448.294467971229, + 6197.332544046147 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3447.120375015122, + "min_y": 6195.655268394566, + "max_x": 3447.120375015122, + "max_y": 6197.332544046147, + "center": [ + 3447.120375015122, + 6196.493906220356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3447.120375015122, + 6197.332544046147 + ], + [ + 3447.120375015122, + 6195.655268394566 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3451.481291709234, + "min_y": 6197.332544046147, + "max_x": 3451.481291709234, + "max_y": 6198.338909437096, + "center": [ + 3451.481291709234, + 6197.835726741621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3451.481291709234, + 6198.338909437096 + ], + [ + 3451.481291709234, + 6197.332544046147 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3452.65538466534, + "min_y": 6195.655268394566, + "max_x": 3452.65538466534, + "max_y": 6197.332544046147, + "center": [ + 3452.65538466534, + 6196.493906220356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3452.65538466534, + 6197.332544046147 + ], + [ + 3452.65538466534, + 6195.655268394566 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3448.713786884124, + "min_y": 6190.560988999291, + "max_x": 3451.061972796338, + "max_y": 6192.909174911504, + "center": [ + 3449.887879840231, + 6191.735081955398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3449.887879840231, + 6191.735081955398 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BD8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3454.123946858813, + "min_y": 6190.507008681255, + "max_x": 3456.4721327710267, + "max_y": 6192.855194593468, + "center": [ + 3455.29803981492, + 6191.681101637361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3455.29803981492, + 6191.681101637361 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "526BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3454.032990280126, + "min_y": 6192.54481057901, + "max_x": 3454.980002921149, + "max_y": 6192.811299320857, + "center": [ + 3454.5064966006375, + 6192.6780549499335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3454.980002921149, + 6192.811299320857 + ], + [ + 3454.032990280126, + 6192.54481057901 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "526BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3451.061676012123, + "min_y": 6191.708684674659, + "max_x": 3454.032990280126, + "max_y": 6192.54481057901, + "center": [ + 3452.5473331461244, + 6192.126747626835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3454.032990280126, + 6192.54481057901 + ], + [ + 3451.061676012123, + 6191.708684674659 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3450.205916734002, + "min_y": 6190.604884271901, + "max_x": 3451.152929375026, + "max_y": 6190.871373013748, + "center": [ + 3450.679423054514, + 6190.738128642824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3450.205916734002, + 6190.604884271901 + ], + [ + 3451.152929375026, + 6190.871373013748 + ] + ], + "properties": { + "color": 5, + "lineweight": 0 + } + }, + { + "entity_id": "526BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3451.152929375026, + "min_y": 6190.871373013748, + "max_x": 3454.124243643028, + "max_y": 6191.707498918103, + "center": [ + 3452.638586509027, + 6191.289435965926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3451.152929375026, + 6190.871373013748 + ], + [ + 3454.124243643028, + 6191.707498918103 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "526BDD", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 3463.162651515267, + "min_y": 6192.954316053215, + "max_x": 3488.265804909352, + "max_y": 6196.644322486693, + "center": [ + 3475.7142282123095, + 6194.799319269954 + ] + }, + "raw_value": "{\\fMalgun Gothic|b0|i0|c129|p50;주식회사}", + "clean_value": "\\fMalgun Gothic|b0|i0|c129|p50;주식회사", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BDE", + "entity_type": "MTEXT", + "layer": "C3", + "bbox": { + "min_x": 3481.506757589295, + "min_y": 6195.028912569524, + "max_x": 3524.4657084126297, + "max_y": 6200.396194654585, + "center": [ + 3502.9862330009623, + 6197.712553612055 + ] + }, + "raw_value": "{\\fMalgun Gothic|b0|i0|c129|p50; \\H1.0313x;한울}", + "clean_value": "\\fMalgun Gothic|b0|i0|c129|p50; .0313x;한울", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BDF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3404.262550759624, + "min_y": 6219.746175152917, + "max_x": 3421.3371202276176, + "max_y": 6222.117643134583, + "center": [ + 3412.799835493621, + 6220.93190914375 + ] + }, + "raw_value": "DESIGNED BY:", + "clean_value": "DESIGNED BY:", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BE0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2656.39240340327, + "min_y": 6388.53200211512, + "max_x": 2688.055257264955, + "max_y": 6420.815696248602, + "center": [ + 2672.2238303341123, + 6404.673849181861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.39240340327, + 6420.815696248602 + ], + [ + 2688.055257264955, + 6420.815696248602 + ], + [ + 2688.055257264955, + 6388.53200211512 + ], + [ + 2656.39240340327, + 6388.53200211512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.510994895305, + "min_y": 6388.842422251043, + "max_x": 2665.510994895305, + "max_y": 6420.505276112692, + "center": [ + 2665.510994895305, + 6404.673849181867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.510994895305, + 6388.842422251043 + ], + [ + 2665.510994895305, + 6420.505276112692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2678.936665772928, + "min_y": 6388.842422251043, + "max_x": 2678.936665772928, + "max_y": 6420.505276112692, + "center": [ + 2678.936665772928, + 6404.673849181867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2678.936665772928, + 6388.842422251043 + ], + [ + 2678.936665772928, + 6420.505276112692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.39240340327, + "min_y": 6411.386684620679, + "max_x": 2688.055257264955, + "max_y": 6411.386684620679, + "center": [ + 2672.2238303341123, + 6411.386684620679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2688.055257264955, + 6411.386684620679 + ], + [ + 2656.39240340327, + 6411.386684620679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.39240340327, + "min_y": 6397.961013743064, + "max_x": 2688.055257264955, + "max_y": 6397.961013743064, + "center": [ + 2672.2238303341123, + 6397.961013743064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2688.055257264955, + 6397.961013743064 + ], + [ + 2656.39240340327, + 6397.961013743064 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2665.618952005841, + "min_y": 6406.406939534543, + "max_x": 2675.3772844002074, + "max_y": 6411.828235309191, + "center": [ + 2670.498118203024, + 6409.117587421867 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BE6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2659.621147373926, + "min_y": 6399.531035040191, + "max_x": 2675.8850346978697, + "max_y": 6404.952330814838, + "center": [ + 2667.753091035898, + 6402.241682927514 + ] + }, + "raw_value": "(재활용)", + "clean_value": "(재활용)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BE7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2704.193292202207, + "min_y": 6423.577644948537, + "max_x": 2716.165234477895, + "max_y": 6430.389842192809, + "center": [ + 2710.179263340051, + 6426.983743570673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.165234477895, + 6430.389842192809 + ], + [ + 2711.821352899907, + 6430.389842192809 + ], + [ + 2708.53717378016, + 6430.389842192809 + ], + [ + 2704.193292202207, + 6430.389842192809 + ], + [ + 2704.193292202207, + 6423.577644948537 + ], + [ + 2708.53717378016, + 6423.577644948537 + ], + [ + 2711.821352899907, + 6423.577644948537 + ], + [ + 2716.165234477895, + 6423.577644948537 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2701.321589877894, + "min_y": 6421.135140122711, + "max_x": 2710.179263340043, + "max_y": 6421.135140122711, + "center": [ + 2705.750426608968, + 6421.135140122711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.179263340043, + 6421.135140122711 + ], + [ + 2701.321589877894, + 6421.135140122711 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2701.321589877894, + "min_y": 6414.351907001905, + "max_x": 2701.321589877894, + "max_y": 6421.135140122711, + "center": [ + 2701.321589877894, + 6417.743523562308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2701.321589877894, + 6421.135140122711 + ], + [ + 2701.321589877894, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2701.963498569863, + "min_y": 6414.351907001905, + "max_x": 2701.963498569863, + "max_y": 6420.493231430777, + "center": [ + 2701.963498569863, + 6417.422569216341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2701.963498569863, + 6420.493231430777 + ], + [ + 2701.963498569863, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2701.321589877894, + "min_y": 6420.493231430777, + "max_x": 2710.179263340043, + "max_y": 6420.493231430777, + "center": [ + 2705.750426608968, + 6420.493231430777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.179263340043, + 6420.493231430777 + ], + [ + 2701.321589877894, + 6420.493231430777 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.461453792663, + "min_y": 6414.351907001905, + "max_x": 2703.823634655076, + "max_y": 6414.351907001905, + "center": [ + 2701.6425442238697, + 6414.351907001905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2703.823634655076, + 6414.351907001905 + ], + [ + 2699.461453792663, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.461453792663, + "min_y": 6413.950597325578, + "max_x": 2703.823634655076, + "max_y": 6413.950597325578, + "center": [ + 2701.6425442238697, + 6413.950597325578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2699.461453792663, + 6413.950597325578 + ], + [ + 2703.823634655076, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2703.823634655076, + "min_y": 6413.950597325578, + "max_x": 2703.823634655076, + "max_y": 6414.351907001905, + "center": [ + 2703.823634655076, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2703.823634655076, + 6414.351907001905 + ], + [ + 2703.823634655076, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.179263340043, + "min_y": 6421.135140122711, + "max_x": 2719.036936802208, + "max_y": 6421.135140122711, + "center": [ + 2714.6081000711256, + 6421.135140122711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.179263340043, + 6421.135140122711 + ], + [ + 2719.036936802208, + 6421.135140122711 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2719.036936802208, + "min_y": 6414.351907001905, + "max_x": 2719.036936802208, + "max_y": 6421.135140122711, + "center": [ + 2719.036936802208, + 6417.743523562308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2719.036936802208, + 6421.135140122711 + ], + [ + 2719.036936802208, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2718.39502811024, + "min_y": 6414.351907001905, + "max_x": 2718.39502811024, + "max_y": 6420.493231430777, + "center": [ + 2718.39502811024, + 6417.422569216341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2718.39502811024, + 6420.493231430777 + ], + [ + 2718.39502811024, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.179263340043, + "min_y": 6420.493231430777, + "max_x": 2719.036936802208, + "max_y": 6420.493231430777, + "center": [ + 2714.6081000711256, + 6420.493231430777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.179263340043, + 6420.493231430777 + ], + [ + 2719.036936802208, + 6420.493231430777 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.534892025009, + "min_y": 6414.351907001905, + "max_x": 2720.897072887473, + "max_y": 6414.351907001905, + "center": [ + 2718.715982456241, + 6414.351907001905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.534892025009, + 6414.351907001905 + ], + [ + 2720.897072887473, + 6414.351907001905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2720.897072887473, + "min_y": 6413.950597325578, + "max_x": 2720.897072887473, + "max_y": 6414.351907001905, + "center": [ + 2720.897072887473, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2720.897072887473, + 6414.351907001905 + ], + [ + 2720.897072887473, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.534892025009, + "min_y": 6413.950597325578, + "max_x": 2720.897072887473, + "max_y": 6413.950597325578, + "center": [ + 2718.715982456241, + 6413.950597325578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2720.897072887473, + 6413.950597325578 + ], + [ + 2716.534892025009, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.534892025009, + "min_y": 6413.950597325578, + "max_x": 2716.534892025009, + "max_y": 6414.351907001905, + "center": [ + 2716.534892025009, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.534892025009, + 6414.351907001905 + ], + [ + 2716.534892025009, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2720.897072887473, + "min_y": 6413.950597325578, + "max_x": 2720.897072887473, + "max_y": 6414.351907001905, + "center": [ + 2720.897072887473, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2720.897072887473, + 6414.351907001905 + ], + [ + 2720.897072887473, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.461453792663, + "min_y": 6413.950597325578, + "max_x": 2699.461453792663, + "max_y": 6414.351907001905, + "center": [ + 2699.461453792663, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2699.461453792663, + 6414.351907001905 + ], + [ + 2699.461453792663, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.461453792663, + "min_y": 6413.950597325578, + "max_x": 2699.461453792663, + "max_y": 6414.351907001905, + "center": [ + 2699.461453792663, + 6414.151252163741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2699.461453792663, + 6414.351907001905 + ], + [ + 2699.461453792663, + 6413.950597325578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2704.193292202207, + "min_y": 6422.953422180684, + "max_x": 2704.193292202207, + "max_y": 6431.014064960698, + "center": [ + 2704.193292202207, + 6426.983743570691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2704.193292202207, + 6431.014064960698 + ], + [ + 2704.193292202207, + 6422.953422180684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526BFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.223830334113, + "min_y": 6420.815696248602, + "max_x": 2672.223830334113, + "max_y": 6426.983743570692, + "center": [ + 2672.223830334113, + 6423.899719909647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.223830334113, + 6420.815696248602 + ], + [ + 2672.223830334113, + 6426.983743570692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.223830334113, + "min_y": 6426.983743570692, + "max_x": 2704.193292202207, + "max_y": 6426.983743570692, + "center": [ + 2688.20856126816, + 6426.983743570692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2704.193292202207, + 6426.983743570692 + ], + [ + 2672.223830334113, + 6426.983743570692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.14823154294, + "min_y": 6391.826309438794, + "max_x": 2797.14823154294, + "max_y": 6417.16314392071, + "center": [ + 2797.14823154294, + 6404.494726679752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.14823154294, + 6417.16314392071 + ], + [ + 2797.14823154294, + 6391.826309438794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526BFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.566164216436, + "min_y": 6391.972295751209, + "max_x": 2770.566164216436, + "max_y": 6417.30913023313, + "center": [ + 2770.566164216436, + 6404.64071299217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.566164216436, + 6417.30913023313 + ], + [ + 2770.566164216436, + 6391.972295751209 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.566164216436, + "min_y": 6381.85378135509, + "max_x": 2770.566164216436, + "max_y": 6391.972295751209, + "center": [ + 2770.566164216436, + 6386.91303855315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.566164216436, + 6391.972295751209 + ], + [ + 2770.566164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.081920817852, + "min_y": 6381.85378135509, + "max_x": 2797.081920817852, + "max_y": 6391.23915246514, + "center": [ + 2797.081920817852, + 6386.546466910115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.081920817852, + 6391.23915246514 + ], + [ + 2797.081920817852, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.75864875452, + "min_y": 6396.414067890848, + "max_x": 2770.551127936227, + "max_y": 6396.414067890848, + "center": [ + 2769.1548883453734, + 6396.414067890848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.551127936227, + 6396.414067890848 + ], + [ + 2767.75864875452, + 6396.414067890848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.75864875452, + "min_y": 6392.872965751069, + "max_x": 2770.566164216436, + "max_y": 6392.872965751069, + "center": [ + 2769.1624064854777, + 6392.872965751069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.566164216436, + 6392.872965751069 + ], + [ + 2767.75864875452, + 6392.872965751069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.75864875452, + "min_y": 6392.218899068542, + "max_x": 2767.75864875452, + "max_y": 6397.046566974953, + "center": [ + 2767.75864875452, + 6394.632733021747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.75864875452, + 6397.046566974953 + ], + [ + 2767.75864875452, + 6392.218899068542 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.496791241443, + "min_y": 6392.218899068542, + "max_x": 2767.496791241443, + "max_y": 6397.046566974953, + "center": [ + 2767.496791241443, + 6394.632733021747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.496791241443, + 6397.046566974953 + ], + [ + 2767.496791241443, + 6392.218899068542 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2795.121920817852, + "min_y": 6381.85378135509, + "max_x": 2795.121920817852, + "max_y": 6388.646024963852, + "center": [ + 2795.121920817852, + 6385.249903159471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2795.121920817852, + 6388.646024963852 + ], + [ + 2795.121920817852, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2772.526164216436, + "min_y": 6381.85378135509, + "max_x": 2772.526164216436, + "max_y": 6388.793126113619, + "center": [ + 2772.526164216436, + 6385.323453734354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2772.526164216436, + 6388.793126113619 + ], + [ + 2772.526164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2794.141920817852, + "min_y": 6381.85378135509, + "max_x": 2798.061920817852, + "max_y": 6381.85378135509, + "center": [ + 2796.1019208178523, + 6381.85378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.141920817852, + 6381.85378135509 + ], + [ + 2798.061920817852, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.566164216436, + "min_y": 6381.85378135509, + "max_x": 2772.526164216436, + "max_y": 6381.85378135509, + "center": [ + 2771.546164216436, + 6381.85378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2772.526164216436, + 6381.85378135509 + ], + [ + 2770.566164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2794.141920817852, + "min_y": 6381.36378135509, + "max_x": 2798.061920817852, + "max_y": 6381.36378135509, + "center": [ + 2796.1019208178523, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.141920817852, + 6381.36378135509 + ], + [ + 2798.061920817852, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2794.141920817852, + "min_y": 6381.36378135509, + "max_x": 2794.141920817852, + "max_y": 6381.36378135509, + "center": [ + 2794.141920817852, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.141920817852, + 6381.36378135509 + ], + [ + 2794.141920817852, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2794.141920817852, + "min_y": 6381.36378135509, + "max_x": 2794.141920817852, + "max_y": 6381.85378135509, + "center": [ + 2794.141920817852, + 6381.60878135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.141920817852, + 6381.36378135509 + ], + [ + 2794.141920817852, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2798.061920817852, + "min_y": 6381.36378135509, + "max_x": 2798.061920817852, + "max_y": 6381.36378135509, + "center": [ + 2798.061920817852, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2798.061920817852, + 6381.36378135509 + ], + [ + 2798.061920817852, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2798.061920817852, + "min_y": 6381.36378135509, + "max_x": 2798.061920817852, + "max_y": 6381.85378135509, + "center": [ + 2798.061920817852, + 6381.60878135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2798.061920817852, + 6381.36378135509 + ], + [ + 2798.061920817852, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.85378135509, + "max_x": 2773.506164216436, + "max_y": 6381.85378135509, + "center": [ + 2771.546164216436, + 6381.85378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2769.586164216436, + 6381.85378135509 + ], + [ + 2773.506164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.36378135509, + "max_x": 2773.506164216436, + "max_y": 6381.36378135509, + "center": [ + 2771.546164216436, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2769.586164216436, + 6381.36378135509 + ], + [ + 2773.506164216436, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.36378135509, + "max_x": 2769.586164216436, + "max_y": 6381.36378135509, + "center": [ + 2769.586164216436, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2769.586164216436, + 6381.36378135509 + ], + [ + 2769.586164216436, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2769.586164216436, + "min_y": 6381.36378135509, + "max_x": 2769.586164216436, + "max_y": 6381.85378135509, + "center": [ + 2769.586164216436, + 6381.60878135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2769.586164216436, + 6381.36378135509 + ], + [ + 2769.586164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.506164216436, + "min_y": 6381.36378135509, + "max_x": 2773.506164216436, + "max_y": 6381.36378135509, + "center": [ + 2773.506164216436, + 6381.36378135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.506164216436, + 6381.36378135509 + ], + [ + 2773.506164216436, + 6381.36378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.506164216436, + "min_y": 6381.36378135509, + "max_x": 2773.506164216436, + "max_y": 6381.85378135509, + "center": [ + 2773.506164216436, + 6381.60878135509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.506164216436, + 6381.36378135509 + ], + [ + 2773.506164216436, + 6381.85378135509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2783.824042517145, + "min_y": 6369.047249901908, + "max_x": 2783.824042517145, + "max_y": 6385.86217442331, + "center": [ + 2783.824042517145, + 6377.454712162609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2783.824042517145, + 6385.86217442331 + ], + [ + 2783.824042517145, + 6369.047249901908 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C18", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2802.186853932152, + "min_y": 6402.367936533811, + "max_x": 2823.186853932152, + "max_y": 6407.367936533811, + "center": [ + 2812.686853932152, + 6404.867936533811 + ] + }, + "raw_value": "T-10201", + "clean_value": "T-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2775.529089667998, + "min_y": 6398.525563276344, + "max_x": 2775.529089667998, + "max_y": 6426.983743570673, + "center": [ + 2775.529089667998, + 6412.754653423508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2775.529089667998, + 6398.525563276344 + ], + [ + 2775.529089667998, + 6426.983743570673 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C1A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2833.824042517145, + "min_y": 6375.225917283415, + "max_x": 2841.248044467988, + "max_y": 6375.225917283415, + "center": [ + 2837.5360434925665, + 6375.225917283415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.824042517145, + 6375.225917283415 + ], + [ + 2841.248044467988, + 6375.225917283415 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C1B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2839.677315618979, + "min_y": 6371.025917283414, + "max_x": 2841.248044467988, + "max_y": 6371.025917283414, + "center": [ + 2840.4626800434835, + 6371.025917283414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.677315618979, + 6371.025917283414 + ], + [ + 2841.248044467988, + 6371.025917283414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C1C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2841.248044467988, + "min_y": 6371.025917283414, + "max_x": 2841.248044467988, + "max_y": 6375.225917283415, + "center": [ + 2841.248044467988, + 6373.125917283414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2841.248044467988, + 6371.025917283414 + ], + [ + 2841.248044467988, + 6375.225917283415 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C1D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2827.6453751356385, + "min_y": 6362.868582520401, + "max_x": 2840.002709898651, + "max_y": 6375.225917283415, + "center": [ + 2833.824042517145, + 6369.047249901908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.824042517145, + 6369.047249901908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C1E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2828.924042517145, + "min_y": 6361.174911640335, + "max_x": 2838.724042517145, + "max_y": 6361.174911640335, + "center": [ + 2833.8240425171452, + 6361.174911640335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2838.724042517145, + 6361.174911640335 + ], + [ + 2828.924042517145, + 6361.174911640335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2828.924042517145, + "min_y": 6361.174911640335, + "max_x": 2830.324042517145, + "max_y": 6363.955498669641, + "center": [ + 2829.624042517145, + 6362.565205154988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2828.924042517145, + 6361.174911640335 + ], + [ + 2830.324042517145, + 6363.955498669641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.324042517145, + "min_y": 6361.174911640335, + "max_x": 2838.724042517145, + "max_y": 6363.955498669641, + "center": [ + 2838.024042517145, + 6362.565205154988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2838.724042517145, + 6361.174911640335 + ], + [ + 2837.324042517145, + 6363.955498669641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C21", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2828.123168852679, + "min_y": 6355.724561226562, + "max_x": 2849.123168852679, + "max_y": 6360.724561226562, + "center": [ + 2838.623168852679, + 6358.224561226562 + ] + }, + "raw_value": "P-10201", + "clean_value": "P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C23", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2875.530289995089, + "min_y": 6359.348300375668, + "max_x": 2883.210289995089, + "max_y": 6367.028300375669, + "center": [ + 2879.370289995089, + 6363.188300375668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2879.370289995089, + 6363.188300375668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2881.389824285842, + "min_y": 6364.089652192884, + "max_x": 2881.389824285842, + "max_y": 6375.990831108989, + "center": [ + 2881.389824285842, + 6370.040241650937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2881.389824285842, + 6375.990831108989 + ], + [ + 2881.389824285842, + 6364.089652192884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2875.082196278925, + "min_y": 6364.089652192884, + "max_x": 2875.082196278925, + "max_y": 6375.990831108989, + "center": [ + 2875.082196278925, + 6370.040241650937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2875.082196278925, + 6375.990831108989 + ], + [ + 2875.082196278925, + 6364.089652192884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2883.210289995088, + "min_y": 6363.188300375668, + "max_x": 2883.210289995088, + "max_y": 6375.990831108989, + "center": [ + 2883.210289995088, + 6369.589565742329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2883.210289995088, + 6363.188300375668 + ], + [ + 2883.210289995088, + 6375.990831108989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2873.261730569679, + "min_y": 6363.188300375668, + "max_x": 2873.261730569679, + "max_y": 6375.990831108989, + "center": [ + 2873.261730569679, + 6369.589565742329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2873.261730569679, + 6375.990831108989 + ], + [ + 2873.261730569679, + 6363.188300375668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C28", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2873.261730569679, + "min_y": 6359.348300375668, + "max_x": 2880.9417305696793, + "max_y": 6367.028300375669, + "center": [ + 2877.101730569679, + 6363.188300375668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2877.101730569679, + 6363.188300375668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2878.236010282384, + "min_y": 6362.160867976347, + "max_x": 2881.389824285842, + "max_y": 6364.089652192884, + "center": [ + 2879.812917284113, + 6363.125260084616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2881.389824285842, + 6364.089652192884 + ], + [ + 2878.236010282384, + 6362.160867976347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2875.082196278925, + "min_y": 6362.160867976347, + "max_x": 2878.236010282384, + "max_y": 6364.089652192884, + "center": [ + 2876.6591032806546, + 6363.125260084616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2875.082196278925, + 6364.089652192884 + ], + [ + 2878.236010282384, + 6362.160867976347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2877.101730569679, + "min_y": 6359.348300375668, + "max_x": 2879.370289995089, + "max_y": 6359.348300375668, + "center": [ + 2878.236010282384, + 6359.348300375668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2877.101730569679, + 6359.348300375668 + ], + [ + 2879.370289995089, + 6359.348300375668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2883.210289995088, + "min_y": 6375.990831108989, + "max_x": 2884.989727402776, + "max_y": 6375.990831108989, + "center": [ + 2884.100008698932, + 6375.990831108989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2883.210289995088, + 6375.990831108989 + ], + [ + 2884.989727402776, + 6375.990831108989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2872.203001959148, + "min_y": 6375.412070261209, + "max_x": 2872.203001959148, + "max_y": 6377.451541966062, + "center": [ + 2872.203001959148, + 6376.4318061136355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2872.203001959148, + 6377.451541966062 + ], + [ + 2872.203001959148, + 6375.412070261209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2871.482293161992, + "min_y": 6375.990831108989, + "max_x": 2873.261730569679, + "max_y": 6375.990831108989, + "center": [ + 2872.3720118658357, + 6375.990831108989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2871.482293161992, + 6375.990831108989 + ], + [ + 2873.261730569679, + 6375.990831108989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2884.269018605619, + "min_y": 6375.412070261209, + "max_x": 2884.269018605619, + "max_y": 6377.451541966062, + "center": [ + 2884.269018605619, + 6376.4318061136355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2884.269018605619, + 6377.451541966062 + ], + [ + 2884.269018605619, + 6375.412070261209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2871.482293161992, + "min_y": 6376.872781118282, + "max_x": 2884.989727402776, + "max_y": 6376.872781118282, + "center": [ + 2878.236010282384, + 6376.872781118282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2871.482293161992, + 6376.872781118282 + ], + [ + 2884.989727402776, + 6376.872781118282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2873.261730569679, + "min_y": 6375.990831108989, + "max_x": 2883.210289995088, + "max_y": 6375.990831108989, + "center": [ + 2878.236010282383, + 6375.990831108989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2873.261730569679, + 6375.990831108989 + ], + [ + 2883.210289995088, + 6375.990831108989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2875.082196278925, + "min_y": 6364.089652192884, + "max_x": 2881.389824285842, + "max_y": 6375.990831108989, + "center": [ + 2878.2360102823836, + 6370.040241650937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2881.389824285842, + 6375.990831108989 + ], + [ + 2875.082196278925, + 6364.089652192884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2875.082196278925, + "min_y": 6364.089652192884, + "max_x": 2881.389824285842, + "max_y": 6375.990831108989, + "center": [ + 2878.2360102823836, + 6370.040241650937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2875.082196278925, + 6375.990831108989 + ], + [ + 2881.389824285842, + 6364.089652192884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C34", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2868.339029599255, + "min_y": 6351.111350318216, + "max_x": 2898.339029599255, + "max_y": 6356.111350318216, + "center": [ + 2883.339029599255, + 6353.611350318216 + ] + }, + "raw_value": "F-10202A/B", + "clean_value": "F-10202A/B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2917.653286560548, + "min_y": 6388.08328545656, + "max_x": 2917.653286560548, + "max_y": 6396.871732562632, + "center": [ + 2917.653286560548, + 6392.477509009595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2917.653286560548, + 6396.871732562632 + ], + [ + 2917.653286560548, + 6388.08328545656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6388.08328545656, + "max_x": 2909.653286560548, + "max_y": 6396.871732562632, + "center": [ + 2909.653286560548, + 6392.477509009595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.653286560548, + 6396.871732562632 + ], + [ + 2909.653286560548, + 6388.08328545656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6418.871732562632, + "max_x": 2909.653286560548, + "max_y": 6422.871732562632, + "center": [ + 2909.653286560548, + 6420.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.653286560548, + 6422.871732562632 + ], + [ + 2909.653286560548, + 6418.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2917.653286560548, + "min_y": 6418.871732562632, + "max_x": 2917.653286560548, + "max_y": 6422.871732562632, + "center": [ + 2917.653286560548, + 6420.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2917.653286560548, + 6422.871732562632 + ], + [ + 2917.653286560548, + 6418.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6397.871732562632, + "max_x": 2909.653286560548, + "max_y": 6417.871732562632, + "center": [ + 2909.653286560548, + 6407.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.653286560548, + 6417.871732562632 + ], + [ + 2909.653286560548, + 6397.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2917.653286560548, + "min_y": 6397.871732562632, + "max_x": 2917.653286560548, + "max_y": 6417.871732562632, + "center": [ + 2917.653286560548, + 6407.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2917.653286560548, + 6417.871732562632 + ], + [ + 2917.653286560548, + 6397.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6396.871732562632, + "max_x": 2919.653286560548, + "max_y": 6396.871732562632, + "center": [ + 2913.653286560548, + 6396.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2919.653286560548, + 6396.871732562632 + ], + [ + 2907.653286560548, + 6396.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6397.871732562632, + "max_x": 2919.653286560548, + "max_y": 6397.871732562632, + "center": [ + 2913.653286560548, + 6397.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2919.653286560548, + 6397.871732562632 + ], + [ + 2907.653286560548, + 6397.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6418.871732562632, + "max_x": 2919.653286560548, + "max_y": 6418.871732562632, + "center": [ + 2913.653286560548, + 6418.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2919.653286560548, + 6418.871732562632 + ], + [ + 2907.653286560548, + 6418.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2907.653286560548, + "min_y": 6417.871732562632, + "max_x": 2919.653286560548, + "max_y": 6417.871732562632, + "center": [ + 2913.653286560548, + 6417.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2919.653286560548, + 6417.871732562632 + ], + [ + 2907.653286560548, + 6417.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6422.871732562632, + "max_x": 2917.653286560548, + "max_y": 6422.871732562632, + "center": [ + 2913.653286560548, + 6422.871732562632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.653286560548, + 6422.871732562632 + ], + [ + 2917.653286560548, + 6422.871732562632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.653286560548, + "min_y": 6388.08328545656, + "max_x": 2917.653286560548, + "max_y": 6388.08328545656, + "center": [ + 2913.653286560548, + 6388.08328545656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2917.653286560548, + 6388.08328545656 + ], + [ + 2909.653286560548, + 6388.08328545656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6408.370817396828, + "max_x": 3011.573400301571, + "max_y": 6586.275713723856, + "center": [ + 3011.573400301571, + 6497.323265560342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6586.275713723856 + ], + [ + 3011.573400301571, + 6408.370817396828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.573400301571, + "min_y": 6408.370817396828, + "max_x": 3025.573400301571, + "max_y": 6586.275713723856, + "center": [ + 3025.573400301571, + 6497.323265560342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6586.275713723856 + ], + [ + 3025.573400301571, + 6408.370817396828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C43", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6586.275713723856, + "max_x": 3025.573400301571, + "max_y": 6589.534523948696, + "center": [ + 3018.573400301571, + 6587.9051188362755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6586.275713723856 + ], + [ + 3025.160077006685, + 6587.362058879645 + ], + [ + 3023.523147769877, + 6588.58004053244 + ], + [ + 3021.412844709562, + 6589.263250964108 + ], + [ + 3018.573400301571, + 6589.534523948696 + ], + [ + 3015.73395589358, + 6589.263250964108 + ], + [ + 3013.623652833265, + 6588.58004053244 + ], + [ + 3011.986723596457, + 6587.362058879645 + ], + [ + 3011.573400301571, + 6586.275713723856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C44", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6405.112007171988, + "max_x": 3025.573400301571, + "max_y": 6408.370817396828, + "center": [ + 3018.573400301571, + 6406.7414122844075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6408.370817396828 + ], + [ + 3025.160077006685, + 6407.284472241038 + ], + [ + 3023.523147769877, + 6406.066490588244 + ], + [ + 3021.412844709562, + 6405.383280156574 + ], + [ + 3018.573400301571, + 6405.112007171988 + ], + [ + 3015.73395589358, + 6405.383280156574 + ], + [ + 3013.623652833265, + 6406.066490588244 + ], + [ + 3011.986723596457, + 6407.284472241038 + ], + [ + 3011.573400301571, + 6408.370817396828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6573.833603272388, + "max_x": 3025.573400301571, + "max_y": 6573.833603272388, + "center": [ + 3018.573400301571, + 6573.833603272388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6573.833603272388 + ], + [ + 3025.573400301571, + 6573.833603272388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6511.069764292315, + "max_x": 3025.573400301571, + "max_y": 6511.069764292315, + "center": [ + 3018.573400301571, + 6511.069764292315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6511.069764292315 + ], + [ + 3025.573400301571, + 6511.069764292315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6511.069764292315, + "max_x": 3025.573400301571, + "max_y": 6573.833603272388, + "center": [ + 3018.573400301571, + 6542.451683782352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6511.069764292315 + ], + [ + 3025.573400301571, + 6573.833603272388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6511.069764292315, + "max_x": 3025.573400301571, + "max_y": 6573.833603272388, + "center": [ + 3018.573400301571, + 6542.451683782352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6573.833603272388 + ], + [ + 3025.573400301571, + 6511.069764292315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6482.416964160207, + "max_x": 3025.573400301571, + "max_y": 6482.416964160207, + "center": [ + 3018.573400301571, + 6482.416964160207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6482.416964160207 + ], + [ + 3025.573400301571, + 6482.416964160207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6590.847546003799, + "max_x": 3084.898924124956, + "max_y": 6593.886069428283, + "center": [ + 3084.898924124956, + 6592.366807716041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.898924124956, + 6593.886069428283 + ], + [ + 3084.898924124956, + 6590.847546003799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3076.898924124956, + "min_y": 6590.8475460038, + "max_x": 3076.898924124956, + "max_y": 6593.886069428283, + "center": [ + 3076.898924124956, + 6592.366807716042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3076.898924124956, + 6593.886069428283 + ], + [ + 3076.898924124956, + 6590.8475460038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3076.898924124956, + "min_y": 6615.886069428281, + "max_x": 3076.898924124956, + "max_y": 6619.886069428281, + "center": [ + 3076.898924124956, + 6617.886069428281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3076.898924124956, + 6619.886069428281 + ], + [ + 3076.898924124956, + 6615.886069428281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6615.886069428281, + "max_x": 3084.898924124956, + "max_y": 6619.886069428281, + "center": [ + 3084.898924124956, + 6617.886069428281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.898924124956, + 6619.886069428281 + ], + [ + 3084.898924124956, + 6615.886069428281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3076.898924124956, + "min_y": 6594.886069428283, + "max_x": 3076.898924124956, + "max_y": 6614.886069428282, + "center": [ + 3076.898924124956, + 6604.886069428283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3076.898924124956, + 6614.886069428282 + ], + [ + 3076.898924124956, + 6594.886069428283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6594.886069428283, + "max_x": 3084.898924124956, + "max_y": 6614.886069428282, + "center": [ + 3084.898924124956, + 6604.886069428283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.898924124956, + 6614.886069428282 + ], + [ + 3084.898924124956, + 6594.886069428283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6593.886069428283, + "max_x": 3086.898924124956, + "max_y": 6593.886069428283, + "center": [ + 3080.898924124956, + 6593.886069428283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.898924124956, + 6593.886069428283 + ], + [ + 3074.898924124956, + 6593.886069428283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6594.886069428283, + "max_x": 3086.898924124956, + "max_y": 6594.886069428283, + "center": [ + 3080.898924124956, + 6594.886069428283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.898924124956, + 6594.886069428283 + ], + [ + 3074.898924124956, + 6594.886069428283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6615.886069428281, + "max_x": 3086.898924124956, + "max_y": 6615.886069428281, + "center": [ + 3080.898924124956, + 6615.886069428281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.898924124956, + 6615.886069428281 + ], + [ + 3074.898924124956, + 6615.886069428281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.898924124956, + "min_y": 6614.886069428282, + "max_x": 3086.898924124956, + "max_y": 6614.886069428282, + "center": [ + 3080.898924124956, + 6614.886069428282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.898924124956, + 6614.886069428282 + ], + [ + 3074.898924124956, + 6614.886069428282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3076.898924124956, + "min_y": 6619.886069428281, + "max_x": 3084.898924124956, + "max_y": 6619.886069428281, + "center": [ + 3080.898924124956, + 6619.886069428281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3076.898924124956, + 6619.886069428281 + ], + [ + 3084.898924124956, + 6619.886069428281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3087.898924124956, + "min_y": 6571.479935777583, + "max_x": 3087.898924124956, + "max_y": 6575.964747460445, + "center": [ + 3087.898924124956, + 6573.722341619014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3087.898924124956, + 6571.479935777583 + ], + [ + 3087.898924124956, + 6575.964747460445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6571.479935777583, + "max_x": 3073.898924124956, + "max_y": 6587.964747460445, + "center": [ + 3073.898924124956, + 6579.722341619014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.898924124956, + 6571.479935777583 + ], + [ + 3073.898924124956, + 6587.964747460445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C57", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6567.977678903663, + "max_x": 3087.898924124956, + "max_y": 6571.479935777583, + "center": [ + 3080.898924124956, + 6569.7288073406235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.898924124956, + 6571.479935777583 + ], + [ + 3074.32636773506, + 6570.29335199592 + ], + [ + 3075.94917665665, + 6569.003466192578 + ], + [ + 3078.067989356901, + 6568.26793704962 + ], + [ + 3080.898924124956, + 6567.977678903663 + ], + [ + 3083.729858893011, + 6568.26793704962 + ], + [ + 3085.848671593262, + 6569.003466192578 + ], + [ + 3087.471480514851, + 6570.29335199592 + ], + [ + 3087.898924124956, + 6571.479935777583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C58", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3073.898924124956, + "min_y": 6587.964747460446, + "max_x": 3076.898924124956, + "max_y": 6590.8475460038, + "center": [ + 3075.398924124956, + 6589.406146732123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.898924124956, + 6587.964747460446 + ], + [ + 3074.32636773506, + 6589.15133124211 + ], + [ + 3075.94917665665, + 6590.441217045452 + ], + [ + 3076.898924124956, + 6590.8475460038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C59", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3084.898924124956, + "min_y": 6587.964747460446, + "max_x": 3087.898924124956, + "max_y": 6590.847546003799, + "center": [ + 3086.398924124956, + 6589.406146732123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.898924124956, + 6590.847546003799 + ], + [ + 3085.848671593262, + 6590.441217045452 + ], + [ + 3087.471480514851, + 6589.15133124211 + ], + [ + 3087.898924124956, + 6587.964747460446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3087.898924124956, + "min_y": 6575.964747460445, + "max_x": 3087.898924124956, + "max_y": 6587.964747460446, + "center": [ + 3087.898924124956, + 6581.964747460446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3087.898924124956, + 6575.964747460445 + ], + [ + 3087.898924124956, + 6587.964747460446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3053.388683652372, + "min_y": 6352.772463803879, + "max_x": 3060.812685603216, + "max_y": 6352.772463803879, + "center": [ + 3057.100684627794, + 6352.772463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.388683652372, + 6352.772463803879 + ], + [ + 3060.812685603216, + 6352.772463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3059.241956754207, + "min_y": 6348.572463803879, + "max_x": 3060.812685603216, + "max_y": 6348.572463803879, + "center": [ + 3060.0273211787116, + 6348.572463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.241956754207, + 6348.572463803879 + ], + [ + 3060.812685603216, + 6348.572463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3060.812685603215, + "min_y": 6348.572463803879, + "max_x": 3060.812685603216, + "max_y": 6352.772463803879, + "center": [ + 3060.8126856032154, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3060.812685603215, + 6348.572463803879 + ], + [ + 3060.812685603216, + 6352.772463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3047.2100162708657, + "min_y": 6340.415129040866, + "max_x": 3059.5673510338784, + "max_y": 6352.77246380388, + "center": [ + 3053.388683652372, + 6346.593796422373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.388683652372, + 6346.593796422373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C5F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3048.488683652373, + "min_y": 6338.721458160801, + "max_x": 3058.288683652373, + "max_y": 6338.721458160801, + "center": [ + 3053.388683652373, + 6338.721458160801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3058.288683652373, + 6338.721458160801 + ], + [ + 3048.488683652373, + 6338.721458160801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3048.488683652373, + "min_y": 6338.721458160801, + "max_x": 3049.888683652372, + "max_y": 6341.502045190106, + "center": [ + 3049.1886836523727, + 6340.111751675454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3048.488683652373, + 6338.721458160801 + ], + [ + 3049.888683652372, + 6341.502045190106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.888683652372, + "min_y": 6338.721458160801, + "max_x": 3058.288683652373, + "max_y": 6341.502045190106, + "center": [ + 3057.5886836523723, + 6340.111751675454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3058.288683652373, + 6338.721458160801 + ], + [ + 3056.888683652372, + 6341.502045190106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C62", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3047.687809987907, + "min_y": 6333.271107747027, + "max_x": 3068.687809987907, + "max_y": 6338.271107747027, + "center": [ + 3058.187809987907, + 6335.771107747027 + ] + }, + "raw_value": "P-10216", + "clean_value": "P-10216", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3018.57340030157, + "min_y": 6589.534523948696, + "max_x": 3018.57340030157, + "max_y": 6639.942783200272, + "center": [ + 3018.57340030157, + 6614.7386535744845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3018.57340030157, + 6589.534523948696 + ], + [ + 3018.57340030157, + 6639.942783200272 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3018.57340030157, + "min_y": 6639.942783200272, + "max_x": 3046.428106950384, + "max_y": 6639.942783200272, + "center": [ + 3032.5007536259773, + 6639.942783200272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3018.57340030157, + 6639.942783200272 + ], + [ + 3046.428106950384, + 6639.942783200272 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3080.898924124956, + "min_y": 6619.886069428281, + "max_x": 3080.898924124956, + "max_y": 6639.942783200272, + "center": [ + 3080.898924124956, + 6629.914426314277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3080.898924124956, + 6619.886069428281 + ], + [ + 3080.898924124956, + 6639.942783200272 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C67", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3105.708826674423, + "min_y": 6545.38924479274, + "max_x": 3113.132828625266, + "max_y": 6545.38924479274, + "center": [ + 3109.420827649845, + 6545.38924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3105.708826674423, + 6545.38924479274 + ], + [ + 3113.132828625266, + 6545.38924479274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C68", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3111.562099776257, + "min_y": 6541.189244792739, + "max_x": 3113.132828625266, + "max_y": 6541.189244792739, + "center": [ + 3112.3474642007614, + 6541.189244792739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3111.562099776257, + 6541.189244792739 + ], + [ + 3113.132828625266, + 6541.189244792739 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C69", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3113.132828625266, + "min_y": 6541.189244792739, + "max_x": 3113.132828625266, + "max_y": 6545.38924479274, + "center": [ + 3113.132828625266, + 6543.28924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.132828625266, + 6541.189244792739 + ], + [ + 3113.132828625266, + 6545.38924479274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C6A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3099.530159292917, + "min_y": 6533.031910029727, + "max_x": 3111.8874940559294, + "max_y": 6545.389244792741, + "center": [ + 3105.708826674423, + 6539.210577411234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3105.708826674423, + 6539.210577411234 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C6B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3100.808826674423, + "min_y": 6531.338239149661, + "max_x": 3110.608826674423, + "max_y": 6531.338239149661, + "center": [ + 3105.708826674423, + 6531.338239149661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3110.608826674423, + 6531.338239149661 + ], + [ + 3100.808826674423, + 6531.338239149661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3100.808826674423, + "min_y": 6531.338239149661, + "max_x": 3102.208826674423, + "max_y": 6534.118826178967, + "center": [ + 3101.5088266744233, + 6532.728532664314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3100.808826674423, + 6531.338239149661 + ], + [ + 3102.208826674423, + 6534.118826178967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3109.208826674423, + "min_y": 6531.338239149661, + "max_x": 3110.608826674423, + "max_y": 6534.118826178967, + "center": [ + 3109.908826674423, + 6532.728532664314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3110.608826674423, + 6531.338239149661 + ], + [ + 3109.208826674423, + 6534.118826178967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C6E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3100.007953009957, + "min_y": 6525.887888735887, + "max_x": 3121.007953009957, + "max_y": 6530.887888735887, + "center": [ + 3110.507953009957, + 6528.387888735887 + ] + }, + "raw_value": "P-10214", + "clean_value": "P-10214", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3080.898924124956, + "min_y": 6539.210577411234, + "max_x": 3080.898924124956, + "max_y": 6567.977678903663, + "center": [ + 3080.898924124956, + 6553.594128157449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3080.898924124956, + 6567.977678903663 + ], + [ + 3080.898924124956, + 6539.210577411234 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3080.898924124956, + "min_y": 6539.210577411234, + "max_x": 3105.708826674423, + "max_y": 6539.210577411234, + "center": [ + 3093.30387539969, + 6539.210577411234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3105.708826674423, + 6539.210577411234 + ], + [ + 3080.898924124956, + 6539.210577411234 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.132828625266, + "min_y": 6543.28924479274, + "max_x": 3127.795776411741, + "max_y": 6543.28924479274, + "center": [ + 3120.4643025185032, + 6543.28924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.132828625266, + 6543.28924479274 + ], + [ + 3127.795776411741, + 6543.28924479274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3127.795776411741, + "min_y": 6512.775706385951, + "max_x": 3127.795776411741, + "max_y": 6543.28924479274, + "center": [ + 3127.795776411741, + 6528.032475589345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.795776411741, + 6543.28924479274 + ], + [ + 3127.795776411741, + 6512.775706385951 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.573400301571, + "min_y": 6579.939012179359, + "max_x": 3043.138949143307, + "max_y": 6579.939012179359, + "center": [ + 3034.356174722439, + 6579.939012179359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6579.939012179359 + ], + [ + 3043.138949143307, + 6579.939012179359 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.138949143307, + "min_y": 6512.775706385951, + "max_x": 3043.138949143307, + "max_y": 6579.939012179359, + "center": [ + 3043.138949143307, + 6546.357359282655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.138949143307, + 6579.939012179359 + ], + [ + 3043.138949143307, + 6512.775706385951 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.138949143307, + "min_y": 6512.775706385951, + "max_x": 3074.029812820346, + "max_y": 6512.775706385951, + "center": [ + 3058.584380981826, + 6512.775706385951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.138949143307, + 6512.775706385951 + ], + [ + 3074.029812820346, + 6512.775706385951 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.850096784786, + "min_y": 6453.331389906844, + "max_x": 3050.850096784786, + "max_y": 6462.119837012917, + "center": [ + 3050.850096784786, + 6457.725613459881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.850096784786, + 6462.119837012917 + ], + [ + 3050.850096784786, + 6453.331389906844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6453.331389906844, + "max_x": 3042.850096784786, + "max_y": 6462.119837012917, + "center": [ + 3042.850096784786, + 6457.725613459881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3042.850096784786, + 6462.119837012917 + ], + [ + 3042.850096784786, + 6453.331389906844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6484.119837012916, + "max_x": 3042.850096784786, + "max_y": 6488.119837012916, + "center": [ + 3042.850096784786, + 6486.119837012916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3042.850096784786, + 6488.119837012916 + ], + [ + 3042.850096784786, + 6484.119837012916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.850096784786, + "min_y": 6484.119837012916, + "max_x": 3050.850096784786, + "max_y": 6488.119837012916, + "center": [ + 3050.850096784786, + 6486.119837012916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.850096784786, + 6488.119837012916 + ], + [ + 3050.850096784786, + 6484.119837012916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6463.119837012915, + "max_x": 3042.850096784786, + "max_y": 6483.119837012916, + "center": [ + 3042.850096784786, + 6473.119837012915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3042.850096784786, + 6483.119837012916 + ], + [ + 3042.850096784786, + 6463.119837012915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.850096784786, + "min_y": 6463.119837012915, + "max_x": 3050.850096784786, + "max_y": 6483.119837012916, + "center": [ + 3050.850096784786, + 6473.119837012915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.850096784786, + 6483.119837012916 + ], + [ + 3050.850096784786, + 6463.119837012915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6462.119837012917, + "max_x": 3052.850096784786, + "max_y": 6462.119837012917, + "center": [ + 3046.850096784786, + 6462.119837012917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.850096784786, + 6462.119837012917 + ], + [ + 3040.850096784786, + 6462.119837012917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6463.119837012915, + "max_x": 3052.850096784786, + "max_y": 6463.119837012915, + "center": [ + 3046.850096784786, + 6463.119837012915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.850096784786, + 6463.119837012915 + ], + [ + 3040.850096784786, + 6463.119837012915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6484.119837012916, + "max_x": 3052.850096784786, + "max_y": 6484.119837012916, + "center": [ + 3046.850096784786, + 6484.119837012916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.850096784786, + 6484.119837012916 + ], + [ + 3040.850096784786, + 6484.119837012916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3040.850096784786, + "min_y": 6483.119837012916, + "max_x": 3052.850096784786, + "max_y": 6483.119837012916, + "center": [ + 3046.850096784786, + 6483.119837012916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.850096784786, + 6483.119837012916 + ], + [ + 3040.850096784786, + 6483.119837012916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6488.119837012916, + "max_x": 3050.850096784786, + "max_y": 6488.119837012916, + "center": [ + 3046.850096784786, + 6488.119837012916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3042.850096784786, + 6488.119837012916 + ], + [ + 3050.850096784786, + 6488.119837012916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3042.850096784786, + "min_y": 6453.331389906844, + "max_x": 3050.850096784786, + "max_y": 6453.331389906844, + "center": [ + 3046.850096784786, + 6453.331389906844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.850096784786, + 6453.331389906844 + ], + [ + 3042.850096784786, + 6453.331389906844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.573400301571, + "min_y": 6497.323265560341, + "max_x": 3046.850096784786, + "max_y": 6497.323265560341, + "center": [ + 3036.211748543178, + 6497.323265560341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6497.323265560341 + ], + [ + 3046.850096784786, + 6497.323265560341 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3046.850096784786, + "min_y": 6488.119837012916, + "max_x": 3046.850096784786, + "max_y": 6497.323265560341, + "center": [ + 3046.850096784786, + 6492.721551286628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3046.850096784786, + 6488.119837012916 + ], + [ + 3046.850096784786, + 6497.323265560341 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C85", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3079.482458737928, + "min_y": 6451.466270091322, + "max_x": 3086.906460688772, + "max_y": 6451.466270091322, + "center": [ + 3083.1944597133497, + 6451.466270091322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3079.482458737928, + 6451.466270091322 + ], + [ + 3086.906460688772, + 6451.466270091322 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C86", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3085.335731839762, + "min_y": 6447.26627009132, + "max_x": 3086.906460688772, + "max_y": 6447.26627009132, + "center": [ + 3086.121096264267, + 6447.26627009132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3085.335731839762, + 6447.26627009132 + ], + [ + 3086.906460688772, + 6447.26627009132 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C87", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3086.906460688771, + "min_y": 6447.26627009132, + "max_x": 3086.906460688772, + "max_y": 6451.466270091322, + "center": [ + 3086.9064606887714, + 6449.366270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.906460688771, + 6447.26627009132 + ], + [ + 3086.906460688772, + 6451.466270091322 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C88", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3073.3037913564217, + "min_y": 6439.108935328307, + "max_x": 3085.6611261194344, + "max_y": 6451.46627009132, + "center": [ + 3079.482458737928, + 6445.287602709814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3079.482458737928, + 6445.287602709814 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C89", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3074.582458737928, + "min_y": 6437.415264448242, + "max_x": 3084.382458737928, + "max_y": 6437.415264448242, + "center": [ + 3079.482458737928, + 6437.415264448242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.382458737928, + 6437.415264448242 + ], + [ + 3074.582458737928, + 6437.415264448242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.582458737928, + "min_y": 6437.415264448242, + "max_x": 3075.982458737928, + "max_y": 6440.195851477549, + "center": [ + 3075.282458737928, + 6438.805557962895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3074.582458737928, + 6437.415264448242 + ], + [ + 3075.982458737928, + 6440.195851477549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3082.982458737928, + "min_y": 6437.415264448242, + "max_x": 3084.382458737928, + "max_y": 6440.195851477549, + "center": [ + 3083.682458737928, + 6438.805557962895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.382458737928, + 6437.415264448242 + ], + [ + 3082.982458737928, + 6440.195851477549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C8C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3073.781585073463, + "min_y": 6431.964914034468, + "max_x": 3094.781585073463, + "max_y": 6436.964914034468, + "center": [ + 3084.281585073463, + 6434.464914034468 + ] + }, + "raw_value": "P-10218", + "clean_value": "P-10218", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3046.850096784786, + "min_y": 6445.287602709814, + "max_x": 3046.850096784786, + "max_y": 6453.331389906844, + "center": [ + 3046.850096784786, + 6449.3094963083295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3046.850096784786, + 6453.331389906844 + ], + [ + 3046.850096784786, + 6445.287602709814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3046.850096784786, + "min_y": 6445.287602709814, + "max_x": 3079.482458737928, + "max_y": 6445.287602709814, + "center": [ + 3063.166277761357, + 6445.287602709814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3079.482458737928, + 6445.287602709814 + ], + [ + 3046.850096784786, + 6445.287602709814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6434.366270091321, + "max_x": 3263.508692763485, + "max_y": 6434.366270091321, + "center": [ + 3214.083103833813, + 6434.366270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6434.366270091321 + ], + [ + 3263.508692763485, + 6434.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C91", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3007.373400301571, + "min_y": 6420.844598513117, + "max_x": 3011.573400301571, + "max_y": 6420.844598513117, + "center": [ + 3009.473400301571, + 6420.844598513117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3007.373400301571, + 6420.844598513117 + ], + [ + 3011.573400301571, + 6420.844598513117 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2984.565795260147, + "min_y": 6420.844598513117, + "max_x": 3007.373400301571, + "max_y": 6420.844598513117, + "center": [ + 2995.9695977808587, + 6420.844598513117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2984.565795260147, + 6420.844598513117 + ], + [ + 3007.373400301571, + 6420.844598513117 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3018.573400301571, + "min_y": 6370.699925372831, + "max_x": 3018.573400301571, + "max_y": 6405.112007171988, + "center": [ + 3018.573400301571, + 6387.905966272409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3018.573400301571, + 6405.112007171988 + ], + [ + 3018.573400301571, + 6370.699925372831 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2988.565795260146, + "min_y": 6380.975811577449, + "max_x": 2988.565795260146, + "max_y": 6389.76425868352, + "center": [ + 2988.565795260146, + 6385.370035130485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2988.565795260146, + 6389.76425868352 + ], + [ + 2988.565795260146, + 6380.975811577449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6380.975811577449, + "max_x": 2980.565795260146, + "max_y": 6389.76425868352, + "center": [ + 2980.565795260146, + 6385.370035130485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2980.565795260146, + 6389.76425868352 + ], + [ + 2980.565795260146, + 6380.975811577449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6411.76425868352, + "max_x": 2980.565795260146, + "max_y": 6415.76425868352, + "center": [ + 2980.565795260146, + 6413.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2980.565795260146, + 6415.76425868352 + ], + [ + 2980.565795260146, + 6411.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2988.565795260146, + "min_y": 6411.76425868352, + "max_x": 2988.565795260146, + "max_y": 6415.76425868352, + "center": [ + 2988.565795260146, + 6413.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2988.565795260146, + 6415.76425868352 + ], + [ + 2988.565795260146, + 6411.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6390.76425868352, + "max_x": 2980.565795260146, + "max_y": 6410.76425868352, + "center": [ + 2980.565795260146, + 6400.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2980.565795260146, + 6410.76425868352 + ], + [ + 2980.565795260146, + 6390.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2988.565795260146, + "min_y": 6390.76425868352, + "max_x": 2988.565795260146, + "max_y": 6410.76425868352, + "center": [ + 2988.565795260146, + 6400.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2988.565795260146, + 6410.76425868352 + ], + [ + 2988.565795260146, + 6390.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6389.76425868352, + "max_x": 2990.565795260146, + "max_y": 6389.76425868352, + "center": [ + 2984.5657952601464, + 6389.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2990.565795260146, + 6389.76425868352 + ], + [ + 2978.565795260147, + 6389.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6390.76425868352, + "max_x": 2990.565795260146, + "max_y": 6390.76425868352, + "center": [ + 2984.5657952601464, + 6390.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2990.565795260146, + 6390.76425868352 + ], + [ + 2978.565795260147, + 6390.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6411.76425868352, + "max_x": 2990.565795260147, + "max_y": 6411.76425868352, + "center": [ + 2984.565795260147, + 6411.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2990.565795260147, + 6411.76425868352 + ], + [ + 2978.565795260147, + 6411.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2978.565795260147, + "min_y": 6410.76425868352, + "max_x": 2990.565795260147, + "max_y": 6410.76425868352, + "center": [ + 2984.565795260147, + 6410.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2990.565795260147, + 6410.76425868352 + ], + [ + 2978.565795260147, + 6410.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526C9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6415.76425868352, + "max_x": 2988.565795260146, + "max_y": 6415.76425868352, + "center": [ + 2984.565795260146, + 6415.76425868352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2980.565795260146, + 6415.76425868352 + ], + [ + 2988.565795260146, + 6415.76425868352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2980.565795260146, + "min_y": 6380.975811577449, + "max_x": 2988.565795260146, + "max_y": 6380.975811577449, + "center": [ + 2984.565795260146, + 6380.975811577449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2988.565795260146, + 6380.975811577449 + ], + [ + 2980.565795260146, + 6380.975811577449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2984.565795260147, + "min_y": 6415.76425868352, + "max_x": 2984.565795260147, + "max_y": 6420.844598513117, + "center": [ + 2984.565795260147, + 6418.304428598318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2984.565795260147, + 6415.76425868352 + ], + [ + 2984.565795260147, + 6420.844598513117 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2984.565795260146, + "min_y": 6371.89843460652, + "max_x": 2984.565795260146, + "max_y": 6380.975811577449, + "center": [ + 2984.565795260146, + 6376.437123091984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2984.565795260146, + 6380.975811577449 + ], + [ + 2984.565795260146, + 6371.89843460652 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2984.565795260146, + "min_y": 6371.89843460652, + "max_x": 3018.573400301571, + "max_y": 6371.89843460652, + "center": [ + 3001.569597780858, + 6371.89843460652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2984.565795260146, + 6371.89843460652 + ], + [ + 3018.573400301571, + 6371.89843460652 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3018.573400301571, + "min_y": 6346.593796422373, + "max_x": 3018.573400301571, + "max_y": 6370.699925372831, + "center": [ + 3018.573400301571, + 6358.646860897602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3018.573400301571, + 6370.699925372831 + ], + [ + 3018.573400301571, + 6346.593796422373 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3018.573400301571, + "min_y": 6346.593796422373, + "max_x": 3053.388683652372, + "max_y": 6346.593796422373, + "center": [ + 3035.9810419769715, + 6346.593796422373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.388683652372, + 6346.593796422373 + ], + [ + 3018.573400301571, + 6346.593796422373 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3103.352885034102, + "min_y": 6347.472463803878, + "max_x": 3106.552885034103, + "max_y": 6347.47246380388, + "center": [ + 3104.9528850341026, + 6347.472463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.552885034103, + 6347.472463803878 + ], + [ + 3103.352885034102, + 6347.47246380388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3103.352885034102, + "min_y": 6353.872463803879, + "max_x": 3106.552885034103, + "max_y": 6353.872463803879, + "center": [ + 3104.9528850341026, + 6353.872463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.552885034103, + 6353.872463803879 + ], + [ + 3103.352885034102, + 6353.872463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3124.152885034102, + "min_y": 6353.872463803879, + "max_x": 3127.352885034103, + "max_y": 6353.872463803879, + "center": [ + 3125.7528850341023, + 6353.872463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.352885034103, + 6353.872463803879 + ], + [ + 3124.152885034102, + 6353.872463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3124.152885034102, + "min_y": 6347.472463803878, + "max_x": 3127.352885034103, + "max_y": 6347.472463803878, + "center": [ + 3125.7528850341023, + 6347.472463803878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.352885034103, + 6347.472463803878 + ], + [ + 3124.152885034102, + 6347.472463803878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3107.352885034103, + "min_y": 6353.872463803879, + "max_x": 3123.352885034103, + "max_y": 6353.872463803879, + "center": [ + 3115.352885034103, + 6353.872463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3123.352885034103, + 6353.872463803879 + ], + [ + 3107.352885034103, + 6353.872463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3107.352885034103, + "min_y": 6347.472463803878, + "max_x": 3123.352885034103, + "max_y": 6347.472463803878, + "center": [ + 3115.352885034103, + 6347.472463803878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3123.352885034103, + 6347.472463803878 + ], + [ + 3107.352885034103, + 6347.472463803878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3106.552885034103, + "min_y": 6345.872463803879, + "max_x": 3106.552885034103, + "max_y": 6355.472463803879, + "center": [ + 3106.552885034103, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.552885034103, + 6345.872463803879 + ], + [ + 3106.552885034103, + 6355.472463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3107.352885034103, + "min_y": 6345.872463803879, + "max_x": 3107.352885034103, + "max_y": 6355.472463803879, + "center": [ + 3107.352885034103, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3107.352885034103, + 6345.872463803879 + ], + [ + 3107.352885034103, + 6355.472463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3124.152885034102, + "min_y": 6345.872463803879, + "max_x": 3124.152885034102, + "max_y": 6355.472463803879, + "center": [ + 3124.152885034102, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3124.152885034102, + 6345.872463803879 + ], + [ + 3124.152885034102, + 6355.472463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3123.352885034103, + "min_y": 6345.872463803879, + "max_x": 3123.352885034103, + "max_y": 6355.472463803879, + "center": [ + 3123.352885034103, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3123.352885034103, + 6345.872463803879 + ], + [ + 3123.352885034103, + 6355.472463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3127.352885034103, + "min_y": 6347.472463803878, + "max_x": 3127.352885034103, + "max_y": 6353.872463803879, + "center": [ + 3127.352885034103, + 6350.672463803879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.352885034103, + 6353.872463803879 + ], + [ + 3127.352885034103, + 6347.472463803878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3103.352885034102, + "min_y": 6347.47246380388, + "max_x": 3103.352885034102, + "max_y": 6353.872463803879, + "center": [ + 3103.352885034102, + 6350.6724638038795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3103.352885034102, + 6347.47246380388 + ], + [ + 3103.352885034102, + 6353.872463803879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CB2", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3109.215625045272, + "min_y": 6337.466664052804, + "max_x": 3130.215625045272, + "max_y": 6342.466664052804, + "center": [ + 3119.715625045272, + 6339.966664052804 + ] + }, + "raw_value": "E-10219", + "clean_value": "E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3060.812685603216, + "min_y": 6350.67246380388, + "max_x": 3103.352885034102, + "max_y": 6350.67246380388, + "center": [ + 3082.0827853186593, + 6350.67246380388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3060.812685603216, + 6350.67246380388 + ], + [ + 3103.352885034102, + 6350.67246380388 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2841.248044467988, + "min_y": 6373.125917283414, + "max_x": 2873.261730569679, + "max_y": 6373.125917283414, + "center": [ + 2857.2548875188336, + 6373.125917283414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2841.248044467988, + 6373.125917283414 + ], + [ + 2873.261730569679, + 6373.125917283414 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2883.210289995088, + "min_y": 6373.125917283414, + "max_x": 2913.653286560548, + "max_y": 6373.125917283414, + "center": [ + 2898.4317882778178, + 6373.125917283414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2883.210289995088, + 6373.125917283414 + ], + [ + 2913.653286560548, + 6373.125917283414 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2913.653286560548, + "min_y": 6373.125917283414, + "max_x": 2913.653286560548, + "max_y": 6388.08328545656, + "center": [ + 2913.653286560548, + 6380.604601369987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2913.653286560548, + 6373.125917283414 + ], + [ + 2913.653286560548, + 6388.08328545656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2913.653286560548, + "min_y": 6422.871732562632, + "max_x": 2913.653286560548, + "max_y": 6430.358237539831, + "center": [ + 2913.653286560548, + 6426.614985051232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2913.653286560548, + 6422.871732562632 + ], + [ + 2913.653286560548, + 6430.358237539831 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2913.653286560548, + "min_y": 6430.358237539831, + "max_x": 2949.298951152026, + "max_y": 6430.358237539831, + "center": [ + 2931.476118856287, + 6430.358237539831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2913.653286560548, + 6430.358237539831 + ], + [ + 2949.298951152026, + 6430.358237539831 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CB9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3007.373400301571, + "min_y": 6430.358237539831, + "max_x": 3011.573400301571, + "max_y": 6430.358237539831, + "center": [ + 3009.473400301571, + 6430.358237539831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3007.373400301571, + 6430.358237539831 + ], + [ + 3011.573400301571, + 6430.358237539831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CBB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3250.916446829466, + "min_y": 6376.300018829111, + "max_x": 3258.34044878031, + "max_y": 6376.300018829111, + "center": [ + 3254.6284478048883, + 6376.300018829111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3250.916446829466, + 6376.300018829111 + ], + [ + 3258.34044878031, + 6376.300018829111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CBC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3256.769719931301, + "min_y": 6372.100018829111, + "max_x": 3258.34044878031, + "max_y": 6372.100018829111, + "center": [ + 3257.555084355806, + 6372.100018829111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3256.769719931301, + 6372.100018829111 + ], + [ + 3258.34044878031, + 6372.100018829111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CBD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3258.340448780309, + "min_y": 6372.100018829111, + "max_x": 3258.34044878031, + "max_y": 6376.300018829111, + "center": [ + 3258.3404487803095, + 6374.200018829111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3258.340448780309, + 6372.100018829111 + ], + [ + 3258.34044878031, + 6376.300018829111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CBE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3244.73777944796, + "min_y": 6363.942684066097, + "max_x": 3257.0951142109725, + "max_y": 6376.300018829111, + "center": [ + 3250.916446829466, + 6370.121351447604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3250.916446829466, + 6370.121351447604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CBF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3246.016446829467, + "min_y": 6362.249013186032, + "max_x": 3255.816446829467, + "max_y": 6362.249013186032, + "center": [ + 3250.916446829467, + 6362.249013186032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3255.816446829467, + 6362.249013186032 + ], + [ + 3246.016446829467, + 6362.249013186032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3246.016446829467, + "min_y": 6362.249013186032, + "max_x": 3247.416446829466, + "max_y": 6365.029600215337, + "center": [ + 3246.716446829467, + 6363.639306700685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3246.016446829467, + 6362.249013186032 + ], + [ + 3247.416446829466, + 6365.029600215337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3254.416446829466, + "min_y": 6362.249013186032, + "max_x": 3255.816446829467, + "max_y": 6365.029600215337, + "center": [ + 3255.1164468294664, + 6363.639306700685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3255.816446829467, + 6362.249013186032 + ], + [ + 3254.416446829466, + 6365.029600215337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CC2", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3245.215573165001, + "min_y": 6356.798662772257, + "max_x": 3266.215573165001, + "max_y": 6361.798662772257, + "center": [ + 3255.715573165001, + 6359.298662772257 + ] + }, + "raw_value": "P-10221", + "clean_value": "P-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3234.256840894671, + "min_y": 6384.208835959441, + "max_x": 3234.256840894671, + "max_y": 6409.545670441358, + "center": [ + 3234.256840894671, + 6396.8772532003995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.256840894671, + 6409.545670441358 + ], + [ + 3234.256840894671, + 6384.208835959441 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6384.354822271857, + "max_x": 3207.674773568167, + "max_y": 6409.691656753778, + "center": [ + 3207.674773568167, + 6397.023239512818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6409.691656753778 + ], + [ + 3207.674773568167, + 6384.354822271857 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6374.236307875737, + "max_x": 3207.674773568167, + "max_y": 6384.354822271857, + "center": [ + 3207.674773568167, + 6379.295565073797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6384.354822271857 + ], + [ + 3207.674773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3234.190530169583, + "min_y": 6374.236307875737, + "max_x": 3234.190530169583, + "max_y": 6383.621678985788, + "center": [ + 3234.190530169583, + 6378.928993430763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.190530169583, + 6383.621678985788 + ], + [ + 3234.190530169583, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6388.796594411496, + "max_x": 3207.659737287958, + "max_y": 6388.796594411496, + "center": [ + 3206.263497697105, + 6388.796594411496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.659737287958, + 6388.796594411496 + ], + [ + 3204.867258106252, + 6388.796594411496 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6385.255492271717, + "max_x": 3207.674773568167, + "max_y": 6385.255492271717, + "center": [ + 3206.2710158372092, + 6385.255492271717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6385.255492271717 + ], + [ + 3204.867258106252, + 6385.255492271717 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6384.601425589189, + "max_x": 3204.867258106252, + "max_y": 6389.429093495602, + "center": [ + 3204.867258106252, + 6387.015259542395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3204.867258106252, + 6389.429093495602 + ], + [ + 3204.867258106252, + 6384.601425589189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.605400593175, + "min_y": 6384.601425589189, + "max_x": 3204.605400593175, + "max_y": 6389.429093495602, + "center": [ + 3204.605400593175, + 6387.015259542395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3204.605400593175, + 6389.429093495602 + ], + [ + 3204.605400593175, + 6384.601425589189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3232.230530169583, + "min_y": 6374.236307875737, + "max_x": 3232.230530169583, + "max_y": 6381.0285514845, + "center": [ + 3232.230530169583, + 6377.632429680119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3232.230530169583, + 6381.0285514845 + ], + [ + 3232.230530169583, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3209.634773568167, + "min_y": 6374.236307875737, + "max_x": 3209.634773568167, + "max_y": 6381.175652634266, + "center": [ + 3209.634773568167, + 6377.705980255001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3209.634773568167, + 6381.175652634266 + ], + [ + 3209.634773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6374.236307875737, + "max_x": 3235.170530169584, + "max_y": 6374.236307875737, + "center": [ + 3233.2105301695838, + 6374.236307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6374.236307875737 + ], + [ + 3235.170530169584, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6374.236307875737, + "max_x": 3209.634773568167, + "max_y": 6374.236307875737, + "center": [ + 3208.654773568167, + 6374.236307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3209.634773568167, + 6374.236307875737 + ], + [ + 3207.674773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6373.746307875737, + "max_x": 3235.170530169584, + "max_y": 6373.746307875737, + "center": [ + 3233.2105301695838, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6373.746307875737 + ], + [ + 3235.170530169584, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6373.746307875737, + "max_x": 3231.250530169584, + "max_y": 6373.746307875737, + "center": [ + 3231.250530169584, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6373.746307875737 + ], + [ + 3231.250530169584, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6373.746307875737, + "max_x": 3231.250530169584, + "max_y": 6374.236307875737, + "center": [ + 3231.250530169584, + 6373.991307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6373.746307875737 + ], + [ + 3231.250530169584, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6373.746307875737, + "max_x": 3235.170530169584, + "max_y": 6373.746307875737, + "center": [ + 3235.170530169584, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3235.170530169584, + 6373.746307875737 + ], + [ + 3235.170530169584, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6373.746307875737, + "max_x": 3235.170530169584, + "max_y": 6374.236307875737, + "center": [ + 3235.170530169584, + 6373.991307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3235.170530169584, + 6373.746307875737 + ], + [ + 3235.170530169584, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6374.236307875737, + "max_x": 3210.614773568167, + "max_y": 6374.236307875737, + "center": [ + 3208.654773568167, + 6374.236307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6374.236307875737 + ], + [ + 3210.614773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6373.746307875737, + "max_x": 3210.614773568167, + "max_y": 6373.746307875737, + "center": [ + 3208.654773568167, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6373.746307875737 + ], + [ + 3210.614773568167, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6373.746307875737, + "max_x": 3206.694773568167, + "max_y": 6373.746307875737, + "center": [ + 3206.694773568167, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6373.746307875737 + ], + [ + 3206.694773568167, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6373.746307875737, + "max_x": 3206.694773568167, + "max_y": 6374.236307875737, + "center": [ + 3206.694773568167, + 6373.991307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6373.746307875737 + ], + [ + 3206.694773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3210.614773568167, + "min_y": 6373.746307875737, + "max_x": 3210.614773568167, + "max_y": 6373.746307875737, + "center": [ + 3210.614773568167, + 6373.746307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3210.614773568167, + 6373.746307875737 + ], + [ + 3210.614773568167, + 6373.746307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3210.614773568167, + "min_y": 6373.746307875737, + "max_x": 3210.614773568167, + "max_y": 6374.236307875737, + "center": [ + 3210.614773568167, + 6373.991307875737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3210.614773568167, + 6373.746307875737 + ], + [ + 3210.614773568167, + 6374.236307875737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3212.63769901973, + "min_y": 6390.908089796991, + "max_x": 3212.63769901973, + "max_y": 6419.36627009132, + "center": [ + 3212.63769901973, + 6405.137179944155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.63769901973, + 6390.908089796991 + ], + [ + 3212.63769901973, + 6419.36627009132 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6370.121351447604, + "max_x": 3220.947712114109, + "max_y": 6378.24462211023, + "center": [ + 3220.947712114109, + 6374.1829867789165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.947712114109, + 6378.24462211023 + ], + [ + 3220.947712114109, + 6370.121351447604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6370.121351447604, + "max_x": 3250.916446829466, + "max_y": 6370.121351447604, + "center": [ + 3235.932079471788, + 6370.121351447604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3250.916446829466, + 6370.121351447604 + ], + [ + 3220.947712114109, + 6370.121351447604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CE1", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2704.56289662517, + "min_y": 6407.399788835284, + "max_x": 2728.56289662517, + "max_y": 6412.399788835284, + "center": [ + 2716.56289662517, + 6409.899788835284 + ] + }, + "raw_value": "DP-10201", + "clean_value": "DP-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE2", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2925.439971734999, + "min_y": 6403.310766195486, + "max_x": 2946.439971734999, + "max_y": 6408.310766195486, + "center": [ + 2935.939971734999, + 6405.810766195486 + ] + }, + "raw_value": "E-10203", + "clean_value": "E-10203", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE3", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2995.493288002385, + "min_y": 6397.664335311216, + "max_x": 3016.493288002385, + "max_y": 6402.664335311216, + "center": [ + 3005.993288002385, + 6400.164335311216 + ] + }, + "raw_value": "E-10215", + "clean_value": "E-10215", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2986.108873835498, + "min_y": 6494.669463356704, + "max_x": 3007.108873835498, + "max_y": 6499.669463356704, + "center": [ + 2996.608873835498, + 6497.169463356704 + ] + }, + "raw_value": "C-10211", + "clean_value": "C-10211", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3057.978000074956, + "min_y": 6470.132252985954, + "max_x": 3078.978000074956, + "max_y": 6475.132252985954, + "center": [ + 3068.478000074956, + 6472.632252985954 + ] + }, + "raw_value": "E-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3095.385717956333, + "min_y": 6601.609667794068, + "max_x": 3116.385717956333, + "max_y": 6606.609667794068, + "center": [ + 3105.885717956333, + 6604.109667794068 + ] + }, + "raw_value": "E-10212", + "clean_value": "E-10212", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3095.385717956333, + "min_y": 6581.925302929924, + "max_x": 3116.385717956333, + "max_y": 6586.925302929924, + "center": [ + 3105.885717956333, + 6584.425302929924 + ] + }, + "raw_value": "D-10213", + "clean_value": "D-10213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3212.63769901973, + "min_y": 6419.36627009132, + "max_x": 3212.63769901973, + "max_y": 6426.866270091321, + "center": [ + 3212.63769901973, + 6423.116270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.63769901973, + 6426.866270091321 + ], + [ + 3212.63769901973, + 6419.36627009132 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3212.63769901973, + "min_y": 6426.866270091321, + "max_x": 3212.63769901973, + "max_y": 6434.366270091321, + "center": [ + 3212.63769901973, + 6430.616270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.63769901973, + 6426.866270091321 + ], + [ + 3212.63769901973, + 6434.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3127.352885034103, + "min_y": 6350.67246380388, + "max_x": 3147.352885034103, + "max_y": 6350.67246380388, + "center": [ + 3137.352885034103, + 6350.67246380388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.352885034103, + 6350.67246380388 + ], + [ + 3147.352885034103, + 6350.67246380388 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3127.795776411741, + "min_y": 6543.28924479274, + "max_x": 3132.522488231785, + "max_y": 6543.28924479274, + "center": [ + 3130.1591323217626, + 6543.28924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.795776411741, + 6543.28924479274 + ], + [ + 3132.522488231785, + 6543.28924479274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3147.352885034103, + "min_y": 6350.67246380388, + "max_x": 3147.352885034103, + "max_y": 6396.260388291312, + "center": [ + 3147.352885034103, + 6373.4664260475965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3147.352885034103, + 6350.67246380388 + ], + [ + 3147.352885034103, + 6396.260388291312 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3147.352885034103, + "min_y": 6454.358591822792, + "max_x": 3147.352885034103, + "max_y": 6543.28924479274, + "center": [ + 3147.352885034103, + 6498.823918307766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3147.352885034103, + 6454.358591822792 + ], + [ + 3147.352885034103, + 6543.28924479274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3263.508692763485, + "min_y": 6352.340467460789, + "max_x": 3263.508692763485, + "max_y": 6426.866270091316, + "center": [ + 3263.508692763485, + 6389.603368776053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3263.508692763485, + 6426.866270091316 + ], + [ + 3263.508692763485, + 6352.340467460789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3263.508692763485, + "min_y": 6352.34046746079, + "max_x": 3413.192086212802, + "max_y": 6352.34046746079, + "center": [ + 3338.3503894881437, + 6352.34046746079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3263.508692763485, + 6352.34046746079 + ], + [ + 3413.192086212802, + 6352.34046746079 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3258.340448780309, + "min_y": 6374.200018829108, + "max_x": 3263.508692763485, + "max_y": 6374.200018829108, + "center": [ + 3260.9245707718974, + 6374.200018829108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3258.340448780309, + 6374.200018829108 + ], + [ + 3263.508692763485, + 6374.200018829108 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CF1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3418.361346109498, + "min_y": 6350.456281511002, + "max_x": 3436.361346109498, + "max_y": 6355.456281511002, + "center": [ + 3427.361346109498, + 6352.956281511002 + ] + }, + "raw_value": "T-8121", + "clean_value": "T-8121", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3413.192086212802, + "min_y": 6348.50215074552, + "max_x": 3446.930072103009, + "max_y": 6348.50215074552, + "center": [ + 3430.0610791579056, + 6348.50215074552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3413.192086212802, + 6348.50215074552 + ], + [ + 3446.930072103009, + 6348.50215074552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3413.192086212802, + "min_y": 6356.178784176059, + "max_x": 3446.930072103009, + "max_y": 6356.178784176059, + "center": [ + 3430.0610791579056, + 6356.178784176059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3413.192086212802, + 6356.178784176059 + ], + [ + 3446.930072103009, + 6356.178784176059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3413.192086212801, + "min_y": 6348.50215074552, + "max_x": 3413.192086212802, + "max_y": 6356.178784176059, + "center": [ + 3413.1920862128018, + 6352.34046746079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3413.192086212801, + 6356.178784176059 + ], + [ + 3413.192086212802, + 6348.50215074552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3446.930072103009, + "min_y": 6348.50215074552, + "max_x": 3450.083445747242, + "max_y": 6352.34046746079, + "center": [ + 3448.5067589251257, + 6350.421309103155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3450.083445747242, + 6352.34046746079 + ], + [ + 3446.930072103009, + 6348.50215074552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3446.930072103009, + "min_y": 6352.34046746079, + "max_x": 3450.083445747242, + "max_y": 6356.178784176059, + "center": [ + 3448.5067589251257, + 6354.259625818424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3450.083445747242, + 6352.34046746079 + ], + [ + 3446.930072103009, + 6356.178784176059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3263.508692763485, + "min_y": 6426.866270091316, + "max_x": 3263.508692763485, + "max_y": 6434.366270091321, + "center": [ + 3263.508692763485, + 6430.616270091319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3263.508692763485, + 6426.866270091316 + ], + [ + 3263.508692763485, + 6434.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CF8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3239.633519931995, + "min_y": 6395.436139309408, + "max_x": 3260.633519931995, + "max_y": 6400.436139309408, + "center": [ + 3250.133519931995, + 6397.936139309408 + ] + }, + "raw_value": "T-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3125.781987796456, + "min_y": 6449.366270091321, + "max_x": 3164.657514904141, + "max_y": 6449.366270091323, + "center": [ + 3145.219751350299, + 6449.366270091322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6449.366270091321 + ], + [ + 3125.781987796456, + 6449.366270091323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6441.866270091321, + "max_x": 3164.657514904141, + "max_y": 6449.366270091321, + "center": [ + 3164.657514904141, + 6445.616270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6441.866270091321 + ], + [ + 3164.657514904141, + 6449.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6449.366270091321, + "max_x": 3192.821314169977, + "max_y": 6449.366270091321, + "center": [ + 3178.739414537059, + 6449.366270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6449.366270091321 + ], + [ + 3192.821314169977, + 6449.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526CFC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3298.628816200063, + "min_y": 6439.49437057358, + "max_x": 3307.628816200063, + "max_y": 6444.49437057358, + "center": [ + 3303.128816200063, + 6441.99437057358 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CFD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3291.071263047303, + "min_y": 6438.027953376051, + "max_x": 3310.93441088437, + "max_y": 6438.027953376051, + "center": [ + 3301.0028369658367, + 6438.027953376051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3291.071263047303, + 6438.027953376051 + ], + [ + 3310.93441088437, + 6438.027953376051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CFE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3291.071263047303, + "min_y": 6445.70458680659, + "max_x": 3310.93441088437, + "max_y": 6445.70458680659, + "center": [ + 3301.0028369658367, + 6445.70458680659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3291.071263047303, + 6445.70458680659 + ], + [ + 3310.93441088437, + 6445.70458680659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526CFF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3291.071263047302, + "min_y": 6438.027953376051, + "max_x": 3291.071263047303, + "max_y": 6445.70458680659, + "center": [ + 3291.0712630473026, + 6441.866270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3291.071263047302, + 6445.70458680659 + ], + [ + 3291.071263047303, + 6438.027953376051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D00", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3310.93441088437, + "min_y": 6438.027953376051, + "max_x": 3314.087784528604, + "max_y": 6441.866270091321, + "center": [ + 3312.511097706487, + 6439.947111733686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.087784528604, + 6441.866270091321 + ], + [ + 3310.93441088437, + 6438.027953376051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D01", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3310.93441088437, + "min_y": 6441.866270091321, + "max_x": 3314.087784528604, + "max_y": 6445.70458680659, + "center": [ + 3312.511097706487, + 6443.785428448955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.087784528604, + 6441.866270091321 + ], + [ + 3310.93441088437, + 6445.70458680659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3211.316516628086, + "min_y": 6594.352069821733, + "max_x": 3211.3165275151, + "max_y": 6597.45822668293, + "center": [ + 3211.3165220715928, + 6595.905148252332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3211.3165275151, + 6594.352069821733 + ], + [ + 3211.316516628086, + 6597.45822668293 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D03", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3210.05324314515, + "min_y": 6597.45822668293, + "max_x": 3212.579670024126, + "max_y": 6597.45822668293, + "center": [ + 3211.316456584638, + 6597.45822668293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.579670024126, + 6597.45822668293 + ], + [ + 3210.05324314515, + 6597.45822668293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D04", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3199.524628517219, + "min_y": 6588.61762348628, + "max_x": 3199.524628517219, + "max_y": 6591.144050365257, + "center": [ + 3199.524628517219, + 6589.880836925768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3199.524628517219, + 6588.61762348628 + ], + [ + 3199.524628517219, + 6591.144050365257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D05", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3202.7860857069904, + "min_y": 6584.443817182939, + "max_x": 3213.66012519265, + "max_y": 6595.317856668598, + "center": [ + 3208.22310544982, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3208.22310544982, + 6589.880836925769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3203.533085170285, + "min_y": 6589.880836925769, + "max_x": 3212.913125729334, + "max_y": 6589.880836925769, + "center": [ + 3208.2231054498097, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.913125729334, + 6589.880836925769 + ], + [ + 3203.533085170285, + 6589.880836925769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3205.878095310052, + "min_y": 6585.819160219438, + "max_x": 3210.568115589579, + "max_y": 6593.942513632105, + "center": [ + 3208.223105449815, + 6589.880836925771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3205.878095310052, + 6593.942513632105 + ], + [ + 3210.568115589579, + 6585.819160219438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3205.878095310052, + "min_y": 6585.819160219445, + "max_x": 3210.568115589579, + "max_y": 6593.942513632105, + "center": [ + 3208.223105449815, + 6589.880836925775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3205.878095310052, + 6585.819160219445 + ], + [ + 3210.568115589579, + 6593.942513632105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3202.32295376869, + "min_y": 6582.033240738768, + "max_x": 3204.467685755843, + "max_y": 6585.949169772255, + "center": [ + 3203.3953197622664, + 6583.991205255512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3204.467685755843, + 6585.949169772255 + ], + [ + 3202.32295376869, + 6582.033240738768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3202.32295376869, + "min_y": 6582.033240738768, + "max_x": 3214.123159058438, + "max_y": 6582.033240738768, + "center": [ + 3208.223056413564, + 6582.033240738768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3202.32295376869, + 6582.033240738768 + ], + [ + 3214.123159058438, + 6582.033240738768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3211.978427071285, + "min_y": 6582.033240738768, + "max_x": 3214.123159058438, + "max_y": 6585.949169772255, + "center": [ + 3213.0507930648614, + 6583.991205255512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3211.978427071285, + 6585.949169772255 + ], + [ + 3214.123159058438, + 6582.033240738768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D0C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3199.524628517219, + "min_y": 6588.61762348628, + "max_x": 3199.524628517219, + "max_y": 6591.144050365257, + "center": [ + 3199.524628517219, + 6589.880836925768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3199.524628517219, + 6591.144050365257 + ], + [ + 3199.524628517219, + 6588.61762348628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3198.801789080599, + "min_y": 6588.621361491393, + "max_x": 3198.801789080599, + "max_y": 6591.140312360145, + "center": [ + 3198.801789080599, + 6589.8808369257695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3198.801789080599, + 6591.140312360145 + ], + [ + 3198.801789080599, + 6588.621361491393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D0E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3210.053304452296, + "min_y": 6597.45822668293, + "max_x": 3212.579731331273, + "max_y": 6597.45822668293, + "center": [ + 3211.3165178917843, + 6597.45822668293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3210.053304452296, + 6597.45822668293 + ], + [ + 3212.579731331273, + 6597.45822668293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D0F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3210.053304452296, + "min_y": 6597.45822668293, + "max_x": 3212.579731331273, + "max_y": 6597.45822668293, + "center": [ + 3211.3165178917843, + 6597.45822668293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.579731331273, + 6597.45822668293 + ], + [ + 3210.053304452296, + 6597.45822668293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3210.057042457408, + "min_y": 6598.18106611955, + "max_x": 3212.575993326161, + "max_y": 6598.18106611955, + "center": [ + 3211.3165178917843, + 6598.18106611955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.575993326161, + 6598.18106611955 + ], + [ + 3210.057042457408, + 6598.18106611955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3199.524628517219, + "min_y": 6589.880836925769, + "max_x": 3202.78608570699, + "max_y": 6589.880836925769, + "center": [ + 3201.1553571121044, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3199.524628517219, + 6589.880836925769 + ], + [ + 3202.78608570699, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D12", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3200.37139894292, + "min_y": 6575.024792982116, + "max_x": 3224.37139894292, + "max_y": 6580.024792982116, + "center": [ + 3212.37139894292, + 6577.524792982116 + ] + }, + "raw_value": "VP-10217", + "clean_value": "VP-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3086.727290579763, + "min_y": 6589.880836925769, + "max_x": 3132.764539830181, + "max_y": 6589.880836925769, + "center": [ + 3109.7459152049723, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3086.727290579763, + 6589.880836925769 + ], + [ + 3132.764539830181, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3211.316517891785, + "min_y": 6598.18106611955, + "max_x": 3211.316517891785, + "max_y": 6610.647328742563, + "center": [ + 3211.316517891785, + 6604.414197431057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3211.316517891785, + 6598.18106611955 + ], + [ + 3211.316517891785, + 6610.647328742563 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3211.316517891785, + "min_y": 6610.647328742563, + "max_x": 3275.619738172045, + "max_y": 6610.647328742563, + "center": [ + 3243.468128031915, + 6610.647328742563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3211.316517891785, + 6610.647328742563 + ], + [ + 3275.619738172045, + 6610.647328742563 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D16", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3278.541169003368, + "min_y": 6608.654570339087, + "max_x": 3302.541169003368, + "max_y": 6613.654570339087, + "center": [ + 3290.541169003368, + 6611.154570339087 + ] + }, + "raw_value": "SCRUBBER", + "clean_value": "SCRUBBER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D17", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3275.619738172045, + "min_y": 6606.809012027294, + "max_x": 3309.357724062252, + "max_y": 6606.809012027294, + "center": [ + 3292.4887311171487, + 6606.809012027294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3275.619738172045, + 6606.809012027294 + ], + [ + 3309.357724062252, + 6606.809012027294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D18", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3275.619738172045, + "min_y": 6614.485645457832, + "max_x": 3309.357724062252, + "max_y": 6614.485645457832, + "center": [ + 3292.4887311171487, + 6614.485645457832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3275.619738172045, + 6614.485645457832 + ], + [ + 3309.357724062252, + 6614.485645457832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D19", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3275.619738172045, + "min_y": 6606.809012027294, + "max_x": 3275.619738172045, + "max_y": 6614.485645457832, + "center": [ + 3275.619738172045, + 6610.647328742563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3275.619738172045, + 6614.485645457832 + ], + [ + 3275.619738172045, + 6606.809012027294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3309.357724062252, + "min_y": 6606.809012027294, + "max_x": 3312.511097706487, + "max_y": 6610.647328742563, + "center": [ + 3310.9344108843698, + 6608.7281703849285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3312.511097706487, + 6610.647328742563 + ], + [ + 3309.357724062252, + 6606.809012027294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3309.357724062252, + "min_y": 6610.647328742563, + "max_x": 3312.511097706487, + "max_y": 6614.485645457832, + "center": [ + 3310.9344108843698, + 6612.566487100197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3312.511097706487, + 6610.647328742563 + ], + [ + 3309.357724062252, + 6614.485645457832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1C", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2949.298951152026, + "min_y": 6426.438237539831, + "max_x": 2957.138951152026, + "max_y": 6434.278237539831, + "center": [ + 2953.218951152026, + 6430.358237539831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2953.218951152026, + 6430.358237539831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2955.537559866184, + "min_y": 6427.197469653598, + "max_x": 2959.846373841406, + "max_y": 6430.358237539831, + "center": [ + 2957.691966853795, + 6428.7778535967145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2955.537559866184, + 6427.197469653598 + ], + [ + 2959.846373841406, + 6430.358237539831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2951.035227109441, + "min_y": 6428.283620526913, + "max_x": 2954.035227109441, + "max_y": 6433.283620526913, + "center": [ + 2952.535227109441, + 6430.783620526913 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2955.537559866184, + "min_y": 6430.358237539831, + "max_x": 2959.846373841406, + "max_y": 6433.51900542606, + "center": [ + 2957.691966853795, + 6431.938621482946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2959.846373841406, + 6430.358237539831 + ], + [ + 2955.537559866184, + 6433.51900542606 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D20", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 3115.234565107077, + "min_y": 6445.446270091323, + "max_x": 3123.074565107077, + "max_y": 6453.286270091323, + "center": [ + 3119.154565107077, + 6449.366270091323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.154565107077, + 6449.366270091323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3121.473173821234, + "min_y": 6446.205502205092, + "max_x": 3125.781987796456, + "max_y": 6449.366270091323, + "center": [ + 3123.627580808845, + 6447.785886148207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3121.473173821234, + 6446.205502205092 + ], + [ + 3125.781987796456, + 6449.366270091323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D22", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3116.970841064492, + "min_y": 6446.790816649131, + "max_x": 3119.970841064492, + "max_y": 6451.790816649131, + "center": [ + 3118.470841064492, + 6449.290816649131 + ] + }, + "raw_value": "7", + "clean_value": "7", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3121.473173821234, + "min_y": 6449.366270091323, + "max_x": 3125.781987796456, + "max_y": 6452.527037977555, + "center": [ + 3123.627580808845, + 6450.946654034438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3125.781987796456, + 6449.366270091323 + ], + [ + 3121.473173821234, + 6452.527037977555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D24", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 3132.522488231785, + "min_y": 6539.36924479274, + "max_x": 3140.362488231785, + "max_y": 6547.20924479274, + "center": [ + 3136.442488231785, + 6543.28924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3136.442488231785, + 6543.28924479274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3138.761096945942, + "min_y": 6540.128476906509, + "max_x": 3143.069910921165, + "max_y": 6543.28924479274, + "center": [ + 3140.9155039335537, + 6541.708860849624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3138.761096945942, + 6540.128476906509 + ], + [ + 3143.069910921165, + 6543.28924479274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D26", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3134.258764189201, + "min_y": 6541.111446766731, + "max_x": 3137.258764189201, + "max_y": 6546.111446766731, + "center": [ + 3135.758764189201, + 6543.611446766731 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3138.761096945942, + "min_y": 6543.28924479274, + "max_x": 3143.069910921165, + "max_y": 6546.450012678971, + "center": [ + 3140.9155039335537, + 6544.869628735855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3143.069910921165, + 6543.28924479274 + ], + [ + 3138.761096945942, + 6546.450012678971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D28", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3078.338626795568, + "min_y": 6509.614938499717, + "max_x": 3081.338626795568, + "max_y": 6514.614938499717, + "center": [ + 3079.838626795568, + 6512.114938499717 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.165234477895, + "min_y": 6426.983743570673, + "max_x": 2736.716334114109, + "max_y": 6426.983743570673, + "center": [ + 2726.4407842960018, + 6426.983743570673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.165234477895, + 6426.983743570673 + ], + [ + 2736.716334114109, + 6426.983743570673 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2783.824042517145, + "min_y": 6369.047249901908, + "max_x": 2833.824042517145, + "max_y": 6369.047249901908, + "center": [ + 2808.824042517145, + 6369.047249901908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2783.824042517145, + 6369.047249901908 + ], + [ + 2833.824042517145, + 6369.047249901908 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2959.846373841406, + "min_y": 6430.358237539831, + "max_x": 3011.573400301571, + "max_y": 6430.358237539831, + "center": [ + 2985.7098870714885, + 6430.358237539831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2959.846373841406, + 6430.358237539831 + ], + [ + 3011.573400301571, + 6430.358237539831 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3143.069910921165, + "min_y": 6543.28924479274, + "max_x": 3289.494576225186, + "max_y": 6543.28924479274, + "center": [ + 3216.2822435731755, + 6543.28924479274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3143.069910921165, + 6543.28924479274 + ], + [ + 3289.494576225186, + 6543.28924479274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D2D", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 3046.428106950384, + "min_y": 6636.022783200272, + "max_x": 3054.268106950384, + "max_y": 6643.862783200272, + "center": [ + 3050.348106950384, + 6639.942783200272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.348106950384, + 6639.942783200272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3052.666715664541, + "min_y": 6636.782015314041, + "max_x": 3056.975529639763, + "max_y": 6639.942783200272, + "center": [ + 3054.8211226521516, + 6638.3623992571565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.666715664541, + 6636.782015314041 + ], + [ + 3056.975529639763, + 6639.942783200272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D2F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3048.539800279877, + "min_y": 6637.781026881461, + "max_x": 3051.539800279877, + "max_y": 6642.781026881461, + "center": [ + 3050.039800279877, + 6640.281026881461 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3052.666715664541, + "min_y": 6639.942783200272, + "max_x": 3056.975529639763, + "max_y": 6643.103551086504, + "center": [ + 3054.8211226521516, + 6641.5231671433885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.975529639763, + 6639.942783200272 + ], + [ + 3052.666715664541, + 6643.103551086504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.975529639763, + "min_y": 6639.942783200272, + "max_x": 3080.898924124956, + "max_y": 6639.942783200272, + "center": [ + 3068.9372268823595, + 6639.942783200272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.975529639763, + 6639.942783200272 + ], + [ + 3080.898924124956, + 6639.942783200272 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D32", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 3143.432885034103, + "min_y": 6396.260388291312, + "max_x": 3151.272885034103, + "max_y": 6404.100388291312, + "center": [ + 3147.352885034103, + 6400.180388291312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3147.352885034103, + 6400.180388291312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3147.352885034103, + "min_y": 6402.498997005469, + "max_x": 3150.513652920334, + "max_y": 6406.807810980692, + "center": [ + 3148.9332689772186, + 6404.653403993081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3150.513652920334, + 6402.498997005469 + ], + [ + 3147.352885034103, + 6406.807810980692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D34", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3149.785303427382, + "min_y": 6398.253461569684, + "max_x": 3152.785303427382, + "max_y": 6403.253461569684, + "center": [ + 3151.285303427382, + 6400.753461569684 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3144.19211714787, + "min_y": 6402.498997005469, + "max_x": 3147.352885034103, + "max_y": 6406.807810980692, + "center": [ + 3145.772501090986, + 6404.653403993081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3147.352885034103, + 6406.807810980692 + ], + [ + 3144.19211714787, + 6402.498997005469 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3147.352885034103, + "min_y": 6406.807810980692, + "max_x": 3147.352885034103, + "max_y": 6444.765821421163, + "center": [ + 3147.352885034103, + 6425.786816200927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3147.352885034103, + 6406.807810980692 + ], + [ + 3147.352885034103, + 6444.765821421163 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3086.906460688772, + "min_y": 6449.366270091323, + "max_x": 3115.234565107077, + "max_y": 6449.366270091326, + "center": [ + 3101.0705128979243, + 6449.366270091325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3115.234565107077, + 6449.366270091323 + ], + [ + 3086.906460688772, + 6449.366270091326 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3156.314772837174, + "min_y": 6569.667589944021, + "max_x": 3156.314772837174, + "max_y": 6580.317846036644, + "center": [ + 3156.314772837174, + 6574.9927179903325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3156.314772837174, + 6569.667589944021 + ], + [ + 3156.314772837174, + 6580.317846036644 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3146.554316134168, + "min_y": 6569.667589944021, + "max_x": 3146.554316134168, + "max_y": 6580.317846036644, + "center": [ + 3146.554316134168, + 6574.9927179903325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3146.554316134168, + 6569.667589944021 + ], + [ + 3146.554316134168, + 6580.317846036644 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3145.492321603711, + "min_y": 6580.38135471923, + "max_x": 3157.376767367653, + "max_y": 6580.38135471923, + "center": [ + 3151.4345444856817, + 6580.38135471923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3145.492321603711, + 6580.38135471923 + ], + [ + 3157.376767367653, + 6580.38135471923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3145.492321603711, + "min_y": 6581.41583171253, + "max_x": 3157.376767367653, + "max_y": 6581.41583171253, + "center": [ + 3151.4345444856817, + 6581.41583171253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3145.492321603711, + 6581.41583171253 + ], + [ + 3157.376767367653, + 6581.41583171253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3156.314772837181, + "min_y": 6581.415831712523, + "max_x": 3156.314772837181, + "max_y": 6583.757873491032, + "center": [ + 3156.314772837181, + 6582.5868526017775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3156.314772837181, + 6583.757873491032 + ], + [ + 3156.314772837181, + 6581.415831712523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3146.554316134168, + "min_y": 6581.415831712523, + "max_x": 3146.554316134168, + "max_y": 6583.757873491032, + "center": [ + 3146.554316134168, + 6582.5868526017775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3146.554316134168, + 6583.757873491032 + ], + [ + 3146.554316134168, + 6581.415831712523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3149.009679761292, + "min_y": 6586.232888222084, + "max_x": 3149.009679761292, + "max_y": 6589.880836925769, + "center": [ + 3149.009679761292, + 6588.056862573926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3149.009679761292, + 6586.232888222084 + ], + [ + 3149.009679761292, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3153.85940921005, + "min_y": 6586.232888222084, + "max_x": 3153.85940921005, + "max_y": 6589.880836925769, + "center": [ + 3153.85940921005, + 6588.056862573926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3153.85940921005, + 6586.232888222084 + ], + [ + 3153.85940921005, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3132.764539830181, + "min_y": 6589.880836925769, + "max_x": 3149.009679761292, + "max_y": 6589.880836925769, + "center": [ + 3140.8871097957363, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3132.764539830181, + 6589.880836925769 + ], + [ + 3149.009679761292, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3153.85940921005, + "min_y": 6589.880836925769, + "max_x": 3198.801789080599, + "max_y": 6589.880836925769, + "center": [ + 3176.3305991453244, + 6589.880836925769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3153.85940921005, + 6589.880836925769 + ], + [ + 3198.801789080599, + 6589.880836925769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D44", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3143.063120151337, + "min_y": 6560.327315338392, + "max_x": 3167.063120151337, + "max_y": 6565.327315338392, + "center": [ + 3155.063120151337, + 6562.827315338392 + ] + }, + "raw_value": "SP-10602", + "clean_value": "SP-10602", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6437.284854312102, + "max_x": 3025.573400301571, + "max_y": 6437.284854312102, + "center": [ + 3018.573400301571, + 6437.284854312102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3011.573400301571, + 6437.284854312102 + ], + [ + 3025.573400301571, + 6437.284854312102 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6437.284854312102, + "max_x": 3025.573400301571, + "max_y": 6482.416964160207, + "center": [ + 3018.573400301571, + 6459.850909236155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6437.284854312102 + ], + [ + 3011.573400301571, + 6482.416964160207 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3011.573400301571, + "min_y": 6437.284854312102, + "max_x": 3025.573400301571, + "max_y": 6482.416964160207, + "center": [ + 3018.573400301571, + 6459.850909236155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.573400301571, + 6482.416964160207 + ], + [ + 3011.573400301571, + 6437.284854312102 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D48", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3297.052129377946, + "min_y": 6540.911633765087, + "max_x": 3306.052129377946, + "max_y": 6545.911633765087, + "center": [ + 3301.552129377946, + 6543.411633765087 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D49", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3289.494576225186, + "min_y": 6539.450928077471, + "max_x": 3309.357724062252, + "max_y": 6539.450928077471, + "center": [ + 3299.426150143719, + 6539.450928077471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3289.494576225186, + 6539.450928077471 + ], + [ + 3309.357724062252, + 6539.450928077471 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D4A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3289.494576225186, + "min_y": 6547.127561508009, + "max_x": 3309.357724062252, + "max_y": 6547.127561508009, + "center": [ + 3299.426150143719, + 6547.127561508009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3289.494576225186, + 6547.127561508009 + ], + [ + 3309.357724062252, + 6547.127561508009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D4B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3289.494576225185, + "min_y": 6539.450928077471, + "max_x": 3289.494576225186, + "max_y": 6547.127561508009, + "center": [ + 3289.4945762251855, + 6543.289244792741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3289.494576225185, + 6547.127561508009 + ], + [ + 3289.494576225186, + 6539.450928077471 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D4C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3309.357724062252, + "min_y": 6539.450928077471, + "max_x": 3312.511097706487, + "max_y": 6543.28924479274, + "center": [ + 3310.9344108843698, + 6541.370086435105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3312.511097706487, + 6543.28924479274 + ], + [ + 3309.357724062252, + 6539.450928077471 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D4D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3309.357724062252, + "min_y": 6543.28924479274, + "max_x": 3312.511097706487, + "max_y": 6547.127561508009, + "center": [ + 3310.9344108843698, + 6545.208403150375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3312.511097706487, + 6543.28924479274 + ], + [ + 3309.357724062252, + 6547.127561508009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3234.256840894671, + "min_y": 6493.13181066086, + "max_x": 3234.256840894671, + "max_y": 6518.468645142776, + "center": [ + 3234.256840894671, + 6505.800227901818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.256840894671, + 6518.468645142776 + ], + [ + 3234.256840894671, + 6493.13181066086 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6493.277796973277, + "max_x": 3207.674773568167, + "max_y": 6518.614631455196, + "center": [ + 3207.674773568167, + 6505.9462142142365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6518.614631455196 + ], + [ + 3207.674773568167, + 6493.277796973277 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6483.159282577156, + "max_x": 3207.674773568167, + "max_y": 6493.277796973277, + "center": [ + 3207.674773568167, + 6488.218539775216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6493.277796973277 + ], + [ + 3207.674773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3234.190530169583, + "min_y": 6483.159282577156, + "max_x": 3234.190530169583, + "max_y": 6492.544653687208, + "center": [ + 3234.190530169583, + 6487.851968132181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.190530169583, + 6492.544653687208 + ], + [ + 3234.190530169583, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6497.719569112914, + "max_x": 3207.659737287958, + "max_y": 6497.719569112914, + "center": [ + 3206.263497697105, + 6497.719569112914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.659737287958, + 6497.719569112914 + ], + [ + 3204.867258106252, + 6497.719569112914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6494.178466973136, + "max_x": 3207.674773568167, + "max_y": 6494.178466973136, + "center": [ + 3206.2710158372092, + 6494.178466973136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3207.674773568167, + 6494.178466973136 + ], + [ + 3204.867258106252, + 6494.178466973136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.867258106252, + "min_y": 6493.524400290609, + "max_x": 3204.867258106252, + "max_y": 6498.352068197021, + "center": [ + 3204.867258106252, + 6495.938234243815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3204.867258106252, + 6498.352068197021 + ], + [ + 3204.867258106252, + 6493.524400290609 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3204.605400593175, + "min_y": 6493.524400290609, + "max_x": 3204.605400593175, + "max_y": 6498.352068197021, + "center": [ + 3204.605400593175, + 6495.938234243815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3204.605400593175, + 6498.352068197021 + ], + [ + 3204.605400593175, + 6493.524400290609 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3232.230530169583, + "min_y": 6483.159282577156, + "max_x": 3232.230530169583, + "max_y": 6489.951526185919, + "center": [ + 3232.230530169583, + 6486.555404381537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3232.230530169583, + 6489.951526185919 + ], + [ + 3232.230530169583, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3209.634773568167, + "min_y": 6483.159282577156, + "max_x": 3209.634773568167, + "max_y": 6490.098627335687, + "center": [ + 3209.634773568167, + 6486.628954956421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3209.634773568167, + 6490.098627335687 + ], + [ + 3209.634773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6483.159282577156, + "max_x": 3235.170530169584, + "max_y": 6483.159282577156, + "center": [ + 3233.2105301695838, + 6483.159282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6483.159282577156 + ], + [ + 3235.170530169584, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3207.674773568167, + "min_y": 6483.159282577156, + "max_x": 3209.634773568167, + "max_y": 6483.159282577156, + "center": [ + 3208.654773568167, + 6483.159282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3209.634773568167, + 6483.159282577156 + ], + [ + 3207.674773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6482.669282577155, + "max_x": 3235.170530169584, + "max_y": 6482.669282577155, + "center": [ + 3233.2105301695838, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6482.669282577155 + ], + [ + 3235.170530169584, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6482.669282577155, + "max_x": 3231.250530169584, + "max_y": 6482.669282577155, + "center": [ + 3231.250530169584, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6482.669282577155 + ], + [ + 3231.250530169584, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3231.250530169584, + "min_y": 6482.669282577155, + "max_x": 3231.250530169584, + "max_y": 6483.159282577156, + "center": [ + 3231.250530169584, + 6482.914282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3231.250530169584, + 6482.669282577155 + ], + [ + 3231.250530169584, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6482.669282577155, + "max_x": 3235.170530169584, + "max_y": 6482.669282577155, + "center": [ + 3235.170530169584, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3235.170530169584, + 6482.669282577155 + ], + [ + 3235.170530169584, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3235.170530169584, + "min_y": 6482.669282577155, + "max_x": 3235.170530169584, + "max_y": 6483.159282577156, + "center": [ + 3235.170530169584, + 6482.914282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3235.170530169584, + 6482.669282577155 + ], + [ + 3235.170530169584, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6483.159282577156, + "max_x": 3210.614773568167, + "max_y": 6483.159282577156, + "center": [ + 3208.654773568167, + 6483.159282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6483.159282577156 + ], + [ + 3210.614773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6482.669282577155, + "max_x": 3210.614773568167, + "max_y": 6482.669282577155, + "center": [ + 3208.654773568167, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6482.669282577155 + ], + [ + 3210.614773568167, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6482.669282577155, + "max_x": 3206.694773568167, + "max_y": 6482.669282577155, + "center": [ + 3206.694773568167, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6482.669282577155 + ], + [ + 3206.694773568167, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.694773568167, + "min_y": 6482.669282577155, + "max_x": 3206.694773568167, + "max_y": 6483.159282577156, + "center": [ + 3206.694773568167, + 6482.914282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.694773568167, + 6482.669282577155 + ], + [ + 3206.694773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3210.614773568167, + "min_y": 6482.669282577155, + "max_x": 3210.614773568167, + "max_y": 6482.669282577155, + "center": [ + 3210.614773568167, + 6482.669282577155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3210.614773568167, + 6482.669282577155 + ], + [ + 3210.614773568167, + 6482.669282577155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3210.614773568167, + "min_y": 6482.669282577155, + "max_x": 3210.614773568167, + "max_y": 6483.159282577156, + "center": [ + 3210.614773568167, + 6482.914282577156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3210.614773568167, + 6482.669282577155 + ], + [ + 3210.614773568167, + 6483.159282577156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3212.63769901973, + "min_y": 6499.831064498412, + "max_x": 3212.63769901973, + "max_y": 6535.789244792741, + "center": [ + 3212.63769901973, + 6517.810154645576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3212.63769901973, + 6499.831064498412 + ], + [ + 3212.63769901973, + 6535.789244792741 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D69", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3238.206771347319, + "min_y": 6503.756259573961, + "max_x": 3259.206771347319, + "max_y": 6508.756259573961, + "center": [ + 3248.706771347319, + 6506.256259573961 + ] + }, + "raw_value": "T-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6469.46985586477, + "max_x": 3234.635444344787, + "max_y": 6469.46985586477, + "center": [ + 3227.791578229448, + 6469.46985586477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.947712114109, + 6469.46985586477 + ], + [ + 3234.635444344787, + 6469.46985586477 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D6B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3242.629395824553, + "min_y": 6467.167655074113, + "max_x": 3263.629395824553, + "max_y": 6472.167655074113, + "center": [ + 3253.129395824553, + 6469.667655074113 + ] + }, + "raw_value": "P-10201", + "clean_value": "P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D6C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3234.635444344787, + "min_y": 6465.631539149502, + "max_x": 3268.373430234993, + "max_y": 6465.631539149502, + "center": [ + 3251.50443728989, + 6465.631539149502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.635444344787, + 6465.631539149502 + ], + [ + 3268.373430234993, + 6465.631539149502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D6D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3234.635444344787, + "min_y": 6473.308172580039, + "max_x": 3268.373430234993, + "max_y": 6473.308172580039, + "center": [ + 3251.50443728989, + 6473.308172580039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.635444344787, + 6473.308172580039 + ], + [ + 3268.373430234993, + 6473.308172580039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D6E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3234.635444344787, + "min_y": 6465.631539149502, + "max_x": 3234.635444344787, + "max_y": 6473.308172580039, + "center": [ + 3234.635444344787, + 6469.469855864771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3234.635444344787, + 6473.308172580039 + ], + [ + 3234.635444344787, + 6465.631539149502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D6F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3268.373430234993, + "min_y": 6465.631539149502, + "max_x": 3271.526803879228, + "max_y": 6469.46985586477, + "center": [ + 3269.95011705711, + 6467.550697507136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3271.526803879228, + 6469.46985586477 + ], + [ + 3268.373430234993, + 6465.631539149502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D70", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3268.373430234993, + "min_y": 6469.46985586477, + "max_x": 3271.526803879228, + "max_y": 6473.308172580039, + "center": [ + 3269.95011705711, + 6471.3890142224045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3271.526803879228, + 6469.46985586477 + ], + [ + 3268.373430234993, + 6473.308172580039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6469.46985586477, + "max_x": 3220.947712114109, + "max_y": 6487.167375107365, + "center": [ + 3220.947712114109, + 6478.318615486067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.947712114109, + 6469.46985586477 + ], + [ + 3220.947712114109, + 6487.167375107365 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6434.366270091321, + "max_x": 3164.657514904141, + "max_y": 6441.866270091321, + "center": [ + 3164.657514904141, + 6438.116270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6434.366270091321 + ], + [ + 3164.657514904141, + 6441.866270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6441.866270091321, + "max_x": 3291.071263047303, + "max_y": 6441.866270091321, + "center": [ + 3227.8643889757222, + 6441.866270091321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6441.866270091321 + ], + [ + 3291.071263047303, + 6441.866270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6535.789244792741, + "max_x": 3164.657514904141, + "max_y": 6543.28924479274, + "center": [ + 3164.657514904141, + 6539.539244792741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6535.789244792741 + ], + [ + 3164.657514904141, + 6543.28924479274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3164.657514904141, + "min_y": 6535.789244792741, + "max_x": 3212.63769901973, + "max_y": 6535.789244792741, + "center": [ + 3188.6476069619357, + 6535.789244792741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3164.657514904141, + 6535.789244792741 + ], + [ + 3212.63769901973, + 6535.789244792741 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3192.821314169976, + "min_y": 6449.366270091321, + "max_x": 3192.821314169977, + "max_y": 6535.789244792741, + "center": [ + 3192.8213141699766, + 6492.577757442031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3192.821314169976, + 6535.789244792741 + ], + [ + 3192.821314169977, + 6449.366270091321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D79", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2747.645259597923, + "min_y": 6329.317893443771, + "max_x": 2768.645259597923, + "max_y": 6334.317893443771, + "center": [ + 2758.145259597923, + 6331.817893443771 + ] + }, + "raw_value": "T-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6327.60566089178, + "max_x": 2771.22829701025, + "max_y": 6327.60566089178, + "center": [ + 2754.3593040651467, + 6327.60566089178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6327.60566089178 + ], + [ + 2771.22829701025, + 6327.60566089178 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6335.282294322319, + "max_x": 2771.22829701025, + "max_y": 6335.282294322319, + "center": [ + 2754.3593040651467, + 6335.282294322319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6335.282294322319 + ], + [ + 2771.22829701025, + 6335.282294322319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6327.60566089178, + "max_x": 2737.490311120043, + "max_y": 6335.282294322319, + "center": [ + 2737.490311120043, + 6331.443977607049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6335.282294322319 + ], + [ + 2737.490311120043, + 6327.60566089178 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2771.22829701025, + "min_y": 6327.60566089178, + "max_x": 2774.381670654484, + "max_y": 6331.443977607049, + "center": [ + 2772.804983832367, + 6329.524819249415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.381670654484, + 6331.443977607049 + ], + [ + 2771.22829701025, + 6327.60566089178 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2771.22829701025, + "min_y": 6331.443977607049, + "max_x": 2774.381670654484, + "max_y": 6335.282294322319, + "center": [ + 2772.804983832367, + 6333.363135964684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.381670654484, + 6331.443977607049 + ], + [ + 2771.22829701025, + 6335.282294322319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D7F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2747.645259597923, + "min_y": 6346.543856434852, + "max_x": 2768.645259597923, + "max_y": 6351.543856434852, + "center": [ + 2758.145259597923, + 6349.043856434852 + ] + }, + "raw_value": "T-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D80", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6344.9328736226, + "max_x": 2771.22829701025, + "max_y": 6344.9328736226, + "center": [ + 2754.3593040651467, + 6344.9328736226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6344.9328736226 + ], + [ + 2771.22829701025, + 6344.9328736226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D81", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6352.609507053139, + "max_x": 2771.22829701025, + "max_y": 6352.609507053139, + "center": [ + 2754.3593040651467, + 6352.609507053139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6352.609507053139 + ], + [ + 2771.22829701025, + 6352.609507053139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D82", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2737.490311120043, + "min_y": 6344.9328736226, + "max_x": 2737.490311120043, + "max_y": 6352.609507053139, + "center": [ + 2737.490311120043, + 6348.7711903378695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.490311120043, + 6352.609507053139 + ], + [ + 2737.490311120043, + 6344.9328736226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D83", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2771.22829701025, + "min_y": 6344.9328736226, + "max_x": 2774.381670654484, + "max_y": 6348.77119033787, + "center": [ + 2772.804983832367, + 6346.852031980236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.381670654484, + 6348.77119033787 + ], + [ + 2771.22829701025, + 6344.9328736226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D84", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2771.22829701025, + "min_y": 6348.77119033787, + "max_x": 2774.381670654484, + "max_y": 6352.609507053139, + "center": [ + 2772.804983832367, + 6350.690348695505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.381670654484, + 6348.77119033787 + ], + [ + 2771.22829701025, + 6352.609507053139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2774.381670654484, + "min_y": 6348.77119033787, + "max_x": 2796.339655257335, + "max_y": 6348.77119033787, + "center": [ + 2785.3606629559094, + 6348.77119033787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.381670654484, + 6348.77119033787 + ], + [ + 2796.339655257335, + 6348.77119033787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2796.339655257335, + "min_y": 6348.771192293253, + "max_x": 2796.339655257335, + "max_y": 6369.047249901908, + "center": [ + 2796.339655257335, + 6358.9092210975805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2796.339655257335, + 6369.047249901908 + ], + [ + 2796.339655257335, + 6348.771192293253 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6199.761476026953, + "max_x": 2689.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2635.1723855641135, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6199.761476026953 + ], + [ + 2689.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6187.611476026954, + "max_x": 2689.442385564114, + "max_y": 6187.611476026954, + "center": [ + 2635.1723855641135, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6187.611476026954 + ], + [ + 2689.442385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6163.311476026954, + "max_x": 2689.442385564114, + "max_y": 6163.311476026954, + "center": [ + 2635.1723855641135, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6163.311476026954 + ], + [ + 2689.442385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D8A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2622.864466869581, + "min_y": 6191.661476026954, + "max_x": 2647.1644668695812, + "max_y": 6195.711476026954, + "center": [ + 2635.014466869581, + 6193.686476026955 + ] + }, + "raw_value": "STREAM NO.", + "clean_value": "STREAM NO.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6175.461476026954, + "max_x": 2689.442385564114, + "max_y": 6187.611476026954, + "center": [ + 2635.1723855641135, + 6181.536476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6175.461476026954 + ], + [ + 2580.902385564113, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D8C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2583.7134470889, + "min_y": 6177.486476026953, + "max_x": 2610.4434470889, + "max_y": 6181.536476026953, + "center": [ + 2597.0784470889002, + 6179.5114760269535 + ] + }, + "raw_value": "COMPOSITION", + "clean_value": "COMPOSITION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D8D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2659.524532090097, + "min_y": 6181.536476026954, + "max_x": 2686.254532090097, + "max_y": 6185.586476026954, + "center": [ + 2672.8895320900974, + 6183.561476026955 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6151.161476026954, + "max_x": 2689.442385564114, + "max_y": 6151.161476026954, + "center": [ + 2635.1723855641135, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6151.161476026954 + ], + [ + 2689.442385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D8F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2633.393756699241, + "min_y": 6155.211476026955, + "max_x": 2638.253756699241, + "max_y": 6159.261476026955, + "center": [ + 2635.823756699241, + 6157.236476026956 + ] + }, + "raw_value": "EL", + "clean_value": "EL", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6139.011476026953, + "max_x": 2689.442385564114, + "max_y": 6139.011476026953, + "center": [ + 2635.1723855641135, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6139.011476026953 + ], + [ + 2689.442385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D91", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2620.114585857558, + "min_y": 6143.061476026954, + "max_x": 2649.2745858575577, + "max_y": 6147.111476026954, + "center": [ + 2634.6945858575577, + 6145.086476026954 + ] + }, + "raw_value": "TOTAL STREAM", + "clean_value": "TOTAL STREAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6126.861476026954, + "max_x": 2689.442385564114, + "max_y": 6126.861476026954, + "center": [ + 2635.1723855641135, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6126.861476026954 + ], + [ + 2689.442385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D93", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2604.161623683209, + "min_y": 6130.911476026954, + "max_x": 2667.341623683209, + "max_y": 6134.961476026954, + "center": [ + 2635.751623683209, + 6132.936476026955 + ] + }, + "raw_value": "OPERATION PRESS.(kgf/cm2G)", + "clean_value": "OPERATION PRESS.(kgf/cm2G)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6114.711476026954, + "max_x": 2689.442385564114, + "max_y": 6114.711476026954, + "center": [ + 2635.1723855641135, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6114.711476026954 + ], + [ + 2689.442385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D95", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2612.837368923691, + "min_y": 6118.761476026953, + "max_x": 2663.867368923691, + "max_y": 6122.811476026953, + "center": [ + 2638.352368923691, + 6120.786476026953 + ] + }, + "raw_value": "OPERATION TEMP.(%%DC)", + "clean_value": "OPERATION TEMP.(%%DC)", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D96", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2625.856313061966, + "min_y": 6106.611476026954, + "max_x": 2642.866313061966, + "max_y": 6110.661476026954, + "center": [ + 2634.361313061966, + 6108.6364760269535 + ] + }, + "raw_value": "REMARKS", + "clean_value": "REMARKS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6102.561476026954, + "max_x": 2689.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2689.442385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6102.561476026954 + ], + [ + 2689.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526D98", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2708.459732758503, + "min_y": 6191.661476026954, + "max_x": 2710.8897327585028, + "max_y": 6195.711476026954, + "center": [ + 2709.6747327585026, + 6193.686476026955 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D99", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2702.89757719738, + "min_y": 6167.361476026954, + "max_x": 2715.04757719738, + "max_y": 6171.411476026954, + "center": [ + 2708.97257719738, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2703.968919882751, + "min_y": 6155.211476026955, + "max_x": 2716.118919882751, + "max_y": 6159.261476026955, + "center": [ + 2710.0439198827507, + 6157.236476026956 + ] + }, + "raw_value": "1,600", + "clean_value": "1,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2703.968919882751, + "min_y": 6143.061476026954, + "max_x": 2716.118919882751, + "max_y": 6147.111476026954, + "center": [ + 2710.0439198827507, + 6145.086476026954 + ] + }, + "raw_value": "1,600", + "clean_value": "1,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2701.503614271528, + "min_y": 6130.911476026954, + "max_x": 2718.5136142715282, + "max_y": 6134.961476026954, + "center": [ + 2710.008614271528, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2703.089323189364, + "min_y": 6118.761476026953, + "max_x": 2715.2393231893643, + "max_y": 6122.811476026953, + "center": [ + 2709.164323189364, + 6120.786476026953 + ] + }, + "raw_value": "50~80", + "clean_value": "50~80", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2704.233711966919, + "min_y": 6179.511476026953, + "max_x": 2713.953711966919, + "max_y": 6183.561476026953, + "center": [ + 2709.093711966919, + 6181.536476026953 + ] + }, + "raw_value": "FEED", + "clean_value": "FEED", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526D9F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2789.459732758503, + "min_y": 6191.661476026954, + "max_x": 2791.8897327585028, + "max_y": 6195.711476026954, + "center": [ + 2790.6747327585026, + 6193.686476026955 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2783.897577197381, + "min_y": 6167.361476026954, + "max_x": 2796.047577197381, + "max_y": 6171.411476026954, + "center": [ + 2789.972577197381, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2817.485175978209, + "min_y": 6155.211476026955, + "max_x": 2844.215175978209, + "max_y": 6159.261476026955, + "center": [ + 2830.8501759782093, + 6157.236476026956 + ] + }, + "raw_value": "1,560~3,160", + "clean_value": "1,560~3,160", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2817.485175978209, + "min_y": 6143.061476026954, + "max_x": 2844.215175978209, + "max_y": 6147.111476026954, + "center": [ + 2830.8501759782093, + 6145.086476026954 + ] + }, + "raw_value": "1,560~3,160", + "clean_value": "1,560~3,160", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2780.80681442183, + "min_y": 6130.911476026954, + "max_x": 2802.67681442183, + "max_y": 6134.961476026954, + "center": [ + 2791.74181442183, + 6132.936476026955 + ] + }, + "raw_value": "30~60torr", + "clean_value": "30~60torr", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2784.089323189364, + "min_y": 6118.761476026953, + "max_x": 2796.2393231893643, + "max_y": 6122.811476026953, + "center": [ + 2790.164323189364, + 6120.786476026953 + ] + }, + "raw_value": "70~93", + "clean_value": "70~93", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2783.654090223433, + "min_y": 6179.511476026953, + "max_x": 2795.804090223433, + "max_y": 6183.561476026953, + "center": [ + 2789.7290902234326, + 6181.536476026953 + ] + }, + "raw_value": "VAPOR", + "clean_value": "VAPOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2829.959732758503, + "min_y": 6191.661476026954, + "max_x": 2832.3897327585028, + "max_y": 6195.711476026954, + "center": [ + 2831.1747327585026, + 6193.686476026955 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2824.397577197381, + "min_y": 6167.361476026954, + "max_x": 2836.547577197381, + "max_y": 6171.411476026954, + "center": [ + 2830.472577197381, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2823.233405103192, + "min_y": 6179.511476026953, + "max_x": 2837.813405103192, + "max_y": 6183.561476026953, + "center": [ + 2830.523405103192, + 6181.536476026953 + ] + }, + "raw_value": "REFLUX", + "clean_value": "REFLUX", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DA9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2870.459732758503, + "min_y": 6191.661476026954, + "max_x": 2872.8897327585028, + "max_y": 6195.711476026954, + "center": [ + 2871.6747327585026, + 6193.686476026955 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2864.89757719738, + "min_y": 6167.361476026954, + "max_x": 2877.04757719738, + "max_y": 6171.411476026954, + "center": [ + 2870.97257719738, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2869.227079952892, + "min_y": 6155.211476026955, + "max_x": 2874.087079952892, + "max_y": 6159.261476026955, + "center": [ + 2871.6570799528918, + 6157.236476026956 + ] + }, + "raw_value": "40", + "clean_value": "40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2869.227079952892, + "min_y": 6143.061476026954, + "max_x": 2874.087079952892, + "max_y": 6147.111476026954, + "center": [ + 2871.6570799528918, + 6145.086476026954 + ] + }, + "raw_value": "40", + "clean_value": "40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2863.503614271529, + "min_y": 6130.911476026954, + "max_x": 2880.513614271529, + "max_y": 6134.961476026954, + "center": [ + 2872.008614271529, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2865.089323189364, + "min_y": 6118.761476026953, + "max_x": 2877.2393231893643, + "max_y": 6122.811476026953, + "center": [ + 2871.164323189364, + 6120.786476026953 + ] + }, + "raw_value": "20~40", + "clean_value": "20~40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DAF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2859.266940924836, + "min_y": 6179.511476026953, + "max_x": 2883.566940924836, + "max_y": 6183.561476026953, + "center": [ + 2871.416940924836, + 6181.536476026953 + ] + }, + "raw_value": "LIGHT ENDS", + "clean_value": "LIGHT ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6199.761476026953, + "max_x": 2729.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2709.692385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6199.761476026953 + ], + [ + 2729.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6187.611476026954, + "max_x": 2729.942385564114, + "max_y": 6187.611476026954, + "center": [ + 2709.692385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6187.611476026954 + ], + [ + 2729.942385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6163.311476026954, + "max_x": 2729.942385564114, + "max_y": 6163.311476026954, + "center": [ + 2709.692385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6163.311476026954 + ], + [ + 2729.942385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6151.161476026954, + "max_x": 2729.942385564114, + "max_y": 6151.161476026954, + "center": [ + 2709.692385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6151.161476026954 + ], + [ + 2729.942385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6139.011476026953, + "max_x": 2729.942385564114, + "max_y": 6139.011476026953, + "center": [ + 2709.692385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6139.011476026953 + ], + [ + 2729.942385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6126.861476026954, + "max_x": 2729.942385564114, + "max_y": 6126.861476026954, + "center": [ + 2709.692385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6126.861476026954 + ], + [ + 2729.942385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6114.711476026954, + "max_x": 2729.942385564114, + "max_y": 6114.711476026954, + "center": [ + 2709.692385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6114.711476026954 + ], + [ + 2729.942385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6102.561476026954, + "max_x": 2770.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2770.442385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6102.561476026954 + ], + [ + 2770.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6199.761476026953, + "max_x": 2810.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2790.692385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6199.761476026953 + ], + [ + 2810.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6187.611476026954, + "max_x": 2810.942385564114, + "max_y": 6187.611476026954, + "center": [ + 2790.692385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6187.611476026954 + ], + [ + 2810.942385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6163.311476026954, + "max_x": 2810.942385564114, + "max_y": 6163.311476026954, + "center": [ + 2790.692385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6163.311476026954 + ], + [ + 2810.942385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6151.161476026954, + "max_x": 2810.942385564114, + "max_y": 6151.161476026954, + "center": [ + 2790.692385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6151.161476026954 + ], + [ + 2810.942385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6139.011476026953, + "max_x": 2810.942385564114, + "max_y": 6139.011476026953, + "center": [ + 2790.692385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6139.011476026953 + ], + [ + 2810.942385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6126.861476026954, + "max_x": 2810.942385564114, + "max_y": 6126.861476026954, + "center": [ + 2790.692385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6126.861476026954 + ], + [ + 2810.942385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6114.711476026954, + "max_x": 2810.942385564114, + "max_y": 6114.711476026954, + "center": [ + 2790.692385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6114.711476026954 + ], + [ + 2810.942385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6102.561476026954, + "max_x": 2810.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2810.942385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6102.561476026954 + ], + [ + 2810.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6199.761476026953, + "max_x": 2851.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2831.192385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6199.761476026953 + ], + [ + 2851.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6187.611476026954, + "max_x": 2851.442385564114, + "max_y": 6187.611476026954, + "center": [ + 2831.192385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6187.611476026954 + ], + [ + 2851.442385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6163.311476026954, + "max_x": 2851.442385564114, + "max_y": 6163.311476026954, + "center": [ + 2831.192385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6163.311476026954 + ], + [ + 2851.442385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6151.161476026954, + "max_x": 2851.442385564114, + "max_y": 6151.161476026954, + "center": [ + 2831.192385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6151.161476026954 + ], + [ + 2851.442385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6139.011476026953, + "max_x": 2851.442385564114, + "max_y": 6139.011476026953, + "center": [ + 2831.192385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6139.011476026953 + ], + [ + 2851.442385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6126.861476026954, + "max_x": 2851.442385564114, + "max_y": 6126.861476026954, + "center": [ + 2831.192385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6126.861476026954 + ], + [ + 2851.442385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6114.711476026954, + "max_x": 2851.442385564114, + "max_y": 6114.711476026954, + "center": [ + 2831.192385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6114.711476026954 + ], + [ + 2851.442385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6102.561476026954, + "max_x": 2851.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2851.442385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6102.561476026954 + ], + [ + 2851.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6199.761476026953, + "max_x": 2891.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2871.692385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6199.761476026953 + ], + [ + 2891.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6187.611476026954, + "max_x": 2891.942385564114, + "max_y": 6187.611476026954, + "center": [ + 2871.692385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6187.611476026954 + ], + [ + 2891.942385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6163.311476026954, + "max_x": 2891.942385564114, + "max_y": 6163.311476026954, + "center": [ + 2871.692385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6163.311476026954 + ], + [ + 2891.942385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6151.161476026954, + "max_x": 2891.942385564114, + "max_y": 6151.161476026954, + "center": [ + 2871.692385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6151.161476026954 + ], + [ + 2891.942385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6139.011476026953, + "max_x": 2891.942385564114, + "max_y": 6139.011476026953, + "center": [ + 2871.692385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6139.011476026953 + ], + [ + 2891.942385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6126.861476026954, + "max_x": 2891.942385564114, + "max_y": 6126.861476026954, + "center": [ + 2871.692385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6126.861476026954 + ], + [ + 2891.942385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6114.711476026954, + "max_x": 2891.942385564114, + "max_y": 6114.711476026954, + "center": [ + 2871.692385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6114.711476026954 + ], + [ + 2891.942385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6102.561476026954, + "max_x": 2891.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2891.942385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6102.561476026954 + ], + [ + 2891.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6199.761476026953, + "max_x": 2932.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2912.192385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6199.761476026953 + ], + [ + 2932.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6187.611476026954, + "max_x": 2932.442385564114, + "max_y": 6187.611476026954, + "center": [ + 2912.192385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6187.611476026954 + ], + [ + 2932.442385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6163.311476026954, + "max_x": 2932.442385564114, + "max_y": 6163.311476026954, + "center": [ + 2912.192385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6163.311476026954 + ], + [ + 2932.442385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6151.161476026954, + "max_x": 2932.442385564114, + "max_y": 6151.161476026954, + "center": [ + 2912.192385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6151.161476026954 + ], + [ + 2932.442385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6139.011476026953, + "max_x": 2932.442385564114, + "max_y": 6139.011476026953, + "center": [ + 2912.192385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6139.011476026953 + ], + [ + 2932.442385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6126.861476026954, + "max_x": 2932.442385564114, + "max_y": 6126.861476026954, + "center": [ + 2912.192385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6126.861476026954 + ], + [ + 2932.442385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6114.711476026954, + "max_x": 2932.442385564114, + "max_y": 6114.711476026954, + "center": [ + 2912.192385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6114.711476026954 + ], + [ + 2932.442385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6102.561476026954, + "max_x": 2932.442385564114, + "max_y": 6199.761476026953, + "center": [ + 2932.442385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6102.561476026954 + ], + [ + 2932.442385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6199.761476026953, + "max_x": 2972.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2952.692385564114, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6199.761476026953 + ], + [ + 2972.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6187.611476026954, + "max_x": 2972.942385564114, + "max_y": 6187.611476026954, + "center": [ + 2952.692385564114, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6187.611476026954 + ], + [ + 2972.942385564114, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6163.311476026954, + "max_x": 2972.942385564114, + "max_y": 6163.311476026954, + "center": [ + 2952.692385564114, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6163.311476026954 + ], + [ + 2972.942385564114, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6151.161476026954, + "max_x": 2972.942385564114, + "max_y": 6151.161476026954, + "center": [ + 2952.692385564114, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6151.161476026954 + ], + [ + 2972.942385564114, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6139.011476026953, + "max_x": 2972.942385564114, + "max_y": 6139.011476026953, + "center": [ + 2952.692385564114, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6139.011476026953 + ], + [ + 2972.942385564114, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6126.861476026954, + "max_x": 2972.942385564114, + "max_y": 6126.861476026954, + "center": [ + 2952.692385564114, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6126.861476026954 + ], + [ + 2972.942385564114, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6114.711476026954, + "max_x": 2972.942385564114, + "max_y": 6114.711476026954, + "center": [ + 2952.692385564114, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6114.711476026954 + ], + [ + 2972.942385564114, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2972.942385564114, + "min_y": 6102.561476026954, + "max_x": 2972.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2972.942385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2972.942385564114, + 6102.561476026954 + ], + [ + 2972.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DE0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2910.959732758503, + "min_y": 6191.661476026954, + "max_x": 2913.3897327585028, + "max_y": 6195.711476026954, + "center": [ + 2912.1747327585026, + 6193.686476026955 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2905.397577197381, + "min_y": 6167.361476026954, + "max_x": 2917.547577197381, + "max_y": 6171.411476026954, + "center": [ + 2911.472577197381, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2908.494427147281, + "min_y": 6155.211476026955, + "max_x": 2915.784427147281, + "max_y": 6159.261476026955, + "center": [ + 2912.139427147281, + 6157.236476026956 + ] + }, + "raw_value": "120", + "clean_value": "120", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2908.494427147281, + "min_y": 6143.061476026954, + "max_x": 2915.784427147281, + "max_y": 6147.111476026954, + "center": [ + 2912.139427147281, + 6145.086476026954 + ] + }, + "raw_value": "120", + "clean_value": "120", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2904.003614271529, + "min_y": 6130.911476026954, + "max_x": 2921.013614271529, + "max_y": 6134.961476026954, + "center": [ + 2912.508614271529, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2905.589323189364, + "min_y": 6118.761476026953, + "max_x": 2917.7393231893643, + "max_y": 6122.811476026953, + "center": [ + 2911.664323189364, + 6120.786476026953 + ] + }, + "raw_value": "20~45", + "clean_value": "20~45", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2898.989304401789, + "min_y": 6179.511476026953, + "max_x": 2923.289304401789, + "max_y": 6183.561476026953, + "center": [ + 2911.139304401789, + 6181.536476026953 + ] + }, + "raw_value": "HEAVY ENDS", + "clean_value": "HEAVY ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2951.459732758503, + "min_y": 6191.661476026954, + "max_x": 2953.8897327585028, + "max_y": 6195.711476026954, + "center": [ + 2952.6747327585026, + 6193.686476026955 + ] + }, + "raw_value": "7", + "clean_value": "7", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2945.89757719738, + "min_y": 6167.361476026954, + "max_x": 2958.04757719738, + "max_y": 6171.411476026954, + "center": [ + 2951.97257719738, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DE9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2946.968919882751, + "min_y": 6155.211476026955, + "max_x": 2959.118919882751, + "max_y": 6159.261476026955, + "center": [ + 2953.0439198827507, + 6157.236476026956 + ] + }, + "raw_value": "1,440", + "clean_value": "1,440", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DEA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2946.968919882751, + "min_y": 6143.061476026954, + "max_x": 2959.118919882751, + "max_y": 6147.111476026954, + "center": [ + 2953.0439198827507, + 6145.086476026954 + ] + }, + "raw_value": "1,440", + "clean_value": "1,440", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DEB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2944.503614271529, + "min_y": 6130.911476026954, + "max_x": 2961.513614271529, + "max_y": 6134.961476026954, + "center": [ + 2953.008614271529, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DEC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2946.089323189364, + "min_y": 6118.761476026953, + "max_x": 2958.2393231893643, + "max_y": 6122.811476026953, + "center": [ + 2952.164323189364, + 6120.786476026953 + ] + }, + "raw_value": "15~38", + "clean_value": "15~38", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DED", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2942.517673640267, + "min_y": 6179.511476026953, + "max_x": 2959.527673640267, + "max_y": 6183.561476026953, + "center": [ + 2951.022673640267, + 6181.536476026953 + ] + }, + "raw_value": "PRODUCT", + "clean_value": "PRODUCT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2580.902385564113, + "min_y": 6175.461476026954, + "max_x": 2689.442385564114, + "max_y": 6175.461476026954, + "center": [ + 2635.1723855641135, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2580.902385564113, + 6175.461476026954 + ], + [ + 2689.442385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.442385564114, + "min_y": 6175.461476026954, + "max_x": 2729.942385564114, + "max_y": 6175.461476026954, + "center": [ + 2709.692385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.442385564114, + 6175.461476026954 + ], + [ + 2729.942385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.442385564114, + "min_y": 6175.461476026954, + "max_x": 2810.942385564114, + "max_y": 6175.461476026954, + "center": [ + 2790.692385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.442385564114, + 6175.461476026954 + ], + [ + 2810.942385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.942385564114, + "min_y": 6175.461476026954, + "max_x": 2851.442385564114, + "max_y": 6175.461476026954, + "center": [ + 2831.192385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.942385564114, + 6175.461476026954 + ], + [ + 2851.442385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.442385564114, + "min_y": 6175.461476026954, + "max_x": 2891.942385564114, + "max_y": 6175.461476026954, + "center": [ + 2871.692385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.442385564114, + 6175.461476026954 + ], + [ + 2891.942385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2891.942385564114, + "min_y": 6175.461476026954, + "max_x": 2932.442385564114, + "max_y": 6175.461476026954, + "center": [ + 2912.192385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2891.942385564114, + 6175.461476026954 + ], + [ + 2932.442385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2932.442385564114, + "min_y": 6175.461476026954, + "max_x": 2972.942385564114, + "max_y": 6175.461476026954, + "center": [ + 2952.692385564114, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2932.442385564114, + 6175.461476026954 + ], + [ + 2972.942385564114, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526DF5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2631.083674033911, + "min_y": 6167.361476026954, + "max_x": 2640.8036740339107, + "max_y": 6171.411476026954, + "center": [ + 2635.9436740339106, + 6169.3864760269535 + ] + }, + "raw_value": "UNIT", + "clean_value": "UNIT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DF6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2586.982624085623, + "min_y": 6209.267133156957, + "max_x": 2658.982624085623, + "max_y": 6219.267133156957, + "center": [ + 2622.982624085623, + 6214.267133156957 + ] + }, + "raw_value": "EL REFINE 공정", + "clean_value": "EL REFINE 공정", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6329.551301991562, + "max_x": 3220.947712114109, + "max_y": 6370.121351447604, + "center": [ + 3220.947712114109, + 6349.836326719583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.947712114109, + 6370.121351447604 + ], + [ + 3220.947712114109, + 6329.551301991562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526DF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.947712114109, + "min_y": 6329.551301991565, + "max_x": 3277.196424994162, + "max_y": 6329.551301991565, + "center": [ + 3249.0720685541355, + 6329.551301991565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.947712114109, + 6329.551301991565 + ], + [ + 3277.196424994162, + 6329.551301991565 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526DF9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3282.906508285228, + "min_y": 6327.110509403289, + "max_x": 3303.906508285228, + "max_y": 6332.110509403289, + "center": [ + 3293.406508285228, + 6329.610509403289 + ] + }, + "raw_value": "P-10201", + "clean_value": "P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3277.196424994163, + "min_y": 6325.712985276296, + "max_x": 3310.93441088437, + "max_y": 6325.712985276296, + "center": [ + 3294.065417939267, + 6325.712985276296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3277.196424994163, + 6325.712985276296 + ], + [ + 3310.93441088437, + 6325.712985276296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3277.196424994163, + "min_y": 6333.389618706835, + "max_x": 3310.93441088437, + "max_y": 6333.389618706835, + "center": [ + 3294.065417939267, + 6333.389618706835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3277.196424994163, + 6333.389618706835 + ], + [ + 3310.93441088437, + 6333.389618706835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3277.196424994162, + "min_y": 6325.712985276296, + "max_x": 3277.196424994163, + "max_y": 6333.389618706835, + "center": [ + 3277.1964249941625, + 6329.551301991565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3277.196424994162, + 6333.389618706835 + ], + [ + 3277.196424994163, + 6325.712985276296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3310.93441088437, + "min_y": 6325.712985276296, + "max_x": 3314.087784528604, + "max_y": 6329.551301991565, + "center": [ + 3312.511097706487, + 6327.632143633931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.087784528604, + 6329.551301991565 + ], + [ + 3310.93441088437, + 6325.712985276296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3310.93441088437, + "min_y": 6329.551301991565, + "max_x": 3314.087784528604, + "max_y": 6333.389618706835, + "center": [ + 3312.511097706487, + 6331.4704603492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.087784528604, + 6329.551301991565 + ], + [ + 3310.93441088437, + 6333.389618706835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526DFF", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 2736.716334114109, + "min_y": 6423.063743570673, + "max_x": 2744.556334114109, + "max_y": 6430.903743570673, + "center": [ + 2740.636334114109, + 6426.983743570673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2740.636334114109, + 6426.983743570673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.954942828266, + "min_y": 6423.822975684442, + "max_x": 2747.263756803488, + "max_y": 6426.983743570673, + "center": [ + 2745.109349815877, + 6425.403359627558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.954942828266, + 6423.822975684442 + ], + [ + 2747.263756803488, + 6426.983743570673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.954942828266, + "min_y": 6426.983743570673, + "max_x": 2747.263756803488, + "max_y": 6430.144511456905, + "center": [ + 2745.109349815877, + 6428.56412751379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.263756803488, + 6426.983743570673 + ], + [ + 2742.954942828266, + 6430.144511456905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.263756803488, + "min_y": 6426.983743570673, + "max_x": 2775.529089667998, + "max_y": 6426.983743570673, + "center": [ + 2761.396423235743, + 6426.983743570673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.263756803488, + 6426.983743570673 + ], + [ + 2775.529089667998, + 6426.983743570673 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6102.561476026954, + "max_x": 2729.942385564114, + "max_y": 6199.761476026953, + "center": [ + 2729.942385564114, + 6151.161476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6102.561476026954 + ], + [ + 2729.942385564114, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E04", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2748.959732758503, + "min_y": 6191.661476026954, + "max_x": 2751.3897327585028, + "max_y": 6195.711476026954, + "center": [ + 2750.1747327585026, + 6193.686476026955 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E05", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2743.397577197381, + "min_y": 6167.361476026954, + "max_x": 2755.547577197381, + "max_y": 6171.411476026954, + "center": [ + 2749.472577197381, + 6169.3864760269535 + ] + }, + "raw_value": "KG/HR", + "clean_value": "KG/HR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E06", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2744.468919882752, + "min_y": 6155.211476026955, + "max_x": 2756.618919882752, + "max_y": 6159.261476026955, + "center": [ + 2750.5439198827517, + 6157.236476026956 + ] + }, + "raw_value": "1,600", + "clean_value": "1,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E07", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2744.468919882752, + "min_y": 6143.061476026954, + "max_x": 2756.618919882752, + "max_y": 6147.111476026954, + "center": [ + 2750.5439198827517, + 6145.086476026954 + ] + }, + "raw_value": "1,600", + "clean_value": "1,600", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E08", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2742.003614271529, + "min_y": 6130.911476026954, + "max_x": 2759.013614271529, + "max_y": 6134.961476026954, + "center": [ + 2750.508614271529, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E09", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2743.589323189365, + "min_y": 6118.761476026953, + "max_x": 2755.739323189365, + "max_y": 6122.811476026953, + "center": [ + 2749.664323189365, + 6120.786476026953 + ] + }, + "raw_value": "50~80", + "clean_value": "50~80", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E0A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2744.73371196692, + "min_y": 6179.511476026953, + "max_x": 2754.45371196692, + "max_y": 6183.561476026953, + "center": [ + 2749.5937119669197, + 6181.536476026953 + ] + }, + "raw_value": "FEED", + "clean_value": "FEED", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6199.761476026953, + "max_x": 2770.442385564115, + "max_y": 6199.761476026953, + "center": [ + 2750.1923855641144, + 6199.761476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6199.761476026953 + ], + [ + 2770.442385564115, + 6199.761476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6187.611476026954, + "max_x": 2770.442385564115, + "max_y": 6187.611476026954, + "center": [ + 2750.1923855641144, + 6187.611476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6187.611476026954 + ], + [ + 2770.442385564115, + 6187.611476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6163.311476026954, + "max_x": 2770.442385564115, + "max_y": 6163.311476026954, + "center": [ + 2750.1923855641144, + 6163.311476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6163.311476026954 + ], + [ + 2770.442385564115, + 6163.311476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6151.161476026954, + "max_x": 2770.442385564115, + "max_y": 6151.161476026954, + "center": [ + 2750.1923855641144, + 6151.161476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6151.161476026954 + ], + [ + 2770.442385564115, + 6151.161476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6139.011476026953, + "max_x": 2770.442385564115, + "max_y": 6139.011476026953, + "center": [ + 2750.1923855641144, + 6139.011476026953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6139.011476026953 + ], + [ + 2770.442385564115, + 6139.011476026953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6126.861476026954, + "max_x": 2770.442385564115, + "max_y": 6126.861476026954, + "center": [ + 2750.1923855641144, + 6126.861476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6126.861476026954 + ], + [ + 2770.442385564115, + 6126.861476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6114.711476026954, + "max_x": 2770.442385564115, + "max_y": 6114.711476026954, + "center": [ + 2750.1923855641144, + 6114.711476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6114.711476026954 + ], + [ + 2770.442385564115, + 6114.711476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2729.942385564114, + "min_y": 6175.461476026954, + "max_x": 2770.442385564115, + "max_y": 6175.461476026954, + "center": [ + 2750.1923855641144, + 6175.461476026954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2729.942385564114, + 6175.461476026954 + ], + [ + 2770.442385564115, + 6175.461476026954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E13", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3400.561767267766, + "min_y": 6335.547144615589, + "max_x": 3460.355177158935, + "max_y": 6375.615668257535, + "center": [ + 3430.4584722133504, + 6355.581406436562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3400.561767267766, + 6375.615668257535 + ], + [ + 3460.355177158935, + 6375.615668257535 + ], + [ + 3460.355177158935, + 6335.547144615589 + ], + [ + 3400.561767267766, + 6335.547144615589 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "526E14", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3400.561767267766, + "min_y": 6384.02511149103, + "max_x": 3430.561767267766, + "max_y": 6394.02511149103, + "center": [ + 3415.561767267766, + 6389.02511149103 + ] + }, + "raw_value": "기존 설비", + "clean_value": "기존 설비", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "526E15", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2738.452610071524, + "min_y": 6424.526719853918, + "max_x": 2741.452610071524, + "max_y": 6429.526719853918, + "center": [ + 2739.952610071524, + 6427.026719853918 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E16", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3475.124212780946, + "min_y": 6170.027545288671, + "max_x": 3574.0489220612876, + "max_y": 6174.8785452886705, + "center": [ + 3524.586567421117, + 6172.45304528867 + ] + }, + "raw_value": "\\C256;\\fGulim|b0|i0|c129|p50;\\W1;EL REFINE PLANT", + "clean_value": "\\fGulim|b0|i0|c129|p50; EL REFINE PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E1A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3473.208314500137, + "min_y": 6148.493123043217, + "max_x": 3588.7594997084016, + "max_y": 6153.344123043216, + "center": [ + 3530.9839071042693, + 6150.918623043217 + ] + }, + "raw_value": "{\\Fromans|c129;\\W1;REFINE PLANT\\W0.9;\\T0.85; \\PPROCESS FLOW DIAGRAM}", + "clean_value": "\\Fromans|c129; REFINE PLANT .9; .85; PROCESS FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E1E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3467.986988562264, + "min_y": 6684.019699646336, + "max_x": 3494.1175534047766, + "max_y": 6688.019699646336, + "center": [ + 3481.0522709835204, + 6686.019699646336 + ] + }, + "raw_value": "\\pi1.22241;{\\W0.9;\\LSC-10128\\P\\pi-0.16484;\\lSCRUBBER}", + "clean_value": "\\pi1.22241; .9; SC-10128 \\pi-0.16484;\\lSCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "526E22", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3281.115545470853, + "min_y": 6599.185055310278, + "max_x": 3305.115545470853, + "max_y": 6604.185055310278, + "center": [ + 3293.115545470853, + 6601.685055310278 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E23", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 3076.737235509725, + "min_y": 6508.855706385951, + "max_x": 3084.577235509725, + "max_y": 6516.695706385951, + "center": [ + 3080.657235509725, + 6512.775706385951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3080.657235509725, + 6512.775706385951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.029812820346, + "min_y": 6509.614938499717, + "max_x": 3078.338626795568, + "max_y": 6512.775706385951, + "center": [ + 3076.1842198079567, + 6511.195322442834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3078.338626795568, + 6509.614938499717 + ], + [ + 3074.029812820346, + 6512.775706385951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3074.029812820346, + "min_y": 6512.775706385951, + "max_x": 3078.338626795568, + "max_y": 6515.93647427218, + "center": [ + 3076.1842198079567, + 6514.356090329065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3074.029812820346, + 6512.775706385951 + ], + [ + 3078.338626795568, + 6515.93647427218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3084.577235509725, + "min_y": 6512.775706385951, + "max_x": 3127.795776411741, + "max_y": 6512.775706385951, + "center": [ + 3106.186505960733, + 6512.775706385951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.795776411741, + 6512.775706385951 + ], + [ + 3084.577235509725, + 6512.775706385951 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E27", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2822.417553903312, + "min_y": 6130.911476026954, + "max_x": 2839.4275539033124, + "max_y": 6134.961476026954, + "center": [ + 2830.9225539033123, + 6132.936476026955 + ] + }, + "raw_value": "1.0~2.5", + "clean_value": "1.0~2.5", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E28", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2824.003262821147, + "min_y": 6118.761476026953, + "max_x": 2836.153262821147, + "max_y": 6122.811476026953, + "center": [ + 2830.0782628211473, + 6120.786476026953 + ] + }, + "raw_value": "20~40", + "clean_value": "20~40", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E29", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2776.98517597821, + "min_y": 6155.211476026955, + "max_x": 2803.71517597821, + "max_y": 6159.261476026955, + "center": [ + 2790.3501759782102, + 6157.236476026956 + ] + }, + "raw_value": "1,600~3,200", + "clean_value": "1,600~3,200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 2776.98517597821, + "min_y": 6143.061476026954, + "max_x": 2803.71517597821, + "max_y": 6147.111476026954, + "center": [ + 2790.3501759782102, + 6145.086476026954 + ] + }, + "raw_value": "1,600~3,200", + "clean_value": "1,600~3,200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3257.789261642478, + "min_y": 6291.713711013644, + "max_x": 3266.789261642478, + "max_y": 6296.713711013644, + "center": [ + 3262.289261642478, + 6294.213711013644 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3251.913842958101, + "min_y": 6289.933804069212, + "max_x": 3271.776990795167, + "max_y": 6289.933804069212, + "center": [ + 3261.845416876634, + 6289.933804069212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3251.913842958101, + 6289.933804069212 + ], + [ + 3271.776990795167, + 6289.933804069212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3251.913842958101, + "min_y": 6297.610437499751, + "max_x": 3271.776990795167, + "max_y": 6297.610437499751, + "center": [ + 3261.845416876634, + 6297.610437499751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3251.913842958101, + 6297.610437499751 + ], + [ + 3271.776990795167, + 6297.610437499751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3251.913842958101, + "min_y": 6289.933804069212, + "max_x": 3251.913842958101, + "max_y": 6297.610437499751, + "center": [ + 3251.913842958101, + 6293.772120784482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3251.913842958101, + 6297.610437499751 + ], + [ + 3251.913842958101, + 6289.933804069212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E2F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3271.776990795167, + "min_y": 6289.933804069212, + "max_x": 3274.930364439401, + "max_y": 6293.772120784481, + "center": [ + 3273.353677617284, + 6291.852962426847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3274.930364439401, + 6293.772120784481 + ], + [ + 3271.776990795167, + 6289.933804069212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E30", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3271.776990795167, + "min_y": 6293.772120784481, + "max_x": 3274.930364439401, + "max_y": 6297.610437499751, + "center": [ + 3273.353677617284, + 6295.691279142116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3274.930364439401, + 6293.772120784481 + ], + [ + 3271.776990795167, + 6297.610437499751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3140.906767115284, + "min_y": 6293.772123116887, + "max_x": 3140.906767115284, + "max_y": 6350.672463803878, + "center": [ + 3140.906767115284, + 6322.222293460382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3140.906767115284, + 6350.672463803878 + ], + [ + 3140.906767115284, + 6293.772123116887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3140.906767115284, + "min_y": 6293.772123116894, + "max_x": 3251.913842525516, + "max_y": 6293.772123116894, + "center": [ + 3196.4103048203997, + 6293.772123116894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3140.906767115284, + 6293.772123116894 + ], + [ + 3251.913842525516, + 6293.772123116894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2809.27241873983, + "min_y": 6331.45180966955, + "max_x": 2809.27241873983, + "max_y": 6369.0472499019, + "center": [ + 2809.27241873983, + 6350.249529785725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2809.27241873983, + 6369.0472499019 + ], + [ + 2809.27241873983, + 6331.45180966955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2774.379438215741, + "min_y": 6331.45180966955, + "max_x": 2809.27241873983, + "max_y": 6331.45180966955, + "center": [ + 2791.8259284777855, + 6331.45180966955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2809.27241873983, + 6331.45180966955 + ], + [ + 2774.379438215741, + 6331.45180966955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E35", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3164.603124831144, + "min_y": 6420.922865320481, + "max_x": 3188.603124831144, + "max_y": 6425.922865320481, + "center": [ + 3176.603124831144, + 6423.422865320481 + ] + }, + "raw_value": "DP-10201", + "clean_value": "DP-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E36", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3159.213843534368, + "min_y": 6419.669307546811, + "max_x": 3192.951829424575, + "max_y": 6419.669307546811, + "center": [ + 3176.0828364794716, + 6419.669307546811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3159.213843534368, + 6419.669307546811 + ], + [ + 3192.951829424575, + 6419.669307546811 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E37", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3159.213843534368, + "min_y": 6427.345940977351, + "max_x": 3192.951829424575, + "max_y": 6427.345940977351, + "center": [ + 3176.0828364794716, + 6427.345940977351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3159.213843534368, + 6427.345940977351 + ], + [ + 3192.951829424575, + 6427.345940977351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E38", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3159.213843534368, + "min_y": 6419.669307546811, + "max_x": 3159.213843534368, + "max_y": 6427.345940977351, + "center": [ + 3159.213843534368, + 6423.507624262082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3159.213843534368, + 6427.345940977351 + ], + [ + 3159.213843534368, + 6419.669307546811 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E39", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3192.951829424575, + "min_y": 6419.669307546811, + "max_x": 3196.105203068809, + "max_y": 6423.50762426208, + "center": [ + 3194.5285162466917, + 6421.588465904446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3196.105203068809, + 6423.50762426208 + ], + [ + 3192.951829424575, + 6419.669307546811 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E3A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3192.951829424575, + "min_y": 6423.50762426208, + "max_x": 3196.105203068809, + "max_y": 6427.345940977351, + "center": [ + 3194.5285162466917, + 6425.426782619716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3196.105203068809, + 6423.50762426208 + ], + [ + 3192.951829424575, + 6427.345940977351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3196.105203023641, + "min_y": 6423.507624282418, + "max_x": 3209.94589316904, + "max_y": 6423.507624282418, + "center": [ + 3203.0255480963406, + 6423.507624282418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3196.105203023641, + 6423.507624282418 + ], + [ + 3209.94589316904, + 6423.507624282418 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3209.94589316904, + "min_y": 6412.799897588744, + "max_x": 3209.94589316904, + "max_y": 6423.507624282418, + "center": [ + 3209.94589316904, + 6418.153760935581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3209.94589316904, + 6423.507624282418 + ], + [ + 3209.94589316904, + 6412.799897588744 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "526E41", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3386.609145612548, + "min_y": 6743.708676517961, + "max_x": 3437.7808974655454, + "max_y": 6747.708676517961, + "center": [ + 3412.195021539047, + 6745.708676517961 + ] + }, + "raw_value": "\\pi16.04856;{\\W0.9;\\LT-10201\\P\\pi1.44585;FEED BUFFER TANK}", + "clean_value": "\\pi16.04856; .9; T-10201 \\pi1.44585;FEED BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E49", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3447.768885858226, + "min_y": 6744.960189844345, + "max_x": 3515.2025043971685, + "max_y": 6748.960189844345, + "center": [ + 3481.485695127697, + 6746.960189844345 + ] + }, + "raw_value": "\\pi24.1795;{\\W0.9;\\LT-10221\\P\\pi3.99605;PRODUCT BUFFER TANK}", + "clean_value": "\\pi24.1795; .9; T-10221 \\pi3.99605;PRODUCT BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E4D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3380.03554441635, + "min_y": 6683.931418486958, + "max_x": 3436.076763550831, + "max_y": 6687.931418486958, + "center": [ + 3408.056153983591, + 6685.931418486958 + ] + }, + "raw_value": "\\pi18.01193;{\\W0.9;\\LT-10200\\P\\pi9.64937;RECYCLE TANK}", + "clean_value": "\\pi18.01193; .9; T-10200 \\pi9.64937;RECYCLE TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E59", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2768.325481853659, + "min_y": 6740.982209569534, + "max_x": 2801.921922365461, + "max_y": 6744.982209569534, + "center": [ + 2785.12370210956, + 6742.982209569534 + ] + }, + "raw_value": "\\pi7.02644;{\\W0.9;\\LC-10211\\P\\pi6.59415;\\lCOLUMN}", + "clean_value": "\\pi7.02644; .9; C-10211 \\pi6.59415;\\lCOLUMN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E61", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2851.465457894727, + "min_y": 6741.265371112112, + "max_x": 2897.4569060321232, + "max_y": 6745.265371112112, + "center": [ + 2874.461181963425, + 6743.265371112112 + ] + }, + "raw_value": "\\pi13.06275;{\\W0.9;\\LE-10212\\P\\pi2.02585;\\lTOP CONDENSER}", + "clean_value": "\\pi13.06275; .9; E-10212 \\pi2.02585;\\lTOP CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E65", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2924.990191095206, + "min_y": 6740.485327396349, + "max_x": 2978.1087686173187, + "max_y": 6744.485327396349, + "center": [ + 2951.549479856262, + 6742.485327396349 + ] + }, + "raw_value": "\\pi16.39185;{\\W0.9;\\LD-10213\\P\\pi9.45563;\\lREFLUX DRUM}", + "clean_value": "\\pi16.39185; .9; D-10213 \\pi9.45563;\\lREFLUX DRUM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E71", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2607.847396321511, + "min_y": 6740.883105445902, + "max_x": 2638.0352097362747, + "max_y": 6744.883105445902, + "center": [ + 2622.941303028893, + 6742.883105445902 + ] + }, + "raw_value": "\\pi5.16582;{\\W0.9;\\LE-10203\\P\\pi0.86487;\\lPREHEATER}", + "clean_value": "\\pi5.16582; .9; E-10203 \\pi0.86487;\\lPREHEATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E79", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2681.542422483965, + "min_y": 6741.442542773137, + "max_x": 2735.370247399589, + "max_y": 6745.442542773137, + "center": [ + 2708.4563349417767, + 6743.442542773137 + ] + }, + "raw_value": "\\pi12.62382;{\\W0.9;\\LF-10202A/B\\P\\pi6.9747;FILTER HOUSING}", + "clean_value": "\\pi12.62382; .9; F-10202A/B \\pi6.9747;FILTER HOUSING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E7D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2677.978861156654, + "min_y": 6725.093478179714, + "max_x": 2754.766431457403, + "max_y": 6729.093478179714, + "center": [ + 2716.372646307029, + 6727.093478179714 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C89.1 x 366 H\\PVOLUME : 0.002M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.99MPa / 0.5MPa\\PDT/ OT : 40}\\H0.999999x;%%DC\\A0; / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C89.1 x 366 H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 .999999x;%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E81", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3293.167662296453, + "min_y": 6743.026050740621, + "max_x": 3335.0431584302546, + "max_y": 6747.026050740621, + "center": [ + 3314.1054103633537, + 6745.026050740621 + ] + }, + "raw_value": "\\pi9.29759;{\\W0.9;\\LSP-10602\\P\\pi6.84304;SEPERATER}", + "clean_value": "\\pi9.29759; .9; SP-10602 \\pi6.84304;SEPERATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E89", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2975.043092409226, + "min_y": 6171.380113496716, + "max_x": 3029.3763353816394, + "max_y": 6175.380113496716, + "center": [ + 3002.2097138954327, + 6173.380113496716 + ] + }, + "raw_value": "\\pi15.84152;{\\W0.9;\\LDP-10201\\P\\pi4.89742;DIAPHRAGM PUMP}", + "clean_value": "\\pi15.84152; .9; DP-10201 \\pi4.89742;DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E8D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2977.019624390865, + "min_y": 6155.002581761443, + "max_x": 3043.2642216957593, + "max_y": 6159.002581761443, + "center": [ + 3010.141923043312, + 6157.002581761443 + ] + }, + "raw_value": "{\\W0.9;\\A1;CAPA : }{\\A1;34L/min\\W0.9;\\PSIZE : 25A/25A}\\W0.9;\\PMATERIAL : STS316/PTFE\\PPRESSURE : 0.3MPa\\PSPM : 3,600\\PREMARK : AIR OPERATING", + "clean_value": ".9; CAPA : 34L/min .9; SIZE : 25A/25A .9; MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E91", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3041.897098281359, + "min_y": 6171.050375510994, + "max_x": 3081.695444754569, + "max_y": 6175.050375510994, + "center": [ + 3061.7962715179638, + 6173.050375510994 + ] + }, + "raw_value": "\\pi10.38628;{\\W0.9;\\LP-10201\\P\\pi5.94856;FEED PUMP}", + "clean_value": "\\pi10.38628; .9; P-10201 \\pi5.94856;FEED PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E95", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3042.779508538591, + "min_y": 6154.238456525045, + "max_x": 3098.3351794074556, + "max_y": 6158.238456525045, + "center": [ + 3070.5573439730233, + 6156.238456525045 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 40L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E99", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3103.2850634949, + "min_y": 6171.269047305293, + "max_x": 3134.2948678988246, + "max_y": 6175.269047305293, + "center": [ + 3118.789965696862, + 6173.269047305293 + ] + }, + "raw_value": "\\pi5.52064;{\\W0.9;\\LP-10214\\P\\pi2.89758;TOP PUMP}", + "clean_value": "\\pi5.52064; .9; P-10214 \\pi2.89758;TOP PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526E9D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3098.19065934751, + "min_y": 6154.769641783621, + "max_x": 3158.207822466249, + "max_y": 6158.769641783621, + "center": [ + 3128.19924090688, + 6156.769641783621 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 70L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.35MPa\\PRPM : 3,530", + "clean_value": ".9; CAPA : 70L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EA1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3152.929257840607, + "min_y": 6170.76544652593, + "max_x": 3191.0375000697236, + "max_y": 6174.76544652593, + "center": [ + 3171.9833789551653, + 6172.76544652593 + ] + }, + "raw_value": "\\pi9.07475;{\\W0.9;\\LP-10216\\P\\pi1.17135;BOTTOM PUMP}", + "clean_value": "\\pi9.07475; .9; P-10216 \\pi1.17135;BOTTOM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EA9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3208.104930900023, + "min_y": 6171.441488223567, + "max_x": 3238.4386936063106, + "max_y": 6175.441488223567, + "center": [ + 3223.271812253167, + 6173.441488223567 + ] + }, + "raw_value": "\\pi5.19239;{\\W0.9;\\LP-10218\\P\\pi1.97095;SIDE PUMP}", + "clean_value": "\\pi5.19239; .9; P-10218 \\pi1.97095;SIDE PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EB1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3262.987633005663, + "min_y": 6172.951777984089, + "max_x": 3302.4479586300545, + "max_y": 6176.951777984089, + "center": [ + 3282.717795817859, + 6174.951777984089 + ] + }, + "raw_value": "\\pi8.05092;{\\W0.9;\\LVP-10217\\P\\pi1.41999;VACUUM PUMP}", + "clean_value": "\\pi8.05092; .9; VP-10217 \\pi1.41999;VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EB5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3260.842043785987, + "min_y": 6154.88689664864, + "max_x": 3343.968372369298, + "max_y": 6158.88689664864, + "center": [ + 3302.4052080776423, + 6156.88689664864 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 345m\\H0.7x;\\S3^ ;\\H1.42857x;/h\\PSIZE : 50A/40A}\\H0.999999x;\\P{\\A1;MATERIAL : FCD400+PTFE Coated\\P}PRESSURE : 0.05Torr\\PRPM : 3,550", + "clean_value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EB9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3341.953574332725, + "min_y": 6171.890698802272, + "max_x": 3391.4511377806275, + "max_y": 6175.890698802272, + "center": [ + 3366.7023560566763, + 6173.890698802272 + ] + }, + "raw_value": "\\pi15.23589;{\\W0.9;\\LP-10221\\P\\pi0.61364;EL TRANSFER PUMP}", + "clean_value": "\\pi15.23589; .9; P-10221 \\pi0.61364;EL TRANSFER PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EC1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3109.965800235807, + "min_y": 6743.477983277081, + "max_x": 3166.518802052156, + "max_y": 6747.477983277081, + "center": [ + 3138.2423011439814, + 6745.477983277081 + ] + }, + "raw_value": "\\pi18.33132;{\\W0.9;\\LE-10217\\P\\pi6.71802;SIDE CONDENSER}", + "clean_value": "\\pi18.33132; .9; E-10217 \\pi6.71802;SIDE CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526EC9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3196.397392507437, + "min_y": 6744.917062998107, + "max_x": 3255.6511662419675, + "max_y": 6748.917062998107, + "center": [ + 3226.024279374702, + 6746.917062998107 + ] + }, + "raw_value": "\\pi19.6817;{\\W0.9;\\LE-10219\\P\\pi8.62282;BOTTOM COOLER}", + "clean_value": "\\pi19.6817; .9; E-10219 \\pi8.62282;BOTTOM COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "526ED1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3029.567386683441, + "min_y": 6742.048142874843, + "max_x": 3065.4144704603946, + "max_y": 6746.048142874843, + "center": [ + 3047.4909285719177, + 6744.048142874843 + ] + }, + "raw_value": "\\pi7.97592;{\\W0.9;\\LE-10215\\P\\pi6.23453;\\lREBOILER}", + "clean_value": "\\pi7.97592; .9; E-10215 \\pi6.23453;\\lREBOILER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532DA5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1570.115404234091, + "min_y": 6719.39811505183, + "max_x": 1740.4808306820587, + "max_y": 6723.39811505183, + "center": [ + 1655.298117458075, + 6721.39811505183 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 1,482H (0.1m3)\\PDP(S/T) : 1.0MPa / 0.5MPa\\POP(S/T) : 0.3MPa / 0.3MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 140 %%DC / 60 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C259.4 x 1,482H (0.1m3) DP(S/T) : 1.0MPa / 0.5MPa OP(S/T) : 0.3MPa / 0.3MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 140 %%DC / 60 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532DDA", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1737.166272789314, + "min_y": 6718.425489978544, + "max_x": 1850.4464198757967, + "max_y": 6722.425489978544, + "center": [ + 1793.8063463325552, + 6720.425489978544 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,300 x 36,871H (49.5m3)\\PDP : 0.19 MPa / OP : 0.009 MPa\\PDT : 200 %%DC / OT : 98 %%DC \\PMATERIAL : STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C1,300 x 36,871H (49.5m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532E0F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1827.845157237928, + "min_y": 6718.823624964335, + "max_x": 1949.999134579203, + "max_y": 6722.823624964335, + "center": [ + 1888.9221459085657, + 6720.823624964335 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 4,180H (3.4m3)\\PDP : 0.3 MPa / OP : 0.01MPa\\PDT : 180 %%DC / OT : 45 %%DC \\PMATERIAL : STS316L\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C1,000 x 4,180H (3.4m3) DP : 0.3 MPa / OP : 0.01MPa DT : 180 %%DC / OT : 45 %%DC MATERIAL : STS316L INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532E44", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1918.593784023232, + "min_y": 6722.073550259388, + "max_x": 2029.1158348124177, + "max_y": 6726.073550259388, + "center": [ + 1973.854809417825, + 6724.073550259388 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 2,982H (1.87m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.1 MPa\\PDT(S/T) : 180 %%DC / 180 %%DC\\POT(S/T) : 15 %%DC / 86 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C800 x 2,982H (1.87m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532E79", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2011.160480756222, + "min_y": 6724.458503506636, + "max_x": 2130.2467017766817, + "max_y": 6728.458503506636, + "center": [ + 2070.703591266452, + 6726.458503506636 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 2,982H (2.4m3)\\PDP(S/T) : 0.7MPa / 0.3MPa\\POP(S/T) : 0.3MPa / 0.01MPa\\PDT(S/T) : 120 %%DC / 180 %%DC\\POT(S/T) : 25 %%DC / 85 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C1,000 x 2,982H (2.4m3) DP(S/T) : 0.7MPa / 0.3MPa OP(S/T) : 0.3MPa / 0.01MPa DT(S/T) : 120 %%DC / 180 %%DC OT(S/T) : 25 %%DC / 85 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532EAE", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2100.652806587429, + "min_y": 6725.495121554826, + "max_x": 2221.2924784244733, + "max_y": 6729.495121554826, + "center": [ + 2160.972642505951, + 6727.495121554826 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C645 x 2,482H (1.2m3)\\PDP(S/T) : 1.0 MPa / 0.3 MPa\\POP(S/T) : 0.45MPa / 0.01 MPa\\PDT(S/T) : 220 %%DC / 220 %%DC\\POT(S/T) : 147 %%DC / 98 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C645 x 2,482H (1.2m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532EE3", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2188.037874745934, + "min_y": 6725.358005914666, + "max_x": 2303.88224581958, + "max_y": 6729.358005914666, + "center": [ + 2245.960060282757, + 6727.358005914666 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 982H (0.076m3)\\PDP(S/T) : 0.5 MPa / 0.5 MPa\\POP(S/T) : 0.3 MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 35 %%DC / 109 %%DC \\PMATERIAL(S/T) : STS304 / STS304\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C259.4 x 982H (0.076m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 109 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532F18", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2278.829267866544, + "min_y": 6725.75096730405, + "max_x": 2361.0560567462703, + "max_y": 6729.75096730405, + "center": [ + 2319.9426623064073, + 6727.75096730405 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C 396.4 x 500 H\\PVOLUME : 0.098M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : 0.18MPa / 0.009MPa\\PDT/ OT : 200%%DC / 98%%DC \\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C 396.4 x 500 H VOLUME : 0.098M .7x; ^ ; .999999x; DP /OP : 0.18MPa / 0.009MPa DT/ OT : 200%%DC / 98%%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532F4D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2363.26200385164, + "min_y": 6722.873904673619, + "max_x": 2427.317126680598, + "max_y": 6726.873904673619, + "center": [ + 2395.289565266119, + 6724.873904673619 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C2,500 x 3,600H\\PVOLUME : 20.6M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C2,500 x 3,600H VOLUME : 20.6M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "532F82", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2435.13478742596, + "min_y": 6722.583940581312, + "max_x": 2510.0929098853785, + "max_y": 6726.583940581312, + "center": [ + 2472.6138486556692, + 6724.583940581312 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,100 x 1,259H\\PVOLUME : 1.46M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533316", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3153.276883748946, + "min_y": 6155.182186214974, + "max_x": 3226.379933315502, + "max_y": 6159.182186214974, + "center": [ + 3189.828408532224, + 6157.182186214974 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 10L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 10L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "53331E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3206.476084403947, + "min_y": 6155.522924462403, + "max_x": 3274.154030490319, + "max_y": 6159.522924462403, + "center": [ + 3240.315057447133, + 6157.522924462403 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 40L/min\\PSIZE : 25A/20A\\A0;\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "53332E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3344.008174421094, + "min_y": 6156.321847859914, + "max_x": 3414.9762463265415, + "max_y": 6160.321847859914, + "center": [ + 3379.4922103738177, + 6158.321847859914 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 40L/min\\PSIZE : 25A/20A\\A0;\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5334E1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2842.002239172663, + "min_y": 6726.56885074703, + "max_x": 2933.9403253364135, + "max_y": 6730.56885074703, + "center": [ + 2887.971282254538, + 6728.56885074703 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 2,982H (1.4m3)\\PDP(S/T) : 0.7MPa / 0.3MPa\\POP(S/T) : 0.3MPa / 0.01MPa\\PDT(S/T) : 120 %%DC / 180 %%DC\\POT(S/T) : 25 %%DC / 85 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C800 x 2,982H (1.4m3) DP(S/T) : 0.7MPa / 0.3MPa OP(S/T) : 0.3MPa / 0.01MPa DT(S/T) : 120 %%DC / 180 %%DC OT(S/T) : 25 %%DC / 85 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "53353E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2592.887583625775, + "min_y": 6726.617388191748, + "max_x": 2688.4131963774, + "max_y": 6730.617388191748, + "center": [ + 2640.6503900015873, + 6728.617388191748 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C208.3 x 1,482H (0.062m3)\\PDP(S/T) : 1.0MPa / 0.5MPa\\POP(S/T) : 0.3MPa / 0.3MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 140 %%DC / 60 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C208.3 x 1,482H (0.062m3) DP(S/T) : 1.0MPa / 0.5MPa OP(S/T) : 0.3MPa / 0.3MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 140 %%DC / 60 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533573", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2750.814866968502, + "min_y": 6726.838968635776, + "max_x": 2839.5812122109473, + "max_y": 6730.838968635776, + "center": [ + 2795.1980395897244, + 6728.838968635776 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 30,614H (24.3m3)\\PDP : 0.19 MPa / OP : 0.009 MPa\\PDT : 200 %%DC / OT : 98 %%DC \\PMATERIAL : STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C1,000 x 30,614H (24.3m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533606", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2932.258878798236, + "min_y": 6726.206524190049, + "max_x": 3011.5602537853497, + "max_y": 6730.206524190049, + "center": [ + 2971.9095662917925, + 6728.206524190049 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 4,306H (2.3m3)\\PDP : 0.3 MPa / OP : 0.01MPa\\PDT : 180 %%DC / OT : 45 %%DC \\PMATERIAL : STS316L\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C800 x 4,306H (2.3m3) DP : 0.3 MPa / OP : 0.01MPa DT : 180 %%DC / OT : 45 %%DC MATERIAL : STS316L INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "53363B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3016.11604721886, + "min_y": 6726.886402552972, + "max_x": 3103.23909056227, + "max_y": 6730.886402552972, + "center": [ + 3059.677568890565, + 6728.886402552972 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C700 x 2,482H (1.4m3)\\PDP(S/T) : 1.0 MPa / 0.3 MPa\\POP(S/T) : 0.45MPa / 0.01 MPa\\PDT(S/T) : 220 %%DC / 220 %%DC\\POT(S/T) : 147 %%DC / 98 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C700 x 2,482H (1.4m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533670", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3104.857945569833, + "min_y": 6727.600515299347, + "max_x": 3198.5633304156017, + "max_y": 6731.600515299347, + "center": [ + 3151.7106379927172, + 6729.600515299347 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C497 x 2,978H (0.74m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.1 MPa\\PDT(S/T) : 180 %%DC / 180 %%DC\\POT(S/T) : 15 %%DC / 86 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C497 x 2,978H (0.74m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5336A5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3193.463180003769, + "min_y": 6728.07436482522, + "max_x": 3309.307551077415, + "max_y": 6732.07436482522, + "center": [ + 3251.385365540592, + 6730.07436482522 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 982H (0.077m3)\\PDP(S/T) : 0.5 MPa / 0.5 MPa\\POP(S/T) : 0.3 MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 35 %%DC / 99 %%DC \\PMATERIAL(S/T) : STS304 / STS304\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C259.4 x 982H (0.077m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 99 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5337FC", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3288.245731706569, + "min_y": 6727.243913724466, + "max_x": 3368.5801995599013, + "max_y": 6731.243913724466, + "center": [ + 3328.412965633235, + 6729.243913724466 + ] + }, + "raw_value": "\\W0.9;\\A1;SIZE : %%C 396.4 x 500 H\\PVOLUME : 0.098M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.18MPa / 0.009MPa\\PDT/ OT : 200%%DC / 98%%DC \\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C 396.4 x 500 H VOLUME : 0.098M .7x; ^ ; .42857x; DP /OP : 0.18MPa / 0.009MPa DT/ OT : 200%%DC / 98%%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533831", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3453.113101844562, + "min_y": 6728.754634531059, + "max_x": 3517.420608924229, + "max_y": 6732.754634531059, + "center": [ + 3485.2668553843955, + 6730.754634531059 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,940 x 4,000H\\PVOLUME : 13.2M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS316L", + "clean_value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS316L", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "533866", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3387.814428382191, + "min_y": 6727.699661273989, + "max_x": 3455.9000716095243, + "max_y": 6731.699661273989, + "center": [ + 3421.8572499958577, + 6729.699661273989 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,940 x 4,000H\\PVOLUME : 13.2M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "53389B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3385.278675851403, + "min_y": 6668.810399188209, + "max_x": 3446.720219550841, + "max_y": 6672.810399188209, + "center": [ + 3415.9994477011223, + 6670.810399188209 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,100 x 1,259H\\PVOLUME : 1.46M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5338D0", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3455.078437155486, + "min_y": 6669.05878938467, + "max_x": 3548.57004538054, + "max_y": 6673.05878938467, + "center": [ + 3501.824241268013, + 6671.05878938467 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C750 x 3,641L (30m3/min)\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 30 %%DC \\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525DC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5163.787055416332, + "max_x": 3833.912484674715, + "max_y": 5163.787055416332, + "center": [ + 3802.2849372988635, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5163.787055416332 + ], + [ + 3770.657389923012, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525DD", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5174.471862832472, + "max_x": 3833.912484674715, + "max_y": 5174.471862832472, + "center": [ + 3802.2849372988635, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5174.471862832472 + ], + [ + 3770.657389923012, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525DE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5153.102248000193, + "max_x": 3833.912484674715, + "max_y": 5153.102248000193, + "center": [ + 3802.2849372988635, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5153.102248000193 + ], + [ + 3770.657389923012, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525DF", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5153.102248000193, + "max_x": 3833.912484674715, + "max_y": 5153.102248000193, + "center": [ + 3802.2849372988635, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5153.102248000193 + ], + [ + 3770.657389923012, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E0", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5163.787055416332, + "max_x": 3833.912484674715, + "max_y": 5163.787055416332, + "center": [ + 3802.2849372988635, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5163.787055416332 + ], + [ + 3770.657389923012, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5174.471862832472, + "max_x": 3833.912484674715, + "max_y": 5174.471862832472, + "center": [ + 3802.2849372988635, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5174.471862832472 + ], + [ + 3770.657389923012, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5142.417440584062, + "max_x": 3833.912484674715, + "max_y": 5142.417440584062, + "center": [ + 3802.2849372988635, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5142.417440584062 + ], + [ + 3770.657389923012, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5142.417440584062, + "max_x": 3833.912484674715, + "max_y": 5142.417440584062, + "center": [ + 3802.2849372988635, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5142.417440584062 + ], + [ + 3770.657389923012, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5139.215879039879, + "max_x": 3793.048917328987, + "max_y": 5139.215879039879, + "center": [ + 3781.8531536259998, + 5139.215879039879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3770.657389923012, + 5139.215879039879 + ], + [ + 3793.048917328987, + 5139.215879039879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3783.89637937332, + "min_y": 5137.057630582686, + "max_x": 3786.8171348649716, + "max_y": 5138.274612037541, + "center": [ + 3785.356757119146, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525E6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3783.89637937332, + "min_y": 5137.057630582686, + "max_x": 3786.8171348649716, + "max_y": 5138.274612037541, + "center": [ + 3785.356757119146, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525E7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3785.96402750683, + "min_y": 5139.972711614599, + "max_x": 3786.9656622305215, + "max_y": 5141.6421028207515, + "center": [ + 3786.4648448686758, + 5140.807407217675 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525E8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3772.105026936689, + "min_y": 5140.026275593804, + "max_x": 3777.2163490470793, + "max_y": 5141.243257048659, + "center": [ + 3774.660687991884, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525E9", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3772.105026936689, + "min_y": 5140.026275593804, + "max_x": 3777.2163490470793, + "max_y": 5141.243257048659, + "center": [ + 3774.660687991884, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525EA", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3772.630805400473, + "min_y": 5137.083634048247, + "max_x": 3776.2817497650376, + "max_y": 5138.300615503103, + "center": [ + 3774.4562775827553, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525EB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3772.630805400473, + "min_y": 5137.083634048247, + "max_x": 3776.2817497650376, + "max_y": 5138.300615503103, + "center": [ + 3774.4562775827553, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525EC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3779.54414863353, + "min_y": 5136.02078529679, + "max_x": 3779.54414863353, + "max_y": 5142.417440584062, + "center": [ + 3779.54414863353, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3779.54414863353, + 5142.417440584062 + ], + [ + 3779.54414863353, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525ED", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3794.496768356884, + "min_y": 5140.388472455367, + "max_x": 3799.6080904672745, + "max_y": 5141.605453910222, + "center": [ + 3797.052429412079, + 5140.996963182795 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525EE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3793.048917328987, + "min_y": 5136.02078529679, + "max_x": 3793.048917328987, + "max_y": 5142.417440584062, + "center": [ + 3793.048917328987, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3793.048917328987, + 5142.417440584062 + ], + [ + 3793.048917328987, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525EF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5150.871489282998, + "max_x": 3776.8465775544078, + "max_y": 5152.088470737853, + "center": [ + 3774.2909164992125, + 5151.479980010425 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525F0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5172.241104115277, + "max_x": 3776.8465775544078, + "max_y": 5173.458085570132, + "center": [ + 3774.2909164992125, + 5172.849594842704 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525F1", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5182.232706727603, + "max_x": 3780.4975219189723, + "max_y": 5183.449688182458, + "center": [ + 3776.1163886814948, + 5182.841197455031 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5525F2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3827.890961851217, + "min_y": 5137.417830334262, + "max_x": 3832.860382515831, + "max_y": 5137.417830334262, + "center": [ + 3830.3756721835243, + 5137.417830334262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3827.890961851217, + 5137.417830334262 + ], + [ + 3832.860382515831, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3827.890961851217, + "min_y": 5137.417830334262, + "max_x": 3830.348726268975, + "max_y": 5141.725385866432, + "center": [ + 3829.119844060096, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3827.890961851217, + 5137.417830334262 + ], + [ + 3830.348726268975, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3827.890961851217, + "min_y": 5137.417830334262, + "max_x": 3830.348726268975, + "max_y": 5141.725385866432, + "center": [ + 3829.119844060096, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3827.890961851217, + 5137.417830334262 + ], + [ + 3830.348726268975, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3827.160100326992, + "min_y": 5136.02078529679, + "max_x": 3827.160100326992, + "max_y": 5142.417440584062, + "center": [ + 3827.160100326992, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3827.160100326992, + 5142.417440584062 + ], + [ + 3827.160100326992, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F6", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3830.348726268975, + "min_y": 5137.417830334262, + "max_x": 3832.860382515831, + "max_y": 5141.725385866432, + "center": [ + 3831.604554392403, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3830.348726268975, + 5141.725385866432 + ], + [ + 3832.860382515831, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5184.264113696894, + "max_x": 3833.912484674715, + "max_y": 5184.264113696894, + "center": [ + 3802.2849372988635, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5184.264113696894 + ], + [ + 3770.657389923012, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5184.264113696894, + "max_x": 3833.912484674715, + "max_y": 5184.264113696894, + "center": [ + 3802.2849372988635, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674715, + 5184.264113696894 + ], + [ + 3770.657389923012, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525F9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3829.750656532225, + "min_y": 5138.226707916594, + "max_x": 3830.9148607301095, + "max_y": 5140.167048246401, + "center": [ + 3830.332758631167, + 5139.196878081497 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5525FA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5136.02078529679, + "max_x": 3770.657389923012, + "max_y": 5184.264113696894, + "center": [ + 3770.657389923012, + 5160.142449496841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3770.657389923012, + 5184.264113696894 + ], + [ + 3770.657389923012, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5525FB", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 3789.591427253512, + "min_y": 5167.793935684509, + "max_x": 3835.058610079484, + "max_y": 5170.406992168761, + "center": [ + 3812.325018666498, + 5169.100463926635 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552604", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.047851968463, + "min_y": 5170.593864280164, + "max_x": 3784.39751181982, + "max_y": 5170.593864280164, + "center": [ + 3784.2226818941417, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.047851968463, + 5170.593864280164 + ], + [ + 3784.39751181982, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552605", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.097777306282, + "min_y": 5169.413764349588, + "max_x": 3784.39751181982, + "max_y": 5169.413764349588, + "center": [ + 3784.247644563051, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5169.413764349588 + ], + [ + 3784.097777306282, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552606", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.295064078432, + "min_y": 5169.710451466511, + "max_x": 3784.39751181982, + "max_y": 5169.710451466511, + "center": [ + 3784.3462879491262, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5169.710451466511 + ], + [ + 3784.295064078432, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552607", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3783.701045201481, + "min_y": 5169.20663721225, + "max_x": 3784.058525434467, + "max_y": 5169.20663721225, + "center": [ + 3783.879785317974, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.058525434467, + 5169.20663721225 + ], + [ + 3783.701045201481, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552608", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3783.701045201481, + "min_y": 5169.20663721225, + "max_x": 3784.047851968463, + "max_y": 5170.593864280164, + "center": [ + 3783.874448584972, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.047851968463, + 5170.593864280164 + ], + [ + 3783.701045201481, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552609", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.295064078432, + "min_y": 5169.710451466511, + "max_x": 3784.39751181982, + "max_y": 5170.120242432068, + "center": [ + 3784.3462879491262, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5170.120242432068 + ], + [ + 3784.295064078432, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.058525434467, + "min_y": 5169.20663721225, + "max_x": 3784.097777306282, + "max_y": 5169.413764349588, + "center": [ + 3784.078151370374, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.097777306282, + 5169.413764349588 + ], + [ + 3784.058525434467, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.39751181982, + "min_y": 5170.593864280164, + "max_x": 3784.74717167118, + "max_y": 5170.593864280164, + "center": [ + 3784.5723417455, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.74717167118, + 5170.593864280164 + ], + [ + 3784.39751181982, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.39751181982, + "min_y": 5169.413764349588, + "max_x": 3784.697246333361, + "max_y": 5169.413764349588, + "center": [ + 3784.5473790765905, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5169.413764349588 + ], + [ + 3784.697246333361, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.39751181982, + "min_y": 5169.710451466511, + "max_x": 3784.49995956121, + "max_y": 5169.710451466511, + "center": [ + 3784.4487356905147, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5169.710451466511 + ], + [ + 3784.49995956121, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.736498205174, + "min_y": 5169.20663721225, + "max_x": 3785.093978438156, + "max_y": 5169.20663721225, + "center": [ + 3784.915238321665, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.736498205174, + 5169.20663721225 + ], + [ + 3785.093978438156, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55260F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.74717167118, + "min_y": 5169.20663721225, + "max_x": 3785.093978438156, + "max_y": 5170.593864280164, + "center": [ + 3784.920575054668, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.74717167118, + 5170.593864280164 + ], + [ + 3785.093978438156, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552610", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.39751181982, + "min_y": 5169.710451466511, + "max_x": 3784.49995956121, + "max_y": 5170.120242432068, + "center": [ + 3784.4487356905147, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.39751181982, + 5170.120242432068 + ], + [ + 3784.49995956121, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552611", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3784.697246333361, + "min_y": 5169.20663721225, + "max_x": 3784.736498205174, + "max_y": 5169.413764349588, + "center": [ + 3784.7168722692677, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3784.697246333361, + 5169.413764349588 + ], + [ + 3784.736498205174, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552612", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 3784.547957092346, + "min_y": 5166.720206165759, + "max_x": 3791.4732098081126, + "max_y": 5167.829987820085, + "center": [ + 3788.010583450229, + 5167.275096992922 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552613", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3416.86866978821, + "min_y": 5136.02078529679, + "max_x": 3833.912484674715, + "max_y": 5433.022211779237, + "center": [ + 3625.3905772314624, + 5284.5214985380135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3416.86866978821, + 5433.022211779237 + ], + [ + 3833.912484674715, + 5433.022211779237 + ], + [ + 3833.912484674715, + 5136.02078529679 + ], + [ + 3416.86866978821, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552614", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3771.735255444017, + "min_y": 5161.556296699135, + "max_x": 3780.4975219189723, + "max_y": 5162.77327815399, + "center": [ + 3776.1163886814948, + 5162.164787426562 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552615", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3799.68965458325, + "min_y": 5148.737442947862, + "max_x": 3810.4405155470267, + "max_y": 5150.977205648649, + "center": [ + 3805.065085065138, + 5149.857324298256 + ] + }, + "raw_value": "OFF SITE", + "clean_value": "OFF SITE", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "552616", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3789.174047251849, + "min_y": 5144.257917546288, + "max_x": 3813.3634844203466, + "max_y": 5146.497680247075, + "center": [ + 3801.268765836098, + 5145.377798896681 + ] + }, + "raw_value": "STEAM P&I DIAGRAM ", + "clean_value": "STEAM P&I DIAGRAM", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "552617", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 3774.971610247084, + "min_y": 5177.555024650128, + "max_x": 3820.438793073056, + "max_y": 5180.1680811343795, + "center": [ + 3797.70520166007, + 5178.861552892254 + ] + }, + "raw_value": "72MT/D SOLVENT RECOVERY PLANT", + "clean_value": "72MT/D SOLVENT RECOVERY PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552618", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3771.155364842677, + "min_y": 5185.029137017409, + "max_x": 3773.3328746721027, + "max_y": 5185.93643277967, + "center": [ + 3772.24411975739, + 5185.48278489854 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552619", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3774.195885760187, + "min_y": 5184.264113696894, + "max_x": 3774.195885760303, + "max_y": 5207.629923616948, + "center": [ + 3774.195885760245, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.195885760187, + 5184.264113696894 + ], + [ + 3774.195885760303, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923065, + "min_y": 5187.215768965883, + "max_x": 3833.912484674719, + "max_y": 5187.215768965883, + "center": [ + 3802.284937298892, + 5187.215768965883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5187.215768965883 + ], + [ + 3770.657389923065, + 5187.215768965883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651841, + "min_y": 5187.215768965925, + "max_x": 3774.19588576027, + "max_y": 5190.618128074395, + "center": [ + 3772.4947062060555, + 5188.91694852016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.19588576027, + 5188.916948520139 + ], + [ + 3772.494706206013, + 5190.618128074395 + ], + [ + 3770.793526651841, + 5188.916948520139 + ], + [ + 3772.494706206013, + 5187.215768965925 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651841, + "min_y": 5190.618128074395, + "max_x": 3774.19588576027, + "max_y": 5194.020487182864, + "center": [ + 3772.4947062060555, + 5192.31930762863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.19588576027, + 5192.31930762865 + ], + [ + 3772.494706206013, + 5194.020487182864 + ], + [ + 3770.793526651841, + 5192.31930762865 + ], + [ + 3772.494706206013, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651841, + "min_y": 5194.020487182864, + "max_x": 3774.19588576027, + "max_y": 5197.422846291334, + "center": [ + 3772.4947062060555, + 5195.721666737099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.19588576027, + 5195.72166673712 + ], + [ + 3772.494706206013, + 5197.422846291334 + ], + [ + 3770.793526651841, + 5195.72166673712 + ], + [ + 3772.494706206013, + 5194.020487182864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651841, + "min_y": 5197.422846291334, + "max_x": 3774.19588576027, + "max_y": 5200.825205399844, + "center": [ + 3772.4947062060555, + 5199.124025845589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.19588576027, + 5199.124025845589 + ], + [ + 3772.494706206013, + 5200.825205399844 + ], + [ + 3770.793526651841, + 5199.124025845589 + ], + [ + 3772.494706206013, + 5197.422846291334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55261F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3778.251538270632, + "min_y": 5185.029137017409, + "max_x": 3780.884100971435, + "max_y": 5186.126038142744, + "center": [ + 3779.567819621034, + 5185.577587580076 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552620", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3823.463712344471, + "min_y": 5184.264113696934, + "max_x": 3823.463712344585, + "max_y": 5207.629923616948, + "center": [ + 3823.463712344528, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3823.463712344471, + 5184.264113696934 + ], + [ + 3823.463712344585, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3818.431058143117, + "min_y": 5184.264113696894, + "max_x": 3818.431058143164, + "max_y": 5207.629923616948, + "center": [ + 3818.4310581431405, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3818.431058143117, + 5184.264113696894 + ], + [ + 3818.431058143164, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552622", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3819.108880512644, + "min_y": 5185.029137017409, + "max_x": 3821.7414432134474, + "max_y": 5186.126038142744, + "center": [ + 3820.425161863046, + 5185.577587580076 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552623", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3812.76045962899, + "min_y": 5184.264113696894, + "max_x": 3812.760459629033, + "max_y": 5207.629923616948, + "center": [ + 3812.760459629011, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3812.76045962899, + 5184.264113696894 + ], + [ + 3812.760459629033, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552624", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3813.762367005206, + "min_y": 5185.029137017409, + "max_x": 3816.3949297060094, + "max_y": 5186.126038142744, + "center": [ + 3815.0786483556076, + 5185.577587580076 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552625", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3807.089861114861, + "min_y": 5184.264113696894, + "max_x": 3807.089861114976, + "max_y": 5207.629923616948, + "center": [ + 3807.0898611149187, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3807.089861114861, + 5184.264113696894 + ], + [ + 3807.089861114976, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552626", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3808.044758442901, + "min_y": 5185.029137017409, + "max_x": 3810.6773211437044, + "max_y": 5186.126038142744, + "center": [ + 3809.3610397933026, + 5185.577587580076 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552627", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3791.901428078367, + "min_y": 5185.029137017409, + "max_x": 3799.140975505576, + "max_y": 5186.126038142744, + "center": [ + 3795.5212017919716, + 5185.577587580076 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552628", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3785.785934349754, + "min_y": 5184.264113696934, + "max_x": 3785.785934349799, + "max_y": 5207.629923616948, + "center": [ + 3785.7859343497767, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3785.785934349799, + 5207.629923616948 + ], + [ + 3785.785934349754, + 5184.264113696934 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552629", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3826.16000258272, + "min_y": 5184.976896931174, + "max_x": 3830.108846633925, + "max_y": 5186.073798056509, + "center": [ + 3828.1344246083227, + 5185.525347493842 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651844, + "min_y": 5200.825205399844, + "max_x": 3774.195885760272, + "max_y": 5204.227564508355, + "center": [ + 3772.4947062060583, + 5202.526384954099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.195885760272, + 5202.526384954099 + ], + [ + 3772.494706206015, + 5204.227564508355 + ], + [ + 3770.793526651844, + 5202.526384954099 + ], + [ + 3772.494706206015, + 5200.825205399844 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3770.793526651893, + "min_y": 5204.227564508833, + "max_x": 3774.195885760321, + "max_y": 5207.629923617344, + "center": [ + 3772.494706206107, + 5205.928744063089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.195885760321, + 5205.928744063088 + ], + [ + 3772.494706206064, + 5207.629923617344 + ], + [ + 3770.793526651893, + 5205.928744063088 + ], + [ + 3772.494706206064, + 5204.227564508833 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923014, + "min_y": 5184.264113696996, + "max_x": 3770.65738992313, + "max_y": 5207.629923616948, + "center": [ + 3770.6573899230716, + 5195.947018656972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3770.657389923014, + 5184.264113696996 + ], + [ + 3770.65738992313, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923054, + "min_y": 5190.618128074395, + "max_x": 3833.912484674719, + "max_y": 5190.618128074395, + "center": [ + 3802.2849372988867, + 5190.618128074395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5190.618128074395 + ], + [ + 3770.657389923054, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923047, + "min_y": 5194.020487182905, + "max_x": 3833.912484674719, + "max_y": 5194.020487182905, + "center": [ + 3802.284937298883, + 5194.020487182905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5194.020487182905 + ], + [ + 3770.657389923047, + 5194.020487182905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55262F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923038, + "min_y": 5197.422846291416, + "max_x": 3833.912484674719, + "max_y": 5197.422846291416, + "center": [ + 3802.2849372988785, + 5197.422846291416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5197.422846291416 + ], + [ + 3770.657389923038, + 5197.422846291416 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923029, + "min_y": 5200.825205399927, + "max_x": 3833.912484674719, + "max_y": 5200.825205399927, + "center": [ + 3802.284937298874, + 5200.825205399927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5200.825205399927 + ], + [ + 3770.657389923029, + 5200.825205399927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552631", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.65738992302, + "min_y": 5204.227564508437, + "max_x": 3833.912484674719, + "max_y": 5204.227564508437, + "center": [ + 3802.2849372988694, + 5204.227564508437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5204.227564508437 + ], + [ + 3770.65738992302, + 5204.227564508437 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552632", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3770.657389923012, + "min_y": 5207.629923616948, + "max_x": 3833.912484674719, + "max_y": 5207.629923616948, + "center": [ + 3802.2849372988658, + 5207.629923616948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3833.912484674719, + 5207.629923616948 + ], + [ + 3770.657389923012, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552633", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3789.127743608601, + "min_y": 5156.389081476591, + "max_x": 3811.982985850362, + "max_y": 5158.629791500293, + "center": [ + 3800.555364729482, + 5157.509436488443 + ] + }, + "raw_value": "HANMO CORPORATION", + "clean_value": "HANMO CORPORATION", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "552634", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3783.575796775352, + "min_y": 5157.792848247815, + "max_x": 3786.970811962778, + "max_y": 5157.792848247815, + "center": [ + 3785.273304369065, + 5157.792848247815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3783.575796775352, + 5157.792848247815 + ], + [ + 3786.970811962778, + 5157.792848247815 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "552635", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5191.840066486287, + "max_x": 3772.6759294906988, + "max_y": 5192.773300944948, + "center": [ + 3772.3959591531, + 5192.306683715617 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552636", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5195.24242559477, + "max_x": 3772.6759294906988, + "max_y": 5196.175660053431, + "center": [ + 3772.3959591531, + 5195.709042824101 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552637", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5198.657876168591, + "max_x": 3772.6759294906988, + "max_y": 5199.591110627252, + "center": [ + 3772.3959591531, + 5199.1244933979215 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552638", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5202.060235277075, + "max_x": 3772.6759294906988, + "max_y": 5202.993469735736, + "center": [ + 3772.3959591531, + 5202.526852506406 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552639", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815504, + "min_y": 5205.475685850937, + "max_x": 3772.6759294907006, + "max_y": 5206.408920309598, + "center": [ + 3772.395959153102, + 5205.942303080268 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55263A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3772.115988815502, + "min_y": 5188.450798843156, + "max_x": 3772.6759294906988, + "max_y": 5189.384033301817, + "center": [ + 3772.3959591531, + 5188.917416072487 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55263B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3789.850085346389, + "min_y": 5188.452201500158, + "max_x": 3798.8091361495362, + "max_y": 5189.385435958819, + "center": [ + 3794.3296107479628, + 5188.918818729488 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55263C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3808.205970439934, + "min_y": 5188.452201500131, + "max_x": 3811.0056738159174, + "max_y": 5189.385435958792, + "center": [ + 3809.6058221279254, + 5188.918818729462 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55263D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3803.538901762165, + "min_y": 5137.540953461114, + "max_x": 3819.837760532543, + "max_y": 5139.3519377689345, + "center": [ + 3811.688331147354, + 5138.4464456150245 + ] + }, + "raw_value": "SARF-#10-UFD-ST", + "clean_value": "SARF-#10-UFD-ST", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "55263E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3463.51544732131, + "min_y": 5322.826698579437, + "max_x": 3505.313131225806, + "max_y": 5322.826698579437, + "center": [ + 3484.414289273558, + 5322.826698579437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3463.51544732131, + 5322.826698579437 + ], + [ + 3505.313131225806, + 5322.826698579437 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55263F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3738.577504366397, + "min_y": 5288.522364960347, + "max_x": 3738.577504366397, + "max_y": 5296.75367389619, + "center": [ + 3738.577504366397, + 5292.638019428268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3738.577504366397, + 5296.75367389619 + ], + [ + 3738.577504366397, + 5288.522364960347 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552640", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3738.577504366397, + "min_y": 5288.522364960347, + "max_x": 3762.897280767751, + "max_y": 5288.522364960347, + "center": [ + 3750.737392567074, + 5288.522364960347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3738.577504366397, + 5288.522364960347 + ], + [ + 3762.897280767751, + 5288.522364960347 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3762.897280767751, + "min_y": 5288.522364960347, + "max_x": 3762.897280767751, + "max_y": 5296.75367389619, + "center": [ + 3762.897280767751, + 5292.638019428268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3762.897280767751, + 5288.522364960347 + ], + [ + 3762.897280767751, + 5296.75367389619 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552642", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3738.577504366397, + "min_y": 5296.75367389619, + "max_x": 3762.897280767751, + "max_y": 5296.75367389619, + "center": [ + 3750.737392567074, + 5296.75367389619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3762.897280767751, + 5296.75367389619 + ], + [ + 3738.577504366397, + 5296.75367389619 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552643", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3735.769263549339, + "min_y": 5288.218023102613, + "max_x": 3744.609256200651, + "max_y": 5297.058015753925, + "center": [ + 3740.189259874995, + 5292.638019428269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3740.189259874995, + 5292.638019428269 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552644", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3757.8349668346073, + "min_y": 5288.433851668308, + "max_x": 3766.243302354529, + "max_y": 5296.84218718823, + "center": [ + 3762.039134594568, + 5292.638019428269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3762.039134594568, + 5292.638019428269 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552645", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3761.769106326312, + "min_y": 5286.712547224067, + "max_x": 3761.769106326312, + "max_y": 5288.522364960347, + "center": [ + 3761.769106326312, + 5287.617456092206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3761.769106326312, + 5286.712547224067 + ], + [ + 3761.769106326312, + 5288.522364960347 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552646", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3518.410721544138, + "min_y": 5322.827154261194, + "max_x": 3530.042951599027, + "max_y": 5322.828878617279, + "center": [ + 3524.2268365715827, + 5322.828016439236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3518.410721544138, + 5322.827154261194 + ], + [ + 3530.042951599027, + 5322.828878617279 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552647", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3552.67548168371, + "min_y": 5302.615581424308, + "max_x": 3558.7192028844843, + "max_y": 5304.294392868968, + "center": [ + 3555.6973422840974, + 5303.454987146639 + ] + }, + "raw_value": "E-8115", + "clean_value": "E-8115", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552648", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5321.163662310439, + "max_x": 3522.772590637014, + "max_y": 5322.827800862531, + "center": [ + 3522.772590637014, + 5321.995731586485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5322.827800862531 + ], + [ + 3522.772590637014, + 5321.163662310439 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552649", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5303.447981393637, + "max_x": 3522.772590637014, + "max_y": 5316.033309348429, + "center": [ + 3522.772590637014, + 5309.740645371033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5316.033309348429 + ], + [ + 3522.772590637014, + 5303.447981393637 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3507.878307706807, + "min_y": 5322.826698579434, + "max_x": 3509.696896620889, + "max_y": 5323.960913389163, + "center": [ + 3508.787602163848, + 5323.3938059842985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.878307706807, + 5322.826698579434 + ], + [ + 3509.696896620889, + 5323.960913389163 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3507.878307706807, + "min_y": 5321.69248376971, + "max_x": 3509.696896620889, + "max_y": 5322.826698579434, + "center": [ + 3508.787602163848, + 5322.259591174572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.878307706807, + 5322.826698579434 + ], + [ + 3509.696896620889, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264C", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3507.508746861178, + "min_y": 5322.826698579434, + "max_x": 3508.247868552436, + "max_y": 5322.826698579434, + "center": [ + 3507.8783077068074, + 5322.826698579434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.508746861178, + 5322.826698579434 + ], + [ + 3508.247868552436, + 5322.826698579434 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3506.059718792734, + "min_y": 5322.826698579434, + "max_x": 3507.878307706807, + "max_y": 5323.960913389163, + "center": [ + 3506.969013249771, + 5323.3938059842985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.878307706807, + 5322.826698579434 + ], + [ + 3506.059718792734, + 5323.960913389163 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3506.059718792734, + "min_y": 5321.69248376971, + "max_x": 3506.059718792734, + "max_y": 5323.960913389163, + "center": [ + 3506.059718792734, + 5322.826698579436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3506.059718792734, + 5323.960913389163 + ], + [ + 3506.059718792734, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55264F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3506.059718792734, + "min_y": 5321.69248376971, + "max_x": 3507.878307706807, + "max_y": 5322.826698579434, + "center": [ + 3506.969013249771, + 5322.259591174572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.878307706807, + 5322.826698579434 + ], + [ + 3506.059718792734, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552650", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3509.696896620889, + "min_y": 5321.69248376971, + "max_x": 3509.696896620889, + "max_y": 5323.960913389163, + "center": [ + 3509.696896620889, + 5322.826698579436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3509.696896620889, + 5323.960913389163 + ], + [ + 3509.696896620889, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552651", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3510.443484187817, + "min_y": 5321.69248376971, + "max_x": 3510.443484187817, + "max_y": 5323.960913389163, + "center": [ + 3510.443484187817, + 5322.826698579436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3510.443484187817, + 5323.960913389163 + ], + [ + 3510.443484187817, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552652", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3505.313131225806, + "min_y": 5321.69248376971, + "max_x": 3505.313131225806, + "max_y": 5323.960913389163, + "center": [ + 3505.313131225806, + 5322.826698579436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.313131225806, + 5323.960913389163 + ], + [ + 3505.313131225806, + 5321.69248376971 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552653", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3514.099651266082, + "min_y": 5322.741869765968, + "max_x": 3517.591438860176, + "max_y": 5326.233657360061, + "center": [ + 3515.845545063129, + 5324.487763563015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.845545063129, + 5324.487763563015 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552654", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3514.139702701968, + "min_y": 5324.859579363407, + "max_x": 3517.551387424297, + "max_y": 5324.859579363407, + "center": [ + 3515.8455450631327, + 5324.859579363407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3514.139702701968, + 5324.859579363407 + ], + [ + 3517.551387424297, + 5324.859579363407 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552655", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3514.026956149056, + "min_y": 5321.692939451467, + "max_x": 3514.026956149056, + "max_y": 5323.961369070921, + "center": [ + 3514.026956149056, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3514.026956149056, + 5323.961369070921 + ], + [ + 3514.026956149056, + 5321.692939451467 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552656", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3515.845545063129, + "min_y": 5322.827154261194, + "max_x": 3515.845545063133, + "max_y": 5324.859579363407, + "center": [ + 3515.845545063131, + 5323.8433668123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.845545063133, + 5322.827154261194 + ], + [ + 3515.845545063129, + 5324.859579363407 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552657", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3517.664133977208, + "min_y": 5321.692939451467, + "max_x": 3517.664133977208, + "max_y": 5323.961369070921, + "center": [ + 3517.664133977208, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3517.664133977208, + 5323.961369070921 + ], + [ + 3517.664133977208, + 5321.692939451467 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552658", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3514.026956149056, + "min_y": 5321.692939451467, + "max_x": 3517.664133977208, + "max_y": 5323.961369070921, + "center": [ + 3515.845545063132, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3514.026956149056, + 5321.692939451467 + ], + [ + 3517.664133977208, + 5323.961369070921 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552659", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3514.026956149056, + "min_y": 5321.692939451467, + "max_x": 3517.664133977208, + "max_y": 5323.961369070921, + "center": [ + 3515.845545063132, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3514.026956149056, + 5323.961369070921 + ], + [ + 3517.664133977208, + 5321.692939451467 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3513.280368582129, + "min_y": 5321.692939451467, + "max_x": 3513.280368582129, + "max_y": 5323.961369070921, + "center": [ + 3513.280368582129, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3513.280368582129, + 5321.692939451467 + ], + [ + 3513.280368582129, + 5323.961369070921 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3518.410721544138, + "min_y": 5321.692939451467, + "max_x": 3518.410721544138, + "max_y": 5323.961369070921, + "center": [ + 3518.410721544138, + 5322.827154261195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3518.410721544138, + 5321.692939451467 + ], + [ + 3518.410721544138, + 5323.961369070921 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3515.845545063135, + "min_y": 5322.827154261194, + "max_x": 3520.509656191625, + "max_y": 5327.695995976991, + "center": [ + 3518.17760062738, + 5325.261575119092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.845545063135, + 5322.827154261194 + ], + [ + 3520.509656191625, + 5327.695995976991 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3515.845545063129, + "min_y": 5326.233657360063, + "max_x": 3515.845545063129, + "max_y": 5327.695995976991, + "center": [ + 3515.845545063129, + 5326.964826668527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.845545063129, + 5326.233657360063 + ], + [ + 3515.845545063129, + 5327.695995976991 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3515.845545063129, + "min_y": 5327.695995976991, + "max_x": 3520.509656191625, + "max_y": 5327.695995976991, + "center": [ + 3518.1776006273767, + 5327.695995976991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.845545063129, + 5327.695995976991 + ], + [ + 3520.509656191625, + 5327.695995976991 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55265F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3510.443484187817, + "min_y": 5322.826698579437, + "max_x": 3513.280368582129, + "max_y": 5322.827154261194, + "center": [ + 3511.8619263849732, + 5322.826926420315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3510.443484187817, + 5322.826698579437 + ], + [ + 3513.280368582129, + 5322.827154261194 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552660", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5316.779896915357, + "max_x": 3523.906805446744, + "max_y": 5318.598485829439, + "center": [ + 3523.3396980418793, + 5317.6891913723975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5318.598485829439 + ], + [ + 3523.906805446744, + 5316.779896915357 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552661", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5316.779896915357, + "max_x": 3522.772590637014, + "max_y": 5318.598485829439, + "center": [ + 3522.205483232151, + 5317.6891913723975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5318.598485829439 + ], + [ + 3521.638375827288, + 5316.779896915357 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552662", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5318.228924983807, + "max_x": 3522.772590637014, + "max_y": 5318.968046675068, + "center": [ + 3522.772590637014, + 5318.598485829438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5318.968046675068 + ], + [ + 3522.772590637014, + 5318.228924983807 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552663", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5318.598485829439, + "max_x": 3523.906805446744, + "max_y": 5320.417074743509, + "center": [ + 3523.3396980418793, + 5319.507780286474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5318.598485829439 + ], + [ + 3523.906805446744, + 5320.417074743509 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552664", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5320.417074743509, + "max_x": 3523.906805446744, + "max_y": 5320.417074743509, + "center": [ + 3522.772590637016, + 5320.417074743509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.906805446744, + 5320.417074743509 + ], + [ + 3521.638375827288, + 5320.417074743509 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552665", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5318.598485829439, + "max_x": 3522.772590637014, + "max_y": 5320.417074743509, + "center": [ + 3522.205483232151, + 5319.507780286474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5318.598485829439 + ], + [ + 3521.638375827288, + 5320.417074743509 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552666", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5316.779896915357, + "max_x": 3523.906805446744, + "max_y": 5316.779896915357, + "center": [ + 3522.772590637016, + 5316.779896915357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.906805446744, + 5316.779896915357 + ], + [ + 3521.638375827288, + 5316.779896915357 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552667", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5316.033309348429, + "max_x": 3523.906805446744, + "max_y": 5316.033309348429, + "center": [ + 3522.772590637016, + 5316.033309348429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.906805446744, + 5316.033309348429 + ], + [ + 3521.638375827288, + 5316.033309348429 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552668", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3521.638375827288, + "min_y": 5321.163662310439, + "max_x": 3523.906805446744, + "max_y": 5321.163662310439, + "center": [ + 3522.772590637016, + 5321.163662310439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.906805446744, + 5321.163662310439 + ], + [ + 3521.638375827288, + 5321.163662310439 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552669", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3522.772590637014, + "min_y": 5303.447981393637, + "max_x": 3535.173304561038, + "max_y": 5303.447981393637, + "center": [ + 3528.972947599026, + 5303.447981393637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3522.772590637014, + 5303.447981393637 + ], + [ + 3535.173304561038, + 5303.447981393637 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3524.578556969529, + "min_y": 5301.080746972232, + "max_x": 3527.1990793294494, + "max_y": 5302.5365927277435, + "center": [ + 3525.8888181494895, + 5301.808669849988 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3598.244258801197, + "min_y": 5284.852854954714, + "max_x": 3604.287980001971, + "max_y": 5286.5316663993735, + "center": [ + 3601.2661194015836, + 5285.692260677044 + ] + }, + "raw_value": "E-9103", + "clean_value": "E-9103", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5220.557467935687, + "max_x": 3581.287405451414, + "max_y": 5224.418561108228, + "center": [ + 3581.287405451414, + 5222.488014521958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5224.418561108228 + ], + [ + 3581.287405451414, + 5220.557467935687 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5220.577872033395, + "max_x": 3598.281488415865, + "max_y": 5220.577872033395, + "center": [ + 3589.7844469336396, + 5220.577872033395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5220.577872033395 + ], + [ + 3598.281488415865, + 5220.577872033395 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5224.418561108228, + "max_x": 3598.261084318158, + "max_y": 5224.418583193601, + "center": [ + 3589.7742448847857, + 5224.418572150915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5224.418561108228 + ], + [ + 3598.261084318158, + 5224.418583193601 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55266F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5221.655611791957, + "max_x": 3590.977130168296, + "max_y": 5223.334423236617, + "center": [ + 3587.4516261345107, + 5222.495017514288 + ] + }, + "raw_value": "E-10215", + "clean_value": "E-10215", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552670", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3614.864242298549, + "min_y": 5221.517435176562, + "max_x": 3621.915250366119, + "max_y": 5223.196246621222, + "center": [ + 3618.3897463323337, + 5222.356840898892 + ] + }, + "raw_value": "E-10203", + "clean_value": "E-10203", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552671", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3549.481118196733, + "min_y": 5222.486865385775, + "max_x": 3554.039563177779, + "max_y": 5222.486865385775, + "center": [ + 3551.760340687256, + 5222.486865385775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.039563177779, + 5222.486865385775 + ], + [ + 3549.481118196733, + 5222.486865385775 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552672", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3515.482414688689, + "min_y": 5255.989459609168, + "max_x": 3549.482254375082, + "max_y": 5255.989459609168, + "center": [ + 3532.4823345318855, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.482414688689, + 5255.989459609168 + ], + [ + 3549.482254375082, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552673", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3559.169916139789, + "min_y": 5222.486865385775, + "max_x": 3561.293592016042, + "max_y": 5222.486865385775, + "center": [ + 3560.231754077916, + 5222.486865385775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.169916139789, + 5222.486865385775 + ], + [ + 3561.293592016042, + 5222.486865385775 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552674", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.112874699996, + "min_y": 5222.401580890551, + "max_x": 3565.60466229409, + "max_y": 5225.893368484644, + "center": [ + 3563.858768497043, + 5224.147474687597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5224.147474687597 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552675", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.152926135881, + "min_y": 5224.519290487988, + "max_x": 3565.564610858213, + "max_y": 5224.519290487988, + "center": [ + 3563.858768497047, + 5224.519290487988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.152926135881, + 5224.519290487988 + ], + [ + 3565.564610858213, + 5224.519290487988 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552676", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5221.352650576047, + "max_x": 3562.040179582969, + "max_y": 5223.621080195501, + "center": [ + 3562.040179582969, + 5222.486865385774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5223.621080195501 + ], + [ + 3562.040179582969, + 5221.352650576047 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552677", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5222.486865385774, + "max_x": 3563.858768497046, + "max_y": 5224.519290487988, + "center": [ + 3563.8587684970444, + 5223.503077936881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497046, + 5222.486865385774 + ], + [ + 3563.858768497043, + 5224.519290487988 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552678", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3565.677357411125, + "min_y": 5221.352650576047, + "max_x": 3565.677357411125, + "max_y": 5223.621080195501, + "center": [ + 3565.677357411125, + 5222.486865385774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3565.677357411125, + 5223.621080195501 + ], + [ + 3565.677357411125, + 5221.352650576047 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552679", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5221.352650576047, + "max_x": 3565.677357411125, + "max_y": 5223.621080195501, + "center": [ + 3563.858768497047, + 5222.486865385774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5221.352650576047 + ], + [ + 3565.677357411125, + 5223.621080195501 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5221.352650576047, + "max_x": 3565.677357411125, + "max_y": 5223.621080195501, + "center": [ + 3563.858768497047, + 5222.486865385774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5223.621080195501 + ], + [ + 3565.677357411125, + 5221.352650576047 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3561.293592016042, + "min_y": 5221.352650576048, + "max_x": 3561.293592016042, + "max_y": 5223.621080195501, + "center": [ + 3561.293592016042, + 5222.486865385775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.293592016042, + 5221.352650576048 + ], + [ + 3561.293592016042, + 5223.621080195501 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5221.352650576048, + "max_x": 3566.423944978053, + "max_y": 5223.621080195501, + "center": [ + 3566.423944978053, + 5222.486865385775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.423944978053, + 5221.352650576048 + ], + [ + 3566.423944978053, + 5223.621080195501 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497052, + "min_y": 5222.486865385774, + "max_x": 3568.522879625542, + "max_y": 5227.355707101573, + "center": [ + 3566.190824061297, + 5224.921286243673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497052, + 5222.486865385774 + ], + [ + 3568.522879625542, + 5227.355707101573 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5225.893368484643, + "max_x": 3563.858768497043, + "max_y": 5227.355707101573, + "center": [ + 3563.858768497043, + 5226.624537793108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5225.893368484643 + ], + [ + 3563.858768497043, + 5227.355707101573 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55267F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5222.486865385773, + "max_x": 3558.423328572861, + "max_y": 5223.621080195503, + "center": [ + 3557.5140341158212, + 5223.053972790638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5222.486865385773 + ], + [ + 3558.423328572861, + 5223.621080195503 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552680", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5221.352650576048, + "max_x": 3558.423328572861, + "max_y": 5222.486865385773, + "center": [ + 3557.5140341158212, + 5221.919757980911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5222.486865385773 + ], + [ + 3558.423328572861, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552681", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.235178813153, + "min_y": 5222.486865385773, + "max_x": 3556.974300504411, + "max_y": 5222.486865385773, + "center": [ + 3556.604739658782, + 5222.486865385773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.235178813153, + 5222.486865385773 + ], + [ + 3556.974300504411, + 5222.486865385773 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552682", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5222.486865385773, + "max_x": 3556.604739658782, + "max_y": 5223.621080195503, + "center": [ + 3555.6954452017453, + 5223.053972790638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5222.486865385773 + ], + [ + 3554.786150744709, + 5223.621080195503 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552683", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5221.352650576048, + "max_x": 3554.786150744709, + "max_y": 5223.621080195503, + "center": [ + 3554.786150744709, + 5222.486865385776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.786150744709, + 5223.621080195503 + ], + [ + 3554.786150744709, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552684", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5221.352650576048, + "max_x": 3556.604739658782, + "max_y": 5222.486865385773, + "center": [ + 3555.6954452017453, + 5221.919757980911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5222.486865385773 + ], + [ + 3554.786150744709, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552685", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3558.423328572861, + "min_y": 5221.352650576048, + "max_x": 3558.423328572861, + "max_y": 5223.621080195503, + "center": [ + 3558.423328572861, + 5222.486865385776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.423328572861, + 5223.621080195503 + ], + [ + 3558.423328572861, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552686", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3559.169916139789, + "min_y": 5221.352650576048, + "max_x": 3559.169916139789, + "max_y": 5223.621080195503, + "center": [ + 3559.169916139789, + 5222.486865385776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.169916139789, + 5223.621080195503 + ], + [ + 3559.169916139789, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552687", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.039563177779, + "min_y": 5221.352650576048, + "max_x": 3554.039563177779, + "max_y": 5223.621080195503, + "center": [ + 3554.039563177779, + 5222.486865385776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.039563177779, + 5223.621080195503 + ], + [ + 3554.039563177779, + 5221.352650576048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552688", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3579.326734877528, + "min_y": 5222.488011761287, + "max_x": 3581.287405451414, + "max_y": 5222.488011761287, + "center": [ + 3580.307070164471, + 5222.488011761287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5222.488011761287 + ], + [ + 3579.326734877528, + 5222.488011761287 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552689", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3610.264855075352, + "min_y": 5222.488025564643, + "max_x": 3612.225525649235, + "max_y": 5222.488025564643, + "center": [ + 3611.245190362293, + 5222.488025564643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5222.488025564643 + ], + [ + 3610.264855075352, + 5222.488025564643 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3500.862138049879, + "min_y": 5255.989459609168, + "max_x": 3502.985813926132, + "max_y": 5255.989459609168, + "center": [ + 3501.9239759880056, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3500.862138049879, + 5255.989459609168 + ], + [ + 3502.985813926132, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268B", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3503.8050966100864, + "min_y": 5255.904175113943, + "max_x": 3507.29688420418, + "max_y": 5259.395962708037, + "center": [ + 3505.550990407133, + 5257.65006891099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5257.65006891099 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3503.845148045972, + "min_y": 5258.021884711382, + "max_x": 3507.2568327683, + "max_y": 5258.021884711382, + "center": [ + 3505.550990407136, + 5258.021884711382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3503.845148045972, + 5258.021884711382 + ], + [ + 3507.2568327683, + 5258.021884711382 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5254.855244799442, + "max_x": 3503.73240149306, + "max_y": 5257.123674418895, + "center": [ + 3503.73240149306, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3503.73240149306, + 5257.123674418895 + ], + [ + 3503.73240149306, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5255.989459609168, + "max_x": 3505.550990407137, + "max_y": 5258.021884711382, + "center": [ + 3505.550990407135, + 5257.005672160275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407137, + 5255.989459609168 + ], + [ + 3505.550990407133, + 5258.021884711382 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55268F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3507.369579321212, + "min_y": 5254.855244799442, + "max_x": 3507.369579321212, + "max_y": 5257.123674418895, + "center": [ + 3507.369579321212, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.369579321212, + 5257.123674418895 + ], + [ + 3507.369579321212, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552690", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5254.855244799442, + "max_x": 3507.369579321212, + "max_y": 5257.123674418895, + "center": [ + 3505.550990407136, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3503.73240149306, + 5254.855244799442 + ], + [ + 3507.369579321212, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552691", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5254.855244799442, + "max_x": 3507.369579321212, + "max_y": 5257.123674418895, + "center": [ + 3505.550990407136, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3503.73240149306, + 5257.123674418895 + ], + [ + 3507.369579321212, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552692", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3502.985813926132, + "min_y": 5254.855244799442, + "max_x": 3502.985813926132, + "max_y": 5257.123674418895, + "center": [ + 3502.985813926132, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3502.985813926132, + 5254.855244799442 + ], + [ + 3502.985813926132, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552693", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3508.116166888141, + "min_y": 5254.855244799442, + "max_x": 3508.116166888141, + "max_y": 5257.123674418895, + "center": [ + 3508.116166888141, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3508.116166888141, + 5254.855244799442 + ], + [ + 3508.116166888141, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552694", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3505.550990407139, + "min_y": 5255.989459609168, + "max_x": 3510.215101535628, + "max_y": 5260.858301324966, + "center": [ + 3507.8830459713836, + 5258.423880467068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407139, + 5255.989459609168 + ], + [ + 3510.215101535628, + 5260.858301324966 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552695", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5259.395962708038, + "max_x": 3505.550990407133, + "max_y": 5260.858301324966, + "center": [ + 3505.550990407133, + 5260.1271320165015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5259.395962708038 + ], + [ + 3505.550990407133, + 5260.858301324966 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552696", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5260.858301324966, + "max_x": 3510.215101535628, + "max_y": 5260.858301324966, + "center": [ + 3507.883045971381, + 5260.858301324966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5260.858301324966 + ], + [ + 3510.215101535628, + 5260.858301324966 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552697", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3508.116166888141, + "min_y": 5255.989459609168, + "max_x": 3510.35206172668, + "max_y": 5255.989459609168, + "center": [ + 3509.2341143074104, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3510.35206172668, + 5255.989459609168 + ], + [ + 3508.116166888141, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552698", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3494.613837668597, + "min_y": 5255.989459609168, + "max_x": 3494.613837668597, + "max_y": 5262.985405993201, + "center": [ + 3494.613837668597, + 5259.487432801185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3494.613837668597, + 5255.989459609168 + ], + [ + 3494.613837668597, + 5262.985405993201 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552699", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3494.613837668597, + "min_y": 5262.985405993201, + "max_x": 3502.985813926132, + "max_y": 5262.985405993201, + "center": [ + 3498.7998257973645, + 5262.985405993201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3494.613837668597, + 5262.985405993201 + ], + [ + 3502.985813926132, + 5262.985405993201 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3508.116166888141, + "min_y": 5262.985405993201, + "max_x": 3516.488143145674, + "max_y": 5262.985405993201, + "center": [ + 3512.3021550169074, + 5262.985405993201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3508.116166888141, + 5262.985405993201 + ], + [ + 3516.488143145674, + 5262.985405993201 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3516.544252626814, + "min_y": 5255.989459609168, + "max_x": 3516.544252626814, + "max_y": 5262.985405993201, + "center": [ + 3516.544252626814, + 5259.487432801185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3516.544252626814, + 5255.989459609168 + ], + [ + 3516.544252626814, + 5262.985405993201 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3498.296961568869, + "min_y": 5255.989459609168, + "max_x": 3500.115550482949, + "max_y": 5257.123674418895, + "center": [ + 3499.206256025909, + 5256.556567014031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3498.296961568869, + 5255.989459609168 + ], + [ + 3500.115550482949, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3498.296961568869, + "min_y": 5254.855244799442, + "max_x": 3500.115550482949, + "max_y": 5255.989459609168, + "center": [ + 3499.206256025909, + 5255.422352204305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3498.296961568869, + 5255.989459609168 + ], + [ + 3500.115550482949, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269E", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3497.927400723239, + "min_y": 5255.989459609168, + "max_x": 3498.666522414498, + "max_y": 5255.989459609168, + "center": [ + 3498.2969615688685, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3497.927400723239, + 5255.989459609168 + ], + [ + 3498.666522414498, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55269F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3496.478372654796, + "min_y": 5255.989459609168, + "max_x": 3498.296961568869, + "max_y": 5257.123674418895, + "center": [ + 3497.3876671118323, + 5256.556567014031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3498.296961568869, + 5255.989459609168 + ], + [ + 3496.478372654796, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A0", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3496.478372654796, + "min_y": 5254.855244799442, + "max_x": 3496.478372654796, + "max_y": 5257.123674418895, + "center": [ + 3496.478372654796, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3496.478372654796, + 5257.123674418895 + ], + [ + 3496.478372654796, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A1", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3496.478372654796, + "min_y": 5254.855244799442, + "max_x": 3498.296961568869, + "max_y": 5255.989459609168, + "center": [ + 3497.3876671118323, + 5255.422352204305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3498.296961568869, + 5255.989459609168 + ], + [ + 3496.478372654796, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A2", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3500.115550482949, + "min_y": 5254.855244799442, + "max_x": 3500.115550482949, + "max_y": 5257.123674418895, + "center": [ + 3500.115550482949, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3500.115550482949, + 5257.123674418895 + ], + [ + 3500.115550482949, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A3", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3500.862138049879, + "min_y": 5254.855244799442, + "max_x": 3500.862138049879, + "max_y": 5257.123674418895, + "center": [ + 3500.862138049879, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3500.862138049879, + 5257.123674418895 + ], + [ + 3500.862138049879, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A4", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3495.731785087868, + "min_y": 5254.855244799442, + "max_x": 3495.731785087868, + "max_y": 5257.123674418895, + "center": [ + 3495.731785087868, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3495.731785087868, + 5257.123674418895 + ], + [ + 3495.731785087868, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A5", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5262.985405993199, + "max_x": 3507.369579321212, + "max_y": 5264.119620802928, + "center": [ + 3506.4602848641725, + 5263.552513398063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5262.985405993199 + ], + [ + 3507.369579321212, + 5264.119620802928 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A6", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3505.550990407133, + "min_y": 5261.851191183474, + "max_x": 3507.369579321212, + "max_y": 5262.985405993199, + "center": [ + 3506.4602848641725, + 5262.418298588336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5262.985405993199 + ], + [ + 3507.369579321212, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A7", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3505.181429561504, + "min_y": 5262.985405993199, + "max_x": 3505.920551252762, + "max_y": 5262.985405993199, + "center": [ + 3505.550990407133, + 5262.985405993199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.181429561504, + 5262.985405993199 + ], + [ + 3505.920551252762, + 5262.985405993199 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A8", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5262.985405993199, + "max_x": 3505.550990407133, + "max_y": 5264.119620802928, + "center": [ + 3504.6416959500966, + 5263.552513398063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5262.985405993199 + ], + [ + 3503.73240149306, + 5264.119620802928 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526A9", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5261.851191183474, + "max_x": 3503.73240149306, + "max_y": 5264.119620802928, + "center": [ + 3503.73240149306, + 5262.9854059932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3503.73240149306, + 5264.119620802928 + ], + [ + 3503.73240149306, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AA", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3503.73240149306, + "min_y": 5261.851191183474, + "max_x": 3505.550990407133, + "max_y": 5262.985405993199, + "center": [ + 3504.6416959500966, + 5262.418298588336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3505.550990407133, + 5262.985405993199 + ], + [ + 3503.73240149306, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AB", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3507.369579321212, + "min_y": 5261.851191183474, + "max_x": 3507.369579321212, + "max_y": 5264.119620802928, + "center": [ + 3507.369579321212, + 5262.9854059932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3507.369579321212, + 5264.119620802928 + ], + [ + 3507.369579321212, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AC", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3508.116166888141, + "min_y": 5261.851191183474, + "max_x": 3508.116166888141, + "max_y": 5264.119620802928, + "center": [ + 3508.116166888141, + 5262.9854059932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3508.116166888141, + 5264.119620802928 + ], + [ + 3508.116166888141, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AD", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3502.985813926132, + "min_y": 5261.851191183474, + "max_x": 3502.985813926132, + "max_y": 5264.119620802928, + "center": [ + 3502.985813926132, + 5262.9854059932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3502.985813926132, + 5264.119620802928 + ], + [ + 3502.985813926132, + 5261.851191183474 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AE", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3512.917238207681, + "min_y": 5255.989459609168, + "max_x": 3514.73582712176, + "max_y": 5257.123674418895, + "center": [ + 3513.8265326647206, + 5256.556567014031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3512.917238207681, + 5255.989459609168 + ], + [ + 3514.73582712176, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526AF", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3512.917238207681, + "min_y": 5254.855244799442, + "max_x": 3514.73582712176, + "max_y": 5255.989459609168, + "center": [ + 3513.8265326647206, + 5255.422352204305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3512.917238207681, + 5255.989459609168 + ], + [ + 3514.73582712176, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B0", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3512.547677362052, + "min_y": 5255.989459609168, + "max_x": 3513.28679905331, + "max_y": 5255.989459609168, + "center": [ + 3512.9172382076813, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3512.547677362052, + 5255.989459609168 + ], + [ + 3513.28679905331, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B1", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3511.098649293608, + "min_y": 5255.989459609168, + "max_x": 3512.917238207681, + "max_y": 5257.123674418895, + "center": [ + 3512.0079437506447, + 5256.556567014031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3512.917238207681, + 5255.989459609168 + ], + [ + 3511.098649293608, + 5257.123674418895 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B2", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3511.098649293608, + "min_y": 5254.855244799442, + "max_x": 3511.098649293608, + "max_y": 5257.123674418895, + "center": [ + 3511.098649293608, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3511.098649293608, + 5257.123674418895 + ], + [ + 3511.098649293608, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B3", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3511.098649293608, + "min_y": 5254.855244799442, + "max_x": 3512.917238207681, + "max_y": 5255.989459609168, + "center": [ + 3512.0079437506447, + 5255.422352204305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3512.917238207681, + 5255.989459609168 + ], + [ + 3511.098649293608, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B4", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3514.73582712176, + "min_y": 5254.855244799442, + "max_x": 3514.73582712176, + "max_y": 5257.123674418895, + "center": [ + 3514.73582712176, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3514.73582712176, + 5257.123674418895 + ], + [ + 3514.73582712176, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B5", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3515.482414688689, + "min_y": 5254.855244799442, + "max_x": 3515.482414688689, + "max_y": 5257.123674418895, + "center": [ + 3515.482414688689, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3515.482414688689, + 5257.123674418895 + ], + [ + 3515.482414688689, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B6", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3510.35206172668, + "min_y": 5254.855244799442, + "max_x": 3510.35206172668, + "max_y": 5257.123674418895, + "center": [ + 3510.35206172668, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3510.35206172668, + 5257.123674418895 + ], + [ + 3510.35206172668, + 5254.855244799442 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B7", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3463.51544732131, + "min_y": 5255.989459609168, + "max_x": 3495.731785087868, + "max_y": 5255.989459609168, + "center": [ + 3479.623616204589, + 5255.989459609168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3463.51544732131, + 5255.989459609168 + ], + [ + 3495.731785087868, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B8", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5222.486865385775, + "max_x": 3581.287405451414, + "max_y": 5222.488014521958, + "center": [ + 3573.8556752147333, + 5222.487439953866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.423944978053, + 5222.486865385775 + ], + [ + 3581.287405451414, + 5222.488014521958 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526B9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3755.618244752804, + "min_y": 5281.4402210325, + "max_x": 3774.5442395744526, + "max_y": 5283.866630625019, + "center": [ + 3765.0812421636283, + 5282.653425828759 + ] + }, + "raw_value": "6차 OGDEN PUMP", + "clean_value": "6차 OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5220.419291320292, + "max_x": 3612.225525649235, + "max_y": 5224.280384492833, + "center": [ + 3612.225525649235, + 5222.349837906562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5224.280384492833 + ], + [ + 3612.225525649235, + 5220.419291320292 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5220.439695418001, + "max_x": 3629.219608613688, + "max_y": 5220.439695418001, + "center": [ + 3620.7225671314613, + 5220.439695418001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5220.439695418001 + ], + [ + 3629.219608613688, + 5220.439695418001 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5224.280384492833, + "max_x": 3629.199204515981, + "max_y": 5224.280406578206, + "center": [ + 3620.712365082608, + 5224.280395535519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5224.280384492833 + ], + [ + 3629.199204515981, + 5224.280406578206 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3629.219608613688, + "min_y": 5220.439695418001, + "max_x": 3631.129762144934, + "max_y": 5222.349848949251, + "center": [ + 3630.174685379311, + 5221.394772183627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3629.219608613688, + 5220.439695418001 + ], + [ + 3631.129762144934, + 5222.349848949251 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3629.199204515981, + "min_y": 5222.349848949251, + "max_x": 3631.129762144934, + "max_y": 5224.280406578206, + "center": [ + 3630.164483330457, + 5223.315127763728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3631.129762144934, + 5222.349848949251 + ], + [ + 3629.199204515981, + 5224.280406578206 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5222.488025564643, + "max_x": 3600.191641947115, + "max_y": 5224.418583193601, + "center": [ + 3599.2263631326364, + 5223.453304379122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.261084318158, + 5224.418583193601 + ], + [ + 3600.191641947115, + 5222.488025564643 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.281488415865, + "min_y": 5220.577872033395, + "max_x": 3600.191641947115, + "max_y": 5222.488025564643, + "center": [ + 3599.23656518149, + 5221.532948799018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.281488415865, + 5220.577872033395 + ], + [ + 3600.191641947115, + 5222.488025564643 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C1", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3600.191641947115, + "min_y": 5222.488025564643, + "max_x": 3612.225525649235, + "max_y": 5222.488025564643, + "center": [ + 3606.208583798175, + 5222.488025564643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3600.191641947115, + 5222.488025564643 + ], + [ + 3612.225525649235, + 5222.488025564643 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3595.605542151884, + "min_y": 5283.755857473956, + "max_x": 3595.605542151884, + "max_y": 5287.616950646496, + "center": [ + 3595.605542151884, + 5285.686404060226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.605542151884, + 5287.616950646496 + ], + [ + 3595.605542151884, + 5283.755857473956 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3595.605542151884, + "min_y": 5283.776261571663, + "max_x": 3612.599625116337, + "max_y": 5283.776261571663, + "center": [ + 3604.1025836341105, + 5283.776261571663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.605542151884, + 5283.776261571663 + ], + [ + 3612.599625116337, + 5283.776261571663 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3595.605542151884, + "min_y": 5287.616950646496, + "max_x": 3612.579221018629, + "max_y": 5287.61697273187, + "center": [ + 3604.0923815852566, + 5287.616961689183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.605542151884, + 5287.616950646496 + ], + [ + 3612.579221018629, + 5287.61697273187 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.599625116337, + "min_y": 5283.776261571663, + "max_x": 3614.509778647583, + "max_y": 5285.686415102914, + "center": [ + 3613.5547018819598, + 5284.731338337288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.599625116337, + 5283.776261571663 + ], + [ + 3614.509778647583, + 5285.686415102914 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.579221018629, + "min_y": 5285.686415102914, + "max_x": 3614.509778647583, + "max_y": 5287.61697273187, + "center": [ + 3613.544499833106, + 5286.651693917393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.509778647583, + 5285.686415102914 + ], + [ + 3612.579221018629, + 5287.61697273187 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3550.0367650344, + "min_y": 5301.518583943549, + "max_x": 3550.0367650344, + "max_y": 5305.379677116089, + "center": [ + 3550.0367650344, + 5303.449130529819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3550.0367650344, + 5305.379677116089 + ], + [ + 3550.0367650344, + 5301.518583943549 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3550.0367650344, + "min_y": 5301.538988041257, + "max_x": 3567.030847998851, + "max_y": 5301.538988041257, + "center": [ + 3558.5338065166256, + 5301.538988041257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3550.0367650344, + 5301.538988041257 + ], + [ + 3567.030847998851, + 5301.538988041257 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526C9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3550.0367650344, + "min_y": 5305.379677116089, + "max_x": 3567.010443901143, + "max_y": 5305.379699201463, + "center": [ + 3558.5236044677713, + 5305.379688158776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3550.0367650344, + 5305.379677116089 + ], + [ + 3567.010443901143, + 5305.379699201463 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3548.076094460513, + "min_y": 5303.449127769148, + "max_x": 3550.0367650344, + "max_y": 5303.449127769148, + "center": [ + 3549.0564297474566, + 5303.449127769148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3550.0367650344, + 5303.449127769148 + ], + [ + 3548.076094460513, + 5303.449127769148 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CB", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3535.173304561038, + "min_y": 5303.447981393637, + "max_x": 3550.0367650344, + "max_y": 5303.44913052982, + "center": [ + 3542.605034797719, + 5303.448555961728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3535.173304561038, + 5303.447981393637 + ], + [ + 3550.0367650344, + 5303.44913052982 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3567.010443901143, + "min_y": 5303.449141572507, + "max_x": 3568.9410015301, + "max_y": 5305.379699201463, + "center": [ + 3567.9757227156215, + 5304.4144203869855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3567.010443901143, + 5305.379699201463 + ], + [ + 3568.9410015301, + 5303.449141572507 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3567.030847998851, + "min_y": 5301.538988041257, + "max_x": 3568.9410015301, + "max_y": 5303.449141572507, + "center": [ + 3567.9859247644754, + 5302.494064806882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3567.030847998851, + 5301.538988041257 + ], + [ + 3568.9410015301, + 5303.449141572507 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CE", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3631.129762144934, + "min_y": 5222.349848949251, + "max_x": 3640.607980939535, + "max_y": 5222.349848949251, + "center": [ + 3635.8688715422345, + 5222.349848949251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3631.129762144934, + 5222.349848949251 + ], + [ + 3640.607980939535, + 5222.349848949251 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526CF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3559.763002996805, + "min_y": 5219.140741212063, + "max_x": 3570.961816500739, + "max_y": 5220.30728428539, + "center": [ + 3565.362409748772, + 5219.724012748727 + ] + }, + "raw_value": "0.65 -> 0.35 MPa", + "clean_value": "0.65 -> 0.35 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3511.581009420824, + "min_y": 5319.295905090214, + "max_x": 3521.3799712367663, + "max_y": 5320.46244816354, + "center": [ + 3516.480490328795, + 5319.879176626877 + ] + }, + "raw_value": "0.8 -> 0.5 MPa", + "clean_value": "0.8 -> 0.5 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3501.820724058324, + "min_y": 5252.686078102318, + "max_x": 3512.319611718262, + "max_y": 5253.852621175644, + "center": [ + 3507.070167888293, + 5253.269349638981 + ] + }, + "raw_value": "0.8 -> 0.65 MPa", + "clean_value": "0.8 -> 0.65 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3575.180226235278, + "min_y": 5220.53836809486, + "max_x": 3577.8007485951985, + "max_y": 5221.994213850371, + "center": [ + 3576.490487415238, + 5221.266290972615 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3487.528633269651, + "min_y": 5253.396149098571, + "max_x": 3491.0226630828784, + "max_y": 5254.8519948540825, + "center": [ + 3489.2756481762644, + 5254.124071976326 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5243.113837141445, + "max_x": 3591.9844170350916, + "max_y": 5244.792648586105, + "center": [ + 3587.9552695679085, + 5243.953242863776 + ] + }, + "raw_value": "E-10115A", + "clean_value": "E-10115A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3614.864242298549, + "min_y": 5242.975660526049, + "max_x": 3621.915250366119, + "max_y": 5244.654471970709, + "center": [ + 3618.3897463323337, + 5243.815066248379 + ] + }, + "raw_value": "E-10103", + "clean_value": "E-10103", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5235.073575288246, + "max_x": 3581.287405451414, + "max_y": 5238.934668460786, + "center": [ + 3581.287405451414, + 5237.0041218745155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5238.934668460786 + ], + [ + 3581.287405451414, + 5235.073575288246 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5235.093979385954, + "max_x": 3598.281488415865, + "max_y": 5235.093979385954, + "center": [ + 3589.7844469336396, + 5235.093979385954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5235.093979385954 + ], + [ + 3598.281488415865, + 5235.093979385954 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5238.934668460786, + "max_x": 3598.261084318158, + "max_y": 5238.93469054616, + "center": [ + 3589.7742448847857, + 5238.934679503473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5238.934668460786 + ], + [ + 3598.261084318158, + 5238.93469054616 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526D9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3583.926122100726, + "min_y": 5236.171719144516, + "max_x": 3591.9844170350916, + "max_y": 5237.850530589176, + "center": [ + 3587.9552695679085, + 5237.011124866845 + ] + }, + "raw_value": "E-10115B", + "clean_value": "E-10115B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DA", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3549.481118196733, + "min_y": 5202.17477204175, + "max_x": 3549.489661349653, + "max_y": 5243.946237110773, + "center": [ + 3549.4853897731928, + 5223.060504576261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3549.489661349653, + 5202.17477204175 + ], + [ + 3549.481118196733, + 5243.946237110773 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DB", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3549.481118196733, + "min_y": 5243.946237110773, + "max_x": 3554.039563177779, + "max_y": 5243.946237110773, + "center": [ + 3551.760340687256, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3549.481118196733, + 5243.946237110773 + ], + [ + 3554.039563177779, + 5243.946237110773 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DC", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3559.169916139789, + "min_y": 5243.946237110773, + "max_x": 3561.293592016042, + "max_y": 5243.946237110773, + "center": [ + 3560.231754077916, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.169916139789, + 5243.946237110773 + ], + [ + 3561.293592016042, + 5243.946237110773 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DD", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.112874699996, + "min_y": 5243.860952615547, + "max_x": 3565.60466229409, + "max_y": 5247.352740209641, + "center": [ + 3563.858768497043, + 5245.606846412594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5245.606846412594 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.152926135881, + "min_y": 5245.978662212985, + "max_x": 3565.564610858213, + "max_y": 5245.978662212985, + "center": [ + 3563.858768497047, + 5245.978662212985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.152926135881, + 5245.978662212985 + ], + [ + 3565.564610858213, + 5245.978662212985 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526DF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5242.812022301045, + "max_x": 3562.040179582969, + "max_y": 5245.080451920498, + "center": [ + 3562.040179582969, + 5243.946237110771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5245.080451920498 + ], + [ + 3562.040179582969, + 5242.812022301045 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5243.946237110771, + "max_x": 3563.858768497046, + "max_y": 5245.978662212985, + "center": [ + 3563.8587684970444, + 5244.962449661878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497046, + 5243.946237110771 + ], + [ + 3563.858768497043, + 5245.978662212985 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3565.677357411125, + "min_y": 5242.812022301045, + "max_x": 3565.677357411125, + "max_y": 5245.080451920498, + "center": [ + 3565.677357411125, + 5243.946237110771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3565.677357411125, + 5245.080451920498 + ], + [ + 3565.677357411125, + 5242.812022301045 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5242.812022301045, + "max_x": 3565.677357411125, + "max_y": 5245.080451920498, + "center": [ + 3563.858768497047, + 5243.946237110771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5242.812022301045 + ], + [ + 3565.677357411125, + 5245.080451920498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3562.040179582969, + "min_y": 5242.812022301045, + "max_x": 3565.677357411125, + "max_y": 5245.080451920498, + "center": [ + 3563.858768497047, + 5243.946237110771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.040179582969, + 5245.080451920498 + ], + [ + 3565.677357411125, + 5242.812022301045 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3561.293592016042, + "min_y": 5242.812022301046, + "max_x": 3561.293592016042, + "max_y": 5245.080451920498, + "center": [ + 3561.293592016042, + 5243.946237110772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.293592016042, + 5242.812022301046 + ], + [ + 3561.293592016042, + 5245.080451920498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5242.812022301046, + "max_x": 3566.423944978053, + "max_y": 5245.080451920498, + "center": [ + 3566.423944978053, + 5243.946237110772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.423944978053, + 5242.812022301046 + ], + [ + 3566.423944978053, + 5245.080451920498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497052, + "min_y": 5243.946237110771, + "max_x": 3568.522879625542, + "max_y": 5248.81507882657, + "center": [ + 3566.190824061297, + 5246.380657968671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497052, + 5243.946237110771 + ], + [ + 3568.522879625542, + 5248.81507882657 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5248.81507882657, + "max_x": 3568.522879625542, + "max_y": 5248.81507882657, + "center": [ + 3566.1908240612925, + 5248.81507882657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5248.81507882657 + ], + [ + 3568.522879625542, + 5248.81507882657 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E8", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5243.94623711077, + "max_x": 3558.423328572861, + "max_y": 5245.080451920499, + "center": [ + 3557.5140341158212, + 5244.513344515635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5243.94623711077 + ], + [ + 3558.423328572861, + 5245.080451920499 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526E9", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.604739658782, + "min_y": 5242.812022301046, + "max_x": 3558.423328572861, + "max_y": 5243.94623711077, + "center": [ + 3557.5140341158212, + 5243.379129705909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5243.94623711077 + ], + [ + 3558.423328572861, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526EA", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.235178813153, + "min_y": 5243.94623711077, + "max_x": 3556.974300504411, + "max_y": 5243.94623711077, + "center": [ + 3556.604739658782, + 5243.94623711077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.235178813153, + 5243.94623711077 + ], + [ + 3556.974300504411, + 5243.94623711077 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526EB", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5243.94623711077, + "max_x": 3556.604739658782, + "max_y": 5245.080451920499, + "center": [ + 3555.6954452017453, + 5244.513344515635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5243.94623711077 + ], + [ + 3554.786150744709, + 5245.080451920499 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526EC", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5242.812022301046, + "max_x": 3554.786150744709, + "max_y": 5245.080451920499, + "center": [ + 3554.786150744709, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.786150744709, + 5245.080451920499 + ], + [ + 3554.786150744709, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526ED", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.786150744709, + "min_y": 5242.812022301046, + "max_x": 3556.604739658782, + "max_y": 5243.94623711077, + "center": [ + 3555.6954452017453, + 5243.379129705909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.604739658782, + 5243.94623711077 + ], + [ + 3554.786150744709, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526EE", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3558.423328572861, + "min_y": 5242.812022301046, + "max_x": 3558.423328572861, + "max_y": 5245.080451920499, + "center": [ + 3558.423328572861, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.423328572861, + 5245.080451920499 + ], + [ + 3558.423328572861, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526EF", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3559.169916139789, + "min_y": 5242.812022301046, + "max_x": 3559.169916139789, + "max_y": 5245.080451920499, + "center": [ + 3559.169916139789, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.169916139789, + 5245.080451920499 + ], + [ + 3559.169916139789, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F0", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.039563177779, + "min_y": 5242.812022301046, + "max_x": 3554.039563177779, + "max_y": 5245.080451920499, + "center": [ + 3554.039563177779, + 5243.946237110773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.039563177779, + 5245.080451920499 + ], + [ + 3554.039563177779, + 5242.812022301046 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3579.326734877528, + "min_y": 5237.004119113845, + "max_x": 3581.287405451414, + "max_y": 5237.004119113845, + "center": [ + 3580.307070164471, + 5237.004119113845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5237.004119113845 + ], + [ + 3579.326734877528, + 5237.004119113845 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F2", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3569.458309394266, + "min_y": 5237.002972738333, + "max_x": 3581.287405451414, + "max_y": 5237.004121874516, + "center": [ + 3575.37285742284, + 5237.0035473064245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3569.458309394266, + 5237.002972738333 + ], + [ + 3581.287405451414, + 5237.004121874516 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5247.352740209641, + "max_x": 3563.858768497043, + "max_y": 5248.81507882657, + "center": [ + 3563.858768497043, + 5248.083909518105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5247.352740209641 + ], + [ + 3563.858768497043, + 5248.81507882657 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5237.004132917203, + "max_x": 3600.191641947115, + "max_y": 5238.93469054616, + "center": [ + 3599.2263631326364, + 5237.969411731681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.261084318158, + 5238.93469054616 + ], + [ + 3600.191641947115, + 5237.004132917203 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.281488415865, + "min_y": 5235.093979385954, + "max_x": 3600.191641947115, + "max_y": 5237.004132917203, + "center": [ + 3599.23656518149, + 5236.049056151578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.281488415865, + 5235.093979385954 + ], + [ + 3600.191641947115, + 5237.004132917203 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F6", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3600.191641947115, + "min_y": 5237.004132917203, + "max_x": 3606.208583798176, + "max_y": 5237.004132917203, + "center": [ + 3603.200112872645, + 5237.004132917203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3600.191641947115, + 5237.004132917203 + ], + [ + 3606.208583798176, + 5237.004132917203 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5242.016839660684, + "max_x": 3581.287405451414, + "max_y": 5245.877932833225, + "center": [ + 3581.287405451414, + 5243.947386246955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5245.877932833225 + ], + [ + 3581.287405451414, + 5242.016839660684 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5242.037243758392, + "max_x": 3598.281488415865, + "max_y": 5242.037243758392, + "center": [ + 3589.7844469336396, + 5242.037243758392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5242.037243758392 + ], + [ + 3598.281488415865, + 5242.037243758392 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526F9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3581.287405451414, + "min_y": 5245.877932833225, + "max_x": 3598.261084318158, + "max_y": 5245.877954918598, + "center": [ + 3589.7742448847857, + 5245.877943875912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5245.877932833225 + ], + [ + 3598.261084318158, + 5245.877954918598 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3579.326734877528, + "min_y": 5243.947383486283, + "max_x": 3581.287405451414, + "max_y": 5243.947383486283, + "center": [ + 3580.307070164471, + 5243.947383486283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.287405451414, + 5243.947383486283 + ], + [ + 3579.326734877528, + 5243.947383486283 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3610.264855075352, + "min_y": 5243.947397289641, + "max_x": 3612.225525649235, + "max_y": 5243.947397289641, + "center": [ + 3611.245190362293, + 5243.947397289641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5243.947397289641 + ], + [ + 3610.264855075352, + 5243.947397289641 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FC", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3566.423944978053, + "min_y": 5243.946237110773, + "max_x": 3581.287405451414, + "max_y": 5243.947386246954, + "center": [ + 3573.8556752147333, + 5243.946811678863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.423944978053, + 5243.946237110773 + ], + [ + 3581.287405451414, + 5243.947386246954 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5241.87866304529, + "max_x": 3612.225525649235, + "max_y": 5245.73975621783, + "center": [ + 3612.225525649235, + 5243.8092096315595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5245.73975621783 + ], + [ + 3612.225525649235, + 5241.87866304529 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5241.899067142997, + "max_x": 3629.219608613688, + "max_y": 5241.899067142997, + "center": [ + 3620.7225671314613, + 5241.899067142997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5241.899067142997 + ], + [ + 3629.219608613688, + 5241.899067142997 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5526FF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.225525649235, + "min_y": 5245.73975621783, + "max_x": 3629.199204515981, + "max_y": 5245.739778303203, + "center": [ + 3620.712365082608, + 5245.739767260517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.225525649235, + 5245.73975621783 + ], + [ + 3629.199204515981, + 5245.739778303203 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552700", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3629.219608613688, + "min_y": 5241.899067142997, + "max_x": 3631.129762144934, + "max_y": 5243.809220674249, + "center": [ + 3630.174685379311, + 5242.854143908624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3629.219608613688, + 5241.899067142997 + ], + [ + 3631.129762144934, + 5243.809220674249 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552701", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3629.199204515981, + "min_y": 5243.809220674249, + "max_x": 3631.129762144934, + "max_y": 5245.739778303203, + "center": [ + 3630.164483330457, + 5244.774499488726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3631.129762144934, + 5243.809220674249 + ], + [ + 3629.199204515981, + 5245.739778303203 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552702", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.261084318158, + "min_y": 5243.947397289641, + "max_x": 3600.191641947115, + "max_y": 5245.877954918598, + "center": [ + 3599.2263631326364, + 5244.91267610412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.261084318158, + 5245.877954918598 + ], + [ + 3600.191641947115, + 5243.947397289641 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552703", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3598.281488415865, + "min_y": 5242.037243758392, + "max_x": 3600.191641947115, + "max_y": 5243.947397289641, + "center": [ + 3599.23656518149, + 5242.992320524017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3598.281488415865, + 5242.037243758392 + ], + [ + 3600.191641947115, + 5243.947397289641 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552704", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3600.191641947115, + "min_y": 5243.947397289641, + "max_x": 3612.225525649235, + "max_y": 5243.947397289641, + "center": [ + 3606.208583798175, + 5243.947397289641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3600.191641947115, + 5243.947397289641 + ], + [ + 3612.225525649235, + 5243.947397289641 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552705", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3575.51984572271, + "min_y": 5235.054475447419, + "max_x": 3578.1403680826306, + "max_y": 5236.51032120293, + "center": [ + 3576.83010690267, + 5235.782398325175 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552706", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3668.997113797092, + "min_y": 5167.244588155714, + "max_x": 3668.997113797092, + "max_y": 5175.475897091557, + "center": [ + 3668.997113797092, + 5171.360242623636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3668.997113797092, + 5175.475897091557 + ], + [ + 3668.997113797092, + 5167.244588155714 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552707", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3668.997113797092, + "min_y": 5167.244588155714, + "max_x": 3683.915736958164, + "max_y": 5167.244588155714, + "center": [ + 3676.456425377628, + 5167.244588155714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3668.997113797092, + 5167.244588155714 + ], + [ + 3683.915736958164, + 5167.244588155714 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552708", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3683.915736958164, + "min_y": 5167.244588155714, + "max_x": 3683.915736958164, + "max_y": 5175.475897091557, + "center": [ + 3683.915736958164, + 5171.360242623636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.915736958164, + 5167.244588155714 + ], + [ + 3683.915736958164, + 5175.475897091557 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552709", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3668.997113797092, + "min_y": 5175.475897091557, + "max_x": 3683.915736958164, + "max_y": 5175.475897091557, + "center": [ + 3676.456425377628, + 5175.475897091557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.915736958164, + 5175.475897091557 + ], + [ + 3668.997113797092, + 5175.475897091557 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3666.188872980034, + "min_y": 5166.940246297979, + "max_x": 3675.028865631346, + "max_y": 5175.780238949291, + "center": [ + 3670.60886930569, + 5171.360242623635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.60886930569, + 5171.360242623635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3678.853423025021, + "min_y": 5167.156074863671, + "max_x": 3687.261758544943, + "max_y": 5175.564410383593, + "center": [ + 3683.057590784982, + 5171.360242623632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.057590784982, + 5171.360242623632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3669.719729357512, + "min_y": 5170.071686560682, + "max_x": 3681.366495401603, + "max_y": 5172.498096153201, + "center": [ + 3675.5431123795574, + 5171.284891356941 + ] + }, + "raw_value": "STS DRUM", + "clean_value": "STS DRUM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3631.129762144934, + "min_y": 5243.809220674249, + "max_x": 3653.258492791038, + "max_y": 5243.809220674249, + "center": [ + 3642.1941274679857, + 5243.809220674249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3631.129762144934, + 5243.809220674249 + ], + [ + 3653.258492791038, + 5243.809220674249 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3651.297822217151, + "min_y": 5243.792863522346, + "max_x": 3653.258492791038, + "max_y": 5243.792863522346, + "center": [ + 3652.2781575040945, + 5243.792863522346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.258492791038, + 5243.792863522346 + ], + [ + 3651.297822217151, + 5243.792863522346 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55270F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3653.258492791038, + "min_y": 5243.808074298738, + "max_x": 3665.952569145679, + "max_y": 5243.808074298738, + "center": [ + 3659.6055309683584, + 5243.808074298738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.258492791038, + 5243.808074298738 + ], + [ + 3665.952569145679, + 5243.808074298738 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552710", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3731.080026387608, + "min_y": 5228.382658751055, + "max_x": 3731.080026387608, + "max_y": 5361.788109396393, + "center": [ + 3731.080026387608, + 5295.085384073724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3731.080026387608, + 5361.788109396393 + ], + [ + 3731.080026387608, + 5228.382658751055 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552711", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3675.918729182653, + "min_y": 5142.778829348877, + "max_x": 3696.300569759813, + "max_y": 5145.205238941396, + "center": [ + 3686.109649471233, + 5143.992034145136 + ] + }, + "raw_value": "10차 OGDEN PUMP", + "clean_value": "10차 OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552712", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3676.14430066961, + "min_y": 5175.475897091557, + "max_x": 3676.14430066961, + "max_y": 5177.436567665441, + "center": [ + 3676.14430066961, + 5176.456232378499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.14430066961, + 5175.475897091557 + ], + [ + 3676.14430066961, + 5177.436567665441 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552713", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3679.800395312081, + "min_y": 5175.475897091557, + "max_x": 3679.800395312081, + "max_y": 5177.436567665441, + "center": [ + 3679.800395312081, + 5176.456232378499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3679.800395312081, + 5175.475897091557 + ], + [ + 3679.800395312081, + 5177.436567665441 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552714", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3549.482249506545, + "min_y": 5243.454878722883, + "max_x": 3549.482249506545, + "max_y": 5255.989459609168, + "center": [ + 3549.482249506545, + 5249.722169166025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3549.482249506545, + 5255.989459609168 + ], + [ + 3549.482249506545, + 5243.454878722883 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552715", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3544.850257077401, + "min_y": 5238.185804497782, + "max_x": 3548.344286890628, + "max_y": 5239.641650253293, + "center": [ + 3546.5972719840147, + 5238.913727375537 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552716", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3615.180068561172, + "min_y": 5283.498656460873, + "max_x": 3617.8005909210924, + "max_y": 5284.954502216384, + "center": [ + 3616.490329741132, + 5284.226579338629 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552717", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3631.901856054414, + "min_y": 5219.274516517701, + "max_x": 3634.5223784143345, + "max_y": 5220.730362273212, + "center": [ + 3633.212117234374, + 5220.002439395457 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552718", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3631.596444066739, + "min_y": 5241.711191930516, + "max_x": 3634.2169664266594, + "max_y": 5243.1670376860275, + "center": [ + 3632.906705246699, + 5242.439114808272 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552719", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3608.549709797177, + "min_y": 5241.253146837469, + "max_x": 3611.1702321570974, + "max_y": 5242.70899259298, + "center": [ + 3609.859970977137, + 5241.981069715224 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3606.208583798176, + "min_y": 5237.004132917203, + "max_x": 3606.208583798176, + "max_y": 5243.947397289641, + "center": [ + 3606.208583798176, + 5240.4757651034215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3606.208583798176, + 5237.004132917203 + ], + [ + 3606.208583798176, + 5243.947397289641 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3575.458219693534, + "min_y": 5241.907897853584, + "max_x": 3578.0787420534543, + "max_y": 5243.363743609095, + "center": [ + 3576.768480873494, + 5242.635820731339 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3563.858768497043, + "min_y": 5227.355707101573, + "max_x": 3568.522879625542, + "max_y": 5227.355707101573, + "center": [ + 3566.1908240612925, + 5227.355707101573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3563.858768497043, + 5227.355707101573 + ], + [ + 3568.522879625542, + 5227.355707101573 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3564.520310206389, + "min_y": 5263.188095892071, + "max_x": 3564.520310206389, + "max_y": 5267.049189064612, + "center": [ + 3564.520310206389, + 5265.118642478341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.520310206389, + 5267.049189064612 + ], + [ + 3564.520310206389, + 5263.188095892071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3564.520310206389, + "min_y": 5263.208499989779, + "max_x": 3581.51439317084, + "max_y": 5263.208499989779, + "center": [ + 3573.0173516886143, + 5263.208499989779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.520310206389, + 5263.208499989779 + ], + [ + 3581.51439317084, + 5263.208499989779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55271F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3564.520310206389, + "min_y": 5267.049189064612, + "max_x": 3581.493989073133, + "max_y": 5267.049211149985, + "center": [ + 3573.007149639761, + 5267.049200107298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.520310206389, + 5267.049189064612 + ], + [ + 3581.493989073133, + 5267.049211149985 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552720", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3567.1590268557, + "min_y": 5264.286239748341, + "max_x": 3573.2027480564743, + "max_y": 5265.965051193001, + "center": [ + 3570.1808874560875, + 5265.125645470671 + ] + }, + "raw_value": "E-9215", + "clean_value": "E-9215", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552721", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3598.097147053523, + "min_y": 5264.148063132947, + "max_x": 3604.140868254297, + "max_y": 5265.826874577607, + "center": [ + 3601.1190076539096, + 5264.987468855277 + ] + }, + "raw_value": "E-9203", + "clean_value": "E-9203", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552722", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3523.238417522377, + "min_y": 5285.990934832039, + "max_x": 3537.32125535485, + "max_y": 5285.990934832039, + "center": [ + 3530.2798364386135, + 5285.990934832039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.238417522377, + 5285.990934832039 + ], + [ + 3537.32125535485, + 5285.990934832039 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552723", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3545.394243512975, + "min_y": 5285.905650336813, + "max_x": 3548.886031107069, + "max_y": 5289.397437930907, + "center": [ + 3547.140137310022, + 5287.65154413386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.140137310022, + 5287.65154413386 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552724", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3545.43429494886, + "min_y": 5288.023359934252, + "max_x": 3548.845979671192, + "max_y": 5288.023359934252, + "center": [ + 3547.140137310026, + 5288.023359934252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3545.43429494886, + 5288.023359934252 + ], + [ + 3548.845979671192, + 5288.023359934252 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552725", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3545.321548395949, + "min_y": 5284.856720022311, + "max_x": 3545.321548395949, + "max_y": 5287.125149641766, + "center": [ + 3545.321548395949, + 5285.990934832038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3545.321548395949, + 5287.125149641766 + ], + [ + 3545.321548395949, + 5284.856720022311 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552726", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3547.140137310022, + "min_y": 5285.990934832038, + "max_x": 3547.140137310025, + "max_y": 5288.023359934252, + "center": [ + 3547.1401373100234, + 5287.007147383145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.140137310025, + 5285.990934832038 + ], + [ + 3547.140137310022, + 5288.023359934252 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552727", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3548.958726224104, + "min_y": 5284.856720022311, + "max_x": 3548.958726224104, + "max_y": 5287.125149641766, + "center": [ + 3548.958726224104, + 5285.990934832038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3548.958726224104, + 5287.125149641766 + ], + [ + 3548.958726224104, + 5284.856720022311 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552728", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3545.321548395949, + "min_y": 5284.856720022311, + "max_x": 3548.958726224104, + "max_y": 5287.125149641766, + "center": [ + 3547.140137310026, + 5285.990934832038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3545.321548395949, + 5284.856720022311 + ], + [ + 3548.958726224104, + 5287.125149641766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552729", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3545.321548395949, + "min_y": 5284.856720022311, + "max_x": 3548.958726224104, + "max_y": 5287.125149641766, + "center": [ + 3547.140137310026, + 5285.990934832038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3545.321548395949, + 5287.125149641766 + ], + [ + 3548.958726224104, + 5284.856720022311 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.574960829021, + "min_y": 5284.856720022312, + "max_x": 3544.574960829021, + "max_y": 5287.125149641766, + "center": [ + 3544.574960829021, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3544.574960829021, + 5284.856720022312 + ], + [ + 3544.574960829021, + 5287.125149641766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3549.705313791032, + "min_y": 5284.856720022312, + "max_x": 3549.705313791032, + "max_y": 5287.125149641766, + "center": [ + 3549.705313791032, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3549.705313791032, + 5284.856720022312 + ], + [ + 3549.705313791032, + 5287.125149641766 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3547.140137310031, + "min_y": 5285.990934832038, + "max_x": 3551.80424843852, + "max_y": 5290.859776547836, + "center": [ + 3549.4721928742756, + 5288.425355689937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.140137310031, + 5285.990934832038 + ], + [ + 3551.80424843852, + 5290.859776547836 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3547.140137310022, + "min_y": 5289.397437930908, + "max_x": 3547.140137310022, + "max_y": 5290.859776547836, + "center": [ + 3547.140137310022, + 5290.128607239372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.140137310022, + 5289.397437930908 + ], + [ + 3547.140137310022, + 5290.859776547836 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3539.886108471761, + "min_y": 5285.990934832037, + "max_x": 3541.704697385839, + "max_y": 5287.125149641767, + "center": [ + 3540.7954029288003, + 5286.558042236902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3539.886108471761, + 5285.990934832037 + ], + [ + 3541.704697385839, + 5287.125149641767 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55272F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3539.886108471761, + "min_y": 5284.856720022312, + "max_x": 3541.704697385839, + "max_y": 5285.990934832037, + "center": [ + 3540.7954029288003, + 5285.423827427175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3539.886108471761, + 5285.990934832037 + ], + [ + 3541.704697385839, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552730", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3539.516547626131, + "min_y": 5285.990934832037, + "max_x": 3540.25566931739, + "max_y": 5285.990934832037, + "center": [ + 3539.8861084717605, + 5285.990934832037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3539.516547626131, + 5285.990934832037 + ], + [ + 3540.25566931739, + 5285.990934832037 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552731", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.067519557688, + "min_y": 5285.990934832037, + "max_x": 3539.886108471761, + "max_y": 5287.125149641767, + "center": [ + 3538.9768140147244, + 5286.558042236902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3539.886108471761, + 5285.990934832037 + ], + [ + 3538.067519557688, + 5287.125149641767 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552732", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.067519557688, + "min_y": 5284.856720022312, + "max_x": 3538.067519557688, + "max_y": 5287.125149641767, + "center": [ + 3538.067519557688, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.067519557688, + 5287.125149641767 + ], + [ + 3538.067519557688, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552733", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.067519557688, + "min_y": 5284.856720022312, + "max_x": 3539.886108471761, + "max_y": 5285.990934832037, + "center": [ + 3538.9768140147244, + 5285.423827427175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3539.886108471761, + 5285.990934832037 + ], + [ + 3538.067519557688, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552734", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3541.704697385839, + "min_y": 5284.856720022312, + "max_x": 3541.704697385839, + "max_y": 5287.125149641767, + "center": [ + 3541.704697385839, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3541.704697385839, + 5287.125149641767 + ], + [ + 3541.704697385839, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552735", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3542.451284952767, + "min_y": 5284.856720022312, + "max_x": 3542.451284952767, + "max_y": 5287.125149641767, + "center": [ + 3542.451284952767, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3542.451284952767, + 5287.125149641767 + ], + [ + 3542.451284952767, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552736", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3537.320931990758, + "min_y": 5284.856720022312, + "max_x": 3537.320931990758, + "max_y": 5287.125149641767, + "center": [ + 3537.320931990758, + 5285.99093483204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3537.320931990758, + 5287.125149641767 + ], + [ + 3537.320931990758, + 5284.856720022312 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552737", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3562.608103690507, + "min_y": 5285.992081207551, + "max_x": 3564.568774264393, + "max_y": 5285.992081207551, + "center": [ + 3563.58843897745, + 5285.992081207551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.568774264393, + 5285.992081207551 + ], + [ + 3562.608103690507, + 5285.992081207551 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552738", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3593.497759830326, + "min_y": 5265.118653521028, + "max_x": 3595.45843040421, + "max_y": 5265.118653521028, + "center": [ + 3594.478095117268, + 5265.118653521028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.45843040421, + 5265.118653521028 + ], + [ + 3593.497759830326, + 5265.118653521028 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "552739", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3549.705313791032, + "min_y": 5285.990934832039, + "max_x": 3564.568774264393, + "max_y": 5285.992083968221, + "center": [ + 3557.1370440277124, + 5285.99150940013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3549.705313791032, + 5285.990934832039 + ], + [ + 3564.568774264393, + 5285.992083968221 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3595.45843040421, + "min_y": 5263.049919276676, + "max_x": 3595.45843040421, + "max_y": 5266.911012449217, + "center": [ + 3595.45843040421, + 5264.980465862946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.45843040421, + 5266.911012449217 + ], + [ + 3595.45843040421, + 5263.049919276676 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3595.45843040421, + "min_y": 5263.070323374384, + "max_x": 3612.452513368663, + "max_y": 5263.070323374384, + "center": [ + 3603.9554718864365, + 5263.070323374384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.45843040421, + 5263.070323374384 + ], + [ + 3612.452513368663, + 5263.070323374384 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3595.45843040421, + "min_y": 5266.911012449217, + "max_x": 3612.432109270955, + "max_y": 5266.91103453459, + "center": [ + 3603.9452698375826, + 5266.9110234919035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.45843040421, + 5266.911012449217 + ], + [ + 3612.432109270955, + 5266.91103453459 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.452513368663, + "min_y": 5263.070323374384, + "max_x": 3614.362666899909, + "max_y": 5264.980476905635, + "center": [ + 3613.407590134286, + 5264.02540014001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3612.452513368663, + 5263.070323374384 + ], + [ + 3614.362666899909, + 5264.980476905635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3612.432109270955, + "min_y": 5264.980476905635, + "max_x": 3614.362666899909, + "max_y": 5266.91103453459, + "center": [ + 3613.397388085432, + 5265.945755720113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.362666899909, + 5264.980476905635 + ], + [ + 3612.432109270955, + 5266.91103453459 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55273F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.493989073133, + "min_y": 5265.118653521028, + "max_x": 3583.424546702089, + "max_y": 5267.049211149985, + "center": [ + 3582.459267887611, + 5266.083932335507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.493989073133, + 5267.049211149985 + ], + [ + 3583.424546702089, + 5265.118653521028 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552740", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.51439317084, + "min_y": 5263.208499989779, + "max_x": 3583.424546702089, + "max_y": 5265.118653521028, + "center": [ + 3582.4694699364645, + 5264.1635767554035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.51439317084, + 5263.208499989779 + ], + [ + 3583.424546702089, + 5265.118653521028 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552741", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3583.424546702089, + "min_y": 5265.118653521028, + "max_x": 3595.45843040421, + "max_y": 5265.118653521028, + "center": [ + 3589.4414885531496, + 5265.118653521028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3583.424546702089, + 5265.118653521028 + ], + [ + 3595.45843040421, + 5265.118653521028 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552742", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3542.833834287935, + "min_y": 5282.458045871479, + "max_x": 3553.3327219478733, + "max_y": 5283.6245889448055, + "center": [ + 3548.0832781179042, + 5283.041317408142 + ] + }, + "raw_value": "0.65 -> 0.3 MPa", + "clean_value": "0.65 -> 0.3 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552743", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3555.240439072866, + "min_y": 5283.660636325314, + "max_x": 3557.8609614327866, + "max_y": 5285.116482080825, + "center": [ + 3556.5507002528266, + 5284.388559203069 + ] + }, + "raw_value": "80A", + "clean_value": "80A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552744", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3586.977438096959, + "min_y": 5262.541877839768, + "max_x": 3589.5979604568793, + "max_y": 5263.997723595279, + "center": [ + 3588.287699276919, + 5263.269800717524 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552745", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3615.134760809389, + "min_y": 5262.711506919512, + "max_x": 3617.755283169309, + "max_y": 5264.167352675024, + "center": [ + 3616.445021989349, + 5263.4394297972685 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552746", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3547.140137310022, + "min_y": 5290.859776547836, + "max_x": 3551.80424843852, + "max_y": 5290.859776547836, + "center": [ + 3549.472192874271, + 5290.859776547836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.140137310022, + 5290.859776547836 + ], + [ + 3551.80424843852, + 5290.859776547836 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552747", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3771.3916131596275, + "min_y": 5287.71237550114, + "max_x": 3776.185210484387, + "max_y": 5292.505972825898, + "center": [ + 3773.788411822007, + 5290.109174163519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3773.788411822007, + 5290.109174163519 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552748", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3771.3916131596275, + "min_y": 5285.31557683876, + "max_x": 3776.185210484387, + "max_y": 5290.109174163518, + "center": [ + 3773.788411822007, + 5287.712375501139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3773.788411822007, + 5287.712375501139 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552749", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3773.788411822007, + "min_y": 5285.315576838759, + "max_x": 3777.209085641135, + "max_y": 5292.286813688666, + "center": [ + 3775.498748731571, + 5288.8011952637125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3773.788411822007, + 5285.315576838759 + ], + [ + 3775.715910507276, + 5285.315576838759 + ], + [ + 3777.209085641135, + 5286.808751972617 + ], + [ + 3777.209085641135, + 5292.286813688666 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274A", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3775.763019230348, + "min_y": 5288.894186747415, + "max_x": 3776.666470827378, + "max_y": 5292.286813688666, + "center": [ + 3776.214745028863, + 5290.590500218041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3775.763019230348, + 5292.286813688666 + ], + [ + 3776.666470827378, + 5288.894186747415 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274B", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3775.61235167964, + "min_y": 5287.584859806019, + "max_x": 3776.666470827378, + "max_y": 5288.894186747415, + "center": [ + 3776.139411253509, + 5288.239523276718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3776.666470827378, + 5288.894186747415 + ], + [ + 3775.61235167964, + 5287.584859806019 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274C", + "entity_type": "CIRCLE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3773.7901847759795, + "min_y": 5285.5926658736735, + "max_x": 3776.029947476766, + "max_y": 5287.83242857446, + "center": [ + 3774.910066126373, + 5286.712547224067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.910066126373, + 5286.712547224067 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274D", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3770.963804513602, + "min_y": 5285.932392309866, + "max_x": 3772.183325012278, + "max_y": 5287.765529209865, + "center": [ + 3771.57356476294, + 5286.848960759866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3771.39220262596, + 5287.765529209865 + ], + [ + 3770.963804513602, + 5287.765529209865 + ], + [ + 3770.963804513602, + 5285.932392309866 + ], + [ + 3772.183325012278, + 5285.932392309866 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274E", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3776.924862831346, + "min_y": 5285.932392309866, + "max_x": 3778.053406259387, + "max_y": 5287.765529209865, + "center": [ + 3777.4891345453666, + 5286.848960759866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3776.924862831346, + 5285.932392309866 + ], + [ + 3778.053406259387, + 5285.932392309866 + ], + [ + 3778.053406259387, + 5287.765529209865 + ], + [ + 3777.209085641135, + 5287.765529209865 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55274F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3774.789675986204, + "min_y": 5292.286813688666, + "max_x": 3777.209085641135, + "max_y": 5292.286813688666, + "center": [ + 3775.9993808136696, + 5292.286813688666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.789675986204, + 5292.286813688666 + ], + [ + 3777.209085641135, + 5292.286813688666 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552750", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3761.769106326312, + "min_y": 5286.712547224067, + "max_x": 3770.963804513602, + "max_y": 5286.712547224067, + "center": [ + 3766.3664554199568, + 5286.712547224067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3770.963804513602, + 5286.712547224067 + ], + [ + 3761.769106326312, + 5286.712547224067 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552751", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3761.769106326312, + "min_y": 5286.712547224067, + "max_x": 3761.769106326312, + "max_y": 5288.399817182634, + "center": [ + 3761.769106326312, + 5287.5561822033505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3761.769106326312, + 5286.712547224067 + ], + [ + 3761.769106326312, + 5288.399817182634 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552752", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3774.789675986204, + "min_y": 5292.286813688666, + "max_x": 3774.789675986204, + "max_y": 5357.352402571435, + "center": [ + 3774.789675986204, + 5324.81960813005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.789675986204, + 5357.352402571435 + ], + [ + 3774.789675986204, + 5292.286813688666 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552753", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3640.587964612417, + "min_y": 5230.739900099962, + "max_x": 3659.833661517768, + "max_y": 5230.739900099962, + "center": [ + 3650.2108130650927, + 5230.739900099962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3659.833661517768, + 5230.739900099962 + ], + [ + 3640.587964612417, + 5230.739900099962 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552754", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3640.587964612417, + "min_y": 5222.349848949251, + "max_x": 3640.587964612417, + "max_y": 5230.739900099962, + "center": [ + 3640.587964612417, + 5226.544874524607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3640.587964612417, + 5230.739900099962 + ], + [ + 3640.587964612417, + 5222.349848949251 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552755", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3726.961319992418, + "min_y": 5338.814919074787, + "max_x": 3729.5818423523383, + "max_y": 5340.2707648302985, + "center": [ + 3728.2715811723783, + 5339.542841952543 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552756", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3567.269978392051, + "min_y": 5284.989871391242, + "max_x": 3573.3136995928253, + "max_y": 5286.668682835902, + "center": [ + 3570.291838992438, + 5285.829277113571 + ] + }, + "raw_value": "E-9115", + "clean_value": "E-9115", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552757", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3564.63126174274, + "min_y": 5283.892873910481, + "max_x": 3564.63126174274, + "max_y": 5287.753967083022, + "center": [ + 3564.63126174274, + 5285.823420496752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.63126174274, + 5287.753967083022 + ], + [ + 3564.63126174274, + 5283.892873910481 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552758", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3564.63126174274, + "min_y": 5283.913278008188, + "max_x": 3581.625344707191, + "max_y": 5283.913278008188, + "center": [ + 3573.1283032249657, + 5283.913278008188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.63126174274, + 5283.913278008188 + ], + [ + 3581.625344707191, + 5283.913278008188 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552759", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3564.63126174274, + "min_y": 5287.753967083022, + "max_x": 3581.604940609484, + "max_y": 5287.753989168396, + "center": [ + 3573.118101176112, + 5287.753978125709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.63126174274, + 5287.753967083022 + ], + [ + 3581.604940609484, + 5287.753989168396 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.604940609484, + "min_y": 5285.823431539438, + "max_x": 3583.53549823844, + "max_y": 5287.753989168396, + "center": [ + 3582.570219423962, + 5286.788710353918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.604940609484, + 5287.753989168396 + ], + [ + 3583.53549823844, + 5285.823431539438 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3581.625344707191, + "min_y": 5283.913278008188, + "max_x": 3583.53549823844, + "max_y": 5285.823431539438, + "center": [ + 3582.5804214728155, + 5284.868354773813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3581.625344707191, + 5283.913278008188 + ], + [ + 3583.53549823844, + 5285.823431539438 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3532.681668248339, + "min_y": 5321.995318469082, + "max_x": 3541.7472500495005, + "max_y": 5323.674129913742, + "center": [ + 3537.2144591489196, + 5322.8347241914125 + ] + }, + "raw_value": "#5,6Plant", + "clean_value": "#5,6Plant", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3530.042951599027, + "min_y": 5320.898320988322, + "max_x": 3530.042951599027, + "max_y": 5324.759414160862, + "center": [ + 3530.042951599027, + 5322.828867574592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.042951599027, + 5324.759414160862 + ], + [ + 3530.042951599027, + 5320.898320988322 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3530.042951599027, + "min_y": 5320.91872508603, + "max_x": 3547.037034563478, + "max_y": 5320.91872508603, + "center": [ + 3538.5399930812528, + 5320.91872508603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.042951599027, + 5320.91872508603 + ], + [ + 3547.037034563478, + 5320.91872508603 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55275F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3530.042951599027, + "min_y": 5324.759414160862, + "max_x": 3547.01663046577, + "max_y": 5324.759436246235, + "center": [ + 3538.529791032399, + 5324.759425203549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.042951599027, + 5324.759414160862 + ], + [ + 3547.01663046577, + 5324.759436246235 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552760", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3547.01663046577, + "min_y": 5322.828878617279, + "max_x": 3548.947188094727, + "max_y": 5324.759436246235, + "center": [ + 3547.9819092802486, + 5323.794157431757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.01663046577, + 5324.759436246235 + ], + [ + 3548.947188094727, + 5322.828878617279 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552761", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3547.037034563478, + "min_y": 5320.91872508603, + "max_x": 3548.947188094727, + "max_y": 5322.828878617279, + "center": [ + 3547.9921113291025, + 5321.873801851654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.037034563478, + 5320.91872508603 + ], + [ + 3548.947188094727, + 5322.828878617279 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552762", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3810.040450042448, + "min_y": 5356.549860201224, + "max_x": 3816.084171243222, + "max_y": 5358.228671645884, + "center": [ + 3813.0623106428347, + 5357.3892659235535 + ] + }, + "raw_value": "T-2704", + "clean_value": "T-2704", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552763", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3807.401733393136, + "min_y": 5355.452862720464, + "max_x": 3807.401733393136, + "max_y": 5359.313955893004, + "center": [ + 3807.401733393136, + 5357.383409306734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3807.401733393136, + 5359.313955893004 + ], + [ + 3807.401733393136, + 5355.452862720464 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552764", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3807.401733393136, + "min_y": 5355.473266818171, + "max_x": 3824.395816357588, + "max_y": 5355.473266818171, + "center": [ + 3815.898774875362, + 5355.473266818171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3807.401733393136, + 5355.473266818171 + ], + [ + 3824.395816357588, + 5355.473266818171 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552765", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3807.401733393136, + "min_y": 5359.313955893004, + "max_x": 3824.375412259879, + "max_y": 5359.313977978377, + "center": [ + 3815.8885728265077, + 5359.313966935691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3807.401733393136, + 5359.313955893004 + ], + [ + 3824.375412259879, + 5359.313977978377 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552766", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3824.375412259879, + "min_y": 5357.383420349421, + "max_x": 3826.305969888836, + "max_y": 5359.313977978377, + "center": [ + 3825.3406910743574, + 5358.348699163898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3824.375412259879, + 5359.313977978377 + ], + [ + 3826.305969888836, + 5357.383420349421 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552767", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3824.395816357588, + "min_y": 5355.473266818171, + "max_x": 3826.305969888836, + "max_y": 5357.383420349421, + "center": [ + 3825.350893123212, + 5356.428343583796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3824.395816357588, + 5355.473266818171 + ], + [ + 3826.305969888836, + 5357.383420349421 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552768", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3436.238795462617, + "min_y": 5322.096976922404, + "max_x": 3455.377245931735, + "max_y": 5323.775788367064, + "center": [ + 3445.8080206971763, + 5322.936382644733 + ] + }, + "raw_value": "H-2701/ 2702 / 2703", + "clean_value": "H-2701/ 2702 / 2703", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5320.413501543242, + "max_x": 3433.843077774424, + "max_y": 5325.239868008917, + "center": [ + 3433.843077774424, + 5322.82668477608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5325.239868008917 + ], + [ + 3433.843077774424, + 5320.413501543242 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5320.413501543242, + "max_x": 3461.102250285116, + "max_y": 5320.413501543242, + "center": [ + 3447.47266402977, + 5320.413501543242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5320.413501543242 + ], + [ + 3461.102250285116, + 5320.413501543242 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5325.239868008917, + "max_x": 3461.102250285116, + "max_y": 5325.239895615631, + "center": [ + 3447.47266402977, + 5325.239881812275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5325.239868008917 + ], + [ + 3461.102250285116, + 5325.239895615631 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5320.413501543242, + "max_x": 3463.51544732131, + "max_y": 5322.826698579437, + "center": [ + 3462.308848803213, + 5321.62010006134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3461.102250285116, + 5320.413501543242 + ], + [ + 3463.51544732131, + 5322.826698579437 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5322.826698579437, + "max_x": 3463.51544732131, + "max_y": 5325.239895615631, + "center": [ + 3462.308848803213, + 5324.033297097534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3463.51544732131, + 5322.826698579437 + ], + [ + 3461.102250285116, + 5325.239895615631 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 3436.238795462617, + "min_y": 5255.259737952137, + "max_x": 3455.377245931735, + "max_y": 5256.938549396797, + "center": [ + 3445.8080206971763, + 5256.099143674466 + ] + }, + "raw_value": "H-2701/ 2702 / 2703", + "clean_value": "H-2701/ 2702 / 2703", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55276F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5253.576262572975, + "max_x": 3433.843077774424, + "max_y": 5258.40262903865, + "center": [ + 3433.843077774424, + 5255.9894458058125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5258.40262903865 + ], + [ + 3433.843077774424, + 5253.576262572975 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552770", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5253.576262572975, + "max_x": 3461.102250285116, + "max_y": 5253.576262572975, + "center": [ + 3447.47266402977, + 5253.576262572975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5253.576262572975 + ], + [ + 3461.102250285116, + 5253.576262572975 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552771", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3433.843077774424, + "min_y": 5258.40262903865, + "max_x": 3461.102250285116, + "max_y": 5258.402656645364, + "center": [ + 3447.47266402977, + 5258.4026428420075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3433.843077774424, + 5258.40262903865 + ], + [ + 3461.102250285116, + 5258.402656645364 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552772", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5253.576262572975, + "max_x": 3463.51544732131, + "max_y": 5255.989459609168, + "center": [ + 3462.308848803213, + 5254.782861091071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3461.102250285116, + 5253.576262572975 + ], + [ + 3463.51544732131, + 5255.989459609168 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552773", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 3461.102250285116, + "min_y": 5255.989459609168, + "max_x": 3463.51544732131, + "max_y": 5258.402656645364, + "center": [ + 3462.308848803213, + 5257.196058127266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3463.51544732131, + 5255.989459609168 + ], + [ + 3461.102250285116, + 5258.402656645364 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552774", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3430.169819539819, + "min_y": 5334.021830923152, + "max_x": 3442.169819539819, + "max_y": 5339.021830923152, + "center": [ + 3436.169819539819, + 5336.521830923152 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "552775", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3801.243100062374, + "min_y": 5185.158968130861, + "max_x": 3802.9229220879643, + "max_y": 5186.092202589522, + "center": [ + 3802.0830110751695, + 5185.625585360191 + ] + }, + "raw_value": "J.W", + "clean_value": "J.W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552776", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3813.765543183561, + "min_y": 5188.494596913514, + "max_x": 3816.5652465595444, + "max_y": 5189.427831372175, + "center": [ + 3815.165394871553, + 5188.961214142844 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552777", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3819.353313695343, + "min_y": 5188.506753274184, + "max_x": 3822.1530170713263, + "max_y": 5189.439987732845, + "center": [ + 3820.753165383335, + 5188.973370503514 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552778", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5163.787055416332, + "max_x": 4275.78391927551, + "max_y": 5163.787055416332, + "center": [ + 4244.156371899659, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5163.787055416332 + ], + [ + 4212.528824523808, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552779", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5174.471862832472, + "max_x": 4275.78391927551, + "max_y": 5174.471862832472, + "center": [ + 4244.156371899659, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5174.471862832472 + ], + [ + 4212.528824523808, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5153.102248000193, + "max_x": 4275.78391927551, + "max_y": 5153.102248000193, + "center": [ + 4244.156371899659, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5153.102248000193 + ], + [ + 4212.528824523808, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277B", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5153.102248000193, + "max_x": 4275.78391927551, + "max_y": 5153.102248000193, + "center": [ + 4244.156371899659, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5153.102248000193 + ], + [ + 4212.528824523808, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5163.787055416332, + "max_x": 4275.78391927551, + "max_y": 5163.787055416332, + "center": [ + 4244.156371899659, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5163.787055416332 + ], + [ + 4212.528824523808, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5174.471862832472, + "max_x": 4275.78391927551, + "max_y": 5174.471862832472, + "center": [ + 4244.156371899659, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5174.471862832472 + ], + [ + 4212.528824523808, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5142.417440584062, + "max_x": 4275.78391927551, + "max_y": 5142.417440584062, + "center": [ + 4244.156371899659, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5142.417440584062 + ], + [ + 4212.528824523808, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55277F", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5142.417440584062, + "max_x": 4275.78391927551, + "max_y": 5142.417440584062, + "center": [ + 4244.156371899659, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5142.417440584062 + ], + [ + 4212.528824523808, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552780", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5139.215879039879, + "max_x": 4234.920351929782, + "max_y": 5139.215879039879, + "center": [ + 4223.724588226794, + 5139.215879039879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4212.528824523808, + 5139.215879039879 + ], + [ + 4234.920351929782, + 5139.215879039879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552781", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4225.767813974115, + "min_y": 5137.057630582686, + "max_x": 4228.688569465767, + "max_y": 5138.274612037541, + "center": [ + 4227.228191719941, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552782", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4225.767813974115, + "min_y": 5137.057630582686, + "max_x": 4228.688569465767, + "max_y": 5138.274612037541, + "center": [ + 4227.228191719941, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552783", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4227.835462107626, + "min_y": 5139.972711614599, + "max_x": 4228.8370968313175, + "max_y": 5141.6421028207515, + "center": [ + 4228.336279469471, + 5140.807407217675 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552784", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.976461537485, + "min_y": 5140.026275593804, + "max_x": 4219.087783647876, + "max_y": 5141.243257048659, + "center": [ + 4216.53212259268, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552785", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.976461537485, + "min_y": 5140.026275593804, + "max_x": 4219.087783647876, + "max_y": 5141.243257048659, + "center": [ + 4216.53212259268, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552786", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4214.502240001269, + "min_y": 5137.083634048247, + "max_x": 4218.153184365833, + "max_y": 5138.300615503103, + "center": [ + 4216.327712183551, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552787", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4214.502240001269, + "min_y": 5137.083634048247, + "max_x": 4218.153184365833, + "max_y": 5138.300615503103, + "center": [ + 4216.327712183551, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552788", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4221.415583234326, + "min_y": 5136.02078529679, + "max_x": 4221.415583234326, + "max_y": 5142.417440584062, + "center": [ + 4221.415583234326, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4221.415583234326, + 5142.417440584062 + ], + [ + 4221.415583234326, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552789", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4236.368202957679, + "min_y": 5140.388472455367, + "max_x": 4241.47952506807, + "max_y": 5141.605453910222, + "center": [ + 4238.923864012875, + 5140.996963182795 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55278A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4234.920351929782, + "min_y": 5136.02078529679, + "max_x": 4234.920351929782, + "max_y": 5142.417440584062, + "center": [ + 4234.920351929782, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4234.920351929782, + 5142.417440584062 + ], + [ + 4234.920351929782, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55278B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5150.871489282998, + "max_x": 4218.718012155204, + "max_y": 5152.088470737853, + "center": [ + 4216.162351100009, + 5151.479980010425 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55278C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5172.241104115277, + "max_x": 4218.718012155204, + "max_y": 5173.458085570132, + "center": [ + 4216.162351100009, + 5172.849594842704 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55278D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5182.232706727603, + "max_x": 4222.368956519768, + "max_y": 5183.449688182458, + "center": [ + 4217.98782328229, + 5182.841197455031 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55278E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4269.762396452013, + "min_y": 5137.417830334262, + "max_x": 4274.731817116626, + "max_y": 5137.417830334262, + "center": [ + 4272.24710678432, + 5137.417830334262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4269.762396452013, + 5137.417830334262 + ], + [ + 4274.731817116626, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55278F", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4269.762396452013, + "min_y": 5137.417830334262, + "max_x": 4272.22016086977, + "max_y": 5141.725385866432, + "center": [ + 4270.991278660891, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4269.762396452013, + 5137.417830334262 + ], + [ + 4272.22016086977, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552790", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4269.762396452013, + "min_y": 5137.417830334262, + "max_x": 4272.22016086977, + "max_y": 5141.725385866432, + "center": [ + 4270.991278660891, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4269.762396452013, + 5137.417830334262 + ], + [ + 4272.22016086977, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552791", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4269.031534927788, + "min_y": 5136.02078529679, + "max_x": 4269.031534927788, + "max_y": 5142.417440584062, + "center": [ + 4269.031534927788, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4269.031534927788, + 5142.417440584062 + ], + [ + 4269.031534927788, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552792", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4272.22016086977, + "min_y": 5137.417830334262, + "max_x": 4274.731817116626, + "max_y": 5141.725385866432, + "center": [ + 4273.4759889931975, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4272.22016086977, + 5141.725385866432 + ], + [ + 4274.731817116626, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552793", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5184.264113696894, + "max_x": 4275.78391927551, + "max_y": 5184.264113696894, + "center": [ + 4244.156371899659, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5184.264113696894 + ], + [ + 4212.528824523808, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552794", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5184.264113696894, + "max_x": 4275.78391927551, + "max_y": 5184.264113696894, + "center": [ + 4244.156371899659, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.78391927551, + 5184.264113696894 + ], + [ + 4212.528824523808, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552795", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4271.62209113302, + "min_y": 5138.226707916594, + "max_x": 4272.786295330904, + "max_y": 5140.167048246401, + "center": [ + 4272.204193231963, + 5139.196878081497 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552796", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5136.02078529679, + "max_x": 4212.528824523808, + "max_y": 5184.264113696894, + "center": [ + 4212.528824523808, + 5160.142449496841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4212.528824523808, + 5184.264113696894 + ], + [ + 4212.528824523808, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552797", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 4231.462861854308, + "min_y": 5167.793935684509, + "max_x": 4276.930044680281, + "max_y": 5170.406992168761, + "center": [ + 4254.196453267295, + 5169.100463926635 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5527A0", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4225.919286569258, + "min_y": 5170.593864280164, + "max_x": 4226.268946420616, + "max_y": 5170.593864280164, + "center": [ + 4226.094116494936, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4225.919286569258, + 5170.593864280164 + ], + [ + 4226.268946420616, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A1", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4225.969211907078, + "min_y": 5169.413764349588, + "max_x": 4226.268946420616, + "max_y": 5169.413764349588, + "center": [ + 4226.119079163847, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5169.413764349588 + ], + [ + 4225.969211907078, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A2", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.166498679227, + "min_y": 5169.710451466511, + "max_x": 4226.268946420616, + "max_y": 5169.710451466511, + "center": [ + 4226.217722549922, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5169.710451466511 + ], + [ + 4226.166498679227, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A3", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4225.572479802276, + "min_y": 5169.20663721225, + "max_x": 4225.929960035262, + "max_y": 5169.20663721225, + "center": [ + 4225.7512199187695, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4225.929960035262, + 5169.20663721225 + ], + [ + 4225.572479802276, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A4", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4225.572479802276, + "min_y": 5169.20663721225, + "max_x": 4225.919286569258, + "max_y": 5170.593864280164, + "center": [ + 4225.745883185767, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4225.919286569258, + 5170.593864280164 + ], + [ + 4225.572479802276, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A5", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.166498679227, + "min_y": 5169.710451466511, + "max_x": 4226.268946420616, + "max_y": 5170.120242432068, + "center": [ + 4226.217722549922, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5170.120242432068 + ], + [ + 4226.166498679227, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A6", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4225.929960035262, + "min_y": 5169.20663721225, + "max_x": 4225.969211907078, + "max_y": 5169.413764349588, + "center": [ + 4225.94958597117, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4225.969211907078, + 5169.413764349588 + ], + [ + 4225.929960035262, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A7", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.268946420616, + "min_y": 5170.593864280164, + "max_x": 4226.618606271975, + "max_y": 5170.593864280164, + "center": [ + 4226.443776346296, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.618606271975, + 5170.593864280164 + ], + [ + 4226.268946420616, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A8", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.268946420616, + "min_y": 5169.413764349588, + "max_x": 4226.568680934156, + "max_y": 5169.413764349588, + "center": [ + 4226.418813677386, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5169.413764349588 + ], + [ + 4226.568680934156, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527A9", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.268946420616, + "min_y": 5169.710451466511, + "max_x": 4226.371394162006, + "max_y": 5169.710451466511, + "center": [ + 4226.320170291311, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5169.710451466511 + ], + [ + 4226.371394162006, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AA", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.607932805969, + "min_y": 5169.20663721225, + "max_x": 4226.965413038952, + "max_y": 5169.20663721225, + "center": [ + 4226.786672922461, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.607932805969, + 5169.20663721225 + ], + [ + 4226.965413038952, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AB", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.618606271975, + "min_y": 5169.20663721225, + "max_x": 4226.965413038952, + "max_y": 5170.593864280164, + "center": [ + 4226.7920096554635, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.618606271975, + 5170.593864280164 + ], + [ + 4226.965413038952, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AC", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.268946420616, + "min_y": 5169.710451466511, + "max_x": 4226.371394162006, + "max_y": 5170.120242432068, + "center": [ + 4226.320170291311, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.268946420616, + 5170.120242432068 + ], + [ + 4226.371394162006, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AD", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4226.568680934156, + "min_y": 5169.20663721225, + "max_x": 4226.607932805969, + "max_y": 5169.413764349588, + "center": [ + 4226.588306870062, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4226.568680934156, + 5169.413764349588 + ], + [ + 4226.607932805969, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AE", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 4226.419391693141, + "min_y": 5166.720206165759, + "max_x": 4233.344644408908, + "max_y": 5167.829987820085, + "center": [ + 4229.882018051025, + 5167.275096992922 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5527AF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3858.740104389006, + "min_y": 5136.02078529679, + "max_x": 4275.78391927551, + "max_y": 5433.022211779237, + "center": [ + 4067.262011832258, + 5284.5214985380135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3858.740104389006, + 5433.022211779237 + ], + [ + 4275.78391927551, + 5433.022211779237 + ], + [ + 4275.78391927551, + 5136.02078529679 + ], + [ + 3858.740104389006, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4213.606690044813, + "min_y": 5161.556296699135, + "max_x": 4222.368956519768, + "max_y": 5162.77327815399, + "center": [ + 4217.98782328229, + 5162.164787426562 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5527B1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4241.561089184045, + "min_y": 5148.737442947862, + "max_x": 4252.311950147822, + "max_y": 5150.977205648649, + "center": [ + 4246.936519665934, + 5149.857324298256 + ] + }, + "raw_value": "OFF SITE", + "clean_value": "OFF SITE", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5527B2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4226.875663117111, + "min_y": 5144.257917546288, + "max_x": 4256.440530767497, + "max_y": 5146.497680247075, + "center": [ + 4241.658096942304, + 5145.377798896681 + ] + }, + "raw_value": "RAW WATER P&I DIAGRAM ", + "clean_value": "RAW WATER P&I DIAGRAM", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5527B3", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 4216.843044847879, + "min_y": 5177.555024650128, + "max_x": 4262.310227673852, + "max_y": 5180.1680811343795, + "center": [ + 4239.576636260866, + 5178.861552892254 + ] + }, + "raw_value": "72MT/D SOLVENT RECOVERY PLANT", + "clean_value": "72MT/D SOLVENT RECOVERY PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5527B4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4213.026799443471, + "min_y": 5185.029137017409, + "max_x": 4215.204309272896, + "max_y": 5185.93643277967, + "center": [ + 4214.1155543581835, + 5185.48278489854 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4216.067320360982, + "min_y": 5184.264113696894, + "max_x": 4216.067320361099, + "max_y": 5207.629923616948, + "center": [ + 4216.06732036104, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320360982, + 5184.264113696894 + ], + [ + 4216.067320361099, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.52882452386, + "min_y": 5187.215768965883, + "max_x": 4275.783919275514, + "max_y": 5187.215768965883, + "center": [ + 4244.156371899687, + 5187.215768965883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5187.215768965883 + ], + [ + 4212.52882452386, + 5187.215768965883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.664961252636, + "min_y": 5187.215768965925, + "max_x": 4216.067320361065, + "max_y": 5190.618128074395, + "center": [ + 4214.366140806851, + 5188.91694852016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361065, + 5188.916948520139 + ], + [ + 4214.366140806808, + 5190.618128074395 + ], + [ + 4212.664961252636, + 5188.916948520139 + ], + [ + 4214.366140806808, + 5187.215768965925 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.664961252636, + "min_y": 5190.618128074395, + "max_x": 4216.067320361065, + "max_y": 5194.020487182864, + "center": [ + 4214.366140806851, + 5192.31930762863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361065, + 5192.31930762865 + ], + [ + 4214.366140806808, + 5194.020487182864 + ], + [ + 4212.664961252636, + 5192.31930762865 + ], + [ + 4214.366140806808, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527B9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.664961252636, + "min_y": 5194.020487182864, + "max_x": 4216.067320361065, + "max_y": 5197.422846291334, + "center": [ + 4214.366140806851, + 5195.721666737099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361065, + 5195.72166673712 + ], + [ + 4214.366140806808, + 5197.422846291334 + ], + [ + 4212.664961252636, + 5195.72166673712 + ], + [ + 4214.366140806808, + 5194.020487182864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.664961252636, + "min_y": 5197.422846291334, + "max_x": 4216.067320361065, + "max_y": 5200.825205399844, + "center": [ + 4214.366140806851, + 5199.124025845589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361065, + 5199.124025845589 + ], + [ + 4214.366140806808, + 5200.825205399844 + ], + [ + 4212.664961252636, + 5199.124025845589 + ], + [ + 4214.366140806808, + 5197.422846291334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4220.122972871427, + "min_y": 5185.029137017409, + "max_x": 4222.755535572231, + "max_y": 5186.126038142744, + "center": [ + 4221.439254221828, + 5185.577587580076 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4265.335146945266, + "min_y": 5184.264113696934, + "max_x": 4265.335146945381, + "max_y": 5207.629923616948, + "center": [ + 4265.335146945324, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4265.335146945266, + 5184.264113696934 + ], + [ + 4265.335146945381, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4260.302492743913, + "min_y": 5184.264113696894, + "max_x": 4260.302492743959, + "max_y": 5207.629923616948, + "center": [ + 4260.302492743936, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4260.302492743913, + 5184.264113696894 + ], + [ + 4260.302492743959, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4260.98031511344, + "min_y": 5185.029137017409, + "max_x": 4263.612877814244, + "max_y": 5186.126038142744, + "center": [ + 4262.296596463842, + 5185.577587580076 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4254.631894229786, + "min_y": 5184.264113696894, + "max_x": 4254.631894229829, + "max_y": 5207.629923616948, + "center": [ + 4254.631894229808, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4254.631894229786, + 5184.264113696894 + ], + [ + 4254.631894229829, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4255.633801606001, + "min_y": 5185.029137017409, + "max_x": 4258.2663643068045, + "max_y": 5186.126038142744, + "center": [ + 4256.950082956402, + 5185.577587580076 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4248.961295715656, + "min_y": 5184.264113696894, + "max_x": 4248.961295715772, + "max_y": 5207.629923616948, + "center": [ + 4248.961295715714, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4248.961295715656, + 5184.264113696894 + ], + [ + 4248.961295715772, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4249.916193043697, + "min_y": 5185.029137017409, + "max_x": 4252.5487557445, + "max_y": 5186.126038142744, + "center": [ + 4251.232474394099, + 5185.577587580076 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4233.772862679162, + "min_y": 5185.029137017409, + "max_x": 4241.012410106371, + "max_y": 5186.126038142744, + "center": [ + 4237.392636392767, + 5185.577587580076 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4227.657368950549, + "min_y": 5184.264113696934, + "max_x": 4227.657368950595, + "max_y": 5207.629923616948, + "center": [ + 4227.657368950572, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4227.657368950595, + 5207.629923616948 + ], + [ + 4227.657368950549, + 5184.264113696934 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4268.031437183515, + "min_y": 5184.976896931174, + "max_x": 4271.98028123472, + "max_y": 5186.073798056509, + "center": [ + 4270.005859209117, + 5185.525347493842 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.66496125264, + "min_y": 5200.825205399844, + "max_x": 4216.067320361068, + "max_y": 5204.227564508355, + "center": [ + 4214.366140806854, + 5202.526384954099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361068, + 5202.526384954099 + ], + [ + 4214.366140806811, + 5204.227564508355 + ], + [ + 4212.66496125264, + 5202.526384954099 + ], + [ + 4214.366140806811, + 5200.825205399844 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4212.664961252689, + "min_y": 5204.227564508833, + "max_x": 4216.067320361116, + "max_y": 5207.629923617344, + "center": [ + 4214.366140806902, + 5205.928744063089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4216.067320361116, + 5205.928744063088 + ], + [ + 4214.36614080686, + 5207.629923617344 + ], + [ + 4212.664961252689, + 5205.928744063088 + ], + [ + 4214.36614080686, + 5204.227564508833 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523809, + "min_y": 5184.264113696996, + "max_x": 4212.528824523926, + "max_y": 5207.629923616948, + "center": [ + 4212.528824523868, + 5195.947018656972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4212.528824523809, + 5184.264113696996 + ], + [ + 4212.528824523926, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523849, + "min_y": 5190.618128074395, + "max_x": 4275.783919275514, + "max_y": 5190.618128074395, + "center": [ + 4244.156371899681, + 5190.618128074395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5190.618128074395 + ], + [ + 4212.528824523849, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523842, + "min_y": 5194.020487182905, + "max_x": 4275.783919275514, + "max_y": 5194.020487182905, + "center": [ + 4244.156371899678, + 5194.020487182905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5194.020487182905 + ], + [ + 4212.528824523842, + 5194.020487182905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523833, + "min_y": 5197.422846291416, + "max_x": 4275.783919275514, + "max_y": 5197.422846291416, + "center": [ + 4244.156371899673, + 5197.422846291416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5197.422846291416 + ], + [ + 4212.528824523833, + 5197.422846291416 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523825, + "min_y": 5200.825205399927, + "max_x": 4275.783919275514, + "max_y": 5200.825205399927, + "center": [ + 4244.1563718996695, + 5200.825205399927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5200.825205399927 + ], + [ + 4212.528824523825, + 5200.825205399927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523815, + "min_y": 5204.227564508437, + "max_x": 4275.783919275514, + "max_y": 5204.227564508437, + "center": [ + 4244.156371899664, + 5204.227564508437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5204.227564508437 + ], + [ + 4212.528824523815, + 5204.227564508437 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4212.528824523808, + "min_y": 5207.629923616948, + "max_x": 4275.783919275514, + "max_y": 5207.629923616948, + "center": [ + 4244.15637189966, + 5207.629923616948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4275.783919275514, + 5207.629923616948 + ], + [ + 4212.528824523808, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527CF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4230.999178209397, + "min_y": 5156.389081476591, + "max_x": 4253.854420451158, + "max_y": 5158.629791500293, + "center": [ + 4242.426799330277, + 5157.509436488443 + ] + }, + "raw_value": "HANMO CORPORATION", + "clean_value": "HANMO CORPORATION", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5527D0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4225.447231376147, + "min_y": 5157.792848247815, + "max_x": 4228.842246563574, + "max_y": 5157.792848247815, + "center": [ + 4227.144738969861, + 5157.792848247815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4225.447231376147, + 5157.792848247815 + ], + [ + 4228.842246563574, + 5157.792848247815 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5527D1", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5191.840066486287, + "max_x": 4214.547364091494, + "max_y": 5192.773300944948, + "center": [ + 4214.267393753896, + 5192.306683715617 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D2", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5195.24242559477, + "max_x": 4214.547364091494, + "max_y": 5196.175660053431, + "center": [ + 4214.267393753896, + 5195.709042824101 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D3", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5198.657876168591, + "max_x": 4214.547364091494, + "max_y": 5199.591110627252, + "center": [ + 4214.267393753896, + 5199.1244933979215 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D4", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5202.060235277075, + "max_x": 4214.547364091494, + "max_y": 5202.993469735736, + "center": [ + 4214.267393753896, + 5202.526852506406 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D5", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.9874234163, + "min_y": 5205.475685850937, + "max_x": 4214.547364091497, + "max_y": 5206.408920309598, + "center": [ + 4214.267393753898, + 5205.942303080268 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D6", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4213.987423416297, + "min_y": 5188.450798843156, + "max_x": 4214.547364091494, + "max_y": 5189.384033301817, + "center": [ + 4214.267393753896, + 5188.917416072487 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D7", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4231.721519947185, + "min_y": 5188.452201500158, + "max_x": 4240.680570750332, + "max_y": 5189.385435958819, + "center": [ + 4236.201045348758, + 5188.918818729488 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D8", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4250.077405040729, + "min_y": 5188.452201500131, + "max_x": 4252.877108416713, + "max_y": 5189.385435958792, + "center": [ + 4251.477256728721, + 5188.918818729462 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527D9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4245.047096098615, + "min_y": 5137.540953461114, + "max_x": 4261.345954868993, + "max_y": 5139.3519377689345, + "center": [ + 4253.196525483804, + 5138.4464456150245 + ] + }, + "raw_value": "SARF-#10-UFD-RW", + "clean_value": "SARF-#10-UFD-RW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "5527DA", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4243.114534663169, + "min_y": 5185.158968130861, + "max_x": 4244.79435668876, + "max_y": 5186.092202589522, + "center": [ + 4243.954445675965, + 5185.625585360191 + ] + }, + "raw_value": "J.W", + "clean_value": "J.W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527DB", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4255.636977784358, + "min_y": 5188.494596913514, + "max_x": 4258.436681160342, + "max_y": 5189.427831372175, + "center": [ + 4257.03682947235, + 5188.961214142844 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527DC", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4261.224748296139, + "min_y": 5188.506753274184, + "max_x": 4264.024451672123, + "max_y": 5189.439987732845, + "center": [ + 4262.624599984131, + 5188.973370503514 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.531236742189, + "min_y": 5220.376309668806, + "max_x": 4089.723217361276, + "max_y": 5220.376309668806, + "center": [ + 4088.6272270517325, + 5220.376309668806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.723217361276, + 5220.376309668806 + ], + [ + 4087.531236742189, + 5220.376309668806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4080.715664683544, + "min_y": 5212.470438650038, + "max_x": 4080.715664683544, + "max_y": 5214.662419269123, + "center": [ + 4080.715664683544, + 5213.566428959581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4080.715664683544, + 5212.470438650038 + ], + [ + 4080.715664683544, + 5214.662419269123 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527DF", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4044.060293548276, + "min_y": 5213.51323663849, + "max_x": 4055.414750132097, + "max_y": 5213.51323663849, + "center": [ + 4049.7375218401867, + 5213.51323663849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.060293548276, + 5213.51323663849 + ], + [ + 4055.414750132097, + 5213.51323663849 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E0", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4079.099012858717, + "min_y": 5213.566428959581, + "max_x": 4085.665525296504, + "max_y": 5213.566428959581, + "center": [ + 4082.3822690776105, + 5213.566428959581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4079.099012858717, + 5213.566428959581 + ], + [ + 4085.665525296504, + 5213.566428959581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E1", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.627227051732, + "min_y": 5213.566428959581, + "max_x": 4088.630070140413, + "max_y": 5217.674855109677, + "center": [ + 4088.6286485960727, + 5215.620642034629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.627227051732, + 5213.566428959581 + ], + [ + 4088.630070140413, + 5217.674855109677 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E2", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.660364132289, + "min_y": 5249.544435224976, + "max_x": 4088.660364132289, + "max_y": 5262.351502344351, + "center": [ + 4088.660364132289, + 5255.947968784663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.660364132289, + 5249.544435224976 + ], + [ + 4088.660364132289, + 5262.351502344351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4088.585181232465, + "min_y": 5231.916660191887, + "max_x": 4089.719396042194, + "max_y": 5233.735249105967, + "center": [ + 4089.1522886373295, + 5232.825954648927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.585181232465, + 5231.916660191887 + ], + [ + 4089.719396042194, + 5233.735249105967 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5230.098071277814, + "max_x": 4088.585181232465, + "max_y": 5231.916660191887, + "center": [ + 4088.018073827603, + 5231.00736573485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.585181232465, + 5231.916660191887 + ], + [ + 4087.450966422741, + 5230.098071277814 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5230.098071277814, + "max_x": 4089.719396042194, + "max_y": 5230.098071277814, + "center": [ + 4088.5851812324677, + 5230.098071277814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.450966422741, + 5230.098071277814 + ], + [ + 4089.719396042194, + 5230.098071277814 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5233.735249105967, + "max_x": 4089.719396042194, + "max_y": 5233.735249105967, + "center": [ + 4088.5851812324677, + 5233.735249105967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.450966422741, + 5233.735249105967 + ], + [ + 4089.719396042194, + 5233.735249105967 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5229.351483710885, + "max_x": 4089.719396042194, + "max_y": 5229.351483710885, + "center": [ + 4088.5851812324677, + 5229.351483710885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.719396042194, + 5229.351483710885 + ], + [ + 4087.450966422741, + 5229.351483710885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527E9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4087.450966422741, + "min_y": 5234.481836672895, + "max_x": 4089.719396042194, + "max_y": 5234.481836672895, + "center": [ + 4088.5851812324677, + 5234.481836672895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.719396042194, + 5234.481836672895 + ], + [ + 4087.450966422741, + 5234.481836672895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527EA", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.660364132289, + "min_y": 5262.351502344351, + "max_x": 4088.660364132289, + "max_y": 5270.002978054171, + "center": [ + 4088.660364132289, + 5266.17724019926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.660364132289, + 5262.351502344351 + ], + [ + 4088.660364132289, + 5270.002978054171 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527EB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5274.391499047981, + "max_x": 4089.794578942015, + "max_y": 5274.391499047981, + "center": [ + 4088.6603641322886, + 5274.391499047981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.794578942015, + 5274.391499047981 + ], + [ + 4087.526149322562, + 5274.391499047981 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527EC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5270.754321219828, + "max_x": 4089.794578942015, + "max_y": 5270.754321219828, + "center": [ + 4088.6603641322886, + 5270.754321219828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.794578942015, + 5270.754321219828 + ], + [ + 4087.526149322562, + 5270.754321219828 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527ED", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5273.151886134753, + "max_x": 4088.299269247378, + "max_y": 5274.391499047981, + "center": [ + 4087.9127092849703, + 5273.771692591366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.526149322562, + 5274.391499047981 + ], + [ + 4088.299269247378, + 5273.151886134753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527EE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4089.021459017202, + "min_y": 5273.151886134753, + "max_x": 4089.794578942015, + "max_y": 5274.391499047981, + "center": [ + 4089.4080189796086, + 5273.771692591366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.794578942015, + 5274.391499047981 + ], + [ + 4089.021459017202, + 5273.151886134753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527EF", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.978013250803, + "min_y": 5271.8905592524225, + "max_x": 4089.342715013775, + "max_y": 5273.255261015394, + "center": [ + 4088.660364132289, + 5272.572910133908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.660364132289, + 5272.572910133908 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5270.754321219828, + "max_x": 4088.299269247378, + "max_y": 5271.993934133062, + "center": [ + 4087.9127092849703, + 5271.374127676445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.299269247378, + 5271.993934133062 + ], + [ + 4087.526149322562, + 5270.754321219828 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4089.021459017202, + "min_y": 5270.754321219828, + "max_x": 4089.794578942015, + "max_y": 5271.993934133062, + "center": [ + 4089.4080189796086, + 5271.374127676445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.021459017202, + 5271.993934133062 + ], + [ + 4089.794578942015, + 5270.754321219828 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5270.007733652898, + "max_x": 4089.794578942015, + "max_y": 5270.007733652898, + "center": [ + 4088.6603641322886, + 5270.007733652898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.794578942015, + 5270.007733652898 + ], + [ + 4087.526149322562, + 5270.007733652898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.526149322562, + "min_y": 5275.138086614909, + "max_x": 4089.794578942015, + "max_y": 5275.138086614909, + "center": [ + 4088.6603641322886, + 5275.138086614909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.794578942015, + 5275.138086614909 + ], + [ + 4087.526149322562, + 5275.138086614909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.48839069416, + "min_y": 5202.459268984192, + "max_x": 4110.680371313246, + "max_y": 5202.459268984192, + "center": [ + 4109.584381003703, + 5202.459268984192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.680371313246, + 5202.459268984192 + ], + [ + 4108.48839069416, + 5202.459268984192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4101.672818635515, + "min_y": 5194.553397965423, + "max_x": 4101.672818635515, + "max_y": 5196.745378584509, + "center": [ + 4101.672818635515, + 5195.6493882749655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4101.672818635515, + 5194.553397965423 + ], + [ + 4101.672818635515, + 5196.745378584509 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F6", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4052.146870223163, + "min_y": 5195.649388274967, + "max_x": 4076.909151961705, + "max_y": 5195.649388274967, + "center": [ + 4064.528011092434, + 5195.649388274967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4052.146870223163, + 5195.649388274967 + ], + [ + 4076.909151961705, + 5195.649388274967 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F7", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4100.056166810688, + "min_y": 5195.649388274967, + "max_x": 4106.622679248475, + "max_y": 5195.649388274967, + "center": [ + 4103.339423029582, + 5195.649388274967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.056166810688, + 5195.649388274967 + ], + [ + 4106.622679248475, + 5195.649388274967 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F8", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.694421017572, + "min_y": 5238.695724368721, + "max_x": 4109.694421017572, + "max_y": 5249.662560555344, + "center": [ + 4109.694421017572, + 5244.179142462032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.694421017572, + 5238.695724368721 + ], + [ + 4109.694421017572, + 5249.662560555344 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527F9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4081.290978251427, + "min_y": 5194.51517346524, + "max_x": 4081.290978251427, + "max_y": 5196.783603084693, + "center": [ + 4081.290978251427, + 5195.649388274966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.290978251427, + 5194.51517346524 + ], + [ + 4081.290978251427, + 5196.783603084693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4077.653800423273, + "min_y": 5194.51517346524, + "max_x": 4077.653800423273, + "max_y": 5196.783603084693, + "center": [ + 4077.653800423273, + 5195.649388274966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4077.653800423273, + 5194.51517346524 + ], + [ + 4077.653800423273, + 5196.783603084693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4080.0513653382, + "min_y": 5196.010483159878, + "max_x": 4081.290978251427, + "max_y": 5196.783603084693, + "center": [ + 4080.6711717948137, + 5196.397043122286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.290978251427, + 5196.783603084693 + ], + [ + 4080.0513653382, + 5196.010483159878 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4080.0513653382, + "min_y": 5194.51517346524, + "max_x": 4081.290978251427, + "max_y": 5195.288293390055, + "center": [ + 4080.6711717948137, + 5194.901733427647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.290978251427, + 5194.51517346524 + ], + [ + 4080.0513653382, + 5195.288293390055 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FD", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4078.790038455867, + "min_y": 5194.967037393483, + "max_x": 4080.154740218839, + "max_y": 5196.331739156455, + "center": [ + 4079.472389337353, + 5195.649388274969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4079.472389337353, + 5195.649388274969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4077.653800423273, + "min_y": 5196.010483159878, + "max_x": 4078.893413336509, + "max_y": 5196.783603084693, + "center": [ + 4078.2736068798913, + 5196.397043122286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.893413336509, + 5196.010483159878 + ], + [ + 4077.653800423273, + 5196.783603084693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5527FF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4077.653800423273, + "min_y": 5194.51517346524, + "max_x": 4078.893413336509, + "max_y": 5195.288293390055, + "center": [ + 4078.2736068798913, + 5194.901733427647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.893413336509, + 5195.288293390055 + ], + [ + 4077.653800423273, + 5194.51517346524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552800", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4076.907212856343, + "min_y": 5194.51517346524, + "max_x": 4076.907212856343, + "max_y": 5196.783603084693, + "center": [ + 4076.907212856343, + 5195.649388274966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4076.907212856343, + 5194.51517346524 + ], + [ + 4076.907212856343, + 5196.783603084693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552801", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4082.037565818356, + "min_y": 5194.51517346524, + "max_x": 4082.037565818356, + "max_y": 5196.783603084693, + "center": [ + 4082.037565818356, + 5195.649388274966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4082.037565818356, + 5194.51517346524 + ], + [ + 4082.037565818356, + 5196.783603084693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552802", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4052.146870223163, + "min_y": 5195.645336887995, + "max_x": 4052.146870223163, + "max_y": 5213.51323663849, + "center": [ + 4052.146870223163, + 5204.579286763243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4052.146870223163, + 5195.645336887995 + ], + [ + 4052.146870223163, + 5213.51323663849 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552803", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4015.524294341521, + "min_y": 5211.409925989242, + "max_x": 4015.524294341521, + "max_y": 5236.992031954011, + "center": [ + 4015.524294341521, + 5224.200978971627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4015.524294341521, + 5211.409925989242 + ], + [ + 4015.524294341521, + 5236.992031954011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552804", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4014.00370497601, + "min_y": 5211.409925989242, + "max_x": 4043.659645682635, + "max_y": 5211.409925989242, + "center": [ + 4028.8316753293225, + 5211.409925989242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4014.00370497601, + 5211.409925989242 + ], + [ + 4043.659645682635, + 5211.409925989242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4014.00370497601, + "min_y": 5209.273710951813, + "max_x": 4043.659645682635, + "max_y": 5209.273710951813, + "center": [ + 4028.8316753293225, + 5209.273710951813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4014.00370497601, + 5209.273710951813 + ], + [ + 4043.659645682635, + 5209.273710951813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4043.659645682635, + "min_y": 5209.273710951813, + "max_x": 4043.659645682635, + "max_y": 5211.409925989242, + "center": [ + 4043.659645682635, + 5210.341818470528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4043.659645682635, + 5209.273710951813 + ], + [ + 4043.659645682635, + 5211.409925989242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552807", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4027.713203536261, + "min_y": 5239.021978278668, + "max_x": 4029.950147122388, + "max_y": 5239.021978278668, + "center": [ + 4028.8316753293248, + 5239.021978278668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4029.950147122388, + 5239.021978278668 + ], + [ + 4027.713203536261, + 5239.021978278668 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552808", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4028.831675329321, + "min_y": 5236.992031954011, + "max_x": 4028.831675329321, + "max_y": 5239.021978278668, + "center": [ + 4028.831675329321, + 5238.007005116339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4028.831675329321, + 5236.992031954011 + ], + [ + 4028.831675329321, + 5239.021978278668 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552809", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4027.713203536261, + "min_y": 5239.021978278668, + "max_x": 4029.950147122388, + "max_y": 5239.021978278668, + "center": [ + 4028.8316753293248, + 5239.021978278668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4029.950147122388, + 5239.021978278668 + ], + [ + 4027.713203536261, + 5239.021978278668 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55280A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4042.139056317125, + "min_y": 5211.409925989242, + "max_x": 4042.139056317125, + "max_y": 5236.992031954011, + "center": [ + 4042.139056317125, + 5224.200978971627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4042.139056317125, + 5236.992031954011 + ], + [ + 4042.139056317125, + 5211.409925989242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55280B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4013.603057110372, + "min_y": 5234.721751323927, + "max_x": 4015.524294341521, + "max_y": 5234.721751323927, + "center": [ + 4014.5636757259463, + 5234.721751323927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4015.524294341521, + 5234.721751323927 + ], + [ + 4013.603057110372, + 5234.721751323927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55280C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4020.786827062221, + "min_y": 5227.326726939434, + "max_x": 4030.4180558569765, + "max_y": 5228.866563796225, + "center": [ + 4025.6024414595986, + 5228.096645367829 + ] + }, + "raw_value": "\\pi-0.37517;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10800}", + "clean_value": "\\pi-0.37517; \\fArial|b1|i1|c238|p34; .3333x; T-10800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552810", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4012.882085451115, + "min_y": 5214.001155834182, + "max_x": 4015.524294341521, + "max_y": 5214.001155834182, + "center": [ + 4014.203189896318, + 5214.001155834182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4012.882085451115, + 5214.001155834182 + ], + [ + 4015.524294341521, + 5214.001155834182 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4006.598175305788, + "min_y": 5214.001155834182, + "max_x": 4007.751732489106, + "max_y": 5214.001155834182, + "center": [ + 4007.1749538974473, + 5214.001155834182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4006.598175305788, + 5214.001155834182 + ], + [ + 4007.751732489106, + 5214.001155834182 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552812", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4008.498320056036, + "min_y": 5212.866941024457, + "max_x": 4008.498320056036, + "max_y": 5215.135370643909, + "center": [ + 4008.498320056036, + 5214.001155834183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4008.498320056036, + 5215.135370643909 + ], + [ + 4008.498320056036, + 5212.866941024457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552813", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4008.498320056036, + "min_y": 5212.866941024457, + "max_x": 4009.737932969263, + "max_y": 5213.64006094927, + "center": [ + 4009.1181265126497, + 5213.253500986864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4008.498320056036, + 5212.866941024457 + ], + [ + 4009.737932969263, + 5213.64006094927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552814", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4008.498320056036, + "min_y": 5214.362250719094, + "max_x": 4009.737932969263, + "max_y": 5215.135370643909, + "center": [ + 4009.1181265126497, + 5214.748810681502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4008.498320056036, + 5215.135370643909 + ], + [ + 4009.737932969263, + 5214.362250719094 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552815", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4009.634558088621, + "min_y": 5213.318804952695, + "max_x": 4010.999259851593, + "max_y": 5214.683506715667, + "center": [ + 4010.316908970107, + 5214.001155834181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4010.316908970107, + 5214.001155834181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552816", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4010.895884970953, + "min_y": 5212.866941024457, + "max_x": 4012.135497884186, + "max_y": 5213.64006094927, + "center": [ + 4011.5156914275694, + 5213.253500986864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4010.895884970953, + 5213.64006094927 + ], + [ + 4012.135497884186, + 5212.866941024457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552817", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4010.895884970953, + "min_y": 5214.362250719094, + "max_x": 4012.135497884186, + "max_y": 5215.135370643909, + "center": [ + 4011.5156914275694, + 5214.748810681502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4010.895884970953, + 5214.362250719094 + ], + [ + 4012.135497884186, + 5215.135370643909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552818", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4007.751732489106, + "min_y": 5212.866941024457, + "max_x": 4007.751732489106, + "max_y": 5215.135370643909, + "center": [ + 4007.751732489106, + 5214.001155834183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4007.751732489106, + 5215.135370643909 + ], + [ + 4007.751732489106, + 5212.866941024457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552819", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4011.626489667905, + "min_y": 5234.721827949429, + "max_x": 4013.587160241788, + "max_y": 5234.721827949429, + "center": [ + 4012.606824954846, + 5234.721827949429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4013.587160241788, + 5234.721827949429 + ], + [ + 4011.626489667905, + 5234.721827949429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55281A", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4028.831675329325, + "min_y": 5239.021978278668, + "max_x": 4028.831675329325, + "max_y": 5240.88844719599, + "center": [ + 4028.831675329325, + 5239.955212737329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4028.831675329325, + 5239.021978278668 + ], + [ + 4028.831675329325, + 5240.88844719599 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55281B", + "entity_type": "ARC", + "layer": "WATER", + "bbox": { + "min_x": 4028.8316753293248, + "min_y": 5240.141859629061, + "max_x": 4030.324850463183, + "max_y": 5241.635034762919, + "center": [ + 4029.578262896254, + 5240.88844719599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4029.578262896254, + 5240.88844719599 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55281C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3999.1322996364993, + "min_y": 5210.268217999537, + "max_x": 4006.598175305789, + "max_y": 5217.734093668827, + "center": [ + 4002.865237471144, + 5214.001155834182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4002.865237471144, + 5214.001155834182 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55281D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4001.880663610794, + "min_y": 5214.65587686702, + "max_x": 4003.8949717981195, + "max_y": 5216.3344670231245, + "center": [ + 4002.8878177044567, + 5215.495171945073 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55281E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4000.310769736091, + "min_y": 5211.669526599305, + "max_x": 4005.3465402044053, + "max_y": 5213.348116755409, + "center": [ + 4002.828654970248, + 5212.5088216773565 + ] + }, + "raw_value": "10800", + "clean_value": "10800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55281F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4015.524294341521, + "min_y": 5236.992031954011, + "max_x": 4042.139056317125, + "max_y": 5236.992031954011, + "center": [ + 4028.831675329323, + 5236.992031954011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4015.524294341521, + 5236.992031954011 + ], + [ + 4042.139056317125, + 5236.992031954011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552820", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3999.1322996364993, + "min_y": 5217.734093668827, + "max_x": 4006.598175305789, + "max_y": 5225.199969338117, + "center": [ + 4002.865237471144, + 5221.467031503472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4002.865237471144, + 5221.467031503472 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552821", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4001.581696275876, + "min_y": 5222.12175253631, + "max_x": 4004.6031585568644, + "max_y": 5223.800342692414, + "center": [ + 4003.09242741637, + 5222.9610476143625 + ] + }, + "raw_value": "LIA", + "clean_value": "LIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552822", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4000.310769736091, + "min_y": 5219.135402268594, + "max_x": 4005.3465402044053, + "max_y": 5220.813992424698, + "center": [ + 4002.828654970248, + 5219.974697346646 + ] + }, + "raw_value": "10800", + "clean_value": "10800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552823", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3999.132299636499, + "min_y": 5217.734093668827, + "max_x": 4006.598175305788, + "max_y": 5225.199969338117, + "center": [ + 4002.8652374711437, + 5221.467031503472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3999.132299636499, + 5225.199969338117 + ], + [ + 4006.598175305788, + 5225.199969338117 + ], + [ + 4006.598175305788, + 5217.734093668827 + ], + [ + 3999.132299636499, + 5217.734093668827 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552824", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3999.132299636499, + "min_y": 5221.467031503472, + "max_x": 4006.598175305788, + "max_y": 5221.467031503472, + "center": [ + 4002.8652374711437, + 5221.467031503472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3999.132299636499, + 5221.467031503472 + ], + [ + 4006.598175305788, + 5221.467031503472 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552825", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 3976.399647217267, + "min_y": 5234.721775132636, + "max_x": 4013.587160241788, + "max_y": 5234.721827949429, + "center": [ + 3994.9934037295275, + 5234.721801541033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3976.399647217267, + 5234.721775132636 + ], + [ + 4013.587160241788, + 5234.721827949429 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552826", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.660364132289, + "min_y": 5269.817378013641, + "max_x": 4088.660364132289, + "max_y": 5270.010060179423, + "center": [ + 4088.660364132289, + 5269.913719096532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.660364132289, + 5269.817378013641 + ], + [ + 4088.660364132289, + 5270.010060179423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552827", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4042.139056317125, + "min_y": 5213.51323663849, + "max_x": 4044.060293548276, + "max_y": 5213.51323663849, + "center": [ + 4043.0996749327005, + 5213.51323663849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4042.139056317125, + 5213.51323663849 + ], + [ + 4044.060293548276, + 5213.51323663849 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552828", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4044.060293548276, + "min_y": 5212.417246328948, + "max_x": 4044.060293548276, + "max_y": 5214.609226948034, + "center": [ + 4044.060293548276, + 5213.513236638491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.060293548276, + 5212.417246328948 + ], + [ + 4044.060293548276, + 5214.609226948034 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552829", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.051265213343, + "min_y": 5275.280013580093, + "max_x": 4088.315633589423, + "max_y": 5405.776459684083, + "center": [ + 4088.183449401383, + 5340.528236632088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.315633589423, + 5275.280013580093 + ], + [ + 4088.051265213343, + 5405.776459684083 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55282A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4081.503087136513, + "min_y": 5206.969460388705, + "max_x": 4091.1343159312682, + "max_y": 5208.509297245496, + "center": [ + 4086.318701533891, + 5207.7393788171 + ] + }, + "raw_value": "\\pi-3.00032;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10800A/B}", + "clean_value": "\\pi-3.00032; \\fArial|b1|i1|c238|p34; .3333x; P-10800A/B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55282E", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.579423546962, + "min_y": 5228.136706226186, + "max_x": 4112.208865525053, + "max_y": 5228.136706226186, + "center": [ + 4110.894144536007, + 5228.136706226186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.579423546962, + 5228.136706226186 + ], + [ + 4112.208865525053, + 5228.136706226186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55282F", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4117.339218487064, + "min_y": 5228.136706226186, + "max_x": 4119.968660465154, + "max_y": 5228.136706226186, + "center": [ + 4118.653939476109, + 5228.136706226186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4117.339218487064, + 5228.136706226186 + ], + [ + 4119.968660465154, + 5228.136706226186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552830", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4103.660977493245, + "min_y": 5192.687686519737, + "max_x": 4109.584381003705, + "max_y": 5198.611090030197, + "center": [ + 4106.622679248475, + 5195.649388274967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4106.622679248475, + 5195.649388274967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552831", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4103.181206820857, + "min_y": 5190.384825605959, + "max_x": 4104.825857639541, + "max_y": 5193.295007381273, + "center": [ + 4104.003532230199, + 5191.839916493616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4104.825857639541, + 5193.295007381273 + ], + [ + 4103.181206820857, + 5190.384825605959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552832", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.419500857409, + "min_y": 5190.384825605959, + "max_x": 4110.064151676096, + "max_y": 5193.295007381273, + "center": [ + 4109.2418262667525, + 5191.839916493616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.419500857409, + 5193.295007381273 + ], + [ + 4110.064151676096, + 5190.384825605959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552833", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4103.181206820857, + "min_y": 5190.384825605959, + "max_x": 4110.064151676096, + "max_y": 5190.384825605959, + "center": [ + 4106.622679248477, + 5190.384825605959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.064151676096, + 5190.384825605959 + ], + [ + 4103.181206820857, + 5190.384825605959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552834", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4105.965084906786, + "min_y": 5194.991793933278, + "max_x": 4107.280273590164, + "max_y": 5196.306982616657, + "center": [ + 4106.622679248475, + 5195.649388274967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4106.622679248475, + 5195.649388274967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552835", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4082.7038235412742, + "min_y": 5210.604727204351, + "max_x": 4088.6272270517334, + "max_y": 5216.528130714811, + "center": [ + 4085.665525296504, + 5213.566428959581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.665525296504, + 5213.566428959581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552836", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4082.22405286889, + "min_y": 5208.301866290575, + "max_x": 4083.86870368757, + "max_y": 5211.212048065888, + "center": [ + 4083.04637827823, + 5209.7569571782315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.86870368757, + 5211.212048065888 + ], + [ + 4082.22405286889, + 5208.301866290575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552837", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.462346905441, + "min_y": 5208.301866290575, + "max_x": 4089.106997724126, + "max_y": 5211.212048065888, + "center": [ + 4088.284672314783, + 5209.7569571782315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.462346905441, + 5211.212048065888 + ], + [ + 4089.106997724126, + 5208.301866290575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552838", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4082.22405286889, + "min_y": 5208.301866290575, + "max_x": 4089.106997724126, + "max_y": 5208.301866290575, + "center": [ + 4085.665525296508, + 5208.301866290575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.106997724126, + 5208.301866290575 + ], + [ + 4082.22405286889, + 5208.301866290575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "552839", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4085.007930954815, + "min_y": 5212.908834617891, + "max_x": 4086.3231196381926, + "max_y": 5214.22402330127, + "center": [ + 4085.665525296504, + 5213.566428959581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.665525296504, + 5213.566428959581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55283A", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.584381003703, + "min_y": 5195.649388274967, + "max_x": 4109.584381003703, + "max_y": 5199.95731522915, + "center": [ + 4109.584381003703, + 5197.803351752058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.584381003703, + 5195.649388274967 + ], + [ + 4109.584381003703, + 5199.95731522915 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55283B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4049.355749306758, + "min_y": 5212.417246328948, + "max_x": 4049.355749306758, + "max_y": 5214.685675948401, + "center": [ + 4049.355749306758, + 5213.551461138674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4049.355749306758, + 5212.417246328948 + ], + [ + 4049.355749306758, + 5214.685675948401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55283C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4045.718571478604, + "min_y": 5212.417246328948, + "max_x": 4045.718571478604, + "max_y": 5214.685675948401, + "center": [ + 4045.718571478604, + 5213.551461138674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4045.718571478604, + 5212.417246328948 + ], + [ + 4045.718571478604, + 5214.685675948401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55283D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4048.116136393531, + "min_y": 5213.912556023586, + "max_x": 4049.355749306758, + "max_y": 5214.685675948401, + "center": [ + 4048.7359428501445, + 5214.299115985994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4049.355749306758, + 5214.685675948401 + ], + [ + 4048.116136393531, + 5213.912556023586 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55283E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4048.116136393531, + "min_y": 5212.417246328948, + "max_x": 4049.355749306758, + "max_y": 5213.190366253762, + "center": [ + 4048.7359428501445, + 5212.803806291355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4049.355749306758, + 5212.417246328948 + ], + [ + 4048.116136393531, + 5213.190366253762 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55283F", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4046.854809511199, + "min_y": 5212.869110257189, + "max_x": 4048.219511274171, + "max_y": 5214.233812020161, + "center": [ + 4047.537160392685, + 5213.551461138675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4047.537160392685, + 5213.551461138675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552840", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4045.718571478604, + "min_y": 5213.912556023586, + "max_x": 4046.958184391839, + "max_y": 5214.685675948401, + "center": [ + 4046.3383779352216, + 5214.299115985994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4046.958184391839, + 5213.912556023586 + ], + [ + 4045.718571478604, + 5214.685675948401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552841", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4045.718571478604, + "min_y": 5212.417246328948, + "max_x": 4046.958184391839, + "max_y": 5213.190366253762, + "center": [ + 4046.3383779352216, + 5212.803806291355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4046.958184391839, + 5213.190366253762 + ], + [ + 4045.718571478604, + 5212.417246328948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552842", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4044.971983911675, + "min_y": 5212.417246328948, + "max_x": 4044.971983911675, + "max_y": 5214.685675948401, + "center": [ + 4044.971983911675, + 5213.551461138674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.971983911675, + 5212.417246328948 + ], + [ + 4044.971983911675, + 5214.685675948401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552843", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4050.102336873687, + "min_y": 5212.417246328948, + "max_x": 4050.102336873687, + "max_y": 5214.685675948401, + "center": [ + 4050.102336873687, + 5213.551461138674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4050.102336873687, + 5212.417246328948 + ], + [ + 4050.102336873687, + 5214.685675948401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552844", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4078.541055493167, + "min_y": 5213.566428959581, + "max_x": 4082.487705036732, + "max_y": 5213.566428959581, + "center": [ + 4080.5143802649495, + 5213.566428959581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.541055493167, + 5213.566428959581 + ], + [ + 4082.487705036732, + 5213.566428959581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552845", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4116.592630920135, + "min_y": 5227.00249141646, + "max_x": 4116.592630920135, + "max_y": 5229.270921035912, + "center": [ + 4116.592630920135, + 5228.136706226185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.592630920135, + 5227.00249141646 + ], + [ + 4116.592630920135, + 5229.270921035912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552846", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.95545309198, + "min_y": 5227.00249141646, + "max_x": 4112.95545309198, + "max_y": 5229.270921035912, + "center": [ + 4112.95545309198, + 5228.136706226185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.95545309198, + 5227.00249141646 + ], + [ + 4112.95545309198, + 5229.270921035912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552847", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4115.353018006907, + "min_y": 5228.4978011111, + "max_x": 4116.592630920135, + "max_y": 5229.270921035912, + "center": [ + 4115.972824463521, + 5228.884361073506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.592630920135, + 5229.270921035912 + ], + [ + 4115.353018006907, + 5228.4978011111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552848", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4115.353018006907, + "min_y": 5227.00249141646, + "max_x": 4116.592630920135, + "max_y": 5227.775611341274, + "center": [ + 4115.972824463521, + 5227.3890513788665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.592630920135, + 5227.00249141646 + ], + [ + 4115.353018006907, + 5227.775611341274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552849", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4114.091691124577, + "min_y": 5227.454355344703, + "max_x": 4115.456392887549, + "max_y": 5228.819057107675, + "center": [ + 4114.774042006063, + 5228.136706226189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4114.774042006063, + 5228.136706226189 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.95545309198, + "min_y": 5228.4978011111, + "max_x": 4114.195066005216, + "max_y": 5229.270921035912, + "center": [ + 4113.575259548598, + 5228.884361073506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4114.195066005216, + 5228.4978011111 + ], + [ + 4112.95545309198, + 5229.270921035912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.95545309198, + "min_y": 5227.00249141646, + "max_x": 4114.195066005216, + "max_y": 5227.775611341274, + "center": [ + 4113.575259548598, + 5227.3890513788665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4114.195066005216, + 5227.775611341274 + ], + [ + 4112.95545309198, + 5227.00249141646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284C", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4116.592630920135, + "min_y": 5227.763412442721, + "max_x": 4117.3392184870645, + "max_y": 5228.510000009651, + "center": [ + 4116.9659247036, + 5228.136706226186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.9659247036, + 5228.136706226186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284D", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4112.20886552505, + "min_y": 5227.763412442721, + "max_x": 4112.9554530919795, + "max_y": 5228.510000009651, + "center": [ + 4112.582159308515, + 5228.136706226186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.582159308515, + 5228.136706226186 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4119.404609554403, + "min_y": 5227.241642269831, + "max_x": 4120.53271137591, + "max_y": 5227.241642269831, + "center": [ + 4119.968660465156, + 5227.241642269831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.404609554403, + 5227.241642269831 + ], + [ + 4120.53271137591, + 5227.241642269831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55284F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4120.53271137591, + "min_y": 5227.241642269831, + "max_x": 4120.53271137591, + "max_y": 5229.031770182541, + "center": [ + 4120.53271137591, + 5228.136706226185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4120.53271137591, + 5227.241642269831 + ], + [ + 4120.53271137591, + 5229.031770182541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552850", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4119.404609554403, + "min_y": 5229.031770182541, + "max_x": 4120.53271137591, + "max_y": 5229.031770182541, + "center": [ + 4119.968660465156, + 5229.031770182541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.404609554403, + 5229.031770182541 + ], + [ + 4120.53271137591, + 5229.031770182541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552851", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4006.598175305788, + "min_y": 5217.734093668827, + "max_x": 4014.0181452753777, + "max_y": 5218.928633775913, + "center": [ + 4010.308160290583, + 5218.33136372237 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 100\\P H 95\\P L 60\\P LL 50", + "clean_value": "\\Fmonotxt.shx; .6; HH 100 H 95 L 60 LL 50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552855", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5232.308326070541, + "max_x": 3951.559350966046, + "max_y": 5237.135220642842, + "center": [ + 3951.559350966046, + 5234.721773356691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3951.559350966046, + 5237.135220642842 + ], + [ + 3951.559350966046, + 5232.308326070541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552856", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5232.308314041617, + "max_x": 3973.986186126249, + "max_y": 5232.308326070541, + "center": [ + 3962.7727685461477, + 5232.3083200560795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3951.559350966046, + 5232.308326070541 + ], + [ + 3973.986186126249, + 5232.308314041617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552857", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3973.986186126249, + "min_y": 5232.308314041617, + "max_x": 3976.399647217267, + "max_y": 5234.721775132636, + "center": [ + 3975.192916671758, + 5233.515044587127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3973.986186126249, + 5232.308314041617 + ], + [ + 3976.399647217267, + 5234.721775132636 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552858", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3973.986186126249, + "min_y": 5234.721775132636, + "max_x": 3976.399647217267, + "max_y": 5237.135236223655, + "center": [ + 3975.192916671758, + 5235.9285056781455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3976.399647217267, + 5234.721775132636 + ], + [ + 3973.986186126249, + 5237.135236223655 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552859", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5232.308326070541, + "max_x": 3951.559350966046, + "max_y": 5237.135220642842, + "center": [ + 3951.559350966046, + 5234.721773356691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3951.559350966046, + 5237.135220642842 + ], + [ + 3951.559350966046, + 5232.308326070541 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3956.592625607984, + "min_y": 5234.026117553803, + "max_x": 3970.6961848021165, + "max_y": 5235.705112695961, + "center": [ + 3963.64440520505, + 5234.8656151248815 + ] + }, + "raw_value": "City Raw Water", + "clean_value": "City Raw Water", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5232.308314041617, + "max_x": 3973.986186126249, + "max_y": 5232.308326070541, + "center": [ + 3962.7727685461477, + 5232.3083200560795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3951.559350966046, + 5232.308326070541 + ], + [ + 3973.986186126249, + 5232.308314041617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3951.559350966046, + "min_y": 5237.135220642842, + "max_x": 3973.986186126249, + "max_y": 5237.135236223655, + "center": [ + 3962.7727685461477, + 5237.135228433248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3951.559350966046, + 5237.135220642842 + ], + [ + 3973.986186126249, + 5237.135236223655 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3973.986186126249, + "min_y": 5232.308314041617, + "max_x": 3976.399647217267, + "max_y": 5234.721775132636, + "center": [ + 3975.192916671758, + 5233.515044587127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3973.986186126249, + 5232.308314041617 + ], + [ + 3976.399647217267, + 5234.721775132636 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3973.986186126249, + "min_y": 5234.721775132636, + "max_x": 3976.399647217267, + "max_y": 5237.135236223655, + "center": [ + 3975.192916671758, + 5235.9285056781455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3976.399647217267, + 5234.721775132636 + ], + [ + 3973.986186126249, + 5237.135236223655 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55285F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4014.00370497601, + "min_y": 5209.273710951813, + "max_x": 4014.00370497601, + "max_y": 5211.409925989242, + "center": [ + 4014.00370497601, + 5210.341818470528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4014.00370497601, + 5209.273710951813 + ], + [ + 4014.00370497601, + 5211.409925989242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552860", + "entity_type": "CIRCLE", + "layer": "MAIN", + "bbox": { + "min_x": 4027.0084508744403, + "min_y": 5230.773509614807, + "max_x": 4028.77226400131, + "max_y": 5232.537322741678, + "center": [ + 4027.890357437875, + 5231.655416178242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4027.890357437875, + 5231.655416178242 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552861", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4020.13420507945, + "min_y": 5231.653643427433, + "max_x": 4022.2507808316936, + "max_y": 5232.829518845346, + "center": [ + 4021.1924929555717, + 5232.24158113639 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552862", + "entity_type": "LINE", + "layer": "MAIN", + "bbox": { + "min_x": 4023.503497540271, + "min_y": 5232.160662305256, + "max_x": 4027.16752582694, + "max_y": 5234.721751323929, + "center": [ + 4025.3355116836055, + 5233.441206814592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4023.503497540271, + 5234.721751323929 + ], + [ + 4027.16752582694, + 5232.160662305256 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552863", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4022.756909973342, + "min_y": 5233.587536514203, + "max_x": 4022.756909973342, + "max_y": 5235.855966133657, + "center": [ + 4022.756909973342, + 5234.72175132393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4022.756909973342, + 5235.855966133657 + ], + [ + 4022.756909973342, + 5233.587536514203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552864", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4019.11973214519, + "min_y": 5233.587536514203, + "max_x": 4019.11973214519, + "max_y": 5235.855966133657, + "center": [ + 4019.11973214519, + 5234.72175132393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4019.11973214519, + 5235.855966133657 + ], + [ + 4019.11973214519, + 5233.587536514203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552865", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4021.517297060116, + "min_y": 5233.587536514203, + "max_x": 4022.756909973342, + "max_y": 5234.360656439016, + "center": [ + 4022.137103516729, + 5233.97409647661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4022.756909973342, + 5233.587536514203 + ], + [ + 4021.517297060116, + 5234.360656439016 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552866", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4021.517297060116, + "min_y": 5235.082846208842, + "max_x": 4022.756909973342, + "max_y": 5235.855966133657, + "center": [ + 4022.137103516729, + 5235.469406171249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4022.756909973342, + 5235.855966133657 + ], + [ + 4021.517297060116, + 5235.082846208842 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552867", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4020.255970177783, + "min_y": 5234.039400442441, + "max_x": 4021.620671940755, + "max_y": 5235.4041022054125, + "center": [ + 4020.938321059269, + 5234.721751323927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4020.938321059269, + 5234.721751323927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552868", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4019.11973214519, + "min_y": 5233.587536514203, + "max_x": 4020.359345058424, + "max_y": 5234.360656439016, + "center": [ + 4019.739538601807, + 5233.97409647661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4020.359345058424, + 5234.360656439016 + ], + [ + 4019.11973214519, + 5233.587536514203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552869", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4019.11973214519, + "min_y": 5235.082846208842, + "max_x": 4020.359345058424, + "max_y": 5235.855966133657, + "center": [ + 4019.739538601807, + 5235.469406171249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4020.359345058424, + 5235.082846208842 + ], + [ + 4019.11973214519, + 5235.855966133657 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4018.373144578262, + "min_y": 5233.587536514203, + "max_x": 4018.373144578262, + "max_y": 5235.855966133657, + "center": [ + 4018.373144578262, + 5234.72175132393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4018.373144578262, + 5235.855966133657 + ], + [ + 4018.373144578262, + 5233.587536514203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4023.503497540271, + "min_y": 5233.587536514203, + "max_x": 4023.503497540271, + "max_y": 5235.855966133657, + "center": [ + 4023.503497540271, + 5234.72175132393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4023.503497540271, + 5235.855966133657 + ], + [ + 4023.503497540271, + 5233.587536514203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4015.524294341521, + "min_y": 5234.721751323927, + "max_x": 4018.373144578262, + "max_y": 5234.721751323927, + "center": [ + 4016.9487194598914, + 5234.721751323927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4018.373144578262, + 5234.721751323927 + ], + [ + 4015.524294341521, + 5234.721751323927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5340.365587574432, + "max_x": 4119.199992244097, + "max_y": 5345.192482146734, + "center": [ + 4119.199992244097, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5345.192482146734 + ], + [ + 4119.199992244097, + 5340.365587574432 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5340.365575545508, + "max_x": 4141.626827404297, + "max_y": 5340.365587574432, + "center": [ + 4130.4134098241975, + 5340.36558155997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5340.365587574432 + ], + [ + 4141.626827404297, + 5340.365575545508 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55286F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5340.365575545508, + "max_x": 4144.040288495316, + "max_y": 5342.779036636527, + "center": [ + 4142.833557949807, + 5341.572306091018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5340.365575545508 + ], + [ + 4144.040288495316, + 5342.779036636527 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552870", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5342.779036636527, + "max_x": 4144.040288495316, + "max_y": 5345.192497727546, + "center": [ + 4142.833557949807, + 5343.985767182036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5342.779036636527 + ], + [ + 4141.626827404297, + 5345.192497727546 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552871", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5340.365587574432, + "max_x": 4119.199992244097, + "max_y": 5345.192482146734, + "center": [ + 4119.199992244097, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5345.192482146734 + ], + [ + 4119.199992244097, + 5340.365587574432 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552872", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4122.568851378112, + "min_y": 5341.978006218057, + "max_x": 4144.731587254607, + "max_y": 5343.657001360216, + "center": [ + 4133.65021931636, + 5342.817503789136 + ] + }, + "raw_value": "1~7F #10 Plant Utility", + "clean_value": "1~7F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552873", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5340.365575545508, + "max_x": 4141.626827404297, + "max_y": 5340.365587574432, + "center": [ + 4130.4134098241975, + 5340.36558155997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5340.365587574432 + ], + [ + 4141.626827404297, + 5340.365575545508 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552874", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5345.192482146734, + "max_x": 4141.626827404297, + "max_y": 5345.192497727546, + "center": [ + 4130.4134098241975, + 5345.19248993714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5345.192482146734 + ], + [ + 4141.626827404297, + 5345.192497727546 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552875", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5340.365575545508, + "max_x": 4144.040288495316, + "max_y": 5342.779036636527, + "center": [ + 4142.833557949807, + 5341.572306091018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5340.365575545508 + ], + [ + 4144.040288495316, + 5342.779036636527 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552876", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5342.779036636527, + "max_x": 4144.040288495316, + "max_y": 5345.192497727546, + "center": [ + 4142.833557949807, + 5343.985767182036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5342.779036636527 + ], + [ + 4141.626827404297, + 5345.192497727546 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552877", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5374.566470828803, + "max_x": 4119.199988707425, + "max_y": 5379.393365401106, + "center": [ + 4119.199988707425, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199988707425, + 5379.393365401106 + ], + [ + 4119.199988707425, + 5374.566470828803 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552878", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4146.934883348209, + "min_y": 5374.56645879988, + "max_x": 4149.348344439231, + "max_y": 5376.979919890898, + "center": [ + 4148.14161389372, + 5375.773189345389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4146.934883348209, + 5374.56645879988 + ], + [ + 4149.348344439231, + 5376.979919890898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552879", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4146.934883348209, + "min_y": 5376.979919890898, + "max_x": 4149.348344439231, + "max_y": 5379.393380981917, + "center": [ + 4148.14161389372, + 5378.186650436408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4149.348344439231, + 5376.979919890898 + ], + [ + 4146.934883348209, + 5379.393380981917 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5374.566470828803, + "max_x": 4119.199988707425, + "max_y": 5379.393365401106, + "center": [ + 4119.199988707425, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199988707425, + 5379.393365401106 + ], + [ + 4119.199988707425, + 5374.566470828803 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4121.007422613379, + "min_y": 5376.141261723806, + "max_x": 4144.177555575168, + "max_y": 5377.820256865964, + "center": [ + 4132.592489094273, + 5376.9807592948855 + ] + }, + "raw_value": "COOLING TOWER(CT-10601)", + "clean_value": "COOLING TOWER(CT-10601)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5379.393365401106, + "max_x": 4146.934883348209, + "max_y": 5379.393380981917, + "center": [ + 4133.067436027817, + 5379.393373191511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199988707425, + 5379.393365401106 + ], + [ + 4146.934883348209, + 5379.393380981917 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4146.934883348209, + "min_y": 5374.56645879988, + "max_x": 4149.348344439231, + "max_y": 5376.979919890898, + "center": [ + 4148.14161389372, + 5375.773189345389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4146.934883348209, + 5374.56645879988 + ], + [ + 4149.348344439231, + 5376.979919890898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4146.934883348209, + "min_y": 5376.979919890898, + "max_x": 4149.348344439231, + "max_y": 5379.393380981917, + "center": [ + 4148.14161389372, + 5378.186650436408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4149.348344439231, + 5376.979919890898 + ], + [ + 4146.934883348209, + 5379.393380981917 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55287F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5372.70000191148, + "max_x": 4129.867161841369, + "max_y": 5373.969903475045, + "center": [ + 4124.533575274398, + 5373.3349526932625 + ] + }, + "raw_value": "A3-SR10803-005", + "clean_value": "A3-SR10803-005", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552880", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199988707425, + "min_y": 5374.56645879988, + "max_x": 4146.934883348209, + "max_y": 5374.566470828803, + "center": [ + 4133.067436027817, + 5374.566464814341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199988707425, + 5374.566470828803 + ], + [ + 4146.934883348209, + 5374.56645879988 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552881", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914622221905, + "min_y": 5341.644820050857, + "max_x": 4112.914622221905, + "max_y": 5343.913249670309, + "center": [ + 4112.914622221905, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5341.644820050857 + ], + [ + 4112.914622221905, + 5343.913249670309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552882", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5341.644820050857, + "max_x": 4109.277444393755, + "max_y": 5343.913249670309, + "center": [ + 4109.277444393755, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277444393755, + 5341.644820050857 + ], + [ + 4109.277444393755, + 5343.913249670309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552883", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5343.140129745496, + "max_x": 4112.914622221905, + "max_y": 5343.913249670309, + "center": [ + 4112.294815765292, + 5343.526689707902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5343.913249670309 + ], + [ + 4111.675009308679, + 5343.140129745496 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552884", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5341.644820050857, + "max_x": 4112.914622221905, + "max_y": 5342.417939975671, + "center": [ + 4112.294815765292, + 5342.031380013264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5341.644820050857 + ], + [ + 4111.675009308679, + 5342.417939975671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552885", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5342.096683979097, + "max_x": 4111.778384189319, + "max_y": 5343.461385742069, + "center": [ + 4111.096033307833, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096033307833, + 5342.779034860583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552886", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5343.140129745496, + "max_x": 4110.517057306987, + "max_y": 5343.913249670309, + "center": [ + 4109.897250850371, + 5343.526689707902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5343.140129745496 + ], + [ + 4109.277444393755, + 5343.913249670309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552887", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5341.644820050857, + "max_x": 4110.517057306987, + "max_y": 5342.417939975671, + "center": [ + 4109.897250850371, + 5342.031380013264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5342.417939975671 + ], + [ + 4109.277444393755, + 5341.644820050857 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552888", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530856826825, + "min_y": 5341.644820050857, + "max_x": 4108.530856826825, + "max_y": 5343.913249670309, + "center": [ + 4108.530856826825, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5341.644820050857 + ], + [ + 4108.530856826825, + 5343.913249670309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552889", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5341.644820050857, + "max_x": 4113.661209788834, + "max_y": 5343.913249670309, + "center": [ + 4113.661209788834, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661209788834, + 5341.644820050857 + ], + [ + 4113.661209788834, + 5343.913249670309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288A", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5342.779034860583, + "max_x": 4119.199992244097, + "max_y": 5342.779034860583, + "center": [ + 4116.4306010164655, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5342.779034860583 + ], + [ + 4113.661209788834, + 5342.779034860583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288B", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5342.779034860583, + "max_x": 4108.530856826825, + "max_y": 5342.779034860583, + "center": [ + 4098.630792414056, + 5342.779034860583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5342.779034860583 + ], + [ + 4088.730728001286, + 5342.779034860583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914618685235, + "min_y": 5375.845703305228, + "max_x": 4112.914618685235, + "max_y": 5378.114132924681, + "center": [ + 4112.914618685235, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5375.845703305228 + ], + [ + 4112.914618685235, + 5378.114132924681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5375.845703305228, + "max_x": 4109.277440857084, + "max_y": 5378.114132924681, + "center": [ + 4109.277440857084, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277440857084, + 5375.845703305228 + ], + [ + 4109.277440857084, + 5378.114132924681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.67500577201, + "min_y": 5377.341012999867, + "max_x": 4112.914618685235, + "max_y": 5378.114132924681, + "center": [ + 4112.2948122286225, + 5377.727572962274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5378.114132924681 + ], + [ + 4111.67500577201, + 5377.341012999867 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55288F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.67500577201, + "min_y": 5375.845703305228, + "max_x": 4112.914618685235, + "max_y": 5376.618823230042, + "center": [ + 4112.2948122286225, + 5376.232263267635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5375.845703305228 + ], + [ + 4111.67500577201, + 5376.618823230042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552890", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413678889679, + "min_y": 5376.29756723347, + "max_x": 4111.778380652651, + "max_y": 5377.6622689964415, + "center": [ + 4111.096029771165, + 5376.979918114956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096029771165, + 5376.979918114956 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552891", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5377.341012999867, + "max_x": 4110.517053770317, + "max_y": 5378.114132924681, + "center": [ + 4109.8972473137, + 5377.727572962274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517053770317, + 5377.341012999867 + ], + [ + 4109.277440857084, + 5378.114132924681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552892", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5375.845703305228, + "max_x": 4110.517053770317, + "max_y": 5376.618823230042, + "center": [ + 4109.8972473137, + 5376.232263267635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517053770317, + 5376.618823230042 + ], + [ + 4109.277440857084, + 5375.845703305228 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552893", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530853290155, + "min_y": 5375.845703305228, + "max_x": 4108.530853290155, + "max_y": 5378.114132924681, + "center": [ + 4108.530853290155, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530853290155, + 5375.845703305228 + ], + [ + 4108.530853290155, + 5378.114132924681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552894", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661206252164, + "min_y": 5375.845703305228, + "max_x": 4113.661206252164, + "max_y": 5378.114132924681, + "center": [ + 4113.661206252164, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661206252164, + 5375.845703305228 + ], + [ + 4113.661206252164, + 5378.114132924681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552895", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661206252164, + "min_y": 5376.979918114955, + "max_x": 4119.199988707425, + "max_y": 5376.979918114955, + "center": [ + 4116.430597479795, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199988707425, + 5376.979918114955 + ], + [ + 4113.661206252164, + 5376.979918114955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552896", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5376.979918114955, + "max_x": 4108.530853290155, + "max_y": 5376.979918114955, + "center": [ + 4098.6307906457205, + 5376.979918114955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530853290155, + 5376.979918114955 + ], + [ + 4088.730728001286, + 5376.979918114955 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552897", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5343.618211866917, + "max_x": 4119.199992244097, + "max_y": 5343.618211866917, + "center": [ + 4103.624148798027, + 5343.618211866917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5343.618211866917 + ], + [ + 4088.048305351956, + 5343.618211866917 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552898", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5377.819095121289, + "max_x": 4119.199992244097, + "max_y": 5377.819095121289, + "center": [ + 4103.624148798027, + 5377.819095121289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5377.819095121289 + ], + [ + 4088.048305351956, + 5377.819095121289 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552899", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5386.783091339039, + "max_x": 4119.199992244097, + "max_y": 5391.60998591134, + "center": [ + 4119.199992244097, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5391.60998591134 + ], + [ + 4119.199992244097, + 5386.783091339039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5386.783079310117, + "max_x": 4141.626827404297, + "max_y": 5386.783091339039, + "center": [ + 4130.4134098241975, + 5386.783085324578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5386.783091339039 + ], + [ + 4141.626827404297, + 5386.783079310117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5386.783079310117, + "max_x": 4144.040288495316, + "max_y": 5389.196540401135, + "center": [ + 4142.833557949807, + 5387.989809855626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5386.783079310117 + ], + [ + 4144.040288495316, + 5389.196540401135 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5389.196540401135, + "max_x": 4144.040288495316, + "max_y": 5391.610001492153, + "center": [ + 4142.833557949807, + 5390.403270946645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5389.196540401135 + ], + [ + 4141.626827404297, + 5391.610001492153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5386.783091339039, + "max_x": 4119.199992244097, + "max_y": 5391.60998591134, + "center": [ + 4119.199992244097, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5391.60998591134 + ], + [ + 4119.199992244097, + 5386.783091339039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5388.360405773836, + "max_x": 4136.487828473966, + "max_y": 5390.0394009159945, + "center": [ + 4129.9397474195475, + 5389.199903344916 + ] + }, + "raw_value": "5F EYE SHOWER", + "clean_value": "5F EYE SHOWER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55289F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5386.783079310117, + "max_x": 4141.626827404297, + "max_y": 5386.783091339039, + "center": [ + 4130.4134098241975, + 5386.783085324578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5386.783091339039 + ], + [ + 4141.626827404297, + 5386.783079310117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5391.60998591134, + "max_x": 4141.626827404297, + "max_y": 5391.610001492153, + "center": [ + 4130.4134098241975, + 5391.609993701746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5391.60998591134 + ], + [ + 4141.626827404297, + 5391.610001492153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5386.783079310117, + "max_x": 4144.040288495316, + "max_y": 5389.196540401135, + "center": [ + 4142.833557949807, + 5387.989809855626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5386.783079310117 + ], + [ + 4144.040288495316, + 5389.196540401135 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5389.196540401135, + "max_x": 4144.040288495316, + "max_y": 5391.610001492153, + "center": [ + 4142.833557949807, + 5390.403270946645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5389.196540401135 + ], + [ + 4141.626827404297, + 5391.610001492153 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914622221905, + "min_y": 5388.062323815463, + "max_x": 4112.914622221905, + "max_y": 5390.330753434916, + "center": [ + 4112.914622221905, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5388.062323815463 + ], + [ + 4112.914622221905, + 5390.330753434916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5388.062323815463, + "max_x": 4109.277444393755, + "max_y": 5390.330753434916, + "center": [ + 4109.277444393755, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277444393755, + 5388.062323815463 + ], + [ + 4109.277444393755, + 5390.330753434916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5389.557633510101, + "max_x": 4112.914622221905, + "max_y": 5390.330753434916, + "center": [ + 4112.294815765292, + 5389.944193472509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5390.330753434916 + ], + [ + 4111.675009308679, + 5389.557633510101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5388.062323815463, + "max_x": 4112.914622221905, + "max_y": 5388.835443740277, + "center": [ + 4112.294815765292, + 5388.44888377787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5388.062323815463 + ], + [ + 4111.675009308679, + 5388.835443740277 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A7", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5388.514187743705, + "max_x": 4111.778384189319, + "max_y": 5389.878889506677, + "center": [ + 4111.096033307833, + 5389.196538625191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096033307833, + 5389.196538625191 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5389.557633510101, + "max_x": 4110.517057306987, + "max_y": 5390.330753434916, + "center": [ + 4109.897250850371, + 5389.944193472509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5389.557633510101 + ], + [ + 4109.277444393755, + 5390.330753434916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528A9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5388.062323815463, + "max_x": 4110.517057306987, + "max_y": 5388.835443740277, + "center": [ + 4109.897250850371, + 5388.44888377787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5388.835443740277 + ], + [ + 4109.277444393755, + 5388.062323815463 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530856826825, + "min_y": 5388.062323815463, + "max_x": 4108.530856826825, + "max_y": 5390.330753434916, + "center": [ + 4108.530856826825, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5388.062323815463 + ], + [ + 4108.530856826825, + 5390.330753434916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5388.062323815463, + "max_x": 4113.661209788834, + "max_y": 5390.330753434916, + "center": [ + 4113.661209788834, + 5389.1965386251895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661209788834, + 5388.062323815463 + ], + [ + 4113.661209788834, + 5390.330753434916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AC", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5389.196538625189, + "max_x": 4119.199992244097, + "max_y": 5389.196538625189, + "center": [ + 4116.4306010164655, + 5389.196538625189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5389.196538625189 + ], + [ + 4113.661209788834, + 5389.196538625189 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AD", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5389.196538625189, + "max_x": 4108.530856826825, + "max_y": 5389.196538625189, + "center": [ + 4098.630792414056, + 5389.196538625189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5389.196538625189 + ], + [ + 4088.730728001286, + 5389.196538625189 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914618685235, + "min_y": 5372.112765470583, + "max_x": 4112.914618685235, + "max_y": 5374.381195090037, + "center": [ + 4112.914618685235, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5372.112765470583 + ], + [ + 4112.914618685235, + 5374.381195090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528AF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5372.112765470583, + "max_x": 4109.277440857084, + "max_y": 5374.381195090037, + "center": [ + 4109.277440857084, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277440857084, + 5372.112765470583 + ], + [ + 4109.277440857084, + 5374.381195090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.67500577201, + "min_y": 5373.608075165222, + "max_x": 4112.914618685235, + "max_y": 5374.381195090037, + "center": [ + 4112.2948122286225, + 5373.994635127629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5374.381195090037 + ], + [ + 4111.67500577201, + 5373.608075165222 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.67500577201, + "min_y": 5372.112765470583, + "max_x": 4112.914618685235, + "max_y": 5372.885885395398, + "center": [ + 4112.2948122286225, + 5372.499325432991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914618685235, + 5372.112765470583 + ], + [ + 4111.67500577201, + 5372.885885395398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B2", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413678889679, + "min_y": 5372.564629398825, + "max_x": 4111.778380652651, + "max_y": 5373.929331161797, + "center": [ + 4111.096029771165, + 5373.246980280311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096029771165, + 5373.246980280311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5373.608075165222, + "max_x": 4110.517053770317, + "max_y": 5374.381195090037, + "center": [ + 4109.8972473137, + 5373.994635127629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517053770317, + 5373.608075165222 + ], + [ + 4109.277440857084, + 5374.381195090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277440857084, + "min_y": 5372.112765470583, + "max_x": 4110.517053770317, + "max_y": 5372.885885395398, + "center": [ + 4109.8972473137, + 5372.499325432991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517053770317, + 5372.885885395398 + ], + [ + 4109.277440857084, + 5372.112765470583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530853290155, + "min_y": 5372.112765470583, + "max_x": 4108.530853290155, + "max_y": 5374.381195090037, + "center": [ + 4108.530853290155, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530853290155, + 5372.112765470583 + ], + [ + 4108.530853290155, + 5374.381195090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661206252164, + "min_y": 5372.112765470583, + "max_x": 4113.661206252164, + "max_y": 5374.381195090037, + "center": [ + 4113.661206252164, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661206252164, + 5372.112765470583 + ], + [ + 4113.661206252164, + 5374.381195090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B7", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661206252164, + "min_y": 5373.24698028031, + "max_x": 4116.029075319135, + "max_y": 5373.24698028031, + "center": [ + 4114.84514078565, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.029075319135, + 5373.24698028031 + ], + [ + 4113.661206252164, + 5373.24698028031 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B8", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4106.162984223192, + "min_y": 5373.24698028031, + "max_x": 4108.530853290155, + "max_y": 5373.24698028031, + "center": [ + 4107.346918756673, + 5373.24698028031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530853290155, + 5373.24698028031 + ], + [ + 4106.162984223192, + 5373.24698028031 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528B9", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4116.029075319135, + "min_y": 5373.24698028031, + "max_x": 4116.029075319135, + "max_y": 5376.979918114955, + "center": [ + 4116.029075319135, + 5375.113449197632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4116.029075319135, + 5376.979918114955 + ], + [ + 4116.029075319135, + 5373.24698028031 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528BA", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4106.162984223192, + "min_y": 5373.24698028031, + "max_x": 4106.162984223192, + "max_y": 5376.979918114955, + "center": [ + 4106.162984223192, + 5375.113449197632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4106.162984223192, + 5376.979918114955 + ], + [ + 4106.162984223192, + 5373.24698028031 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528BB", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4090.441709703493, + "min_y": 5378.843894869613, + "max_x": 4107.601709703493, + "max_y": 5380.273894869613, + "center": [ + 4099.021709703493, + 5379.558894869613 + ] + }, + "raw_value": "SW-10810-25A-F1A-E50", + "clean_value": "SW-10810-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528BC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4089.780277395966, + "min_y": 5344.864575041224, + "max_x": 4106.940277395966, + "max_y": 5346.294575041225, + "center": [ + 4098.3602773959665, + 5345.579575041224 + ] + }, + "raw_value": "SW-10805-25A-F1A-E50", + "clean_value": "SW-10805-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5389.73650965703, + "max_x": 4119.199992244097, + "max_y": 5389.73650965703, + "center": [ + 4103.624148798027, + 5389.73650965703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5389.73650965703 + ], + [ + 4088.048305351956, + 5389.73650965703 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5528BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5351.119714215503, + "max_x": 4119.199992244097, + "max_y": 5355.946608787806, + "center": [ + 4119.199992244097, + 5353.533161501655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5355.946608787806 + ], + [ + 4119.199992244097, + 5351.119714215503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5351.119702186581, + "max_x": 4141.626827404297, + "max_y": 5351.119714215503, + "center": [ + 4130.4134098241975, + 5351.119708201042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5351.119714215503 + ], + [ + 4141.626827404297, + 5351.119702186581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5351.119702186581, + "max_x": 4144.040288495316, + "max_y": 5353.533163277599, + "center": [ + 4142.833557949807, + 5352.32643273209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5351.119702186581 + ], + [ + 4144.040288495316, + 5353.533163277599 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5353.533163277599, + "max_x": 4144.040288495316, + "max_y": 5355.946624368619, + "center": [ + 4142.833557949807, + 5354.739893823109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5353.533163277599 + ], + [ + 4141.626827404297, + 5355.946624368619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5351.119714215503, + "max_x": 4119.199992244097, + "max_y": 5355.946608787806, + "center": [ + 4119.199992244097, + 5353.533161501655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5355.946608787806 + ], + [ + 4119.199992244097, + 5351.119714215503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5352.6970286503, + "max_x": 4136.487828473966, + "max_y": 5354.376023792459, + "center": [ + 4129.9397474195475, + 5353.53652622138 + ] + }, + "raw_value": "1F EYE SHOWER", + "clean_value": "1F EYE SHOWER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5351.119702186581, + "max_x": 4141.626827404297, + "max_y": 5351.119714215503, + "center": [ + 4130.4134098241975, + 5351.119708201042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5351.119714215503 + ], + [ + 4141.626827404297, + 5351.119702186581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5355.946608787806, + "max_x": 4141.626827404297, + "max_y": 5355.946624368619, + "center": [ + 4130.4134098241975, + 5355.946616578212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5355.946608787806 + ], + [ + 4141.626827404297, + 5355.946624368619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5351.119702186581, + "max_x": 4144.040288495316, + "max_y": 5353.533163277599, + "center": [ + 4142.833557949807, + 5352.32643273209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5351.119702186581 + ], + [ + 4144.040288495316, + 5353.533163277599 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5353.533163277599, + "max_x": 4144.040288495316, + "max_y": 5355.946624368619, + "center": [ + 4142.833557949807, + 5354.739893823109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5353.533163277599 + ], + [ + 4141.626827404297, + 5355.946624368619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914622221905, + "min_y": 5352.398946691927, + "max_x": 4112.914622221905, + "max_y": 5354.66737631138, + "center": [ + 4112.914622221905, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5352.398946691927 + ], + [ + 4112.914622221905, + 5354.66737631138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528C9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5352.398946691927, + "max_x": 4109.277444393755, + "max_y": 5354.66737631138, + "center": [ + 4109.277444393755, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277444393755, + 5352.398946691927 + ], + [ + 4109.277444393755, + 5354.66737631138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5353.894256386566, + "max_x": 4112.914622221905, + "max_y": 5354.66737631138, + "center": [ + 4112.294815765292, + 5354.2808163489735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5354.66737631138 + ], + [ + 4111.675009308679, + 5353.894256386566 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5352.398946691927, + "max_x": 4112.914622221905, + "max_y": 5353.172066616743, + "center": [ + 4112.294815765292, + 5352.785506654335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5352.398946691927 + ], + [ + 4111.675009308679, + 5353.172066616743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CC", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5352.85081062017, + "max_x": 4111.778384189319, + "max_y": 5354.215512383142, + "center": [ + 4111.096033307833, + 5353.533161501656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096033307833, + 5353.533161501656 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5353.894256386566, + "max_x": 4110.517057306987, + "max_y": 5354.66737631138, + "center": [ + 4109.897250850371, + 5354.2808163489735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5353.894256386566 + ], + [ + 4109.277444393755, + 5354.66737631138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5352.398946691927, + "max_x": 4110.517057306987, + "max_y": 5353.172066616743, + "center": [ + 4109.897250850371, + 5352.785506654335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5353.172066616743 + ], + [ + 4109.277444393755, + 5352.398946691927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528CF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530856826825, + "min_y": 5352.398946691927, + "max_x": 4108.530856826825, + "max_y": 5354.66737631138, + "center": [ + 4108.530856826825, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5352.398946691927 + ], + [ + 4108.530856826825, + 5354.66737631138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5352.398946691927, + "max_x": 4113.661209788834, + "max_y": 5354.66737631138, + "center": [ + 4113.661209788834, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661209788834, + 5352.398946691927 + ], + [ + 4113.661209788834, + 5354.66737631138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D1", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5353.533161501654, + "max_x": 4119.199992244097, + "max_y": 5353.533161501654, + "center": [ + 4116.4306010164655, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5353.533161501654 + ], + [ + 4113.661209788834, + 5353.533161501654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D2", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5353.533161501654, + "max_x": 4108.530856826825, + "max_y": 5353.533161501654, + "center": [ + 4098.630792414056, + 5353.533161501654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5353.533161501654 + ], + [ + 4088.730728001286, + 5353.533161501654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5354.073132533494, + "max_x": 4119.199992244097, + "max_y": 5354.073132533494, + "center": [ + 4103.624148798027, + 5354.073132533494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5354.073132533494 + ], + [ + 4088.048305351956, + 5354.073132533494 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5528D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5362.628486831438, + "max_x": 4119.199992244097, + "max_y": 5367.45538140374, + "center": [ + 4119.199992244097, + 5365.041934117589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5367.45538140374 + ], + [ + 4119.199992244097, + 5362.628486831438 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5362.628474802516, + "max_x": 4141.626827404297, + "max_y": 5362.628486831438, + "center": [ + 4130.4134098241975, + 5362.628480816977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5362.628486831438 + ], + [ + 4141.626827404297, + 5362.628474802516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5362.628474802516, + "max_x": 4144.040288495316, + "max_y": 5365.041935893534, + "center": [ + 4142.833557949807, + 5363.835205348025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5362.628474802516 + ], + [ + 4144.040288495316, + 5365.041935893534 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5365.041935893534, + "max_x": 4144.040288495316, + "max_y": 5367.455396984553, + "center": [ + 4142.833557949807, + 5366.2486664390435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5365.041935893534 + ], + [ + 4141.626827404297, + 5367.455396984553 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5362.628486831438, + "max_x": 4119.199992244097, + "max_y": 5367.45538140374, + "center": [ + 4119.199992244097, + 5365.041934117589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5367.45538140374 + ], + [ + 4119.199992244097, + 5362.628486831438 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528D9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4123.391666365129, + "min_y": 5364.205801266234, + "max_x": 4136.487828473966, + "max_y": 5365.8847964083925, + "center": [ + 4129.9397474195475, + 5365.045298837313 + ] + }, + "raw_value": "3F EYE SHOWER", + "clean_value": "3F EYE SHOWER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5362.628474802516, + "max_x": 4141.626827404297, + "max_y": 5362.628486831438, + "center": [ + 4130.4134098241975, + 5362.628480816977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5362.628486831438 + ], + [ + 4141.626827404297, + 5362.628474802516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.199992244097, + "min_y": 5367.45538140374, + "max_x": 4141.626827404297, + "max_y": 5367.455396984553, + "center": [ + 4130.4134098241975, + 5367.455389194147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5367.45538140374 + ], + [ + 4141.626827404297, + 5367.455396984553 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5362.628474802516, + "max_x": 4144.040288495316, + "max_y": 5365.041935893534, + "center": [ + 4142.833557949807, + 5363.835205348025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.626827404297, + 5362.628474802516 + ], + [ + 4144.040288495316, + 5365.041935893534 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.626827404297, + "min_y": 5365.041935893534, + "max_x": 4144.040288495316, + "max_y": 5367.455396984553, + "center": [ + 4142.833557949807, + 5366.2486664390435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.040288495316, + 5365.041935893534 + ], + [ + 4141.626827404297, + 5367.455396984553 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.914622221905, + "min_y": 5363.907719307862, + "max_x": 4112.914622221905, + "max_y": 5366.176148927315, + "center": [ + 4112.914622221905, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5363.907719307862 + ], + [ + 4112.914622221905, + 5366.176148927315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528DF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5363.907719307862, + "max_x": 4109.277444393755, + "max_y": 5366.176148927315, + "center": [ + 4109.277444393755, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.277444393755, + 5363.907719307862 + ], + [ + 4109.277444393755, + 5366.176148927315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5365.4030290025, + "max_x": 4112.914622221905, + "max_y": 5366.176148927315, + "center": [ + 4112.294815765292, + 5365.789588964908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5366.176148927315 + ], + [ + 4111.675009308679, + 5365.4030290025 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.675009308679, + "min_y": 5363.907719307862, + "max_x": 4112.914622221905, + "max_y": 5364.680839232677, + "center": [ + 4112.294815765292, + 5364.294279270269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.914622221905, + 5363.907719307862 + ], + [ + 4111.675009308679, + 5364.680839232677 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E2", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.413682426347, + "min_y": 5364.359583236105, + "max_x": 4111.778384189319, + "max_y": 5365.724284999077, + "center": [ + 4111.096033307833, + 5365.041934117591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.096033307833, + 5365.041934117591 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5365.4030290025, + "max_x": 4110.517057306987, + "max_y": 5366.176148927315, + "center": [ + 4109.897250850371, + 5365.789588964908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5365.4030290025 + ], + [ + 4109.277444393755, + 5366.176148927315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.277444393755, + "min_y": 5363.907719307862, + "max_x": 4110.517057306987, + "max_y": 5364.680839232677, + "center": [ + 4109.897250850371, + 5364.294279270269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.517057306987, + 5364.680839232677 + ], + [ + 4109.277444393755, + 5363.907719307862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.530856826825, + "min_y": 5363.907719307862, + "max_x": 4108.530856826825, + "max_y": 5366.176148927315, + "center": [ + 4108.530856826825, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5363.907719307862 + ], + [ + 4108.530856826825, + 5366.176148927315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5363.907719307862, + "max_x": 4113.661209788834, + "max_y": 5366.176148927315, + "center": [ + 4113.661209788834, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.661209788834, + 5363.907719307862 + ], + [ + 4113.661209788834, + 5366.176148927315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E7", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.661209788834, + "min_y": 5365.041934117588, + "max_x": 4119.199992244097, + "max_y": 5365.041934117588, + "center": [ + 4116.4306010164655, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5365.041934117588 + ], + [ + 4113.661209788834, + 5365.041934117588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E8", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.730728001286, + "min_y": 5365.041934117588, + "max_x": 4108.530856826825, + "max_y": 5365.041934117588, + "center": [ + 4098.630792414056, + 5365.041934117588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.530856826825, + 5365.041934117588 + ], + [ + 4088.730728001286, + 5365.041934117588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5528E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.048305351956, + "min_y": 5365.581905149429, + "max_x": 4119.199992244097, + "max_y": 5365.581905149429, + "center": [ + 4103.624148798027, + 5365.581905149429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.199992244097, + 5365.581905149429 + ], + [ + 4088.048305351956, + 5365.581905149429 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5528EA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5163.787055416332, + "max_x": 4706.970192332875, + "max_y": 5163.787055416332, + "center": [ + 4675.342644957023, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5163.787055416332 + ], + [ + 4643.715097581172, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528EB", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5174.471862832472, + "max_x": 4706.970192332875, + "max_y": 5174.471862832472, + "center": [ + 4675.342644957023, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5174.471862832472 + ], + [ + 4643.715097581172, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528EC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5153.102248000193, + "max_x": 4706.970192332875, + "max_y": 5153.102248000193, + "center": [ + 4675.342644957023, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5153.102248000193 + ], + [ + 4643.715097581172, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528ED", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5153.102248000193, + "max_x": 4706.970192332875, + "max_y": 5153.102248000193, + "center": [ + 4675.342644957023, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5153.102248000193 + ], + [ + 4643.715097581172, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528EE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5163.787055416332, + "max_x": 4706.970192332875, + "max_y": 5163.787055416332, + "center": [ + 4675.342644957023, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5163.787055416332 + ], + [ + 4643.715097581172, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528EF", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5174.471862832472, + "max_x": 4706.970192332875, + "max_y": 5174.471862832472, + "center": [ + 4675.342644957023, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5174.471862832472 + ], + [ + 4643.715097581172, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528F0", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5142.417440584062, + "max_x": 4706.970192332875, + "max_y": 5142.417440584062, + "center": [ + 4675.342644957023, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5142.417440584062 + ], + [ + 4643.715097581172, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528F1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5142.417440584062, + "max_x": 4706.970192332875, + "max_y": 5142.417440584062, + "center": [ + 4675.342644957023, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5142.417440584062 + ], + [ + 4643.715097581172, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528F2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5139.215879039879, + "max_x": 4666.106624987147, + "max_y": 5139.215879039879, + "center": [ + 4654.910861284159, + 5139.215879039879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4643.715097581172, + 5139.215879039879 + ], + [ + 4666.106624987147, + 5139.215879039879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528F3", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4656.95408703148, + "min_y": 5137.057630582686, + "max_x": 4659.874842523132, + "max_y": 5138.274612037541, + "center": [ + 4658.414464777306, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528F4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4656.95408703148, + "min_y": 5137.057630582686, + "max_x": 4659.874842523132, + "max_y": 5138.274612037541, + "center": [ + 4658.414464777306, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528F5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4659.021735164991, + "min_y": 5139.972711614599, + "max_x": 4660.023369888682, + "max_y": 5141.6421028207515, + "center": [ + 4659.522552526836, + 5140.807407217675 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528F6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4645.16273459485, + "min_y": 5140.026275593804, + "max_x": 4650.274056705241, + "max_y": 5141.243257048659, + "center": [ + 4647.718395650045, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528F7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4645.16273459485, + "min_y": 5140.026275593804, + "max_x": 4650.274056705241, + "max_y": 5141.243257048659, + "center": [ + 4647.718395650045, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528F8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4645.688513058634, + "min_y": 5137.083634048247, + "max_x": 4649.339457423199, + "max_y": 5138.300615503103, + "center": [ + 4647.513985240917, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528F9", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4645.688513058634, + "min_y": 5137.083634048247, + "max_x": 4649.339457423199, + "max_y": 5138.300615503103, + "center": [ + 4647.513985240917, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528FA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4652.601856291691, + "min_y": 5136.02078529679, + "max_x": 4652.601856291691, + "max_y": 5142.417440584062, + "center": [ + 4652.601856291691, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4652.601856291691, + 5142.417440584062 + ], + [ + 4652.601856291691, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528FB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4667.554476015044, + "min_y": 5140.388472455367, + "max_x": 4672.665798125435, + "max_y": 5141.605453910222, + "center": [ + 4670.11013707024, + 5140.996963182795 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528FC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4666.106624987147, + "min_y": 5136.02078529679, + "max_x": 4666.106624987147, + "max_y": 5142.417440584062, + "center": [ + 4666.106624987147, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4666.106624987147, + 5142.417440584062 + ], + [ + 4666.106624987147, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5528FD", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5150.871489282998, + "max_x": 4649.9042852125685, + "max_y": 5152.088470737853, + "center": [ + 4647.348624157374, + 5151.479980010425 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528FE", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5172.241104115277, + "max_x": 4649.9042852125685, + "max_y": 5173.458085570132, + "center": [ + 4647.348624157374, + 5172.849594842704 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5528FF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5182.232706727603, + "max_x": 4653.555229577133, + "max_y": 5183.449688182458, + "center": [ + 4649.174096339655, + 5182.841197455031 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552900", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4700.948669509378, + "min_y": 5137.417830334262, + "max_x": 4705.918090173991, + "max_y": 5137.417830334262, + "center": [ + 4703.433379841685, + 5137.417830334262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4700.948669509378, + 5137.417830334262 + ], + [ + 4705.918090173991, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552901", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4700.948669509378, + "min_y": 5137.417830334262, + "max_x": 4703.406433927135, + "max_y": 5141.725385866432, + "center": [ + 4702.177551718257, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4700.948669509378, + 5137.417830334262 + ], + [ + 4703.406433927135, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552902", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4700.948669509378, + "min_y": 5137.417830334262, + "max_x": 4703.406433927135, + "max_y": 5141.725385866432, + "center": [ + 4702.177551718257, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4700.948669509378, + 5137.417830334262 + ], + [ + 4703.406433927135, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552903", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4700.217807985153, + "min_y": 5136.02078529679, + "max_x": 4700.217807985153, + "max_y": 5142.417440584062, + "center": [ + 4700.217807985153, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4700.217807985153, + 5142.417440584062 + ], + [ + 4700.217807985153, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552904", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4703.406433927135, + "min_y": 5137.417830334262, + "max_x": 4705.918090173991, + "max_y": 5141.725385866432, + "center": [ + 4704.662262050563, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4703.406433927135, + 5141.725385866432 + ], + [ + 4705.918090173991, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552905", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5184.264113696894, + "max_x": 4706.970192332875, + "max_y": 5184.264113696894, + "center": [ + 4675.342644957023, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5184.264113696894 + ], + [ + 4643.715097581172, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552906", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5184.264113696894, + "max_x": 4706.970192332875, + "max_y": 5184.264113696894, + "center": [ + 4675.342644957023, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332875, + 5184.264113696894 + ], + [ + 4643.715097581172, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552907", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4702.808364190384, + "min_y": 5138.226707916594, + "max_x": 4703.972568388268, + "max_y": 5140.167048246401, + "center": [ + 4703.390466289326, + 5139.196878081497 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552908", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5136.02078529679, + "max_x": 4643.715097581172, + "max_y": 5184.264113696894, + "center": [ + 4643.715097581172, + 5160.142449496841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4643.715097581172, + 5184.264113696894 + ], + [ + 4643.715097581172, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552909", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 4662.649134911673, + "min_y": 5167.793935684509, + "max_x": 4708.116317737646, + "max_y": 5170.406992168761, + "center": [ + 4685.382726324659, + 5169.100463926635 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552912", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.105559626623, + "min_y": 5170.593864280164, + "max_x": 4657.45521947798, + "max_y": 5170.593864280164, + "center": [ + 4657.280389552301, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.105559626623, + 5170.593864280164 + ], + [ + 4657.45521947798, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552913", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.155484964444, + "min_y": 5169.413764349588, + "max_x": 4657.45521947798, + "max_y": 5169.413764349588, + "center": [ + 4657.305352221212, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5169.413764349588 + ], + [ + 4657.155484964444, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552914", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.352771736593, + "min_y": 5169.710451466511, + "max_x": 4657.45521947798, + "max_y": 5169.710451466511, + "center": [ + 4657.403995607287, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5169.710451466511 + ], + [ + 4657.352771736593, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552915", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4656.758752859641, + "min_y": 5169.20663721225, + "max_x": 4657.116233092627, + "max_y": 5169.20663721225, + "center": [ + 4656.937492976134, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.116233092627, + 5169.20663721225 + ], + [ + 4656.758752859641, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552916", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4656.758752859641, + "min_y": 5169.20663721225, + "max_x": 4657.105559626623, + "max_y": 5170.593864280164, + "center": [ + 4656.932156243132, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.105559626623, + 5170.593864280164 + ], + [ + 4656.758752859641, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552917", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.352771736593, + "min_y": 5169.710451466511, + "max_x": 4657.45521947798, + "max_y": 5170.120242432068, + "center": [ + 4657.403995607287, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5170.120242432068 + ], + [ + 4657.352771736593, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552918", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.116233092627, + "min_y": 5169.20663721225, + "max_x": 4657.155484964444, + "max_y": 5169.413764349588, + "center": [ + 4657.135859028536, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.155484964444, + 5169.413764349588 + ], + [ + 4657.116233092627, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552919", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.45521947798, + "min_y": 5170.593864280164, + "max_x": 4657.80487932934, + "max_y": 5170.593864280164, + "center": [ + 4657.63004940366, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.80487932934, + 5170.593864280164 + ], + [ + 4657.45521947798, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.45521947798, + "min_y": 5169.413764349588, + "max_x": 4657.754953991521, + "max_y": 5169.413764349588, + "center": [ + 4657.60508673475, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5169.413764349588 + ], + [ + 4657.754953991521, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.45521947798, + "min_y": 5169.710451466511, + "max_x": 4657.557667219371, + "max_y": 5169.710451466511, + "center": [ + 4657.506443348675, + 5169.710451466511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5169.710451466511 + ], + [ + 4657.557667219371, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.794205863335, + "min_y": 5169.20663721225, + "max_x": 4658.151686096316, + "max_y": 5169.20663721225, + "center": [ + 4657.972945979825, + 5169.20663721225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.794205863335, + 5169.20663721225 + ], + [ + 4658.151686096316, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.80487932934, + "min_y": 5169.20663721225, + "max_x": 4658.151686096316, + "max_y": 5170.593864280164, + "center": [ + 4657.978282712827, + 5169.900250746206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.80487932934, + 5170.593864280164 + ], + [ + 4658.151686096316, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.45521947798, + "min_y": 5169.710451466511, + "max_x": 4657.557667219371, + "max_y": 5170.120242432068, + "center": [ + 4657.506443348675, + 5169.915346949289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.45521947798, + 5170.120242432068 + ], + [ + 4657.557667219371, + 5169.710451466511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55291F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 4657.754953991521, + "min_y": 5169.20663721225, + "max_x": 4657.794205863335, + "max_y": 5169.413764349588, + "center": [ + 4657.774579927428, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4657.754953991521, + 5169.413764349588 + ], + [ + 4657.794205863335, + 5169.20663721225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552920", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 4657.605664750507, + "min_y": 5166.720206165759, + "max_x": 4664.530917466273, + "max_y": 5167.829987820085, + "center": [ + 4661.0682911083895, + 5167.275096992922 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552921", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4289.92637744637, + "min_y": 5136.02078529679, + "max_x": 4706.970192332875, + "max_y": 5433.022211779237, + "center": [ + 4498.448284889622, + 5284.5214985380135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4289.92637744637, + 5433.022211779237 + ], + [ + 4706.970192332875, + 5433.022211779237 + ], + [ + 4706.970192332875, + 5136.02078529679 + ], + [ + 4289.92637744637, + 5136.02078529679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552922", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 4644.792963102178, + "min_y": 5161.556296699135, + "max_x": 4653.555229577133, + "max_y": 5162.77327815399, + "center": [ + 4649.174096339655, + 5162.164787426562 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "552923", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4672.747362241411, + "min_y": 5148.737442947862, + "max_x": 4683.498223205188, + "max_y": 5150.977205648649, + "center": [ + 4678.122792723299, + 5149.857324298256 + ] + }, + "raw_value": "OFF SITE", + "clean_value": "OFF SITE", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "552924", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4665.419713744145, + "min_y": 5144.257917546288, + "max_x": 4685.577578051227, + "max_y": 5146.497680247075, + "center": [ + 4675.4986458976855, + 5145.377798896681 + ] + }, + "raw_value": "N2 P&I DIAGRAM ", + "clean_value": "N2 P&I DIAGRAM", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "552925", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 4648.029317905244, + "min_y": 5177.555024650128, + "max_x": 4693.496500731217, + "max_y": 5180.1680811343795, + "center": [ + 4670.76290931823, + 5178.861552892254 + ] + }, + "raw_value": "72MT/D SOLVENT RECOVERY PLANT", + "clean_value": "72MT/D SOLVENT RECOVERY PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552926", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4644.213072500837, + "min_y": 5185.029137017409, + "max_x": 4646.390582330263, + "max_y": 5185.93643277967, + "center": [ + 4645.30182741555, + 5185.48278489854 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552927", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4647.253593418347, + "min_y": 5184.264113696894, + "max_x": 4647.253593418463, + "max_y": 5207.629923616948, + "center": [ + 4647.253593418405, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.253593418347, + 5184.264113696894 + ], + [ + 4647.253593418463, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581226, + "min_y": 5187.215768965883, + "max_x": 4706.970192332879, + "max_y": 5187.215768965883, + "center": [ + 4675.3426449570525, + 5187.215768965883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5187.215768965883 + ], + [ + 4643.715097581226, + 5187.215768965883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552929", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310001, + "min_y": 5187.215768965925, + "max_x": 4647.25359341843, + "max_y": 5190.618128074395, + "center": [ + 4645.552413864216, + 5188.91694852016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.25359341843, + 5188.916948520139 + ], + [ + 4645.552413864174, + 5190.618128074395 + ], + [ + 4643.851234310001, + 5188.916948520139 + ], + [ + 4645.552413864174, + 5187.215768965925 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310001, + "min_y": 5190.618128074395, + "max_x": 4647.25359341843, + "max_y": 5194.020487182864, + "center": [ + 4645.552413864216, + 5192.31930762863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.25359341843, + 5192.31930762865 + ], + [ + 4645.552413864174, + 5194.020487182864 + ], + [ + 4643.851234310001, + 5192.31930762865 + ], + [ + 4645.552413864174, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310001, + "min_y": 5194.020487182864, + "max_x": 4647.25359341843, + "max_y": 5197.422846291334, + "center": [ + 4645.552413864216, + 5195.721666737099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.25359341843, + 5195.72166673712 + ], + [ + 4645.552413864174, + 5197.422846291334 + ], + [ + 4643.851234310001, + 5195.72166673712 + ], + [ + 4645.552413864174, + 5194.020487182864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310001, + "min_y": 5197.422846291334, + "max_x": 4647.25359341843, + "max_y": 5200.825205399844, + "center": [ + 4645.552413864216, + 5199.124025845589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.25359341843, + 5199.124025845589 + ], + [ + 4645.552413864174, + 5200.825205399844 + ], + [ + 4643.851234310001, + 5199.124025845589 + ], + [ + 4645.552413864174, + 5197.422846291334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4651.309245928792, + "min_y": 5185.029137017409, + "max_x": 4653.9418086295955, + "max_y": 5186.126038142744, + "center": [ + 4652.625527279193, + 5185.577587580076 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4696.521420002631, + "min_y": 5184.264113696934, + "max_x": 4696.521420002746, + "max_y": 5207.629923616948, + "center": [ + 4696.5214200026885, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4696.521420002631, + 5184.264113696934 + ], + [ + 4696.521420002746, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55292F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4691.488765801278, + "min_y": 5184.264113696894, + "max_x": 4691.488765801325, + "max_y": 5207.629923616948, + "center": [ + 4691.488765801301, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4691.488765801278, + 5184.264113696894 + ], + [ + 4691.488765801325, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552930", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4692.166588170805, + "min_y": 5185.029137017409, + "max_x": 4694.799150871609, + "max_y": 5186.126038142744, + "center": [ + 4693.482869521207, + 5185.577587580076 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552931", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4685.818167287151, + "min_y": 5184.264113696894, + "max_x": 4685.818167287194, + "max_y": 5207.629923616948, + "center": [ + 4685.818167287172, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4685.818167287151, + 5184.264113696894 + ], + [ + 4685.818167287194, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552932", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4686.820074663367, + "min_y": 5185.029137017409, + "max_x": 4689.452637364171, + "max_y": 5186.126038142744, + "center": [ + 4688.136356013769, + 5185.577587580076 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552933", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4680.147568773022, + "min_y": 5184.264113696894, + "max_x": 4680.147568773135, + "max_y": 5207.629923616948, + "center": [ + 4680.147568773078, + 5195.9470186569215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4680.147568773022, + 5184.264113696894 + ], + [ + 4680.147568773135, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552934", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4681.102466101061, + "min_y": 5185.029137017409, + "max_x": 4683.735028801864, + "max_y": 5186.126038142744, + "center": [ + 4682.418747451462, + 5185.577587580076 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552935", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4664.959135736527, + "min_y": 5185.029137017409, + "max_x": 4672.198683163736, + "max_y": 5186.126038142744, + "center": [ + 4668.5789094501315, + 5185.577587580076 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552936", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4658.843642007914, + "min_y": 5184.264113696934, + "max_x": 4658.843642007959, + "max_y": 5207.629923616948, + "center": [ + 4658.843642007936, + 5195.9470186569415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4658.843642007959, + 5207.629923616948 + ], + [ + 4658.843642007914, + 5184.264113696934 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552937", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4699.21771024088, + "min_y": 5184.976896931174, + "max_x": 4703.166554292085, + "max_y": 5186.073798056509, + "center": [ + 4701.192132266482, + 5185.525347493842 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552938", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310004, + "min_y": 5200.825205399844, + "max_x": 4647.253593418432, + "max_y": 5204.227564508355, + "center": [ + 4645.552413864218, + 5202.526384954099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.253593418432, + 5202.526384954099 + ], + [ + 4645.552413864176, + 5204.227564508355 + ], + [ + 4643.851234310004, + 5202.526384954099 + ], + [ + 4645.552413864176, + 5200.825205399844 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552939", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4643.851234310054, + "min_y": 5204.227564508833, + "max_x": 4647.253593418482, + "max_y": 5207.629923617344, + "center": [ + 4645.552413864268, + 5205.928744063089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4647.253593418482, + 5205.928744063088 + ], + [ + 4645.552413864225, + 5207.629923617344 + ], + [ + 4643.851234310054, + 5205.928744063088 + ], + [ + 4645.552413864225, + 5204.227564508833 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581174, + "min_y": 5184.264113696996, + "max_x": 4643.715097581291, + "max_y": 5207.629923616948, + "center": [ + 4643.715097581233, + 5195.947018656972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4643.715097581174, + 5184.264113696996 + ], + [ + 4643.715097581291, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581214, + "min_y": 5190.618128074395, + "max_x": 4706.970192332879, + "max_y": 5190.618128074395, + "center": [ + 4675.342644957047, + 5190.618128074395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5190.618128074395 + ], + [ + 4643.715097581214, + 5190.618128074395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581207, + "min_y": 5194.020487182905, + "max_x": 4706.970192332879, + "max_y": 5194.020487182905, + "center": [ + 4675.342644957043, + 5194.020487182905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5194.020487182905 + ], + [ + 4643.715097581207, + 5194.020487182905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581198, + "min_y": 5197.422846291416, + "max_x": 4706.970192332879, + "max_y": 5197.422846291416, + "center": [ + 4675.342644957039, + 5197.422846291416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5197.422846291416 + ], + [ + 4643.715097581198, + 5197.422846291416 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581189, + "min_y": 5200.825205399927, + "max_x": 4706.970192332879, + "max_y": 5200.825205399927, + "center": [ + 4675.342644957034, + 5200.825205399927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5200.825205399927 + ], + [ + 4643.715097581189, + 5200.825205399927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55293F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.71509758118, + "min_y": 5204.227564508437, + "max_x": 4706.970192332879, + "max_y": 5204.227564508437, + "center": [ + 4675.34264495703, + 5204.227564508437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5204.227564508437 + ], + [ + 4643.71509758118, + 5204.227564508437 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4643.715097581172, + "min_y": 5207.629923616948, + "max_x": 4706.970192332879, + "max_y": 5207.629923616948, + "center": [ + 4675.342644957025, + 5207.629923616948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4706.970192332879, + 5207.629923616948 + ], + [ + 4643.715097581172, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552941", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4662.185451266761, + "min_y": 5156.389081476591, + "max_x": 4685.040693508523, + "max_y": 5158.629791500293, + "center": [ + 4673.613072387642, + 5157.509436488443 + ] + }, + "raw_value": "HANMO CORPORATION", + "clean_value": "HANMO CORPORATION", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "552942", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4656.633504433512, + "min_y": 5157.792848247815, + "max_x": 4660.028519620939, + "max_y": 5157.792848247815, + "center": [ + 4658.331012027225, + 5157.792848247815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4656.633504433512, + 5157.792848247815 + ], + [ + 4660.028519620939, + 5157.792848247815 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "552943", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5191.840066486287, + "max_x": 4645.73363714886, + "max_y": 5192.773300944948, + "center": [ + 4645.453666811261, + 5192.306683715617 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552944", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5195.24242559477, + "max_x": 4645.73363714886, + "max_y": 5196.175660053431, + "center": [ + 4645.453666811261, + 5195.709042824101 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552945", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5198.657876168591, + "max_x": 4645.73363714886, + "max_y": 5199.591110627252, + "center": [ + 4645.453666811261, + 5199.1244933979215 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552946", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5202.060235277075, + "max_x": 4645.73363714886, + "max_y": 5202.993469735736, + "center": [ + 4645.453666811261, + 5202.526852506406 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552947", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473665, + "min_y": 5205.475685850937, + "max_x": 4645.733637148862, + "max_y": 5206.408920309598, + "center": [ + 4645.453666811263, + 5205.942303080268 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552948", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4645.173696473663, + "min_y": 5188.450798843156, + "max_x": 4645.73363714886, + "max_y": 5189.384033301817, + "center": [ + 4645.453666811261, + 5188.917416072487 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552949", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4662.907793004549, + "min_y": 5188.452201500158, + "max_x": 4671.866843807696, + "max_y": 5189.385435958819, + "center": [ + 4667.387318406122, + 5188.918818729488 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55294A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4681.263678098094, + "min_y": 5188.452201500131, + "max_x": 4684.063381474078, + "max_y": 5189.385435958792, + "center": [ + 4682.663529786086, + 5188.918818729462 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55294B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4676.533370138635, + "min_y": 5137.540953461114, + "max_x": 4692.832228909014, + "max_y": 5139.3519377689345, + "center": [ + 4684.6827995238245, + 5138.4464456150245 + ] + }, + "raw_value": "SARF-#10-UFD-N2", + "clean_value": "SARF-#10-UFD-N2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "55294C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4674.300807720533, + "min_y": 5185.158968130861, + "max_x": 4675.980629746124, + "max_y": 5186.092202589522, + "center": [ + 4675.140718733328, + 5185.625585360191 + ] + }, + "raw_value": "J.W", + "clean_value": "J.W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55294D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4686.823250841722, + "min_y": 5188.494596913514, + "max_x": 4689.622954217706, + "max_y": 5189.427831372175, + "center": [ + 4688.223102529714, + 5188.961214142844 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55294E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4692.411021353504, + "min_y": 5188.506753274184, + "max_x": 4695.210724729488, + "max_y": 5189.439987732845, + "center": [ + 4693.810873041496, + 5188.973370503514 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55294F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4353.214111681323, + "min_y": 5212.035012397361, + "max_x": 4362.385939941045, + "max_y": 5213.733499112124, + "center": [ + 4357.800025811184, + 5212.884255754743 + ] + }, + "raw_value": "VAPORIZER", + "clean_value": "VAPORIZER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552950", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4367.068337951184, + "min_y": 5212.876462975606, + "max_x": 4372.669985753808, + "max_y": 5212.876462975606, + "center": [ + 4369.869161852495, + 5212.876462975606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4367.068337951184, + 5212.876462975606 + ], + [ + 4372.669985753808, + 5212.876462975606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552951", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4367.575027940969, + "min_y": 5209.577026232301, + "max_x": 4370.262743181914, + "max_y": 5211.070201366159, + "center": [ + 4368.918885561441, + 5210.32361379923 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552952", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4390.007811907941, + "min_y": 5187.174593321778, + "max_x": 4403.767348086414, + "max_y": 5187.174593321778, + "center": [ + 4396.887579997177, + 5187.174593321778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.007811907941, + 5187.174593321778 + ], + [ + 4403.767348086414, + 5187.174593321778 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552953", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4407.404525914567, + "min_y": 5187.174593321778, + "max_x": 4419.192255704423, + "max_y": 5187.174593321778, + "center": [ + 4413.298390809495, + 5187.174593321778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4407.404525914567, + 5187.174593321778 + ], + [ + 4419.192255704423, + 5187.174593321778 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552954", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4407.404525914567, + "min_y": 5186.040378512051, + "max_x": 4407.404525914567, + "max_y": 5188.308808131504, + "center": [ + 4407.404525914567, + 5187.174593321777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4407.404525914567, + 5186.040378512051 + ], + [ + 4407.404525914567, + 5188.308808131504 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552955", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4403.767348086414, + "min_y": 5186.040378512051, + "max_x": 4403.767348086414, + "max_y": 5188.308808131504, + "center": [ + 4403.767348086414, + 5187.174593321777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.767348086414, + 5186.040378512051 + ], + [ + 4403.767348086414, + 5188.308808131504 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552956", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4400.361831211689, + "min_y": 5187.174593321778, + "max_x": 4400.361831211689, + "max_y": 5189.816802212181, + "center": [ + 4400.361831211689, + 5188.495697766979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211689, + 5189.816802212181 + ], + [ + 4400.361831211689, + 5187.174593321778 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552957", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4400.361831211689, + "min_y": 5194.947155174191, + "max_x": 4400.361831211689, + "max_y": 5196.100712357509, + "center": [ + 4400.361831211689, + 5195.5239337658495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211689, + 5196.100712357509 + ], + [ + 4400.361831211689, + 5194.947155174191 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552958", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5194.200567607262, + "max_x": 4401.496046021415, + "max_y": 5194.200567607262, + "center": [ + 4400.361831211689, + 5194.200567607262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.496046021415, + 5194.200567607262 + ], + [ + 4399.227616401962, + 5194.200567607262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552959", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5190.563389779111, + "max_x": 4401.496046021415, + "max_y": 5190.563389779111, + "center": [ + 4400.361831211689, + 5190.563389779111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.496046021415, + 5190.563389779111 + ], + [ + 4399.227616401962, + 5190.563389779111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5192.960954694036, + "max_x": 4400.000736326776, + "max_y": 5194.200567607262, + "center": [ + 4399.614176364369, + 5193.58076115065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4399.227616401962, + 5194.200567607262 + ], + [ + 4400.000736326776, + 5192.960954694036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4400.722926096601, + "min_y": 5192.960954694036, + "max_x": 4401.496046021415, + "max_y": 5194.200567607262, + "center": [ + 4401.109486059008, + 5193.58076115065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.496046021415, + 5194.200567607262 + ], + [ + 4400.722926096601, + 5192.960954694036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.679480330199, + "min_y": 5191.699627811704, + "max_x": 4401.044182093171, + "max_y": 5193.064329574676, + "center": [ + 4400.361831211685, + 5192.38197869319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211685, + 5192.38197869319 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.227616401962, + "min_y": 5190.563389779111, + "max_x": 4400.000736326776, + "max_y": 5191.803002692345, + "center": [ + 4399.614176364369, + 5191.183196235728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.000736326776, + 5191.803002692345 + ], + [ + 4399.227616401962, + 5190.563389779111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4400.722926096601, + "min_y": 5190.563389779111, + "max_x": 4401.496046021415, + "max_y": 5191.803002692345, + "center": [ + 4401.109486059008, + 5191.183196235728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.722926096601, + 5191.803002692345 + ], + [ + 4401.496046021415, + 5190.563389779111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55295F", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4396.628893377044, + "min_y": 5196.100712357509, + "max_x": 4404.094769046334, + "max_y": 5203.566588026799, + "center": [ + 4400.361831211689, + 5199.833650192154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211689, + 5199.833650192154 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552960", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4399.141363293829, + "min_y": 5200.490894156087, + "max_x": 4401.155671481155, + "max_y": 5202.169484312191, + "center": [ + 4400.148517387492, + 5201.330189234139 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552961", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4397.223304927829, + "min_y": 5197.502020957276, + "max_x": 4403.266229489806, + "max_y": 5199.18061111338, + "center": [ + 4400.244767208818, + 5198.341316035328 + ] + }, + "raw_value": "10900A", + "clean_value": "10900A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552962", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4391.649171192128, + "min_y": 5187.174593321778, + "max_x": 4391.649171192128, + "max_y": 5189.877271538876, + "center": [ + 4391.649171192128, + 5188.525932430327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5189.877271538876 + ], + [ + 4391.649171192128, + 5187.174593321778 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "552963", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4390.007811907941, + "min_y": 5175.140778956008, + "max_x": 4390.007811907941, + "max_y": 5187.174593321778, + "center": [ + 4390.007811907941, + 5181.157686138893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.007811907941, + 5187.174593321778 + ], + [ + 4390.007811907941, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552964", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4404.23022893314, + "min_y": 5184.178815155746, + "max_x": 4406.917944174084, + "max_y": 5185.671990289604, + "center": [ + 4405.574086553612, + 5184.925402722674 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552965", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4409.31887483514, + "min_y": 5187.17459332178, + "max_x": 4409.31887483514, + "max_y": 5189.816802212184, + "center": [ + 4409.31887483514, + 5188.495697766982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5189.816802212184 + ], + [ + 4409.31887483514, + 5187.17459332178 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552966", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4409.31887483514, + "min_y": 5194.947155174194, + "max_x": 4409.31887483514, + "max_y": 5196.100712357512, + "center": [ + 4409.31887483514, + 5195.523933765853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5196.100712357512 + ], + [ + 4409.31887483514, + 5194.947155174194 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552967", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5194.200567607265, + "max_x": 4410.453089644867, + "max_y": 5194.200567607265, + "center": [ + 4409.31887483514, + 5194.200567607265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4410.453089644867, + 5194.200567607265 + ], + [ + 4408.184660025414, + 5194.200567607265 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552968", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5190.563389779113, + "max_x": 4410.453089644867, + "max_y": 5190.563389779113, + "center": [ + 4409.31887483514, + 5190.563389779113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4410.453089644867, + 5190.563389779113 + ], + [ + 4408.184660025414, + 5190.563389779113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552969", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5192.960954694038, + "max_x": 4408.957779950227, + "max_y": 5194.200567607265, + "center": [ + 4408.57121998782, + 5193.580761150652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4408.184660025414, + 5194.200567607265 + ], + [ + 4408.957779950227, + 5192.960954694038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4409.679969720053, + "min_y": 5192.960954694038, + "max_x": 4410.453089644867, + "max_y": 5194.200567607265, + "center": [ + 4410.06652968246, + 5193.580761150652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4410.453089644867, + 5194.200567607265 + ], + [ + 4409.679969720053, + 5192.960954694038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.636523953654, + "min_y": 5191.699627811707, + "max_x": 4410.001225716626, + "max_y": 5193.064329574679, + "center": [ + 4409.31887483514, + 5192.381978693193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5192.381978693193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.184660025414, + "min_y": 5190.563389779113, + "max_x": 4408.957779950227, + "max_y": 5191.803002692347, + "center": [ + 4408.57121998782, + 5191.18319623573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4408.957779950227, + 5191.803002692347 + ], + [ + 4408.184660025414, + 5190.563389779113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4409.679969720053, + "min_y": 5190.563389779113, + "max_x": 4410.453089644867, + "max_y": 5191.803002692347, + "center": [ + 4410.06652968246, + 5191.18319623573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.679969720053, + 5191.803002692347 + ], + [ + 4410.453089644867, + 5190.563389779113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4405.5859370004955, + "min_y": 5196.100712357512, + "max_x": 4413.051812669785, + "max_y": 5203.566588026802, + "center": [ + 4409.31887483514, + 5199.833650192157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5199.833650192157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55296F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4408.098406917281, + "min_y": 5200.490894156089, + "max_x": 4410.112715104607, + "max_y": 5202.169484312193, + "center": [ + 4409.105561010943, + 5201.330189234141 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552970", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4406.168995361348, + "min_y": 5197.502020957279, + "max_x": 4412.211919923325, + "max_y": 5199.180611113383, + "center": [ + 4409.190457642337, + 5198.34131603533 + ] + }, + "raw_value": "10900B", + "clean_value": "10900B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552971", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4405.585937000487, + "min_y": 5187.174593321775, + "max_x": 4407.404525914567, + "max_y": 5188.308808131504, + "center": [ + 4406.495231457528, + 5187.7417007266395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.585937000487, + 5187.174593321775 + ], + [ + 4407.404525914567, + 5188.308808131504 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552972", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4405.585937000487, + "min_y": 5186.040378512051, + "max_x": 4407.404525914567, + "max_y": 5187.174593321775, + "center": [ + 4406.495231457528, + 5186.607485916913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.585937000487, + 5187.174593321775 + ], + [ + 4407.404525914567, + 5186.040378512051 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552973", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4405.216376154858, + "min_y": 5187.174593321775, + "max_x": 4405.95549784612, + "max_y": 5187.174593321775, + "center": [ + 4405.585937000489, + 5187.174593321775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.216376154858, + 5187.174593321775 + ], + [ + 4405.95549784612, + 5187.174593321775 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552974", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4403.767348086414, + "min_y": 5187.174593321775, + "max_x": 4405.585937000487, + "max_y": 5188.308808131504, + "center": [ + 4404.676642543451, + 5187.7417007266395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.585937000487, + 5187.174593321775 + ], + [ + 4403.767348086414, + 5188.308808131504 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552975", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4403.767348086414, + "min_y": 5186.040378512051, + "max_x": 4405.585937000487, + "max_y": 5187.174593321775, + "center": [ + 4404.676642543451, + 5186.607485916913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.585937000487, + 5187.174593321775 + ], + [ + 4403.767348086414, + 5186.040378512051 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552976", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5194.261036933959, + "max_x": 4392.783386001855, + "max_y": 5194.261036933959, + "center": [ + 4391.649171192128, + 5194.261036933959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.783386001855, + 5194.261036933959 + ], + [ + 4390.514956382402, + 5194.261036933959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552977", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5190.623859105805, + "max_x": 4392.783386001855, + "max_y": 5190.623859105805, + "center": [ + 4391.649171192128, + 5190.623859105805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.783386001855, + 5190.623859105805 + ], + [ + 4390.514956382402, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552978", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5193.021424020731, + "max_x": 4391.288076307215, + "max_y": 5194.261036933959, + "center": [ + 4390.901516344808, + 5193.641230477345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.514956382402, + 5194.261036933959 + ], + [ + 4391.288076307215, + 5193.021424020731 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552979", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4392.010266077039, + "min_y": 5193.021424020731, + "max_x": 4392.783386001855, + "max_y": 5194.261036933959, + "center": [ + 4392.396826039447, + 5193.641230477345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.783386001855, + 5194.261036933959 + ], + [ + 4392.010266077039, + 5193.021424020731 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4390.966820310642, + "min_y": 5191.760097138399, + "max_x": 4392.331522073614, + "max_y": 5193.124798901371, + "center": [ + 4391.649171192128, + 5192.442448019885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5192.442448019885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4390.514956382402, + "min_y": 5190.623859105805, + "max_x": 4391.288076307215, + "max_y": 5191.86347201904, + "center": [ + 4390.901516344808, + 5191.243665562422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.288076307215, + 5191.86347201904 + ], + [ + 4390.514956382402, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4392.010266077039, + "min_y": 5190.623859105805, + "max_x": 4392.783386001855, + "max_y": 5191.86347201904, + "center": [ + 4392.396826039447, + 5191.243665562422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.010266077039, + 5191.86347201904 + ], + [ + 4392.783386001855, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4391.275877408663, + "min_y": 5189.877271538875, + "max_x": 4392.022464975593, + "max_y": 5190.6238591058045, + "center": [ + 4391.649171192128, + 5190.25056532234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5190.25056532234 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4391.275877408663, + "min_y": 5194.261036933958, + "max_x": 4392.022464975593, + "max_y": 5195.007624500888, + "center": [ + 4391.649171192128, + 5194.634330717423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5194.634330717423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55297F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4391.649171192128, + "min_y": 5198.308119935558, + "max_x": 4391.649171192128, + "max_y": 5201.409482991829, + "center": [ + 4391.649171192128, + 5199.858801463693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5201.409482991829 + ], + [ + 4391.649171192128, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552980", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4391.649171192128, + "min_y": 5199.727135309157, + "max_x": 4391.649171192128, + "max_y": 5199.727135309157, + "center": [ + 4391.649171192128, + 5199.727135309157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5199.727135309157 + ], + [ + 4391.649171192128, + 5199.727135309157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552981", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.797761967969, + "min_y": 5196.889104561961, + "max_x": 4392.500580416286, + "max_y": 5196.889104561961, + "center": [ + 4391.649171192127, + 5196.889104561961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.797761967969, + 5196.889104561961 + ], + [ + 4392.500580416286, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552982", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.809765469795, + "min_y": 5196.889104561961, + "max_x": 4392.488576914458, + "max_y": 5196.889104561961, + "center": [ + 4391.649171192126, + 5196.889104561961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.488576914458, + 5196.889104561961 + ], + [ + 4390.809765469795, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552983", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.809765469795, + "min_y": 5196.161181684204, + "max_x": 4392.488576914458, + "max_y": 5196.161181684204, + "center": [ + 4391.649171192126, + 5196.161181684204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.488576914458, + 5196.161181684204 + ], + [ + 4390.809765469795, + 5196.161181684204 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552984", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.797761967969, + "min_y": 5196.889104561961, + "max_x": 4391.649171192128, + "max_y": 5198.308119935558, + "center": [ + 4391.223466580048, + 5197.598612248759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.797761967969, + 5196.889104561961 + ], + [ + 4391.649171192128, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552985", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.993799437739, + "min_y": 5199.260816845999, + "max_x": 4392.304542946518, + "max_y": 5200.347804482601, + "center": [ + 4391.649171192128, + 5199.8043106643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.304542946518, + 5199.260816845999 + ], + [ + 4390.993799437739, + 5200.347804482601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552986", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4391.649171192128, + "min_y": 5196.889104561961, + "max_x": 4392.500580416286, + "max_y": 5198.308119935558, + "center": [ + 4392.074875804206, + 5197.598612248759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5198.308119935558 + ], + [ + 4392.500580416286, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552987", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.23015581853, + "min_y": 5198.308119935558, + "max_x": 4391.649171192128, + "max_y": 5199.159529159718, + "center": [ + 4390.939663505329, + 5198.7338245476385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.23015581853, + 5199.159529159718 + ], + [ + 4391.649171192128, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552988", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.23015581853, + "min_y": 5197.456710711399, + "max_x": 4391.649171192128, + "max_y": 5198.308119935558, + "center": [ + 4390.939663505329, + 5197.882415323478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5198.308119935558 + ], + [ + 4390.23015581853, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552989", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.23015581853, + "min_y": 5197.456710711399, + "max_x": 4390.23015581853, + "max_y": 5199.159529159718, + "center": [ + 4390.23015581853, + 5198.308119935558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.23015581853, + 5199.159529159718 + ], + [ + 4390.23015581853, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4389.502232940775, + "min_y": 5197.456710711399, + "max_x": 4389.502232940775, + "max_y": 5199.159529159718, + "center": [ + 4389.502232940775, + 5198.308119935558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4389.502232940775, + 5199.159529159718 + ], + [ + 4389.502232940775, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.993799437739, + "min_y": 5198.859563357881, + "max_x": 4392.304542946518, + "max_y": 5199.94655099448, + "center": [ + 4391.649171192128, + 5199.4030571761805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.304542946518, + 5198.859563357881 + ], + [ + 4390.993799437739, + 5199.94655099448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4390.993799437739, + "min_y": 5198.458309215514, + "max_x": 4392.304542946518, + "max_y": 5199.545296852115, + "center": [ + 4391.649171192128, + 5199.001803033814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4392.304542946518, + 5198.458309215514 + ], + [ + 4390.993799437739, + 5199.545296852115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298D", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4377.418602378003, + "min_y": 5192.108067644965, + "max_x": 4386.153676911072, + "max_y": 5193.563913400476, + "center": [ + 4381.786139644537, + 5192.835990522721 + ] + }, + "raw_value": "PSV-10900A", + "clean_value": "PSV-10900A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298E", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4377.283319691231, + "min_y": 5187.097768307961, + "max_x": 4387.765409130913, + "max_y": 5188.553614063472, + "center": [ + 4382.524364411072, + 5187.825691185717 + ] + }, + "raw_value": "SP: 0.97 MPa", + "clean_value": "SP: 0.97 MPa", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55298F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4385.795124406146, + "min_y": 5198.30811993556, + "max_x": 4390.23015581853, + "max_y": 5198.30811993556, + "center": [ + 4388.012640112338, + 5198.30811993556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4390.23015581853, + 5198.30811993556 + ], + [ + 4385.795124406146, + 5198.30811993556 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552990", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4391.649171192128, + "min_y": 5195.007624500886, + "max_x": 4391.649171192128, + "max_y": 5196.161181684204, + "center": [ + 4391.649171192128, + 5195.5844030925455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.649171192128, + 5196.161181684204 + ], + [ + 4391.649171192128, + 5195.007624500886 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552991", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5198.308119935558, + "max_x": 4414.413920096216, + "max_y": 5201.409482991829, + "center": [ + 4414.413920096216, + 5199.858801463693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5201.409482991829 + ], + [ + 4414.413920096216, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552992", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5199.727135309157, + "max_x": 4414.413920096216, + "max_y": 5199.727135309157, + "center": [ + 4414.413920096216, + 5199.727135309157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5199.727135309157 + ], + [ + 4414.413920096216, + 5199.727135309157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552993", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.562510872058, + "min_y": 5196.889104561961, + "max_x": 4415.265329320375, + "max_y": 5196.889104561961, + "center": [ + 4414.413920096216, + 5196.889104561961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.562510872058, + 5196.889104561961 + ], + [ + 4415.265329320375, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552994", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.574514373886, + "min_y": 5196.889104561961, + "max_x": 4415.253325818547, + "max_y": 5196.889104561961, + "center": [ + 4414.413920096216, + 5196.889104561961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.253325818547, + 5196.889104561961 + ], + [ + 4413.574514373886, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552995", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.574514373886, + "min_y": 5196.161181684204, + "max_x": 4415.253325818547, + "max_y": 5196.161181684204, + "center": [ + 4414.413920096216, + 5196.161181684204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.253325818547, + 5196.161181684204 + ], + [ + 4413.574514373886, + 5196.161181684204 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552996", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.562510872058, + "min_y": 5196.889104561961, + "max_x": 4414.413920096216, + "max_y": 5198.308119935558, + "center": [ + 4413.988215484137, + 5197.598612248759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.562510872058, + 5196.889104561961 + ], + [ + 4414.413920096216, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552997", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.758548341826, + "min_y": 5199.260816845999, + "max_x": 4415.069291850608, + "max_y": 5200.347804482601, + "center": [ + 4414.413920096217, + 5199.8043106643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.758548341826, + 5199.260816845999 + ], + [ + 4415.069291850608, + 5200.347804482601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552998", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5196.889104561961, + "max_x": 4415.265329320375, + "max_y": 5198.308119935558, + "center": [ + 4414.839624708296, + 5197.598612248759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5198.308119935558 + ], + [ + 4415.265329320375, + 5196.889104561961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552999", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5198.308119935558, + "max_x": 4415.832935469814, + "max_y": 5199.159529159718, + "center": [ + 4415.123427783015, + 5198.7338245476385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.832935469814, + 5199.159529159718 + ], + [ + 4414.413920096216, + 5198.308119935558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5197.456710711399, + "max_x": 4415.832935469814, + "max_y": 5198.308119935558, + "center": [ + 4415.123427783015, + 5197.882415323478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5198.308119935558 + ], + [ + 4415.832935469814, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4415.832935469814, + "min_y": 5197.456710711399, + "max_x": 4415.832935469814, + "max_y": 5199.159529159718, + "center": [ + 4415.832935469814, + 5198.308119935558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.832935469814, + 5199.159529159718 + ], + [ + 4415.832935469814, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4416.560858347572, + "min_y": 5197.456710711399, + "max_x": 4416.560858347572, + "max_y": 5199.159529159718, + "center": [ + 4416.560858347572, + 5198.308119935558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4416.560858347572, + 5199.159529159718 + ], + [ + 4416.560858347572, + 5197.456710711399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.758548341826, + "min_y": 5198.859563357881, + "max_x": 4415.069291850608, + "max_y": 5199.94655099448, + "center": [ + 4414.413920096217, + 5199.4030571761805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.758548341826, + 5198.859563357881 + ], + [ + 4415.069291850608, + 5199.94655099448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4413.758548341826, + "min_y": 5198.458309215514, + "max_x": 4415.069291850608, + "max_y": 5199.545296852115, + "center": [ + 4414.413920096217, + 5199.001803033814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.758548341826, + 5198.458309215514 + ], + [ + 4415.069291850608, + 5199.545296852115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55299F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4416.560858347572, + "min_y": 5198.30811993556, + "max_x": 4420.995889759955, + "max_y": 5198.30811993556, + "center": [ + 4418.778374053763, + 5198.30811993556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4416.560858347572, + 5198.30811993556 + ], + [ + 4420.995889759955, + 5198.30811993556 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A0", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4419.489874007664, + "min_y": 5194.25255081478, + "max_x": 4428.224948540733, + "max_y": 5195.708396570291, + "center": [ + 4423.857411274199, + 5194.980473692536 + ] + }, + "raw_value": "PSV-10900B", + "clean_value": "PSV-10900B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A1", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4419.41311272374, + "min_y": 5189.235351215435, + "max_x": 4429.021694710115, + "max_y": 5190.691196970946, + "center": [ + 4424.217403716928, + 5189.96327409319 + ] + }, + "raw_value": "SP: 0.5 MPa", + "clean_value": "SP: 0.5 MPa", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5187.174593321778, + "max_x": 4414.413920096216, + "max_y": 5189.877271538876, + "center": [ + 4414.413920096216, + 5188.525932430327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5189.877271538876 + ], + [ + 4414.413920096216, + 5187.174593321778 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5529A3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5194.261036933959, + "max_x": 4415.548134905942, + "max_y": 5194.261036933959, + "center": [ + 4414.413920096216, + 5194.261036933959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.548134905942, + 5194.261036933959 + ], + [ + 4413.27970528649, + 5194.261036933959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5190.623859105805, + "max_x": 4415.548134905942, + "max_y": 5190.623859105805, + "center": [ + 4414.413920096216, + 5190.623859105805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.548134905942, + 5190.623859105805 + ], + [ + 4413.27970528649, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5193.021424020731, + "max_x": 4414.052825211303, + "max_y": 5194.261036933959, + "center": [ + 4413.666265248896, + 5193.641230477345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.27970528649, + 5194.261036933959 + ], + [ + 4414.052825211303, + 5193.021424020731 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4414.775014981129, + "min_y": 5193.021424020731, + "max_x": 4415.548134905942, + "max_y": 5194.261036933959, + "center": [ + 4415.161574943535, + 5193.641230477345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.548134905942, + 5194.261036933959 + ], + [ + 4414.775014981129, + 5193.021424020731 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A7", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4413.731569214728, + "min_y": 5191.760097138399, + "max_x": 4415.0962709776995, + "max_y": 5193.124798901371, + "center": [ + 4414.413920096214, + 5192.442448019885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096214, + 5192.442448019885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4413.27970528649, + "min_y": 5190.623859105805, + "max_x": 4414.052825211303, + "max_y": 5191.86347201904, + "center": [ + 4413.666265248896, + 5191.243665562422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.052825211303, + 5191.86347201904 + ], + [ + 4413.27970528649, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529A9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4414.775014981129, + "min_y": 5190.623859105805, + "max_x": 4415.548134905942, + "max_y": 5191.86347201904, + "center": [ + 4415.161574943535, + 5191.243665562422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.775014981129, + 5191.86347201904 + ], + [ + 4415.548134905942, + 5190.623859105805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AA", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4414.040626312752, + "min_y": 5189.877271538875, + "max_x": 4414.787213879681, + "max_y": 5190.6238591058045, + "center": [ + 4414.413920096216, + 5190.25056532234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5190.25056532234 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AB", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4414.040626312752, + "min_y": 5194.261036933958, + "max_x": 4414.787213879681, + "max_y": 5195.007624500888, + "center": [ + 4414.413920096216, + 5194.634330717423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5194.634330717423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4414.413920096216, + "min_y": 5195.007624500886, + "max_x": 4414.413920096216, + "max_y": 5196.161181684204, + "center": [ + 4414.413920096216, + 5195.5844030925455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4414.413920096216, + 5196.161181684204 + ], + [ + 4414.413920096216, + 5195.007624500886 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AD", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.945581051676, + "min_y": 5189.8168022121845, + "max_x": 4409.692168618605, + "max_y": 5190.563389779114, + "center": [ + 4409.31887483514, + 5190.190095995649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5190.190095995649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AE", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4408.945581051676, + "min_y": 5194.200567607264, + "max_x": 4409.692168618605, + "max_y": 5194.9471551741935, + "center": [ + 4409.31887483514, + 5194.573861390729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4409.31887483514, + 5194.573861390729 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529AF", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.988537428224, + "min_y": 5189.816802212181, + "max_x": 4400.7351249951535, + "max_y": 5190.56338977911, + "center": [ + 4400.361831211689, + 5190.190095995646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211689, + 5190.190095995646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B0", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4399.988537428224, + "min_y": 5194.200567607262, + "max_x": 4400.7351249951535, + "max_y": 5194.947155174192, + "center": [ + 4400.361831211689, + 5194.573861390727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.361831211689, + 5194.573861390727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4379.173421895202, + "min_y": 5196.542202750649, + "max_x": 4386.964996390565, + "max_y": 5197.722744340856, + "center": [ + 4383.069209142884, + 5197.132473545753 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5529B2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4380.829309773326, + "min_y": 5194.709095358758, + "max_x": 4385.0792594980685, + "max_y": 5195.889636948964, + "center": [ + 4382.954284635697, + 5195.29936615386 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5529B3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4419.192255704423, + "min_y": 5175.140778956008, + "max_x": 4419.192255704423, + "max_y": 5187.174593321778, + "center": [ + 4419.192255704423, + 5181.157686138893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4419.192255704423, + 5187.174593321778 + ], + [ + 4419.192255704423, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4420.630909201895, + "min_y": 5198.708216305759, + "max_x": 4428.422483697257, + "max_y": 5199.888757895966, + "center": [ + 4424.526696449576, + 5199.298487100863 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5529B5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4422.28679708002, + "min_y": 5196.875108913868, + "max_x": 4426.5367468047625, + "max_y": 5198.055650504074, + "center": [ + 4424.411771942391, + 5197.46537970897 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5529B6", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4401.438833550214, + "min_y": 5175.055494460781, + "max_x": 4404.930621144308, + "max_y": 5178.547282054875, + "center": [ + 4403.184727347261, + 5176.801388257828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.184727347261, + 5176.801388257828 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4401.4788849861, + "min_y": 5177.17320405822, + "max_x": 4404.890569708432, + "max_y": 5177.17320405822, + "center": [ + 4403.184727347266, + 5177.17320405822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.4788849861, + 5177.17320405822 + ], + [ + 4404.890569708432, + 5177.17320405822 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4401.366138433188, + "min_y": 5174.006564146282, + "max_x": 4401.366138433188, + "max_y": 5176.274993765734, + "center": [ + 4401.366138433188, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.366138433188, + 5176.274993765734 + ], + [ + 4401.366138433188, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529B9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4403.184727347261, + "min_y": 5175.140778956008, + "max_x": 4403.184727347265, + "max_y": 5177.17320405822, + "center": [ + 4403.184727347263, + 5176.156991507114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.184727347265, + 5175.140778956008 + ], + [ + 4403.184727347261, + 5177.17320405822 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4405.003316261342, + "min_y": 5174.006564146282, + "max_x": 4405.003316261342, + "max_y": 5176.274993765734, + "center": [ + 4405.003316261342, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.003316261342, + 5176.274993765734 + ], + [ + 4405.003316261342, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4401.366138433188, + "min_y": 5174.006564146282, + "max_x": 4405.003316261342, + "max_y": 5176.274993765734, + "center": [ + 4403.184727347265, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.366138433188, + 5174.006564146282 + ], + [ + 4405.003316261342, + 5176.274993765734 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4401.366138433188, + "min_y": 5174.006564146282, + "max_x": 4405.003316261342, + "max_y": 5176.274993765734, + "center": [ + 4403.184727347265, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4401.366138433188, + 5176.274993765734 + ], + [ + 4405.003316261342, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4403.18472734727, + "min_y": 5175.140778956008, + "max_x": 4407.848838475758, + "max_y": 5180.009620671805, + "center": [ + 4405.516782911514, + 5177.575199813907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.18472734727, + 5175.140778956008 + ], + [ + 4407.848838475758, + 5180.009620671805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4403.184727347261, + "min_y": 5178.547282054877, + "max_x": 4403.184727347261, + "max_y": 5180.009620671805, + "center": [ + 4403.184727347261, + 5179.278451363341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.184727347261, + 5178.547282054877 + ], + [ + 4403.184727347261, + 5180.009620671805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529BF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4403.184727347261, + "min_y": 5180.009620671805, + "max_x": 4407.848838475758, + "max_y": 5180.009620671805, + "center": [ + 4405.51678291151, + 5180.009620671805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4403.184727347261, + 5180.009620671805 + ], + [ + 4407.848838475758, + 5180.009620671805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C0", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4395.509524722291, + "min_y": 5174.006564146282, + "max_x": 4395.509524722291, + "max_y": 5176.274993765734, + "center": [ + 4395.509524722291, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4395.509524722291, + 5174.006564146282 + ], + [ + 4395.509524722291, + 5176.274993765734 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C1", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4391.872346894141, + "min_y": 5174.006564146282, + "max_x": 4391.872346894141, + "max_y": 5176.274993765734, + "center": [ + 4391.872346894141, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4391.872346894141, + 5174.006564146282 + ], + [ + 4391.872346894141, + 5176.274993765734 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4405.749903828271, + "min_y": 5175.140778956008, + "max_x": 4413.746652371213, + "max_y": 5175.140778956008, + "center": [ + 4409.748278099742, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.749903828271, + 5175.140778956008 + ], + [ + 4413.746652371213, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C3", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4417.383830199365, + "min_y": 5174.006564146282, + "max_x": 4417.383830199365, + "max_y": 5176.274993765734, + "center": [ + 4417.383830199365, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4417.383830199365, + 5174.006564146282 + ], + [ + 4417.383830199365, + 5176.274993765734 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C4", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4413.746652371213, + "min_y": 5174.006564146282, + "max_x": 4413.746652371213, + "max_y": 5176.274993765734, + "center": [ + 4413.746652371213, + 5175.140778956007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4413.746652371213, + 5174.006564146282 + ], + [ + 4413.746652371213, + 5176.274993765734 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4417.383830199365, + "min_y": 5175.140778956008, + "max_x": 4428.60759254661, + "max_y": 5175.140778956008, + "center": [ + 4422.995711372987, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4417.383830199365, + 5175.140778956008 + ], + [ + 4428.60759254661, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4395.509524722291, + "min_y": 5175.140778956008, + "max_x": 4400.61955086626, + "max_y": 5175.140778956008, + "center": [ + 4398.064537794276, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4395.509524722291, + 5175.140778956008 + ], + [ + 4400.61955086626, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4392.335227740863, + "min_y": 5172.145000789977, + "max_x": 4395.022942981807, + "max_y": 5173.638175923835, + "center": [ + 4393.679085361335, + 5172.891588356906 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4401.829019279914, + "min_y": 5172.145000789977, + "max_x": 4404.516734520858, + "max_y": 5173.638175923835, + "center": [ + 4403.172876900386, + 5172.891588356906 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529C9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4414.209533217937, + "min_y": 5172.145000789977, + "max_x": 4416.897248458881, + "max_y": 5173.638175923835, + "center": [ + 4415.5533908384095, + 5172.891588356906 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4372.669985753808, + "min_y": 5175.140778956008, + "max_x": 4380.302746192656, + "max_y": 5175.140778956008, + "center": [ + 4376.486365973232, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4372.669985753808, + 5175.140778956008 + ], + [ + 4380.302746192656, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CB", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4419.022698885083, + "min_y": 5172.757286487048, + "max_x": 4431.1174174693315, + "max_y": 5173.877167837441, + "center": [ + 4425.070058177207, + 5173.317227162244 + ] + }, + "raw_value": "N2-10301-25A-F1A-n", + "clean_value": "N2-10301-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CC", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4393.690935808211, + "min_y": 5175.140778956006, + "max_x": 4395.509524722294, + "max_y": 5176.274993765735, + "center": [ + 4394.600230265252, + 5175.707886360871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4393.690935808211, + 5175.140778956006 + ], + [ + 4395.509524722294, + 5176.274993765735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CD", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4393.690935808211, + "min_y": 5174.006564146282, + "max_x": 4395.509524722294, + "max_y": 5175.140778956006, + "center": [ + 4394.600230265252, + 5174.573671551144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4393.690935808211, + 5175.140778956006 + ], + [ + 4395.509524722294, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CE", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4393.321374962584, + "min_y": 5175.140778956006, + "max_x": 4394.060496653842, + "max_y": 5175.140778956006, + "center": [ + 4393.690935808213, + 5175.140778956006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4393.321374962584, + 5175.140778956006 + ], + [ + 4394.060496653842, + 5175.140778956006 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529CF", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4391.872346894141, + "min_y": 5175.140778956006, + "max_x": 4393.690935808211, + "max_y": 5176.274993765735, + "center": [ + 4392.7816413511755, + 5175.707886360871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4393.690935808211, + 5175.140778956006 + ], + [ + 4391.872346894141, + 5176.274993765735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D0", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4391.872346894141, + "min_y": 5174.006564146282, + "max_x": 4393.690935808211, + "max_y": 5175.140778956006, + "center": [ + 4392.7816413511755, + 5174.573671551144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4393.690935808211, + 5175.140778956006 + ], + [ + 4391.872346894141, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D1", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4415.565241285286, + "min_y": 5175.140778956006, + "max_x": 4417.383830199367, + "max_y": 5176.274993765735, + "center": [ + 4416.474535742327, + 5175.707886360871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.565241285286, + 5175.140778956006 + ], + [ + 4417.383830199367, + 5176.274993765735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D2", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4415.565241285286, + "min_y": 5174.006564146282, + "max_x": 4417.383830199367, + "max_y": 5175.140778956006, + "center": [ + 4416.474535742327, + 5174.573671551144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.565241285286, + 5175.140778956006 + ], + [ + 4417.383830199367, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D3", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4415.195680439658, + "min_y": 5175.140778956006, + "max_x": 4415.934802130916, + "max_y": 5175.140778956006, + "center": [ + 4415.565241285287, + 5175.140778956006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.195680439658, + 5175.140778956006 + ], + [ + 4415.934802130916, + 5175.140778956006 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D4", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4413.746652371213, + "min_y": 5175.140778956006, + "max_x": 4415.565241285286, + "max_y": 5176.274993765735, + "center": [ + 4414.655946828249, + 5175.707886360871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.565241285286, + 5175.140778956006 + ], + [ + 4413.746652371213, + 5176.274993765735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D5", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4413.746652371213, + "min_y": 5174.006564146282, + "max_x": 4415.565241285286, + "max_y": 5175.140778956006, + "center": [ + 4414.655946828249, + 5174.573671551144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4415.565241285286, + 5175.140778956006 + ], + [ + 4413.746652371213, + 5174.006564146282 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D6", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4400.619550866259, + "min_y": 5174.767485172543, + "max_x": 4401.366138433188, + "max_y": 5175.514072739473, + "center": [ + 4400.992844649723, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4400.992844649723, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D7", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4405.003316261343, + "min_y": 5174.767485172543, + "max_x": 4405.749903828272, + "max_y": 5175.514072739473, + "center": [ + 4405.376610044807, + 5175.140778956008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4405.376610044807, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4372.669985753808, + "min_y": 5175.140778956008, + "max_x": 4372.669985753808, + "max_y": 5212.876462975606, + "center": [ + 4372.669985753808, + 5194.0086209658075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4372.669985753808, + 5175.140778956008 + ], + [ + 4372.669985753808, + 5212.876462975606 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5529D9", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4428.60759254661, + "min_y": 5175.140778956008, + "max_x": 4428.60759254661, + "max_y": 5180.884842148202, + "center": [ + 4428.60759254661, + 5178.012810552105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4428.60759254661, + 5180.884842148202 + ], + [ + 4428.60759254661, + 5175.140778956008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4445.766783126543, + "min_y": 5180.884842148202, + "max_x": 4446.764767516707, + "max_y": 5180.884842148202, + "center": [ + 4446.2657753216245, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.766783126543, + 5180.884842148202 + ], + [ + 4446.764767516707, + 5180.884842148202 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5184.966321084818, + "max_x": 4462.25956126588, + "max_y": 5184.966321084818, + "center": [ + 4461.659960094677, + 5184.966321084818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4462.25956126588, + 5184.966321084818 + ], + [ + 4461.060358923474, + 5184.966321084818 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5183.043531797522, + "max_x": 4462.25956126588, + "max_y": 5183.043531797522, + "center": [ + 4461.659960094677, + 5183.043531797522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4462.25956126588, + 5183.043531797522 + ], + [ + 4461.060358923474, + 5183.043531797522 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5184.31100134447, + "max_x": 4461.469067757482, + "max_y": 5184.966321084818, + "center": [ + 4461.264713340478, + 5184.638661214644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4461.060358923474, + 5184.966321084818 + ], + [ + 4461.469067757482, + 5184.31100134447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.850852431873, + "min_y": 5184.31100134447, + "max_x": 4462.25956126588, + "max_y": 5184.966321084818, + "center": [ + 4462.055206848876, + 5184.638661214644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4462.25956126588, + 5184.966321084818 + ], + [ + 4461.850852431873, + 5184.31100134447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529DF", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.299236196345, + "min_y": 5183.6442025428405, + "max_x": 4462.02068399301, + "max_y": 5184.365650339505, + "center": [ + 4461.659960094677, + 5184.004926441173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4461.659960094677, + 5184.004926441173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5183.043531797522, + "max_x": 4461.469067757482, + "max_y": 5183.698851537876, + "center": [ + 4461.264713340478, + 5183.371191667698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4461.469067757482, + 5183.698851537876 + ], + [ + 4461.060358923474, + 5183.043531797522 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.850852431873, + "min_y": 5183.043531797522, + "max_x": 4462.25956126588, + "max_y": 5183.698851537876, + "center": [ + 4462.055206848876, + 5183.371191667698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4461.850852431873, + 5183.698851537876 + ], + [ + 4462.25956126588, + 5183.043531797522 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5182.648849259701, + "max_x": 4462.25956126588, + "max_y": 5182.648849259701, + "center": [ + 4461.659960094677, + 5182.648849259701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4462.25956126588, + 5182.648849259701 + ], + [ + 4461.060358923474, + 5182.648849259701 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4461.060358923474, + "min_y": 5185.361003622639, + "max_x": 4462.25956126588, + "max_y": 5185.361003622639, + "center": [ + 4461.659960094677, + 5185.361003622639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4462.25956126588, + 5185.361003622639 + ], + [ + 4461.060358923474, + 5185.361003622639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4461.659960094677, + "min_y": 5180.900680967105, + "max_x": 4461.659960094677, + "max_y": 5182.648849259701, + "center": [ + 4461.659960094677, + 5181.774765113403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4461.659960094677, + 5182.648849259701 + ], + [ + 4461.659960094677, + 5180.900680967105 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4440.852851896124, + "min_y": 5180.884842148202, + "max_x": 4441.606440400652, + "max_y": 5180.884842148202, + "center": [ + 4441.2296461483875, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4441.606440400652, + 5180.884842148202 + ], + [ + 4440.852851896124, + 5180.884842148202 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5529E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5210.463013913511, + "max_x": 4351.123613584916, + "max_y": 5215.289908485813, + "center": [ + 4351.123613584916, + 5212.876461199661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4351.123613584916, + 5215.289908485813 + ], + [ + 4351.123613584916, + 5210.463013913511 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5210.463001884587, + "max_x": 4364.654876860166, + "max_y": 5210.463013913511, + "center": [ + 4357.889245222541, + 5210.4630078990485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4351.123613584916, + 5210.463013913511 + ], + [ + 4364.654876860166, + 5210.463001884587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4364.654876860166, + "min_y": 5210.463001884587, + "max_x": 4367.068337951184, + "max_y": 5212.876462975606, + "center": [ + 4365.861607405675, + 5211.669732430097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4364.654876860166, + 5210.463001884587 + ], + [ + 4367.068337951184, + 5212.876462975606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4364.654876860166, + "min_y": 5212.876462975606, + "max_x": 4367.068337951184, + "max_y": 5215.289924066625, + "center": [ + 4365.861607405675, + 5214.083193521115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4367.068337951184, + 5212.876462975606 + ], + [ + 4364.654876860166, + 5215.289924066625 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5210.463013913511, + "max_x": 4351.123613584916, + "max_y": 5215.289908485813, + "center": [ + 4351.123613584916, + 5212.876461199661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4351.123613584916, + 5215.289908485813 + ], + [ + 4351.123613584916, + 5210.463013913511 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5210.463001884587, + "max_x": 4364.654876860166, + "max_y": 5210.463013913511, + "center": [ + 4357.889245222541, + 5210.4630078990485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4351.123613584916, + 5210.463013913511 + ], + [ + 4364.654876860166, + 5210.463001884587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4351.123613584916, + "min_y": 5215.289908485813, + "max_x": 4364.654876860166, + "max_y": 5215.289924066625, + "center": [ + 4357.889245222541, + 5215.289916276219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4351.123613584916, + 5215.289908485813 + ], + [ + 4364.654876860166, + 5215.289924066625 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4364.654876860166, + "min_y": 5210.463001884587, + "max_x": 4367.068337951184, + "max_y": 5212.876462975606, + "center": [ + 4365.861607405675, + 5211.669732430097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4364.654876860166, + 5210.463001884587 + ], + [ + 4367.068337951184, + 5212.876462975606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4364.654876860166, + "min_y": 5212.876462975606, + "max_x": 4367.068337951184, + "max_y": 5215.289924066625, + "center": [ + 4365.861607405675, + 5214.083193521115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4367.068337951184, + 5212.876462975606 + ], + [ + 4364.654876860166, + 5215.289924066625 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529EF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4316.863223494261, + "min_y": 5210.509279185927, + "max_x": 4328.863223494261, + "max_y": 5215.509279185927, + "center": [ + 4322.863223494261, + 5213.009279185927 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5529F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.892762213689, + "min_y": 5165.581334701872, + "max_x": 4544.892762213689, + "max_y": 5404.077882878445, + "center": [ + 4544.892762213689, + 5284.829608790158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.892762213689, + 5165.581334701872 + ], + [ + 4544.892762213689, + 5404.077882878445 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5529F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.900630841128, + "min_y": 5384.307952218113, + "max_x": 4574.178799737494, + "max_y": 5384.307952218113, + "center": [ + 4559.539715289311, + 5384.307952218113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.900630841128, + 5384.307952218113 + ], + [ + 4574.178799737494, + 5384.307952218113 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5529F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5242.728195179058, + "max_x": 4574.178799737494, + "max_y": 5247.555089751359, + "center": [ + 4574.178799737494, + 5245.141642465209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5247.555089751359 + ], + [ + 4574.178799737494, + 5242.728195179058 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5242.728183150135, + "max_x": 4596.605634897696, + "max_y": 5242.728195179058, + "center": [ + 4585.392217317595, + 5242.728189164596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5242.728195179058 + ], + [ + 4596.605634897696, + 5242.728183150135 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5242.728183150135, + "max_x": 4599.019095988714, + "max_y": 5245.141644241154, + "center": [ + 4597.812365443206, + 5243.934913695644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5242.728183150135 + ], + [ + 4599.019095988714, + 5245.141644241154 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5245.141644241154, + "max_x": 4599.019095988714, + "max_y": 5247.555105332172, + "center": [ + 4597.812365443206, + 5246.348374786663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5245.141644241154 + ], + [ + 4596.605634897696, + 5247.555105332172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5242.728195179058, + "max_x": 4574.178799737494, + "max_y": 5247.555089751359, + "center": [ + 4574.178799737494, + 5245.141642465209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5247.555089751359 + ], + [ + 4574.178799737494, + 5242.728195179058 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4581.688928686088, + "min_y": 5244.305509613854, + "max_x": 4588.740708283154, + "max_y": 5245.984504756013, + "center": [ + 4585.214818484621, + 5245.145007184934 + ] + }, + "raw_value": "C-10211", + "clean_value": "C-10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5242.728183150135, + "max_x": 4596.605634897696, + "max_y": 5242.728195179058, + "center": [ + 4585.392217317595, + 5242.728189164596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5242.728195179058 + ], + [ + 4596.605634897696, + 5242.728183150135 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5247.555089751359, + "max_x": 4596.605634897696, + "max_y": 5247.555105332172, + "center": [ + 4585.392217317595, + 5247.555097541766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5247.555089751359 + ], + [ + 4596.605634897696, + 5247.555105332172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5242.728183150135, + "max_x": 4599.019095988714, + "max_y": 5245.141644241154, + "center": [ + 4597.812365443206, + 5243.934913695644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5242.728183150135 + ], + [ + 4599.019095988714, + 5245.141644241154 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5245.141644241154, + "max_x": 4599.019095988714, + "max_y": 5247.555105332172, + "center": [ + 4597.812365443206, + 5246.348374786663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5245.141644241154 + ], + [ + 4596.605634897696, + 5247.555105332172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5234.413631085431, + "max_x": 4574.178799737494, + "max_y": 5239.240525657734, + "center": [ + 4574.178799737494, + 5236.8270783715825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5239.240525657734 + ], + [ + 4574.178799737494, + 5234.413631085431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5234.41361905651, + "max_x": 4596.605634897696, + "max_y": 5234.413631085431, + "center": [ + 4585.392217317595, + 5234.413625070971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5234.413631085431 + ], + [ + 4596.605634897696, + 5234.41361905651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5234.41361905651, + "max_x": 4599.019095988714, + "max_y": 5236.827080147528, + "center": [ + 4597.812365443206, + 5235.620349602019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5234.41361905651 + ], + [ + 4599.019095988714, + 5236.827080147528 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5529FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5236.827080147528, + "max_x": 4599.019095988714, + "max_y": 5239.240541238547, + "center": [ + 4597.812365443206, + 5238.033810693038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5236.827080147528 + ], + [ + 4596.605634897696, + 5239.240541238547 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5234.413631085431, + "max_x": 4574.178799737494, + "max_y": 5239.240525657734, + "center": [ + 4574.178799737494, + 5236.8270783715825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5239.240525657734 + ], + [ + 4574.178799737494, + 5234.413631085431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A01", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4581.688928686088, + "min_y": 5235.990945520228, + "max_x": 4588.740708283154, + "max_y": 5237.669940662387, + "center": [ + 4585.214818484621, + 5236.830443091307 + ] + }, + "raw_value": "C-10111", + "clean_value": "C-10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5234.41361905651, + "max_x": 4596.605634897696, + "max_y": 5234.413631085431, + "center": [ + 4585.392217317595, + 5234.413625070971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5234.413631085431 + ], + [ + 4596.605634897696, + 5234.41361905651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5239.240525657734, + "max_x": 4596.605634897696, + "max_y": 5239.240541238547, + "center": [ + 4585.392217317595, + 5239.240533448141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5239.240525657734 + ], + [ + 4596.605634897696, + 5239.240541238547 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5234.41361905651, + "max_x": 4599.019095988714, + "max_y": 5236.827080147528, + "center": [ + 4597.812365443206, + 5235.620349602019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5234.41361905651 + ], + [ + 4599.019095988714, + 5236.827080147528 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5236.827080147528, + "max_x": 4599.019095988714, + "max_y": 5239.240541238547, + "center": [ + 4597.812365443206, + 5238.033810693038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5236.827080147528 + ], + [ + 4596.605634897696, + 5239.240541238547 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5381.894504931963, + "max_x": 4574.178799737494, + "max_y": 5386.721399504264, + "center": [ + 4574.178799737494, + 5384.307952218113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5386.721399504264 + ], + [ + 4574.178799737494, + 5381.894504931963 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5381.894492903041, + "max_x": 4596.605634897696, + "max_y": 5381.894504931963, + "center": [ + 4585.392217317595, + 5381.894498917502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5381.894504931963 + ], + [ + 4596.605634897696, + 5381.894492903041 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5381.902555333693, + "max_x": 4599.019095988714, + "max_y": 5384.316016424712, + "center": [ + 4597.812365443206, + 5383.109285879203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5381.902555333693 + ], + [ + 4599.019095988714, + 5384.316016424712 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5381.894504931963, + "max_x": 4574.178799737494, + "max_y": 5386.721399504264, + "center": [ + 4574.178799737494, + 5384.307952218113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5386.721399504264 + ], + [ + 4574.178799737494, + 5381.894504931963 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5381.894492903041, + "max_x": 4596.605634897696, + "max_y": 5381.894504931963, + "center": [ + 4585.392217317595, + 5381.894498917502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5381.894504931963 + ], + [ + 4596.605634897696, + 5381.894492903041 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5386.721399504264, + "max_x": 4596.605634897696, + "max_y": 5386.721415085077, + "center": [ + 4585.392217317595, + 5386.72140729467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5386.721399504264 + ], + [ + 4596.605634897696, + 5386.721415085077 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5381.902555333693, + "max_x": 4599.019095988714, + "max_y": 5384.316016424712, + "center": [ + 4597.812365443206, + 5383.109285879203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5381.902555333693 + ], + [ + 4599.019095988714, + 5384.316016424712 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5384.316016424712, + "max_x": 4599.019095988714, + "max_y": 5386.72947751573, + "center": [ + 4597.812365443206, + 5385.52274697022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5384.316016424712 + ], + [ + 4596.605634897696, + 5386.72947751573 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5383.661030348825, + "max_x": 4598.6850221486075, + "max_y": 5385.340025490984, + "center": [ + 4588.611051295656, + 5384.500527919905 + ] + }, + "raw_value": "4F #10 Plant Utility", + "clean_value": "4F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "552A0F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5547.121550962174, + "min_y": 5137.63704808581, + "max_x": 5568.853362656012, + "max_y": 5139.4480323936305, + "center": [ + 5557.987456809093, + 5138.54254023972 + ] + }, + "raw_value": "SARF-UTILITY-UFD-CHW", + "clean_value": "SARF-UTILITY-UFD-CHW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552A10", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5537.277573352795, + "min_y": 5148.461728642411, + "max_x": 5564.873524710049, + "max_y": 5150.761391255515, + "center": [ + 5551.075549031422, + 5149.611559948963 + ] + }, + "raw_value": "UTILITY FLOW DIAGRAM", + "clean_value": "UTILITY FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552A11", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5538.872877880467, + "min_y": 5144.232333452508, + "max_x": 5563.709234101996, + "max_y": 5146.5319960656125, + "center": [ + 5551.291055991232, + 5145.38216475906 + ] + }, + "raw_value": "CHILLED WATER LINE", + "clean_value": "CHILLED WATER LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "552A12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5353.752479542964, + "min_y": 5280.475982396627, + "max_x": 5363.850050063413, + "max_y": 5280.475982396627, + "center": [ + 5358.801264803188, + 5280.475982396627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5353.752479542964, + 5280.475982396627 + ], + [ + 5363.850050063413, + 5280.475982396627 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5364.098912585721, + "min_y": 5280.475982396627, + "max_x": 5369.860037335244, + "max_y": 5280.475982396627, + "center": [ + 5366.979474960483, + 5280.475982396627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.098912585721, + 5280.475982396627 + ], + [ + 5369.860037335244, + 5280.475982396627 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5373.175348021248, + "min_y": 5280.475982396627, + "max_x": 5548.47385230661, + "max_y": 5280.475982396627, + "center": [ + 5460.824600163929, + 5280.475982396627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5373.175348021248, + 5280.475982396627 + ], + [ + 5548.47385230661, + 5280.475982396627 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5279.868743492998, + "min_y": 5289.09242213373, + "max_x": 5354.715495461636, + "max_y": 5289.09242213373, + "center": [ + 5317.292119477317, + 5289.09242213373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5279.868743492998, + 5289.09242213373 + ], + [ + 5354.715495461636, + 5289.09242213373 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5364.040793419474, + "min_y": 5289.09242213373, + "max_x": 5548.47385230661, + "max_y": 5289.092422133733, + "center": [ + 5456.257322863042, + 5289.092422133732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.040793419474, + 5289.09242213373 + ], + [ + 5548.47385230661, + 5289.092422133733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5367.209472809694, + "min_y": 5280.475982396627, + "max_x": 5367.209472809694, + "max_y": 5283.126546922176, + "center": [ + 5367.209472809694, + 5281.801264659402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5367.209472809694, + 5280.475982396627 + ], + [ + 5367.209472809694, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.162442598004, + "min_y": 5311.033905731008, + "max_x": 5334.162442598004, + "max_y": 5352.335109299598, + "center": [ + 5334.162442598004, + 5331.684507515303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5334.162442598004, + 5311.033905731008 + ], + [ + 5334.162442598004, + 5352.335109299598 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.162442598004, + "min_y": 5352.335109299598, + "max_x": 5455.890548835716, + "max_y": 5352.335109299598, + "center": [ + 5395.02649571686, + 5352.335109299598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5334.162442598004, + 5352.335109299598 + ], + [ + 5455.890548835716, + 5352.335109299598 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5319.650345468114, + "max_x": 5325.027887996228, + "max_y": 5360.951549036704, + "center": [ + 5325.027887996228, + 5340.300947252409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.027887996228, + 5319.650345468114 + ], + [ + 5325.027887996228, + 5360.951549036704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5360.951549036704, + "max_x": 5455.890548835716, + "max_y": 5360.951549036704, + "center": [ + 5390.459218415972, + 5360.951549036704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.027887996228, + 5360.951549036704 + ], + [ + 5455.890548835716, + 5360.951549036704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A1C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5417.703872724609, + "min_y": 5387.217942747003, + "max_x": 5427.818386927504, + "max_y": 5411.440289419929, + "center": [ + 5422.761129826056, + 5399.329116083466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5427.818386927504, + 5387.217942747003 + ], + [ + 5427.818386927504, + 5411.440289419929 + ], + [ + 5417.703872724609, + 5411.440289419929 + ], + [ + 5417.703872724609, + 5387.217942747003 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A1D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5423.88162497453, + "min_y": 5393.53783946208, + "max_x": 5435.976343558778, + "max_y": 5395.777602162867, + "center": [ + 5429.928984266654, + 5394.657720812474 + ] + }, + "raw_value": "%%UE-9117", + "clean_value": "E-9117", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A1E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5404.140552077887, + "min_y": 5372.312946536154, + "max_x": 5420.266843523552, + "max_y": 5373.8061216700125, + "center": [ + 5412.20369780072, + 5373.059534103084 + ] + }, + "raw_value": "CHR-9641-50A-F-C50", + "clean_value": "CHR-9641-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A1F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5410.817548652298, + "min_y": 5365.381665362789, + "max_x": 5426.9438400979625, + "max_y": 5366.874840496647, + "center": [ + 5418.88069437513, + 5366.128252929719 + ] + }, + "raw_value": "CHS-9631-50A-F-C50", + "clean_value": "CHS-9631-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.357424415584, + "min_y": 5402.539078045404, + "max_x": 5417.703872724609, + "max_y": 5402.539078045404, + "center": [ + 5414.030648570097, + 5402.539078045404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5410.357424415584, + 5402.539078045404 + ], + [ + 5417.703872724609, + 5402.539078045404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A21", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5412.707822490061, + "min_y": 5403.335088365954, + "max_x": 5415.395537731005, + "max_y": 5405.574851066741, + "center": [ + 5414.051680110533, + 5404.4549697163475 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5411.502330592408, + "min_y": 5389.475401419132, + "max_x": 5417.703872724609, + "max_y": 5389.475401419132, + "center": [ + 5414.603101658508, + 5389.475401419132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5411.502330592408, + 5389.475401419132 + ], + [ + 5417.703872724609, + 5389.475401419132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.825334017995, + "min_y": 5409.182830747802, + "max_x": 5417.703872724609, + "max_y": 5409.182830747802, + "center": [ + 5411.264603371303, + 5409.182830747802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.825334017995, + 5409.182830747802 + ], + [ + 5417.703872724609, + 5409.182830747802 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A26", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5438.253673818592, + "min_y": 5371.84528408423, + "max_x": 5455.275870344572, + "max_y": 5373.338459218088, + "center": [ + 5446.764772081582, + 5372.591871651159 + ] + }, + "raw_value": "CHR-9642-100A-F-C50", + "clean_value": "CHR-9642-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A27", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5444.930670393006, + "min_y": 5364.914002910865, + "max_x": 5461.952866918986, + "max_y": 5366.407178044723, + "center": [ + 5453.4417686559955, + 5365.660590477793 + ] + }, + "raw_value": "CHS-9632-100A-F-C50", + "clean_value": "CHS-9632-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5445.615452333115, + "min_y": 5372.697234431171, + "max_x": 5552.297811044529, + "max_y": 5372.697234431171, + "center": [ + 5498.956631688822, + 5372.697234431171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5445.615452333115, + 5372.697234431171 + ], + [ + 5552.297811044529, + 5372.697234431171 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552A2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.938455758702, + "min_y": 5382.704877343247, + "max_x": 5552.297811044529, + "max_y": 5382.704877343247, + "center": [ + 5495.6181334016155, + 5382.704877343247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.938455758702, + 5382.704877343247 + ], + [ + 5552.297811044529, + 5382.704877343247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "552A2C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5343.398381468259, + "min_y": 5353.306087875949, + "max_x": 5360.420577994239, + "max_y": 5354.799263009807, + "center": [ + 5351.909479731248, + 5354.052675442877 + ] + }, + "raw_value": "CHS-9630-100A-F-C50", + "clean_value": "CHS-9630-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A2D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5337.715742371781, + "min_y": 5361.549218761728, + "max_x": 5354.737938897761, + "max_y": 5363.042393895586, + "center": [ + 5346.22684063477, + 5362.295806328657 + ] + }, + "raw_value": "CHR-9640-100A-F-C50", + "clean_value": "CHR-9640-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "552A2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.890548835716, + "min_y": 5352.335109299598, + "max_x": 5455.890548835716, + "max_y": 5355.253437944216, + "center": [ + 5455.890548835716, + 5353.7942736219065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.890548835716, + 5352.335109299598 + ], + [ + 5455.890548835716, + 5355.253437944216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.890548835716, + "min_y": 5358.568748630222, + "max_x": 5455.890548835716, + "max_y": 5360.951549036704, + "center": [ + 5455.890548835716, + 5359.760148833463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.890548835716, + 5358.568748630222 + ], + [ + 5455.890548835716, + 5360.951549036704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5411.502330592408, + "min_y": 5362.659738817959, + "max_x": 5411.502330592408, + "max_y": 5389.475401419132, + "center": [ + 5411.502330592408, + 5376.0675701185455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5411.502330592408, + 5362.659738817959 + ], + [ + 5411.502330592408, + 5389.475401419132 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5445.615452333115, + "min_y": 5362.659738817959, + "max_x": 5445.615452333115, + "max_y": 5372.697234431171, + "center": [ + 5445.615452333115, + 5367.678486624565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5445.615452333115, + 5362.659738817959 + ], + [ + 5445.615452333115, + 5372.697234431171 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.825334017995, + "min_y": 5360.951549036704, + "max_x": 5404.825334017995, + "max_y": 5363.602113562254, + "center": [ + 5404.825334017995, + 5362.276831299479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.825334017995, + 5360.951549036704 + ], + [ + 5404.825334017995, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.825334017995, + "min_y": 5366.91742424826, + "max_x": 5404.825334017995, + "max_y": 5409.182830747802, + "center": [ + 5404.825334017995, + 5388.050127498031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.825334017995, + 5366.91742424826 + ], + [ + 5404.825334017995, + 5409.182830747802 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5411.502330592408, + "min_y": 5352.335109299598, + "max_x": 5411.502330592408, + "max_y": 5354.985673825148, + "center": [ + 5411.502330592408, + 5353.660391562373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5411.502330592408, + 5352.335109299598 + ], + [ + 5411.502330592408, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5411.502330592408, + "min_y": 5358.300984511155, + "max_x": 5411.502330592408, + "max_y": 5359.840824375181, + "center": [ + 5411.502330592408, + 5359.070904443168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5411.502330592408, + 5358.300984511155 + ], + [ + 5411.502330592408, + 5359.840824375181 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.938455758702, + "min_y": 5360.951549036704, + "max_x": 5438.938455758702, + "max_y": 5363.602113562254, + "center": [ + 5438.938455758702, + 5362.276831299479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.938455758702, + 5360.951549036704 + ], + [ + 5438.938455758702, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.938455758702, + "min_y": 5366.91742424826, + "max_x": 5438.938455758702, + "max_y": 5382.704877343247, + "center": [ + 5438.938455758702, + 5374.811150795754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.938455758702, + 5366.91742424826 + ], + [ + 5438.938455758702, + 5382.704877343247 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5445.615452333115, + "min_y": 5352.335109299598, + "max_x": 5445.615452333115, + "max_y": 5354.985673825148, + "center": [ + 5445.615452333115, + 5353.660391562373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5445.615452333115, + 5352.335109299598 + ], + [ + 5445.615452333115, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5445.615452333115, + "min_y": 5358.300984511155, + "max_x": 5445.615452333115, + "max_y": 5359.840824375181, + "center": [ + 5445.615452333115, + 5359.070904443168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5445.615452333115, + 5358.300984511155 + ], + [ + 5445.615452333115, + 5359.840824375181 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.074918207918, + "min_y": 5289.09242213373, + "max_x": 5358.074918207918, + "max_y": 5291.742986659282, + "center": [ + 5358.074918207918, + 5290.417704396506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.074918207918, + 5289.09242213373 + ], + [ + 5358.074918207918, + 5291.742986659282 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.850050063413, + "min_y": 5279.729394829697, + "max_x": 5363.850050063413, + "max_y": 5281.222569963555, + "center": [ + 5363.850050063413, + 5280.475982396626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.850050063413, + 5281.222569963555 + ], + [ + 5363.850050063413, + 5279.729394829697 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5364.098912585721, + "min_y": 5279.729394829697, + "max_x": 5364.098912585721, + "max_y": 5281.222569963555, + "center": [ + 5364.098912585721, + 5280.475982396626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.098912585721, + 5281.222569963555 + ], + [ + 5364.098912585721, + 5279.729394829697 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5354.964357983947, + "min_y": 5289.09242213373, + "max_x": 5360.725482733469, + "max_y": 5289.09242213373, + "center": [ + 5357.844920358708, + 5289.09242213373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5354.964357983947, + 5289.09242213373 + ], + [ + 5360.725482733469, + 5289.09242213373 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5354.715495461636, + "min_y": 5288.345834566803, + "max_x": 5354.715495461636, + "max_y": 5289.83900970066, + "center": [ + 5354.715495461636, + 5289.092422133732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5354.715495461636, + 5289.83900970066 + ], + [ + 5354.715495461636, + 5288.345834566803 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5354.964357983947, + "min_y": 5288.345834566803, + "max_x": 5354.964357983947, + "max_y": 5289.83900970066, + "center": [ + 5354.964357983947, + 5289.092422133732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5354.964357983947, + 5289.83900970066 + ], + [ + 5354.964357983947, + 5288.345834566803 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "552A42", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5259.13327809562, + "min_y": 5181.290467564987, + "max_x": 5293.653896005142, + "max_y": 5218.072436269258, + "center": [ + 5276.393587050381, + 5199.681451917122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5293.653896005142, + 5218.072436269258 + ], + [ + 5259.13327809562, + 5218.072436269258 + ], + [ + 5259.13327809562, + 5181.290467564987 + ], + [ + 5293.653896005142, + 5181.290467564987 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A43", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5263.232157453089, + "min_y": 5195.896515261521, + "max_x": 5286.282049185195, + "max_y": 5198.030764495976, + "center": [ + 5274.757103319142, + 5196.963639878748 + ] + }, + "raw_value": "CHILLED WATER TANK", + "clean_value": "CHILLED WATER TANK", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5279.868743493, + "min_y": 5211.446289388323, + "max_x": 5279.868743493096, + "max_y": 5289.09242213373, + "center": [ + 5279.868743493048, + 5250.269355761026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5279.868743493, + 5289.09242213373 + ], + [ + 5279.868743493096, + 5211.446289388323 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A46", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.260690406128, + "min_y": 5186.13255578425, + "max_x": 5209.3341402882315, + "max_y": 5186.206005666354, + "center": [ + 5209.29741534718, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.29741534718, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A47", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.5651282031495, + "min_y": 5186.172692335839, + "max_x": 5210.638578085253, + "max_y": 5186.246142217943, + "center": [ + 5210.601853144201, + 5186.209417276891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.601853144201, + 5186.209417276891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A48", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.900433640343, + "min_y": 5186.172692335839, + "max_x": 5193.973883522447, + "max_y": 5186.246142217943, + "center": [ + 5193.937158581395, + 5186.209417276891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.937158581395, + 5186.209417276891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.167029436259, + "min_y": 5186.369963467267, + "max_x": 5211.589212215088, + "max_y": 5186.369963467267, + "center": [ + 5210.378120825673, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.589212215088, + 5186.369963467267 + ], + [ + 5209.167029436259, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5186.369963467267, + "max_x": 5208.605117769995, + "max_y": 5186.369963467267, + "center": [ + 5200.777458640252, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.605117769995, + 5186.369963467267 + ], + [ + 5192.94979951051, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.979500555744, + "min_y": 5186.048871086466, + "max_x": 5211.559511169853, + "max_y": 5186.048871086466, + "center": [ + 5202.269505862799, + 5186.048871086466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.559511169853, + 5186.048871086466 + ], + [ + 5192.979500555744, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5186.023183695985, + "max_x": 5211.589212215088, + "max_y": 5186.023183695985, + "center": [ + 5202.2695058628, + 5186.023183695985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.589212215088, + 5186.023183695985 + ], + [ + 5192.94979951051, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5195.304760328046, + "max_x": 5210.521580049, + "max_y": 5198.716366873892, + "center": [ + 5210.521580049, + 5197.010563600968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5198.716366873892 + ], + [ + 5210.521580049, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5195.304760328046, + "max_x": 5210.643193788092, + "max_y": 5195.304760328046, + "center": [ + 5210.582386918546, + 5195.304760328046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5195.304760328046 + ], + [ + 5210.643193788092, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5195.144214137671, + "max_x": 5210.643193788092, + "max_y": 5195.144214137671, + "center": [ + 5210.582386918546, + 5195.144214137671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5195.144214137671 + ], + [ + 5210.643193788092, + 5195.144214137671 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A50", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.567737078743, + "min_y": 5193.460084600482, + "max_x": 5210.635969209659, + "max_y": 5193.528316731398, + "center": [ + 5210.601853144201, + 5193.49420066594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.601853144201, + 5193.49420066594 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.643193788092, + "min_y": 5195.144214137671, + "max_x": 5210.643193788092, + "max_y": 5195.304760328046, + "center": [ + 5210.643193788092, + 5195.224487232858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.643193788092, + 5195.144214137671 + ], + [ + 5210.643193788092, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.57315759595, + "min_y": 5186.048871086466, + "max_x": 5211.57315759595, + "max_y": 5186.064925705519, + "center": [ + 5211.57315759595, + 5186.056898395993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.57315759595, + 5186.064925705519 + ], + [ + 5211.57315759595, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5186.048871086466, + "max_x": 5210.714235477474, + "max_y": 5186.048871086466, + "center": [ + 5210.617907763237, + 5186.048871086466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.714235477474, + 5186.048871086466 + ], + [ + 5210.521580049, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5193.4002811405, + "max_x": 5210.521580049, + "max_y": 5195.144214137671, + "center": [ + 5210.521580049, + 5194.272247639085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5195.144214137671 + ], + [ + 5210.521580049, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5186.048871086466, + "max_x": 5210.521580049, + "max_y": 5186.342670610883, + "center": [ + 5210.521580049, + 5186.195770848674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5186.342670610883 + ], + [ + 5210.521580049, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5198.876913064316, + "max_x": 5210.643193788092, + "max_y": 5198.876913064316, + "center": [ + 5210.582386918546, + 5198.876913064316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5198.876913064316 + ], + [ + 5210.643193788092, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5198.716366873892, + "max_x": 5210.643193788092, + "max_y": 5198.716366873892, + "center": [ + 5210.582386918546, + 5198.716366873892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5198.716366873892 + ], + [ + 5210.643193788092, + 5198.716366873892 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.643193788092, + "min_y": 5198.716366873892, + "max_x": 5210.643193788092, + "max_y": 5198.876913064316, + "center": [ + 5210.643193788092, + 5198.796639969104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.643193788092, + 5198.716366873892 + ], + [ + 5210.643193788092, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5198.876913064316, + "max_x": 5210.521580049, + "max_y": 5200.753410884825, + "center": [ + 5210.521580049, + 5199.81516197457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5200.753410884825 + ], + [ + 5210.521580049, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.521580049, + "min_y": 5200.753410884825, + "max_x": 5210.714235477474, + "max_y": 5200.753410884825, + "center": [ + 5210.617907763237, + 5200.753410884825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.714235477474, + 5200.753410884825 + ], + [ + 5210.521580049, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.5757643882625, + "min_y": 5199.924591176927, + "max_x": 5210.62794190014, + "max_y": 5199.976768688804, + "center": [ + 5210.601853144201, + 5199.950679932866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.601853144201, + 5199.950679932866 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.589212215088, + "min_y": 5186.064925705519, + "max_x": 5211.589212215088, + "max_y": 5200.737356265808, + "center": [ + 5211.589212215088, + 5193.401140985663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.589212215088, + 5200.737356265808 + ], + [ + 5211.589212215088, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.605266834157, + "min_y": 5186.064925705519, + "max_x": 5211.605266834157, + "max_y": 5200.753410884825, + "center": [ + 5211.605266834157, + 5193.409168295172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.605266834157, + 5200.753410884825 + ], + [ + 5211.605266834157, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.698180858409, + "min_y": 5186.048871086466, + "max_x": 5210.698180858409, + "max_y": 5200.753410884825, + "center": [ + 5210.698180858409, + 5193.401140985645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.698180858409, + 5200.753410884825 + ], + [ + 5210.698180858409, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.682126239339, + "min_y": 5186.048871086466, + "max_x": 5210.682126239339, + "max_y": 5200.753410884825, + "center": [ + 5210.682126239339, + 5193.401140985645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.682126239339, + 5200.753410884825 + ], + [ + 5210.682126239339, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.714235477474, + "min_y": 5200.737356265808, + "max_x": 5211.589212215088, + "max_y": 5200.737356265808, + "center": [ + 5211.151723846281, + 5200.737356265808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.714235477474, + 5200.737356265808 + ], + [ + 5211.589212215088, + 5200.737356265808 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.714235477474, + "min_y": 5200.753410884825, + "max_x": 5211.605266834157, + "max_y": 5200.753410884825, + "center": [ + 5211.159751155816, + 5200.753410884825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.714235477474, + 5200.753410884825 + ], + [ + 5211.605266834157, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.698180858409, + "min_y": 5200.737356265808, + "max_x": 5211.454125221826, + "max_y": 5200.737356265808, + "center": [ + 5211.076153040118, + 5200.737356265808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.698180858409, + 5200.737356265808 + ], + [ + 5211.454125221826, + 5200.737356265808 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.682126239339, + "min_y": 5186.048871086466, + "max_x": 5210.682126239339, + "max_y": 5200.753410884825, + "center": [ + 5210.682126239339, + 5193.401140985645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.682126239339, + 5200.753410884825 + ], + [ + 5210.682126239339, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.698180858409, + "min_y": 5186.064925705519, + "max_x": 5211.57315759595, + "max_y": 5186.064925705519, + "center": [ + 5211.135669227179, + 5186.064925705519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.57315759595, + 5186.064925705519 + ], + [ + 5210.698180858409, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.698180858409, + "min_y": 5186.048871086466, + "max_x": 5211.57315759595, + "max_y": 5186.048871086466, + "center": [ + 5211.135669227179, + 5186.048871086466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.57315759595, + 5186.048871086466 + ], + [ + 5210.698180858409, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5195.304760328046, + "max_x": 5194.017431676597, + "max_y": 5198.716366873892, + "center": [ + 5194.017431676597, + 5197.010563600968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5198.716366873892 + ], + [ + 5194.017431676597, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5195.304760328046, + "max_x": 5194.017431676597, + "max_y": 5195.304760328046, + "center": [ + 5193.956624806953, + 5195.304760328046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5195.304760328046 + ], + [ + 5193.89581793731, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5195.144214137671, + "max_x": 5194.017431676597, + "max_y": 5195.144214137671, + "center": [ + 5193.956624806953, + 5195.144214137671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5195.144214137671 + ], + [ + 5193.89581793731, + 5195.144214137671 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A69", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.903042515937, + "min_y": 5193.460084600482, + "max_x": 5193.971274646853, + "max_y": 5193.528316731398, + "center": [ + 5193.937158581395, + 5193.49420066594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.937158581395, + 5193.49420066594 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5195.144214137671, + "max_x": 5193.89581793731, + "max_y": 5195.304760328046, + "center": [ + 5193.89581793731, + 5195.224487232858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.89581793731, + 5195.144214137671 + ], + [ + 5193.89581793731, + 5195.304760328046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.965854129541, + "min_y": 5186.048871086466, + "max_x": 5192.965854129541, + "max_y": 5186.064925705519, + "center": [ + 5192.965854129541, + 5186.056898395993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.965854129541, + 5186.064925705519 + ], + [ + 5192.965854129541, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.824776248122, + "min_y": 5186.048871086466, + "max_x": 5194.017431676597, + "max_y": 5186.048871086466, + "center": [ + 5193.92110396236, + 5186.048871086466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.824776248122, + 5186.048871086466 + ], + [ + 5194.017431676597, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5193.4002811405, + "max_x": 5194.017431676597, + "max_y": 5195.144214137671, + "center": [ + 5194.017431676597, + 5194.272247639085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5195.144214137671 + ], + [ + 5194.017431676597, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5186.048871086466, + "max_x": 5194.017431676597, + "max_y": 5186.342670610883, + "center": [ + 5194.017431676597, + 5186.195770848674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5186.342670610883 + ], + [ + 5194.017431676597, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5198.876913064316, + "max_x": 5194.017431676597, + "max_y": 5198.876913064316, + "center": [ + 5193.956624806953, + 5198.876913064316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5198.876913064316 + ], + [ + 5193.89581793731, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5198.716366873892, + "max_x": 5194.017431676597, + "max_y": 5198.716366873892, + "center": [ + 5193.956624806953, + 5198.716366873892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5198.716366873892 + ], + [ + 5193.89581793731, + 5198.716366873892 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.89581793731, + "min_y": 5198.716366873892, + "max_x": 5193.89581793731, + "max_y": 5198.876913064316, + "center": [ + 5193.89581793731, + 5198.796639969104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.89581793731, + 5198.716366873892 + ], + [ + 5193.89581793731, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5198.876913064316, + "max_x": 5194.017431676597, + "max_y": 5200.753410884825, + "center": [ + 5194.017431676597, + 5199.81516197457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.017431676597, + 5200.753410884825 + ], + [ + 5194.017431676597, + 5198.876913064316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.824776248122, + "min_y": 5200.753410884825, + "max_x": 5194.017431676597, + "max_y": 5200.753410884825, + "center": [ + 5193.92110396236, + 5200.753410884825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.824776248122, + 5200.753410884825 + ], + [ + 5194.017431676597, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A74", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.911069825456, + "min_y": 5199.924591176927, + "max_x": 5193.963247337334, + "max_y": 5199.976768688804, + "center": [ + 5193.937158581395, + 5199.950679932866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.937158581395, + 5199.950679932866 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5186.064925705519, + "max_x": 5192.94979951051, + "max_y": 5200.737356265808, + "center": [ + 5192.94979951051, + 5193.401140985663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.94979951051, + 5200.737356265808 + ], + [ + 5192.94979951051, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5186.064925705519, + "max_x": 5192.933744891512, + "max_y": 5200.753410884825, + "center": [ + 5192.933744891512, + 5193.409168295172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.933744891512, + 5200.753410884825 + ], + [ + 5192.933744891512, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.840830867188, + "min_y": 5186.048871086466, + "max_x": 5193.840830867188, + "max_y": 5200.737356265808, + "center": [ + 5193.840830867188, + 5193.393113676137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.840830867188, + 5200.737356265808 + ], + [ + 5193.840830867188, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.856885486258, + "min_y": 5186.048871086466, + "max_x": 5193.856885486258, + "max_y": 5200.753410884825, + "center": [ + 5193.856885486258, + 5193.401140985645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.856885486258, + 5200.753410884825 + ], + [ + 5193.856885486258, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5200.737356265808, + "max_x": 5193.824776248122, + "max_y": 5200.737356265808, + "center": [ + 5193.387287879316, + 5200.737356265808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.824776248122, + 5200.737356265808 + ], + [ + 5192.94979951051, + 5200.737356265808 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5200.753410884825, + "max_x": 5193.824776248122, + "max_y": 5200.753410884825, + "center": [ + 5193.379260569817, + 5200.753410884825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.824776248122, + 5200.753410884825 + ], + [ + 5192.933744891512, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.084886503837, + "min_y": 5200.737356265808, + "max_x": 5193.840830867188, + "max_y": 5200.737356265808, + "center": [ + 5193.462858685512, + 5200.737356265808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.840830867188, + 5200.737356265808 + ], + [ + 5193.084886503837, + 5200.737356265808 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.856885486258, + "min_y": 5186.048871086466, + "max_x": 5193.856885486258, + "max_y": 5200.753410884825, + "center": [ + 5193.856885486258, + 5193.401140985645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.856885486258, + 5200.753410884825 + ], + [ + 5193.856885486258, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5186.064925705519, + "max_x": 5193.840830867188, + "max_y": 5186.064925705519, + "center": [ + 5193.38728787935, + 5186.064925705519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.933744891512, + 5186.064925705519 + ], + [ + 5193.840830867188, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.965854129541, + "min_y": 5186.048871086466, + "max_x": 5193.840830867188, + "max_y": 5186.048871086466, + "center": [ + 5193.4033424983645, + 5186.048871086466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.965854129541, + 5186.048871086466 + ], + [ + 5193.840830867188, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.565643716648, + "max_x": 5204.745128118585, + "max_y": 5193.565643716648, + "center": [ + 5202.269505862747, + 5193.565643716648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.565643716648 + ], + [ + 5199.793883606908, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.41312483574, + "max_x": 5204.745128118585, + "max_y": 5193.41312483574, + "center": [ + 5202.269505862747, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.41312483574 + ], + [ + 5199.793883606908, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.061714777702, + "max_x": 5204.745128118585, + "max_y": 5186.061714777702, + "center": [ + 5202.269505862747, + 5186.061714777702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5186.061714777702 + ], + [ + 5199.793883606908, + 5186.061714777702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.048871082462, + "max_x": 5204.745128118585, + "max_y": 5186.048871082462, + "center": [ + 5202.269505862747, + 5186.048871082462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5186.048871082462 + ], + [ + 5199.793883606908, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.289690368007, + "max_x": 5204.745128118585, + "max_y": 5186.289690368007, + "center": [ + 5202.269505862747, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5186.289690368007 + ], + [ + 5199.793883606908, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.745128118585, + "min_y": 5186.048871082462, + "max_x": 5204.745128118585, + "max_y": 5186.302534063248, + "center": [ + 5204.745128118585, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5186.302534063248 + ], + [ + 5204.745128118585, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.745128118585, + "min_y": 5186.302534063248, + "max_x": 5204.91851800417, + "max_y": 5186.302534063248, + "center": [ + 5204.831823061378, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5186.302534063248 + ], + [ + 5204.91851800417, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A86", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.915104314287, + "min_y": 5186.129144177704, + "max_x": 5203.995377409484, + "max_y": 5186.2094172729, + "center": [ + 5203.955240861886, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.955240861886, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.745128118585, + "min_y": 5193.4002811405, + "max_x": 5204.745128118585, + "max_y": 5193.565643716648, + "center": [ + 5204.745128118585, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.4002811405 + ], + [ + 5204.745128118585, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.745128118585, + "min_y": 5193.4002811405, + "max_x": 5204.91851800417, + "max_y": 5193.4002811405, + "center": [ + 5204.831823061378, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.4002811405 + ], + [ + 5204.91851800417, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A89", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.915104314287, + "min_y": 5193.453261383313, + "max_x": 5203.995377409484, + "max_y": 5193.533534478509, + "center": [ + 5203.955240861886, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.955240861886, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.048871082462, + "max_x": 5199.793883606908, + "max_y": 5186.302534063248, + "center": [ + 5199.793883606908, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5186.302534063248 + ], + [ + 5199.793883606908, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.543634316014, + "min_y": 5186.129144177704, + "max_x": 5200.62390741121, + "max_y": 5186.2094172729, + "center": [ + 5200.583770863612, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.583770863612, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.620493721224, + "min_y": 5186.302534063248, + "max_x": 5199.793883606908, + "max_y": 5186.302534063248, + "center": [ + 5199.707188664066, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5186.302534063248 + ], + [ + 5199.620493721224, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.543634316014, + "min_y": 5193.453261383313, + "max_x": 5200.62390741121, + "max_y": 5193.533534478509, + "center": [ + 5200.583770863612, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.583770863612, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.4002811405, + "max_x": 5199.793883606908, + "max_y": 5193.565643716648, + "center": [ + 5199.793883606908, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5193.4002811405 + ], + [ + 5199.793883606908, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.620493721224, + "min_y": 5193.4002811405, + "max_x": 5199.793883606908, + "max_y": 5193.4002811405, + "center": [ + 5199.707188664066, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5193.4002811405 + ], + [ + 5199.620493721224, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.4002811405, + "max_x": 5204.745128118585, + "max_y": 5193.4002811405, + "center": [ + 5202.269505862747, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.4002811405 + ], + [ + 5199.793883606908, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.41312483574, + "max_x": 5204.745128118585, + "max_y": 5193.41312483574, + "center": [ + 5202.269505862747, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.41312483574 + ], + [ + 5199.793883606908, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.302534063248, + "max_x": 5204.745128118585, + "max_y": 5186.302534063248, + "center": [ + 5202.269505862747, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5186.302534063248 + ], + [ + 5204.745128118585, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5186.289690368007, + "max_x": 5204.745128118585, + "max_y": 5186.289690368007, + "center": [ + 5202.269505862747, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5186.289690368007 + ], + [ + 5204.745128118585, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.565643716648, + "max_x": 5210.500709044191, + "max_y": 5193.565643716648, + "center": [ + 5207.716035371801, + 5193.565643716648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.565643716648 + ], + [ + 5204.931361699411, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.41312483574, + "max_x": 5210.500709044191, + "max_y": 5193.41312483574, + "center": [ + 5207.716035371801, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.41312483574 + ], + [ + 5204.931361699411, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.061714777702, + "max_x": 5210.500709044191, + "max_y": 5186.061714777702, + "center": [ + 5207.716035371801, + 5186.061714777702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.061714777702 + ], + [ + 5204.931361699411, + 5186.061714777702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.048871082462, + "max_x": 5210.500709044191, + "max_y": 5186.048871082462, + "center": [ + 5207.716035371801, + 5186.048871082462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.048871082462 + ], + [ + 5204.931361699411, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.289690368007, + "max_x": 5210.500709044191, + "max_y": 5186.289690368007, + "center": [ + 5207.716035371801, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.289690368007 + ], + [ + 5204.931361699411, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.674098929774, + "min_y": 5186.342670610883, + "max_x": 5210.674098929774, + "max_y": 5193.4002811405, + "center": [ + 5210.674098929774, + 5189.871475875691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.674098929774, + 5193.4002811405 + ], + [ + 5210.674098929774, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.513552739429, + "min_y": 5186.342670610883, + "max_x": 5210.513552739429, + "max_y": 5193.4002811405, + "center": [ + 5210.513552739429, + 5189.871475875691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.513552739429, + 5193.4002811405 + ], + [ + 5210.513552739429, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.513552739429, + "min_y": 5186.302534063248, + "max_x": 5210.513552739429, + "max_y": 5186.342670610883, + "center": [ + 5210.513552739429, + 5186.322602337065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.513552739429, + 5186.302534063248 + ], + [ + 5210.513552739429, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.500709044191, + "min_y": 5186.302534063248, + "max_x": 5210.513552739429, + "max_y": 5186.302534063248, + "center": [ + 5210.50713089181, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.302534063248 + ], + [ + 5210.513552739429, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.500709044191, + "min_y": 5186.048871082462, + "max_x": 5210.500709044191, + "max_y": 5186.302534063248, + "center": [ + 5210.500709044191, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.302534063248 + ], + [ + 5210.500709044191, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.561716596603, + "min_y": 5188.205809150408, + "max_x": 5210.6419896918, + "max_y": 5188.286082245604, + "center": [ + 5210.601853144201, + 5188.245945698006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.601853144201, + 5188.245945698006 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552A9F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.257278799581, + "min_y": 5186.129144177704, + "max_x": 5209.337551894778, + "max_y": 5186.2094172729, + "center": [ + 5209.29741534718, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.29741534718, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.513552739429, + "min_y": 5186.342670610883, + "max_x": 5210.674098929774, + "max_y": 5186.342670610883, + "center": [ + 5210.593825834601, + 5186.342670610883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.513552739429, + 5186.342670610883 + ], + [ + 5210.674098929774, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.500709044191, + "min_y": 5193.4002811405, + "max_x": 5210.500709044191, + "max_y": 5193.565643716648, + "center": [ + 5210.500709044191, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.565643716648 + ], + [ + 5210.500709044191, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.257278799581, + "min_y": 5193.453261383313, + "max_x": 5209.337551894778, + "max_y": 5193.533534478509, + "center": [ + 5209.29741534718, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.29741534718, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.500709044191, + "min_y": 5193.4002811405, + "max_x": 5210.674098929774, + "max_y": 5193.4002811405, + "center": [ + 5210.587403986983, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.4002811405 + ], + [ + 5210.674098929774, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.561716596603, + "min_y": 5191.737825339009, + "max_x": 5210.6419896918, + "max_y": 5191.818098434205, + "center": [ + 5210.601853144201, + 5191.777961886607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.601853144201, + 5191.777961886607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.102546158385, + "min_y": 5186.129144177704, + "max_x": 5206.182819253581, + "max_y": 5186.2094172729, + "center": [ + 5206.142682705983, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.142682705983, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.765999123394, + "min_y": 5186.302534063248, + "max_x": 5204.931361699411, + "max_y": 5186.302534063248, + "center": [ + 5204.848680411403, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5186.302534063248 + ], + [ + 5204.765999123394, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.048871082462, + "max_x": 5204.931361699411, + "max_y": 5186.302534063248, + "center": [ + 5204.931361699411, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5186.302534063248 + ], + [ + 5204.931361699411, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.102546158385, + "min_y": 5193.453261383313, + "max_x": 5206.182819253581, + "max_y": 5193.533534478509, + "center": [ + 5206.142682705983, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.142682705983, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.4002811405, + "max_x": 5204.931361699411, + "max_y": 5193.565643716648, + "center": [ + 5204.931361699411, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5193.4002811405 + ], + [ + 5204.931361699411, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.765999123394, + "min_y": 5193.4002811405, + "max_x": 5204.931361699411, + "max_y": 5193.4002811405, + "center": [ + 5204.848680411403, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5193.4002811405 + ], + [ + 5204.765999123394, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.4002811405, + "max_x": 5210.500709044191, + "max_y": 5193.4002811405, + "center": [ + 5207.716035371801, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.4002811405 + ], + [ + 5204.931361699411, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.41312483574, + "max_x": 5210.500709044191, + "max_y": 5193.41312483574, + "center": [ + 5207.716035371801, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5193.41312483574 + ], + [ + 5204.931361699411, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.302534063248, + "max_x": 5210.500709044191, + "max_y": 5186.302534063248, + "center": [ + 5207.716035371801, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5186.302534063248 + ], + [ + 5210.500709044191, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5186.289690368007, + "max_x": 5210.500709044191, + "max_y": 5186.289690368007, + "center": [ + 5207.716035371801, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5186.289690368007 + ], + [ + 5210.500709044191, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.500709044191, + "min_y": 5186.302534063248, + "max_x": 5210.500709044191, + "max_y": 5193.4002811405, + "center": [ + 5210.500709044191, + 5189.851407601874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.500709044191, + 5186.302534063248 + ], + [ + 5210.500709044191, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.513552739429, + "min_y": 5186.302534063248, + "max_x": 5210.513552739429, + "max_y": 5193.4002811405, + "center": [ + 5210.513552739429, + 5189.851407601874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.513552739429, + 5186.302534063248 + ], + [ + 5210.513552739429, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5193.565643716648, + "max_x": 5199.607650026086, + "max_y": 5193.565643716648, + "center": [ + 5196.822976353697, + 5193.565643716648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.565643716648 + ], + [ + 5199.607650026086, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5193.41312483574, + "max_x": 5199.607650026086, + "max_y": 5193.41312483574, + "center": [ + 5196.822976353697, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.41312483574 + ], + [ + 5199.607650026086, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.061714777702, + "max_x": 5199.607650026086, + "max_y": 5186.061714777702, + "center": [ + 5196.822976353697, + 5186.061714777702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.061714777702 + ], + [ + 5199.607650026086, + 5186.061714777702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.048871082462, + "max_x": 5199.607650026086, + "max_y": 5186.048871082462, + "center": [ + 5196.822976353697, + 5186.048871082462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.048871082462 + ], + [ + 5199.607650026086, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.289690368007, + "max_x": 5199.607650026086, + "max_y": 5186.289690368007, + "center": [ + 5196.822976353697, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.289690368007 + ], + [ + 5199.607650026086, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.864912795725, + "min_y": 5186.342670610883, + "max_x": 5193.864912795725, + "max_y": 5193.4002811405, + "center": [ + 5193.864912795725, + 5189.871475875691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.864912795725, + 5193.4002811405 + ], + [ + 5193.864912795725, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.025458986168, + "min_y": 5186.342670610883, + "max_x": 5194.025458986168, + "max_y": 5193.4002811405, + "center": [ + 5194.025458986168, + 5189.871475875691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.025458986168, + 5193.4002811405 + ], + [ + 5194.025458986168, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.025458986168, + "min_y": 5186.302534063248, + "max_x": 5194.025458986168, + "max_y": 5186.342670610883, + "center": [ + 5194.025458986168, + 5186.322602337065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.025458986168, + 5186.302534063248 + ], + [ + 5194.025458986168, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.025458986168, + "min_y": 5186.302534063248, + "max_x": 5194.038302681309, + "max_y": 5186.302534063248, + "center": [ + 5194.031880833738, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.302534063248 + ], + [ + 5194.025458986168, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.048871082462, + "max_x": 5194.038302681309, + "max_y": 5186.302534063248, + "center": [ + 5194.038302681309, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.302534063248 + ], + [ + 5194.038302681309, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.897022033797, + "min_y": 5188.205809150408, + "max_x": 5193.977295128993, + "max_y": 5188.286082245604, + "center": [ + 5193.937158581395, + 5188.245945698006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.937158581395, + 5188.245945698006 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.201459830714, + "min_y": 5186.129144177704, + "max_x": 5195.281732925911, + "max_y": 5186.2094172729, + "center": [ + 5195.241596378312, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.241596378312, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.864912795725, + "min_y": 5186.342670610883, + "max_x": 5194.025458986168, + "max_y": 5186.342670610883, + "center": [ + 5193.945185890947, + 5186.342670610883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.025458986168, + 5186.342670610883 + ], + [ + 5193.864912795725, + 5186.342670610883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5193.4002811405, + "max_x": 5194.038302681309, + "max_y": 5193.565643716648, + "center": [ + 5194.038302681309, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.565643716648 + ], + [ + 5194.038302681309, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ABF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.201459830714, + "min_y": 5193.453261383313, + "max_x": 5195.281732925911, + "max_y": 5193.533534478509, + "center": [ + 5195.241596378312, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.241596378312, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.864912795725, + "min_y": 5193.4002811405, + "max_x": 5194.038302681309, + "max_y": 5193.4002811405, + "center": [ + 5193.951607738517, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.4002811405 + ], + [ + 5193.864912795725, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.897022033797, + "min_y": 5191.737825339009, + "max_x": 5193.977295128993, + "max_y": 5191.818098434205, + "center": [ + 5193.937158581395, + 5191.777961886607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.937158581395, + 5191.777961886607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.3561924719115, + "min_y": 5186.129144177704, + "max_x": 5198.436465567108, + "max_y": 5186.2094172729, + "center": [ + 5198.39632901951, + 5186.169280725302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.39632901951, + 5186.169280725302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.607650026086, + "min_y": 5186.302534063248, + "max_x": 5199.773012602202, + "max_y": 5186.302534063248, + "center": [ + 5199.690331314144, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5186.302534063248 + ], + [ + 5199.773012602202, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.607650026086, + "min_y": 5186.048871082462, + "max_x": 5199.607650026086, + "max_y": 5186.302534063248, + "center": [ + 5199.607650026086, + 5186.175702572855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5186.302534063248 + ], + [ + 5199.607650026086, + 5186.048871082462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.3561924719115, + "min_y": 5193.453261383313, + "max_x": 5198.436465567108, + "max_y": 5193.533534478509, + "center": [ + 5198.39632901951, + 5193.493397930911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.39632901951, + 5193.493397930911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.607650026086, + "min_y": 5193.4002811405, + "max_x": 5199.607650026086, + "max_y": 5193.565643716648, + "center": [ + 5199.607650026086, + 5193.482962428574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5193.4002811405 + ], + [ + 5199.607650026086, + 5193.565643716648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.607650026086, + "min_y": 5193.4002811405, + "max_x": 5199.773012602202, + "max_y": 5193.4002811405, + "center": [ + 5199.690331314144, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5193.4002811405 + ], + [ + 5199.773012602202, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5193.4002811405, + "max_x": 5199.607650026086, + "max_y": 5193.4002811405, + "center": [ + 5196.822976353697, + 5193.4002811405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.4002811405 + ], + [ + 5199.607650026086, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5193.41312483574, + "max_x": 5199.607650026086, + "max_y": 5193.41312483574, + "center": [ + 5196.822976353697, + 5193.41312483574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5193.41312483574 + ], + [ + 5199.607650026086, + 5193.41312483574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.302534063248, + "max_x": 5199.607650026086, + "max_y": 5186.302534063248, + "center": [ + 5196.822976353697, + 5186.302534063248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5186.302534063248 + ], + [ + 5194.038302681309, + 5186.302534063248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.289690368007, + "max_x": 5199.607650026086, + "max_y": 5186.289690368007, + "center": [ + 5196.822976353697, + 5186.289690368007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5186.289690368007 + ], + [ + 5194.038302681309, + 5186.289690368007 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.038302681309, + "min_y": 5186.302534063248, + "max_x": 5194.038302681309, + "max_y": 5193.4002811405, + "center": [ + 5194.038302681309, + 5189.851407601874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5186.302534063248 + ], + [ + 5194.038302681309, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.025458986168, + "min_y": 5186.302534063248, + "max_x": 5194.025458986168, + "max_y": 5193.4002811405, + "center": [ + 5194.025458986168, + 5189.851407601874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.025458986168, + 5186.302534063248 + ], + [ + 5194.025458986168, + 5193.4002811405 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.951641073065, + "min_y": 5185.455652912976, + "max_x": 5210.882808977284, + "max_y": 5185.455652912976, + "center": [ + 5210.417225025174, + 5185.455652912976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.951641073065, + 5185.455652912976 + ], + [ + 5210.882808977284, + 5185.455652912976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ACF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.933178261197, + "min_y": 5185.437190101088, + "max_x": 5210.901271789251, + "max_y": 5185.437190101088, + "center": [ + 5210.417225025224, + 5185.437190101088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.933178261197, + 5185.437190101088 + ], + [ + 5210.901271789251, + 5185.437190101088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.951641073065, + "min_y": 5185.455652912976, + "max_x": 5209.951641073065, + "max_y": 5186.023183695985, + "center": [ + 5209.951641073065, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.951641073065, + 5185.455652912976 + ], + [ + 5209.951641073065, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.933178261197, + "min_y": 5185.437190101088, + "max_x": 5209.933178261197, + "max_y": 5186.023183695985, + "center": [ + 5209.933178261197, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.933178261197, + 5185.437190101088 + ], + [ + 5209.933178261197, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.933178261197, + "min_y": 5185.983047148433, + "max_x": 5209.951641073065, + "max_y": 5185.983047148433, + "center": [ + 5209.942409667131, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.951641073065, + 5185.983047148433 + ], + [ + 5209.933178261197, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.882808977284, + "min_y": 5185.455652912976, + "max_x": 5210.882808977284, + "max_y": 5186.023183695985, + "center": [ + 5210.882808977284, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.882808977284, + 5185.455652912976 + ], + [ + 5210.882808977284, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.901271789251, + "min_y": 5185.437190101088, + "max_x": 5210.901271789251, + "max_y": 5186.023183695985, + "center": [ + 5210.901271789251, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.901271789251, + 5185.437190101088 + ], + [ + 5210.901271789251, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.882808977284, + "min_y": 5185.983047148433, + "max_x": 5210.901271789251, + "max_y": 5185.983047148433, + "center": [ + 5210.892040383267, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.882808977284, + 5185.983047148433 + ], + [ + 5210.901271789251, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.533207147278, + "min_y": 5185.455652912976, + "max_x": 5205.464375051599, + "max_y": 5185.455652912976, + "center": [ + 5204.998791099439, + 5185.455652912976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.533207147278, + 5185.455652912976 + ], + [ + 5205.464375051599, + 5185.455652912976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.514744335412, + "min_y": 5185.437190101088, + "max_x": 5205.482837863474, + "max_y": 5185.437190101088, + "center": [ + 5204.998791099442, + 5185.437190101088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.514744335412, + 5185.437190101088 + ], + [ + 5205.482837863474, + 5185.437190101088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.533207147278, + "min_y": 5185.455652912976, + "max_x": 5204.533207147278, + "max_y": 5186.048871086466, + "center": [ + 5204.533207147278, + 5185.752261999721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.533207147278, + 5185.455652912976 + ], + [ + 5204.533207147278, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.514744335412, + "min_y": 5185.437190101088, + "max_x": 5204.514744335412, + "max_y": 5186.048871086466, + "center": [ + 5204.514744335412, + 5185.743030593777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.514744335412, + 5185.437190101088 + ], + [ + 5204.514744335412, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.514744335412, + "min_y": 5185.983047148433, + "max_x": 5204.533207147278, + "max_y": 5185.983047148433, + "center": [ + 5204.523975741345, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.533207147278, + 5185.983047148433 + ], + [ + 5204.514744335412, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.464375051599, + "min_y": 5185.455652912976, + "max_x": 5205.464375051599, + "max_y": 5186.048871086466, + "center": [ + 5205.464375051599, + 5185.752261999721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.464375051599, + 5185.455652912976 + ], + [ + 5205.464375051599, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.482837863474, + "min_y": 5185.437190101088, + "max_x": 5205.482837863474, + "max_y": 5186.048871086466, + "center": [ + 5205.482837863474, + 5185.743030593777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.482837863474, + 5185.437190101088 + ], + [ + 5205.482837863474, + 5186.048871086466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.464375051599, + "min_y": 5185.983047148433, + "max_x": 5205.482837863474, + "max_y": 5185.983047148433, + "center": [ + 5205.473606457536, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.464375051599, + 5185.983047148433 + ], + [ + 5205.482837863474, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.074636673998, + "min_y": 5185.455652912976, + "max_x": 5200.005804578212, + "max_y": 5185.455652912976, + "center": [ + 5199.540220626104, + 5185.455652912976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.074636673998, + 5185.455652912976 + ], + [ + 5200.005804578212, + 5185.455652912976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ADF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.056173862025, + "min_y": 5185.437190101088, + "max_x": 5200.024267390086, + "max_y": 5185.437190101088, + "center": [ + 5199.540220626055, + 5185.437190101088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.056173862025, + 5185.437190101088 + ], + [ + 5200.024267390086, + 5185.437190101088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.074636673998, + "min_y": 5185.455652912976, + "max_x": 5199.074636673998, + "max_y": 5186.023183695985, + "center": [ + 5199.074636673998, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.074636673998, + 5185.455652912976 + ], + [ + 5199.074636673998, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.056173862025, + "min_y": 5185.437190101088, + "max_x": 5199.056173862025, + "max_y": 5186.023183695985, + "center": [ + 5199.056173862025, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.056173862025, + 5185.437190101088 + ], + [ + 5199.056173862025, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.056173862025, + "min_y": 5185.983047148433, + "max_x": 5199.074636673998, + "max_y": 5185.983047148433, + "center": [ + 5199.065405268011, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.074636673998, + 5185.983047148433 + ], + [ + 5199.056173862025, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.005804578212, + "min_y": 5185.455652912976, + "max_x": 5200.005804578212, + "max_y": 5186.023183695985, + "center": [ + 5200.005804578212, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.005804578212, + 5185.455652912976 + ], + [ + 5200.005804578212, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.024267390086, + "min_y": 5185.437190101088, + "max_x": 5200.024267390086, + "max_y": 5186.023183695985, + "center": [ + 5200.024267390086, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.024267390086, + 5185.437190101088 + ], + [ + 5200.024267390086, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.005804578212, + "min_y": 5185.983047148433, + "max_x": 5200.024267390086, + "max_y": 5185.983047148433, + "center": [ + 5200.015035984148, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.005804578212, + 5185.983047148433 + ], + [ + 5200.024267390086, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.656202748212, + "min_y": 5185.455652912976, + "max_x": 5194.587370652428, + "max_y": 5185.455652912976, + "center": [ + 5194.12178670032, + 5185.455652912976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.656202748212, + 5185.455652912976 + ], + [ + 5194.587370652428, + 5185.455652912976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.637739936241, + "min_y": 5185.437190101088, + "max_x": 5194.6058334644, + "max_y": 5185.437190101088, + "center": [ + 5194.121786700321, + 5185.437190101088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.637739936241, + 5185.437190101088 + ], + [ + 5194.6058334644, + 5185.437190101088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.656202748212, + "min_y": 5185.455652912976, + "max_x": 5193.656202748212, + "max_y": 5186.023183695985, + "center": [ + 5193.656202748212, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.656202748212, + 5185.455652912976 + ], + [ + 5193.656202748212, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.637739936241, + "min_y": 5185.437190101088, + "max_x": 5193.637739936241, + "max_y": 5186.023183695985, + "center": [ + 5193.637739936241, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.637739936241, + 5185.437190101088 + ], + [ + 5193.637739936241, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.637739936241, + "min_y": 5185.983047148433, + "max_x": 5193.656202748212, + "max_y": 5185.983047148433, + "center": [ + 5193.646971342227, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.656202748212, + 5185.983047148433 + ], + [ + 5193.637739936241, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.587370652428, + "min_y": 5185.455652912976, + "max_x": 5194.587370652428, + "max_y": 5186.023183695985, + "center": [ + 5194.587370652428, + 5185.73941830448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.587370652428, + 5185.455652912976 + ], + [ + 5194.587370652428, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.6058334644, + "min_y": 5185.437190101088, + "max_x": 5194.6058334644, + "max_y": 5186.023183695985, + "center": [ + 5194.6058334644, + 5185.730186898536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.6058334644, + 5185.437190101088 + ], + [ + 5194.6058334644, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.587370652428, + "min_y": 5185.983047148433, + "max_x": 5194.6058334644, + "max_y": 5185.983047148433, + "center": [ + 5194.596602058415, + 5185.983047148433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.587370652428, + 5185.983047148433 + ], + [ + 5194.6058334644, + 5185.983047148433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.589212215088, + "min_y": 5186.023183695985, + "max_x": 5211.589212215088, + "max_y": 5186.064925705519, + "center": [ + 5211.589212215088, + 5186.044054700752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.589212215088, + 5186.064925705519 + ], + [ + 5211.589212215088, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.57315759595, + "min_y": 5186.064925705519, + "max_x": 5211.605266834157, + "max_y": 5186.064925705519, + "center": [ + 5211.5892122150535, + 5186.064925705519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.57315759595, + 5186.064925705519 + ], + [ + 5211.605266834157, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5186.064925705519, + "max_x": 5192.965854129541, + "max_y": 5186.064925705519, + "center": [ + 5192.949799510527, + 5186.064925705519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.965854129541, + 5186.064925705519 + ], + [ + 5192.933744891512, + 5186.064925705519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.94979951051, + "min_y": 5186.023183695985, + "max_x": 5192.94979951051, + "max_y": 5186.064925705519, + "center": [ + 5192.94979951051, + 5186.044054700752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.94979951051, + 5186.064925705519 + ], + [ + 5192.94979951051, + 5186.023183695985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.017431676597, + "min_y": 5200.753410884825, + "max_x": 5210.521580049, + "max_y": 5200.753410884825, + "center": [ + 5202.269505862798, + 5200.753410884825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.521580049, + 5200.753410884825 + ], + [ + 5194.017431676597, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.065223335956, + "min_y": 5200.593871684834, + "max_x": 5208.065223335956, + "max_y": 5201.529744746113, + "center": [ + 5208.065223335956, + 5201.061808215473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.065223335956, + 5201.529744746113 + ], + [ + 5208.065223335956, + 5200.593871684834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.045155062157, + "min_y": 5200.71327433726, + "max_x": 5208.085291609755, + "max_y": 5200.753410884858, + "center": [ + 5208.065223335956, + 5200.733342611059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.065223335956, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.28777424217, + "min_y": 5200.7132743372595, + "max_x": 5205.335938099288, + "max_y": 5200.761438194378, + "center": [ + 5205.311856170729, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.311856170729, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.239610385049, + "min_y": 5200.713274337261, + "max_x": 5205.239610385049, + "max_y": 5200.753410884859, + "center": [ + 5205.239610385049, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.239610385049, + 5200.753410884859 + ], + [ + 5205.239610385049, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.794508572628, + "min_y": 5200.7132743372595, + "max_x": 5210.842672429746, + "max_y": 5200.761438194378, + "center": [ + 5210.818590501187, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.818590501187, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.890836286864, + "min_y": 5200.713274337261, + "max_x": 5210.890836286864, + "max_y": 5200.753410884859, + "center": [ + 5210.890836286864, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.890836286864, + 5200.753410884859 + ], + [ + 5210.890836286864, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.818590501187, + "min_y": 5200.713274337261, + "max_x": 5210.890836286864, + "max_y": 5200.713274337261, + "center": [ + 5210.854713394026, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.890836286864, + 5200.713274337261 + ], + [ + 5210.818590501187, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.239610385049, + "min_y": 5200.713274337261, + "max_x": 5205.311856170729, + "max_y": 5200.713274337261, + "center": [ + 5205.275733277889, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.239610385049, + 5200.713274337261 + ], + [ + 5205.311856170729, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.12339275106, + "min_y": 5201.33940447979, + "max_x": 5208.045155062158, + "max_y": 5201.33940447979, + "center": [ + 5207.084273906609, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.12339275106, + 5201.33940447979 + ], + [ + 5208.045155062158, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.076248019725, + "min_y": 5201.332326375843, + "max_x": 5208.045155062158, + "max_y": 5201.332326375843, + "center": [ + 5207.060701540942, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.076248019725, + 5201.332326375843 + ], + [ + 5208.045155062158, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.995242435531, + "max_x": 5208.045155062158, + "max_y": 5200.995242435531, + "center": [ + 5207.004128156035, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5200.995242435531 + ], + [ + 5208.045155062158, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.971160506972, + "max_x": 5208.045155062158, + "max_y": 5200.971160506972, + "center": [ + 5207.004128156035, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5200.971160506972 + ], + [ + 5208.045155062158, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552AFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.898914721295, + "max_x": 5208.045155062158, + "max_y": 5200.898914721295, + "center": [ + 5207.004128156035, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5200.898914721295 + ], + [ + 5208.045155062158, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.874832792736, + "max_x": 5208.045155062158, + "max_y": 5200.874832792736, + "center": [ + 5207.004128156035, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5200.874832792736 + ], + [ + 5208.045155062158, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.801574741976, + "max_x": 5207.99297755028, + "max_y": 5200.801574741976, + "center": [ + 5206.978039400096, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5200.801574741976 + ], + [ + 5207.99297755028, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5201.163815935443, + "max_x": 5208.045155062158, + "max_y": 5201.163815935443, + "center": [ + 5207.004128156035, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5201.163815935443 + ], + [ + 5208.045155062158, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5201.091570149766, + "max_x": 5208.045155062158, + "max_y": 5201.091570149766, + "center": [ + 5207.004128156035, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5201.091570149766 + ], + [ + 5208.045155062158, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5201.067488221207, + "max_x": 5208.045155062158, + "max_y": 5201.067488221207, + "center": [ + 5207.004128156035, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5201.067488221207 + ], + [ + 5208.045155062158, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.999744522572, + "min_y": 5201.281260412626, + "max_x": 5208.045155062158, + "max_y": 5201.281260412626, + "center": [ + 5207.022449792365, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.999744522572, + 5201.281260412626 + ], + [ + 5208.045155062158, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.983246304953, + "min_y": 5201.257178484067, + "max_x": 5208.045155062158, + "max_y": 5201.257178484067, + "center": [ + 5207.014200683556, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.983246304953, + 5201.257178484067 + ], + [ + 5208.045155062158, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5201.187897864002, + "max_x": 5208.045155062158, + "max_y": 5201.187897864002, + "center": [ + 5207.004128156035, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5201.187897864002 + ], + [ + 5208.045155062158, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.777492813418, + "max_x": 5207.968895621721, + "max_y": 5200.777492813418, + "center": [ + 5206.652416860503, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.777492813418 + ], + [ + 5207.968895621721, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.496484289677, + "min_y": 5201.379541027389, + "max_x": 5210.633962382235, + "max_y": 5201.379541027389, + "center": [ + 5208.065223335956, + 5201.379541027389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.496484289677, + 5201.379541027389 + ], + [ + 5210.633962382235, + 5201.379541027389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.163815935443, + "max_x": 5210.167345422002, + "max_y": 5201.163815935443, + "center": [ + 5209.126318515879, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.163815935443 + ], + [ + 5210.167345422002, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.091570149766, + "max_x": 5210.167345422002, + "max_y": 5201.091570149766, + "center": [ + 5209.126318515879, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.091570149766 + ], + [ + 5210.167345422002, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.067488221207, + "max_x": 5210.167345422002, + "max_y": 5201.067488221207, + "center": [ + 5209.126318515879, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.067488221207 + ], + [ + 5210.167345422002, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.995242435531, + "max_x": 5210.167345422002, + "max_y": 5200.995242435531, + "center": [ + 5209.126318515879, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5200.995242435531 + ], + [ + 5210.167345422002, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.971160506972, + "max_x": 5210.167345422002, + "max_y": 5200.971160506972, + "center": [ + 5209.126318515879, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5200.971160506972 + ], + [ + 5210.167345422002, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.161551050192, + "min_y": 5200.777492813418, + "max_x": 5210.794508572628, + "max_y": 5200.777492813418, + "center": [ + 5209.47802981141, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.161551050192, + 5200.777492813418 + ], + [ + 5210.794508572628, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.898914721295, + "max_x": 5210.167345422002, + "max_y": 5200.898914721295, + "center": [ + 5209.126318515879, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5200.898914721295 + ], + [ + 5210.167345422002, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.874832792736, + "max_x": 5210.167345422002, + "max_y": 5200.874832792736, + "center": [ + 5209.126318515879, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5200.874832792736 + ], + [ + 5210.167345422002, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.137469121633, + "min_y": 5200.801574741976, + "max_x": 5210.167345422002, + "max_y": 5200.801574741976, + "center": [ + 5209.1524072718175, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.137469121633, + 5200.801574741976 + ], + [ + 5210.167345422002, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.257178484067, + "max_x": 5210.147200366961, + "max_y": 5201.257178484067, + "center": [ + 5209.116245988358, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.257178484067 + ], + [ + 5210.147200366961, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.187897864002, + "max_x": 5210.167345422002, + "max_y": 5201.187897864002, + "center": [ + 5209.126318515879, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.187897864002 + ], + [ + 5210.167345422002, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.33940447979, + "max_x": 5210.007053920851, + "max_y": 5201.33940447979, + "center": [ + 5209.046172765303, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.33940447979 + ], + [ + 5210.007053920851, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.332326375843, + "max_x": 5210.054198652187, + "max_y": 5201.332326375843, + "center": [ + 5209.069745130971, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.332326375843 + ], + [ + 5210.054198652187, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5201.281260412626, + "max_x": 5210.130702149339, + "max_y": 5201.281260412626, + "center": [ + 5209.1079968795475, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.281260412626 + ], + [ + 5210.130702149339, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.129209655204, + "min_y": 5201.33940447979, + "max_x": 5210.633962382235, + "max_y": 5201.33940447979, + "center": [ + 5210.38158601872, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.129209655204, + 5201.33940447979 + ], + [ + 5210.633962382235, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.137421906097, + "min_y": 5201.332326375843, + "max_x": 5210.681107113568, + "max_y": 5201.332326375843, + "center": [ + 5210.409264509833, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.137421906097, + 5201.332326375843 + ], + [ + 5210.681107113568, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.995242435531, + "max_x": 5210.794508572628, + "max_y": 5200.995242435531, + "center": [ + 5210.495117409806, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5200.995242435531 + ], + [ + 5210.794508572628, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.971160506972, + "max_x": 5210.794508572628, + "max_y": 5200.971160506972, + "center": [ + 5210.495117409806, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5200.971160506972 + ], + [ + 5210.794508572628, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.898914721295, + "max_x": 5210.794508572628, + "max_y": 5200.898914721295, + "center": [ + 5210.495117409806, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5200.898914721295 + ], + [ + 5210.794508572628, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.874832792736, + "max_x": 5210.794508572628, + "max_y": 5200.874832792736, + "center": [ + 5210.495117409806, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5200.874832792736 + ], + [ + 5210.794508572628, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.801574741976, + "max_x": 5210.794508572628, + "max_y": 5200.801574741976, + "center": [ + 5210.495117409806, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5200.801574741976 + ], + [ + 5210.794508572628, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5201.163815935443, + "max_x": 5210.794508572628, + "max_y": 5201.163815935443, + "center": [ + 5210.495117409806, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5201.163815935443 + ], + [ + 5210.794508572628, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5201.091570149766, + "max_x": 5210.794508572628, + "max_y": 5201.091570149766, + "center": [ + 5210.495117409806, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5201.091570149766 + ], + [ + 5210.794508572628, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5201.067488221207, + "max_x": 5210.794508572628, + "max_y": 5201.067488221207, + "center": [ + 5210.495117409806, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5201.067488221207 + ], + [ + 5210.794508572628, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5201.187897864002, + "max_x": 5210.794508572628, + "max_y": 5201.187897864002, + "center": [ + 5210.495117409806, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5201.187897864002 + ], + [ + 5210.794508572628, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.176307576496, + "min_y": 5201.281260412626, + "max_x": 5210.757610610722, + "max_y": 5201.281260412626, + "center": [ + 5210.466959093608, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.176307576496, + 5201.281260412626 + ], + [ + 5210.757610610722, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.186482567158, + "min_y": 5201.257178484067, + "max_x": 5210.774108828342, + "max_y": 5201.257178484067, + "center": [ + 5210.48029569775, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.186482567158, + 5201.257178484067 + ], + [ + 5210.774108828342, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B25", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.669674818218, + "min_y": 5201.374111768536, + "max_x": 5210.693756746777, + "max_y": 5201.398193697095, + "center": [ + 5210.681715782497, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.681715782497, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B26", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.477429846603, + "min_y": 5201.379541027389, + "max_x": 5210.501511775162, + "max_y": 5201.403622955948, + "center": [ + 5210.489470810882, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.489470810882, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B27", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.284774418132, + "min_y": 5201.379541027389, + "max_x": 5210.308856346691, + "max_y": 5201.403622955948, + "center": [ + 5210.296815382411, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.296815382411, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.794508572628, + "min_y": 5200.737356265819, + "max_x": 5210.794508572628, + "max_y": 5201.178858289399, + "center": [ + 5210.794508572628, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.794508572628, + 5201.178858289399 + ], + [ + 5210.794508572628, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.794508572628, + "min_y": 5200.737356265819, + "max_x": 5210.794508572628, + "max_y": 5201.178858289399, + "center": [ + 5210.794508572628, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.794508572628, + 5201.178858289399 + ], + [ + 5210.794508572628, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.763272504696, + "min_y": 5201.332326375843, + "max_x": 5210.767596687845, + "max_y": 5201.332326375843, + "center": [ + 5210.765434596271, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.763272504696, + 5201.332326375843 + ], + [ + 5210.767596687845, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.763272504696, + "min_y": 5201.332326375843, + "max_x": 5210.767596687845, + "max_y": 5201.332326375843, + "center": [ + 5210.765434596271, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.767596687845, + 5201.332326375843 + ], + [ + 5210.763272504696, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.7555557235655, + "min_y": 5201.332326375842, + "max_x": 5210.779637652125, + "max_y": 5201.356408304401, + "center": [ + 5210.767596687845, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.767596687845, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.727501430231, + "min_y": 5201.356408304401, + "max_x": 5210.767596687845, + "max_y": 5201.356408304401, + "center": [ + 5210.747549059039, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.767596687845, + 5201.356408304401 + ], + [ + 5210.727501430231, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120224, + "min_y": 5200.874832792738, + "max_x": 5210.858727048783, + "max_y": 5200.898914721297, + "center": [ + 5210.846686084504, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.753410884859, + "max_x": 5210.834645120225, + "max_y": 5201.178858289399, + "center": [ + 5210.834645120225, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5201.178858289399 + ], + [ + 5210.834645120225, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.777492813418, + "max_x": 5210.846686084504, + "max_y": 5200.777492813418, + "center": [ + 5210.840665602364, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.777492813418 + ], + [ + 5210.846686084504, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.777492813418, + "max_x": 5210.846686084504, + "max_y": 5200.777492813418, + "center": [ + 5210.840665602364, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.777492813418 + ], + [ + 5210.834645120225, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.753410884859, + "max_x": 5210.890836286864, + "max_y": 5200.753410884859, + "center": [ + 5210.862740703545, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.890836286864, + 5200.753410884859 + ], + [ + 5210.834645120225, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.801574741976, + "max_x": 5210.846686084504, + "max_y": 5200.801574741976, + "center": [ + 5210.840665602364, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.801574741976 + ], + [ + 5210.846686084504, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.801574741976, + "max_x": 5210.846686084504, + "max_y": 5200.801574741976, + "center": [ + 5210.840665602364, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.801574741976 + ], + [ + 5210.834645120225, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.874832792736, + "max_x": 5210.846686084504, + "max_y": 5200.874832792736, + "center": [ + 5210.840665602364, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.874832792736 + ], + [ + 5210.846686084504, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.874832792736, + "max_x": 5210.846686084504, + "max_y": 5200.874832792736, + "center": [ + 5210.840665602364, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.874832792736 + ], + [ + 5210.834645120225, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B37", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120224, + "min_y": 5200.777492813418, + "max_x": 5210.858727048783, + "max_y": 5200.801574741977, + "center": [ + 5210.846686084504, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.898914721295, + "max_x": 5210.846686084504, + "max_y": 5200.898914721295, + "center": [ + 5210.840665602364, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.898914721295 + ], + [ + 5210.846686084504, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.898914721295, + "max_x": 5210.846686084504, + "max_y": 5200.898914721295, + "center": [ + 5210.840665602364, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.898914721295 + ], + [ + 5210.834645120225, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.971160506972, + "max_x": 5210.846686084504, + "max_y": 5200.971160506972, + "center": [ + 5210.840665602364, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.971160506972 + ], + [ + 5210.846686084504, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.995242435531, + "max_x": 5210.846686084504, + "max_y": 5200.995242435531, + "center": [ + 5210.840665602364, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5200.995242435531 + ], + [ + 5210.846686084504, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.995242435531, + "max_x": 5210.846686084504, + "max_y": 5200.995242435531, + "center": [ + 5210.840665602364, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.995242435531 + ], + [ + 5210.834645120225, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5200.971160506972, + "max_x": 5210.846686084504, + "max_y": 5200.971160506972, + "center": [ + 5210.840665602364, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.971160506972 + ], + [ + 5210.834645120225, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120224, + "min_y": 5200.971160506972, + "max_x": 5210.858727048783, + "max_y": 5200.9952424355315, + "center": [ + 5210.846686084504, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.067488221207, + "max_x": 5210.846686084504, + "max_y": 5201.067488221207, + "center": [ + 5210.840665602364, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5201.067488221207 + ], + [ + 5210.846686084504, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.091570149766, + "max_x": 5210.846686084504, + "max_y": 5201.091570149766, + "center": [ + 5210.840665602364, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5201.091570149766 + ], + [ + 5210.846686084504, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.091570149766, + "max_x": 5210.846686084504, + "max_y": 5201.091570149766, + "center": [ + 5210.840665602364, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.091570149766 + ], + [ + 5210.834645120225, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.067488221207, + "max_x": 5210.846686084504, + "max_y": 5201.067488221207, + "center": [ + 5210.840665602364, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.067488221207 + ], + [ + 5210.834645120225, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B43", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120224, + "min_y": 5201.067488221208, + "max_x": 5210.858727048783, + "max_y": 5201.091570149767, + "center": [ + 5210.846686084504, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.163815935443, + "max_x": 5210.846686084504, + "max_y": 5201.163815935443, + "center": [ + 5210.840665602364, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834645120225, + 5201.163815935443 + ], + [ + 5210.846686084504, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120225, + "min_y": 5201.163815935443, + "max_x": 5210.846686084504, + "max_y": 5201.163815935443, + "center": [ + 5210.840665602364, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.163815935443 + ], + [ + 5210.834645120225, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834441427072, + "min_y": 5201.187897864002, + "max_x": 5210.846686084504, + "max_y": 5201.187897864002, + "center": [ + 5210.840563755788, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.834441427072, + 5201.187897864002 + ], + [ + 5210.846686084504, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.834441427072, + "min_y": 5201.187897864002, + "max_x": 5210.846686084504, + "max_y": 5201.187897864002, + "center": [ + 5210.840563755788, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.187897864002 + ], + [ + 5210.834441427072, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B48", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.834645120224, + "min_y": 5201.1638159354425, + "max_x": 5210.858727048783, + "max_y": 5201.187897864002, + "center": [ + 5210.846686084504, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.846686084504, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B49", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.814499283923, + "min_y": 5201.257178484067, + "max_x": 5210.8385812124825, + "max_y": 5201.281260412626, + "center": [ + 5210.826540248203, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.826540248203, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.806552551382, + "min_y": 5201.281260412626, + "max_x": 5210.826540248203, + "max_y": 5201.281260412626, + "center": [ + 5210.816546399792, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.806552551382, + 5201.281260412626 + ], + [ + 5210.826540248203, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.806552551382, + "min_y": 5201.281260412626, + "max_x": 5210.826540248203, + "max_y": 5201.281260412626, + "center": [ + 5210.816546399792, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.826540248203, + 5201.281260412626 + ], + [ + 5210.806552551382, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.818731179477, + "min_y": 5201.257178484067, + "max_x": 5210.831743373773, + "max_y": 5201.257178484067, + "center": [ + 5210.825237276626, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.818731179477, + 5201.257178484067 + ], + [ + 5210.831743373773, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.818731179477, + "min_y": 5201.257178484067, + "max_x": 5210.826540248203, + "max_y": 5201.257178484067, + "center": [ + 5210.82263571384, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.826540248203, + 5201.257178484067 + ], + [ + 5210.818731179477, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.433279644245, + "min_y": 5200.978175551409, + "max_x": 5210.834645120225, + "max_y": 5201.379541027389, + "center": [ + 5210.633962382235, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.633962382235, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B4F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.473416191842, + "min_y": 5201.018312099006, + "max_x": 5210.794508572628, + "max_y": 5201.3394044797915, + "center": [ + 5210.633962382235, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.633962382235, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B50", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.834802809475, + "min_y": 5201.018464587878, + "max_x": 5210.1960739420665, + "max_y": 5201.379735720469, + "center": [ + 5210.015438375771, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.015438375771, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B51", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.846507730458, + "min_y": 5201.018312099006, + "max_x": 5210.167600111244, + "max_y": 5201.3394044797915, + "center": [ + 5210.007053920851, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.007053920851, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.195726246983, + "min_y": 5200.777492813418, + "max_x": 5210.195726246983, + "max_y": 5201.187897864002, + "center": [ + 5210.195726246983, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.195726246983, + 5201.187897864002 + ], + [ + 5210.195726246983, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.167345422002, + "min_y": 5200.777492813418, + "max_x": 5210.167345422002, + "max_y": 5201.187897864002, + "center": [ + 5210.167345422002, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.167345422002, + 5201.187897864002 + ], + [ + 5210.167345422002, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B54", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.321497275777, + "min_y": 5201.379541027389, + "max_x": 5209.345579204336, + "max_y": 5201.403622955948, + "center": [ + 5209.333538240056, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.333538240056, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B55", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.128841847305, + "min_y": 5201.379541027389, + "max_x": 5209.152923775864, + "max_y": 5201.403622955948, + "center": [ + 5209.140882811585, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.140882811585, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B56", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.936186418834, + "min_y": 5201.379541027389, + "max_x": 5208.960268347393, + "max_y": 5201.403622955948, + "center": [ + 5208.948227383114, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.948227383114, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B57", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.514152704248, + "min_y": 5201.379541027389, + "max_x": 5209.538234632807, + "max_y": 5201.403622955948, + "center": [ + 5209.526193668527, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.526193668527, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B58", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.899463561189, + "min_y": 5201.379541027389, + "max_x": 5209.923545489748, + "max_y": 5201.403622955948, + "center": [ + 5209.911504525468, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.911504525468, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B59", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5210.092118989662, + "min_y": 5201.379541027389, + "max_x": 5210.116200918221, + "max_y": 5201.403622955948, + "center": [ + 5210.104159953941, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.104159953941, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.706808132719, + "min_y": 5201.379541027389, + "max_x": 5209.730890061278, + "max_y": 5201.403622955948, + "center": [ + 5209.718849096998, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.718849096998, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.78743588179, + "min_y": 5201.33940447979, + "max_x": 5207.78743588179, + "max_y": 5201.379541027389, + "center": [ + 5207.78743588179, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.78743588179, + 5201.379541027389 + ], + [ + 5207.78743588179, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.733342611059, + "max_x": 5208.085291609755, + "max_y": 5201.359472753591, + "center": [ + 5208.085291609755, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5201.359472753591 + ], + [ + 5208.085291609755, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.045155062158, + "min_y": 5200.733342611059, + "max_x": 5208.045155062158, + "max_y": 5201.359472753591, + "center": [ + 5208.045155062158, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.045155062158, + 5201.359472753591 + ], + [ + 5208.045155062158, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.99297755028, + "min_y": 5200.777492813418, + "max_x": 5208.045155062158, + "max_y": 5200.777492813418, + "center": [ + 5208.0190663062185, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.99297755028, + 5200.777492813418 + ], + [ + 5208.045155062158, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.968895621721, + "min_y": 5200.753410884859, + "max_x": 5208.045155062158, + "max_y": 5200.753410884859, + "center": [ + 5208.00702534194, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.045155062158, + 5200.753410884859 + ], + [ + 5207.968895621721, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.753410884859, + "max_x": 5208.161551050192, + "max_y": 5200.753410884859, + "center": [ + 5208.123421329974, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.161551050192, + 5200.753410884859 + ], + [ + 5208.085291609755, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.161551050192, + "min_y": 5200.753410884859, + "max_x": 5208.161551050192, + "max_y": 5200.777492813418, + "center": [ + 5208.161551050192, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.161551050192, + 5200.777492813418 + ], + [ + 5208.161551050192, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.085291609755, + "min_y": 5200.777492813418, + "max_x": 5208.137469121633, + "max_y": 5200.777492813418, + "center": [ + 5208.111380365694, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.085291609755, + 5200.777492813418 + ], + [ + 5208.137469121633, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.137469121633, + "min_y": 5200.777492813418, + "max_x": 5208.137469121633, + "max_y": 5200.801574741976, + "center": [ + 5208.137469121633, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.137469121633, + 5200.801574741976 + ], + [ + 5208.137469121633, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.968895621721, + "min_y": 5200.753410884859, + "max_x": 5207.968895621721, + "max_y": 5200.777492813418, + "center": [ + 5207.968895621721, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.968895621721, + 5200.777492813418 + ], + [ + 5207.968895621721, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.99297755028, + "min_y": 5200.777492813418, + "max_x": 5207.99297755028, + "max_y": 5200.801574741976, + "center": [ + 5207.99297755028, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.99297755028, + 5200.801574741976 + ], + [ + 5207.99297755028, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B66", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.045155062157, + "min_y": 5201.339404479792, + "max_x": 5208.085291609755, + "max_y": 5201.37954102739, + "center": [ + 5208.065223335956, + 5201.359472753591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.065223335956, + 5201.359472753591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.343010790124, + "min_y": 5201.33940447979, + "max_x": 5208.343010790124, + "max_y": 5201.379541027389, + "center": [ + 5208.343010790124, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.343010790124, + 5201.379541027389 + ], + [ + 5208.343010790124, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B68", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.977522896047, + "min_y": 5201.379541027389, + "max_x": 5207.001604824606, + "max_y": 5201.403622955948, + "center": [ + 5206.989563860327, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.989563860327, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B69", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.784867467575, + "min_y": 5201.379541027389, + "max_x": 5206.808949396134, + "max_y": 5201.403622955948, + "center": [ + 5206.796908431855, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.796908431855, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.592212039108, + "min_y": 5201.379541027389, + "max_x": 5206.616293967667, + "max_y": 5201.403622955948, + "center": [ + 5206.604253003387, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.604253003387, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.170178324518, + "min_y": 5201.379541027389, + "max_x": 5207.194260253077, + "max_y": 5201.403622955948, + "center": [ + 5207.182219288798, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.182219288798, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.399556610635, + "min_y": 5201.379541027389, + "max_x": 5206.423638539194, + "max_y": 5201.403622955948, + "center": [ + 5206.411597574915, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.411597574915, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.295801551687, + "min_y": 5200.978175551409, + "max_x": 5205.697167027667, + "max_y": 5201.379541027389, + "center": [ + 5205.496484289677, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.496484289677, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.628934896751, + "min_y": 5201.379541027389, + "max_x": 5205.65301682531, + "max_y": 5201.403622955948, + "center": [ + 5205.640975861031, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.640975861031, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B6F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.436689925137, + "min_y": 5201.374111768536, + "max_x": 5205.460771853696, + "max_y": 5201.398193697095, + "center": [ + 5205.448730889417, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.448730889417, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B70", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.335938099284, + "min_y": 5201.018312099006, + "max_x": 5205.65703048007, + "max_y": 5201.3394044797915, + "center": [ + 5205.496484289677, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.496484289677, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.239610385049, + "min_y": 5200.753410884859, + "max_x": 5205.295801551688, + "max_y": 5200.753410884859, + "center": [ + 5205.267705968368, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.239610385049, + 5200.753410884859 + ], + [ + 5205.295801551688, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B72", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.271719623129, + "min_y": 5200.874832792738, + "max_x": 5205.295801551688, + "max_y": 5200.898914721297, + "center": [ + 5205.283760587408, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.737356265819, + "max_x": 5205.335938099286, + "max_y": 5201.178858289399, + "center": [ + 5205.335938099286, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5201.178858289399 + ], + [ + 5205.335938099286, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.295801551688, + "min_y": 5200.753410884859, + "max_x": 5205.295801551688, + "max_y": 5201.178858289399, + "center": [ + 5205.295801551688, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.295801551688, + 5201.178858289399 + ], + [ + 5205.295801551688, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.777492813418, + "max_x": 5205.295801551688, + "max_y": 5200.777492813418, + "center": [ + 5205.289781069549, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.777492813418 + ], + [ + 5205.295801551688, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.801574741976, + "max_x": 5205.295801551688, + "max_y": 5200.801574741976, + "center": [ + 5205.289781069549, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.801574741976 + ], + [ + 5205.295801551688, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.874832792736, + "max_x": 5205.295801551688, + "max_y": 5200.874832792736, + "center": [ + 5205.289781069549, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.874832792736 + ], + [ + 5205.295801551688, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B78", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.271719623129, + "min_y": 5200.777492813418, + "max_x": 5205.295801551688, + "max_y": 5200.801574741977, + "center": [ + 5205.283760587408, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.898914721295, + "max_x": 5205.295801551688, + "max_y": 5200.898914721295, + "center": [ + 5205.289781069549, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.898914721295 + ], + [ + 5205.295801551688, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.971160506972, + "max_x": 5205.295801551688, + "max_y": 5200.971160506972, + "center": [ + 5205.289781069549, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.971160506972 + ], + [ + 5205.295801551688, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5200.995242435531, + "max_x": 5205.295801551688, + "max_y": 5200.995242435531, + "center": [ + 5205.289781069549, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.995242435531 + ], + [ + 5205.295801551688, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.271719623129, + "min_y": 5200.971160506972, + "max_x": 5205.295801551688, + "max_y": 5200.9952424355315, + "center": [ + 5205.283760587408, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5201.067488221207, + "max_x": 5205.295801551688, + "max_y": 5201.067488221207, + "center": [ + 5205.289781069549, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.067488221207 + ], + [ + 5205.295801551688, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5201.091570149766, + "max_x": 5205.295801551688, + "max_y": 5201.091570149766, + "center": [ + 5205.289781069549, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.091570149766 + ], + [ + 5205.295801551688, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B7F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.271719623129, + "min_y": 5201.067488221208, + "max_x": 5205.295801551688, + "max_y": 5201.091570149767, + "center": [ + 5205.283760587408, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5201.163815935443, + "max_x": 5205.295801551688, + "max_y": 5201.163815935443, + "center": [ + 5205.289781069549, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.163815935443 + ], + [ + 5205.295801551688, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.283760587408, + "min_y": 5201.187897864002, + "max_x": 5205.296005244842, + "max_y": 5201.187897864002, + "center": [ + 5205.289882916125, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.187897864002 + ], + [ + 5205.296005244842, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B82", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.271719623129, + "min_y": 5201.1638159354425, + "max_x": 5205.295801551688, + "max_y": 5201.187897864002, + "center": [ + 5205.283760587408, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.283760587408, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.362849984067, + "min_y": 5201.356408304401, + "max_x": 5205.402945241683, + "max_y": 5201.356408304401, + "center": [ + 5205.382897612875, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.362849984067, + 5201.356408304401 + ], + [ + 5205.402945241683, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.362849984067, + "min_y": 5201.332326375843, + "max_x": 5205.367174167219, + "max_y": 5201.332326375843, + "center": [ + 5205.365012075643, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.362849984067, + 5201.332326375843 + ], + [ + 5205.367174167219, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B85", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.350809019787, + "min_y": 5201.332326375842, + "max_x": 5205.374890948347, + "max_y": 5201.356408304401, + "center": [ + 5205.362849984067, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.362849984067, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B86", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.29186545943, + "min_y": 5201.257178484067, + "max_x": 5205.315947387989, + "max_y": 5201.281260412626, + "center": [ + 5205.303906423709, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.303906423709, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.303906423709, + "min_y": 5201.281260412626, + "max_x": 5205.323894120533, + "max_y": 5201.281260412626, + "center": [ + 5205.313900272121, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.303906423709, + 5201.281260412626 + ], + [ + 5205.323894120533, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.303906423709, + "min_y": 5201.257178484067, + "max_x": 5205.311715492436, + "max_y": 5201.257178484067, + "center": [ + 5205.307810958073, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.303906423709, + 5201.257178484067 + ], + [ + 5205.311715492436, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B89", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.014245753694, + "min_y": 5201.379541027389, + "max_x": 5206.038327682253, + "max_y": 5201.403622955948, + "center": [ + 5206.026286717974, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.026286717974, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5206.206901182166, + "min_y": 5201.379541027389, + "max_x": 5206.230983110725, + "max_y": 5201.403622955948, + "center": [ + 5206.218942146445, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.218942146445, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.934372729846, + "min_y": 5201.018464587878, + "max_x": 5206.295643862437, + "max_y": 5201.379735720469, + "center": [ + 5206.115008296141, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.115008296141, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.963101249913, + "min_y": 5200.777492813418, + "max_x": 5205.963101249913, + "max_y": 5201.187897864002, + "center": [ + 5205.963101249913, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.963101249913, + 5201.187897864002 + ], + [ + 5205.963101249913, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.934720424932, + "min_y": 5200.777492813418, + "max_x": 5205.934720424932, + "max_y": 5201.187897864002, + "center": [ + 5205.934720424932, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.934720424932, + 5201.187897864002 + ], + [ + 5205.934720424932, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.9628465606675, + "min_y": 5201.018312099006, + "max_x": 5206.283938941453, + "max_y": 5201.3394044797915, + "center": [ + 5206.12339275106, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.12339275106, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.801574741976, + "max_x": 5205.934720424932, + "max_y": 5200.801574741976, + "center": [ + 5205.635329262109, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.801574741976 + ], + [ + 5205.934720424932, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5201.163815935443, + "max_x": 5205.934720424932, + "max_y": 5201.163815935443, + "center": [ + 5205.635329262109, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5201.163815935443 + ], + [ + 5205.934720424932, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5201.091570149766, + "max_x": 5205.934720424932, + "max_y": 5201.091570149766, + "center": [ + 5205.635329262109, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5201.091570149766 + ], + [ + 5205.934720424932, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5201.067488221207, + "max_x": 5205.934720424932, + "max_y": 5201.067488221207, + "center": [ + 5205.635329262109, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5201.067488221207 + ], + [ + 5205.934720424932, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.995242435531, + "max_x": 5205.934720424932, + "max_y": 5200.995242435531, + "center": [ + 5205.635329262109, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.995242435531 + ], + [ + 5205.934720424932, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.971160506972, + "max_x": 5205.934720424932, + "max_y": 5200.971160506972, + "center": [ + 5205.635329262109, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.971160506972 + ], + [ + 5205.934720424932, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.874832792736, + "max_x": 5205.934720424932, + "max_y": 5200.874832792736, + "center": [ + 5205.635329262109, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.874832792736 + ], + [ + 5205.934720424932, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.335938099286, + "min_y": 5200.898914721295, + "max_x": 5205.934720424932, + "max_y": 5200.898914721295, + "center": [ + 5205.635329262109, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.335938099286, + 5200.898914721295 + ], + [ + 5205.934720424932, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.33619278853, + "min_y": 5201.187897864002, + "max_x": 5205.934720424932, + "max_y": 5201.187897864002, + "center": [ + 5205.635456606731, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.33619278853, + 5201.187897864002 + ], + [ + 5205.934720424932, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.496484289677, + "min_y": 5201.33940447979, + "max_x": 5206.001237016708, + "max_y": 5201.33940447979, + "center": [ + 5205.748860653192, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.496484289677, + 5201.33940447979 + ], + [ + 5206.001237016708, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.449339558343, + "min_y": 5201.332326375843, + "max_x": 5205.993024765818, + "max_y": 5201.332326375843, + "center": [ + 5205.72118216208, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.449339558343, + 5201.332326375843 + ], + [ + 5205.993024765818, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.372836061191, + "min_y": 5201.281260412626, + "max_x": 5205.954139095418, + "max_y": 5201.281260412626, + "center": [ + 5205.663487578305, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.372836061191, + 5201.281260412626 + ], + [ + 5205.954139095418, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.356337843571, + "min_y": 5201.257178484067, + "max_x": 5205.943964104756, + "max_y": 5201.257178484067, + "center": [ + 5205.650150974163, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.356337843571, + 5201.257178484067 + ], + [ + 5205.943964104756, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.821590325223, + "min_y": 5201.379541027389, + "max_x": 5205.845672253782, + "max_y": 5201.403622955948, + "center": [ + 5205.833631289503, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.833631289503, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.269505862756, + "min_y": 5200.593871684834, + "max_x": 5202.269505862756, + "max_y": 5201.529744746113, + "center": [ + 5202.269505862756, + 5201.061808215473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.269505862756, + 5201.529744746113 + ], + [ + 5202.269505862756, + 5200.593871684834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.249437588957, + "min_y": 5200.71327433726, + "max_x": 5202.289574136555, + "max_y": 5200.753410884858, + "center": [ + 5202.269505862756, + 5200.733342611059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.269505862756, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552B9F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.49205676897, + "min_y": 5200.7132743372595, + "max_x": 5199.540220626088, + "max_y": 5200.761438194378, + "center": [ + 5199.516138697529, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.516138697529, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.443892911851, + "min_y": 5200.713274337261, + "max_x": 5199.443892911851, + "max_y": 5200.753410884859, + "center": [ + 5199.443892911851, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.443892911851, + 5200.753410884859 + ], + [ + 5199.443892911851, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.998791099428, + "min_y": 5200.7132743372595, + "max_x": 5205.046954956546, + "max_y": 5200.761438194378, + "center": [ + 5205.022873027987, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.022873027987, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.095118813664, + "min_y": 5200.713274337261, + "max_x": 5205.095118813664, + "max_y": 5200.753410884859, + "center": [ + 5205.095118813664, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.095118813664, + 5200.753410884859 + ], + [ + 5205.095118813664, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.022873027987, + "min_y": 5200.713274337261, + "max_x": 5205.095118813664, + "max_y": 5200.713274337261, + "center": [ + 5205.0589959208255, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.095118813664, + 5200.713274337261 + ], + [ + 5205.022873027987, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.443892911851, + "min_y": 5200.713274337261, + "max_x": 5199.516138697529, + "max_y": 5200.713274337261, + "center": [ + 5199.48001580469, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.443892911851, + 5200.713274337261 + ], + [ + 5199.516138697529, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.327675277861, + "min_y": 5201.33940447979, + "max_x": 5202.249437588958, + "max_y": 5201.33940447979, + "center": [ + 5201.28855643341, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.327675277861, + 5201.33940447979 + ], + [ + 5202.249437588958, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.280530546526, + "min_y": 5201.332326375843, + "max_x": 5202.249437588958, + "max_y": 5201.332326375843, + "center": [ + 5201.264984067742, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.280530546526, + 5201.332326375843 + ], + [ + 5202.249437588958, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.995242435531, + "max_x": 5202.249437588958, + "max_y": 5200.995242435531, + "center": [ + 5201.208410682835, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5200.995242435531 + ], + [ + 5202.249437588958, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.971160506972, + "max_x": 5202.249437588958, + "max_y": 5200.971160506972, + "center": [ + 5201.208410682835, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5200.971160506972 + ], + [ + 5202.249437588958, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.898914721295, + "max_x": 5202.249437588958, + "max_y": 5200.898914721295, + "center": [ + 5201.208410682835, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5200.898914721295 + ], + [ + 5202.249437588958, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.874832792736, + "max_x": 5202.249437588958, + "max_y": 5200.874832792736, + "center": [ + 5201.208410682835, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5200.874832792736 + ], + [ + 5202.249437588958, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.801574741976, + "max_x": 5202.197260077081, + "max_y": 5200.801574741976, + "center": [ + 5201.182321926897, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5200.801574741976 + ], + [ + 5202.197260077081, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5201.163815935443, + "max_x": 5202.249437588958, + "max_y": 5201.163815935443, + "center": [ + 5201.208410682835, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5201.163815935443 + ], + [ + 5202.249437588958, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5201.091570149766, + "max_x": 5202.249437588958, + "max_y": 5201.091570149766, + "center": [ + 5201.208410682835, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5201.091570149766 + ], + [ + 5202.249437588958, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5201.067488221207, + "max_x": 5202.249437588958, + "max_y": 5201.067488221207, + "center": [ + 5201.208410682835, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5201.067488221207 + ], + [ + 5202.249437588958, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.204027049374, + "min_y": 5201.281260412626, + "max_x": 5202.249437588958, + "max_y": 5201.281260412626, + "center": [ + 5201.226732319166, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.204027049374, + 5201.281260412626 + ], + [ + 5202.249437588958, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.187528831754, + "min_y": 5201.257178484067, + "max_x": 5202.249437588958, + "max_y": 5201.257178484067, + "center": [ + 5201.218483210356, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.187528831754, + 5201.257178484067 + ], + [ + 5202.249437588958, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5201.187897864002, + "max_x": 5202.249437588958, + "max_y": 5201.187897864002, + "center": [ + 5201.208410682835, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5201.187897864002 + ], + [ + 5202.249437588958, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.777492813418, + "max_x": 5202.173178148521, + "max_y": 5200.777492813418, + "center": [ + 5200.856699387305, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.777492813418 + ], + [ + 5202.173178148521, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.700766816476, + "min_y": 5201.379541027389, + "max_x": 5204.838244909035, + "max_y": 5201.379541027389, + "center": [ + 5202.269505862756, + 5201.379541027389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.700766816476, + 5201.379541027389 + ], + [ + 5204.838244909035, + 5201.379541027389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.163815935443, + "max_x": 5204.371627948802, + "max_y": 5201.163815935443, + "center": [ + 5203.3306010426795, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.163815935443 + ], + [ + 5204.371627948802, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.091570149766, + "max_x": 5204.371627948802, + "max_y": 5201.091570149766, + "center": [ + 5203.3306010426795, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.091570149766 + ], + [ + 5204.371627948802, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.067488221207, + "max_x": 5204.371627948802, + "max_y": 5201.067488221207, + "center": [ + 5203.3306010426795, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.067488221207 + ], + [ + 5204.371627948802, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.995242435531, + "max_x": 5204.371627948802, + "max_y": 5200.995242435531, + "center": [ + 5203.3306010426795, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5200.995242435531 + ], + [ + 5204.371627948802, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.971160506972, + "max_x": 5204.371627948802, + "max_y": 5200.971160506972, + "center": [ + 5203.3306010426795, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5200.971160506972 + ], + [ + 5204.371627948802, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.365833576992, + "min_y": 5200.777492813418, + "max_x": 5204.998791099427, + "max_y": 5200.777492813418, + "center": [ + 5203.682312338209, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.365833576992, + 5200.777492813418 + ], + [ + 5204.998791099427, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.898914721295, + "max_x": 5204.371627948802, + "max_y": 5200.898914721295, + "center": [ + 5203.3306010426795, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5200.898914721295 + ], + [ + 5204.371627948802, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.874832792736, + "max_x": 5204.371627948802, + "max_y": 5200.874832792736, + "center": [ + 5203.3306010426795, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5200.874832792736 + ], + [ + 5204.371627948802, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.341751648433, + "min_y": 5200.801574741976, + "max_x": 5204.371627948802, + "max_y": 5200.801574741976, + "center": [ + 5203.3566897986175, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.341751648433, + 5200.801574741976 + ], + [ + 5204.371627948802, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.257178484067, + "max_x": 5204.35148289376, + "max_y": 5201.257178484067, + "center": [ + 5203.320528515158, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.257178484067 + ], + [ + 5204.35148289376, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.187897864002, + "max_x": 5204.371627948802, + "max_y": 5201.187897864002, + "center": [ + 5203.3306010426795, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.187897864002 + ], + [ + 5204.371627948802, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.33940447979, + "max_x": 5204.211336447652, + "max_y": 5201.33940447979, + "center": [ + 5203.250455292105, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.33940447979 + ], + [ + 5204.211336447652, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.332326375843, + "max_x": 5204.258481178988, + "max_y": 5201.332326375843, + "center": [ + 5203.274027657773, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.332326375843 + ], + [ + 5204.258481178988, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5201.281260412626, + "max_x": 5204.334984676139, + "max_y": 5201.281260412626, + "center": [ + 5203.312279406348, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.281260412626 + ], + [ + 5204.334984676139, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.333492182004, + "min_y": 5201.33940447979, + "max_x": 5204.838244909035, + "max_y": 5201.33940447979, + "center": [ + 5204.58586854552, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.333492182004, + 5201.33940447979 + ], + [ + 5204.838244909035, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.341704432896, + "min_y": 5201.332326375843, + "max_x": 5204.88538964037, + "max_y": 5201.332326375843, + "center": [ + 5204.6135470366335, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.341704432896, + 5201.332326375843 + ], + [ + 5204.88538964037, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.995242435531, + "max_x": 5204.998791099427, + "max_y": 5200.995242435531, + "center": [ + 5204.699399936604, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5200.995242435531 + ], + [ + 5204.998791099427, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.971160506972, + "max_x": 5204.998791099427, + "max_y": 5200.971160506972, + "center": [ + 5204.699399936604, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5200.971160506972 + ], + [ + 5204.998791099427, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.898914721295, + "max_x": 5204.998791099427, + "max_y": 5200.898914721295, + "center": [ + 5204.699399936604, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5200.898914721295 + ], + [ + 5204.998791099427, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.874832792736, + "max_x": 5204.998791099427, + "max_y": 5200.874832792736, + "center": [ + 5204.699399936604, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5200.874832792736 + ], + [ + 5204.998791099427, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.801574741976, + "max_x": 5204.998791099427, + "max_y": 5200.801574741976, + "center": [ + 5204.699399936604, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5200.801574741976 + ], + [ + 5204.998791099427, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5201.163815935443, + "max_x": 5204.998791099427, + "max_y": 5201.163815935443, + "center": [ + 5204.699399936604, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5201.163815935443 + ], + [ + 5204.998791099427, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5201.091570149766, + "max_x": 5204.998791099427, + "max_y": 5201.091570149766, + "center": [ + 5204.699399936604, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5201.091570149766 + ], + [ + 5204.998791099427, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5201.067488221207, + "max_x": 5204.998791099427, + "max_y": 5201.067488221207, + "center": [ + 5204.699399936604, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5201.067488221207 + ], + [ + 5204.998791099427, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5201.187897864002, + "max_x": 5204.998791099427, + "max_y": 5201.187897864002, + "center": [ + 5204.699399936604, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5201.187897864002 + ], + [ + 5204.998791099427, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.380590103295, + "min_y": 5201.281260412626, + "max_x": 5204.961893137522, + "max_y": 5201.281260412626, + "center": [ + 5204.671241620408, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.380590103295, + 5201.281260412626 + ], + [ + 5204.961893137522, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.39076509396, + "min_y": 5201.257178484067, + "max_x": 5204.978391355142, + "max_y": 5201.257178484067, + "center": [ + 5204.684578224551, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.39076509396, + 5201.257178484067 + ], + [ + 5204.978391355142, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BCF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.8739573450175, + "min_y": 5201.374111768536, + "max_x": 5204.898039273577, + "max_y": 5201.398193697095, + "center": [ + 5204.885998309297, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.885998309297, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.681712373403, + "min_y": 5201.379541027389, + "max_x": 5204.705794301962, + "max_y": 5201.403622955948, + "center": [ + 5204.693753337682, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.693753337682, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.489056944932, + "min_y": 5201.379541027389, + "max_x": 5204.513138873491, + "max_y": 5201.403622955948, + "center": [ + 5204.501097909211, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.501097909211, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.998791099427, + "min_y": 5200.737356265819, + "max_x": 5204.998791099427, + "max_y": 5201.178858289399, + "center": [ + 5204.998791099427, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.998791099427, + 5201.178858289399 + ], + [ + 5204.998791099427, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.998791099427, + "min_y": 5200.737356265819, + "max_x": 5204.998791099427, + "max_y": 5201.178858289399, + "center": [ + 5204.998791099427, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.998791099427, + 5201.178858289399 + ], + [ + 5204.998791099427, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.967555031495, + "min_y": 5201.332326375843, + "max_x": 5204.971879214647, + "max_y": 5201.332326375843, + "center": [ + 5204.969717123071, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.967555031495, + 5201.332326375843 + ], + [ + 5204.971879214647, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.967555031495, + "min_y": 5201.332326375843, + "max_x": 5204.971879214647, + "max_y": 5201.332326375843, + "center": [ + 5204.969717123071, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.971879214647, + 5201.332326375843 + ], + [ + 5204.967555031495, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.959838250367, + "min_y": 5201.332326375842, + "max_x": 5204.983920178926, + "max_y": 5201.356408304401, + "center": [ + 5204.971879214647, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.971879214647, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931783957031, + "min_y": 5201.356408304401, + "max_x": 5204.971879214647, + "max_y": 5201.356408304401, + "center": [ + 5204.951831585839, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.971879214647, + 5201.356408304401 + ], + [ + 5204.931783957031, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.874832792738, + "max_x": 5205.063009575586, + "max_y": 5200.898914721297, + "center": [ + 5205.050968611306, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.753410884859, + "max_x": 5205.038927647027, + "max_y": 5201.178858289399, + "center": [ + 5205.038927647027, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5201.178858289399 + ], + [ + 5205.038927647027, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.777492813418, + "max_x": 5205.050968611306, + "max_y": 5200.777492813418, + "center": [ + 5205.044948129167, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.777492813418 + ], + [ + 5205.050968611306, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.777492813418, + "max_x": 5205.050968611306, + "max_y": 5200.777492813418, + "center": [ + 5205.044948129167, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.777492813418 + ], + [ + 5205.038927647027, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.753410884859, + "max_x": 5205.095118813664, + "max_y": 5200.753410884859, + "center": [ + 5205.0670232303455, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.095118813664, + 5200.753410884859 + ], + [ + 5205.038927647027, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.801574741976, + "max_x": 5205.050968611306, + "max_y": 5200.801574741976, + "center": [ + 5205.044948129167, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.801574741976 + ], + [ + 5205.050968611306, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.801574741976, + "max_x": 5205.050968611306, + "max_y": 5200.801574741976, + "center": [ + 5205.044948129167, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.801574741976 + ], + [ + 5205.038927647027, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.874832792736, + "max_x": 5205.050968611306, + "max_y": 5200.874832792736, + "center": [ + 5205.044948129167, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.874832792736 + ], + [ + 5205.050968611306, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.874832792736, + "max_x": 5205.050968611306, + "max_y": 5200.874832792736, + "center": [ + 5205.044948129167, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.874832792736 + ], + [ + 5205.038927647027, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.777492813418, + "max_x": 5205.063009575586, + "max_y": 5200.801574741977, + "center": [ + 5205.050968611306, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.898914721295, + "max_x": 5205.050968611306, + "max_y": 5200.898914721295, + "center": [ + 5205.044948129167, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.898914721295 + ], + [ + 5205.050968611306, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.898914721295, + "max_x": 5205.050968611306, + "max_y": 5200.898914721295, + "center": [ + 5205.044948129167, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.898914721295 + ], + [ + 5205.038927647027, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.971160506972, + "max_x": 5205.050968611306, + "max_y": 5200.971160506972, + "center": [ + 5205.044948129167, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.971160506972 + ], + [ + 5205.050968611306, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.995242435531, + "max_x": 5205.050968611306, + "max_y": 5200.995242435531, + "center": [ + 5205.044948129167, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5200.995242435531 + ], + [ + 5205.050968611306, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.995242435531, + "max_x": 5205.050968611306, + "max_y": 5200.995242435531, + "center": [ + 5205.044948129167, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.995242435531 + ], + [ + 5205.038927647027, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.971160506972, + "max_x": 5205.050968611306, + "max_y": 5200.971160506972, + "center": [ + 5205.044948129167, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.971160506972 + ], + [ + 5205.038927647027, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5200.971160506972, + "max_x": 5205.063009575586, + "max_y": 5200.9952424355315, + "center": [ + 5205.050968611306, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.067488221207, + "max_x": 5205.050968611306, + "max_y": 5201.067488221207, + "center": [ + 5205.044948129167, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5201.067488221207 + ], + [ + 5205.050968611306, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.091570149766, + "max_x": 5205.050968611306, + "max_y": 5201.091570149766, + "center": [ + 5205.044948129167, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5201.091570149766 + ], + [ + 5205.050968611306, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.091570149766, + "max_x": 5205.050968611306, + "max_y": 5201.091570149766, + "center": [ + 5205.044948129167, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.091570149766 + ], + [ + 5205.038927647027, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.067488221207, + "max_x": 5205.050968611306, + "max_y": 5201.067488221207, + "center": [ + 5205.044948129167, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.067488221207 + ], + [ + 5205.038927647027, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BED", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.067488221208, + "max_x": 5205.063009575586, + "max_y": 5201.091570149767, + "center": [ + 5205.050968611306, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.163815935443, + "max_x": 5205.050968611306, + "max_y": 5201.163815935443, + "center": [ + 5205.044948129167, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038927647027, + 5201.163815935443 + ], + [ + 5205.050968611306, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.163815935443, + "max_x": 5205.050968611306, + "max_y": 5201.163815935443, + "center": [ + 5205.044948129167, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.163815935443 + ], + [ + 5205.038927647027, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038723953872, + "min_y": 5201.187897864002, + "max_x": 5205.050968611306, + "max_y": 5201.187897864002, + "center": [ + 5205.04484628259, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038723953872, + 5201.187897864002 + ], + [ + 5205.050968611306, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038723953872, + "min_y": 5201.187897864002, + "max_x": 5205.050968611306, + "max_y": 5201.187897864002, + "center": [ + 5205.04484628259, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.187897864002 + ], + [ + 5205.038723953872, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.038927647027, + "min_y": 5201.1638159354425, + "max_x": 5205.063009575586, + "max_y": 5201.187897864002, + "center": [ + 5205.050968611306, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.050968611306, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5205.018781810725, + "min_y": 5201.257178484067, + "max_x": 5205.042863739284, + "max_y": 5201.281260412626, + "center": [ + 5205.030822775005, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.030822775005, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.010835078181, + "min_y": 5201.281260412626, + "max_x": 5205.030822775005, + "max_y": 5201.281260412626, + "center": [ + 5205.020828926593, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.010835078181, + 5201.281260412626 + ], + [ + 5205.030822775005, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.010835078181, + "min_y": 5201.281260412626, + "max_x": 5205.030822775005, + "max_y": 5201.281260412626, + "center": [ + 5205.020828926593, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.030822775005, + 5201.281260412626 + ], + [ + 5205.010835078181, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.023013706277, + "min_y": 5201.257178484067, + "max_x": 5205.036025900574, + "max_y": 5201.257178484067, + "center": [ + 5205.0295198034255, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.023013706277, + 5201.257178484067 + ], + [ + 5205.036025900574, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.023013706277, + "min_y": 5201.257178484067, + "max_x": 5205.030822775005, + "max_y": 5201.257178484067, + "center": [ + 5205.026918240641, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.030822775005, + 5201.257178484067 + ], + [ + 5205.023013706277, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.637562171045, + "min_y": 5200.978175551409, + "max_x": 5205.038927647025, + "max_y": 5201.379541027389, + "center": [ + 5204.838244909035, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.838244909035, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BF9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.677698718642, + "min_y": 5201.018312099006, + "max_x": 5204.998791099428, + "max_y": 5201.3394044797915, + "center": [ + 5204.838244909035, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.838244909035, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.039085336275, + "min_y": 5201.018464587878, + "max_x": 5204.400356468866, + "max_y": 5201.379735720469, + "center": [ + 5204.219720902571, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.219720902571, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.050790257259, + "min_y": 5201.018312099006, + "max_x": 5204.371882638045, + "max_y": 5201.3394044797915, + "center": [ + 5204.211336447652, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.211336447652, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.400008773782, + "min_y": 5200.777492813418, + "max_x": 5204.400008773782, + "max_y": 5201.187897864002, + "center": [ + 5204.400008773782, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.400008773782, + 5201.187897864002 + ], + [ + 5204.400008773782, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.371627948802, + "min_y": 5200.777492813418, + "max_x": 5204.371627948802, + "max_y": 5201.187897864002, + "center": [ + 5204.371627948802, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.371627948802, + 5201.187897864002 + ], + [ + 5204.371627948802, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.525779802578, + "min_y": 5201.379541027389, + "max_x": 5203.549861731137, + "max_y": 5201.403622955948, + "center": [ + 5203.537820766857, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.537820766857, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552BFF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.333124374107, + "min_y": 5201.379541027389, + "max_x": 5203.357206302666, + "max_y": 5201.403622955948, + "center": [ + 5203.345165338386, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.345165338386, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C00", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.140468945637, + "min_y": 5201.379541027389, + "max_x": 5203.164550874196, + "max_y": 5201.403622955948, + "center": [ + 5203.152509909916, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.152509909916, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C01", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.718435231048, + "min_y": 5201.379541027389, + "max_x": 5203.742517159607, + "max_y": 5201.403622955948, + "center": [ + 5203.730476195327, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.730476195327, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C02", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.103746087991, + "min_y": 5201.379541027389, + "max_x": 5204.12782801655, + "max_y": 5201.403622955948, + "center": [ + 5204.11578705227, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.11578705227, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C03", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.296401516462, + "min_y": 5201.379541027389, + "max_x": 5204.320483445021, + "max_y": 5201.403622955948, + "center": [ + 5204.308442480741, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.308442480741, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C04", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.91109065952, + "min_y": 5201.379541027389, + "max_x": 5203.935172588079, + "max_y": 5201.403622955948, + "center": [ + 5203.923131623799, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.923131623799, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.991718408589, + "min_y": 5201.33940447979, + "max_x": 5201.991718408589, + "max_y": 5201.379541027389, + "center": [ + 5201.991718408589, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.991718408589, + 5201.379541027389 + ], + [ + 5201.991718408589, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.733342611059, + "max_x": 5202.289574136557, + "max_y": 5201.359472753591, + "center": [ + 5202.289574136557, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5201.359472753591 + ], + [ + 5202.289574136557, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.249437588958, + "min_y": 5200.733342611059, + "max_x": 5202.249437588958, + "max_y": 5201.359472753591, + "center": [ + 5202.249437588958, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.249437588958, + 5201.359472753591 + ], + [ + 5202.249437588958, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.197260077081, + "min_y": 5200.777492813418, + "max_x": 5202.249437588958, + "max_y": 5200.777492813418, + "center": [ + 5202.22334883302, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.197260077081, + 5200.777492813418 + ], + [ + 5202.249437588958, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.173178148521, + "min_y": 5200.753410884859, + "max_x": 5202.249437588958, + "max_y": 5200.753410884859, + "center": [ + 5202.21130786874, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.249437588958, + 5200.753410884859 + ], + [ + 5202.173178148521, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.753410884859, + "max_x": 5202.365833576992, + "max_y": 5200.753410884859, + "center": [ + 5202.327703856775, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.365833576992, + 5200.753410884859 + ], + [ + 5202.289574136557, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.365833576992, + "min_y": 5200.753410884859, + "max_x": 5202.365833576992, + "max_y": 5200.777492813418, + "center": [ + 5202.365833576992, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.365833576992, + 5200.777492813418 + ], + [ + 5202.365833576992, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.289574136557, + "min_y": 5200.777492813418, + "max_x": 5202.341751648433, + "max_y": 5200.777492813418, + "center": [ + 5202.315662892495, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.289574136557, + 5200.777492813418 + ], + [ + 5202.341751648433, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.341751648433, + "min_y": 5200.777492813418, + "max_x": 5202.341751648433, + "max_y": 5200.801574741976, + "center": [ + 5202.341751648433, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.341751648433, + 5200.801574741976 + ], + [ + 5202.341751648433, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.173178148521, + "min_y": 5200.753410884859, + "max_x": 5202.173178148521, + "max_y": 5200.777492813418, + "center": [ + 5202.173178148521, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.173178148521, + 5200.777492813418 + ], + [ + 5202.173178148521, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.197260077081, + "min_y": 5200.777492813418, + "max_x": 5202.197260077081, + "max_y": 5200.801574741976, + "center": [ + 5202.197260077081, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.197260077081, + 5200.801574741976 + ], + [ + 5202.197260077081, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C10", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5202.249437588957, + "min_y": 5201.339404479792, + "max_x": 5202.289574136555, + "max_y": 5201.37954102739, + "center": [ + 5202.269505862756, + 5201.359472753591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.269505862756, + 5201.359472753591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.547293316924, + "min_y": 5201.33940447979, + "max_x": 5202.547293316924, + "max_y": 5201.379541027389, + "center": [ + 5202.547293316924, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.547293316924, + 5201.379541027389 + ], + [ + 5202.547293316924, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C12", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5201.181805422848, + "min_y": 5201.379541027389, + "max_x": 5201.205887351407, + "max_y": 5201.403622955948, + "center": [ + 5201.193846387127, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.193846387127, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C13", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.989149994378, + "min_y": 5201.379541027389, + "max_x": 5201.013231922937, + "max_y": 5201.403622955948, + "center": [ + 5201.001190958657, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.001190958657, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C14", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.796494565907, + "min_y": 5201.379541027389, + "max_x": 5200.820576494466, + "max_y": 5201.403622955948, + "center": [ + 5200.808535530186, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.808535530186, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C15", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5201.374460851319, + "min_y": 5201.379541027389, + "max_x": 5201.398542779878, + "max_y": 5201.403622955948, + "center": [ + 5201.386501815598, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.386501815598, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C16", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.603839137436, + "min_y": 5201.379541027389, + "max_x": 5200.627921065995, + "max_y": 5201.403622955948, + "center": [ + 5200.615880101715, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.615880101715, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C17", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.500084078486, + "min_y": 5200.978175551409, + "max_x": 5199.901449554466, + "max_y": 5201.379541027389, + "center": [ + 5199.700766816476, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.700766816476, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C18", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.833217423551, + "min_y": 5201.379541027389, + "max_x": 5199.85729935211, + "max_y": 5201.403622955948, + "center": [ + 5199.845258387831, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.845258387831, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C19", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.640972451937, + "min_y": 5201.374111768536, + "max_x": 5199.665054380496, + "max_y": 5201.398193697095, + "center": [ + 5199.653013416217, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.653013416217, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.540220626083, + "min_y": 5201.018312099006, + "max_x": 5199.861313006869, + "max_y": 5201.3394044797915, + "center": [ + 5199.700766816476, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.700766816476, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.443892911851, + "min_y": 5200.753410884859, + "max_x": 5199.500084078489, + "max_y": 5200.753410884859, + "center": [ + 5199.47198849517, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.443892911851, + 5200.753410884859 + ], + [ + 5199.500084078489, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.476002149929, + "min_y": 5200.874832792738, + "max_x": 5199.500084078488, + "max_y": 5200.898914721297, + "center": [ + 5199.488043114208, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.737356265819, + "max_x": 5199.540220626087, + "max_y": 5201.178858289399, + "center": [ + 5199.540220626087, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5201.178858289399 + ], + [ + 5199.540220626087, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.500084078489, + "min_y": 5200.753410884859, + "max_x": 5199.500084078489, + "max_y": 5201.178858289399, + "center": [ + 5199.500084078489, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.500084078489, + 5201.178858289399 + ], + [ + 5199.500084078489, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.777492813418, + "max_x": 5199.500084078489, + "max_y": 5200.777492813418, + "center": [ + 5199.4940635963485, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.777492813418 + ], + [ + 5199.500084078489, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.801574741976, + "max_x": 5199.500084078489, + "max_y": 5200.801574741976, + "center": [ + 5199.4940635963485, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.801574741976 + ], + [ + 5199.500084078489, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.874832792736, + "max_x": 5199.500084078489, + "max_y": 5200.874832792736, + "center": [ + 5199.4940635963485, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.874832792736 + ], + [ + 5199.500084078489, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C22", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.476002149929, + "min_y": 5200.777492813418, + "max_x": 5199.500084078488, + "max_y": 5200.801574741977, + "center": [ + 5199.488043114208, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.898914721295, + "max_x": 5199.500084078489, + "max_y": 5200.898914721295, + "center": [ + 5199.4940635963485, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.898914721295 + ], + [ + 5199.500084078489, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.971160506972, + "max_x": 5199.500084078489, + "max_y": 5200.971160506972, + "center": [ + 5199.4940635963485, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.971160506972 + ], + [ + 5199.500084078489, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5200.995242435531, + "max_x": 5199.500084078489, + "max_y": 5200.995242435531, + "center": [ + 5199.4940635963485, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.995242435531 + ], + [ + 5199.500084078489, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C26", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.476002149929, + "min_y": 5200.971160506972, + "max_x": 5199.500084078488, + "max_y": 5200.9952424355315, + "center": [ + 5199.488043114208, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5201.067488221207, + "max_x": 5199.500084078489, + "max_y": 5201.067488221207, + "center": [ + 5199.4940635963485, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.067488221207 + ], + [ + 5199.500084078489, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5201.091570149766, + "max_x": 5199.500084078489, + "max_y": 5201.091570149766, + "center": [ + 5199.4940635963485, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.091570149766 + ], + [ + 5199.500084078489, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C29", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.476002149929, + "min_y": 5201.067488221208, + "max_x": 5199.500084078488, + "max_y": 5201.091570149767, + "center": [ + 5199.488043114208, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5201.163815935443, + "max_x": 5199.500084078489, + "max_y": 5201.163815935443, + "center": [ + 5199.4940635963485, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.163815935443 + ], + [ + 5199.500084078489, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.488043114208, + "min_y": 5201.187897864002, + "max_x": 5199.500287771644, + "max_y": 5201.187897864002, + "center": [ + 5199.494165442926, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.187897864002 + ], + [ + 5199.500287771644, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.476002149929, + "min_y": 5201.1638159354425, + "max_x": 5199.500084078488, + "max_y": 5201.187897864002, + "center": [ + 5199.488043114208, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.488043114208, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.567132510868, + "min_y": 5201.356408304401, + "max_x": 5199.607227768485, + "max_y": 5201.356408304401, + "center": [ + 5199.587180139677, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.567132510868, + 5201.356408304401 + ], + [ + 5199.607227768485, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.567132510868, + "min_y": 5201.332326375843, + "max_x": 5199.571456694019, + "max_y": 5201.332326375843, + "center": [ + 5199.569294602443, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.567132510868, + 5201.332326375843 + ], + [ + 5199.571456694019, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C2F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.555091546588, + "min_y": 5201.332326375842, + "max_x": 5199.579173475147, + "max_y": 5201.356408304401, + "center": [ + 5199.567132510868, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.567132510868, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C30", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.49614798623, + "min_y": 5201.257178484067, + "max_x": 5199.5202299147895, + "max_y": 5201.281260412626, + "center": [ + 5199.50818895051, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.50818895051, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.50818895051, + "min_y": 5201.281260412626, + "max_x": 5199.528176647333, + "max_y": 5201.281260412626, + "center": [ + 5199.518182798922, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.50818895051, + 5201.281260412626 + ], + [ + 5199.528176647333, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.50818895051, + "min_y": 5201.257178484067, + "max_x": 5199.515998019236, + "max_y": 5201.257178484067, + "center": [ + 5199.512093484873, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.50818895051, + 5201.257178484067 + ], + [ + 5199.515998019236, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C33", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.218528280493, + "min_y": 5201.379541027389, + "max_x": 5200.242610209052, + "max_y": 5201.403622955948, + "center": [ + 5200.230569244773, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.230569244773, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C34", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.411183708964, + "min_y": 5201.379541027389, + "max_x": 5200.435265637523, + "max_y": 5201.403622955948, + "center": [ + 5200.423224673244, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.423224673244, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C35", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.138655256646, + "min_y": 5201.018464587878, + "max_x": 5200.499926389238, + "max_y": 5201.379735720469, + "center": [ + 5200.319290822942, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.319290822942, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.167383776712, + "min_y": 5200.777492813418, + "max_x": 5200.167383776712, + "max_y": 5201.187897864002, + "center": [ + 5200.167383776712, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.167383776712, + 5201.187897864002 + ], + [ + 5200.167383776712, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.139002951732, + "min_y": 5200.777492813418, + "max_x": 5200.139002951732, + "max_y": 5201.187897864002, + "center": [ + 5200.139002951732, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.139002951732, + 5201.187897864002 + ], + [ + 5200.139002951732, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C38", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.167129087468, + "min_y": 5201.018312099006, + "max_x": 5200.488221468254, + "max_y": 5201.3394044797915, + "center": [ + 5200.327675277861, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.327675277861, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.801574741976, + "max_x": 5200.139002951732, + "max_y": 5200.801574741976, + "center": [ + 5199.83961178891, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.801574741976 + ], + [ + 5200.139002951732, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5201.163815935443, + "max_x": 5200.139002951732, + "max_y": 5201.163815935443, + "center": [ + 5199.83961178891, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5201.163815935443 + ], + [ + 5200.139002951732, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5201.091570149766, + "max_x": 5200.139002951732, + "max_y": 5201.091570149766, + "center": [ + 5199.83961178891, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5201.091570149766 + ], + [ + 5200.139002951732, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5201.067488221207, + "max_x": 5200.139002951732, + "max_y": 5201.067488221207, + "center": [ + 5199.83961178891, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5201.067488221207 + ], + [ + 5200.139002951732, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.995242435531, + "max_x": 5200.139002951732, + "max_y": 5200.995242435531, + "center": [ + 5199.83961178891, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.995242435531 + ], + [ + 5200.139002951732, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.971160506972, + "max_x": 5200.139002951732, + "max_y": 5200.971160506972, + "center": [ + 5199.83961178891, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.971160506972 + ], + [ + 5200.139002951732, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.874832792736, + "max_x": 5200.139002951732, + "max_y": 5200.874832792736, + "center": [ + 5199.83961178891, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.874832792736 + ], + [ + 5200.139002951732, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.540220626087, + "min_y": 5200.898914721295, + "max_x": 5200.139002951732, + "max_y": 5200.898914721295, + "center": [ + 5199.83961178891, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.540220626087, + 5200.898914721295 + ], + [ + 5200.139002951732, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.54047531533, + "min_y": 5201.187897864002, + "max_x": 5200.139002951732, + "max_y": 5201.187897864002, + "center": [ + 5199.839739133531, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.54047531533, + 5201.187897864002 + ], + [ + 5200.139002951732, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.700766816476, + "min_y": 5201.33940447979, + "max_x": 5200.205519543509, + "max_y": 5201.33940447979, + "center": [ + 5199.953143179992, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.700766816476, + 5201.33940447979 + ], + [ + 5200.205519543509, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.653622085143, + "min_y": 5201.332326375843, + "max_x": 5200.197307292618, + "max_y": 5201.332326375843, + "center": [ + 5199.92546468888, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.653622085143, + 5201.332326375843 + ], + [ + 5200.197307292618, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.577118587991, + "min_y": 5201.281260412626, + "max_x": 5200.158421622218, + "max_y": 5201.281260412626, + "center": [ + 5199.867770105105, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.577118587991, + 5201.281260412626 + ], + [ + 5200.158421622218, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.560620370372, + "min_y": 5201.257178484067, + "max_x": 5200.148246631556, + "max_y": 5201.257178484067, + "center": [ + 5199.854433500964, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.560620370372, + 5201.257178484067 + ], + [ + 5200.148246631556, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C46", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.025872852026, + "min_y": 5201.379541027389, + "max_x": 5200.049954780585, + "max_y": 5201.403622955948, + "center": [ + 5200.037913816305, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.037913816305, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.473788389654, + "min_y": 5200.593871684834, + "max_x": 5196.473788389654, + "max_y": 5201.529744746113, + "center": [ + 5196.473788389654, + 5201.061808215473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.473788389654, + 5201.529744746113 + ], + [ + 5196.473788389654, + 5200.593871684834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C48", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5196.4537201158555, + "min_y": 5200.71327433726, + "max_x": 5196.493856663453, + "max_y": 5200.753410884858, + "center": [ + 5196.473788389654, + 5200.733342611059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.473788389654, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C49", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5193.696339295867, + "min_y": 5200.7132743372595, + "max_x": 5193.744503152985, + "max_y": 5200.761438194378, + "center": [ + 5193.720421224426, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.720421224426, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.64817543875, + "min_y": 5200.713274337261, + "max_x": 5193.64817543875, + "max_y": 5200.753410884859, + "center": [ + 5193.64817543875, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.64817543875, + 5200.753410884859 + ], + [ + 5193.64817543875, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.203073626326, + "min_y": 5200.7132743372595, + "max_x": 5199.251237483444, + "max_y": 5200.761438194378, + "center": [ + 5199.227155554885, + 5200.737356265819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.227155554885, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.299401340562, + "min_y": 5200.713274337261, + "max_x": 5199.299401340562, + "max_y": 5200.753410884859, + "center": [ + 5199.299401340562, + 5200.73334261106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.299401340562, + 5200.753410884859 + ], + [ + 5199.299401340562, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.227155554885, + "min_y": 5200.713274337261, + "max_x": 5199.299401340562, + "max_y": 5200.713274337261, + "center": [ + 5199.263278447724, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.299401340562, + 5200.713274337261 + ], + [ + 5199.227155554885, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.64817543875, + "min_y": 5200.713274337261, + "max_x": 5193.720421224426, + "max_y": 5200.713274337261, + "center": [ + 5193.684298331587, + 5200.713274337261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.64817543875, + 5200.713274337261 + ], + [ + 5193.720421224426, + 5200.713274337261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.53195780476, + "min_y": 5201.33940447979, + "max_x": 5196.453720115856, + "max_y": 5201.33940447979, + "center": [ + 5195.492838960308, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.53195780476, + 5201.33940447979 + ], + [ + 5196.453720115856, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.484813073424, + "min_y": 5201.332326375843, + "max_x": 5196.453720115856, + "max_y": 5201.332326375843, + "center": [ + 5195.46926659464, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.484813073424, + 5201.332326375843 + ], + [ + 5196.453720115856, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.995242435531, + "max_x": 5196.453720115856, + "max_y": 5200.995242435531, + "center": [ + 5195.412693209733, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5200.995242435531 + ], + [ + 5196.453720115856, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.971160506972, + "max_x": 5196.453720115856, + "max_y": 5200.971160506972, + "center": [ + 5195.412693209733, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5200.971160506972 + ], + [ + 5196.453720115856, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.898914721295, + "max_x": 5196.453720115856, + "max_y": 5200.898914721295, + "center": [ + 5195.412693209733, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5200.898914721295 + ], + [ + 5196.453720115856, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.874832792736, + "max_x": 5196.453720115856, + "max_y": 5200.874832792736, + "center": [ + 5195.412693209733, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5200.874832792736 + ], + [ + 5196.453720115856, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.801574741976, + "max_x": 5196.401542603979, + "max_y": 5200.801574741976, + "center": [ + 5195.3866044537945, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5200.801574741976 + ], + [ + 5196.401542603979, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5201.163815935443, + "max_x": 5196.453720115856, + "max_y": 5201.163815935443, + "center": [ + 5195.412693209733, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5201.163815935443 + ], + [ + 5196.453720115856, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5201.091570149766, + "max_x": 5196.453720115856, + "max_y": 5201.091570149766, + "center": [ + 5195.412693209733, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5201.091570149766 + ], + [ + 5196.453720115856, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5201.067488221207, + "max_x": 5196.453720115856, + "max_y": 5201.067488221207, + "center": [ + 5195.412693209733, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5201.067488221207 + ], + [ + 5196.453720115856, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.408309576273, + "min_y": 5201.281260412626, + "max_x": 5196.453720115856, + "max_y": 5201.281260412626, + "center": [ + 5195.4310148460645, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.408309576273, + 5201.281260412626 + ], + [ + 5196.453720115856, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.391811358651, + "min_y": 5201.257178484067, + "max_x": 5196.453720115856, + "max_y": 5201.257178484067, + "center": [ + 5195.422765737254, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.391811358651, + 5201.257178484067 + ], + [ + 5196.453720115856, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5201.187897864002, + "max_x": 5196.453720115856, + "max_y": 5201.187897864002, + "center": [ + 5195.412693209733, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5201.187897864002 + ], + [ + 5196.453720115856, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.777492813418, + "max_x": 5196.37746067542, + "max_y": 5200.777492813418, + "center": [ + 5195.060981914202, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.777492813418 + ], + [ + 5196.37746067542, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.905049343377, + "min_y": 5201.379541027389, + "max_x": 5199.042527435933, + "max_y": 5201.379541027389, + "center": [ + 5196.473788389655, + 5201.379541027389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.905049343377, + 5201.379541027389 + ], + [ + 5199.042527435933, + 5201.379541027389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.163815935443, + "max_x": 5198.5759104757, + "max_y": 5201.163815935443, + "center": [ + 5197.534883569577, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.163815935443 + ], + [ + 5198.5759104757, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.091570149766, + "max_x": 5198.5759104757, + "max_y": 5201.091570149766, + "center": [ + 5197.534883569577, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.091570149766 + ], + [ + 5198.5759104757, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.067488221207, + "max_x": 5198.5759104757, + "max_y": 5201.067488221207, + "center": [ + 5197.534883569577, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.067488221207 + ], + [ + 5198.5759104757, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.995242435531, + "max_x": 5198.5759104757, + "max_y": 5200.995242435531, + "center": [ + 5197.534883569577, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5200.995242435531 + ], + [ + 5198.5759104757, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.971160506972, + "max_x": 5198.5759104757, + "max_y": 5200.971160506972, + "center": [ + 5197.534883569577, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5200.971160506972 + ], + [ + 5198.5759104757, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.570116103891, + "min_y": 5200.777492813418, + "max_x": 5199.203073626326, + "max_y": 5200.777492813418, + "center": [ + 5197.886594865109, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.570116103891, + 5200.777492813418 + ], + [ + 5199.203073626326, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.898914721295, + "max_x": 5198.5759104757, + "max_y": 5200.898914721295, + "center": [ + 5197.534883569577, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5200.898914721295 + ], + [ + 5198.5759104757, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.874832792736, + "max_x": 5198.5759104757, + "max_y": 5200.874832792736, + "center": [ + 5197.534883569577, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5200.874832792736 + ], + [ + 5198.5759104757, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.546034175331, + "min_y": 5200.801574741976, + "max_x": 5198.5759104757, + "max_y": 5200.801574741976, + "center": [ + 5197.560972325516, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.546034175331, + 5200.801574741976 + ], + [ + 5198.5759104757, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.257178484067, + "max_x": 5198.555765420659, + "max_y": 5201.257178484067, + "center": [ + 5197.524811042056, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.257178484067 + ], + [ + 5198.555765420659, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.187897864002, + "max_x": 5198.5759104757, + "max_y": 5201.187897864002, + "center": [ + 5197.534883569577, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.187897864002 + ], + [ + 5198.5759104757, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.33940447979, + "max_x": 5198.41561897455, + "max_y": 5201.33940447979, + "center": [ + 5197.454737819002, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.33940447979 + ], + [ + 5198.41561897455, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.332326375843, + "max_x": 5198.462763705886, + "max_y": 5201.332326375843, + "center": [ + 5197.47831018467, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.332326375843 + ], + [ + 5198.462763705886, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5201.281260412626, + "max_x": 5198.539267203038, + "max_y": 5201.281260412626, + "center": [ + 5197.5165619332465, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.281260412626 + ], + [ + 5198.539267203038, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.537774708903, + "min_y": 5201.33940447979, + "max_x": 5199.042527435933, + "max_y": 5201.33940447979, + "center": [ + 5198.790151072419, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.537774708903, + 5201.33940447979 + ], + [ + 5199.042527435933, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.545986959794, + "min_y": 5201.332326375843, + "max_x": 5199.089672167269, + "max_y": 5201.332326375843, + "center": [ + 5198.817829563532, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.545986959794, + 5201.332326375843 + ], + [ + 5199.089672167269, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.995242435531, + "max_x": 5199.203073626326, + "max_y": 5200.995242435531, + "center": [ + 5198.903682463503, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5200.995242435531 + ], + [ + 5199.203073626326, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.971160506972, + "max_x": 5199.203073626326, + "max_y": 5200.971160506972, + "center": [ + 5198.903682463503, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5200.971160506972 + ], + [ + 5199.203073626326, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.898914721295, + "max_x": 5199.203073626326, + "max_y": 5200.898914721295, + "center": [ + 5198.903682463503, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5200.898914721295 + ], + [ + 5199.203073626326, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.874832792736, + "max_x": 5199.203073626326, + "max_y": 5200.874832792736, + "center": [ + 5198.903682463503, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5200.874832792736 + ], + [ + 5199.203073626326, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.801574741976, + "max_x": 5199.203073626326, + "max_y": 5200.801574741976, + "center": [ + 5198.903682463503, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5200.801574741976 + ], + [ + 5199.203073626326, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5201.163815935443, + "max_x": 5199.203073626326, + "max_y": 5201.163815935443, + "center": [ + 5198.903682463503, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5201.163815935443 + ], + [ + 5199.203073626326, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5201.091570149766, + "max_x": 5199.203073626326, + "max_y": 5201.091570149766, + "center": [ + 5198.903682463503, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5201.091570149766 + ], + [ + 5199.203073626326, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5201.067488221207, + "max_x": 5199.203073626326, + "max_y": 5201.067488221207, + "center": [ + 5198.903682463503, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5201.067488221207 + ], + [ + 5199.203073626326, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5201.187897864002, + "max_x": 5199.203073626326, + "max_y": 5201.187897864002, + "center": [ + 5198.903682463503, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5201.187897864002 + ], + [ + 5199.203073626326, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.584872630194, + "min_y": 5201.281260412626, + "max_x": 5199.16617566442, + "max_y": 5201.281260412626, + "center": [ + 5198.875524147306, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.584872630194, + 5201.281260412626 + ], + [ + 5199.16617566442, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.595047620859, + "min_y": 5201.257178484067, + "max_x": 5199.18267388204, + "max_y": 5201.257178484067, + "center": [ + 5198.888860751449, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.595047620859, + 5201.257178484067 + ], + [ + 5199.18267388204, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C79", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.078239871916, + "min_y": 5201.374111768536, + "max_x": 5199.102321800475, + "max_y": 5201.398193697095, + "center": [ + 5199.090280836195, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.090280836195, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.885994900301, + "min_y": 5201.379541027389, + "max_x": 5198.91007682886, + "max_y": 5201.403622955948, + "center": [ + 5198.89803586458, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.89803586458, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.69333947183, + "min_y": 5201.379541027389, + "max_x": 5198.717421400389, + "max_y": 5201.403622955948, + "center": [ + 5198.705380436109, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.705380436109, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.203073626326, + "min_y": 5200.737356265819, + "max_x": 5199.203073626326, + "max_y": 5201.178858289399, + "center": [ + 5199.203073626326, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.203073626326, + 5201.178858289399 + ], + [ + 5199.203073626326, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.203073626326, + "min_y": 5200.737356265819, + "max_x": 5199.203073626326, + "max_y": 5201.178858289399, + "center": [ + 5199.203073626326, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.203073626326, + 5201.178858289399 + ], + [ + 5199.203073626326, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.171837558393, + "min_y": 5201.332326375843, + "max_x": 5199.176161741545, + "max_y": 5201.332326375843, + "center": [ + 5199.173999649969, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.171837558393, + 5201.332326375843 + ], + [ + 5199.176161741545, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.171837558393, + "min_y": 5201.332326375843, + "max_x": 5199.176161741545, + "max_y": 5201.332326375843, + "center": [ + 5199.173999649969, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.176161741545, + 5201.332326375843 + ], + [ + 5199.171837558393, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C80", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.164120777265, + "min_y": 5201.332326375842, + "max_x": 5199.188202705825, + "max_y": 5201.356408304401, + "center": [ + 5199.176161741545, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.176161741545, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.136066483928, + "min_y": 5201.356408304401, + "max_x": 5199.176161741545, + "max_y": 5201.356408304401, + "center": [ + 5199.156114112737, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.176161741545, + 5201.356408304401 + ], + [ + 5199.136066483928, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C82", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173924, + "min_y": 5200.874832792738, + "max_x": 5199.267292102483, + "max_y": 5200.898914721297, + "center": [ + 5199.255251138204, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.753410884859, + "max_x": 5199.243210173925, + "max_y": 5201.178858289399, + "center": [ + 5199.243210173925, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5201.178858289399 + ], + [ + 5199.243210173925, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.777492813418, + "max_x": 5199.255251138204, + "max_y": 5200.777492813418, + "center": [ + 5199.249230656064, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.777492813418 + ], + [ + 5199.255251138204, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.777492813418, + "max_x": 5199.255251138204, + "max_y": 5200.777492813418, + "center": [ + 5199.249230656064, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.777492813418 + ], + [ + 5199.243210173925, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.753410884859, + "max_x": 5199.299401340562, + "max_y": 5200.753410884859, + "center": [ + 5199.271305757244, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.299401340562, + 5200.753410884859 + ], + [ + 5199.243210173925, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.801574741976, + "max_x": 5199.255251138204, + "max_y": 5200.801574741976, + "center": [ + 5199.249230656064, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.801574741976 + ], + [ + 5199.255251138204, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.801574741976, + "max_x": 5199.255251138204, + "max_y": 5200.801574741976, + "center": [ + 5199.249230656064, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.801574741976 + ], + [ + 5199.243210173925, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.874832792736, + "max_x": 5199.255251138204, + "max_y": 5200.874832792736, + "center": [ + 5199.249230656064, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.874832792736 + ], + [ + 5199.255251138204, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.874832792736, + "max_x": 5199.255251138204, + "max_y": 5200.874832792736, + "center": [ + 5199.249230656064, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.874832792736 + ], + [ + 5199.243210173925, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173924, + "min_y": 5200.777492813418, + "max_x": 5199.267292102483, + "max_y": 5200.801574741977, + "center": [ + 5199.255251138204, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.898914721295, + "max_x": 5199.255251138204, + "max_y": 5200.898914721295, + "center": [ + 5199.249230656064, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.898914721295 + ], + [ + 5199.255251138204, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.898914721295, + "max_x": 5199.255251138204, + "max_y": 5200.898914721295, + "center": [ + 5199.249230656064, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.898914721295 + ], + [ + 5199.243210173925, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.971160506972, + "max_x": 5199.255251138204, + "max_y": 5200.971160506972, + "center": [ + 5199.249230656064, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.971160506972 + ], + [ + 5199.255251138204, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.995242435531, + "max_x": 5199.255251138204, + "max_y": 5200.995242435531, + "center": [ + 5199.249230656064, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5200.995242435531 + ], + [ + 5199.255251138204, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.995242435531, + "max_x": 5199.255251138204, + "max_y": 5200.995242435531, + "center": [ + 5199.249230656064, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.995242435531 + ], + [ + 5199.243210173925, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5200.971160506972, + "max_x": 5199.255251138204, + "max_y": 5200.971160506972, + "center": [ + 5199.249230656064, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.971160506972 + ], + [ + 5199.243210173925, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C92", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173924, + "min_y": 5200.971160506972, + "max_x": 5199.267292102483, + "max_y": 5200.9952424355315, + "center": [ + 5199.255251138204, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.067488221207, + "max_x": 5199.255251138204, + "max_y": 5201.067488221207, + "center": [ + 5199.249230656064, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5201.067488221207 + ], + [ + 5199.255251138204, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.091570149766, + "max_x": 5199.255251138204, + "max_y": 5201.091570149766, + "center": [ + 5199.249230656064, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5201.091570149766 + ], + [ + 5199.255251138204, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.091570149766, + "max_x": 5199.255251138204, + "max_y": 5201.091570149766, + "center": [ + 5199.249230656064, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.091570149766 + ], + [ + 5199.243210173925, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.067488221207, + "max_x": 5199.255251138204, + "max_y": 5201.067488221207, + "center": [ + 5199.249230656064, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.067488221207 + ], + [ + 5199.243210173925, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C97", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173924, + "min_y": 5201.067488221208, + "max_x": 5199.267292102483, + "max_y": 5201.091570149767, + "center": [ + 5199.255251138204, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.163815935443, + "max_x": 5199.255251138204, + "max_y": 5201.163815935443, + "center": [ + 5199.249230656064, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.243210173925, + 5201.163815935443 + ], + [ + 5199.255251138204, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173925, + "min_y": 5201.163815935443, + "max_x": 5199.255251138204, + "max_y": 5201.163815935443, + "center": [ + 5199.249230656064, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.163815935443 + ], + [ + 5199.243210173925, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.24300648077, + "min_y": 5201.187897864002, + "max_x": 5199.255251138204, + "max_y": 5201.187897864002, + "center": [ + 5199.249128809487, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.24300648077, + 5201.187897864002 + ], + [ + 5199.255251138204, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.24300648077, + "min_y": 5201.187897864002, + "max_x": 5199.255251138204, + "max_y": 5201.187897864002, + "center": [ + 5199.249128809487, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.187897864002 + ], + [ + 5199.24300648077, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.243210173924, + "min_y": 5201.1638159354425, + "max_x": 5199.267292102483, + "max_y": 5201.187897864002, + "center": [ + 5199.255251138204, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.255251138204, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.223064337623, + "min_y": 5201.257178484067, + "max_x": 5199.247146266182, + "max_y": 5201.281260412626, + "center": [ + 5199.235105301903, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.235105301903, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.21511760508, + "min_y": 5201.281260412626, + "max_x": 5199.235105301903, + "max_y": 5201.281260412626, + "center": [ + 5199.225111453492, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.21511760508, + 5201.281260412626 + ], + [ + 5199.235105301903, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552C9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.21511760508, + "min_y": 5201.281260412626, + "max_x": 5199.235105301903, + "max_y": 5201.281260412626, + "center": [ + 5199.225111453492, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.235105301903, + 5201.281260412626 + ], + [ + 5199.21511760508, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.227296233175, + "min_y": 5201.257178484067, + "max_x": 5199.240308427472, + "max_y": 5201.257178484067, + "center": [ + 5199.233802330324, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.227296233175, + 5201.257178484067 + ], + [ + 5199.240308427472, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.227296233175, + "min_y": 5201.257178484067, + "max_x": 5199.235105301903, + "max_y": 5201.257178484067, + "center": [ + 5199.231200767539, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.235105301903, + 5201.257178484067 + ], + [ + 5199.227296233175, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5198.841844697943, + "min_y": 5200.978175551409, + "max_x": 5199.243210173923, + "max_y": 5201.379541027389, + "center": [ + 5199.042527435933, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.042527435933, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5198.88198124554, + "min_y": 5201.018312099006, + "max_x": 5199.203073626326, + "max_y": 5201.3394044797915, + "center": [ + 5199.042527435933, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.042527435933, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5198.243367863173, + "min_y": 5201.018464587878, + "max_x": 5198.604638995765, + "max_y": 5201.379735720469, + "center": [ + 5198.424003429469, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.424003429469, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5198.255072784157, + "min_y": 5201.018312099006, + "max_x": 5198.576165164943, + "max_y": 5201.3394044797915, + "center": [ + 5198.41561897455, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.41561897455, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.60429130068, + "min_y": 5200.777492813418, + "max_x": 5198.60429130068, + "max_y": 5201.187897864002, + "center": [ + 5198.60429130068, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.60429130068, + 5201.187897864002 + ], + [ + 5198.60429130068, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.5759104757, + "min_y": 5200.777492813418, + "max_x": 5198.5759104757, + "max_y": 5201.187897864002, + "center": [ + 5198.5759104757, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.5759104757, + 5201.187897864002 + ], + [ + 5198.5759104757, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5197.730062329475, + "min_y": 5201.379541027389, + "max_x": 5197.754144258034, + "max_y": 5201.403622955948, + "center": [ + 5197.742103293755, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.742103293755, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CA9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5197.537406901003, + "min_y": 5201.379541027389, + "max_x": 5197.561488829562, + "max_y": 5201.403622955948, + "center": [ + 5197.549447865283, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.549447865283, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5197.344751472535, + "min_y": 5201.379541027389, + "max_x": 5197.368833401094, + "max_y": 5201.403622955948, + "center": [ + 5197.356792436814, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.356792436814, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5197.922717757947, + "min_y": 5201.379541027389, + "max_x": 5197.946799686506, + "max_y": 5201.403622955948, + "center": [ + 5197.934758722226, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.934758722226, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.308028614889, + "min_y": 5201.379541027389, + "max_x": 5198.332110543448, + "max_y": 5201.403622955948, + "center": [ + 5198.320069579168, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.320069579168, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.500684043359, + "min_y": 5201.379541027389, + "max_x": 5198.524765971918, + "max_y": 5201.403622955948, + "center": [ + 5198.512725007638, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.512725007638, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5198.115373186418, + "min_y": 5201.379541027389, + "max_x": 5198.139455114977, + "max_y": 5201.403622955948, + "center": [ + 5198.127414150697, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.127414150697, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.196000935488, + "min_y": 5201.33940447979, + "max_x": 5196.196000935488, + "max_y": 5201.379541027389, + "center": [ + 5196.196000935488, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.196000935488, + 5201.379541027389 + ], + [ + 5196.196000935488, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.733342611059, + "max_x": 5196.493856663455, + "max_y": 5201.359472753591, + "center": [ + 5196.493856663455, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5201.359472753591 + ], + [ + 5196.493856663455, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.453720115856, + "min_y": 5200.733342611059, + "max_x": 5196.453720115856, + "max_y": 5201.359472753591, + "center": [ + 5196.453720115856, + 5201.046407682325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.453720115856, + 5201.359472753591 + ], + [ + 5196.453720115856, + 5200.733342611059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.401542603979, + "min_y": 5200.777492813418, + "max_x": 5196.453720115856, + "max_y": 5200.777492813418, + "center": [ + 5196.4276313599175, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.401542603979, + 5200.777492813418 + ], + [ + 5196.453720115856, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.37746067542, + "min_y": 5200.753410884859, + "max_x": 5196.453720115856, + "max_y": 5200.753410884859, + "center": [ + 5196.415590395638, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.453720115856, + 5200.753410884859 + ], + [ + 5196.37746067542, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.753410884859, + "max_x": 5196.570116103891, + "max_y": 5200.753410884859, + "center": [ + 5196.531986383673, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.570116103891, + 5200.753410884859 + ], + [ + 5196.493856663455, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.570116103891, + "min_y": 5200.753410884859, + "max_x": 5196.570116103891, + "max_y": 5200.777492813418, + "center": [ + 5196.570116103891, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.570116103891, + 5200.777492813418 + ], + [ + 5196.570116103891, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.493856663455, + "min_y": 5200.777492813418, + "max_x": 5196.546034175331, + "max_y": 5200.777492813418, + "center": [ + 5196.5199454193935, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.493856663455, + 5200.777492813418 + ], + [ + 5196.546034175331, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.546034175331, + "min_y": 5200.777492813418, + "max_x": 5196.546034175331, + "max_y": 5200.801574741976, + "center": [ + 5196.546034175331, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.546034175331, + 5200.801574741976 + ], + [ + 5196.546034175331, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.37746067542, + "min_y": 5200.753410884859, + "max_x": 5196.37746067542, + "max_y": 5200.777492813418, + "center": [ + 5196.37746067542, + 5200.765451849138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.37746067542, + 5200.777492813418 + ], + [ + 5196.37746067542, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.401542603979, + "min_y": 5200.777492813418, + "max_x": 5196.401542603979, + "max_y": 5200.801574741976, + "center": [ + 5196.401542603979, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.401542603979, + 5200.801574741976 + ], + [ + 5196.401542603979, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5196.4537201158555, + "min_y": 5201.339404479792, + "max_x": 5196.493856663453, + "max_y": 5201.37954102739, + "center": [ + 5196.473788389654, + 5201.359472753591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.473788389654, + 5201.359472753591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5196.751575843823, + "min_y": 5201.33940447979, + "max_x": 5196.751575843823, + "max_y": 5201.379541027389, + "center": [ + 5196.751575843823, + 5201.359472753589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.751575843823, + 5201.379541027389 + ], + [ + 5196.751575843823, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.386087949746, + "min_y": 5201.379541027389, + "max_x": 5195.410169878305, + "max_y": 5201.403622955948, + "center": [ + 5195.398128914026, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.398128914026, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.193432521276, + "min_y": 5201.379541027389, + "max_x": 5195.217514449835, + "max_y": 5201.403622955948, + "center": [ + 5195.205473485556, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.205473485556, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.000777092805, + "min_y": 5201.379541027389, + "max_x": 5195.024859021364, + "max_y": 5201.403622955948, + "center": [ + 5195.012818057085, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.012818057085, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CBF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5195.578743378215, + "min_y": 5201.379541027389, + "max_x": 5195.602825306774, + "max_y": 5201.403622955948, + "center": [ + 5195.590784342495, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.590784342495, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5194.808121664333, + "min_y": 5201.379541027389, + "max_x": 5194.832203592892, + "max_y": 5201.403622955948, + "center": [ + 5194.820162628613, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.820162628613, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5193.704366605387, + "min_y": 5200.978175551409, + "max_x": 5194.105732081367, + "max_y": 5201.379541027389, + "center": [ + 5193.905049343377, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.905049343377, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5194.037499950449, + "min_y": 5201.379541027389, + "max_x": 5194.061581879008, + "max_y": 5201.403622955948, + "center": [ + 5194.049540914729, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.049540914729, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.845254978834, + "min_y": 5201.374111768536, + "max_x": 5193.8693369073935, + "max_y": 5201.398193697095, + "center": [ + 5193.857295943114, + 5201.386152732815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.857295943114, + 5201.386152732815 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5201.018312099006, + "max_x": 5194.06559553377, + "max_y": 5201.3394044797915, + "center": [ + 5193.905049343377, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.905049343377, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.64817543875, + "min_y": 5200.753410884859, + "max_x": 5193.704366605387, + "max_y": 5200.753410884859, + "center": [ + 5193.676271022068, + 5200.753410884859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.64817543875, + 5200.753410884859 + ], + [ + 5193.704366605387, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5200.874832792738, + "max_x": 5193.704366605386, + "max_y": 5200.898914721297, + "center": [ + 5193.692325641106, + 5200.886873757017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.886873757017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.737356265819, + "max_x": 5193.744503152984, + "max_y": 5201.178858289399, + "center": [ + 5193.744503152984, + 5200.958107277609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5201.178858289399 + ], + [ + 5193.744503152984, + 5200.737356265819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.704366605387, + "min_y": 5200.753410884859, + "max_x": 5193.704366605387, + "max_y": 5201.178858289399, + "center": [ + 5193.704366605387, + 5200.966134587128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.704366605387, + 5201.178858289399 + ], + [ + 5193.704366605387, + 5200.753410884859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.777492813418, + "max_x": 5193.704366605387, + "max_y": 5200.777492813418, + "center": [ + 5193.698346123247, + 5200.777492813418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.777492813418 + ], + [ + 5193.704366605387, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.801574741976, + "max_x": 5193.704366605387, + "max_y": 5200.801574741976, + "center": [ + 5193.698346123247, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.801574741976 + ], + [ + 5193.704366605387, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.874832792736, + "max_x": 5193.704366605387, + "max_y": 5200.874832792736, + "center": [ + 5193.698346123247, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.874832792736 + ], + [ + 5193.704366605387, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5200.777492813418, + "max_x": 5193.704366605386, + "max_y": 5200.801574741977, + "center": [ + 5193.692325641106, + 5200.789533777697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.789533777697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.898914721295, + "max_x": 5193.704366605387, + "max_y": 5200.898914721295, + "center": [ + 5193.698346123247, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.898914721295 + ], + [ + 5193.704366605387, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.971160506972, + "max_x": 5193.704366605387, + "max_y": 5200.971160506972, + "center": [ + 5193.698346123247, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.971160506972 + ], + [ + 5193.704366605387, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5200.995242435531, + "max_x": 5193.704366605387, + "max_y": 5200.995242435531, + "center": [ + 5193.698346123247, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.995242435531 + ], + [ + 5193.704366605387, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5200.971160506972, + "max_x": 5193.704366605386, + "max_y": 5200.9952424355315, + "center": [ + 5193.692325641106, + 5200.983201471252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5200.983201471252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5201.067488221207, + "max_x": 5193.704366605387, + "max_y": 5201.067488221207, + "center": [ + 5193.698346123247, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.067488221207 + ], + [ + 5193.704366605387, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5201.091570149766, + "max_x": 5193.704366605387, + "max_y": 5201.091570149766, + "center": [ + 5193.698346123247, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.091570149766 + ], + [ + 5193.704366605387, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5201.067488221208, + "max_x": 5193.704366605386, + "max_y": 5201.091570149767, + "center": [ + 5193.692325641106, + 5201.079529185487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.079529185487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5201.163815935443, + "max_x": 5193.704366605387, + "max_y": 5201.163815935443, + "center": [ + 5193.698346123247, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.163815935443 + ], + [ + 5193.704366605387, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.692325641106, + "min_y": 5201.187897864002, + "max_x": 5193.704570298542, + "max_y": 5201.187897864002, + "center": [ + 5193.698447969824, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.187897864002 + ], + [ + 5193.704570298542, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.680284676827, + "min_y": 5201.1638159354425, + "max_x": 5193.704366605386, + "max_y": 5201.187897864002, + "center": [ + 5193.692325641106, + 5201.175856899722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.692325641106, + 5201.175856899722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.771415037765, + "min_y": 5201.356408304401, + "max_x": 5193.811510295383, + "max_y": 5201.356408304401, + "center": [ + 5193.791462666574, + 5201.356408304401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.771415037765, + 5201.356408304401 + ], + [ + 5193.811510295383, + 5201.356408304401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.771415037765, + "min_y": 5201.332326375843, + "max_x": 5193.775739220917, + "max_y": 5201.332326375843, + "center": [ + 5193.773577129341, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.771415037765, + 5201.332326375843 + ], + [ + 5193.775739220917, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CD9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.759374073486, + "min_y": 5201.332326375842, + "max_x": 5193.783456002045, + "max_y": 5201.356408304401, + "center": [ + 5193.771415037765, + 5201.344367340122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.771415037765, + 5201.344367340122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5193.700430513128, + "min_y": 5201.257178484067, + "max_x": 5193.724512441687, + "max_y": 5201.281260412626, + "center": [ + 5193.712471477407, + 5201.269219448346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.712471477407, + 5201.269219448346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.712471477407, + "min_y": 5201.281260412626, + "max_x": 5193.732459174231, + "max_y": 5201.281260412626, + "center": [ + 5193.722465325819, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.712471477407, + 5201.281260412626 + ], + [ + 5193.732459174231, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.712471477407, + "min_y": 5201.257178484067, + "max_x": 5193.720280546134, + "max_y": 5201.257178484067, + "center": [ + 5193.716376011771, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.712471477407, + 5201.257178484067 + ], + [ + 5193.720280546134, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5194.422810807392, + "min_y": 5201.379541027389, + "max_x": 5194.446892735951, + "max_y": 5201.403622955948, + "center": [ + 5194.434851771672, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.434851771672, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5194.615466235862, + "min_y": 5201.379541027389, + "max_x": 5194.639548164421, + "max_y": 5201.403622955948, + "center": [ + 5194.627507200142, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.627507200142, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CDF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5194.3429377835455, + "min_y": 5201.018464587878, + "max_x": 5194.704208916137, + "max_y": 5201.379735720469, + "center": [ + 5194.523573349841, + 5201.199100154174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.523573349841, + 5201.199100154174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.37166630361, + "min_y": 5200.777492813418, + "max_x": 5194.37166630361, + "max_y": 5201.187897864002, + "center": [ + 5194.37166630361, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.37166630361, + 5201.187897864002 + ], + [ + 5194.37166630361, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5194.34328547863, + "min_y": 5200.777492813418, + "max_x": 5194.34328547863, + "max_y": 5201.187897864002, + "center": [ + 5194.34328547863, + 5200.982695338709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.34328547863, + 5201.187897864002 + ], + [ + 5194.34328547863, + 5200.777492813418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5194.371411614367, + "min_y": 5201.018312099006, + "max_x": 5194.692503995153, + "max_y": 5201.3394044797915, + "center": [ + 5194.53195780476, + 5201.178858289399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.53195780476, + 5201.178858289399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.801574741976, + "max_x": 5194.34328547863, + "max_y": 5200.801574741976, + "center": [ + 5194.043894315807, + 5200.801574741976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.801574741976 + ], + [ + 5194.34328547863, + 5200.801574741976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5201.163815935443, + "max_x": 5194.34328547863, + "max_y": 5201.163815935443, + "center": [ + 5194.043894315807, + 5201.163815935443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5201.163815935443 + ], + [ + 5194.34328547863, + 5201.163815935443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5201.091570149766, + "max_x": 5194.34328547863, + "max_y": 5201.091570149766, + "center": [ + 5194.043894315807, + 5201.091570149766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5201.091570149766 + ], + [ + 5194.34328547863, + 5201.091570149766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5201.067488221207, + "max_x": 5194.34328547863, + "max_y": 5201.067488221207, + "center": [ + 5194.043894315807, + 5201.067488221207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5201.067488221207 + ], + [ + 5194.34328547863, + 5201.067488221207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.995242435531, + "max_x": 5194.34328547863, + "max_y": 5200.995242435531, + "center": [ + 5194.043894315807, + 5200.995242435531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.995242435531 + ], + [ + 5194.34328547863, + 5200.995242435531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.971160506972, + "max_x": 5194.34328547863, + "max_y": 5200.971160506972, + "center": [ + 5194.043894315807, + 5200.971160506972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.971160506972 + ], + [ + 5194.34328547863, + 5200.971160506972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.874832792736, + "max_x": 5194.34328547863, + "max_y": 5200.874832792736, + "center": [ + 5194.043894315807, + 5200.874832792736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.874832792736 + ], + [ + 5194.34328547863, + 5200.874832792736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744503152984, + "min_y": 5200.898914721295, + "max_x": 5194.34328547863, + "max_y": 5200.898914721295, + "center": [ + 5194.043894315807, + 5200.898914721295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744503152984, + 5200.898914721295 + ], + [ + 5194.34328547863, + 5200.898914721295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.744757842228, + "min_y": 5201.187897864002, + "max_x": 5194.34328547863, + "max_y": 5201.187897864002, + "center": [ + 5194.044021660429, + 5201.187897864002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.744757842228, + 5201.187897864002 + ], + [ + 5194.34328547863, + 5201.187897864002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.905049343377, + "min_y": 5201.33940447979, + "max_x": 5194.409802070407, + "max_y": 5201.33940447979, + "center": [ + 5194.157425706891, + 5201.33940447979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.905049343377, + 5201.33940447979 + ], + [ + 5194.409802070407, + 5201.33940447979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.857904612041, + "min_y": 5201.332326375843, + "max_x": 5194.401589819516, + "max_y": 5201.332326375843, + "center": [ + 5194.1297472157785, + 5201.332326375843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.857904612041, + 5201.332326375843 + ], + [ + 5194.401589819516, + 5201.332326375843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.78140111489, + "min_y": 5201.281260412626, + "max_x": 5194.362704149116, + "max_y": 5201.281260412626, + "center": [ + 5194.072052632004, + 5201.281260412626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.78140111489, + 5201.281260412626 + ], + [ + 5194.362704149116, + 5201.281260412626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5193.76490289727, + "min_y": 5201.257178484067, + "max_x": 5194.352529158454, + "max_y": 5201.257178484067, + "center": [ + 5194.058716027862, + 5201.257178484067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5193.76490289727, + 5201.257178484067 + ], + [ + 5194.352529158454, + 5201.257178484067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5194.230155378924, + "min_y": 5201.379541027389, + "max_x": 5194.254237307483, + "max_y": 5201.403622955948, + "center": [ + 5194.242196343203, + 5201.391581991668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.242196343203, + 5201.391581991668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5198.964145878871, + "max_x": 5210.213131978346, + "max_y": 5199.204965164416, + "center": [ + 5209.9723126927165, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5199.204965164416 + ], + [ + 5209.81176650232, + 5199.204965164416 + ], + [ + 5209.731493407087, + 5199.124692069245 + ], + [ + 5209.731493407087, + 5199.044418974075 + ], + [ + 5209.81176650232, + 5198.964145878871 + ], + [ + 5210.132858883103, + 5198.964145878871 + ], + [ + 5210.213131978346, + 5199.044418974075 + ], + [ + 5210.213131978346, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.931361699411, + "min_y": 5193.565643716648, + "max_x": 5204.931361699411, + "max_y": 5200.753410884825, + "center": [ + 5204.931361699411, + 5197.159527300737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.931361699411, + 5193.565643716648 + ], + [ + 5204.931361699411, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.745128118585, + "min_y": 5193.565643716648, + "max_x": 5204.745128118585, + "max_y": 5200.753410884825, + "center": [ + 5204.745128118585, + 5197.159527300737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.745128118585, + 5193.565643716648 + ], + [ + 5204.745128118585, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.793883606908, + "min_y": 5193.565643716648, + "max_x": 5199.793883606908, + "max_y": 5200.753410884825, + "center": [ + 5199.793883606908, + 5197.159527300737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.793883606908, + 5193.565643716648 + ], + [ + 5199.793883606908, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.607650026086, + "min_y": 5193.565643716648, + "max_x": 5199.607650026086, + "max_y": 5200.753410884825, + "center": [ + 5199.607650026086, + 5197.159527300737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.607650026086, + 5193.565643716648 + ], + [ + 5199.607650026086, + 5200.753410884825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5198.964145878871, + "max_x": 5209.570947216742, + "max_y": 5199.204965164416, + "center": [ + 5209.330127931132, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5199.204965164416 + ], + [ + 5209.169581740791, + 5199.204965164416 + ], + [ + 5209.089308645522, + 5199.124692069245 + ], + [ + 5209.089308645522, + 5199.044418974075 + ], + [ + 5209.169581740791, + 5198.964145878871 + ], + [ + 5209.49067412154, + 5198.964145878871 + ], + [ + 5209.570947216742, + 5199.044418974075 + ], + [ + 5209.570947216742, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5198.964145878871, + "max_x": 5208.92876245511, + "max_y": 5199.204965164416, + "center": [ + 5208.687943169514, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5199.204965164416 + ], + [ + 5208.52739697916, + 5199.204965164416 + ], + [ + 5208.44712388392, + 5199.124692069245 + ], + [ + 5208.44712388392, + 5199.044418974075 + ], + [ + 5208.52739697916, + 5198.964145878871 + ], + [ + 5208.848489359941, + 5198.964145878871 + ], + [ + 5208.92876245511, + 5199.044418974075 + ], + [ + 5208.92876245511, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5198.964145878871, + "max_x": 5208.28657769358, + "max_y": 5199.204965164416, + "center": [ + 5208.045758408015, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5199.204965164416 + ], + [ + 5207.885212217652, + 5199.204965164416 + ], + [ + 5207.80493912245, + 5199.124692069245 + ], + [ + 5207.80493912245, + 5199.044418974075 + ], + [ + 5207.885212217652, + 5198.964145878871 + ], + [ + 5208.206304598474, + 5198.964145878871 + ], + [ + 5208.28657769358, + 5199.044418974075 + ], + [ + 5208.28657769358, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CF9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5198.964145878871, + "max_x": 5207.644392932047, + "max_y": 5199.204965164416, + "center": [ + 5207.40357364645, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5199.204965164416 + ], + [ + 5207.243027456025, + 5199.204965164416 + ], + [ + 5207.162754360854, + 5199.124692069245 + ], + [ + 5207.162754360854, + 5199.044418974075 + ], + [ + 5207.243027456025, + 5198.964145878871 + ], + [ + 5207.564119836774, + 5198.964145878871 + ], + [ + 5207.644392932047, + 5199.044418974075 + ], + [ + 5207.644392932047, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5198.964145878871, + "max_x": 5207.00220817041, + "max_y": 5199.204965164416, + "center": [ + 5206.76138888483, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5199.204965164416 + ], + [ + 5206.600842694491, + 5199.204965164416 + ], + [ + 5206.52056959925, + 5199.124692069245 + ], + [ + 5206.52056959925, + 5199.044418974075 + ], + [ + 5206.600842694491, + 5198.964145878871 + ], + [ + 5206.921935075175, + 5198.964145878871 + ], + [ + 5207.00220817041, + 5199.044418974075 + ], + [ + 5207.00220817041, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5198.9229802736, + "max_x": 5206.360030005161, + "max_y": 5199.163799559162, + "center": [ + 5206.1192107195475, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5199.163799559162 + ], + [ + 5205.958664529202, + 5199.163799559162 + ], + [ + 5205.878391433933, + 5199.083526463991 + ], + [ + 5205.878391433933, + 5199.003253368771 + ], + [ + 5205.958664529202, + 5198.9229802736 + ], + [ + 5206.279756909951, + 5198.9229802736 + ], + [ + 5206.360030005161, + 5199.003253368771 + ], + [ + 5206.360030005161, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5198.9229802736, + "max_x": 5205.717845243587, + "max_y": 5199.163799559162, + "center": [ + 5205.477025958012, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5199.163799559162 + ], + [ + 5205.316479767571, + 5199.163799559162 + ], + [ + 5205.236206672436, + 5199.083526463991 + ], + [ + 5205.236206672436, + 5199.003253368771 + ], + [ + 5205.316479767571, + 5198.9229802736 + ], + [ + 5205.637572148354, + 5198.9229802736 + ], + [ + 5205.717845243587, + 5199.003253368771 + ], + [ + 5205.717845243587, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5198.562780402848, + "max_x": 5210.213131978346, + "max_y": 5198.803599688446, + "center": [ + 5209.9723126927165, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5198.803599688446 + ], + [ + 5209.81176650232, + 5198.803599688446 + ], + [ + 5209.731493407087, + 5198.723326593274 + ], + [ + 5209.731493407087, + 5198.643053498104 + ], + [ + 5209.81176650232, + 5198.562780402848 + ], + [ + 5210.132858883103, + 5198.562780402848 + ], + [ + 5210.213131978346, + 5198.643053498104 + ], + [ + 5210.213131978346, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5198.562780402848, + "max_x": 5209.570947216742, + "max_y": 5198.803599688446, + "center": [ + 5209.330127931132, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5198.803599688446 + ], + [ + 5209.169581740791, + 5198.803599688446 + ], + [ + 5209.089308645522, + 5198.723326593274 + ], + [ + 5209.089308645522, + 5198.643053498104 + ], + [ + 5209.169581740791, + 5198.562780402848 + ], + [ + 5209.49067412154, + 5198.562780402848 + ], + [ + 5209.570947216742, + 5198.643053498104 + ], + [ + 5209.570947216742, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552CFF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5198.562780402848, + "max_x": 5208.92876245511, + "max_y": 5198.803599688446, + "center": [ + 5208.687943169514, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5198.803599688446 + ], + [ + 5208.52739697916, + 5198.803599688446 + ], + [ + 5208.44712388392, + 5198.723326593274 + ], + [ + 5208.44712388392, + 5198.643053498104 + ], + [ + 5208.52739697916, + 5198.562780402848 + ], + [ + 5208.848489359941, + 5198.562780402848 + ], + [ + 5208.92876245511, + 5198.643053498104 + ], + [ + 5208.92876245511, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D00", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5198.562780402848, + "max_x": 5208.28657769358, + "max_y": 5198.803599688446, + "center": [ + 5208.045758408015, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5198.803599688446 + ], + [ + 5207.885212217652, + 5198.803599688446 + ], + [ + 5207.80493912245, + 5198.723326593274 + ], + [ + 5207.80493912245, + 5198.643053498104 + ], + [ + 5207.885212217652, + 5198.562780402848 + ], + [ + 5208.206304598474, + 5198.562780402848 + ], + [ + 5208.28657769358, + 5198.643053498104 + ], + [ + 5208.28657769358, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D01", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5198.562780402848, + "max_x": 5207.644392932047, + "max_y": 5198.803599688446, + "center": [ + 5207.40357364645, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5198.803599688446 + ], + [ + 5207.243027456025, + 5198.803599688446 + ], + [ + 5207.162754360854, + 5198.723326593274 + ], + [ + 5207.162754360854, + 5198.643053498104 + ], + [ + 5207.243027456025, + 5198.562780402848 + ], + [ + 5207.564119836774, + 5198.562780402848 + ], + [ + 5207.644392932047, + 5198.643053498104 + ], + [ + 5207.644392932047, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D02", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5198.562780402848, + "max_x": 5207.00220817041, + "max_y": 5198.803599688446, + "center": [ + 5206.76138888483, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5198.803599688446 + ], + [ + 5206.600842694491, + 5198.803599688446 + ], + [ + 5206.52056959925, + 5198.723326593274 + ], + [ + 5206.52056959925, + 5198.643053498104 + ], + [ + 5206.600842694491, + 5198.562780402848 + ], + [ + 5206.921935075175, + 5198.562780402848 + ], + [ + 5207.00220817041, + 5198.643053498104 + ], + [ + 5207.00220817041, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D03", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5198.521614797629, + "max_x": 5206.360030005161, + "max_y": 5198.762434083175, + "center": [ + 5206.1192107195475, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5198.762434083175 + ], + [ + 5205.958664529202, + 5198.762434083175 + ], + [ + 5205.878391433933, + 5198.68216098797 + ], + [ + 5205.878391433933, + 5198.6018878928 + ], + [ + 5205.958664529202, + 5198.521614797629 + ], + [ + 5206.279756909951, + 5198.521614797629 + ], + [ + 5206.360030005161, + 5198.6018878928 + ], + [ + 5206.360030005161, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D04", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5198.521614797629, + "max_x": 5205.717845243587, + "max_y": 5198.762434083175, + "center": [ + 5205.477025958012, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5198.762434083175 + ], + [ + 5205.316479767571, + 5198.762434083175 + ], + [ + 5205.236206672436, + 5198.68216098797 + ], + [ + 5205.236206672436, + 5198.6018878928 + ], + [ + 5205.316479767571, + 5198.521614797629 + ], + [ + 5205.637572148354, + 5198.521614797629 + ], + [ + 5205.717845243587, + 5198.6018878928 + ], + [ + 5205.717845243587, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D05", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5198.161414926863, + "max_x": 5210.213131978346, + "max_y": 5198.402234212458, + "center": [ + 5209.9723126927165, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5198.402234212458 + ], + [ + 5209.81176650232, + 5198.402234212458 + ], + [ + 5209.731493407087, + 5198.321961117287 + ], + [ + 5209.731493407087, + 5198.241688022116 + ], + [ + 5209.81176650232, + 5198.161414926863 + ], + [ + 5210.132858883103, + 5198.161414926863 + ], + [ + 5210.213131978346, + 5198.241688022116 + ], + [ + 5210.213131978346, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D06", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5198.161414926863, + "max_x": 5209.570947216742, + "max_y": 5198.402234212458, + "center": [ + 5209.330127931132, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5198.402234212458 + ], + [ + 5209.169581740791, + 5198.402234212458 + ], + [ + 5209.089308645522, + 5198.321961117287 + ], + [ + 5209.089308645522, + 5198.241688022116 + ], + [ + 5209.169581740791, + 5198.161414926863 + ], + [ + 5209.49067412154, + 5198.161414926863 + ], + [ + 5209.570947216742, + 5198.241688022116 + ], + [ + 5209.570947216742, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D07", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5198.161414926863, + "max_x": 5208.92876245511, + "max_y": 5198.402234212458, + "center": [ + 5208.687943169514, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5198.402234212458 + ], + [ + 5208.52739697916, + 5198.402234212458 + ], + [ + 5208.44712388392, + 5198.321961117287 + ], + [ + 5208.44712388392, + 5198.241688022116 + ], + [ + 5208.52739697916, + 5198.161414926863 + ], + [ + 5208.848489359941, + 5198.161414926863 + ], + [ + 5208.92876245511, + 5198.241688022116 + ], + [ + 5208.92876245511, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D08", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5198.161414926863, + "max_x": 5208.28657769358, + "max_y": 5198.402234212458, + "center": [ + 5208.045758408015, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5198.402234212458 + ], + [ + 5207.885212217652, + 5198.402234212458 + ], + [ + 5207.80493912245, + 5198.321961117287 + ], + [ + 5207.80493912245, + 5198.241688022116 + ], + [ + 5207.885212217652, + 5198.161414926863 + ], + [ + 5208.206304598474, + 5198.161414926863 + ], + [ + 5208.28657769358, + 5198.241688022116 + ], + [ + 5208.28657769358, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D09", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5198.161414926863, + "max_x": 5207.644392932047, + "max_y": 5198.402234212458, + "center": [ + 5207.40357364645, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5198.402234212458 + ], + [ + 5207.243027456025, + 5198.402234212458 + ], + [ + 5207.162754360854, + 5198.321961117287 + ], + [ + 5207.162754360854, + 5198.241688022116 + ], + [ + 5207.243027456025, + 5198.161414926863 + ], + [ + 5207.564119836774, + 5198.161414926863 + ], + [ + 5207.644392932047, + 5198.241688022116 + ], + [ + 5207.644392932047, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5198.161414926863, + "max_x": 5207.00220817041, + "max_y": 5198.402234212458, + "center": [ + 5206.76138888483, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5198.402234212458 + ], + [ + 5206.600842694491, + 5198.402234212458 + ], + [ + 5206.52056959925, + 5198.321961117287 + ], + [ + 5206.52056959925, + 5198.241688022116 + ], + [ + 5206.600842694491, + 5198.161414926863 + ], + [ + 5206.921935075175, + 5198.161414926863 + ], + [ + 5207.00220817041, + 5198.241688022116 + ], + [ + 5207.00220817041, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5198.120249321641, + "max_x": 5206.360030005161, + "max_y": 5198.361068607238, + "center": [ + 5206.1192107195475, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5198.361068607238 + ], + [ + 5205.958664529202, + 5198.361068607238 + ], + [ + 5205.878391433933, + 5198.280795511983 + ], + [ + 5205.878391433933, + 5198.200522416812 + ], + [ + 5205.958664529202, + 5198.120249321641 + ], + [ + 5206.279756909951, + 5198.120249321641 + ], + [ + 5206.360030005161, + 5198.200522416812 + ], + [ + 5206.360030005161, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5198.120249321641, + "max_x": 5205.717845243587, + "max_y": 5198.361068607238, + "center": [ + 5205.477025958012, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5198.361068607238 + ], + [ + 5205.316479767571, + 5198.361068607238 + ], + [ + 5205.236206672436, + 5198.280795511983 + ], + [ + 5205.236206672436, + 5198.200522416812 + ], + [ + 5205.316479767571, + 5198.120249321641 + ], + [ + 5205.637572148354, + 5198.120249321641 + ], + [ + 5205.717845243587, + 5198.200522416812 + ], + [ + 5205.717845243587, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5197.760049450925, + "max_x": 5210.213131978346, + "max_y": 5198.000868736487, + "center": [ + 5209.9723126927165, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5198.000868736487 + ], + [ + 5209.81176650232, + 5198.000868736487 + ], + [ + 5209.731493407087, + 5197.920595641316 + ], + [ + 5209.731493407087, + 5197.840322546145 + ], + [ + 5209.81176650232, + 5197.760049450925 + ], + [ + 5210.132858883103, + 5197.760049450925 + ], + [ + 5210.213131978346, + 5197.840322546145 + ], + [ + 5210.213131978346, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5197.760049450925, + "max_x": 5209.570947216742, + "max_y": 5198.000868736487, + "center": [ + 5209.330127931132, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5198.000868736487 + ], + [ + 5209.169581740791, + 5198.000868736487 + ], + [ + 5209.089308645522, + 5197.920595641316 + ], + [ + 5209.089308645522, + 5197.840322546145 + ], + [ + 5209.169581740791, + 5197.760049450925 + ], + [ + 5209.49067412154, + 5197.760049450925 + ], + [ + 5209.570947216742, + 5197.840322546145 + ], + [ + 5209.570947216742, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D0F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5197.760049450925, + "max_x": 5208.92876245511, + "max_y": 5198.000868736487, + "center": [ + 5208.687943169514, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5198.000868736487 + ], + [ + 5208.52739697916, + 5198.000868736487 + ], + [ + 5208.44712388392, + 5197.920595641316 + ], + [ + 5208.44712388392, + 5197.840322546145 + ], + [ + 5208.52739697916, + 5197.760049450925 + ], + [ + 5208.848489359941, + 5197.760049450925 + ], + [ + 5208.92876245511, + 5197.840322546145 + ], + [ + 5208.92876245511, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D10", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5197.760049450925, + "max_x": 5208.28657769358, + "max_y": 5198.000868736487, + "center": [ + 5208.045758408015, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5198.000868736487 + ], + [ + 5207.885212217652, + 5198.000868736487 + ], + [ + 5207.80493912245, + 5197.920595641316 + ], + [ + 5207.80493912245, + 5197.840322546145 + ], + [ + 5207.885212217652, + 5197.760049450925 + ], + [ + 5208.206304598474, + 5197.760049450925 + ], + [ + 5208.28657769358, + 5197.840322546145 + ], + [ + 5208.28657769358, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D11", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5197.760049450925, + "max_x": 5207.644392932047, + "max_y": 5198.000868736487, + "center": [ + 5207.40357364645, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5198.000868736487 + ], + [ + 5207.243027456025, + 5198.000868736487 + ], + [ + 5207.162754360854, + 5197.920595641316 + ], + [ + 5207.162754360854, + 5197.840322546145 + ], + [ + 5207.243027456025, + 5197.760049450925 + ], + [ + 5207.564119836774, + 5197.760049450925 + ], + [ + 5207.644392932047, + 5197.840322546145 + ], + [ + 5207.644392932047, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D12", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5197.760049450925, + "max_x": 5207.00220817041, + "max_y": 5198.000868736487, + "center": [ + 5206.76138888483, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5198.000868736487 + ], + [ + 5206.600842694491, + 5198.000868736487 + ], + [ + 5206.52056959925, + 5197.920595641316 + ], + [ + 5206.52056959925, + 5197.840322546145 + ], + [ + 5206.600842694491, + 5197.760049450925 + ], + [ + 5206.921935075175, + 5197.760049450925 + ], + [ + 5207.00220817041, + 5197.840322546145 + ], + [ + 5207.00220817041, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D13", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5197.71888384567, + "max_x": 5206.360030005161, + "max_y": 5197.959703131266, + "center": [ + 5206.1192107195475, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5197.959703131266 + ], + [ + 5205.958664529202, + 5197.959703131266 + ], + [ + 5205.878391433933, + 5197.879430036012 + ], + [ + 5205.878391433933, + 5197.799156940842 + ], + [ + 5205.958664529202, + 5197.71888384567 + ], + [ + 5206.279756909951, + 5197.71888384567 + ], + [ + 5206.360030005161, + 5197.799156940842 + ], + [ + 5206.360030005161, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D14", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5197.71888384567, + "max_x": 5205.717845243587, + "max_y": 5197.959703131266, + "center": [ + 5205.477025958012, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5197.959703131266 + ], + [ + 5205.316479767571, + 5197.959703131266 + ], + [ + 5205.236206672436, + 5197.879430036012 + ], + [ + 5205.236206672436, + 5197.799156940842 + ], + [ + 5205.316479767571, + 5197.71888384567 + ], + [ + 5205.637572148354, + 5197.71888384567 + ], + [ + 5205.717845243587, + 5197.799156940842 + ], + [ + 5205.717845243587, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D15", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5197.358683974954, + "max_x": 5210.213131978346, + "max_y": 5197.5995032605, + "center": [ + 5209.9723126927165, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5197.5995032605 + ], + [ + 5209.81176650232, + 5197.5995032605 + ], + [ + 5209.731493407087, + 5197.519230165329 + ], + [ + 5209.731493407087, + 5197.438957070124 + ], + [ + 5209.81176650232, + 5197.358683974954 + ], + [ + 5210.132858883103, + 5197.358683974954 + ], + [ + 5210.213131978346, + 5197.438957070124 + ], + [ + 5210.213131978346, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D16", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5197.358683974954, + "max_x": 5209.570947216742, + "max_y": 5197.5995032605, + "center": [ + 5209.330127931132, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5197.5995032605 + ], + [ + 5209.169581740791, + 5197.5995032605 + ], + [ + 5209.089308645522, + 5197.519230165329 + ], + [ + 5209.089308645522, + 5197.438957070124 + ], + [ + 5209.169581740791, + 5197.358683974954 + ], + [ + 5209.49067412154, + 5197.358683974954 + ], + [ + 5209.570947216742, + 5197.438957070124 + ], + [ + 5209.570947216742, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D17", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5197.358683974954, + "max_x": 5208.92876245511, + "max_y": 5197.5995032605, + "center": [ + 5208.687943169514, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5197.5995032605 + ], + [ + 5208.52739697916, + 5197.5995032605 + ], + [ + 5208.44712388392, + 5197.519230165329 + ], + [ + 5208.44712388392, + 5197.438957070124 + ], + [ + 5208.52739697916, + 5197.358683974954 + ], + [ + 5208.848489359941, + 5197.358683974954 + ], + [ + 5208.92876245511, + 5197.438957070124 + ], + [ + 5208.92876245511, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D18", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5197.358683974954, + "max_x": 5208.28657769358, + "max_y": 5197.5995032605, + "center": [ + 5208.045758408015, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5197.5995032605 + ], + [ + 5207.885212217652, + 5197.5995032605 + ], + [ + 5207.80493912245, + 5197.519230165329 + ], + [ + 5207.80493912245, + 5197.438957070124 + ], + [ + 5207.885212217652, + 5197.358683974954 + ], + [ + 5208.206304598474, + 5197.358683974954 + ], + [ + 5208.28657769358, + 5197.438957070124 + ], + [ + 5208.28657769358, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D19", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5197.358683974954, + "max_x": 5207.644392932047, + "max_y": 5197.5995032605, + "center": [ + 5207.40357364645, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5197.5995032605 + ], + [ + 5207.243027456025, + 5197.5995032605 + ], + [ + 5207.162754360854, + 5197.519230165329 + ], + [ + 5207.162754360854, + 5197.438957070124 + ], + [ + 5207.243027456025, + 5197.358683974954 + ], + [ + 5207.564119836774, + 5197.358683974954 + ], + [ + 5207.644392932047, + 5197.438957070124 + ], + [ + 5207.644392932047, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5197.358683974954, + "max_x": 5207.00220817041, + "max_y": 5197.5995032605, + "center": [ + 5206.76138888483, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5197.5995032605 + ], + [ + 5206.600842694491, + 5197.5995032605 + ], + [ + 5206.52056959925, + 5197.519230165329 + ], + [ + 5206.52056959925, + 5197.438957070124 + ], + [ + 5206.600842694491, + 5197.358683974954 + ], + [ + 5206.921935075175, + 5197.358683974954 + ], + [ + 5207.00220817041, + 5197.438957070124 + ], + [ + 5207.00220817041, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5197.317518369683, + "max_x": 5206.360030005161, + "max_y": 5197.558337655244, + "center": [ + 5206.1192107195475, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5197.558337655244 + ], + [ + 5205.958664529202, + 5197.558337655244 + ], + [ + 5205.878391433933, + 5197.478064560023 + ], + [ + 5205.878391433933, + 5197.397791464855 + ], + [ + 5205.958664529202, + 5197.317518369683 + ], + [ + 5206.279756909951, + 5197.317518369683 + ], + [ + 5206.360030005161, + 5197.397791464855 + ], + [ + 5206.360030005161, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5197.317518369683, + "max_x": 5205.717845243587, + "max_y": 5197.558337655244, + "center": [ + 5205.477025958012, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5197.558337655244 + ], + [ + 5205.316479767571, + 5197.558337655244 + ], + [ + 5205.236206672436, + 5197.478064560023 + ], + [ + 5205.236206672436, + 5197.397791464855 + ], + [ + 5205.316479767571, + 5197.317518369683 + ], + [ + 5205.637572148354, + 5197.317518369683 + ], + [ + 5205.717845243587, + 5197.397791464855 + ], + [ + 5205.717845243587, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5196.957318498932, + "max_x": 5210.213131978346, + "max_y": 5197.198137784528, + "center": [ + 5209.9723126927165, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5197.198137784528 + ], + [ + 5209.81176650232, + 5197.198137784528 + ], + [ + 5209.731493407087, + 5197.117864689357 + ], + [ + 5209.731493407087, + 5197.037591594187 + ], + [ + 5209.81176650232, + 5196.957318498932 + ], + [ + 5210.132858883103, + 5196.957318498932 + ], + [ + 5210.213131978346, + 5197.037591594187 + ], + [ + 5210.213131978346, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5196.957318498932, + "max_x": 5209.570947216742, + "max_y": 5197.198137784528, + "center": [ + 5209.330127931132, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5197.198137784528 + ], + [ + 5209.169581740791, + 5197.198137784528 + ], + [ + 5209.089308645522, + 5197.117864689357 + ], + [ + 5209.089308645522, + 5197.037591594187 + ], + [ + 5209.169581740791, + 5196.957318498932 + ], + [ + 5209.49067412154, + 5196.957318498932 + ], + [ + 5209.570947216742, + 5197.037591594187 + ], + [ + 5209.570947216742, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D1F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5196.957318498932, + "max_x": 5208.92876245511, + "max_y": 5197.198137784528, + "center": [ + 5208.687943169514, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5197.198137784528 + ], + [ + 5208.52739697916, + 5197.198137784528 + ], + [ + 5208.44712388392, + 5197.117864689357 + ], + [ + 5208.44712388392, + 5197.037591594187 + ], + [ + 5208.52739697916, + 5196.957318498932 + ], + [ + 5208.848489359941, + 5196.957318498932 + ], + [ + 5208.92876245511, + 5197.037591594187 + ], + [ + 5208.92876245511, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D20", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5196.957318498932, + "max_x": 5208.28657769358, + "max_y": 5197.198137784528, + "center": [ + 5208.045758408015, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5197.198137784528 + ], + [ + 5207.885212217652, + 5197.198137784528 + ], + [ + 5207.80493912245, + 5197.117864689357 + ], + [ + 5207.80493912245, + 5197.037591594187 + ], + [ + 5207.885212217652, + 5196.957318498932 + ], + [ + 5208.206304598474, + 5196.957318498932 + ], + [ + 5208.28657769358, + 5197.037591594187 + ], + [ + 5208.28657769358, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D21", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5196.957318498932, + "max_x": 5207.644392932047, + "max_y": 5197.198137784528, + "center": [ + 5207.40357364645, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5197.198137784528 + ], + [ + 5207.243027456025, + 5197.198137784528 + ], + [ + 5207.162754360854, + 5197.117864689357 + ], + [ + 5207.162754360854, + 5197.037591594187 + ], + [ + 5207.243027456025, + 5196.957318498932 + ], + [ + 5207.564119836774, + 5196.957318498932 + ], + [ + 5207.644392932047, + 5197.037591594187 + ], + [ + 5207.644392932047, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D22", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5196.957318498932, + "max_x": 5207.00220817041, + "max_y": 5197.198137784528, + "center": [ + 5206.76138888483, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5197.198137784528 + ], + [ + 5206.600842694491, + 5197.198137784528 + ], + [ + 5206.52056959925, + 5197.117864689357 + ], + [ + 5206.52056959925, + 5197.037591594187 + ], + [ + 5206.600842694491, + 5196.957318498932 + ], + [ + 5206.921935075175, + 5196.957318498932 + ], + [ + 5207.00220817041, + 5197.037591594187 + ], + [ + 5207.00220817041, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D23", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5196.916152893712, + "max_x": 5206.360030005161, + "max_y": 5197.156972179257, + "center": [ + 5206.1192107195475, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5197.156972179257 + ], + [ + 5205.958664529202, + 5197.156972179257 + ], + [ + 5205.878391433933, + 5197.076699084053 + ], + [ + 5205.878391433933, + 5196.996425988881 + ], + [ + 5205.958664529202, + 5196.916152893712 + ], + [ + 5206.279756909951, + 5196.916152893712 + ], + [ + 5206.360030005161, + 5196.996425988881 + ], + [ + 5206.360030005161, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D24", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5196.916152893712, + "max_x": 5205.717845243587, + "max_y": 5197.156972179257, + "center": [ + 5205.477025958012, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5197.156972179257 + ], + [ + 5205.316479767571, + 5197.156972179257 + ], + [ + 5205.236206672436, + 5197.076699084053 + ], + [ + 5205.236206672436, + 5196.996425988881 + ], + [ + 5205.316479767571, + 5196.916152893712 + ], + [ + 5205.637572148354, + 5196.916152893712 + ], + [ + 5205.717845243587, + 5196.996425988881 + ], + [ + 5205.717845243587, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D25", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5196.555953022945, + "max_x": 5210.213131978346, + "max_y": 5196.796772308541, + "center": [ + 5209.9723126927165, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5196.796772308541 + ], + [ + 5209.81176650232, + 5196.796772308541 + ], + [ + 5209.731493407087, + 5196.71649921337 + ], + [ + 5209.731493407087, + 5196.636226118199 + ], + [ + 5209.81176650232, + 5196.555953022945 + ], + [ + 5210.132858883103, + 5196.555953022945 + ], + [ + 5210.213131978346, + 5196.636226118199 + ], + [ + 5210.213131978346, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D26", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5196.555953022945, + "max_x": 5209.570947216742, + "max_y": 5196.796772308541, + "center": [ + 5209.330127931132, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5196.796772308541 + ], + [ + 5209.169581740791, + 5196.796772308541 + ], + [ + 5209.089308645522, + 5196.71649921337 + ], + [ + 5209.089308645522, + 5196.636226118199 + ], + [ + 5209.169581740791, + 5196.555953022945 + ], + [ + 5209.49067412154, + 5196.555953022945 + ], + [ + 5209.570947216742, + 5196.636226118199 + ], + [ + 5209.570947216742, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D27", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5196.555953022945, + "max_x": 5208.92876245511, + "max_y": 5196.796772308541, + "center": [ + 5208.687943169514, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5196.796772308541 + ], + [ + 5208.52739697916, + 5196.796772308541 + ], + [ + 5208.44712388392, + 5196.71649921337 + ], + [ + 5208.44712388392, + 5196.636226118199 + ], + [ + 5208.52739697916, + 5196.555953022945 + ], + [ + 5208.848489359941, + 5196.555953022945 + ], + [ + 5208.92876245511, + 5196.636226118199 + ], + [ + 5208.92876245511, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D28", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5196.555953022945, + "max_x": 5208.28657769358, + "max_y": 5196.796772308541, + "center": [ + 5208.045758408015, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5196.796772308541 + ], + [ + 5207.885212217652, + 5196.796772308541 + ], + [ + 5207.80493912245, + 5196.71649921337 + ], + [ + 5207.80493912245, + 5196.636226118199 + ], + [ + 5207.885212217652, + 5196.555953022945 + ], + [ + 5208.206304598474, + 5196.555953022945 + ], + [ + 5208.28657769358, + 5196.636226118199 + ], + [ + 5208.28657769358, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D29", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5196.555953022945, + "max_x": 5207.644392932047, + "max_y": 5196.796772308541, + "center": [ + 5207.40357364645, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5196.796772308541 + ], + [ + 5207.243027456025, + 5196.796772308541 + ], + [ + 5207.162754360854, + 5196.71649921337 + ], + [ + 5207.162754360854, + 5196.636226118199 + ], + [ + 5207.243027456025, + 5196.555953022945 + ], + [ + 5207.564119836774, + 5196.555953022945 + ], + [ + 5207.644392932047, + 5196.636226118199 + ], + [ + 5207.644392932047, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5196.555953022945, + "max_x": 5207.00220817041, + "max_y": 5196.796772308541, + "center": [ + 5206.76138888483, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5196.796772308541 + ], + [ + 5206.600842694491, + 5196.796772308541 + ], + [ + 5206.52056959925, + 5196.71649921337 + ], + [ + 5206.52056959925, + 5196.636226118199 + ], + [ + 5206.600842694491, + 5196.555953022945 + ], + [ + 5206.921935075175, + 5196.555953022945 + ], + [ + 5207.00220817041, + 5196.636226118199 + ], + [ + 5207.00220817041, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5196.51478741769, + "max_x": 5206.360030005161, + "max_y": 5196.755606703287, + "center": [ + 5206.1192107195475, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5196.755606703287 + ], + [ + 5205.958664529202, + 5196.755606703287 + ], + [ + 5205.878391433933, + 5196.675333608066 + ], + [ + 5205.878391433933, + 5196.595060512896 + ], + [ + 5205.958664529202, + 5196.51478741769 + ], + [ + 5206.279756909951, + 5196.51478741769 + ], + [ + 5206.360030005161, + 5196.595060512896 + ], + [ + 5206.360030005161, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5196.51478741769, + "max_x": 5205.717845243587, + "max_y": 5196.755606703287, + "center": [ + 5205.477025958012, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5196.755606703287 + ], + [ + 5205.316479767571, + 5196.755606703287 + ], + [ + 5205.236206672436, + 5196.675333608066 + ], + [ + 5205.236206672436, + 5196.595060512896 + ], + [ + 5205.316479767571, + 5196.51478741769 + ], + [ + 5205.637572148354, + 5196.51478741769 + ], + [ + 5205.717845243587, + 5196.595060512896 + ], + [ + 5205.717845243587, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5196.154587546974, + "max_x": 5210.213131978346, + "max_y": 5196.395406832571, + "center": [ + 5209.9723126927165, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5196.395406832571 + ], + [ + 5209.81176650232, + 5196.395406832571 + ], + [ + 5209.731493407087, + 5196.3151337374 + ], + [ + 5209.731493407087, + 5196.234860642228 + ], + [ + 5209.81176650232, + 5196.154587546974 + ], + [ + 5210.132858883103, + 5196.154587546974 + ], + [ + 5210.213131978346, + 5196.234860642228 + ], + [ + 5210.213131978346, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5196.154587546974, + "max_x": 5209.570947216742, + "max_y": 5196.395406832571, + "center": [ + 5209.330127931132, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5196.395406832571 + ], + [ + 5209.169581740791, + 5196.395406832571 + ], + [ + 5209.089308645522, + 5196.3151337374 + ], + [ + 5209.089308645522, + 5196.234860642228 + ], + [ + 5209.169581740791, + 5196.154587546974 + ], + [ + 5209.49067412154, + 5196.154587546974 + ], + [ + 5209.570947216742, + 5196.234860642228 + ], + [ + 5209.570947216742, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D2F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5196.154587546974, + "max_x": 5208.92876245511, + "max_y": 5196.395406832571, + "center": [ + 5208.687943169514, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5196.395406832571 + ], + [ + 5208.52739697916, + 5196.395406832571 + ], + [ + 5208.44712388392, + 5196.3151337374 + ], + [ + 5208.44712388392, + 5196.234860642228 + ], + [ + 5208.52739697916, + 5196.154587546974 + ], + [ + 5208.848489359941, + 5196.154587546974 + ], + [ + 5208.92876245511, + 5196.234860642228 + ], + [ + 5208.92876245511, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D30", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5196.154587546974, + "max_x": 5208.28657769358, + "max_y": 5196.395406832571, + "center": [ + 5208.045758408015, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5196.395406832571 + ], + [ + 5207.885212217652, + 5196.395406832571 + ], + [ + 5207.80493912245, + 5196.3151337374 + ], + [ + 5207.80493912245, + 5196.234860642228 + ], + [ + 5207.885212217652, + 5196.154587546974 + ], + [ + 5208.206304598474, + 5196.154587546974 + ], + [ + 5208.28657769358, + 5196.234860642228 + ], + [ + 5208.28657769358, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D31", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5196.154587546974, + "max_x": 5207.644392932047, + "max_y": 5196.395406832571, + "center": [ + 5207.40357364645, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5196.395406832571 + ], + [ + 5207.243027456025, + 5196.395406832571 + ], + [ + 5207.162754360854, + 5196.3151337374 + ], + [ + 5207.162754360854, + 5196.234860642228 + ], + [ + 5207.243027456025, + 5196.154587546974 + ], + [ + 5207.564119836774, + 5196.154587546974 + ], + [ + 5207.644392932047, + 5196.234860642228 + ], + [ + 5207.644392932047, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D32", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5196.154587546974, + "max_x": 5207.00220817041, + "max_y": 5196.395406832571, + "center": [ + 5206.76138888483, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5196.395406832571 + ], + [ + 5206.600842694491, + 5196.395406832571 + ], + [ + 5206.52056959925, + 5196.3151337374 + ], + [ + 5206.52056959925, + 5196.234860642228 + ], + [ + 5206.600842694491, + 5196.154587546974 + ], + [ + 5206.921935075175, + 5196.154587546974 + ], + [ + 5207.00220817041, + 5196.234860642228 + ], + [ + 5207.00220817041, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D33", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5196.113421941753, + "max_x": 5206.360030005161, + "max_y": 5196.354241227348, + "center": [ + 5206.1192107195475, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5196.354241227348 + ], + [ + 5205.958664529202, + 5196.354241227348 + ], + [ + 5205.878391433933, + 5196.273968132095 + ], + [ + 5205.878391433933, + 5196.193695036924 + ], + [ + 5205.958664529202, + 5196.113421941753 + ], + [ + 5206.279756909951, + 5196.113421941753 + ], + [ + 5206.360030005161, + 5196.193695036924 + ], + [ + 5206.360030005161, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D34", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5196.113421941753, + "max_x": 5205.717845243587, + "max_y": 5196.354241227348, + "center": [ + 5205.477025958012, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5196.354241227348 + ], + [ + 5205.316479767571, + 5196.354241227348 + ], + [ + 5205.236206672436, + 5196.273968132095 + ], + [ + 5205.236206672436, + 5196.193695036924 + ], + [ + 5205.316479767571, + 5196.113421941753 + ], + [ + 5205.637572148354, + 5196.113421941753 + ], + [ + 5205.717845243587, + 5196.193695036924 + ], + [ + 5205.717845243587, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D35", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5195.753222071036, + "max_x": 5210.213131978346, + "max_y": 5195.994041356581, + "center": [ + 5209.9723126927165, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5195.994041356581 + ], + [ + 5209.81176650232, + 5195.994041356581 + ], + [ + 5209.731493407087, + 5195.913768261379 + ], + [ + 5209.731493407087, + 5195.833495166207 + ], + [ + 5209.81176650232, + 5195.753222071036 + ], + [ + 5210.132858883103, + 5195.753222071036 + ], + [ + 5210.213131978346, + 5195.833495166207 + ], + [ + 5210.213131978346, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D36", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5195.753222071036, + "max_x": 5209.570947216742, + "max_y": 5195.994041356581, + "center": [ + 5209.330127931132, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5195.994041356581 + ], + [ + 5209.169581740791, + 5195.994041356581 + ], + [ + 5209.089308645522, + 5195.913768261379 + ], + [ + 5209.089308645522, + 5195.833495166207 + ], + [ + 5209.169581740791, + 5195.753222071036 + ], + [ + 5209.49067412154, + 5195.753222071036 + ], + [ + 5209.570947216742, + 5195.833495166207 + ], + [ + 5209.570947216742, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D37", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5195.753222071036, + "max_x": 5208.92876245511, + "max_y": 5195.994041356581, + "center": [ + 5208.687943169514, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5195.994041356581 + ], + [ + 5208.52739697916, + 5195.994041356581 + ], + [ + 5208.44712388392, + 5195.913768261379 + ], + [ + 5208.44712388392, + 5195.833495166207 + ], + [ + 5208.52739697916, + 5195.753222071036 + ], + [ + 5208.848489359941, + 5195.753222071036 + ], + [ + 5208.92876245511, + 5195.833495166207 + ], + [ + 5208.92876245511, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D38", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5195.753222071036, + "max_x": 5208.28657769358, + "max_y": 5195.994041356581, + "center": [ + 5208.045758408015, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5195.994041356581 + ], + [ + 5207.885212217652, + 5195.994041356581 + ], + [ + 5207.80493912245, + 5195.913768261379 + ], + [ + 5207.80493912245, + 5195.833495166207 + ], + [ + 5207.885212217652, + 5195.753222071036 + ], + [ + 5208.206304598474, + 5195.753222071036 + ], + [ + 5208.28657769358, + 5195.833495166207 + ], + [ + 5208.28657769358, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D39", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5195.753222071036, + "max_x": 5207.644392932047, + "max_y": 5195.994041356581, + "center": [ + 5207.40357364645, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5195.994041356581 + ], + [ + 5207.243027456025, + 5195.994041356581 + ], + [ + 5207.162754360854, + 5195.913768261379 + ], + [ + 5207.162754360854, + 5195.833495166207 + ], + [ + 5207.243027456025, + 5195.753222071036 + ], + [ + 5207.564119836774, + 5195.753222071036 + ], + [ + 5207.644392932047, + 5195.833495166207 + ], + [ + 5207.644392932047, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5195.753222071036, + "max_x": 5207.00220817041, + "max_y": 5195.994041356581, + "center": [ + 5206.76138888483, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5195.994041356581 + ], + [ + 5206.600842694491, + 5195.994041356581 + ], + [ + 5206.52056959925, + 5195.913768261379 + ], + [ + 5206.52056959925, + 5195.833495166207 + ], + [ + 5206.600842694491, + 5195.753222071036 + ], + [ + 5206.921935075175, + 5195.753222071036 + ], + [ + 5207.00220817041, + 5195.833495166207 + ], + [ + 5207.00220817041, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5195.712056465765, + "max_x": 5206.360030005161, + "max_y": 5195.952875751328, + "center": [ + 5206.1192107195475, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5195.952875751328 + ], + [ + 5205.958664529202, + 5195.952875751328 + ], + [ + 5205.878391433933, + 5195.872602656106 + ], + [ + 5205.878391433933, + 5195.792329560935 + ], + [ + 5205.958664529202, + 5195.712056465765 + ], + [ + 5206.279756909951, + 5195.712056465765 + ], + [ + 5206.360030005161, + 5195.792329560935 + ], + [ + 5206.360030005161, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5195.712056465765, + "max_x": 5205.717845243587, + "max_y": 5195.952875751328, + "center": [ + 5205.477025958012, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5195.952875751328 + ], + [ + 5205.316479767571, + 5195.952875751328 + ], + [ + 5205.236206672436, + 5195.872602656106 + ], + [ + 5205.236206672436, + 5195.792329560935 + ], + [ + 5205.316479767571, + 5195.712056465765 + ], + [ + 5205.637572148354, + 5195.712056465765 + ], + [ + 5205.717845243587, + 5195.792329560935 + ], + [ + 5205.717845243587, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5195.351856595015, + "max_x": 5210.213131978346, + "max_y": 5195.592675880612, + "center": [ + 5209.9723126927165, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5195.592675880612 + ], + [ + 5209.81176650232, + 5195.592675880612 + ], + [ + 5209.731493407087, + 5195.51240278544 + ], + [ + 5209.731493407087, + 5195.43212969022 + ], + [ + 5209.81176650232, + 5195.351856595015 + ], + [ + 5210.132858883103, + 5195.351856595015 + ], + [ + 5210.213131978346, + 5195.43212969022 + ], + [ + 5210.213131978346, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5195.351856595015, + "max_x": 5209.570947216742, + "max_y": 5195.592675880612, + "center": [ + 5209.330127931132, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5195.592675880612 + ], + [ + 5209.169581740791, + 5195.592675880612 + ], + [ + 5209.089308645522, + 5195.51240278544 + ], + [ + 5209.089308645522, + 5195.43212969022 + ], + [ + 5209.169581740791, + 5195.351856595015 + ], + [ + 5209.49067412154, + 5195.351856595015 + ], + [ + 5209.570947216742, + 5195.43212969022 + ], + [ + 5209.570947216742, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D3F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5195.351856595015, + "max_x": 5208.92876245511, + "max_y": 5195.592675880612, + "center": [ + 5208.687943169514, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5195.592675880612 + ], + [ + 5208.52739697916, + 5195.592675880612 + ], + [ + 5208.44712388392, + 5195.51240278544 + ], + [ + 5208.44712388392, + 5195.43212969022 + ], + [ + 5208.52739697916, + 5195.351856595015 + ], + [ + 5208.848489359941, + 5195.351856595015 + ], + [ + 5208.92876245511, + 5195.43212969022 + ], + [ + 5208.92876245511, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D40", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5195.351856595015, + "max_x": 5208.28657769358, + "max_y": 5195.592675880612, + "center": [ + 5208.045758408015, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5195.592675880612 + ], + [ + 5207.885212217652, + 5195.592675880612 + ], + [ + 5207.80493912245, + 5195.51240278544 + ], + [ + 5207.80493912245, + 5195.43212969022 + ], + [ + 5207.885212217652, + 5195.351856595015 + ], + [ + 5208.206304598474, + 5195.351856595015 + ], + [ + 5208.28657769358, + 5195.43212969022 + ], + [ + 5208.28657769358, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D41", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5195.351856595015, + "max_x": 5207.644392932047, + "max_y": 5195.592675880612, + "center": [ + 5207.40357364645, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5195.592675880612 + ], + [ + 5207.243027456025, + 5195.592675880612 + ], + [ + 5207.162754360854, + 5195.51240278544 + ], + [ + 5207.162754360854, + 5195.43212969022 + ], + [ + 5207.243027456025, + 5195.351856595015 + ], + [ + 5207.564119836774, + 5195.351856595015 + ], + [ + 5207.644392932047, + 5195.43212969022 + ], + [ + 5207.644392932047, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D42", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5195.351856595015, + "max_x": 5207.00220817041, + "max_y": 5195.592675880612, + "center": [ + 5206.76138888483, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5195.592675880612 + ], + [ + 5206.600842694491, + 5195.592675880612 + ], + [ + 5206.52056959925, + 5195.51240278544 + ], + [ + 5206.52056959925, + 5195.43212969022 + ], + [ + 5206.600842694491, + 5195.351856595015 + ], + [ + 5206.921935075175, + 5195.351856595015 + ], + [ + 5207.00220817041, + 5195.43212969022 + ], + [ + 5207.00220817041, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D43", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5195.310690989794, + "max_x": 5206.360030005161, + "max_y": 5195.55151027534, + "center": [ + 5206.1192107195475, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5195.55151027534 + ], + [ + 5205.958664529202, + 5195.55151027534 + ], + [ + 5205.878391433933, + 5195.471237180137 + ], + [ + 5205.878391433933, + 5195.390964084964 + ], + [ + 5205.958664529202, + 5195.310690989794 + ], + [ + 5206.279756909951, + 5195.310690989794 + ], + [ + 5206.360030005161, + 5195.390964084964 + ], + [ + 5206.360030005161, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D44", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5195.310690989794, + "max_x": 5205.717845243587, + "max_y": 5195.55151027534, + "center": [ + 5205.477025958012, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5195.55151027534 + ], + [ + 5205.316479767571, + 5195.55151027534 + ], + [ + 5205.236206672436, + 5195.471237180137 + ], + [ + 5205.236206672436, + 5195.390964084964 + ], + [ + 5205.316479767571, + 5195.310690989794 + ], + [ + 5205.637572148354, + 5195.310690989794 + ], + [ + 5205.717845243587, + 5195.390964084964 + ], + [ + 5205.717845243587, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D45", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5194.950491119028, + "max_x": 5210.213131978346, + "max_y": 5195.191310404624, + "center": [ + 5209.9723126927165, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5195.191310404624 + ], + [ + 5209.81176650232, + 5195.191310404624 + ], + [ + 5209.731493407087, + 5195.111037309453 + ], + [ + 5209.731493407087, + 5195.030764214283 + ], + [ + 5209.81176650232, + 5194.950491119028 + ], + [ + 5210.132858883103, + 5194.950491119028 + ], + [ + 5210.213131978346, + 5195.030764214283 + ], + [ + 5210.213131978346, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D46", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5194.950491119028, + "max_x": 5209.570947216742, + "max_y": 5195.191310404624, + "center": [ + 5209.330127931132, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5195.191310404624 + ], + [ + 5209.169581740791, + 5195.191310404624 + ], + [ + 5209.089308645522, + 5195.111037309453 + ], + [ + 5209.089308645522, + 5195.030764214283 + ], + [ + 5209.169581740791, + 5194.950491119028 + ], + [ + 5209.49067412154, + 5194.950491119028 + ], + [ + 5209.570947216742, + 5195.030764214283 + ], + [ + 5209.570947216742, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D47", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5194.950491119028, + "max_x": 5208.92876245511, + "max_y": 5195.191310404624, + "center": [ + 5208.687943169514, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5195.191310404624 + ], + [ + 5208.52739697916, + 5195.191310404624 + ], + [ + 5208.44712388392, + 5195.111037309453 + ], + [ + 5208.44712388392, + 5195.030764214283 + ], + [ + 5208.52739697916, + 5194.950491119028 + ], + [ + 5208.848489359941, + 5194.950491119028 + ], + [ + 5208.92876245511, + 5195.030764214283 + ], + [ + 5208.92876245511, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D48", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5194.950491119028, + "max_x": 5208.28657769358, + "max_y": 5195.191310404624, + "center": [ + 5208.045758408015, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5195.191310404624 + ], + [ + 5207.885212217652, + 5195.191310404624 + ], + [ + 5207.80493912245, + 5195.111037309453 + ], + [ + 5207.80493912245, + 5195.030764214283 + ], + [ + 5207.885212217652, + 5194.950491119028 + ], + [ + 5208.206304598474, + 5194.950491119028 + ], + [ + 5208.28657769358, + 5195.030764214283 + ], + [ + 5208.28657769358, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D49", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5194.950491119028, + "max_x": 5207.644392932047, + "max_y": 5195.191310404624, + "center": [ + 5207.40357364645, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5195.191310404624 + ], + [ + 5207.243027456025, + 5195.191310404624 + ], + [ + 5207.162754360854, + 5195.111037309453 + ], + [ + 5207.162754360854, + 5195.030764214283 + ], + [ + 5207.243027456025, + 5194.950491119028 + ], + [ + 5207.564119836774, + 5194.950491119028 + ], + [ + 5207.644392932047, + 5195.030764214283 + ], + [ + 5207.644392932047, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5194.950491119028, + "max_x": 5207.00220817041, + "max_y": 5195.191310404624, + "center": [ + 5206.76138888483, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5195.191310404624 + ], + [ + 5206.600842694491, + 5195.191310404624 + ], + [ + 5206.52056959925, + 5195.111037309453 + ], + [ + 5206.52056959925, + 5195.030764214283 + ], + [ + 5206.600842694491, + 5194.950491119028 + ], + [ + 5206.921935075175, + 5194.950491119028 + ], + [ + 5207.00220817041, + 5195.030764214283 + ], + [ + 5207.00220817041, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5194.909325513773, + "max_x": 5206.360030005161, + "max_y": 5195.15014479937, + "center": [ + 5206.1192107195475, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5195.15014479937 + ], + [ + 5205.958664529202, + 5195.15014479937 + ], + [ + 5205.878391433933, + 5195.069871704148 + ], + [ + 5205.878391433933, + 5194.989598608945 + ], + [ + 5205.958664529202, + 5194.909325513773 + ], + [ + 5206.279756909951, + 5194.909325513773 + ], + [ + 5206.360030005161, + 5194.989598608945 + ], + [ + 5206.360030005161, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5194.909325513773, + "max_x": 5205.717845243587, + "max_y": 5195.15014479937, + "center": [ + 5205.477025958012, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5195.15014479937 + ], + [ + 5205.316479767571, + 5195.15014479937 + ], + [ + 5205.236206672436, + 5195.069871704148 + ], + [ + 5205.236206672436, + 5194.989598608945 + ], + [ + 5205.316479767571, + 5194.909325513773 + ], + [ + 5205.637572148354, + 5194.909325513773 + ], + [ + 5205.717845243587, + 5194.989598608945 + ], + [ + 5205.717845243587, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5194.549125643057, + "max_x": 5210.213131978346, + "max_y": 5194.789944928653, + "center": [ + 5209.9723126927165, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5194.789944928653 + ], + [ + 5209.81176650232, + 5194.789944928653 + ], + [ + 5209.731493407087, + 5194.709671833482 + ], + [ + 5209.731493407087, + 5194.62939873831 + ], + [ + 5209.81176650232, + 5194.549125643057 + ], + [ + 5210.132858883103, + 5194.549125643057 + ], + [ + 5210.213131978346, + 5194.62939873831 + ], + [ + 5210.213131978346, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5194.549125643057, + "max_x": 5209.570947216742, + "max_y": 5194.789944928653, + "center": [ + 5209.330127931132, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5194.789944928653 + ], + [ + 5209.169581740791, + 5194.789944928653 + ], + [ + 5209.089308645522, + 5194.709671833482 + ], + [ + 5209.089308645522, + 5194.62939873831 + ], + [ + 5209.169581740791, + 5194.549125643057 + ], + [ + 5209.49067412154, + 5194.549125643057 + ], + [ + 5209.570947216742, + 5194.62939873831 + ], + [ + 5209.570947216742, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D4F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5194.549125643057, + "max_x": 5208.92876245511, + "max_y": 5194.789944928653, + "center": [ + 5208.687943169514, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5194.789944928653 + ], + [ + 5208.52739697916, + 5194.789944928653 + ], + [ + 5208.44712388392, + 5194.709671833482 + ], + [ + 5208.44712388392, + 5194.62939873831 + ], + [ + 5208.52739697916, + 5194.549125643057 + ], + [ + 5208.848489359941, + 5194.549125643057 + ], + [ + 5208.92876245511, + 5194.62939873831 + ], + [ + 5208.92876245511, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D50", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5194.549125643057, + "max_x": 5208.28657769358, + "max_y": 5194.789944928653, + "center": [ + 5208.045758408015, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5194.789944928653 + ], + [ + 5207.885212217652, + 5194.789944928653 + ], + [ + 5207.80493912245, + 5194.709671833482 + ], + [ + 5207.80493912245, + 5194.62939873831 + ], + [ + 5207.885212217652, + 5194.549125643057 + ], + [ + 5208.206304598474, + 5194.549125643057 + ], + [ + 5208.28657769358, + 5194.62939873831 + ], + [ + 5208.28657769358, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D51", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5194.549125643057, + "max_x": 5207.644392932047, + "max_y": 5194.789944928653, + "center": [ + 5207.40357364645, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5194.789944928653 + ], + [ + 5207.243027456025, + 5194.789944928653 + ], + [ + 5207.162754360854, + 5194.709671833482 + ], + [ + 5207.162754360854, + 5194.62939873831 + ], + [ + 5207.243027456025, + 5194.549125643057 + ], + [ + 5207.564119836774, + 5194.549125643057 + ], + [ + 5207.644392932047, + 5194.62939873831 + ], + [ + 5207.644392932047, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D52", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5194.549125643057, + "max_x": 5207.00220817041, + "max_y": 5194.789944928653, + "center": [ + 5206.76138888483, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5194.789944928653 + ], + [ + 5206.600842694491, + 5194.789944928653 + ], + [ + 5206.52056959925, + 5194.709671833482 + ], + [ + 5206.52056959925, + 5194.62939873831 + ], + [ + 5206.600842694491, + 5194.549125643057 + ], + [ + 5206.921935075175, + 5194.549125643057 + ], + [ + 5207.00220817041, + 5194.62939873831 + ], + [ + 5207.00220817041, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D53", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5194.507960037785, + "max_x": 5206.360030005161, + "max_y": 5194.748779323383, + "center": [ + 5206.1192107195475, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5194.748779323383 + ], + [ + 5205.958664529202, + 5194.748779323383 + ], + [ + 5205.878391433933, + 5194.668506228176 + ], + [ + 5205.878391433933, + 5194.588233133007 + ], + [ + 5205.958664529202, + 5194.507960037785 + ], + [ + 5206.279756909951, + 5194.507960037785 + ], + [ + 5206.360030005161, + 5194.588233133007 + ], + [ + 5206.360030005161, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D54", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5194.507960037785, + "max_x": 5205.717845243587, + "max_y": 5194.748779323383, + "center": [ + 5205.477025958012, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5194.748779323383 + ], + [ + 5205.316479767571, + 5194.748779323383 + ], + [ + 5205.236206672436, + 5194.668506228176 + ], + [ + 5205.236206672436, + 5194.588233133007 + ], + [ + 5205.316479767571, + 5194.507960037785 + ], + [ + 5205.637572148354, + 5194.507960037785 + ], + [ + 5205.717845243587, + 5194.588233133007 + ], + [ + 5205.717845243587, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D55", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.731493407087, + "min_y": 5194.147760167069, + "max_x": 5210.213131978346, + "max_y": 5194.388579452631, + "center": [ + 5209.9723126927165, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.132858883103, + 5194.388579452631 + ], + [ + 5209.81176650232, + 5194.388579452631 + ], + [ + 5209.731493407087, + 5194.30830635746 + ], + [ + 5209.731493407087, + 5194.228033262291 + ], + [ + 5209.81176650232, + 5194.147760167069 + ], + [ + 5210.132858883103, + 5194.147760167069 + ], + [ + 5210.213131978346, + 5194.228033262291 + ], + [ + 5210.213131978346, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D56", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.089308645522, + "min_y": 5194.147760167069, + "max_x": 5209.570947216742, + "max_y": 5194.388579452631, + "center": [ + 5209.330127931132, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49067412154, + 5194.388579452631 + ], + [ + 5209.169581740791, + 5194.388579452631 + ], + [ + 5209.089308645522, + 5194.30830635746 + ], + [ + 5209.089308645522, + 5194.228033262291 + ], + [ + 5209.169581740791, + 5194.147760167069 + ], + [ + 5209.49067412154, + 5194.147760167069 + ], + [ + 5209.570947216742, + 5194.228033262291 + ], + [ + 5209.570947216742, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D57", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.44712388392, + "min_y": 5194.147760167069, + "max_x": 5208.92876245511, + "max_y": 5194.388579452631, + "center": [ + 5208.687943169514, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.848489359941, + 5194.388579452631 + ], + [ + 5208.52739697916, + 5194.388579452631 + ], + [ + 5208.44712388392, + 5194.30830635746 + ], + [ + 5208.44712388392, + 5194.228033262291 + ], + [ + 5208.52739697916, + 5194.147760167069 + ], + [ + 5208.848489359941, + 5194.147760167069 + ], + [ + 5208.92876245511, + 5194.228033262291 + ], + [ + 5208.92876245511, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D58", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.80493912245, + "min_y": 5194.147760167069, + "max_x": 5208.28657769358, + "max_y": 5194.388579452631, + "center": [ + 5208.045758408015, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.206304598474, + 5194.388579452631 + ], + [ + 5207.885212217652, + 5194.388579452631 + ], + [ + 5207.80493912245, + 5194.30830635746 + ], + [ + 5207.80493912245, + 5194.228033262291 + ], + [ + 5207.885212217652, + 5194.147760167069 + ], + [ + 5208.206304598474, + 5194.147760167069 + ], + [ + 5208.28657769358, + 5194.228033262291 + ], + [ + 5208.28657769358, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D59", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5207.162754360854, + "min_y": 5194.147760167069, + "max_x": 5207.644392932047, + "max_y": 5194.388579452631, + "center": [ + 5207.40357364645, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.564119836774, + 5194.388579452631 + ], + [ + 5207.243027456025, + 5194.388579452631 + ], + [ + 5207.162754360854, + 5194.30830635746 + ], + [ + 5207.162754360854, + 5194.228033262291 + ], + [ + 5207.243027456025, + 5194.147760167069 + ], + [ + 5207.564119836774, + 5194.147760167069 + ], + [ + 5207.644392932047, + 5194.228033262291 + ], + [ + 5207.644392932047, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52056959925, + "min_y": 5194.147760167069, + "max_x": 5207.00220817041, + "max_y": 5194.388579452631, + "center": [ + 5206.76138888483, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.921935075175, + 5194.388579452631 + ], + [ + 5206.600842694491, + 5194.388579452631 + ], + [ + 5206.52056959925, + 5194.30830635746 + ], + [ + 5206.52056959925, + 5194.228033262291 + ], + [ + 5206.600842694491, + 5194.147760167069 + ], + [ + 5206.921935075175, + 5194.147760167069 + ], + [ + 5207.00220817041, + 5194.228033262291 + ], + [ + 5207.00220817041, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.878391433933, + "min_y": 5194.106594561848, + "max_x": 5206.360030005161, + "max_y": 5194.347413847411, + "center": [ + 5206.1192107195475, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.279756909951, + 5194.347413847411 + ], + [ + 5205.958664529202, + 5194.347413847411 + ], + [ + 5205.878391433933, + 5194.267140752191 + ], + [ + 5205.878391433933, + 5194.186867657019 + ], + [ + 5205.958664529202, + 5194.106594561848 + ], + [ + 5206.279756909951, + 5194.106594561848 + ], + [ + 5206.360030005161, + 5194.186867657019 + ], + [ + 5206.360030005161, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.236206672436, + "min_y": 5194.106594561848, + "max_x": 5205.717845243587, + "max_y": 5194.347413847411, + "center": [ + 5205.477025958012, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.637572148354, + 5194.347413847411 + ], + [ + 5205.316479767571, + 5194.347413847411 + ], + [ + 5205.236206672436, + 5194.267140752191 + ], + [ + 5205.236206672436, + 5194.186867657019 + ], + [ + 5205.316479767571, + 5194.106594561848 + ], + [ + 5205.637572148354, + 5194.106594561848 + ], + [ + 5205.717845243587, + 5194.186867657019 + ], + [ + 5205.717845243587, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5198.964145878871, + "max_x": 5204.450932402781, + "max_y": 5199.204965164416, + "center": [ + 5204.210113117233, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5199.204965164416 + ], + [ + 5204.049566926858, + 5199.204965164416 + ], + [ + 5203.969293831686, + 5199.124692069245 + ], + [ + 5203.969293831686, + 5199.044418974075 + ], + [ + 5204.049566926858, + 5198.964145878871 + ], + [ + 5204.370659307707, + 5198.964145878871 + ], + [ + 5204.450932402781, + 5199.044418974075 + ], + [ + 5204.450932402781, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5198.964145878871, + "max_x": 5203.80874764128, + "max_y": 5199.204965164416, + "center": [ + 5203.567928355667, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5199.204965164416 + ], + [ + 5203.407382165256, + 5199.204965164416 + ], + [ + 5203.327109070055, + 5199.124692069245 + ], + [ + 5203.327109070055, + 5199.044418974075 + ], + [ + 5203.407382165256, + 5198.964145878871 + ], + [ + 5203.728474546071, + 5198.964145878871 + ], + [ + 5203.80874764128, + 5199.044418974075 + ], + [ + 5203.80874764128, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D5F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5198.964145878871, + "max_x": 5203.166562879709, + "max_y": 5199.204965164416, + "center": [ + 5202.925743594079, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5199.204965164416 + ], + [ + 5202.765197403691, + 5199.204965164416 + ], + [ + 5202.684924308449, + 5199.124692069245 + ], + [ + 5202.684924308449, + 5199.044418974075 + ], + [ + 5202.765197403691, + 5198.964145878871 + ], + [ + 5203.086289784376, + 5198.964145878871 + ], + [ + 5203.166562879709, + 5199.044418974075 + ], + [ + 5203.166562879709, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D60", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5198.964145878871, + "max_x": 5202.524378118113, + "max_y": 5199.204965164416, + "center": [ + 5202.283558832549, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5199.204965164416 + ], + [ + 5202.123012642086, + 5199.204965164416 + ], + [ + 5202.042739546983, + 5199.124692069245 + ], + [ + 5202.042739546983, + 5199.044418974075 + ], + [ + 5202.123012642086, + 5198.964145878871 + ], + [ + 5202.444105022942, + 5198.964145878871 + ], + [ + 5202.524378118113, + 5199.044418974075 + ], + [ + 5202.524378118113, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D61", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5198.964145878871, + "max_x": 5201.882193356508, + "max_y": 5199.204965164416, + "center": [ + 5201.641374070899, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5199.204965164416 + ], + [ + 5201.480827880556, + 5199.204965164416 + ], + [ + 5201.400554785289, + 5199.124692069245 + ], + [ + 5201.400554785289, + 5199.044418974075 + ], + [ + 5201.480827880556, + 5198.964145878871 + ], + [ + 5201.801920261305, + 5198.964145878871 + ], + [ + 5201.882193356508, + 5199.044418974075 + ], + [ + 5201.882193356508, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D62", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5198.9229802736, + "max_x": 5201.240015191192, + "max_y": 5199.163799559162, + "center": [ + 5200.9991959056115, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5199.163799559162 + ], + [ + 5200.838649715167, + 5199.163799559162 + ], + [ + 5200.758376620031, + 5199.083526463991 + ], + [ + 5200.758376620031, + 5199.003253368771 + ], + [ + 5200.838649715167, + 5198.9229802736 + ], + [ + 5201.159742095956, + 5198.9229802736 + ], + [ + 5201.240015191192, + 5199.003253368771 + ], + [ + 5201.240015191192, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D63", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5198.9229802736, + "max_x": 5200.597830429692, + "max_y": 5199.163799559162, + "center": [ + 5200.357011144079, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5199.163799559162 + ], + [ + 5200.19646495367, + 5199.163799559162 + ], + [ + 5200.116191858466, + 5199.083526463991 + ], + [ + 5200.116191858466, + 5199.003253368771 + ], + [ + 5200.19646495367, + 5198.9229802736 + ], + [ + 5200.51755733449, + 5198.9229802736 + ], + [ + 5200.597830429692, + 5199.003253368771 + ], + [ + 5200.597830429692, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D64", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5198.562780402848, + "max_x": 5204.450932402781, + "max_y": 5198.803599688446, + "center": [ + 5204.210113117233, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5198.803599688446 + ], + [ + 5204.049566926858, + 5198.803599688446 + ], + [ + 5203.969293831686, + 5198.723326593274 + ], + [ + 5203.969293831686, + 5198.643053498104 + ], + [ + 5204.049566926858, + 5198.562780402848 + ], + [ + 5204.370659307707, + 5198.562780402848 + ], + [ + 5204.450932402781, + 5198.643053498104 + ], + [ + 5204.450932402781, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D65", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5198.562780402848, + "max_x": 5203.80874764128, + "max_y": 5198.803599688446, + "center": [ + 5203.567928355667, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5198.803599688446 + ], + [ + 5203.407382165256, + 5198.803599688446 + ], + [ + 5203.327109070055, + 5198.723326593274 + ], + [ + 5203.327109070055, + 5198.643053498104 + ], + [ + 5203.407382165256, + 5198.562780402848 + ], + [ + 5203.728474546071, + 5198.562780402848 + ], + [ + 5203.80874764128, + 5198.643053498104 + ], + [ + 5203.80874764128, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D66", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5198.562780402848, + "max_x": 5203.166562879709, + "max_y": 5198.803599688446, + "center": [ + 5202.925743594079, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5198.803599688446 + ], + [ + 5202.765197403691, + 5198.803599688446 + ], + [ + 5202.684924308449, + 5198.723326593274 + ], + [ + 5202.684924308449, + 5198.643053498104 + ], + [ + 5202.765197403691, + 5198.562780402848 + ], + [ + 5203.086289784376, + 5198.562780402848 + ], + [ + 5203.166562879709, + 5198.643053498104 + ], + [ + 5203.166562879709, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D67", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5198.562780402848, + "max_x": 5202.524378118113, + "max_y": 5198.803599688446, + "center": [ + 5202.283558832549, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5198.803599688446 + ], + [ + 5202.123012642086, + 5198.803599688446 + ], + [ + 5202.042739546983, + 5198.723326593274 + ], + [ + 5202.042739546983, + 5198.643053498104 + ], + [ + 5202.123012642086, + 5198.562780402848 + ], + [ + 5202.444105022942, + 5198.562780402848 + ], + [ + 5202.524378118113, + 5198.643053498104 + ], + [ + 5202.524378118113, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D68", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5198.562780402848, + "max_x": 5201.882193356508, + "max_y": 5198.803599688446, + "center": [ + 5201.641374070899, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5198.803599688446 + ], + [ + 5201.480827880556, + 5198.803599688446 + ], + [ + 5201.400554785289, + 5198.723326593274 + ], + [ + 5201.400554785289, + 5198.643053498104 + ], + [ + 5201.480827880556, + 5198.562780402848 + ], + [ + 5201.801920261305, + 5198.562780402848 + ], + [ + 5201.882193356508, + 5198.643053498104 + ], + [ + 5201.882193356508, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D69", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5198.521614797629, + "max_x": 5201.240015191192, + "max_y": 5198.762434083175, + "center": [ + 5200.9991959056115, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5198.762434083175 + ], + [ + 5200.838649715167, + 5198.762434083175 + ], + [ + 5200.758376620031, + 5198.68216098797 + ], + [ + 5200.758376620031, + 5198.6018878928 + ], + [ + 5200.838649715167, + 5198.521614797629 + ], + [ + 5201.159742095956, + 5198.521614797629 + ], + [ + 5201.240015191192, + 5198.6018878928 + ], + [ + 5201.240015191192, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5198.521614797629, + "max_x": 5200.597830429692, + "max_y": 5198.762434083175, + "center": [ + 5200.357011144079, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5198.762434083175 + ], + [ + 5200.19646495367, + 5198.762434083175 + ], + [ + 5200.116191858466, + 5198.68216098797 + ], + [ + 5200.116191858466, + 5198.6018878928 + ], + [ + 5200.19646495367, + 5198.521614797629 + ], + [ + 5200.51755733449, + 5198.521614797629 + ], + [ + 5200.597830429692, + 5198.6018878928 + ], + [ + 5200.597830429692, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5198.161414926863, + "max_x": 5204.450932402781, + "max_y": 5198.402234212458, + "center": [ + 5204.210113117233, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5198.402234212458 + ], + [ + 5204.049566926858, + 5198.402234212458 + ], + [ + 5203.969293831686, + 5198.321961117287 + ], + [ + 5203.969293831686, + 5198.241688022116 + ], + [ + 5204.049566926858, + 5198.161414926863 + ], + [ + 5204.370659307707, + 5198.161414926863 + ], + [ + 5204.450932402781, + 5198.241688022116 + ], + [ + 5204.450932402781, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5198.161414926863, + "max_x": 5203.80874764128, + "max_y": 5198.402234212458, + "center": [ + 5203.567928355667, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5198.402234212458 + ], + [ + 5203.407382165256, + 5198.402234212458 + ], + [ + 5203.327109070055, + 5198.321961117287 + ], + [ + 5203.327109070055, + 5198.241688022116 + ], + [ + 5203.407382165256, + 5198.161414926863 + ], + [ + 5203.728474546071, + 5198.161414926863 + ], + [ + 5203.80874764128, + 5198.241688022116 + ], + [ + 5203.80874764128, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5198.161414926863, + "max_x": 5203.166562879709, + "max_y": 5198.402234212458, + "center": [ + 5202.925743594079, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5198.402234212458 + ], + [ + 5202.765197403691, + 5198.402234212458 + ], + [ + 5202.684924308449, + 5198.321961117287 + ], + [ + 5202.684924308449, + 5198.241688022116 + ], + [ + 5202.765197403691, + 5198.161414926863 + ], + [ + 5203.086289784376, + 5198.161414926863 + ], + [ + 5203.166562879709, + 5198.241688022116 + ], + [ + 5203.166562879709, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5198.161414926863, + "max_x": 5202.524378118113, + "max_y": 5198.402234212458, + "center": [ + 5202.283558832549, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5198.402234212458 + ], + [ + 5202.123012642086, + 5198.402234212458 + ], + [ + 5202.042739546983, + 5198.321961117287 + ], + [ + 5202.042739546983, + 5198.241688022116 + ], + [ + 5202.123012642086, + 5198.161414926863 + ], + [ + 5202.444105022942, + 5198.161414926863 + ], + [ + 5202.524378118113, + 5198.241688022116 + ], + [ + 5202.524378118113, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D6F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5198.161414926863, + "max_x": 5201.882193356508, + "max_y": 5198.402234212458, + "center": [ + 5201.641374070899, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5198.402234212458 + ], + [ + 5201.480827880556, + 5198.402234212458 + ], + [ + 5201.400554785289, + 5198.321961117287 + ], + [ + 5201.400554785289, + 5198.241688022116 + ], + [ + 5201.480827880556, + 5198.161414926863 + ], + [ + 5201.801920261305, + 5198.161414926863 + ], + [ + 5201.882193356508, + 5198.241688022116 + ], + [ + 5201.882193356508, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D70", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5198.120249321641, + "max_x": 5201.240015191192, + "max_y": 5198.361068607238, + "center": [ + 5200.9991959056115, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5198.361068607238 + ], + [ + 5200.838649715167, + 5198.361068607238 + ], + [ + 5200.758376620031, + 5198.280795511983 + ], + [ + 5200.758376620031, + 5198.200522416812 + ], + [ + 5200.838649715167, + 5198.120249321641 + ], + [ + 5201.159742095956, + 5198.120249321641 + ], + [ + 5201.240015191192, + 5198.200522416812 + ], + [ + 5201.240015191192, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D71", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5198.120249321641, + "max_x": 5200.597830429692, + "max_y": 5198.361068607238, + "center": [ + 5200.357011144079, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5198.361068607238 + ], + [ + 5200.19646495367, + 5198.361068607238 + ], + [ + 5200.116191858466, + 5198.280795511983 + ], + [ + 5200.116191858466, + 5198.200522416812 + ], + [ + 5200.19646495367, + 5198.120249321641 + ], + [ + 5200.51755733449, + 5198.120249321641 + ], + [ + 5200.597830429692, + 5198.200522416812 + ], + [ + 5200.597830429692, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D72", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5197.760049450925, + "max_x": 5204.450932402781, + "max_y": 5198.000868736487, + "center": [ + 5204.210113117233, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5198.000868736487 + ], + [ + 5204.049566926858, + 5198.000868736487 + ], + [ + 5203.969293831686, + 5197.920595641316 + ], + [ + 5203.969293831686, + 5197.840322546145 + ], + [ + 5204.049566926858, + 5197.760049450925 + ], + [ + 5204.370659307707, + 5197.760049450925 + ], + [ + 5204.450932402781, + 5197.840322546145 + ], + [ + 5204.450932402781, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D73", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5197.760049450925, + "max_x": 5203.80874764128, + "max_y": 5198.000868736487, + "center": [ + 5203.567928355667, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5198.000868736487 + ], + [ + 5203.407382165256, + 5198.000868736487 + ], + [ + 5203.327109070055, + 5197.920595641316 + ], + [ + 5203.327109070055, + 5197.840322546145 + ], + [ + 5203.407382165256, + 5197.760049450925 + ], + [ + 5203.728474546071, + 5197.760049450925 + ], + [ + 5203.80874764128, + 5197.840322546145 + ], + [ + 5203.80874764128, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D74", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5197.760049450925, + "max_x": 5203.166562879709, + "max_y": 5198.000868736487, + "center": [ + 5202.925743594079, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5198.000868736487 + ], + [ + 5202.765197403691, + 5198.000868736487 + ], + [ + 5202.684924308449, + 5197.920595641316 + ], + [ + 5202.684924308449, + 5197.840322546145 + ], + [ + 5202.765197403691, + 5197.760049450925 + ], + [ + 5203.086289784376, + 5197.760049450925 + ], + [ + 5203.166562879709, + 5197.840322546145 + ], + [ + 5203.166562879709, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D75", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5197.760049450925, + "max_x": 5202.524378118113, + "max_y": 5198.000868736487, + "center": [ + 5202.283558832549, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5198.000868736487 + ], + [ + 5202.123012642086, + 5198.000868736487 + ], + [ + 5202.042739546983, + 5197.920595641316 + ], + [ + 5202.042739546983, + 5197.840322546145 + ], + [ + 5202.123012642086, + 5197.760049450925 + ], + [ + 5202.444105022942, + 5197.760049450925 + ], + [ + 5202.524378118113, + 5197.840322546145 + ], + [ + 5202.524378118113, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D76", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5197.760049450925, + "max_x": 5201.882193356508, + "max_y": 5198.000868736487, + "center": [ + 5201.641374070899, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5198.000868736487 + ], + [ + 5201.480827880556, + 5198.000868736487 + ], + [ + 5201.400554785289, + 5197.920595641316 + ], + [ + 5201.400554785289, + 5197.840322546145 + ], + [ + 5201.480827880556, + 5197.760049450925 + ], + [ + 5201.801920261305, + 5197.760049450925 + ], + [ + 5201.882193356508, + 5197.840322546145 + ], + [ + 5201.882193356508, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D77", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5197.71888384567, + "max_x": 5201.240015191192, + "max_y": 5197.959703131266, + "center": [ + 5200.9991959056115, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5197.959703131266 + ], + [ + 5200.838649715167, + 5197.959703131266 + ], + [ + 5200.758376620031, + 5197.879430036012 + ], + [ + 5200.758376620031, + 5197.799156940842 + ], + [ + 5200.838649715167, + 5197.71888384567 + ], + [ + 5201.159742095956, + 5197.71888384567 + ], + [ + 5201.240015191192, + 5197.799156940842 + ], + [ + 5201.240015191192, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D78", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5197.71888384567, + "max_x": 5200.597830429692, + "max_y": 5197.959703131266, + "center": [ + 5200.357011144079, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5197.959703131266 + ], + [ + 5200.19646495367, + 5197.959703131266 + ], + [ + 5200.116191858466, + 5197.879430036012 + ], + [ + 5200.116191858466, + 5197.799156940842 + ], + [ + 5200.19646495367, + 5197.71888384567 + ], + [ + 5200.51755733449, + 5197.71888384567 + ], + [ + 5200.597830429692, + 5197.799156940842 + ], + [ + 5200.597830429692, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D79", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5197.358683974954, + "max_x": 5204.450932402781, + "max_y": 5197.5995032605, + "center": [ + 5204.210113117233, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5197.5995032605 + ], + [ + 5204.049566926858, + 5197.5995032605 + ], + [ + 5203.969293831686, + 5197.519230165329 + ], + [ + 5203.969293831686, + 5197.438957070124 + ], + [ + 5204.049566926858, + 5197.358683974954 + ], + [ + 5204.370659307707, + 5197.358683974954 + ], + [ + 5204.450932402781, + 5197.438957070124 + ], + [ + 5204.450932402781, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5197.358683974954, + "max_x": 5203.80874764128, + "max_y": 5197.5995032605, + "center": [ + 5203.567928355667, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5197.5995032605 + ], + [ + 5203.407382165256, + 5197.5995032605 + ], + [ + 5203.327109070055, + 5197.519230165329 + ], + [ + 5203.327109070055, + 5197.438957070124 + ], + [ + 5203.407382165256, + 5197.358683974954 + ], + [ + 5203.728474546071, + 5197.358683974954 + ], + [ + 5203.80874764128, + 5197.438957070124 + ], + [ + 5203.80874764128, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5197.358683974954, + "max_x": 5203.166562879709, + "max_y": 5197.5995032605, + "center": [ + 5202.925743594079, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5197.5995032605 + ], + [ + 5202.765197403691, + 5197.5995032605 + ], + [ + 5202.684924308449, + 5197.519230165329 + ], + [ + 5202.684924308449, + 5197.438957070124 + ], + [ + 5202.765197403691, + 5197.358683974954 + ], + [ + 5203.086289784376, + 5197.358683974954 + ], + [ + 5203.166562879709, + 5197.438957070124 + ], + [ + 5203.166562879709, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5197.358683974954, + "max_x": 5202.524378118113, + "max_y": 5197.5995032605, + "center": [ + 5202.283558832549, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5197.5995032605 + ], + [ + 5202.123012642086, + 5197.5995032605 + ], + [ + 5202.042739546983, + 5197.519230165329 + ], + [ + 5202.042739546983, + 5197.438957070124 + ], + [ + 5202.123012642086, + 5197.358683974954 + ], + [ + 5202.444105022942, + 5197.358683974954 + ], + [ + 5202.524378118113, + 5197.438957070124 + ], + [ + 5202.524378118113, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5197.358683974954, + "max_x": 5201.882193356508, + "max_y": 5197.5995032605, + "center": [ + 5201.641374070899, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5197.5995032605 + ], + [ + 5201.480827880556, + 5197.5995032605 + ], + [ + 5201.400554785289, + 5197.519230165329 + ], + [ + 5201.400554785289, + 5197.438957070124 + ], + [ + 5201.480827880556, + 5197.358683974954 + ], + [ + 5201.801920261305, + 5197.358683974954 + ], + [ + 5201.882193356508, + 5197.438957070124 + ], + [ + 5201.882193356508, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5197.317518369683, + "max_x": 5201.240015191192, + "max_y": 5197.558337655244, + "center": [ + 5200.9991959056115, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5197.558337655244 + ], + [ + 5200.838649715167, + 5197.558337655244 + ], + [ + 5200.758376620031, + 5197.478064560023 + ], + [ + 5200.758376620031, + 5197.397791464855 + ], + [ + 5200.838649715167, + 5197.317518369683 + ], + [ + 5201.159742095956, + 5197.317518369683 + ], + [ + 5201.240015191192, + 5197.397791464855 + ], + [ + 5201.240015191192, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D7F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5197.317518369683, + "max_x": 5200.597830429692, + "max_y": 5197.558337655244, + "center": [ + 5200.357011144079, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5197.558337655244 + ], + [ + 5200.19646495367, + 5197.558337655244 + ], + [ + 5200.116191858466, + 5197.478064560023 + ], + [ + 5200.116191858466, + 5197.397791464855 + ], + [ + 5200.19646495367, + 5197.317518369683 + ], + [ + 5200.51755733449, + 5197.317518369683 + ], + [ + 5200.597830429692, + 5197.397791464855 + ], + [ + 5200.597830429692, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D80", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5196.957318498932, + "max_x": 5204.450932402781, + "max_y": 5197.198137784528, + "center": [ + 5204.210113117233, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5197.198137784528 + ], + [ + 5204.049566926858, + 5197.198137784528 + ], + [ + 5203.969293831686, + 5197.117864689357 + ], + [ + 5203.969293831686, + 5197.037591594187 + ], + [ + 5204.049566926858, + 5196.957318498932 + ], + [ + 5204.370659307707, + 5196.957318498932 + ], + [ + 5204.450932402781, + 5197.037591594187 + ], + [ + 5204.450932402781, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D81", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5196.957318498932, + "max_x": 5203.80874764128, + "max_y": 5197.198137784528, + "center": [ + 5203.567928355667, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5197.198137784528 + ], + [ + 5203.407382165256, + 5197.198137784528 + ], + [ + 5203.327109070055, + 5197.117864689357 + ], + [ + 5203.327109070055, + 5197.037591594187 + ], + [ + 5203.407382165256, + 5196.957318498932 + ], + [ + 5203.728474546071, + 5196.957318498932 + ], + [ + 5203.80874764128, + 5197.037591594187 + ], + [ + 5203.80874764128, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D82", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5196.957318498932, + "max_x": 5203.166562879709, + "max_y": 5197.198137784528, + "center": [ + 5202.925743594079, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5197.198137784528 + ], + [ + 5202.765197403691, + 5197.198137784528 + ], + [ + 5202.684924308449, + 5197.117864689357 + ], + [ + 5202.684924308449, + 5197.037591594187 + ], + [ + 5202.765197403691, + 5196.957318498932 + ], + [ + 5203.086289784376, + 5196.957318498932 + ], + [ + 5203.166562879709, + 5197.037591594187 + ], + [ + 5203.166562879709, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D83", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5196.957318498932, + "max_x": 5202.524378118113, + "max_y": 5197.198137784528, + "center": [ + 5202.283558832549, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5197.198137784528 + ], + [ + 5202.123012642086, + 5197.198137784528 + ], + [ + 5202.042739546983, + 5197.117864689357 + ], + [ + 5202.042739546983, + 5197.037591594187 + ], + [ + 5202.123012642086, + 5196.957318498932 + ], + [ + 5202.444105022942, + 5196.957318498932 + ], + [ + 5202.524378118113, + 5197.037591594187 + ], + [ + 5202.524378118113, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D84", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5196.957318498932, + "max_x": 5201.882193356508, + "max_y": 5197.198137784528, + "center": [ + 5201.641374070899, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5197.198137784528 + ], + [ + 5201.480827880556, + 5197.198137784528 + ], + [ + 5201.400554785289, + 5197.117864689357 + ], + [ + 5201.400554785289, + 5197.037591594187 + ], + [ + 5201.480827880556, + 5196.957318498932 + ], + [ + 5201.801920261305, + 5196.957318498932 + ], + [ + 5201.882193356508, + 5197.037591594187 + ], + [ + 5201.882193356508, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D85", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5196.916152893712, + "max_x": 5201.240015191192, + "max_y": 5197.156972179257, + "center": [ + 5200.9991959056115, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5197.156972179257 + ], + [ + 5200.838649715167, + 5197.156972179257 + ], + [ + 5200.758376620031, + 5197.076699084053 + ], + [ + 5200.758376620031, + 5196.996425988881 + ], + [ + 5200.838649715167, + 5196.916152893712 + ], + [ + 5201.159742095956, + 5196.916152893712 + ], + [ + 5201.240015191192, + 5196.996425988881 + ], + [ + 5201.240015191192, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D86", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5196.916152893712, + "max_x": 5200.597830429692, + "max_y": 5197.156972179257, + "center": [ + 5200.357011144079, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5197.156972179257 + ], + [ + 5200.19646495367, + 5197.156972179257 + ], + [ + 5200.116191858466, + 5197.076699084053 + ], + [ + 5200.116191858466, + 5196.996425988881 + ], + [ + 5200.19646495367, + 5196.916152893712 + ], + [ + 5200.51755733449, + 5196.916152893712 + ], + [ + 5200.597830429692, + 5196.996425988881 + ], + [ + 5200.597830429692, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D87", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5196.555953022945, + "max_x": 5204.450932402781, + "max_y": 5196.796772308541, + "center": [ + 5204.210113117233, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5196.796772308541 + ], + [ + 5204.049566926858, + 5196.796772308541 + ], + [ + 5203.969293831686, + 5196.71649921337 + ], + [ + 5203.969293831686, + 5196.636226118199 + ], + [ + 5204.049566926858, + 5196.555953022945 + ], + [ + 5204.370659307707, + 5196.555953022945 + ], + [ + 5204.450932402781, + 5196.636226118199 + ], + [ + 5204.450932402781, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D88", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5196.555953022945, + "max_x": 5203.80874764128, + "max_y": 5196.796772308541, + "center": [ + 5203.567928355667, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5196.796772308541 + ], + [ + 5203.407382165256, + 5196.796772308541 + ], + [ + 5203.327109070055, + 5196.71649921337 + ], + [ + 5203.327109070055, + 5196.636226118199 + ], + [ + 5203.407382165256, + 5196.555953022945 + ], + [ + 5203.728474546071, + 5196.555953022945 + ], + [ + 5203.80874764128, + 5196.636226118199 + ], + [ + 5203.80874764128, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D89", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5196.555953022945, + "max_x": 5203.166562879709, + "max_y": 5196.796772308541, + "center": [ + 5202.925743594079, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5196.796772308541 + ], + [ + 5202.765197403691, + 5196.796772308541 + ], + [ + 5202.684924308449, + 5196.71649921337 + ], + [ + 5202.684924308449, + 5196.636226118199 + ], + [ + 5202.765197403691, + 5196.555953022945 + ], + [ + 5203.086289784376, + 5196.555953022945 + ], + [ + 5203.166562879709, + 5196.636226118199 + ], + [ + 5203.166562879709, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5196.555953022945, + "max_x": 5202.524378118113, + "max_y": 5196.796772308541, + "center": [ + 5202.283558832549, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5196.796772308541 + ], + [ + 5202.123012642086, + 5196.796772308541 + ], + [ + 5202.042739546983, + 5196.71649921337 + ], + [ + 5202.042739546983, + 5196.636226118199 + ], + [ + 5202.123012642086, + 5196.555953022945 + ], + [ + 5202.444105022942, + 5196.555953022945 + ], + [ + 5202.524378118113, + 5196.636226118199 + ], + [ + 5202.524378118113, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5196.555953022945, + "max_x": 5201.882193356508, + "max_y": 5196.796772308541, + "center": [ + 5201.641374070899, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5196.796772308541 + ], + [ + 5201.480827880556, + 5196.796772308541 + ], + [ + 5201.400554785289, + 5196.71649921337 + ], + [ + 5201.400554785289, + 5196.636226118199 + ], + [ + 5201.480827880556, + 5196.555953022945 + ], + [ + 5201.801920261305, + 5196.555953022945 + ], + [ + 5201.882193356508, + 5196.636226118199 + ], + [ + 5201.882193356508, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5196.51478741769, + "max_x": 5201.240015191192, + "max_y": 5196.755606703287, + "center": [ + 5200.9991959056115, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5196.755606703287 + ], + [ + 5200.838649715167, + 5196.755606703287 + ], + [ + 5200.758376620031, + 5196.675333608066 + ], + [ + 5200.758376620031, + 5196.595060512896 + ], + [ + 5200.838649715167, + 5196.51478741769 + ], + [ + 5201.159742095956, + 5196.51478741769 + ], + [ + 5201.240015191192, + 5196.595060512896 + ], + [ + 5201.240015191192, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5196.51478741769, + "max_x": 5200.597830429692, + "max_y": 5196.755606703287, + "center": [ + 5200.357011144079, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5196.755606703287 + ], + [ + 5200.19646495367, + 5196.755606703287 + ], + [ + 5200.116191858466, + 5196.675333608066 + ], + [ + 5200.116191858466, + 5196.595060512896 + ], + [ + 5200.19646495367, + 5196.51478741769 + ], + [ + 5200.51755733449, + 5196.51478741769 + ], + [ + 5200.597830429692, + 5196.595060512896 + ], + [ + 5200.597830429692, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5196.154587546974, + "max_x": 5204.450932402781, + "max_y": 5196.395406832571, + "center": [ + 5204.210113117233, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5196.395406832571 + ], + [ + 5204.049566926858, + 5196.395406832571 + ], + [ + 5203.969293831686, + 5196.3151337374 + ], + [ + 5203.969293831686, + 5196.234860642228 + ], + [ + 5204.049566926858, + 5196.154587546974 + ], + [ + 5204.370659307707, + 5196.154587546974 + ], + [ + 5204.450932402781, + 5196.234860642228 + ], + [ + 5204.450932402781, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D8F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5196.154587546974, + "max_x": 5203.80874764128, + "max_y": 5196.395406832571, + "center": [ + 5203.567928355667, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5196.395406832571 + ], + [ + 5203.407382165256, + 5196.395406832571 + ], + [ + 5203.327109070055, + 5196.3151337374 + ], + [ + 5203.327109070055, + 5196.234860642228 + ], + [ + 5203.407382165256, + 5196.154587546974 + ], + [ + 5203.728474546071, + 5196.154587546974 + ], + [ + 5203.80874764128, + 5196.234860642228 + ], + [ + 5203.80874764128, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D90", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5196.154587546974, + "max_x": 5203.166562879709, + "max_y": 5196.395406832571, + "center": [ + 5202.925743594079, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5196.395406832571 + ], + [ + 5202.765197403691, + 5196.395406832571 + ], + [ + 5202.684924308449, + 5196.3151337374 + ], + [ + 5202.684924308449, + 5196.234860642228 + ], + [ + 5202.765197403691, + 5196.154587546974 + ], + [ + 5203.086289784376, + 5196.154587546974 + ], + [ + 5203.166562879709, + 5196.234860642228 + ], + [ + 5203.166562879709, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D91", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5196.154587546974, + "max_x": 5202.524378118113, + "max_y": 5196.395406832571, + "center": [ + 5202.283558832549, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5196.395406832571 + ], + [ + 5202.123012642086, + 5196.395406832571 + ], + [ + 5202.042739546983, + 5196.3151337374 + ], + [ + 5202.042739546983, + 5196.234860642228 + ], + [ + 5202.123012642086, + 5196.154587546974 + ], + [ + 5202.444105022942, + 5196.154587546974 + ], + [ + 5202.524378118113, + 5196.234860642228 + ], + [ + 5202.524378118113, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D92", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5196.154587546974, + "max_x": 5201.882193356508, + "max_y": 5196.395406832571, + "center": [ + 5201.641374070899, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5196.395406832571 + ], + [ + 5201.480827880556, + 5196.395406832571 + ], + [ + 5201.400554785289, + 5196.3151337374 + ], + [ + 5201.400554785289, + 5196.234860642228 + ], + [ + 5201.480827880556, + 5196.154587546974 + ], + [ + 5201.801920261305, + 5196.154587546974 + ], + [ + 5201.882193356508, + 5196.234860642228 + ], + [ + 5201.882193356508, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D93", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5196.113421941753, + "max_x": 5201.240015191192, + "max_y": 5196.354241227348, + "center": [ + 5200.9991959056115, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5196.354241227348 + ], + [ + 5200.838649715167, + 5196.354241227348 + ], + [ + 5200.758376620031, + 5196.273968132095 + ], + [ + 5200.758376620031, + 5196.193695036924 + ], + [ + 5200.838649715167, + 5196.113421941753 + ], + [ + 5201.159742095956, + 5196.113421941753 + ], + [ + 5201.240015191192, + 5196.193695036924 + ], + [ + 5201.240015191192, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D94", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5196.113421941753, + "max_x": 5200.597830429692, + "max_y": 5196.354241227348, + "center": [ + 5200.357011144079, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5196.354241227348 + ], + [ + 5200.19646495367, + 5196.354241227348 + ], + [ + 5200.116191858466, + 5196.273968132095 + ], + [ + 5200.116191858466, + 5196.193695036924 + ], + [ + 5200.19646495367, + 5196.113421941753 + ], + [ + 5200.51755733449, + 5196.113421941753 + ], + [ + 5200.597830429692, + 5196.193695036924 + ], + [ + 5200.597830429692, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D95", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5195.753222071036, + "max_x": 5204.450932402781, + "max_y": 5195.994041356581, + "center": [ + 5204.210113117233, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5195.994041356581 + ], + [ + 5204.049566926858, + 5195.994041356581 + ], + [ + 5203.969293831686, + 5195.913768261379 + ], + [ + 5203.969293831686, + 5195.833495166207 + ], + [ + 5204.049566926858, + 5195.753222071036 + ], + [ + 5204.370659307707, + 5195.753222071036 + ], + [ + 5204.450932402781, + 5195.833495166207 + ], + [ + 5204.450932402781, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D96", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5195.753222071036, + "max_x": 5203.80874764128, + "max_y": 5195.994041356581, + "center": [ + 5203.567928355667, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5195.994041356581 + ], + [ + 5203.407382165256, + 5195.994041356581 + ], + [ + 5203.327109070055, + 5195.913768261379 + ], + [ + 5203.327109070055, + 5195.833495166207 + ], + [ + 5203.407382165256, + 5195.753222071036 + ], + [ + 5203.728474546071, + 5195.753222071036 + ], + [ + 5203.80874764128, + 5195.833495166207 + ], + [ + 5203.80874764128, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D97", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5195.753222071036, + "max_x": 5203.166562879709, + "max_y": 5195.994041356581, + "center": [ + 5202.925743594079, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5195.994041356581 + ], + [ + 5202.765197403691, + 5195.994041356581 + ], + [ + 5202.684924308449, + 5195.913768261379 + ], + [ + 5202.684924308449, + 5195.833495166207 + ], + [ + 5202.765197403691, + 5195.753222071036 + ], + [ + 5203.086289784376, + 5195.753222071036 + ], + [ + 5203.166562879709, + 5195.833495166207 + ], + [ + 5203.166562879709, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D98", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5195.753222071036, + "max_x": 5202.524378118113, + "max_y": 5195.994041356581, + "center": [ + 5202.283558832549, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5195.994041356581 + ], + [ + 5202.123012642086, + 5195.994041356581 + ], + [ + 5202.042739546983, + 5195.913768261379 + ], + [ + 5202.042739546983, + 5195.833495166207 + ], + [ + 5202.123012642086, + 5195.753222071036 + ], + [ + 5202.444105022942, + 5195.753222071036 + ], + [ + 5202.524378118113, + 5195.833495166207 + ], + [ + 5202.524378118113, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D99", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5195.753222071036, + "max_x": 5201.882193356508, + "max_y": 5195.994041356581, + "center": [ + 5201.641374070899, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5195.994041356581 + ], + [ + 5201.480827880556, + 5195.994041356581 + ], + [ + 5201.400554785289, + 5195.913768261379 + ], + [ + 5201.400554785289, + 5195.833495166207 + ], + [ + 5201.480827880556, + 5195.753222071036 + ], + [ + 5201.801920261305, + 5195.753222071036 + ], + [ + 5201.882193356508, + 5195.833495166207 + ], + [ + 5201.882193356508, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5195.712056465765, + "max_x": 5201.240015191192, + "max_y": 5195.952875751328, + "center": [ + 5200.9991959056115, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5195.952875751328 + ], + [ + 5200.838649715167, + 5195.952875751328 + ], + [ + 5200.758376620031, + 5195.872602656106 + ], + [ + 5200.758376620031, + 5195.792329560935 + ], + [ + 5200.838649715167, + 5195.712056465765 + ], + [ + 5201.159742095956, + 5195.712056465765 + ], + [ + 5201.240015191192, + 5195.792329560935 + ], + [ + 5201.240015191192, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5195.712056465765, + "max_x": 5200.597830429692, + "max_y": 5195.952875751328, + "center": [ + 5200.357011144079, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5195.952875751328 + ], + [ + 5200.19646495367, + 5195.952875751328 + ], + [ + 5200.116191858466, + 5195.872602656106 + ], + [ + 5200.116191858466, + 5195.792329560935 + ], + [ + 5200.19646495367, + 5195.712056465765 + ], + [ + 5200.51755733449, + 5195.712056465765 + ], + [ + 5200.597830429692, + 5195.792329560935 + ], + [ + 5200.597830429692, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5195.351856595015, + "max_x": 5204.450932402781, + "max_y": 5195.592675880612, + "center": [ + 5204.210113117233, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5195.592675880612 + ], + [ + 5204.049566926858, + 5195.592675880612 + ], + [ + 5203.969293831686, + 5195.51240278544 + ], + [ + 5203.969293831686, + 5195.43212969022 + ], + [ + 5204.049566926858, + 5195.351856595015 + ], + [ + 5204.370659307707, + 5195.351856595015 + ], + [ + 5204.450932402781, + 5195.43212969022 + ], + [ + 5204.450932402781, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5195.351856595015, + "max_x": 5203.80874764128, + "max_y": 5195.592675880612, + "center": [ + 5203.567928355667, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5195.592675880612 + ], + [ + 5203.407382165256, + 5195.592675880612 + ], + [ + 5203.327109070055, + 5195.51240278544 + ], + [ + 5203.327109070055, + 5195.43212969022 + ], + [ + 5203.407382165256, + 5195.351856595015 + ], + [ + 5203.728474546071, + 5195.351856595015 + ], + [ + 5203.80874764128, + 5195.43212969022 + ], + [ + 5203.80874764128, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5195.351856595015, + "max_x": 5203.166562879709, + "max_y": 5195.592675880612, + "center": [ + 5202.925743594079, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5195.592675880612 + ], + [ + 5202.765197403691, + 5195.592675880612 + ], + [ + 5202.684924308449, + 5195.51240278544 + ], + [ + 5202.684924308449, + 5195.43212969022 + ], + [ + 5202.765197403691, + 5195.351856595015 + ], + [ + 5203.086289784376, + 5195.351856595015 + ], + [ + 5203.166562879709, + 5195.43212969022 + ], + [ + 5203.166562879709, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552D9F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5195.351856595015, + "max_x": 5202.524378118113, + "max_y": 5195.592675880612, + "center": [ + 5202.283558832549, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5195.592675880612 + ], + [ + 5202.123012642086, + 5195.592675880612 + ], + [ + 5202.042739546983, + 5195.51240278544 + ], + [ + 5202.042739546983, + 5195.43212969022 + ], + [ + 5202.123012642086, + 5195.351856595015 + ], + [ + 5202.444105022942, + 5195.351856595015 + ], + [ + 5202.524378118113, + 5195.43212969022 + ], + [ + 5202.524378118113, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5195.351856595015, + "max_x": 5201.882193356508, + "max_y": 5195.592675880612, + "center": [ + 5201.641374070899, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5195.592675880612 + ], + [ + 5201.480827880556, + 5195.592675880612 + ], + [ + 5201.400554785289, + 5195.51240278544 + ], + [ + 5201.400554785289, + 5195.43212969022 + ], + [ + 5201.480827880556, + 5195.351856595015 + ], + [ + 5201.801920261305, + 5195.351856595015 + ], + [ + 5201.882193356508, + 5195.43212969022 + ], + [ + 5201.882193356508, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5195.310690989794, + "max_x": 5201.240015191192, + "max_y": 5195.55151027534, + "center": [ + 5200.9991959056115, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5195.55151027534 + ], + [ + 5200.838649715167, + 5195.55151027534 + ], + [ + 5200.758376620031, + 5195.471237180137 + ], + [ + 5200.758376620031, + 5195.390964084964 + ], + [ + 5200.838649715167, + 5195.310690989794 + ], + [ + 5201.159742095956, + 5195.310690989794 + ], + [ + 5201.240015191192, + 5195.390964084964 + ], + [ + 5201.240015191192, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5195.310690989794, + "max_x": 5200.597830429692, + "max_y": 5195.55151027534, + "center": [ + 5200.357011144079, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5195.55151027534 + ], + [ + 5200.19646495367, + 5195.55151027534 + ], + [ + 5200.116191858466, + 5195.471237180137 + ], + [ + 5200.116191858466, + 5195.390964084964 + ], + [ + 5200.19646495367, + 5195.310690989794 + ], + [ + 5200.51755733449, + 5195.310690989794 + ], + [ + 5200.597830429692, + 5195.390964084964 + ], + [ + 5200.597830429692, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5194.950491119028, + "max_x": 5204.450932402781, + "max_y": 5195.191310404624, + "center": [ + 5204.210113117233, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5195.191310404624 + ], + [ + 5204.049566926858, + 5195.191310404624 + ], + [ + 5203.969293831686, + 5195.111037309453 + ], + [ + 5203.969293831686, + 5195.030764214283 + ], + [ + 5204.049566926858, + 5194.950491119028 + ], + [ + 5204.370659307707, + 5194.950491119028 + ], + [ + 5204.450932402781, + 5195.030764214283 + ], + [ + 5204.450932402781, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5194.950491119028, + "max_x": 5203.80874764128, + "max_y": 5195.191310404624, + "center": [ + 5203.567928355667, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5195.191310404624 + ], + [ + 5203.407382165256, + 5195.191310404624 + ], + [ + 5203.327109070055, + 5195.111037309453 + ], + [ + 5203.327109070055, + 5195.030764214283 + ], + [ + 5203.407382165256, + 5194.950491119028 + ], + [ + 5203.728474546071, + 5194.950491119028 + ], + [ + 5203.80874764128, + 5195.030764214283 + ], + [ + 5203.80874764128, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5194.950491119028, + "max_x": 5203.166562879709, + "max_y": 5195.191310404624, + "center": [ + 5202.925743594079, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5195.191310404624 + ], + [ + 5202.765197403691, + 5195.191310404624 + ], + [ + 5202.684924308449, + 5195.111037309453 + ], + [ + 5202.684924308449, + 5195.030764214283 + ], + [ + 5202.765197403691, + 5194.950491119028 + ], + [ + 5203.086289784376, + 5194.950491119028 + ], + [ + 5203.166562879709, + 5195.030764214283 + ], + [ + 5203.166562879709, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5194.950491119028, + "max_x": 5202.524378118113, + "max_y": 5195.191310404624, + "center": [ + 5202.283558832549, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5195.191310404624 + ], + [ + 5202.123012642086, + 5195.191310404624 + ], + [ + 5202.042739546983, + 5195.111037309453 + ], + [ + 5202.042739546983, + 5195.030764214283 + ], + [ + 5202.123012642086, + 5194.950491119028 + ], + [ + 5202.444105022942, + 5194.950491119028 + ], + [ + 5202.524378118113, + 5195.030764214283 + ], + [ + 5202.524378118113, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5194.950491119028, + "max_x": 5201.882193356508, + "max_y": 5195.191310404624, + "center": [ + 5201.641374070899, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5195.191310404624 + ], + [ + 5201.480827880556, + 5195.191310404624 + ], + [ + 5201.400554785289, + 5195.111037309453 + ], + [ + 5201.400554785289, + 5195.030764214283 + ], + [ + 5201.480827880556, + 5194.950491119028 + ], + [ + 5201.801920261305, + 5194.950491119028 + ], + [ + 5201.882193356508, + 5195.030764214283 + ], + [ + 5201.882193356508, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5194.909325513773, + "max_x": 5201.240015191192, + "max_y": 5195.15014479937, + "center": [ + 5200.9991959056115, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5195.15014479937 + ], + [ + 5200.838649715167, + 5195.15014479937 + ], + [ + 5200.758376620031, + 5195.069871704148 + ], + [ + 5200.758376620031, + 5194.989598608945 + ], + [ + 5200.838649715167, + 5194.909325513773 + ], + [ + 5201.159742095956, + 5194.909325513773 + ], + [ + 5201.240015191192, + 5194.989598608945 + ], + [ + 5201.240015191192, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DA9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5194.909325513773, + "max_x": 5200.597830429692, + "max_y": 5195.15014479937, + "center": [ + 5200.357011144079, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5195.15014479937 + ], + [ + 5200.19646495367, + 5195.15014479937 + ], + [ + 5200.116191858466, + 5195.069871704148 + ], + [ + 5200.116191858466, + 5194.989598608945 + ], + [ + 5200.19646495367, + 5194.909325513773 + ], + [ + 5200.51755733449, + 5194.909325513773 + ], + [ + 5200.597830429692, + 5194.989598608945 + ], + [ + 5200.597830429692, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5194.549125643057, + "max_x": 5204.450932402781, + "max_y": 5194.789944928653, + "center": [ + 5204.210113117233, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5194.789944928653 + ], + [ + 5204.049566926858, + 5194.789944928653 + ], + [ + 5203.969293831686, + 5194.709671833482 + ], + [ + 5203.969293831686, + 5194.62939873831 + ], + [ + 5204.049566926858, + 5194.549125643057 + ], + [ + 5204.370659307707, + 5194.549125643057 + ], + [ + 5204.450932402781, + 5194.62939873831 + ], + [ + 5204.450932402781, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5194.549125643057, + "max_x": 5203.80874764128, + "max_y": 5194.789944928653, + "center": [ + 5203.567928355667, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5194.789944928653 + ], + [ + 5203.407382165256, + 5194.789944928653 + ], + [ + 5203.327109070055, + 5194.709671833482 + ], + [ + 5203.327109070055, + 5194.62939873831 + ], + [ + 5203.407382165256, + 5194.549125643057 + ], + [ + 5203.728474546071, + 5194.549125643057 + ], + [ + 5203.80874764128, + 5194.62939873831 + ], + [ + 5203.80874764128, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5194.549125643057, + "max_x": 5203.166562879709, + "max_y": 5194.789944928653, + "center": [ + 5202.925743594079, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5194.789944928653 + ], + [ + 5202.765197403691, + 5194.789944928653 + ], + [ + 5202.684924308449, + 5194.709671833482 + ], + [ + 5202.684924308449, + 5194.62939873831 + ], + [ + 5202.765197403691, + 5194.549125643057 + ], + [ + 5203.086289784376, + 5194.549125643057 + ], + [ + 5203.166562879709, + 5194.62939873831 + ], + [ + 5203.166562879709, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5194.549125643057, + "max_x": 5202.524378118113, + "max_y": 5194.789944928653, + "center": [ + 5202.283558832549, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5194.789944928653 + ], + [ + 5202.123012642086, + 5194.789944928653 + ], + [ + 5202.042739546983, + 5194.709671833482 + ], + [ + 5202.042739546983, + 5194.62939873831 + ], + [ + 5202.123012642086, + 5194.549125643057 + ], + [ + 5202.444105022942, + 5194.549125643057 + ], + [ + 5202.524378118113, + 5194.62939873831 + ], + [ + 5202.524378118113, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5194.549125643057, + "max_x": 5201.882193356508, + "max_y": 5194.789944928653, + "center": [ + 5201.641374070899, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5194.789944928653 + ], + [ + 5201.480827880556, + 5194.789944928653 + ], + [ + 5201.400554785289, + 5194.709671833482 + ], + [ + 5201.400554785289, + 5194.62939873831 + ], + [ + 5201.480827880556, + 5194.549125643057 + ], + [ + 5201.801920261305, + 5194.549125643057 + ], + [ + 5201.882193356508, + 5194.62939873831 + ], + [ + 5201.882193356508, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DAF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5194.507960037785, + "max_x": 5201.240015191192, + "max_y": 5194.748779323383, + "center": [ + 5200.9991959056115, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5194.748779323383 + ], + [ + 5200.838649715167, + 5194.748779323383 + ], + [ + 5200.758376620031, + 5194.668506228176 + ], + [ + 5200.758376620031, + 5194.588233133007 + ], + [ + 5200.838649715167, + 5194.507960037785 + ], + [ + 5201.159742095956, + 5194.507960037785 + ], + [ + 5201.240015191192, + 5194.588233133007 + ], + [ + 5201.240015191192, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5194.507960037785, + "max_x": 5200.597830429692, + "max_y": 5194.748779323383, + "center": [ + 5200.357011144079, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5194.748779323383 + ], + [ + 5200.19646495367, + 5194.748779323383 + ], + [ + 5200.116191858466, + 5194.668506228176 + ], + [ + 5200.116191858466, + 5194.588233133007 + ], + [ + 5200.19646495367, + 5194.507960037785 + ], + [ + 5200.51755733449, + 5194.507960037785 + ], + [ + 5200.597830429692, + 5194.588233133007 + ], + [ + 5200.597830429692, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.969293831686, + "min_y": 5194.147760167069, + "max_x": 5204.450932402781, + "max_y": 5194.388579452631, + "center": [ + 5204.210113117233, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.370659307707, + 5194.388579452631 + ], + [ + 5204.049566926858, + 5194.388579452631 + ], + [ + 5203.969293831686, + 5194.30830635746 + ], + [ + 5203.969293831686, + 5194.228033262291 + ], + [ + 5204.049566926858, + 5194.147760167069 + ], + [ + 5204.370659307707, + 5194.147760167069 + ], + [ + 5204.450932402781, + 5194.228033262291 + ], + [ + 5204.450932402781, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.327109070055, + "min_y": 5194.147760167069, + "max_x": 5203.80874764128, + "max_y": 5194.388579452631, + "center": [ + 5203.567928355667, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.728474546071, + 5194.388579452631 + ], + [ + 5203.407382165256, + 5194.388579452631 + ], + [ + 5203.327109070055, + 5194.30830635746 + ], + [ + 5203.327109070055, + 5194.228033262291 + ], + [ + 5203.407382165256, + 5194.147760167069 + ], + [ + 5203.728474546071, + 5194.147760167069 + ], + [ + 5203.80874764128, + 5194.228033262291 + ], + [ + 5203.80874764128, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.684924308449, + "min_y": 5194.147760167069, + "max_x": 5203.166562879709, + "max_y": 5194.388579452631, + "center": [ + 5202.925743594079, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.086289784376, + 5194.388579452631 + ], + [ + 5202.765197403691, + 5194.388579452631 + ], + [ + 5202.684924308449, + 5194.30830635746 + ], + [ + 5202.684924308449, + 5194.228033262291 + ], + [ + 5202.765197403691, + 5194.147760167069 + ], + [ + 5203.086289784376, + 5194.147760167069 + ], + [ + 5203.166562879709, + 5194.228033262291 + ], + [ + 5203.166562879709, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5202.042739546983, + "min_y": 5194.147760167069, + "max_x": 5202.524378118113, + "max_y": 5194.388579452631, + "center": [ + 5202.283558832549, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.444105022942, + 5194.388579452631 + ], + [ + 5202.123012642086, + 5194.388579452631 + ], + [ + 5202.042739546983, + 5194.30830635746 + ], + [ + 5202.042739546983, + 5194.228033262291 + ], + [ + 5202.123012642086, + 5194.147760167069 + ], + [ + 5202.444105022942, + 5194.147760167069 + ], + [ + 5202.524378118113, + 5194.228033262291 + ], + [ + 5202.524378118113, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.400554785289, + "min_y": 5194.147760167069, + "max_x": 5201.882193356508, + "max_y": 5194.388579452631, + "center": [ + 5201.641374070899, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.801920261305, + 5194.388579452631 + ], + [ + 5201.480827880556, + 5194.388579452631 + ], + [ + 5201.400554785289, + 5194.30830635746 + ], + [ + 5201.400554785289, + 5194.228033262291 + ], + [ + 5201.480827880556, + 5194.147760167069 + ], + [ + 5201.801920261305, + 5194.147760167069 + ], + [ + 5201.882193356508, + 5194.228033262291 + ], + [ + 5201.882193356508, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.758376620031, + "min_y": 5194.106594561848, + "max_x": 5201.240015191192, + "max_y": 5194.347413847411, + "center": [ + 5200.9991959056115, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.159742095956, + 5194.347413847411 + ], + [ + 5200.838649715167, + 5194.347413847411 + ], + [ + 5200.758376620031, + 5194.267140752191 + ], + [ + 5200.758376620031, + 5194.186867657019 + ], + [ + 5200.838649715167, + 5194.106594561848 + ], + [ + 5201.159742095956, + 5194.106594561848 + ], + [ + 5201.240015191192, + 5194.186867657019 + ], + [ + 5201.240015191192, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.116191858466, + "min_y": 5194.106594561848, + "max_x": 5200.597830429692, + "max_y": 5194.347413847411, + "center": [ + 5200.357011144079, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.51755733449, + 5194.347413847411 + ], + [ + 5200.19646495367, + 5194.347413847411 + ], + [ + 5200.116191858466, + 5194.267140752191 + ], + [ + 5200.116191858466, + 5194.186867657019 + ], + [ + 5200.19646495367, + 5194.106594561848 + ], + [ + 5200.51755733449, + 5194.106594561848 + ], + [ + 5200.597830429692, + 5194.186867657019 + ], + [ + 5200.597830429692, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5198.964145878871, + "max_x": 5199.320072960144, + "max_y": 5199.204965164416, + "center": [ + 5199.079253674579, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5199.204965164416 + ], + [ + 5198.918707484217, + 5199.204965164416 + ], + [ + 5198.838434389016, + 5199.124692069245 + ], + [ + 5198.838434389016, + 5199.044418974075 + ], + [ + 5198.918707484217, + 5198.964145878871 + ], + [ + 5199.239799864974, + 5198.964145878871 + ], + [ + 5199.320072960144, + 5199.044418974075 + ], + [ + 5199.320072960144, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DB9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5198.964145878871, + "max_x": 5198.677888198676, + "max_y": 5199.204965164416, + "center": [ + 5198.437068912994, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5199.204965164416 + ], + [ + 5198.276522722654, + 5199.204965164416 + ], + [ + 5198.196249627313, + 5199.124692069245 + ], + [ + 5198.196249627313, + 5199.044418974075 + ], + [ + 5198.276522722654, + 5198.964145878871 + ], + [ + 5198.597615103338, + 5198.964145878871 + ], + [ + 5198.677888198676, + 5199.044418974075 + ], + [ + 5198.677888198676, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5198.964145878871, + "max_x": 5198.035703436975, + "max_y": 5199.204965164416, + "center": [ + 5197.794884151432, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5199.204965164416 + ], + [ + 5197.634337961055, + 5199.204965164416 + ], + [ + 5197.554064865887, + 5199.124692069245 + ], + [ + 5197.554064865887, + 5199.044418974075 + ], + [ + 5197.634337961055, + 5198.964145878871 + ], + [ + 5197.955430341904, + 5198.964145878871 + ], + [ + 5198.035703436975, + 5199.044418974075 + ], + [ + 5198.035703436975, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5198.964145878871, + "max_x": 5197.393518675475, + "max_y": 5199.204965164416, + "center": [ + 5197.152699389862, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5199.204965164416 + ], + [ + 5196.992153199452, + 5199.204965164416 + ], + [ + 5196.911880104249, + 5199.124692069245 + ], + [ + 5196.911880104249, + 5199.044418974075 + ], + [ + 5196.992153199452, + 5198.964145878871 + ], + [ + 5197.313245580273, + 5198.964145878871 + ], + [ + 5197.393518675475, + 5199.044418974075 + ], + [ + 5197.393518675475, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5198.964145878871, + "max_x": 5196.751333913909, + "max_y": 5199.204965164416, + "center": [ + 5196.5105146283295, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5199.204965164416 + ], + [ + 5196.349968437887, + 5199.204965164416 + ], + [ + 5196.269695342749, + 5199.124692069245 + ], + [ + 5196.269695342749, + 5199.044418974075 + ], + [ + 5196.349968437887, + 5198.964145878871 + ], + [ + 5196.671060818766, + 5198.964145878871 + ], + [ + 5196.751333913909, + 5199.044418974075 + ], + [ + 5196.751333913909, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5198.964145878871, + "max_x": 5196.109149152306, + "max_y": 5199.204965164416, + "center": [ + 5195.868329866746, + 5199.084555521644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5199.204965164416 + ], + [ + 5195.707783676289, + 5199.204965164416 + ], + [ + 5195.627510581186, + 5199.124692069245 + ], + [ + 5195.627510581186, + 5199.044418974075 + ], + [ + 5195.707783676289, + 5198.964145878871 + ], + [ + 5196.028876057138, + 5198.964145878871 + ], + [ + 5196.109149152306, + 5199.044418974075 + ], + [ + 5196.109149152306, + 5199.124692069245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5198.9229802736, + "max_x": 5195.466970987023, + "max_y": 5199.163799559162, + "center": [ + 5195.226151701427, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5199.163799559162 + ], + [ + 5195.065605511, + 5199.163799559162 + ], + [ + 5194.98533241583, + 5199.083526463991 + ], + [ + 5194.98533241583, + 5199.003253368771 + ], + [ + 5195.065605511, + 5198.9229802736 + ], + [ + 5195.386697891748, + 5198.9229802736 + ], + [ + 5195.466970987023, + 5199.003253368771 + ], + [ + 5195.466970987023, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DBF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5198.9229802736, + "max_x": 5194.824786225386, + "max_y": 5199.163799559162, + "center": [ + 5194.583966939843, + 5199.043389916381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5199.163799559162 + ], + [ + 5194.423420749466, + 5199.163799559162 + ], + [ + 5194.343147654299, + 5199.083526463991 + ], + [ + 5194.343147654299, + 5199.003253368771 + ], + [ + 5194.423420749466, + 5198.9229802736 + ], + [ + 5194.744513130316, + 5198.9229802736 + ], + [ + 5194.824786225386, + 5199.003253368771 + ], + [ + 5194.824786225386, + 5199.083526463991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5198.562780402848, + "max_x": 5199.320072960144, + "max_y": 5198.803599688446, + "center": [ + 5199.079253674579, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5198.803599688446 + ], + [ + 5198.918707484217, + 5198.803599688446 + ], + [ + 5198.838434389016, + 5198.723326593274 + ], + [ + 5198.838434389016, + 5198.643053498104 + ], + [ + 5198.918707484217, + 5198.562780402848 + ], + [ + 5199.239799864974, + 5198.562780402848 + ], + [ + 5199.320072960144, + 5198.643053498104 + ], + [ + 5199.320072960144, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5198.562780402848, + "max_x": 5198.677888198676, + "max_y": 5198.803599688446, + "center": [ + 5198.437068912994, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5198.803599688446 + ], + [ + 5198.276522722654, + 5198.803599688446 + ], + [ + 5198.196249627313, + 5198.723326593274 + ], + [ + 5198.196249627313, + 5198.643053498104 + ], + [ + 5198.276522722654, + 5198.562780402848 + ], + [ + 5198.597615103338, + 5198.562780402848 + ], + [ + 5198.677888198676, + 5198.643053498104 + ], + [ + 5198.677888198676, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5198.562780402848, + "max_x": 5198.035703436975, + "max_y": 5198.803599688446, + "center": [ + 5197.794884151432, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5198.803599688446 + ], + [ + 5197.634337961055, + 5198.803599688446 + ], + [ + 5197.554064865887, + 5198.723326593274 + ], + [ + 5197.554064865887, + 5198.643053498104 + ], + [ + 5197.634337961055, + 5198.562780402848 + ], + [ + 5197.955430341904, + 5198.562780402848 + ], + [ + 5198.035703436975, + 5198.643053498104 + ], + [ + 5198.035703436975, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5198.562780402848, + "max_x": 5197.393518675475, + "max_y": 5198.803599688446, + "center": [ + 5197.152699389862, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5198.803599688446 + ], + [ + 5196.992153199452, + 5198.803599688446 + ], + [ + 5196.911880104249, + 5198.723326593274 + ], + [ + 5196.911880104249, + 5198.643053498104 + ], + [ + 5196.992153199452, + 5198.562780402848 + ], + [ + 5197.313245580273, + 5198.562780402848 + ], + [ + 5197.393518675475, + 5198.643053498104 + ], + [ + 5197.393518675475, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5198.562780402848, + "max_x": 5196.751333913909, + "max_y": 5198.803599688446, + "center": [ + 5196.5105146283295, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5198.803599688446 + ], + [ + 5196.349968437887, + 5198.803599688446 + ], + [ + 5196.269695342749, + 5198.723326593274 + ], + [ + 5196.269695342749, + 5198.643053498104 + ], + [ + 5196.349968437887, + 5198.562780402848 + ], + [ + 5196.671060818766, + 5198.562780402848 + ], + [ + 5196.751333913909, + 5198.643053498104 + ], + [ + 5196.751333913909, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5198.562780402848, + "max_x": 5196.109149152306, + "max_y": 5198.803599688446, + "center": [ + 5195.868329866746, + 5198.683190045647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5198.803599688446 + ], + [ + 5195.707783676289, + 5198.803599688446 + ], + [ + 5195.627510581186, + 5198.723326593274 + ], + [ + 5195.627510581186, + 5198.643053498104 + ], + [ + 5195.707783676289, + 5198.562780402848 + ], + [ + 5196.028876057138, + 5198.562780402848 + ], + [ + 5196.109149152306, + 5198.643053498104 + ], + [ + 5196.109149152306, + 5198.723326593274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5198.521614797629, + "max_x": 5195.466970987023, + "max_y": 5198.762434083175, + "center": [ + 5195.226151701427, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5198.762434083175 + ], + [ + 5195.065605511, + 5198.762434083175 + ], + [ + 5194.98533241583, + 5198.68216098797 + ], + [ + 5194.98533241583, + 5198.6018878928 + ], + [ + 5195.065605511, + 5198.521614797629 + ], + [ + 5195.386697891748, + 5198.521614797629 + ], + [ + 5195.466970987023, + 5198.6018878928 + ], + [ + 5195.466970987023, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5198.521614797629, + "max_x": 5194.824786225386, + "max_y": 5198.762434083175, + "center": [ + 5194.583966939843, + 5198.642024440402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5198.762434083175 + ], + [ + 5194.423420749466, + 5198.762434083175 + ], + [ + 5194.343147654299, + 5198.68216098797 + ], + [ + 5194.343147654299, + 5198.6018878928 + ], + [ + 5194.423420749466, + 5198.521614797629 + ], + [ + 5194.744513130316, + 5198.521614797629 + ], + [ + 5194.824786225386, + 5198.6018878928 + ], + [ + 5194.824786225386, + 5198.68216098797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5198.161414926863, + "max_x": 5199.320072960144, + "max_y": 5198.402234212458, + "center": [ + 5199.079253674579, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5198.402234212458 + ], + [ + 5198.918707484217, + 5198.402234212458 + ], + [ + 5198.838434389016, + 5198.321961117287 + ], + [ + 5198.838434389016, + 5198.241688022116 + ], + [ + 5198.918707484217, + 5198.161414926863 + ], + [ + 5199.239799864974, + 5198.161414926863 + ], + [ + 5199.320072960144, + 5198.241688022116 + ], + [ + 5199.320072960144, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DC9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5198.161414926863, + "max_x": 5198.677888198676, + "max_y": 5198.402234212458, + "center": [ + 5198.437068912994, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5198.402234212458 + ], + [ + 5198.276522722654, + 5198.402234212458 + ], + [ + 5198.196249627313, + 5198.321961117287 + ], + [ + 5198.196249627313, + 5198.241688022116 + ], + [ + 5198.276522722654, + 5198.161414926863 + ], + [ + 5198.597615103338, + 5198.161414926863 + ], + [ + 5198.677888198676, + 5198.241688022116 + ], + [ + 5198.677888198676, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5198.161414926863, + "max_x": 5198.035703436975, + "max_y": 5198.402234212458, + "center": [ + 5197.794884151432, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5198.402234212458 + ], + [ + 5197.634337961055, + 5198.402234212458 + ], + [ + 5197.554064865887, + 5198.321961117287 + ], + [ + 5197.554064865887, + 5198.241688022116 + ], + [ + 5197.634337961055, + 5198.161414926863 + ], + [ + 5197.955430341904, + 5198.161414926863 + ], + [ + 5198.035703436975, + 5198.241688022116 + ], + [ + 5198.035703436975, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5198.161414926863, + "max_x": 5197.393518675475, + "max_y": 5198.402234212458, + "center": [ + 5197.152699389862, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5198.402234212458 + ], + [ + 5196.992153199452, + 5198.402234212458 + ], + [ + 5196.911880104249, + 5198.321961117287 + ], + [ + 5196.911880104249, + 5198.241688022116 + ], + [ + 5196.992153199452, + 5198.161414926863 + ], + [ + 5197.313245580273, + 5198.161414926863 + ], + [ + 5197.393518675475, + 5198.241688022116 + ], + [ + 5197.393518675475, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5198.161414926863, + "max_x": 5196.751333913909, + "max_y": 5198.402234212458, + "center": [ + 5196.5105146283295, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5198.402234212458 + ], + [ + 5196.349968437887, + 5198.402234212458 + ], + [ + 5196.269695342749, + 5198.321961117287 + ], + [ + 5196.269695342749, + 5198.241688022116 + ], + [ + 5196.349968437887, + 5198.161414926863 + ], + [ + 5196.671060818766, + 5198.161414926863 + ], + [ + 5196.751333913909, + 5198.241688022116 + ], + [ + 5196.751333913909, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5198.161414926863, + "max_x": 5196.109149152306, + "max_y": 5198.402234212458, + "center": [ + 5195.868329866746, + 5198.28182456966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5198.402234212458 + ], + [ + 5195.707783676289, + 5198.402234212458 + ], + [ + 5195.627510581186, + 5198.321961117287 + ], + [ + 5195.627510581186, + 5198.241688022116 + ], + [ + 5195.707783676289, + 5198.161414926863 + ], + [ + 5196.028876057138, + 5198.161414926863 + ], + [ + 5196.109149152306, + 5198.241688022116 + ], + [ + 5196.109149152306, + 5198.321961117287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5198.120249321641, + "max_x": 5195.466970987023, + "max_y": 5198.361068607238, + "center": [ + 5195.226151701427, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5198.361068607238 + ], + [ + 5195.065605511, + 5198.361068607238 + ], + [ + 5194.98533241583, + 5198.280795511983 + ], + [ + 5194.98533241583, + 5198.200522416812 + ], + [ + 5195.065605511, + 5198.120249321641 + ], + [ + 5195.386697891748, + 5198.120249321641 + ], + [ + 5195.466970987023, + 5198.200522416812 + ], + [ + 5195.466970987023, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DCF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5198.120249321641, + "max_x": 5194.824786225386, + "max_y": 5198.361068607238, + "center": [ + 5194.583966939843, + 5198.24065896444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5198.361068607238 + ], + [ + 5194.423420749466, + 5198.361068607238 + ], + [ + 5194.343147654299, + 5198.280795511983 + ], + [ + 5194.343147654299, + 5198.200522416812 + ], + [ + 5194.423420749466, + 5198.120249321641 + ], + [ + 5194.744513130316, + 5198.120249321641 + ], + [ + 5194.824786225386, + 5198.200522416812 + ], + [ + 5194.824786225386, + 5198.280795511983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5197.760049450925, + "max_x": 5199.320072960144, + "max_y": 5198.000868736487, + "center": [ + 5199.079253674579, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5198.000868736487 + ], + [ + 5198.918707484217, + 5198.000868736487 + ], + [ + 5198.838434389016, + 5197.920595641316 + ], + [ + 5198.838434389016, + 5197.840322546145 + ], + [ + 5198.918707484217, + 5197.760049450925 + ], + [ + 5199.239799864974, + 5197.760049450925 + ], + [ + 5199.320072960144, + 5197.840322546145 + ], + [ + 5199.320072960144, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5197.760049450925, + "max_x": 5198.677888198676, + "max_y": 5198.000868736487, + "center": [ + 5198.437068912994, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5198.000868736487 + ], + [ + 5198.276522722654, + 5198.000868736487 + ], + [ + 5198.196249627313, + 5197.920595641316 + ], + [ + 5198.196249627313, + 5197.840322546145 + ], + [ + 5198.276522722654, + 5197.760049450925 + ], + [ + 5198.597615103338, + 5197.760049450925 + ], + [ + 5198.677888198676, + 5197.840322546145 + ], + [ + 5198.677888198676, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5197.760049450925, + "max_x": 5198.035703436975, + "max_y": 5198.000868736487, + "center": [ + 5197.794884151432, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5198.000868736487 + ], + [ + 5197.634337961055, + 5198.000868736487 + ], + [ + 5197.554064865887, + 5197.920595641316 + ], + [ + 5197.554064865887, + 5197.840322546145 + ], + [ + 5197.634337961055, + 5197.760049450925 + ], + [ + 5197.955430341904, + 5197.760049450925 + ], + [ + 5198.035703436975, + 5197.840322546145 + ], + [ + 5198.035703436975, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5197.760049450925, + "max_x": 5197.393518675475, + "max_y": 5198.000868736487, + "center": [ + 5197.152699389862, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5198.000868736487 + ], + [ + 5196.992153199452, + 5198.000868736487 + ], + [ + 5196.911880104249, + 5197.920595641316 + ], + [ + 5196.911880104249, + 5197.840322546145 + ], + [ + 5196.992153199452, + 5197.760049450925 + ], + [ + 5197.313245580273, + 5197.760049450925 + ], + [ + 5197.393518675475, + 5197.840322546145 + ], + [ + 5197.393518675475, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5197.760049450925, + "max_x": 5196.751333913909, + "max_y": 5198.000868736487, + "center": [ + 5196.5105146283295, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5198.000868736487 + ], + [ + 5196.349968437887, + 5198.000868736487 + ], + [ + 5196.269695342749, + 5197.920595641316 + ], + [ + 5196.269695342749, + 5197.840322546145 + ], + [ + 5196.349968437887, + 5197.760049450925 + ], + [ + 5196.671060818766, + 5197.760049450925 + ], + [ + 5196.751333913909, + 5197.840322546145 + ], + [ + 5196.751333913909, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5197.760049450925, + "max_x": 5196.109149152306, + "max_y": 5198.000868736487, + "center": [ + 5195.868329866746, + 5197.880459093706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5198.000868736487 + ], + [ + 5195.707783676289, + 5198.000868736487 + ], + [ + 5195.627510581186, + 5197.920595641316 + ], + [ + 5195.627510581186, + 5197.840322546145 + ], + [ + 5195.707783676289, + 5197.760049450925 + ], + [ + 5196.028876057138, + 5197.760049450925 + ], + [ + 5196.109149152306, + 5197.840322546145 + ], + [ + 5196.109149152306, + 5197.920595641316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5197.71888384567, + "max_x": 5195.466970987023, + "max_y": 5197.959703131266, + "center": [ + 5195.226151701427, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5197.959703131266 + ], + [ + 5195.065605511, + 5197.959703131266 + ], + [ + 5194.98533241583, + 5197.879430036012 + ], + [ + 5194.98533241583, + 5197.799156940842 + ], + [ + 5195.065605511, + 5197.71888384567 + ], + [ + 5195.386697891748, + 5197.71888384567 + ], + [ + 5195.466970987023, + 5197.799156940842 + ], + [ + 5195.466970987023, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5197.71888384567, + "max_x": 5194.824786225386, + "max_y": 5197.959703131266, + "center": [ + 5194.583966939843, + 5197.839293488468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5197.959703131266 + ], + [ + 5194.423420749466, + 5197.959703131266 + ], + [ + 5194.343147654299, + 5197.879430036012 + ], + [ + 5194.343147654299, + 5197.799156940842 + ], + [ + 5194.423420749466, + 5197.71888384567 + ], + [ + 5194.744513130316, + 5197.71888384567 + ], + [ + 5194.824786225386, + 5197.799156940842 + ], + [ + 5194.824786225386, + 5197.879430036012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5197.358683974954, + "max_x": 5199.320072960144, + "max_y": 5197.5995032605, + "center": [ + 5199.079253674579, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5197.5995032605 + ], + [ + 5198.918707484217, + 5197.5995032605 + ], + [ + 5198.838434389016, + 5197.519230165329 + ], + [ + 5198.838434389016, + 5197.438957070124 + ], + [ + 5198.918707484217, + 5197.358683974954 + ], + [ + 5199.239799864974, + 5197.358683974954 + ], + [ + 5199.320072960144, + 5197.438957070124 + ], + [ + 5199.320072960144, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DD9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5197.358683974954, + "max_x": 5198.677888198676, + "max_y": 5197.5995032605, + "center": [ + 5198.437068912994, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5197.5995032605 + ], + [ + 5198.276522722654, + 5197.5995032605 + ], + [ + 5198.196249627313, + 5197.519230165329 + ], + [ + 5198.196249627313, + 5197.438957070124 + ], + [ + 5198.276522722654, + 5197.358683974954 + ], + [ + 5198.597615103338, + 5197.358683974954 + ], + [ + 5198.677888198676, + 5197.438957070124 + ], + [ + 5198.677888198676, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5197.358683974954, + "max_x": 5198.035703436975, + "max_y": 5197.5995032605, + "center": [ + 5197.794884151432, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5197.5995032605 + ], + [ + 5197.634337961055, + 5197.5995032605 + ], + [ + 5197.554064865887, + 5197.519230165329 + ], + [ + 5197.554064865887, + 5197.438957070124 + ], + [ + 5197.634337961055, + 5197.358683974954 + ], + [ + 5197.955430341904, + 5197.358683974954 + ], + [ + 5198.035703436975, + 5197.438957070124 + ], + [ + 5198.035703436975, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5197.358683974954, + "max_x": 5197.393518675475, + "max_y": 5197.5995032605, + "center": [ + 5197.152699389862, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5197.5995032605 + ], + [ + 5196.992153199452, + 5197.5995032605 + ], + [ + 5196.911880104249, + 5197.519230165329 + ], + [ + 5196.911880104249, + 5197.438957070124 + ], + [ + 5196.992153199452, + 5197.358683974954 + ], + [ + 5197.313245580273, + 5197.358683974954 + ], + [ + 5197.393518675475, + 5197.438957070124 + ], + [ + 5197.393518675475, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5197.358683974954, + "max_x": 5196.751333913909, + "max_y": 5197.5995032605, + "center": [ + 5196.5105146283295, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5197.5995032605 + ], + [ + 5196.349968437887, + 5197.5995032605 + ], + [ + 5196.269695342749, + 5197.519230165329 + ], + [ + 5196.269695342749, + 5197.438957070124 + ], + [ + 5196.349968437887, + 5197.358683974954 + ], + [ + 5196.671060818766, + 5197.358683974954 + ], + [ + 5196.751333913909, + 5197.438957070124 + ], + [ + 5196.751333913909, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5197.358683974954, + "max_x": 5196.109149152306, + "max_y": 5197.5995032605, + "center": [ + 5195.868329866746, + 5197.479093617727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5197.5995032605 + ], + [ + 5195.707783676289, + 5197.5995032605 + ], + [ + 5195.627510581186, + 5197.519230165329 + ], + [ + 5195.627510581186, + 5197.438957070124 + ], + [ + 5195.707783676289, + 5197.358683974954 + ], + [ + 5196.028876057138, + 5197.358683974954 + ], + [ + 5196.109149152306, + 5197.438957070124 + ], + [ + 5196.109149152306, + 5197.519230165329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5197.317518369683, + "max_x": 5195.466970987023, + "max_y": 5197.558337655244, + "center": [ + 5195.226151701427, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5197.558337655244 + ], + [ + 5195.065605511, + 5197.558337655244 + ], + [ + 5194.98533241583, + 5197.478064560023 + ], + [ + 5194.98533241583, + 5197.397791464855 + ], + [ + 5195.065605511, + 5197.317518369683 + ], + [ + 5195.386697891748, + 5197.317518369683 + ], + [ + 5195.466970987023, + 5197.397791464855 + ], + [ + 5195.466970987023, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DDF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5197.317518369683, + "max_x": 5194.824786225386, + "max_y": 5197.558337655244, + "center": [ + 5194.583966939843, + 5197.437928012463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5197.558337655244 + ], + [ + 5194.423420749466, + 5197.558337655244 + ], + [ + 5194.343147654299, + 5197.478064560023 + ], + [ + 5194.343147654299, + 5197.397791464855 + ], + [ + 5194.423420749466, + 5197.317518369683 + ], + [ + 5194.744513130316, + 5197.317518369683 + ], + [ + 5194.824786225386, + 5197.397791464855 + ], + [ + 5194.824786225386, + 5197.478064560023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5196.957318498932, + "max_x": 5199.320072960144, + "max_y": 5197.198137784528, + "center": [ + 5199.079253674579, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5197.198137784528 + ], + [ + 5198.918707484217, + 5197.198137784528 + ], + [ + 5198.838434389016, + 5197.117864689357 + ], + [ + 5198.838434389016, + 5197.037591594187 + ], + [ + 5198.918707484217, + 5196.957318498932 + ], + [ + 5199.239799864974, + 5196.957318498932 + ], + [ + 5199.320072960144, + 5197.037591594187 + ], + [ + 5199.320072960144, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5196.957318498932, + "max_x": 5198.677888198676, + "max_y": 5197.198137784528, + "center": [ + 5198.437068912994, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5197.198137784528 + ], + [ + 5198.276522722654, + 5197.198137784528 + ], + [ + 5198.196249627313, + 5197.117864689357 + ], + [ + 5198.196249627313, + 5197.037591594187 + ], + [ + 5198.276522722654, + 5196.957318498932 + ], + [ + 5198.597615103338, + 5196.957318498932 + ], + [ + 5198.677888198676, + 5197.037591594187 + ], + [ + 5198.677888198676, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5196.957318498932, + "max_x": 5198.035703436975, + "max_y": 5197.198137784528, + "center": [ + 5197.794884151432, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5197.198137784528 + ], + [ + 5197.634337961055, + 5197.198137784528 + ], + [ + 5197.554064865887, + 5197.117864689357 + ], + [ + 5197.554064865887, + 5197.037591594187 + ], + [ + 5197.634337961055, + 5196.957318498932 + ], + [ + 5197.955430341904, + 5196.957318498932 + ], + [ + 5198.035703436975, + 5197.037591594187 + ], + [ + 5198.035703436975, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5196.957318498932, + "max_x": 5197.393518675475, + "max_y": 5197.198137784528, + "center": [ + 5197.152699389862, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5197.198137784528 + ], + [ + 5196.992153199452, + 5197.198137784528 + ], + [ + 5196.911880104249, + 5197.117864689357 + ], + [ + 5196.911880104249, + 5197.037591594187 + ], + [ + 5196.992153199452, + 5196.957318498932 + ], + [ + 5197.313245580273, + 5196.957318498932 + ], + [ + 5197.393518675475, + 5197.037591594187 + ], + [ + 5197.393518675475, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5196.957318498932, + "max_x": 5196.751333913909, + "max_y": 5197.198137784528, + "center": [ + 5196.5105146283295, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5197.198137784528 + ], + [ + 5196.349968437887, + 5197.198137784528 + ], + [ + 5196.269695342749, + 5197.117864689357 + ], + [ + 5196.269695342749, + 5197.037591594187 + ], + [ + 5196.349968437887, + 5196.957318498932 + ], + [ + 5196.671060818766, + 5196.957318498932 + ], + [ + 5196.751333913909, + 5197.037591594187 + ], + [ + 5196.751333913909, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5196.957318498932, + "max_x": 5196.109149152306, + "max_y": 5197.198137784528, + "center": [ + 5195.868329866746, + 5197.07772814173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5197.198137784528 + ], + [ + 5195.707783676289, + 5197.198137784528 + ], + [ + 5195.627510581186, + 5197.117864689357 + ], + [ + 5195.627510581186, + 5197.037591594187 + ], + [ + 5195.707783676289, + 5196.957318498932 + ], + [ + 5196.028876057138, + 5196.957318498932 + ], + [ + 5196.109149152306, + 5197.037591594187 + ], + [ + 5196.109149152306, + 5197.117864689357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5196.916152893712, + "max_x": 5195.466970987023, + "max_y": 5197.156972179257, + "center": [ + 5195.226151701427, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5197.156972179257 + ], + [ + 5195.065605511, + 5197.156972179257 + ], + [ + 5194.98533241583, + 5197.076699084053 + ], + [ + 5194.98533241583, + 5196.996425988881 + ], + [ + 5195.065605511, + 5196.916152893712 + ], + [ + 5195.386697891748, + 5196.916152893712 + ], + [ + 5195.466970987023, + 5196.996425988881 + ], + [ + 5195.466970987023, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5196.916152893712, + "max_x": 5194.824786225386, + "max_y": 5197.156972179257, + "center": [ + 5194.583966939843, + 5197.036562536485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5197.156972179257 + ], + [ + 5194.423420749466, + 5197.156972179257 + ], + [ + 5194.343147654299, + 5197.076699084053 + ], + [ + 5194.343147654299, + 5196.996425988881 + ], + [ + 5194.423420749466, + 5196.916152893712 + ], + [ + 5194.744513130316, + 5196.916152893712 + ], + [ + 5194.824786225386, + 5196.996425988881 + ], + [ + 5194.824786225386, + 5197.076699084053 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5196.555953022945, + "max_x": 5199.320072960144, + "max_y": 5196.796772308541, + "center": [ + 5199.079253674579, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5196.796772308541 + ], + [ + 5198.918707484217, + 5196.796772308541 + ], + [ + 5198.838434389016, + 5196.71649921337 + ], + [ + 5198.838434389016, + 5196.636226118199 + ], + [ + 5198.918707484217, + 5196.555953022945 + ], + [ + 5199.239799864974, + 5196.555953022945 + ], + [ + 5199.320072960144, + 5196.636226118199 + ], + [ + 5199.320072960144, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DE9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5196.555953022945, + "max_x": 5198.677888198676, + "max_y": 5196.796772308541, + "center": [ + 5198.437068912994, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5196.796772308541 + ], + [ + 5198.276522722654, + 5196.796772308541 + ], + [ + 5198.196249627313, + 5196.71649921337 + ], + [ + 5198.196249627313, + 5196.636226118199 + ], + [ + 5198.276522722654, + 5196.555953022945 + ], + [ + 5198.597615103338, + 5196.555953022945 + ], + [ + 5198.677888198676, + 5196.636226118199 + ], + [ + 5198.677888198676, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DEA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5196.555953022945, + "max_x": 5198.035703436975, + "max_y": 5196.796772308541, + "center": [ + 5197.794884151432, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5196.796772308541 + ], + [ + 5197.634337961055, + 5196.796772308541 + ], + [ + 5197.554064865887, + 5196.71649921337 + ], + [ + 5197.554064865887, + 5196.636226118199 + ], + [ + 5197.634337961055, + 5196.555953022945 + ], + [ + 5197.955430341904, + 5196.555953022945 + ], + [ + 5198.035703436975, + 5196.636226118199 + ], + [ + 5198.035703436975, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DEB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5196.555953022945, + "max_x": 5197.393518675475, + "max_y": 5196.796772308541, + "center": [ + 5197.152699389862, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5196.796772308541 + ], + [ + 5196.992153199452, + 5196.796772308541 + ], + [ + 5196.911880104249, + 5196.71649921337 + ], + [ + 5196.911880104249, + 5196.636226118199 + ], + [ + 5196.992153199452, + 5196.555953022945 + ], + [ + 5197.313245580273, + 5196.555953022945 + ], + [ + 5197.393518675475, + 5196.636226118199 + ], + [ + 5197.393518675475, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DEC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5196.555953022945, + "max_x": 5196.751333913909, + "max_y": 5196.796772308541, + "center": [ + 5196.5105146283295, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5196.796772308541 + ], + [ + 5196.349968437887, + 5196.796772308541 + ], + [ + 5196.269695342749, + 5196.71649921337 + ], + [ + 5196.269695342749, + 5196.636226118199 + ], + [ + 5196.349968437887, + 5196.555953022945 + ], + [ + 5196.671060818766, + 5196.555953022945 + ], + [ + 5196.751333913909, + 5196.636226118199 + ], + [ + 5196.751333913909, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DED", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5196.555953022945, + "max_x": 5196.109149152306, + "max_y": 5196.796772308541, + "center": [ + 5195.868329866746, + 5196.676362665743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5196.796772308541 + ], + [ + 5195.707783676289, + 5196.796772308541 + ], + [ + 5195.627510581186, + 5196.71649921337 + ], + [ + 5195.627510581186, + 5196.636226118199 + ], + [ + 5195.707783676289, + 5196.555953022945 + ], + [ + 5196.028876057138, + 5196.555953022945 + ], + [ + 5196.109149152306, + 5196.636226118199 + ], + [ + 5196.109149152306, + 5196.71649921337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DEE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5196.51478741769, + "max_x": 5195.466970987023, + "max_y": 5196.755606703287, + "center": [ + 5195.226151701427, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5196.755606703287 + ], + [ + 5195.065605511, + 5196.755606703287 + ], + [ + 5194.98533241583, + 5196.675333608066 + ], + [ + 5194.98533241583, + 5196.595060512896 + ], + [ + 5195.065605511, + 5196.51478741769 + ], + [ + 5195.386697891748, + 5196.51478741769 + ], + [ + 5195.466970987023, + 5196.595060512896 + ], + [ + 5195.466970987023, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DEF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5196.51478741769, + "max_x": 5194.824786225386, + "max_y": 5196.755606703287, + "center": [ + 5194.583966939843, + 5196.635197060488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5196.755606703287 + ], + [ + 5194.423420749466, + 5196.755606703287 + ], + [ + 5194.343147654299, + 5196.675333608066 + ], + [ + 5194.343147654299, + 5196.595060512896 + ], + [ + 5194.423420749466, + 5196.51478741769 + ], + [ + 5194.744513130316, + 5196.51478741769 + ], + [ + 5194.824786225386, + 5196.595060512896 + ], + [ + 5194.824786225386, + 5196.675333608066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5196.154587546974, + "max_x": 5199.320072960144, + "max_y": 5196.395406832571, + "center": [ + 5199.079253674579, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5196.395406832571 + ], + [ + 5198.918707484217, + 5196.395406832571 + ], + [ + 5198.838434389016, + 5196.3151337374 + ], + [ + 5198.838434389016, + 5196.234860642228 + ], + [ + 5198.918707484217, + 5196.154587546974 + ], + [ + 5199.239799864974, + 5196.154587546974 + ], + [ + 5199.320072960144, + 5196.234860642228 + ], + [ + 5199.320072960144, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5196.154587546974, + "max_x": 5198.677888198676, + "max_y": 5196.395406832571, + "center": [ + 5198.437068912994, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5196.395406832571 + ], + [ + 5198.276522722654, + 5196.395406832571 + ], + [ + 5198.196249627313, + 5196.3151337374 + ], + [ + 5198.196249627313, + 5196.234860642228 + ], + [ + 5198.276522722654, + 5196.154587546974 + ], + [ + 5198.597615103338, + 5196.154587546974 + ], + [ + 5198.677888198676, + 5196.234860642228 + ], + [ + 5198.677888198676, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5196.154587546974, + "max_x": 5198.035703436975, + "max_y": 5196.395406832571, + "center": [ + 5197.794884151432, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5196.395406832571 + ], + [ + 5197.634337961055, + 5196.395406832571 + ], + [ + 5197.554064865887, + 5196.3151337374 + ], + [ + 5197.554064865887, + 5196.234860642228 + ], + [ + 5197.634337961055, + 5196.154587546974 + ], + [ + 5197.955430341904, + 5196.154587546974 + ], + [ + 5198.035703436975, + 5196.234860642228 + ], + [ + 5198.035703436975, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5196.154587546974, + "max_x": 5197.393518675475, + "max_y": 5196.395406832571, + "center": [ + 5197.152699389862, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5196.395406832571 + ], + [ + 5196.992153199452, + 5196.395406832571 + ], + [ + 5196.911880104249, + 5196.3151337374 + ], + [ + 5196.911880104249, + 5196.234860642228 + ], + [ + 5196.992153199452, + 5196.154587546974 + ], + [ + 5197.313245580273, + 5196.154587546974 + ], + [ + 5197.393518675475, + 5196.234860642228 + ], + [ + 5197.393518675475, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5196.154587546974, + "max_x": 5196.751333913909, + "max_y": 5196.395406832571, + "center": [ + 5196.5105146283295, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5196.395406832571 + ], + [ + 5196.349968437887, + 5196.395406832571 + ], + [ + 5196.269695342749, + 5196.3151337374 + ], + [ + 5196.269695342749, + 5196.234860642228 + ], + [ + 5196.349968437887, + 5196.154587546974 + ], + [ + 5196.671060818766, + 5196.154587546974 + ], + [ + 5196.751333913909, + 5196.234860642228 + ], + [ + 5196.751333913909, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5196.154587546974, + "max_x": 5196.109149152306, + "max_y": 5196.395406832571, + "center": [ + 5195.868329866746, + 5196.274997189772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5196.395406832571 + ], + [ + 5195.707783676289, + 5196.395406832571 + ], + [ + 5195.627510581186, + 5196.3151337374 + ], + [ + 5195.627510581186, + 5196.234860642228 + ], + [ + 5195.707783676289, + 5196.154587546974 + ], + [ + 5196.028876057138, + 5196.154587546974 + ], + [ + 5196.109149152306, + 5196.234860642228 + ], + [ + 5196.109149152306, + 5196.3151337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5196.113421941753, + "max_x": 5195.466970987023, + "max_y": 5196.354241227348, + "center": [ + 5195.226151701427, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5196.354241227348 + ], + [ + 5195.065605511, + 5196.354241227348 + ], + [ + 5194.98533241583, + 5196.273968132095 + ], + [ + 5194.98533241583, + 5196.193695036924 + ], + [ + 5195.065605511, + 5196.113421941753 + ], + [ + 5195.386697891748, + 5196.113421941753 + ], + [ + 5195.466970987023, + 5196.193695036924 + ], + [ + 5195.466970987023, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5196.113421941753, + "max_x": 5194.824786225386, + "max_y": 5196.354241227348, + "center": [ + 5194.583966939843, + 5196.23383158455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5196.354241227348 + ], + [ + 5194.423420749466, + 5196.354241227348 + ], + [ + 5194.343147654299, + 5196.273968132095 + ], + [ + 5194.343147654299, + 5196.193695036924 + ], + [ + 5194.423420749466, + 5196.113421941753 + ], + [ + 5194.744513130316, + 5196.113421941753 + ], + [ + 5194.824786225386, + 5196.193695036924 + ], + [ + 5194.824786225386, + 5196.273968132095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5195.753222071036, + "max_x": 5199.320072960144, + "max_y": 5195.994041356581, + "center": [ + 5199.079253674579, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5195.994041356581 + ], + [ + 5198.918707484217, + 5195.994041356581 + ], + [ + 5198.838434389016, + 5195.913768261379 + ], + [ + 5198.838434389016, + 5195.833495166207 + ], + [ + 5198.918707484217, + 5195.753222071036 + ], + [ + 5199.239799864974, + 5195.753222071036 + ], + [ + 5199.320072960144, + 5195.833495166207 + ], + [ + 5199.320072960144, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DF9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5195.753222071036, + "max_x": 5198.677888198676, + "max_y": 5195.994041356581, + "center": [ + 5198.437068912994, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5195.994041356581 + ], + [ + 5198.276522722654, + 5195.994041356581 + ], + [ + 5198.196249627313, + 5195.913768261379 + ], + [ + 5198.196249627313, + 5195.833495166207 + ], + [ + 5198.276522722654, + 5195.753222071036 + ], + [ + 5198.597615103338, + 5195.753222071036 + ], + [ + 5198.677888198676, + 5195.833495166207 + ], + [ + 5198.677888198676, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5195.753222071036, + "max_x": 5198.035703436975, + "max_y": 5195.994041356581, + "center": [ + 5197.794884151432, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5195.994041356581 + ], + [ + 5197.634337961055, + 5195.994041356581 + ], + [ + 5197.554064865887, + 5195.913768261379 + ], + [ + 5197.554064865887, + 5195.833495166207 + ], + [ + 5197.634337961055, + 5195.753222071036 + ], + [ + 5197.955430341904, + 5195.753222071036 + ], + [ + 5198.035703436975, + 5195.833495166207 + ], + [ + 5198.035703436975, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5195.753222071036, + "max_x": 5197.393518675475, + "max_y": 5195.994041356581, + "center": [ + 5197.152699389862, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5195.994041356581 + ], + [ + 5196.992153199452, + 5195.994041356581 + ], + [ + 5196.911880104249, + 5195.913768261379 + ], + [ + 5196.911880104249, + 5195.833495166207 + ], + [ + 5196.992153199452, + 5195.753222071036 + ], + [ + 5197.313245580273, + 5195.753222071036 + ], + [ + 5197.393518675475, + 5195.833495166207 + ], + [ + 5197.393518675475, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5195.753222071036, + "max_x": 5196.751333913909, + "max_y": 5195.994041356581, + "center": [ + 5196.5105146283295, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5195.994041356581 + ], + [ + 5196.349968437887, + 5195.994041356581 + ], + [ + 5196.269695342749, + 5195.913768261379 + ], + [ + 5196.269695342749, + 5195.833495166207 + ], + [ + 5196.349968437887, + 5195.753222071036 + ], + [ + 5196.671060818766, + 5195.753222071036 + ], + [ + 5196.751333913909, + 5195.833495166207 + ], + [ + 5196.751333913909, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5195.753222071036, + "max_x": 5196.109149152306, + "max_y": 5195.994041356581, + "center": [ + 5195.868329866746, + 5195.873631713808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5195.994041356581 + ], + [ + 5195.707783676289, + 5195.994041356581 + ], + [ + 5195.627510581186, + 5195.913768261379 + ], + [ + 5195.627510581186, + 5195.833495166207 + ], + [ + 5195.707783676289, + 5195.753222071036 + ], + [ + 5196.028876057138, + 5195.753222071036 + ], + [ + 5196.109149152306, + 5195.833495166207 + ], + [ + 5196.109149152306, + 5195.913768261379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5195.712056465765, + "max_x": 5195.466970987023, + "max_y": 5195.952875751328, + "center": [ + 5195.226151701427, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5195.952875751328 + ], + [ + 5195.065605511, + 5195.952875751328 + ], + [ + 5194.98533241583, + 5195.872602656106 + ], + [ + 5194.98533241583, + 5195.792329560935 + ], + [ + 5195.065605511, + 5195.712056465765 + ], + [ + 5195.386697891748, + 5195.712056465765 + ], + [ + 5195.466970987023, + 5195.792329560935 + ], + [ + 5195.466970987023, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552DFF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5195.712056465765, + "max_x": 5194.824786225386, + "max_y": 5195.952875751328, + "center": [ + 5194.583966939843, + 5195.832466108546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5195.952875751328 + ], + [ + 5194.423420749466, + 5195.952875751328 + ], + [ + 5194.343147654299, + 5195.872602656106 + ], + [ + 5194.343147654299, + 5195.792329560935 + ], + [ + 5194.423420749466, + 5195.712056465765 + ], + [ + 5194.744513130316, + 5195.712056465765 + ], + [ + 5194.824786225386, + 5195.792329560935 + ], + [ + 5194.824786225386, + 5195.872602656106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E00", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5195.351856595015, + "max_x": 5199.320072960144, + "max_y": 5195.592675880612, + "center": [ + 5199.079253674579, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5195.592675880612 + ], + [ + 5198.918707484217, + 5195.592675880612 + ], + [ + 5198.838434389016, + 5195.51240278544 + ], + [ + 5198.838434389016, + 5195.43212969022 + ], + [ + 5198.918707484217, + 5195.351856595015 + ], + [ + 5199.239799864974, + 5195.351856595015 + ], + [ + 5199.320072960144, + 5195.43212969022 + ], + [ + 5199.320072960144, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E01", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5195.351856595015, + "max_x": 5198.677888198676, + "max_y": 5195.592675880612, + "center": [ + 5198.437068912994, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5195.592675880612 + ], + [ + 5198.276522722654, + 5195.592675880612 + ], + [ + 5198.196249627313, + 5195.51240278544 + ], + [ + 5198.196249627313, + 5195.43212969022 + ], + [ + 5198.276522722654, + 5195.351856595015 + ], + [ + 5198.597615103338, + 5195.351856595015 + ], + [ + 5198.677888198676, + 5195.43212969022 + ], + [ + 5198.677888198676, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E02", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5195.351856595015, + "max_x": 5198.035703436975, + "max_y": 5195.592675880612, + "center": [ + 5197.794884151432, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5195.592675880612 + ], + [ + 5197.634337961055, + 5195.592675880612 + ], + [ + 5197.554064865887, + 5195.51240278544 + ], + [ + 5197.554064865887, + 5195.43212969022 + ], + [ + 5197.634337961055, + 5195.351856595015 + ], + [ + 5197.955430341904, + 5195.351856595015 + ], + [ + 5198.035703436975, + 5195.43212969022 + ], + [ + 5198.035703436975, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E03", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5195.351856595015, + "max_x": 5197.393518675475, + "max_y": 5195.592675880612, + "center": [ + 5197.152699389862, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5195.592675880612 + ], + [ + 5196.992153199452, + 5195.592675880612 + ], + [ + 5196.911880104249, + 5195.51240278544 + ], + [ + 5196.911880104249, + 5195.43212969022 + ], + [ + 5196.992153199452, + 5195.351856595015 + ], + [ + 5197.313245580273, + 5195.351856595015 + ], + [ + 5197.393518675475, + 5195.43212969022 + ], + [ + 5197.393518675475, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E04", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5195.351856595015, + "max_x": 5196.751333913909, + "max_y": 5195.592675880612, + "center": [ + 5196.5105146283295, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5195.592675880612 + ], + [ + 5196.349968437887, + 5195.592675880612 + ], + [ + 5196.269695342749, + 5195.51240278544 + ], + [ + 5196.269695342749, + 5195.43212969022 + ], + [ + 5196.349968437887, + 5195.351856595015 + ], + [ + 5196.671060818766, + 5195.351856595015 + ], + [ + 5196.751333913909, + 5195.43212969022 + ], + [ + 5196.751333913909, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E05", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5195.351856595015, + "max_x": 5196.109149152306, + "max_y": 5195.592675880612, + "center": [ + 5195.868329866746, + 5195.4722662378135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5195.592675880612 + ], + [ + 5195.707783676289, + 5195.592675880612 + ], + [ + 5195.627510581186, + 5195.51240278544 + ], + [ + 5195.627510581186, + 5195.43212969022 + ], + [ + 5195.707783676289, + 5195.351856595015 + ], + [ + 5196.028876057138, + 5195.351856595015 + ], + [ + 5196.109149152306, + 5195.43212969022 + ], + [ + 5196.109149152306, + 5195.51240278544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E06", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5195.310690989794, + "max_x": 5195.466970987023, + "max_y": 5195.55151027534, + "center": [ + 5195.226151701427, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5195.55151027534 + ], + [ + 5195.065605511, + 5195.55151027534 + ], + [ + 5194.98533241583, + 5195.471237180137 + ], + [ + 5194.98533241583, + 5195.390964084964 + ], + [ + 5195.065605511, + 5195.310690989794 + ], + [ + 5195.386697891748, + 5195.310690989794 + ], + [ + 5195.466970987023, + 5195.390964084964 + ], + [ + 5195.466970987023, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E07", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5195.310690989794, + "max_x": 5194.824786225386, + "max_y": 5195.55151027534, + "center": [ + 5194.583966939843, + 5195.431100632567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5195.55151027534 + ], + [ + 5194.423420749466, + 5195.55151027534 + ], + [ + 5194.343147654299, + 5195.471237180137 + ], + [ + 5194.343147654299, + 5195.390964084964 + ], + [ + 5194.423420749466, + 5195.310690989794 + ], + [ + 5194.744513130316, + 5195.310690989794 + ], + [ + 5194.824786225386, + 5195.390964084964 + ], + [ + 5194.824786225386, + 5195.471237180137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E08", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5194.950491119028, + "max_x": 5199.320072960144, + "max_y": 5195.191310404624, + "center": [ + 5199.079253674579, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5195.191310404624 + ], + [ + 5198.918707484217, + 5195.191310404624 + ], + [ + 5198.838434389016, + 5195.111037309453 + ], + [ + 5198.838434389016, + 5195.030764214283 + ], + [ + 5198.918707484217, + 5194.950491119028 + ], + [ + 5199.239799864974, + 5194.950491119028 + ], + [ + 5199.320072960144, + 5195.030764214283 + ], + [ + 5199.320072960144, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E09", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5194.950491119028, + "max_x": 5198.677888198676, + "max_y": 5195.191310404624, + "center": [ + 5198.437068912994, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5195.191310404624 + ], + [ + 5198.276522722654, + 5195.191310404624 + ], + [ + 5198.196249627313, + 5195.111037309453 + ], + [ + 5198.196249627313, + 5195.030764214283 + ], + [ + 5198.276522722654, + 5194.950491119028 + ], + [ + 5198.597615103338, + 5194.950491119028 + ], + [ + 5198.677888198676, + 5195.030764214283 + ], + [ + 5198.677888198676, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5194.950491119028, + "max_x": 5198.035703436975, + "max_y": 5195.191310404624, + "center": [ + 5197.794884151432, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5195.191310404624 + ], + [ + 5197.634337961055, + 5195.191310404624 + ], + [ + 5197.554064865887, + 5195.111037309453 + ], + [ + 5197.554064865887, + 5195.030764214283 + ], + [ + 5197.634337961055, + 5194.950491119028 + ], + [ + 5197.955430341904, + 5194.950491119028 + ], + [ + 5198.035703436975, + 5195.030764214283 + ], + [ + 5198.035703436975, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5194.950491119028, + "max_x": 5197.393518675475, + "max_y": 5195.191310404624, + "center": [ + 5197.152699389862, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5195.191310404624 + ], + [ + 5196.992153199452, + 5195.191310404624 + ], + [ + 5196.911880104249, + 5195.111037309453 + ], + [ + 5196.911880104249, + 5195.030764214283 + ], + [ + 5196.992153199452, + 5194.950491119028 + ], + [ + 5197.313245580273, + 5194.950491119028 + ], + [ + 5197.393518675475, + 5195.030764214283 + ], + [ + 5197.393518675475, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5194.950491119028, + "max_x": 5196.751333913909, + "max_y": 5195.191310404624, + "center": [ + 5196.5105146283295, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5195.191310404624 + ], + [ + 5196.349968437887, + 5195.191310404624 + ], + [ + 5196.269695342749, + 5195.111037309453 + ], + [ + 5196.269695342749, + 5195.030764214283 + ], + [ + 5196.349968437887, + 5194.950491119028 + ], + [ + 5196.671060818766, + 5194.950491119028 + ], + [ + 5196.751333913909, + 5195.030764214283 + ], + [ + 5196.751333913909, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5194.950491119028, + "max_x": 5196.109149152306, + "max_y": 5195.191310404624, + "center": [ + 5195.868329866746, + 5195.070900761826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5195.191310404624 + ], + [ + 5195.707783676289, + 5195.191310404624 + ], + [ + 5195.627510581186, + 5195.111037309453 + ], + [ + 5195.627510581186, + 5195.030764214283 + ], + [ + 5195.707783676289, + 5194.950491119028 + ], + [ + 5196.028876057138, + 5194.950491119028 + ], + [ + 5196.109149152306, + 5195.030764214283 + ], + [ + 5196.109149152306, + 5195.111037309453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5194.909325513773, + "max_x": 5195.466970987023, + "max_y": 5195.15014479937, + "center": [ + 5195.226151701427, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5195.15014479937 + ], + [ + 5195.065605511, + 5195.15014479937 + ], + [ + 5194.98533241583, + 5195.069871704148 + ], + [ + 5194.98533241583, + 5194.989598608945 + ], + [ + 5195.065605511, + 5194.909325513773 + ], + [ + 5195.386697891748, + 5194.909325513773 + ], + [ + 5195.466970987023, + 5194.989598608945 + ], + [ + 5195.466970987023, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E0F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5194.909325513773, + "max_x": 5194.824786225386, + "max_y": 5195.15014479937, + "center": [ + 5194.583966939843, + 5195.029735156571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5195.15014479937 + ], + [ + 5194.423420749466, + 5195.15014479937 + ], + [ + 5194.343147654299, + 5195.069871704148 + ], + [ + 5194.343147654299, + 5194.989598608945 + ], + [ + 5194.423420749466, + 5194.909325513773 + ], + [ + 5194.744513130316, + 5194.909325513773 + ], + [ + 5194.824786225386, + 5194.989598608945 + ], + [ + 5194.824786225386, + 5195.069871704148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E10", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5194.549125643057, + "max_x": 5199.320072960144, + "max_y": 5194.789944928653, + "center": [ + 5199.079253674579, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5194.789944928653 + ], + [ + 5198.918707484217, + 5194.789944928653 + ], + [ + 5198.838434389016, + 5194.709671833482 + ], + [ + 5198.838434389016, + 5194.62939873831 + ], + [ + 5198.918707484217, + 5194.549125643057 + ], + [ + 5199.239799864974, + 5194.549125643057 + ], + [ + 5199.320072960144, + 5194.62939873831 + ], + [ + 5199.320072960144, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E11", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5194.549125643057, + "max_x": 5198.677888198676, + "max_y": 5194.789944928653, + "center": [ + 5198.437068912994, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5194.789944928653 + ], + [ + 5198.276522722654, + 5194.789944928653 + ], + [ + 5198.196249627313, + 5194.709671833482 + ], + [ + 5198.196249627313, + 5194.62939873831 + ], + [ + 5198.276522722654, + 5194.549125643057 + ], + [ + 5198.597615103338, + 5194.549125643057 + ], + [ + 5198.677888198676, + 5194.62939873831 + ], + [ + 5198.677888198676, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E12", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5194.549125643057, + "max_x": 5198.035703436975, + "max_y": 5194.789944928653, + "center": [ + 5197.794884151432, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5194.789944928653 + ], + [ + 5197.634337961055, + 5194.789944928653 + ], + [ + 5197.554064865887, + 5194.709671833482 + ], + [ + 5197.554064865887, + 5194.62939873831 + ], + [ + 5197.634337961055, + 5194.549125643057 + ], + [ + 5197.955430341904, + 5194.549125643057 + ], + [ + 5198.035703436975, + 5194.62939873831 + ], + [ + 5198.035703436975, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E13", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5194.549125643057, + "max_x": 5197.393518675475, + "max_y": 5194.789944928653, + "center": [ + 5197.152699389862, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5194.789944928653 + ], + [ + 5196.992153199452, + 5194.789944928653 + ], + [ + 5196.911880104249, + 5194.709671833482 + ], + [ + 5196.911880104249, + 5194.62939873831 + ], + [ + 5196.992153199452, + 5194.549125643057 + ], + [ + 5197.313245580273, + 5194.549125643057 + ], + [ + 5197.393518675475, + 5194.62939873831 + ], + [ + 5197.393518675475, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E14", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5194.549125643057, + "max_x": 5196.751333913909, + "max_y": 5194.789944928653, + "center": [ + 5196.5105146283295, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5194.789944928653 + ], + [ + 5196.349968437887, + 5194.789944928653 + ], + [ + 5196.269695342749, + 5194.709671833482 + ], + [ + 5196.269695342749, + 5194.62939873831 + ], + [ + 5196.349968437887, + 5194.549125643057 + ], + [ + 5196.671060818766, + 5194.549125643057 + ], + [ + 5196.751333913909, + 5194.62939873831 + ], + [ + 5196.751333913909, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E15", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5194.549125643057, + "max_x": 5196.109149152306, + "max_y": 5194.789944928653, + "center": [ + 5195.868329866746, + 5194.669535285855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5194.789944928653 + ], + [ + 5195.707783676289, + 5194.789944928653 + ], + [ + 5195.627510581186, + 5194.709671833482 + ], + [ + 5195.627510581186, + 5194.62939873831 + ], + [ + 5195.707783676289, + 5194.549125643057 + ], + [ + 5196.028876057138, + 5194.549125643057 + ], + [ + 5196.109149152306, + 5194.62939873831 + ], + [ + 5196.109149152306, + 5194.709671833482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E16", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5194.507960037785, + "max_x": 5195.466970987023, + "max_y": 5194.748779323383, + "center": [ + 5195.226151701427, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5194.748779323383 + ], + [ + 5195.065605511, + 5194.748779323383 + ], + [ + 5194.98533241583, + 5194.668506228176 + ], + [ + 5194.98533241583, + 5194.588233133007 + ], + [ + 5195.065605511, + 5194.507960037785 + ], + [ + 5195.386697891748, + 5194.507960037785 + ], + [ + 5195.466970987023, + 5194.588233133007 + ], + [ + 5195.466970987023, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E17", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5194.507960037785, + "max_x": 5194.824786225386, + "max_y": 5194.748779323383, + "center": [ + 5194.583966939843, + 5194.628369680584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5194.748779323383 + ], + [ + 5194.423420749466, + 5194.748779323383 + ], + [ + 5194.343147654299, + 5194.668506228176 + ], + [ + 5194.343147654299, + 5194.588233133007 + ], + [ + 5194.423420749466, + 5194.507960037785 + ], + [ + 5194.744513130316, + 5194.507960037785 + ], + [ + 5194.824786225386, + 5194.588233133007 + ], + [ + 5194.824786225386, + 5194.668506228176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E18", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.838434389016, + "min_y": 5194.147760167069, + "max_x": 5199.320072960144, + "max_y": 5194.388579452631, + "center": [ + 5199.079253674579, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.239799864974, + 5194.388579452631 + ], + [ + 5198.918707484217, + 5194.388579452631 + ], + [ + 5198.838434389016, + 5194.30830635746 + ], + [ + 5198.838434389016, + 5194.228033262291 + ], + [ + 5198.918707484217, + 5194.147760167069 + ], + [ + 5199.239799864974, + 5194.147760167069 + ], + [ + 5199.320072960144, + 5194.228033262291 + ], + [ + 5199.320072960144, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E19", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.196249627313, + "min_y": 5194.147760167069, + "max_x": 5198.677888198676, + "max_y": 5194.388579452631, + "center": [ + 5198.437068912994, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.597615103338, + 5194.388579452631 + ], + [ + 5198.276522722654, + 5194.388579452631 + ], + [ + 5198.196249627313, + 5194.30830635746 + ], + [ + 5198.196249627313, + 5194.228033262291 + ], + [ + 5198.276522722654, + 5194.147760167069 + ], + [ + 5198.597615103338, + 5194.147760167069 + ], + [ + 5198.677888198676, + 5194.228033262291 + ], + [ + 5198.677888198676, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5197.554064865887, + "min_y": 5194.147760167069, + "max_x": 5198.035703436975, + "max_y": 5194.388579452631, + "center": [ + 5197.794884151432, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.955430341904, + 5194.388579452631 + ], + [ + 5197.634337961055, + 5194.388579452631 + ], + [ + 5197.554064865887, + 5194.30830635746 + ], + [ + 5197.554064865887, + 5194.228033262291 + ], + [ + 5197.634337961055, + 5194.147760167069 + ], + [ + 5197.955430341904, + 5194.147760167069 + ], + [ + 5198.035703436975, + 5194.228033262291 + ], + [ + 5198.035703436975, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.911880104249, + "min_y": 5194.147760167069, + "max_x": 5197.393518675475, + "max_y": 5194.388579452631, + "center": [ + 5197.152699389862, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.313245580273, + 5194.388579452631 + ], + [ + 5196.992153199452, + 5194.388579452631 + ], + [ + 5196.911880104249, + 5194.30830635746 + ], + [ + 5196.911880104249, + 5194.228033262291 + ], + [ + 5196.992153199452, + 5194.147760167069 + ], + [ + 5197.313245580273, + 5194.147760167069 + ], + [ + 5197.393518675475, + 5194.228033262291 + ], + [ + 5197.393518675475, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5196.269695342749, + "min_y": 5194.147760167069, + "max_x": 5196.751333913909, + "max_y": 5194.388579452631, + "center": [ + 5196.5105146283295, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.671060818766, + 5194.388579452631 + ], + [ + 5196.349968437887, + 5194.388579452631 + ], + [ + 5196.269695342749, + 5194.30830635746 + ], + [ + 5196.269695342749, + 5194.228033262291 + ], + [ + 5196.349968437887, + 5194.147760167069 + ], + [ + 5196.671060818766, + 5194.147760167069 + ], + [ + 5196.751333913909, + 5194.228033262291 + ], + [ + 5196.751333913909, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5195.627510581186, + "min_y": 5194.147760167069, + "max_x": 5196.109149152306, + "max_y": 5194.388579452631, + "center": [ + 5195.868329866746, + 5194.2681698098495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.028876057138, + 5194.388579452631 + ], + [ + 5195.707783676289, + 5194.388579452631 + ], + [ + 5195.627510581186, + 5194.30830635746 + ], + [ + 5195.627510581186, + 5194.228033262291 + ], + [ + 5195.707783676289, + 5194.147760167069 + ], + [ + 5196.028876057138, + 5194.147760167069 + ], + [ + 5196.109149152306, + 5194.228033262291 + ], + [ + 5196.109149152306, + 5194.30830635746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.98533241583, + "min_y": 5194.106594561848, + "max_x": 5195.466970987023, + "max_y": 5194.347413847411, + "center": [ + 5195.226151701427, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5195.386697891748, + 5194.347413847411 + ], + [ + 5195.065605511, + 5194.347413847411 + ], + [ + 5194.98533241583, + 5194.267140752191 + ], + [ + 5194.98533241583, + 5194.186867657019 + ], + [ + 5195.065605511, + 5194.106594561848 + ], + [ + 5195.386697891748, + 5194.106594561848 + ], + [ + 5195.466970987023, + 5194.186867657019 + ], + [ + 5195.466970987023, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E1F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.343147654299, + "min_y": 5194.106594561848, + "max_x": 5194.824786225386, + "max_y": 5194.347413847411, + "center": [ + 5194.583966939843, + 5194.227004204629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.744513130316, + 5194.347413847411 + ], + [ + 5194.423420749466, + 5194.347413847411 + ], + [ + 5194.343147654299, + 5194.267140752191 + ], + [ + 5194.343147654299, + 5194.186867657019 + ], + [ + 5194.423420749466, + 5194.106594561848 + ], + [ + 5194.744513130316, + 5194.106594561848 + ], + [ + 5194.824786225386, + 5194.186867657019 + ], + [ + 5194.824786225386, + 5194.267140752191 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E20", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5194.9647930688625, + "min_y": 5186.369963467294, + "max_x": 5198.681159638523, + "max_y": 5190.086330036955, + "center": [ + 5196.822976353693, + 5188.228146752124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.822976353693, + 5188.228146752124 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E21", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5197.111959496348, + "min_y": 5186.437030740017, + "max_x": 5197.473188424731, + "max_y": 5186.7982596684, + "center": [ + 5197.29257396054, + 5186.617645204208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5197.29257396054, + 5186.617645204208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E22", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5196.1727642825645, + "min_y": 5186.437030740017, + "max_x": 5196.533993210947, + "max_y": 5186.7982596684, + "center": [ + 5196.353378746756, + 5186.617645204208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5196.353378746756, + 5186.617645204208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.277894714, + "min_y": 5187.010944132432, + "max_x": 5203.255621013399, + "max_y": 5187.010944132432, + "center": [ + 5202.766757863699, + 5187.010944132432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.255621013399, + 5187.010944132432 + ], + [ + 5202.277894714, + 5187.010944132432 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.013362020474, + "min_y": 5187.010944132432, + "max_x": 5201.876529237978, + "max_y": 5187.010944132432, + "center": [ + 5200.444945629226, + 5187.010944132432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.876529237978, + 5187.010944132432 + ], + [ + 5199.013362020474, + 5187.010944132432 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.271249755815, + "min_y": 5186.305322803416, + "max_x": 5204.271249755815, + "max_y": 5186.497978231941, + "center": [ + 5204.271249755815, + 5186.401650517679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.271249755815, + 5186.305322803416 + ], + [ + 5204.271249755815, + 5186.497978231941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.054512398838, + "min_y": 5186.369963467267, + "max_x": 5204.054512398838, + "max_y": 5186.9209356733, + "center": [ + 5204.054512398838, + 5186.645449570284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.054512398838, + 5186.9209356733 + ], + [ + 5204.054512398838, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.090635291721, + "min_y": 5186.406086360118, + "max_x": 5204.090635291721, + "max_y": 5186.9209356733, + "center": [ + 5204.090635291721, + 5186.663511016709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090635291721, + 5186.9209356733 + ], + [ + 5204.090635291721, + 5186.406086360118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.054512398838, + "min_y": 5186.369963467267, + "max_x": 5204.455877874796, + "max_y": 5186.369963467267, + "center": [ + 5204.255195136817, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.455877874796, + 5186.369963467267 + ], + [ + 5204.054512398838, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.090635291721, + "min_y": 5186.406086360118, + "max_x": 5204.455877874796, + "max_y": 5186.406086360118, + "center": [ + 5204.273256583258, + 5186.406086360118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.455877874796, + 5186.406086360118 + ], + [ + 5204.090635291721, + 5186.406086360118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.455877874796, + "min_y": 5186.369963467267, + "max_x": 5204.455877874796, + "max_y": 5186.406086360118, + "center": [ + 5204.455877874796, + 5186.388024913693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.455877874796, + 5186.406086360118 + ], + [ + 5204.455877874796, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.054512398838, + "min_y": 5186.610782752829, + "max_x": 5204.090635291721, + "max_y": 5186.610782752829, + "center": [ + 5204.072573845279, + 5186.610782752829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090635291721, + 5186.610782752829 + ], + [ + 5204.054512398838, + 5186.610782752829 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.454864044099, + "min_y": 5186.305322803416, + "max_x": 5199.454864044099, + "max_y": 5186.497978231941, + "center": [ + 5199.454864044099, + 5186.401650517679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.454864044099, + 5186.305322803416 + ], + [ + 5199.454864044099, + 5186.497978231941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.671601401142, + "min_y": 5186.369963467267, + "max_x": 5199.671601401142, + "max_y": 5187.172694419225, + "center": [ + 5199.671601401142, + 5186.771328943246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.671601401142, + 5187.172694419225 + ], + [ + 5199.671601401142, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.635478508259, + "min_y": 5186.406086360118, + "max_x": 5199.635478508259, + "max_y": 5187.172694419225, + "center": [ + 5199.635478508259, + 5186.789390389671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.635478508259, + 5187.172694419225 + ], + [ + 5199.635478508259, + 5186.406086360118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.27023592519, + "min_y": 5186.369963467267, + "max_x": 5199.671601401142, + "max_y": 5186.369963467267, + "center": [ + 5199.470918663166, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.27023592519, + 5186.369963467267 + ], + [ + 5199.671601401142, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.27023592519, + "min_y": 5186.406086360118, + "max_x": 5199.635478508259, + "max_y": 5186.406086360118, + "center": [ + 5199.452857216725, + 5186.406086360118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.27023592519, + 5186.406086360118 + ], + [ + 5199.635478508259, + 5186.406086360118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.27023592519, + "min_y": 5186.369963467267, + "max_x": 5199.27023592519, + "max_y": 5186.406086360118, + "center": [ + 5199.27023592519, + 5186.388024913693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.27023592519, + 5186.406086360118 + ], + [ + 5199.27023592519, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.635478508259, + "min_y": 5186.610782752829, + "max_x": 5199.671601401142, + "max_y": 5186.610782752829, + "center": [ + 5199.653539954701, + 5186.610782752829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.635478508259, + 5186.610782752829 + ], + [ + 5199.671601401142, + 5186.610782752829 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.635478508259, + "min_y": 5187.172694419225, + "max_x": 5199.671601401142, + "max_y": 5187.172694419225, + "center": [ + 5199.653539954701, + 5187.172694419225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.635478508259, + 5187.172694419225 + ], + [ + 5199.671601401142, + 5187.172694419225 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.928475305688, + "min_y": 5189.4810167644, + "max_x": 5200.032830329395, + "max_y": 5189.4810167644, + "center": [ + 5199.980652817541, + 5189.4810167644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.032830329395, + 5189.4810167644 + ], + [ + 5199.928475305688, + 5189.4810167644 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.928475305688, + "min_y": 5189.668716821502, + "max_x": 5200.032830329395, + "max_y": 5189.668716821502, + "center": [ + 5199.980652817541, + 5189.668716821502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.032830329395, + 5189.668716821502 + ], + [ + 5199.928475305688, + 5189.668716821502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.06578301704, + "min_y": 5189.574866792976, + "max_x": 5200.265570437086, + "max_y": 5189.574866792976, + "center": [ + 5199.665676727063, + 5189.574866792976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.265570437086, + 5189.574866792976 + ], + [ + 5199.06578301704, + 5189.574866792976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.569253204745, + "min_y": 5189.157446697937, + "max_x": 5199.569253204745, + "max_y": 5189.265012645503, + "center": [ + 5199.569253204745, + 5189.2112296717205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.569253204745, + 5189.265012645503 + ], + [ + 5199.569253204745, + 5189.157446697937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.340474883316, + "min_y": 5189.157446697937, + "max_x": 5199.340474883316, + "max_y": 5189.265012645503, + "center": [ + 5199.340474883316, + 5189.2112296717205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.340474883316, + 5189.265012645503 + ], + [ + 5199.340474883316, + 5189.157446697937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.340474883316, + "min_y": 5189.157446697937, + "max_x": 5199.569253204745, + "max_y": 5189.157446697937, + "center": [ + 5199.454864044031, + 5189.157446697937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.340474883316, + 5189.157446697937 + ], + [ + 5199.569253204745, + 5189.157446697937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.270745613383, + "min_y": 5189.20919737864, + "max_x": 5199.49850455816, + "max_y": 5189.436956323417, + "center": [ + 5199.384625085771, + 5189.323076851028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.384625085771, + 5189.323076851028 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.223966050997, + "min_y": 5189.305036348739, + "max_x": 5199.545284120546, + "max_y": 5189.626354418288, + "center": [ + 5199.384625085771, + 5189.465695383514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.384625085771, + 5189.465695383514 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.302345163124, + "min_y": 5189.460878997841, + "max_x": 5199.716453429815, + "max_y": 5189.460878997841, + "center": [ + 5199.50939929647, + 5189.460878997841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.716453429815, + 5189.460878997841 + ], + [ + 5199.302345163124, + 5189.460878997841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.302345163124, + "min_y": 5189.688854588146, + "max_x": 5199.716453429815, + "max_y": 5189.688854588146, + "center": [ + 5199.50939929647, + 5189.688854588146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.716453429815, + 5189.688854588146 + ], + [ + 5199.302345163124, + 5189.688854588146 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.336862594165, + "min_y": 5189.265012645503, + "max_x": 5199.572865493999, + "max_y": 5189.265012645503, + "center": [ + 5199.454864044083, + 5189.265012645503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.336862594165, + 5189.265012645503 + ], + [ + 5199.572865493999, + 5189.265012645503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.302345163124, + "min_y": 5189.460878997841, + "max_x": 5199.302345163124, + "max_y": 5189.688854588146, + "center": [ + 5199.302345163124, + 5189.574866792993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.302345163124, + 5189.688854588146 + ], + [ + 5199.302345163124, + 5189.460878997841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.234915763295, + "min_y": 5189.466498114438, + "max_x": 5199.234915763295, + "max_y": 5189.683235471465, + "center": [ + 5199.234915763295, + 5189.574866792951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.234915763295, + 5189.683235471465 + ], + [ + 5199.234915763295, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.110492465671, + "min_y": 5189.472518596612, + "max_x": 5199.110492465671, + "max_y": 5189.677214989372, + "center": [ + 5199.110492465671, + 5189.574866792992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.110492465671, + 5189.677214989372 + ], + [ + 5199.110492465671, + 5189.472518596612 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.110492465671, + "min_y": 5189.472518596612, + "max_x": 5199.234915763295, + "max_y": 5189.472518596612, + "center": [ + 5199.172704114483, + 5189.472518596612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.234915763295, + 5189.472518596612 + ], + [ + 5199.110492465671, + 5189.472518596612 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.234915763295, + "min_y": 5189.466498114438, + "max_x": 5199.302345163124, + "max_y": 5189.466498114438, + "center": [ + 5199.26863046321, + 5189.466498114438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.302345163124, + 5189.466498114438 + ], + [ + 5199.234915763295, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.314386127412, + "min_y": 5189.321203812139, + "max_x": 5199.314386127412, + "max_y": 5189.412715140637, + "center": [ + 5199.314386127412, + 5189.366959476389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.314386127412, + 5189.412715140637 + ], + [ + 5199.314386127412, + 5189.321203812139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.32883528466, + "min_y": 5189.265012645503, + "max_x": 5199.336862594165, + "max_y": 5189.27303995502, + "center": [ + 5199.3328489394125, + 5189.269026300261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.32883528466, + 5189.27303995502 + ], + [ + 5199.336862594165, + 5189.265012645503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.336862594165, + "min_y": 5189.265012645503, + "max_x": 5199.336862594165, + "max_y": 5189.312300240657, + "center": [ + 5199.336862594165, + 5189.28865644308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.336862594165, + 5189.312300240657 + ], + [ + 5199.336862594165, + 5189.265012645503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.32883528466, + "min_y": 5189.27303995502, + "max_x": 5199.32883528466, + "max_y": 5189.31503409603, + "center": [ + 5199.32883528466, + 5189.2940370255255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.32883528466, + 5189.31503409603 + ], + [ + 5199.32883528466, + 5189.27303995502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.352114482238, + "min_y": 5189.432217104283, + "max_x": 5199.352114482238, + "max_y": 5189.460878997841, + "center": [ + 5199.352114482238, + 5189.446548051063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.352114482238, + 5189.460878997841 + ], + [ + 5199.352114482238, + 5189.432217104283 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.110492465671, + "min_y": 5189.677214989372, + "max_x": 5199.234915763295, + "max_y": 5189.677214989372, + "center": [ + 5199.172704114483, + 5189.677214989372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.234915763295, + 5189.677214989372 + ], + [ + 5199.110492465671, + 5189.677214989372 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.234915763295, + "min_y": 5189.683235471465, + "max_x": 5199.302345163124, + "max_y": 5189.683235471465, + "center": [ + 5199.26863046321, + 5189.683235471465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.302345163124, + 5189.683235471465 + ], + [ + 5199.234915763295, + 5189.683235471465 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.454864044099, + "min_y": 5189.273737706113, + "max_x": 5199.454864044099, + "max_y": 5189.574866792976, + "center": [ + 5199.454864044099, + 5189.424302249545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.454864044099, + 5189.574866792976 + ], + [ + 5199.454864044099, + 5189.273737706113 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.411223529973, + "min_y": 5189.20919737864, + "max_x": 5199.638982474749, + "max_y": 5189.436956323417, + "center": [ + 5199.525103002361, + 5189.323076851028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.525103002361, + 5189.323076851028 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.364443967586, + "min_y": 5189.305036348739, + "max_x": 5199.685762037136, + "max_y": 5189.626354418288, + "center": [ + 5199.525103002361, + 5189.465695383514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.525103002361, + 5189.465695383514 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.378604603509, + "min_y": 5189.436797069222, + "max_x": 5199.531123484485, + "max_y": 5189.436797069222, + "center": [ + 5199.454864043997, + 5189.436797069222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.531123484485, + 5189.436797069222 + ], + [ + 5199.378604603509, + 5189.436797069222 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.378604603509, + "min_y": 5189.305149193121, + "max_x": 5199.531123484485, + "max_y": 5189.305149193121, + "center": [ + 5199.454864043997, + 5189.305149193121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.531123484485, + 5189.305149193121 + ], + [ + 5199.378604603509, + 5189.305149193121 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.454864044099, + "min_y": 5189.321203812139, + "max_x": 5199.454864044099, + "max_y": 5189.412715140637, + "center": [ + 5199.454864044099, + 5189.366959476389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.454864044099, + 5189.412715140637 + ], + [ + 5199.454864044099, + 5189.321203812139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.59534196059, + "min_y": 5189.321203812139, + "max_x": 5199.59534196059, + "max_y": 5189.412715140637, + "center": [ + 5199.59534196059, + 5189.366959476389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.59534196059, + 5189.412715140637 + ], + [ + 5199.59534196059, + 5189.321203812139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.572865493999, + "min_y": 5189.265012645503, + "max_x": 5199.580892803465, + "max_y": 5189.27303995502, + "center": [ + 5199.576879148732, + 5189.269026300261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.580892803465, + 5189.27303995502 + ], + [ + 5199.572865493999, + 5189.265012645503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.572865493999, + "min_y": 5189.265012645503, + "max_x": 5199.572865493999, + "max_y": 5189.312300240657, + "center": [ + 5199.572865493999, + 5189.28865644308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.572865493999, + 5189.312300240657 + ], + [ + 5199.572865493999, + 5189.265012645503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.580892803465, + "min_y": 5189.27303995502, + "max_x": 5199.580892803465, + "max_y": 5189.31503409603, + "center": [ + 5199.580892803465, + 5189.2940370255255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.580892803465, + 5189.31503409603 + ], + [ + 5199.580892803465, + 5189.27303995502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.557613605821, + "min_y": 5189.432217104283, + "max_x": 5199.557613605821, + "max_y": 5189.460878997841, + "center": [ + 5199.557613605821, + 5189.446548051063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.557613605821, + 5189.460878997841 + ], + [ + 5199.557613605821, + 5189.432217104283 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E56", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5199.527686164642, + "min_y": 5189.510648316805, + "max_x": 5199.638915828069, + "max_y": 5189.639085269096, + "center": [ + 5199.583300996355, + 5189.57486679295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.583300996303, + 5189.510648316805 + ], + [ + 5199.638915828069, + 5189.542757554874 + ], + [ + 5199.638915828069, + 5189.606976031027 + ], + [ + 5199.583300996303, + 5189.639085269096 + ], + [ + 5199.527686164642, + 5189.606976031027 + ], + [ + 5199.527686164642, + 5189.542757554874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.583300996303, + "min_y": 5189.522064296151, + "max_x": 5199.583300996303, + "max_y": 5189.62652199524, + "center": [ + 5199.583300996303, + 5189.574293145695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.583300996303, + 5189.62652199524 + ], + [ + 5199.583300996303, + 5189.522064296151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E58", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5199.548820733738, + "min_y": 5189.540386530411, + "max_x": 5199.617781258868, + "max_y": 5189.609347055541, + "center": [ + 5199.583300996303, + 5189.574866792976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.583300996303, + 5189.574866792976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.928475305688, + "min_y": 5189.460878997841, + "max_x": 5199.928475305688, + "max_y": 5189.688854588146, + "center": [ + 5199.928475305688, + 5189.574866792993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.688854588146 + ], + [ + 5199.928475305688, + 5189.460878997841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5199.242140341806, + "min_y": 5189.324013370488, + "max_x": 5199.743847186782, + "max_y": 5189.825720215464, + "center": [ + 5199.492993764294, + 5189.574866792976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.492993764294, + 5189.574866792976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.840174901051, + "min_y": 5189.466498114438, + "max_x": 5199.840174901051, + "max_y": 5189.683235471465, + "center": [ + 5199.840174901051, + 5189.574866792951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.840174901051, + 5189.683235471465 + ], + [ + 5199.840174901051, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.824120281983, + "min_y": 5189.466498114438, + "max_x": 5199.824120281983, + "max_y": 5189.683235471465, + "center": [ + 5199.824120281983, + 5189.574866792951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.824120281983, + 5189.683235471465 + ], + [ + 5199.824120281983, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.460878997841, + "max_x": 5199.848202210553, + "max_y": 5189.688854588146, + "center": [ + 5199.848202210553, + 5189.574866792993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.848202210553, + 5189.688854588146 + ], + [ + 5199.848202210553, + 5189.460878997841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.840174901051, + "min_y": 5189.460878997841, + "max_x": 5199.848202210553, + "max_y": 5189.466498114438, + "center": [ + 5199.844188555802, + 5189.4636885561395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.848202210553, + 5189.460878997841 + ], + [ + 5199.840174901051, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.824120281983, + "min_y": 5189.466498114438, + "max_x": 5199.840174901051, + "max_y": 5189.466498114438, + "center": [ + 5199.832147591516, + 5189.466498114438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.840174901051, + 5189.466498114438 + ], + [ + 5199.824120281983, + 5189.466498114438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.47051176922, + "max_x": 5199.928475305688, + "max_y": 5189.47051176922, + "center": [ + 5199.888338758121, + 5189.47051176922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.47051176922 + ], + [ + 5199.848202210553, + 5189.47051176922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.460878997841, + "max_x": 5199.928475305688, + "max_y": 5189.460878997841, + "center": [ + 5199.888338758121, + 5189.460878997841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.460878997841 + ], + [ + 5199.848202210553, + 5189.460878997841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.46810357635, + "max_x": 5199.928475305688, + "max_y": 5189.46810357635, + "center": [ + 5199.888338758121, + 5189.46810357635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.46810357635 + ], + [ + 5199.848202210553, + 5189.46810357635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.840174901051, + "min_y": 5189.683235471465, + "max_x": 5199.848202210553, + "max_y": 5189.688854588146, + "center": [ + 5199.844188555802, + 5189.686045029805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.848202210553, + 5189.688854588146 + ], + [ + 5199.840174901051, + 5189.683235471465 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.824120281983, + "min_y": 5189.683235471465, + "max_x": 5199.840174901051, + "max_y": 5189.683235471465, + "center": [ + 5199.832147591516, + 5189.683235471465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.840174901051, + 5189.683235471465 + ], + [ + 5199.824120281983, + 5189.683235471465 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.728092885226, + "min_y": 5189.662364466741, + "max_x": 5199.824120281983, + "max_y": 5189.662364466741, + "center": [ + 5199.776106583604, + 5189.662364466741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.824120281983, + 5189.662364466741 + ], + [ + 5199.728092885226, + 5189.662364466741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.728092885226, + "min_y": 5189.487369119211, + "max_x": 5199.824120281983, + "max_y": 5189.487369119211, + "center": [ + 5199.776106583604, + 5189.487369119211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.824120281983, + 5189.487369119211 + ], + [ + 5199.728092885226, + 5189.487369119211 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.566839483442, + "max_x": 5199.928475305688, + "max_y": 5189.566839483442, + "center": [ + 5199.888338758121, + 5189.566839483442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.566839483442 + ], + [ + 5199.848202210553, + 5189.566839483442 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.562825828708, + "max_x": 5199.928475305688, + "max_y": 5189.562825828708, + "center": [ + 5199.888338758121, + 5189.562825828708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.562825828708 + ], + [ + 5199.848202210553, + 5189.562825828708 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.548376671554, + "max_x": 5199.928475305688, + "max_y": 5189.548376671554, + "center": [ + 5199.888338758121, + 5189.548376671554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.548376671554 + ], + [ + 5199.848202210553, + 5189.548376671554 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.679221816764, + "max_x": 5199.928475305688, + "max_y": 5189.679221816764, + "center": [ + 5199.888338758121, + 5189.679221816764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.679221816764 + ], + [ + 5199.848202210553, + 5189.679221816764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.58289410246, + "max_x": 5199.928475305688, + "max_y": 5189.58289410246, + "center": [ + 5199.888338758121, + 5189.58289410246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.58289410246 + ], + [ + 5199.848202210553, + 5189.58289410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.586907757243, + "max_x": 5199.928475305688, + "max_y": 5189.586907757243, + "center": [ + 5199.888338758121, + 5189.586907757243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.586907757243 + ], + [ + 5199.848202210553, + 5189.586907757243 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.60135691438, + "max_x": 5199.928475305688, + "max_y": 5189.60135691438, + "center": [ + 5199.888338758121, + 5189.60135691438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.60135691438 + ], + [ + 5199.848202210553, + 5189.60135691438 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.605370569164, + "max_x": 5199.928475305688, + "max_y": 5189.605370569164, + "center": [ + 5199.888338758121, + 5189.605370569164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.605370569164 + ], + [ + 5199.848202210553, + 5189.605370569164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.619819726268, + "max_x": 5199.928475305688, + "max_y": 5189.619819726268, + "center": [ + 5199.888338758121, + 5189.619819726268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.619819726268 + ], + [ + 5199.848202210553, + 5189.619819726268 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.623030650128, + "max_x": 5199.928475305688, + "max_y": 5189.623030650128, + "center": [ + 5199.888338758121, + 5189.623030650128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.623030650128 + ], + [ + 5199.848202210553, + 5189.623030650128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.635874345319, + "max_x": 5199.928475305688, + "max_y": 5189.635874345319, + "center": [ + 5199.888338758121, + 5189.635874345319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.635874345319 + ], + [ + 5199.848202210553, + 5189.635874345319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.639085269096, + "max_x": 5199.928475305688, + "max_y": 5189.639085269096, + "center": [ + 5199.888338758121, + 5189.639085269096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.639085269096 + ], + [ + 5199.848202210553, + 5189.639085269096 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.650323502424, + "max_x": 5199.928475305688, + "max_y": 5189.650323502424, + "center": [ + 5199.888338758121, + 5189.650323502424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.650323502424 + ], + [ + 5199.848202210553, + 5189.650323502424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.652731695261, + "max_x": 5199.928475305688, + "max_y": 5189.652731695261, + "center": [ + 5199.888338758121, + 5189.652731695261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.652731695261 + ], + [ + 5199.848202210553, + 5189.652731695261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.663969928638, + "max_x": 5199.928475305688, + "max_y": 5189.663969928638, + "center": [ + 5199.888338758121, + 5189.663969928638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.663969928638 + ], + [ + 5199.848202210553, + 5189.663969928638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.666378121524, + "max_x": 5199.928475305688, + "max_y": 5189.666378121524, + "center": [ + 5199.888338758121, + 5189.666378121524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.666378121524 + ], + [ + 5199.848202210553, + 5189.666378121524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.688854588146, + "max_x": 5199.928475305688, + "max_y": 5189.688854588146, + "center": [ + 5199.888338758121, + 5189.688854588146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.688854588146 + ], + [ + 5199.848202210553, + 5189.688854588146 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.681630009601, + "max_x": 5199.928475305688, + "max_y": 5189.681630009601, + "center": [ + 5199.888338758121, + 5189.681630009601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.681630009601 + ], + [ + 5199.848202210553, + 5189.681630009601 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.54436301682, + "max_x": 5199.928475305688, + "max_y": 5189.54436301682, + "center": [ + 5199.888338758121, + 5189.54436301682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.54436301682 + ], + [ + 5199.848202210553, + 5189.54436301682 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.529913859633, + "max_x": 5199.928475305688, + "max_y": 5189.529913859633, + "center": [ + 5199.888338758121, + 5189.529913859633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.529913859633 + ], + [ + 5199.848202210553, + 5189.529913859633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.526702935856, + "max_x": 5199.928475305688, + "max_y": 5189.526702935856, + "center": [ + 5199.888338758121, + 5189.526702935856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.526702935856 + ], + [ + 5199.848202210553, + 5189.526702935856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.513859240616, + "max_x": 5199.928475305688, + "max_y": 5189.513859240616, + "center": [ + 5199.888338758121, + 5189.513859240616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.513859240616 + ], + [ + 5199.848202210553, + 5189.513859240616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.510648316805, + "max_x": 5199.928475305688, + "max_y": 5189.510648316805, + "center": [ + 5199.888338758121, + 5189.510648316805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.510648316805 + ], + [ + 5199.848202210553, + 5189.510648316805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.499410083478, + "max_x": 5199.928475305688, + "max_y": 5189.499410083478, + "center": [ + 5199.888338758121, + 5189.499410083478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.499410083478 + ], + [ + 5199.848202210553, + 5189.499410083478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.497001890641, + "max_x": 5199.928475305688, + "max_y": 5189.497001890641, + "center": [ + 5199.888338758121, + 5189.497001890641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.497001890641 + ], + [ + 5199.848202210553, + 5189.497001890641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.485763657264, + "max_x": 5199.928475305688, + "max_y": 5189.485763657264, + "center": [ + 5199.888338758121, + 5189.485763657264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.485763657264 + ], + [ + 5199.848202210553, + 5189.485763657264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.848202210553, + "min_y": 5189.483355464428, + "max_x": 5199.928475305688, + "max_y": 5189.483355464428, + "center": [ + 5199.888338758121, + 5189.483355464428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.928475305688, + 5189.483355464428 + ], + [ + 5199.848202210553, + 5189.483355464428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E82", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.024803019875, + "min_y": 5189.481016764397, + "max_x": 5200.040857638915, + "max_y": 5189.497071383437, + "center": [ + 5200.032830329395, + 5189.489044073917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.032830329395, + 5189.489044073917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.04085763896, + "min_y": 5189.654337157207, + "max_x": 5200.177321900874, + "max_y": 5189.654337157207, + "center": [ + 5200.109089769917, + 5189.654337157207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.177321900874, + 5189.654337157207 + ], + [ + 5200.04085763896, + 5189.654337157207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.04085763896, + "min_y": 5189.495396428696, + "max_x": 5200.177321900874, + "max_y": 5189.495396428696, + "center": [ + 5200.109089769917, + 5189.495396428696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.177321900874, + 5189.495396428696 + ], + [ + 5200.04085763896, + 5189.495396428696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.04085763896, + "min_y": 5189.489044073917, + "max_x": 5200.04085763896, + "max_y": 5189.660689512018, + "center": [ + 5200.04085763896, + 5189.574866792967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.04085763896, + 5189.660689512018 + ], + [ + 5200.04085763896, + 5189.489044073917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E86", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.024803019875, + "min_y": 5189.652662202498, + "max_x": 5200.040857638915, + "max_y": 5189.668716821538, + "center": [ + 5200.032830329395, + 5189.660689512018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.032830329395, + 5189.660689512018 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.185349210268, + "min_y": 5189.503423738212, + "max_x": 5200.185349210268, + "max_y": 5189.64630984769, + "center": [ + 5200.185349210268, + 5189.574866792951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.185349210268, + 5189.64630984769 + ], + [ + 5200.185349210268, + 5189.503423738212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E88", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.169294591354, + "min_y": 5189.63828253817, + "max_x": 5200.185349210394, + "max_y": 5189.65433715721, + "center": [ + 5200.177321900874, + 5189.64630984769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.177321900874, + 5189.64630984769 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E89", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.169294591354, + "min_y": 5189.495396428692, + "max_x": 5200.185349210394, + "max_y": 5189.511451047732, + "center": [ + 5200.177321900874, + 5189.503423738212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.177321900874, + 5189.503423738212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.013362020474, + "min_y": 5189.157446697937, + "max_x": 5200.33287761726, + "max_y": 5189.157446697937, + "center": [ + 5199.673119818867, + 5189.157446697937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.33287761726, + 5189.157446697937 + ], + [ + 5199.013362020474, + 5189.157446697937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.013362020474, + "min_y": 5187.010944132432, + "max_x": 5199.013362020474, + "max_y": 5189.157446697937, + "center": [ + 5199.013362020474, + 5188.084195415185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.013362020474, + 5189.157446697937 + ], + [ + 5199.013362020474, + 5187.010944132432 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5187.010944132432, + "max_x": 5199.013362020474, + "max_y": 5187.010944132432, + "center": [ + 5198.986904511633, + 5187.010944132432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.960447002792, + 5187.010944132432 + ], + [ + 5199.013362020474, + 5187.010944132432 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5189.157446697937, + "max_x": 5199.013362020474, + "max_y": 5189.157446697937, + "center": [ + 5198.986904511633, + 5189.157446697937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5198.960447002792, + 5189.157446697937 + ], + [ + 5199.013362020474, + 5189.157446697937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.814927576476, + "min_y": 5187.731007559342, + "max_x": 5207.814927576476, + "max_y": 5190.343481679441, + "center": [ + 5207.814927576476, + 5189.0372446193915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.814927576476, + 5190.343481679441 + ], + [ + 5207.814927576476, + 5187.731007559342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.961430142046, + "min_y": 5187.533923347578, + "max_x": 5209.961430142046, + "max_y": 5190.343481679441, + "center": [ + 5209.961430142046, + 5188.938702513509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.961430142046, + 5190.343481679441 + ], + [ + 5209.961430142046, + 5187.533923347578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.5394553986, + "min_y": 5191.186349179069, + "max_x": 5208.5394553986, + "max_y": 5191.828533940602, + "center": [ + 5208.5394553986, + 5191.507441559836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.5394553986, + 5191.828533940602 + ], + [ + 5208.5394553986, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.106181367341, + "min_y": 5191.186349179069, + "max_x": 5208.106181367341, + "max_y": 5191.828533940602, + "center": [ + 5208.106181367341, + 5191.507441559836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.106181367341, + 5191.828533940602 + ], + [ + 5208.106181367341, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.106181367341, + "min_y": 5191.828533940602, + "max_x": 5208.5394553986, + "max_y": 5191.828533940602, + "center": [ + 5208.322818382971, + 5191.828533940602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.5394553986, + 5191.828533940602 + ], + [ + 5208.106181367341, + 5191.828533940602 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.5795919462, + "min_y": 5190.921662485338, + "max_x": 5208.5795919462, + "max_y": 5191.186349179069, + "center": [ + 5208.5795919462, + 5191.054005832204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.5795919462, + 5191.186349179069 + ], + [ + 5208.5795919462, + 5190.921662485338 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.06604481964, + "min_y": 5190.769399581216, + "max_x": 5208.06604481964, + "max_y": 5191.186349179069, + "center": [ + 5208.06604481964, + 5190.977874380143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.06604481964, + 5191.186349179069 + ], + [ + 5208.06604481964, + 5190.769399581216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.06604481964, + "min_y": 5191.186349179069, + "max_x": 5208.5795919462, + "max_y": 5191.186349179069, + "center": [ + 5208.32281838292, + 5191.186349179069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.5795919462, + 5191.186349179069 + ], + [ + 5208.06604481964, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.814927576476, + "min_y": 5190.343481679441, + "max_x": 5209.961430142046, + "max_y": 5190.343481679441, + "center": [ + 5208.888178859261, + 5190.343481679441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.814927576476, + 5190.343481679441 + ], + [ + 5209.961430142046, + 5190.343481679441 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.961430142046, + "min_y": 5190.343481679441, + "max_x": 5209.961430142046, + "max_y": 5190.520088804763, + "center": [ + 5209.961430142046, + 5190.431785242102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.961430142046, + 5190.520088804763 + ], + [ + 5209.961430142046, + 5190.343481679441 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E98", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.56006466601, + "min_y": 5190.319406066773, + "max_x": 5209.96143014199, + "max_y": 5190.720771542753, + "center": [ + 5209.760747404, + 5190.520088804763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760747404, + 5190.520088804763 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E99", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.88135147932, + "min_y": 5186.93187513363, + "max_x": 5210.89500623913, + "max_y": 5190.94552989344, + "center": [ + 5208.888178859225, + 5188.938702513535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.888178859225, + 5188.938702513535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.814927576393, + "min_y": 5190.319406066773, + "max_x": 5208.216293052373, + "max_y": 5190.720771542753, + "center": [ + 5208.015610314383, + 5190.520088804763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.015610314383, + 5190.520088804763 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.814927576476, + "min_y": 5190.343481679441, + "max_x": 5207.814927576476, + "max_y": 5190.520088804763, + "center": [ + 5207.814927576476, + 5190.431785242102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.814927576476, + 5190.520088804763 + ], + [ + 5207.814927576476, + 5190.343481679441 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.236902319888, + "min_y": 5191.828533940602, + "max_x": 5209.670176351181, + "max_y": 5191.828533940602, + "center": [ + 5209.4535393355345, + 5191.828533940602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.236902319888, + 5191.828533940602 + ], + [ + 5209.670176351181, + 5191.828533940602 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.196765772247, + "min_y": 5191.186349179069, + "max_x": 5209.710312898749, + "max_y": 5191.186349179069, + "center": [ + 5209.453539335498, + 5191.186349179069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.196765772247, + 5191.186349179069 + ], + [ + 5209.710312898749, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.196765772247, + "min_y": 5190.921662485338, + "max_x": 5209.196765772247, + "max_y": 5191.186349179069, + "center": [ + 5209.196765772247, + 5191.054005832204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.196765772247, + 5191.186349179069 + ], + [ + 5209.196765772247, + 5190.921662485338 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552E9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.236902319888, + "min_y": 5191.186349179069, + "max_x": 5209.236902319888, + "max_y": 5191.828533940602, + "center": [ + 5209.236902319888, + 5191.507441559836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.236902319888, + 5191.828533940602 + ], + [ + 5209.236902319888, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.710312898749, + "min_y": 5190.769399581216, + "max_x": 5209.710312898749, + "max_y": 5191.186349179069, + "center": [ + 5209.710312898749, + 5190.977874380143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.710312898749, + 5191.186349179069 + ], + [ + 5209.710312898749, + 5190.769399581216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.670176351181, + "min_y": 5191.186349179069, + "max_x": 5209.670176351181, + "max_y": 5191.828533940602, + "center": [ + 5209.670176351181, + 5191.507441559836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.670176351181, + 5191.828533940602 + ], + [ + 5209.670176351181, + 5191.186349179069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.56006466601, + "min_y": 5187.156633484298, + "max_x": 5209.96143014199, + "max_y": 5187.557998960278, + "center": [ + 5209.760747404, + 5187.357316222288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760747404, + 5187.357316222288 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.961430142046, + "min_y": 5187.357316222288, + "max_x": 5209.961430142046, + "max_y": 5187.533923347578, + "center": [ + 5209.961430142046, + 5187.445619784933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.961430142046, + 5187.357316222288 + ], + [ + 5209.961430142046, + 5187.533923347578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.354205399322, + "min_y": 5186.369963467267, + "max_x": 5209.354205399322, + "max_y": 5186.994086782407, + "center": [ + 5209.354205399322, + 5186.682025124837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.354205399322, + 5186.369963467267 + ], + [ + 5209.354205399322, + 5186.994086782407 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395916523089, + "min_y": 5186.418127324386, + "max_x": 5209.395916523089, + "max_y": 5186.994086782407, + "center": [ + 5209.395916523089, + 5186.706107053396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395916523089, + 5186.418127324386 + ], + [ + 5209.395916523089, + 5186.994086782407 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.736557367454, + "min_y": 5186.369963467267, + "max_x": 5209.736557367454, + "max_y": 5186.418127324386, + "center": [ + 5209.736557367454, + 5186.394045395826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.736557367454, + 5186.369963467267 + ], + [ + 5209.736557367454, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.856967010296, + "min_y": 5186.369963467267, + "max_x": 5209.856967010296, + "max_y": 5186.418127324386, + "center": [ + 5209.856967010296, + 5186.394045395826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.856967010296, + 5186.369963467267 + ], + [ + 5209.856967010296, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.474615042165, + "min_y": 5186.418127324386, + "max_x": 5209.474615042165, + "max_y": 5186.959970716948, + "center": [ + 5209.474615042165, + 5186.689049020667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.474615042165, + 5186.418127324386 + ], + [ + 5209.474615042165, + 5186.959970716948 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.516326165827, + "min_y": 5186.418127324386, + "max_x": 5209.516326165827, + "max_y": 5186.959970716948, + "center": [ + 5209.516326165827, + 5186.689049020667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.516326165827, + 5186.418127324386 + ], + [ + 5209.516326165827, + 5186.959970716948 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.354205399322, + "min_y": 5186.369963467267, + "max_x": 5209.856967010296, + "max_y": 5186.369963467267, + "center": [ + 5209.605586204809, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.354205399322, + 5186.369963467267 + ], + [ + 5209.856967010296, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395916523089, + "min_y": 5186.418127324386, + "max_x": 5209.856967010296, + "max_y": 5186.418127324386, + "center": [ + 5209.626441766693, + 5186.418127324386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395916523089, + 5186.418127324386 + ], + [ + 5209.856967010296, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.650773255555, + "min_y": 5186.325054984504, + "max_x": 5209.650773255555, + "max_y": 5186.468680236696, + "center": [ + 5209.650773255555, + 5186.3968676106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.650773255555, + 5186.325054984504 + ], + [ + 5209.650773255555, + 5186.468680236696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.88135147932, + "min_y": 5186.93187513363, + "max_x": 5210.89500623913, + "max_y": 5190.94552989344, + "center": [ + 5208.888178859225, + 5188.938702513535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.888178859225, + 5188.938702513535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.919390708086, + "min_y": 5186.418127324386, + "max_x": 5208.380441195335, + "max_y": 5186.418127324386, + "center": [ + 5208.149915951711, + 5186.418127324386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.380441195335, + 5186.418127324386 + ], + [ + 5207.919390708086, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.919390708086, + "min_y": 5186.369963467267, + "max_x": 5208.422152319061, + "max_y": 5186.369963467267, + "center": [ + 5208.1707715135735, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.422152319061, + 5186.369963467267 + ], + [ + 5207.919390708086, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.125584462829, + "min_y": 5186.325054984504, + "max_x": 5208.125584462829, + "max_y": 5186.468680236696, + "center": [ + 5208.125584462829, + 5186.3968676106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.125584462829, + 5186.325054984504 + ], + [ + 5208.125584462829, + 5186.468680236696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.919390708086, + "min_y": 5186.369963467267, + "max_x": 5207.919390708086, + "max_y": 5186.418127324386, + "center": [ + 5207.919390708086, + 5186.394045395826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.919390708086, + 5186.369963467267 + ], + [ + 5207.919390708086, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.039800350928, + "min_y": 5186.369963467267, + "max_x": 5208.039800350928, + "max_y": 5186.418127324386, + "center": [ + 5208.039800350928, + 5186.394045395826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.039800350928, + 5186.369963467267 + ], + [ + 5208.039800350928, + 5186.418127324386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.301742676323, + "min_y": 5186.418127324386, + "max_x": 5208.301742676323, + "max_y": 5186.928768913873, + "center": [ + 5208.301742676323, + 5186.673448119129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.301742676323, + 5186.418127324386 + ], + [ + 5208.301742676323, + 5186.928768913873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.380441195335, + "min_y": 5186.418127324386, + "max_x": 5208.380441195335, + "max_y": 5186.986628364842, + "center": [ + 5208.380441195335, + 5186.702377844614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.380441195335, + 5186.418127324386 + ], + [ + 5208.380441195335, + 5186.986628364842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.422152319061, + "min_y": 5186.369963467267, + "max_x": 5208.422152319061, + "max_y": 5186.986628364842, + "center": [ + 5208.422152319061, + 5186.678295916054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.422152319061, + 5186.369963467267 + ], + [ + 5208.422152319061, + 5186.986628364842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.260031552491, + "min_y": 5186.418127324386, + "max_x": 5208.260031552491, + "max_y": 5186.872501822552, + "center": [ + 5208.260031552491, + 5186.645314573469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.260031552491, + 5186.418127324386 + ], + [ + 5208.260031552491, + 5186.872501822552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.144524455125, + "min_y": 5187.533923347578, + "max_x": 5208.605117769995, + "max_y": 5187.533923347578, + "center": [ + 5208.37482111256, + 5187.533923347578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.144524455125, + 5187.533923347578 + ], + [ + 5208.605117769995, + 5187.533923347578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.167029436259, + "min_y": 5187.533923347578, + "max_x": 5209.961430142046, + "max_y": 5187.533923347578, + "center": [ + 5209.564229789153, + 5187.533923347578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.167029436259, + 5187.533923347578 + ], + [ + 5209.961430142046, + 5187.533923347578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EB9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.548807900245, + "min_y": 5189.825938715356, + "max_x": 5206.766766383349, + "max_y": 5191.688912984293, + "center": [ + 5205.657787141798, + 5190.757425849824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.562669955384, + 5189.825938715356 + ], + [ + 5206.365400907323, + 5189.825938715356 + ], + [ + 5206.766766383349, + 5190.227304191344 + ], + [ + 5206.766766383349, + 5191.287547508305 + ], + [ + 5206.365400907323, + 5191.688912984293 + ], + [ + 5204.548807900245, + 5191.688912984293 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5199.756778983147, + "min_y": 5191.688912984293, + "max_x": 5201.923877686906, + "max_y": 5191.688912984293, + "center": [ + 5200.840328335027, + 5191.688912984293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.688912984293 + ], + [ + 5199.756778983147, + 5191.688912984293 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5191.688912984293, + "max_x": 5199.307249649959, + "max_y": 5191.688912984293, + "center": [ + 5199.133848326375, + 5191.688912984293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.307249649959, + 5191.688912984293 + ], + [ + 5198.960447002792, + 5191.688912984293 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5191.548435067701, + "max_x": 5199.307249649959, + "max_y": 5191.548435067701, + "center": [ + 5199.133848326375, + 5191.548435067701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.307249649959, + 5191.548435067701 + ], + [ + 5198.960447002792, + 5191.548435067701 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5191.829390900884, + "max_x": 5199.307249649959, + "max_y": 5191.829390900884, + "center": [ + 5199.133848326375, + 5191.829390900884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.307249649959, + 5191.829390900884 + ], + [ + 5198.960447002792, + 5191.829390900884 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.548807900245, + "min_y": 5189.938321048629, + "max_x": 5206.654384050071, + "max_y": 5191.57653065102, + "center": [ + 5205.6015959751585, + 5190.757425849824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.562669955384, + 5189.938321048629 + ], + [ + 5206.365400907323, + 5189.938321048629 + ], + [ + 5206.654384050071, + 5190.227304191344 + ], + [ + 5206.654384050071, + 5191.287547508305 + ], + [ + 5206.365400907323, + 5191.57653065102 + ], + [ + 5204.548807900245, + 5191.57653065102 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EBF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5199.756778983147, + "min_y": 5191.57653065102, + "max_x": 5201.923877686906, + "max_y": 5191.57653065102, + "center": [ + 5200.840328335027, + 5191.57653065102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.57653065102 + ], + [ + 5199.756778983147, + 5191.57653065102 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.548807900245, + "min_y": 5189.713556382051, + "max_x": 5206.879148716618, + "max_y": 5191.801295317597, + "center": [ + 5205.713978308431, + 5190.757425849824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.562669955384, + 5189.713556382051 + ], + [ + 5206.365400907323, + 5189.713556382051 + ], + [ + 5206.879148716618, + 5190.227304191344 + ], + [ + 5206.879148716618, + 5191.287547508305 + ], + [ + 5206.365400907323, + 5191.801295317597 + ], + [ + 5204.548807900245, + 5191.801295317597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5199.756778983147, + "min_y": 5191.801295317597, + "max_x": 5201.923877686906, + "max_y": 5191.801295317597, + "center": [ + 5200.840328335027, + 5191.801295317597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.801295317597 + ], + [ + 5199.756778983147, + 5191.801295317597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.379231938241, + "min_y": 5193.032630368532, + "max_x": 5194.379231938241, + "max_y": 5193.310375277903, + "center": [ + 5194.379231938241, + 5193.171502823217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.379231938241, + 5193.032630368532 + ], + [ + 5194.379231938241, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.238754021715, + "min_y": 5193.032630368532, + "max_x": 5194.238754021715, + "max_y": 5193.310375277903, + "center": [ + 5194.238754021715, + 5193.171502823217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.238754021715, + 5193.032630368532 + ], + [ + 5194.238754021715, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5194.519709854898, + "min_y": 5193.032630368532, + "max_x": 5194.519709854898, + "max_y": 5193.310375277903, + "center": [ + 5194.519709854898, + 5193.171502823217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.519709854898, + 5193.032630368532 + ], + [ + 5194.519709854898, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5189.574866792976, + "max_x": 5199.110492465671, + "max_y": 5189.574866792976, + "center": [ + 5199.035469734232, + 5189.574866792976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.110492465671, + 5189.574866792976 + ], + [ + 5198.960447002792, + 5189.574866792976 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5193.456219588213, + "min_y": 5189.574866792976, + "max_x": 5194.038302681309, + "max_y": 5193.310375277903, + "center": [ + 5193.74726113476, + 5191.4426210354395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5189.574866792976 + ], + [ + 5193.857585064133, + 5189.574866792976 + ], + [ + 5193.456219588213, + 5189.976232268946 + ], + [ + 5193.456219588213, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5189.486566388239, + "max_x": 5199.110492465671, + "max_y": 5189.486566388239, + "center": [ + 5199.035469734232, + 5189.486566388239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.110492465671, + 5189.486566388239 + ], + [ + 5198.960447002792, + 5189.486566388239 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5193.367919183472, + "min_y": 5189.486566388239, + "max_x": 5194.038302681309, + "max_y": 5193.310375277903, + "center": [ + 5193.703110932391, + 5191.398470833072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5189.486566388239 + ], + [ + 5193.857585064133, + 5189.486566388239 + ], + [ + 5193.367919183472, + 5189.976232268946 + ], + [ + 5193.367919183472, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EC9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5198.960447002792, + "min_y": 5189.663167197664, + "max_x": 5199.110492465671, + "max_y": 5189.663167197664, + "center": [ + 5199.035469734232, + 5189.663167197664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.110492465671, + 5189.663167197664 + ], + [ + 5198.960447002792, + 5189.663167197664 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5193.544519992952, + "min_y": 5189.663167197664, + "max_x": 5194.038302681309, + "max_y": 5193.310375277903, + "center": [ + 5193.79141133713, + 5191.486771237784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5194.038302681309, + 5189.663167197664 + ], + [ + 5193.857585064133, + 5189.663167197664 + ], + [ + 5193.544519992952, + 5189.976232268946 + ], + [ + 5193.544519992952, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.24789818794, + "min_y": 5191.828533940602, + "max_x": 5208.322818382985, + "max_y": 5192.402488273144, + "center": [ + 5208.285358285462, + 5192.115511106873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322818382985, + 5191.828533940602 + ], + [ + 5208.322818382985, + 5192.168976552157 + ], + [ + 5208.24789818794, + 5192.402488273144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52331783601, + "min_y": 5192.570342028144, + "max_x": 5207.115185895151, + "max_y": 5192.570342028144, + "center": [ + 5206.819251865581, + 5192.570342028144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.115185895151, + 5192.570342028144 + ], + [ + 5206.52331783601, + 5192.570342028144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.027239890747, + "min_y": 5191.808198496318, + "max_x": 5202.317007647352, + "max_y": 5192.570342028144, + "center": [ + 5201.672123769049, + 5192.189270262232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.570342028144 + ], + [ + 5201.428605366666, + 5192.570342028144 + ], + [ + 5201.027239890747, + 5192.168976552157 + ], + [ + 5201.027239890747, + 5191.808198496318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.027239890747, + "min_y": 5190.400774349999, + "max_x": 5201.027239890747, + "max_y": 5191.58343382974, + "center": [ + 5201.027239890747, + 5190.99210408987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.027239890747, + 5191.58343382974 + ], + [ + 5201.027239890747, + 5190.400774349999 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ECF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52331783601, + "min_y": 5191.828533940602, + "max_x": 5208.106081025942, + "max_y": 5192.353604671081, + "center": [ + 5207.314699430976, + 5192.091069305841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.106081025942, + 5191.828533940602 + ], + [ + 5208.106081025942, + 5192.168976552157 + ], + [ + 5207.921452906969, + 5192.353604671081 + ], + [ + 5206.52331783601, + 5192.353604671081 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.243977247823, + "min_y": 5191.808198496318, + "max_x": 5202.317007647352, + "max_y": 5192.353604671081, + "center": [ + 5201.780492447588, + 5192.080901583699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.353604671081 + ], + [ + 5201.428605366666, + 5192.353604671081 + ], + [ + 5201.243977247823, + 5192.168976552157 + ], + [ + 5201.243977247823, + 5191.808198496318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5201.243977247823, + "min_y": 5190.420842623834, + "max_x": 5201.243977247823, + "max_y": 5191.58343382974, + "center": [ + 5201.243977247823, + 5191.002138226787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.243977247823, + 5191.58343382974 + ], + [ + 5201.243977247823, + 5190.420842623834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.493749498156, + "min_y": 5191.828533940602, + "max_x": 5208.539555739964, + "max_y": 5192.402488273144, + "center": [ + 5208.516652619061, + 5192.115511106873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.539555739964, + 5191.828533940602 + ], + [ + 5208.539555739964, + 5192.168976552157 + ], + [ + 5208.493749498156, + 5192.402488273144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5206.52331783601, + "min_y": 5192.787079385155, + "max_x": 5207.111975442512, + "max_y": 5192.787079385155, + "center": [ + 5206.8176466392615, + 5192.787079385155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.111975442512, + 5192.787079385155 + ], + [ + 5206.52331783601, + 5192.787079385155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.810502533769, + "min_y": 5191.808198496318, + "max_x": 5202.317007647352, + "max_y": 5192.787079385155, + "center": [ + 5201.56375509056, + 5192.297638940737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.787079385155 + ], + [ + 5201.428605366666, + 5192.787079385155 + ], + [ + 5200.810502533769, + 5192.168976552157 + ], + [ + 5200.810502533769, + 5191.808198496318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.810502533769, + "min_y": 5190.420842623834, + "max_x": 5200.810502533769, + "max_y": 5191.58343382974, + "center": [ + 5200.810502533769, + 5191.002138226787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.810502533769, + 5191.58343382974 + ], + [ + 5200.810502533769, + 5190.420842623834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.808887288606, + "min_y": 5192.899461718477, + "max_x": 5205.969433479147, + "max_y": 5192.899461718477, + "center": [ + 5205.8891603838765, + 5192.899461718477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.969433479147, + 5192.899461718477 + ], + [ + 5205.808887288606, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.808887288606, + "min_y": 5192.241222337809, + "max_x": 5205.969433479147, + "max_y": 5192.241222337809, + "center": [ + 5205.8891603838765, + 5192.241222337809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.969433479147, + 5192.241222337809 + ], + [ + 5205.808887288606, + 5192.241222337809 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.52331783601, + "min_y": 5192.349591016331, + "max_x": 5206.52331783601, + "max_y": 5192.791093039904, + "center": [ + 5206.52331783601, + 5192.570342028117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.52331783601, + 5192.349591016331 + ], + [ + 5206.52331783601, + 5192.791093039904 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552ED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.969433479147, + "min_y": 5192.241222337809, + "max_x": 5205.969433479147, + "max_y": 5192.899461718477, + "center": [ + 5205.969433479147, + 5192.5703420281425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.969433479147, + 5192.241222337809 + ], + [ + 5205.969433479147, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.969433479147, + "min_y": 5192.349591016331, + "max_x": 5206.52331783601, + "max_y": 5192.349591016331, + "center": [ + 5206.246375657578, + 5192.349591016331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.52331783601, + 5192.349591016331 + ], + [ + 5205.969433479147, + 5192.349591016331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.969433479147, + "min_y": 5192.791093039904, + "max_x": 5206.52331783601, + "max_y": 5192.791093039904, + "center": [ + 5206.246375657578, + 5192.791093039904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.52331783601, + 5192.791093039904 + ], + [ + 5205.969433479147, + 5192.791093039904 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.03143819466, + "min_y": 5192.25727695681, + "max_x": 5205.808887288606, + "max_y": 5192.25727695681, + "center": [ + 5204.420162741633, + 5192.25727695681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.808887288606, + 5192.25727695681 + ], + [ + 5203.03143819466, + 5192.25727695681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.03143819466, + "min_y": 5192.883407099426, + "max_x": 5205.808887288606, + "max_y": 5192.883407099426, + "center": [ + 5204.420162741633, + 5192.883407099426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.808887288606, + 5192.883407099426 + ], + [ + 5203.03143819466, + 5192.883407099426 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.808887288606, + "min_y": 5192.241222337809, + "max_x": 5205.808887288606, + "max_y": 5192.899461718477, + "center": [ + 5205.808887288606, + 5192.5703420281425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.808887288606, + 5192.241222337809 + ], + [ + 5205.808887288606, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.317007647352, + "min_y": 5192.349591016331, + "max_x": 5202.317007647352, + "max_y": 5192.791093039904, + "center": [ + 5202.317007647352, + 5192.570342028117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.349591016331 + ], + [ + 5202.317007647352, + 5192.791093039904 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.87089200432, + "min_y": 5192.241222337809, + "max_x": 5202.87089200432, + "max_y": 5192.899461718477, + "center": [ + 5202.87089200432, + 5192.5703420281425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.87089200432, + 5192.241222337809 + ], + [ + 5202.87089200432, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.03143819466, + "min_y": 5192.241222337809, + "max_x": 5203.03143819466, + "max_y": 5192.899461718477, + "center": [ + 5203.03143819466, + 5192.5703420281425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.03143819466, + 5192.241222337809 + ], + [ + 5203.03143819466, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.87089200432, + "min_y": 5192.241222337809, + "max_x": 5203.03143819466, + "max_y": 5192.241222337809, + "center": [ + 5202.95116509949, + 5192.241222337809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.03143819466, + 5192.241222337809 + ], + [ + 5202.87089200432, + 5192.241222337809 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.03143819466, + "min_y": 5192.25727695681, + "max_x": 5203.035714632922, + "max_y": 5192.261553395092, + "center": [ + 5203.033576413791, + 5192.259415175951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.035714632922, + 5192.25727695681 + ], + [ + 5203.03143819466, + 5192.261553395092 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.317007647352, + "min_y": 5192.349591016331, + "max_x": 5202.87089200432, + "max_y": 5192.349591016331, + "center": [ + 5202.593949825836, + 5192.349591016331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.349591016331 + ], + [ + 5202.87089200432, + 5192.349591016331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.87089200432, + "min_y": 5192.899461718477, + "max_x": 5203.03143819466, + "max_y": 5192.899461718477, + "center": [ + 5202.95116509949, + 5192.899461718477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.03143819466, + 5192.899461718477 + ], + [ + 5202.87089200432, + 5192.899461718477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.317007647352, + "min_y": 5192.791093039904, + "max_x": 5202.87089200432, + "max_y": 5192.791093039904, + "center": [ + 5202.593949825836, + 5192.791093039904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.317007647352, + 5192.791093039904 + ], + [ + 5202.87089200432, + 5192.791093039904 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.437625496298, + "min_y": 5191.50027121055, + "max_x": 5204.035060090884, + "max_y": 5191.50027121055, + "center": [ + 5203.236342793591, + 5191.50027121055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.035060090884, + 5191.50027121055 + ], + [ + 5202.437625496298, + 5191.50027121055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.437625496298, + "min_y": 5191.877554758036, + "max_x": 5204.035060090884, + "max_y": 5191.877554758036, + "center": [ + 5203.236342793591, + 5191.877554758036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.035060090884, + 5191.877554758036 + ], + [ + 5202.437625496298, + 5191.877554758036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.179551662157, + "min_y": 5191.484216591532, + "max_x": 5204.179551662157, + "max_y": 5191.893609377087, + "center": [ + 5204.179551662157, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.179551662157, + 5191.484216591532 + ], + [ + 5204.179551662157, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.548807900245, + "min_y": 5191.572516996236, + "max_x": 5204.548807900245, + "max_y": 5191.805308972348, + "center": [ + 5204.548807900245, + 5191.688912984292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.548807900245, + 5191.572516996236 + ], + [ + 5204.548807900245, + 5191.805308972348 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.035060090884, + "min_y": 5191.484216591532, + "max_x": 5204.035060090884, + "max_y": 5191.893609377087, + "center": [ + 5204.035060090884, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.035060090884, + 5191.484216591532 + ], + [ + 5204.035060090884, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.179551662157, + "min_y": 5191.572516996236, + "max_x": 5204.548807900245, + "max_y": 5191.572516996236, + "center": [ + 5204.3641797812015, + 5191.572516996236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.548807900245, + 5191.572516996236 + ], + [ + 5204.179551662157, + 5191.572516996236 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.035060090884, + "min_y": 5191.484216591532, + "max_x": 5204.179551662157, + "max_y": 5191.484216591532, + "center": [ + 5204.1073058765205, + 5191.484216591532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.179551662157, + 5191.484216591532 + ], + [ + 5204.035060090884, + 5191.484216591532 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.179551662157, + "min_y": 5191.805308972348, + "max_x": 5204.548807900245, + "max_y": 5191.805308972348, + "center": [ + 5204.3641797812015, + 5191.805308972348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.548807900245, + 5191.805308972348 + ], + [ + 5204.179551662157, + 5191.805308972348 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.035060090884, + "min_y": 5191.893609377087, + "max_x": 5204.179551662157, + "max_y": 5191.893609377087, + "center": [ + 5204.1073058765205, + 5191.893609377087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.179551662157, + 5191.893609377087 + ], + [ + 5204.035060090884, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.293133924889, + "min_y": 5191.484216591532, + "max_x": 5202.293133924889, + "max_y": 5191.893609377087, + "center": [ + 5202.293133924889, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.293133924889, + 5191.484216591532 + ], + [ + 5202.293133924889, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.923877686906, + "min_y": 5191.572516996236, + "max_x": 5201.923877686906, + "max_y": 5191.805308972348, + "center": [ + 5201.923877686906, + 5191.688912984292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.572516996236 + ], + [ + 5201.923877686906, + 5191.805308972348 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.437625496298, + "min_y": 5191.484216591532, + "max_x": 5202.437625496298, + "max_y": 5191.893609377087, + "center": [ + 5202.437625496298, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.437625496298, + 5191.484216591532 + ], + [ + 5202.437625496298, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.923877686906, + "min_y": 5191.572516996236, + "max_x": 5202.293133924889, + "max_y": 5191.572516996236, + "center": [ + 5202.108505805898, + 5191.572516996236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.572516996236 + ], + [ + 5202.293133924889, + 5191.572516996236 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.293133924889, + "min_y": 5191.484216591532, + "max_x": 5202.437625496298, + "max_y": 5191.484216591532, + "center": [ + 5202.3653797105935, + 5191.484216591532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.437625496298, + 5191.484216591532 + ], + [ + 5202.293133924889, + 5191.484216591532 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.437625496298, + "min_y": 5191.50027121055, + "max_x": 5202.441901934396, + "max_y": 5191.50454764883, + "center": [ + 5202.439763715347, + 5191.50240942969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.441901934396, + 5191.50027121055 + ], + [ + 5202.437625496298, + 5191.50454764883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.923877686906, + "min_y": 5191.805308972348, + "max_x": 5202.293133924889, + "max_y": 5191.805308972348, + "center": [ + 5202.108505805898, + 5191.805308972348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.923877686906, + 5191.805308972348 + ], + [ + 5202.293133924889, + 5191.805308972348 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.293133924889, + "min_y": 5191.893609377087, + "max_x": 5202.437625496298, + "max_y": 5191.893609377087, + "center": [ + 5202.3653797105935, + 5191.893609377087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.437625496298, + 5191.893609377087 + ], + [ + 5202.293133924889, + 5191.893609377087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EF9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.4535393355, + "min_y": 5191.828533940602, + "max_x": 5209.526923338714, + "max_y": 5192.402488273144, + "center": [ + 5209.490231337108, + 5192.115511106873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.4535393355, + 5191.828533940602 + ], + [ + 5209.4535393355, + 5192.171139188836 + ], + [ + 5209.526923338714, + 5192.402488273144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5210.204899268952, + "min_y": 5192.572504664856, + "max_x": 5211.605266834157, + "max_y": 5192.572504664856, + "center": [ + 5210.905083051555, + 5192.572504664856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.204899268952, + 5192.572504664856 + ], + [ + 5211.605266834157, + 5192.572504664856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.670276692481, + "min_y": 5191.828533940602, + "max_x": 5211.605266834157, + "max_y": 5192.355767307829, + "center": [ + 5210.637771763319, + 5192.092150624216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.670276692481, + 5191.828533940602 + ], + [ + 5209.670276692481, + 5192.171139188836 + ], + [ + 5209.85490481152, + 5192.355767307829 + ], + [ + 5211.605266834157, + 5192.355767307829 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.236801978419, + "min_y": 5191.828533940602, + "max_x": 5209.281730568026, + "max_y": 5192.402488273144, + "center": [ + 5209.259266273222, + 5192.115511106873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.236801978419, + 5191.828533940602 + ], + [ + 5209.236801978419, + 5192.171139188836 + ], + [ + 5209.281730568026, + 5192.402488273144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5210.204899268952, + "min_y": 5192.789242021867, + "max_x": 5211.605266834157, + "max_y": 5192.789242021867, + "center": [ + 5210.905083051555, + 5192.789242021867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.204899268952, + 5192.789242021867 + ], + [ + 5211.605266834157, + 5192.789242021867 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.204899268952, + "min_y": 5192.606381934964, + "max_x": 5210.204899268952, + "max_y": 5193.310375277903, + "center": [ + 5210.204899268952, + 5192.958378606434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.204899268952, + 5192.606381934964 + ], + [ + 5210.204899268952, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552EFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.111975442512, + "min_y": 5192.606381934964, + "max_x": 5207.111975442512, + "max_y": 5193.310375277903, + "center": [ + 5207.111975442512, + 5192.958378606434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.111975442512, + 5192.606381934964 + ], + [ + 5207.111975442512, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.315869104252, + "min_y": 5192.402488273144, + "max_x": 5210.001005607113, + "max_y": 5192.402488273144, + "center": [ + 5208.6584373556825, + 5192.402488273144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.001005607113, + 5192.402488273144 + ], + [ + 5207.315869104252, + 5192.402488273144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F01", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.797111945315, + "min_y": 5192.4024882731655, + "max_x": 5210.2048992689115, + "max_y": 5192.810275596762, + "center": [ + 5210.001005607113, + 5192.606381934964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.001005607113, + 5192.606381934964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F02", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.1119754424535, + "min_y": 5192.4024882731655, + "max_x": 5207.51976276605, + "max_y": 5192.810275596762, + "center": [ + 5207.315869104252, + 5192.606381934964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.315869104252, + 5192.606381934964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.111975442512, + "min_y": 5193.310375277903, + "max_x": 5210.204899268952, + "max_y": 5193.310375277903, + "center": [ + 5208.6584373557325, + 5193.310375277903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.111975442512, + 5193.310375277903 + ], + [ + 5210.204899268952, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F04", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.400963486254, + "min_y": 5192.499046829408, + "max_x": 5210.0832847954225, + "max_y": 5193.1813681385765, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F05", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.473209271931, + "min_y": 5192.571292615085, + "max_x": 5210.011039009745, + "max_y": 5193.109122352899, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F06", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.684096670263, + "min_y": 5192.747893424516, + "max_x": 5209.700151289303, + "max_y": 5192.763948043556, + "center": [ + 5209.692123979783, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.692123979783, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F07", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.784096992474, + "min_y": 5192.747893424516, + "max_x": 5209.800151611514, + "max_y": 5192.763948043556, + "center": [ + 5209.792124301994, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.792124301994, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F08", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.5976325694855, + "min_y": 5192.69571591264, + "max_x": 5209.886615712191, + "max_y": 5192.984699055345, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.574232992801, + "min_y": 5192.719630605576, + "max_x": 5209.624763338392, + "max_y": 5192.755920734036, + "center": [ + 5209.599498165597, + 5192.737775669806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.574232992801, + 5192.719630605576 + ], + [ + 5209.624763338392, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.719716688956, + "min_y": 5192.81780003211, + "max_x": 5209.76453159272, + "max_y": 5192.862614935874, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.536006736398, + "min_y": 5192.85107815731, + "max_x": 5209.59804207167, + "max_y": 5192.855758586069, + "center": [ + 5209.567024404034, + 5192.853418371689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.536006736398, + 5192.855758586069 + ], + [ + 5209.59804207167, + 5192.85107815731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.594225104222, + "min_y": 5192.941149071751, + "max_x": 5209.638738406622, + "max_y": 5192.984610033087, + "center": [ + 5209.616481755422, + 5192.962879552419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.594225104222, + 5192.984610033087 + ], + [ + 5209.638738406622, + 5192.941149071751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.721647075106, + "min_y": 5192.983988295424, + "max_x": 5209.727810075401, + "max_y": 5193.045893922509, + "center": [ + 5209.724728575254, + 5193.014941108966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.721647075106, + 5193.045893922509 + ], + [ + 5209.727810075401, + 5192.983988295424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.823579454639, + "min_y": 5192.959550879478, + "max_x": 5209.858650492567, + "max_y": 5193.01093484142, + "center": [ + 5209.841114973603, + 5192.985242860449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.858650492567, + 5193.01093484142 + ], + [ + 5209.823579454639, + 5192.959550879478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.8812349873, + "min_y": 5192.879271362443, + "max_x": 5209.941129935023, + "max_y": 5192.896090532361, + "center": [ + 5209.911182461161, + 5192.887680947402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.941129935023, + 5192.896090532361 + ], + [ + 5209.8812349873, + 5192.879271362443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.859484943352, + "min_y": 5192.730305235365, + "max_x": 5209.916178289343, + "max_y": 5192.755920734036, + "center": [ + 5209.887831616348, + 5192.743112984701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.916178289343, + 5192.730305235365 + ], + [ + 5209.859484943352, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.7645315928, + "min_y": 5192.764626554503, + "max_x": 5209.909403171327, + "max_y": 5192.840207483992, + "center": [ + 5209.836967382063, + 5192.8024170192475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.909403171327, + 5192.764626554503 + ], + [ + 5209.7645315928, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.75693384845, + "min_y": 5192.764626554503, + "max_x": 5209.909403171327, + "max_y": 5192.823391822762, + "center": [ + 5209.833168509888, + 5192.794009188632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.909403171327, + 5192.764626554503 + ], + [ + 5209.75693384845, + 5192.823391822762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.669329998311, + "min_y": 5192.8548976502, + "max_x": 5209.670662255481, + "max_y": 5192.855384181886, + "center": [ + 5209.669996126896, + 5192.855140916043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.670662255481, + 5192.8548976502 + ], + [ + 5209.669329998311, + 5192.855384181886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.682041553993, + "min_y": 5192.884372888736, + "max_x": 5209.683416948097, + "max_y": 5192.885121765036, + "center": [ + 5209.682729251045, + 5192.884747326886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.683416948097, + 5192.884372888736 + ], + [ + 5209.682041553993, + 5192.885121765036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.664640747138, + "min_y": 5192.865931241279, + "max_x": 5209.670760052862, + "max_y": 5192.881078567864, + "center": [ + 5209.667700399999, + 5192.873504904572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.670760052862, + 5192.881078567864 + ], + [ + 5209.664640747138, + 5192.865931241279 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F16", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.670175639599, + "min_y": 5192.87004443352, + "max_x": 5209.686230258639, + "max_y": 5192.88609905256, + "center": [ + 5209.678202949119, + 5192.87807174304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.678202949119, + 5192.87807174304 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F17", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.664056333673, + "min_y": 5192.854897106934, + "max_x": 5209.680110952713, + "max_y": 5192.870951725974, + "center": [ + 5209.672083643193, + 5192.862924416454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.672083643193, + 5192.862924416454 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.690869727381, + "min_y": 5192.859028641951, + "max_x": 5209.729964456975, + "max_y": 5192.876692637259, + "center": [ + 5209.7104170921775, + 5192.867860639605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.729964456975, + 5192.859028641951 + ], + [ + 5209.690869727381, + 5192.876692637259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.681295906979, + "min_y": 5192.836893286499, + "max_x": 5209.719963139205, + "max_y": 5192.85436412759, + "center": [ + 5209.700629523092, + 5192.845628707044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.719963139205, + 5192.836893286499 + ], + [ + 5209.681295906979, + 5192.85436412759 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.665388590941, + "min_y": 5192.854410575248, + "max_x": 5209.681443209981, + "max_y": 5192.870465194288, + "center": [ + 5209.673415900461, + 5192.862437884768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.673415900461, + 5192.862437884768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.671551033612, + "min_y": 5192.869295557184, + "max_x": 5209.687605652652, + "max_y": 5192.885350176224, + "center": [ + 5209.679578343132, + 5192.877322866704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.679578343132, + 5192.877322866704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.686147643565, + "min_y": 5192.875980598182, + "max_x": 5209.702202262605, + "max_y": 5192.892035217222, + "center": [ + 5209.694174953085, + 5192.884007907702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.694174953085, + 5192.884007907702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.669963371919, + "min_y": 5192.83902154761, + "max_x": 5209.686017990959, + "max_y": 5192.85507616665, + "center": [ + 5209.677990681439, + 5192.84704885713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.677990681439, + 5192.84704885713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.719716688956, + "min_y": 5192.81780003211, + "max_x": 5209.76453159272, + "max_y": 5192.862614935874, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F1F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.736736762834, + "min_y": 5192.834820105988, + "max_x": 5209.747511518843, + "max_y": 5192.845594861997, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F20", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.4892638909705, + "min_y": 5192.5873472341245, + "max_x": 5209.994984390706, + "max_y": 5193.09306773386, + "center": [ + 5209.742124140838, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.742124140838, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F21", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.3172767011265, + "min_y": 5192.499046829408, + "max_x": 5208.999598010295, + "max_y": 5193.1813681385765, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F22", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.389522486804, + "min_y": 5192.571292615085, + "max_x": 5208.927352224618, + "max_y": 5193.109122352899, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F23", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.600409885032, + "min_y": 5192.747893424516, + "max_x": 5208.616464504072, + "max_y": 5192.763948043556, + "center": [ + 5208.608437194552, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.608437194552, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F24", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.700410207422, + "min_y": 5192.747893424516, + "max_x": 5208.716464826462, + "max_y": 5192.763948043556, + "center": [ + 5208.708437516942, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.708437516942, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F25", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.513945784358, + "min_y": 5192.69571591264, + "max_x": 5208.8029289270635, + "max_y": 5192.984699055345, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.490546207677, + "min_y": 5192.719630605576, + "max_x": 5208.541076553235, + "max_y": 5192.755920734036, + "center": [ + 5208.5158113804555, + 5192.737775669806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.490546207677, + 5192.719630605576 + ], + [ + 5208.541076553235, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F27", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.636029903829, + "min_y": 5192.81780003211, + "max_x": 5208.680844807593, + "max_y": 5192.862614935874, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.452319951242, + "min_y": 5192.85107815731, + "max_x": 5208.514355286609, + "max_y": 5192.855758586069, + "center": [ + 5208.483337618925, + 5192.853418371689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.452319951242, + 5192.855758586069 + ], + [ + 5208.514355286609, + 5192.85107815731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.510538319095, + "min_y": 5192.941149071751, + "max_x": 5208.555051621466, + "max_y": 5192.984610033087, + "center": [ + 5208.5327949702805, + 5192.962879552419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510538319095, + 5192.984610033087 + ], + [ + 5208.555051621466, + 5192.941149071751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.637960289951, + "min_y": 5192.983988295424, + "max_x": 5208.644123290341, + "max_y": 5193.045893922509, + "center": [ + 5208.641041790146, + 5193.014941108966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637960289951, + 5193.045893922509 + ], + [ + 5208.644123290341, + 5192.983988295424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.739892669512, + "min_y": 5192.959550879478, + "max_x": 5208.774963707409, + "max_y": 5193.01093484142, + "center": [ + 5208.757428188461, + 5192.985242860449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.774963707409, + 5193.01093484142 + ], + [ + 5208.739892669512, + 5192.959550879478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.79754820207, + "min_y": 5192.879271362443, + "max_x": 5208.857443149866, + "max_y": 5192.896090532361, + "center": [ + 5208.827495675969, + 5192.887680947402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.857443149866, + 5192.896090532361 + ], + [ + 5208.79754820207, + 5192.879271362443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.775798158325, + "min_y": 5192.730305235365, + "max_x": 5208.832491504216, + "max_y": 5192.755920734036, + "center": [ + 5208.804144831271, + 5192.743112984701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.832491504216, + 5192.730305235365 + ], + [ + 5208.775798158325, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680844807577, + "min_y": 5192.764626554503, + "max_x": 5208.825716386171, + "max_y": 5192.840207483992, + "center": [ + 5208.753280596874, + 5192.8024170192475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.825716386171, + 5192.764626554503 + ], + [ + 5208.680844807577, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.673247063299, + "min_y": 5192.764626554503, + "max_x": 5208.825716386171, + "max_y": 5192.823391822762, + "center": [ + 5208.749481724735, + 5192.794009188632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.825716386171, + 5192.764626554503 + ], + [ + 5208.673247063299, + 5192.823391822762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.585643213187, + "min_y": 5192.8548976502, + "max_x": 5208.586975470357, + "max_y": 5192.855384181886, + "center": [ + 5208.586309341772, + 5192.855140916043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.586975470357, + 5192.8548976502 + ], + [ + 5208.585643213187, + 5192.855384181886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.598354768868, + "min_y": 5192.884372888736, + "max_x": 5208.599730162872, + "max_y": 5192.885121765036, + "center": [ + 5208.59904246587, + 5192.884747326886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.599730162872, + 5192.884372888736 + ], + [ + 5208.598354768868, + 5192.885121765036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.580953961917, + "min_y": 5192.865931241279, + "max_x": 5208.587073267811, + "max_y": 5192.881078567864, + "center": [ + 5208.584013614864, + 5192.873504904572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.587073267811, + 5192.881078567864 + ], + [ + 5208.580953961917, + 5192.865931241279 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F33", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.586488854378, + "min_y": 5192.87004443352, + "max_x": 5208.602543473418, + "max_y": 5192.88609905256, + "center": [ + 5208.594516163898, + 5192.87807174304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.594516163898, + 5192.87807174304 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F34", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.580369548451, + "min_y": 5192.854897106934, + "max_x": 5208.596424167491, + "max_y": 5192.870951725974, + "center": [ + 5208.588396857971, + 5192.862924416454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.588396857971, + 5192.862924416454 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.607182942258, + "min_y": 5192.859028641951, + "max_x": 5208.646277671885, + "max_y": 5192.876692637259, + "center": [ + 5208.626730307072, + 5192.867860639605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.646277671885, + 5192.859028641951 + ], + [ + 5208.607182942258, + 5192.876692637259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.597609121756, + "min_y": 5192.836893286499, + "max_x": 5208.636276354048, + "max_y": 5192.85436412759, + "center": [ + 5208.616942737903, + 5192.845628707044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636276354048, + 5192.836893286499 + ], + [ + 5208.597609121756, + 5192.85436412759 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F37", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.5817018057905, + "min_y": 5192.854410575248, + "max_x": 5208.597756424831, + "max_y": 5192.870465194288, + "center": [ + 5208.589729115311, + 5192.862437884768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.589729115311, + 5192.862437884768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F38", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.587864248383, + "min_y": 5192.869295557184, + "max_x": 5208.603918867423, + "max_y": 5192.885350176224, + "center": [ + 5208.595891557903, + 5192.877322866704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.595891557903, + 5192.877322866704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F39", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.602460858346, + "min_y": 5192.875980598182, + "max_x": 5208.618515477386, + "max_y": 5192.892035217222, + "center": [ + 5208.610488167866, + 5192.884007907702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.610488167866, + 5192.884007907702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.586276586762, + "min_y": 5192.83902154761, + "max_x": 5208.602331205802, + "max_y": 5192.85507616665, + "center": [ + 5208.594303896282, + 5192.84704885713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.594303896282, + 5192.84704885713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.636029903829, + "min_y": 5192.81780003211, + "max_x": 5208.680844807593, + "max_y": 5192.862614935874, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.653049977706, + "min_y": 5192.834820105988, + "max_x": 5208.663824733715, + "max_y": 5192.845594861997, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.405577105843, + "min_y": 5192.5873472341245, + "max_x": 5208.9112976055785, + "max_y": 5193.09306773386, + "center": [ + 5208.658437355711, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.658437355711, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.233589916042, + "min_y": 5192.499046829408, + "max_x": 5207.91591122521, + "max_y": 5193.1813681385765, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F3F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.305835701719, + "min_y": 5192.571292615085, + "max_x": 5207.843665439533, + "max_y": 5193.109122352899, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F40", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.516723099882, + "min_y": 5192.747893424516, + "max_x": 5207.532777718922, + "max_y": 5192.763948043556, + "center": [ + 5207.524750409402, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.524750409402, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F41", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.616723422264, + "min_y": 5192.747893424516, + "max_x": 5207.632778041304, + "max_y": 5192.763948043556, + "center": [ + 5207.624750731784, + 5192.755920734036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.624750731784, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F42", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.430258999273, + "min_y": 5192.69571591264, + "max_x": 5207.719242141979, + "max_y": 5192.984699055345, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.406859422519, + "min_y": 5192.719630605576, + "max_x": 5207.457389768013, + "max_y": 5192.755920734036, + "center": [ + 5207.432124595266, + 5192.737775669806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.406859422519, + 5192.719630605576 + ], + [ + 5207.457389768013, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F44", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.552343118744, + "min_y": 5192.81780003211, + "max_x": 5207.597158022508, + "max_y": 5192.862614935874, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.368633166019, + "min_y": 5192.85107815731, + "max_x": 5207.430668501451, + "max_y": 5192.855758586069, + "center": [ + 5207.399650833735, + 5192.853418371689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.368633166019, + 5192.855758586069 + ], + [ + 5207.430668501451, + 5192.85107815731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.426851533972, + "min_y": 5192.941149071751, + "max_x": 5207.471364836236, + "max_y": 5192.984610033087, + "center": [ + 5207.449108185104, + 5192.962879552419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.426851533972, + 5192.984610033087 + ], + [ + 5207.471364836236, + 5192.941149071751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.554273504825, + "min_y": 5192.983988295424, + "max_x": 5207.560436505186, + "max_y": 5193.045893922509, + "center": [ + 5207.557355005005, + 5193.014941108966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.554273504825, + 5193.045893922509 + ], + [ + 5207.560436505186, + 5192.983988295424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.65620588439, + "min_y": 5192.959550879478, + "max_x": 5207.691276922283, + "max_y": 5193.01093484142, + "center": [ + 5207.673741403336, + 5192.985242860449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.691276922283, + 5193.01093484142 + ], + [ + 5207.65620588439, + 5192.959550879478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.713861417051, + "min_y": 5192.879271362443, + "max_x": 5207.773756364742, + "max_y": 5192.896090532361, + "center": [ + 5207.743808890897, + 5192.887680947402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.773756364742, + 5192.896090532361 + ], + [ + 5207.713861417051, + 5192.879271362443 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.692111373104, + "min_y": 5192.730305235365, + "max_x": 5207.748804719125, + "max_y": 5192.755920734036, + "center": [ + 5207.720458046115, + 5192.743112984701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.748804719125, + 5192.730305235365 + ], + [ + 5207.692111373104, + 5192.755920734036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.597158022454, + "min_y": 5192.764626554503, + "max_x": 5207.742029601046, + "max_y": 5192.840207483992, + "center": [ + 5207.66959381175, + 5192.8024170192475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.742029601046, + 5192.764626554503 + ], + [ + 5207.597158022454, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.589560278071, + "min_y": 5192.764626554503, + "max_x": 5207.742029601046, + "max_y": 5192.823391822762, + "center": [ + 5207.6657949395585, + 5192.794009188632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.742029601046, + 5192.764626554503 + ], + [ + 5207.589560278071, + 5192.823391822762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.501956428063, + "min_y": 5192.8548976502, + "max_x": 5207.503288685231, + "max_y": 5192.855384181886, + "center": [ + 5207.502622556647, + 5192.855140916043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.503288685231, + 5192.8548976502 + ], + [ + 5207.501956428063, + 5192.855384181886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.514667983647, + "min_y": 5192.884372888736, + "max_x": 5207.516043377853, + "max_y": 5192.885121765036, + "center": [ + 5207.51535568075, + 5192.884747326886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.516043377853, + 5192.884372888736 + ], + [ + 5207.514667983647, + 5192.885121765036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.497267176822, + "min_y": 5192.865931241279, + "max_x": 5207.503386482652, + "max_y": 5192.881078567864, + "center": [ + 5207.500326829737, + 5192.873504904572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.503386482652, + 5192.881078567864 + ], + [ + 5207.497267176822, + 5192.865931241279 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F50", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.50280206922, + "min_y": 5192.87004443352, + "max_x": 5207.51885668826, + "max_y": 5192.88609905256, + "center": [ + 5207.51082937874, + 5192.87807174304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.51082937874, + 5192.87807174304 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F51", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.496682763399, + "min_y": 5192.854897106934, + "max_x": 5207.512737382439, + "max_y": 5192.870951725974, + "center": [ + 5207.504710072919, + 5192.862924416454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.504710072919, + 5192.862924416454 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.523496157166, + "min_y": 5192.859028641951, + "max_x": 5207.562590886663, + "max_y": 5192.876692637259, + "center": [ + 5207.543043521915, + 5192.867860639605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.562590886663, + 5192.859028641951 + ], + [ + 5207.523496157166, + 5192.876692637259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.513922336731, + "min_y": 5192.836893286499, + "max_x": 5207.552589568826, + "max_y": 5192.85436412759, + "center": [ + 5207.533255952779, + 5192.845628707044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.552589568826, + 5192.836893286499 + ], + [ + 5207.513922336731, + 5192.85436412759 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F54", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.498015020562, + "min_y": 5192.854410575248, + "max_x": 5207.514069639602, + "max_y": 5192.870465194288, + "center": [ + 5207.506042330082, + 5192.862437884768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.506042330082, + 5192.862437884768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F55", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.504177463331, + "min_y": 5192.869295557184, + "max_x": 5207.520232082371, + "max_y": 5192.885350176224, + "center": [ + 5207.512204772851, + 5192.877322866704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.512204772851, + 5192.877322866704 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F56", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.518774073122, + "min_y": 5192.875980598182, + "max_x": 5207.534828692162, + "max_y": 5192.892035217222, + "center": [ + 5207.526801382642, + 5192.884007907702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.526801382642, + 5192.884007907702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F57", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.502589801538, + "min_y": 5192.83902154761, + "max_x": 5207.518644420578, + "max_y": 5192.85507616665, + "center": [ + 5207.510617111058, + 5192.84704885713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.510617111058, + 5192.84704885713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F58", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.552343118744, + "min_y": 5192.81780003211, + "max_x": 5207.597158022508, + "max_y": 5192.862614935874, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F59", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.5693631926215, + "min_y": 5192.834820105988, + "max_x": 5207.58013794863, + "max_y": 5192.845594861997, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.321890320758, + "min_y": 5192.5873472341245, + "max_x": 5207.827610820494, + "max_y": 5193.09306773386, + "center": [ + 5207.574750570626, + 5192.840207483992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.574750570626, + 5192.840207483992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5186.448439143136, + "max_x": 5206.6173237207, + "max_y": 5187.744430814423, + "center": [ + 5206.6173237207, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5186.448439143136 + ], + [ + 5206.6173237207, + 5187.744430814423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.452662205978, + "max_x": 5206.718677228685, + "max_y": 5187.740207751581, + "center": [ + 5206.718677228685, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.718677228685, + 5186.452662205978 + ], + [ + 5206.718677228685, + 5187.740207751581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.448439143136, + "max_x": 5206.874930553551, + "max_y": 5187.744430814423, + "center": [ + 5206.874930553551, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.448439143136 + ], + [ + 5206.874930553551, + 5187.744430814423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.773577045566, + "min_y": 5186.452662205978, + "max_x": 5206.773577045566, + "max_y": 5187.740207751581, + "center": [ + 5206.773577045566, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.452662205978 + ], + [ + 5206.773577045566, + 5187.740207751581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.448439143136, + "max_x": 5206.874930553551, + "max_y": 5186.579354091044, + "center": [ + 5206.874930553551, + 5186.51389661709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.448439143136 + ], + [ + 5206.874930553551, + 5186.579354091044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.448439143136, + "max_x": 5206.940810333765, + "max_y": 5186.579354091044, + "center": [ + 5206.940810333765, + 5186.51389661709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.940810333765, + 5186.448439143136 + ], + [ + 5206.940810333765, + 5186.579354091044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F61", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.6702703710325, + "min_y": 5186.378626635662, + "max_x": 5206.940810333839, + "max_y": 5186.649166598469, + "center": [ + 5206.805540352436, + 5186.513896617065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.805540352436, + 5186.513896617065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F62", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5186.437881486085, + "max_x": 5206.777800108368, + "max_y": 5186.649034627788, + "center": [ + 5206.672223537516, + 5186.543458056936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5186.543458056936 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5186.454773737374, + "max_x": 5206.6173237207, + "max_y": 5186.573019496725, + "center": [ + 5206.6173237207, + 5186.513896617049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5186.573019496725 + ], + [ + 5206.6173237207, + 5186.454773737374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.474199826479, + "max_x": 5207.040474616564, + "max_y": 5186.553593407751, + "center": [ + 5207.040474616564, + 5186.513896617114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.553593407751 + ], + [ + 5207.040474616564, + 5186.474199826479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.545991894593, + "max_x": 5207.048076129723, + "max_y": 5186.553593407751, + "center": [ + 5207.044275373144, + 5186.549792651172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.553593407751 + ], + [ + 5207.048076129723, + 5186.545991894593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.782023171216, + "min_y": 5186.444216080312, + "max_x": 5206.870707490764, + "max_y": 5186.444216080312, + "center": [ + 5206.82636533099, + 5186.444216080312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.782023171216, + 5186.444216080312 + ], + [ + 5206.870707490764, + 5186.444216080312 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.548190709196, + "min_y": 5186.513896617065, + "max_x": 5207.073556966935, + "max_y": 5186.513896617065, + "center": [ + 5206.810873838065, + 5186.513896617065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.073556966935, + 5186.513896617065 + ], + [ + 5206.548190709196, + 5186.513896617065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.474199826479, + "max_x": 5206.773577045566, + "max_y": 5186.474199826479, + "center": [ + 5206.746127137125, + 5186.474199826479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.474199826479 + ], + [ + 5206.718677228685, + 5186.474199826479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.710231103036, + "min_y": 5186.444216080312, + "max_x": 5206.718677228685, + "max_y": 5186.452662205978, + "center": [ + 5206.71445416586, + 5186.448439143145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.718677228685, + 5186.452662205978 + ], + [ + 5206.710231103036, + 5186.444216080312 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.773577045566, + "min_y": 5186.444216080312, + "max_x": 5206.782023171216, + "max_y": 5186.452662205978, + "center": [ + 5206.777800108391, + 5186.448439143145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.452662205978 + ], + [ + 5206.782023171216, + 5186.444216080312 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5186.454773737374, + "max_x": 5206.6173237207, + "max_y": 5186.454773737374, + "center": [ + 5206.594096875113, + 5186.454773737374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5186.454773737374 + ], + [ + 5206.6173237207, + 5186.454773737374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5186.513896617065, + "max_x": 5206.6173237207, + "max_y": 5186.513896617065, + "center": [ + 5206.591985343719, + 5186.513896617065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5186.513896617065 + ], + [ + 5206.566646966738, + 5186.513896617065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5186.378758606393, + "max_x": 5206.777800108368, + "max_y": 5186.589911748096, + "center": [ + 5206.672223537516, + 5186.484335177244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5186.484335177244 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5186.484335177244, + "max_x": 5206.566646966738, + "max_y": 5186.543458056936, + "center": [ + 5206.566646966738, + 5186.513896617091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.566646966738, + 5186.543458056936 + ], + [ + 5206.566646966738, + 5186.484335177244 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5186.444216080312, + "max_x": 5206.62154678349, + "max_y": 5186.448439143136, + "center": [ + 5206.619435252095, + 5186.446327611724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.62154678349, + 5186.444216080312 + ], + [ + 5206.6173237207, + 5186.448439143136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.62154678349, + "min_y": 5186.444216080312, + "max_x": 5206.710231103036, + "max_y": 5186.444216080312, + "center": [ + 5206.665888943263, + 5186.444216080312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.710231103036, + 5186.444216080312 + ], + [ + 5206.62154678349, + 5186.444216080312 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.545991894593, + "max_x": 5207.048076129723, + "max_y": 5186.545991894593, + "center": [ + 5206.994443231744, + 5186.545991894593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.545991894593 + ], + [ + 5206.940810333765, + 5186.545991894593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.481801339503, + "max_x": 5207.048076129723, + "max_y": 5186.481801339503, + "center": [ + 5206.994443231744, + 5186.481801339503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.481801339503 + ], + [ + 5206.940810333765, + 5186.481801339503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.474199826479, + "max_x": 5207.040474616564, + "max_y": 5186.474199826479, + "center": [ + 5206.990642475164, + 5186.474199826479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.474199826479 + ], + [ + 5206.940810333765, + 5186.474199826479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.048076129723, + "min_y": 5186.481801339503, + "max_x": 5207.048076129723, + "max_y": 5186.545991894593, + "center": [ + 5207.048076129723, + 5186.513896617048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.545991894593 + ], + [ + 5207.048076129723, + 5186.481801339503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.474199826479, + "max_x": 5207.048076129723, + "max_y": 5186.481801339503, + "center": [ + 5207.044275373144, + 5186.478000582991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.474199826479 + ], + [ + 5207.048076129723, + 5186.481801339503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.870707490764, + "min_y": 5186.444216080312, + "max_x": 5206.874930553551, + "max_y": 5186.448439143136, + "center": [ + 5206.872819022157, + 5186.446327611724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.870707490764, + 5186.444216080312 + ], + [ + 5206.874930553551, + 5186.448439143136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.854362889208, + "min_y": 5186.513896617065, + "max_x": 5206.960682353551, + "max_y": 5186.513896617065, + "center": [ + 5206.907522621379, + 5186.513896617065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.854362889208, + 5186.513896617065 + ], + [ + 5206.960682353551, + 5186.513896617065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.448439143136, + "max_x": 5206.940810333765, + "max_y": 5186.448439143136, + "center": [ + 5206.907870443658, + 5186.448439143136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.448439143136 + ], + [ + 5206.940810333765, + 5186.448439143136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.033089036273, + "max_x": 5206.940810333765, + "max_y": 5187.164003984129, + "center": [ + 5206.940810333765, + 5187.0985465102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.940810333765, + 5187.033089036273 + ], + [ + 5206.940810333765, + 5187.164003984129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.6702703710325, + "min_y": 5186.963276528796, + "max_x": 5206.940810333839, + "max_y": 5187.233816491603, + "center": [ + 5206.805540352436, + 5187.098546510199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.805540352436, + 5187.098546510199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.058849719564, + "max_x": 5207.040474616564, + "max_y": 5187.138243300836, + "center": [ + 5207.040474616564, + 5187.0985465102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.138243300836 + ], + [ + 5207.040474616564, + 5187.058849719564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.048076129723, + "min_y": 5187.066451232638, + "max_x": 5207.048076129723, + "max_y": 5187.130641787712, + "center": [ + 5207.048076129723, + 5187.098546510175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.130641787712 + ], + [ + 5207.048076129723, + 5187.066451232638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.033089036273, + "max_x": 5206.874930553551, + "max_y": 5187.164003984129, + "center": [ + 5206.874930553551, + 5187.0985465102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.033089036273 + ], + [ + 5206.874930553551, + 5187.164003984129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5187.03942363054, + "max_x": 5206.6173237207, + "max_y": 5187.157669389859, + "center": [ + 5206.6173237207, + 5187.098546510199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.157669389859 + ], + [ + 5206.6173237207, + 5187.03942363054 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.068985070329, + "max_x": 5206.566646966738, + "max_y": 5187.128107950071, + "center": [ + 5206.566646966738, + 5187.0985465102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.566646966738, + 5187.128107950071 + ], + [ + 5206.566646966738, + 5187.068985070329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F80", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5186.963408499478, + "max_x": 5206.777800108368, + "max_y": 5187.174561641181, + "center": [ + 5206.672223537516, + 5187.068985070329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.068985070329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.548190709196, + "min_y": 5186.68706352242, + "max_x": 5207.073556966935, + "max_y": 5186.68706352242, + "center": [ + 5206.810873838065, + 5186.68706352242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.073556966935, + 5186.68706352242 + ], + [ + 5206.548190709196, + 5186.68706352242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5186.627940642761, + "max_x": 5206.6173237207, + "max_y": 5186.746186402078, + "center": [ + 5206.6173237207, + 5186.6870635224195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5186.746186402078 + ], + [ + 5206.6173237207, + 5186.627940642761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F83", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5186.551925511698, + "max_x": 5206.777800108368, + "max_y": 5186.763078653401, + "center": [ + 5206.672223537516, + 5186.657502082549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5186.657502082549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5186.657502082549, + "max_x": 5206.566646966738, + "max_y": 5186.716624962258, + "center": [ + 5206.566646966738, + 5186.687063522404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.566646966738, + 5186.716624962258 + ], + [ + 5206.566646966738, + 5186.657502082549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.553593407751, + "max_x": 5206.773577045566, + "max_y": 5186.553593407751, + "center": [ + 5206.746127137125, + 5186.553593407751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.553593407751 + ], + [ + 5206.718677228685, + 5186.553593407751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.622429331912, + "max_x": 5206.773577045566, + "max_y": 5186.622429331912, + "center": [ + 5206.746127137125, + 5186.622429331912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.622429331912 + ], + [ + 5206.718677228685, + 5186.622429331912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.647366731751, + "max_x": 5206.773577045566, + "max_y": 5186.647366731751, + "center": [ + 5206.746127137125, + 5186.647366731751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.647366731751 + ], + [ + 5206.718677228685, + 5186.647366731751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5186.573019496725, + "max_x": 5206.6173237207, + "max_y": 5186.573019496725, + "center": [ + 5206.594096875113, + 5186.573019496725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5186.573019496725 + ], + [ + 5206.6173237207, + 5186.573019496725 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5186.627940642761, + "max_x": 5206.6173237207, + "max_y": 5186.627940642761, + "center": [ + 5206.594096875113, + 5186.627940642761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5186.627940642761 + ], + [ + 5206.6173237207, + 5186.627940642761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5186.726760313023, + "max_x": 5206.773577045566, + "max_y": 5186.726760313023, + "center": [ + 5206.746127137125, + 5186.726760313023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5186.726760313023 + ], + [ + 5206.718677228685, + 5186.726760313023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5186.611048391406, + "max_x": 5206.777800108368, + "max_y": 5186.822201533109, + "center": [ + 5206.672223537516, + 5186.716624962258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5186.716624962258 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5186.68706352242, + "max_x": 5206.6173237207, + "max_y": 5186.68706352242, + "center": [ + 5206.591985343719, + 5186.68706352242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5186.68706352242 + ], + [ + 5206.566646966738, + 5186.68706352242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5186.746186402078, + "max_x": 5206.6173237207, + "max_y": 5186.746186402078, + "center": [ + 5206.594096875113, + 5186.746186402078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5186.746186402078 + ], + [ + 5206.6173237207, + 5186.746186402078 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.058849719564, + "max_x": 5206.773577045566, + "max_y": 5187.058849719564, + "center": [ + 5206.746127137125, + 5187.058849719564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.058849719564 + ], + [ + 5206.718677228685, + 5187.058849719564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.03942363054, + "max_x": 5206.6173237207, + "max_y": 5187.03942363054, + "center": [ + 5206.594096875113, + 5187.03942363054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.03942363054 + ], + [ + 5206.6173237207, + 5187.03942363054 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.621606048458, + "max_x": 5206.940810333765, + "max_y": 5186.752520996349, + "center": [ + 5206.940810333765, + 5186.687063522403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.940810333765, + 5186.621606048458 + ], + [ + 5206.940810333765, + 5186.752520996349 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F91", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.6702703710325, + "min_y": 5186.551793541017, + "max_x": 5206.940810333839, + "max_y": 5186.822333503824, + "center": [ + 5206.805540352436, + 5186.68706352242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.805540352436, + 5186.68706352242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.647366731751, + "max_x": 5207.040474616564, + "max_y": 5186.726760313023, + "center": [ + 5207.040474616564, + 5186.687063522388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.726760313023 + ], + [ + 5207.040474616564, + 5186.647366731751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.048076129723, + "min_y": 5186.654968244907, + "max_x": 5207.048076129723, + "max_y": 5186.719158799981, + "center": [ + 5207.048076129723, + 5186.687063522444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.719158799981 + ], + [ + 5207.048076129723, + 5186.654968244907 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.621606048458, + "max_x": 5206.874930553551, + "max_y": 5186.752520996349, + "center": [ + 5206.874930553551, + 5186.687063522403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.621606048458 + ], + [ + 5206.874930553551, + 5186.752520996349 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.553593407751, + "max_x": 5207.040474616564, + "max_y": 5186.553593407751, + "center": [ + 5206.990642475164, + 5186.553593407751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.553593407751 + ], + [ + 5206.940810333765, + 5186.553593407751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.654968244907, + "max_x": 5207.048076129723, + "max_y": 5186.654968244907, + "center": [ + 5206.994443231744, + 5186.654968244907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.654968244907 + ], + [ + 5206.940810333765, + 5186.654968244907 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.647366731751, + "max_x": 5207.040474616564, + "max_y": 5186.647366731751, + "center": [ + 5206.990642475164, + 5186.647366731751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.647366731751 + ], + [ + 5206.940810333765, + 5186.647366731751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.647366731751, + "max_x": 5207.048076129723, + "max_y": 5186.654968244907, + "center": [ + 5207.044275373144, + 5186.6511674883295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.647366731751 + ], + [ + 5207.048076129723, + 5186.654968244907 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.621606048458, + "max_x": 5206.940810333765, + "max_y": 5186.621606048458, + "center": [ + 5206.907870443658, + 5186.621606048458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.621606048458 + ], + [ + 5206.940810333765, + 5186.621606048458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.579354091044, + "max_x": 5206.940810333765, + "max_y": 5186.579354091044, + "center": [ + 5206.907870443658, + 5186.579354091044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.579354091044 + ], + [ + 5206.940810333765, + 5186.579354091044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.719158799981, + "max_x": 5207.048076129723, + "max_y": 5186.719158799981, + "center": [ + 5206.994443231744, + 5186.719158799981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5186.719158799981 + ], + [ + 5206.940810333765, + 5186.719158799981 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5186.726760313023, + "max_x": 5207.040474616564, + "max_y": 5186.726760313023, + "center": [ + 5206.990642475164, + 5186.726760313023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.726760313023 + ], + [ + 5206.940810333765, + 5186.726760313023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5186.719158799981, + "max_x": 5207.048076129723, + "max_y": 5186.726760313023, + "center": [ + 5207.044275373144, + 5186.722959556502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5186.726760313023 + ], + [ + 5207.048076129723, + 5186.719158799981 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.854362889208, + "min_y": 5186.68706352242, + "max_x": 5206.960682353551, + "max_y": 5186.68706352242, + "center": [ + 5206.907522621379, + 5186.68706352242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.854362889208, + 5186.68706352242 + ], + [ + 5206.960682353551, + 5186.68706352242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552F9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.752520996349, + "max_x": 5206.940810333765, + "max_y": 5186.752520996349, + "center": [ + 5206.907870443658, + 5186.752520996349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5186.752520996349 + ], + [ + 5206.940810333765, + 5186.752520996349 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.066451232638, + "max_x": 5207.048076129723, + "max_y": 5187.066451232638, + "center": [ + 5206.994443231744, + 5187.066451232638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.066451232638 + ], + [ + 5206.940810333765, + 5187.066451232638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.058849719564, + "max_x": 5207.040474616564, + "max_y": 5187.058849719564, + "center": [ + 5206.990642475164, + 5187.058849719564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.058849719564 + ], + [ + 5206.940810333765, + 5187.058849719564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.058849719564, + "max_x": 5207.048076129723, + "max_y": 5187.066451232638, + "center": [ + 5207.044275373144, + 5187.062650476101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.058849719564 + ], + [ + 5207.048076129723, + 5187.066451232638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.033089036273, + "max_x": 5206.940810333765, + "max_y": 5187.033089036273, + "center": [ + 5206.907870443658, + 5187.033089036273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.033089036273 + ], + [ + 5206.940810333765, + 5187.033089036273 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.548190709196, + "min_y": 5187.510029497964, + "max_x": 5207.073556966935, + "max_y": 5187.510029497964, + "center": [ + 5206.810873838065, + 5187.510029497964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.073556966935, + 5187.510029497964 + ], + [ + 5206.548190709196, + 5187.510029497964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.138243300836, + "max_x": 5206.773577045566, + "max_y": 5187.138243300836, + "center": [ + 5206.746127137125, + 5187.138243300836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.138243300836 + ], + [ + 5206.718677228685, + 5187.138243300836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5187.02253137922, + "max_x": 5206.777800108368, + "max_y": 5187.233684520923, + "center": [ + 5206.672223537516, + 5187.128107950071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.128107950071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.098546510199, + "max_x": 5206.6173237207, + "max_y": 5187.098546510199, + "center": [ + 5206.591985343719, + 5187.098546510199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.098546510199 + ], + [ + 5206.566646966738, + 5187.098546510199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.157669389859, + "max_x": 5206.6173237207, + "max_y": 5187.157669389859, + "center": [ + 5206.594096875113, + 5187.157669389859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.157669389859 + ], + [ + 5206.6173237207, + 5187.157669389859 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FA9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5187.374891487291, + "max_x": 5206.777800108368, + "max_y": 5187.586044628994, + "center": [ + 5206.672223537516, + 5187.480468058143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.480468058143 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5187.450906618305, + "max_x": 5206.6173237207, + "max_y": 5187.569152377623, + "center": [ + 5206.6173237207, + 5187.510029497964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.569152377623 + ], + [ + 5206.6173237207, + 5187.450906618305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.450906618305, + "max_x": 5206.6173237207, + "max_y": 5187.450906618305, + "center": [ + 5206.594096875113, + 5187.450906618305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.450906618305 + ], + [ + 5206.6173237207, + 5187.450906618305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.57466368847, + "max_x": 5206.773577045566, + "max_y": 5187.57466368847, + "center": [ + 5206.746127137125, + 5187.57466368847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.57466368847 + ], + [ + 5206.718677228685, + 5187.57466368847 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.470332707377, + "max_x": 5206.773577045566, + "max_y": 5187.470332707377, + "center": [ + 5206.746127137125, + 5187.470332707377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.470332707377 + ], + [ + 5206.718677228685, + 5187.470332707377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.549726288651, + "max_x": 5206.773577045566, + "max_y": 5187.549726288651, + "center": [ + 5206.746127137125, + 5187.549726288651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.549726288651 + ], + [ + 5206.718677228685, + 5187.549726288651 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.510029497964, + "max_x": 5206.6173237207, + "max_y": 5187.510029497964, + "center": [ + 5206.591985343719, + 5187.510029497964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.510029497964 + ], + [ + 5206.566646966738, + 5187.510029497964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.569152377623, + "max_x": 5206.6173237207, + "max_y": 5187.569152377623, + "center": [ + 5206.594096875113, + 5187.569152377623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.569152377623 + ], + [ + 5206.6173237207, + 5187.569152377623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.480468058143, + "max_x": 5206.566646966738, + "max_y": 5187.539590937836, + "center": [ + 5206.566646966738, + 5187.510029497989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.566646966738, + 5187.539590937836 + ], + [ + 5206.566646966738, + 5187.480468058143 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5187.434014366984, + "max_x": 5206.777800108368, + "max_y": 5187.645167508687, + "center": [ + 5206.672223537516, + 5187.539590937836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.539590937836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.130641787712, + "max_x": 5207.048076129723, + "max_y": 5187.130641787712, + "center": [ + 5206.994443231744, + 5187.130641787712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.130641787712 + ], + [ + 5206.940810333765, + 5187.130641787712 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.138243300836, + "max_x": 5207.040474616564, + "max_y": 5187.138243300836, + "center": [ + 5206.990642475164, + 5187.138243300836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.138243300836 + ], + [ + 5206.940810333765, + 5187.138243300836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.130641787712, + "max_x": 5207.048076129723, + "max_y": 5187.138243300836, + "center": [ + 5207.044275373144, + 5187.134442544274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.138243300836 + ], + [ + 5207.048076129723, + 5187.130641787712 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.164003984129, + "max_x": 5206.940810333765, + "max_y": 5187.164003984129, + "center": [ + 5206.907870443658, + 5187.164003984129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.164003984129 + ], + [ + 5206.940810333765, + 5187.164003984129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.6702703710325, + "min_y": 5187.3747595165605, + "max_x": 5206.940810333839, + "max_y": 5187.645299479367, + "center": [ + 5206.805540352436, + 5187.510029497964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.805540352436, + 5187.510029497964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.444572024036, + "max_x": 5206.940810333765, + "max_y": 5187.575486971943, + "center": [ + 5206.940810333765, + 5187.510029497989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.940810333765, + 5187.444572024036 + ], + [ + 5206.940810333765, + 5187.575486971943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.444572024036, + "max_x": 5206.874930553551, + "max_y": 5187.575486971943, + "center": [ + 5206.874930553551, + 5187.510029497989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.444572024036 + ], + [ + 5206.874930553551, + 5187.575486971943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.444572024036, + "max_x": 5206.940810333765, + "max_y": 5187.444572024036, + "center": [ + 5206.907870443658, + 5187.444572024036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.444572024036 + ], + [ + 5206.940810333765, + 5187.444572024036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.477934220401, + "max_x": 5207.048076129723, + "max_y": 5187.477934220401, + "center": [ + 5206.994443231744, + 5187.477934220401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.477934220401 + ], + [ + 5206.940810333765, + 5187.477934220401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.470332707377, + "max_x": 5207.040474616564, + "max_y": 5187.470332707377, + "center": [ + 5206.990642475164, + 5187.470332707377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.470332707377 + ], + [ + 5206.940810333765, + 5187.470332707377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.542124775494, + "max_x": 5207.048076129723, + "max_y": 5187.542124775494, + "center": [ + 5206.994443231744, + 5187.542124775494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.542124775494 + ], + [ + 5206.940810333765, + 5187.542124775494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.549726288651, + "max_x": 5207.040474616564, + "max_y": 5187.549726288651, + "center": [ + 5206.990642475164, + 5187.549726288651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.549726288651 + ], + [ + 5206.940810333765, + 5187.549726288651 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.470332707377, + "max_x": 5207.040474616564, + "max_y": 5187.549726288651, + "center": [ + 5207.040474616564, + 5187.510029498014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.549726288651 + ], + [ + 5207.040474616564, + 5187.470332707377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.048076129723, + "min_y": 5187.477934220401, + "max_x": 5207.048076129723, + "max_y": 5187.542124775494, + "center": [ + 5207.048076129723, + 5187.5100294979475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.542124775494 + ], + [ + 5207.048076129723, + 5187.477934220401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.470332707377, + "max_x": 5207.048076129723, + "max_y": 5187.477934220401, + "center": [ + 5207.044275373144, + 5187.474133463889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.470332707377 + ], + [ + 5207.048076129723, + 5187.477934220401 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.542124775494, + "max_x": 5207.048076129723, + "max_y": 5187.549726288651, + "center": [ + 5207.044275373144, + 5187.545925532073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.549726288651 + ], + [ + 5207.048076129723, + 5187.542124775494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.575486971943, + "max_x": 5206.940810333765, + "max_y": 5187.575486971943, + "center": [ + 5206.907870443658, + 5187.575486971943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.575486971943 + ], + [ + 5206.940810333765, + 5187.575486971943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.854362889208, + "min_y": 5187.510029497964, + "max_x": 5206.960682353551, + "max_y": 5187.510029497964, + "center": [ + 5206.907522621379, + 5187.510029497964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.854362889208, + 5187.510029497964 + ], + [ + 5206.960682353551, + 5187.510029497964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.782023171216, + "min_y": 5187.748653877247, + "max_x": 5206.870707490764, + "max_y": 5187.748653877247, + "center": [ + 5206.82636533099, + 5187.748653877247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.782023171216, + 5187.748653877247 + ], + [ + 5206.870707490764, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.548190709196, + "min_y": 5187.683196403318, + "max_x": 5207.073556966935, + "max_y": 5187.683196403318, + "center": [ + 5206.810873838065, + 5187.683196403318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.073556966935, + 5187.683196403318 + ], + [ + 5206.548190709196, + 5187.683196403318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5187.62407352366, + "max_x": 5206.6173237207, + "max_y": 5187.742319283028, + "center": [ + 5206.6173237207, + 5187.6831964033445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.742319283028 + ], + [ + 5206.6173237207, + 5187.62407352366 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5187.607181272305, + "max_x": 5206.777800108368, + "max_y": 5187.818334414008, + "center": [ + 5206.672223537516, + 5187.712757843156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.712757843156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.643499612649, + "max_x": 5206.773577045566, + "max_y": 5187.643499612649, + "center": [ + 5206.746127137125, + 5187.643499612649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.643499612649 + ], + [ + 5206.718677228685, + 5187.643499612649 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.718677228685, + "min_y": 5187.722893193921, + "max_x": 5206.773577045566, + "max_y": 5187.722893193921, + "center": [ + 5206.746127137125, + 5187.722893193921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.722893193921 + ], + [ + 5206.718677228685, + 5187.722893193921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.62407352366, + "max_x": 5206.6173237207, + "max_y": 5187.62407352366, + "center": [ + 5206.594096875113, + 5187.62407352366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.62407352366 + ], + [ + 5206.6173237207, + 5187.62407352366 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.683196403318, + "max_x": 5206.6173237207, + "max_y": 5187.683196403318, + "center": [ + 5206.591985343719, + 5187.683196403318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.683196403318 + ], + [ + 5206.566646966738, + 5187.683196403318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.566646966665, + "min_y": 5187.5480583925955, + "max_x": 5206.777800108368, + "max_y": 5187.759211534299, + "center": [ + 5206.672223537516, + 5187.653634963447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.672223537516, + 5187.653634963447 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.566646966738, + "min_y": 5187.653634963447, + "max_x": 5206.566646966738, + "max_y": 5187.712757843156, + "center": [ + 5206.566646966738, + 5187.683196403302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.566646966738, + 5187.712757843156 + ], + [ + 5206.566646966738, + 5187.653634963447 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.710231103036, + "min_y": 5187.740207751581, + "max_x": 5206.718677228685, + "max_y": 5187.748653877247, + "center": [ + 5206.71445416586, + 5187.744430814414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.718677228685, + 5187.740207751581 + ], + [ + 5206.710231103036, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.773577045566, + "min_y": 5187.740207751581, + "max_x": 5206.782023171216, + "max_y": 5187.748653877247, + "center": [ + 5206.777800108391, + 5187.744430814414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.773577045566, + 5187.740207751581 + ], + [ + 5206.782023171216, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.570870029525, + "min_y": 5187.742319283028, + "max_x": 5206.6173237207, + "max_y": 5187.742319283028, + "center": [ + 5206.594096875113, + 5187.742319283028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.570870029525, + 5187.742319283028 + ], + [ + 5206.6173237207, + 5187.742319283028 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.6173237207, + "min_y": 5187.744430814423, + "max_x": 5206.62154678349, + "max_y": 5187.748653877247, + "center": [ + 5206.619435252095, + 5187.746542345835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.6173237207, + 5187.744430814423 + ], + [ + 5206.62154678349, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.62154678349, + "min_y": 5187.748653877247, + "max_x": 5206.710231103036, + "max_y": 5187.748653877247, + "center": [ + 5206.665888943263, + 5187.748653877247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.710231103036, + 5187.748653877247 + ], + [ + 5206.62154678349, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.617738929356, + "max_x": 5206.940810333765, + "max_y": 5187.748653877247, + "center": [ + 5206.940810333765, + 5187.683196403302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.940810333765, + 5187.617738929356 + ], + [ + 5206.940810333765, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.6702703710325, + "min_y": 5187.547926421915, + "max_x": 5206.940810333839, + "max_y": 5187.818466384721, + "center": [ + 5206.805540352436, + 5187.683196403318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.805540352436, + 5187.683196403318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.617738929356, + "max_x": 5206.874930553551, + "max_y": 5187.748653877247, + "center": [ + 5206.874930553551, + 5187.683196403302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.617738929356 + ], + [ + 5206.874930553551, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.651101125806, + "max_x": 5207.048076129723, + "max_y": 5187.651101125806, + "center": [ + 5206.994443231744, + 5187.651101125806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.651101125806 + ], + [ + 5206.940810333765, + 5187.651101125806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.643499612649, + "max_x": 5207.040474616564, + "max_y": 5187.643499612649, + "center": [ + 5206.990642475164, + 5187.643499612649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.643499612649 + ], + [ + 5206.940810333765, + 5187.643499612649 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.715291680881, + "max_x": 5207.048076129723, + "max_y": 5187.715291680881, + "center": [ + 5206.994443231744, + 5187.715291680881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.715291680881 + ], + [ + 5206.940810333765, + 5187.715291680881 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.940810333765, + "min_y": 5187.722893193921, + "max_x": 5207.040474616564, + "max_y": 5187.722893193921, + "center": [ + 5206.990642475164, + 5187.722893193921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.722893193921 + ], + [ + 5206.940810333765, + 5187.722893193921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.643499612649, + "max_x": 5207.040474616564, + "max_y": 5187.722893193921, + "center": [ + 5207.040474616564, + 5187.6831964032845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.722893193921 + ], + [ + 5207.040474616564, + 5187.643499612649 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.715291680881, + "max_x": 5207.048076129723, + "max_y": 5187.722893193921, + "center": [ + 5207.044275373144, + 5187.719092437401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.722893193921 + ], + [ + 5207.048076129723, + 5187.715291680881 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.040474616564, + "min_y": 5187.643499612649, + "max_x": 5207.048076129723, + "max_y": 5187.651101125806, + "center": [ + 5207.044275373144, + 5187.647300369228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.040474616564, + 5187.643499612649 + ], + [ + 5207.048076129723, + 5187.651101125806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.048076129723, + "min_y": 5187.651101125806, + "max_x": 5207.048076129723, + "max_y": 5187.715291680881, + "center": [ + 5207.048076129723, + 5187.683196403344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.048076129723, + 5187.715291680881 + ], + [ + 5207.048076129723, + 5187.651101125806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.854362889208, + "min_y": 5187.683196403318, + "max_x": 5206.960682353551, + "max_y": 5187.683196403318, + "center": [ + 5206.907522621379, + 5187.683196403318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.854362889208, + 5187.683196403318 + ], + [ + 5206.960682353551, + 5187.683196403318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.617738929356, + "max_x": 5206.940810333765, + "max_y": 5187.617738929356, + "center": [ + 5206.907870443658, + 5187.617738929356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.617738929356 + ], + [ + 5206.940810333765, + 5187.617738929356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.870707490764, + "min_y": 5187.744430814423, + "max_x": 5206.874930553551, + "max_y": 5187.748653877247, + "center": [ + 5206.872819022157, + 5187.746542345835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.744430814423 + ], + [ + 5206.870707490764, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.748653877247, + "max_x": 5206.940810333765, + "max_y": 5187.748653877247, + "center": [ + 5206.907870443658, + 5187.748653877247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.874930553551, + 5187.748653877247 + ], + [ + 5206.940810333765, + 5187.748653877247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.981407917529, + "min_y": 5187.096434978805, + "max_x": 5207.981407917529, + "max_y": 5187.609676718516, + "center": [ + 5207.981407917529, + 5187.35305584866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.981407917529, + 5187.609676718516 + ], + [ + 5207.981407917529, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.053921642517, + "min_y": 5187.542107713149, + "max_x": 5208.121490647862, + "max_y": 5187.609676718494, + "center": [ + 5208.087706145189, + 5187.575892215821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.087706145189, + 5187.575892215821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.640205719601, + "min_y": 5186.976493014027, + "max_x": 5208.640205719601, + "max_y": 5187.216376943533, + "center": [ + 5208.640205719601, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5186.976493014027 + ], + [ + 5208.640205719601, + 5187.216376943533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.981407917529, + "min_y": 5186.578970176168, + "max_x": 5207.981407917529, + "max_y": 5187.096434978805, + "center": [ + 5207.981407917529, + 5186.837702577486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.981407917529, + 5186.578970176168 + ], + [ + 5207.981407917529, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.260130064601, + "min_y": 5186.87582385983, + "max_x": 5208.260130064601, + "max_y": 5187.096434978805, + "center": [ + 5208.260130064601, + 5186.986129419318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.260130064601, + 5186.87582385983 + ], + [ + 5208.260130064601, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519796076766, + "min_y": 5186.976493014027, + "max_x": 5208.519796076766, + "max_y": 5187.216376943533, + "center": [ + 5208.519796076766, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519796076766, + 5186.976493014027 + ], + [ + 5208.519796076766, + 5187.216376943533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.509660725997, + "min_y": 5186.986628364842, + "max_x": 5208.509660725997, + "max_y": 5187.206241592717, + "center": [ + 5208.509660725997, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.509660725997, + 5186.986628364842 + ], + [ + 5208.509660725997, + 5187.206241592717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.319252944244, + "min_y": 5186.928768913873, + "max_x": 5208.319252944244, + "max_y": 5187.104462288322, + "center": [ + 5208.319252944244, + 5187.016615601097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.319252944244, + 5186.928768913873 + ], + [ + 5208.319252944244, + 5187.104462288322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.319252944244, + "min_y": 5186.986628364842, + "max_x": 5208.509660725997, + "max_y": 5186.986628364842, + "center": [ + 5208.41445683512, + 5186.986628364842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.509660725997, + 5186.986628364842 + ], + [ + 5208.319252944244, + 5186.986628364842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.118318048105, + "min_y": 5186.598461183314, + "max_x": 5208.225824121608, + "max_y": 5186.833488331671, + "center": [ + 5208.172071084857, + 5186.715974757492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.118318048105, + 5186.598461183314 + ], + [ + 5208.225824121608, + 5186.833488331671 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.981407917529, + "min_y": 5186.578970176168, + "max_x": 5208.087706145189, + "max_y": 5186.578970176168, + "center": [ + 5208.034557031359, + 5186.578970176168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.087706145189, + 5186.578970176168 + ], + [ + 5207.981407917529, + 5186.578970176168 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FEE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.053921642517, + "min_y": 5186.578970176191, + "max_x": 5208.121490647862, + "max_y": 5186.646539181536, + "center": [ + 5208.087706145189, + 5186.612754678864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.087706145189, + 5186.612754678864 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.260130064601, + "min_y": 5186.928768913873, + "max_x": 5208.319252944244, + "max_y": 5186.928768913873, + "center": [ + 5208.289691504422, + 5186.928768913873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.319252944244, + 5186.928768913873 + ], + [ + 5208.260130064601, + 5186.928768913873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.227164384256, + "min_y": 5186.835526258248, + "max_x": 5208.257996651819, + "max_y": 5186.87021255934, + "center": [ + 5208.242580518037, + 5186.8528694087945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.227164384256, + 5186.835526258248 + ], + [ + 5208.257996651819, + 5186.87021255934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.225030971576, + "min_y": 5186.821468832122, + "max_x": 5208.241923222913, + "max_y": 5186.838361083459, + "center": [ + 5208.233477097245, + 5186.829914957791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.233477097245, + 5186.829914957791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.243237813251, + "min_y": 5186.867377734162, + "max_x": 5208.260130064587, + "max_y": 5186.884269985499, + "center": [ + 5208.251683938919, + 5186.87582385983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.251683938919, + 5186.87582385983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.509660725997, + "min_y": 5186.976493014027, + "max_x": 5208.519796076766, + "max_y": 5186.986628364842, + "center": [ + 5208.514728401382, + 5186.981560689434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519796076766, + 5186.976493014027 + ], + [ + 5208.509660725997, + 5186.986628364842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519796076766, + "min_y": 5186.976493014027, + "max_x": 5208.640205719601, + "max_y": 5186.976493014027, + "center": [ + 5208.580000898184, + 5186.976493014027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5186.976493014027 + ], + [ + 5208.519796076766, + 5186.976493014027 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.319252944244, + "min_y": 5187.206241592717, + "max_x": 5208.509660725997, + "max_y": 5187.206241592717, + "center": [ + 5208.41445683512, + 5187.206241592717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.509660725997, + 5187.206241592717 + ], + [ + 5208.319252944244, + 5187.206241592717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.227164384256, + "min_y": 5187.322657398186, + "max_x": 5208.257996651819, + "max_y": 5187.357343699312, + "center": [ + 5208.242580518037, + 5187.340000548749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.227164384256, + 5187.357343699312 + ], + [ + 5208.257996651819, + 5187.322657398186 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.260130064601, + "min_y": 5187.096434978805, + "max_x": 5208.260130064601, + "max_y": 5187.31704609773, + "center": [ + 5208.260130064601, + 5187.206740538268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.260130064601, + 5187.31704609773 + ], + [ + 5208.260130064601, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.319252944244, + "min_y": 5187.104462288322, + "max_x": 5208.319252944244, + "max_y": 5187.264101043737, + "center": [ + 5208.319252944244, + 5187.18428166603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.319252944244, + 5187.264101043737 + ], + [ + 5208.319252944244, + 5187.104462288322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.260130064601, + "min_y": 5187.264101043737, + "max_x": 5208.319252944244, + "max_y": 5187.264101043737, + "center": [ + 5208.289691504422, + 5187.264101043737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.319252944244, + 5187.264101043737 + ], + [ + 5208.260130064601, + 5187.264101043737 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.243237813251, + "min_y": 5187.3085999720615, + "max_x": 5208.260130064587, + "max_y": 5187.325492223398, + "center": [ + 5208.251683938919, + 5187.31704609773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.251683938919, + 5187.31704609773 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.118318048105, + "min_y": 5187.359381625888, + "max_x": 5208.225824121608, + "max_y": 5187.59018571137, + "center": [ + 5208.172071084857, + 5187.474783668629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.118318048105, + 5187.59018571137 + ], + [ + 5208.225824121608, + 5187.359381625888 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.509660725997, + "min_y": 5187.206241592717, + "max_x": 5208.519796076766, + "max_y": 5187.216376943533, + "center": [ + 5208.514728401382, + 5187.211309268125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519796076766, + 5187.216376943533 + ], + [ + 5208.509660725997, + 5187.206241592717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519796076766, + "min_y": 5187.216376943533, + "max_x": 5208.640205719601, + "max_y": 5187.216376943533, + "center": [ + 5208.580000898184, + 5187.216376943533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5187.216376943533 + ], + [ + 5208.519796076766, + 5187.216376943533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.981407917529, + "min_y": 5187.609676718516, + "max_x": 5208.087706145189, + "max_y": 5187.609676718516, + "center": [ + 5208.034557031359, + 5187.609676718516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.087706145189, + 5187.609676718516 + ], + [ + 5207.981407917529, + 5187.609676718516 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "552FFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5186.610782752829, + "max_x": 5207.981407917529, + "max_y": 5186.610782752829, + "center": [ + 5207.42816923554, + 5186.610782752829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.981407917529, + 5186.610782752829 + ], + [ + 5206.874930553551, + 5186.610782752829 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553000", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.435201856666, + "min_y": 5187.582087204696, + "max_x": 5207.981407917529, + "max_y": 5187.582087204696, + "center": [ + 5207.708304887097, + 5187.582087204696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.981407917529, + 5187.582087204696 + ], + [ + 5207.435201856666, + 5187.582087204696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553001", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.874930553551, + "min_y": 5187.582087204696, + "max_x": 5207.148033584036, + "max_y": 5187.582087204696, + "center": [ + 5207.011482068794, + 5187.582087204696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.148033584036, + 5187.582087204696 + ], + [ + 5206.874930553551, + 5187.582087204696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553002", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.435201856666, + "min_y": 5187.582087204696, + "max_x": 5207.435201856666, + "max_y": 5187.641210084355, + "center": [ + 5207.435201856666, + 5187.611648644526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.435201856666, + 5187.641210084355 + ], + [ + 5207.435201856666, + 5187.582087204696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553003", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.148033584036, + "min_y": 5187.582087204696, + "max_x": 5207.148033584036, + "max_y": 5187.641210084355, + "center": [ + 5207.148033584036, + 5187.611648644526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.148033584036, + 5187.641210084355 + ], + [ + 5207.148033584036, + 5187.582087204696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553004", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.002289803067, + "min_y": 5187.543944954837, + "max_x": 5207.5809456376, + "max_y": 5188.12260078937, + "center": [ + 5207.291617720333, + 5187.833272872103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.291617720333, + 5187.833272872103 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553005", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.17568941032, + "min_y": 5187.766329092635, + "max_x": 5207.17568941032, + "max_y": 5187.886738735392, + "center": [ + 5207.17568941032, + 5187.826533914013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.17568941032, + 5187.886738735392 + ], + [ + 5207.17568941032, + 5187.766329092635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553006", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.407546030379, + "min_y": 5187.766329092635, + "max_x": 5207.407546030379, + "max_y": 5187.886738735392, + "center": [ + 5207.407546030379, + 5187.826533914013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.407546030379, + 5187.886738735392 + ], + [ + 5207.407546030379, + 5187.766329092635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553007", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.397410679612, + "min_y": 5187.658565610291, + "max_x": 5207.397410679612, + "max_y": 5187.756193741788, + "center": [ + 5207.397410679612, + 5187.70737967604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.397410679612, + 5187.756193741788 + ], + [ + 5207.397410679612, + 5187.658565610291 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553008", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.397410679612, + "min_y": 5187.756193741788, + "max_x": 5207.407546030379, + "max_y": 5187.766329092635, + "center": [ + 5207.402478354996, + 5187.761261417211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.407546030379, + 5187.766329092635 + ], + [ + 5207.397410679612, + 5187.756193741788 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553009", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.185824761089, + "min_y": 5187.658565610291, + "max_x": 5207.185824761089, + "max_y": 5187.756193741788, + "center": [ + 5207.185824761089, + 5187.70737967604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.185824761089, + 5187.756193741788 + ], + [ + 5207.185824761089, + 5187.658565610291 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55300A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.17568941032, + "min_y": 5187.756193741788, + "max_x": 5207.185824761089, + "max_y": 5187.766329092635, + "center": [ + 5207.1807570857045, + 5187.761261417211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.17568941032, + 5187.766329092635 + ], + [ + 5207.185824761089, + 5187.756193741788 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55300B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.539434562324, + "min_y": 5187.596009550667, + "max_x": 5207.892636181274, + "max_y": 5187.596009550667, + "center": [ + 5207.716035371799, + 5187.596009550667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.539434562324, + 5187.596009550667 + ], + [ + 5207.892636181274, + 5187.596009550667 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55300C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.539041331289, + "min_y": 5187.407223797633, + "max_x": 5207.893029412309, + "max_y": 5187.761211878654, + "center": [ + 5207.716035371799, + 5187.584217838144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.716035371799, + 5187.584217838144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55300D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5207.672669834952, + "min_y": 5187.630944975147, + "max_x": 5207.759400908646, + "max_y": 5187.717676048841, + "center": [ + 5207.716035371799, + 5187.674310511994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.716035371799, + 5187.674310511994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55300F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.488059781359, + "min_y": 5186.465641025677, + "max_x": 5207.944010962237, + "max_y": 5186.465641025677, + "center": [ + 5207.716035371798, + 5186.465641025677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.488059781359, + 5186.465641025677 + ], + [ + 5207.944010962237, + 5186.465641025677 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553010", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.539434562324, + "min_y": 5186.597939057622, + "max_x": 5207.539434562324, + "max_y": 5187.596009550667, + "center": [ + 5207.539434562324, + 5187.096974304144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.539434562324, + 5186.597939057622 + ], + [ + 5207.539434562324, + 5187.596009550667 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553011", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5207.892636181274, + "min_y": 5186.597939057622, + "max_x": 5207.892636181274, + "max_y": 5187.596009550667, + "center": [ + 5207.892636181274, + 5187.096974304144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.892636181274, + 5186.597939057622 + ], + [ + 5207.892636181274, + 5187.596009550667 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553012", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.195783676225, + "min_y": 5187.921941023498, + "max_x": 5207.291617720333, + "max_y": 5189.574866792976, + "center": [ + 5206.243700698279, + 5188.748403908237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.195783676225, + 5189.574866792976 + ], + [ + 5206.89025224431, + 5189.574866792976 + ], + [ + 5207.291617720333, + 5189.173501316989 + ], + [ + 5207.291617720333, + 5187.921941023498 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553013", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.643344230114, + "min_y": 5187.902318904063, + "max_x": 5207.203317315627, + "max_y": 5189.486566388239, + "center": [ + 5206.42333077287, + 5188.6944426461505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.643344230114, + 5189.486566388239 + ], + [ + 5206.89025224431, + 5189.486566388239 + ], + [ + 5207.203317315627, + 5189.173501316989 + ], + [ + 5207.203317315627, + 5187.902318904063 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553014", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.197387501392, + "min_y": 5189.663167197664, + "max_x": 5205.233902489448, + "max_y": 5189.663167197664, + "center": [ + 5205.21564499542, + 5189.663167197664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.197387501392, + 5189.663167197664 + ], + [ + 5205.233902489448, + 5189.663167197664 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553015", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5205.352348513337, + "min_y": 5187.902318904063, + "max_x": 5207.379918125102, + "max_y": 5189.663167197664, + "center": [ + 5206.366133319219, + 5188.782743050863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.352348513337, + 5189.663167197664 + ], + [ + 5206.89025224431, + 5189.663167197664 + ], + [ + 5207.379918125102, + 5189.173501316989 + ], + [ + 5207.379918125102, + 5187.902318904063 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553016", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.488768398231, + "min_y": 5186.369963467267, + "max_x": 5211.488768398231, + "max_y": 5186.390437899706, + "center": [ + 5211.488768398231, + 5186.380200683487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.488768398231, + 5186.390437899706 + ], + [ + 5211.488768398231, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553017", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.88190379869, + "min_y": 5186.369963467267, + "max_x": 5211.488768398231, + "max_y": 5186.369963467267, + "center": [ + 5211.1853360984605, + 5186.369963467267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.488768398231, + 5186.369963467267 + ], + [ + 5210.88190379869, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553018", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.88190379869, + "min_y": 5186.369963467267, + "max_x": 5210.88190379869, + "max_y": 5186.390437899706, + "center": [ + 5210.88190379869, + 5186.380200683487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.88190379869, + 5186.369963467267 + ], + [ + 5210.88190379869, + 5186.390437899706 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.051097590638, + "min_y": 5187.312041214945, + "max_x": 5211.319574606317, + "max_y": 5187.312041214945, + "center": [ + 5211.185336098477, + 5187.312041214945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.051097590638, + 5187.312041214945 + ], + [ + 5211.319574606317, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.051097590638, + "min_y": 5187.415301605604, + "max_x": 5211.319574606317, + "max_y": 5187.415301605604, + "center": [ + 5211.185336098477, + 5187.415301605604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.051097590638, + 5187.415301605604 + ], + [ + 5211.319574606317, + 5187.415301605604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.061423629737, + "min_y": 5187.301715175863, + "max_x": 5211.309248567186, + "max_y": 5187.301715175863, + "center": [ + 5211.185336098461, + 5187.301715175863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.061423629737, + 5187.301715175863 + ], + [ + 5211.309248567186, + 5187.301715175863 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.061423629737, + "min_y": 5187.281063097714, + "max_x": 5211.309248567186, + "max_y": 5187.281063097714, + "center": [ + 5211.185336098461, + 5187.281063097714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.061423629737, + 5187.281063097714 + ], + [ + 5211.309248567186, + 5187.281063097714 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.88190379869, + "min_y": 5186.390437899706, + "max_x": 5211.488768398231, + "max_y": 5186.390437899706, + "center": [ + 5211.1853360984605, + 5186.390437899706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.88190379869, + 5186.390437899706 + ], + [ + 5211.488768398231, + 5186.390437899706 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.185336098464, + "min_y": 5187.008937304989, + "max_x": 5211.185336098464, + "max_y": 5187.06914212641, + "center": [ + 5211.185336098464, + 5187.039039715699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5187.008937304989 + ], + [ + 5211.185336098464, + 5187.06914212641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55301F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5211.129721266804, + "min_y": 5186.974821239547, + "max_x": 5211.240950930323, + "max_y": 5187.103258191871, + "center": [ + 5211.185336098564, + 5187.039039715709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.240950930323, + 5187.006930477649 + ], + [ + 5211.185336098464, + 5186.974821239547 + ], + [ + 5211.129721266804, + 5187.006930477649 + ], + [ + 5211.129721266804, + 5187.071148953801 + ], + [ + 5211.185336098464, + 5187.103258191871 + ], + [ + 5211.240950930323, + 5187.071148953801 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553020", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5211.143192723486, + "min_y": 5186.996896340721, + "max_x": 5211.227479473442, + "max_y": 5187.081183090677, + "center": [ + 5211.185336098464, + 5187.039039715699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5187.039039715699 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553021", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.0717496688, + "min_y": 5186.842935945549, + "max_x": 5211.0717496688, + "max_y": 5187.183425077771, + "center": [ + 5211.0717496688, + 5187.01318051166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.0717496688, + 5187.183425077771 + ], + [ + 5211.0717496688, + 5186.842935945549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.0717496688, + "min_y": 5186.390437899706, + "max_x": 5211.0717496688, + "max_y": 5186.61853491352, + "center": [ + 5211.0717496688, + 5186.504486406613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.0717496688, + 5186.61853491352 + ], + [ + 5211.0717496688, + 5186.390437899706 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.298922528187, + "min_y": 5186.390437899706, + "max_x": 5211.298922528187, + "max_y": 5187.183425077771, + "center": [ + 5211.298922528187, + 5186.786931488738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.298922528187, + 5187.183425077771 + ], + [ + 5211.298922528187, + 5186.390437899706 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553024", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.185336098464, + "min_y": 5186.581483073092, + "max_x": 5211.185336098464, + "max_y": 5186.701892715883, + "center": [ + 5211.185336098464, + 5186.641687894487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.581483073092 + ], + [ + 5211.185336098464, + 5186.701892715883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553025", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.125131277077, + "min_y": 5186.641687894513, + "max_x": 5211.245540919912, + "max_y": 5186.641687894513, + "center": [ + 5211.185336098495, + 5186.641687894513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.245540919912, + 5186.641687894513 + ], + [ + 5211.125131277077, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553026", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.076967419949, + "min_y": 5186.533319215998, + "max_x": 5211.293704776979, + "max_y": 5186.750056573028, + "center": [ + 5211.185336098464, + 5186.641687894513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553027", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.086600191373, + "min_y": 5186.5429519874215, + "max_x": 5211.284072005556, + "max_y": 5186.740423801604, + "center": [ + 5211.185336098464, + 5186.641687894513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553028", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.0938247699405, + "min_y": 5186.550176565989, + "max_x": 5211.276847426988, + "max_y": 5186.7331992230365, + "center": [ + 5211.185336098464, + 5186.641687894513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553029", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.408264315839, + "min_y": 5186.369963467267, + "max_x": 5211.408264315839, + "max_y": 5186.390031741068, + "center": [ + 5211.408264315839, + 5186.379997604167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.408264315839, + 5186.369963467267 + ], + [ + 5211.408264315839, + 5186.390031741068 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.459639096798, + "min_y": 5186.369963467267, + "max_x": 5211.459639096798, + "max_y": 5186.390031741068, + "center": [ + 5211.459639096798, + 5186.379997604167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.459639096798, + 5186.369963467267 + ], + [ + 5211.459639096798, + 5186.390031741068 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.433951706316, + "min_y": 5186.329826919648, + "max_x": 5211.433951706316, + "max_y": 5186.430168288653, + "center": [ + 5211.433951706316, + 5186.37999760415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.433951706316, + 5186.430168288653 + ], + [ + 5211.433951706316, + 5186.329826919648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.09181794262, + "min_y": 5187.415301605604, + "max_x": 5211.09181794262, + "max_y": 5187.522091931126, + "center": [ + 5211.09181794262, + 5187.468696768365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.09181794262, + 5187.522091931126 + ], + [ + 5211.09181794262, + 5187.415301605604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.106668465178, + "min_y": 5187.6009878698405, + "max_x": 5211.147972621433, + "max_y": 5187.642292026096, + "center": [ + 5211.127320543305, + 5187.621639947968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.127320543305, + 5187.621639947968 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.10666846524, + "min_y": 5187.522091931126, + "max_x": 5211.10666846524, + "max_y": 5187.621639947968, + "center": [ + 5211.10666846524, + 5187.571865939547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.10666846524, + 5187.621639947968 + ], + [ + 5211.10666846524, + 5187.522091931126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55302F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.175010059466, + "min_y": 5187.312041214945, + "max_x": 5211.175010059466, + "max_y": 5187.415301605604, + "center": [ + 5211.175010059466, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.175010059466, + 5187.415301605604 + ], + [ + 5211.175010059466, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553030", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.169847039831, + "min_y": 5187.312041214945, + "max_x": 5211.169847039831, + "max_y": 5187.415301605604, + "center": [ + 5211.169847039831, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.169847039831, + 5187.415301605604 + ], + [ + 5211.169847039831, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553031", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.151260169607, + "min_y": 5187.312041214945, + "max_x": 5211.151260169607, + "max_y": 5187.415301605604, + "center": [ + 5211.151260169607, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.151260169607, + 5187.415301605604 + ], + [ + 5211.151260169607, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553032", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.146097150071, + "min_y": 5187.312041214945, + "max_x": 5211.146097150071, + "max_y": 5187.415301605604, + "center": [ + 5211.146097150071, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.146097150071, + 5187.415301605604 + ], + [ + 5211.146097150071, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553033", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.127510279812, + "min_y": 5187.312041214945, + "max_x": 5211.127510279812, + "max_y": 5187.415301605604, + "center": [ + 5211.127510279812, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.127510279812, + 5187.415301605604 + ], + [ + 5211.127510279812, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553034", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.123379864133, + "min_y": 5187.312041214945, + "max_x": 5211.123379864133, + "max_y": 5187.415301605604, + "center": [ + 5211.123379864133, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.123379864133, + 5187.415301605604 + ], + [ + 5211.123379864133, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553035", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.106858201685, + "min_y": 5187.312041214945, + "max_x": 5211.106858201685, + "max_y": 5187.415301605604, + "center": [ + 5211.106858201685, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.106858201685, + 5187.415301605604 + ], + [ + 5211.106858201685, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553036", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.10272778597, + "min_y": 5187.312041214945, + "max_x": 5211.10272778597, + "max_y": 5187.415301605604, + "center": [ + 5211.10272778597, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.10272778597, + 5187.415301605604 + ], + [ + 5211.10272778597, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553037", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.278854254431, + "min_y": 5187.415301605604, + "max_x": 5211.278854254431, + "max_y": 5187.522091931126, + "center": [ + 5211.278854254431, + 5187.468696768365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.278854254431, + 5187.522091931126 + ], + [ + 5211.278854254431, + 5187.415301605604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553038", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.222699575496, + "min_y": 5187.6009878698405, + "max_x": 5211.2640037317515, + "max_y": 5187.642292026096, + "center": [ + 5211.243351653624, + 5187.621639947968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.243351653624, + 5187.621639947968 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553039", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.264003731788, + "min_y": 5187.522091931126, + "max_x": 5211.264003731788, + "max_y": 5187.621639947968, + "center": [ + 5211.264003731788, + 5187.571865939547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.264003731788, + 5187.621639947968 + ], + [ + 5211.264003731788, + 5187.522091931126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.195662137594, + "min_y": 5187.312041214945, + "max_x": 5211.195662137594, + "max_y": 5187.415301605604, + "center": [ + 5211.195662137594, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.195662137594, + 5187.415301605604 + ], + [ + 5211.195662137594, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.200825157091, + "min_y": 5187.312041214945, + "max_x": 5211.200825157091, + "max_y": 5187.415301605604, + "center": [ + 5211.200825157091, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.200825157091, + 5187.415301605604 + ], + [ + 5211.200825157091, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.219412027452, + "min_y": 5187.312041214945, + "max_x": 5211.219412027452, + "max_y": 5187.415301605604, + "center": [ + 5211.219412027452, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.219412027452, + 5187.415301605604 + ], + [ + 5211.219412027452, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.224575046948, + "min_y": 5187.312041214945, + "max_x": 5211.224575046948, + "max_y": 5187.415301605604, + "center": [ + 5211.224575046948, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.224575046948, + 5187.415301605604 + ], + [ + 5211.224575046948, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.243161917312, + "min_y": 5187.312041214945, + "max_x": 5211.243161917312, + "max_y": 5187.415301605604, + "center": [ + 5211.243161917312, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.243161917312, + 5187.415301605604 + ], + [ + 5211.243161917312, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55303F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.247292332927, + "min_y": 5187.312041214945, + "max_x": 5211.247292332927, + "max_y": 5187.415301605604, + "center": [ + 5211.247292332927, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.247292332927, + 5187.415301605604 + ], + [ + 5211.247292332927, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553040", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.26381399544, + "min_y": 5187.312041214945, + "max_x": 5211.26381399544, + "max_y": 5187.415301605604, + "center": [ + 5211.26381399544, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.26381399544, + 5187.415301605604 + ], + [ + 5211.26381399544, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553041", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.267944411056, + "min_y": 5187.312041214945, + "max_x": 5211.267944411056, + "max_y": 5187.415301605604, + "center": [ + 5211.267944411056, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.267944411056, + 5187.415301605604 + ], + [ + 5211.267944411056, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553042", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.282400865803, + "min_y": 5187.312041214945, + "max_x": 5211.282400865803, + "max_y": 5187.415301605604, + "center": [ + 5211.282400865803, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.282400865803, + 5187.415301605604 + ], + [ + 5211.282400865803, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553043", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.285498677426, + "min_y": 5187.312041214945, + "max_x": 5211.285498677426, + "max_y": 5187.415301605604, + "center": [ + 5211.285498677426, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.285498677426, + 5187.415301605604 + ], + [ + 5211.285498677426, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553044", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.09181794262, + "min_y": 5187.522091931126, + "max_x": 5211.278854254431, + "max_y": 5187.522091931126, + "center": [ + 5211.185336098526, + 5187.522091931126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.09181794262, + 5187.522091931126 + ], + [ + 5211.278854254431, + 5187.522091931126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553045", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.127320543305, + "min_y": 5187.642292026117, + "max_x": 5211.243351653624, + "max_y": 5187.642292026117, + "center": [ + 5211.185336098464, + 5187.642292026117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.127320543305, + 5187.642292026117 + ], + [ + 5211.243351653624, + 5187.642292026117 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553046", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.08827133132, + "min_y": 5187.312041214945, + "max_x": 5211.08827133132, + "max_y": 5187.415301605604, + "center": [ + 5211.08827133132, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.08827133132, + 5187.415301605604 + ], + [ + 5211.08827133132, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553047", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.085173519595, + "min_y": 5187.312041214945, + "max_x": 5211.085173519595, + "max_y": 5187.415301605604, + "center": [ + 5211.085173519595, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.085173519595, + 5187.415301605604 + ], + [ + 5211.085173519595, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553048", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.070717064784, + "min_y": 5187.312041214945, + "max_x": 5211.070717064784, + "max_y": 5187.415301605604, + "center": [ + 5211.070717064784, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.070717064784, + 5187.415301605604 + ], + [ + 5211.070717064784, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553049", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.319574606317, + "min_y": 5187.312041214945, + "max_x": 5211.319574606317, + "max_y": 5187.415301605604, + "center": [ + 5211.319574606317, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.319574606317, + 5187.415301605604 + ], + [ + 5211.319574606317, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.29995513214, + "min_y": 5187.312041214945, + "max_x": 5211.29995513214, + "max_y": 5187.415301605604, + "center": [ + 5211.29995513214, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.29995513214, + 5187.415301605604 + ], + [ + 5211.29995513214, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.303052943796, + "min_y": 5187.312041214945, + "max_x": 5211.303052943796, + "max_y": 5187.415301605604, + "center": [ + 5211.303052943796, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.303052943796, + 5187.415301605604 + ], + [ + 5211.303052943796, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.309248567186, + "min_y": 5187.301715175863, + "max_x": 5211.319574606317, + "max_y": 5187.312041214945, + "center": [ + 5211.314411586751, + 5187.306878195404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.319574606317, + 5187.312041214945 + ], + [ + 5211.309248567186, + 5187.301715175863 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.155233687834, + "min_y": 5187.039039715699, + "max_x": 5211.215438509192, + "max_y": 5187.039039715699, + "center": [ + 5211.185336098513, + 5187.039039715699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.215438509192, + 5187.039039715699 + ], + [ + 5211.155233687834, + 5187.039039715699 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.8626473777185, + "min_y": 5186.558699714417, + "max_x": 5211.50802481921, + "max_y": 5187.204077155909, + "center": [ + 5211.185336098464, + 5186.881388435163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.881388435163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55304F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.08930393521, + "min_y": 5187.189456340226, + "max_x": 5211.08930393521, + "max_y": 5187.281063097714, + "center": [ + 5211.08930393521, + 5187.235259718969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.08930393521, + 5187.281063097714 + ], + [ + 5211.08930393521, + 5187.189456340226 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553050", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.281368261818, + "min_y": 5187.189456340226, + "max_x": 5211.281368261818, + "max_y": 5187.281063097714, + "center": [ + 5211.281368261818, + 5187.235259718969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.281368261818, + 5187.281063097714 + ], + [ + 5211.281368261818, + 5187.189456340226 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553051", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.139394295682, + "min_y": 5187.20079000251, + "max_x": 5211.231277901372, + "max_y": 5187.20079000251, + "center": [ + 5211.185336098527, + 5187.20079000251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.139394295682, + 5187.20079000251 + ], + [ + 5211.231277901372, + 5187.20079000251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553052", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.8626473777185, + "min_y": 5186.558699714417, + "max_x": 5211.50802481921, + "max_y": 5187.204077155909, + "center": [ + 5211.185336098464, + 5186.881388435163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.881388435163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553053", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.309248567186, + "min_y": 5187.281063097714, + "max_x": 5211.309248567186, + "max_y": 5187.301715175863, + "center": [ + 5211.309248567186, + 5187.291389136788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.309248567186, + 5187.301715175863 + ], + [ + 5211.309248567186, + 5187.281063097714 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553054", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.936720490705, + "min_y": 5186.329826919648, + "max_x": 5210.936720490705, + "max_y": 5186.430168288653, + "center": [ + 5210.936720490705, + 5186.37999760415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.936720490705, + 5186.430168288653 + ], + [ + 5210.936720490705, + 5186.329826919648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553055", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.911033100223, + "min_y": 5186.369963467267, + "max_x": 5210.911033100223, + "max_y": 5186.390031741068, + "center": [ + 5210.911033100223, + 5186.379997604167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.911033100223, + 5186.369963467267 + ], + [ + 5210.911033100223, + 5186.390031741068 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553056", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.962407881186, + "min_y": 5186.369963467267, + "max_x": 5210.962407881186, + "max_y": 5186.390031741068, + "center": [ + 5210.962407881186, + 5186.379997604167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.962407881186, + 5186.369963467267 + ], + [ + 5210.962407881186, + 5186.390031741068 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553057", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.051097590638, + "min_y": 5187.312041214945, + "max_x": 5211.051097590638, + "max_y": 5187.415301605604, + "center": [ + 5211.051097590638, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.051097590638, + 5187.415301605604 + ], + [ + 5211.051097590638, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553058", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.067619253192, + "min_y": 5187.312041214945, + "max_x": 5211.067619253192, + "max_y": 5187.415301605604, + "center": [ + 5211.067619253192, + 5187.363671410274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.067619253192, + 5187.415301605604 + ], + [ + 5211.067619253192, + 5187.312041214945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553059", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.051097590638, + "min_y": 5187.301715175863, + "max_x": 5211.061423629737, + "max_y": 5187.312041214945, + "center": [ + 5211.056260610188, + 5187.306878195404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.051097590638, + 5187.312041214945 + ], + [ + 5211.061423629737, + 5187.301715175863 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.061423629737, + "min_y": 5187.281063097714, + "max_x": 5211.061423629737, + "max_y": 5187.301715175863, + "center": [ + 5211.061423629737, + 5187.291389136788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.061423629737, + 5187.301715175863 + ], + [ + 5211.061423629737, + 5187.281063097714 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.640205719601, + "min_y": 5187.096434978805, + "max_x": 5208.88536115958, + "max_y": 5187.096434978805, + "center": [ + 5208.76278343959, + 5187.096434978805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5187.096434978805 + ], + [ + 5208.88536115958, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5210.274085706457, + "min_y": 5186.641687894513, + "max_x": 5211.185336098464, + "max_y": 5187.096434978805, + "center": [ + 5210.72971090246, + 5186.869061436659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5187.096434978805 + ], + [ + 5210.466700014313, + 5187.096434978805 + ], + [ + 5210.714330042114, + 5187.01093911933 + ], + [ + 5211.185336098464, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.640205719601, + "min_y": 5187.008134574067, + "max_x": 5208.88536115958, + "max_y": 5187.008134574067, + "center": [ + 5208.76278343959, + 5187.008134574067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5187.008134574067 + ], + [ + 5208.88536115958, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5210.274085706457, + "min_y": 5186.572196578842, + "max_x": 5211.130857492451, + "max_y": 5187.008134574067, + "center": [ + 5210.702471599454, + 5186.7901655764545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5187.008134574067 + ], + [ + 5210.466700014313, + 5187.008134574067 + ], + [ + 5210.659851435906, + 5186.94144780371 + ], + [ + 5211.130857492451, + 5186.572196578842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55305F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.640205719601, + "min_y": 5187.184735383493, + "max_x": 5208.88536115958, + "max_y": 5187.184735383493, + "center": [ + 5208.76278343959, + 5187.184735383493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.640205719601, + 5187.184735383493 + ], + [ + 5208.88536115958, + 5187.184735383493 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553060", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5210.274085706457, + "min_y": 5186.711179210132, + "max_x": 5211.239814704601, + "max_y": 5187.184735383493, + "center": [ + 5210.7569502055285, + 5186.947957296812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5187.184735383493 + ], + [ + 5210.466700014313, + 5187.184735383493 + ], + [ + 5210.768808648227, + 5187.080430434984 + ], + [ + 5211.239814704601, + 5186.711179210132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553061", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.399108968779, + "min_y": 5186.988066300266, + "max_x": 5209.451286480725, + "max_y": 5187.204803657294, + "center": [ + 5209.425197724751, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.451286480725, + 5187.204803657294 + ], + [ + 5209.399108968779, + 5187.204803657294 + ], + [ + 5209.399108968779, + 5186.988066300266 + ], + [ + 5209.451286480725, + 5186.988066300266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553062", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.760337897227, + "min_y": 5186.994086782407, + "max_x": 5209.840610992298, + "max_y": 5187.198783175151, + "center": [ + 5209.800474444763, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760337897227, + 5187.198783175151 + ], + [ + 5209.760337897227, + 5186.994086782407 + ], + [ + 5209.840610992298, + 5186.994086782407 + ], + [ + 5209.840610992298, + 5187.198783175151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553063", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.318835873705, + "min_y": 5186.994086782407, + "max_x": 5209.399108968779, + "max_y": 5187.198783175151, + "center": [ + 5209.358972421242, + 5187.096434978779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.399108968779, + 5187.198783175151 + ], + [ + 5209.399108968779, + 5186.994086782407 + ], + [ + 5209.318835873705, + 5186.994086782407 + ], + [ + 5209.318835873705, + 5187.198783175151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553064", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.198426230863, + "min_y": 5187.008134574067, + "max_x": 5209.318835873705, + "max_y": 5187.184735383493, + "center": [ + 5209.258631052284, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.318835873705, + 5187.184735383493 + ], + [ + 5209.198426230863, + 5187.184735383493 + ], + [ + 5209.198426230863, + 5187.008134574067 + ], + [ + 5209.318835873705, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553065", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.840610992298, + "min_y": 5187.008134574067, + "max_x": 5209.961020635141, + "max_y": 5187.184735383493, + "center": [ + 5209.900815813719, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.840610992298, + 5187.184735383493 + ], + [ + 5209.961020635141, + 5187.184735383493 + ], + [ + 5209.961020635141, + 5187.008134574067 + ], + [ + 5209.840610992298, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553066", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.708160385376, + "min_y": 5186.988066300266, + "max_x": 5209.760337897227, + "max_y": 5187.204803657294, + "center": [ + 5209.734249141302, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.708160385376, + 5186.988066300266 + ], + [ + 5209.760337897227, + 5186.988066300266 + ], + [ + 5209.760337897227, + 5187.204803657294 + ], + [ + 5209.708160385376, + 5187.204803657294 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553067", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.708160385376, + "min_y": 5186.967998026482, + "max_x": 5209.708160385376, + "max_y": 5186.988066300266, + "center": [ + 5209.708160385376, + 5186.978032163373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.708160385376, + 5186.967998026482 + ], + [ + 5209.708160385376, + 5186.988066300266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553068", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5186.967998026482, + "max_x": 5209.451286480725, + "max_y": 5186.988066300266, + "center": [ + 5209.451286480725, + 5186.978032163373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.451286480725, + 5186.967998026482 + ], + [ + 5209.451286480725, + 5186.988066300266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553069", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.49330616127, + "min_y": 5187.256981169181, + "max_x": 5209.6661407048, + "max_y": 5187.256981169181, + "center": [ + 5209.579723433035, + 5187.256981169181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.6661407048, + 5187.256981169181 + ], + [ + 5209.49330616127, + 5187.256981169181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.459313790225, + "min_y": 5186.959970716948, + "max_x": 5209.700133075805, + "max_y": 5186.959970716948, + "center": [ + 5209.579723433015, + 5186.959970716948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.700133075805, + 5186.959970716948 + ], + [ + 5209.459313790225, + 5186.959970716948 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5187.224871931044, + "max_x": 5209.708160385376, + "max_y": 5187.224871931044, + "center": [ + 5209.57972343305, + 5187.224871931044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.708160385376, + 5187.224871931044 + ], + [ + 5209.451286480725, + 5187.224871931044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.455300135409, + "min_y": 5187.228885585828, + "max_x": 5209.704146730596, + "max_y": 5187.228885585828, + "center": [ + 5209.579723433002, + 5187.228885585828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.704146730596, + 5187.228885585828 + ], + [ + 5209.455300135409, + 5187.228885585828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.682033966772, + "min_y": 5187.228885585828, + "max_x": 5209.684078456772, + "max_y": 5187.243197016137, + "center": [ + 5209.683056211772, + 5187.236041300983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.682033966772, + 5187.243197016137 + ], + [ + 5209.684078456772, + 5187.228885585828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.475368409263, + "min_y": 5187.228885585828, + "max_x": 5209.47741289923, + "max_y": 5187.243197016137, + "center": [ + 5209.476390654247, + 5187.236041300983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.47741289923, + 5187.243197016137 + ], + [ + 5209.475368409263, + 5187.228885585828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55306F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5187.016161883633, + "max_x": 5209.648660217374, + "max_y": 5187.176708073974, + "center": [ + 5209.648660217374, + 5187.096434978803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.648660217374, + 5187.176708073974 + ], + [ + 5209.648660217374, + 5187.016161883633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553070", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.510786648623, + "min_y": 5187.016161883633, + "max_x": 5209.510786648623, + "max_y": 5187.176708073974, + "center": [ + 5209.510786648623, + 5187.096434978803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.510786648623, + 5187.176708073974 + ], + [ + 5209.510786648623, + 5187.016161883633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553071", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5187.176708073974, + "max_x": 5209.760337897227, + "max_y": 5187.176708073974, + "center": [ + 5209.7044990573, + 5187.176708073974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760337897227, + 5187.176708073974 + ], + [ + 5209.648660217374, + 5187.176708073974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553072", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5187.096434978805, + "max_x": 5209.760337897227, + "max_y": 5187.096434978805, + "center": [ + 5209.7044990573, + 5187.096434978805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760337897227, + 5187.096434978805 + ], + [ + 5209.648660217374, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553073", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5187.016161883633, + "max_x": 5209.760337897227, + "max_y": 5187.016161883633, + "center": [ + 5209.7044990573, + 5187.016161883633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.760337897227, + 5187.016161883633 + ], + [ + 5209.648660217374, + 5187.016161883633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553074", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.708160385376, + "min_y": 5187.204803657294, + "max_x": 5209.708160385376, + "max_y": 5187.224871931044, + "center": [ + 5209.708160385376, + 5187.2148377941685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.708160385376, + 5187.204803657294 + ], + [ + 5209.708160385376, + 5187.224871931044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553075", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5187.204803657294, + "max_x": 5209.451286480725, + "max_y": 5187.224871931044, + "center": [ + 5209.451286480725, + 5187.2148377941685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.451286480725, + 5187.204803657294 + ], + [ + 5209.451286480725, + 5187.224871931044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553076", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.399108968779, + "min_y": 5187.176708073974, + "max_x": 5209.510786648623, + "max_y": 5187.176708073974, + "center": [ + 5209.454947808701, + 5187.176708073974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.510786648623, + 5187.176708073974 + ], + [ + 5209.399108968779, + 5187.176708073974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553077", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.399108968779, + "min_y": 5187.096434978805, + "max_x": 5209.510786648623, + "max_y": 5187.096434978805, + "center": [ + 5209.454947808701, + 5187.096434978805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.510786648623, + 5187.096434978805 + ], + [ + 5209.399108968779, + 5187.096434978805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553078", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.399108968779, + "min_y": 5187.016161883633, + "max_x": 5209.510786648623, + "max_y": 5187.016161883633, + "center": [ + 5209.454947808701, + 5187.016161883633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.510786648623, + 5187.016161883633 + ], + [ + 5209.399108968779, + 5187.016161883633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553079", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5187.176708073974, + "max_x": 5209.708160385376, + "max_y": 5187.204803657294, + "center": [ + 5209.678410301374, + 5187.190755865634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.708160385376, + 5187.204803657294 + ], + [ + 5209.648660217374, + 5187.176708073974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.648660217374, + "min_y": 5186.988066300266, + "max_x": 5209.708160385376, + "max_y": 5187.016161883633, + "center": [ + 5209.678410301374, + 5187.002114091949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.648660217374, + 5187.016161883633 + ], + [ + 5209.708160385376, + 5186.988066300266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5186.988066300266, + "max_x": 5209.510786648623, + "max_y": 5187.016161883633, + "center": [ + 5209.481036564674, + 5187.002114091949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.510786648623, + 5187.016161883633 + ], + [ + 5209.451286480725, + 5186.988066300266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5187.176708073974, + "max_x": 5209.510786648623, + "max_y": 5187.204803657294, + "center": [ + 5209.481036564674, + 5187.190755865634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.451286480725, + 5187.204803657294 + ], + [ + 5209.510786648623, + 5187.176708073974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.451286480725, + "min_y": 5187.224871931044, + "max_x": 5209.455300135409, + "max_y": 5187.228885585828, + "center": [ + 5209.453293308066, + 5187.226878758436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.455300135409, + 5187.228885585828 + ], + [ + 5209.451286480725, + 5187.224871931044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.704146730596, + "min_y": 5187.224871931044, + "max_x": 5209.708160385376, + "max_y": 5187.228885585828, + "center": [ + 5209.706153557986, + 5187.226878758436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.704146730596, + 5187.228885585828 + ], + [ + 5209.708160385376, + 5187.224871931044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55307F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.65008608576, + "min_y": 5187.22487193109, + "max_x": 5209.682195323839, + "max_y": 5187.256981169168, + "center": [ + 5209.6661407048, + 5187.240926550129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.6661407048, + 5187.240926550129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553080", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.477251542231, + "min_y": 5187.22487193109, + "max_x": 5209.509360780309, + "max_y": 5187.256981169168, + "center": [ + 5209.49330616127, + 5187.240926550129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.49330616127, + 5187.240926550129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553081", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.692105766285, + "min_y": 5186.959970716962, + "max_x": 5209.708160385325, + "max_y": 5186.976025336002, + "center": [ + 5209.700133075805, + 5186.967998026482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.700133075805, + 5186.967998026482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553082", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.451286480705, + "min_y": 5186.959970716962, + "max_x": 5209.467341099745, + "max_y": 5186.976025336002, + "center": [ + 5209.459313790225, + 5186.967998026482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.459313790225, + 5186.967998026482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553083", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.274085706457, + "min_y": 5186.992079955015, + "max_x": 5210.274085706457, + "max_y": 5187.20079000251, + "center": [ + 5210.274085706457, + 5187.096434978763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5187.20079000251 + ], + [ + 5210.274085706457, + 5186.992079955015 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553084", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.105512206612, + "min_y": 5186.992141561998, + "max_x": 5210.105512206612, + "max_y": 5187.200728395562, + "center": [ + 5210.105512206612, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.105512206612, + 5187.200728395562 + ], + [ + 5210.105512206612, + 5186.992141561998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553085", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.107735174779, + "min_y": 5187.20079000251, + "max_x": 5210.274085706457, + "max_y": 5187.20079000251, + "center": [ + 5210.190910440619, + 5187.20079000251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5187.20079000251 + ], + [ + 5210.107735174779, + 5187.20079000251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553086", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5210.107735174779, + "min_y": 5186.992079955015, + "max_x": 5210.274085706457, + "max_y": 5186.992079955015, + "center": [ + 5210.190910440619, + 5186.992079955015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.274085706457, + 5186.992079955015 + ], + [ + 5210.107735174779, + 5186.992079955015 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553087", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.961020635141, + "min_y": 5187.184735383493, + "max_x": 5210.103302834545, + "max_y": 5187.200544516759, + "center": [ + 5210.032161734843, + 5187.192639950126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.103302834545, + 5187.200544516759 + ], + [ + 5209.961020635141, + 5187.184735383493 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553088", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.961020635141, + "min_y": 5186.992325440801, + "max_x": 5210.103302834545, + "max_y": 5187.008134574067, + "center": [ + 5210.032161734843, + 5187.000230007434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.103302834545, + 5186.992325440801 + ], + [ + 5209.961020635141, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553089", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.067598627181, + "min_y": 5186.992079955003, + "max_x": 5210.147871722377, + "max_y": 5187.072353050199, + "center": [ + 5210.107735174779, + 5187.032216502601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.107735174779, + 5187.032216502601 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5210.067598627181, + "min_y": 5187.120516907361, + "max_x": 5210.147871722377, + "max_y": 5187.200790002557, + "center": [ + 5210.107735174779, + 5187.160653454959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5210.107735174779, + 5187.160653454959 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.88536115958, + "min_y": 5186.992079955015, + "max_x": 5208.88536115958, + "max_y": 5187.20079000251, + "center": [ + 5208.88536115958, + 5187.096434978763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88536115958, + 5187.20079000251 + ], + [ + 5208.88536115958, + 5186.992079955015 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.053934659394, + "min_y": 5186.992141561998, + "max_x": 5209.053934659394, + "max_y": 5187.200728395562, + "center": [ + 5209.053934659394, + 5187.09643497878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.053934659394, + 5187.200728395562 + ], + [ + 5209.053934659394, + 5186.992141561998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.88536115958, + "min_y": 5187.20079000251, + "max_x": 5209.051711691258, + "max_y": 5187.20079000251, + "center": [ + 5208.968536425418, + 5187.20079000251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88536115958, + 5187.20079000251 + ], + [ + 5209.051711691258, + 5187.20079000251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.88536115958, + "min_y": 5186.992079955015, + "max_x": 5209.051711691258, + "max_y": 5186.992079955015, + "center": [ + 5208.968536425418, + 5186.992079955015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88536115958, + 5186.992079955015 + ], + [ + 5209.051711691258, + 5186.992079955015 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55308F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.056144031492, + "min_y": 5187.184735383493, + "max_x": 5209.198426230863, + "max_y": 5187.200544516759, + "center": [ + 5209.127285131178, + 5187.192639950126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.056144031492, + 5187.200544516759 + ], + [ + 5209.198426230863, + 5187.184735383493 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553090", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.056144031492, + "min_y": 5186.992325440801, + "max_x": 5209.198426230863, + "max_y": 5187.008134574067, + "center": [ + 5209.127285131178, + 5187.000230007434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.056144031492, + 5186.992325440801 + ], + [ + 5209.198426230863, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553091", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.01157514366, + "min_y": 5186.992079955003, + "max_x": 5209.091848238856, + "max_y": 5187.072353050199, + "center": [ + 5209.051711691258, + 5187.032216502601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.051711691258, + 5187.032216502601 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553092", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.01157514366, + "min_y": 5187.120516907361, + "max_x": 5209.091848238856, + "max_y": 5187.200790002557, + "center": [ + 5209.051711691258, + 5187.160653454959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.051711691258, + 5187.160653454959 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553093", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5211.185336098464, + "min_y": 5187.642292026117, + "max_x": 5211.605266834157, + "max_y": 5191.143081958518, + "center": [ + 5211.395301466311, + 5189.392686992318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5187.642292026117 + ], + [ + 5211.185336098464, + 5190.74171648258 + ], + [ + 5211.586701574482, + 5191.143081958518 + ], + [ + 5211.605266834157, + 5191.143081958518 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553094", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5211.27363650323, + "min_y": 5187.415301605604, + "max_x": 5211.605266834157, + "max_y": 5191.054781553813, + "center": [ + 5211.439451668693, + 5189.235041579708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.27363650323, + 5187.415301605604 + ], + [ + 5211.27363650323, + 5190.74171648258 + ], + [ + 5211.586701574482, + 5191.054781553813 + ], + [ + 5211.605266834157, + 5191.054781553813 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553095", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5211.097035693821, + "min_y": 5187.415301605604, + "max_x": 5211.605266834157, + "max_y": 5191.231382363255, + "center": [ + 5211.351151263989, + 5189.323341984429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.097035693821, + 5187.415301605604 + ], + [ + 5211.097035693821, + 5190.74171648258 + ], + [ + 5211.586701574482, + 5191.231382363255 + ], + [ + 5211.605266834157, + 5191.231382363255 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553096", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5211.097035693749, + "min_y": 5186.553387489797, + "max_x": 5211.27363650318, + "max_y": 5186.729988299228, + "center": [ + 5211.185336098464, + 5186.641687894513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.185336098464, + 5186.641687894513 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553097", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.083128799217, + "min_y": 5187.504963181299, + "max_x": 5207.50010664145, + "max_y": 5187.921941023532, + "center": [ + 5207.291617720333, + 5187.713452102415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.291617720333, + 5187.713452102415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553098", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.144534835144, + "min_y": 5187.528725480198, + "max_x": 5207.438700605522, + "max_y": 5187.822891250576, + "center": [ + 5207.291617720333, + 5187.675808365387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.291617720333, + 5187.675808365387 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553099", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5207.164395922083, + "min_y": 5187.558309112235, + "max_x": 5207.418839518584, + "max_y": 5187.812752708736, + "center": [ + 5207.291617720333, + 5187.685530910486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.291617720333, + 5187.685530910486 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.992126462959, + "min_y": 5187.078890729163, + "max_x": 5207.591108977707, + "max_y": 5187.677873243911, + "center": [ + 5207.291617720333, + 5187.378381986537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5207.291617720333, + 5187.378381986537 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.605117769995, + "min_y": 5186.369963467267, + "max_x": 5209.167029436259, + "max_y": 5187.004646041337, + "center": [ + 5208.886073603127, + 5186.687304754301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.605117769995, + 5186.976493014027 + ], + [ + 5208.605117769995, + 5186.369963467267 + ], + [ + 5209.167029436259, + 5186.369963467267 + ], + [ + 5209.167029436259, + 5187.004646041337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.605117769995, + "min_y": 5187.188223916222, + "max_x": 5209.167029436259, + "max_y": 5190.142798941463, + "center": [ + 5208.886073603127, + 5188.665511428842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.167029436259, + 5187.188223916222 + ], + [ + 5209.167029436259, + 5190.142798941463 + ], + [ + 5208.605117769995, + 5190.142798941463 + ], + [ + 5208.605117769995, + 5187.216376943533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.404435031951, + "min_y": 5186.369963467267, + "max_x": 5209.367712174273, + "max_y": 5186.394045395801, + "center": [ + 5208.886073603112, + 5186.382004431534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.367712174273, + 5186.394045395801 + ], + [ + 5208.404435031951, + 5186.394045395801 + ], + [ + 5208.404435031951, + 5186.369963467267 + ], + [ + 5209.367712174273, + 5186.369963467267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5186.728706469836, + "max_x": 5209.065393193576, + "max_y": 5186.950939997865, + "center": [ + 5208.939610505525, + 5186.83982323385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.065393193576, + 5186.728706469836 + ], + [ + 5209.065393193576, + 5186.950939997865 + ], + [ + 5208.949219397249, + 5186.950939997865 + ], + [ + 5208.942902851663, + 5186.94964519064 + ], + [ + 5208.823565890988, + 5186.898574258322 + ], + [ + 5208.813827817474, + 5186.883814446479 + ], + [ + 5208.813827817474, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55309F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.930047252341, + "min_y": 5187.371062597275, + "max_x": 5209.065393193576, + "max_y": 5187.579601278915, + "center": [ + 5208.997720222958, + 5187.475331938095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.930047252341, + 5187.371062597275 + ], + [ + 5209.065393193576, + 5187.371062597275 + ], + [ + 5209.065393193576, + 5187.579601278915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.789745888839, + "min_y": 5186.806587786912, + "max_x": 5209.089475122112, + "max_y": 5186.9750219264, + "center": [ + 5208.939610505476, + 5186.890804856655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.94099194262, + 5186.9750219264 + ], + [ + 5208.799483962388, + 5186.914462779937 + ], + [ + 5208.789745888839, + 5186.899702968177 + ], + [ + 5208.789745888839, + 5186.822642405962 + ], + [ + 5208.805800507973, + 5186.806587786912 + ], + [ + 5209.073420503075, + 5186.806587786912 + ], + [ + 5209.089475122112, + 5186.822642405962 + ], + [ + 5209.089475122112, + 5186.958967307382 + ], + [ + 5209.073420503075, + 5186.9750219264 + ], + [ + 5208.94099194262, + 5186.9750219264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.789745888839, + "min_y": 5187.346980668742, + "max_x": 5209.089475122112, + "max_y": 5187.510151259846, + "center": [ + 5208.939610505476, + 5187.428565964294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.805800507973, + 5187.510151259846 + ], + [ + 5208.789745888839, + 5187.494096640796 + ], + [ + 5208.789745888839, + 5187.431190671265 + ], + [ + 5208.797978334571, + 5187.417170528679 + ], + [ + 5208.923783760559, + 5187.346980668742 + ], + [ + 5209.073420503075, + 5187.346980668742 + ], + [ + 5209.089475122112, + 5187.363035287742 + ], + [ + 5209.089475122112, + 5187.494096640796 + ], + [ + 5209.073420503075, + 5187.510151259846 + ], + [ + 5208.805800507973, + 5187.510151259846 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5187.486069331264, + "max_x": 5209.065393193576, + "max_y": 5187.486069331264, + "center": [ + 5208.939610505525, + 5187.486069331264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.065393193576, + 5187.486069331264 + ], + [ + 5208.813827817474, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5187.478042021828, + "max_x": 5209.065393193576, + "max_y": 5187.478042021828, + "center": [ + 5208.939610505525, + 5187.478042021828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.065393193576, + 5187.478042021828 + ], + [ + 5208.813827817474, + 5187.478042021828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5186.830669715529, + "max_x": 5209.065393193576, + "max_y": 5186.830669715529, + "center": [ + 5208.939610505525, + 5186.830669715529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.065393193576, + 5186.830669715529 + ], + [ + 5208.813827817474, + 5186.830669715529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5186.838697025013, + "max_x": 5209.065393193576, + "max_y": 5186.838697025013, + "center": [ + 5208.939610505525, + 5186.838697025013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.065393193576, + 5186.838697025013 + ], + [ + 5208.813827817474, + 5186.838697025013 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.034639016005, + "min_y": 5187.198637089653, + "max_x": 5209.098507890845, + "max_y": 5187.262505964493, + "center": [ + 5209.066573453425, + 5187.230571527073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.066573453425, + 5187.230571527073 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5209.038652670765, + "min_y": 5187.202650744413, + "max_x": 5209.094494236085, + "max_y": 5187.258492309733, + "center": [ + 5209.066573453425, + 5187.230571527073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.066573453425, + 5187.230571527073 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.023914372219, + "min_y": 5187.230571527073, + "max_x": 5209.109232534664, + "max_y": 5187.230571527073, + "center": [ + 5209.066573453441, + 5187.230571527073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.023914372219, + 5187.230571527073 + ], + [ + 5209.109232534664, + 5187.230571527073 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.636889920344, + "min_y": 5187.295201714073, + "max_x": 5209.143413151025, + "max_y": 5187.295201714073, + "center": [ + 5208.890151535685, + 5187.295201714073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5187.295201714073 + ], + [ + 5209.143413151025, + 5187.295201714073 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.636889920344, + "min_y": 5186.728706469836, + "max_x": 5209.143413151025, + "max_y": 5186.728706469836, + "center": [ + 5208.890151535685, + 5186.728706469836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5186.728706469836 + ], + [ + 5209.143413151025, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.636889920344, + "min_y": 5187.579601278915, + "max_x": 5209.143413151025, + "max_y": 5187.579601278915, + "center": [ + 5208.890151535685, + 5187.579601278915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.143413151025, + 5187.579601278915 + ], + [ + 5208.636889920344, + 5187.579601278915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.754209582943, + "min_y": 5187.184735383493, + "max_x": 5208.956635338804, + "max_y": 5187.27074705181, + "center": [ + 5208.855422460873, + 5187.227741217652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.956635338804, + 5187.20079000251 + ], + [ + 5208.956635338804, + 5187.27074705181 + ], + [ + 5208.754209582943, + 5187.27074705181 + ], + [ + 5208.754209582943, + 5187.184735383493 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.636889920344, + "min_y": 5187.216376943533, + "max_x": 5208.636889920344, + "max_y": 5187.579601278915, + "center": [ + 5208.636889920344, + 5187.397989111224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5187.579601278915 + ], + [ + 5208.636889920344, + 5187.216376943533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.636889920344, + "min_y": 5186.728706469836, + "max_x": 5208.636889920344, + "max_y": 5186.976493014027, + "center": [ + 5208.636889920344, + 5186.852599741931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5186.976493014027 + ], + [ + 5208.636889920344, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.849116112641, + "max_x": 5208.526915779905, + "max_y": 5186.849116112641, + "center": [ + 5208.490792887069, + 5186.849116112641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.454669994233, + 5186.849116112641 + ], + [ + 5208.526915779905, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.4626973037, + "min_y": 5186.961498445914, + "max_x": 5208.518888470436, + "max_y": 5186.961498445914, + "center": [ + 5208.490792887068, + 5186.961498445914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4626973037, + 5186.961498445914 + ], + [ + 5208.518888470436, + 5186.961498445914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.4626973037, + "min_y": 5186.881225350744, + "max_x": 5208.518888470436, + "max_y": 5186.881225350744, + "center": [ + 5208.490792887068, + 5186.881225350744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4626973037, + 5186.881225350744 + ], + [ + 5208.518888470436, + 5186.881225350744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.362355934797, + "min_y": 5186.829047838843, + "max_x": 5208.402492482394, + "max_y": 5186.86918438644, + "center": [ + 5208.382424208596, + 5186.849116112641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.382424208596, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.362355934781, + "min_y": 5186.833061493625, + "max_x": 5208.362355934781, + "max_y": 5186.986628364842, + "center": [ + 5208.362355934781, + 5186.909844929233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.362355934781, + 5186.986628364842 + ], + [ + 5208.362355934781, + 5186.833061493625 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322219387215, + "min_y": 5186.833061493625, + "max_x": 5208.362355934781, + "max_y": 5186.865170731692, + "center": [ + 5208.342287660998, + 5186.8491161126585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.362355934781, + 5186.833061493625 + ], + [ + 5208.322219387215, + 5186.865170731692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.849116112641, + "max_x": 5208.438615375233, + "max_y": 5186.986628364842, + "center": [ + 5208.438615375233, + 5186.917872238741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.986628364842 + ], + [ + 5208.438615375233, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398478827617, + "min_y": 5186.829047838843, + "max_x": 5208.438615375214, + "max_y": 5186.86918438644, + "center": [ + 5208.418547101415, + 5186.849116112641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.418547101415, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.441023568071, + "min_y": 5186.857143422159, + "max_x": 5208.441023568071, + "max_y": 5186.985580374483, + "center": [ + 5208.441023568071, + 5186.921361898321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.441023568071, + 5186.985580374483 + ], + [ + 5208.441023568071, + 5186.857143422159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.857143422159, + "max_x": 5208.438615375233, + "max_y": 5186.985580374483, + "center": [ + 5208.438615375233, + 5186.921361898321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.985580374483 + ], + [ + 5208.438615375233, + 5186.857143422159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.857143422159, + "max_x": 5208.438615375233, + "max_y": 5186.985580374483, + "center": [ + 5208.438615375233, + 5186.921361898321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.985580374483 + ], + [ + 5208.438615375233, + 5186.857143422159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.446642684798, + "min_y": 5186.857143422159, + "max_x": 5208.446642684798, + "max_y": 5186.985580374483, + "center": [ + 5208.446642684798, + 5186.921361898321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.446642684798, + 5186.985580374483 + ], + [ + 5208.446642684798, + 5186.857143422159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.849116112641, + "max_x": 5208.438615375233, + "max_y": 5186.985580374483, + "center": [ + 5208.438615375233, + 5186.917348243562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.985580374483 + ], + [ + 5208.438615375233, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.849116112641, + "max_x": 5208.454669994233, + "max_y": 5186.986628364842, + "center": [ + 5208.454669994233, + 5186.917872238741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.454669994233, + 5186.986628364842 + ], + [ + 5208.454669994233, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.849116112641, + "max_x": 5208.4626973037, + "max_y": 5186.865170731692, + "center": [ + 5208.458683648967, + 5186.857143422167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4626973037, + 5186.849116112641 + ], + [ + 5208.454669994233, + 5186.865170731692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.362355934781, + "min_y": 5186.833061493625, + "max_x": 5208.430588065668, + "max_y": 5186.833061493625, + "center": [ + 5208.396472000224, + 5186.833061493625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.362355934781, + 5186.833061493625 + ], + [ + 5208.430588065668, + 5186.833061493625 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.857143422159, + "max_x": 5208.454669994233, + "max_y": 5186.857143422159, + "center": [ + 5208.446642684733, + 5186.857143422159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.857143422159 + ], + [ + 5208.454669994233, + 5186.857143422159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.849116112641, + "max_x": 5208.4626973037, + "max_y": 5186.849116112641, + "center": [ + 5208.458683648967, + 5186.849116112641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4626973037, + 5186.849116112641 + ], + [ + 5208.454669994233, + 5186.849116112641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322219387215, + "min_y": 5186.977553064965, + "max_x": 5208.333563511982, + "max_y": 5186.986628364842, + "center": [ + 5208.327891449599, + 5186.982090714903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.333563511982, + 5186.986628364842 + ], + [ + 5208.322219387215, + 5186.977553064965 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.362355934797, + "min_y": 5186.973539410217, + "max_x": 5208.402492482394, + "max_y": 5187.0136759578145, + "center": [ + 5208.382424208596, + 5186.993607684016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.382424208596, + 5186.993607684016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398478827617, + "min_y": 5186.973539410217, + "max_x": 5208.438615375214, + "max_y": 5187.0136759578145, + "center": [ + 5208.418547101415, + 5186.993607684016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.418547101415, + 5186.993607684016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.362355934699, + "min_y": 5186.720679160339, + "max_x": 5208.763721410679, + "max_y": 5187.1220446363195, + "center": [ + 5208.563038672689, + 5186.921361898329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.563038672689, + 5186.921361898329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322219387215, + "min_y": 5186.865170731692, + "max_x": 5208.322219387215, + "max_y": 5186.977553064965, + "center": [ + 5208.322219387215, + 5186.9213618983285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322219387215, + 5186.977553064965 + ], + [ + 5208.322219387215, + 5186.865170731692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.037249899266, + "min_y": 5186.720679160339, + "max_x": 5208.438615375246, + "max_y": 5187.1220446363195, + "center": [ + 5208.237932637256, + 5186.921361898329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.237932637256, + 5186.921361898329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.454669994248, + "min_y": 5186.817006874574, + "max_x": 5208.663380041759, + "max_y": 5187.025716922085, + "center": [ + 5208.559025018004, + 5186.921361898329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.559025018004, + 5186.921361898329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370383244281, + "min_y": 5186.865170731692, + "max_x": 5208.430588065668, + "max_y": 5186.865170731692, + "center": [ + 5208.400485654975, + 5186.865170731692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370383244281, + 5186.865170731692 + ], + [ + 5208.430588065668, + 5186.865170731692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.865170731692, + "max_x": 5208.4626973037, + "max_y": 5186.881225350744, + "center": [ + 5208.458683648967, + 5186.873198041218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.454669994233, + 5186.865170731692 + ], + [ + 5208.4626973037, + 5186.881225350744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370383244281, + "min_y": 5186.977553064965, + "max_x": 5208.430588065668, + "max_y": 5186.977553064965, + "center": [ + 5208.400485654975, + 5186.977553064965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370383244281, + 5186.977553064965 + ], + [ + 5208.430588065668, + 5186.977553064965 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.961498445914, + "max_x": 5208.4626973037, + "max_y": 5186.977553064965, + "center": [ + 5208.458683648967, + 5186.9695257554395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4626973037, + 5186.961498445914 + ], + [ + 5208.454669994233, + 5186.977553064965 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.438615375233, + "min_y": 5186.985580374483, + "max_x": 5208.454669994233, + "max_y": 5186.985580374483, + "center": [ + 5208.446642684733, + 5186.985580374483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.438615375233, + 5186.985580374483 + ], + [ + 5208.454669994233, + 5186.985580374483 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.454669994233, + "min_y": 5186.977553064965, + "max_x": 5208.459207644178, + "max_y": 5186.986628364842, + "center": [ + 5208.456938819205, + 5186.982090714903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.454669994233, + 5186.977553064965 + ], + [ + 5208.459207644178, + 5186.986628364842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.518888470436, + "min_y": 5186.849116112641, + "max_x": 5208.526915779905, + "max_y": 5186.865170731692, + "center": [ + 5208.522902125171, + 5186.857143422167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.518888470436, + 5186.849116112641 + ], + [ + 5208.526915779905, + 5186.865170731692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526915779905, + "min_y": 5186.833061493625, + "max_x": 5208.526915779905, + "max_y": 5186.976493014027, + "center": [ + 5208.526915779905, + 5186.904777253826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.526915779905, + 5186.976493014027 + ], + [ + 5208.526915779905, + 5186.833061493625 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.559025018004, + "min_y": 5186.817006874541, + "max_x": 5208.559025018004, + "max_y": 5186.976493014027, + "center": [ + 5208.559025018004, + 5186.896749944284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.559025018004, + 5186.976493014027 + ], + [ + 5208.559025018004, + 5186.817006874541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.575079636978, + "min_y": 5186.799346793626, + "max_x": 5208.575079636978, + "max_y": 5186.976493014027, + "center": [ + 5208.575079636978, + 5186.8879199038265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5186.976493014027 + ], + [ + 5208.575079636978, + 5186.799346793626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.591134256009, + "min_y": 5186.783292174576, + "max_x": 5208.628862610871, + "max_y": 5186.783292174576, + "center": [ + 5208.60999843344, + 5186.783292174576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.591134256009, + 5186.783292174576 + ], + [ + 5208.628862610871, + 5186.783292174576 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.57507963697, + "min_y": 5186.783292174587, + "max_x": 5208.607188875048, + "max_y": 5186.815401412665, + "center": [ + 5208.591134256009, + 5186.799346793626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.591134256009, + 5186.799346793626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526915779905, + "min_y": 5186.817006874541, + "max_x": 5208.559025018004, + "max_y": 5186.833061493625, + "center": [ + 5208.542970398954, + 5186.825034184083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.559025018004, + 5186.817006874541 + ], + [ + 5208.526915779905, + 5186.833061493625 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.559025018004, + "min_y": 5186.817006874541, + "max_x": 5208.575079636978, + "max_y": 5186.817006874541, + "center": [ + 5208.567052327491, + 5186.817006874541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.559025018004, + 5186.817006874541 + ], + [ + 5208.575079636978, + 5186.817006874541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.628862610871, + "min_y": 5186.772856672206, + "max_x": 5208.628862610871, + "max_y": 5186.79372767698, + "center": [ + 5208.628862610871, + 5186.783292174593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.628862610871, + 5186.79372767698 + ], + [ + 5208.628862610871, + 5186.772856672206 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610824, + "min_y": 5186.775264865056, + "max_x": 5208.644917229864, + "max_y": 5186.791319484096, + "center": [ + 5208.636889920344, + 5186.783292174576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5186.783292174576 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5186.771251210308, + "max_x": 5208.636889920344, + "max_y": 5186.771251210308, + "center": [ + 5208.633678996532, + 5186.771251210308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5186.771251210308 + ], + [ + 5208.636889920344, + 5186.771251210308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530D9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5186.771251210303, + "max_x": 5208.632073534623, + "max_y": 5186.77446213411, + "center": [ + 5208.630468072719, + 5186.772856672206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5186.772856672206 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5186.795333138842, + "max_x": 5208.636889920344, + "max_y": 5186.795333138842, + "center": [ + 5208.633678996532, + 5186.795333138842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5186.795333138842 + ], + [ + 5208.636889920344, + 5186.795333138842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5186.792122215076, + "max_x": 5208.632073534623, + "max_y": 5186.7953331388835, + "center": [ + 5208.630468072719, + 5186.79372767698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5186.79372767698 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.88607360308, + "min_y": 5186.728706469836, + "max_x": 5208.88607360308, + "max_y": 5186.830669715529, + "center": [ + 5208.88607360308, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88607360308, + 5186.830669715529 + ], + [ + 5208.88607360308, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.861991674608, + "min_y": 5186.728706469836, + "max_x": 5208.861991674608, + "max_y": 5186.830669715529, + "center": [ + 5208.861991674608, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.861991674608, + 5186.830669715529 + ], + [ + 5208.861991674608, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.837909746011, + "min_y": 5186.728706469836, + "max_x": 5208.837909746011, + "max_y": 5186.830669715529, + "center": [ + 5208.837909746011, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.837909746011, + 5186.830669715529 + ], + [ + 5208.837909746011, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530DF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.030565174519, + "min_y": 5186.728706469836, + "max_x": 5209.030565174519, + "max_y": 5186.830669715529, + "center": [ + 5209.030565174519, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.030565174519, + 5186.830669715529 + ], + [ + 5209.030565174519, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.006483245914, + "min_y": 5186.728706469836, + "max_x": 5209.006483245914, + "max_y": 5186.830669715529, + "center": [ + 5209.006483245914, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5186.830669715529 + ], + [ + 5209.006483245914, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.982401317384, + "min_y": 5186.728706469836, + "max_x": 5208.982401317384, + "max_y": 5186.830669715529, + "center": [ + 5208.982401317384, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.982401317384, + 5186.830669715529 + ], + [ + 5208.982401317384, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.958319388846, + "min_y": 5186.728706469836, + "max_x": 5208.958319388846, + "max_y": 5186.830669715529, + "center": [ + 5208.958319388846, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.958319388846, + 5186.830669715529 + ], + [ + 5208.958319388846, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.934237460317, + "min_y": 5186.728706469836, + "max_x": 5208.934237460317, + "max_y": 5186.830669715529, + "center": [ + 5208.934237460317, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.934237460317, + 5186.830669715529 + ], + [ + 5208.934237460317, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.910155531681, + "min_y": 5186.728706469836, + "max_x": 5208.910155531681, + "max_y": 5186.830669715529, + "center": [ + 5208.910155531681, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.910155531681, + 5186.830669715529 + ], + [ + 5208.910155531681, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.706354182966, + "min_y": 5186.999172819916, + "max_x": 5208.706354182966, + "max_y": 5187.008134574067, + "center": [ + 5208.706354182966, + 5187.003653696991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.706354182966, + 5186.999172819916 + ], + [ + 5208.706354182966, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.698326873403, + "min_y": 5186.999172819916, + "max_x": 5208.698326873403, + "max_y": 5187.008134574067, + "center": [ + 5208.698326873403, + 5187.003653696991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.698326873403, + 5186.999172819916 + ], + [ + 5208.698326873403, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.674419745428, + "min_y": 5186.967238382474, + "max_x": 5208.730261310748, + "max_y": 5187.023079947793, + "center": [ + 5208.702340528088, + 5186.995159165133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.702340528088, + 5186.995159165133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.670406090668, + "min_y": 5186.963224727713, + "max_x": 5208.734274965508, + "max_y": 5187.027093602554, + "center": [ + 5208.702340528088, + 5186.995159165133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.702340528088, + 5186.995159165133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.702340528088, + "min_y": 5186.952500083942, + "max_x": 5208.702340528088, + "max_y": 5187.008134574067, + "center": [ + 5208.702340528088, + 5186.980317329005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.702340528088, + 5186.952500083942 + ], + [ + 5208.702340528088, + 5187.008134574067 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.318205732447, + "min_y": 5186.817006874574, + "max_x": 5208.526915779958, + "max_y": 5187.025716922085, + "center": [ + 5208.422560756202, + 5186.921361898329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.422560756202, + 5186.921361898329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.518888470436, + "min_y": 5186.865170731692, + "max_x": 5208.526915779905, + "max_y": 5186.881225350744, + "center": [ + 5208.522902125171, + 5186.873198041218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.526915779905, + 5186.865170731692 + ], + [ + 5208.518888470436, + 5186.881225350744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.518888470436, + "min_y": 5186.961498445914, + "max_x": 5208.526385754401, + "max_y": 5186.976493014027, + "center": [ + 5208.522637112419, + 5186.968995729971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.518888470436, + 5186.961498445914 + ], + [ + 5208.526385754401, + 5186.976493014027 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674709735935, + "min_y": 5186.999172819916, + "max_x": 5208.698326873403, + "max_y": 5186.999172819916, + "center": [ + 5208.686518304668, + 5186.999172819916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674709735935, + 5186.999172819916 + ], + [ + 5208.698326873403, + 5186.999172819916 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674709735935, + "min_y": 5186.991145510383, + "max_x": 5208.698326873403, + "max_y": 5186.991145510383, + "center": [ + 5208.686518304668, + 5186.991145510383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674709735935, + 5186.991145510383 + ], + [ + 5208.698326873403, + 5186.991145510383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.659681446976, + "min_y": 5186.995159165133, + "max_x": 5208.744999609391, + "max_y": 5186.995159165133, + "center": [ + 5208.702340528183, + 5186.995159165133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.659681446976, + 5186.995159165133 + ], + [ + 5208.744999609391, + 5186.995159165133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.698326873403, + "min_y": 5186.967528372933, + "max_x": 5208.698326873403, + "max_y": 5186.991145510383, + "center": [ + 5208.698326873403, + 5186.979336941658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.698326873403, + 5186.967528372933 + ], + [ + 5208.698326873403, + 5186.991145510383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.706354182966, + "min_y": 5186.967528372933, + "max_x": 5208.706354182966, + "max_y": 5186.991145510383, + "center": [ + 5208.706354182966, + 5186.979336941658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.706354182966, + 5186.967528372933 + ], + [ + 5208.706354182966, + 5186.991145510383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.706354182966, + "min_y": 5186.999172819916, + "max_x": 5208.729971320433, + "max_y": 5186.999172819916, + "center": [ + 5208.718162751699, + 5186.999172819916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.706354182966, + 5186.999172819916 + ], + [ + 5208.729971320433, + 5186.999172819916 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.706354182966, + "min_y": 5186.991145510383, + "max_x": 5208.729971320433, + "max_y": 5186.991145510383, + "center": [ + 5208.718162751699, + 5186.991145510383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.706354182966, + 5186.991145510383 + ], + [ + 5208.729971320433, + 5186.991145510383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.418547101415, + "min_y": 5187.483273564692, + "max_x": 5208.478751922737, + "max_y": 5187.483273564692, + "center": [ + 5208.448649512076, + 5187.483273564692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.418547101415, + 5187.483273564692 + ], + [ + 5208.478751922737, + 5187.483273564692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.410519791915, + "min_y": 5187.515382802744, + "max_x": 5208.478751922737, + "max_y": 5187.515382802744, + "center": [ + 5208.444635857326, + 5187.515382802744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.410519791915, + 5187.515382802744 + ], + [ + 5208.478751922737, + 5187.515382802744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.410519791915, + "min_y": 5187.338781993351, + "max_x": 5208.478751922737, + "max_y": 5187.338781993351, + "center": [ + 5208.444635857326, + 5187.338781993351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.410519791915, + 5187.338781993351 + ], + [ + 5208.478751922737, + 5187.338781993351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.418547101415, + "min_y": 5187.37089123142, + "max_x": 5208.478751922737, + "max_y": 5187.37089123142, + "center": [ + 5208.448649512076, + 5187.37089123142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.418547101415, + 5187.37089123142 + ], + [ + 5208.478751922737, + 5187.37089123142 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.410519791915, + "min_y": 5187.338781993351, + "max_x": 5208.410519791915, + "max_y": 5187.515382802744, + "center": [ + 5208.410519791915, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.410519791915, + 5187.515382802744 + ], + [ + 5208.410519791915, + 5187.338781993351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530F9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.410519791871, + "min_y": 5187.226399660065, + "max_x": 5208.811885267851, + "max_y": 5187.627765136045, + "center": [ + 5208.611202529861, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.611202529861, + 5187.427082398055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370383244281, + "min_y": 5187.37089123142, + "max_x": 5208.370383244281, + "max_y": 5187.483273564692, + "center": [ + 5208.370383244281, + 5187.427082398056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370383244281, + 5187.483273564692 + ], + [ + 5208.370383244281, + 5187.37089123142 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370383244281, + "min_y": 5187.338781993351, + "max_x": 5208.410519791915, + "max_y": 5187.37089123142, + "center": [ + 5208.390451518098, + 5187.354836612385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.410519791915, + 5187.338781993351 + ], + [ + 5208.370383244281, + 5187.37089123142 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.41051979187, + "min_y": 5187.334768338569, + "max_x": 5208.450656339467, + "max_y": 5187.374904886166, + "center": [ + 5208.430588065668, + 5187.354836612368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.430588065668, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370383244281, + "min_y": 5187.483273564692, + "max_x": 5208.410519791915, + "max_y": 5187.515382802744, + "center": [ + 5208.390451518098, + 5187.499328183718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.410519791915, + 5187.515382802744 + ], + [ + 5208.370383244281, + 5187.483273564692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.41051979187, + "min_y": 5187.479259909945, + "max_x": 5208.450656339467, + "max_y": 5187.519396457542, + "center": [ + 5208.430588065668, + 5187.499328183743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.430588065668, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5530FF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.813827817474, + "min_y": 5187.371062597275, + "max_x": 5208.930047252341, + "max_y": 5187.579601278915, + "center": [ + 5208.871937534907, + 5187.475331938095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.813827817474, + 5187.579601278915 + ], + [ + 5208.813827817474, + 5187.445331267134 + ], + [ + 5208.822060263272, + 5187.431311124595 + ], + [ + 5208.930047252341, + 5187.371062597275 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.599161565572, + "min_y": 5187.354836612368, + "max_x": 5208.599161565572, + "max_y": 5187.499328183743, + "center": [ + 5208.599161565572, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.599161565572, + 5187.499328183743 + ], + [ + 5208.599161565572, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.575079636978, + "min_y": 5187.354836612368, + "max_x": 5208.575079636978, + "max_y": 5187.499328183743, + "center": [ + 5208.575079636978, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.354836612368 + ], + [ + 5208.575079636978, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553102", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.366369589516, + "min_y": 5187.3227273743, + "max_x": 5208.575079637027, + "max_y": 5187.531437421811, + "center": [ + 5208.470724613271, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.470724613271, + 5187.427082398055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.486779232302, + "min_y": 5187.354836612368, + "max_x": 5208.486779232302, + "max_y": 5187.499328183743, + "center": [ + 5208.486779232302, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.486779232302, + 5187.499328183743 + ], + [ + 5208.486779232302, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.489187425139, + "min_y": 5187.362863921886, + "max_x": 5208.489187425139, + "max_y": 5187.49130087421, + "center": [ + 5208.489187425139, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.489187425139, + 5187.49130087421 + ], + [ + 5208.489187425139, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553105", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.486779232302, + "min_y": 5187.362863921886, + "max_x": 5208.486779232302, + "max_y": 5187.49130087421, + "center": [ + 5208.486779232302, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.486779232302, + 5187.49130087421 + ], + [ + 5208.486779232302, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553106", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.486779232302, + "min_y": 5187.362863921886, + "max_x": 5208.486779232302, + "max_y": 5187.49130087421, + "center": [ + 5208.486779232302, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.486779232302, + 5187.49130087421 + ], + [ + 5208.486779232302, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553107", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.494806541875, + "min_y": 5187.362863921886, + "max_x": 5208.494806541875, + "max_y": 5187.49130087421, + "center": [ + 5208.494806541875, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.494806541875, + 5187.49130087421 + ], + [ + 5208.494806541875, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553108", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.486779232302, + "min_y": 5187.354836612368, + "max_x": 5208.486779232302, + "max_y": 5187.49130087421, + "center": [ + 5208.486779232302, + 5187.423068743288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.486779232302, + 5187.49130087421 + ], + [ + 5208.486779232302, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553109", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.354836612368, + "max_x": 5208.502833851373, + "max_y": 5187.499328183743, + "center": [ + 5208.502833851373, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502833851373, + 5187.499328183743 + ], + [ + 5208.502833851373, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.085413756332, + "min_y": 5187.226399660065, + "max_x": 5208.486779232312, + "max_y": 5187.627765136045, + "center": [ + 5208.286096494322, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.286096494322, + 5187.427082398055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.502833851388, + "min_y": 5187.3227273743, + "max_x": 5208.7115438988985, + "max_y": 5187.531437421811, + "center": [ + 5208.607188875143, + 5187.427082398055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.607188875143, + 5187.427082398055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.575079636978, + "min_y": 5187.362863921886, + "max_x": 5208.575079636978, + "max_y": 5187.49130087421, + "center": [ + 5208.575079636978, + 5187.427082398048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.49130087421 + ], + [ + 5208.575079636978, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.599161565603, + "min_y": 5187.338781993329, + "max_x": 5208.631270803681, + "max_y": 5187.370891231407, + "center": [ + 5208.615216184642, + 5187.354836612368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.615216184642, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.567052327504, + "min_y": 5187.37089123142, + "max_x": 5208.575079636978, + "max_y": 5187.38694585047, + "center": [ + 5208.571065982242, + 5187.378918540944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.37089123142 + ], + [ + 5208.567052327504, + 5187.38694585047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55310F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.37089123142, + "max_x": 5208.510861160938, + "max_y": 5187.38694585047, + "center": [ + 5208.506847506155, + 5187.378918540944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502833851373, + 5187.37089123142 + ], + [ + 5208.510861160938, + 5187.38694585047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553110", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.354836612368, + "max_x": 5208.575079636978, + "max_y": 5187.354836612368, + "center": [ + 5208.538956744176, + 5187.354836612368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502833851373, + 5187.354836612368 + ], + [ + 5208.575079636978, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553111", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.44664268469, + "min_y": 5187.334768338569, + "max_x": 5208.4867792322875, + "max_y": 5187.374904886166, + "center": [ + 5208.466710958489, + 5187.354836612368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.466710958489, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553112", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.354836612368, + "max_x": 5208.510861160938, + "max_y": 5187.37089123142, + "center": [ + 5208.506847506155, + 5187.362863921893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510861160938, + 5187.354836612368 + ], + [ + 5208.502833851373, + 5187.37089123142 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553113", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.354836612368, + "max_x": 5208.510861160938, + "max_y": 5187.354836612368, + "center": [ + 5208.506847506155, + 5187.354836612368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510861160938, + 5187.354836612368 + ], + [ + 5208.502833851373, + 5187.354836612368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553114", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.567052327504, + "min_y": 5187.354836612368, + "max_x": 5208.575079636978, + "max_y": 5187.37089123142, + "center": [ + 5208.571065982242, + 5187.362863921893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.567052327504, + 5187.354836612368 + ], + [ + 5208.575079636978, + 5187.37089123142 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553115", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.575079636978, + "min_y": 5187.362863921886, + "max_x": 5208.599161565572, + "max_y": 5187.362863921886, + "center": [ + 5208.587120601275, + 5187.362863921886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.362863921886 + ], + [ + 5208.599161565572, + 5187.362863921886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553116", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.510861160938, + "min_y": 5187.38694585047, + "max_x": 5208.567052327504, + "max_y": 5187.38694585047, + "center": [ + 5208.538956744221, + 5187.38694585047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510861160938, + 5187.38694585047 + ], + [ + 5208.567052327504, + 5187.38694585047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553117", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.628862610871, + "min_y": 5187.328346490947, + "max_x": 5208.628862610871, + "max_y": 5187.349217495722, + "center": [ + 5208.628862610871, + 5187.338781993334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.628862610871, + 5187.349217495722 + ], + [ + 5208.628862610871, + 5187.328346490947 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553118", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610824, + "min_y": 5187.330754683831, + "max_x": 5208.644917229864, + "max_y": 5187.346809302871, + "center": [ + 5208.636889920344, + 5187.338781993351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5187.338781993351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553119", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5187.326741029051, + "max_x": 5208.636889920344, + "max_y": 5187.326741029051, + "center": [ + 5208.633678996532, + 5187.326741029051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.326741029051 + ], + [ + 5208.636889920344, + 5187.326741029051 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5187.326741029044, + "max_x": 5208.632073534623, + "max_y": 5187.329951952851, + "center": [ + 5208.630468072719, + 5187.328346490947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.328346490947 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.615216184642, + "min_y": 5187.338781993351, + "max_x": 5208.628862610871, + "max_y": 5187.338781993351, + "center": [ + 5208.622039397756, + 5187.338781993351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.615216184642, + 5187.338781993351 + ], + [ + 5208.628862610871, + 5187.338781993351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5187.350822957585, + "max_x": 5208.636889920344, + "max_y": 5187.350822957585, + "center": [ + 5208.633678996532, + 5187.350822957585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.350822957585 + ], + [ + 5208.636889920344, + 5187.350822957585 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5187.347612033818, + "max_x": 5208.632073534623, + "max_y": 5187.3508229576255, + "center": [ + 5208.630468072719, + 5187.349217495722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.349217495722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.599161565603, + "min_y": 5187.483273564704, + "max_x": 5208.631270803681, + "max_y": 5187.515382802782, + "center": [ + 5208.615216184642, + 5187.499328183743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.615216184642, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55311F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.499328183743, + "max_x": 5208.575079636978, + "max_y": 5187.499328183743, + "center": [ + 5208.538956744176, + 5187.499328183743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502833851373, + 5187.499328183743 + ], + [ + 5208.575079636978, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553120", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.510861160938, + "min_y": 5187.467218945641, + "max_x": 5208.567052327504, + "max_y": 5187.467218945641, + "center": [ + 5208.538956744221, + 5187.467218945641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510861160938, + 5187.467218945641 + ], + [ + 5208.567052327504, + 5187.467218945641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553121", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.44664268469, + "min_y": 5187.479259909945, + "max_x": 5208.4867792322875, + "max_y": 5187.519396457542, + "center": [ + 5208.466710958489, + 5187.499328183743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.466710958489, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553122", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.483273564692, + "max_x": 5208.510861160938, + "max_y": 5187.499328183743, + "center": [ + 5208.506847506155, + 5187.491300874218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502833851373, + 5187.483273564692 + ], + [ + 5208.510861160938, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553123", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.502833851373, + "min_y": 5187.467218945641, + "max_x": 5208.510861160938, + "max_y": 5187.483273564692, + "center": [ + 5208.506847506155, + 5187.475246255167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.510861160938, + 5187.467218945641 + ], + [ + 5208.502833851373, + 5187.483273564692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553124", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.567052327504, + "min_y": 5187.483273564692, + "max_x": 5208.575079636978, + "max_y": 5187.499328183743, + "center": [ + 5208.571065982242, + 5187.491300874218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.483273564692 + ], + [ + 5208.567052327504, + 5187.499328183743 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553125", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.567052327504, + "min_y": 5187.467218945641, + "max_x": 5208.575079636978, + "max_y": 5187.483273564692, + "center": [ + 5208.571065982242, + 5187.475246255167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.567052327504, + 5187.467218945641 + ], + [ + 5208.575079636978, + 5187.483273564692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553126", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.575079636978, + "min_y": 5187.49130087421, + "max_x": 5208.599161565572, + "max_y": 5187.49130087421, + "center": [ + 5208.587120601275, + 5187.49130087421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.575079636978, + 5187.49130087421 + ], + [ + 5208.599161565572, + 5187.49130087421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553127", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.628862610871, + "min_y": 5187.504947300423, + "max_x": 5208.628862610871, + "max_y": 5187.525818305147, + "center": [ + 5208.628862610871, + 5187.515382802785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.628862610871, + 5187.525818305147 + ], + [ + 5208.628862610871, + 5187.504947300423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553128", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5187.503341838477, + "max_x": 5208.636889920344, + "max_y": 5187.503341838477, + "center": [ + 5208.633678996532, + 5187.503341838477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.503341838477 + ], + [ + 5208.636889920344, + 5187.503341838477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553129", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5187.503341838519, + "max_x": 5208.632073534623, + "max_y": 5187.5065527623265, + "center": [ + 5208.630468072719, + 5187.504947300423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.504947300423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.615216184642, + "min_y": 5187.515382802744, + "max_x": 5208.628862610871, + "max_y": 5187.515382802744, + "center": [ + 5208.622039397756, + 5187.515382802744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.615216184642, + 5187.515382802744 + ], + [ + 5208.628862610871, + 5187.515382802744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610824, + "min_y": 5187.507355493224, + "max_x": 5208.644917229864, + "max_y": 5187.523410112264, + "center": [ + 5208.636889920344, + 5187.515382802744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.636889920344, + 5187.515382802744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630468072719, + "min_y": 5187.527423767061, + "max_x": 5208.636889920344, + "max_y": 5187.527423767061, + "center": [ + 5208.633678996532, + 5187.527423767061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.527423767061 + ], + [ + 5208.636889920344, + 5187.527423767061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.628862610815, + "min_y": 5187.524212843244, + "max_x": 5208.632073534623, + "max_y": 5187.527423767051, + "center": [ + 5208.630468072719, + 5187.525818305147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630468072719, + 5187.525818305147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.88607360308, + "min_y": 5187.486069331264, + "max_x": 5208.88607360308, + "max_y": 5187.579601278915, + "center": [ + 5208.88607360308, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88607360308, + 5187.579601278915 + ], + [ + 5208.88607360308, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55312F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.861991674608, + "min_y": 5187.486069331264, + "max_x": 5208.861991674608, + "max_y": 5187.579601278915, + "center": [ + 5208.861991674608, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.861991674608, + 5187.579601278915 + ], + [ + 5208.861991674608, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553130", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.837909746011, + "min_y": 5187.486069331264, + "max_x": 5208.837909746011, + "max_y": 5187.579601278915, + "center": [ + 5208.837909746011, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.837909746011, + 5187.579601278915 + ], + [ + 5208.837909746011, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553131", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.030565174519, + "min_y": 5187.486069331264, + "max_x": 5209.030565174519, + "max_y": 5187.579601278915, + "center": [ + 5209.030565174519, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.030565174519, + 5187.579601278915 + ], + [ + 5209.030565174519, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553132", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.006483245914, + "min_y": 5187.486069331264, + "max_x": 5209.006483245914, + "max_y": 5187.579601278915, + "center": [ + 5209.006483245914, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5187.579601278915 + ], + [ + 5209.006483245914, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553133", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.982401317384, + "min_y": 5187.486069331264, + "max_x": 5208.982401317384, + "max_y": 5187.579601278915, + "center": [ + 5208.982401317384, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.982401317384, + 5187.579601278915 + ], + [ + 5208.982401317384, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553134", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.958319388846, + "min_y": 5187.486069331264, + "max_x": 5208.958319388846, + "max_y": 5187.579601278915, + "center": [ + 5208.958319388846, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.958319388846, + 5187.579601278915 + ], + [ + 5208.958319388846, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553135", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.934237460317, + "min_y": 5187.486069331264, + "max_x": 5208.934237460317, + "max_y": 5187.579601278915, + "center": [ + 5208.934237460317, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.934237460317, + 5187.579601278915 + ], + [ + 5208.934237460317, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553136", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.910155531681, + "min_y": 5187.486069331264, + "max_x": 5208.910155531681, + "max_y": 5187.579601278915, + "center": [ + 5208.910155531681, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.910155531681, + 5187.579601278915 + ], + [ + 5208.910155531681, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553137", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.143413151025, + "min_y": 5186.728706469836, + "max_x": 5209.143413151025, + "max_y": 5187.00202200962, + "center": [ + 5209.143413151025, + 5186.865364239728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.143413151025, + 5186.728706469836 + ], + [ + 5209.143413151025, + 5187.00202200962 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553138", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.143413151025, + "min_y": 5187.19084794794, + "max_x": 5209.143413151025, + "max_y": 5187.579601278915, + "center": [ + 5209.143413151025, + 5187.385224613427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.143413151025, + 5187.19084794794 + ], + [ + 5209.143413151025, + 5187.579601278915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55313A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.054647103088, + "min_y": 5186.728706469836, + "max_x": 5209.054647103088, + "max_y": 5186.830669715529, + "center": [ + 5209.054647103088, + 5186.779688092683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.054647103088, + 5186.830669715529 + ], + [ + 5209.054647103088, + 5186.728706469836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55313C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.066573453425, + "min_y": 5187.199385692081, + "max_x": 5209.066573453425, + "max_y": 5187.273230608248, + "center": [ + 5209.066573453425, + 5187.236308150164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.066573453425, + 5187.199385692081 + ], + [ + 5209.066573453425, + 5187.273230608248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55313E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.054647103088, + "min_y": 5187.486069331264, + "max_x": 5209.054647103088, + "max_y": 5187.579601278915, + "center": [ + 5209.054647103088, + 5187.53283530509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.054647103088, + 5187.579601278915 + ], + [ + 5209.054647103088, + 5187.486069331264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55313F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.013194259582, + "max_x": 5209.102810960153, + "max_y": 5188.013194259582, + "center": [ + 5208.84954934483, + 5188.013194259582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.013194259582 + ], + [ + 5208.596287729508, + 5188.013194259582 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553140", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.009180604798, + "max_x": 5209.102810960153, + "max_y": 5188.009180604798, + "center": [ + 5208.84954934483, + 5188.009180604798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.009180604798 + ], + [ + 5208.596287729508, + 5188.009180604798 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553141", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5187.704142843032, + "max_x": 5209.102810960153, + "max_y": 5188.346327604616, + "center": [ + 5208.84954934483, + 5188.025235223824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.704142843032 + ], + [ + 5209.102810960153, + 5188.346327604616 + ], + [ + 5208.596287729508, + 5188.346327604616 + ], + [ + 5208.596287729508, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553142", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.749609341335, + "min_y": 5188.084639363024, + "max_x": 5209.006483245914, + "max_y": 5188.285322101035, + "center": [ + 5208.878046293625, + 5188.184980732029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5188.084639363024 + ], + [ + 5209.006483245914, + 5188.285322101035 + ], + [ + 5208.749609341335, + 5188.285322101035 + ], + [ + 5208.749609341335, + 5188.084639363024 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553143", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.655523224593, + "min_y": 5187.972254980973, + "max_x": 5208.674152631873, + "max_y": 5187.972254980973, + "center": [ + 5208.664837928232, + 5187.972254980973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5187.972254980973 + ], + [ + 5208.655523224593, + 5187.972254980973 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553144", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.655523224593, + "min_y": 5187.965833133404, + "max_x": 5208.674152631873, + "max_y": 5187.965833133404, + "center": [ + 5208.664837928232, + 5187.965833133404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5187.965833133404 + ], + [ + 5208.655523224593, + 5187.965833133404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553145", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.65528845439, + "min_y": 5187.946968955951, + "max_x": 5208.6994386567485, + "max_y": 5187.99111915831, + "center": [ + 5208.677363555569, + 5187.96904405713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.677363555569, + 5187.96904405713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553146", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5187.855940428075, + "max_x": 5208.519225558059, + "max_y": 5187.904825581043, + "center": [ + 5208.519225558059, + 5187.880383004559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.904825581043 + ], + [ + 5208.519225558059, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553147", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398624012915, + "min_y": 5187.841681253416, + "max_x": 5208.519291067999, + "max_y": 5187.9623483085, + "center": [ + 5208.458957540457, + 5187.902014780958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.458957540457, + 5187.902014780958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5187.841580980776, + "max_x": 5208.519225558059, + "max_y": 5187.904825581043, + "center": [ + 5208.519225558059, + 5187.873203280909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.841580980776 + ], + [ + 5208.519225558059, + 5187.904825581043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553149", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5187.855940428075, + "max_x": 5208.467048046241, + "max_y": 5187.904825581043, + "center": [ + 5208.467048046241, + 5187.880383004559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.904825581043 + ], + [ + 5208.467048046241, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.466982536308, + "min_y": 5187.841681253416, + "max_x": 5208.587649591392, + "max_y": 5187.9623483085, + "center": [ + 5208.52731606385, + 5187.902014780958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.52731606385, + 5187.902014780958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5187.868702688157, + "max_x": 5208.368312139068, + "max_y": 5187.882349114372, + "center": [ + 5208.361488925971, + 5187.875525901265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5187.868702688157 + ], + [ + 5208.354665712874, + 5187.882349114372 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5187.855940428075, + "max_x": 5208.444571579551, + "max_y": 5187.953710733927, + "center": [ + 5208.444571579551, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5187.953710733927 + ], + [ + 5208.444571579551, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.234256070216, + "min_y": 5187.800470557288, + "max_x": 5208.442966117727, + "max_y": 5188.0091806047985, + "center": [ + 5208.338611093972, + 5187.904825581043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.338611093972, + 5187.904825581043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.442966117671, + "min_y": 5187.844620759623, + "max_x": 5208.442966117671, + "max_y": 5187.96503040238, + "center": [ + 5208.442966117671, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.442966117671, + 5187.844620759623 + ], + [ + 5208.442966117671, + 5187.96503040238 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55314F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5187.855940428075, + "max_x": 5208.399537211119, + "max_y": 5187.953710733927, + "center": [ + 5208.399537211119, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.399537211119, + 5187.855940428075 + ], + [ + 5208.399537211119, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553150", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5187.868702688157, + "max_x": 5208.386774951041, + "max_y": 5187.940948473845, + "center": [ + 5208.386774951041, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5187.940948473845 + ], + [ + 5208.386774951041, + 5187.868702688157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553151", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5187.868702688157, + "max_x": 5208.368312139068, + "max_y": 5187.940948473845, + "center": [ + 5208.368312139068, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5187.868702688157 + ], + [ + 5208.368312139068, + 5187.940948473845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553152", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354667162359, + "min_y": 5187.846623781919, + "max_x": 5208.471070760606, + "max_y": 5187.963027380167, + "center": [ + 5208.412868961483, + 5187.904825581043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.412868961483, + 5187.904825581043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553153", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5187.848634414407, + "max_x": 5208.322556474835, + "max_y": 5187.96101674768, + "center": [ + 5208.322556474835, + 5187.904825581043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5187.848634414407 + ], + [ + 5208.322556474835, + 5187.96101674768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553154", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5187.840607104889, + "max_x": 5208.354665712874, + "max_y": 5187.96904405713, + "center": [ + 5208.354665712874, + 5187.90482558101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.354665712874, + 5187.840607104889 + ], + [ + 5208.354665712874, + 5187.96904405713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553155", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5187.848634414407, + "max_x": 5208.322556474835, + "max_y": 5187.96101674768, + "center": [ + 5208.322556474835, + 5187.904825581043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5187.96101674768 + ], + [ + 5208.322556474835, + 5187.848634414407 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553156", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.442966117671, + "min_y": 5187.844620759623, + "max_x": 5208.442966117671, + "max_y": 5187.96503040238, + "center": [ + 5208.442966117671, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.442966117671, + 5187.844620759623 + ], + [ + 5208.442966117671, + 5187.96503040238 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553157", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.547936662213, + "min_y": 5187.7969489214, + "max_x": 5208.590668612773, + "max_y": 5188.017709008877, + "center": [ + 5208.569302637493, + 5187.907328965139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.017709008877 + ], + [ + 5208.547936662213, + 5188.017709008877 + ], + [ + 5208.547936662213, + 5187.7969489214 + ], + [ + 5208.590668612773, + 5187.7969489214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553158", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5187.775917823531, + "max_x": 5208.596287729508, + "max_y": 5188.033733338471, + "center": [ + 5208.596287729508, + 5187.904825581001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5187.775917823531 + ], + [ + 5208.596287729508, + 5188.033733338471 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553159", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5187.855940428075, + "max_x": 5208.467048046241, + "max_y": 5187.855940428075, + "center": [ + 5208.433292628681, + 5187.855940428075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.855940428075 + ], + [ + 5208.399537211119, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5187.855940428075, + "max_x": 5208.457736137763, + "max_y": 5187.864035473673, + "center": [ + 5208.451153858658, + 5187.859987950874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5187.864035473673 + ], + [ + 5208.457736137763, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.384768123691, + "min_y": 5187.815521762614, + "max_x": 5208.442966117709, + "max_y": 5187.8737197566315, + "center": [ + 5208.4138671207, + 5187.844620759623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4138671207, + 5187.844620759623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5187.855940428075, + "max_x": 5208.399537211119, + "max_y": 5187.868702688157, + "center": [ + 5208.39315608108, + 5187.862321558116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5187.868702688157 + ], + [ + 5208.399537211119, + 5187.855940428075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5187.868702688157, + "max_x": 5208.386774951041, + "max_y": 5187.868702688157, + "center": [ + 5208.377543545054, + 5187.868702688157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5187.868702688157 + ], + [ + 5208.368312139068, + 5187.868702688157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5187.840503013902, + "max_x": 5208.355082076717, + "max_y": 5187.848634414407, + "center": [ + 5208.338819275776, + 5187.844568714154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5187.848634414407 + ], + [ + 5208.355082076717, + 5187.840503013902 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55315F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354665712868, + "min_y": 5187.824050778979, + "max_x": 5208.395805674156, + "max_y": 5187.865190740266, + "center": [ + 5208.375235693512, + 5187.844620759623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.375235693512, + 5187.844620759623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553160", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.391442165523, + "min_y": 5187.864035473673, + "max_x": 5208.444571579551, + "max_y": 5187.864035473673, + "center": [ + 5208.418006872536, + 5187.864035473673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5187.864035473673 + ], + [ + 5208.391442165523, + 5187.864035473673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553161", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5187.864689033424, + "max_x": 5208.434938808107, + "max_y": 5187.864689033424, + "center": [ + 5208.402829570005, + 5187.864689033424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5187.864689033424 + ], + [ + 5208.434938808107, + 5187.864689033424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553162", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5187.824552485789, + "max_x": 5208.434938808107, + "max_y": 5187.824552485789, + "center": [ + 5208.402829570005, + 5187.824552485789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5187.824552485789 + ], + [ + 5208.434938808107, + 5187.824552485789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553163", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5187.830583574854, + "max_x": 5208.593879536661, + "max_y": 5187.8337944986615, + "center": [ + 5208.592274074757, + 5187.832189036758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5187.832189036758 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553164", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5187.833794498669, + "max_x": 5208.596287729508, + "max_y": 5187.833794498669, + "center": [ + 5208.594280902133, + 5187.833794498669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5187.833794498669 + ], + [ + 5208.592274074757, + 5187.833794498669 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553165", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5187.812763400801, + "max_x": 5208.596287729508, + "max_y": 5187.812763400801, + "center": [ + 5208.59347817114, + 5187.812763400801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5187.812763400801 + ], + [ + 5208.596287729508, + 5187.812763400801 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553166", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.58805059057, + "min_y": 5187.809712570086, + "max_x": 5208.606723231842, + "max_y": 5187.809712570086, + "center": [ + 5208.597386911206, + 5187.809712570086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.606723231842, + 5187.809712570086 + ], + [ + 5208.58805059057, + 5187.809712570086 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553167", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5187.806661739421, + "max_x": 5208.596287729508, + "max_y": 5187.806661739421, + "center": [ + 5208.59347817114, + 5187.806661739421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5187.806661739421 + ], + [ + 5208.596287729508, + 5187.806661739421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553168", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5187.812763400801, + "max_x": 5208.590668612773, + "max_y": 5187.832189036758, + "center": [ + 5208.590668612773, + 5187.822476218779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5187.812763400801 + ], + [ + 5208.590668612773, + 5187.832189036758 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553169", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526278991674, + "min_y": 5187.816304645022, + "max_x": 5208.547936662213, + "max_y": 5187.824552485789, + "center": [ + 5208.537107826944, + 5187.820428565406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.547936662213, + 5187.816304645022 + ], + [ + 5208.526278991674, + 5187.824552485789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.486071479011, + "min_y": 5187.84560010891, + "max_x": 5208.519225558123, + "max_y": 5187.878754188022, + "center": [ + 5208.502648518567, + 5187.862177148466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502648518567, + 5187.862177148466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5187.849210775214, + "max_x": 5208.512976703517, + "max_y": 5187.849210775214, + "center": [ + 5208.493136802186, + 5187.849210775214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5187.849210775214 + ], + [ + 5208.473296900855, + 5187.849210775214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.519225558135, + "min_y": 5187.817499052217, + "max_x": 5208.567389415253, + "max_y": 5187.865662909335, + "center": [ + 5208.543307486694, + 5187.841580980776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.543307486694, + 5187.841580980776 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512976703517, + "min_y": 5187.849210775214, + "max_x": 5208.519225558059, + "max_y": 5187.855940428075, + "center": [ + 5208.516101130788, + 5187.852575601644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.855940428075 + ], + [ + 5208.512976703517, + 5187.849210775214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5187.875143521734, + "max_x": 5208.512976703517, + "max_y": 5187.875143521734, + "center": [ + 5208.493136802186, + 5187.875143521734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5187.875143521734 + ], + [ + 5208.473296900855, + 5187.875143521734 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55316F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5187.849210775214, + "max_x": 5208.473296900855, + "max_y": 5187.855940428075, + "center": [ + 5208.470172473548, + 5187.852575601644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.855940428075 + ], + [ + 5208.473296900855, + 5187.849210775214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553170", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.467048046184, + "min_y": 5187.84560010891, + "max_x": 5208.500202125296, + "max_y": 5187.878754188022, + "center": [ + 5208.48362508574, + 5187.862177148466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.48362508574, + 5187.862177148466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553171", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5187.7856306415115, + "max_x": 5208.593879536661, + "max_y": 5187.788841565319, + "center": [ + 5208.592274074757, + 5187.787236103415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5187.787236103415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553172", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5187.785630641552, + "max_x": 5208.596287729508, + "max_y": 5187.785630641552, + "center": [ + 5208.594280902133, + 5187.785630641552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5187.785630641552 + ], + [ + 5208.592274074757, + 5187.785630641552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553173", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5187.787236103415, + "max_x": 5208.590668612773, + "max_y": 5187.806661739421, + "center": [ + 5208.590668612773, + 5187.796948921417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5187.787236103415 + ], + [ + 5208.590668612773, + 5187.806661739421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553174", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5187.953710733927, + "max_x": 5208.467048046241, + "max_y": 5187.953710733927, + "center": [ + 5208.433292628681, + 5187.953710733927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.953710733927 + ], + [ + 5208.399537211119, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553175", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5187.985098676215, + "max_x": 5208.434938808107, + "max_y": 5187.985098676215, + "center": [ + 5208.402829570005, + 5187.985098676215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.434938808107, + 5187.985098676215 + ], + [ + 5208.370720331904, + 5187.985098676215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553176", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5187.945615688331, + "max_x": 5208.457736137763, + "max_y": 5187.953710733927, + "center": [ + 5208.451153858658, + 5187.9496632111295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5187.945615688331 + ], + [ + 5208.457736137763, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553177", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5187.96101674768, + "max_x": 5208.355082076717, + "max_y": 5187.969148148116, + "center": [ + 5208.338819275776, + 5187.965082447898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5187.96101674768 + ], + [ + 5208.355082076717, + 5187.969148148116 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553178", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5187.940948473845, + "max_x": 5208.399537211119, + "max_y": 5187.953710733927, + "center": [ + 5208.39315608108, + 5187.947329603887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5187.940948473845 + ], + [ + 5208.399537211119, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553179", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5187.92730204768, + "max_x": 5208.368312139068, + "max_y": 5187.940948473845, + "center": [ + 5208.361488925971, + 5187.934125260763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5187.940948473845 + ], + [ + 5208.354665712874, + 5187.92730204768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5187.940948473845, + "max_x": 5208.386774951041, + "max_y": 5187.940948473845, + "center": [ + 5208.377543545054, + 5187.940948473845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5187.940948473845 + ], + [ + 5208.368312139068, + 5187.940948473845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.391442165523, + "min_y": 5187.945615688331, + "max_x": 5208.444571579551, + "max_y": 5187.945615688331, + "center": [ + 5208.418006872536, + 5187.945615688331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5187.945615688331 + ], + [ + 5208.391442165523, + 5187.945615688331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5187.944962128596, + "max_x": 5208.434938808107, + "max_y": 5187.944962128596, + "center": [ + 5208.402829570005, + 5187.944962128596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5187.944962128596 + ], + [ + 5208.434938808107, + 5187.944962128596 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.384768123691, + "min_y": 5187.935931405371, + "max_x": 5208.442966117709, + "max_y": 5187.994129399389, + "center": [ + 5208.4138671207, + 5187.96503040238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4138671207, + 5187.96503040238 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354665712868, + "min_y": 5187.944460421736, + "max_x": 5208.395805674156, + "max_y": 5187.985600383024, + "center": [ + 5208.375235693512, + 5187.96503040238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.375235693512, + 5187.96503040238 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55317F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5187.882349114372, + "max_x": 5208.354665712874, + "max_y": 5187.92730204768, + "center": [ + 5208.354665712874, + 5187.904825581027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.354665712874, + 5187.92730204768 + ], + [ + 5208.354665712874, + 5187.882349114372 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553180", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5187.982468893522, + "max_x": 5208.590668612773, + "max_y": 5188.001894529428, + "center": [ + 5208.590668612773, + 5187.9921817114755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.001894529428 + ], + [ + 5208.590668612773, + 5187.982468893522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553181", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526278991674, + "min_y": 5187.985098676215, + "max_x": 5208.547936662213, + "max_y": 5187.99334651708, + "center": [ + 5208.537107826944, + 5187.989222596647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.547936662213, + 5187.99334651708 + ], + [ + 5208.526278991674, + 5187.985098676215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553182", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5187.980863431619, + "max_x": 5208.593879536661, + "max_y": 5187.984074355426, + "center": [ + 5208.592274074757, + 5187.982468893522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5187.982468893522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553183", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5187.980863431608, + "max_x": 5208.596287729508, + "max_y": 5187.980863431608, + "center": [ + 5208.594280902133, + 5187.980863431608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5187.980863431608 + ], + [ + 5208.592274074757, + 5187.980863431608 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553184", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.519225558135, + "min_y": 5187.943988252683, + "max_x": 5208.567389415253, + "max_y": 5187.992152109801, + "center": [ + 5208.543307486694, + 5187.968070181242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.543307486694, + 5187.968070181242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553185", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5187.934507640318, + "max_x": 5208.512976703517, + "max_y": 5187.934507640318, + "center": [ + 5208.493136802186, + 5187.934507640318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5187.934507640318 + ], + [ + 5208.473296900855, + 5187.934507640318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553186", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5187.960440386806, + "max_x": 5208.512976703517, + "max_y": 5187.960440386806, + "center": [ + 5208.493136802186, + 5187.960440386806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5187.960440386806 + ], + [ + 5208.473296900855, + 5187.960440386806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553187", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.486071479011, + "min_y": 5187.930896974031, + "max_x": 5208.519225558123, + "max_y": 5187.9640510531435, + "center": [ + 5208.502648518567, + 5187.947474013587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502648518567, + 5187.947474013587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553188", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512976703517, + "min_y": 5187.953710733927, + "max_x": 5208.519225558059, + "max_y": 5187.960440386806, + "center": [ + 5208.516101130788, + 5187.957075560367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.953710733927 + ], + [ + 5208.512976703517, + 5187.960440386806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553189", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.467048046184, + "min_y": 5187.930896974031, + "max_x": 5208.500202125296, + "max_y": 5187.9640510531435, + "center": [ + 5208.48362508574, + 5187.947474013587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.48362508574, + 5187.947474013587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5187.953710733927, + "max_x": 5208.473296900855, + "max_y": 5187.960440386806, + "center": [ + 5208.470172473548, + 5187.957075560367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.953710733927 + ], + [ + 5208.473296900855, + 5187.960440386806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5187.904825581043, + "max_x": 5208.519225558059, + "max_y": 5187.953710733927, + "center": [ + 5208.519225558059, + 5187.929268157485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.904825581043 + ], + [ + 5208.519225558059, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398624012915, + "min_y": 5187.847302853587, + "max_x": 5208.519291067999, + "max_y": 5187.967969908671, + "center": [ + 5208.458957540457, + 5187.907636381129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.458957540457, + 5187.907636381129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5187.904825581043, + "max_x": 5208.519225558059, + "max_y": 5187.968070181242, + "center": [ + 5208.519225558059, + 5187.936447881142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5187.968070181242 + ], + [ + 5208.519225558059, + 5187.904825581043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5187.904825581043, + "max_x": 5208.467048046241, + "max_y": 5187.953710733927, + "center": [ + 5208.467048046241, + 5187.929268157485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5187.904825581043 + ], + [ + 5208.467048046241, + 5187.953710733927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55318F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.466982536308, + "min_y": 5187.847302853587, + "max_x": 5208.587649591392, + "max_y": 5187.967969908671, + "center": [ + 5208.52731606385, + 5187.907636381129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.52731606385, + 5187.907636381129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553190", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5188.02581636496, + "max_x": 5208.593879536661, + "max_y": 5188.029027288767, + "center": [ + 5208.592274074757, + 5188.027421826863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5188.027421826863 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553191", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5188.02902728876, + "max_x": 5208.596287729508, + "max_y": 5188.02902728876, + "center": [ + 5208.594280902133, + 5188.02902728876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.02902728876 + ], + [ + 5208.592274074757, + 5188.02902728876 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553192", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.58805059057, + "min_y": 5188.004945360141, + "max_x": 5208.606723231842, + "max_y": 5188.004945360141, + "center": [ + 5208.597386911206, + 5188.004945360141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.606723231842, + 5188.004945360141 + ], + [ + 5208.58805059057, + 5188.004945360141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.001894529428, + "max_x": 5208.596287729508, + "max_y": 5188.001894529428, + "center": [ + 5208.59347817114, + 5188.001894529428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.001894529428 + ], + [ + 5208.596287729508, + 5188.001894529428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.007996190857, + "max_x": 5208.596287729508, + "max_y": 5188.007996190857, + "center": [ + 5208.59347817114, + 5188.007996190857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.007996190857 + ], + [ + 5208.596287729508, + 5188.007996190857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.007996190857, + "max_x": 5208.590668612773, + "max_y": 5188.027421826863, + "center": [ + 5208.590668612773, + 5188.01770900886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.027421826863 + ], + [ + 5208.590668612773, + 5188.007996190857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553196", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.749609341335, + "min_y": 5187.832579795323, + "max_x": 5208.998455936447, + "max_y": 5187.944962128596, + "center": [ + 5208.874032638891, + 5187.888770961959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5187.832579795323 + ], + [ + 5208.998455936447, + 5187.944962128596 + ], + [ + 5208.825180147436, + 5187.944962128596 + ], + [ + 5208.749609341335, + 5187.869391322433 + ], + [ + 5208.749609341335, + 5187.832579795323 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553197", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5187.824552485789, + "max_x": 5209.006483245914, + "max_y": 5187.952989438162, + "center": [ + 5208.874032638842, + 5187.888770961976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5187.824552485789 + ], + [ + 5209.006483245914, + 5187.952989438162 + ], + [ + 5208.825180147436, + 5187.952989438162 + ], + [ + 5208.819503982468, + 5187.950638293608 + ], + [ + 5208.743933176276, + 5187.875067487445 + ], + [ + 5208.741582031771, + 5187.869391322433 + ], + [ + 5208.741582031771, + 5187.824552485789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5187.704142843032, + "max_x": 5208.741582031771, + "max_y": 5187.824552485789, + "center": [ + 5208.741582031771, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.741582031771, + 5187.824552485789 + ], + [ + 5208.741582031771, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.757636650908, + "min_y": 5187.704142843032, + "max_x": 5208.757636650908, + "max_y": 5187.824552485789, + "center": [ + 5208.757636650908, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.757636650908, + 5187.824552485789 + ], + [ + 5208.757636650908, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.773691269808, + "min_y": 5187.704142843032, + "max_x": 5208.773691269808, + "max_y": 5187.824552485789, + "center": [ + 5208.773691269808, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.773691269808, + 5187.824552485789 + ], + [ + 5208.773691269808, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.789745888839, + "min_y": 5187.704142843032, + "max_x": 5208.789745888839, + "max_y": 5187.824552485789, + "center": [ + 5208.789745888839, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.789745888839, + 5187.824552485789 + ], + [ + 5208.789745888839, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.805800507973, + "min_y": 5187.704142843032, + "max_x": 5208.805800507973, + "max_y": 5187.824552485789, + "center": [ + 5208.805800507973, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.805800507973, + 5187.824552485789 + ], + [ + 5208.805800507973, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.821855127038, + "min_y": 5187.704142843032, + "max_x": 5208.821855127038, + "max_y": 5187.824552485789, + "center": [ + 5208.821855127038, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.821855127038, + 5187.824552485789 + ], + [ + 5208.821855127038, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.837909746011, + "min_y": 5187.704142843032, + "max_x": 5208.837909746011, + "max_y": 5187.824552485789, + "center": [ + 5208.837909746011, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.837909746011, + 5187.824552485789 + ], + [ + 5208.837909746011, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55319F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.853964365044, + "min_y": 5187.704142843032, + "max_x": 5208.853964365044, + "max_y": 5187.824552485789, + "center": [ + 5208.853964365044, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.853964365044, + 5187.824552485789 + ], + [ + 5208.853964365044, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.870018984113, + "min_y": 5187.704142843032, + "max_x": 5208.870018984113, + "max_y": 5187.824552485789, + "center": [ + 5208.870018984113, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.870018984113, + 5187.824552485789 + ], + [ + 5208.870018984113, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.743933176276, + "min_y": 5187.869391322433, + "max_x": 5208.749609341335, + "max_y": 5187.875067487445, + "center": [ + 5208.746771258806, + 5187.872229404939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.749609341335, + 5187.869391322433 + ], + [ + 5208.743933176276, + 5187.875067487445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5187.824552485789, + "max_x": 5208.749609341335, + "max_y": 5187.832579795323, + "center": [ + 5208.745595686552, + 5187.828566140556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.749609341335, + 5187.832579795323 + ], + [ + 5208.741582031771, + 5187.824552485789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.88607360308, + "min_y": 5187.704142843032, + "max_x": 5208.88607360308, + "max_y": 5187.824552485789, + "center": [ + 5208.88607360308, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88607360308, + 5187.824552485789 + ], + [ + 5208.88607360308, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.902128222111, + "min_y": 5187.704142843032, + "max_x": 5208.902128222111, + "max_y": 5187.824552485789, + "center": [ + 5208.902128222111, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.902128222111, + 5187.824552485789 + ], + [ + 5208.902128222111, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.918182841245, + "min_y": 5187.704142843032, + "max_x": 5208.918182841245, + "max_y": 5187.824552485789, + "center": [ + 5208.918182841245, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.918182841245, + 5187.824552485789 + ], + [ + 5208.918182841245, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.934237460317, + "min_y": 5187.704142843032, + "max_x": 5208.934237460317, + "max_y": 5187.824552485789, + "center": [ + 5208.934237460317, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.934237460317, + 5187.824552485789 + ], + [ + 5208.934237460317, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.95029207938, + "min_y": 5187.704142843032, + "max_x": 5208.95029207938, + "max_y": 5187.824552485789, + "center": [ + 5208.95029207938, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.95029207938, + 5187.824552485789 + ], + [ + 5208.95029207938, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.966346698313, + "min_y": 5187.704142843032, + "max_x": 5208.966346698313, + "max_y": 5187.824552485789, + "center": [ + 5208.966346698313, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.966346698313, + 5187.824552485789 + ], + [ + 5208.966346698313, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.990428626883, + "min_y": 5187.704142843032, + "max_x": 5208.990428626883, + "max_y": 5187.824552485789, + "center": [ + 5208.990428626883, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.990428626883, + 5187.824552485789 + ], + [ + 5208.990428626883, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.006483245914, + "min_y": 5187.704142843032, + "max_x": 5209.006483245914, + "max_y": 5187.824552485789, + "center": [ + 5209.006483245914, + 5187.764347664411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5187.824552485789 + ], + [ + 5209.006483245914, + 5187.704142843032 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.998455936447, + "min_y": 5187.824552485789, + "max_x": 5209.006483245914, + "max_y": 5187.832579795323, + "center": [ + 5209.00246959118, + 5187.828566140556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5187.832579795323 + ], + [ + 5209.006483245914, + 5187.824552485789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.82750423801, + "min_y": 5187.878651461462, + "max_x": 5208.992888924671, + "max_y": 5187.898890462488, + "center": [ + 5208.910196581341, + 5187.888770961976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.992888924671, + 5187.878651461462 + ], + [ + 5208.992888924671, + 5187.898890462488 + ], + [ + 5208.82750423801, + 5187.898890462488 + ], + [ + 5208.82750423801, + 5187.878651461462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5187.965833133404, + "max_x": 5208.699203886739, + "max_y": 5187.965833133404, + "center": [ + 5208.689889183099, + 5187.965833133404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.699203886739, + 5187.965833133404 + ], + [ + 5208.680574479458, + 5187.965833133404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5187.972254980973, + "max_x": 5208.699203886739, + "max_y": 5187.972254980973, + "center": [ + 5208.689889183099, + 5187.972254980973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.699203886739, + 5187.972254980973 + ], + [ + 5208.680574479458, + 5187.972254980973 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5187.972254980973, + "max_x": 5208.680574479458, + "max_y": 5187.99088438822, + "center": [ + 5208.680574479458, + 5187.981569684596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.680574479458, + 5187.99088438822 + ], + [ + 5208.680574479458, + 5187.972254980973 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674152631873, + "min_y": 5187.972254980973, + "max_x": 5208.674152631873, + "max_y": 5187.99088438822, + "center": [ + 5208.674152631873, + 5187.981569684596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5187.99088438822 + ], + [ + 5208.674152631873, + 5187.972254980973 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674152631873, + "min_y": 5187.947203726123, + "max_x": 5208.674152631873, + "max_y": 5187.965833133404, + "center": [ + 5208.674152631873, + 5187.9565184297635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5187.965833133404 + ], + [ + 5208.674152631873, + 5187.947203726123 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5187.947203726123, + "max_x": 5208.680574479458, + "max_y": 5187.965833133404, + "center": [ + 5208.680574479458, + 5187.9565184297635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.680574479458, + 5187.965833133404 + ], + [ + 5208.680574479458, + 5187.947203726123 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.82135735647, + "min_y": 5187.944962128596, + "max_x": 5208.825180147436, + "max_y": 5187.95202073808, + "center": [ + 5208.823268751953, + 5187.948491433338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.825180147436, + 5187.944962128596 + ], + [ + 5208.82135735647, + 5187.95202073808 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.998455936447, + "min_y": 5187.944962128596, + "max_x": 5209.006483245914, + "max_y": 5187.952989438162, + "center": [ + 5209.00246959118, + 5187.948975783379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5187.944962128596 + ], + [ + 5209.006483245914, + 5187.952989438162 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.788429592988, + "max_x": 5209.110838269719, + "max_y": 5187.796456902521, + "center": [ + 5209.110838269719, + 5187.792443247754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.788429592988 + ], + [ + 5209.110838269719, + 5187.796456902521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.778395456078, + "max_x": 5209.110838269719, + "max_y": 5187.78040228347, + "center": [ + 5209.106824614936, + 5187.779398869774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.778395456078 + ], + [ + 5209.110838269719, + 5187.78040228347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.804484212039, + "max_x": 5209.110838269719, + "max_y": 5187.80649103943, + "center": [ + 5209.106824614936, + 5187.805487625734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.804484212039 + ], + [ + 5209.102810960153, + 5187.80649103943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.788429592988, + "max_x": 5209.102810960153, + "max_y": 5187.796456902521, + "center": [ + 5209.102810960153, + 5187.792443247754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.788429592988 + ], + [ + 5209.102810960153, + 5187.796456902521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.788429592988, + "max_x": 5209.110838269719, + "max_y": 5187.788429592988, + "center": [ + 5209.106824614936, + 5187.788429592988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.788429592988 + ], + [ + 5209.110838269719, + 5187.788429592988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.78040228347, + "max_x": 5209.110838269719, + "max_y": 5187.788429592988, + "center": [ + 5209.110838269719, + 5187.784415938229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.788429592988 + ], + [ + 5209.110838269719, + 5187.78040228347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.796456902521, + "max_x": 5209.110838269719, + "max_y": 5187.796456902521, + "center": [ + 5209.106824614936, + 5187.796456902521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.796456902521 + ], + [ + 5209.110838269719, + 5187.796456902521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.796456902521, + "max_x": 5209.110838269719, + "max_y": 5187.804484212039, + "center": [ + 5209.110838269719, + 5187.80047055728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.796456902521 + ], + [ + 5209.110838269719, + 5187.804484212039 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.892784616741, + "max_x": 5209.110838269719, + "max_y": 5187.900811926259, + "center": [ + 5209.110838269719, + 5187.8967982715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.892784616741 + ], + [ + 5209.110838269719, + 5187.900811926259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.908839235793, + "max_x": 5209.110838269719, + "max_y": 5187.910846063184, + "center": [ + 5209.106824614936, + 5187.909842649488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.908839235793 + ], + [ + 5209.102810960153, + 5187.910846063184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.882750479867, + "max_x": 5209.110838269719, + "max_y": 5187.884757307208, + "center": [ + 5209.106824614936, + 5187.883753893538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.882750479867 + ], + [ + 5209.110838269719, + 5187.884757307208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.900811926259, + "max_x": 5209.110838269719, + "max_y": 5187.908839235793, + "center": [ + 5209.110838269719, + 5187.904825581026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.900811926259 + ], + [ + 5209.110838269719, + 5187.908839235793 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.900811926259, + "max_x": 5209.110838269719, + "max_y": 5187.900811926259, + "center": [ + 5209.106824614936, + 5187.900811926259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.900811926259 + ], + [ + 5209.110838269719, + 5187.900811926259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5187.884757307208, + "max_x": 5209.110838269719, + "max_y": 5187.892784616741, + "center": [ + 5209.110838269719, + 5187.888770961974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5187.892784616741 + ], + [ + 5209.110838269719, + 5187.884757307208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.892784616741, + "max_x": 5209.110838269719, + "max_y": 5187.892784616741, + "center": [ + 5209.106824614936, + 5187.892784616741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.892784616741 + ], + [ + 5209.110838269719, + 5187.892784616741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5187.892784616741, + "max_x": 5209.102810960153, + "max_y": 5187.900811926259, + "center": [ + 5209.102810960153, + 5187.8967982715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5187.892784616741 + ], + [ + 5209.102810960153, + 5187.900811926259 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.919788303119, + "min_y": 5188.225917961822, + "max_x": 5208.9518975411975, + "max_y": 5188.2580271999, + "center": [ + 5208.935842922158, + 5188.241972580861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.935842922158, + 5188.241972580861 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.7191055651465, + "min_y": 5188.225917961822, + "max_x": 5208.751214803225, + "max_y": 5188.2580271999, + "center": [ + 5208.735160184186, + 5188.241972580861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.735160184186, + 5188.241972580861 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.7191055651465, + "min_y": 5188.025235223811, + "max_x": 5208.751214803225, + "max_y": 5188.057344461889, + "center": [ + 5208.735160184186, + 5188.04128984285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.735160184186, + 5188.04128984285 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.919788303119, + "min_y": 5188.025235223811, + "max_x": 5208.9518975411975, + "max_y": 5188.057344461889, + "center": [ + 5208.935842922158, + 5188.04128984285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.935842922158, + 5188.04128984285 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531C9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.064603208218, + "max_x": 5208.604315039072, + "max_y": 5188.265285946195, + "center": [ + 5208.60030138429, + 5188.164944577206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.604315039072, + 5188.265285946195 + ], + [ + 5208.596287729508, + 5188.265285946195 + ], + [ + 5208.596287729508, + 5188.064603208218 + ], + [ + 5208.604315039072, + 5188.064603208218 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.730793449412, + "max_x": 5209.102810960153, + "max_y": 5188.730793449412, + "center": [ + 5208.84954934483, + 5188.730793449412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.730793449412 + ], + [ + 5208.596287729508, + 5188.730793449412 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.726779794661, + "max_x": 5209.102810960153, + "max_y": 5188.726779794661, + "center": [ + 5208.84954934483, + 5188.726779794661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.726779794661 + ], + [ + 5208.596287729508, + 5188.726779794661 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.421742032912, + "max_x": 5209.102810960153, + "max_y": 5189.063926794446, + "center": [ + 5208.84954934483, + 5188.742834413679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.421742032912 + ], + [ + 5209.102810960153, + 5189.063926794446 + ], + [ + 5208.596287729508, + 5189.063926794446 + ], + [ + 5208.596287729508, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.749609341335, + "min_y": 5188.802238552938, + "max_x": 5209.006483245914, + "max_y": 5189.002921290898, + "center": [ + 5208.878046293625, + 5188.902579921918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5188.802238552938 + ], + [ + 5209.006483245914, + 5189.002921290898 + ], + [ + 5208.749609341335, + 5189.002921290898 + ], + [ + 5208.749609341335, + 5188.802238552938 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.655523224593, + "min_y": 5188.689854170886, + "max_x": 5208.674152631873, + "max_y": 5188.689854170886, + "center": [ + 5208.664837928232, + 5188.689854170886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5188.689854170886 + ], + [ + 5208.655523224593, + 5188.689854170886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.655523224593, + "min_y": 5188.683432323231, + "max_x": 5208.674152631873, + "max_y": 5188.683432323231, + "center": [ + 5208.664837928232, + 5188.683432323231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5188.683432323231 + ], + [ + 5208.655523224593, + 5188.683432323231 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.65528845439, + "min_y": 5188.664568145897, + "max_x": 5208.6994386567485, + "max_y": 5188.708718348255, + "center": [ + 5208.677363555569, + 5188.686643247076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.677363555569, + 5188.686643247076 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5188.573539617989, + "max_x": 5208.519225558059, + "max_y": 5188.622424770922, + "center": [ + 5208.519225558059, + 5188.597982194456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.622424770922 + ], + [ + 5208.519225558059, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398624012915, + "min_y": 5188.559280443296, + "max_x": 5208.519291067999, + "max_y": 5188.67994749838, + "center": [ + 5208.458957540457, + 5188.619613970838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.458957540457, + 5188.619613970838 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5188.559180170724, + "max_x": 5208.519225558059, + "max_y": 5188.622424770922, + "center": [ + 5208.519225558059, + 5188.590802470823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.559180170724 + ], + [ + 5208.519225558059, + 5188.622424770922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5188.573539617989, + "max_x": 5208.467048046241, + "max_y": 5188.622424770922, + "center": [ + 5208.467048046241, + 5188.597982194456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.622424770922 + ], + [ + 5208.467048046241, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.466982536308, + "min_y": 5188.559280443296, + "max_x": 5208.587649591392, + "max_y": 5188.67994749838, + "center": [ + 5208.52731606385, + 5188.619613970838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.52731606385, + 5188.619613970838 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5188.58630187807, + "max_x": 5208.368312139068, + "max_y": 5188.599948304251, + "center": [ + 5208.361488925971, + 5188.59312509116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5188.58630187807 + ], + [ + 5208.354665712874, + 5188.599948304251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5188.573539617989, + "max_x": 5208.444571579551, + "max_y": 5188.671309923807, + "center": [ + 5208.444571579551, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5188.671309923807 + ], + [ + 5208.444571579551, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.234256070216, + "min_y": 5188.518069747167, + "max_x": 5208.442966117727, + "max_y": 5188.726779794678, + "center": [ + 5208.338611093972, + 5188.622424770922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.338611093972, + 5188.622424770922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.442966117671, + "min_y": 5188.562219949503, + "max_x": 5208.442966117671, + "max_y": 5188.682629592342, + "center": [ + 5208.442966117671, + 5188.622424770922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.442966117671, + 5188.562219949503 + ], + [ + 5208.442966117671, + 5188.682629592342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5188.573539617989, + "max_x": 5208.399537211119, + "max_y": 5188.671309923807, + "center": [ + 5208.399537211119, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.399537211119, + 5188.573539617989 + ], + [ + 5208.399537211119, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5188.58630187807, + "max_x": 5208.386774951041, + "max_y": 5188.658547663726, + "center": [ + 5208.386774951041, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5188.658547663726 + ], + [ + 5208.386774951041, + 5188.58630187807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5188.58630187807, + "max_x": 5208.368312139068, + "max_y": 5188.658547663726, + "center": [ + 5208.368312139068, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5188.58630187807 + ], + [ + 5208.368312139068, + 5188.658547663726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354667162359, + "min_y": 5188.564222971799, + "max_x": 5208.471070760606, + "max_y": 5188.680626570046, + "center": [ + 5208.412868961483, + 5188.622424770922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.412868961483, + 5188.622424770922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5188.566233604287, + "max_x": 5208.322556474835, + "max_y": 5188.678615937559, + "center": [ + 5208.322556474835, + 5188.622424770923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5188.566233604287 + ], + [ + 5208.322556474835, + 5188.678615937559 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5188.558206294718, + "max_x": 5208.354665712874, + "max_y": 5188.686643247076, + "center": [ + 5208.354665712874, + 5188.622424770897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.354665712874, + 5188.558206294718 + ], + [ + 5208.354665712874, + 5188.686643247076 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5188.566233604287, + "max_x": 5208.322556474835, + "max_y": 5188.678615937559, + "center": [ + 5208.322556474835, + 5188.622424770923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5188.678615937559 + ], + [ + 5208.322556474835, + 5188.566233604287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.442966117671, + "min_y": 5188.562219949503, + "max_x": 5208.442966117671, + "max_y": 5188.682629592342, + "center": [ + 5208.442966117671, + 5188.622424770922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.442966117671, + 5188.562219949503 + ], + [ + 5208.442966117671, + 5188.682629592342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.547936662213, + "min_y": 5188.514548111314, + "max_x": 5208.590668612773, + "max_y": 5188.735308198757, + "center": [ + 5208.569302637493, + 5188.624928155035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.735308198757 + ], + [ + 5208.547936662213, + 5188.735308198757 + ], + [ + 5208.547936662213, + 5188.514548111314 + ], + [ + 5208.590668612773, + 5188.514548111314 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.493517013495, + "max_x": 5208.596287729508, + "max_y": 5188.751332528385, + "center": [ + 5208.596287729508, + 5188.62242477094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.493517013495 + ], + [ + 5208.596287729508, + 5188.751332528385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5188.573539617989, + "max_x": 5208.467048046241, + "max_y": 5188.573539617989, + "center": [ + 5208.433292628681, + 5188.573539617989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.573539617989 + ], + [ + 5208.399537211119, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5188.573539617989, + "max_x": 5208.457736137763, + "max_y": 5188.581634663552, + "center": [ + 5208.451153858658, + 5188.57758714077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5188.581634663552 + ], + [ + 5208.457736137763, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.384768123691, + "min_y": 5188.533120952494, + "max_x": 5208.442966117709, + "max_y": 5188.591318946512, + "center": [ + 5208.4138671207, + 5188.562219949503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4138671207, + 5188.562219949503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5188.573539617989, + "max_x": 5208.399537211119, + "max_y": 5188.58630187807, + "center": [ + 5208.39315608108, + 5188.5799207480295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5188.58630187807 + ], + [ + 5208.399537211119, + 5188.573539617989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5188.58630187807, + "max_x": 5208.386774951041, + "max_y": 5188.58630187807, + "center": [ + 5208.377543545054, + 5188.58630187807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5188.58630187807 + ], + [ + 5208.368312139068, + 5188.58630187807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5188.558102203816, + "max_x": 5208.355082076717, + "max_y": 5188.566233604287, + "center": [ + 5208.338819275776, + 5188.562167904051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5188.566233604287 + ], + [ + 5208.355082076717, + 5188.558102203816 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354665712868, + "min_y": 5188.541649968859, + "max_x": 5208.395805674156, + "max_y": 5188.582789930147, + "center": [ + 5208.375235693512, + 5188.562219949503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.375235693512, + 5188.562219949503 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.391442165523, + "min_y": 5188.581634663552, + "max_x": 5208.444571579551, + "max_y": 5188.581634663552, + "center": [ + 5208.418006872536, + 5188.581634663552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5188.581634663552 + ], + [ + 5208.391442165523, + 5188.581634663552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5188.582288223287, + "max_x": 5208.434938808107, + "max_y": 5188.582288223287, + "center": [ + 5208.402829570005, + 5188.582288223287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5188.582288223287 + ], + [ + 5208.434938808107, + 5188.582288223287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531ED", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5188.542151675752, + "max_x": 5208.434938808107, + "max_y": 5188.542151675752, + "center": [ + 5208.402829570005, + 5188.542151675752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5188.542151675752 + ], + [ + 5208.434938808107, + 5188.542151675752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531EE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5188.548182764734, + "max_x": 5208.593879536661, + "max_y": 5188.551393688541, + "center": [ + 5208.592274074757, + 5188.549788226637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5188.549788226637 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5188.551393688499, + "max_x": 5208.596287729508, + "max_y": 5188.551393688499, + "center": [ + 5208.594280902133, + 5188.551393688499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.551393688499 + ], + [ + 5208.592274074757, + 5188.551393688499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.530362590681, + "max_x": 5208.596287729508, + "max_y": 5188.530362590681, + "center": [ + 5208.59347817114, + 5188.530362590681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.530362590681 + ], + [ + 5208.596287729508, + 5188.530362590681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.58805059057, + "min_y": 5188.527311759965, + "max_x": 5208.606723231842, + "max_y": 5188.527311759965, + "center": [ + 5208.597386911206, + 5188.527311759965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.606723231842, + 5188.527311759965 + ], + [ + 5208.58805059057, + 5188.527311759965 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.52426092925, + "max_x": 5208.596287729508, + "max_y": 5188.52426092925, + "center": [ + 5208.59347817114, + 5188.52426092925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.52426092925 + ], + [ + 5208.596287729508, + 5188.52426092925 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.530362590681, + "max_x": 5208.590668612773, + "max_y": 5188.549788226637, + "center": [ + 5208.590668612773, + 5188.540075408659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.530362590681 + ], + [ + 5208.590668612773, + 5188.549788226637 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526278991674, + "min_y": 5188.533903834886, + "max_x": 5208.547936662213, + "max_y": 5188.542151675752, + "center": [ + 5208.537107826944, + 5188.5380277553195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.547936662213, + 5188.533903834886 + ], + [ + 5208.526278991674, + 5188.542151675752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.486071479011, + "min_y": 5188.563199298791, + "max_x": 5208.519225558123, + "max_y": 5188.596353377903, + "center": [ + 5208.502648518567, + 5188.579776338347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502648518567, + 5188.579776338347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5188.566809965077, + "max_x": 5208.512976703517, + "max_y": 5188.566809965077, + "center": [ + 5208.493136802186, + 5188.566809965077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5188.566809965077 + ], + [ + 5208.473296900855, + 5188.566809965077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.519225558135, + "min_y": 5188.535098242165, + "max_x": 5208.567389415253, + "max_y": 5188.583262099283, + "center": [ + 5208.543307486694, + 5188.559180170724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.543307486694, + 5188.559180170724 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512976703517, + "min_y": 5188.566809965077, + "max_x": 5208.519225558059, + "max_y": 5188.573539617989, + "center": [ + 5208.516101130788, + 5188.570174791533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.573539617989 + ], + [ + 5208.512976703517, + 5188.566809965077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5188.592742711597, + "max_x": 5208.512976703517, + "max_y": 5188.592742711597, + "center": [ + 5208.493136802186, + 5188.592742711597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5188.592742711597 + ], + [ + 5208.473296900855, + 5188.592742711597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5188.566809965077, + "max_x": 5208.473296900855, + "max_y": 5188.573539617989, + "center": [ + 5208.470172473548, + 5188.570174791533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.573539617989 + ], + [ + 5208.473296900855, + 5188.566809965077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.467048046184, + "min_y": 5188.563199298791, + "max_x": 5208.500202125296, + "max_y": 5188.596353377903, + "center": [ + 5208.48362508574, + 5188.579776338347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.48362508574, + 5188.579776338347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5188.503229831424, + "max_x": 5208.593879536661, + "max_y": 5188.506440755231, + "center": [ + 5208.592274074757, + 5188.504835293327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5188.504835293327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5188.503229831431, + "max_x": 5208.596287729508, + "max_y": 5188.503229831431, + "center": [ + 5208.594280902133, + 5188.503229831431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.503229831431 + ], + [ + 5208.592274074757, + 5188.503229831431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.504835293327, + "max_x": 5208.590668612773, + "max_y": 5188.52426092925, + "center": [ + 5208.590668612773, + 5188.514548111289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.504835293327 + ], + [ + 5208.590668612773, + 5188.52426092925 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5531FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.399537211119, + "min_y": 5188.671309923807, + "max_x": 5208.467048046241, + "max_y": 5188.671309923807, + "center": [ + 5208.433292628681, + 5188.671309923807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.671309923807 + ], + [ + 5208.399537211119, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553200", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5188.702697866126, + "max_x": 5208.434938808107, + "max_y": 5188.702697866126, + "center": [ + 5208.402829570005, + 5188.702697866126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.434938808107, + 5188.702697866126 + ], + [ + 5208.370720331904, + 5188.702697866126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553201", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.444571579551, + "min_y": 5188.663214878244, + "max_x": 5208.457736137763, + "max_y": 5188.671309923807, + "center": [ + 5208.451153858658, + 5188.667262401025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5188.663214878244 + ], + [ + 5208.457736137763, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553202", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.322556474835, + "min_y": 5188.678615937559, + "max_x": 5208.355082076717, + "max_y": 5188.68674733798, + "center": [ + 5208.338819275776, + 5188.682681637769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.322556474835, + 5188.678615937559 + ], + [ + 5208.355082076717, + 5188.68674733798 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553203", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.386774951041, + "min_y": 5188.658547663726, + "max_x": 5208.399537211119, + "max_y": 5188.671309923807, + "center": [ + 5208.39315608108, + 5188.664928793766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5188.658547663726 + ], + [ + 5208.399537211119, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553204", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5188.644901237545, + "max_x": 5208.368312139068, + "max_y": 5188.658547663726, + "center": [ + 5208.361488925971, + 5188.651724450636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.368312139068, + 5188.658547663726 + ], + [ + 5208.354665712874, + 5188.644901237545 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553205", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.368312139068, + "min_y": 5188.658547663726, + "max_x": 5208.386774951041, + "max_y": 5188.658547663726, + "center": [ + 5208.377543545054, + 5188.658547663726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.386774951041, + 5188.658547663726 + ], + [ + 5208.368312139068, + 5188.658547663726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553206", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.391442165523, + "min_y": 5188.663214878244, + "max_x": 5208.444571579551, + "max_y": 5188.663214878244, + "center": [ + 5208.418006872536, + 5188.663214878244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.444571579551, + 5188.663214878244 + ], + [ + 5208.391442165523, + 5188.663214878244 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553207", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.370720331904, + "min_y": 5188.662561318508, + "max_x": 5208.434938808107, + "max_y": 5188.662561318508, + "center": [ + 5208.402829570005, + 5188.662561318508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.370720331904, + 5188.662561318508 + ], + [ + 5208.434938808107, + 5188.662561318508 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553208", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.384768123691, + "min_y": 5188.653530595333, + "max_x": 5208.442966117709, + "max_y": 5188.711728589351, + "center": [ + 5208.4138671207, + 5188.682629592342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.4138671207, + 5188.682629592342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553209", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.354665712868, + "min_y": 5188.662059611698, + "max_x": 5208.395805674156, + "max_y": 5188.703199572986, + "center": [ + 5208.375235693512, + 5188.682629592342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.375235693512, + 5188.682629592342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.354665712874, + "min_y": 5188.599948304251, + "max_x": 5208.354665712874, + "max_y": 5188.644901237545, + "center": [ + 5208.354665712874, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.354665712874, + 5188.644901237545 + ], + [ + 5208.354665712874, + 5188.599948304251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.700068083434, + "max_x": 5208.590668612773, + "max_y": 5188.719493719389, + "center": [ + 5208.590668612773, + 5188.709780901412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.719493719389 + ], + [ + 5208.590668612773, + 5188.700068083434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.526278991674, + "min_y": 5188.702697866126, + "max_x": 5208.547936662213, + "max_y": 5188.71094570691, + "center": [ + 5208.537107826944, + 5188.706821786518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.547936662213, + 5188.71094570691 + ], + [ + 5208.526278991674, + 5188.702697866126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5188.698462621531, + "max_x": 5208.593879536661, + "max_y": 5188.701673545338, + "center": [ + 5208.592274074757, + 5188.700068083434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5188.700068083434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5188.698462621488, + "max_x": 5208.596287729508, + "max_y": 5188.698462621488, + "center": [ + 5208.594280902133, + 5188.698462621488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.698462621488 + ], + [ + 5208.592274074757, + 5188.698462621488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55320F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.519225558135, + "min_y": 5188.661587442596, + "max_x": 5208.567389415253, + "max_y": 5188.709751299714, + "center": [ + 5208.543307486694, + 5188.685669371155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.543307486694, + 5188.685669371155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553210", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5188.652106830198, + "max_x": 5208.512976703517, + "max_y": 5188.652106830198, + "center": [ + 5208.493136802186, + 5188.652106830198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5188.652106830198 + ], + [ + 5208.473296900855, + 5188.652106830198 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553211", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.473296900855, + "min_y": 5188.678039576719, + "max_x": 5208.512976703517, + "max_y": 5188.678039576719, + "center": [ + 5208.493136802186, + 5188.678039576719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512976703517, + 5188.678039576719 + ], + [ + 5208.473296900855, + 5188.678039576719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553212", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.486071479011, + "min_y": 5188.648496163894, + "max_x": 5208.519225558123, + "max_y": 5188.6816502430065, + "center": [ + 5208.502648518567, + 5188.66507320345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.502648518567, + 5188.66507320345 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553213", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512976703517, + "min_y": 5188.671309923807, + "max_x": 5208.519225558059, + "max_y": 5188.678039576719, + "center": [ + 5208.516101130788, + 5188.674674750263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.671309923807 + ], + [ + 5208.512976703517, + 5188.678039576719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553214", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.467048046184, + "min_y": 5188.648496163894, + "max_x": 5208.500202125296, + "max_y": 5188.6816502430065, + "center": [ + 5208.48362508574, + 5188.66507320345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.48362508574, + 5188.66507320345 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553215", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5188.671309923807, + "max_x": 5208.473296900855, + "max_y": 5188.678039576719, + "center": [ + 5208.470172473548, + 5188.674674750263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.671309923807 + ], + [ + 5208.473296900855, + 5188.678039576719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553216", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5188.622424770922, + "max_x": 5208.519225558059, + "max_y": 5188.671309923807, + "center": [ + 5208.519225558059, + 5188.646867347365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.622424770922 + ], + [ + 5208.519225558059, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553217", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.398624012915, + "min_y": 5188.564902043466, + "max_x": 5208.519291067999, + "max_y": 5188.685569098549, + "center": [ + 5208.458957540457, + 5188.625235571008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.458957540457, + 5188.625235571008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553218", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.519225558059, + "min_y": 5188.622424770922, + "max_x": 5208.519225558059, + "max_y": 5188.685669371155, + "center": [ + 5208.519225558059, + 5188.654047071039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.519225558059, + 5188.685669371155 + ], + [ + 5208.519225558059, + 5188.622424770922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553219", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.467048046241, + "min_y": 5188.622424770922, + "max_x": 5208.467048046241, + "max_y": 5188.671309923807, + "center": [ + 5208.467048046241, + 5188.646867347365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.467048046241, + 5188.622424770922 + ], + [ + 5208.467048046241, + 5188.671309923807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.466982536308, + "min_y": 5188.564902043466, + "max_x": 5208.587649591392, + "max_y": 5188.685569098549, + "center": [ + 5208.52731606385, + 5188.625235571008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.52731606385, + 5188.625235571008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.590668612854, + "min_y": 5188.7434155548235, + "max_x": 5208.593879536661, + "max_y": 5188.746626478631, + "center": [ + 5208.592274074757, + 5188.745021016727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.592274074757, + 5188.745021016727 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.592274074757, + "min_y": 5188.746626478639, + "max_x": 5208.596287729508, + "max_y": 5188.746626478639, + "center": [ + 5208.594280902133, + 5188.746626478639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.596287729508, + 5188.746626478639 + ], + [ + 5208.592274074757, + 5188.746626478639 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.58805059057, + "min_y": 5188.722544550105, + "max_x": 5208.606723231842, + "max_y": 5188.722544550105, + "center": [ + 5208.597386911206, + 5188.722544550105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.606723231842, + 5188.722544550105 + ], + [ + 5208.58805059057, + 5188.722544550105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.719493719389, + "max_x": 5208.596287729508, + "max_y": 5188.719493719389, + "center": [ + 5208.59347817114, + 5188.719493719389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.719493719389 + ], + [ + 5208.596287729508, + 5188.719493719389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55321F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.72559538082, + "max_x": 5208.596287729508, + "max_y": 5188.72559538082, + "center": [ + 5208.59347817114, + 5188.72559538082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.72559538082 + ], + [ + 5208.596287729508, + 5188.72559538082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553220", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.590668612773, + "min_y": 5188.72559538082, + "max_x": 5208.590668612773, + "max_y": 5188.745021016727, + "center": [ + 5208.590668612773, + 5188.735308198773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.590668612773, + 5188.745021016727 + ], + [ + 5208.590668612773, + 5188.72559538082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553221", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.749609341335, + "min_y": 5188.550178985269, + "max_x": 5208.998455936447, + "max_y": 5188.662561318508, + "center": [ + 5208.874032638891, + 5188.606370151889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5188.550178985269 + ], + [ + 5208.998455936447, + 5188.662561318508 + ], + [ + 5208.825180147436, + 5188.662561318508 + ], + [ + 5208.749609341335, + 5188.586990512379 + ], + [ + 5208.749609341335, + 5188.550178985269 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553222", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5188.542151675752, + "max_x": 5209.006483245914, + "max_y": 5188.670588627991, + "center": [ + 5208.874032638842, + 5188.6063701518715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5188.542151675752 + ], + [ + 5209.006483245914, + 5188.670588627991 + ], + [ + 5208.825180147436, + 5188.670588627991 + ], + [ + 5208.819503982468, + 5188.668237483488 + ], + [ + 5208.743933176276, + 5188.592666677359 + ], + [ + 5208.741582031771, + 5188.586990512379 + ], + [ + 5208.741582031771, + 5188.542151675752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553223", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5188.421742032912, + "max_x": 5208.741582031771, + "max_y": 5188.542151675752, + "center": [ + 5208.741582031771, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.741582031771, + 5188.542151675752 + ], + [ + 5208.741582031771, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.757636650908, + "min_y": 5188.421742032912, + "max_x": 5208.757636650908, + "max_y": 5188.542151675752, + "center": [ + 5208.757636650908, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.757636650908, + 5188.542151675752 + ], + [ + 5208.757636650908, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553225", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.773691269808, + "min_y": 5188.421742032912, + "max_x": 5208.773691269808, + "max_y": 5188.542151675752, + "center": [ + 5208.773691269808, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.773691269808, + 5188.542151675752 + ], + [ + 5208.773691269808, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553226", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.789745888839, + "min_y": 5188.421742032912, + "max_x": 5208.789745888839, + "max_y": 5188.542151675752, + "center": [ + 5208.789745888839, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.789745888839, + 5188.542151675752 + ], + [ + 5208.789745888839, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.805800507973, + "min_y": 5188.421742032912, + "max_x": 5208.805800507973, + "max_y": 5188.542151675752, + "center": [ + 5208.805800507973, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.805800507973, + 5188.542151675752 + ], + [ + 5208.805800507973, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.821855127038, + "min_y": 5188.421742032912, + "max_x": 5208.821855127038, + "max_y": 5188.542151675752, + "center": [ + 5208.821855127038, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.821855127038, + 5188.542151675752 + ], + [ + 5208.821855127038, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553229", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.837909746011, + "min_y": 5188.421742032912, + "max_x": 5208.837909746011, + "max_y": 5188.542151675752, + "center": [ + 5208.837909746011, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.837909746011, + 5188.542151675752 + ], + [ + 5208.837909746011, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.853964365044, + "min_y": 5188.421742032912, + "max_x": 5208.853964365044, + "max_y": 5188.542151675752, + "center": [ + 5208.853964365044, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.853964365044, + 5188.542151675752 + ], + [ + 5208.853964365044, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.870018984113, + "min_y": 5188.421742032912, + "max_x": 5208.870018984113, + "max_y": 5188.542151675752, + "center": [ + 5208.870018984113, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.870018984113, + 5188.542151675752 + ], + [ + 5208.870018984113, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.743933176276, + "min_y": 5188.586990512379, + "max_x": 5208.749609341335, + "max_y": 5188.592666677359, + "center": [ + 5208.746771258806, + 5188.58982859487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.749609341335, + 5188.586990512379 + ], + [ + 5208.743933176276, + 5188.592666677359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5188.542151675752, + "max_x": 5208.749609341335, + "max_y": 5188.550178985269, + "center": [ + 5208.745595686552, + 5188.54616533051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.749609341335, + 5188.550178985269 + ], + [ + 5208.741582031771, + 5188.542151675752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.88607360308, + "min_y": 5188.421742032912, + "max_x": 5208.88607360308, + "max_y": 5188.542151675752, + "center": [ + 5208.88607360308, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.88607360308, + 5188.542151675752 + ], + [ + 5208.88607360308, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55322F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.902128222111, + "min_y": 5188.421742032912, + "max_x": 5208.902128222111, + "max_y": 5188.542151675752, + "center": [ + 5208.902128222111, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.902128222111, + 5188.542151675752 + ], + [ + 5208.902128222111, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553230", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.918182841245, + "min_y": 5188.421742032912, + "max_x": 5208.918182841245, + "max_y": 5188.542151675752, + "center": [ + 5208.918182841245, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.918182841245, + 5188.542151675752 + ], + [ + 5208.918182841245, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553231", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.934237460317, + "min_y": 5188.421742032912, + "max_x": 5208.934237460317, + "max_y": 5188.542151675752, + "center": [ + 5208.934237460317, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.934237460317, + 5188.542151675752 + ], + [ + 5208.934237460317, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553232", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.95029207938, + "min_y": 5188.421742032912, + "max_x": 5208.95029207938, + "max_y": 5188.542151675752, + "center": [ + 5208.95029207938, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.95029207938, + 5188.542151675752 + ], + [ + 5208.95029207938, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553233", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.966346698313, + "min_y": 5188.421742032912, + "max_x": 5208.966346698313, + "max_y": 5188.542151675752, + "center": [ + 5208.966346698313, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.966346698313, + 5188.542151675752 + ], + [ + 5208.966346698313, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553234", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.990428626883, + "min_y": 5188.421742032912, + "max_x": 5208.990428626883, + "max_y": 5188.542151675752, + "center": [ + 5208.990428626883, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.990428626883, + 5188.542151675752 + ], + [ + 5208.990428626883, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553235", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.006483245914, + "min_y": 5188.421742032912, + "max_x": 5209.006483245914, + "max_y": 5188.542151675752, + "center": [ + 5209.006483245914, + 5188.481946854332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.006483245914, + 5188.542151675752 + ], + [ + 5209.006483245914, + 5188.421742032912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553236", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.998455936447, + "min_y": 5188.542151675752, + "max_x": 5209.006483245914, + "max_y": 5188.550178985269, + "center": [ + 5209.00246959118, + 5188.54616533051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5188.550178985269 + ], + [ + 5209.006483245914, + 5188.542151675752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553237", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.82750423801, + "min_y": 5188.596250651376, + "max_x": 5208.992888924671, + "max_y": 5188.616489652401, + "center": [ + 5208.910196581341, + 5188.606370151889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.992888924671, + 5188.596250651376 + ], + [ + 5208.992888924671, + 5188.616489652401 + ], + [ + 5208.82750423801, + 5188.616489652401 + ], + [ + 5208.82750423801, + 5188.596250651376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553238", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5188.683432323231, + "max_x": 5208.699203886739, + "max_y": 5188.683432323231, + "center": [ + 5208.689889183099, + 5188.683432323231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.699203886739, + 5188.683432323231 + ], + [ + 5208.680574479458, + 5188.683432323231 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553239", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5188.689854170886, + "max_x": 5208.699203886739, + "max_y": 5188.689854170886, + "center": [ + 5208.689889183099, + 5188.689854170886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.699203886739, + 5188.689854170886 + ], + [ + 5208.680574479458, + 5188.689854170886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5188.689854170886, + "max_x": 5208.680574479458, + "max_y": 5188.708483578132, + "center": [ + 5208.680574479458, + 5188.699168874509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.680574479458, + 5188.708483578132 + ], + [ + 5208.680574479458, + 5188.689854170886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674152631873, + "min_y": 5188.689854170886, + "max_x": 5208.674152631873, + "max_y": 5188.708483578132, + "center": [ + 5208.674152631873, + 5188.699168874509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5188.708483578132 + ], + [ + 5208.674152631873, + 5188.689854170886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.674152631873, + "min_y": 5188.664802915987, + "max_x": 5208.674152631873, + "max_y": 5188.683432323231, + "center": [ + 5208.674152631873, + 5188.674117619608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.674152631873, + 5188.683432323231 + ], + [ + 5208.674152631873, + 5188.664802915987 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.680574479458, + "min_y": 5188.664802915987, + "max_x": 5208.680574479458, + "max_y": 5188.683432323231, + "center": [ + 5208.680574479458, + 5188.674117619608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.680574479458, + 5188.683432323231 + ], + [ + 5208.680574479458, + 5188.664802915987 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.82135735647, + "min_y": 5188.662561318508, + "max_x": 5208.825180147436, + "max_y": 5188.669619927944, + "center": [ + 5208.823268751953, + 5188.666090623226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.825180147436, + 5188.662561318508 + ], + [ + 5208.82135735647, + 5188.669619927944 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55323F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.998455936447, + "min_y": 5188.662561318508, + "max_x": 5209.006483245914, + "max_y": 5188.670588627991, + "center": [ + 5209.00246959118, + 5188.666574973249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.998455936447, + 5188.662561318508 + ], + [ + 5209.006483245914, + 5188.670588627991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553240", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.506028782867, + "max_x": 5209.110838269719, + "max_y": 5188.514056092383, + "center": [ + 5209.110838269719, + 5188.510042437625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.506028782867 + ], + [ + 5209.110838269719, + 5188.514056092383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553241", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.495994645991, + "max_x": 5209.110838269719, + "max_y": 5188.498001473382, + "center": [ + 5209.106824614936, + 5188.496998059687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.495994645991 + ], + [ + 5209.110838269719, + 5188.498001473382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553242", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.522083401917, + "max_x": 5209.110838269719, + "max_y": 5188.524090229309, + "center": [ + 5209.106824614936, + 5188.523086815613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.522083401917 + ], + [ + 5209.102810960153, + 5188.524090229309 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553243", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.506028782867, + "max_x": 5209.102810960153, + "max_y": 5188.514056092383, + "center": [ + 5209.102810960153, + 5188.510042437625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.506028782867 + ], + [ + 5209.102810960153, + 5188.514056092383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553244", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.506028782867, + "max_x": 5209.110838269719, + "max_y": 5188.506028782867, + "center": [ + 5209.106824614936, + 5188.506028782867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.506028782867 + ], + [ + 5209.110838269719, + 5188.506028782867 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553245", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.498001473382, + "max_x": 5209.110838269719, + "max_y": 5188.506028782867, + "center": [ + 5209.110838269719, + 5188.502015128124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.506028782867 + ], + [ + 5209.110838269719, + 5188.498001473382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553246", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.514056092383, + "max_x": 5209.110838269719, + "max_y": 5188.514056092383, + "center": [ + 5209.106824614936, + 5188.514056092383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.514056092383 + ], + [ + 5209.110838269719, + 5188.514056092383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553247", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.514056092383, + "max_x": 5209.110838269719, + "max_y": 5188.522083401917, + "center": [ + 5209.110838269719, + 5188.51806974715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.514056092383 + ], + [ + 5209.110838269719, + 5188.522083401917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553248", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.610383806605, + "max_x": 5209.110838269719, + "max_y": 5188.618411116139, + "center": [ + 5209.110838269719, + 5188.6143974613715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.610383806605 + ], + [ + 5209.110838269719, + 5188.618411116139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553249", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.626438425656, + "max_x": 5209.110838269719, + "max_y": 5188.628445253048, + "center": [ + 5209.106824614936, + 5188.627441839351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.626438425656 + ], + [ + 5209.102810960153, + 5188.628445253048 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.60034966973, + "max_x": 5209.110838269719, + "max_y": 5188.602356497121, + "center": [ + 5209.106824614936, + 5188.601353083426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.60034966973 + ], + [ + 5209.110838269719, + 5188.602356497121 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.618411116139, + "max_x": 5209.110838269719, + "max_y": 5188.626438425656, + "center": [ + 5209.110838269719, + 5188.622424770898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.618411116139 + ], + [ + 5209.110838269719, + 5188.626438425656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.618411116139, + "max_x": 5209.110838269719, + "max_y": 5188.618411116139, + "center": [ + 5209.106824614936, + 5188.618411116139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.618411116139 + ], + [ + 5209.110838269719, + 5188.618411116139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.110838269719, + "min_y": 5188.602356497121, + "max_x": 5209.110838269719, + "max_y": 5188.610383806605, + "center": [ + 5209.110838269719, + 5188.606370151863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.110838269719, + 5188.610383806605 + ], + [ + 5209.110838269719, + 5188.602356497121 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.610383806605, + "max_x": 5209.110838269719, + "max_y": 5188.610383806605, + "center": [ + 5209.106824614936, + 5188.610383806605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.610383806605 + ], + [ + 5209.110838269719, + 5188.610383806605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55324F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.102810960153, + "min_y": 5188.610383806605, + "max_x": 5209.102810960153, + "max_y": 5188.618411116139, + "center": [ + 5209.102810960153, + 5188.6143974613715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.102810960153, + 5188.610383806605 + ], + [ + 5209.102810960153, + 5188.618411116139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553250", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.919788303119, + "min_y": 5188.943517151701, + "max_x": 5208.9518975411975, + "max_y": 5188.975626389779, + "center": [ + 5208.935842922158, + 5188.95957177074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.935842922158, + 5188.95957177074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553251", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.7191055651465, + "min_y": 5188.943517151701, + "max_x": 5208.751214803225, + "max_y": 5188.975626389779, + "center": [ + 5208.735160184186, + 5188.95957177074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.735160184186, + 5188.95957177074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553252", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.7191055651465, + "min_y": 5188.742834413691, + "max_x": 5208.751214803225, + "max_y": 5188.774943651769, + "center": [ + 5208.735160184186, + 5188.75888903273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.735160184186, + 5188.75888903273 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553253", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.919788303119, + "min_y": 5188.742834413691, + "max_x": 5208.9518975411975, + "max_y": 5188.774943651769, + "center": [ + 5208.935842922158, + 5188.75888903273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.935842922158, + 5188.75888903273 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553254", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.596287729508, + "min_y": 5188.782202398098, + "max_x": 5208.604315039072, + "max_y": 5188.982885136108, + "center": [ + 5208.60030138429, + 5188.882543767103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.604315039072, + 5188.982885136108 + ], + [ + 5208.596287729508, + 5188.982885136108 + ], + [ + 5208.596287729508, + 5188.782202398098 + ], + [ + 5208.604315039072, + 5188.782202398098 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553255", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.627175403215, + "min_y": 5189.806671856316, + "max_x": 5208.637227008063, + "max_y": 5189.806671856316, + "center": [ + 5208.632201205639, + 5189.806671856316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.806671856316 + ], + [ + 5208.627175403215, + 5189.806671856316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553256", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.627175403215, + "min_y": 5189.686262213477, + "max_x": 5208.637827988454, + "max_y": 5189.686262213477, + "center": [ + 5208.632501695834, + 5189.686262213477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637827988454, + 5189.686262213477 + ], + [ + 5208.627175403215, + 5189.686262213477 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553257", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.627175403215, + "min_y": 5189.766535308681, + "max_x": 5208.637827988454, + "max_y": 5189.766535308681, + "center": [ + 5208.632501695834, + 5189.766535308681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637827988454, + 5189.766535308681 + ], + [ + 5208.627175403215, + 5189.766535308681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553258", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.627175403215, + "min_y": 5189.646125665891, + "max_x": 5208.637227008063, + "max_y": 5189.646125665891, + "center": [ + 5208.632201205639, + 5189.646125665891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.646125665891 + ], + [ + 5208.627175403215, + 5189.646125665891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553259", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.627175403215, + "min_y": 5189.646125665891, + "max_x": 5208.627175403215, + "max_y": 5189.806671856316, + "center": [ + 5208.627175403215, + 5189.726398761104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.627175403215, + 5189.646125665891 + ], + [ + 5208.627175403215, + 5189.806671856316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5190.127764237083, + "max_x": 5209.134920198223, + "max_y": 5190.127764237083, + "center": [ + 5208.886073603143, + 5190.127764237083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.134920198223, + 5190.127764237083 + ], + [ + 5208.637227008063, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5189.204623642286, + "max_x": 5209.134920198223, + "max_y": 5189.204623642286, + "center": [ + 5208.886073603143, + 5189.204623642286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.204623642286 + ], + [ + 5209.134920198223, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.134920198223, + "min_y": 5189.204623642286, + "max_x": 5209.134920198223, + "max_y": 5190.127764237083, + "center": [ + 5209.134920198223, + 5189.6661939396845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.134920198223, + 5189.204623642286 + ], + [ + 5209.134920198223, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5189.204623642286, + "max_x": 5208.637227008063, + "max_y": 5190.127764237083, + "center": [ + 5208.637227008063, + 5189.6661939396845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5190.127764237083 + ], + [ + 5208.637227008063, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5209.200197586144, + "min_y": 5189.376518672422, + "max_x": 5209.280638452109, + "max_y": 5189.41665522002, + "center": [ + 5209.240418019126, + 5189.396586946221 + ] + }, + "raw_value": "{\\f@ᄆᄐᄌᄇ|b0|i0|c129|p50;LP}", + "clean_value": "\\f@ᄆᄐᄌᄇ|b0|i0|c129|p50;LP", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55325F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5208.624794829379, + "min_y": 5189.363396001269, + "max_x": 5208.7052356953445, + "max_y": 5189.403532548868, + "center": [ + 5208.665015262362, + 5189.383464275068 + ] + }, + "raw_value": "{\\fᄆᄐᄌᄇ|b0|i0|c129|p49;OIL}", + "clean_value": "\\fᄆᄐᄌᄇ|b0|i0|c129|p49;OIL", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553260", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.333060594607, + "max_x": 5209.403835067156, + "max_y": 5189.333060594607, + "center": [ + 5209.367712174304, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.403835067156, + 5189.333060594607 + ], + [ + 5209.331589281451, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553261", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.477552166016, + "max_x": 5209.403835067156, + "max_y": 5189.477552166016, + "center": [ + 5209.367712174304, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.403835067156, + 5189.477552166016 + ], + [ + 5209.331589281451, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553262", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.339616591016, + "min_y": 5189.36516983271, + "max_x": 5209.395807757657, + "max_y": 5189.36516983271, + "center": [ + 5209.367712174337, + 5189.36516983271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395807757657, + 5189.36516983271 + ], + [ + 5209.339616591016, + 5189.36516983271 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553263", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.339616591016, + "min_y": 5189.445442927882, + "max_x": 5209.395807757657, + "max_y": 5189.445442927882, + "center": [ + 5209.367712174337, + 5189.445442927882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395807757657, + 5189.445442927882 + ], + [ + 5209.339616591016, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553264", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.456012578962, + "min_y": 5189.457483892217, + "max_x": 5209.496149126559, + "max_y": 5189.497620439814, + "center": [ + 5209.476080852761, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.476080852761, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.496149126607, + "min_y": 5189.317005975591, + "max_x": 5209.496149126607, + "max_y": 5189.493606785033, + "center": [ + 5209.496149126607, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.496149126607, + 5189.317005975591 + ], + [ + 5209.496149126607, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.496149126607, + "min_y": 5189.461497546932, + "max_x": 5209.536285674249, + "max_y": 5189.493606785033, + "center": [ + 5209.516217400427, + 5189.477552165983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.496149126607, + 5189.493606785033 + ], + [ + 5209.536285674249, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553267", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.419889686222, + "min_y": 5189.333060594607, + "max_x": 5209.419889686222, + "max_y": 5189.477552166016, + "center": [ + 5209.419889686222, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.333060594607 + ], + [ + 5209.419889686222, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553268", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.41988968624, + "min_y": 5189.457483892217, + "max_x": 5209.460026233837, + "max_y": 5189.497620439814, + "center": [ + 5209.439957960039, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.439957960039, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.417481493285, + "min_y": 5189.341087904125, + "max_x": 5209.417481493285, + "max_y": 5189.469524856499, + "center": [ + 5209.417481493285, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.417481493285, + 5189.341087904125 + ], + [ + 5209.417481493285, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.419889686222, + "min_y": 5189.341087904125, + "max_x": 5209.419889686222, + "max_y": 5189.469524856499, + "center": [ + 5209.419889686222, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.341087904125 + ], + [ + 5209.419889686222, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.419889686222, + "min_y": 5189.341087904125, + "max_x": 5209.419889686222, + "max_y": 5189.469524856499, + "center": [ + 5209.419889686222, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.341087904125 + ], + [ + 5209.419889686222, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.411862376721, + "min_y": 5189.341087904125, + "max_x": 5209.411862376721, + "max_y": 5189.469524856499, + "center": [ + 5209.411862376721, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.411862376721, + 5189.341087904125 + ], + [ + 5209.411862376721, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.419889686222, + "min_y": 5189.341087904125, + "max_x": 5209.419889686222, + "max_y": 5189.477552166016, + "center": [ + 5209.419889686222, + 5189.409320035071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.341087904125 + ], + [ + 5209.419889686222, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.403835067156, + "min_y": 5189.333060594607, + "max_x": 5209.403835067156, + "max_y": 5189.477552166016, + "center": [ + 5209.403835067156, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.403835067156, + 5189.333060594607 + ], + [ + 5209.403835067156, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55326F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395807757657, + "min_y": 5189.461497546932, + "max_x": 5209.403835067156, + "max_y": 5189.477552166016, + "center": [ + 5209.399821412407, + 5189.469524856474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395807757657, + 5189.477552166016 + ], + [ + 5209.403835067156, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553270", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.427916995688, + "min_y": 5189.493606785033, + "max_x": 5209.496149126607, + "max_y": 5189.493606785033, + "center": [ + 5209.462033061147, + 5189.493606785033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.496149126607, + 5189.493606785033 + ], + [ + 5209.427916995688, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553271", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.403835067156, + "min_y": 5189.469524856499, + "max_x": 5209.419889686222, + "max_y": 5189.469524856499, + "center": [ + 5209.411862376689, + 5189.469524856499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.469524856499 + ], + [ + 5209.403835067156, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553272", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395807757657, + "min_y": 5189.477552166016, + "max_x": 5209.403835067156, + "max_y": 5189.477552166016, + "center": [ + 5209.399821412407, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395807757657, + 5189.477552166016 + ], + [ + 5209.403835067156, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553273", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.496149126607, + "min_y": 5189.317005975591, + "max_x": 5209.536285674249, + "max_y": 5189.349115213659, + "center": [ + 5209.516217400427, + 5189.333060594625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.496149126607, + 5189.317005975591 + ], + [ + 5209.536285674249, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553274", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.456012578962, + "min_y": 5189.312992320808, + "max_x": 5209.496149126559, + "max_y": 5189.353128868405, + "center": [ + 5209.476080852761, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.476080852761, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553275", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.41988968624, + "min_y": 5189.312992320808, + "max_x": 5209.460026233837, + "max_y": 5189.353128868405, + "center": [ + 5209.439957960039, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.439957960039, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553276", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.094783650573, + "min_y": 5189.204623642306, + "max_x": 5209.496149126553, + "max_y": 5189.605989118286, + "center": [ + 5209.295466388563, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.295466388563, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553277", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.536285674249, + "min_y": 5189.349115213659, + "max_x": 5209.536285674249, + "max_y": 5189.461497546932, + "center": [ + 5209.536285674249, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.536285674249, + 5189.349115213659 + ], + [ + 5209.536285674249, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553278", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.419889686209, + "min_y": 5189.204623642306, + "max_x": 5209.821255162189, + "max_y": 5189.605989118286, + "center": [ + 5209.620572424199, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.620572424199, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553279", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.195125019629, + "min_y": 5189.30095135654, + "max_x": 5209.40383506714, + "max_y": 5189.509661404051, + "center": [ + 5209.299480043384, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.427916995688, + "min_y": 5189.461497546932, + "max_x": 5209.488121817109, + "max_y": 5189.461497546932, + "center": [ + 5209.458019406398, + 5189.461497546932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.488121817109, + 5189.461497546932 + ], + [ + 5209.427916995688, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395807757657, + "min_y": 5189.445442927882, + "max_x": 5209.403835067156, + "max_y": 5189.461497546932, + "center": [ + 5209.399821412407, + 5189.453470237408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.403835067156, + 5189.461497546932 + ], + [ + 5209.395807757657, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.427916995688, + "min_y": 5189.349115213659, + "max_x": 5209.488121817109, + "max_y": 5189.349115213659, + "center": [ + 5209.458019406398, + 5189.349115213659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.488121817109, + 5189.349115213659 + ], + [ + 5209.427916995688, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395807757657, + "min_y": 5189.349115213659, + "max_x": 5209.403835067156, + "max_y": 5189.36516983271, + "center": [ + 5209.399821412407, + 5189.357142523185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.395807757657, + 5189.36516983271 + ], + [ + 5209.403835067156, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.403835067156, + "min_y": 5189.341087904125, + "max_x": 5209.419889686222, + "max_y": 5189.341087904125, + "center": [ + 5209.411862376689, + 5189.341087904125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.419889686222, + 5189.341087904125 + ], + [ + 5209.403835067156, + 5189.341087904125 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55327F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.395807757657, + "min_y": 5189.333060594607, + "max_x": 5209.403835067156, + "max_y": 5189.349115213659, + "center": [ + 5209.399821412407, + 5189.341087904133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.403835067156, + 5189.349115213659 + ], + [ + 5209.395807757657, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553280", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.427916995688, + "min_y": 5189.317005975591, + "max_x": 5209.496149126607, + "max_y": 5189.317005975591, + "center": [ + 5209.462033061147, + 5189.317005975591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.496149126607, + 5189.317005975591 + ], + [ + 5209.427916995688, + 5189.317005975591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553281", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.461497546932, + "max_x": 5209.339616591016, + "max_y": 5189.477552166016, + "center": [ + 5209.335602936233, + 5189.469524856474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.339616591016, + 5189.477552166016 + ], + [ + 5209.331589281451, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553282", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.317005975591, + "max_x": 5209.331589281451, + "max_y": 5189.493606785033, + "center": [ + 5209.331589281451, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.331589281451, + 5189.317005975591 + ], + [ + 5209.331589281451, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553283", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.299480043384, + "min_y": 5189.30095135654, + "max_x": 5209.299480043384, + "max_y": 5189.509661404033, + "center": [ + 5209.299480043384, + 5189.405306380287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.30095135654 + ], + [ + 5209.299480043384, + 5189.509661404033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553284", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.283425424379, + "min_y": 5189.283291275592, + "max_x": 5209.283425424379, + "max_y": 5189.527321484998, + "center": [ + 5209.283425424379, + 5189.405306380295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.283425424379, + 5189.283291275592 + ], + [ + 5209.283425424379, + 5189.527321484998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553285", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.223220602998, + "min_y": 5189.543376104049, + "max_x": 5209.26737080525, + "max_y": 5189.543376104049, + "center": [ + 5209.245295704124, + 5189.543376104049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.26737080525, + 5189.543376104049 + ], + [ + 5209.223220602998, + 5189.543376104049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553286", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.251316186211, + "min_y": 5189.5112668659585, + "max_x": 5209.283425424289, + "max_y": 5189.543376104037, + "center": [ + 5209.26737080525, + 5189.527321484998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.26737080525, + 5189.527321484998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553287", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.299480043384, + "min_y": 5189.493606785033, + "max_x": 5209.331589281451, + "max_y": 5189.509661404033, + "center": [ + 5209.315534662417, + 5189.501634094533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.509661404033 + ], + [ + 5209.331589281451, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553288", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.283425424379, + "min_y": 5189.509661404033, + "max_x": 5209.299480043384, + "max_y": 5189.509661404033, + "center": [ + 5209.291452733882, + 5189.509661404033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.509661404033 + ], + [ + 5209.283425424379, + 5189.509661404033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553289", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.223220602998, + "min_y": 5189.532940601646, + "max_x": 5209.223220602998, + "max_y": 5189.553811606404, + "center": [ + 5209.223220602998, + 5189.543376104026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.223220602998, + 5189.532940601646 + ], + [ + 5209.223220602998, + 5189.553811606404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.207165983978, + "min_y": 5189.5353487945285, + "max_x": 5209.223220603018, + "max_y": 5189.551403413569, + "center": [ + 5209.215193293498, + 5189.543376104049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.543376104049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.215193293498, + "min_y": 5189.555417068316, + "max_x": 5209.221615141012, + "max_y": 5189.555417068316, + "center": [ + 5209.218404217255, + 5189.555417068316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.555417068316 + ], + [ + 5209.215193293498, + 5189.555417068316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.220009679108, + "min_y": 5189.552206144501, + "max_x": 5209.223220602916, + "max_y": 5189.555417068308, + "center": [ + 5209.221615141012, + 5189.553811606404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.553811606404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.215193293498, + "min_y": 5189.531335139783, + "max_x": 5209.221615141012, + "max_y": 5189.531335139783, + "center": [ + 5209.218404217255, + 5189.531335139783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.531335139783 + ], + [ + 5209.215193293498, + 5189.531335139783 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.220009679108, + "min_y": 5189.531335139743, + "max_x": 5209.223220602916, + "max_y": 5189.53454606355, + "center": [ + 5209.221615141012, + 5189.532940601646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.532940601646 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55328F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.331589281503, + "min_y": 5189.30095135654, + "max_x": 5209.540299329014, + "max_y": 5189.509661404051, + "center": [ + 5209.435944305258, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.435944305258, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553290", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.445442927882, + "max_x": 5209.339616591016, + "max_y": 5189.461497546932, + "center": [ + 5209.335602936233, + 5189.453470237408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.331589281451, + 5189.461497546932 + ], + [ + 5209.339616591016, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553291", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.349115213659, + "max_x": 5209.339616591016, + "max_y": 5189.36516983271, + "center": [ + 5209.335602936233, + 5189.357142523185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.339616591016, + 5189.36516983271 + ], + [ + 5209.331589281451, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553292", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.331589281451, + "min_y": 5189.333060594607, + "max_x": 5209.339616591016, + "max_y": 5189.349115213659, + "center": [ + 5209.335602936233, + 5189.341087904133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.331589281451, + 5189.349115213659 + ], + [ + 5209.339616591016, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553293", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.223220602998, + "min_y": 5189.267236656541, + "max_x": 5209.26737080525, + "max_y": 5189.267236656541, + "center": [ + 5209.245295704124, + 5189.267236656541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.26737080525, + 5189.267236656541 + ], + [ + 5209.223220602998, + 5189.267236656541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553294", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.299480043384, + "min_y": 5189.30095135654, + "max_x": 5209.331589281451, + "max_y": 5189.317005975591, + "center": [ + 5209.315534662417, + 5189.308978666066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.30095135654 + ], + [ + 5209.331589281451, + 5189.317005975591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553295", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.251316186211, + "min_y": 5189.267236656553, + "max_x": 5209.283425424289, + "max_y": 5189.299345894631, + "center": [ + 5209.26737080525, + 5189.283291275592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.26737080525, + 5189.283291275592 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553296", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.283425424379, + "min_y": 5189.30095135654, + "max_x": 5209.299480043384, + "max_y": 5189.30095135654, + "center": [ + 5209.291452733882, + 5189.30095135654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.299480043384, + 5189.30095135654 + ], + [ + 5209.283425424379, + 5189.30095135654 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553297", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.223220602998, + "min_y": 5189.25680115417, + "max_x": 5209.223220602998, + "max_y": 5189.277672158945, + "center": [ + 5209.223220602998, + 5189.2672366565575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.223220602998, + 5189.25680115417 + ], + [ + 5209.223220602998, + 5189.277672158945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553298", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.215193293498, + "min_y": 5189.255195692307, + "max_x": 5209.221615141012, + "max_y": 5189.255195692307, + "center": [ + 5209.218404217255, + 5189.255195692307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.255195692307 + ], + [ + 5209.215193293498, + 5189.255195692307 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553299", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.220009679108, + "min_y": 5189.255195692266, + "max_x": 5209.223220602916, + "max_y": 5189.258406616073, + "center": [ + 5209.221615141012, + 5189.25680115417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.25680115417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.215193293498, + "min_y": 5189.279277620841, + "max_x": 5209.221615141012, + "max_y": 5189.279277620841, + "center": [ + 5209.218404217255, + 5189.279277620841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.279277620841 + ], + [ + 5209.215193293498, + 5189.279277620841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.220009679108, + "min_y": 5189.276066697042, + "max_x": 5209.223220602916, + "max_y": 5189.279277620849, + "center": [ + 5209.221615141012, + 5189.277672158945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.221615141012, + 5189.277672158945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5209.207165983978, + "min_y": 5189.259209347021, + "max_x": 5209.223220603018, + "max_y": 5189.275263966061, + "center": [ + 5209.215193293498, + 5189.267236656541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.267236656541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.215193293498, + "min_y": 5189.255195692307, + "max_x": 5209.215193293498, + "max_y": 5189.555417068316, + "center": [ + 5209.215193293498, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.255195692307 + ], + [ + 5209.215193293498, + 5189.555417068316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.134920198223, + "min_y": 5189.535348794515, + "max_x": 5209.215193293498, + "max_y": 5189.535348794515, + "center": [ + 5209.17505674586, + 5189.535348794515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.535348794515 + ], + [ + 5209.134920198223, + 5189.535348794515 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55329F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.134920198223, + "min_y": 5189.551403413616, + "max_x": 5209.215193293498, + "max_y": 5189.551403413616, + "center": [ + 5209.17505674586, + 5189.551403413616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.551403413616 + ], + [ + 5209.134920198223, + 5189.551403413616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.134920198223, + "min_y": 5189.275263966108, + "max_x": 5209.215193293498, + "max_y": 5189.275263966108, + "center": [ + 5209.17505674586, + 5189.275263966108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.275263966108 + ], + [ + 5209.134920198223, + 5189.275263966108 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5209.134920198223, + "min_y": 5189.259209347058, + "max_x": 5209.215193293498, + "max_y": 5189.259209347058, + "center": [ + 5209.17505674586, + 5189.259209347058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.215193293498, + 5189.259209347058 + ], + [ + 5209.134920198223, + 5189.259209347058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.333060594607, + "max_x": 5208.520831020045, + "max_y": 5189.333060594607, + "center": [ + 5208.484708127225, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.448585234404, + 5189.333060594607 + ], + [ + 5208.520831020045, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.477552166016, + "max_x": 5208.520831020045, + "max_y": 5189.477552166016, + "center": [ + 5208.484708127225, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.448585234404, + 5189.477552166016 + ], + [ + 5208.520831020045, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.456612543905, + "min_y": 5189.36516983271, + "max_x": 5208.512803710473, + "max_y": 5189.36516983271, + "center": [ + 5208.484708127189, + 5189.36516983271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.456612543905, + 5189.36516983271 + ], + [ + 5208.512803710473, + 5189.36516983271 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.456612543905, + "min_y": 5189.445442927882, + "max_x": 5208.512803710473, + "max_y": 5189.445442927882, + "center": [ + 5208.484708127189, + 5189.445442927882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.456612543905, + 5189.445442927882 + ], + [ + 5208.512803710473, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.356271174835, + "min_y": 5189.457483892217, + "max_x": 5208.396407722432, + "max_y": 5189.497620439814, + "center": [ + 5208.376339448633, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.376339448633, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.356271174884, + "min_y": 5189.317005975591, + "max_x": 5208.356271174884, + "max_y": 5189.493606785033, + "center": [ + 5208.356271174884, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.356271174884, + 5189.317005975591 + ], + [ + 5208.356271174884, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.31613462725, + "min_y": 5189.461497546932, + "max_x": 5208.356271174884, + "max_y": 5189.493606785033, + "center": [ + 5208.336202901067, + 5189.477552165983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.356271174884, + 5189.493606785033 + ], + [ + 5208.31613462725, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.333060594607, + "max_x": 5208.43253061527, + "max_y": 5189.477552166016, + "center": [ + 5208.43253061527, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.333060594607 + ], + [ + 5208.43253061527, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.392394067724, + "min_y": 5189.457483892217, + "max_x": 5208.432530615321, + "max_y": 5189.497620439814, + "center": [ + 5208.412462341523, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.412462341523, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.434938808107, + "min_y": 5189.341087904125, + "max_x": 5208.434938808107, + "max_y": 5189.469524856499, + "center": [ + 5208.434938808107, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.434938808107, + 5189.341087904125 + ], + [ + 5208.434938808107, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.341087904125, + "max_x": 5208.43253061527, + "max_y": 5189.469524856499, + "center": [ + 5208.43253061527, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.341087904125 + ], + [ + 5208.43253061527, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.341087904125, + "max_x": 5208.43253061527, + "max_y": 5189.469524856499, + "center": [ + 5208.43253061527, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.341087904125 + ], + [ + 5208.43253061527, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.440557924834, + "min_y": 5189.341087904125, + "max_x": 5208.440557924834, + "max_y": 5189.469524856499, + "center": [ + 5208.440557924834, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.440557924834, + 5189.341087904125 + ], + [ + 5208.440557924834, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.341087904125, + "max_x": 5208.43253061527, + "max_y": 5189.477552166016, + "center": [ + 5208.43253061527, + 5189.409320035071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.341087904125 + ], + [ + 5208.43253061527, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.333060594607, + "max_x": 5208.448585234404, + "max_y": 5189.477552166016, + "center": [ + 5208.448585234404, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.448585234404, + 5189.333060594607 + ], + [ + 5208.448585234404, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.461497546932, + "max_x": 5208.456612543905, + "max_y": 5189.477552166016, + "center": [ + 5208.452598889155, + 5189.469524856474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.456612543905, + 5189.477552166016 + ], + [ + 5208.448585234404, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.356271174884, + "min_y": 5189.493606785033, + "max_x": 5208.424503305705, + "max_y": 5189.493606785033, + "center": [ + 5208.390387240294, + 5189.493606785033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.356271174884, + 5189.493606785033 + ], + [ + 5208.424503305705, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.469524856499, + "max_x": 5208.448585234404, + "max_y": 5189.469524856499, + "center": [ + 5208.440557924837, + 5189.469524856499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.469524856499 + ], + [ + 5208.448585234404, + 5189.469524856499 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.477552166016, + "max_x": 5208.456612543905, + "max_y": 5189.477552166016, + "center": [ + 5208.452598889155, + 5189.477552166016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.456612543905, + 5189.477552166016 + ], + [ + 5208.448585234404, + 5189.477552166016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.31613462725, + "min_y": 5189.317005975591, + "max_x": 5208.356271174884, + "max_y": 5189.349115213659, + "center": [ + 5208.336202901067, + 5189.333060594625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.356271174884, + 5189.317005975591 + ], + [ + 5208.31613462725, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.356271174835, + "min_y": 5189.312992320808, + "max_x": 5208.396407722432, + "max_y": 5189.353128868405, + "center": [ + 5208.376339448633, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.376339448633, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.392394067724, + "min_y": 5189.312992320808, + "max_x": 5208.432530615321, + "max_y": 5189.353128868405, + "center": [ + 5208.412462341523, + 5189.333060594607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.412462341523, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.356271174937, + "min_y": 5189.204623642306, + "max_x": 5208.757636650917, + "max_y": 5189.605989118286, + "center": [ + 5208.556953912927, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.556953912927, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.31613462725, + "min_y": 5189.349115213659, + "max_x": 5208.31613462725, + "max_y": 5189.461497546932, + "center": [ + 5208.31613462725, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.31613462725, + 5189.349115213659 + ], + [ + 5208.31613462725, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.031165139373, + "min_y": 5189.204623642306, + "max_x": 5208.432530615353, + "max_y": 5189.605989118286, + "center": [ + 5208.231847877363, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.231847877363, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.448585234357, + "min_y": 5189.30095135654, + "max_x": 5208.657295281868, + "max_y": 5189.509661404051, + "center": [ + 5208.552940258112, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.364298484317, + "min_y": 5189.461497546932, + "max_x": 5208.424503305705, + "max_y": 5189.461497546932, + "center": [ + 5208.394400895011, + 5189.461497546932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.364298484317, + 5189.461497546932 + ], + [ + 5208.424503305705, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.445442927882, + "max_x": 5208.456612543905, + "max_y": 5189.461497546932, + "center": [ + 5208.452598889155, + 5189.453470237408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.448585234404, + 5189.461497546932 + ], + [ + 5208.456612543905, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.364298484317, + "min_y": 5189.349115213659, + "max_x": 5208.424503305705, + "max_y": 5189.349115213659, + "center": [ + 5208.394400895011, + 5189.349115213659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.364298484317, + 5189.349115213659 + ], + [ + 5208.424503305705, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.349115213659, + "max_x": 5208.456612543905, + "max_y": 5189.36516983271, + "center": [ + 5208.452598889155, + 5189.357142523185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.456612543905, + 5189.36516983271 + ], + [ + 5208.448585234404, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.43253061527, + "min_y": 5189.341087904125, + "max_x": 5208.448585234404, + "max_y": 5189.341087904125, + "center": [ + 5208.440557924837, + 5189.341087904125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.43253061527, + 5189.341087904125 + ], + [ + 5208.448585234404, + 5189.341087904125 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.448585234404, + "min_y": 5189.333060594607, + "max_x": 5208.456612543905, + "max_y": 5189.349115213659, + "center": [ + 5208.452598889155, + 5189.341087904133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.448585234404, + 5189.349115213659 + ], + [ + 5208.456612543905, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.356271174884, + "min_y": 5189.317005975591, + "max_x": 5208.424503305705, + "max_y": 5189.317005975591, + "center": [ + 5208.390387240294, + 5189.317005975591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.356271174884, + 5189.317005975591 + ], + [ + 5208.424503305705, + 5189.317005975591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512803710473, + "min_y": 5189.461497546932, + "max_x": 5208.520831020045, + "max_y": 5189.477552166016, + "center": [ + 5208.516817365259, + 5189.469524856474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512803710473, + 5189.477552166016 + ], + [ + 5208.520831020045, + 5189.461497546932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.520831020045, + "min_y": 5189.317005975591, + "max_x": 5208.520831020045, + "max_y": 5189.493606785033, + "center": [ + 5208.520831020045, + 5189.405306380312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.520831020045, + 5189.317005975591 + ], + [ + 5208.520831020045, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.552940258112, + "min_y": 5189.30095135654, + "max_x": 5208.552940258112, + "max_y": 5189.509661404033, + "center": [ + 5208.552940258112, + 5189.405306380287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.30095135654 + ], + [ + 5208.552940258112, + 5189.509661404033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.568994877111, + "min_y": 5189.283291275592, + "max_x": 5208.568994877111, + "max_y": 5189.527321484998, + "center": [ + 5208.568994877111, + 5189.405306380295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.568994877111, + 5189.283291275592 + ], + [ + 5208.568994877111, + 5189.527321484998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.585049496143, + "min_y": 5189.543376104049, + "max_x": 5208.629199698498, + "max_y": 5189.543376104049, + "center": [ + 5208.607124597321, + 5189.543376104049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.585049496143, + 5189.543376104049 + ], + [ + 5208.629199698498, + 5189.543376104049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.568994877104, + "min_y": 5189.5112668659585, + "max_x": 5208.601104115182, + "max_y": 5189.543376104037, + "center": [ + 5208.585049496143, + 5189.527321484998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.585049496143, + 5189.527321484998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.520831020045, + "min_y": 5189.493606785033, + "max_x": 5208.552940258112, + "max_y": 5189.509661404033, + "center": [ + 5208.536885639079, + 5189.501634094533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.509661404033 + ], + [ + 5208.520831020045, + 5189.493606785033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.552940258112, + "min_y": 5189.509661404033, + "max_x": 5208.568994877111, + "max_y": 5189.509661404033, + "center": [ + 5208.560967567611, + 5189.509661404033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.509661404033 + ], + [ + 5208.568994877111, + 5189.509661404033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.629199698498, + "min_y": 5189.532940601646, + "max_x": 5208.629199698498, + "max_y": 5189.553811606404, + "center": [ + 5208.629199698498, + 5189.543376104026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.629199698498, + 5189.532940601646 + ], + [ + 5208.629199698498, + 5189.553811606404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698543, + "min_y": 5189.5353487945285, + "max_x": 5208.645254317583, + "max_y": 5189.551403413569, + "center": [ + 5208.637227008063, + 5189.543376104049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.543376104049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630805160381, + "min_y": 5189.555417068316, + "max_x": 5208.637227008063, + "max_y": 5189.555417068316, + "center": [ + 5208.634016084222, + 5189.555417068316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.555417068316 + ], + [ + 5208.637227008063, + 5189.555417068316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698477, + "min_y": 5189.552206144501, + "max_x": 5208.632410622285, + "max_y": 5189.555417068308, + "center": [ + 5208.630805160381, + 5189.553811606404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.553811606404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630805160381, + "min_y": 5189.531335139783, + "max_x": 5208.637227008063, + "max_y": 5189.531335139783, + "center": [ + 5208.634016084222, + 5189.531335139783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.531335139783 + ], + [ + 5208.637227008063, + 5189.531335139783 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698477, + "min_y": 5189.531335139743, + "max_x": 5208.632410622285, + "max_y": 5189.53454606355, + "center": [ + 5208.630805160381, + 5189.532940601646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.532940601646 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.312120972483, + "min_y": 5189.30095135654, + "max_x": 5208.520831019994, + "max_y": 5189.509661404051, + "center": [ + 5208.416475996239, + 5189.405306380296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.416475996239, + 5189.405306380296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512803710473, + "min_y": 5189.445442927882, + "max_x": 5208.520831020045, + "max_y": 5189.461497546932, + "center": [ + 5208.516817365259, + 5189.453470237408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.520831020045, + 5189.461497546932 + ], + [ + 5208.512803710473, + 5189.445442927882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512803710473, + "min_y": 5189.349115213659, + "max_x": 5208.520831020045, + "max_y": 5189.36516983271, + "center": [ + 5208.516817365259, + 5189.357142523185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.512803710473, + 5189.36516983271 + ], + [ + 5208.520831020045, + 5189.349115213659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.512803710473, + "min_y": 5189.333060594607, + "max_x": 5208.520831020045, + "max_y": 5189.349115213659, + "center": [ + 5208.516817365259, + 5189.341087904133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.520831020045, + 5189.349115213659 + ], + [ + 5208.512803710473, + 5189.333060594607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.585049496143, + "min_y": 5189.267236656541, + "max_x": 5208.629199698498, + "max_y": 5189.267236656541, + "center": [ + 5208.607124597321, + 5189.267236656541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.585049496143, + 5189.267236656541 + ], + [ + 5208.629199698498, + 5189.267236656541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.520831020045, + "min_y": 5189.30095135654, + "max_x": 5208.552940258112, + "max_y": 5189.317005975591, + "center": [ + 5208.536885639079, + 5189.308978666066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.30095135654 + ], + [ + 5208.520831020045, + 5189.317005975591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.568994877104, + "min_y": 5189.267236656553, + "max_x": 5208.601104115182, + "max_y": 5189.299345894631, + "center": [ + 5208.585049496143, + 5189.283291275592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.585049496143, + 5189.283291275592 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.552940258112, + "min_y": 5189.30095135654, + "max_x": 5208.568994877111, + "max_y": 5189.30095135654, + "center": [ + 5208.560967567611, + 5189.30095135654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.552940258112, + 5189.30095135654 + ], + [ + 5208.568994877111, + 5189.30095135654 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.629199698498, + "min_y": 5189.25680115417, + "max_x": 5208.629199698498, + "max_y": 5189.277672158945, + "center": [ + 5208.629199698498, + 5189.2672366565575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.629199698498, + 5189.25680115417 + ], + [ + 5208.629199698498, + 5189.277672158945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630805160381, + "min_y": 5189.255195692307, + "max_x": 5208.637227008063, + "max_y": 5189.255195692307, + "center": [ + 5208.634016084222, + 5189.255195692307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.255195692307 + ], + [ + 5208.637227008063, + 5189.255195692307 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698477, + "min_y": 5189.255195692266, + "max_x": 5208.632410622285, + "max_y": 5189.258406616073, + "center": [ + 5208.630805160381, + 5189.25680115417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.25680115417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.630805160381, + "min_y": 5189.279277620841, + "max_x": 5208.637227008063, + "max_y": 5189.279277620841, + "center": [ + 5208.634016084222, + 5189.279277620841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.279277620841 + ], + [ + 5208.637227008063, + 5189.279277620841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698477, + "min_y": 5189.276066697042, + "max_x": 5208.632410622285, + "max_y": 5189.279277620849, + "center": [ + 5208.630805160381, + 5189.277672158945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.630805160381, + 5189.277672158945 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5208.629199698543, + "min_y": 5189.259209347021, + "max_x": 5208.645254317583, + "max_y": 5189.275263966061, + "center": [ + 5208.637227008063, + 5189.267236656541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.267236656541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5189.255195692307, + "max_x": 5208.637227008063, + "max_y": 5189.555417068316, + "center": [ + 5208.637227008063, + 5189.405306380311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.637227008063, + 5189.255195692307 + ], + [ + 5208.637227008063, + 5189.555417068316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.721513757972, + "min_y": 5189.96320439191, + "max_x": 5208.76165030557, + "max_y": 5190.003340939507, + "center": [ + 5208.741582031771, + 5189.983272665709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.741582031771, + 5189.983272665709 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.741582031771, + "min_y": 5189.933101981198, + "max_x": 5208.741582031771, + "max_y": 5190.03344335017, + "center": [ + 5208.741582031771, + 5189.983272665684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.741582031771, + 5189.933101981198 + ], + [ + 5208.741582031771, + 5190.03344335017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.691411347328, + "min_y": 5189.983272665709, + "max_x": 5208.791752716344, + "max_y": 5189.983272665709, + "center": [ + 5208.741582031836, + 5189.983272665709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.691411347328, + 5189.983272665709 + ], + [ + 5208.791752716344, + 5189.983272665709 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.759348117162, + "min_y": 5189.204623642286, + "max_x": 5209.010913493199, + "max_y": 5189.465441521455, + "center": [ + 5208.88513080518, + 5189.33503258187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.010913493199, + 5189.204623642286 + ], + [ + 5209.010913493199, + 5189.465441521455 + ], + [ + 5208.894739696936, + 5189.465441521455 + ], + [ + 5208.888423151351, + 5189.464146714246 + ], + [ + 5208.769086190581, + 5189.413075781878 + ], + [ + 5208.759348117162, + 5189.39831597012 + ], + [ + 5208.759348117162, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.735266188529, + "min_y": 5189.321089310552, + "max_x": 5209.034995421705, + "max_y": 5189.489523450038, + "center": [ + 5208.885130805117, + 5189.405306380295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.886512242308, + 5189.489523450038 + ], + [ + 5208.745004262079, + 5189.428964303576 + ], + [ + 5208.735266188529, + 5189.414204491818 + ], + [ + 5208.735266188529, + 5189.337143929603 + ], + [ + 5208.751320807598, + 5189.321089310552 + ], + [ + 5209.018940802771, + 5189.321089310552 + ], + [ + 5209.034995421705, + 5189.337143929603 + ], + [ + 5209.034995421705, + 5189.473468830988 + ], + [ + 5209.018940802771, + 5189.489523450038 + ], + [ + 5208.886512242308, + 5189.489523450038 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.759348117162, + "min_y": 5189.34517123917, + "max_x": 5209.010913493199, + "max_y": 5189.34517123917, + "center": [ + 5208.88513080518, + 5189.34517123917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.010913493199, + 5189.34517123917 + ], + [ + 5208.759348117162, + 5189.34517123917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.759348117162, + "min_y": 5189.353198548603, + "max_x": 5209.010913493199, + "max_y": 5189.353198548603, + "center": [ + 5208.88513080518, + 5189.353198548603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.010913493199, + 5189.353198548603 + ], + [ + 5208.759348117162, + 5189.353198548603 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.831593902767, + "min_y": 5189.204623642286, + "max_x": 5208.831593902767, + "max_y": 5189.34517123917, + "center": [ + 5208.831593902767, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.831593902767, + 5189.34517123917 + ], + [ + 5208.831593902767, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.807511974232, + "min_y": 5189.204623642286, + "max_x": 5208.807511974232, + "max_y": 5189.34517123917, + "center": [ + 5208.807511974232, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.807511974232, + 5189.34517123917 + ], + [ + 5208.807511974232, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532E9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.783430045699, + "min_y": 5189.204623642286, + "max_x": 5208.783430045699, + "max_y": 5189.34517123917, + "center": [ + 5208.783430045699, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.783430045699, + 5189.34517123917 + ], + [ + 5208.783430045699, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532EA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.976085474205, + "min_y": 5189.204623642286, + "max_x": 5208.976085474205, + "max_y": 5189.34517123917, + "center": [ + 5208.976085474205, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.976085474205, + 5189.34517123917 + ], + [ + 5208.976085474205, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532EB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.95200354561, + "min_y": 5189.204623642286, + "max_x": 5208.95200354561, + "max_y": 5189.34517123917, + "center": [ + 5208.95200354561, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.95200354561, + 5189.34517123917 + ], + [ + 5208.95200354561, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532EC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.927921617007, + "min_y": 5189.204623642286, + "max_x": 5208.927921617007, + "max_y": 5189.34517123917, + "center": [ + 5208.927921617007, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.927921617007, + 5189.34517123917 + ], + [ + 5208.927921617007, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532ED", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.903839688537, + "min_y": 5189.204623642286, + "max_x": 5208.903839688537, + "max_y": 5189.34517123917, + "center": [ + 5208.903839688537, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.903839688537, + 5189.34517123917 + ], + [ + 5208.903839688537, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532EE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.879757759934, + "min_y": 5189.204623642286, + "max_x": 5208.879757759934, + "max_y": 5189.34517123917, + "center": [ + 5208.879757759934, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.879757759934, + 5189.34517123917 + ], + [ + 5208.879757759934, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532EF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.855675831371, + "min_y": 5189.204623642286, + "max_x": 5208.855675831371, + "max_y": 5189.34517123917, + "center": [ + 5208.855675831371, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.855675831371, + 5189.34517123917 + ], + [ + 5208.855675831371, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.000167402775, + "min_y": 5189.204623642286, + "max_x": 5209.000167402775, + "max_y": 5189.34517123917, + "center": [ + 5209.000167402775, + 5189.274897440728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.000167402775, + 5189.34517123917 + ], + [ + 5209.000167402775, + 5189.204623642286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.831593902767, + "min_y": 5189.987216640282, + "max_x": 5208.831593902767, + "max_y": 5190.127764237083, + "center": [ + 5208.831593902767, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.831593902767, + 5189.987216640282 + ], + [ + 5208.831593902767, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.807511974232, + "min_y": 5189.987216640282, + "max_x": 5208.807511974232, + "max_y": 5190.127764237083, + "center": [ + 5208.807511974232, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.807511974232, + 5189.987216640282 + ], + [ + 5208.807511974232, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.783430045699, + "min_y": 5189.987216640282, + "max_x": 5208.783430045699, + "max_y": 5190.127764237083, + "center": [ + 5208.783430045699, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.783430045699, + 5189.987216640282 + ], + [ + 5208.783430045699, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.976085474205, + "min_y": 5189.987216640282, + "max_x": 5208.976085474205, + "max_y": 5190.127764237083, + "center": [ + 5208.976085474205, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.976085474205, + 5189.987216640282 + ], + [ + 5208.976085474205, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.95200354561, + "min_y": 5189.987216640282, + "max_x": 5208.95200354561, + "max_y": 5190.127764237083, + "center": [ + 5208.95200354561, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.95200354561, + 5189.987216640282 + ], + [ + 5208.95200354561, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.927921617007, + "min_y": 5189.987216640282, + "max_x": 5208.927921617007, + "max_y": 5190.127764237083, + "center": [ + 5208.927921617007, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.927921617007, + 5189.987216640282 + ], + [ + 5208.927921617007, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.903839688537, + "min_y": 5189.987216640282, + "max_x": 5208.903839688537, + "max_y": 5190.127764237083, + "center": [ + 5208.903839688537, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.903839688537, + 5189.987216640282 + ], + [ + 5208.903839688537, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.879757759934, + "min_y": 5189.987216640282, + "max_x": 5208.879757759934, + "max_y": 5190.127764237083, + "center": [ + 5208.879757759934, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.879757759934, + 5189.987216640282 + ], + [ + 5208.879757759934, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532F9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.855675831371, + "min_y": 5189.987216640282, + "max_x": 5208.855675831371, + "max_y": 5190.127764237083, + "center": [ + 5208.855675831371, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.855675831371, + 5189.987216640282 + ], + [ + 5208.855675831371, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532FA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5209.000167402775, + "min_y": 5189.987216640282, + "max_x": 5209.000167402775, + "max_y": 5190.127764237083, + "center": [ + 5209.000167402775, + 5190.057490438683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.000167402775, + 5189.987216640282 + ], + [ + 5209.000167402775, + 5190.127764237083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5208.783430045699, + "min_y": 5189.987216640282, + "max_x": 5209.000167402775, + "max_y": 5189.987216640282, + "center": [ + 5208.891798724237, + 5189.987216640282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.000167402775, + 5189.987216640282 + ], + [ + 5208.783430045699, + 5189.987216640282 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532FD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5189.559082194055, + "max_x": 5209.134920198223, + "max_y": 5189.559082194055, + "center": [ + 5208.886073603143, + 5189.559082194055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.134920198223, + 5189.559082194055 + ], + [ + 5209.134920198223, + 5189.559082194055 + ], + [ + 5208.637227008063, + 5189.559082194055 + ], + [ + 5208.637227008063, + 5189.559082194055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532FE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.637227008063, + "min_y": 5189.795616041283, + "max_x": 5209.134920198223, + "max_y": 5189.795616041283, + "center": [ + 5208.886073603143, + 5189.795616041283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.134920198223, + 5189.795616041283 + ], + [ + 5209.134920198223, + 5189.795616041283 + ], + [ + 5208.637227008063, + 5189.795616041283 + ], + [ + 5208.637227008063, + 5189.795616041283 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5532FF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5208.745745484628, + "min_y": 5189.59219268823, + "max_x": 5209.027418449166, + "max_y": 5189.77393210528, + "center": [ + 5208.886581966897, + 5189.683062396755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5209.027418449166, + 5189.59219268823 + ], + [ + 5209.027418449166, + 5189.77393210528 + ], + [ + 5208.745745484628, + 5189.77393210528 + ], + [ + 5208.745745484628, + 5189.59219268823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553300", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.954305734015, + "min_y": 5189.513675058769, + "max_x": 5208.9944422816125, + "max_y": 5189.553811606366, + "center": [ + 5208.974374007814, + 5189.533743332568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.974374007814, + 5189.533743332568 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553301", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.954305734015, + "min_y": 5189.714357796783, + "max_x": 5208.9944422816125, + "max_y": 5189.75449434438, + "center": [ + 5208.974374007814, + 5189.734426070581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.974374007814, + 5189.734426070581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553302", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.75362299601, + "min_y": 5189.714357796783, + "max_x": 5208.793759543607, + "max_y": 5189.75449434438, + "center": [ + 5208.773691269808, + 5189.734426070581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.773691269808, + 5189.734426070581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553303", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5208.75362299601, + "min_y": 5189.513675058769, + "max_x": 5208.793759543607, + "max_y": 5189.553811606366, + "center": [ + 5208.773691269808, + 5189.533743332568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5208.773691269808, + 5189.533743332568 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553304", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5192.933744891512, + "min_y": 5193.310375277903, + "max_x": 5211.605266834157, + "max_y": 5193.310375277903, + "center": [ + 5202.269505862834, + 5193.310375277903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.605266834157, + 5193.310375277903 + ], + [ + 5192.933744891512, + 5193.310375277903 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553306", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.568137209386, + "min_y": 5191.807717165186, + "max_x": 5199.756778983147, + "max_y": 5191.807717165186, + "center": [ + 5199.662458096267, + 5191.807717165186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.756778983147, + 5191.807717165186 + ], + [ + 5199.568137209386, + 5191.807717165186 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553307", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.536027971388, + "min_y": 5191.807717165186, + "max_x": 5199.568137209386, + "max_y": 5191.830193631857, + "center": [ + 5199.552082590387, + 5191.818955398521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.830193631857 + ], + [ + 5199.568137209386, + 5191.807717165186 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553308", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.830193631857, + "max_x": 5199.536027971388, + "max_y": 5191.830193631857, + "center": [ + 5199.421638810673, + 5191.830193631857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.830193631857 + ], + [ + 5199.307249649959, + 5191.830193631857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553309", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.568137209386, + "min_y": 5191.570108803434, + "max_x": 5199.756778983147, + "max_y": 5191.570108803434, + "center": [ + 5199.662458096267, + 5191.570108803434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.756778983147, + 5191.570108803434 + ], + [ + 5199.568137209386, + 5191.570108803434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.536027971388, + "min_y": 5191.547632336762, + "max_x": 5199.568137209386, + "max_y": 5191.570108803434, + "center": [ + 5199.552082590387, + 5191.5588705700975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.547632336762 + ], + [ + 5199.568137209386, + 5191.570108803434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.547632336762, + "max_x": 5199.536027971388, + "max_y": 5191.547632336762, + "center": [ + 5199.421638810673, + 5191.547632336762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.547632336762 + ], + [ + 5199.307249649959, + 5191.547632336762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.537999565381, + "max_x": 5199.536027971388, + "max_y": 5191.537999565381, + "center": [ + 5199.421638810673, + 5191.537999565381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.537999565381 + ], + [ + 5199.307249649959, + 5191.537999565381 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.536027971388, + "min_y": 5191.537999565381, + "max_x": 5199.568137209386, + "max_y": 5191.560476032003, + "center": [ + 5199.552082590387, + 5191.549237798692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.537999565381 + ], + [ + 5199.568137209386, + 5191.560476032003 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.568137209386, + "min_y": 5191.560476032003, + "max_x": 5199.756778983147, + "max_y": 5191.560476032003, + "center": [ + 5199.662458096267, + 5191.560476032003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.756778983147, + 5191.560476032003 + ], + [ + 5199.568137209386, + 5191.560476032003 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55330F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.839826403287, + "max_x": 5199.536027971388, + "max_y": 5191.839826403287, + "center": [ + 5199.421638810673, + 5191.839826403287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.839826403287 + ], + [ + 5199.307249649959, + 5191.839826403287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553310", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.536027971388, + "min_y": 5191.817349936616, + "max_x": 5199.568137209386, + "max_y": 5191.839826403287, + "center": [ + 5199.552082590387, + 5191.828588169951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.839826403287 + ], + [ + 5199.568137209386, + 5191.817349936616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553311", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.568137209386, + "min_y": 5191.817349936616, + "max_x": 5199.756778983147, + "max_y": 5191.817349936616, + "center": [ + 5199.662458096267, + 5191.817349936616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.756778983147, + 5191.817349936616 + ], + [ + 5199.568137209386, + 5191.817349936616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553312", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.568137209386, + "min_y": 5191.560476032003, + "max_x": 5199.568137209386, + "max_y": 5191.817349936616, + "center": [ + 5199.568137209386, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.568137209386, + 5191.817349936616 + ], + [ + 5199.568137209386, + 5191.560476032003 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.536027971388, + "min_y": 5191.537999565381, + "max_x": 5199.536027971388, + "max_y": 5191.839826403287, + "center": [ + 5199.536027971388, + 5191.688912984334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.536027971388, + 5191.839826403287 + ], + [ + 5199.536027971388, + 5191.537999565381 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553314", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.307249649959, + "min_y": 5191.537999565381, + "max_x": 5199.307249649959, + "max_y": 5191.839826403287, + "center": [ + 5199.307249649959, + 5191.688912984334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.307249649959, + 5191.537999565381 + ], + [ + 5199.307249649959, + 5191.839826403287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553315", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5199.756778983147, + "min_y": 5191.560476032003, + "max_x": 5199.756778983147, + "max_y": 5191.817349936616, + "center": [ + 5199.756778983147, + 5191.688912984309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5199.756778983147, + 5191.560476032003 + ], + [ + 5199.756778983147, + 5191.817349936616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553317", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.566901925065, + "min_y": 5188.229198240057, + "max_x": 5204.577456075049, + "max_y": 5188.229198240057, + "center": [ + 5204.072179000057, + 5188.229198240057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.577456075049, + 5188.229198240057 + ], + [ + 5203.566901925065, + 5188.229198240057 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.633917625974, + "min_y": 5189.303799640544, + "max_x": 5204.774940916188, + "max_y": 5189.303799640544, + "center": [ + 5204.204429271082, + 5189.303799640544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.633917625974, + 5189.303799640544 + ], + [ + 5204.774940916188, + 5189.303799640544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553319", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.633917625974, + "min_y": 5189.791874745303, + "max_x": 5204.774940916188, + "max_y": 5189.791874745303, + "center": [ + 5204.204429271082, + 5189.791874745303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.633917625974, + 5189.791874745303 + ], + [ + 5204.774940916188, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55331A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.620060865682, + "min_y": 5188.70158628911, + "max_x": 5204.784020745975, + "max_y": 5188.70158628911, + "center": [ + 5204.202040805829, + 5188.70158628911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.784020745975, + 5188.70158628911 + ], + [ + 5203.620060865682, + 5188.70158628911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55331B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.628088175148, + "min_y": 5188.755423927844, + "max_x": 5204.800170764794, + "max_y": 5188.755423927844, + "center": [ + 5204.21412946997, + 5188.755423927844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088175148, + 5188.755423927844 + ], + [ + 5204.800170764794, + 5188.755423927844 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55331C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.628088140774, + "min_y": 5188.706366323163, + "max_x": 5204.784020780282, + "max_y": 5188.706366323163, + "center": [ + 5204.206054460528, + 5188.706366323163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088140774, + 5188.706366323163 + ], + [ + 5204.784020780282, + 5188.706366323163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55331D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.021426341601, + "min_y": 5190.007447480387, + "max_x": 5204.334491412955, + "max_y": 5190.007447480387, + "center": [ + 5204.177958877278, + 5190.007447480387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.021426341601, + 5190.007447480387 + ], + [ + 5204.334491412955, + 5190.007447480387 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.065576543959, + "min_y": 5189.016219429334, + "max_x": 5204.290341210501, + "max_y": 5189.016219429334, + "center": [ + 5204.17795887723, + 5189.016219429334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.290341210501, + 5189.016219429334 + ], + [ + 5204.065576543959, + 5189.016219429334 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553322", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.138565038065, + "min_y": 5189.018504312319, + "max_x": 5204.217352716392, + "max_y": 5189.018504312319, + "center": [ + 5204.177958877229, + 5189.018504312319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.217352716392, + 5189.018504312319 + ], + [ + 5204.138565038065, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.138565038065, + "min_y": 5189.053412727055, + "max_x": 5204.217352716392, + "max_y": 5189.053412727055, + "center": [ + 5204.177958877229, + 5189.053412727055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.217352716392, + 5189.053412727055 + ], + [ + 5204.138565038065, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.138565038065, + "min_y": 5189.164767731937, + "max_x": 5204.217352716392, + "max_y": 5189.164767731937, + "center": [ + 5204.177958877229, + 5189.164767731937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138565038065, + 5189.164767731937 + ], + [ + 5204.217352716392, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553326", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.140480636068, + "min_y": 5189.586916003555, + "max_x": 5204.219268314293, + "max_y": 5189.586916003555, + "center": [ + 5204.17987447518, + 5189.586916003555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.140480636068, + 5189.586916003555 + ], + [ + 5204.219268314293, + 5189.586916003555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553329", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.117754055905, + "min_y": 5189.958389322431, + "max_x": 5204.214081770111, + "max_y": 5189.958389322431, + "center": [ + 5204.165917913007, + 5189.958389322431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.117754055905, + 5189.958389322431 + ], + [ + 5204.214081770111, + 5189.958389322431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55332A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.138565038065, + "min_y": 5189.902669181424, + "max_x": 5204.217352716392, + "max_y": 5189.902669181424, + "center": [ + 5204.177958877229, + 5189.902669181424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138565038065, + 5189.902669181424 + ], + [ + 5204.217352716392, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55332B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.172856897219, + "min_y": 5187.603150475995, + "max_x": 5204.227051702862, + "max_y": 5187.612616017691, + "center": [ + 5204.19995430004, + 5187.607883246843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.227051702862, + 5187.612616017691 + ], + [ + 5204.172856897219, + 5187.603150475995 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55332C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.20225350789, + "min_y": 5187.502835340374, + "max_x": 5204.294944894146, + "max_y": 5187.583108435579, + "center": [ + 5204.248599201019, + 5187.542971887977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.271772047548, + 5187.583108435579 + ], + [ + 5204.294944894146, + 5187.542971887994 + ], + [ + 5204.271772047548, + 5187.502835340374 + ], + [ + 5204.225426354486, + 5187.502835340374 + ], + [ + 5204.20225350789, + 5187.542971887994 + ], + [ + 5204.225426354486, + 5187.583108435579 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55332D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.208462653388, + "min_y": 5187.502835340396, + "max_x": 5204.288735748584, + "max_y": 5187.583108435592, + "center": [ + 5204.248599200986, + 5187.542971887994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.248599200986, + 5187.542971887994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55332F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.948916895482, + "min_y": 5187.508190796591, + "max_x": 5204.232005511472, + "max_y": 5187.791279412581, + "center": [ + 5204.090461203477, + 5187.649735104586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090461203477, + 5187.649735104586 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553330", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.6088226323, + "min_y": 5187.168096533409, + "max_x": 5204.572099774655, + "max_y": 5188.131373675764, + "center": [ + 5204.090461203477, + 5187.649735104586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090461203477, + 5187.649735104586 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553331", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.82957364409, + "min_y": 5187.388847545199, + "max_x": 5204.351348762865, + "max_y": 5187.910622663974, + "center": [ + 5204.090461203477, + 5187.649735104586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090461203477, + 5187.649735104586 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553332", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.849641917889, + "min_y": 5187.408915818998, + "max_x": 5204.331280489066, + "max_y": 5187.890554390175, + "center": [ + 5204.090461203477, + 5187.649735104586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090461203477, + 5187.649735104586 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.254920427398, + "min_y": 5187.023604962019, + "max_x": 5205.483199405102, + "max_y": 5187.023604962019, + "center": [ + 5204.36905991625, + 5187.023604962019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.254920427398, + 5187.023604962019 + ], + [ + 5205.483199405102, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.255621013399, + "min_y": 5187.017263387522, + "max_x": 5205.422994583714, + "max_y": 5187.017263387522, + "center": [ + 5204.339307798557, + 5187.017263387522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.255621013399, + 5187.017263387522 + ], + [ + 5205.422994583714, + 5187.017263387522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.255621013399, + "min_y": 5186.912908363766, + "max_x": 5205.422994583714, + "max_y": 5186.912908363766, + "center": [ + 5204.339307798557, + 5186.912908363766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.255621013399, + 5186.912908363766 + ], + [ + 5205.422994583714, + 5186.912908363766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.555066136683, + "min_y": 5188.187564842415, + "max_x": 5206.21330409523, + "max_y": 5188.187564842415, + "center": [ + 5203.884185115957, + 5188.187564842415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.555066136683, + 5188.187564842415 + ], + [ + 5206.21330409523, + 5188.187564842415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553337", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.840276225047, + "min_y": 5187.86790364972, + "max_x": 5205.788913055824, + "max_y": 5188.816540480497, + "center": [ + 5205.314594640436, + 5188.342222065108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.314594640436, + 5188.342222065108 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.715991381218, + "min_y": 5188.381906005877, + "max_x": 5205.715991381218, + "max_y": 5188.500084056616, + "center": [ + 5205.715991381218, + 5188.4409950312465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.715991381218, + 5188.381906005877 + ], + [ + 5205.715991381218, + 5188.500084056616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553339", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.652126106598, + "min_y": 5188.349973368608, + "max_x": 5205.7159913811365, + "max_y": 5188.413838643146, + "center": [ + 5205.684058743867, + 5188.381906005877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.684058743867, + 5188.381906005877 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.439987253443, + "min_y": 5188.194164252723, + "max_x": 5205.463143743793, + "max_y": 5189.520798702003, + "center": [ + 5205.451565498618, + 5188.857481477363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.439987253443, + 5189.520798702003 + ], + [ + 5205.463143743793, + 5188.194164252723 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543404226557, + "min_y": 5187.902353633489, + "max_x": 5205.543404226557, + "max_y": 5188.950159246788, + "center": [ + 5205.543404226557, + 5188.426256440138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543404226557, + 5188.950159246788 + ], + [ + 5205.543404226557, + 5187.902353633489 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.912935001164, + "max_x": 5205.659800214577, + "max_y": 5188.621039556488, + "center": [ + 5205.659800214577, + 5188.2669872788265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.621039556488 + ], + [ + 5205.659800214577, + 5187.912935001164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5187.904349040099, + "max_x": 5205.728032345399, + "max_y": 5188.669203413606, + "center": [ + 5205.728032345399, + 5188.286776226852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.669203413606 + ], + [ + 5205.728032345399, + 5187.904349040099 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.912935001164, + "max_x": 5205.659800214577, + "max_y": 5188.621039556488, + "center": [ + 5205.659800214577, + 5188.2669872788265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.621039556488 + ], + [ + 5205.659800214577, + 5187.912935001164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55333F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.972865285892, + "min_y": 5187.866472461597, + "max_x": 5205.972865285892, + "max_y": 5188.572875699335, + "center": [ + 5205.972865285892, + 5188.219674080467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.972865285892, + 5188.572875699335 + ], + [ + 5205.972865285892, + 5187.866472461597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5187.890554390132, + "max_x": 5206.037083761899, + "max_y": 5188.548793770767, + "center": [ + 5206.037083761899, + 5188.219674080449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.548793770767 + ], + [ + 5206.037083761899, + 5187.890554390132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5187.416943128507, + "max_x": 5205.536982378906, + "max_y": 5189.504043603584, + "center": [ + 5205.536982378906, + 5188.460493366046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5189.504043603584 + ], + [ + 5205.536982378906, + 5187.416943128507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553342", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.776196202617, + "min_y": 5188.135387330525, + "max_x": 5205.792250821657, + "max_y": 5188.151441949565, + "center": [ + 5205.784223512137, + 5188.143414640045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.784223512137, + 5188.143414640045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553343", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.776196202617, + "min_y": 5188.223687735212, + "max_x": 5205.792250821657, + "max_y": 5188.239742354252, + "center": [ + 5205.784223512137, + 5188.231715044732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.784223512137, + 5188.231715044732 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553344", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.76015234479, + "min_y": 5187.81607156016, + "max_x": 5205.844439092739, + "max_y": 5187.816090075894, + "center": [ + 5205.802295718764, + 5187.816080818027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844439092739, + 5187.816090075894 + ], + [ + 5205.76015234479, + 5187.81607156016 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553345", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.76015234479, + "min_y": 5187.92037808781, + "max_x": 5205.844439092739, + "max_y": 5187.920396603544, + "center": [ + 5205.802295718764, + 5187.920387345677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844439092739, + 5187.92037808781 + ], + [ + 5205.76015234479, + 5187.920396603544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553346", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.776196202617, + "min_y": 5187.940323709161, + "max_x": 5205.792250821657, + "max_y": 5187.956378328201, + "center": [ + 5205.784223512137, + 5187.948351018681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.784223512137, + 5187.948351018681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.667827524147, + "min_y": 5187.107891712008, + "max_x": 5205.844428333557, + "max_y": 5187.107891712008, + "center": [ + 5205.756127928851, + 5187.107891712008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.667827524147, + 5187.107891712008 + ], + [ + 5205.844428333557, + 5187.107891712008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.667827524147, + "min_y": 5187.340683688087, + "max_x": 5205.844428333557, + "max_y": 5187.340683688087, + "center": [ + 5205.756127928851, + 5187.340683688087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.667827524147, + 5187.340683688087 + ], + [ + 5205.844428333557, + 5187.340683688087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.860482952523, + "min_y": 5187.224287700031, + "max_x": 5205.860482952523, + "max_y": 5187.324629068985, + "center": [ + 5205.860482952523, + 5187.274458384508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.860482952523, + 5187.324629068985 + ], + [ + 5205.860482952523, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.860482952523, + "min_y": 5187.123946331024, + "max_x": 5205.860482952523, + "max_y": 5187.224287700031, + "center": [ + 5205.860482952523, + 5187.174117015527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.860482952523, + 5187.123946331024 + ], + [ + 5205.860482952523, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.8283737145175, + "min_y": 5187.107891711985, + "max_x": 5205.860482952596, + "max_y": 5187.140000950063, + "center": [ + 5205.844428333557, + 5187.123946331024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844428333557, + 5187.123946331024 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.828361562959, + "min_y": 5187.816086544012, + "max_x": 5205.828384474138, + "max_y": 5187.920381614636, + "center": [ + 5205.8283730185485, + 5187.868234079324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.828384474138, + 5187.920381614636 + ], + [ + 5205.828361562959, + 5187.816086544012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.832395483421, + "min_y": 5187.816090075548, + "max_x": 5205.85647741198, + "max_y": 5187.840172004107, + "center": [ + 5205.844436447701, + 5187.828131039828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844436447701, + 5187.828131039828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.8283737145175, + "min_y": 5187.308574449946, + "max_x": 5205.860482952596, + "max_y": 5187.340683688024, + "center": [ + 5205.844428333557, + 5187.324629068985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844428333557, + 5187.324629068985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55334F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.856468989622, + "min_y": 5187.866472461597, + "max_x": 5206.013001833396, + "max_y": 5187.866472461597, + "center": [ + 5205.934735411509, + 5187.866472461597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.856468989622, + 5187.866472461597 + ], + [ + 5206.013001833396, + 5187.866472461597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553350", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.988919904837, + "min_y": 5187.866472461573, + "max_x": 5206.037083761955, + "max_y": 5187.914636318691, + "center": [ + 5206.013001833396, + 5187.890554390132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.013001833396, + 5187.890554390132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553351", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.095426289594, + "max_x": 5206.063573883437, + "max_y": 5188.095426289594, + "center": [ + 5206.050328822668, + 5188.095426289594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.095426289594 + ], + [ + 5206.063573883437, + 5188.095426289594 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553352", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.072253443095, + "max_x": 5206.063573883437, + "max_y": 5188.072253443095, + "center": [ + 5206.050328822668, + 5188.072253443095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.072253443095 + ], + [ + 5206.063573883437, + 5188.072253443095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553353", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.039683081234, + "min_y": 5188.069084906938, + "max_x": 5206.069193000049, + "max_y": 5188.098594825753, + "center": [ + 5206.054438040642, + 5188.083839866345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.054438040642, + 5188.083839866345 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553354", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.039683081234, + "min_y": 5187.999566367225, + "max_x": 5206.069193000049, + "max_y": 5188.02907628604, + "center": [ + 5206.054438040642, + 5188.014321326633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.054438040642, + 5188.014321326633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553355", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.039683081234, + "min_y": 5187.971915140943, + "max_x": 5206.069193000049, + "max_y": 5188.001425059758, + "center": [ + 5206.054438040642, + 5187.98667010035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.054438040642, + 5187.98667010035 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553356", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.968010674745, + "min_y": 5187.97083820756, + "max_x": 5206.0691929999875, + "max_y": 5188.0720205328025, + "center": [ + 5206.018601837366, + 5188.021429370181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.018601837366, + 5188.021429370181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553357", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.002734903385, + "max_x": 5206.063573883437, + "max_y": 5188.002734903385, + "center": [ + 5206.050328822668, + 5188.002734903385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.002734903385 + ], + [ + 5206.063573883437, + 5188.002734903385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553358", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.025907749966, + "max_x": 5206.063573883437, + "max_y": 5188.025907749966, + "center": [ + 5206.050328822668, + 5188.025907749966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.025907749966 + ], + [ + 5206.063573883437, + 5188.025907749966 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553359", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5187.998256523648, + "max_x": 5206.063573883437, + "max_y": 5187.998256523648, + "center": [ + 5206.050328822668, + 5187.998256523648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5187.998256523648 + ], + [ + 5206.063573883437, + 5187.998256523648 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5187.975083677068, + "max_x": 5206.063573883437, + "max_y": 5187.975083677068, + "center": [ + 5206.050328822668, + 5187.975083677068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5187.975083677068 + ], + [ + 5206.063573883437, + 5187.975083677068 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.069193000101, + "min_y": 5188.013311716532, + "max_x": 5206.069193000101, + "max_y": 5188.083606479137, + "center": [ + 5206.069193000101, + 5188.048459097835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.069193000101, + 5188.083606479137 + ], + [ + 5206.069193000101, + 5188.013311716532 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.968010674745, + "min_y": 5187.998489433892, + "max_x": 5206.0691929999875, + "max_y": 5188.099671759135, + "center": [ + 5206.018601837366, + 5188.049080596514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.018601837366, + 5188.049080596514 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.069193000101, + "min_y": 5187.985660490198, + "max_x": 5206.069193000101, + "max_y": 5188.055955252821, + "center": [ + 5206.069193000101, + 5188.0208078715095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.069193000101, + 5188.055955252821 + ], + [ + 5206.069193000101, + 5187.985660490198 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.85645993543, + "min_y": 5187.82813368497, + "max_x": 5205.856477411617, + "max_y": 5187.907688615073, + "center": [ + 5205.8564686735235, + 5187.867911150022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.85645993543, + 5187.907688615073 + ], + [ + 5205.856477411617, + 5187.82813368497 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55335F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.832395483421, + "min_y": 5187.896296159545, + "max_x": 5205.85647741198, + "max_y": 5187.920378088104, + "center": [ + 5205.844436447701, + 5187.908337123825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844436447701, + 5187.908337123825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553360", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.856474803624, + "min_y": 5187.896462157838, + "max_x": 5205.856477411617, + "max_y": 5187.908334478735, + "center": [ + 5205.85647610762, + 5187.902398318287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.856474803624, + 5187.896462157838 + ], + [ + 5205.856477411617, + 5187.908334478735 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553361", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.792250821604, + "min_y": 5187.920389552261, + "max_x": 5205.792250821604, + "max_y": 5187.948351018681, + "center": [ + 5205.792250821604, + 5187.934370285471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.792250821604, + 5187.948351018681 + ], + [ + 5205.792250821604, + 5187.920389552261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553362", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.792250821604, + "min_y": 5188.143414640045, + "max_x": 5205.792250821604, + "max_y": 5188.231715044732, + "center": [ + 5205.792250821604, + 5188.187564842388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.792250821604, + 5188.231715044732 + ], + [ + 5205.792250821604, + 5188.143414640045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.515308643138, + "min_y": 5187.168096533394, + "max_x": 5205.515308643138, + "max_y": 5187.292519830968, + "center": [ + 5205.515308643138, + 5187.230308182181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.515308643138, + 5187.292519830968 + ], + [ + 5205.515308643138, + 5187.168096533394 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553364", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.043673235855, + "max_x": 5205.483199405102, + "max_y": 5187.292519830968, + "center": [ + 5205.483199405102, + 5187.168096533411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.483199405102, + 5187.292519830968 + ], + [ + 5205.483199405102, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553365", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.023604962019, + "max_x": 5205.483199405102, + "max_y": 5187.376806580888, + "center": [ + 5205.483199405102, + 5187.2002057714535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.483199405102, + 5187.376806580888 + ], + [ + 5205.483199405102, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553366", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.5250485097995, + "min_y": 5187.215175921112, + "max_x": 5205.595581738405, + "max_y": 5187.285709149717, + "center": [ + 5205.560315124102, + 5187.250442535415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.560315124102, + 5187.250442535415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553367", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.635718285974, + "min_y": 5187.224287700031, + "max_x": 5205.635718285974, + "max_y": 5187.344697342821, + "center": [ + 5205.635718285974, + 5187.284492521426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.635718285974, + 5187.344697342821 + ], + [ + 5205.635718285974, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553368", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.667827524147, + "min_y": 5187.224287700031, + "max_x": 5205.667827524147, + "max_y": 5187.344697342821, + "center": [ + 5205.667827524147, + 5187.284492521426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.667827524147, + 5187.344697342821 + ], + [ + 5205.667827524147, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553369", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.423793251824, + "min_y": 5187.023604962019, + "max_x": 5205.439142259942, + "max_y": 5187.794959422376, + "center": [ + 5205.431467755883, + 5187.409282192198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.439142259942, + 5187.794959422376 + ], + [ + 5205.423793251824, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.44303936566, + "min_y": 5187.183831748433, + "max_x": 5205.463143743793, + "max_y": 5188.194164252723, + "center": [ + 5205.453091554727, + 5187.688998000578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.463143743793, + 5188.194164252723 + ], + [ + 5205.44303936566, + 5187.183831748433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.422994583714, + "min_y": 5186.912908363766, + "max_x": 5205.422994583714, + "max_y": 5187.017263387522, + "center": [ + 5205.422994583714, + 5186.965085875644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.422994583714, + 5186.912908363766 + ], + [ + 5205.422994583714, + 5187.017263387522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.362909359459, + "min_y": 5187.0517603439275, + "max_x": 5205.595581738393, + "max_y": 5187.284432722861, + "center": [ + 5205.479245548926, + 5187.168096533394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.479245548926, + 5187.168096533394 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.5250485097995, + "min_y": 5187.050483917105, + "max_x": 5205.595581738405, + "max_y": 5187.1210171457105, + "center": [ + 5205.560315124102, + 5187.085750531408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.560315124102, + 5187.085750531408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.595581738375, + "min_y": 5187.085750531408, + "max_x": 5205.595581738375, + "max_y": 5187.250442535415, + "center": [ + 5205.595581738375, + 5187.168096533411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.595581738375, + 5187.250442535415 + ], + [ + 5205.595581738375, + 5187.085750531408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55336F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.667827524147, + "min_y": 5187.103878057224, + "max_x": 5205.667827524147, + "max_y": 5187.224287700031, + "center": [ + 5205.667827524147, + 5187.164082878628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.667827524147, + 5187.103878057224 + ], + [ + 5205.667827524147, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553370", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.635718285974, + "min_y": 5187.103878057224, + "max_x": 5205.635718285974, + "max_y": 5187.224287700031, + "center": [ + 5205.635718285974, + 5187.164082878628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.635718285974, + 5187.103878057224 + ], + [ + 5205.635718285974, + 5187.224287700031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553371", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.635718285974, + "min_y": 5187.103878057224, + "max_x": 5205.667827524147, + "max_y": 5187.103878057224, + "center": [ + 5205.65177290506, + 5187.103878057224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.635718285974, + 5187.103878057224 + ], + [ + 5205.667827524147, + 5187.103878057224 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553372", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.595581738375, + "min_y": 5187.107891712008, + "max_x": 5205.635718285974, + "max_y": 5187.107891712008, + "center": [ + 5205.615650012174, + 5187.107891712008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.595581738375, + 5187.107891712008 + ], + [ + 5205.635718285974, + 5187.107891712008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553373", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.426431522645, + "min_y": 5187.139975217246, + "max_x": 5205.458540760723, + "max_y": 5187.172084455324, + "center": [ + 5205.442486141684, + 5187.156029836285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.442486141684, + 5187.156029836285 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553374", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.410933305124, + "min_y": 5187.168096533406, + "max_x": 5205.443042543202, + "max_y": 5187.200205771484, + "center": [ + 5205.426987924163, + 5187.184151152445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.426987924163, + 5187.184151152445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553375", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.422994583714, + "min_y": 5187.017263387522, + "max_x": 5205.422994583714, + "max_y": 5187.023604962019, + "center": [ + 5205.422994583714, + 5187.02043417477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.422994583714, + 5187.017263387522 + ], + [ + 5205.422994583714, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553376", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.515308643138, + "min_y": 5187.113557947288, + "max_x": 5205.582005714378, + "max_y": 5187.113557947288, + "center": [ + 5205.548657178759, + 5187.113557947288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.515308643138, + 5187.113557947288 + ], + [ + 5205.582005714378, + 5187.113557947288 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553377", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.519322297985, + "min_y": 5187.057943115492, + "max_x": 5205.582005714378, + "max_y": 5187.057943115492, + "center": [ + 5205.550664006181, + 5187.057943115492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.519322297985, + 5187.057943115492 + ], + [ + 5205.582005714378, + 5187.057943115492 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553378", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.043673235855, + "max_x": 5205.515308643138, + "max_y": 5187.043673235855, + "center": [ + 5205.49925402412, + 5187.043673235855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.483199405102, + 5187.043673235855 + ], + [ + 5205.515308643138, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553379", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.515308643226, + "min_y": 5187.049915805999, + "max_x": 5205.523335952745, + "max_y": 5187.057943115518, + "center": [ + 5205.519322297985, + 5187.053929460759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.519322297985, + 5187.053929460759 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.515308643138, + "min_y": 5187.043673235855, + "max_x": 5205.515308643138, + "max_y": 5187.168096533394, + "center": [ + 5205.515308643138, + 5187.105884884624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.515308643138, + 5187.043673235855 + ], + [ + 5205.515308643138, + 5187.168096533394 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.515308643138, + "min_y": 5187.222635119502, + "max_x": 5205.582005714378, + "max_y": 5187.222635119502, + "center": [ + 5205.548657178759, + 5187.222635119502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.515308643138, + 5187.222635119502 + ], + [ + 5205.582005714378, + 5187.222635119502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.135616902881, + "min_y": 5186.755549894691, + "max_x": 5205.135616902881, + "max_y": 5187.117925381598, + "center": [ + 5205.135616902881, + 5186.936737638145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.135616902881, + 5186.755549894691 + ], + [ + 5205.135616902881, + 5187.117925381598 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.34272148851, + "min_y": 5186.912908363766, + "max_x": 5205.34272148851, + "max_y": 5187.017263387522, + "center": [ + 5205.34272148851, + 5186.965085875644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.34272148851, + 5186.912908363766 + ], + [ + 5205.34272148851, + 5187.017263387522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.325727674304, + "min_y": 5186.85671719711, + "max_x": 5205.389592948843, + "max_y": 5186.920582471648, + "center": [ + 5205.357660311573, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.357660311573, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55337F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.377311165286, + "min_y": 5186.863540410246, + "max_x": 5205.377311165286, + "max_y": 5186.912908363766, + "center": [ + 5205.377311165286, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.377311165286, + 5186.912908363766 + ], + [ + 5205.377311165286, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553380", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.239482260747, + "min_y": 5186.85671719713, + "max_x": 5205.357660311573, + "max_y": 5186.85671719713, + "center": [ + 5205.29857128616, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.239482260747, + 5186.85671719713 + ], + [ + 5205.357660311573, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553381", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.18039323531, + "min_y": 5186.856717197122, + "max_x": 5205.416749336805, + "max_y": 5187.093073298617, + "center": [ + 5205.298571286057, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.298571286057, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553382", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.2075496234775, + "min_y": 5186.85671719711, + "max_x": 5205.271414898016, + "max_y": 5186.920582471648, + "center": [ + 5205.239482260747, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.239482260747, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553383", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.219831407101, + "min_y": 5186.863540410246, + "max_x": 5205.219831407101, + "max_y": 5186.912908363766, + "center": [ + 5205.219831407101, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.219831407101, + 5186.912908363766 + ], + [ + 5205.219831407101, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553384", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.259133114463, + "min_y": 5186.863479668128, + "max_x": 5205.259133114463, + "max_y": 5186.912908363766, + "center": [ + 5205.259133114463, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.259133114463, + 5186.912908363766 + ], + [ + 5205.259133114463, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553385", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.338009457854, + "min_y": 5186.863479668128, + "max_x": 5205.338009457854, + "max_y": 5186.912908363766, + "center": [ + 5205.338009457854, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.338009457854, + 5186.912908363766 + ], + [ + 5205.338009457854, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553386", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.018731248989, + "min_y": 5186.85671719713, + "max_x": 5205.136909299806, + "max_y": 5186.85671719713, + "center": [ + 5205.077820274397, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.018731248989, + 5186.85671719713 + ], + [ + 5205.136909299806, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553387", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.959642223718, + "min_y": 5186.856717197122, + "max_x": 5205.195998325214, + "max_y": 5187.093073298617, + "center": [ + 5205.077820274466, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.077820274466, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553388", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.1049766625365, + "min_y": 5186.85671719711, + "max_x": 5205.168841937075, + "max_y": 5186.920582471648, + "center": [ + 5205.136909299806, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.136909299806, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553389", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.156560153454, + "min_y": 5186.863540410246, + "max_x": 5205.156560153454, + "max_y": 5186.912908363766, + "center": [ + 5205.156560153454, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.156560153454, + 5186.912908363766 + ], + [ + 5205.156560153454, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.11725844606, + "min_y": 5186.863479668128, + "max_x": 5205.11725844606, + "max_y": 5186.912908363766, + "center": [ + 5205.11725844606, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.11725844606, + 5186.912908363766 + ], + [ + 5205.11725844606, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.98679861172, + "min_y": 5186.85671719711, + "max_x": 5205.050663886258, + "max_y": 5186.920582471648, + "center": [ + 5205.018731248989, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.018731248989, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.038382102735, + "min_y": 5186.863479668128, + "max_x": 5205.038382102735, + "max_y": 5186.912908363766, + "center": [ + 5205.038382102735, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.038382102735, + 5186.912908363766 + ], + [ + 5205.038382102735, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.99908039534, + "min_y": 5186.863540410246, + "max_x": 5204.99908039534, + "max_y": 5186.912908363766, + "center": [ + 5204.99908039534, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.99908039534, + 5186.912908363766 + ], + [ + 5204.99908039534, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.93332870302, + "min_y": 5186.912908363766, + "max_x": 5204.93332870302, + "max_y": 5187.017263387522, + "center": [ + 5204.93332870302, + 5186.965085875644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.93332870302, + 5186.912908363766 + ], + [ + 5204.93332870302, + 5187.017263387522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55338F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.657571828982, + "min_y": 5186.929620506692, + "max_x": 5204.657571828982, + "max_y": 5187.004656914985, + "center": [ + 5204.657571828982, + 5186.967138710839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.657571828982, + 5186.929620506692 + ], + [ + 5204.657571828982, + 5187.004656914985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553390", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.617542373797, + "min_y": 5186.85671719711, + "max_x": 5204.681407648335, + "max_y": 5186.920582471648, + "center": [ + 5204.649475011066, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.649475011066, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553391", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.669125864779, + "min_y": 5186.863479668128, + "max_x": 5204.669125864779, + "max_y": 5186.912908363766, + "center": [ + 5204.669125864779, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.669125864779, + 5186.912908363766 + ], + [ + 5204.669125864779, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553392", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.629824157418, + "min_y": 5186.863540410246, + "max_x": 5204.629824157418, + "max_y": 5186.912908363766, + "center": [ + 5204.629824157418, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.629824157418, + 5186.912908363766 + ], + [ + 5204.629824157418, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553393", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.735720424623, + "min_y": 5186.85671719711, + "max_x": 5204.799585699161, + "max_y": 5186.920582471648, + "center": [ + 5204.767653061892, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.767653061892, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.787303915604, + "min_y": 5186.863540410246, + "max_x": 5204.787303915604, + "max_y": 5186.912908363766, + "center": [ + 5204.787303915604, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.787303915604, + 5186.912908363766 + ], + [ + 5204.787303915604, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553395", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.74800220817, + "min_y": 5186.863479668128, + "max_x": 5204.74800220817, + "max_y": 5186.912908363766, + "center": [ + 5204.74800220817, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.74800220817, + 5186.912908363766 + ], + [ + 5204.74800220817, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.649475011066, + "min_y": 5186.85671719713, + "max_x": 5204.767653061892, + "max_y": 5186.85671719713, + "center": [ + 5204.7085640364785, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.649475011066, + 5186.85671719713 + ], + [ + 5204.767653061892, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553397", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.590385985635, + "min_y": 5186.856717197122, + "max_x": 5204.826742087131, + "max_y": 5187.093073298617, + "center": [ + 5204.708564036383, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.708564036383, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553398", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.366464186699, + "min_y": 5186.85671719711, + "max_x": 5204.430329461237, + "max_y": 5186.920582471648, + "center": [ + 5204.398396823968, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.398396823968, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553399", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.418047677618, + "min_y": 5186.863540410246, + "max_x": 5204.418047677618, + "max_y": 5186.912908363766, + "center": [ + 5204.418047677618, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.418047677618, + 5186.912908363766 + ], + [ + 5204.418047677618, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.280218773216, + "min_y": 5186.85671719713, + "max_x": 5204.398396823968, + "max_y": 5186.85671719713, + "center": [ + 5204.339307798592, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.280218773216, + 5186.85671719713 + ], + [ + 5204.398396823968, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.2211297478825, + "min_y": 5186.856717197122, + "max_x": 5204.457485849378, + "max_y": 5187.093073298617, + "center": [ + 5204.33930779863, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.33930779863, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.248286135947, + "min_y": 5186.85671719711, + "max_x": 5204.312151410485, + "max_y": 5186.920582471648, + "center": [ + 5204.280218773216, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.280218773216, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.378745970224, + "min_y": 5186.863479668128, + "max_x": 5204.378745970224, + "max_y": 5186.912908363766, + "center": [ + 5204.378745970224, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.378745970224, + 5186.912908363766 + ], + [ + 5204.378745970224, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.260567919504, + "min_y": 5186.863540410246, + "max_x": 5204.260567919504, + "max_y": 5186.912908363766, + "center": [ + 5204.260567919504, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.260567919504, + 5186.912908363766 + ], + [ + 5204.260567919504, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55339F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.299869626961, + "min_y": 5186.863479668128, + "max_x": 5204.299869626961, + "max_y": 5186.912908363766, + "center": [ + 5204.299869626961, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.299869626961, + 5186.912908363766 + ], + [ + 5204.299869626961, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5187.755250294781, + "max_x": 5205.728032345399, + "max_y": 5187.832103252659, + "center": [ + 5205.728032345399, + 5187.79367677372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5187.832103252659 + ], + [ + 5205.728032345399, + 5187.755250294781 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.702637188323, + "min_y": 5187.820009922049, + "max_x": 5205.702637188323, + "max_y": 5187.912935001164, + "center": [ + 5205.702637188323, + 5187.8664724616065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.702637188323, + 5187.820009922049 + ], + [ + 5205.702637188323, + 5187.912935001164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.608847648217, + "min_y": 5187.820009922049, + "max_x": 5205.608847648217, + "max_y": 5187.912935001164, + "center": [ + 5205.608847648217, + 5187.8664724616065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.608847648217, + 5187.912935001164 + ], + [ + 5205.608847648217, + 5187.820009922049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543404226557, + "min_y": 5187.424970438041, + "max_x": 5205.543404226557, + "max_y": 5187.830591289707, + "center": [ + 5205.543404226557, + 5187.627780863873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543404226557, + 5187.830591289707 + ], + [ + 5205.543404226557, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.788225012555, + "min_y": 5187.816077726988, + "max_x": 5205.788247927437, + "max_y": 5187.920390431612, + "center": [ + 5205.788236469996, + 5187.8682340793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.788247927437, + 5187.920390431612 + ], + [ + 5205.788225012555, + 5187.816077726988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.760147087081, + "min_y": 5187.81607156016, + "max_x": 5205.76015234479, + "max_y": 5187.840006005867, + "center": [ + 5205.760149715936, + 5187.828038783013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.76015234479, + 5187.81607156016 + ], + [ + 5205.760147087081, + 5187.840006005867 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728021950168, + "min_y": 5187.824091811569, + "max_x": 5205.760150581453, + "max_y": 5187.824098869477, + "center": [ + 5205.74408626581, + 5187.824095340523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.760150581453, + 5187.824098869477 + ], + [ + 5205.728021950168, + 5187.824091811569 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.909934268123, + "min_y": 5187.536341662926, + "max_x": 5205.439210751373, + "max_y": 5188.065618146176, + "center": [ + 5205.174572509748, + 5187.800979904551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.174572509748, + 5187.800979904551 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.479635279748, + "min_y": 5187.457545260044, + "max_x": 5205.715991381244, + "max_y": 5187.693901361539, + "center": [ + 5205.597813330496, + 5187.575723310792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.597813330496, + 5187.575723310792 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.715991381218, + "min_y": 5187.516634285464, + "max_x": 5205.715991381218, + "max_y": 5187.634812336201, + "center": [ + 5205.715991381218, + 5187.5757233108325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.715991381218, + 5187.516634285464 + ], + [ + 5205.715991381218, + 5187.634812336201 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.424970438041, + "max_x": 5205.659800214577, + "max_y": 5187.820009922049, + "center": [ + 5205.659800214577, + 5187.622490180045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.820009922049 + ], + [ + 5205.659800214577, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.424970438041, + "max_x": 5205.659800214577, + "max_y": 5187.820009922049, + "center": [ + 5205.659800214577, + 5187.622490180045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.820009922049 + ], + [ + 5205.659800214577, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5187.424970438041, + "max_x": 5205.536982378906, + "max_y": 5187.625653176002, + "center": [ + 5205.536982378906, + 5187.525311807021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5187.625653176002 + ], + [ + 5205.536982378906, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543404226557, + "min_y": 5187.424970438041, + "max_x": 5205.69592310746, + "max_y": 5187.424970438041, + "center": [ + 5205.619663667008, + 5187.424970438041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543404226557, + 5187.424970438041 + ], + [ + 5205.69592310746, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.563472500376, + "min_y": 5187.340683688087, + "max_x": 5205.635718285974, + "max_y": 5187.340683688087, + "center": [ + 5205.599595393174, + 5187.340683688087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.563472500376, + 5187.340683688087 + ], + [ + 5205.635718285974, + 5187.340683688087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.536285139145, + "max_x": 5205.709228910187, + "max_y": 5187.536285139145, + "center": [ + 5205.684514562383, + 5187.536285139145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.536285139145 + ], + [ + 5205.709228910187, + 5187.536285139145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.496983431731, + "max_x": 5205.709168168098, + "max_y": 5187.496983431731, + "center": [ + 5205.684484191337, + 5187.496983431731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.496983431731 + ], + [ + 5205.709168168098, + 5187.496983431731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.652126106598, + "min_y": 5187.4847016481945, + "max_x": 5205.7159913811365, + "max_y": 5187.548566922733, + "center": [ + 5205.684058743867, + 5187.516634285464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.684058743867, + 5187.516634285464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.69592310746, + "min_y": 5187.424970438041, + "max_x": 5205.69592310746, + "max_y": 5187.496983431731, + "center": [ + 5205.69592310746, + 5187.460976934886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.69592310746, + 5187.496983431731 + ], + [ + 5205.69592310746, + 5187.424970438041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.635718285974, + "min_y": 5187.344697342821, + "max_x": 5205.667827524147, + "max_y": 5187.344697342821, + "center": [ + 5205.65177290506, + 5187.344697342821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.635718285974, + 5187.344697342821 + ], + [ + 5205.667827524147, + 5187.344697342821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.523335952703, + "min_y": 5187.416943128507, + "max_x": 5205.536982378906, + "max_y": 5187.416943128507, + "center": [ + 5205.530159165804, + 5187.416943128507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.523335952703, + 5187.416943128507 + ], + [ + 5205.536982378906, + 5187.416943128507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.352724652353, + "max_x": 5205.563472500376, + "max_y": 5187.352724652353, + "center": [ + 5205.523335952739, + 5187.352724652353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.483199405102, + 5187.352724652353 + ], + [ + 5205.563472500376, + 5187.352724652353 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.519322297985, + "min_y": 5187.27824995128, + "max_x": 5205.582005714378, + "max_y": 5187.27824995128, + "center": [ + 5205.550664006181, + 5187.27824995128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.519322297985, + 5187.27824995128 + ], + [ + 5205.582005714378, + 5187.27824995128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.321410470212, + "max_x": 5205.563472500376, + "max_y": 5187.321410470212, + "center": [ + 5205.523335952739, + 5187.321410470212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.563472500376, + 5187.321410470212 + ], + [ + 5205.483199405102, + 5187.321410470212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.563472500376, + "min_y": 5187.27824995128, + "max_x": 5205.563472500376, + "max_y": 5187.352724652353, + "center": [ + 5205.563472500376, + 5187.315487301816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.563472500376, + 5187.352724652353 + ], + [ + 5205.563472500376, + 5187.27824995128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533B9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.515308643226, + "min_y": 5187.2782499512705, + "max_x": 5205.523335952745, + "max_y": 5187.28627726079, + "center": [ + 5205.519322297985, + 5187.28226360603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.519322297985, + 5187.28226360603 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.483199405102, + "min_y": 5187.292519830968, + "max_x": 5205.515308643138, + "max_y": 5187.292519830968, + "center": [ + 5205.49925402412, + 5187.292519830968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.483199405102, + 5187.292519830968 + ], + [ + 5205.515308643138, + 5187.292519830968 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.483199405105, + "min_y": 5187.33667003329, + "max_x": 5205.563472500301, + "max_y": 5187.416943128486, + "center": [ + 5205.523335952703, + 5187.376806580888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.523335952703, + 5187.376806580888 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.446096551128, + "min_y": 5187.256396938106, + "max_x": 5205.606642741521, + "max_y": 5187.416943128499, + "center": [ + 5205.526369646324, + 5187.336670033303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.526369646324, + 5187.336670033303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.65446318985, + "max_x": 5205.709168168098, + "max_y": 5187.65446318985, + "center": [ + 5205.684484191337, + 5187.65446318985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.65446318985 + ], + [ + 5205.709168168098, + 5187.65446318985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.755250148382, + "max_x": 5205.728698556423, + "max_y": 5187.755265283688, + "center": [ + 5205.6942493855, + 5187.755257716035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728698556423, + 5187.755250148382 + ], + [ + 5205.659800214577, + 5187.755265283688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.608847648217, + "min_y": 5187.820009922049, + "max_x": 5205.702637188323, + "max_y": 5187.820009922049, + "center": [ + 5205.65574241827, + 5187.820009922049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.702637188323, + 5187.820009922049 + ], + [ + 5205.608847648217, + 5187.820009922049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.615161482471, + "max_x": 5205.709228910187, + "max_y": 5187.615161482471, + "center": [ + 5205.684514562383, + 5187.615161482471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.615161482471 + ], + [ + 5205.709228910187, + 5187.615161482471 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.652126106598, + "min_y": 5187.602879698932, + "max_x": 5205.7159913811365, + "max_y": 5187.6667449734705, + "center": [ + 5205.684058743867, + 5187.634812336201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.684058743867, + 5187.634812336201 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.663813869294, + "min_y": 5187.755264401953, + "max_x": 5205.663813869294, + "max_y": 5187.820009922049, + "center": [ + 5205.663813869294, + 5187.787637162001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.663813869294, + 5187.820009922049 + ], + [ + 5205.663813869294, + 5187.755264401953 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.69592310746, + "min_y": 5187.65446318985, + "max_x": 5205.69592310746, + "max_y": 5187.755257348349, + "center": [ + 5205.69592310746, + 5187.704860269099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.69592310746, + 5187.755257348349 + ], + [ + 5205.69592310746, + 5187.65446318985 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.742605791096, + "min_y": 5187.763277457531, + "max_x": 5205.773088121101, + "max_y": 5187.816074401796, + "center": [ + 5205.757846956099, + 5187.789675929664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.742605791096, + 5187.763277457531 + ], + [ + 5205.773088121101, + 5187.816074401796 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.712647464124, + "min_y": 5187.755250148026, + "max_x": 5205.744756702202, + "max_y": 5187.787359386104, + "center": [ + 5205.728702083163, + 5187.771304767065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728702083163, + 5187.771304767065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.663813869294, + "min_y": 5187.912935001164, + "max_x": 5205.663813869294, + "max_y": 5188.362255152145, + "center": [ + 5205.663813869294, + 5188.137595076654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.663813869294, + 5188.362255152145 + ], + [ + 5205.663813869294, + 5187.912935001164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.524133489501, + "min_y": 5187.866472461597, + "max_x": 5205.608847648217, + "max_y": 5187.866472461597, + "center": [ + 5205.566490568859, + 5187.866472461597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.608847648217, + 5187.866472461597 + ], + [ + 5205.524133489501, + 5187.866472461597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5187.830589878992, + "max_x": 5205.608847648217, + "max_y": 5187.830605666066, + "center": [ + 5205.572915013561, + 5187.830597772529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.608847648217, + 5187.830605666066 + ], + [ + 5205.536982378906, + 5187.830589878992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5187.902339257179, + "max_x": 5205.608847648217, + "max_y": 5187.902355044219, + "center": [ + 5205.572915013561, + 5187.902347150699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.608847648217, + 5187.902339257179 + ], + [ + 5205.536982378906, + 5187.902355044219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.608847648217, + "min_y": 5187.912935001164, + "max_x": 5205.702637188323, + "max_y": 5187.912935001164, + "center": [ + 5205.65574241827, + 5187.912935001164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.608847648217, + 5187.912935001164 + ], + [ + 5205.702637188323, + 5187.912935001164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5187.973572825204, + "max_x": 5205.709228910187, + "max_y": 5187.973572825204, + "center": [ + 5205.684514562383, + 5187.973572825204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5187.973572825204 + ], + [ + 5205.709228910187, + 5187.973572825204 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5188.012874532634, + "max_x": 5205.709168168098, + "max_y": 5188.012874532634, + "center": [ + 5205.684484191337, + 5188.012874532634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.012874532634 + ], + [ + 5205.709168168098, + 5188.012874532634 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728039580783, + "min_y": 5187.904349038515, + "max_x": 5205.728041344186, + "max_y": 5187.912376347798, + "center": [ + 5205.728040462484, + 5187.908362693157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728041344186, + 5187.912376347798 + ], + [ + 5205.728039580783, + 5187.904349038515 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5187.904349040099, + "max_x": 5205.728032345399, + "max_y": 5187.956378328249, + "center": [ + 5205.728032345399, + 5187.930363684174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5187.956378328249 + ], + [ + 5205.728032345399, + 5187.904349040099 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533CF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.479635279748, + "min_y": 5187.815956602825, + "max_x": 5205.715991381244, + "max_y": 5188.052312704321, + "center": [ + 5205.597813330496, + 5187.934134653573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.597813330496, + 5187.934134653573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.715991381218, + "min_y": 5187.904351685206, + "max_x": 5205.715991381218, + "max_y": 5187.993223678934, + "center": [ + 5205.715991381218, + 5187.948787682069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.715991381218, + 5187.904351685206 + ], + [ + 5205.715991381218, + 5187.993223678934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.652126106598, + "min_y": 5187.9612910416645, + "max_x": 5205.7159913811365, + "max_y": 5188.025156316203, + "center": [ + 5205.684058743867, + 5187.993223678934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.684058743867, + 5187.993223678934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.760132947469, + "min_y": 5187.832096200977, + "max_x": 5205.76015234479, + "max_y": 5187.920396603544, + "center": [ + 5205.76014264613, + 5187.87624640226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.76015234479, + 5187.920396603544 + ], + [ + 5205.760132947469, + 5187.832096200977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.702204957868, + "min_y": 5187.832096200977, + "max_x": 5205.760132947469, + "max_y": 5187.832108926304, + "center": [ + 5205.731168952669, + 5187.83210256364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.760132947469, + 5187.832096200977 + ], + [ + 5205.702204957868, + 5187.832108926304 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728041344186, + "min_y": 5187.912369294228, + "max_x": 5205.760150581453, + "max_y": 5187.912376347798, + "center": [ + 5205.744095962819, + 5187.9123728210125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.760150581453, + 5187.912369294228 + ], + [ + 5205.728041344186, + 5187.912376347798 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.702204957868, + "min_y": 5187.904341984911, + "max_x": 5205.76014881805, + "max_y": 5187.904354713744, + "center": [ + 5205.731176887959, + 5187.904348349328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.702204957868, + 5187.904354713744 + ], + [ + 5205.76014881805, + 5187.904341984911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5187.956378328249, + "max_x": 5205.784223512137, + "max_y": 5187.956378328249, + "center": [ + 5205.7561279287675, + 5187.956378328249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5187.956378328249 + ], + [ + 5205.784223512137, + 5187.956378328249 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.135387330511, + "max_x": 5205.728032345399, + "max_y": 5188.239742354267, + "center": [ + 5205.728032345399, + 5188.187564842388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.239742354267 + ], + [ + 5205.728032345399, + 5188.135387330511 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5188.362255152145, + "max_x": 5205.709168168098, + "max_y": 5188.362255152145, + "center": [ + 5205.684484191337, + 5188.362255152145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.362255152145 + ], + [ + 5205.709168168098, + 5188.362255152145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.135387330511, + "max_x": 5205.784223512137, + "max_y": 5188.135387330511, + "center": [ + 5205.7561279287675, + 5188.135387330511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.135387330511 + ], + [ + 5205.784223512137, + 5188.135387330511 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.239742354267, + "max_x": 5205.784223512137, + "max_y": 5188.239742354267, + "center": [ + 5205.7561279287675, + 5188.239742354267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.239742354267 + ], + [ + 5205.784223512137, + 5188.239742354267 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.57209977467, + "min_y": 5187.649735104586, + "max_x": 5204.57209977467, + "max_y": 5188.108788597216, + "center": [ + 5204.57209977467, + 5187.8792618509015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.57209977467, + 5187.649735104586 + ], + [ + 5204.57209977467, + 5188.108788597216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.5720997747185, + "min_y": 5187.988378954421, + "max_x": 5204.812919060308, + "max_y": 5188.22919824001, + "center": [ + 5204.692509417513, + 5188.108788597216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.692509417513, + 5188.108788597216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.404514542482, + "min_y": 5187.881493454099, + "max_x": 5204.518131264143, + "max_y": 5187.979888421384, + "center": [ + 5204.461322903313, + 5187.930690937741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.489727083696, + 5187.979888421384 + ], + [ + 5204.518131264143, + 5187.930690937768 + ], + [ + 5204.489727083696, + 5187.881493454099 + ], + [ + 5204.43291872283, + 5187.881493454099 + ], + [ + 5204.404514542482, + 5187.930690937768 + ], + [ + 5204.43291872283, + 5187.979888421384 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.412125419602, + "min_y": 5187.8814934541215, + "max_x": 5204.510520386895, + "max_y": 5187.979888421415, + "center": [ + 5204.461322903248, + 5187.930690937768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.461322903248, + 5187.930690937768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.763686807564, + "min_y": 5189.33364313526, + "max_x": 5205.857476347672, + "max_y": 5189.33364313526, + "center": [ + 5205.810581577618, + 5189.33364313526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.763686807564, + 5189.33364313526 + ], + [ + 5205.857476347672, + 5189.33364313526 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.763686807564, + "min_y": 5189.240718056144, + "max_x": 5205.857476347672, + "max_y": 5189.240718056144, + "center": [ + 5205.810581577618, + 5189.240718056144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.857476347672, + 5189.240718056144 + ], + [ + 5205.763686807564, + 5189.240718056144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.766619174486, + "min_y": 5189.060636606275, + "max_x": 5205.855594078777, + "max_y": 5189.060656151831, + "center": [ + 5205.811106626632, + 5189.060646379053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.766619174486, + 5189.060636606275 + ], + [ + 5205.855594078777, + 5189.060656151831 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.731570798953, + "min_y": 5188.624102667298, + "max_x": 5205.877012772817, + "max_y": 5188.769544641162, + "center": [ + 5205.804291785885, + 5188.69682365423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.804291785885, + 5188.69682365423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.731570798953, + "min_y": 5188.693285342114, + "max_x": 5205.877012772817, + "max_y": 5188.838727315978, + "center": [ + 5205.804291785885, + 5188.766006329046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.804291785885, + 5188.766006329046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.738185874725, + "min_y": 5189.015158292234, + "max_x": 5205.884015328675, + "max_y": 5189.160987746184, + "center": [ + 5205.8111006017, + 5189.088073019209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.8111006017, + 5189.088073019209 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.7381705919515, + "min_y": 5189.084728305255, + "max_x": 5205.884000045901, + "max_y": 5189.230557759205, + "center": [ + 5205.811085318926, + 5189.15764303223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.811085318926, + 5189.15764303223 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.750896517436, + "min_y": 5189.084715081525, + "max_x": 5205.87130615547, + "max_y": 5189.084741532565, + "center": [ + 5205.811101336452, + 5189.084728307045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.87130615547, + 5189.084741532565 + ], + [ + 5205.750896517436, + 5189.084715081525 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.770751230819, + "min_y": 5189.177033503633, + "max_x": 5205.851410883834, + "max_y": 5189.177051222573, + "center": [ + 5205.811081057327, + 5189.177042363102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.770751230819, + 5189.177033503633 + ], + [ + 5205.851410883834, + 5189.177051222573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.750879765157, + "min_y": 5189.160974518874, + "max_x": 5205.871289403089, + "max_y": 5189.161000969948, + "center": [ + 5205.811084584123, + 5189.160987744412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.871289403089, + 5189.161000969948 + ], + [ + 5205.750879765157, + 5189.160974518874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533E9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.776196202617, + "min_y": 5188.53304523682, + "max_x": 5205.792250821657, + "max_y": 5188.54909985586, + "center": [ + 5205.784223512137, + 5188.54107254634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.784223512137, + 5188.54107254634 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.776196202617, + "min_y": 5188.444744832116, + "max_x": 5205.792250821657, + "max_y": 5188.460799451156, + "center": [ + 5205.784223512137, + 5188.452772141636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.784223512137, + 5188.452772141636 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.744086964536, + "min_y": 5188.572875699335, + "max_x": 5206.013001833396, + "max_y": 5188.572875699335, + "center": [ + 5205.8785443989655, + 5188.572875699335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.013001833396, + 5188.572875699335 + ], + [ + 5205.744086964536, + 5188.572875699335 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.683882143147, + "min_y": 5188.693285342141, + "max_x": 5205.844428333557, + "max_y": 5188.693285342141, + "center": [ + 5205.764155238352, + 5188.693285342141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.683882143147, + 5188.693285342141 + ], + [ + 5205.844428333557, + 5188.693285342141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.663813869294, + "min_y": 5188.669203413606, + "max_x": 5205.86449660737, + "max_y": 5188.669203413606, + "center": [ + 5205.764155238332, + 5188.669203413606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.663813869294, + 5188.669203413606 + ], + [ + 5205.86449660737, + 5188.669203413606 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.724018690716, + "min_y": 5188.769544641136, + "max_x": 5205.804291785885, + "max_y": 5188.769544641136, + "center": [ + 5205.7641552383, + 5188.769544641136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.724018690716, + 5188.769544641136 + ], + [ + 5205.804291785885, + 5188.769544641136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.86449660737, + "min_y": 5188.596957627868, + "max_x": 5205.86449660737, + "max_y": 5188.669203413606, + "center": [ + 5205.86449660737, + 5188.633080520736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.86449660737, + 5188.669203413606 + ], + [ + 5205.86449660737, + 5188.596957627868 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.988919904837, + "min_y": 5188.524711842208, + "max_x": 5206.037083761955, + "max_y": 5188.572875699326, + "center": [ + 5206.013001833396, + 5188.548793770767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.013001833396, + 5188.548793770767 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.039683081234, + "min_y": 5188.51218887092, + "max_x": 5206.069193000049, + "max_y": 5188.541698789735, + "center": [ + 5206.054438040642, + 5188.526943830328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.054438040642, + 5188.526943830328 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.515357407078, + "max_x": 5206.063573883437, + "max_y": 5188.515357407078, + "center": [ + 5206.050328822668, + 5188.515357407078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.515357407078 + ], + [ + 5206.063573883437, + 5188.515357407078 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.538530253611, + "max_x": 5206.063573883437, + "max_y": 5188.538530253611, + "center": [ + 5206.050328822668, + 5188.538530253611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.538530253611 + ], + [ + 5206.063573883437, + 5188.538530253611 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5206.039683081234, + "min_y": 5188.44267033126, + "max_x": 5206.069193000049, + "max_y": 5188.472180250075, + "center": [ + 5206.054438040642, + 5188.457425290668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.054438040642, + 5188.457425290668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.445838867369, + "max_x": 5206.063573883437, + "max_y": 5188.445838867369, + "center": [ + 5206.050328822668, + 5188.445838867369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.445838867369 + ], + [ + 5206.063573883437, + 5188.445838867369 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.037083761899, + "min_y": 5188.469011713916, + "max_x": 5206.063573883437, + "max_y": 5188.469011713916, + "center": [ + 5206.050328822668, + 5188.469011713916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.037083761899, + 5188.469011713916 + ], + [ + 5206.063573883437, + 5188.469011713916 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.968010674745, + "min_y": 5188.441593397876, + "max_x": 5206.0691929999875, + "max_y": 5188.542775723119, + "center": [ + 5206.018601837366, + 5188.492184560498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.018601837366, + 5188.492184560498 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.069193000101, + "min_y": 5188.456415680515, + "max_x": 5206.069193000101, + "max_y": 5188.526710443088, + "center": [ + 5206.069193000101, + 5188.491563061802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.069193000101, + 5188.526710443088 + ], + [ + 5206.069193000101, + 5188.456415680515 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533F9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.864496607382, + "min_y": 5188.5728756993085, + "max_x": 5205.9126604645, + "max_y": 5188.621039556427, + "center": [ + 5205.888578535941, + 5188.596957627868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.888578535941, + 5188.596957627868 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.792250821604, + "min_y": 5188.452772141636, + "max_x": 5205.792250821604, + "max_y": 5188.54107254634, + "center": [ + 5205.792250821604, + 5188.4969223439875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.792250821604, + 5188.54107254634 + ], + [ + 5205.792250821604, + 5188.452772141636 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.803549077447, + "min_y": 5188.769544641136, + "max_x": 5205.804291785885, + "max_y": 5188.769544641136, + "center": [ + 5205.8039204316665, + 5188.769544641136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.804291785885, + 5188.769544641136 + ], + [ + 5205.803549077447, + 5188.769544641136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.836401023987, + "min_y": 5188.693285342141, + "max_x": 5205.836401023987, + "max_y": 5188.700758043517, + "center": [ + 5205.836401023987, + 5188.697021692829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.836401023987, + 5188.693285342141 + ], + [ + 5205.836401023987, + 5188.700758043517 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.844428333557, + "min_y": 5188.669203413606, + "max_x": 5205.844428333557, + "max_y": 5188.693285342141, + "center": [ + 5205.844428333557, + 5188.681244377874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844428333557, + 5188.669203413606 + ], + [ + 5205.844428333557, + 5188.693285342141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.844428333557, + "min_y": 5188.705364763411, + "max_x": 5205.844428333557, + "max_y": 5188.757465219914, + "center": [ + 5205.844428333557, + 5188.731414991662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.844428333557, + 5188.705364763411 + ], + [ + 5205.844428333557, + 5188.757465219914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5533FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.847190058043, + "min_y": 5189.160995679701, + "max_x": 5205.847207476156, + "max_y": 5189.240285825638, + "center": [ + 5205.8471987671, + 5189.20064075267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.847207476156, + 5189.160995679701 + ], + [ + 5205.847190058043, + 5189.240285825638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553400", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.839535932998, + "min_y": 5189.060656151475, + "max_x": 5205.871645171076, + "max_y": 5189.092765389553, + "center": [ + 5205.855590552037, + 5189.076710770514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.855590552037, + 5189.076710770514 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553401", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.84855035616, + "min_y": 5189.115512883961, + "max_x": 5205.894038442712, + "max_y": 5189.161000970514, + "center": [ + 5205.871294399436, + 5189.138256927237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.871294399436, + 5189.138256927237 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553402", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.891360321245, + "min_y": 5189.096786904877, + "max_x": 5205.891371783376, + "max_y": 5189.148964414644, + "center": [ + 5205.89136605231, + 5189.122875659761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.891360321245, + 5189.148964414644 + ], + [ + 5205.891371783376, + 5189.096786904877 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553403", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.851223775215, + "min_y": 5189.096778087854, + "max_x": 5205.851235237313, + "max_y": 5189.14895559762, + "center": [ + 5205.851229506264, + 5189.1228668427375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.851235237313, + 5189.096778087854 + ], + [ + 5205.851223775215, + 5189.14895559762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553404", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.848557115848, + "min_y": 5189.084741532032, + "max_x": 5205.894045202401, + "max_y": 5189.130229618585, + "center": [ + 5205.871301159124, + 5189.107485575309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.871301159124, + 5189.107485575309 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553405", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.848557115848, + "min_y": 5189.084741532032, + "max_x": 5205.894045202401, + "max_y": 5189.130229618585, + "center": [ + 5205.871301159124, + 5189.107485575309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.871301159124, + 5189.107485575309 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553406", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.8704026782425, + "min_y": 5189.0427195049115, + "max_x": 5205.918566535361, + "max_y": 5189.09088336203, + "center": [ + 5205.894484606802, + 5189.066801433471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.894484606802, + 5189.066801433471 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553407", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.851410883834, + "min_y": 5189.160996603906, + "max_x": 5205.851414410579, + "max_y": 5189.177051222573, + "center": [ + 5205.851412647207, + 5189.1690239132395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.851414410579, + 5189.160996603906 + ], + [ + 5205.851410883834, + 5189.177051222573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553408", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.915423734796, + "min_y": 5189.341086221905, + "max_x": 5205.999710482649, + "max_y": 5189.34110473764, + "center": [ + 5205.957567108722, + 5189.341095479773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.999710482649, + 5189.341086221905 + ], + [ + 5205.915423734796, + 5189.34110473764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553409", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.915423734796, + "min_y": 5189.236779694255, + "max_x": 5205.999710482649, + "max_y": 5189.23679820994, + "center": [ + 5205.957567108722, + 5189.236788952097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.999710482649, + 5189.23679820994 + ], + [ + 5205.915423734796, + 5189.236779694255 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.01173132524, + "min_y": 5189.248841819065, + "max_x": 5206.011748801622, + "max_y": 5189.328396749169, + "center": [ + 5206.011740063432, + 5189.288619284117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.01173132524, + 5189.328396749169 + ], + [ + 5206.011748801622, + 5189.248841819065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5206.011746193499, + "min_y": 5189.317170291968, + "max_x": 5206.011748801622, + "max_y": 5189.329042612831, + "center": [ + 5206.0117474975605, + 5189.323106452399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.011746193499, + 5189.317170291968 + ], + [ + 5206.011748801622, + 5189.329042612831 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.987666873298, + "min_y": 5189.317004293642, + "max_x": 5206.011748801857, + "max_y": 5189.341086222201, + "center": [ + 5205.999707837577, + 5189.329045257921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.999707837577, + 5189.329045257921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.987666873298, + "min_y": 5189.2367982096775, + "max_x": 5206.011748801857, + "max_y": 5189.260880138237, + "center": [ + 5205.999707837577, + 5189.248839173957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.999707837577, + 5189.248839173957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.983632953037, + "min_y": 5189.236794678157, + "max_x": 5205.983655864014, + "max_y": 5189.341089748731, + "center": [ + 5205.983644408525, + 5189.288942213444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.983655864014, + 5189.341089748731 + ], + [ + 5205.983632953037, + 5189.236794678157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55340F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.943496402462, + "min_y": 5189.236785861133, + "max_x": 5205.943519317345, + "max_y": 5189.341098565757, + "center": [ + 5205.943507859904, + 5189.288942213445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.943519317345, + 5189.341098565757 + ], + [ + 5205.943496402462, + 5189.236785861133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553410", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.915404337344, + "min_y": 5189.252804335072, + "max_x": 5205.915423734796, + "max_y": 5189.34110473764, + "center": [ + 5205.91541403607, + 5189.296954536356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.915423734796, + 5189.34110473764 + ], + [ + 5205.915404337344, + 5189.252804335072 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553411", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.883293340143, + "min_y": 5189.244799945697, + "max_x": 5205.883312734059, + "max_y": 5189.333084481893, + "center": [ + 5205.883303037101, + 5189.288942213795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.883312734059, + 5189.333084481893 + ], + [ + 5205.883293340143, + 5189.244799945697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553412", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.857476347672, + "min_y": 5189.240718056144, + "max_x": 5205.857476347672, + "max_y": 5189.33364313526, + "center": [ + 5205.857476347672, + 5189.287180595702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.857476347672, + 5189.240718056144 + ], + [ + 5205.857476347672, + 5189.33364313526 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553413", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.915418477023, + "min_y": 5189.236779694255, + "max_x": 5205.915423734796, + "max_y": 5189.260714139913, + "center": [ + 5205.915421105909, + 5189.248746917085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.915423734796, + 5189.236779694255 + ], + [ + 5205.915418477023, + 5189.260714139913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553414", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.883293340143, + "min_y": 5189.244799945697, + "max_x": 5205.915421971393, + "max_y": 5189.244807003572, + "center": [ + 5205.899357655768, + 5189.244803474634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.915421971393, + 5189.244807003572 + ], + [ + 5205.883293340143, + 5189.244799945697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553415", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.857476347672, + "min_y": 5189.325050118957, + "max_x": 5205.91542020795, + "max_y": 5189.32506284779, + "center": [ + 5205.886448277811, + 5189.325056483373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.857476347672, + 5189.32506284779 + ], + [ + 5205.91542020795, + 5189.325050118957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553416", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.857476347672, + "min_y": 5189.252804335072, + "max_x": 5205.915404337344, + "max_y": 5189.2528170604, + "center": [ + 5205.886440342508, + 5189.252810697736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.915404337344, + 5189.252804335072 + ], + [ + 5205.857476347672, + 5189.2528170604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553417", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.883312734059, + "min_y": 5189.333077428273, + "max_x": 5205.915421971393, + "max_y": 5189.333084481893, + "center": [ + 5205.899367352726, + 5189.333080955083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.915421971393, + 5189.333077428273 + ], + [ + 5205.883312734059, + 5189.333084481893 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553419", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.227497029799, + "min_y": 5189.488198907215, + "max_x": 5204.258662153559, + "max_y": 5189.536063241351, + "center": [ + 5204.243079591679, + 5189.512131074283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.258662153559, + 5189.536063241351 + ], + [ + 5204.227497029799, + 5189.488198907215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55341A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5204.625768977426, + "min_y": 5189.698440616429, + "max_x": 5204.836153858257, + "max_y": 5189.756880861105, + "center": [ + 5204.730961417841, + 5189.727660738767 + ] + }, + "raw_value": "533269", + "clean_value": "533269", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55341B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5204.866478370362, + "min_y": 5189.603701218216, + "max_x": 5204.948374648391, + "max_y": 5189.671948116574, + "center": [ + 5204.907426509377, + 5189.637824667395 + ] + }, + "raw_value": "HP", + "clean_value": "HP", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55341C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.915432934601, + "min_y": 5189.475626567955, + "max_x": 5205.482719498133, + "max_y": 5190.042913131487, + "center": [ + 5205.199076216367, + 5189.759269849721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.199076216367, + 5189.759269849721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55341E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.221841390419, + "min_y": 5189.485439321003, + "max_x": 5205.221841390419, + "max_y": 5189.517350321647, + "center": [ + 5205.221841390419, + 5189.501394821325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.221841390419, + 5189.485439321003 + ], + [ + 5205.221841390419, + 5189.517350321647 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55341F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.436295923558, + "min_y": 5189.504043603604, + "max_x": 5205.516569018754, + "max_y": 5189.584316698801, + "center": [ + 5205.476432471156, + 5189.544180151202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.476432471156, + 5189.544180151202 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553420", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.084230446486, + "min_y": 5189.479058687611, + "max_x": 5205.230719301946, + "max_y": 5189.625547543071, + "center": [ + 5205.157474874216, + 5189.552303115341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.157474874216, + 5189.552303115341 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553421", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.879548392441, + "min_y": 5189.1740484887705, + "max_x": 5205.160489406983, + "max_y": 5189.454989503312, + "center": [ + 5205.020018899712, + 5189.314518996041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.020018899712, + 5189.314518996041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553422", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.996821152561, + "min_y": 5189.228924390574, + "max_x": 5205.140773921434, + "max_y": 5189.372877159447, + "center": [ + 5205.068797536997, + 5189.300900775011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.068797536997, + 5189.300900775011 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553423", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.955011769274, + "min_y": 5189.169851908892, + "max_x": 5205.428571874458, + "max_y": 5189.643412014076, + "center": [ + 5205.191791821866, + 5189.406631961484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.191791821866, + 5189.406631961484 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553424", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.780443352539, + "min_y": 5188.906232373198, + "max_x": 5205.062767554814, + "max_y": 5189.188556575473, + "center": [ + 5204.921605453676, + 5189.047394474335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.921605453676, + 5189.047394474335 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553425", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.399405763642, + "min_y": 5189.018041961727, + "max_x": 5205.205615262327, + "max_y": 5189.824251460413, + "center": [ + 5204.802510512985, + 5189.42114671107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.802510512985, + 5189.42114671107 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553427", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.32000860161, + "min_y": 5188.755349648058, + "max_x": 5205.29737321799, + "max_y": 5189.732714264437, + "center": [ + 5204.8086909098, + 5189.244031956247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.8086909098, + 5189.244031956247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553428", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.32000860161, + "min_y": 5188.755349648058, + "max_x": 5205.29737321799, + "max_y": 5189.732714264437, + "center": [ + 5204.8086909098, + 5189.244031956247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.8086909098, + 5189.244031956247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553429", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.142188304513, + "min_y": 5188.499491921403, + "max_x": 5205.072343213722, + "max_y": 5189.429646830612, + "center": [ + 5204.607265759118, + 5188.964569376008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.607265759118, + 5188.964569376008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55342B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5188.749476508776, + "max_x": 5205.536982378906, + "max_y": 5188.950159246788, + "center": [ + 5205.536982378906, + 5188.849817877782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5188.950159246788 + ], + [ + 5205.536982378906, + 5188.749476508776 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55342C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.625053211237, + "max_x": 5205.655786559828, + "max_y": 5188.950159246788, + "center": [ + 5205.655786559828, + 5188.787606229012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.950159246788 + ], + [ + 5205.655786559828, + 5188.625053211237 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55342E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.743884198302, + "min_y": 5188.760684617995, + "max_x": 5205.225522769479, + "max_y": 5189.242323189172, + "center": [ + 5204.98470348389, + 5189.001503903583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.98470348389, + 5189.001503903583 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553430", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.663813869294, + "min_y": 5188.519734910314, + "max_x": 5205.663813869294, + "max_y": 5188.669203413606, + "center": [ + 5205.663813869294, + 5188.59446916196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.663813869294, + 5188.669203413606 + ], + [ + 5205.663813869294, + 5188.519734910314 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553431", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5188.519734910314, + "max_x": 5205.709168168098, + "max_y": 5188.519734910314, + "center": [ + 5205.684484191337, + 5188.519734910314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.519734910314 + ], + [ + 5205.709168168098, + 5188.519734910314 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553432", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5188.480433202884, + "max_x": 5205.709228910187, + "max_y": 5188.480433202884, + "center": [ + 5205.684514562383, + 5188.480433202884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.480433202884 + ], + [ + 5205.709228910187, + 5188.480433202884 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553433", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.659800214577, + "min_y": 5188.401556859525, + "max_x": 5205.709228910187, + "max_y": 5188.401556859525, + "center": [ + 5205.684514562383, + 5188.401556859525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.659800214577, + 5188.401556859525 + ], + [ + 5205.709228910187, + 5188.401556859525 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553434", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.479635279748, + "min_y": 5188.322816980505, + "max_x": 5205.715991381244, + "max_y": 5188.559173082001, + "center": [ + 5205.597813330496, + 5188.440995031253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.597813330496, + 5188.440995031253 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553435", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.652126106598, + "min_y": 5188.468151419347, + "max_x": 5205.7159913811365, + "max_y": 5188.532016693885, + "center": [ + 5205.684058743867, + 5188.500084056616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.684058743867, + 5188.500084056616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553436", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.444744832119, + "max_x": 5205.728032345399, + "max_y": 5188.549099855857, + "center": [ + 5205.728032345399, + 5188.4969223439875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.549099855857 + ], + [ + 5205.728032345399, + 5188.444744832119 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553437", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.621039556488, + "max_x": 5205.659800214577, + "max_y": 5188.625053211237, + "center": [ + 5205.657793387203, + 5188.623046383862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.625053211237 + ], + [ + 5205.659800214577, + 5188.621039556488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553438", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.728032345497, + "min_y": 5188.572875699314, + "max_x": 5205.760141583575, + "max_y": 5188.604984937392, + "center": [ + 5205.744086964536, + 5188.588930318353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.744086964536, + 5188.588930318353 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553439", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.549099855857, + "max_x": 5205.784223512137, + "max_y": 5188.549099855857, + "center": [ + 5205.7561279287675, + 5188.549099855857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.549099855857 + ], + [ + 5205.784223512137, + 5188.549099855857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.728032345399, + "min_y": 5188.444744832119, + "max_x": 5205.784223512137, + "max_y": 5188.444744832119, + "center": [ + 5205.7561279287675, + 5188.444744832119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.728032345399, + 5188.444744832119 + ], + [ + 5205.784223512137, + 5188.444744832119 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.838844545634, + "max_x": 5205.705215255502, + "max_y": 5188.838844545634, + "center": [ + 5205.680500907665, + 5188.838844545634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.838844545634 + ], + [ + 5205.705215255502, + 5188.838844545634 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.878146253096, + "max_x": 5205.705154513282, + "max_y": 5188.878146253096, + "center": [ + 5205.680470536555, + 5188.878146253096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.878146253096 + ], + [ + 5205.705154513282, + 5188.878146253096 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.759968202274, + "max_x": 5205.705215255502, + "max_y": 5188.759968202274, + "center": [ + 5205.680500907665, + 5188.759968202274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.759968202274 + ], + [ + 5205.705215255502, + 5188.759968202274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.655786559828, + "min_y": 5188.720666494894, + "max_x": 5205.705154513282, + "max_y": 5188.720666494894, + "center": [ + 5205.680470536555, + 5188.720666494894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.655786559828, + 5188.720666494894 + ], + [ + 5205.705154513282, + 5188.720666494894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55343F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.648112451883, + "min_y": 5188.826562762096, + "max_x": 5205.7119777264215, + "max_y": 5188.890428036634, + "center": [ + 5205.680045089152, + 5188.858495399365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.680045089152, + 5188.858495399365 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553440", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.475621624959, + "min_y": 5188.681228323207, + "max_x": 5205.711977726454, + "max_y": 5188.917584424702, + "center": [ + 5205.593799675707, + 5188.799406373954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.593799675707, + 5188.799406373954 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553441", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.711977726362, + "min_y": 5188.740317348626, + "max_x": 5205.711977726362, + "max_y": 5188.858495399365, + "center": [ + 5205.711977726362, + 5188.799406373995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.711977726362, + 5188.740317348626 + ], + [ + 5205.711977726362, + 5188.858495399365 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553442", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.648112451883, + "min_y": 5188.708384711357, + "max_x": 5205.7119777264215, + "max_y": 5188.7722499858955, + "center": [ + 5205.680045089152, + 5188.740317348626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.680045089152, + 5188.740317348626 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553443", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.691909452711, + "min_y": 5188.693285342141, + "max_x": 5205.691909452711, + "max_y": 5188.700758043517, + "center": [ + 5205.691909452711, + 5188.697021692829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.691909452711, + 5188.693285342141 + ], + [ + 5205.691909452711, + 5188.700758043517 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553444", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.683882143147, + "min_y": 5188.669203413606, + "max_x": 5205.683882143147, + "max_y": 5188.693285342141, + "center": [ + 5205.683882143147, + 5188.681244377874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.683882143147, + 5188.669203413606 + ], + [ + 5205.683882143147, + 5188.693285342141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553445", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.683882143147, + "min_y": 5188.705364763411, + "max_x": 5205.683882143147, + "max_y": 5188.720666494894, + "center": [ + 5205.683882143147, + 5188.713015629153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.683882143147, + 5188.705364763411 + ], + [ + 5205.683882143147, + 5188.720666494894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553446", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.764155238284, + "min_y": 5188.705364763411, + "max_x": 5205.764155238284, + "max_y": 5188.757465219914, + "center": [ + 5205.764155238284, + 5188.731414991662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.764155238284, + 5188.705364763411 + ], + [ + 5205.764155238284, + 5188.757465219914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553447", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.651297703784, + "min_y": 5188.693285342114, + "max_x": 5205.796739677648, + "max_y": 5188.838727315978, + "center": [ + 5205.724018690716, + 5188.766006329046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.724018690716, + 5188.766006329046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553448", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.651297703784, + "min_y": 5188.624102667298, + "max_x": 5205.796739677648, + "max_y": 5188.769544641162, + "center": [ + 5205.724018690716, + 5188.69682365423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.724018690716, + 5188.69682365423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553449", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.493593393931, + "min_y": 5188.709339961192, + "max_x": 5205.536982378906, + "max_y": 5188.709339961192, + "center": [ + 5205.515287886419, + 5188.709339961192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5188.709339961192 + ], + [ + 5205.493593393931, + 5188.709339961192 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.453456846333, + "min_y": 5188.709339961178, + "max_x": 5205.53372994153, + "max_y": 5188.789613056374, + "center": [ + 5205.493593393931, + 5188.749476508776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.493593393931, + 5188.749476508776 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.270475702879, + "min_y": 5188.895011630384, + "max_x": 5205.4310218932715, + "max_y": 5189.055557820777, + "center": [ + 5205.350748798075, + 5188.97528472558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.350748798075, + 5188.97528472558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543002861095, + "min_y": 5189.19707964024, + "max_x": 5205.543002861095, + "max_y": 5189.4960162941, + "center": [ + 5205.543002861095, + 5189.34654796717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543002861095, + 5189.4960162941 + ], + [ + 5205.543002861095, + 5189.19707964024 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.54701651578, + "min_y": 5189.197692627175, + "max_x": 5205.54701651578, + "max_y": 5189.500029948832, + "center": [ + 5205.54701651578, + 5189.348861288003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.500029948832 + ], + [ + 5205.54701651578, + 5189.197692627175 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.647357884865, + "min_y": 5189.07859619911, + "max_x": 5205.647357884865, + "max_y": 5189.4960162941, + "center": [ + 5205.647357884865, + 5189.287306246604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.4960162941 + ], + [ + 5205.647357884865, + 5189.07859619911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55344F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.643344230114, + "min_y": 5189.074582544328, + "max_x": 5205.643344230114, + "max_y": 5189.500029948832, + "center": [ + 5205.643344230114, + 5189.287306246581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.643344230114, + 5189.074582544328 + ], + [ + 5205.643344230114, + 5189.500029948832 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553450", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.639683776881, + "min_y": 5189.196284583923, + "max_x": 5205.703549051419, + "max_y": 5189.260149858462, + "center": [ + 5205.67161641415, + 5189.228217221193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.67161641415, + 5189.228217221193 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553451", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.77494427067, + "min_y": 5189.160979809106, + "max_x": 5205.774961692188, + "max_y": 5189.240285825638, + "center": [ + 5205.774952981429, + 5189.200632817372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.774961692188, + 5189.160979809106 + ], + [ + 5205.77494427067, + 5189.240285825638 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553452", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5189.096996251142, + "max_x": 5205.593173545536, + "max_y": 5189.105578067557, + "center": [ + 5205.565077962221, + 5189.101287159349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.593173545536, + 5189.096996251142 + ], + [ + 5205.536982378906, + 5189.105578067557 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553453", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.54701651578, + "min_y": 5189.074582544328, + "max_x": 5205.643344230114, + "max_y": 5189.074582544328, + "center": [ + 5205.595180372948, + 5189.074582544328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.074582544328 + ], + [ + 5205.643344230114, + 5189.074582544328 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553454", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543404226557, + "min_y": 5188.950159246788, + "max_x": 5205.655786559828, + "max_y": 5188.950159246788, + "center": [ + 5205.599595393192, + 5188.950159246788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543404226557, + 5188.950159246788 + ], + [ + 5205.655786559828, + 5188.950159246788 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553455", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5189.196160159917, + "max_x": 5205.593173545536, + "max_y": 5189.204741976332, + "center": [ + 5205.565077962221, + 5189.2004510681245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.593173545536, + 5189.204741976332 + ], + [ + 5205.536982378906, + 5189.196160159917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553456", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.730814137313, + "min_y": 5189.096751636828, + "max_x": 5205.730825599381, + "max_y": 5189.148929146629, + "center": [ + 5205.730819868348, + 5189.1228403917285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.730814137313, + 5189.148929146629 + ], + [ + 5205.730825599381, + 5189.096751636828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553458", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.593173545536, + "min_y": 5189.215087589873, + "max_x": 5205.641337402605, + "max_y": 5189.215087589873, + "center": [ + 5205.617255474071, + 5189.215087589873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.641337402605, + 5189.215087589873 + ], + [ + 5205.593173545536, + 5189.215087589873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553459", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.647357884865, + "min_y": 5189.208566367496, + "max_x": 5205.696725838385, + "max_y": 5189.208566367496, + "center": [ + 5205.672041861625, + 5189.208566367496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.208566367496 + ], + [ + 5205.696725838385, + 5189.208566367496 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.593173545536, + "min_y": 5189.0866506376, + "max_x": 5205.641337402605, + "max_y": 5189.0866506376, + "center": [ + 5205.617255474071, + 5189.0866506376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.641337402605, + 5189.0866506376 + ], + [ + 5205.593173545536, + 5189.0866506376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.593173545536, + "min_y": 5189.150869113753, + "max_x": 5205.620030787782, + "max_y": 5189.150869113753, + "center": [ + 5205.606602166659, + 5189.150869113753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.620030787782, + 5189.150869113753 + ], + [ + 5205.593173545536, + 5189.150869113753 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.571641910669, + "min_y": 5189.083912129607, + "max_x": 5205.6413374026915, + "max_y": 5189.153607621629, + "center": [ + 5205.60648965668, + 5189.118759875618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.60648965668, + 5189.118759875618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.643344230114, + "min_y": 5189.074582544328, + "max_x": 5205.647357884865, + "max_y": 5189.07859619911, + "center": [ + 5205.64535105749, + 5189.076589371719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.07859619911 + ], + [ + 5205.643344230114, + 5189.074582544328 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.571641910669, + "min_y": 5189.148130605811, + "max_x": 5205.6413374026915, + "max_y": 5189.2178260978335, + "center": [ + 5205.60648965668, + 5189.182978351822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.60648965668, + 5189.182978351822 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55345F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.641337402605, + "min_y": 5189.0866506376, + "max_x": 5205.641337402605, + "max_y": 5189.215087589873, + "center": [ + 5205.641337402605, + 5189.150869113737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.641337402605, + 5189.0866506376 + ], + [ + 5205.641337402605, + 5189.215087589873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553460", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.593173545536, + "min_y": 5189.0866506376, + "max_x": 5205.593173545536, + "max_y": 5189.215087589873, + "center": [ + 5205.593173545536, + 5189.150869113737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.593173545536, + 5189.0866506376 + ], + [ + 5205.593173545536, + 5189.215087589873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553461", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.750561028707, + "min_y": 5189.060636605869, + "max_x": 5205.782670266785, + "max_y": 5189.092745843947, + "center": [ + 5205.766615647746, + 5189.076691224908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.766615647746, + 5189.076691224908 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553462", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.703644021926, + "min_y": 5189.042682872105, + "max_x": 5205.7518078790445, + "max_y": 5189.090846729223, + "center": [ + 5205.727725950485, + 5189.066764800664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.727725950485, + 5189.066764800664 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553463", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.770950683213, + "min_y": 5189.096760453804, + "max_x": 5205.770962145411, + "max_y": 5189.148937963653, + "center": [ + 5205.770956414312, + 5189.122849208728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.770962145411, + 5189.096760453804 + ], + [ + 5205.770950683213, + 5189.148937963653 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553464", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.770751230819, + "min_y": 5189.160978884952, + "max_x": 5205.770754757662, + "max_y": 5189.177033503633, + "center": [ + 5205.77075299424, + 5189.169006194292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.770754757662, + 5189.160978884952 + ], + [ + 5205.770751230819, + 5189.177033503633 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553465", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.7281407182245, + "min_y": 5189.115486432887, + "max_x": 5205.773628804777, + "max_y": 5189.16097451944, + "center": [ + 5205.750884761501, + 5189.138230476164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.750884761501, + 5189.138230476164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553466", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.728147477915, + "min_y": 5189.084715080993, + "max_x": 5205.773635564467, + "max_y": 5189.130203167546, + "center": [ + 5205.750891521191, + 5189.10745912427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.750891521191, + 5189.10745912427 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553467", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543002861095, + "min_y": 5189.07859619911, + "max_x": 5205.543002861095, + "max_y": 5189.104658587234, + "center": [ + 5205.543002861095, + 5189.091627393172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543002861095, + 5189.104658587234 + ], + [ + 5205.543002861095, + 5189.07859619911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553468", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.54605390532, + "min_y": 5188.08970382019, + "max_x": 5207.752244219057, + "max_y": 5190.295894133927, + "center": [ + 5206.649149062188, + 5189.192798977058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.649149062188, + 5189.192798977058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553469", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.5393252711, + "min_y": 5188.9150317553485, + "max_x": 5206.0083055811265, + "max_y": 5189.384012065375, + "center": [ + 5205.773815426113, + 5189.149521910362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.773815426113, + 5189.149521910362 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543002861095, + "min_y": 5189.074582544328, + "max_x": 5205.54701651578, + "max_y": 5189.07859619911, + "center": [ + 5205.545009688438, + 5189.076589371719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.074582544328 + ], + [ + 5205.543002861095, + 5189.07859619911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5189.07859619911, + "max_x": 5205.543002861095, + "max_y": 5189.07859619911, + "center": [ + 5205.539992620001, + 5189.07859619911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543002861095, + 5189.07859619911 + ], + [ + 5205.536982378906, + 5189.07859619911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.54701651578, + "min_y": 5189.074582544328, + "max_x": 5205.54701651578, + "max_y": 5189.104045600297, + "center": [ + 5205.54701651578, + 5189.089314072313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.074582544328 + ], + [ + 5205.54701651578, + 5189.104045600297 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.57097209259, + "min_y": 5188.620743401495, + "max_x": 5206.654494949305, + "max_y": 5189.704266258211, + "center": [ + 5206.112733520948, + 5189.162504829853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.112733520948, + 5189.162504829853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.583808285568, + "min_y": 5188.30070578062, + "max_x": 5207.311208682442, + "max_y": 5190.028106177494, + "center": [ + 5206.447508484005, + 5189.164405979057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.447508484005, + 5189.164405979057 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55346F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.557587581358, + "min_y": 5188.745735229355, + "max_x": 5206.388755990519, + "max_y": 5189.576903638515, + "center": [ + 5205.973171785939, + 5189.161319433935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.973171785939, + 5189.161319433935 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553470", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.54701651578, + "min_y": 5189.500029948832, + "max_x": 5205.643344230114, + "max_y": 5189.500029948832, + "center": [ + 5205.595180372948, + 5189.500029948832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.500029948832 + ], + [ + 5205.643344230114, + 5189.500029948832 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553471", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.639683776881, + "min_y": 5189.3144626346975, + "max_x": 5205.703549051419, + "max_y": 5189.378327909236, + "center": [ + 5205.67161641415, + 5189.346395271967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.67161641415, + 5189.346395271967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553472", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.467192949934, + "min_y": 5189.169128195807, + "max_x": 5205.703549051429, + "max_y": 5189.405484297303, + "center": [ + 5205.585371000681, + 5189.287306246555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.585371000681, + 5189.287306246555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553473", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703549051434, + "min_y": 5189.327443083253, + "max_x": 5205.703957726033, + "max_y": 5189.327443173081, + "center": [ + 5205.703753388733, + 5189.327443128166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.703549051434, + 5189.327443083253 + ], + [ + 5205.703957726033, + 5189.327443173081 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553474", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703549051434, + "min_y": 5189.246783426312, + "max_x": 5205.703975444994, + "max_y": 5189.24678351998, + "center": [ + 5205.703762248214, + 5189.246783473146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.703549051434, + 5189.246783426312 + ], + [ + 5205.703975444994, + 5189.24678351998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553475", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703957726033, + "min_y": 5189.24678351998, + "max_x": 5205.703975444994, + "max_y": 5189.327443173081, + "center": [ + 5205.703966585514, + 5189.2871133465305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.703957726033, + 5189.327443173081 + ], + [ + 5205.703975444994, + 5189.24678351998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553476", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703549051434, + "min_y": 5189.228217221193, + "max_x": 5205.703549051434, + "max_y": 5189.346395271967, + "center": [ + 5205.703549051434, + 5189.28730624658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.703549051434, + 5189.228217221193 + ], + [ + 5205.703549051434, + 5189.346395271967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553477", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.647357884865, + "min_y": 5189.326744418234, + "max_x": 5205.696786580469, + "max_y": 5189.326744418234, + "center": [ + 5205.672072232667, + 5189.326744418234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.326744418234 + ], + [ + 5205.696786580469, + 5189.326744418234 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553478", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.647357884865, + "min_y": 5189.366046125664, + "max_x": 5205.696725838385, + "max_y": 5189.366046125664, + "center": [ + 5205.672041861625, + 5189.366046125664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.366046125664 + ], + [ + 5205.696725838385, + 5189.366046125664 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553479", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.647357884865, + "min_y": 5189.247868074875, + "max_x": 5205.696786580469, + "max_y": 5189.247868074875, + "center": [ + 5205.672072232667, + 5189.247868074875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.647357884865, + 5189.247868074875 + ], + [ + 5205.696786580469, + 5189.247868074875 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.643344230114, + "min_y": 5189.4960162941, + "max_x": 5205.647357884865, + "max_y": 5189.500029948832, + "center": [ + 5205.64535105749, + 5189.498023121466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.643344230114, + 5189.500029948832 + ], + [ + 5205.647357884865, + 5189.4960162941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.763686807564, + "min_y": 5189.240718056144, + "max_x": 5205.763686807564, + "max_y": 5189.33364313526, + "center": [ + 5205.763686807564, + 5189.287180595702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.763686807564, + 5189.33364313526 + ], + [ + 5205.763686807564, + 5189.240718056144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703958639749, + "min_y": 5189.323270736509, + "max_x": 5205.763686807564, + "max_y": 5189.323283857333, + "center": [ + 5205.733822723656, + 5189.32327729692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.763686807564, + 5189.323270736509 + ], + [ + 5205.703958639749, + 5189.323283857333 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.703974452687, + "min_y": 5189.251300682759, + "max_x": 5205.763686807564, + "max_y": 5189.251313800111, + "center": [ + 5205.733830630126, + 5189.251307241435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.763686807564, + 5189.251313800111 + ], + [ + 5205.703974452687, + 5189.251300682759 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.481893607019, + "min_y": 5189.379620306077, + "max_x": 5205.536982378906, + "max_y": 5189.379620306077, + "center": [ + 5205.509437992962, + 5189.379620306077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5189.379620306077 + ], + [ + 5205.481893607019, + 5189.379620306077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55347F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.543002861095, + "min_y": 5189.4960162941, + "max_x": 5205.54701651578, + "max_y": 5189.500029948832, + "center": [ + 5205.545009688438, + 5189.498023121466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.54701651578, + 5189.500029948832 + ], + [ + 5205.543002861095, + 5189.4960162941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553480", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.536982378906, + "min_y": 5189.4960162941, + "max_x": 5205.543002861095, + "max_y": 5189.4960162941, + "center": [ + 5205.539992620001, + 5189.4960162941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.543002861095, + 5189.4960162941 + ], + [ + 5205.536982378906, + 5189.4960162941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553481", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.4417570594205, + "min_y": 5189.379620306064, + "max_x": 5205.522030154617, + "max_y": 5189.45989340126, + "center": [ + 5205.481893607019, + 5189.419756853662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.481893607019, + 5189.419756853662 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553482", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.960365007201, + "min_y": 5189.147695008179, + "max_x": 5205.483721866113, + "max_y": 5189.671051867091, + "center": [ + 5205.222043436657, + 5189.409373437635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.222043436657, + 5189.409373437635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553483", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.976028892877, + "min_y": 5189.196042477695, + "max_x": 5205.301286170668, + "max_y": 5189.521299755486, + "center": [ + 5205.138657531773, + 5189.358671116591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.138657531773, + 5189.358671116591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553484", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.225522769568, + "min_y": 5189.001503903583, + "max_x": 5205.225522769568, + "max_y": 5189.4285436261, + "center": [ + 5205.225522769568, + 5189.215023764842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.225522769568, + 5189.001503903583 + ], + [ + 5205.225522769568, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553485", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.225522769524, + "min_y": 5189.217221172666, + "max_x": 5205.2897412456805, + "max_y": 5189.281439648822, + "center": [ + 5205.257632007602, + 5189.249330410744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.249330410744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553486", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.225522769568, + "min_y": 5189.013775363893, + "max_x": 5205.225522769568, + "max_y": 5189.263526623737, + "center": [ + 5205.225522769568, + 5189.138650993815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.225522769568, + 5189.263526623737 + ], + [ + 5205.225522769568, + 5189.013775363893 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553487", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.155431028384, + "min_y": 5189.196909798621, + "max_x": 5205.223012638371, + "max_y": 5189.343538011088, + "center": [ + 5205.189221833378, + 5189.270223904854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.155431028384, + 5189.196909798621 + ], + [ + 5205.223012638371, + 5189.343538011088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553488", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.241577388512, + "min_y": 5189.201977476554, + "max_x": 5205.257632007552, + "max_y": 5189.218032095594, + "center": [ + 5205.249604698032, + 5189.210004786074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.249604698032, + 5189.210004786074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553489", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.30579586477, + "min_y": 5189.055557820751, + "max_x": 5205.350748798075, + "max_y": 5189.055557820751, + "center": [ + 5205.328272331422, + 5189.055557820751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.30579586477, + 5189.055557820751 + ], + [ + 5205.350748798075, + 5189.055557820751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.241577388512, + "min_y": 5189.148296269802, + "max_x": 5205.257632007552, + "max_y": 5189.164350888842, + "center": [ + 5205.249604698032, + 5189.156323579322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.249604698032, + 5189.156323579322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.241577388512, + "min_y": 5189.108563114814, + "max_x": 5205.257632007552, + "max_y": 5189.124617733854, + "center": [ + 5205.249604698032, + 5189.116590424334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.249604698032, + 5189.116590424334 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.225522769573, + "min_y": 5189.055557820726, + "max_x": 5205.386068959966, + "max_y": 5189.216104011119, + "center": [ + 5205.30579586477, + 5189.135830915922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.30579586477, + 5189.135830915922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.225522769524, + "min_y": 5189.084888716575, + "max_x": 5205.2897412456805, + "max_y": 5189.149107192731, + "center": [ + 5205.257632007602, + 5189.116997954653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.116997954653 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.225522769524, + "min_y": 5189.045155561603, + "max_x": 5205.2897412456805, + "max_y": 5189.109374037759, + "center": [ + 5205.257632007602, + 5189.077264799681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.077264799681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55348F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.257632007602, + "min_y": 5189.116590424334, + "max_x": 5205.257632007602, + "max_y": 5189.210004786074, + "center": [ + 5205.257632007602, + 5189.163297605204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.116590424334 + ], + [ + 5205.257632007602, + 5189.210004786074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553490", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.051025540907, + "min_y": 5189.051723796991, + "max_x": 5205.05965806413, + "max_y": 5189.103760952344, + "center": [ + 5205.055341802519, + 5189.077742374668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.051025540907, + 5189.103760952344 + ], + [ + 5205.05965806413, + 5189.051723796991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553491", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.155431028384, + "min_y": 5189.15631536622, + "max_x": 5205.155431028384, + "max_y": 5189.200981768204, + "center": [ + 5205.155431028384, + 5189.178648567212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.155431028384, + 5189.15631536622 + ], + [ + 5205.155431028384, + 5189.200981768204 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553492", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.3568300626375, + "min_y": 5188.959006320531, + "max_x": 5205.225899198025, + "max_y": 5189.828075455919, + "center": [ + 5204.791364630331, + 5189.393540888225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.791364630331, + 5189.393540888225 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553493", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.160561584959, + "min_y": 5189.2776212444, + "max_x": 5205.199955424123, + "max_y": 5189.338123487093, + "center": [ + 5205.180258504541, + 5189.307872365746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.199955424123, + 5189.338123487093 + ], + [ + 5205.160561584959, + 5189.2776212444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553494", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.160561584959, + "min_y": 5189.338123487093, + "max_x": 5205.199955424123, + "max_y": 5189.388976249281, + "center": [ + 5205.180258504541, + 5189.363549868187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.160561584959, + 5189.388976249281 + ], + [ + 5205.199955424123, + 5189.338123487093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553495", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.160561584959, + "min_y": 5189.242712829663, + "max_x": 5205.199955424123, + "max_y": 5189.298390332105, + "center": [ + 5205.180258504541, + 5189.270551580884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.199955424123, + 5189.298390332105 + ], + [ + 5205.160561584959, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553496", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.977112435761, + "min_y": 5189.1077362305905, + "max_x": 5205.259436638036, + "max_y": 5189.3900604328655, + "center": [ + 5205.118274536899, + 5189.248898331728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.118274536899, + 5189.248898331728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553497", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.816580966037, + "min_y": 5189.482852699651, + "max_x": 5205.540699721927, + "max_y": 5190.206971455541, + "center": [ + 5205.178640343982, + 5189.844912077596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.178640343982, + 5189.844912077596 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553498", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.199955424123, + "min_y": 5189.298390332105, + "max_x": 5205.199955424123, + "max_y": 5189.338123487093, + "center": [ + 5205.199955424123, + 5189.318256909599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.199955424123, + 5189.338123487093 + ], + [ + 5205.199955424123, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553499", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.342518722396, + "min_y": 5188.987041602521, + "max_x": 5205.225522769554, + "max_y": 5189.870045649679, + "center": [ + 5204.784020745975, + 5189.4285436261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.784020745975, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.976941962774, + "min_y": 5189.11904162645, + "max_x": 5205.248203719715, + "max_y": 5189.390303383391, + "center": [ + 5205.112572841244, + 5189.254672504921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.112572841244, + 5189.254672504921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.042380067469, + "min_y": 5189.298390332105, + "max_x": 5205.042380067469, + "max_y": 5189.338123487093, + "center": [ + 5205.042380067469, + 5189.318256909599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.042380067469, + 5189.338123487093 + ], + [ + 5205.042380067469, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.081773906633, + "min_y": 5189.2776212444, + "max_x": 5205.160561584959, + "max_y": 5189.2776212444, + "center": [ + 5205.121167745796, + 5189.2776212444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.160561584959, + 5189.2776212444 + ], + [ + 5205.081773906633, + 5189.2776212444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.081773906633, + "min_y": 5189.388976249281, + "max_x": 5205.160561584959, + "max_y": 5189.388976249281, + "center": [ + 5205.121167745796, + 5189.388976249281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.081773906633, + 5189.388976249281 + ], + [ + 5205.160561584959, + 5189.388976249281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.977112435761, + "min_y": 5189.1077362305905, + "max_x": 5205.259436638036, + "max_y": 5189.3900604328655, + "center": [ + 5205.118274536899, + 5189.248898331728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.118274536899, + 5189.248898331728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55349F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.976941962774, + "min_y": 5189.11904162645, + "max_x": 5205.248203719715, + "max_y": 5189.390303383391, + "center": [ + 5205.112572841244, + 5189.254672504921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.112572841244, + 5189.254672504921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.042380067469, + "min_y": 5189.2776212444, + "max_x": 5205.081773906633, + "max_y": 5189.338123487093, + "center": [ + 5205.062076987051, + 5189.307872365746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.081773906633, + 5189.2776212444 + ], + [ + 5205.042380067469, + 5189.338123487093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.042380067469, + "min_y": 5189.338123487093, + "max_x": 5205.081773906633, + "max_y": 5189.388976249281, + "center": [ + 5205.062076987051, + 5189.363549868187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.042380067469, + 5189.338123487093 + ], + [ + 5205.081773906633, + 5189.388976249281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.081773906633, + "min_y": 5189.242712829663, + "max_x": 5205.160561584959, + "max_y": 5189.242712829663, + "center": [ + 5205.121167745796, + 5189.242712829663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.160561584959, + 5189.242712829663 + ], + [ + 5205.081773906633, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.160561584959, + "min_y": 5189.242712829663, + "max_x": 5205.160561584959, + "max_y": 5189.2776212444, + "center": [ + 5205.160561584959, + 5189.260167037031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.160561584959, + 5189.2776212444 + ], + [ + 5205.160561584959, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.081773906633, + "min_y": 5189.242712829663, + "max_x": 5205.081773906633, + "max_y": 5189.2776212444, + "center": [ + 5205.081773906633, + 5189.260167037031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.081773906633, + 5189.2776212444 + ], + [ + 5205.081773906633, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.042380067469, + "min_y": 5189.242712829663, + "max_x": 5205.081773906633, + "max_y": 5189.298390332105, + "center": [ + 5205.062076987051, + 5189.270551580884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.081773906633, + 5189.242712829663 + ], + [ + 5205.042380067469, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.4071422443085, + "min_y": 5188.920442037618, + "max_x": 5204.652710535698, + "max_y": 5189.166010329008, + "center": [ + 5204.529926390003, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.529926390003, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.410750853344, + "min_y": 5189.016219429334, + "max_x": 5204.635515519886, + "max_y": 5189.016219429334, + "center": [ + 5204.523133186615, + 5189.016219429334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.635515519886, + 5189.016219429334 + ], + [ + 5204.410750853344, + 5189.016219429334 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534AB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.784186279172, + "min_y": 5188.806559060236, + "max_x": 5205.462823645261, + "max_y": 5189.485196426325, + "center": [ + 5205.123504962216, + 5189.145877743281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.123504962216, + 5189.145877743281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534AC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.7284973374635, + "min_y": 5188.900075493058, + "max_x": 5205.487689997174, + "max_y": 5189.659268152768, + "center": [ + 5205.108093667319, + 5189.279671822913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.108093667319, + 5189.279671822913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534AD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.7802728795505, + "min_y": 5188.917537769092, + "max_x": 5205.051534636492, + "max_y": 5189.188799526033, + "center": [ + 5204.915903758021, + 5189.053168647562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.915903758021, + 5189.053168647562 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534AE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.342518722396, + "min_y": 5188.970122024154, + "max_x": 5205.225522769554, + "max_y": 5189.8531260713125, + "center": [ + 5204.784020745975, + 5189.411624047733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.784020745975, + 5189.411624047733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534AF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.785425742334, + "min_y": 5188.818496004081, + "max_x": 5205.419625736379, + "max_y": 5189.452695998126, + "center": [ + 5205.102525739357, + 5189.135596001103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.102525739357, + 5189.135596001103 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.868389570954, + "min_y": 5189.05000184058, + "max_x": 5204.947177249281, + "max_y": 5189.05000184058, + "center": [ + 5204.907783410117, + 5189.05000184058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947177249281, + 5189.05000184058 + ], + [ + 5204.868389570954, + 5189.05000184058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.868389570954, + "min_y": 5189.084910255317, + "max_x": 5204.947177249281, + "max_y": 5189.084910255317, + "center": [ + 5204.907783410117, + 5189.084910255317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947177249281, + 5189.084910255317 + ], + [ + 5204.868389570954, + 5189.084910255317 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.868389570954, + "min_y": 5189.1962652602, + "max_x": 5204.947177249281, + "max_y": 5189.1962652602, + "center": [ + 5204.907783410117, + 5189.1962652602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.868389570954, + 5189.1962652602 + ], + [ + 5204.947177249281, + 5189.1962652602 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.947177249281, + "min_y": 5189.05000184058, + "max_x": 5204.947177249281, + "max_y": 5189.084910255317, + "center": [ + 5204.947177249281, + 5189.067456047948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947177249281, + 5189.084910255317 + ], + [ + 5204.947177249281, + 5189.05000184058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.828995731791, + "min_y": 5189.084910255317, + "max_x": 5204.868389570954, + "max_y": 5189.14541249801, + "center": [ + 5204.848692651372, + 5189.115161376663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.868389570954, + 5189.084910255317 + ], + [ + 5204.828995731791, + 5189.14541249801 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.828995731791, + "min_y": 5189.05000184058, + "max_x": 5204.868389570954, + "max_y": 5189.105679343022, + "center": [ + 5204.848692651372, + 5189.077840591801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.868389570954, + 5189.05000184058 + ], + [ + 5204.828995731791, + 5189.105679343022 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.868389570954, + "min_y": 5189.05000184058, + "max_x": 5204.868389570954, + "max_y": 5189.084910255317, + "center": [ + 5204.868389570954, + 5189.067456047948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.868389570954, + 5189.084910255317 + ], + [ + 5204.868389570954, + 5189.05000184058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.828995731791, + "min_y": 5189.14541249801, + "max_x": 5204.868389570954, + "max_y": 5189.1962652602, + "center": [ + 5204.848692651372, + 5189.170838879105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.828995731791, + 5189.14541249801 + ], + [ + 5204.868389570954, + 5189.1962652602 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.828995731791, + "min_y": 5189.105679343022, + "max_x": 5204.828995731791, + "max_y": 5189.14541249801, + "center": [ + 5204.828995731791, + 5189.125545920516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.828995731791, + 5189.14541249801 + ], + [ + 5204.828995731791, + 5189.105679343022 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.830536836369, + "min_y": 5188.97257930037, + "max_x": 5204.832034741392, + "max_y": 5189.019124623564, + "center": [ + 5204.83128578888, + 5188.995851961967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.832034741392, + 5189.019124623564 + ], + [ + 5204.830536836369, + 5188.97257930037 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.986571088446, + "min_y": 5189.105679343022, + "max_x": 5204.986571088446, + "max_y": 5189.14541249801, + "center": [ + 5204.986571088446, + 5189.125545920516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.986571088446, + 5189.14541249801 + ], + [ + 5204.986571088446, + 5189.105679343022 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.947177249281, + "min_y": 5189.084910255317, + "max_x": 5204.986571088446, + "max_y": 5189.14541249801, + "center": [ + 5204.966874168864, + 5189.115161376663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.986571088446, + 5189.14541249801 + ], + [ + 5204.947177249281, + 5189.084910255317 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.947177249281, + "min_y": 5189.05000184058, + "max_x": 5204.986571088446, + "max_y": 5189.105679343022, + "center": [ + 5204.966874168864, + 5189.077840591801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.986571088446, + 5189.105679343022 + ], + [ + 5204.947177249281, + 5189.05000184058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.947177249281, + "min_y": 5189.14541249801, + "max_x": 5204.986571088446, + "max_y": 5189.1962652602, + "center": [ + 5204.966874168864, + 5189.170838879105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947177249281, + 5189.1962652602 + ], + [ + 5204.986571088446, + 5189.14541249801 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.449827863726, + "min_y": 5188.967293533322, + "max_x": 5204.649463648242, + "max_y": 5189.166929317838, + "center": [ + 5204.549645755984, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.549645755984, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.635515519886, + "min_y": 5188.970122024127, + "max_x": 5204.645064653586, + "max_y": 5189.016219429334, + "center": [ + 5204.640290086736, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.635515519886, + 5189.016219429334 + ], + [ + 5204.645064653586, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.687951213321, + "min_y": 5188.5599301886, + "max_x": 5204.650331263295, + "max_y": 5189.522310238574, + "center": [ + 5204.169141238308, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.169141238308, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.790464617082, + "min_y": 5189.0257248182825, + "max_x": 5204.918901569396, + "max_y": 5189.154161770597, + "center": [ + 5204.854683093239, + 5189.08994329444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.854683093239, + 5189.08994329444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.645064653586, + "min_y": 5188.970122024127, + "max_x": 5204.784020745975, + "max_y": 5188.970122024127, + "center": [ + 5204.71454269978, + 5188.970122024127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.645064653586, + 5188.970122024127 + ], + [ + 5204.784020745975, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.800830018624, + "min_y": 5189.165771667829, + "max_x": 5204.946611737677, + "max_y": 5189.311553386882, + "center": [ + 5204.87372087815, + 5189.238662527356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.87372087815, + 5189.238662527356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.955790644949, + "min_y": 5189.241995660725, + "max_x": 5205.253961508896, + "max_y": 5189.540166524672, + "center": [ + 5205.104876076923, + 5189.391081092698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.104876076923, + 5189.391081092698 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.95789986559, + "min_y": 5189.372278688174, + "max_x": 5205.038172960786, + "max_y": 5189.452551783371, + "center": [ + 5204.998036413188, + 5189.412415235773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.998036413188, + 5189.412415235773 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.647092856477, + "min_y": 5188.947205187645, + "max_x": 5205.0172336316655, + "max_y": 5189.317345962833, + "center": [ + 5204.832163244071, + 5189.132275575239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.832163244071, + 5189.132275575239 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534C9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.3968027248475, + "min_y": 5188.967293533322, + "max_x": 5204.596438509364, + "max_y": 5189.166929317838, + "center": [ + 5204.496620617106, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.496620617106, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.401201719569, + "min_y": 5188.970122024127, + "max_x": 5204.410750853344, + "max_y": 5189.016219429334, + "center": [ + 5204.405976286456, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.410750853344, + 5189.016219429334 + ], + [ + 5204.401201719569, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.393555837455, + "min_y": 5188.920442037618, + "max_x": 5204.639124128845, + "max_y": 5189.166010329008, + "center": [ + 5204.51633998315, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.51633998315, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.395935109796, + "min_y": 5188.5599301886, + "max_x": 5205.3583151597695, + "max_y": 5189.522310238574, + "center": [ + 5204.877125134783, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.877125134783, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.483739347384, + "min_y": 5189.018504312319, + "max_x": 5204.562527025777, + "max_y": 5189.018504312319, + "center": [ + 5204.52313318658, + 5189.018504312319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.562527025777, + 5189.018504312319 + ], + [ + 5204.483739347384, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.483739347384, + "min_y": 5189.053412727055, + "max_x": 5204.562527025777, + "max_y": 5189.053412727055, + "center": [ + 5204.52313318658, + 5189.053412727055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.562527025777, + 5189.053412727055 + ], + [ + 5204.483739347384, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.483739347384, + "min_y": 5189.164767731937, + "max_x": 5204.562527025777, + "max_y": 5189.164767731937, + "center": [ + 5204.52313318658, + 5189.164767731937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483739347384, + 5189.164767731937 + ], + [ + 5204.562527025777, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.4071422443085, + "min_y": 5188.920442037618, + "max_x": 5204.652710535698, + "max_y": 5189.166010329008, + "center": [ + 5204.529926390003, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.529926390003, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562527025777, + "min_y": 5189.018504312319, + "max_x": 5204.562527025777, + "max_y": 5189.053412727055, + "center": [ + 5204.562527025777, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.562527025777, + 5189.053412727055 + ], + [ + 5204.562527025777, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.601920864941, + "min_y": 5189.074181814761, + "max_x": 5204.601920864941, + "max_y": 5189.113914969733, + "center": [ + 5204.601920864941, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.113914969733 + ], + [ + 5204.601920864941, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562527025777, + "min_y": 5189.053412727055, + "max_x": 5204.601920864941, + "max_y": 5189.113914969733, + "center": [ + 5204.582223945359, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.113914969733 + ], + [ + 5204.562527025777, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562527025777, + "min_y": 5189.018504312319, + "max_x": 5204.601920864941, + "max_y": 5189.074181814761, + "center": [ + 5204.582223945359, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.074181814761 + ], + [ + 5204.562527025777, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562527025777, + "min_y": 5189.113914969733, + "max_x": 5204.601920864941, + "max_y": 5189.164767731937, + "center": [ + 5204.582223945359, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.562527025777, + 5189.164767731937 + ], + [ + 5204.601920864941, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.074181814761, + "max_x": 5204.444345508288, + "max_y": 5189.113914969733, + "center": [ + 5204.444345508288, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.444345508288, + 5189.113914969733 + ], + [ + 5204.444345508288, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.053412727055, + "max_x": 5204.483739347384, + "max_y": 5189.113914969733, + "center": [ + 5204.464042427836, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483739347384, + 5189.053412727055 + ], + [ + 5204.444345508288, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.018504312319, + "max_x": 5204.483739347384, + "max_y": 5189.074181814761, + "center": [ + 5204.464042427836, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483739347384, + 5189.018504312319 + ], + [ + 5204.444345508288, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.483739347384, + "min_y": 5189.018504312319, + "max_x": 5204.483739347384, + "max_y": 5189.053412727055, + "center": [ + 5204.483739347384, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483739347384, + 5189.053412727055 + ], + [ + 5204.483739347384, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.113914969733, + "max_x": 5204.483739347384, + "max_y": 5189.164767731937, + "center": [ + 5204.464042427836, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.444345508288, + 5189.113914969733 + ], + [ + 5204.483739347384, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.393555837455, + "min_y": 5188.920442037618, + "max_x": 5204.639124128845, + "max_y": 5189.166010329008, + "center": [ + 5204.51633998315, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.51633998315, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.299890344268, + "min_y": 5188.970122024127, + "max_x": 5204.401201719569, + "max_y": 5188.970122024127, + "center": [ + 5204.350546031918, + 5188.970122024127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.299890344268, + 5188.970122024127 + ], + [ + 5204.401201719569, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217352716392, + "min_y": 5189.053412727055, + "max_x": 5204.256746555557, + "max_y": 5189.113914969733, + "center": [ + 5204.2370496359745, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.113914969733 + ], + [ + 5204.217352716392, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217352716392, + "min_y": 5189.018504312319, + "max_x": 5204.256746555557, + "max_y": 5189.074181814761, + "center": [ + 5204.2370496359745, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.074181814761 + ], + [ + 5204.217352716392, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217352716392, + "min_y": 5189.113914969733, + "max_x": 5204.256746555557, + "max_y": 5189.164767731937, + "center": [ + 5204.2370496359745, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.217352716392, + 5189.164767731937 + ], + [ + 5204.256746555557, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.256746555557, + "min_y": 5189.074181814761, + "max_x": 5204.256746555557, + "max_y": 5189.113914969733, + "center": [ + 5204.256746555557, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.113914969733 + ], + [ + 5204.256746555557, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.104653554512, + "min_y": 5188.967293533322, + "max_x": 5204.304289339028, + "max_y": 5189.166929317838, + "center": [ + 5204.20447144677, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.20447144677, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.061967934923, + "min_y": 5188.920442037618, + "max_x": 5204.307536226313, + "max_y": 5189.166010329008, + "center": [ + 5204.184752080618, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.184752080618, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.290341210501, + "min_y": 5188.970122024127, + "max_x": 5204.299890344268, + "max_y": 5189.016219429334, + "center": [ + 5204.295115777384, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.290341210501, + 5189.016219429334 + ], + [ + 5204.299890344268, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.342776903936, + "min_y": 5188.5599301886, + "max_x": 5204.30515695391, + "max_y": 5189.522310238574, + "center": [ + 5203.823966928923, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823966928923, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217352716392, + "min_y": 5189.018504312319, + "max_x": 5204.217352716392, + "max_y": 5189.053412727055, + "center": [ + 5204.217352716392, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.217352716392, + 5189.053412727055 + ], + [ + 5204.217352716392, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.96389250173, + "min_y": 5189.829111759219, + "max_x": 5205.003286340892, + "max_y": 5189.879964521423, + "center": [ + 5204.983589421311, + 5189.854538140321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.96389250173, + 5189.879964521423 + ], + [ + 5205.003286340892, + 5189.829111759219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.916471353064, + "min_y": 5189.962402977164, + "max_x": 5205.020826376773, + "max_y": 5189.962402977164, + "center": [ + 5204.968648864919, + 5189.962402977164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.916471353064, + 5189.962402977164 + ], + [ + 5205.020826376773, + 5189.962402977164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.727037748872, + "min_y": 5189.7421241984875, + "max_x": 5205.16706816553, + "max_y": 5190.182154615145, + "center": [ + 5204.947052957201, + 5189.962139406816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947052957201, + 5189.962139406816 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534EB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.967361015915, + "min_y": 5189.510167021753, + "max_x": 5205.116085396363, + "max_y": 5189.6588914022, + "center": [ + 5205.041723206139, + 5189.584529211977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.041723206139, + 5189.584529211977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.975615508959, + "min_y": 5189.512640191518, + "max_x": 5205.2150158517115, + "max_y": 5189.75204053427, + "center": [ + 5205.095315680335, + 5189.632340362894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.095315680335, + 5189.632340362894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.96389250173, + "min_y": 5189.73370110184, + "max_x": 5205.003286340892, + "max_y": 5189.789378604245, + "center": [ + 5204.983589421311, + 5189.761539853042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.003286340892, + 5189.789378604245 + ], + [ + 5204.96389250173, + 5189.73370110184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.96389250173, + "min_y": 5189.768609516541, + "max_x": 5205.003286340892, + "max_y": 5189.829111759219, + "center": [ + 5204.983589421311, + 5189.79886063788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.003286340892, + 5189.829111759219 + ], + [ + 5204.96389250173, + 5189.768609516541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.356400908395, + "min_y": 5189.974443941481, + "max_x": 5205.42219185279, + "max_y": 5189.974443941481, + "center": [ + 5205.389296380592, + 5189.974443941481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.356400908395, + 5189.974443941481 + ], + [ + 5205.42219185279, + 5189.974443941481 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.356400908395, + "min_y": 5189.677433489248, + "max_x": 5205.42219185279, + "max_y": 5189.677433489248, + "center": [ + 5205.389296380592, + 5189.677433489248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.356400908395, + 5189.677433489248 + ], + [ + 5205.42219185279, + 5189.677433489248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.202412682809, + "min_y": 5189.560234770253, + "max_x": 5205.399856818712, + "max_y": 5189.560234770253, + "center": [ + 5205.30113475076, + 5189.560234770253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.399856818712, + 5189.560234770253 + ], + [ + 5205.202412682809, + 5189.560234770253 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.602806316987, + "min_y": 5189.701515417784, + "max_x": 5205.602806316987, + "max_y": 5189.825938715356, + "center": [ + 5205.602806316987, + 5189.76372706657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.602806316987, + 5189.701515417784 + ], + [ + 5205.602806316987, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.442260126543, + "min_y": 5189.701515417784, + "max_x": 5205.442260126543, + "max_y": 5189.825938715356, + "center": [ + 5205.442260126543, + 5189.76372706657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.442260126543, + 5189.701515417784 + ], + [ + 5205.442260126543, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.42219185279, + "min_y": 5189.677433489248, + "max_x": 5205.42219185279, + "max_y": 5189.825938715356, + "center": [ + 5205.42219185279, + 5189.751686102301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.42219185279, + 5189.677433489248 + ], + [ + 5205.42219185279, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.402123579042, + "min_y": 5189.713556382051, + "max_x": 5205.402123579042, + "max_y": 5189.938321048629, + "center": [ + 5205.402123579042, + 5189.82593871534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.402123579042, + 5189.938321048629 + ], + [ + 5205.402123579042, + 5189.713556382051 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.442260126543, + "min_y": 5189.701515417784, + "max_x": 5205.602806316987, + "max_y": 5189.701515417784, + "center": [ + 5205.522533221765, + 5189.701515417784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.442260126543, + 5189.701515417784 + ], + [ + 5205.602806316987, + 5189.701515417784 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.402123579042, + "min_y": 5189.713556382051, + "max_x": 5205.602806316987, + "max_y": 5189.713556382051, + "center": [ + 5205.502464948015, + 5189.713556382051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.402123579042, + 5189.713556382051 + ], + [ + 5205.602806316987, + 5189.713556382051 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.42219185279, + "min_y": 5189.677433489248, + "max_x": 5205.442260126543, + "max_y": 5189.701515417784, + "center": [ + 5205.432225989667, + 5189.689474453517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.42219185279, + 5189.677433489248 + ], + [ + 5205.442260126543, + 5189.701515417784 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534F9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.3597202711135, + "min_y": 5189.479961675071, + "max_x": 5205.43999336631, + "max_y": 5189.560234770267, + "center": [ + 5205.399856818712, + 5189.520098222669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.399856818712, + 5189.520098222669 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.476432471156, + "min_y": 5189.504043603584, + "max_x": 5205.536982378906, + "max_y": 5189.504043603584, + "center": [ + 5205.506707425031, + 5189.504043603584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.536982378906, + 5189.504043603584 + ], + [ + 5205.476432471156, + 5189.504043603584 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.442260126543, + "min_y": 5189.950362012896, + "max_x": 5205.602806316987, + "max_y": 5189.950362012896, + "center": [ + 5205.522533221765, + 5189.950362012896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.442260126543, + 5189.950362012896 + ], + [ + 5205.602806316987, + 5189.950362012896 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.402123579042, + "min_y": 5189.938321048629, + "max_x": 5205.602806316987, + "max_y": 5189.938321048629, + "center": [ + 5205.502464948015, + 5189.938321048629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.402123579042, + 5189.938321048629 + ], + [ + 5205.602806316987, + 5189.938321048629 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.408833105473, + "min_y": 5189.825938715356, + "max_x": 5205.659970118357, + "max_y": 5189.825938715356, + "center": [ + 5205.534401611914, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.408833105473, + 5189.825938715356 + ], + [ + 5205.659970118357, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.602806316987, + "min_y": 5189.825938715356, + "max_x": 5205.602806316987, + "max_y": 5189.950362012896, + "center": [ + 5205.602806316987, + 5189.888150364126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.602806316987, + 5189.950362012896 + ], + [ + 5205.602806316987, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5534FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.42219185279, + "min_y": 5189.950362012896, + "max_x": 5205.442260126543, + "max_y": 5189.974443941481, + "center": [ + 5205.432225989667, + 5189.9624029771885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.42219185279, + 5189.974443941481 + ], + [ + 5205.442260126543, + 5189.950362012896 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553500", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.42219185279, + "min_y": 5189.825938715356, + "max_x": 5205.42219185279, + "max_y": 5189.974443941481, + "center": [ + 5205.42219185279, + 5189.900191328418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.42219185279, + 5189.974443941481 + ], + [ + 5205.42219185279, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553501", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.442260126543, + "min_y": 5189.825938715356, + "max_x": 5205.442260126543, + "max_y": 5189.950362012896, + "center": [ + 5205.442260126543, + 5189.888150364126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.442260126543, + 5189.950362012896 + ], + [ + 5205.442260126543, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553502", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.342518722396, + "min_y": 5188.987041602521, + "max_x": 5205.225522769554, + "max_y": 5189.870045649679, + "center": [ + 5204.784020745975, + 5189.4285436261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.784020745975, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553503", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.51644376198, + "min_y": 5189.481433348471, + "max_x": 5205.205454495749, + "max_y": 5190.1704440822405, + "center": [ + 5204.860949128864, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.860949128864, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553504", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.205454495811, + "min_y": 5189.653976675717, + "max_x": 5205.205454495811, + "max_y": 5189.941802948147, + "center": [ + 5205.205454495811, + 5189.797889811932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.205454495811, + 5189.941802948147 + ], + [ + 5205.205454495811, + 5189.653976675717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553505", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.968840384879, + "min_y": 5189.749290218455, + "max_x": 5205.029074000825, + "max_y": 5189.809523834401, + "center": [ + 5204.998957192852, + 5189.779407026428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.998957192852, + 5189.779407026428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553506", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.701963804212, + "min_y": 5189.49793392917, + "max_x": 5205.357973376583, + "max_y": 5190.153943501541, + "center": [ + 5205.029968590397, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.029968590397, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553507", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.24559104332, + "min_y": 5189.49793392917, + "max_x": 5205.901600615691, + "max_y": 5190.153943501541, + "center": [ + 5205.573595829505, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.573595829505, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553508", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.357973376587, + "min_y": 5189.693853489951, + "max_x": 5205.357973376587, + "max_y": 5189.958023940761, + "center": [ + 5205.357973376587, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.357973376587, + 5189.958023940761 + ], + [ + 5205.357973376587, + 5189.693853489951 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553509", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.245591043317, + "min_y": 5189.693853489951, + "max_x": 5205.245591043317, + "max_y": 5189.958023940761, + "center": [ + 5205.245591043317, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.245591043317, + 5189.958023940761 + ], + [ + 5205.245591043317, + 5189.693853489951 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.018150606955, + "min_y": 5189.558490421772, + "max_x": 5205.205454495752, + "max_y": 5189.745794310569, + "center": [ + 5205.111802551353, + 5189.652142366171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.111802551353, + 5189.652142366171 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.185150515008, + "min_y": 5189.517350321647, + "max_x": 5205.221841390419, + "max_y": 5189.598337075585, + "center": [ + 5205.203495952714, + 5189.557843698616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.221841390419, + 5189.517350321647 + ], + [ + 5205.185150515008, + 5189.598337075585 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.257632007602, + "min_y": 5189.737881898413, + "max_x": 5205.345932412338, + "max_y": 5189.737881898413, + "center": [ + 5205.30178220997, + 5189.737881898413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.737881898413 + ], + [ + 5205.345932412338, + 5189.737881898413 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.257632007602, + "min_y": 5189.649825081505, + "max_x": 5205.345932412338, + "max_y": 5189.649825081505, + "center": [ + 5205.30178220997, + 5189.649825081505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.345932412338, + 5189.649825081505 + ], + [ + 5205.257632007602, + 5189.649825081505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.245591043342, + "min_y": 5189.607336931801, + "max_x": 5205.418624159642, + "max_y": 5189.780370048101, + "center": [ + 5205.332107601492, + 5189.693853489951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.332107601492, + 5189.693853489951 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55350F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.184940260365, + "min_y": 5189.607336931801, + "max_x": 5205.357973376665, + "max_y": 5189.780370048101, + "center": [ + 5205.271456818515, + 5189.693853489951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.271456818515, + 5189.693853489951 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553510", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.205454495811, + "min_y": 5189.677433489248, + "max_x": 5205.247163511507, + "max_y": 5189.677433489248, + "center": [ + 5205.2263090036595, + 5189.677433489248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.205454495811, + 5189.677433489248 + ], + [ + 5205.247163511507, + 5189.677433489248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553513", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.027575158452, + "min_y": 5189.556292347703, + "max_x": 5205.066968997519, + "max_y": 5189.616794590399, + "center": [ + 5205.047272077985, + 5189.586543469051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.066968997519, + 5189.556292347703 + ], + [ + 5205.027575158452, + 5189.616794590399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553514", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.027575158452, + "min_y": 5189.521383932967, + "max_x": 5205.066968997519, + "max_y": 5189.577061435409, + "center": [ + 5205.047272077985, + 5189.549222684188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.066968997519, + 5189.521383932967 + ], + [ + 5205.027575158452, + 5189.577061435409 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553515", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.027575158452, + "min_y": 5189.616794590399, + "max_x": 5205.066968997519, + "max_y": 5189.667647352552, + "center": [ + 5205.047272077985, + 5189.642220971476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.027575158452, + 5189.616794590399 + ], + [ + 5205.066968997519, + 5189.667647352552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553516", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.979436895139, + "min_y": 5189.410830273313, + "max_x": 5205.2483195838595, + "max_y": 5189.679712962034, + "center": [ + 5205.113878239499, + 5189.545271617673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.113878239499, + 5189.545271617673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553517", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.727037748872, + "min_y": 5189.7421241984875, + "max_x": 5205.16706816553, + "max_y": 5190.182154615145, + "center": [ + 5204.947052957201, + 5189.962139406816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.947052957201, + 5189.962139406816 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553518", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.124115458839, + "min_y": 5189.710074482533, + "max_x": 5205.185386221998, + "max_y": 5189.710074482533, + "center": [ + 5205.154750840418, + 5189.710074482533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.124115458839, + 5189.710074482533 + ], + [ + 5205.185386221998, + 5189.710074482533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553519", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.066968997519, + "min_y": 5189.521383932967, + "max_x": 5205.145756675843, + "max_y": 5189.521383932967, + "center": [ + 5205.106362836681, + 5189.521383932967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.145756675843, + 5189.521383932967 + ], + [ + 5205.066968997519, + 5189.521383932967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.066968997519, + "min_y": 5189.556292347703, + "max_x": 5205.145756675843, + "max_y": 5189.556292347703, + "center": [ + 5205.106362836681, + 5189.556292347703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.145756675843, + 5189.556292347703 + ], + [ + 5205.066968997519, + 5189.556292347703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.066968997519, + "min_y": 5189.667647352552, + "max_x": 5205.145756675843, + "max_y": 5189.667647352552, + "center": [ + 5205.106362836681, + 5189.667647352552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.066968997519, + 5189.667647352552 + ], + [ + 5205.145756675843, + 5189.667647352552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.145756675843, + "min_y": 5189.556292347703, + "max_x": 5205.185150515008, + "max_y": 5189.616794590399, + "center": [ + 5205.165453595426, + 5189.586543469051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.185150515008, + 5189.616794590399 + ], + [ + 5205.145756675843, + 5189.556292347703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.145756675843, + "min_y": 5189.521383932967, + "max_x": 5205.185150515008, + "max_y": 5189.577061435409, + "center": [ + 5205.165453595426, + 5189.549222684188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.185150515008, + 5189.577061435409 + ], + [ + 5205.145756675843, + 5189.521383932967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.145756675843, + "min_y": 5189.521383932967, + "max_x": 5205.145756675843, + "max_y": 5189.556292347703, + "center": [ + 5205.145756675843, + 5189.538838140335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.145756675843, + 5189.556292347703 + ], + [ + 5205.145756675843, + 5189.521383932967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55351F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.145756675843, + "min_y": 5189.616794590399, + "max_x": 5205.185150515008, + "max_y": 5189.667647352552, + "center": [ + 5205.165453595426, + 5189.642220971476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.145756675843, + 5189.667647352552 + ], + [ + 5205.185150515008, + 5189.616794590399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553520", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.185150515008, + "min_y": 5189.577061435409, + "max_x": 5205.185150515008, + "max_y": 5189.616794590399, + "center": [ + 5205.185150515008, + 5189.596928012904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.185150515008, + 5189.616794590399 + ], + [ + 5205.185150515008, + 5189.577061435409 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553521", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.066968997519, + "min_y": 5189.521383932967, + "max_x": 5205.066968997519, + "max_y": 5189.556292347703, + "center": [ + 5205.066968997519, + 5189.538838140335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.066968997519, + 5189.556292347703 + ], + [ + 5205.066968997519, + 5189.521383932967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553522", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.150599409732, + "min_y": 5189.642794901267, + "max_x": 5205.165008992334, + "max_y": 5189.674600774179, + "center": [ + 5205.157804201033, + 5189.658697837724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.165008992334, + 5189.642794901267 + ], + [ + 5205.150599409732, + 5189.674600774179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553523", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.027575158452, + "min_y": 5189.577061435409, + "max_x": 5205.027575158452, + "max_y": 5189.616794590399, + "center": [ + 5205.027575158452, + 5189.596928012904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.027575158452, + 5189.616794590399 + ], + [ + 5205.027575158452, + 5189.577061435409 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553524", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.0035090988, + "min_y": 5189.508813333608, + "max_x": 5205.168802309539, + "max_y": 5189.674106544347, + "center": [ + 5205.08615570417, + 5189.591459938977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.08615570417, + 5189.591459938977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553525", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.993651835536, + "min_y": 5189.46597791301, + "max_x": 5205.32246272021, + "max_y": 5189.794788797683, + "center": [ + 5205.158057277873, + 5189.630383355347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.158057277873, + 5189.630383355347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553526", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.018150606955, + "min_y": 5189.9060831201605, + "max_x": 5205.205454495752, + "max_y": 5190.0933870089575, + "center": [ + 5205.111802551353, + 5189.999735064559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.111802551353, + 5189.999735064559 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553527", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.205454495811, + "min_y": 5189.941802948147, + "max_x": 5205.205454495811, + "max_y": 5189.999735064559, + "center": [ + 5205.205454495811, + 5189.970769006353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.205454495811, + 5189.999735064559 + ], + [ + 5205.205454495811, + 5189.941802948147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553528", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.245591043342, + "min_y": 5189.8715073826115, + "max_x": 5205.418624159642, + "max_y": 5190.044540498911, + "center": [ + 5205.332107601492, + 5189.958023940761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.332107601492, + 5189.958023940761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553529", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.184940260365, + "min_y": 5189.8715073826115, + "max_x": 5205.357973376665, + "max_y": 5190.044540498911, + "center": [ + 5205.271456818515, + 5189.958023940761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.271456818515, + 5189.958023940761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.257632007602, + "min_y": 5189.913995532265, + "max_x": 5205.345932412338, + "max_y": 5189.913995532265, + "center": [ + 5205.30178220997, + 5189.913995532265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5189.913995532265 + ], + [ + 5205.345932412338, + 5189.913995532265 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.257632007602, + "min_y": 5190.002052349176, + "max_x": 5205.345932412338, + "max_y": 5190.002052349176, + "center": [ + 5205.30178220997, + 5190.002052349176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.257632007602, + 5190.002052349176 + ], + [ + 5205.345932412338, + 5190.002052349176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.205454495811, + "min_y": 5189.974443941481, + "max_x": 5205.247163511507, + "max_y": 5189.974443941481, + "center": [ + 5205.2263090036595, + 5189.974443941481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.205454495811, + 5189.974443941481 + ], + [ + 5205.247163511507, + 5189.974443941481 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.020826376773, + "min_y": 5189.962402977164, + "max_x": 5205.040923889615, + "max_y": 5189.997395037373, + "center": [ + 5205.030875133194, + 5189.979899007269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.020826376773, + 5189.962402977164 + ], + [ + 5205.040923889615, + 5189.997395037373 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.040894650591, + "min_y": 5189.481433348473, + "max_x": 5205.729905384357, + "max_y": 5190.170444082239, + "center": [ + 5205.385400017474, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.385400017474, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55352F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5205.040894650518, + "min_y": 5189.9060831201605, + "max_x": 5205.228198539315, + "max_y": 5190.0933870089575, + "center": [ + 5205.134546594916, + 5189.999735064559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.134546594916, + 5189.999735064559 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553530", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.040894650521, + "min_y": 5189.941802948147, + "max_x": 5205.040894650521, + "max_y": 5189.999735064559, + "center": [ + 5205.040894650521, + 5189.970769006353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.040894650521, + 5189.999735064559 + ], + [ + 5205.040894650521, + 5189.941802948147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553531", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.060962924374, + "min_y": 5189.941802948147, + "max_x": 5205.185386221998, + "max_y": 5189.941802948147, + "center": [ + 5205.123174573186, + 5189.941802948147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.060962924374, + 5189.941802948147 + ], + [ + 5205.185386221998, + 5189.941802948147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553532", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.040894650521, + "min_y": 5189.78762555818, + "max_x": 5205.040894650521, + "max_y": 5189.941802948147, + "center": [ + 5205.040894650521, + 5189.864714253163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.040894650521, + 5189.941802948147 + ], + [ + 5205.040894650521, + 5189.78762555818 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553533", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.060962924374, + "min_y": 5190.057667180969, + "max_x": 5205.185386221998, + "max_y": 5190.057667180969, + "center": [ + 5205.123174573186, + 5190.057667180969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.060962924374, + 5190.057667180969 + ], + [ + 5205.185386221998, + 5190.057667180969 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553534", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.003286340892, + "min_y": 5189.789378604245, + "max_x": 5205.003286340892, + "max_y": 5189.829111759219, + "center": [ + 5205.003286340892, + 5189.809245181732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.003286340892, + 5189.829111759219 + ], + [ + 5205.003286340892, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553535", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5205.020826376773, + "min_y": 5189.801165592728, + "max_x": 5205.020826376773, + "max_y": 5189.962402977164, + "center": [ + 5205.020826376773, + 5189.881784284946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.020826376773, + 5189.962402977164 + ], + [ + 5205.020826376773, + 5189.801165592728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553536", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.549199652754, + "min_y": 5190.014580489066, + "max_x": 5204.549199652754, + "max_y": 5190.100874066413, + "center": [ + 5204.549199652754, + 5190.057727277739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.549199652754, + 5190.100874066413 + ], + [ + 5204.549199652754, + 5190.014580489066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553537", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.609449053745, + "min_y": 5190.014580489066, + "max_x": 5204.609449053745, + "max_y": 5190.100874066413, + "center": [ + 5204.609449053745, + 5190.057727277739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.609449053745, + 5190.100874066413 + ], + [ + 5204.609449053745, + 5190.014580489066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553538", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.639573754242, + "min_y": 5190.014580489066, + "max_x": 5204.639573754242, + "max_y": 5190.100874066413, + "center": [ + 5204.639573754242, + 5190.057727277739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.639573754242, + 5190.100874066413 + ], + [ + 5204.639573754242, + 5190.014580489066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553539", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.51907495219, + "min_y": 5190.014580489066, + "max_x": 5204.51907495219, + "max_y": 5190.100874066413, + "center": [ + 5204.51907495219, + 5190.057727277739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.51907495219, + 5190.100874066413 + ], + [ + 5204.51907495219, + 5190.014580489066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.362439874881, + "min_y": 5189.791133686444, + "max_x": 5204.716173897273, + "max_y": 5190.144867708836, + "center": [ + 5204.539306886077, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.539306886077, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.587799323828, + "min_y": 5189.870045649675, + "max_x": 5204.635515519886, + "max_y": 5189.870045649675, + "center": [ + 5204.611657421858, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.635515519886, + 5189.870045649675 + ], + [ + 5204.587799323828, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.51907495219, + "min_y": 5190.014580489066, + "max_x": 5204.639573754242, + "max_y": 5190.014580489066, + "center": [ + 5204.579324353215, + 5190.014580489066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.51907495219, + 5190.014580489066 + ], + [ + 5204.639573754242, + 5190.014580489066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.535174150798, + "min_y": 5189.982471250997, + "max_x": 5204.623474555638, + "max_y": 5189.982471250997, + "center": [ + 5204.579324353218, + 5189.982471250997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.535174150798, + 5189.982471250997 + ], + [ + 5204.623474555638, + 5189.982471250997 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.539187805613, + "min_y": 5190.004911000476, + "max_x": 5204.619460900854, + "max_y": 5190.004911000476, + "center": [ + 5204.5793243532335, + 5190.004911000476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.539187805613, + 5190.004911000476 + ], + [ + 5204.619460900854, + 5190.004911000476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55353F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.547215115079, + "min_y": 5189.994512215232, + "max_x": 5204.611433591282, + "max_y": 5189.994512215232, + "center": [ + 5204.579324353181, + 5189.994512215232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.547215115079, + 5189.994512215232 + ], + [ + 5204.611433591282, + 5189.994512215232 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553540", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.495947793486, + "min_y": 5189.966416631913, + "max_x": 5204.916471353064, + "max_y": 5189.966416631913, + "center": [ + 5204.7062095732745, + 5189.966416631913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.495947793486, + 5189.966416631913 + ], + [ + 5204.916471353064, + 5189.966416631913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553541", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.84571098424, + "min_y": 5189.768609516541, + "max_x": 5204.885104823403, + "max_y": 5189.829111759219, + "center": [ + 5204.8654079038215, + 5189.79886063788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.885104823403, + 5189.768609516541 + ], + [ + 5204.84571098424, + 5189.829111759219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553543", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.84571098424, + "min_y": 5189.769429644934, + "max_x": 5204.859825591778, + "max_y": 5189.789378604245, + "center": [ + 5204.8527682880085, + 5189.779404124589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.859825591778, + 5189.769429644934 + ], + [ + 5204.84571098424, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553544", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.885104823403, + "min_y": 5189.752657829895, + "max_x": 5204.885104823403, + "max_y": 5189.768609516541, + "center": [ + 5204.885104823403, + 5189.760633673218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.885104823403, + 5189.768609516541 + ], + [ + 5204.885104823403, + 5189.752657829895 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553545", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.96389250173, + "min_y": 5189.73370110184, + "max_x": 5204.96389250173, + "max_y": 5189.768609516541, + "center": [ + 5204.96389250173, + 5189.75115530919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.96389250173, + 5189.768609516541 + ], + [ + 5204.96389250173, + 5189.73370110184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553546", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.978191224627, + "min_y": 5189.5765537494535, + "max_x": 5205.04832272997, + "max_y": 5189.6466852547965, + "center": [ + 5205.013256977299, + 5189.611619502125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5205.013256977299, + 5189.611619502125 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553547", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.906250260088, + "min_y": 5189.73370110184, + "max_x": 5204.96389250173, + "max_y": 5189.73370110184, + "center": [ + 5204.935071380909, + 5189.73370110184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.96389250173, + 5189.73370110184 + ], + [ + 5204.906250260088, + 5189.73370110184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553548", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.885104823403, + "min_y": 5189.768609516541, + "max_x": 5204.96389250173, + "max_y": 5189.768609516541, + "center": [ + 5204.924498662566, + 5189.768609516541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.96389250173, + 5189.768609516541 + ], + [ + 5204.885104823403, + 5189.768609516541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553549", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.667624757922, + "min_y": 5189.834704583157, + "max_x": 5204.850043547448, + "max_y": 5189.834704583157, + "center": [ + 5204.758834152684, + 5189.834704583157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.850043547448, + 5189.834704583157 + ], + [ + 5204.667624757922, + 5189.834704583157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55354A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.916471353064, + "min_y": 5189.879964521423, + "max_x": 5204.916471353064, + "max_y": 5189.966416631913, + "center": [ + 5204.916471353064, + 5189.923190576668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.916471353064, + 5189.966416631913 + ], + [ + 5204.916471353064, + 5189.879964521423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55354B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.84571098424, + "min_y": 5189.829111759219, + "max_x": 5204.885104823403, + "max_y": 5189.879964521423, + "center": [ + 5204.8654079038215, + 5189.854538140321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.84571098424, + 5189.829111759219 + ], + [ + 5204.885104823403, + 5189.879964521423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55354C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.84571098424, + "min_y": 5189.789378604245, + "max_x": 5204.84571098424, + "max_y": 5189.829111759219, + "center": [ + 5204.84571098424, + 5189.809245181732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.84571098424, + 5189.829111759219 + ], + [ + 5204.84571098424, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55354E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.885104823403, + "min_y": 5189.879964521423, + "max_x": 5204.96389250173, + "max_y": 5189.879964521423, + "center": [ + 5204.924498662566, + 5189.879964521423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.885104823403, + 5189.879964521423 + ], + [ + 5204.96389250173, + 5189.879964521423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55354F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.6355155198435, + "min_y": 5189.83470458323, + "max_x": 5204.699733996, + "max_y": 5189.898923059386, + "center": [ + 5204.667624757922, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.667624757922, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553550", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.635515519886, + "min_y": 5189.866813821308, + "max_x": 5204.635515519886, + "max_y": 5189.870045649675, + "center": [ + 5204.635515519886, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.635515519886, + 5189.866813821308 + ], + [ + 5204.635515519886, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553551", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.623474555638, + "min_y": 5189.966416631913, + "max_x": 5204.623474555638, + "max_y": 5189.982471250997, + "center": [ + 5204.623474555638, + 5189.974443941455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.623474555638, + 5189.982471250997 + ], + [ + 5204.623474555638, + 5189.966416631913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553552", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.619460900854, + "min_y": 5190.004911000476, + "max_x": 5204.619460900854, + "max_y": 5190.014580489066, + "center": [ + 5204.619460900854, + 5190.009745744771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.619460900854, + 5190.014580489066 + ], + [ + 5204.619460900854, + 5190.004911000476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553553", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.611433591282, + "min_y": 5189.994512215232, + "max_x": 5204.619460900854, + "max_y": 5190.004911000476, + "center": [ + 5204.615447246068, + 5189.999711607854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.611433591282, + 5189.994512215232 + ], + [ + 5204.619460900854, + 5190.004911000476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553554", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.611433591282, + "min_y": 5189.982471250997, + "max_x": 5204.611433591282, + "max_y": 5189.994512215232, + "center": [ + 5204.611433591282, + 5189.988491733115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.611433591282, + 5189.994512215232 + ], + [ + 5204.611433591282, + 5189.982471250997 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553555", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.258662153559, + "min_y": 5189.50302366605, + "max_x": 5204.258662153559, + "max_y": 5189.536063241351, + "center": [ + 5204.258662153559, + 5189.5195434537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.258662153559, + 5189.536063241351 + ], + [ + 5204.258662153559, + 5189.50302366605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553557", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.219268314293, + "min_y": 5189.536063241351, + "max_x": 5204.258662153559, + "max_y": 5189.586916003555, + "center": [ + 5204.238965233926, + 5189.561489622453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.219268314293, + 5189.586916003555 + ], + [ + 5204.258662153559, + 5189.536063241351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553558", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.346532377195, + "min_y": 5189.83470458323, + "max_x": 5204.410750853352, + "max_y": 5189.898923059386, + "center": [ + 5204.378641615273, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.378641615273, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553559", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.314423139134, + "min_y": 5189.950362012896, + "max_x": 5204.470955674693, + "max_y": 5189.950362012896, + "center": [ + 5204.392689406914, + 5189.950362012896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.314423139134, + 5189.950362012896 + ], + [ + 5204.470955674693, + 5189.950362012896 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55355A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.33009247592, + "min_y": 5189.791133686444, + "max_x": 5204.683826498312, + "max_y": 5190.144867708836, + "center": [ + 5204.506959487116, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.506959487116, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55355B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.410750853344, + "min_y": 5189.866813821308, + "max_x": 5204.410750853344, + "max_y": 5189.870045649675, + "center": [ + 5204.410750853344, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.410750853344, + 5189.866813821308 + ], + [ + 5204.410750853344, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55355C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.452032819934, + "min_y": 5189.837549677867, + "max_x": 5204.584820945764, + "max_y": 5189.970337803697, + "center": [ + 5204.518426882849, + 5189.903943740782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.518426882849, + 5189.903943740782 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55355D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.470955674658, + "min_y": 5189.502588653768, + "max_x": 5205.117655797834, + "max_y": 5190.149288776944, + "center": [ + 5204.794305736246, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.794305736246, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55355E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.483739347384, + "min_y": 5189.902669181424, + "max_x": 5204.562527025777, + "max_y": 5189.902669181424, + "center": [ + 5204.52313318658, + 5189.902669181424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483739347384, + 5189.902669181424 + ], + [ + 5204.562527025777, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553561", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.587622609606, + "min_y": 5189.791874745303, + "max_x": 5204.601920864941, + "max_y": 5189.812083264246, + "center": [ + 5204.594771737274, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.812083264246 + ], + [ + 5204.587622609606, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553562", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.601920864941, + "min_y": 5189.812083264246, + "max_x": 5204.601920864941, + "max_y": 5189.851816419221, + "center": [ + 5204.601920864941, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.851816419221 + ], + [ + 5204.601920864941, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553563", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562527025777, + "min_y": 5189.851816419221, + "max_x": 5204.601920864941, + "max_y": 5189.902669181424, + "center": [ + 5204.582223945359, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.562527025777, + 5189.902669181424 + ], + [ + 5204.601920864941, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553564", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.562892019758, + "min_y": 5189.791874745303, + "max_x": 5204.601920864941, + "max_y": 5189.851816419221, + "center": [ + 5204.58240644235, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.601920864941, + 5189.851816419221 + ], + [ + 5204.562892019758, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553565", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.851816419221, + "max_x": 5204.483739347384, + "max_y": 5189.902669181424, + "center": [ + 5204.464042427836, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.444345508288, + 5189.851816419221 + ], + [ + 5204.483739347384, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553566", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.791874745303, + "max_x": 5204.483374353398, + "max_y": 5189.851816419221, + "center": [ + 5204.463859930844, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.483374353398, + 5189.791874745303 + ], + [ + 5204.444345508288, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553567", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.791874745303, + "max_x": 5204.458643763555, + "max_y": 5189.812083264246, + "center": [ + 5204.451494635921, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.458643763555, + 5189.791874745303 + ], + [ + 5204.444345508288, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553568", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.444345508288, + "min_y": 5189.812083264246, + "max_x": 5204.444345508288, + "max_y": 5189.851816419221, + "center": [ + 5204.444345508288, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.444345508288, + 5189.851816419221 + ], + [ + 5204.444345508288, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.470955674693, + "min_y": 5189.886166980006, + "max_x": 5204.470955674693, + "max_y": 5189.950362012896, + "center": [ + 5204.470955674693, + 5189.918264496451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.470955674693, + 5189.950362012896 + ], + [ + 5204.470955674693, + 5189.886166980006 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.539187805613, + "min_y": 5189.994512215232, + "max_x": 5204.547215115079, + "max_y": 5190.004911000476, + "center": [ + 5204.543201460347, + 5189.999711607854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.547215115079, + 5189.994512215232 + ], + [ + 5204.539187805613, + 5190.004911000476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.547215115079, + "min_y": 5189.982471250997, + "max_x": 5204.547215115079, + "max_y": 5189.994512215232, + "center": [ + 5204.547215115079, + 5189.988491733115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.547215115079, + 5189.994512215232 + ], + [ + 5204.547215115079, + 5189.982471250997 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.535174150798, + "min_y": 5189.966416631913, + "max_x": 5204.535174150798, + "max_y": 5189.982471250997, + "center": [ + 5204.535174150798, + 5189.974443941455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.535174150798, + 5189.982471250997 + ], + [ + 5204.535174150798, + 5189.966416631913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.539187805613, + "min_y": 5190.004911000476, + "max_x": 5204.539187805613, + "max_y": 5190.014580489066, + "center": [ + 5204.539187805613, + 5190.009745744771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.539187805613, + 5190.014580489066 + ], + [ + 5204.539187805613, + 5190.004911000476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55356F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.410750853344, + "min_y": 5189.870045649675, + "max_x": 5204.458467049327, + "max_y": 5189.870045649675, + "center": [ + 5204.434608951336, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.458467049327, + 5189.870045649675 + ], + [ + 5204.410750853344, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553570", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.35857334142, + "min_y": 5189.950362012896, + "max_x": 5204.35857334142, + "max_y": 5189.983365551853, + "center": [ + 5204.35857334142, + 5189.966863782374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.35857334142, + 5189.950362012896 + ], + [ + 5204.35857334142, + 5189.983365551853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553571", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.294354865317, + "min_y": 5189.922266429578, + "max_x": 5204.294354865317, + "max_y": 5190.007447480387, + "center": [ + 5204.294354865317, + 5189.964856954983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.294354865317, + 5189.922266429578 + ], + [ + 5204.294354865317, + 5190.007447480387 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553572", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.198027151072, + "min_y": 5189.92628008434, + "max_x": 5204.23013638915, + "max_y": 5189.958389322418, + "center": [ + 5204.214081770111, + 5189.942334703379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.214081770111, + 5189.942334703379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553573", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217352716392, + "min_y": 5189.851816419221, + "max_x": 5204.256746555557, + "max_y": 5189.902669181424, + "center": [ + 5204.2370496359745, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.217352716392, + 5189.902669181424 + ], + [ + 5204.256746555557, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553574", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.227985478048, + "min_y": 5189.950362012896, + "max_x": 5204.238163698577, + "max_y": 5189.950362012896, + "center": [ + 5204.233074588313, + 5189.950362012896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.227985478048, + 5189.950362012896 + ], + [ + 5204.238163698577, + 5189.950362012896 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553575", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.254218317617, + "min_y": 5189.922266429578, + "max_x": 5204.302382174783, + "max_y": 5189.922266429578, + "center": [ + 5204.2783002462, + 5189.922266429578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.254218317617, + 5189.922266429578 + ], + [ + 5204.302382174783, + 5189.922266429578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553576", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.302382174783, + "min_y": 5189.922266429578, + "max_x": 5204.314423139134, + "max_y": 5189.950362012896, + "center": [ + 5204.308402656959, + 5189.936314221237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.302382174783, + 5189.922266429578 + ], + [ + 5204.314423139134, + 5189.950362012896 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553577", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.222109079538, + "min_y": 5189.918252774856, + "max_x": 5204.2542183176165, + "max_y": 5189.950362012934, + "center": [ + 5204.238163698577, + 5189.934307393895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.238163698577, + 5189.934307393895 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553578", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.322450448633, + "min_y": 5189.834704583157, + "max_x": 5204.378641615273, + "max_y": 5189.834704583157, + "center": [ + 5204.350546031954, + 5189.834704583157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.322450448633, + 5189.834704583157 + ], + [ + 5204.378641615273, + 5189.834704583157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553579", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.256746555557, + "min_y": 5189.812083264246, + "max_x": 5204.256746555557, + "max_y": 5189.851816419221, + "center": [ + 5204.256746555557, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.851816419221 + ], + [ + 5204.256746555557, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.290341210555, + "min_y": 5189.83470458323, + "max_x": 5204.354559686712, + "max_y": 5189.898923059386, + "center": [ + 5204.322450448633, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.322450448633, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.290341210501, + "min_y": 5189.866813821308, + "max_x": 5204.290341210501, + "max_y": 5189.870045649675, + "center": [ + 5204.290341210501, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.290341210501, + 5189.866813821308 + ], + [ + 5204.290341210501, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.017265565595, + "min_y": 5189.791133686444, + "max_x": 5204.370999587987, + "max_y": 5190.144867708836, + "center": [ + 5204.194132576791, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.194132576791, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.217717710438, + "min_y": 5189.791874745303, + "max_x": 5204.256746555557, + "max_y": 5189.851816419221, + "center": [ + 5204.237232132997, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.851816419221 + ], + [ + 5204.217717710438, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.242448300221, + "min_y": 5189.791874745303, + "max_x": 5204.256746555557, + "max_y": 5189.812083264246, + "center": [ + 5204.249597427889, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.256746555557, + 5189.812083264246 + ], + [ + 5204.242448300221, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55357F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.242625014444, + "min_y": 5189.870045649675, + "max_x": 5204.290341210501, + "max_y": 5189.870045649675, + "center": [ + 5204.266483112472, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.290341210501, + 5189.870045649675 + ], + [ + 5204.242625014444, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553580", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.230136389184, + "min_y": 5189.886166980006, + "max_x": 5204.230136389184, + "max_y": 5189.942334703379, + "center": [ + 5204.230136389184, + 5189.914250841693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.230136389184, + 5189.942334703379 + ], + [ + 5204.230136389184, + 5189.886166980006 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553581", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.254218317617, + "min_y": 5189.870045649675, + "max_x": 5204.254218317617, + "max_y": 5189.934307393895, + "center": [ + 5204.254218317617, + 5189.902176521786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.254218317617, + 5189.934307393895 + ], + [ + 5204.254218317617, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553582", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.302382174783, + "min_y": 5189.841748555306, + "max_x": 5204.302382174783, + "max_y": 5189.922266429578, + "center": [ + 5204.302382174783, + 5189.882007492442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.302382174783, + 5189.922266429578 + ], + [ + 5204.302382174783, + 5189.841748555306 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553583", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.314423139134, + "min_y": 5189.835724185136, + "max_x": 5204.314423139134, + "max_y": 5189.950362012896, + "center": [ + 5204.314423139134, + 5189.893043099017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.314423139134, + 5189.950362012896 + ], + [ + 5204.314423139134, + 5189.835724185136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553584", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.310409484396, + "min_y": 5189.959283623294, + "max_x": 5204.358573341514, + "max_y": 5190.007447480412, + "center": [ + 5204.334491412955, + 5189.983365551853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.334491412955, + 5189.983365551853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553585", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.500946595009, + "min_y": 5189.950139032084, + "max_x": 5204.65770211148, + "max_y": 5190.106894548555, + "center": [ + 5204.579324353244, + 5190.028516790319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.579324353244, + 5190.028516790319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553586", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.579324353244, + "min_y": 5190.106894548505, + "max_x": 5204.624489156344, + "max_y": 5190.106894548505, + "center": [ + 5204.601906754794, + 5190.106894548505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.624489156344, + 5190.106894548505 + ], + [ + 5204.579324353244, + 5190.106894548505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553587", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.579324353244, + "min_y": 5190.126962822339, + "max_x": 5204.625272268971, + "max_y": 5190.126962822339, + "center": [ + 5204.602298311107, + 5190.126962822339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.625272268971, + 5190.126962822339 + ], + [ + 5204.579324353244, + 5190.126962822339 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553588", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.631694116595, + "min_y": 5190.103406326585, + "max_x": 5204.644537811826, + "max_y": 5190.116250021816, + "center": [ + 5204.638115964211, + 5190.109828174201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.638115964211, + 5190.109828174201 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553589", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.618850421355, + "min_y": 5190.114119127104, + "max_x": 5204.631694116586, + "max_y": 5190.1269628223345, + "center": [ + 5204.625272268971, + 5190.120540974719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.625272268971, + 5190.120540974719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.631694116593, + "min_y": 5190.109828174201, + "max_x": 5204.631694116593, + "max_y": 5190.120540974719, + "center": [ + 5204.631694116593, + 5190.11518457446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.631694116593, + 5190.109828174201 + ], + [ + 5204.631694116593, + 5190.120540974719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.6026592836715, + "min_y": 5190.063190307848, + "max_x": 5204.646363524391, + "max_y": 5190.106894548568, + "center": [ + 5204.624511404031, + 5190.085042428208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.624511404031, + 5190.085042428208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.512285182077, + "min_y": 5190.063190307848, + "max_x": 5204.555989422796, + "max_y": 5190.106894548568, + "center": [ + 5204.534137302437, + 5190.085042428208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.534137302437, + 5190.085042428208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.533376437396, + "min_y": 5190.126962822339, + "max_x": 5204.579324353244, + "max_y": 5190.126962822339, + "center": [ + 5204.55635039532, + 5190.126962822339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.533376437396, + 5190.126962822339 + ], + [ + 5204.579324353244, + 5190.126962822339 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.534159550085, + "min_y": 5190.106894548505, + "max_x": 5204.579324353244, + "max_y": 5190.106894548505, + "center": [ + 5204.556741951665, + 5190.106894548505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.534159550085, + 5190.106894548505 + ], + [ + 5204.579324353244, + 5190.106894548505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55358F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.500946595009, + "min_y": 5189.950139032084, + "max_x": 5204.65770211148, + "max_y": 5190.106894548555, + "center": [ + 5204.579324353244, + 5190.028516790319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.579324353244, + 5190.028516790319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553590", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.526954589781, + "min_y": 5190.114119127104, + "max_x": 5204.539798285012, + "max_y": 5190.1269628223345, + "center": [ + 5204.533376437396, + 5190.120540974719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.533376437396, + 5190.120540974719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553591", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.526954589843, + "min_y": 5190.109828174201, + "max_x": 5204.526954589843, + "max_y": 5190.120540974719, + "center": [ + 5204.526954589843, + 5190.11518457446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.526954589843, + 5190.109828174201 + ], + [ + 5204.526954589843, + 5190.120540974719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553592", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.514110894641, + "min_y": 5190.103406326585, + "max_x": 5204.526954589872, + "max_y": 5190.116250021816, + "center": [ + 5204.520532742256, + 5190.109828174201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.520532742256, + 5190.109828174201 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553593", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.788228833272, + "min_y": 5190.537895025209, + "max_x": 5201.788228833272, + "max_y": 5190.629404286422, + "center": [ + 5201.788228833272, + 5190.583649655815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.788228833272, + 5190.537895025209 + ], + [ + 5201.788228833272, + 5190.629404286422 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553594", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.072598356405, + "min_y": 5190.537895025209, + "max_x": 5203.072598356405, + "max_y": 5190.629404286422, + "center": [ + 5203.072598356405, + 5190.583649655815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.072598356405, + 5190.537895025209 + ], + [ + 5203.072598356405, + 5190.629404286422 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553595", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.229262876461, + "min_y": 5188.187564842415, + "max_x": 5201.707433153501, + "max_y": 5188.187564842415, + "center": [ + 5200.9683480149815, + 5188.187564842415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.707433153501, + 5188.187564842415 + ], + [ + 5200.229262876461, + 5188.187564842415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553596", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.575246419536, + "min_y": 5188.808627015097, + "max_x": 5201.41756033832, + "max_y": 5188.823329659207, + "center": [ + 5200.996403378927, + 5188.815978337152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.41756033832, + 5188.823329659207 + ], + [ + 5200.575246419536, + 5188.808627015097 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553597", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.594185464407, + "min_y": 5188.875506820071, + "max_x": 5201.484376245779, + "max_y": 5188.891045157987, + "center": [ + 5201.039280855093, + 5188.883275989028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484376245779, + 5188.891045157987 + ], + [ + 5200.594185464407, + 5188.875506820071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553598", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.678650341894, + "min_y": 5189.157827252326, + "max_x": 5201.373169987823, + "max_y": 5189.169950137862, + "center": [ + 5201.025910164859, + 5189.163888695093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.678650341894, + 5189.157827252326 + ], + [ + 5201.373169987823, + 5189.169950137862 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553599", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.585737867221, + "min_y": 5189.51207091315, + "max_x": 5201.468741914367, + "max_y": 5189.51207091315, + "center": [ + 5201.027239890794, + 5189.51207091315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468741914367, + 5189.51207091315 + ], + [ + 5200.585737867221, + 5189.51207091315 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5189.026220676367, + "max_x": 5201.469442393705, + "max_y": 5189.041513015191, + "center": [ + 5201.031393641437, + 5189.033866845779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.469442393705, + 5189.041513015191 + ], + [ + 5200.593344889167, + 5189.026220676367 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.586857310791, + "min_y": 5188.55829634999, + "max_x": 5201.418400913499, + "max_y": 5188.572810997565, + "center": [ + 5201.002629112145, + 5188.565553673778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.418400913499, + 5188.572810997565 + ], + [ + 5200.586857310791, + 5188.55829634999 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5188.541401829688, + "max_x": 5201.48521682102, + "max_y": 5188.55696951218, + "center": [ + 5201.039280855093, + 5188.549185670934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.48521682102, + 5188.55696951218 + ], + [ + 5200.593344889167, + 5188.541401829688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593032112079, + "min_y": 5188.342740845149, + "max_x": 5201.485529598017, + "max_y": 5188.369921462541, + "center": [ + 5201.039280855048, + 5188.3563311538455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593032112079, + 5188.369921462541 + ], + [ + 5201.485529598017, + 5188.342740845149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.553055174345, + "min_y": 5188.316172918124, + "max_x": 5201.418713690587, + "max_y": 5188.342536166472, + "center": [ + 5200.985884432466, + 5188.3293545422985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.553055174345, + 5188.342536166472 + ], + [ + 5201.418713690587, + 5188.316172918124 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55359F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5200.9780424071005, + "min_y": 5189.33443647713, + "max_x": 5201.076437374394, + "max_y": 5189.432831444424, + "center": [ + 5201.027239890747, + 5189.383633960777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.027239890747, + 5189.383633960777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5200.970431529944, + "min_y": 5189.334436477159, + "max_x": 5201.084048251683, + "max_y": 5189.432831444445, + "center": [ + 5201.027239890814, + 5189.383633960802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.055644071162, + 5189.432831444445 + ], + [ + 5201.084048251683, + 5189.383633960777 + ], + [ + 5201.055644071162, + 5189.334436477159 + ], + [ + 5200.998835710326, + 5189.334436477159 + ], + [ + 5200.970431529944, + 5189.383633960777 + ], + [ + 5200.998835710326, + 5189.432831444445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.96349399802, + "min_y": 5189.383633960777, + "max_x": 5201.122463659858, + "max_y": 5189.383633960777, + "center": [ + 5201.042978828938, + 5189.383633960777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.96349399802, + 5189.383633960777 + ], + [ + 5201.122463659858, + 5189.383633960777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.796053376645, + "min_y": 5189.979340600277, + "max_x": 5201.258426404979, + "max_y": 5189.979340600277, + "center": [ + 5201.027239890813, + 5189.979340600277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.796053376645, + 5189.979340600277 + ], + [ + 5201.258426404979, + 5189.979340600277 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5187.244031527549, + "max_x": 5201.401225527575, + "max_y": 5187.258133136584, + "center": [ + 5200.997285208371, + 5187.251082332066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.401225527575, + 5187.244031527549 + ], + [ + 5200.593344889167, + 5187.258133136584 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5187.33361666962, + "max_x": 5201.469442393705, + "max_y": 5187.34890900841, + "center": [ + 5201.031393641437, + 5187.341262839015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.469442393705, + 5187.33361666962 + ], + [ + 5200.593344889167, + 5187.34890900841 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5187.063037613381, + "max_x": 5201.497421678937, + "max_y": 5187.078818332451, + "center": [ + 5201.045383284052, + 5187.070927972916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.497421678937, + 5187.063037613381 + ], + [ + 5200.593344889167, + 5187.078818332451 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.594185464407, + "min_y": 5187.16414196032, + "max_x": 5201.468041435067, + "max_y": 5187.179395173052, + "center": [ + 5201.031113449737, + 5187.171768566686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468041435067, + 5187.16414196032 + ], + [ + 5200.594185464407, + 5187.179395173052 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.586857310791, + "min_y": 5187.802318687262, + "max_x": 5201.418400913499, + "max_y": 5187.816833334789, + "center": [ + 5201.002629112145, + 5187.809576011026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.418400913499, + 5187.802318687262 + ], + [ + 5200.586857310791, + 5187.816833334789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.553055174345, + "min_y": 5188.032593518307, + "max_x": 5201.418713690587, + "max_y": 5188.058956766653, + "center": [ + 5200.985884432466, + 5188.04577514248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.553055174345, + 5188.032593518307 + ], + [ + 5201.418713690587, + 5188.058956766653 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.575246419536, + "min_y": 5187.551800025539, + "max_x": 5201.41756033832, + "max_y": 5187.566502669682, + "center": [ + 5200.996403378927, + 5187.55915134761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.41756033832, + 5187.551800025539 + ], + [ + 5200.575246419536, + 5187.566502669682 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593032112079, + "min_y": 5188.005208222287, + "max_x": 5201.485529598017, + "max_y": 5188.032388839629, + "center": [ + 5201.039280855048, + 5188.0187985309585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593032112079, + 5188.005208222287 + ], + [ + 5201.485529598017, + 5188.032388839629 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.593344889167, + "min_y": 5187.818160172647, + "max_x": 5201.48521682102, + "max_y": 5187.83372785509, + "center": [ + 5201.039280855093, + 5187.825944013868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.48521682102, + 5187.818160172647 + ], + [ + 5200.593344889167, + 5187.83372785509 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.594185464407, + "min_y": 5187.484084526824, + "max_x": 5201.484376245779, + "max_y": 5187.499622864708, + "center": [ + 5201.039280855093, + 5187.491853695766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484376245779, + 5187.484084526824 + ], + [ + 5200.594185464407, + 5187.499622864708 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.248637182561, + "min_y": 5188.306591363819, + "max_x": 5202.248637182561, + "max_y": 5189.02083663524, + "center": [ + 5202.248637182561, + 5188.663713999529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.248637182561, + 5188.306591363819 + ], + [ + 5202.248637182561, + 5189.02083663524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.114496816861, + "min_y": 5188.303089037177, + "max_x": 5202.114496816861, + "max_y": 5189.02083663524, + "center": [ + 5202.114496816861, + 5188.661962836209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.114496816861, + 5188.303089037177 + ], + [ + 5202.114496816861, + 5189.02083663524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.355316102465, + "min_y": 5188.308342527148, + "max_x": 5202.355316102465, + "max_y": 5189.02083663524, + "center": [ + 5202.355316102465, + 5188.664589581194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.355316102465, + 5188.308342527148 + ], + [ + 5202.355316102465, + 5189.02083663524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.489456468144, + "min_y": 5188.310093690411, + "max_x": 5202.489456468144, + "max_y": 5189.02083663524, + "center": [ + 5202.489456468144, + 5188.665465162825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.489456468144, + 5188.310093690411 + ], + [ + 5202.489456468144, + 5189.02083663524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.904024856567, + "min_y": 5188.327439080174, + "max_x": 5202.904024856567, + "max_y": 5188.8880016002, + "center": [ + 5202.904024856567, + 5188.607720340187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.904024856567, + 5188.327439080174 + ], + [ + 5202.904024856567, + 5188.8880016002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.596135388045, + "min_y": 5188.320600625167, + "max_x": 5202.596135388045, + "max_y": 5189.02083663524, + "center": [ + 5202.596135388045, + 5188.670718630203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.596135388045, + 5188.320600625167 + ], + [ + 5202.596135388045, + 5189.02083663524 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.730275753756, + "min_y": 5188.332524889097, + "max_x": 5202.730275753756, + "max_y": 5189.039016859084, + "center": [ + 5202.730275753756, + 5188.68577087409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.730275753756, + 5189.039016859084 + ], + [ + 5202.730275753756, + 5188.332524889097 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.508878462005, + "min_y": 5187.061158236601, + "max_x": 5201.508878462005, + "max_y": 5189.314478750718, + "center": [ + 5201.508878462005, + 5188.1878184936595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.508878462005, + 5189.314478750718 + ], + [ + 5201.508878462005, + 5187.061158236601 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.629288104712, + "min_y": 5187.043673235855, + "max_x": 5201.629288104712, + "max_y": 5189.331456448891, + "center": [ + 5201.629288104712, + 5188.187564842373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.629288104712, + 5189.331456448891 + ], + [ + 5201.629288104712, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.629288104712, + "min_y": 5187.043673235855, + "max_x": 5201.629288104712, + "max_y": 5189.331456448891, + "center": [ + 5201.629288104712, + 5188.187564842373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.629288104712, + 5189.331456448891 + ], + [ + 5201.629288104712, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.635709952298, + "min_y": 5187.043673235855, + "max_x": 5201.635709952298, + "max_y": 5189.331456448891, + "center": [ + 5201.635709952298, + 5188.187564842373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.635709952298, + 5189.331456448891 + ], + [ + 5201.635709952298, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.940747714115, + "min_y": 5187.411855314326, + "max_x": 5201.940747714115, + "max_y": 5189.164807047213, + "center": [ + 5201.940747714115, + 5188.288331180769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.940747714115, + 5189.164807047213 + ], + [ + 5201.940747714115, + 5187.411855314326 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.181566999729, + "min_y": 5187.510350277729, + "max_x": 5202.181566999729, + "max_y": 5189.120166850046, + "center": [ + 5202.181566999729, + 5188.315258563887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.181566999729, + 5189.120166850046 + ], + [ + 5202.181566999729, + 5187.510350277729 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.422386285203, + "min_y": 5187.083231489349, + "max_x": 5202.422386285203, + "max_y": 5189.109121118286, + "center": [ + 5202.422386285203, + 5188.096176303818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.422386285203, + 5189.109121118286 + ], + [ + 5202.422386285203, + 5187.083231489349 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.663205570887, + "min_y": 5187.080490457001, + "max_x": 5202.663205570887, + "max_y": 5189.112803046732, + "center": [ + 5202.663205570887, + 5188.0966467518665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5189.112803046732 + ], + [ + 5202.663205570887, + 5187.080490457001 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.615168555703, + "min_y": 5187.86790364972, + "max_x": 5203.56380538648, + "max_y": 5188.816540480497, + "center": [ + 5203.089486971092, + 5188.342222065108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.089486971092, + 5188.342222065108 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.585985963995, + "min_y": 5188.159407423086, + "max_x": 5202.634149821113, + "max_y": 5188.207571280204, + "center": [ + 5202.610067892554, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.610067892554, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.623069023289, + "min_y": 5188.107291747181, + "max_x": 5202.703342118485, + "max_y": 5188.1875648423775, + "center": [ + 5202.663205570887, + 5188.147428294779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5188.147428294779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535BF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.623069023289, + "min_y": 5188.187564842352, + "max_x": 5202.703342118485, + "max_y": 5188.267837937548, + "center": [ + 5202.663205570887, + 5188.22770138995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5188.22770138995 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.585985963995, + "min_y": 5188.167558404625, + "max_x": 5202.634149821113, + "max_y": 5188.215722261743, + "center": [ + 5202.610067892554, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.610067892554, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.618278271024, + "min_y": 5187.085604231191, + "max_x": 5202.63994421415, + "max_y": 5187.166462631837, + "center": [ + 5202.629111242587, + 5187.126033431514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.63994421415, + 5187.085604231191 + ], + [ + 5202.618278271024, + 5187.166462631837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.318031261502, + "min_y": 5187.067755164424, + "max_x": 5202.986009401538, + "max_y": 5187.067755164424, + "center": [ + 5202.652020331519, + 5187.067755164424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.318031261502, + 5187.067755164424 + ], + [ + 5202.986009401538, + 5187.067755164424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.730275753756, + "min_y": 5187.197739459688, + "max_x": 5202.730275753756, + "max_y": 5188.042604795682, + "center": [ + 5202.730275753756, + 5187.620172127685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.730275753756, + 5188.042604795682 + ], + [ + 5202.730275753756, + 5187.197739459688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.235853750229, + "min_y": 5187.023604962019, + "max_x": 5203.254920427398, + "max_y": 5188.115934163799, + "center": [ + 5203.245387088813, + 5187.569769562909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.254920427398, + 5187.023604962019 + ], + [ + 5203.235853750229, + 5188.115934163799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.26186626031, + "min_y": 5186.856717197122, + "max_x": 5203.498222361805, + "max_y": 5187.093073298617, + "center": [ + 5203.380044311058, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.380044311058, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.320955285546, + "min_y": 5186.85671719713, + "max_x": 5203.439133336371, + "max_y": 5186.85671719713, + "center": [ + 5203.3800443109585, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.320955285546, + 5186.85671719713 + ], + [ + 5203.439133336371, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.997207948785, + "min_y": 5186.85671719711, + "max_x": 5204.061073223324, + "max_y": 5186.920582471648, + "center": [ + 5204.029140586054, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.029140586054, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.91096253523, + "min_y": 5186.85671719713, + "max_x": 5204.029140586054, + "max_y": 5186.85671719713, + "center": [ + 5203.970051560642, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.91096253523, + 5186.85671719713 + ], + [ + 5204.029140586054, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.048791439769, + "min_y": 5186.863540410246, + "max_x": 5204.048791439769, + "max_y": 5186.912908363766, + "center": [ + 5204.048791439769, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.048791439769, + 5186.912908363766 + ], + [ + 5204.048791439769, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.891311681646, + "min_y": 5186.863540410246, + "max_x": 5203.891311681646, + "max_y": 5186.912908363766, + "center": [ + 5203.891311681646, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.891311681646, + 5186.912908363766 + ], + [ + 5203.891311681646, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.851873509992, + "min_y": 5186.856717197122, + "max_x": 5204.088229611488, + "max_y": 5187.093073298617, + "center": [ + 5203.97005156074, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.97005156074, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.009489732334, + "min_y": 5186.863479668128, + "max_x": 5204.009489732334, + "max_y": 5186.912908363766, + "center": [ + 5204.009489732334, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.009489732334, + 5186.912908363766 + ], + [ + 5204.009489732334, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.930613388942, + "min_y": 5186.863479668128, + "max_x": 5203.930613388942, + "max_y": 5186.912908363766, + "center": [ + 5203.930613388942, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.930613388942, + 5186.912908363766 + ], + [ + 5203.930613388942, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.879029897961, + "min_y": 5186.85671719711, + "max_x": 5203.942895172499, + "max_y": 5186.920582471648, + "center": [ + 5203.91096253523, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.91096253523, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.541706297379, + "min_y": 5186.85671719713, + "max_x": 5203.659884348197, + "max_y": 5186.85671719713, + "center": [ + 5203.600795322788, + 5186.85671719713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.541706297379, + 5186.85671719713 + ], + [ + 5203.659884348197, + 5186.85671719713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.482617272036, + "min_y": 5186.856717197122, + "max_x": 5203.718973373531, + "max_y": 5187.093073298617, + "center": [ + 5203.600795322784, + 5186.974895247869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.600795322784, + 5186.974895247869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.627951710928, + "min_y": 5186.85671719711, + "max_x": 5203.691816985466, + "max_y": 5186.920582471648, + "center": [ + 5203.659884348197, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.659884348197, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.679535201951, + "min_y": 5186.863540410246, + "max_x": 5203.679535201951, + "max_y": 5186.912908363766, + "center": [ + 5203.679535201951, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.679535201951, + 5186.912908363766 + ], + [ + 5203.679535201951, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.640233494387, + "min_y": 5186.863479668128, + "max_x": 5203.640233494387, + "max_y": 5186.912908363766, + "center": [ + 5203.640233494387, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.640233494387, + 5186.912908363766 + ], + [ + 5203.640233494387, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.50977366011, + "min_y": 5186.85671719711, + "max_x": 5203.573638934648, + "max_y": 5186.920582471648, + "center": [ + 5203.541706297379, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.541706297379, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.561357151126, + "min_y": 5186.863479668128, + "max_x": 5203.561357151126, + "max_y": 5186.912908363766, + "center": [ + 5203.561357151126, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.561357151126, + 5186.912908363766 + ], + [ + 5203.561357151126, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.407200699102, + "min_y": 5186.85671719711, + "max_x": 5203.47106597364, + "max_y": 5186.920582471648, + "center": [ + 5203.439133336371, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.439133336371, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.419482482652, + "min_y": 5186.863479668128, + "max_x": 5203.419482482652, + "max_y": 5186.912908363766, + "center": [ + 5203.419482482652, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.419482482652, + 5186.912908363766 + ], + [ + 5203.419482482652, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.458784190085, + "min_y": 5186.863540410246, + "max_x": 5203.458784190085, + "max_y": 5186.912908363766, + "center": [ + 5203.458784190085, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.458784190085, + 5186.912908363766 + ], + [ + 5203.458784190085, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.522055443659, + "min_y": 5186.863540410246, + "max_x": 5203.522055443659, + "max_y": 5186.912908363766, + "center": [ + 5203.522055443659, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.522055443659, + 5186.912908363766 + ], + [ + 5203.522055443659, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.977982092118, + "min_y": 5187.043673235828, + "max_x": 5203.13852828251, + "max_y": 5187.20421942622, + "center": [ + 5203.058255187314, + 5187.123946331024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.058255187314, + 5187.123946331024 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.905113098956, + "min_y": 5187.20232439843, + "max_x": 5203.175347918262, + "max_y": 5187.20232439843, + "center": [ + 5203.040230508608, + 5187.20232439843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.175347918262, + 5187.20232439843 + ], + [ + 5202.905113098956, + 5187.20232439843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.255621013399, + "min_y": 5186.912908363766, + "max_x": 5203.255621013399, + "max_y": 5187.023604962019, + "center": [ + 5203.255621013399, + 5186.968256662893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.255621013399, + 5186.912908363766 + ], + [ + 5203.255621013399, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.289022648277, + "min_y": 5186.85671719711, + "max_x": 5203.352887922815, + "max_y": 5186.920582471648, + "center": [ + 5203.320955285546, + 5186.888649834379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.320955285546, + 5186.888649834379 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.340606139262, + "min_y": 5186.863479668128, + "max_x": 5203.340606139262, + "max_y": 5186.912908363766, + "center": [ + 5203.340606139262, + 5186.888194015947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.340606139262, + 5186.912908363766 + ], + [ + 5203.340606139262, + 5186.863479668128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.301304431899, + "min_y": 5186.863540410246, + "max_x": 5203.301304431899, + "max_y": 5186.912908363766, + "center": [ + 5203.301304431899, + 5186.888224387007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.301304431899, + 5186.912908363766 + ], + [ + 5203.301304431899, + 5186.863540410246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.100682332394, + "min_y": 5187.049715791882, + "max_x": 5203.253308727101, + "max_y": 5187.202342186589, + "center": [ + 5203.176995529748, + 5187.126028989235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.176995529748, + 5187.126028989235 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.049355413096, + "min_y": 5187.043673235855, + "max_x": 5203.239566394368, + "max_y": 5187.043673235855, + "center": [ + 5203.144460903732, + 5187.043673235855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.049355413096, + 5187.043673235855 + ], + [ + 5203.239566394368, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.225256172665, + "min_y": 5187.014034633579, + "max_x": 5203.254903672488, + "max_y": 5187.043682133402, + "center": [ + 5203.240079922576, + 5187.028858383491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.240079922576, + 5187.028858383491 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.731394227544, + "min_y": 5187.184311698606, + "max_x": 5202.851116315144, + "max_y": 5187.184311698606, + "center": [ + 5202.791255271344, + 5187.184311698606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.731394227544, + 5187.184311698606 + ], + [ + 5202.851116315144, + 5187.184311698606 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.770843219948, + "min_y": 5187.023765508239, + "max_x": 5202.931389410341, + "max_y": 5187.184311698632, + "center": [ + 5202.851116315144, + 5187.104038603436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.851116315144, + 5187.104038603436 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.8890584799165, + "min_y": 5187.170215160291, + "max_x": 5202.921167717995, + "max_y": 5187.2023243983695, + "center": [ + 5202.905113098956, + 5187.18626977933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.905113098956, + 5187.18626977933 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.945872853939, + "min_y": 5186.987482069206, + "max_x": 5203.026145949136, + "max_y": 5187.067755164402, + "center": [ + 5202.986009401538, + 5187.027618616804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.986009401538, + 5187.027618616804 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.907877965103, + "min_y": 5187.067184681064, + "max_x": 5203.00149353735, + "max_y": 5187.160800253397, + "center": [ + 5202.954685751227, + 5187.11399246723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.907877965103, + 5187.160800253397 + ], + [ + 5203.00149353735, + 5187.067184681064 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.707312298985, + "min_y": 5187.136147841512, + "max_x": 5202.755476156103, + "max_y": 5187.18431169863, + "center": [ + 5202.731394227544, + 5187.160229770071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.731394227544, + 5187.160229770071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535E9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.639123642328, + "min_y": 5187.067755164398, + "max_x": 5202.687287499446, + "max_y": 5187.115919021516, + "center": [ + 5202.663205570887, + 5187.091837092957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5187.091837092957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.686466927553, + "min_y": 5187.085604231191, + "max_x": 5202.708132870776, + "max_y": 5187.166462631837, + "center": [ + 5202.697299899164, + 5187.126033431514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.686466927553, + 5187.085604231191 + ], + [ + 5202.708132870776, + 5187.166462631837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.608822632292, + "min_y": 5187.649735104586, + "max_x": 5203.608822632292, + "max_y": 5188.108788597216, + "center": [ + 5203.608822632292, + 5187.8792618509015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.608822632292, + 5187.649735104586 + ], + [ + 5203.608822632292, + 5188.108788597216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535EC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5204.044115510382, + "min_y": 5187.800953439711, + "max_x": 5204.136806896573, + "max_y": 5187.881226534964, + "center": [ + 5204.090461203477, + 5187.841089987338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.113634050045, + 5187.881226534964 + ], + [ + 5204.136806896573, + 5187.841089987347 + ], + [ + 5204.113634050045, + 5187.800953439711 + ], + [ + 5204.067288356919, + 5187.800953439711 + ], + [ + 5204.044115510382, + 5187.841089987347 + ], + [ + 5204.067288356919, + 5187.881226534964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535ED", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5204.050324655879, + "min_y": 5187.800953439749, + "max_x": 5204.130597751076, + "max_y": 5187.881226534945, + "center": [ + 5204.090461203477, + 5187.841089987347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.090461203477, + 5187.841089987347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535EE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.885977512815, + "min_y": 5187.502835340374, + "max_x": 5203.97866889907, + "max_y": 5187.583108435579, + "center": [ + 5203.932323205942, + 5187.542971887977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.955496052471, + 5187.583108435579 + ], + [ + 5203.97866889907, + 5187.542971887994 + ], + [ + 5203.955496052471, + 5187.502835340374 + ], + [ + 5203.909150359312, + 5187.502835340374 + ], + [ + 5203.885977512815, + 5187.542971887994 + ], + [ + 5203.909150359312, + 5187.583108435579 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535EF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5203.89218665828, + "min_y": 5187.502835340396, + "max_x": 5203.972459753476, + "max_y": 5187.583108435592, + "center": [ + 5203.932323205878, + 5187.542971887994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.932323205878, + 5187.542971887994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.998348110814, + "min_y": 5187.595675993459, + "max_x": 5204.070644598644, + "max_y": 5187.609379329465, + "center": [ + 5204.034496354729, + 5187.602527661462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.070644598644, + 5187.595675993459 + ], + [ + 5203.998348110814, + 5187.609379329465 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.070644598644, + "min_y": 5187.595675993459, + "max_x": 5204.127983289897, + "max_y": 5187.611870870853, + "center": [ + 5204.099313944271, + 5187.603773432156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.127983289897, + 5187.611870870853 + ], + [ + 5204.070644598644, + 5187.595675993459 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.127983289897, + "min_y": 5187.603150475995, + "max_x": 5204.172856897219, + "max_y": 5187.611870870853, + "center": [ + 5204.150420093558, + 5187.607510673424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.172856897219, + 5187.603150475995 + ], + [ + 5204.127983289897, + 5187.611870870853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.957239772526, + "min_y": 5187.601914173557, + "max_x": 5203.998348110814, + "max_y": 5187.609379329465, + "center": [ + 5203.97779394167, + 5187.605646751511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.998348110814, + 5187.609379329465 + ], + [ + 5203.957239772526, + 5187.601914173557 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.368003346719, + "min_y": 5187.988378954421, + "max_x": 5203.608822632308, + "max_y": 5188.22919824001, + "center": [ + 5203.488412989514, + 5188.108788597216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.488412989514, + 5188.108788597216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.995034464665, + "min_y": 5187.995524521004, + "max_x": 5203.235853750254, + "max_y": 5188.236343806593, + "center": [ + 5203.11544410746, + 5188.115934163799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.11544410746, + 5188.115934163799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.723410392312, + "min_y": 5188.082447224242, + "max_x": 5202.803683487508, + "max_y": 5188.162720319438, + "center": [ + 5202.76354693991, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.76354693991, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.772138274457, + "min_y": 5188.083377504214, + "max_x": 5202.950258543176, + "max_y": 5188.174240030125, + "center": [ + 5202.861198408817, + 5188.128808767169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.950258543176, + 5188.174240030125 + ], + [ + 5202.772138274457, + 5188.083377504214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.730275753724, + "min_y": 5188.0024682480835, + "max_x": 5202.81054884892, + "max_y": 5188.08274134328, + "center": [ + 5202.770412301322, + 5188.042604795682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.770412301322, + 5188.042604795682 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.716343249247, + "min_y": 5188.159407423061, + "max_x": 5202.930230560336, + "max_y": 5188.177934791552, + "center": [ + 5202.8232869047915, + 5188.168671107306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.930230560336, + 5188.177934791552 + ], + [ + 5202.716343249247, + 5188.159407423061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.716343249247, + "min_y": 5188.19623427213, + "max_x": 5202.929434562499, + "max_y": 5188.215722261718, + "center": [ + 5202.822888905874, + 5188.205978266924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.929434562499, + 5188.19623427213 + ], + [ + 5202.716343249247, + 5188.215722261718 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.772138274457, + "min_y": 5188.200889654604, + "max_x": 5202.950258543176, + "max_y": 5188.291752180615, + "center": [ + 5202.861198408817, + 5188.246320917609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.950258543176, + 5188.200889654604 + ], + [ + 5202.772138274457, + 5188.291752180615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.904024856474, + "min_y": 5188.247165984978, + "max_x": 5203.064571046867, + "max_y": 5188.407712175371, + "center": [ + 5202.984297951671, + 5188.327439080174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.984297951671, + 5188.327439080174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.918713330327, + "min_y": 5188.094897214867, + "max_x": 5202.998986425523, + "max_y": 5188.175170310064, + "center": [ + 5202.958849877925, + 5188.135033762465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.958849877925, + 5188.135033762465 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.918713330327, + "min_y": 5188.199959374683, + "max_x": 5202.998986425523, + "max_y": 5188.28023246988, + "center": [ + 5202.958849877925, + 5188.240095922281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.958849877925, + 5188.240095922281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5535FF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.730275753724, + "min_y": 5188.292388341499, + "max_x": 5202.81054884892, + "max_y": 5188.372661436695, + "center": [ + 5202.770412301322, + 5188.332524889097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.770412301322, + 5188.332524889097 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553600", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.723410392312, + "min_y": 5188.21240936539, + "max_x": 5202.803683487508, + "max_y": 5188.292682460587, + "center": [ + 5202.76354693991, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.76354693991, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553601", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.692261320688, + "min_y": 5188.159407423086, + "max_x": 5202.740425177806, + "max_y": 5188.207571280204, + "center": [ + 5202.716343249247, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.716343249247, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553602", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.623069023289, + "min_y": 5188.107291747181, + "max_x": 5202.703342118485, + "max_y": 5188.1875648423775, + "center": [ + 5202.663205570887, + 5188.147428294779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5188.147428294779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553603", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.623069023289, + "min_y": 5188.187564842352, + "max_x": 5202.703342118485, + "max_y": 5188.267837937548, + "center": [ + 5202.663205570887, + 5188.22770138995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5188.22770138995 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553604", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.699537869939, + "min_y": 5188.210645408692, + "max_x": 5202.727214640852, + "max_y": 5188.269601894245, + "center": [ + 5202.713376255396, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.699537869939, + 5188.210645408692 + ], + [ + 5202.727214640852, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553605", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.692261320688, + "min_y": 5188.167558404625, + "max_x": 5202.740425177806, + "max_y": 5188.215722261743, + "center": [ + 5202.716343249247, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.716343249247, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553606", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.699537869939, + "min_y": 5188.105527790533, + "max_x": 5202.727214640852, + "max_y": 5188.164484276086, + "center": [ + 5202.713376255396, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.699537869939, + 5188.164484276086 + ], + [ + 5202.727214640852, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553607", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.361789459343, + "min_y": 5187.2440254146095, + "max_x": 5201.442062554539, + "max_y": 5187.324298509806, + "center": [ + 5201.401926006941, + 5187.284161962208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.401926006941, + 5187.284161962208 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553608", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5198.910804033239, + "min_y": 5185.885755360632, + "max_x": 5201.916665785557, + "max_y": 5188.8916171129495, + "center": [ + 5200.413734909398, + 5187.388686236791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.413734909398, + 5187.388686236791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553609", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.916665785478, + "min_y": 5187.023604962019, + "max_x": 5201.916665785478, + "max_y": 5187.361724782489, + "center": [ + 5201.916665785478, + 5187.192664872254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.916665785478, + 5187.023604962019 + ], + [ + 5201.916665785478, + 5187.361724782489 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.237758166361, + "min_y": 5187.144175151054, + "max_x": 5202.248261270763, + "max_y": 5187.591109583017, + "center": [ + 5202.2430097185625, + 5187.367642367035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.237758166361, + 5187.144175151054 + ], + [ + 5202.248261270763, + 5187.591109583017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.355316102465, + "min_y": 5187.197739459688, + "max_x": 5202.355316102465, + "max_y": 5188.064931187618, + "center": [ + 5202.355316102465, + 5187.631335323653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.355316102465, + 5187.197739459688 + ], + [ + 5202.355316102465, + 5188.064931187618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.489456468144, + "min_y": 5187.197739459688, + "max_x": 5202.489456468144, + "max_y": 5188.064931187618, + "center": [ + 5202.489456468144, + 5187.631335323653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.489456468144, + 5187.197739459688 + ], + [ + 5202.489456468144, + 5188.064931187618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.596135388045, + "min_y": 5187.197739459688, + "max_x": 5202.596135388045, + "max_y": 5188.070184632451, + "center": [ + 5202.596135388045, + 5187.633962046069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.596135388045, + 5187.197739459688 + ], + [ + 5202.596135388045, + 5188.070184632451 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.635709952298, + "min_y": 5187.043673235855, + "max_x": 5201.868501928413, + "max_y": 5187.043673235855, + "center": [ + 5201.752105940355, + 5187.043673235855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.635709952298, + 5187.043673235855 + ], + [ + 5201.868501928413, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55360F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.237758166401, + "min_y": 5187.104038603456, + "max_x": 5202.318031261598, + "max_y": 5187.184311698652, + "center": [ + 5202.277894714, + 5187.144175151054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.277894714, + 5187.144175151054 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553610", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.876529237978, + "min_y": 5187.023604962019, + "max_x": 5202.277894714, + "max_y": 5187.023604962019, + "center": [ + 5202.077211975989, + 5187.023604962019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.876529237978, + 5187.023604962019 + ], + [ + 5202.277894714, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553611", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.876529237978, + "min_y": 5186.927277247799, + "max_x": 5202.277894714, + "max_y": 5186.927277247799, + "center": [ + 5202.077211975989, + 5186.927277247799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.876529237978, + 5186.927277247799 + ], + [ + 5202.277894714, + 5186.927277247799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553612", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.277894714, + "min_y": 5186.927277247799, + "max_x": 5202.277894714, + "max_y": 5187.023604962019, + "center": [ + 5202.277894714, + 5186.975441104909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.277894714, + 5187.023604962019 + ], + [ + 5202.277894714, + 5186.927277247799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553613", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.398304356644, + "min_y": 5187.067755164398, + "max_x": 5202.446468213762, + "max_y": 5187.115919021516, + "center": [ + 5202.422386285203, + 5187.091837092957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.422386285203, + 5187.091837092957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553614", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.466493013375, + "min_y": 5187.136147841512, + "max_x": 5202.514656870493, + "max_y": 5187.18431169863, + "center": [ + 5202.490574941934, + 5187.160229770071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.490574941934, + 5187.160229770071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553615", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.445647641972, + "min_y": 5187.085604231191, + "max_x": 5202.467313585197, + "max_y": 5187.166462631837, + "center": [ + 5202.456480613584, + 5187.126033431514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.445647641972, + 5187.085604231191 + ], + [ + 5202.467313585197, + 5187.166462631837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553616", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.570934985728, + "min_y": 5187.136147841512, + "max_x": 5202.619098842846, + "max_y": 5187.18431169863, + "center": [ + 5202.595016914287, + 5187.160229770071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.595016914287, + 5187.160229770071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553617", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.490574941934, + "min_y": 5187.184311698606, + "max_x": 5202.595016914287, + "max_y": 5187.184311698606, + "center": [ + 5202.5427959281105, + 5187.184311698606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.490574941934, + 5187.184311698606 + ], + [ + 5202.595016914287, + 5187.184311698606 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553618", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.243175375076, + "min_y": 5187.153995495153, + "max_x": 5202.259229994116, + "max_y": 5187.170050114193, + "center": [ + 5202.251202684596, + 5187.162022804673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.251202684596, + 5187.162022804673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553619", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.277894714, + "min_y": 5187.023604962019, + "max_x": 5202.277894714, + "max_y": 5187.027618616804, + "center": [ + 5202.277894714, + 5187.025611789411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.277894714, + 5187.027618616804 + ], + [ + 5202.277894714, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.281762927834, + "min_y": 5187.0665882878175, + "max_x": 5202.3299267849525, + "max_y": 5187.114752144936, + "center": [ + 5202.305844856393, + 5187.090670216377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.305844856393, + 5187.090670216377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.258898951297, + "min_y": 5187.083825758415, + "max_x": 5202.28275605655, + "max_y": 5187.164304290628, + "center": [ + 5202.270827503924, + 5187.124065024522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.258898951297, + 5187.164304290628 + ], + [ + 5202.28275605655, + 5187.083825758415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.237758166361, + "min_y": 5187.023604962019, + "max_x": 5202.237758166361, + "max_y": 5187.144175151054, + "center": [ + 5202.237758166361, + 5187.083890056536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.237758166361, + 5187.023604962019 + ], + [ + 5202.237758166361, + 5187.144175151054 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.330115700187, + "min_y": 5187.136147841512, + "max_x": 5202.378279557305, + "max_y": 5187.18431169863, + "center": [ + 5202.354197628746, + 5187.160229770071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.354197628746, + 5187.160229770071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.377458985413, + "min_y": 5187.085604231191, + "max_x": 5202.399124928537, + "max_y": 5187.166462631837, + "center": [ + 5202.388291956975, + 5187.126033431514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.399124928537, + 5187.085604231191 + ], + [ + 5202.377458985413, + 5187.166462631837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55361F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.277894714, + "min_y": 5187.184311698606, + "max_x": 5202.354197628746, + "max_y": 5187.184311698606, + "center": [ + 5202.316046171372, + 5187.184311698606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.277894714, + 5187.184311698606 + ], + [ + 5202.354197628746, + 5187.184311698606 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553620", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.277894713904, + "min_y": 5186.987482069206, + "max_x": 5202.3581678091, + "max_y": 5187.067755164402, + "center": [ + 5202.318031261502, + 5187.027618616804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.318031261502, + 5187.027618616804 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.876529237978, + "min_y": 5186.927277247799, + "max_x": 5201.876529237978, + "max_y": 5187.023604962019, + "center": [ + 5201.876529237978, + 5186.975441104909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.876529237978, + 5187.023604962019 + ], + [ + 5201.876529237978, + 5186.927277247799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553622", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.07721197602, + "min_y": 5186.75558673175, + "max_x": 5202.07721197602, + "max_y": 5187.125461282049, + "center": [ + 5202.07721197602, + 5186.940524006899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.07721197602, + 5187.125461282049 + ], + [ + 5202.07721197602, + 5186.75558673175 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553623", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.9861903132405, + "min_y": 5186.871086081209, + "max_x": 5202.050055587779, + "max_y": 5186.934951355747, + "center": [ + 5202.01812295051, + 5186.903018718478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.01812295051, + 5186.903018718478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553624", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.01812295051, + "min_y": 5186.871086081197, + "max_x": 5202.136301001336, + "max_y": 5186.871086081197, + "center": [ + 5202.077211975922, + 5186.871086081197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.01812295051, + 5186.871086081197 + ], + [ + 5202.136301001336, + 5186.871086081197 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553625", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.037773804224, + "min_y": 5186.87784855211, + "max_x": 5202.037773804224, + "max_y": 5186.927277247799, + "center": [ + 5202.037773804224, + 5186.902562899954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.037773804224, + 5186.927277247799 + ], + [ + 5202.037773804224, + 5186.87784855211 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553626", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.155951855047, + "min_y": 5186.877909294262, + "max_x": 5202.155951855047, + "max_y": 5186.927277247799, + "center": [ + 5202.155951855047, + 5186.90259327103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.155951855047, + 5186.927277247799 + ], + [ + 5202.155951855047, + 5186.877909294262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553627", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.116650147615, + "min_y": 5186.87784855211, + "max_x": 5202.116650147615, + "max_y": 5186.927277247799, + "center": [ + 5202.116650147615, + 5186.902562899954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.116650147615, + 5186.927277247799 + ], + [ + 5202.116650147615, + 5186.87784855211 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553628", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.104368364066, + "min_y": 5186.871086081209, + "max_x": 5202.168233638605, + "max_y": 5186.934951355747, + "center": [ + 5202.136301001336, + 5186.903018718478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.136301001336, + 5186.903018718478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553629", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.959033925273, + "min_y": 5186.871086081186, + "max_x": 5202.195390026768, + "max_y": 5187.107442182682, + "center": [ + 5202.07721197602, + 5186.989264131934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.07721197602, + 5186.989264131934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.998472096928, + "min_y": 5186.877909294262, + "max_x": 5201.998472096928, + "max_y": 5186.927277247799, + "center": [ + 5201.998472096928, + 5186.90259327103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.998472096928, + 5186.927277247799 + ], + [ + 5201.998472096928, + 5186.877909294262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.876529237978, + "min_y": 5187.023604962019, + "max_x": 5201.876529237978, + "max_y": 5187.035645926322, + "center": [ + 5201.876529237978, + 5187.029625444171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.876529237978, + 5187.035645926322 + ], + [ + 5201.876529237978, + 5187.023604962019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.860474618893, + "min_y": 5187.027618616802, + "max_x": 5201.876529237933, + "max_y": 5187.043673235842, + "center": [ + 5201.868501928413, + 5187.035645926322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.868501928413, + 5187.035645926322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5187.176627451165, + "max_x": 5201.497840016358, + "max_y": 5187.24331871464, + "center": [ + 5201.4699512854495, + 5187.209973082902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5187.24331871464 + ], + [ + 5201.497840016358, + 5187.176627451165 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.428605366768, + "min_y": 5187.16413584733, + "max_x": 5201.508878461965, + "max_y": 5187.244408942526, + "center": [ + 5201.468741914367, + 5187.204272394928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468741914367, + 5187.204272394928 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55362F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.456584652005, + "min_y": 5186.982770631173, + "max_x": 5201.536857747202, + "max_y": 5187.063043726369, + "center": [ + 5201.496721199604, + 5187.022907178771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.496721199604, + 5187.022907178771 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.54901500951, + "min_y": 5187.043673235855, + "max_x": 5201.629288104712, + "max_y": 5187.043673235855, + "center": [ + 5201.589151557111, + 5187.043673235855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.629288104712, + 5187.043673235855 + ], + [ + 5201.54901500951, + 5187.043673235855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553631", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.508878461912, + "min_y": 5187.043673235841, + "max_x": 5201.589151557108, + "max_y": 5187.123946331038, + "center": [ + 5201.54901500951, + 5187.083809783439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.54901500951, + 5187.083809783439 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553632", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5187.164041825111, + "max_x": 5201.442062554541, + "max_y": 5187.164595423356, + "center": [ + 5201.442062554541, + 5187.164318624234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5187.164041825111 + ], + [ + 5201.442062554541, + 5187.164595423356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553633", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.114496816861, + "min_y": 5187.633426449643, + "max_x": 5202.114496816861, + "max_y": 5188.066682350914, + "center": [ + 5202.114496816861, + 5187.850054400278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.114496816861, + 5187.633426449643 + ], + [ + 5202.114496816861, + 5188.066682350914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553634", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.248637182561, + "min_y": 5187.617446943795, + "max_x": 5202.248637182561, + "max_y": 5188.064931187618, + "center": [ + 5202.248637182561, + 5187.841189065706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.248637182561, + 5187.617446943795 + ], + [ + 5202.248637182561, + 5188.064931187618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553635", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.207107416567, + "min_y": 5187.441841109506, + "max_x": 5202.246228817008, + "max_y": 5187.597931470558, + "center": [ + 5202.226668116788, + 5187.519886290032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.246228817008, + 5187.597931470558 + ], + [ + 5202.207107416567, + 5187.441841109506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553636", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.088090992195, + "min_y": 5187.537173848598, + "max_x": 5202.248637182588, + "max_y": 5187.697720038991, + "center": [ + 5202.168364087392, + 5187.617446943795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.168364087392, + 5187.617446943795 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553637", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.122110750281, + "min_y": 5187.441841109506, + "max_x": 5202.156026582818, + "max_y": 5187.577161790446, + "center": [ + 5202.139068666549, + 5187.509501449976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.122110750281, + 5187.577161790446 + ], + [ + 5202.156026582818, + 5187.441841109506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553638", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.155236614661, + "min_y": 5187.421911996547, + "max_x": 5202.2078973847965, + "max_y": 5187.474572766683, + "center": [ + 5202.181566999729, + 5187.448242381615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.181566999729, + 5187.448242381615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553639", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.916665785556, + "min_y": 5187.3376428539295, + "max_x": 5201.964829642674, + "max_y": 5187.385806711048, + "center": [ + 5201.940747714115, + 5187.361724782489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.940747714115, + 5187.361724782489 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.860474619013, + "min_y": 5187.371718766728, + "max_x": 5201.9407477142095, + "max_y": 5187.451991861924, + "center": [ + 5201.900611166611, + 5187.411855314326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.900611166611, + 5187.411855314326 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.980884261683, + "min_y": 5187.60754060138, + "max_x": 5202.083178385564, + "max_y": 5187.60754060138, + "center": [ + 5202.032031323623, + 5187.60754060138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.083178385564, + 5187.60754060138 + ], + [ + 5201.980884261683, + 5187.60754060138 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.043041837966, + "min_y": 5187.527267506196, + "max_x": 5202.123314933162, + "max_y": 5187.607540601392, + "center": [ + 5202.083178385564, + 5187.567404053794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.083178385564, + 5187.567404053794 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.940747714085, + "min_y": 5187.527267506196, + "max_x": 5202.021020809281, + "max_y": 5187.607540601392, + "center": [ + 5201.980884261683, + 5187.567404053794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5187.567404053794 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.217899298787, + "min_y": 5188.210645408692, + "max_x": 5202.245576069657, + "max_y": 5188.269601894245, + "center": [ + 5202.231737684222, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.217899298787, + 5188.210645408692 + ], + [ + 5202.245576069657, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55363F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.210622749566, + "min_y": 5188.159407423086, + "max_x": 5202.258786606684, + "max_y": 5188.207571280204, + "center": [ + 5202.234704678125, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.234704678125, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553640", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.210622749566, + "min_y": 5188.167558404625, + "max_x": 5202.258786606684, + "max_y": 5188.215722261743, + "center": [ + 5202.234704678125, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.234704678125, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.217899298787, + "min_y": 5188.105527790533, + "max_x": 5202.245576069657, + "max_y": 5188.164484276086, + "center": [ + 5202.231737684222, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.217899298787, + 5188.164484276086 + ], + [ + 5202.245576069657, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553642", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.24177182112, + "min_y": 5188.082447224242, + "max_x": 5202.322044916316, + "max_y": 5188.162720319438, + "center": [ + 5202.281908368718, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.281908368718, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553643", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.482591106699, + "min_y": 5188.082447224242, + "max_x": 5202.5628642018955, + "max_y": 5188.162720319438, + "center": [ + 5202.522727654297, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.522727654297, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553644", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.281908368718, + "min_y": 5188.082447224242, + "max_x": 5202.362181463915, + "max_y": 5188.162720319438, + "center": [ + 5202.322044916316, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.322044916316, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553645", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.5227276543, + "min_y": 5188.082447224242, + "max_x": 5202.6030007494965, + "max_y": 5188.162720319438, + "center": [ + 5202.562864201898, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.562864201898, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553646", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.522727654297, + "min_y": 5188.082447224256, + "max_x": 5202.562864201898, + "max_y": 5188.082447224256, + "center": [ + 5202.542795928098, + 5188.082447224256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.562864201898, + 5188.082447224256 + ], + [ + 5202.522727654297, + 5188.082447224256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553647", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.281908368718, + "min_y": 5188.082447224256, + "max_x": 5202.322044916316, + "max_y": 5188.082447224256, + "center": [ + 5202.301976642517, + 5188.082447224256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.322044916316, + 5188.082447224256 + ], + [ + 5202.281908368718, + 5188.082447224256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553648", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.382249737605, + "min_y": 5188.187564842352, + "max_x": 5202.462522832801, + "max_y": 5188.267837937548, + "center": [ + 5202.422386285203, + 5188.22770138995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.422386285203, + 5188.22770138995 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553649", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.382249737605, + "min_y": 5188.107291747181, + "max_x": 5202.462522832801, + "max_y": 5188.1875648423775, + "center": [ + 5202.422386285203, + 5188.147428294779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.422386285203, + 5188.147428294779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.522727654297, + "min_y": 5188.292682460573, + "max_x": 5202.562864201898, + "max_y": 5188.292682460573, + "center": [ + 5202.542795928098, + 5188.292682460573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.562864201898, + 5188.292682460573 + ], + [ + 5202.522727654297, + 5188.292682460573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.451442035011, + "min_y": 5188.159407423086, + "max_x": 5202.499605892129, + "max_y": 5188.207571280204, + "center": [ + 5202.47552396357, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.47552396357, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.451442035011, + "min_y": 5188.167558404625, + "max_x": 5202.499605892129, + "max_y": 5188.215722261743, + "center": [ + 5202.47552396357, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.47552396357, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.458718584367, + "min_y": 5188.210645408692, + "max_x": 5202.486395355237, + "max_y": 5188.269601894245, + "center": [ + 5202.472556969802, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.458718584367, + 5188.210645408692 + ], + [ + 5202.486395355237, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.482591106699, + "min_y": 5188.21240936539, + "max_x": 5202.5628642018955, + "max_y": 5188.292682460587, + "center": [ + 5202.522727654297, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.522727654297, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55364F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.599196500853, + "min_y": 5188.210645408692, + "max_x": 5202.626873271829, + "max_y": 5188.269601894245, + "center": [ + 5202.613034886341, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.626873271829, + 5188.210645408692 + ], + [ + 5202.599196500853, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553650", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.47552396357, + "min_y": 5188.159407423061, + "max_x": 5202.610067892554, + "max_y": 5188.159407423061, + "center": [ + 5202.542795928062, + 5188.159407423061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.610067892554, + 5188.159407423061 + ], + [ + 5202.47552396357, + 5188.159407423061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553651", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.47552396357, + "min_y": 5188.215722261718, + "max_x": 5202.610067892554, + "max_y": 5188.215722261718, + "center": [ + 5202.542795928062, + 5188.215722261718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.610067892554, + 5188.215722261718 + ], + [ + 5202.47552396357, + 5188.215722261718 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553652", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.5227276543, + "min_y": 5188.21240936539, + "max_x": 5202.6030007494965, + "max_y": 5188.292682460587, + "center": [ + 5202.562864201898, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.562864201898, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553653", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.599196500853, + "min_y": 5188.105527790533, + "max_x": 5202.626873271829, + "max_y": 5188.164484276086, + "center": [ + 5202.613034886341, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.626873271829, + 5188.164484276086 + ], + [ + 5202.599196500853, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553654", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.458718584367, + "min_y": 5188.105527790533, + "max_x": 5202.486395355237, + "max_y": 5188.164484276086, + "center": [ + 5202.472556969802, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.458718584367, + 5188.164484276086 + ], + [ + 5202.486395355237, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553655", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.24177182112, + "min_y": 5188.21240936539, + "max_x": 5202.322044916316, + "max_y": 5188.292682460587, + "center": [ + 5202.281908368718, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.281908368718, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553656", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.345166678383, + "min_y": 5188.159407423086, + "max_x": 5202.393330535501, + "max_y": 5188.207571280204, + "center": [ + 5202.369248606942, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.369248606942, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553657", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.358377215442, + "min_y": 5188.210645408692, + "max_x": 5202.386053986251, + "max_y": 5188.269601894245, + "center": [ + 5202.372215600846, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.386053986251, + 5188.210645408692 + ], + [ + 5202.358377215442, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553658", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.345166678383, + "min_y": 5188.167558404625, + "max_x": 5202.393330535501, + "max_y": 5188.215722261743, + "center": [ + 5202.369248606942, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.369248606942, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553659", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.281908368718, + "min_y": 5188.21240936539, + "max_x": 5202.362181463915, + "max_y": 5188.292682460587, + "center": [ + 5202.322044916316, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.322044916316, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.234704678125, + "min_y": 5188.159407423061, + "max_x": 5202.369248606942, + "max_y": 5188.159407423061, + "center": [ + 5202.301976642533, + 5188.159407423061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.369248606942, + 5188.159407423061 + ], + [ + 5202.234704678125, + 5188.159407423061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.234704678125, + "min_y": 5188.215722261718, + "max_x": 5202.369248606942, + "max_y": 5188.215722261718, + "center": [ + 5202.301976642533, + 5188.215722261718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.369248606942, + 5188.215722261718 + ], + [ + 5202.234704678125, + 5188.215722261718 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.281908368718, + "min_y": 5188.292682460573, + "max_x": 5202.322044916316, + "max_y": 5188.292682460573, + "center": [ + 5202.301976642517, + 5188.292682460573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.322044916316, + 5188.292682460573 + ], + [ + 5202.281908368718, + 5188.292682460573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.358377215442, + "min_y": 5188.105527790533, + "max_x": 5202.386053986251, + "max_y": 5188.164484276086, + "center": [ + 5202.372215600846, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.386053986251, + 5188.164484276086 + ], + [ + 5202.358377215442, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.041089083171, + "min_y": 5188.082447224242, + "max_x": 5202.121362178367, + "max_y": 5188.162720319438, + "center": [ + 5202.081225630769, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.081225630769, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55365F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.940747714085, + "min_y": 5188.082447224242, + "max_x": 5202.021020809281, + "max_y": 5188.162720319438, + "center": [ + 5201.980884261683, + 5188.12258377184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5188.12258377184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553660", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.980884261683, + "min_y": 5188.082447224256, + "max_x": 5202.081225630769, + "max_y": 5188.082447224256, + "center": [ + 5202.0310549462265, + 5188.082447224256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5188.082447224256 + ], + [ + 5202.081225630769, + 5188.082447224256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553661", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.980884261683, + "min_y": 5188.292682460573, + "max_x": 5202.081225630769, + "max_y": 5188.292682460573, + "center": [ + 5202.0310549462265, + 5188.292682460573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5188.292682460573 + ], + [ + 5202.081225630769, + 5188.292682460573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553662", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.963985399586, + "min_y": 5188.215722261718, + "max_x": 5202.128429321361, + "max_y": 5188.215722261718, + "center": [ + 5202.046207360474, + 5188.215722261718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.128429321361, + 5188.215722261718 + ], + [ + 5201.963985399586, + 5188.215722261718 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553663", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.963985399586, + "min_y": 5188.159407423061, + "max_x": 5202.128429321361, + "max_y": 5188.159407423061, + "center": [ + 5202.046207360474, + 5188.159407423061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.128429321361, + 5188.159407423061 + ], + [ + 5201.963985399586, + 5188.159407423061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553664", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.104347392802, + "min_y": 5188.159407423086, + "max_x": 5202.15251124992, + "max_y": 5188.207571280204, + "center": [ + 5202.128429321361, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.128429321361, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553665", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.117557929764, + "min_y": 5188.210645408692, + "max_x": 5202.145234700733, + "max_y": 5188.269601894245, + "center": [ + 5202.131396315249, + 5188.240123651469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.145234700733, + 5188.210645408692 + ], + [ + 5202.117557929764, + 5188.269601894245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553666", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.104347392802, + "min_y": 5188.167558404625, + "max_x": 5202.15251124992, + "max_y": 5188.215722261743, + "center": [ + 5202.128429321361, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.128429321361, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553667", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.14143045213, + "min_y": 5188.107291747181, + "max_x": 5202.221703547327, + "max_y": 5188.1875648423775, + "center": [ + 5202.181566999729, + 5188.147428294779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.181566999729, + 5188.147428294779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553668", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.14143045213, + "min_y": 5188.187564842352, + "max_x": 5202.221703547327, + "max_y": 5188.267837937548, + "center": [ + 5202.181566999729, + 5188.22770138995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.181566999729, + 5188.22770138995 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553669", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.041089083171, + "min_y": 5188.21240936539, + "max_x": 5202.121362178367, + "max_y": 5188.292682460587, + "center": [ + 5202.081225630769, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.081225630769, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.117557929764, + "min_y": 5188.105527790533, + "max_x": 5202.145234700733, + "max_y": 5188.164484276086, + "center": [ + 5202.131396315249, + 5188.13500603331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.145234700733, + 5188.164484276086 + ], + [ + 5202.117557929764, + 5188.105527790533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.939903471027, + "min_y": 5188.159407423086, + "max_x": 5201.988067328145, + "max_y": 5188.207571280204, + "center": [ + 5201.963985399586, + 5188.183489351645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.963985399586, + 5188.183489351645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.939903471027, + "min_y": 5188.167558404625, + "max_x": 5201.988067328145, + "max_y": 5188.215722261743, + "center": [ + 5201.963985399586, + 5188.191640333184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.963985399586, + 5188.191640333184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.940747714085, + "min_y": 5188.21240936539, + "max_x": 5202.021020809281, + "max_y": 5188.292682460587, + "center": [ + 5201.980884261683, + 5188.252545912988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5188.252545912988 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5187.754158497922, + "max_x": 5201.442062554537, + "max_y": 5187.80232235504, + "center": [ + 5201.417980625978, + 5187.778240426481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5187.778240426481 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55366F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.439117784675, + "min_y": 5187.801207491756, + "max_x": 5201.490106205545, + "max_y": 5187.81329641424, + "center": [ + 5201.46461199511, + 5187.807251952998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.439117784675, + 5187.801207491756 + ], + [ + 5201.490106205545, + 5187.81329641424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553670", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.43867893161, + "min_y": 5187.493623131727, + "max_x": 5201.499044570176, + "max_y": 5187.554801516843, + "center": [ + 5201.468861750893, + 5187.524212324285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.43867893161, + 5187.554801516843 + ], + [ + 5201.499044570176, + 5187.493623131727 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553671", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5187.551796357712, + "max_x": 5201.442062554537, + "max_y": 5187.59996021483, + "center": [ + 5201.417980625978, + 5187.575878286271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5187.575878286271 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553672", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5187.4840808590125, + "max_x": 5201.508878461964, + "max_y": 5187.532244716131, + "center": [ + 5201.484796533405, + 5187.508162787572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5187.508162787572 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553673", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.428605366768, + "min_y": 5187.25334968738, + "max_x": 5201.508878461965, + "max_y": 5187.333622782577, + "center": [ + 5201.468741914367, + 5187.293486234978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468741914367, + 5187.293486234978 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553674", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5187.769999983258, + "max_x": 5201.508878461964, + "max_y": 5187.818163840376, + "center": [ + 5201.484796533405, + 5187.794081911817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5187.794081911817 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553675", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5187.284161962208, + "max_x": 5201.442062554541, + "max_y": 5187.334094586501, + "center": [ + 5201.442062554541, + 5187.309128274354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5187.284161962208 + ], + [ + 5201.442062554541, + 5187.334094586501 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553676", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5187.284161962208, + "max_x": 5201.442062554541, + "max_y": 5187.334094586501, + "center": [ + 5201.442062554541, + 5187.309128274354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5187.284161962208 + ], + [ + 5201.442062554541, + 5187.334094586501 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553677", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5187.575878286271, + "max_x": 5201.442062554541, + "max_y": 5187.778240426481, + "center": [ + 5201.442062554541, + 5187.677059356376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5187.575878286271 + ], + [ + 5201.442062554541, + 5187.778240426481 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553678", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5188.268020220985, + "max_x": 5201.442062554537, + "max_y": 5188.316184078103, + "center": [ + 5201.417980625978, + 5188.292102149544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5188.292102149544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553679", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.438199373209, + "min_y": 5188.313925726768, + "max_x": 5201.499013874133, + "max_y": 5188.338107321925, + "center": [ + 5201.468606623671, + 5188.326016524346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.438199373209, + 5188.313925726768 + ], + [ + 5201.499013874133, + 5188.338107321925 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5188.058945606642, + "max_x": 5201.442062554537, + "max_y": 5188.10710946376, + "center": [ + 5201.417980625978, + 5188.083027535201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5188.083027535201 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.438199373209, + "min_y": 5188.037022362853, + "max_x": 5201.499013874133, + "max_y": 5188.06120395806, + "center": [ + 5201.468606623671, + 5188.049113160457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.438199373209, + 5188.06120395806 + ], + [ + 5201.499013874133, + 5188.037022362853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5188.032377679599, + "max_x": 5201.508878461964, + "max_y": 5188.080541536718, + "center": [ + 5201.484796533405, + 5188.056459608159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5188.056459608159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5188.29458814806, + "max_x": 5201.508878461964, + "max_y": 5188.342752005178, + "center": [ + 5201.484796533405, + 5188.318670076619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5188.318670076619 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5188.083027535201, + "max_x": 5201.442062554541, + "max_y": 5188.187564842415, + "center": [ + 5201.442062554541, + 5188.135296188808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5188.083027535201 + ], + [ + 5201.442062554541, + 5188.187564842415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55367F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5188.187564842415, + "max_x": 5201.442062554541, + "max_y": 5188.292102149544, + "center": [ + 5201.442062554541, + 5188.23983349598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5188.292102149544 + ], + [ + 5201.442062554541, + 5188.187564842415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553680", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.619396744816, + "min_y": 5189.056865925836, + "max_x": 5202.63994421415, + "max_y": 5189.133550125503, + "center": [ + 5202.629670479483, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.63994421415, + 5189.133550125503 + ], + [ + 5202.619396744816, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553681", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.75611959514, + "min_y": 5189.802659517713, + "max_x": 5203.104707594506, + "max_y": 5189.802659517713, + "center": [ + 5202.430413594823, + 5189.802659517713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.104707594506, + 5189.802659517713 + ], + [ + 5201.75611959514, + 5189.802659517713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553682", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.736051321384, + "min_y": 5190.565253922085, + "max_x": 5203.124775868157, + "max_y": 5190.565253922085, + "center": [ + 5202.4304135947705, + 5190.565253922085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.736051321384, + 5190.565253922085 + ], + [ + 5203.124775868157, + 5190.565253922085 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553683", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.703942083388, + "min_y": 5190.484980826915, + "max_x": 5203.156885106363, + "max_y": 5190.484980826915, + "center": [ + 5202.430413594875, + 5190.484980826915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.703942083388, + 5190.484980826915 + ], + [ + 5203.156885106363, + 5190.484980826915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553684", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.740064976102, + "min_y": 5189.648535174956, + "max_x": 5203.120762213479, + "max_y": 5189.648535174956, + "center": [ + 5202.4304135947905, + 5189.648535174956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.120762213479, + 5189.648535174956 + ], + [ + 5201.740064976102, + 5189.648535174956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553685", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.740064976102, + "min_y": 5189.654957022578, + "max_x": 5203.120762213479, + "max_y": 5189.654957022578, + "center": [ + 5202.4304135947905, + 5189.654957022578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.740064976102, + 5189.654957022578 + ], + [ + 5203.120762213479, + 5189.654957022578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553686", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.748092285568, + "min_y": 5189.782591243929, + "max_x": 5203.112734903974, + "max_y": 5189.782591243929, + "center": [ + 5202.430413594771, + 5189.782591243929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.748092285568, + 5189.782591243929 + ], + [ + 5203.112734903974, + 5189.782591243929 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553687", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.748092285568, + "min_y": 5189.802659517713, + "max_x": 5203.112734903974, + "max_y": 5189.802659517713, + "center": [ + 5202.430413594771, + 5189.802659517713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.748092285568, + 5189.802659517713 + ], + [ + 5203.112734903974, + 5189.802659517713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553688", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.181389619113, + "min_y": 5189.479058687611, + "max_x": 5203.3278784745735, + "max_y": 5189.625547543071, + "center": [ + 5203.254634046843, + 5189.552303115341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.254634046843, + 5189.552303115341 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553689", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.19026753067, + "min_y": 5189.485439321003, + "max_x": 5203.19026753067, + "max_y": 5189.517350321647, + "center": [ + 5203.19026753067, + 5189.501394821325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.19026753067, + 5189.485439321003 + ], + [ + 5203.19026753067, + 5189.517350321647 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.120762213479, + "min_y": 5189.437004031788, + "max_x": 5203.13926879057, + "max_y": 5189.648535174956, + "center": [ + 5203.130015502024, + 5189.542769603372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.13926879057, + 5189.437004031788 + ], + [ + 5203.120762213479, + 5189.648535174956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.929389423022, + "min_y": 5189.475626567955, + "max_x": 5203.496675986554, + "max_y": 5190.042913131487, + "center": [ + 5203.213032704788, + 5189.759269849721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.213032704788, + 5189.759269849721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792688541673, + "min_y": 5189.499749569417, + "max_x": 5203.793095868324, + "max_y": 5189.500870692837, + "center": [ + 5203.792892204998, + 5189.500310131127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792688541673, + 5189.500870692837 + ], + [ + 5203.793095868324, + 5189.499749569417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.500157453313, + "max_x": 5203.790853621416, + "max_y": 5189.500463366238, + "center": [ + 5203.790802635949, + 5189.500310409776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.500157453313 + ], + [ + 5203.790853621416, + 5189.500463366238 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.49972668305, + "max_x": 5203.79234308649, + "max_y": 5189.501318119043, + "center": [ + 5203.791547368486, + 5189.5005224010465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79234308649, + 5189.501318119043 + ], + [ + 5203.790751650482, + 5189.49972668305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55368F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.498440388352, + "max_x": 5203.792820034624, + "max_y": 5189.500508772514, + "center": [ + 5203.7917858425535, + 5189.499474580432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792820034624, + 5189.500508772514 + ], + [ + 5203.790751650482, + 5189.498440388352 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553690", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812551237639, + "min_y": 5189.485510018619, + "max_x": 5203.83423497708, + "max_y": 5189.507193758075, + "center": [ + 5203.823393107359, + 5189.496351888347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83423497708, + 5189.507193758075 + ], + [ + 5203.812551237639, + 5189.485510018619 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553691", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.8142175964, + "min_y": 5189.485890082761, + "max_x": 5203.835926061692, + "max_y": 5189.507598548002, + "center": [ + 5203.825071829046, + 5189.496744315382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835926061692, + 5189.507598548002 + ], + [ + 5203.8142175964, + 5189.485890082761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553692", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815883955323, + "min_y": 5189.486270146939, + "max_x": 5203.837151389659, + "max_y": 5189.50753758132, + "center": [ + 5203.826517672491, + 5189.49690386413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837151389659, + 5189.50753758132 + ], + [ + 5203.815883955323, + 5189.486270146939 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553693", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81755031415, + "min_y": 5189.486650211083, + "max_x": 5203.83812277266, + "max_y": 5189.507222669642, + "center": [ + 5203.827836543405, + 5189.496936440362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83812277266, + 5189.507222669642 + ], + [ + 5203.81755031415, + 5189.486650211083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553694", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81921667301, + "min_y": 5189.487030275277, + "max_x": 5203.838815512518, + "max_y": 5189.506629114752, + "center": [ + 5203.829016092764, + 5189.496829695015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838815512518, + 5189.506629114752 + ], + [ + 5203.81921667301, + 5189.487030275277 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553695", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820883031931, + "min_y": 5189.487410339419, + "max_x": 5203.839224968159, + "max_y": 5189.505752275665, + "center": [ + 5203.8300540000455, + 5189.496581307541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839224968159, + 5189.505752275665 + ], + [ + 5203.820883031931, + 5189.487410339419 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553696", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82254939079, + "min_y": 5189.487790403563, + "max_x": 5203.839375086633, + "max_y": 5189.504616099373, + "center": [ + 5203.830962238711, + 5189.496203251469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.504616099373 + ], + [ + 5203.82254939079, + 5189.487790403563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553697", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.824215749615, + "min_y": 5189.48817046774, + "max_x": 5203.839375086633, + "max_y": 5189.503329804725, + "center": [ + 5203.831795418124, + 5189.495750136232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.503329804725 + ], + [ + 5203.824215749615, + 5189.48817046774 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553698", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825882108442, + "min_y": 5189.488550531883, + "max_x": 5203.839375086633, + "max_y": 5189.502043510028, + "center": [ + 5203.832628597537, + 5189.495297020956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.502043510028 + ], + [ + 5203.825882108442, + 5189.488550531883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553699", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827548467367, + "min_y": 5189.488930596078, + "max_x": 5203.839375086633, + "max_y": 5189.500757215329, + "center": [ + 5203.833461777, + 5189.494843905703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.500757215329 + ], + [ + 5203.827548467367, + 5189.488930596078 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.484051612215, + "max_x": 5203.839375086633, + "max_y": 5189.503928707535, + "center": [ + 5203.839375086633, + 5189.4939901598755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.503928707535 + ], + [ + 5203.839375086633, + 5189.484051612215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806705085697, + "min_y": 5189.483522750768, + "max_x": 5203.82887207038, + "max_y": 5189.50568973555, + "center": [ + 5203.817788578039, + 5189.494606243159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82887207038, + 5189.50568973555 + ], + [ + 5203.806705085697, + 5189.483522750768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809218519858, + "min_y": 5189.484749890332, + "max_x": 5203.830659615835, + "max_y": 5189.506190986306, + "center": [ + 5203.819939067847, + 5189.495470438319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.830659615835, + 5189.506190986306 + ], + [ + 5203.809218519858, + 5189.484749890332 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810884878784, + "min_y": 5189.485129954426, + "max_x": 5203.832409280523, + "max_y": 5189.506654356198, + "center": [ + 5203.821647079654, + 5189.495892155312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832409280523, + 5189.506654356198 + ], + [ + 5203.810884878784, + 5189.485129954426 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807061433436, + "min_y": 5189.500361395236, + "max_x": 5203.809405651378, + "max_y": 5189.500870692837, + "center": [ + 5203.808233542407, + 5189.500616044037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807061433436, + 5189.500361395236 + ], + [ + 5203.809405651378, + 5189.500870692837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55369F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.483004851943, + "max_x": 5203.808398730809, + "max_y": 5189.500651932435, + "center": [ + 5203.799575190646, + 5189.491828392189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808398730809, + 5189.500651932435 + ], + [ + 5203.790751650482, + 5189.483004851943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.481718557246, + "max_x": 5203.810061136988, + "max_y": 5189.501028043838, + "center": [ + 5203.800406393735, + 5189.491373300541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810061136988, + 5189.501028043838 + ], + [ + 5203.790751650482, + 5189.481718557246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792690437909, + "min_y": 5189.478512165936, + "max_x": 5203.816820489517, + "max_y": 5189.50264221751, + "center": [ + 5203.804755463713, + 5189.490577191723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816820489517, + 5189.50264221751 + ], + [ + 5203.792690437909, + 5189.478512165936 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793955315966, + "min_y": 5189.478490749324, + "max_x": 5203.818504662454, + "max_y": 5189.503040095678, + "center": [ + 5203.80622998921, + 5189.490765422501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818504662454, + 5189.503040095678 + ], + [ + 5203.793955315966, + 5189.478490749324 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792155974359, + "min_y": 5189.472832523609, + "max_x": 5203.823604011375, + "max_y": 5189.50428056062, + "center": [ + 5203.807879992867, + 5189.488556542115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823604011375, + 5189.50428056062 + ], + [ + 5203.792155974359, + 5189.472832523609 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791450914426, + "min_y": 5189.470841168982, + "max_x": 5203.825276405408, + "max_y": 5189.504666659978, + "center": [ + 5203.808363659917, + 5189.48775391448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825276405408, + 5189.504666659978 + ], + [ + 5203.791450914426, + 5189.470841168982 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791111341228, + "min_y": 5189.469215301019, + "max_x": 5203.827063089121, + "max_y": 5189.505167048939, + "center": [ + 5203.809087215175, + 5189.48719117498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827063089121, + 5189.505167048939 + ], + [ + 5203.791111341228, + 5189.469215301019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79087078144, + "min_y": 5189.48055139359, + "max_x": 5203.81175374687, + "max_y": 5189.50143435902, + "center": [ + 5203.801312264155, + 5189.4909928763045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81175374687, + 5189.50143435902 + ], + [ + 5203.79087078144, + 5189.48055139359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791327273097, + "min_y": 5189.479721590434, + "max_x": 5203.813412322161, + "max_y": 5189.501806639632, + "center": [ + 5203.802369797629, + 5189.490764115033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813412322161, + 5189.501806639632 + ], + [ + 5203.791327273097, + 5189.479721590434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791910728774, + "min_y": 5189.47901875148, + "max_x": 5203.815084220178, + "max_y": 5189.502192242869, + "center": [ + 5203.803497474476, + 5189.490605497174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815084220178, + 5189.502192242869 + ], + [ + 5203.791910728774, + 5189.47901875148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795553543034, + "min_y": 5189.478802681609, + "max_x": 5203.82015856547, + "max_y": 5189.50340770413, + "center": [ + 5203.807856054252, + 5189.491105192869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82015856547, + 5189.50340770413 + ], + [ + 5203.795553543034, + 5189.478802681609 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797151770099, + "min_y": 5189.479114613927, + "max_x": 5203.82189221213, + "max_y": 5189.503855055942, + "center": [ + 5203.809521991114, + 5189.491484834934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82189221213, + 5189.503855055942 + ], + [ + 5203.797151770099, + 5189.479114613927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.101086797003, + "min_y": 5189.486714038524, + "max_x": 5204.13321873906, + "max_y": 5189.536063241351, + "center": [ + 5204.117152768031, + 5189.511388639938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.13321873906, + 5189.486714038524 + ], + [ + 5204.101086797003, + 5189.536063241351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536AE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.271334999762, + "min_y": 5189.228924390574, + "max_x": 5203.415287768635, + "max_y": 5189.372877159447, + "center": [ + 5203.343311384198, + 5189.300900775011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.343311384198, + 5189.300900775011 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536AF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.983537046632, + "min_y": 5189.169851908892, + "max_x": 5203.457097151815, + "max_y": 5189.643412014076, + "center": [ + 5203.220317099223, + 5189.406631961484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.220317099223, + 5189.406631961484 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.394875289426, + "min_y": 5188.947205187645, + "max_x": 5203.765016064614, + "max_y": 5189.317345962833, + "center": [ + 5203.57994567702, + 5189.132275575239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.57994567702, + 5189.132275575239 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.251619514236, + "min_y": 5189.1740484887705, + "max_x": 5203.532560528778, + "max_y": 5189.454989503312, + "center": [ + 5203.392090021507, + 5189.314518996041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.392090021507, + 5189.314518996041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.416459475299, + "min_y": 5189.087219721874, + "max_x": 5203.455853314462, + "max_y": 5189.147721964569, + "center": [ + 5203.4361563948805, + 5189.117470843222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.455853314462, + 5189.087219721874 + ], + [ + 5203.416459475299, + 5189.147721964569 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.416459475299, + "min_y": 5189.052311307106, + "max_x": 5203.455853314462, + "max_y": 5189.10798880958, + "center": [ + 5203.4361563948805, + 5189.080150058343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.455853314462, + 5189.052311307106 + ], + [ + 5203.416459475299, + 5189.10798880958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.416459475299, + "min_y": 5189.147721964569, + "max_x": 5203.455853314462, + "max_y": 5189.198574726724, + "center": [ + 5203.4361563948805, + 5189.173148345646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.416459475299, + 5189.147721964569 + ], + [ + 5203.455853314462, + 5189.198574726724 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.349341366284, + "min_y": 5188.906232373198, + "max_x": 5203.631665568559, + "max_y": 5189.188556575473, + "center": [ + 5203.490503467421, + 5189.047394474335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.490503467421, + 5189.047394474335 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.2064936588995, + "min_y": 5189.018041961727, + "max_x": 5204.012703157585, + "max_y": 5189.824251460413, + "center": [ + 5203.609598408242, + 5189.42114671107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.609598408242, + 5189.42114671107 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536BA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.339765707368, + "min_y": 5188.499491921403, + "max_x": 5204.269920616577, + "max_y": 5189.429646830612, + "center": [ + 5203.804843161973, + 5188.964569376008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804843161973, + 5188.964569376008 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536BB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.370291015031, + "max_x": 5203.853340094513, + "max_y": 5189.429209618564, + "center": [ + 5203.822096857964, + 5189.3997503167975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812871549884, + 5189.372329319948 + ], + [ + 5203.810832687723, + 5189.371921993349 + ], + [ + 5203.809099738439, + 5189.371514109454 + ], + [ + 5203.807468760181, + 5189.371310167531 + ], + [ + 5203.806041723736, + 5189.371004254605 + ], + [ + 5203.804920600333, + 5189.370902283651 + ], + [ + 5203.804003418834, + 5189.370800312683 + ], + [ + 5203.803391592948, + 5189.370698341729 + ], + [ + 5203.802881738104, + 5189.370596370726 + ], + [ + 5203.800639491191, + 5189.370291015031 + ], + [ + 5203.798804571003, + 5189.370392428803 + ], + [ + 5203.797173592653, + 5189.370698341729 + ], + [ + 5203.795746556306, + 5189.371310167531 + ], + [ + 5203.794624875603, + 5189.372125378024 + ], + [ + 5203.793605723173, + 5189.373043116769 + ], + [ + 5203.792891926419, + 5189.374164240224 + ], + [ + 5203.792280657866, + 5189.375285363693 + ], + [ + 5203.791770803013, + 5189.376509015313 + ], + [ + 5203.791362919131, + 5189.377732109736 + ], + [ + 5203.791159534361, + 5189.37885323319 + ], + [ + 5203.790955592421, + 5189.379872942887 + ], + [ + 5203.790853621416, + 5189.380790124435 + ], + [ + 5203.790853621416, + 5189.381503921205 + ], + [ + 5203.790853621416, + 5189.382013218857 + ], + [ + 5203.790853621416, + 5189.384459964902 + ], + [ + 5203.790955592421, + 5189.386498827047 + ], + [ + 5203.791159534361, + 5189.388333190094 + ], + [ + 5203.791464890072, + 5189.389760783669 + ], + [ + 5203.791770803013, + 5189.390983878092 + ], + [ + 5203.792178686825, + 5189.392003030593 + ], + [ + 5203.792586570771, + 5189.392716827364 + ], + [ + 5203.792993897423, + 5189.393430066989 + ], + [ + 5203.793503752269, + 5189.393939921837 + ], + [ + 5203.793911636118, + 5189.394347805683 + ], + [ + 5203.794421490962, + 5189.394653718608 + ], + [ + 5203.794930788548, + 5189.394959074255 + ], + [ + 5203.795440643395, + 5189.395264987179 + ], + [ + 5203.79584852721, + 5189.395672871025 + ], + [ + 5203.796765708709, + 5189.396488081603 + ], + [ + 5203.79329981033, + 5189.396182725875 + ], + [ + 5203.792993897423, + 5189.396284696876 + ], + [ + 5203.792688541673, + 5189.396386110634 + ], + [ + 5203.792484599771, + 5189.396488081603 + ], + [ + 5203.792178686825, + 5189.396692023526 + ], + [ + 5203.79197474492, + 5189.396895965482 + ], + [ + 5203.791770803013, + 5189.397099907406 + ], + [ + 5203.79166883198, + 5189.397303849378 + ], + [ + 5203.791464890072, + 5189.397507791301 + ], + [ + 5203.791260948166, + 5189.397813704227 + ], + [ + 5203.791159534361, + 5189.398017088901 + ], + [ + 5203.791057563323, + 5189.398221030875 + ], + [ + 5203.790955592421, + 5189.398424972797 + ], + [ + 5203.790853621416, + 5189.39862891472 + ], + [ + 5203.790853621416, + 5189.398730885724 + ], + [ + 5203.790853621416, + 5189.398832856678 + ], + [ + 5203.790853621416, + 5189.3990367986 + ], + [ + 5203.790853621416, + 5189.399648067222 + ], + [ + 5203.790853621416, + 5189.400463834996 + ], + [ + 5203.790853621416, + 5189.401584958448 + ], + [ + 5203.790853621416, + 5189.402910023844 + ], + [ + 5203.790853621416, + 5189.404439588387 + ], + [ + 5203.790853621416, + 5189.40607056669 + ], + [ + 5203.790853621416, + 5189.407701545008 + ], + [ + 5203.790853621416, + 5189.409433937034 + ], + [ + 5203.790853621416, + 5189.411064915351 + ], + [ + 5203.790853621416, + 5189.412594479898 + ], + [ + 5203.790853621416, + 5189.414021516245 + ], + [ + 5203.790853621416, + 5189.415346581671 + ], + [ + 5203.790853621416, + 5189.416365734087 + ], + [ + 5203.790853621416, + 5189.417385443784 + ], + [ + 5203.790853621416, + 5189.417690799515 + ], + [ + 5203.790853621416, + 5189.417894741437 + ], + [ + 5203.790955592421, + 5189.418200654362 + ], + [ + 5203.791057563323, + 5189.418506567289 + ], + [ + 5203.791159534361, + 5189.418710509211 + ], + [ + 5203.791260948166, + 5189.418914451134 + ], + [ + 5203.791362919131, + 5189.41911839309 + ], + [ + 5203.791566861073, + 5189.419219806813 + ], + [ + 5203.791770803013, + 5189.419321777783 + ], + [ + 5203.791872773985, + 5189.419423748785 + ], + [ + 5203.792076715925, + 5189.419321777783 + ], + [ + 5203.792280657866, + 5189.419219806813 + ], + [ + 5203.792484599771, + 5189.419016422137 + ], + [ + 5203.792688541673, + 5189.41860853824 + ], + [ + 5203.793197839357, + 5189.417588828544 + ], + [ + 5203.793401781264, + 5189.417181501863 + ], + [ + 5203.793605723173, + 5189.416773617967 + ], + [ + 5203.793911636118, + 5189.41646770509 + ], + [ + 5203.794319520028, + 5189.416161792165 + ], + [ + 5203.794726846609, + 5189.415957850241 + ], + [ + 5203.795134730457, + 5189.41585643652 + ], + [ + 5203.795542614368, + 5189.415754465549 + ], + [ + 5203.795950498248, + 5189.415652494597 + ], + [ + 5203.796357824892, + 5189.415652494597 + ], + [ + 5203.796765708709, + 5189.415652494597 + ], + [ + 5203.797071621647, + 5189.415754465549 + ], + [ + 5203.797377534591, + 5189.415754465549 + ], + [ + 5203.7976834475, + 5189.41585643652 + ], + [ + 5203.797886832211, + 5189.41585643652 + ], + [ + 5203.798090774217, + 5189.41585643652 + ], + [ + 5203.801148788845, + 5189.416773617967 + ], + [ + 5203.801556672692, + 5189.41697755994 + ], + [ + 5203.8027797672, + 5189.417283472815 + ], + [ + 5203.8048186293, + 5189.417690799515 + ], + [ + 5203.807367346374, + 5189.418302625315 + ], + [ + 5203.810527332041, + 5189.41911839309 + ], + [ + 5203.813992673389, + 5189.419933603636 + ], + [ + 5203.817764484713, + 5189.420850785132 + ], + [ + 5203.821740238172, + 5189.421870494828 + ], + [ + 5203.825817405306, + 5189.422889647329 + ], + [ + 5203.829895129697, + 5189.423909357027 + ], + [ + 5203.833768354956, + 5189.424826538524 + ], + [ + 5203.837438195338, + 5189.425845691025 + ], + [ + 5203.840802122883, + 5189.426661458799 + ], + [ + 5203.843656195571, + 5189.427476669377 + ], + [ + 5203.847631949062, + 5189.428598350027 + ], + [ + 5203.8487530725, + 5189.429005676642 + ], + [ + 5203.849772224966, + 5189.429209618564 + ], + [ + 5203.850689963761, + 5189.429209618564 + ], + [ + 5203.851403203322, + 5189.429107647595 + ], + [ + 5203.851913058168, + 5189.42890426292 + ], + [ + 5203.852422913022, + 5189.428700320997 + ], + [ + 5203.852728825861, + 5189.428292437101 + ], + [ + 5203.853034181605, + 5189.427986524226 + ], + [ + 5203.853136152507, + 5189.42757864033 + ], + [ + 5203.853238123543, + 5189.427171313647 + ], + [ + 5203.853340094513, + 5189.426763429751 + ], + [ + 5203.853340094513, + 5189.426355545873 + ], + [ + 5203.853340094513, + 5189.426049632981 + ], + [ + 5203.853340094513, + 5189.425845691025 + ], + [ + 5203.853340094513, + 5189.425540335328 + ], + [ + 5203.853340094513, + 5189.405662682812 + ], + [ + 5203.853238123543, + 5189.405662682812 + ], + [ + 5203.853136152507, + 5189.405662682812 + ], + [ + 5203.853034181605, + 5189.405560711842 + ], + [ + 5203.852932767865, + 5189.405458740887 + ], + [ + 5203.852830796893, + 5189.405458740887 + ], + [ + 5203.85262685496, + 5189.405356769919 + ], + [ + 5203.852524883954, + 5189.405356769919 + ], + [ + 5203.852320942045, + 5189.405356769919 + ], + [ + 5203.852117000107, + 5189.405356769919 + ], + [ + 5203.851913058168, + 5189.405356769919 + ], + [ + 5203.851811087201, + 5189.405458740887 + ], + [ + 5203.85160714526, + 5189.405662682812 + ], + [ + 5203.851403203322, + 5189.405866624767 + ], + [ + 5203.851199818609, + 5189.406375922335 + ], + [ + 5203.850893905701, + 5189.407089719157 + ], + [ + 5203.850689963761, + 5189.407599574039 + ], + [ + 5203.850486021824, + 5189.408006900655 + ], + [ + 5203.850180108917, + 5189.408414784534 + ], + [ + 5203.849976166975, + 5189.408720697459 + ], + [ + 5203.849569211054, + 5189.40899249648 + ], + [ + 5203.849160956315, + 5189.409128581354 + ], + [ + 5203.848957014407, + 5189.409230552307 + ], + [ + 5203.8487530725, + 5189.409230552307 + ], + [ + 5203.848549130562, + 5189.409230552307 + ], + [ + 5203.848447159562, + 5189.409230552307 + ], + [ + 5203.848243217653, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409128581354 + ], + [ + 5203.848039832909, + 5189.409128581354 + ], + [ + 5203.847835891, + 5189.409128581354 + ], + [ + 5203.847529978064, + 5189.409026610351 + ], + [ + 5203.847122094216, + 5189.409026610351 + ], + [ + 5203.846714210271, + 5189.408924639383 + ], + [ + 5203.846102941717, + 5189.408720697459 + ], + [ + 5203.84549111593, + 5189.408618726506 + ], + [ + 5203.844879847275, + 5189.408516755503 + ], + [ + 5203.844166050423, + 5189.408312813581 + ], + [ + 5203.84335028273, + 5189.408108871657 + ], + [ + 5203.84263704317, + 5189.407904929684 + ], + [ + 5203.841923246383, + 5189.407802958732 + ], + [ + 5203.841210006825, + 5189.407599574039 + ], + [ + 5203.840394239067, + 5189.407395632116 + ], + [ + 5203.839171144728, + 5189.406885777184 + ], + [ + 5203.839171144728, + 5189.40678380623 + ], + [ + 5203.839171144728, + 5189.406273951383 + ], + [ + 5203.839171144728, + 5189.405458740887 + ], + [ + 5203.839171144728, + 5189.404337617419 + ], + [ + 5203.839171144728, + 5189.403113965765 + ], + [ + 5203.839171144728, + 5189.401788900422 + ], + [ + 5203.839171144728, + 5189.400259893073 + ], + [ + 5203.839171144728, + 5189.398730885724 + ], + [ + 5203.839171144728, + 5189.397303849378 + ], + [ + 5203.839171144728, + 5189.395774842029 + ], + [ + 5203.839171144728, + 5189.394449776686 + ], + [ + 5203.839171144728, + 5189.39312415398 + ], + [ + 5203.839171144728, + 5189.392105001562 + ], + [ + 5203.839171144728, + 5189.391289790985 + ], + [ + 5203.839171144728, + 5189.390575994213 + ], + [ + 5203.839069173688, + 5189.390474023244 + ], + [ + 5203.839069173688, + 5189.390168110318 + ], + [ + 5203.839069173688, + 5189.389658812716 + ], + [ + 5203.838967202788, + 5189.389046986898 + ], + [ + 5203.838967202788, + 5189.388231219123 + ], + [ + 5203.838865231788, + 5189.387314037593 + ], + [ + 5203.838661289879, + 5189.386396856096 + ], + [ + 5203.838355934063, + 5189.385275175396 + ], + [ + 5203.838050021126, + 5189.384256022978 + ], + [ + 5203.83764213728, + 5189.383134899507 + ], + [ + 5203.837030311428, + 5189.382115189811 + ], + [ + 5203.836317071935, + 5189.381096037361 + ], + [ + 5203.835501304141, + 5189.380076884861 + ], + [ + 5203.834482151742, + 5189.379261117085 + ], + [ + 5203.832035405634, + 5189.377834080688 + ], + [ + 5203.828773449066, + 5189.376712957269 + ], + [ + 5203.825715434365, + 5189.375795218541 + ], + [ + 5203.822861361608, + 5189.374878036995 + ], + [ + 5203.820109259815, + 5189.37406226927 + ], + [ + 5203.817458571768, + 5189.373451000697 + ], + [ + 5203.815114354028, + 5189.372839174796 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536BC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.370291015031, + "max_x": 5203.853340094513, + "max_y": 5189.429209618564, + "center": [ + 5203.822096857964, + 5189.3997503167975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800639491191, + 5189.370291015031 + ], + [ + 5203.798804571003, + 5189.370392428803 + ], + [ + 5203.797173592653, + 5189.370698341729 + ], + [ + 5203.795746556306, + 5189.371310167531 + ], + [ + 5203.794624875603, + 5189.372125378024 + ], + [ + 5203.793605723173, + 5189.373043116769 + ], + [ + 5203.792891926419, + 5189.374164240224 + ], + [ + 5203.792280657866, + 5189.375285363693 + ], + [ + 5203.791770803013, + 5189.376509015313 + ], + [ + 5203.791362919131, + 5189.377732109736 + ], + [ + 5203.791159534361, + 5189.37885323319 + ], + [ + 5203.790955592421, + 5189.379872942887 + ], + [ + 5203.790853621416, + 5189.380790124435 + ], + [ + 5203.790853621416, + 5189.381503921205 + ], + [ + 5203.790853621416, + 5189.382013218857 + ], + [ + 5203.790853621416, + 5189.384459964902 + ], + [ + 5203.790955592421, + 5189.386498827047 + ], + [ + 5203.791159534361, + 5189.388333190094 + ], + [ + 5203.791464890072, + 5189.389760783669 + ], + [ + 5203.791770803013, + 5189.390983878092 + ], + [ + 5203.792178686825, + 5189.392003030593 + ], + [ + 5203.792586570771, + 5189.392716827364 + ], + [ + 5203.792993897423, + 5189.393430066989 + ], + [ + 5203.793503752269, + 5189.393939921837 + ], + [ + 5203.793911636118, + 5189.394347805683 + ], + [ + 5203.794421490962, + 5189.394653718608 + ], + [ + 5203.794930788548, + 5189.394959074255 + ], + [ + 5203.795440643395, + 5189.395264987179 + ], + [ + 5203.79584852721, + 5189.395672871025 + ], + [ + 5203.796765708709, + 5189.396488081603 + ], + [ + 5203.79329981033, + 5189.396182725875 + ], + [ + 5203.792993897423, + 5189.396284696876 + ], + [ + 5203.792688541673, + 5189.396386110634 + ], + [ + 5203.792484599771, + 5189.396488081603 + ], + [ + 5203.792178686825, + 5189.396692023526 + ], + [ + 5203.79197474492, + 5189.396895965482 + ], + [ + 5203.791770803013, + 5189.397099907406 + ], + [ + 5203.79166883198, + 5189.397303849378 + ], + [ + 5203.791464890072, + 5189.397507791301 + ], + [ + 5203.791260948166, + 5189.397813704227 + ], + [ + 5203.791159534361, + 5189.398017088901 + ], + [ + 5203.791057563323, + 5189.398221030875 + ], + [ + 5203.790955592421, + 5189.398424972797 + ], + [ + 5203.790853621416, + 5189.39862891472 + ], + [ + 5203.790853621416, + 5189.398730885724 + ], + [ + 5203.790853621416, + 5189.398832856678 + ], + [ + 5203.790853621416, + 5189.3990367986 + ], + [ + 5203.790853621416, + 5189.399648067222 + ], + [ + 5203.790853621416, + 5189.400463834996 + ], + [ + 5203.790853621416, + 5189.401584958448 + ], + [ + 5203.790853621416, + 5189.402910023844 + ], + [ + 5203.790853621416, + 5189.404439588387 + ], + [ + 5203.790853621416, + 5189.40607056669 + ], + [ + 5203.790853621416, + 5189.407701545008 + ], + [ + 5203.790853621416, + 5189.409433937034 + ], + [ + 5203.790853621416, + 5189.411064915351 + ], + [ + 5203.790853621416, + 5189.412594479898 + ], + [ + 5203.790853621416, + 5189.414021516245 + ], + [ + 5203.790853621416, + 5189.415346581671 + ], + [ + 5203.790853621416, + 5189.416365734087 + ], + [ + 5203.790853621416, + 5189.417385443784 + ], + [ + 5203.790853621416, + 5189.417690799515 + ], + [ + 5203.790853621416, + 5189.417894741437 + ], + [ + 5203.790955592421, + 5189.418200654362 + ], + [ + 5203.791057563323, + 5189.418506567289 + ], + [ + 5203.791159534361, + 5189.418710509211 + ], + [ + 5203.791260948166, + 5189.418914451134 + ], + [ + 5203.791362919131, + 5189.41911839309 + ], + [ + 5203.791566861073, + 5189.419219806813 + ], + [ + 5203.791770803013, + 5189.419321777783 + ], + [ + 5203.791872773985, + 5189.419423748785 + ], + [ + 5203.792076715925, + 5189.419321777783 + ], + [ + 5203.792280657866, + 5189.419219806813 + ], + [ + 5203.792484599771, + 5189.419016422137 + ], + [ + 5203.792688541673, + 5189.41860853824 + ], + [ + 5203.793197839357, + 5189.417588828544 + ], + [ + 5203.793401781264, + 5189.417181501863 + ], + [ + 5203.793605723173, + 5189.416773617967 + ], + [ + 5203.793911636118, + 5189.41646770509 + ], + [ + 5203.794319520028, + 5189.416161792165 + ], + [ + 5203.794726846609, + 5189.415957850241 + ], + [ + 5203.795134730457, + 5189.41585643652 + ], + [ + 5203.795542614368, + 5189.415754465549 + ], + [ + 5203.795950498248, + 5189.415652494597 + ], + [ + 5203.796357824892, + 5189.415652494597 + ], + [ + 5203.796765708709, + 5189.415652494597 + ], + [ + 5203.797071621647, + 5189.415754465549 + ], + [ + 5203.797377534591, + 5189.415754465549 + ], + [ + 5203.7976834475, + 5189.41585643652 + ], + [ + 5203.797886832211, + 5189.41585643652 + ], + [ + 5203.798090774217, + 5189.41585643652 + ], + [ + 5203.801148788845, + 5189.416773617967 + ], + [ + 5203.801556672692, + 5189.41697755994 + ], + [ + 5203.8027797672, + 5189.417283472815 + ], + [ + 5203.8048186293, + 5189.417690799515 + ], + [ + 5203.807367346374, + 5189.418302625315 + ], + [ + 5203.810527332041, + 5189.41911839309 + ], + [ + 5203.813992673389, + 5189.419933603636 + ], + [ + 5203.817764484713, + 5189.420850785132 + ], + [ + 5203.821740238172, + 5189.421870494828 + ], + [ + 5203.825817405306, + 5189.422889647329 + ], + [ + 5203.829895129697, + 5189.423909357027 + ], + [ + 5203.833768354956, + 5189.424826538524 + ], + [ + 5203.837438195338, + 5189.425845691025 + ], + [ + 5203.840802122883, + 5189.426661458799 + ], + [ + 5203.843656195571, + 5189.427476669377 + ], + [ + 5203.847631949062, + 5189.428598350027 + ], + [ + 5203.8487530725, + 5189.429005676642 + ], + [ + 5203.849772224966, + 5189.429209618564 + ], + [ + 5203.850689963761, + 5189.429209618564 + ], + [ + 5203.851403203322, + 5189.429107647595 + ], + [ + 5203.851913058168, + 5189.42890426292 + ], + [ + 5203.852422913022, + 5189.428700320997 + ], + [ + 5203.852728825861, + 5189.428292437101 + ], + [ + 5203.853034181605, + 5189.427986524226 + ], + [ + 5203.853136152507, + 5189.42757864033 + ], + [ + 5203.853238123543, + 5189.427171313647 + ], + [ + 5203.853340094513, + 5189.426763429751 + ], + [ + 5203.853340094513, + 5189.426355545873 + ], + [ + 5203.853340094513, + 5189.426049632981 + ], + [ + 5203.853340094513, + 5189.425845691025 + ], + [ + 5203.853340094513, + 5189.425540335328 + ], + [ + 5203.853340094513, + 5189.405662682812 + ], + [ + 5203.853238123543, + 5189.405662682812 + ], + [ + 5203.853136152507, + 5189.405662682812 + ], + [ + 5203.853034181605, + 5189.405560711842 + ], + [ + 5203.852932767865, + 5189.405458740887 + ], + [ + 5203.852830796893, + 5189.405458740887 + ], + [ + 5203.85262685496, + 5189.405356769919 + ], + [ + 5203.852524883954, + 5189.405356769919 + ], + [ + 5203.852320942045, + 5189.405356769919 + ], + [ + 5203.852117000107, + 5189.405356769919 + ], + [ + 5203.851913058168, + 5189.405356769919 + ], + [ + 5203.851811087201, + 5189.405458740887 + ], + [ + 5203.85160714526, + 5189.405662682812 + ], + [ + 5203.851403203322, + 5189.405866624767 + ], + [ + 5203.851199818609, + 5189.406375922335 + ], + [ + 5203.850893905701, + 5189.407089719157 + ], + [ + 5203.850689963761, + 5189.407599574039 + ], + [ + 5203.850486021824, + 5189.408006900655 + ], + [ + 5203.850180108917, + 5189.408414784534 + ], + [ + 5203.849976166975, + 5189.408720697459 + ], + [ + 5203.849569211054, + 5189.40899249648 + ], + [ + 5203.849160956315, + 5189.409128581354 + ], + [ + 5203.848957014407, + 5189.409230552307 + ], + [ + 5203.8487530725, + 5189.409230552307 + ], + [ + 5203.848549130562, + 5189.409230552307 + ], + [ + 5203.848447159562, + 5189.409230552307 + ], + [ + 5203.848243217653, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409128581354 + ], + [ + 5203.848039832909, + 5189.409128581354 + ], + [ + 5203.847835891, + 5189.409128581354 + ], + [ + 5203.847529978064, + 5189.409026610351 + ], + [ + 5203.847122094216, + 5189.409026610351 + ], + [ + 5203.846714210271, + 5189.408924639383 + ], + [ + 5203.846102941717, + 5189.408720697459 + ], + [ + 5203.84549111593, + 5189.408618726506 + ], + [ + 5203.844879847275, + 5189.408516755503 + ], + [ + 5203.844166050423, + 5189.408312813581 + ], + [ + 5203.84335028273, + 5189.408108871657 + ], + [ + 5203.84263704317, + 5189.407904929684 + ], + [ + 5203.841923246383, + 5189.407802958732 + ], + [ + 5203.841210006825, + 5189.407599574039 + ], + [ + 5203.840394239067, + 5189.407395632116 + ], + [ + 5203.839171144728, + 5189.406885777184 + ], + [ + 5203.839171144728, + 5189.40678380623 + ], + [ + 5203.839171144728, + 5189.406273951383 + ], + [ + 5203.839171144728, + 5189.405458740887 + ], + [ + 5203.839171144728, + 5189.404337617419 + ], + [ + 5203.839171144728, + 5189.403113965765 + ], + [ + 5203.839171144728, + 5189.401788900422 + ], + [ + 5203.839171144728, + 5189.400259893073 + ], + [ + 5203.839171144728, + 5189.398730885724 + ], + [ + 5203.839171144728, + 5189.397303849378 + ], + [ + 5203.839171144728, + 5189.395774842029 + ], + [ + 5203.839171144728, + 5189.394449776686 + ], + [ + 5203.839171144728, + 5189.39312415398 + ], + [ + 5203.839171144728, + 5189.392105001562 + ], + [ + 5203.839171144728, + 5189.391289790985 + ], + [ + 5203.839171144728, + 5189.390575994213 + ], + [ + 5203.839069173688, + 5189.390474023244 + ], + [ + 5203.839069173688, + 5189.390168110318 + ], + [ + 5203.839069173688, + 5189.389658812716 + ], + [ + 5203.838967202788, + 5189.389046986898 + ], + [ + 5203.838967202788, + 5189.388231219123 + ], + [ + 5203.838865231788, + 5189.387314037593 + ], + [ + 5203.838661289879, + 5189.386396856096 + ], + [ + 5203.838355934063, + 5189.385275175396 + ], + [ + 5203.838050021126, + 5189.384256022978 + ], + [ + 5203.83764213728, + 5189.383134899507 + ], + [ + 5203.837030311428, + 5189.382115189811 + ], + [ + 5203.836317071935, + 5189.381096037361 + ], + [ + 5203.835501304141, + 5189.380076884861 + ], + [ + 5203.834482151742, + 5189.379261117085 + ], + [ + 5203.832035405634, + 5189.377834080688 + ], + [ + 5203.828773449066, + 5189.376712957269 + ], + [ + 5203.825715434365, + 5189.375795218541 + ], + [ + 5203.822861361608, + 5189.374878036995 + ], + [ + 5203.820109259815, + 5189.37406226927 + ], + [ + 5203.817458571768, + 5189.373451000697 + ], + [ + 5203.815114354028, + 5189.372839174796 + ], + [ + 5203.812871549884, + 5189.372329319948 + ], + [ + 5203.810832687723, + 5189.371921993349 + ], + [ + 5203.809099738439, + 5189.371514109454 + ], + [ + 5203.807468760181, + 5189.371310167531 + ], + [ + 5203.806041723736, + 5189.371004254605 + ], + [ + 5203.804920600333, + 5189.370902283651 + ], + [ + 5203.804003418834, + 5189.370800312683 + ], + [ + 5203.803391592948, + 5189.370698341729 + ], + [ + 5203.802881738104, + 5189.370596370726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536BD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.370291015031, + "max_x": 5203.853340094513, + "max_y": 5189.429209618564, + "center": [ + 5203.822096857964, + 5189.3997503167975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.84549111593, + 5189.408618726506 + ], + [ + 5203.844879847275, + 5189.408516755503 + ], + [ + 5203.844166050423, + 5189.408312813581 + ], + [ + 5203.84335028273, + 5189.408108871657 + ], + [ + 5203.84263704317, + 5189.407904929684 + ], + [ + 5203.841923246383, + 5189.407802958732 + ], + [ + 5203.841210006825, + 5189.407599574039 + ], + [ + 5203.840394239067, + 5189.407395632116 + ], + [ + 5203.839171144728, + 5189.406885777184 + ], + [ + 5203.839171144728, + 5189.40678380623 + ], + [ + 5203.839171144728, + 5189.406273951383 + ], + [ + 5203.839171144728, + 5189.405458740887 + ], + [ + 5203.839171144728, + 5189.404337617419 + ], + [ + 5203.839171144728, + 5189.403113965765 + ], + [ + 5203.839171144728, + 5189.401788900422 + ], + [ + 5203.839171144728, + 5189.400259893073 + ], + [ + 5203.839171144728, + 5189.398730885724 + ], + [ + 5203.839171144728, + 5189.397303849378 + ], + [ + 5203.839171144728, + 5189.395774842029 + ], + [ + 5203.839171144728, + 5189.394449776686 + ], + [ + 5203.839171144728, + 5189.39312415398 + ], + [ + 5203.839171144728, + 5189.392105001562 + ], + [ + 5203.839171144728, + 5189.391289790985 + ], + [ + 5203.839171144728, + 5189.390575994213 + ], + [ + 5203.839069173688, + 5189.390474023244 + ], + [ + 5203.839069173688, + 5189.390168110318 + ], + [ + 5203.839069173688, + 5189.389658812716 + ], + [ + 5203.838967202788, + 5189.389046986898 + ], + [ + 5203.838967202788, + 5189.388231219123 + ], + [ + 5203.838865231788, + 5189.387314037593 + ], + [ + 5203.838661289879, + 5189.386396856096 + ], + [ + 5203.838355934063, + 5189.385275175396 + ], + [ + 5203.838050021126, + 5189.384256022978 + ], + [ + 5203.83764213728, + 5189.383134899507 + ], + [ + 5203.837030311428, + 5189.382115189811 + ], + [ + 5203.836317071935, + 5189.381096037361 + ], + [ + 5203.835501304141, + 5189.380076884861 + ], + [ + 5203.834482151742, + 5189.379261117085 + ], + [ + 5203.832035405634, + 5189.377834080688 + ], + [ + 5203.828773449066, + 5189.376712957269 + ], + [ + 5203.825715434365, + 5189.375795218541 + ], + [ + 5203.822861361608, + 5189.374878036995 + ], + [ + 5203.820109259815, + 5189.37406226927 + ], + [ + 5203.817458571768, + 5189.373451000697 + ], + [ + 5203.815114354028, + 5189.372839174796 + ], + [ + 5203.812871549884, + 5189.372329319948 + ], + [ + 5203.810832687723, + 5189.371921993349 + ], + [ + 5203.809099738439, + 5189.371514109454 + ], + [ + 5203.807468760181, + 5189.371310167531 + ], + [ + 5203.806041723736, + 5189.371004254605 + ], + [ + 5203.804920600333, + 5189.370902283651 + ], + [ + 5203.804003418834, + 5189.370800312683 + ], + [ + 5203.803391592948, + 5189.370698341729 + ], + [ + 5203.802881738104, + 5189.370596370726 + ], + [ + 5203.800639491191, + 5189.370291015031 + ], + [ + 5203.798804571003, + 5189.370392428803 + ], + [ + 5203.797173592653, + 5189.370698341729 + ], + [ + 5203.795746556306, + 5189.371310167531 + ], + [ + 5203.794624875603, + 5189.372125378024 + ], + [ + 5203.793605723173, + 5189.373043116769 + ], + [ + 5203.792891926419, + 5189.374164240224 + ], + [ + 5203.792280657866, + 5189.375285363693 + ], + [ + 5203.791770803013, + 5189.376509015313 + ], + [ + 5203.791362919131, + 5189.377732109736 + ], + [ + 5203.791159534361, + 5189.37885323319 + ], + [ + 5203.790955592421, + 5189.379872942887 + ], + [ + 5203.790853621416, + 5189.380790124435 + ], + [ + 5203.790853621416, + 5189.381503921205 + ], + [ + 5203.790853621416, + 5189.382013218857 + ], + [ + 5203.790853621416, + 5189.384459964902 + ], + [ + 5203.790955592421, + 5189.386498827047 + ], + [ + 5203.791159534361, + 5189.388333190094 + ], + [ + 5203.791464890072, + 5189.389760783669 + ], + [ + 5203.791770803013, + 5189.390983878092 + ], + [ + 5203.792178686825, + 5189.392003030593 + ], + [ + 5203.792586570771, + 5189.392716827364 + ], + [ + 5203.792993897423, + 5189.393430066989 + ], + [ + 5203.793503752269, + 5189.393939921837 + ], + [ + 5203.793911636118, + 5189.394347805683 + ], + [ + 5203.794421490962, + 5189.394653718608 + ], + [ + 5203.794930788548, + 5189.394959074255 + ], + [ + 5203.795440643395, + 5189.395264987179 + ], + [ + 5203.79584852721, + 5189.395672871025 + ], + [ + 5203.796765708709, + 5189.396488081603 + ], + [ + 5203.79329981033, + 5189.396182725875 + ], + [ + 5203.792993897423, + 5189.396284696876 + ], + [ + 5203.792688541673, + 5189.396386110634 + ], + [ + 5203.792484599771, + 5189.396488081603 + ], + [ + 5203.792178686825, + 5189.396692023526 + ], + [ + 5203.79197474492, + 5189.396895965482 + ], + [ + 5203.791770803013, + 5189.397099907406 + ], + [ + 5203.79166883198, + 5189.397303849378 + ], + [ + 5203.791464890072, + 5189.397507791301 + ], + [ + 5203.791260948166, + 5189.397813704227 + ], + [ + 5203.791159534361, + 5189.398017088901 + ], + [ + 5203.791057563323, + 5189.398221030875 + ], + [ + 5203.790955592421, + 5189.398424972797 + ], + [ + 5203.790853621416, + 5189.39862891472 + ], + [ + 5203.790853621416, + 5189.398730885724 + ], + [ + 5203.790853621416, + 5189.398832856678 + ], + [ + 5203.790853621416, + 5189.3990367986 + ], + [ + 5203.790853621416, + 5189.399648067222 + ], + [ + 5203.790853621416, + 5189.400463834996 + ], + [ + 5203.790853621416, + 5189.401584958448 + ], + [ + 5203.790853621416, + 5189.402910023844 + ], + [ + 5203.790853621416, + 5189.404439588387 + ], + [ + 5203.790853621416, + 5189.40607056669 + ], + [ + 5203.790853621416, + 5189.407701545008 + ], + [ + 5203.790853621416, + 5189.409433937034 + ], + [ + 5203.790853621416, + 5189.411064915351 + ], + [ + 5203.790853621416, + 5189.412594479898 + ], + [ + 5203.790853621416, + 5189.414021516245 + ], + [ + 5203.790853621416, + 5189.415346581671 + ], + [ + 5203.790853621416, + 5189.416365734087 + ], + [ + 5203.790853621416, + 5189.417385443784 + ], + [ + 5203.790853621416, + 5189.417690799515 + ], + [ + 5203.790853621416, + 5189.417894741437 + ], + [ + 5203.790955592421, + 5189.418200654362 + ], + [ + 5203.791057563323, + 5189.418506567289 + ], + [ + 5203.791159534361, + 5189.418710509211 + ], + [ + 5203.791260948166, + 5189.418914451134 + ], + [ + 5203.791362919131, + 5189.41911839309 + ], + [ + 5203.791566861073, + 5189.419219806813 + ], + [ + 5203.791770803013, + 5189.419321777783 + ], + [ + 5203.791872773985, + 5189.419423748785 + ], + [ + 5203.792076715925, + 5189.419321777783 + ], + [ + 5203.792280657866, + 5189.419219806813 + ], + [ + 5203.792484599771, + 5189.419016422137 + ], + [ + 5203.792688541673, + 5189.41860853824 + ], + [ + 5203.793197839357, + 5189.417588828544 + ], + [ + 5203.793401781264, + 5189.417181501863 + ], + [ + 5203.793605723173, + 5189.416773617967 + ], + [ + 5203.793911636118, + 5189.41646770509 + ], + [ + 5203.794319520028, + 5189.416161792165 + ], + [ + 5203.794726846609, + 5189.415957850241 + ], + [ + 5203.795134730457, + 5189.41585643652 + ], + [ + 5203.795542614368, + 5189.415754465549 + ], + [ + 5203.795950498248, + 5189.415652494597 + ], + [ + 5203.796357824892, + 5189.415652494597 + ], + [ + 5203.796765708709, + 5189.415652494597 + ], + [ + 5203.797071621647, + 5189.415754465549 + ], + [ + 5203.797377534591, + 5189.415754465549 + ], + [ + 5203.7976834475, + 5189.41585643652 + ], + [ + 5203.797886832211, + 5189.41585643652 + ], + [ + 5203.798090774217, + 5189.41585643652 + ], + [ + 5203.801148788845, + 5189.416773617967 + ], + [ + 5203.801556672692, + 5189.41697755994 + ], + [ + 5203.8027797672, + 5189.417283472815 + ], + [ + 5203.8048186293, + 5189.417690799515 + ], + [ + 5203.807367346374, + 5189.418302625315 + ], + [ + 5203.810527332041, + 5189.41911839309 + ], + [ + 5203.813992673389, + 5189.419933603636 + ], + [ + 5203.817764484713, + 5189.420850785132 + ], + [ + 5203.821740238172, + 5189.421870494828 + ], + [ + 5203.825817405306, + 5189.422889647329 + ], + [ + 5203.829895129697, + 5189.423909357027 + ], + [ + 5203.833768354956, + 5189.424826538524 + ], + [ + 5203.837438195338, + 5189.425845691025 + ], + [ + 5203.840802122883, + 5189.426661458799 + ], + [ + 5203.843656195571, + 5189.427476669377 + ], + [ + 5203.847631949062, + 5189.428598350027 + ], + [ + 5203.8487530725, + 5189.429005676642 + ], + [ + 5203.849772224966, + 5189.429209618564 + ], + [ + 5203.850689963761, + 5189.429209618564 + ], + [ + 5203.851403203322, + 5189.429107647595 + ], + [ + 5203.851913058168, + 5189.42890426292 + ], + [ + 5203.852422913022, + 5189.428700320997 + ], + [ + 5203.852728825861, + 5189.428292437101 + ], + [ + 5203.853034181605, + 5189.427986524226 + ], + [ + 5203.853136152507, + 5189.42757864033 + ], + [ + 5203.853238123543, + 5189.427171313647 + ], + [ + 5203.853340094513, + 5189.426763429751 + ], + [ + 5203.853340094513, + 5189.426355545873 + ], + [ + 5203.853340094513, + 5189.426049632981 + ], + [ + 5203.853340094513, + 5189.425845691025 + ], + [ + 5203.853340094513, + 5189.425540335328 + ], + [ + 5203.853340094513, + 5189.405662682812 + ], + [ + 5203.853238123543, + 5189.405662682812 + ], + [ + 5203.853136152507, + 5189.405662682812 + ], + [ + 5203.853034181605, + 5189.405560711842 + ], + [ + 5203.852932767865, + 5189.405458740887 + ], + [ + 5203.852830796893, + 5189.405458740887 + ], + [ + 5203.85262685496, + 5189.405356769919 + ], + [ + 5203.852524883954, + 5189.405356769919 + ], + [ + 5203.852320942045, + 5189.405356769919 + ], + [ + 5203.852117000107, + 5189.405356769919 + ], + [ + 5203.851913058168, + 5189.405356769919 + ], + [ + 5203.851811087201, + 5189.405458740887 + ], + [ + 5203.85160714526, + 5189.405662682812 + ], + [ + 5203.851403203322, + 5189.405866624767 + ], + [ + 5203.851199818609, + 5189.406375922335 + ], + [ + 5203.850893905701, + 5189.407089719157 + ], + [ + 5203.850689963761, + 5189.407599574039 + ], + [ + 5203.850486021824, + 5189.408006900655 + ], + [ + 5203.850180108917, + 5189.408414784534 + ], + [ + 5203.849976166975, + 5189.408720697459 + ], + [ + 5203.84967081116, + 5189.408924639383 + ], + [ + 5203.849466869253, + 5189.409026610351 + ], + [ + 5203.849160956315, + 5189.409128581354 + ], + [ + 5203.848957014407, + 5189.409230552307 + ], + [ + 5203.8487530725, + 5189.409230552307 + ], + [ + 5203.848549130562, + 5189.409230552307 + ], + [ + 5203.848447159562, + 5189.409230552307 + ], + [ + 5203.848243217653, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409230552307 + ], + [ + 5203.848141246617, + 5189.409128581354 + ], + [ + 5203.848039832909, + 5189.409128581354 + ], + [ + 5203.847835891, + 5189.409128581354 + ], + [ + 5203.847529978064, + 5189.409026610351 + ], + [ + 5203.847122094216, + 5189.409026610351 + ], + [ + 5203.846714210271, + 5189.408924639383 + ], + [ + 5203.846102941717, + 5189.408720697459 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808629201252, + "min_y": 5189.484615478181, + "max_x": 5203.834535538667, + "max_y": 5189.490524211628, + "center": [ + 5203.821582369959, + 5189.487569844905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808629201252, + 5189.484615478181 + ], + [ + 5203.834535538667, + 5189.490524211628 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813296088991, + "min_y": 5189.457956386615, + "max_x": 5203.834004112747, + "max_y": 5189.478664410334, + "center": [ + 5203.823650100869, + 5189.468310398474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834004112747, + 5189.478664410334 + ], + [ + 5203.813296088991, + 5189.457956386615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806584589762, + "min_y": 5189.456390066277, + "max_x": 5203.827266145285, + "max_y": 5189.47707162165, + "center": [ + 5203.816925367523, + 5189.466730843964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827266145285, + 5189.47707162165 + ], + [ + 5203.806584589762, + 5189.456390066277 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808262464622, + "min_y": 5189.456781646353, + "max_x": 5203.828950637149, + "max_y": 5189.477469818884, + "center": [ + 5203.818606550885, + 5189.467125732619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828950637149, + 5189.477469818884 + ], + [ + 5203.808262464622, + 5189.456781646353 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80994033941, + "min_y": 5189.457173226446, + "max_x": 5203.83063512898, + "max_y": 5189.477868016, + "center": [ + 5203.8202877341955, + 5189.467520621223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83063512898, + 5189.477868016 + ], + [ + 5203.80994033941, + 5189.457173226446 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811618214171, + "min_y": 5189.457564806488, + "max_x": 5203.832319620811, + "max_y": 5189.478266213184, + "center": [ + 5203.821968917491, + 5189.4679155098365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832319620811, + 5189.478266213184 + ], + [ + 5203.811618214171, + 5189.457564806488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791867359544, + "min_y": 5189.446818014769, + "max_x": 5203.820528177725, + "max_y": 5189.475478832967, + "center": [ + 5203.806197768634, + 5189.4611484238685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820528177725, + 5189.475478832967 + ], + [ + 5203.791867359544, + 5189.446818014769 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791082239177, + "min_y": 5189.444746599652, + "max_x": 5203.822212669662, + "max_y": 5189.475877030167, + "center": [ + 5203.806647454419, + 5189.46031181491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822212669662, + 5189.475877030167 + ], + [ + 5203.791082239177, + 5189.444746599652 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790702003267, + "min_y": 5189.443080069064, + "max_x": 5203.823897161494, + "max_y": 5189.47627522735, + "center": [ + 5203.80729958238, + 5189.459677648207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823897161494, + 5189.47627522735 + ], + [ + 5203.790702003267, + 5189.443080069064 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790474983305, + "min_y": 5189.441566754452, + "max_x": 5203.82558165342, + "max_y": 5189.476673424501, + "center": [ + 5203.808028318363, + 5189.4591200894765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82558165342, + 5189.476673424501 + ], + [ + 5203.790474983305, + 5189.441566754452 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795377002556, + "min_y": 5189.45161395246, + "max_x": 5203.818843685897, + "max_y": 5189.475080635816, + "center": [ + 5203.807110344227, + 5189.463347294139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818843685897, + 5189.475080635816 + ], + [ + 5203.795377002556, + 5189.45161395246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794427035726, + "min_y": 5189.451950280331, + "max_x": 5203.817159194032, + "max_y": 5189.474682438633, + "center": [ + 5203.805793114879, + 5189.463316359483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817159194032, + 5189.474682438633 + ], + [ + 5203.794427035726, + 5189.451950280331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5536FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793687824833, + "min_y": 5189.452497364098, + "max_x": 5203.815474702167, + "max_y": 5189.474284241432, + "center": [ + 5203.8045812635, + 5189.4633908027645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815474702167, + 5189.474284241432 + ], + [ + 5203.793687824833, + 5189.452497364098 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553700", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79306303387, + "min_y": 5189.453158867899, + "max_x": 5203.813790210233, + "max_y": 5189.473886044282, + "center": [ + 5203.803426622051, + 5189.463522456091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813790210233, + 5189.473886044282 + ], + [ + 5203.79306303387, + 5189.453158867899 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553701", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805639547432, + "min_y": 5189.456169513534, + "max_x": 5203.833682550603, + "max_y": 5189.462714150772, + "center": [ + 5203.819661049018, + 5189.459441832153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805639547432, + 5189.456169513534 + ], + [ + 5203.833682550603, + 5189.462714150772 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553702", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80490373071, + "min_y": 5189.445289062156, + "max_x": 5203.835137841679, + "max_y": 5189.451710772021, + "center": [ + 5203.820020786195, + 5189.448499917089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835137841679, + 5189.451710772021 + ], + [ + 5203.80490373071, + 5189.445289062156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553703", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805962373086, + "min_y": 5189.472035621207, + "max_x": 5203.83539273005, + "max_y": 5189.478992665746, + "center": [ + 5203.820677551568, + 5189.475514143476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83539273005, + 5189.478992665746 + ], + [ + 5203.805962373086, + 5189.472035621207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553704", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811240571535, + "min_y": 5189.42890426292, + "max_x": 5203.814400557269, + "max_y": 5189.429617502444, + "center": [ + 5203.8128205644025, + 5189.429260882682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814400557269, + 5189.429617502444 + ], + [ + 5203.811240571535, + 5189.42890426292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553705", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811260696231, + "min_y": 5189.428908805266, + "max_x": 5203.833772709739, + "max_y": 5189.451420818634, + "center": [ + 5203.822516702985, + 5189.440164811949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833772709739, + 5189.451420818634 + ], + [ + 5203.811260696231, + 5189.428908805266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553706", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812921952778, + "min_y": 5189.42928376698, + "max_x": 5203.835374455199, + "max_y": 5189.45173626952, + "center": [ + 5203.824148203988, + 5189.44051001825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835374455199, + 5189.45173626952 + ], + [ + 5203.812921952778, + 5189.42928376698 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553707", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806196640875, + "min_y": 5189.427703633953, + "max_x": 5203.828873164678, + "max_y": 5189.45038015774, + "center": [ + 5203.817534902777, + 5189.4390418958465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828873164678, + 5189.45038015774 + ], + [ + 5203.806196640875, + 5189.427703633953 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553708", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807850639747, + "min_y": 5189.42807133811, + "max_x": 5203.830506346285, + "max_y": 5189.450727044766, + "center": [ + 5203.819178493016, + 5189.4393991914385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.830506346285, + 5189.450727044766 + ], + [ + 5203.807850639747, + 5189.42807133811 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553709", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809546067954, + "min_y": 5189.428480471549, + "max_x": 5203.83213952806, + "max_y": 5189.451073931675, + "center": [ + 5203.820842798007, + 5189.439777201612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83213952806, + 5189.451073931675 + ], + [ + 5203.809546067954, + 5189.428480471549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796132853732, + "min_y": 5189.426643909688, + "max_x": 5203.817440893099, + "max_y": 5189.447951949075, + "center": [ + 5203.806786873416, + 5189.437297929382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817440893099, + 5189.447951949075 + ], + [ + 5203.796132853732, + 5189.426643909688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7971159939, + "min_y": 5189.426340755129, + "max_x": 5203.819074074768, + "max_y": 5189.448298836068, + "center": [ + 5203.808095034334, + 5189.437319795598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819074074768, + 5189.448298836068 + ], + [ + 5203.7971159939, + 5189.426340755129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798137408294, + "min_y": 5189.426075874843, + "max_x": 5203.82070725648, + "max_y": 5189.448645723027, + "center": [ + 5203.809422332387, + 5189.437360798935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82070725648, + 5189.448645723027 + ], + [ + 5203.798137408294, + 5189.426075874843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799364914818, + "min_y": 5189.426017086752, + "max_x": 5203.822340438086, + "max_y": 5189.448992609969, + "center": [ + 5203.810852676452, + 5189.43750484836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822340438086, + 5189.448992609969 + ], + [ + 5203.799364914818, + 5189.426017086752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801133899832, + "min_y": 5189.426499776967, + "max_x": 5203.823973619758, + "max_y": 5189.449339496929, + "center": [ + 5203.812553759795, + 5189.437919636948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823973619758, + 5189.449339496929 + ], + [ + 5203.801133899832, + 5189.426499776967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55370F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80278059483, + "min_y": 5189.426860177223, + "max_x": 5203.825606801396, + "max_y": 5189.449686383838, + "center": [ + 5203.814193698114, + 5189.43827328053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825606801396, + 5189.449686383838 + ], + [ + 5203.80278059483, + 5189.426860177223 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553710", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795250452055, + "min_y": 5189.427047802627, + "max_x": 5203.815807711485, + "max_y": 5189.447605062134, + "center": [ + 5203.80552908177, + 5189.43732643238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815807711485, + 5189.447605062134 + ], + [ + 5203.795250452055, + 5189.427047802627 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553711", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794477894588, + "min_y": 5189.427561539948, + "max_x": 5203.814174529783, + "max_y": 5189.447258175223, + "center": [ + 5203.8043262121855, + 5189.437409857586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814174529783, + 5189.447258175223 + ], + [ + 5203.794477894588, + 5189.427561539948 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553712", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804485962668, + "min_y": 5189.427279250393, + "max_x": 5203.827239982977, + "max_y": 5189.45003327083, + "center": [ + 5203.815862972822, + 5189.438656260612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827239982977, + 5189.45003327083 + ], + [ + 5203.804485962668, + 5189.427279250393 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553713", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79339072868, + "min_y": 5189.018504312319, + "max_x": 5203.872178407007, + "max_y": 5189.018504312319, + "center": [ + 5203.832784567843, + 5189.018504312319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.872178407007, + 5189.018504312319 + ], + [ + 5203.79339072868, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553714", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79339072868, + "min_y": 5189.053412727055, + "max_x": 5203.872178407007, + "max_y": 5189.053412727055, + "center": [ + 5203.832784567843, + 5189.053412727055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.872178407007, + 5189.053412727055 + ], + [ + 5203.79339072868, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553715", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79339072868, + "min_y": 5189.164767731937, + "max_x": 5203.872178407007, + "max_y": 5189.164767731937, + "center": [ + 5203.832784567843, + 5189.164767731937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79339072868, + 5189.164767731937 + ], + [ + 5203.872178407007, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553716", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.703207218794, + "min_y": 5188.920442037618, + "max_x": 5203.948775510184, + "max_y": 5189.166010329008, + "center": [ + 5203.825991364489, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825991364489, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553717", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.720402234671, + "min_y": 5189.016219429334, + "max_x": 5203.945166901116, + "max_y": 5189.016219429334, + "center": [ + 5203.832784567894, + 5189.016219429334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.945166901116, + 5189.016219429334 + ], + [ + 5203.720402234671, + 5189.016219429334 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55371B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.954716034881, + "min_y": 5188.970122024127, + "max_x": 5204.056027410184, + "max_y": 5188.970122024127, + "center": [ + 5204.005371722533, + 5188.970122024127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.954716034881, + 5188.970122024127 + ], + [ + 5204.056027410184, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55371C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.048381528178, + "min_y": 5188.920442037618, + "max_x": 5204.293949819567, + "max_y": 5189.166010329008, + "center": [ + 5204.171165673873, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.171165673873, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55371D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.050760800607, + "min_y": 5188.5599301886, + "max_x": 5205.013140850581, + "max_y": 5189.522310238574, + "center": [ + 5204.531950825594, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.531950825594, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55371E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.051628415464, + "min_y": 5188.967293533322, + "max_x": 5204.25126419998, + "max_y": 5189.166929317838, + "center": [ + 5204.151446307722, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.151446307722, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55371F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.074181814761, + "max_x": 5204.099171198903, + "max_y": 5189.113914969733, + "center": [ + 5204.099171198903, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.099171198903, + 5189.113914969733 + ], + [ + 5204.099171198903, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553720", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.053412727055, + "max_x": 5204.138565038065, + "max_y": 5189.113914969733, + "center": [ + 5204.118868118484, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138565038065, + 5189.053412727055 + ], + [ + 5204.099171198903, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553721", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.018504312319, + "max_x": 5204.138565038065, + "max_y": 5189.074181814761, + "center": [ + 5204.118868118484, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138565038065, + 5189.018504312319 + ], + [ + 5204.099171198903, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553722", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.138565038065, + "min_y": 5189.018504312319, + "max_x": 5204.138565038065, + "max_y": 5189.053412727055, + "center": [ + 5204.138565038065, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138565038065, + 5189.053412727055 + ], + [ + 5204.138565038065, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553723", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.113914969733, + "max_x": 5204.138565038065, + "max_y": 5189.164767731937, + "center": [ + 5204.118868118484, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.099171198903, + 5189.113914969733 + ], + [ + 5204.138565038065, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553724", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.056027410184, + "min_y": 5188.970122024127, + "max_x": 5204.065576543959, + "max_y": 5189.016219429334, + "center": [ + 5204.060801977072, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.065576543959, + 5189.016219429334 + ], + [ + 5204.056027410184, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553725", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.061967934923, + "min_y": 5188.920442037618, + "max_x": 5204.307536226313, + "max_y": 5189.166010329008, + "center": [ + 5204.184752080618, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.184752080618, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553726", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.048381528178, + "min_y": 5188.920442037618, + "max_x": 5204.293949819567, + "max_y": 5189.166010329008, + "center": [ + 5204.171165673873, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.171165673873, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553727", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.716793625605, + "min_y": 5188.920442037618, + "max_x": 5203.962361916994, + "max_y": 5189.166010329008, + "center": [ + 5203.839577771299, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839577771299, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553728", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872178407007, + "min_y": 5189.018504312319, + "max_x": 5203.872178407007, + "max_y": 5189.053412727055, + "center": [ + 5203.872178407007, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.872178407007, + 5189.053412727055 + ], + [ + 5203.872178407007, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553729", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.911572246172, + "min_y": 5189.074181814761, + "max_x": 5203.911572246172, + "max_y": 5189.113914969733, + "center": [ + 5203.911572246172, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.113914969733 + ], + [ + 5203.911572246172, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.759479245128, + "min_y": 5188.967293533322, + "max_x": 5203.959115029645, + "max_y": 5189.166929317838, + "center": [ + 5203.859297137386, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.859297137386, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.945166901116, + "min_y": 5188.970122024127, + "max_x": 5203.954716034881, + "max_y": 5189.016219429334, + "center": [ + 5203.9499414679985, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.945166901116, + 5189.016219429334 + ], + [ + 5203.954716034881, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.99760259469, + "min_y": 5188.5599301886, + "max_x": 5203.959982644664, + "max_y": 5189.522310238574, + "center": [ + 5203.478792619677, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.478792619677, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872178407007, + "min_y": 5189.053412727055, + "max_x": 5203.911572246172, + "max_y": 5189.113914969733, + "center": [ + 5203.89187532659, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.113914969733 + ], + [ + 5203.872178407007, + 5189.053412727055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872178407007, + "min_y": 5189.018504312319, + "max_x": 5203.911572246172, + "max_y": 5189.074181814761, + "center": [ + 5203.89187532659, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.074181814761 + ], + [ + 5203.872178407007, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55372F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872178407007, + "min_y": 5189.113914969733, + "max_x": 5203.911572246172, + "max_y": 5189.164767731937, + "center": [ + 5203.89187532659, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.872178407007, + 5189.164767731937 + ], + [ + 5203.911572246172, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553730", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.716793625605, + "min_y": 5188.920442037618, + "max_x": 5203.962361916994, + "max_y": 5189.166010329008, + "center": [ + 5203.839577771299, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839577771299, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553731", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.829214826223, + "min_y": 5189.489310660221, + "max_x": 5203.839375086633, + "max_y": 5189.499470920632, + "center": [ + 5203.834294956428, + 5189.494390790427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.499470920632 + ], + [ + 5203.829214826223, + 5189.489310660221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553732", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830881184979, + "min_y": 5189.489690724397, + "max_x": 5203.839375086633, + "max_y": 5189.498184625934, + "center": [ + 5203.835128135806, + 5189.493937675166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.498184625934 + ], + [ + 5203.830881184979, + 5189.489690724397 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553733", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832547543907, + "min_y": 5189.490070788507, + "max_x": 5203.839375086633, + "max_y": 5189.496898331185, + "center": [ + 5203.83596131527, + 5189.4934845598455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.496898331185 + ], + [ + 5203.832547543907, + 5189.490070788507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553734", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837483912504, + "min_y": 5189.484051612215, + "max_x": 5203.83764213728, + "max_y": 5189.484209836924, + "center": [ + 5203.837563024892, + 5189.48413072457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83764213728, + 5189.484051612215 + ], + [ + 5203.837483912504, + 5189.484209836924 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553735", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83764213728, + "min_y": 5189.483949641245, + "max_x": 5203.83784607922, + "max_y": 5189.484051612215, + "center": [ + 5203.83774410825, + 5189.4840006267295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83784607922, + 5189.483949641245 + ], + [ + 5203.83764213728, + 5189.484051612215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553736", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83784607922, + "min_y": 5189.483847670292, + "max_x": 5203.837948050186, + "max_y": 5189.483949641245, + "center": [ + 5203.837897064703, + 5189.483898655768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837948050186, + 5189.483847670292 + ], + [ + 5203.83784607922, + 5189.483949641245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553737", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837948050186, + "min_y": 5189.483745699322, + "max_x": 5203.838151992124, + "max_y": 5189.483847670292, + "center": [ + 5203.838050021155, + 5189.483796684806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838151992124, + 5189.483745699322 + ], + [ + 5203.837948050186, + 5189.483847670292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553738", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838151992124, + "min_y": 5189.483745699322, + "max_x": 5203.838355934063, + "max_y": 5189.483745699322, + "center": [ + 5203.838253963093, + 5189.483745699322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.483745699322 + ], + [ + 5203.838151992124, + 5189.483745699322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553739", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.483745699322, + "max_x": 5203.838559318842, + "max_y": 5189.483745699322, + "center": [ + 5203.8384576264525, + 5189.483745699322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838559318842, + 5189.483745699322 + ], + [ + 5203.838355934063, + 5189.483745699322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838559318842, + "min_y": 5189.483745699322, + "max_x": 5203.838661289879, + "max_y": 5189.483847670292, + "center": [ + 5203.838610304361, + 5189.483796684806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838661289879, + 5189.483847670292 + ], + [ + 5203.838559318842, + 5189.483745699322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838661289879, + "min_y": 5189.483847670292, + "max_x": 5203.838865231788, + "max_y": 5189.483847670292, + "center": [ + 5203.838763260834, + 5189.483847670292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838865231788, + 5189.483847670292 + ], + [ + 5203.838661289879, + 5189.483847670292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838865231788, + "min_y": 5189.483847670292, + "max_x": 5203.838967202788, + "max_y": 5189.483847670292, + "center": [ + 5203.838916217288, + 5189.483847670292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838967202788, + 5189.483847670292 + ], + [ + 5203.838865231788, + 5189.483847670292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838967202788, + "min_y": 5189.483847670292, + "max_x": 5203.839069173688, + "max_y": 5189.483949641245, + "center": [ + 5203.839018188238, + 5189.483898655768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.483949641245 + ], + [ + 5203.838967202788, + 5189.483847670292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.483949641245, + "max_x": 5203.839171144728, + "max_y": 5189.484051612215, + "center": [ + 5203.839120159208, + 5189.4840006267295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839171144728, + 5189.484051612215 + ], + [ + 5203.839069173688, + 5189.483949641245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55373F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839171144728, + "min_y": 5189.484051612215, + "max_x": 5203.839273115701, + "max_y": 5189.484051612215, + "center": [ + 5203.839222130215, + 5189.484051612215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.484051612215 + ], + [ + 5203.839171144728, + 5189.484051612215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553740", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.484051612215, + "max_x": 5203.839375086633, + "max_y": 5189.484051612215, + "center": [ + 5203.839324101167, + 5189.484051612215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.484051612215 + ], + [ + 5203.839273115701, + 5189.484051612215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553741", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837011874604, + "min_y": 5189.484209836924, + "max_x": 5203.837483912504, + "max_y": 5189.488618162164, + "center": [ + 5203.837247893554, + 5189.486413999544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837011874604, + 5189.488618162164 + ], + [ + 5203.837483912504, + 5189.484209836924 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553742", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836345167629, + "min_y": 5189.488618162164, + "max_x": 5203.837011874604, + "max_y": 5189.490047693045, + "center": [ + 5203.8366785211165, + 5189.489332927605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836345167629, + 5189.490047693045 + ], + [ + 5203.837011874604, + 5189.488618162164 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553743", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834535538667, + "min_y": 5189.490047693045, + "max_x": 5203.836345167629, + "max_y": 5189.490524211628, + "center": [ + 5203.835440353148, + 5189.490285952337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834535538667, + 5189.490524211628 + ], + [ + 5203.836345167629, + 5189.490047693045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553744", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837924564152, + "min_y": 5189.483871156408, + "max_x": 5203.839375086633, + "max_y": 5189.485321678905, + "center": [ + 5203.838649825392, + 5189.484596417657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.485321678905 + ], + [ + 5203.837924564152, + 5189.483871156408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553745", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837434878191, + "min_y": 5189.484667765227, + "max_x": 5203.839375086633, + "max_y": 5189.486607973603, + "center": [ + 5203.838404982412, + 5189.485637869415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.486607973603 + ], + [ + 5203.837434878191, + 5189.484667765227 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553746", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837310465297, + "min_y": 5189.485829647111, + "max_x": 5203.839375086633, + "max_y": 5189.4878942683, + "center": [ + 5203.838342775965, + 5189.4868619577055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.4878942683 + ], + [ + 5203.837310465297, + 5189.485829647111 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553747", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837186052597, + "min_y": 5189.486991528944, + "max_x": 5203.839375086633, + "max_y": 5189.489180563048, + "center": [ + 5203.838280569615, + 5189.488086045996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.489180563048 + ], + [ + 5203.837186052597, + 5189.486991528944 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553748", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834213902727, + "min_y": 5189.490450852684, + "max_x": 5203.839375086633, + "max_y": 5189.495612036488, + "center": [ + 5203.83679449468, + 5189.493031444586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.495612036488 + ], + [ + 5203.834213902727, + 5189.490450852684 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553749", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835357194718, + "min_y": 5189.490307849926, + "max_x": 5203.839375086633, + "max_y": 5189.49432574179, + "center": [ + 5203.837366140675, + 5189.492316795858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.49432574179 + ], + [ + 5203.835357194718, + 5189.490307849926 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836357306011, + "min_y": 5189.490021666453, + "max_x": 5203.839375086633, + "max_y": 5189.493039447143, + "center": [ + 5203.837866196322, + 5189.491530556797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.493039447143 + ], + [ + 5203.836357306011, + 5189.490021666453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836766411119, + "min_y": 5189.489144476926, + "max_x": 5203.839375086633, + "max_y": 5189.491753152445, + "center": [ + 5203.838070748876, + 5189.490448814686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.491753152445 + ], + [ + 5203.836766411119, + 5189.489144476926 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.8370616397, + "min_y": 5189.488153410795, + "max_x": 5203.839375086633, + "max_y": 5189.490466857747, + "center": [ + 5203.838218363166, + 5189.489310134271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.490466857747 + ], + [ + 5203.8370616397, + 5189.488153410795 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814973963714, + "min_y": 5189.458347966692, + "max_x": 5203.835593544916, + "max_y": 5189.478967547873, + "center": [ + 5203.825283754315, + 5189.468657757283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835593544916, + 5189.478967547873 + ], + [ + 5203.814973963714, + 5189.458347966692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816651838574, + "min_y": 5189.458739546783, + "max_x": 5203.836736836907, + "max_y": 5189.478824545147, + "center": [ + 5203.82669433774, + 5189.468782045966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836736836907, + 5189.478824545147 + ], + [ + 5203.816651838574, + 5189.458739546783 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55374F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818329713296, + "min_y": 5189.45913112686, + "max_x": 5203.837658184179, + "max_y": 5189.478459597789, + "center": [ + 5203.827993948738, + 5189.468795362324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837658184179, + 5189.478459597789 + ], + [ + 5203.818329713296, + 5189.45913112686 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553750", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82168546295, + "min_y": 5189.45991428708, + "max_x": 5203.83912163115, + "max_y": 5189.477350455266, + "center": [ + 5203.83040354705, + 5189.468632371173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83912163115, + 5189.477350455266 + ], + [ + 5203.82168546295, + 5189.45991428708 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553751", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820007588124, + "min_y": 5189.459522706954, + "max_x": 5203.838448172401, + "max_y": 5189.477963291214, + "center": [ + 5203.829227880262, + 5189.4687429990845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838448172401, + 5189.477963291214 + ], + [ + 5203.820007588124, + 5189.459522706954 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553752", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831752711623, + "min_y": 5189.462263767619, + "max_x": 5203.839375086633, + "max_y": 5189.469886142529, + "center": [ + 5203.835563899128, + 5189.466074955074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.469886142529 + ], + [ + 5203.831752711623, + 5189.462263767619 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553753", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830074836835, + "min_y": 5189.461872187544, + "max_x": 5203.839375086633, + "max_y": 5189.471172437277, + "center": [ + 5203.834724961734, + 5189.46652231241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.471172437277 + ], + [ + 5203.830074836835, + 5189.461872187544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553754", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828396962073, + "min_y": 5189.461480607418, + "max_x": 5203.839375086633, + "max_y": 5189.472458731975, + "center": [ + 5203.833886024353, + 5189.4669696696965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.472458731975 + ], + [ + 5203.828396962073, + 5189.461480607418 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553755", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826719087254, + "min_y": 5189.461089027324, + "max_x": 5203.839375086633, + "max_y": 5189.473745026623, + "center": [ + 5203.833047086943, + 5189.467417026974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.473745026623 + ], + [ + 5203.826719087254, + 5189.461089027324 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553756", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825041212524, + "min_y": 5189.460697447248, + "max_x": 5203.839375086633, + "max_y": 5189.475031321322, + "center": [ + 5203.832208149579, + 5189.467864384285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.475031321322 + ], + [ + 5203.825041212524, + 5189.460697447248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553757", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823363337671, + "min_y": 5189.460305867156, + "max_x": 5203.839375086633, + "max_y": 5189.476317616019, + "center": [ + 5203.831369212152, + 5189.468311741588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.476317616019 + ], + [ + 5203.823363337671, + 5189.460305867156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553758", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.457242162642, + "max_x": 5203.839375086633, + "max_y": 5189.477119815127, + "center": [ + 5203.839375086633, + 5189.467180988884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.477119815127 + ], + [ + 5203.839375086633, + 5189.457242162642 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553759", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833430586483, + "min_y": 5189.462655347713, + "max_x": 5203.839375086633, + "max_y": 5189.468599847831, + "center": [ + 5203.836402836558, + 5189.465627597772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.468599847831 + ], + [ + 5203.833430586483, + 5189.462655347713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83711638862, + "min_y": 5189.45714346882, + "max_x": 5203.837691484249, + "max_y": 5189.460423533334, + "center": [ + 5203.837403936435, + 5189.458783501077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83711638862, + 5189.460423533334 + ], + [ + 5203.837691484249, + 5189.45714346882 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835890016784, + "min_y": 5189.460423533334, + "max_x": 5203.83711638862, + "max_y": 5189.462223309448, + "center": [ + 5203.836503202702, + 5189.46132342139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835890016784, + 5189.462223309448 + ], + [ + 5203.83711638862, + 5189.460423533334 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833682550603, + "min_y": 5189.462223309448, + "max_x": 5203.835890016784, + "max_y": 5189.462714150772, + "center": [ + 5203.834786283694, + 5189.462468730109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833682550603, + 5189.462714150772 + ], + [ + 5203.835890016784, + 5189.462223309448 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83764213728, + "min_y": 5189.457038220719, + "max_x": 5203.837744108181, + "max_y": 5189.457242162642, + "center": [ + 5203.83769312273, + 5189.45714019168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837744108181, + 5189.457038220719 + ], + [ + 5203.83764213728, + 5189.457242162642 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837744108181, + "min_y": 5189.456936249717, + "max_x": 5203.837948050186, + "max_y": 5189.457038220719, + "center": [ + 5203.837846079184, + 5189.456987235219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837948050186, + 5189.456936249717 + ], + [ + 5203.837744108181, + 5189.457038220719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55375F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837948050186, + "min_y": 5189.456936249717, + "max_x": 5203.838151992124, + "max_y": 5189.456936249717, + "center": [ + 5203.838050021155, + 5189.456936249717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838151992124, + 5189.456936249717 + ], + [ + 5203.837948050186, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553760", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838151992124, + "min_y": 5189.456936249717, + "max_x": 5203.838355934063, + "max_y": 5189.456936249717, + "center": [ + 5203.838253963093, + 5189.456936249717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.456936249717 + ], + [ + 5203.838151992124, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553761", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.456936249717, + "max_x": 5203.838457347941, + "max_y": 5189.456936249717, + "center": [ + 5203.838406641002, + 5189.456936249717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838457347941, + 5189.456936249717 + ], + [ + 5203.838355934063, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553762", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838457347941, + "min_y": 5189.456936249717, + "max_x": 5203.838661289879, + "max_y": 5189.456936249717, + "center": [ + 5203.8385593189105, + 5189.456936249717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838661289879, + 5189.456936249717 + ], + [ + 5203.838457347941, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553763", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838661289879, + "min_y": 5189.456936249717, + "max_x": 5203.838763260848, + "max_y": 5189.457038220719, + "center": [ + 5203.838712275364, + 5189.456987235219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838763260848, + 5189.457038220719 + ], + [ + 5203.838661289879, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553764", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838763260848, + "min_y": 5189.457038220719, + "max_x": 5203.838967202788, + "max_y": 5189.457038220719, + "center": [ + 5203.838865231818, + 5189.457038220719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838967202788, + 5189.457038220719 + ], + [ + 5203.838763260848, + 5189.457038220719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553765", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838967202788, + "min_y": 5189.457038220719, + "max_x": 5203.839069173688, + "max_y": 5189.457140191674, + "center": [ + 5203.839018188238, + 5189.4570892061965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.457140191674 + ], + [ + 5203.838967202788, + 5189.457038220719 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553766", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.457140191674, + "max_x": 5203.839171144728, + "max_y": 5189.457242162642, + "center": [ + 5203.839120159208, + 5189.457191177158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839171144728, + 5189.457242162642 + ], + [ + 5203.839069173688, + 5189.457140191674 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553767", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839171144728, + "min_y": 5189.457242162642, + "max_x": 5203.839273115701, + "max_y": 5189.457242162642, + "center": [ + 5203.839222130215, + 5189.457242162642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.457242162642 + ], + [ + 5203.839171144728, + 5189.457242162642 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553768", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.457242162642, + "max_x": 5203.839375086633, + "max_y": 5189.457242162642, + "center": [ + 5203.839324101167, + 5189.457242162642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.457242162642 + ], + [ + 5203.839273115701, + 5189.457242162642 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83800184605, + "min_y": 5189.456936249717, + "max_x": 5203.839375086633, + "max_y": 5189.458309490247, + "center": [ + 5203.838688466341, + 5189.4576228699825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.458309490247 + ], + [ + 5203.83800184605, + 5189.456936249717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837576810929, + "min_y": 5189.45779750929, + "max_x": 5203.839375086633, + "max_y": 5189.459595784946, + "center": [ + 5203.838475948781, + 5189.458696647118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.459595784946 + ], + [ + 5203.837576810929, + 5189.45779750929 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837384927268, + "min_y": 5189.45889192026, + "max_x": 5203.839375086633, + "max_y": 5189.460882079645, + "center": [ + 5203.8383800069505, + 5189.459886999952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.460882079645 + ], + [ + 5203.837384927268, + 5189.45889192026 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837193043473, + "min_y": 5189.459986331247, + "max_x": 5203.839375086633, + "max_y": 5189.46216837439, + "center": [ + 5203.838284065053, + 5189.461077352818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.46216837439 + ], + [ + 5203.837193043473, + 5189.459986331247 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838288254341, + "min_y": 5189.450412336475, + "max_x": 5203.839375086633, + "max_y": 5189.4513113853, + "center": [ + 5203.838831670487, + 5189.450861860887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.450412336475 + ], + [ + 5203.838288254341, + 5189.4513113853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835137841679, + "min_y": 5189.451710772021, + "max_x": 5203.836991026141, + "max_y": 5189.451910471555, + "center": [ + 5203.83606443391, + 5189.451810621787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836991026141, + 5189.451910471555 + ], + [ + 5203.835137841679, + 5189.451710772021 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55376F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836991026141, + "min_y": 5189.4513113853, + "max_x": 5203.838288254341, + "max_y": 5189.451910471555, + "center": [ + 5203.837639640241, + 5189.451610928427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838288254341, + 5189.4513113853 + ], + [ + 5203.836991026141, + 5189.451910471555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553770", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836803351742, + "min_y": 5189.460882934212, + "max_x": 5203.839375086633, + "max_y": 5189.463454669006, + "center": [ + 5203.838089219187, + 5189.462168801609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.463454669006 + ], + [ + 5203.836803351742, + 5189.460882934212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553771", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836282070004, + "min_y": 5189.461647947156, + "max_x": 5203.839375086633, + "max_y": 5189.464740963737, + "center": [ + 5203.837828578318, + 5189.463194455447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.464740963737 + ], + [ + 5203.836282070004, + 5189.461647947156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553772", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83562914399, + "min_y": 5189.462281315812, + "max_x": 5203.839375086633, + "max_y": 5189.466027258436, + "center": [ + 5203.8375021153115, + 5189.464154287124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.466027258436 + ], + [ + 5203.83562914399, + 5189.462281315812 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553773", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83457683547, + "min_y": 5189.462515301934, + "max_x": 5203.839375086633, + "max_y": 5189.467313553133, + "center": [ + 5203.836975961051, + 5189.464914427534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.467313553133 + ], + [ + 5203.83457683547, + 5189.462515301934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553774", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836916636523, + "min_y": 5189.478230250934, + "max_x": 5203.838154804476, + "max_y": 5189.478802055827, + "center": [ + 5203.8375357205, + 5189.47851615338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838154804476, + 5189.478230250934 + ], + [ + 5203.836916636523, + 5189.478802055827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553775", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83539273005, + "min_y": 5189.478802055827, + "max_x": 5203.836916636523, + "max_y": 5189.478992665746, + "center": [ + 5203.836154683287, + 5189.4788973607865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836916636523, + 5189.478802055827 + ], + [ + 5203.83539273005, + 5189.478992665746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553776", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.477119815127, + "max_x": 5203.839375086633, + "max_y": 5189.477323757084, + "center": [ + 5203.839375086633, + 5189.4772217861055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.477323757084 + ], + [ + 5203.839375086633, + 5189.477119815127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553777", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838154804476, + "min_y": 5189.477119815127, + "max_x": 5203.839375086633, + "max_y": 5189.478230250934, + "center": [ + 5203.838764945554, + 5189.47767503303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.477119815127 + ], + [ + 5203.838154804476, + 5189.478230250934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553778", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832647231453, + "min_y": 5189.433695226806, + "max_x": 5203.833666383983, + "max_y": 5189.434000582536, + "center": [ + 5203.833156807717, + 5189.433847904671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833666383983, + 5189.434000582536 + ], + [ + 5203.832647231453, + 5189.433695226806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553779", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836166539615, + "min_y": 5189.433233933344, + "max_x": 5203.839375086633, + "max_y": 5189.436442480349, + "center": [ + 5203.837770813124, + 5189.4348382068465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.436442480349 + ], + [ + 5203.836166539615, + 5189.433233933344 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836928340494, + "min_y": 5189.431146509793, + "max_x": 5203.837234253334, + "max_y": 5189.431860306614, + "center": [ + 5203.837081296913, + 5189.431503408203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837234253334, + 5189.431146509793 + ], + [ + 5203.836928340494, + 5189.431860306614 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837435323951, + "min_y": 5189.430643833555, + "max_x": 5203.839375086633, + "max_y": 5189.432583596255, + "center": [ + 5203.838405205292, + 5189.431613714905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.432583596255 + ], + [ + 5203.837435323951, + 5189.430643833555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837059489076, + "min_y": 5189.43155429343, + "max_x": 5203.839375086633, + "max_y": 5189.433869890954, + "center": [ + 5203.838217287854, + 5189.432712092192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.433869890954 + ], + [ + 5203.837059489076, + 5189.43155429343 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833666383983, + "min_y": 5189.434000582536, + "max_x": 5203.834074267797, + "max_y": 5189.434000582536, + "center": [ + 5203.8338703258905, + 5189.434000582536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834074267797, + 5189.434000582536 + ], + [ + 5203.833666383983, + 5189.434000582536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834074267797, + "min_y": 5189.434000582536, + "max_x": 5203.834074267797, + "max_y": 5189.434102553487, + "center": [ + 5203.834074267797, + 5189.4340515680115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834074267797, + 5189.434102553487 + ], + [ + 5203.834074267797, + 5189.434000582536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55377F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834074267797, + "min_y": 5189.434102553487, + "max_x": 5203.834176238835, + "max_y": 5189.434102553487, + "center": [ + 5203.834125253316, + 5189.434102553487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834176238835, + 5189.434102553487 + ], + [ + 5203.834074267797, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553780", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834176238835, + "min_y": 5189.434102553487, + "max_x": 5203.834380180742, + "max_y": 5189.434102553487, + "center": [ + 5203.834278209789, + 5189.434102553487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834380180742, + 5189.434102553487 + ], + [ + 5203.834176238835, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553781", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834380180742, + "min_y": 5189.434102553487, + "max_x": 5203.834482151742, + "max_y": 5189.434102553487, + "center": [ + 5203.834431166242, + 5189.434102553487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834482151742, + 5189.434102553487 + ], + [ + 5203.834380180742, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553782", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834482151742, + "min_y": 5189.434102553487, + "max_x": 5203.834686093681, + "max_y": 5189.434102553487, + "center": [ + 5203.834584122711, + 5189.434102553487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834686093681, + 5189.434102553487 + ], + [ + 5203.834482151742, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553783", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834686093681, + "min_y": 5189.434102553487, + "max_x": 5203.834890035588, + "max_y": 5189.434102553487, + "center": [ + 5203.834788064634, + 5189.434102553487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834890035588, + 5189.434102553487 + ], + [ + 5203.834686093681, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553784", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834890035588, + "min_y": 5189.434000582536, + "max_x": 5203.835195391302, + "max_y": 5189.434102553487, + "center": [ + 5203.835042713445, + 5189.4340515680115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835195391302, + 5189.434000582536 + ], + [ + 5203.834890035588, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553785", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835195391302, + "min_y": 5189.433898611565, + "max_x": 5203.83539933324, + "max_y": 5189.434000582536, + "center": [ + 5203.835297362271, + 5189.433949597051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83539933324, + 5189.433898611565 + ], + [ + 5203.835195391302, + 5189.434000582536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553786", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83539933324, + "min_y": 5189.433695226806, + "max_x": 5203.835603275182, + "max_y": 5189.433898611565, + "center": [ + 5203.835501304211, + 5189.433796919186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835603275182, + 5189.433695226806 + ], + [ + 5203.83539933324, + 5189.433898611565 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553787", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835603275182, + "min_y": 5189.433491284883, + "max_x": 5203.835909188094, + "max_y": 5189.433695226806, + "center": [ + 5203.835756231638, + 5189.433593255844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835909188094, + 5189.433491284883 + ], + [ + 5203.835603275182, + 5189.433695226806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553788", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835909188094, + "min_y": 5189.433185371957, + "max_x": 5203.836215101, + "max_y": 5189.433491284883, + "center": [ + 5203.836062144546, + 5189.433338328419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836215101, + 5189.433185371957 + ], + [ + 5203.835909188094, + 5189.433491284883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553789", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836215101, + "min_y": 5189.432777488112, + "max_x": 5203.836419042938, + "max_y": 5189.433185371957, + "center": [ + 5203.8363170719695, + 5189.4329814300345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836419042938, + 5189.432777488112 + ], + [ + 5203.836215101, + 5189.433185371957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836419042938, + "min_y": 5189.432369604215, + "max_x": 5203.836724955845, + "max_y": 5189.432777488112, + "center": [ + 5203.836571999392, + 5189.432573546163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836724955845, + 5189.432369604215 + ], + [ + 5203.836419042938, + 5189.432777488112 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836724955845, + "min_y": 5189.431860306614, + "max_x": 5203.836928340494, + "max_y": 5189.432369604215, + "center": [ + 5203.836826648169, + 5189.432114955414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836928340494, + 5189.431860306614 + ], + [ + 5203.836724955845, + 5189.432369604215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836666476924, + "min_y": 5189.432447576044, + "max_x": 5203.839375086633, + "max_y": 5189.435156185652, + "center": [ + 5203.838020781778, + 5189.4338018808485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.435156185652 + ], + [ + 5203.836666476924, + 5189.432447576044 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837234253334, + "min_y": 5189.430636654946, + "max_x": 5203.837438195338, + "max_y": 5189.431146509793, + "center": [ + 5203.8373362243365, + 5189.430891582369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837438195338, + 5189.430636654946 + ], + [ + 5203.837234253334, + 5189.431146509793 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837438195338, + "min_y": 5189.430433270218, + "max_x": 5203.83764213728, + "max_y": 5189.430636654946, + "center": [ + 5203.837540166309, + 5189.430534962582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83764213728, + 5189.430433270218 + ], + [ + 5203.837438195338, + 5189.430636654946 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55378F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83764213728, + "min_y": 5189.430331299266, + "max_x": 5203.837744108181, + "max_y": 5189.430433270218, + "center": [ + 5203.83769312273, + 5189.430382284741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837744108181, + 5189.430331299266 + ], + [ + 5203.83764213728, + 5189.430433270218 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553790", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837744108181, + "min_y": 5189.430229328262, + "max_x": 5203.837948050186, + "max_y": 5189.430331299266, + "center": [ + 5203.837846079184, + 5189.430280313763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837948050186, + 5189.430229328262 + ], + [ + 5203.837744108181, + 5189.430331299266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553791", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837948050186, + "min_y": 5189.430229328262, + "max_x": 5203.838151992124, + "max_y": 5189.430229328262, + "center": [ + 5203.838050021155, + 5189.430229328262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838151992124, + 5189.430229328262 + ], + [ + 5203.837948050186, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553792", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838151992124, + "min_y": 5189.430229328262, + "max_x": 5203.838355934063, + "max_y": 5189.430229328262, + "center": [ + 5203.838253963093, + 5189.430229328262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.430229328262 + ], + [ + 5203.838151992124, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553793", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.430229328262, + "max_x": 5203.838457347941, + "max_y": 5189.430229328262, + "center": [ + 5203.838406641002, + 5189.430229328262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838457347941, + 5189.430229328262 + ], + [ + 5203.838355934063, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553794", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838457347941, + "min_y": 5189.430229328262, + "max_x": 5203.838661289879, + "max_y": 5189.430229328262, + "center": [ + 5203.8385593189105, + 5189.430229328262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838661289879, + 5189.430229328262 + ], + [ + 5203.838457347941, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553795", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838661289879, + "min_y": 5189.430229328262, + "max_x": 5203.838763260848, + "max_y": 5189.430331299266, + "center": [ + 5203.838712275364, + 5189.430280313763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838763260848, + 5189.430331299266 + ], + [ + 5203.838661289879, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553796", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838763260848, + "min_y": 5189.430331299266, + "max_x": 5203.838967202788, + "max_y": 5189.430331299266, + "center": [ + 5203.838865231818, + 5189.430331299266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838967202788, + 5189.430331299266 + ], + [ + 5203.838763260848, + 5189.430331299266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553797", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838967202788, + "min_y": 5189.430331299266, + "max_x": 5203.839069173688, + "max_y": 5189.430433270218, + "center": [ + 5203.839018188238, + 5189.430382284741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.430433270218 + ], + [ + 5203.838967202788, + 5189.430331299266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553798", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.430433270218, + "max_x": 5203.839171144728, + "max_y": 5189.430535241188, + "center": [ + 5203.839120159208, + 5189.430484255703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839171144728, + 5189.430535241188 + ], + [ + 5203.839069173688, + 5189.430433270218 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553799", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839171144728, + "min_y": 5189.430535241188, + "max_x": 5203.839273115701, + "max_y": 5189.430535241188, + "center": [ + 5203.839222130215, + 5189.430535241188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.430535241188 + ], + [ + 5203.839171144728, + 5189.430535241188 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.430535241188, + "max_x": 5203.839375086633, + "max_y": 5189.430535241188, + "center": [ + 5203.839324101167, + 5189.430535241188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.430535241188 + ], + [ + 5203.839273115701, + 5189.430535241188 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838307113255, + "min_y": 5189.430229328262, + "max_x": 5203.839375086633, + "max_y": 5189.431297301591, + "center": [ + 5203.838841099943, + 5189.4307633149265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.431297301591 + ], + [ + 5203.838307113255, + 5189.430229328262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823677129364, + "min_y": 5189.431656364642, + "max_x": 5203.826429231156, + "max_y": 5189.432369604215, + "center": [ + 5203.8250531802605, + 5189.432012984428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826429231156, + 5189.432369604215 + ], + [ + 5203.823677129364, + 5189.431656364642 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826429231156, + "min_y": 5189.432369604215, + "max_x": 5203.828977391004, + "max_y": 5189.432879459065, + "center": [ + 5203.82770331108, + 5189.43262453164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828977391004, + 5189.432879459065 + ], + [ + 5203.826429231156, + 5189.432369604215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828977391004, + "min_y": 5189.432879459065, + "max_x": 5203.831016253103, + "max_y": 5189.433389313914, + "center": [ + 5203.8299968220535, + 5189.433134386489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831016253103, + 5189.433389313914 + ], + [ + 5203.828977391004, + 5189.432879459065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55379F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831016253103, + "min_y": 5189.433389313914, + "max_x": 5203.832647231453, + "max_y": 5189.433695226806, + "center": [ + 5203.831831742278, + 5189.43354227036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832647231453, + 5189.433695226806 + ], + [ + 5203.831016253103, + 5189.433389313914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814400557269, + "min_y": 5189.429617502444, + "max_x": 5203.817560542805, + "max_y": 5189.430331299266, + "center": [ + 5203.815980550037, + 5189.429974400855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817560542805, + 5189.430331299266 + ], + [ + 5203.814400557269, + 5189.429617502444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817560542805, + "min_y": 5189.430331299266, + "max_x": 5203.820618557498, + "max_y": 5189.431044538839, + "center": [ + 5203.819089550152, + 5189.430687919053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820618557498, + 5189.431044538839 + ], + [ + 5203.817560542805, + 5189.430331299266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820618557498, + "min_y": 5189.431044538839, + "max_x": 5203.823677129364, + "max_y": 5189.431656364642, + "center": [ + 5203.822147843432, + 5189.43135045174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823677129364, + 5189.431656364642 + ], + [ + 5203.820618557498, + 5189.431044538839 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819587400161, + "min_y": 5189.430804035701, + "max_x": 5203.839276912543, + "max_y": 5189.450493547972, + "center": [ + 5203.829432156352, + 5189.440648791837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839276912543, + 5189.450493547972 + ], + [ + 5203.819587400161, + 5189.430804035701 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814583250843, + "min_y": 5189.429658770428, + "max_x": 5203.83681610215, + "max_y": 5189.451891621686, + "center": [ + 5203.825699676496, + 5189.440775196057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83681610215, + 5189.451891621686 + ], + [ + 5203.814583250843, + 5189.429658770428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816244885728, + "min_y": 5189.430034110614, + "max_x": 5203.83776418589, + "max_y": 5189.451553410759, + "center": [ + 5203.8270045358095, + 5189.440793760687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83776418589, + 5189.451553410759 + ], + [ + 5203.816244885728, + 5189.430034110614 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817909837122, + "min_y": 5189.430412767299, + "max_x": 5203.838572949553, + "max_y": 5189.451075879826, + "center": [ + 5203.8282413933375, + 5189.440744323562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838572949553, + 5189.451075879826 + ], + [ + 5203.817909837122, + 5189.430412767299 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822846077995, + "min_y": 5189.431490124077, + "max_x": 5203.839375086633, + "max_y": 5189.448019132665, + "center": [ + 5203.831110582314, + 5189.439754628371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.448019132665 + ], + [ + 5203.822846077995, + 5189.431490124077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.821238136345, + "min_y": 5189.431168477228, + "max_x": 5203.839375086633, + "max_y": 5189.449305427362, + "center": [ + 5203.830306611489, + 5189.440236952295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.449305427362 + ], + [ + 5203.821238136345, + 5189.431168477228 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831213792637, + "min_y": 5189.433426365209, + "max_x": 5203.839375086633, + "max_y": 5189.441587659175, + "center": [ + 5203.835294439635, + 5189.437507012191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.441587659175 + ], + [ + 5203.831213792637, + 5189.433426365209 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.829515041105, + "min_y": 5189.433013908345, + "max_x": 5203.839375086633, + "max_y": 5189.442873953839, + "center": [ + 5203.834445063869, + 5189.437943931092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.442873953839 + ], + [ + 5203.829515041105, + 5189.433013908345 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82787340299, + "min_y": 5189.432658564911, + "max_x": 5203.839375086633, + "max_y": 5189.444160248537, + "center": [ + 5203.833624244811, + 5189.4384094067245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.444160248537 + ], + [ + 5203.82787340299, + 5189.432658564911 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826252291581, + "min_y": 5189.432323748262, + "max_x": 5203.839375086633, + "max_y": 5189.445446543235, + "center": [ + 5203.832813689107, + 5189.438885145749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.445446543235 + ], + [ + 5203.826252291581, + 5189.432323748262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82451602224, + "min_y": 5189.431873773619, + "max_x": 5203.839375086633, + "max_y": 5189.446732837966, + "center": [ + 5203.831945554436, + 5189.439303305793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.446732837966 + ], + [ + 5203.82451602224, + 5189.431873773619 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.430535241188, + "max_x": 5203.839375086633, + "max_y": 5189.450412336475, + "center": [ + 5203.839375086633, + 5189.440473788832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.450412336475 + ], + [ + 5203.839375086633, + 5189.430535241188 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835472227719, + "min_y": 5189.433825916218, + "max_x": 5203.839375086633, + "max_y": 5189.437728775081, + "center": [ + 5203.837423657176, + 5189.4357773456495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.437728775081 + ], + [ + 5203.835472227719, + 5189.433825916218 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834462570324, + "min_y": 5189.434102553487, + "max_x": 5203.839375086633, + "max_y": 5189.43901506978, + "center": [ + 5203.836918828478, + 5189.436558811633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.43901506978 + ], + [ + 5203.834462570324, + 5189.434102553487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832821018521, + "min_y": 5189.433747296447, + "max_x": 5203.839375086633, + "max_y": 5189.440301364476, + "center": [ + 5203.836098052577, + 5189.437024330462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.440301364476 + ], + [ + 5203.832821018521, + 5189.433747296447 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.94928527596, + "min_y": 5188.806559060236, + "max_x": 5203.627922642049, + "max_y": 5189.485196426325, + "center": [ + 5203.288603959005, + 5189.145877743281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.288603959005, + 5189.145877743281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.360574284702, + "min_y": 5188.917537769092, + "max_x": 5203.6318360416435, + "max_y": 5189.188799526033, + "center": [ + 5203.496205163173, + 5189.053168647562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.496205163173, + 5189.053168647562 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.493207351701, + "min_y": 5189.0257248182825, + "max_x": 5203.621644304016, + "max_y": 5189.154161770597, + "center": [ + 5203.557425827858, + 5189.08994329444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.557425827858, + 5189.08994329444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.924418923953, + "min_y": 5188.900075493058, + "max_x": 5203.683611583664, + "max_y": 5189.659268152768, + "center": [ + 5203.304015253809, + 5189.279671822913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.304015253809, + 5189.279671822913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.992483184678, + "min_y": 5188.818496004081, + "max_x": 5203.626683178723, + "max_y": 5189.452695998126, + "center": [ + 5203.309583181701, + 5189.135596001103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.309583181701, + 5189.135596001103 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.186586151569, + "min_y": 5188.970122024154, + "max_x": 5204.069590198727, + "max_y": 5189.8531260713125, + "center": [ + 5203.628088175148, + 5189.411624047733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088175148, + 5189.411624047733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.703207218794, + "min_y": 5188.920442037618, + "max_x": 5203.948775510184, + "max_y": 5189.166010329008, + "center": [ + 5203.825991364489, + 5189.043226183313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825991364489, + 5189.043226183313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537B9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.705586491222, + "min_y": 5188.5599301886, + "max_x": 5204.667966541196, + "max_y": 5189.522310238574, + "center": [ + 5204.186776516209, + 5189.041120213587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.186776516209, + 5189.041120213587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.074181814761, + "max_x": 5203.753996889518, + "max_y": 5189.113914969733, + "center": [ + 5203.753996889518, + 5189.094048392247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.753996889518, + 5189.113914969733 + ], + [ + 5203.753996889518, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79339072868, + "min_y": 5189.018504312319, + "max_x": 5203.79339072868, + "max_y": 5189.053412727055, + "center": [ + 5203.79339072868, + 5189.0359585196875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79339072868, + 5189.053412727055 + ], + [ + 5203.79339072868, + 5189.018504312319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.053412727055, + "max_x": 5203.79339072868, + "max_y": 5189.113914969733, + "center": [ + 5203.773693809098, + 5189.083663848394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79339072868, + 5189.053412727055 + ], + [ + 5203.753996889518, + 5189.113914969733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.018504312319, + "max_x": 5203.79339072868, + "max_y": 5189.074181814761, + "center": [ + 5203.773693809098, + 5189.04634306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79339072868, + 5189.018504312319 + ], + [ + 5203.753996889518, + 5189.074181814761 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.113914969733, + "max_x": 5203.79339072868, + "max_y": 5189.164767731937, + "center": [ + 5203.773693809098, + 5189.139341350835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.753996889518, + 5189.113914969733 + ], + [ + 5203.79339072868, + 5189.164767731937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537BF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.706454106176, + "min_y": 5188.967293533322, + "max_x": 5203.906089890693, + "max_y": 5189.166929317838, + "center": [ + 5203.806271998435, + 5189.06711142558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806271998435, + 5189.06711142558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7108531008, + "min_y": 5188.970122024127, + "max_x": 5203.720402234671, + "max_y": 5189.016219429334, + "center": [ + 5203.715627667736, + 5188.993170726731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.720402234671, + 5189.016219429334 + ], + [ + 5203.7108531008, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.628088175148, + "min_y": 5188.970122024127, + "max_x": 5203.7108531008, + "max_y": 5188.970122024127, + "center": [ + 5203.669470637974, + 5188.970122024127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088175148, + 5188.970122024127 + ], + [ + 5203.7108531008, + 5188.970122024127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.534640992788, + "min_y": 5189.087219721874, + "max_x": 5203.574034831951, + "max_y": 5189.147721964569, + "center": [ + 5203.55433791237, + 5189.117470843222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.574034831951, + 5189.147721964569 + ], + [ + 5203.534640992788, + 5189.087219721874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.534640992788, + "min_y": 5189.052311307106, + "max_x": 5203.574034831951, + "max_y": 5189.10798880958, + "center": [ + 5203.55433791237, + 5189.080150058343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.574034831951, + 5189.10798880958 + ], + [ + 5203.534640992788, + 5189.052311307106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.534640992788, + "min_y": 5189.147721964569, + "max_x": 5203.574034831951, + "max_y": 5189.198574726724, + "center": [ + 5203.55433791237, + 5189.173148345646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.534640992788, + 5189.198574726724 + ], + [ + 5203.574034831951, + 5189.147721964569 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.574034831951, + "min_y": 5189.10798880958, + "max_x": 5203.574034831951, + "max_y": 5189.147721964569, + "center": [ + 5203.574034831951, + 5189.127855387074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.574034831951, + 5189.147721964569 + ], + [ + 5203.574034831951, + 5189.10798880958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.580074179632, + "min_y": 5188.97257930037, + "max_x": 5203.581572084855, + "max_y": 5189.019124623564, + "center": [ + 5203.5808231322435, + 5188.995851961967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.580074179632, + 5189.019124623564 + ], + [ + 5203.581572084855, + 5188.97257930037 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.455853314462, + "min_y": 5189.052311307106, + "max_x": 5203.455853314462, + "max_y": 5189.087219721874, + "center": [ + 5203.455853314462, + 5189.06976551449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.455853314462, + 5189.087219721874 + ], + [ + 5203.455853314462, + 5189.052311307106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.534640992788, + "min_y": 5189.052311307106, + "max_x": 5203.534640992788, + "max_y": 5189.087219721874, + "center": [ + 5203.534640992788, + 5189.06976551449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.534640992788, + 5189.087219721874 + ], + [ + 5203.534640992788, + 5189.052311307106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.455853314462, + "min_y": 5189.052311307106, + "max_x": 5203.534640992788, + "max_y": 5189.052311307106, + "center": [ + 5203.495247153625, + 5189.052311307106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.534640992788, + 5189.052311307106 + ], + [ + 5203.455853314462, + 5189.052311307106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.455853314462, + "min_y": 5189.087219721874, + "max_x": 5203.534640992788, + "max_y": 5189.087219721874, + "center": [ + 5203.495247153625, + 5189.087219721874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.534640992788, + 5189.087219721874 + ], + [ + 5203.455853314462, + 5189.087219721874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.455853314462, + "min_y": 5189.198574726724, + "max_x": 5203.534640992788, + "max_y": 5189.198574726724, + "center": [ + 5203.495247153625, + 5189.198574726724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.455853314462, + 5189.198574726724 + ], + [ + 5203.534640992788, + 5189.198574726724 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537CE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.465497183416, + "min_y": 5189.165771667829, + "max_x": 5203.611278902469, + "max_y": 5189.311553386882, + "center": [ + 5203.538388042943, + 5189.238662527356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.538388042943, + 5189.238662527356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.480993040319, + "max_x": 5203.790751650482, + "max_y": 5189.481196982276, + "center": [ + 5203.790751650482, + 5189.481095011297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.480993040319 + ], + [ + 5203.790751650482, + 5189.481196982276 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802066527545, + "min_y": 5189.499239714567, + "max_x": 5203.803289622048, + "max_y": 5189.499545627494, + "center": [ + 5203.802678074797, + 5189.49939267103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802066527545, + 5189.499239714567 + ], + [ + 5203.803289622048, + 5189.499545627494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.486863736071, + "max_x": 5203.803477843464, + "max_y": 5189.499589929106, + "center": [ + 5203.7971147469725, + 5189.493226832588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803477843464, + 5189.499589929106 + ], + [ + 5203.790751650482, + 5189.486863736071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801148788845, + "min_y": 5189.499035772645, + "max_x": 5203.802066527545, + "max_y": 5189.499239714567, + "center": [ + 5203.801607658195, + 5189.499137743605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801148788845, + 5189.499035772645 + ], + [ + 5203.802066527545, + 5189.499239714567 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800944846905, + "min_y": 5189.498933801694, + "max_x": 5203.801148788845, + "max_y": 5189.499035772645, + "center": [ + 5203.8010468178745, + 5189.498984787169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800944846905, + 5189.498933801694 + ], + [ + 5203.801148788845, + 5189.499035772645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797886832211, + "min_y": 5189.498016620145, + "max_x": 5203.800944846905, + "max_y": 5189.498933801694, + "center": [ + 5203.799415839558, + 5189.498475210919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797886832211, + 5189.498016620145 + ], + [ + 5203.800944846905, + 5189.498933801694 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7976834475, + "min_y": 5189.498016620145, + "max_x": 5203.797886832211, + "max_y": 5189.498016620145, + "center": [ + 5203.7977851398555, + 5189.498016620145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.7976834475, + 5189.498016620145 + ], + [ + 5203.797886832211, + 5189.498016620145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79747950556, + "min_y": 5189.498016620145, + "max_x": 5203.7976834475, + "max_y": 5189.498016620145, + "center": [ + 5203.7975814765305, + 5189.498016620145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79747950556, + 5189.498016620145 + ], + [ + 5203.7976834475, + 5189.498016620145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797173592653, + "min_y": 5189.497914649193, + "max_x": 5203.79747950556, + "max_y": 5189.498016620145, + "center": [ + 5203.797326549106, + 5189.4979656346695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797173592653, + 5189.497914649193 + ], + [ + 5203.79747950556, + 5189.498016620145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796867679741, + "min_y": 5189.497914649193, + "max_x": 5203.797173592653, + "max_y": 5189.497914649193, + "center": [ + 5203.797020636197, + 5189.497914649193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796867679741, + 5189.497914649193 + ], + [ + 5203.797173592653, + 5189.497914649193 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796561766801, + "min_y": 5189.497812678189, + "max_x": 5203.796867679741, + "max_y": 5189.497914649193, + "center": [ + 5203.79671472327, + 5189.4978636636915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796561766801, + 5189.497812678189 + ], + [ + 5203.796867679741, + 5189.497914649193 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796153882954, + "min_y": 5189.497812678189, + "max_x": 5203.796561766801, + "max_y": 5189.497812678189, + "center": [ + 5203.796357824877, + 5189.497812678189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796153882954, + 5189.497812678189 + ], + [ + 5203.796561766801, + 5189.497812678189 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795746556306, + "min_y": 5189.497812678189, + "max_x": 5203.796153882954, + "max_y": 5189.497812678189, + "center": [ + 5203.79595021963, + 5189.497812678189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795746556306, + 5189.497812678189 + ], + [ + 5203.796153882954, + 5189.497812678189 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795338672364, + "min_y": 5189.497812678189, + "max_x": 5203.795746556306, + "max_y": 5189.497914649193, + "center": [ + 5203.795542614334, + 5189.4978636636915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795338672364, + 5189.497914649193 + ], + [ + 5203.795746556306, + 5189.497812678189 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794930788548, + "min_y": 5189.497914649193, + "max_x": 5203.795338672364, + "max_y": 5189.498016620145, + "center": [ + 5203.795134730456, + 5189.4979656346695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794930788548, + 5189.498016620145 + ], + [ + 5203.795338672364, + 5189.497914649193 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794522904671, + "min_y": 5189.498016620145, + "max_x": 5203.794930788548, + "max_y": 5189.498118591115, + "center": [ + 5203.79472684661, + 5189.498067605629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794522904671, + 5189.498118591115 + ], + [ + 5203.794930788548, + 5189.498016620145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794217549056, + "min_y": 5189.498118591115, + "max_x": 5203.794522904671, + "max_y": 5189.498322533037, + "center": [ + 5203.794370226864, + 5189.498220562076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794217549056, + 5189.498322533037 + ], + [ + 5203.794522904671, + 5189.498118591115 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793809665175, + "min_y": 5189.498322533037, + "max_x": 5203.794217549056, + "max_y": 5189.498628445964, + "center": [ + 5203.794013607116, + 5189.4984754895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793809665175, + 5189.498628445964 + ], + [ + 5203.794217549056, + 5189.498322533037 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793503752269, + "min_y": 5189.498628445964, + "max_x": 5203.793809665175, + "max_y": 5189.498933801694, + "center": [ + 5203.793656708722, + 5189.498781123829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793503752269, + 5189.498933801694 + ], + [ + 5203.793809665175, + 5189.498628445964 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79329981033, + "min_y": 5189.498933801694, + "max_x": 5203.793503752269, + "max_y": 5189.499341685539, + "center": [ + 5203.7934017812995, + 5189.499137743616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79329981033, + 5189.499341685539 + ], + [ + 5203.793503752269, + 5189.498933801694 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793095868324, + "min_y": 5189.499341685539, + "max_x": 5203.79329981033, + "max_y": 5189.499749569417, + "center": [ + 5203.793197839326, + 5189.499545627477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793095868324, + 5189.499749569417 + ], + [ + 5203.79329981033, + 5189.499341685539 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.49995351139, + "max_x": 5203.790751650482, + "max_y": 5189.500157453313, + "center": [ + 5203.790751650482, + 5189.500055482351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.49995351139 + ], + [ + 5203.790751650482, + 5189.500157453313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.499647598463, + "max_x": 5203.790751650482, + "max_y": 5189.49995351139, + "center": [ + 5203.790751650482, + 5189.499800554926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.499647598463 + ], + [ + 5203.790751650482, + 5189.49995351139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.498526474993, + "max_x": 5203.790751650482, + "max_y": 5189.499647598463, + "center": [ + 5203.790751650482, + 5189.499087036727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.498526474993 + ], + [ + 5203.790751650482, + 5189.499647598463 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.497608736266, + "max_x": 5203.790751650482, + "max_y": 5189.498526474993, + "center": [ + 5203.790751650482, + 5189.498067605629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.497608736266 + ], + [ + 5203.790751650482, + 5189.498526474993 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.496283670873, + "max_x": 5203.790751650482, + "max_y": 5189.497608736266, + "center": [ + 5203.790751650482, + 5189.49694620357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.496283670873 + ], + [ + 5203.790751650482, + 5189.497608736266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.494856634495, + "max_x": 5203.790751650482, + "max_y": 5189.496283670873, + "center": [ + 5203.790751650482, + 5189.495570152683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.494856634495 + ], + [ + 5203.790751650482, + 5189.496283670873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.493327627145, + "max_x": 5203.790751650482, + "max_y": 5189.494856634495, + "center": [ + 5203.790751650482, + 5189.49409213082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.493327627145 + ], + [ + 5203.790751650482, + 5189.494856634495 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.491594677956, + "max_x": 5203.790751650482, + "max_y": 5189.493327627145, + "center": [ + 5203.790751650482, + 5189.49246115255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.491594677956 + ], + [ + 5203.790751650482, + 5189.493327627145 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.489963699604, + "max_x": 5203.790751650482, + "max_y": 5189.491594677956, + "center": [ + 5203.790751650482, + 5189.49077918878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.489963699604 + ], + [ + 5203.790751650482, + 5189.491594677956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.488230750332, + "max_x": 5203.790751650482, + "max_y": 5189.489963699604, + "center": [ + 5203.790751650482, + 5189.489097224969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.488230750332 + ], + [ + 5203.790751650482, + 5189.489963699604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.486701743017, + "max_x": 5203.790751650482, + "max_y": 5189.488230750332, + "center": [ + 5203.790751650482, + 5189.487466246675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.486701743017 + ], + [ + 5203.790751650482, + 5189.488230750332 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.485172735668, + "max_x": 5203.790751650482, + "max_y": 5189.486701743017, + "center": [ + 5203.790751650482, + 5189.485937239342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.485172735668 + ], + [ + 5203.790751650482, + 5189.486701743017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.483847670292, + "max_x": 5203.790751650482, + "max_y": 5189.485172735668, + "center": [ + 5203.790751650482, + 5189.484510202979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.483847670292 + ], + [ + 5203.790751650482, + 5189.485172735668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.482624018672, + "max_x": 5203.790751650482, + "max_y": 5189.483847670292, + "center": [ + 5203.790751650482, + 5189.483235844482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.482624018672 + ], + [ + 5203.790751650482, + 5189.483847670292 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.481808808094, + "max_x": 5203.790751650482, + "max_y": 5189.482624018672, + "center": [ + 5203.790751650482, + 5189.482216413383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.481808808094 + ], + [ + 5203.790751650482, + 5189.482624018672 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.481196982276, + "max_x": 5203.790751650482, + "max_y": 5189.481808808094, + "center": [ + 5203.790751650482, + 5189.481502895185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.481196982276 + ], + [ + 5203.790751650482, + 5189.481808808094 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.497154093654, + "max_x": 5203.793179620914, + "max_y": 5189.499582064104, + "center": [ + 5203.791965635698, + 5189.498368078879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793179620914, + 5189.499582064104 + ], + [ + 5203.790751650482, + 5189.497154093654 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.495867798957, + "max_x": 5203.793660845761, + "max_y": 5189.498776994239, + "center": [ + 5203.792206248121, + 5189.497322396598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793660845761, + 5189.498776994239 + ], + [ + 5203.790751650482, + 5189.495867798957 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.494581504225, + "max_x": 5203.794382506716, + "max_y": 5189.498212360564, + "center": [ + 5203.792567078599, + 5189.496396932394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794382506716, + 5189.498212360564 + ], + [ + 5203.790751650482, + 5189.494581504225 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.493295209526, + "max_x": 5203.795364606555, + "max_y": 5189.49790816562, + "center": [ + 5203.793058128518, + 5189.495601687573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795364606555, + 5189.49790816562 + ], + [ + 5203.790751650482, + 5189.493295209526 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.49200891483, + "max_x": 5203.79655541376, + "max_y": 5189.497812678189, + "center": [ + 5203.7936535321205, + 5189.494910796509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79655541376, + 5189.497812678189 + ], + [ + 5203.790751650482, + 5189.49200891483 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.490722620131, + "max_x": 5203.798113691807, + "max_y": 5189.498084661439, + "center": [ + 5203.794432671144, + 5189.494403640785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798113691807, + 5189.498084661439 + ], + [ + 5203.790751650482, + 5189.490722620131 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.489436325466, + "max_x": 5203.799951064294, + "max_y": 5189.498635739333, + "center": [ + 5203.795351357388, + 5189.4940360324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799951064294, + 5189.498635739333 + ], + [ + 5203.790751650482, + 5189.489436325466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.488150030769, + "max_x": 5203.801776993276, + "max_y": 5189.499175373583, + "center": [ + 5203.796264321879, + 5189.493662702176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801776993276, + 5189.499175373583 + ], + [ + 5203.790751650482, + 5189.488150030769 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805022571305, + "min_y": 5189.49995351139, + "max_x": 5203.807061433436, + "max_y": 5189.500361395236, + "center": [ + 5203.80604200237, + 5189.500157453313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805022571305, + 5189.49995351139 + ], + [ + 5203.807061433436, + 5189.500361395236 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805105173691, + "min_y": 5189.482614142323, + "max_x": 5203.808629201252, + "max_y": 5189.484615478181, + "center": [ + 5203.806867187472, + 5189.483614810251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805105173691, + 5189.482614142323 + ], + [ + 5203.808629201252, + 5189.484615478181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5537FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803105052429, + "min_y": 5189.481184611441, + "max_x": 5203.805105173691, + "max_y": 5189.482614142323, + "center": [ + 5203.80410511306, + 5189.481899376882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803105052429, + 5189.481184611441 + ], + [ + 5203.805105173691, + 5189.482614142323 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553800", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.485577441339, + "max_x": 5203.805154016658, + "max_y": 5189.499979807637, + "center": [ + 5203.79795283357, + 5189.492778624488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805154016658, + 5189.499979807637 + ], + [ + 5203.790751650482, + 5189.485577441339 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553801", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.484291146641, + "max_x": 5203.806761994922, + "max_y": 5189.500301491166, + "center": [ + 5203.798756822702, + 5189.492296318904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806761994922, + 5189.500301491166 + ], + [ + 5203.790751650482, + 5189.484291146641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553802", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803289622048, + "min_y": 5189.499545627494, + "max_x": 5203.805022571305, + "max_y": 5189.49995351139, + "center": [ + 5203.804156096677, + 5189.499749569442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803289622048, + 5189.499545627494 + ], + [ + 5203.805022571305, + 5189.49995351139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553803", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.46628302087, + "max_x": 5203.802005882548, + "max_y": 5189.477537252919, + "center": [ + 5203.796378766515, + 5189.471910136895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802005882548, + 5189.477537252919 + ], + [ + 5203.790751650482, + 5189.46628302087 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553804", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.464996726172, + "max_x": 5203.802000431728, + "max_y": 5189.476245507406, + "center": [ + 5203.796376041105, + 5189.470621116789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802000431728, + 5189.476245507406 + ], + [ + 5203.790751650482, + 5189.464996726172 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790649679509, + "min_y": 5189.463608460505, + "max_x": 5203.802099320215, + "max_y": 5189.475058101223, + "center": [ + 5203.796374499862, + 5189.469333280864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802099320215, + 5189.475058101223 + ], + [ + 5203.790649679509, + 5189.463608460505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.466314792848, + "max_x": 5203.790955592421, + "max_y": 5189.468047184923, + "center": [ + 5203.790853621451, + 5189.467180988886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.466314792848 + ], + [ + 5203.790955592421, + 5189.468047184923 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553807", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790999593508, + "min_y": 5189.458813195823, + "max_x": 5203.804512224438, + "max_y": 5189.472325826626, + "center": [ + 5203.797755908973, + 5189.465569511224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804512224438, + 5189.472325826626 + ], + [ + 5203.790999593508, + 5189.458813195823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553808", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790874021422, + "min_y": 5189.459973918308, + "max_x": 5203.803581519863, + "max_y": 5189.47268141675, + "center": [ + 5203.797227770642, + 5189.466327667529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803581519863, + 5189.47268141675 + ], + [ + 5203.790874021422, + 5189.459973918308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553809", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790742189419, + "min_y": 5189.46241467578, + "max_x": 5203.80239414619, + "max_y": 5189.474066632555, + "center": [ + 5203.796568167804, + 5189.468240654167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80239414619, + 5189.474066632555 + ], + [ + 5203.790742189419, + 5189.46241467578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790766820784, + "min_y": 5189.461153012464, + "max_x": 5203.802918003546, + "max_y": 5189.473304195163, + "center": [ + 5203.796842412165, + 5189.467228603813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802918003546, + 5189.473304195163 + ], + [ + 5203.790766820784, + 5189.461153012464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792539694756, + "min_y": 5189.453921823389, + "max_x": 5203.812105718402, + "max_y": 5189.4734878471, + "center": [ + 5203.802322706579, + 5189.463704835244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812105718402, + 5189.4734878471 + ], + [ + 5203.792539694756, + 5189.453921823389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792105288051, + "min_y": 5189.454773711544, + "max_x": 5203.81042122657, + "max_y": 5189.473089649982, + "center": [ + 5203.80126325731, + 5189.4639316807625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81042122657, + 5189.473089649982 + ], + [ + 5203.792105288051, + 5189.454773711544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791724433171, + "min_y": 5189.455679151276, + "max_x": 5203.808736734705, + "max_y": 5189.472691452749, + "center": [ + 5203.800230583938, + 5189.464185302013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808736734705, + 5189.472691452749 + ], + [ + 5203.791724433171, + 5189.455679151276 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791449798866, + "min_y": 5189.456690811659, + "max_x": 5203.807052242843, + "max_y": 5189.472293255598, + "center": [ + 5203.799251020855, + 5189.464492033629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807052242843, + 5189.472293255598 + ], + [ + 5203.791449798866, + 5189.456690811659 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55380F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791192914894, + "min_y": 5189.457720222486, + "max_x": 5203.805584028343, + "max_y": 5189.47211133593, + "center": [ + 5203.798388471619, + 5189.464915779208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805584028343, + 5189.47211133593 + ], + [ + 5203.791192914894, + 5189.457720222486 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553810", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801878680561, + "min_y": 5189.451015618144, + "max_x": 5203.803268570791, + "max_y": 5189.453960702969, + "center": [ + 5203.802573625676, + 5189.452488160557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801878680561, + 5189.451015618144 + ], + [ + 5203.803268570791, + 5189.453960702969 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791464890072, + "min_y": 5189.455509213371, + "max_x": 5203.791770803013, + "max_y": 5189.456630336825, + "center": [ + 5203.791617846542, + 5189.4560697750985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791770803013, + 5189.455509213371 + ], + [ + 5203.791464890072, + 5189.456630336825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553812", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790649679509, + "min_y": 5189.462339039455, + "max_x": 5203.790751650482, + "max_y": 5189.463154249984, + "center": [ + 5203.790700664996, + 5189.46274664472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.462339039455 + ], + [ + 5203.790649679509, + 5189.463154249984 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553813", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.461319886955, + "max_x": 5203.790751650482, + "max_y": 5189.462339039455, + "center": [ + 5203.790751650482, + 5189.4618294632055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.461319886955 + ], + [ + 5203.790751650482, + 5189.462339039455 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553814", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.460198206288, + "max_x": 5203.790853621416, + "max_y": 5189.461319886955, + "center": [ + 5203.790802635949, + 5189.460759046621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.460198206288 + ], + [ + 5203.790751650482, + 5189.461319886955 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553815", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.459077082834, + "max_x": 5203.790955592421, + "max_y": 5189.460198206288, + "center": [ + 5203.790904606918, + 5189.459637644561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.459077082834 + ], + [ + 5203.790853621416, + 5189.460198206288 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553816", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.457853988445, + "max_x": 5203.791159534361, + "max_y": 5189.459077082834, + "center": [ + 5203.7910575633905, + 5189.458465535639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791159534361, + 5189.457853988445 + ], + [ + 5203.790955592421, + 5189.459077082834 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553817", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791159534361, + "min_y": 5189.456630336825, + "max_x": 5203.791464890072, + "max_y": 5189.457853988445, + "center": [ + 5203.791312212217, + 5189.457242162634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791464890072, + 5189.456630336825 + ], + [ + 5203.791159534361, + 5189.457853988445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553818", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79034376657, + "min_y": 5189.440149242983, + "max_x": 5203.80247615924, + "max_y": 5189.452281635654, + "center": [ + 5203.796409962904, + 5189.446215439319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80247615924, + 5189.452281635654 + ], + [ + 5203.79034376657, + 5189.440149242983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553819", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79034376657, + "min_y": 5189.438862948285, + "max_x": 5203.801913628191, + "max_y": 5189.450432809991, + "center": [ + 5203.7961286973805, + 5189.444647879138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801913628191, + 5189.450432809991 + ], + [ + 5203.79034376657, + 5189.438862948285 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790378774574, + "min_y": 5189.43761166156, + "max_x": 5203.801986396445, + "max_y": 5189.449219283532, + "center": [ + 5203.796182585509, + 5189.443415472546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801986396445, + 5189.449219283532 + ], + [ + 5203.790378774574, + 5189.43761166156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801878680561, + "min_y": 5189.446925224573, + "max_x": 5203.802123958118, + "max_y": 5189.451015618144, + "center": [ + 5203.802001319339, + 5189.448970421358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802123958118, + 5189.446925224573 + ], + [ + 5203.801878680561, + 5189.451015618144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802123958118, + "min_y": 5189.445698108956, + "max_x": 5203.803023293201, + "max_y": 5189.446925224573, + "center": [ + 5203.802573625659, + 5189.446311666765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803023293201, + 5189.445698108956 + ], + [ + 5203.802123958118, + 5189.446925224573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796153882954, + "min_y": 5189.451635988129, + "max_x": 5203.796255853855, + "max_y": 5189.451839372855, + "center": [ + 5203.796204868404, + 5189.451737680492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796153882954, + 5189.451635988129 + ], + [ + 5203.796255853855, + 5189.451839372855 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795950498248, + "min_y": 5189.451432046173, + "max_x": 5203.796153882954, + "max_y": 5189.451635988129, + "center": [ + 5203.796052190601, + 5189.451534017151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795950498248, + 5189.451432046173 + ], + [ + 5203.796153882954, + 5189.451635988129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55381F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795644585301, + "min_y": 5189.45112613328, + "max_x": 5203.795950498248, + "max_y": 5189.451432046173, + "center": [ + 5203.795797541774, + 5189.451279089726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795644585301, + 5189.45112613328 + ], + [ + 5203.795950498248, + 5189.451432046173 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553820", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795134730457, + "min_y": 5189.450820220355, + "max_x": 5203.795644585301, + "max_y": 5189.45112613328, + "center": [ + 5203.795389657878, + 5189.450973176818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795134730457, + 5189.450820220355 + ], + [ + 5203.795644585301, + 5189.45112613328 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553821", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794624875603, + "min_y": 5189.450514307479, + "max_x": 5203.795134730457, + "max_y": 5189.450820220355, + "center": [ + 5203.79487980303, + 5189.450667263917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794624875603, + 5189.450514307479 + ], + [ + 5203.795134730457, + 5189.450820220355 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553822", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794115578023, + "min_y": 5189.45000500986, + "max_x": 5203.794624875603, + "max_y": 5189.450514307479, + "center": [ + 5203.794370226813, + 5189.45025965867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794115578023, + 5189.45000500986 + ], + [ + 5203.794624875603, + 5189.450514307479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793503752269, + "min_y": 5189.449393184059, + "max_x": 5203.794115578023, + "max_y": 5189.45000500986, + "center": [ + 5203.793809665146, + 5189.44969909696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793503752269, + 5189.449393184059 + ], + [ + 5203.794115578023, + 5189.45000500986 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553824", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792891926419, + "min_y": 5189.448577416283, + "max_x": 5203.793503752269, + "max_y": 5189.449393184059, + "center": [ + 5203.793197839344, + 5189.4489853001705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792891926419, + 5189.448577416283 + ], + [ + 5203.793503752269, + 5189.449393184059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553825", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792382628831, + "min_y": 5189.447762205739, + "max_x": 5203.792891926419, + "max_y": 5189.448577416283, + "center": [ + 5203.792637277625, + 5189.448169811011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792382628831, + 5189.447762205739 + ], + [ + 5203.792891926419, + 5189.448577416283 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553826", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791770803013, + "min_y": 5189.446641082287, + "max_x": 5203.792382628831, + "max_y": 5189.447762205739, + "center": [ + 5203.792076715921, + 5189.447201644013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791770803013, + 5189.446641082287 + ], + [ + 5203.792382628831, + 5189.447762205739 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553827", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791260948166, + "min_y": 5189.445417430617, + "max_x": 5203.791770803013, + "max_y": 5189.446641082287, + "center": [ + 5203.7915158755895, + 5189.446029256453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791260948166, + 5189.445417430617 + ], + [ + 5203.791770803013, + 5189.446641082287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553828", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.443888423318, + "max_x": 5203.791260948166, + "max_y": 5189.445417430617, + "center": [ + 5203.791057284791, + 5189.444652926968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.443888423318 + ], + [ + 5203.791260948166, + 5189.445417430617 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553829", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790547708475, + "min_y": 5189.442257444999, + "max_x": 5203.790853621416, + "max_y": 5189.443888423318, + "center": [ + 5203.790700664946, + 5189.443072934158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790547708475, + 5189.442257444999 + ], + [ + 5203.790853621416, + 5189.443888423318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79034376657, + "min_y": 5189.44032055377, + "max_x": 5203.790547708475, + "max_y": 5189.442257444999, + "center": [ + 5203.7904457375225, + 5189.441288999385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79034376657, + 5189.44032055377 + ], + [ + 5203.790547708475, + 5189.442257444999 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79034376657, + "min_y": 5189.438078306846, + "max_x": 5203.79034376657, + "max_y": 5189.44032055377, + "center": [ + 5203.79034376657, + 5189.439199430308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79034376657, + 5189.438078306846 + ], + [ + 5203.79034376657, + 5189.44032055377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791770803013, + "min_y": 5189.454388089868, + "max_x": 5203.792280657866, + "max_y": 5189.455509213371, + "center": [ + 5203.7920257304395, + 5189.45494865162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792280657866, + 5189.454388089868 + ], + [ + 5203.791770803013, + 5189.455509213371 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792280657866, + "min_y": 5189.453470351174, + "max_x": 5203.792790512711, + "max_y": 5189.454388089868, + "center": [ + 5203.7925355852885, + 5189.453929220521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792790512711, + 5189.453470351174 + ], + [ + 5203.792280657866, + 5189.454388089868 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792790512711, + "min_y": 5189.45265514063, + "max_x": 5203.793503752269, + "max_y": 5189.453470351174, + "center": [ + 5203.79314713249, + 5189.453062745902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793503752269, + 5189.45265514063 + ], + [ + 5203.792790512711, + 5189.453470351174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55382F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793503752269, + "min_y": 5189.452043314827, + "max_x": 5203.794217549056, + "max_y": 5189.45265514063, + "center": [ + 5203.793860650663, + 5189.4523492277285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794217549056, + 5189.452043314827 + ], + [ + 5203.793503752269, + 5189.45265514063 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553830", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794217549056, + "min_y": 5189.451635988129, + "max_x": 5203.795134730457, + "max_y": 5189.452043314827, + "center": [ + 5203.794676139756, + 5189.451839651478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795134730457, + 5189.451635988129 + ], + [ + 5203.794217549056, + 5189.452043314827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553831", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795134730457, + "min_y": 5189.451534017177, + "max_x": 5203.796255853855, + "max_y": 5189.451635988129, + "center": [ + 5203.795695292156, + 5189.451585002653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796255853855, + 5189.451534017177 + ], + [ + 5203.795134730457, + 5189.451635988129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553832", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.464275930649, + "max_x": 5203.790751650482, + "max_y": 5189.466314792848, + "center": [ + 5203.790751650482, + 5189.465295361748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.464275930649 + ], + [ + 5203.790751650482, + 5189.466314792848 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553833", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790649679509, + "min_y": 5189.4637660758, + "max_x": 5203.790751650482, + "max_y": 5189.464275930649, + "center": [ + 5203.790700664996, + 5189.464021003225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790649679509, + 5189.4637660758 + ], + [ + 5203.790751650482, + 5189.464275930649 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553834", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790649679509, + "min_y": 5189.463154249984, + "max_x": 5203.790649679509, + "max_y": 5189.4637660758, + "center": [ + 5203.790649679509, + 5189.463460162891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790649679509, + 5189.463154249984 + ], + [ + 5203.790649679509, + 5189.4637660758 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553835", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803023293201, + "min_y": 5189.445289062156, + "max_x": 5203.80490373071, + "max_y": 5189.445698108956, + "center": [ + 5203.803963511955, + 5189.445493585556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80490373071, + 5189.445289062156 + ], + [ + 5203.803023293201, + 5189.445698108956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553836", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803268570791, + "min_y": 5189.453960702969, + "max_x": 5203.805639547432, + "max_y": 5189.456169513534, + "center": [ + 5203.804454059112, + 5189.455065108252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803268570791, + 5189.453960702969 + ], + [ + 5203.805639547432, + 5189.456169513534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553837", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790919042116, + "min_y": 5189.467736707239, + "max_x": 5203.802289355592, + "max_y": 5189.479107020684, + "center": [ + 5203.796604198854, + 5189.473421863961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802289355592, + 5189.479107020684 + ], + [ + 5203.790919042116, + 5189.467736707239 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553838", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792382628831, + "min_y": 5189.478546851507, + "max_x": 5203.792586570771, + "max_y": 5189.478648822476, + "center": [ + 5203.7924845998, + 5189.478597836992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792586570771, + 5189.478546851507 + ], + [ + 5203.792382628831, + 5189.478648822476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553839", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793197839357, + "min_y": 5189.478342909583, + "max_x": 5203.797377534591, + "max_y": 5189.479158677325, + "center": [ + 5203.795287686974, + 5189.478750793454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797377534591, + 5189.479158677325 + ], + [ + 5203.793197839357, + 5189.478342909583 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796459795867, + "min_y": 5189.478240938631, + "max_x": 5203.797377534591, + "max_y": 5189.479158677325, + "center": [ + 5203.796918665229, + 5189.478699807978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796459795867, + 5189.478240938631 + ], + [ + 5203.797377534591, + 5189.479158677325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.480789655593, + "max_x": 5203.790751650482, + "max_y": 5189.480891626545, + "center": [ + 5203.790751650482, + 5189.480840641068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.480789655593 + ], + [ + 5203.790751650482, + 5189.480891626545 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.480585713671, + "max_x": 5203.790853621416, + "max_y": 5189.480789655593, + "center": [ + 5203.790802635949, + 5189.480687684632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.480585713671 + ], + [ + 5203.790751650482, + 5189.480789655593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.480381771698, + "max_x": 5203.790955592421, + "max_y": 5189.480585713671, + "center": [ + 5203.790904606918, + 5189.480483742685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.480381771698 + ], + [ + 5203.790853621416, + 5189.480585713671 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.480177829775, + "max_x": 5203.791057563323, + "max_y": 5189.480381771698, + "center": [ + 5203.791006577872, + 5189.480279800737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791057563323, + 5189.480177829775 + ], + [ + 5203.790955592421, + 5189.480381771698 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55383F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791057563323, + "min_y": 5189.479973887819, + "max_x": 5203.791159534361, + "max_y": 5189.480177829775, + "center": [ + 5203.791108548842, + 5189.480075858797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791159534361, + 5189.479973887819 + ], + [ + 5203.791057563323, + 5189.480177829775 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553840", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791159534361, + "min_y": 5189.479667974927, + "max_x": 5203.791362919131, + "max_y": 5189.479973887819, + "center": [ + 5203.791261226746, + 5189.479820931373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791362919131, + 5189.479667974927 + ], + [ + 5203.791159534361, + 5189.479973887819 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553841", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791362919131, + "min_y": 5189.47946403297, + "max_x": 5203.791566861073, + "max_y": 5189.479667974927, + "center": [ + 5203.791464890102, + 5189.479566003949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791566861073, + 5189.47946403297 + ], + [ + 5203.791362919131, + 5189.479667974927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553842", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791566861073, + "min_y": 5189.479260648329, + "max_x": 5203.79166883198, + "max_y": 5189.47946403297, + "center": [ + 5203.791617846527, + 5189.4793623406495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79166883198, + 5189.479260648329 + ], + [ + 5203.791566861073, + 5189.47946403297 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553843", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79166883198, + "min_y": 5189.479056706354, + "max_x": 5203.791872773985, + "max_y": 5189.479260648329, + "center": [ + 5203.791770802983, + 5189.479158677341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791872773985, + 5189.479056706354 + ], + [ + 5203.79166883198, + 5189.479260648329 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553844", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791872773985, + "min_y": 5189.478852764432, + "max_x": 5203.792076715925, + "max_y": 5189.479056706354, + "center": [ + 5203.791974744955, + 5189.478954735393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792076715925, + 5189.478852764432 + ], + [ + 5203.791872773985, + 5189.479056706354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553845", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792076715925, + "min_y": 5189.478648822476, + "max_x": 5203.792382628831, + "max_y": 5189.478852764432, + "center": [ + 5203.792229672377, + 5189.478750793454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792382628831, + 5189.478648822476 + ], + [ + 5203.792076715925, + 5189.478852764432 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553846", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803200298626, + "min_y": 5189.47241682858, + "max_x": 5203.804057489911, + "max_y": 5189.472893334762, + "center": [ + 5203.8036288942685, + 5189.472655081671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804057489911, + 5189.47241682858 + ], + [ + 5203.803200298626, + 5189.472893334762 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553847", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792586570771, + "min_y": 5189.478444880553, + "max_x": 5203.792891926419, + "max_y": 5189.478546851507, + "center": [ + 5203.792739248594, + 5189.47849586603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792891926419, + 5189.478444880553 + ], + [ + 5203.792586570771, + 5189.478546851507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553848", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792891926419, + "min_y": 5189.478342909583, + "max_x": 5203.793197839357, + "max_y": 5189.478444880553, + "center": [ + 5203.793044882888, + 5189.478393895068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793197839357, + 5189.478342909583 + ], + [ + 5203.792891926419, + 5189.478444880553 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553849", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795950498248, + "min_y": 5189.477731640979, + "max_x": 5203.796459795867, + "max_y": 5189.478240938631, + "center": [ + 5203.796205147058, + 5189.477986289805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795950498248, + 5189.477731640979 + ], + [ + 5203.796459795867, + 5189.478240938631 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795440643395, + "min_y": 5189.47722178613, + "max_x": 5203.795950498248, + "max_y": 5189.477731640979, + "center": [ + 5203.795695570821, + 5189.477476713555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795440643395, + 5189.47722178613 + ], + [ + 5203.795950498248, + 5189.477731640979 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794930788548, + "min_y": 5189.476711931281, + "max_x": 5203.795440643395, + "max_y": 5189.47722178613, + "center": [ + 5203.7951857159715, + 5189.476966858705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794930788548, + 5189.476711931281 + ], + [ + 5203.795440643395, + 5189.47722178613 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794421490962, + "min_y": 5189.47610066266, + "max_x": 5203.794930788548, + "max_y": 5189.476711931281, + "center": [ + 5203.794676139755, + 5189.476406296971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794421490962, + 5189.47610066266 + ], + [ + 5203.794930788548, + 5189.476711931281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793809665175, + "min_y": 5189.475488836858, + "max_x": 5203.794421490962, + "max_y": 5189.47610066266, + "center": [ + 5203.794115578068, + 5189.475794749759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793809665175, + 5189.475488836858 + ], + [ + 5203.794421490962, + 5189.47610066266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79329981033, + "min_y": 5189.474775040038, + "max_x": 5203.793809665175, + "max_y": 5189.475488836858, + "center": [ + 5203.793554737753, + 5189.475131938449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79329981033, + 5189.474775040038 + ], + [ + 5203.793809665175, + 5189.475488836858 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55384F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792790512711, + "min_y": 5189.474061800463, + "max_x": 5203.79329981033, + "max_y": 5189.474775040038, + "center": [ + 5203.79304516152, + 5189.47441842025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792790512711, + 5189.474061800463 + ], + [ + 5203.79329981033, + 5189.474775040038 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553850", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792280657866, + "min_y": 5189.473144061736, + "max_x": 5203.792790512711, + "max_y": 5189.474061800463, + "center": [ + 5203.7925355852885, + 5189.473602931099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792280657866, + 5189.473144061736 + ], + [ + 5203.792790512711, + 5189.474061800463 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553851", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791872773985, + "min_y": 5189.472124909236, + "max_x": 5203.792280657866, + "max_y": 5189.473144061736, + "center": [ + 5203.792076715926, + 5189.472634485486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791872773985, + 5189.472124909236 + ], + [ + 5203.792280657866, + 5189.473144061736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553852", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791464890072, + "min_y": 5189.470901814894, + "max_x": 5203.791872773985, + "max_y": 5189.472124909236, + "center": [ + 5203.791668832029, + 5189.471513362065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791464890072, + 5189.470901814894 + ], + [ + 5203.791872773985, + 5189.472124909236 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553853", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791159534361, + "min_y": 5189.469576749469, + "max_x": 5203.791464890072, + "max_y": 5189.470901814894, + "center": [ + 5203.791312212217, + 5189.470239282182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791159534361, + 5189.469576749469 + ], + [ + 5203.791464890072, + 5189.470901814894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553854", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.468047184923, + "max_x": 5203.791159534361, + "max_y": 5189.469576749469, + "center": [ + 5203.7910575633905, + 5189.4688119671955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.468047184923 + ], + [ + 5203.791159534361, + 5189.469576749469 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553855", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801962130569, + "min_y": 5189.476705408825, + "max_x": 5203.802057368755, + "max_y": 5189.478516147199, + "center": [ + 5203.802009749663, + 5189.477610778013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801962130569, + 5189.476705408825 + ], + [ + 5203.802057368755, + 5189.478516147199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553856", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801962130569, + "min_y": 5189.474418164389, + "max_x": 5203.802152614848, + "max_y": 5189.476705408825, + "center": [ + 5203.802057372708, + 5189.475561786607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802152614848, + 5189.474418164389 + ], + [ + 5203.801962130569, + 5189.476705408825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553857", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802152614848, + "min_y": 5189.472893334762, + "max_x": 5203.803200298626, + "max_y": 5189.474418164389, + "center": [ + 5203.802676456737, + 5189.473655749576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803200298626, + 5189.472893334762 + ], + [ + 5203.802152614848, + 5189.474418164389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553858", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804057489911, + "min_y": 5189.472035621207, + "max_x": 5203.805962373086, + "max_y": 5189.47241682858, + "center": [ + 5203.805009931499, + 5189.472226224894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805962373086, + 5189.472035621207 + ], + [ + 5203.804057489911, + 5189.47241682858 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553859", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802057368755, + "min_y": 5189.478516147199, + "max_x": 5203.803105052429, + "max_y": 5189.481184611441, + "center": [ + 5203.802581210592, + 5189.47985037932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802057368755, + 5189.478516147199 + ], + [ + 5203.803105052429, + 5189.481184611441 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.480891626545, + "max_x": 5203.790751650482, + "max_y": 5189.480993040319, + "center": [ + 5203.790751650482, + 5189.480942333432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.480891626545 + ], + [ + 5203.790751650482, + 5189.480993040319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801352730787, + "min_y": 5189.42655948783, + "max_x": 5203.803289622048, + "max_y": 5189.426967371725, + "center": [ + 5203.8023211764175, + 5189.426763429778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803289622048, + 5189.426967371725 + ], + [ + 5203.801352730787, + 5189.42655948783 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791159534361, + "min_y": 5189.43094256787, + "max_x": 5203.79166883198, + "max_y": 5189.432369604215, + "center": [ + 5203.791414183171, + 5189.4316560860425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79166883198, + 5189.43094256787 + ], + [ + 5203.791159534361, + 5189.432369604215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790649679509, + "min_y": 5189.432369604215, + "max_x": 5203.791159534361, + "max_y": 5189.434000582536, + "center": [ + 5203.790904606935, + 5189.433185093376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791159534361, + 5189.432369604215 + ], + [ + 5203.790649679509, + 5189.434000582536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79166883198, + "min_y": 5189.429821444417, + "max_x": 5203.792382628831, + "max_y": 5189.43094256787, + "center": [ + 5203.792025730405, + 5189.430382006143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792382628831, + 5189.429821444417 + ], + [ + 5203.79166883198, + 5189.43094256787 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55385F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792382628831, + "min_y": 5189.428802291949, + "max_x": 5203.793095868324, + "max_y": 5189.429821444417, + "center": [ + 5203.792739248577, + 5189.4293118681835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793095868324, + 5189.428802291949 + ], + [ + 5203.792382628831, + 5189.429821444417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553860", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793095868324, + "min_y": 5189.427986524226, + "max_x": 5203.793911636118, + "max_y": 5189.428802291949, + "center": [ + 5203.79350375222, + 5189.428394408087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793911636118, + 5189.427986524226 + ], + [ + 5203.793095868324, + 5189.428802291949 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553861", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793911636118, + "min_y": 5189.427374698325, + "max_x": 5203.794726846609, + "max_y": 5189.427986524226, + "center": [ + 5203.794319241363, + 5189.427680611276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794726846609, + 5189.427374698325 + ], + [ + 5203.793911636118, + 5189.427986524226 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553862", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794726846609, + "min_y": 5189.426865400722, + "max_x": 5203.795542614368, + "max_y": 5189.427374698325, + "center": [ + 5203.795134730488, + 5189.427120049524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795542614368, + 5189.426865400722 + ], + [ + 5203.794726846609, + 5189.427374698325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553863", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795542614368, + "min_y": 5189.42655948783, + "max_x": 5203.796357824892, + "max_y": 5189.426865400722, + "center": [ + 5203.79595021963, + 5189.426712444276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796357824892, + 5189.42655948783 + ], + [ + 5203.795542614368, + 5189.426865400722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553864", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796357824892, + "min_y": 5189.426355545873, + "max_x": 5203.797071621647, + "max_y": 5189.42655948783, + "center": [ + 5203.796714723269, + 5189.426457516851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797071621647, + 5189.426355545873 + ], + [ + 5203.796357824892, + 5189.42655948783 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553865", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797071621647, + "min_y": 5189.42615160395, + "max_x": 5203.7976834475, + "max_y": 5189.426355545873, + "center": [ + 5203.797377534574, + 5189.426253574911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.7976834475, + 5189.42615160395 + ], + [ + 5203.797071621647, + 5189.426355545873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553866", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7976834475, + "min_y": 5189.426049632981, + "max_x": 5203.798294716154, + "max_y": 5189.42615160395, + "center": [ + 5203.797989081827, + 5189.426100618465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798294716154, + 5189.426049632981 + ], + [ + 5203.7976834475, + 5189.42615160395 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553867", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798294716154, + "min_y": 5189.426049632981, + "max_x": 5203.798702600003, + "max_y": 5189.426049632981, + "center": [ + 5203.798498658078, + 5189.426049632981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798702600003, + 5189.426049632981 + ], + [ + 5203.798294716154, + 5189.426049632981 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553868", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798702600003, + "min_y": 5189.425947662027, + "max_x": 5203.799008512941, + "max_y": 5189.426049632981, + "center": [ + 5203.798855556472, + 5189.4259986475045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799008512941, + 5189.425947662027 + ], + [ + 5203.798702600003, + 5189.426049632981 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553869", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799008512941, + "min_y": 5189.425947662027, + "max_x": 5203.799110483917, + "max_y": 5189.425947662027, + "center": [ + 5203.799059498429, + 5189.425947662027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799110483917, + 5189.425947662027 + ], + [ + 5203.799008512941, + 5189.425947662027 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799110483917, + "min_y": 5189.425947662027, + "max_x": 5203.801352730787, + "max_y": 5189.42655948783, + "center": [ + 5203.800231607352, + 5189.4262535749285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801352730787, + 5189.42655948783 + ], + [ + 5203.799110483917, + 5189.425947662027 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805634397092, + "min_y": 5189.42757864033, + "max_x": 5203.808386498848, + "max_y": 5189.428190466149, + "center": [ + 5203.80701044797, + 5189.427884553239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808386498848, + 5189.428190466149 + ], + [ + 5203.805634397092, + 5189.42757864033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808386498848, + "min_y": 5189.428190466149, + "max_x": 5203.811240571535, + "max_y": 5189.42890426292, + "center": [ + 5203.809813535192, + 5189.428547364534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811240571535, + 5189.42890426292 + ], + [ + 5203.808386498848, + 5189.428190466149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803289622048, + "min_y": 5189.426967371725, + "max_x": 5203.805634397092, + "max_y": 5189.42757864033, + "center": [ + 5203.80446200957, + 5189.4272730060275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805634397092, + 5189.42757864033 + ], + [ + 5203.803289622048, + 5189.426967371725 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790950518409, + "min_y": 5189.433038226635, + "max_x": 5203.803505506152, + "max_y": 5189.445593214379, + "center": [ + 5203.79722801228, + 5189.439315720507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803505506152, + 5189.445593214379 + ], + [ + 5203.790950518409, + 5189.433038226635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55386F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791267019827, + "min_y": 5189.432068433354, + "max_x": 5203.804561987161, + "max_y": 5189.445363400774, + "center": [ + 5203.797914503493, + 5189.438715917064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804561987161, + 5189.445363400774 + ], + [ + 5203.791267019827, + 5189.432068433354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553870", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790648067492, + "min_y": 5189.434022070402, + "max_x": 5203.802727587556, + "max_y": 5189.446101590462, + "center": [ + 5203.796687827524, + 5189.440061830432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802727587556, + 5189.446101590462 + ], + [ + 5203.790648067492, + 5189.434022070402 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553871", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790558303054, + "min_y": 5189.435218600777, + "max_x": 5203.802183577731, + "max_y": 5189.446843875355, + "center": [ + 5203.796370940392, + 5189.441031238066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802183577731, + 5189.446843875355 + ], + [ + 5203.790558303054, + 5189.435218600777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553872", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79034376657, + "min_y": 5189.434000582536, + "max_x": 5203.790649679509, + "max_y": 5189.438078306846, + "center": [ + 5203.79049672304, + 5189.436039444691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790649679509, + 5189.434000582536 + ], + [ + 5203.79034376657, + 5189.438078306846 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553873", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790468538812, + "min_y": 5189.436415131186, + "max_x": 5203.802059164667, + "max_y": 5189.448005757072, + "center": [ + 5203.79626385174, + 5189.442210444129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802059164667, + 5189.448005757072 + ], + [ + 5203.790468538812, + 5189.436415131186 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553874", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793764110149, + "min_y": 5189.428134050189, + "max_x": 5203.81254134821, + "max_y": 5189.446911288232, + "center": [ + 5203.80315272918, + 5189.43752266921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81254134821, + 5189.446911288232 + ], + [ + 5203.793764110149, + 5189.428134050189 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553875", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793120962803, + "min_y": 5189.428777197488, + "max_x": 5203.810908166566, + "max_y": 5189.446564401272, + "center": [ + 5203.802014564684, + 5189.43767079938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810908166566, + 5189.446564401272 + ], + [ + 5203.793120962803, + 5189.428777197488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553876", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792586953652, + "min_y": 5189.429529483185, + "max_x": 5203.809274984894, + "max_y": 5189.44621751433, + "center": [ + 5203.800930969273, + 5189.437873498758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809274984894, + 5189.44621751433 + ], + [ + 5203.792586953652, + 5189.429529483185 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553877", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792075309895, + "min_y": 5189.430304134082, + "max_x": 5203.807641803289, + "max_y": 5189.44587062737, + "center": [ + 5203.799858556592, + 5189.438087380726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807641803289, + 5189.44587062737 + ], + [ + 5203.792075309895, + 5189.430304134082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553878", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791605343122, + "min_y": 5189.431120461856, + "max_x": 5203.80600862158, + "max_y": 5189.445523740428, + "center": [ + 5203.798806982351, + 5189.438322101142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80600862158, + 5189.445523740428 + ], + [ + 5203.791605343122, + 5189.431120461856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553879", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.158147412129, + "min_y": 5189.241995660725, + "max_x": 5203.456318276077, + "max_y": 5189.540166524672, + "center": [ + 5203.307232844103, + 5189.391081092698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.307232844103, + 5189.391081092698 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55387A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.373935960303, + "min_y": 5189.372278688174, + "max_x": 5203.4542090555, + "max_y": 5189.452551783371, + "center": [ + 5203.414072507901, + 5189.412415235773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.414072507901, + 5189.412415235773 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55387B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.904024856567, + "min_y": 5188.929763675621, + "max_x": 5202.904024856567, + "max_y": 5189.025115010359, + "center": [ + 5202.904024856567, + 5188.97743934299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.904024856567, + 5188.929763675621 + ], + [ + 5202.904024856567, + 5189.025115010359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55387C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.904024856567, + "min_y": 5188.929763675621, + "max_x": 5202.904024856567, + "max_y": 5189.246815685649, + "center": [ + 5202.904024856567, + 5189.088289680635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.904024856567, + 5189.246815685649 + ], + [ + 5202.904024856567, + 5188.929763675621 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55387D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.186586151619, + "min_y": 5188.760684617995, + "max_x": 5203.6682247227955, + "max_y": 5189.242323189172, + "center": [ + 5203.427405437207, + 5189.001503903583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.427405437207, + 5189.001503903583 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55387F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.984297951671, + "min_y": 5188.849490580367, + "max_x": 5203.164470893789, + "max_y": 5188.849490580367, + "center": [ + 5203.07438442273, + 5188.849490580367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.164470893789, + 5188.849490580367 + ], + [ + 5202.984297951671, + 5188.849490580367 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553880", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.084197798593, + "min_y": 5188.688944390001, + "max_x": 5203.244743988986, + "max_y": 5188.849490580394, + "center": [ + 5203.164470893789, + 5188.769217485197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.164470893789, + 5188.769217485197 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553881", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.904024856474, + "min_y": 5188.849490580425, + "max_x": 5203.064571046867, + "max_y": 5189.010036770817, + "center": [ + 5202.984297951671, + 5188.929763675621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.984297951671, + 5188.929763675621 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553882", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.745716742681, + "min_y": 5189.319451065031, + "max_x": 5203.117416347249, + "max_y": 5189.691150669599, + "center": [ + 5202.931566544965, + 5189.505300867315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.931566544965, + 5189.505300867315 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553883", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.984297951671, + "min_y": 5189.327088780821, + "max_x": 5203.186586151521, + "max_y": 5189.327088780821, + "center": [ + 5203.085442051595, + 5189.327088780821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.186586151521, + 5189.327088780821 + ], + [ + 5202.984297951671, + 5189.327088780821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553884", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.92838705501, + "min_y": 5189.147695008179, + "max_x": 5203.451743913922, + "max_y": 5189.671051867091, + "center": [ + 5203.190065484466, + 5189.409373437635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.190065484466, + 5189.409373437635 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553885", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.110822750356, + "min_y": 5189.196042477695, + "max_x": 5203.436080028147, + "max_y": 5189.521299755486, + "center": [ + 5203.273451389252, + 5189.358671116591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.273451389252, + 5189.358671116591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553886", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.186586151521, + "min_y": 5189.001503903583, + "max_x": 5203.186586151521, + "max_y": 5189.4285436261, + "center": [ + 5203.186586151521, + 5189.215023764842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.186586151521, + 5189.001503903583 + ], + [ + 5203.186586151521, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553887", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.189096282826, + "min_y": 5189.196909798621, + "max_x": 5203.256677892674, + "max_y": 5189.343538011088, + "center": [ + 5203.22288708775, + 5189.270223904854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.256677892674, + 5189.196909798621 + ], + [ + 5203.189096282826, + 5189.343538011088 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553888", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.178558842055, + "min_y": 5189.013775363893, + "max_x": 5203.178558842055, + "max_y": 5189.263526623737, + "center": [ + 5203.178558842055, + 5189.138650993815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.178558842055, + 5189.263526623737 + ], + [ + 5203.178558842055, + 5189.013775363893 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553889", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.352450856928, + "min_y": 5189.051723796991, + "max_x": 5203.361083380315, + "max_y": 5189.103760952344, + "center": [ + 5203.356767118621, + 5189.077742374668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.361083380315, + 5189.103760952344 + ], + [ + 5203.352450856928, + 5189.051723796991 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.256677892674, + "min_y": 5189.15631536622, + "max_x": 5203.256677892674, + "max_y": 5189.196909798621, + "center": [ + 5203.256677892674, + 5189.176612582421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.256677892674, + 5189.15631536622 + ], + [ + 5203.256677892674, + 5189.196909798621 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.186209723002, + "min_y": 5188.959006320531, + "max_x": 5204.05527885839, + "max_y": 5189.828075455919, + "center": [ + 5203.620744290696, + 5189.393540888225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.620744290696, + 5189.393540888225 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.416459475299, + "min_y": 5189.10798880958, + "max_x": 5203.416459475299, + "max_y": 5189.147721964569, + "center": [ + 5203.416459475299, + 5189.127855387074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.416459475299, + 5189.147721964569 + ], + [ + 5203.416459475299, + 5189.10798880958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.212153497107, + "min_y": 5189.2776212444, + "max_x": 5203.251547336169, + "max_y": 5189.338123487093, + "center": [ + 5203.231850416638, + 5189.307872365746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.251547336169, + 5189.2776212444 + ], + [ + 5203.212153497107, + 5189.338123487093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.212153497107, + "min_y": 5189.338123487093, + "max_x": 5203.251547336169, + "max_y": 5189.388976249281, + "center": [ + 5203.231850416638, + 5189.363549868187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.212153497107, + 5189.338123487093 + ], + [ + 5203.251547336169, + 5189.388976249281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55388F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.152672283056, + "min_y": 5189.1077362305905, + "max_x": 5203.434996485331, + "max_y": 5189.3900604328655, + "center": [ + 5203.293834384193, + 5189.248898331728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.293834384193, + 5189.248898331728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553890", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.212153497107, + "min_y": 5189.242712829663, + "max_x": 5203.251547336169, + "max_y": 5189.298390332105, + "center": [ + 5203.231850416638, + 5189.270551580884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.251547336169, + 5189.242712829663 + ], + [ + 5203.212153497107, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553891", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.871409199301, + "min_y": 5189.482852699651, + "max_x": 5203.595527955191, + "max_y": 5190.206971455541, + "center": [ + 5203.233468577246, + 5189.844912077596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.233468577246, + 5189.844912077596 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553894", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.251547336169, + "min_y": 5189.2776212444, + "max_x": 5203.330335014395, + "max_y": 5189.2776212444, + "center": [ + 5203.290941175283, + 5189.2776212444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.330335014395, + 5189.2776212444 + ], + [ + 5203.251547336169, + 5189.2776212444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553895", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.251547336169, + "min_y": 5189.388976249281, + "max_x": 5203.330335014395, + "max_y": 5189.388976249281, + "center": [ + 5203.290941175283, + 5189.388976249281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.251547336169, + 5189.388976249281 + ], + [ + 5203.330335014395, + 5189.388976249281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553896", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.251547336169, + "min_y": 5189.242712829663, + "max_x": 5203.330335014395, + "max_y": 5189.242712829663, + "center": [ + 5203.290941175283, + 5189.242712829663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.330335014395, + 5189.242712829663 + ], + [ + 5203.251547336169, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553897", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.330335014395, + "min_y": 5189.242712829663, + "max_x": 5203.330335014395, + "max_y": 5189.2776212444, + "center": [ + 5203.330335014395, + 5189.260167037031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.330335014395, + 5189.2776212444 + ], + [ + 5203.330335014395, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553898", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.251547336169, + "min_y": 5189.242712829663, + "max_x": 5203.251547336169, + "max_y": 5189.2776212444, + "center": [ + 5203.251547336169, + 5189.260167037031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.251547336169, + 5189.2776212444 + ], + [ + 5203.251547336169, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553899", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.369728853557, + "min_y": 5189.298390332105, + "max_x": 5203.369728853557, + "max_y": 5189.338123487093, + "center": [ + 5203.369728853557, + 5189.318256909599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.369728853557, + 5189.338123487093 + ], + [ + 5203.369728853557, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.1639052014725, + "min_y": 5189.11904162645, + "max_x": 5203.435166958414, + "max_y": 5189.390303383391, + "center": [ + 5203.299536079943, + 5189.254672504921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.299536079943, + 5189.254672504921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.330335014395, + "min_y": 5189.2776212444, + "max_x": 5203.369728853557, + "max_y": 5189.338123487093, + "center": [ + 5203.350031933976, + 5189.307872365746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.369728853557, + 5189.338123487093 + ], + [ + 5203.330335014395, + 5189.2776212444 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.330335014395, + "min_y": 5189.338123487093, + "max_x": 5203.369728853557, + "max_y": 5189.388976249281, + "center": [ + 5203.350031933976, + 5189.363549868187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.330335014395, + 5189.388976249281 + ], + [ + 5203.369728853557, + 5189.338123487093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.330335014395, + "min_y": 5189.242712829663, + "max_x": 5203.369728853557, + "max_y": 5189.298390332105, + "center": [ + 5203.350031933976, + 5189.270551580884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.369728853557, + 5189.298390332105 + ], + [ + 5203.330335014395, + 5189.242712829663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.138810595458, + "min_y": 5189.327409873188, + "max_x": 5203.379629881048, + "max_y": 5189.568229158777, + "center": [ + 5203.259220238253, + 5189.447819515983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.259220238253, + 5189.447819515983 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55389F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.17487839858, + "min_y": 5189.363565686991, + "max_x": 5203.343451898492, + "max_y": 5189.532139186903, + "center": [ + 5203.259165148536, + 5189.447852436947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.259165148536, + 5189.447852436947 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.212153497107, + "min_y": 5189.298390332105, + "max_x": 5203.212153497107, + "max_y": 5189.338123487093, + "center": [ + 5203.212153497107, + 5189.318256909599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.212153497107, + 5189.338123487093 + ], + [ + 5203.212153497107, + 5189.298390332105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.186586151569, + "min_y": 5188.987041602521, + "max_x": 5204.069590198727, + "max_y": 5189.870045649679, + "center": [ + 5203.628088175148, + 5189.4285436261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088175148, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.743478666031, + "min_y": 5189.0390168590575, + "max_x": 5202.904024856423, + "max_y": 5189.19956304945, + "center": [ + 5202.823751761227, + 5189.119289954254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.823751761227, + 5189.119289954254 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.730275753756, + "min_y": 5189.039016859084, + "max_x": 5202.823751761227, + "max_y": 5189.039016859084, + "center": [ + 5202.777013757492, + 5189.039016859084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.823751761227, + 5189.039016859084 + ], + [ + 5202.730275753756, + 5189.039016859084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.639123642328, + "min_y": 5189.103235335212, + "max_x": 5202.687287499446, + "max_y": 5189.15139919233, + "center": [ + 5202.663205570887, + 5189.127317263771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.663205570887, + 5189.127317263771 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.686466927553, + "min_y": 5189.056865925836, + "max_x": 5202.707014397017, + "max_y": 5189.133550125503, + "center": [ + 5202.696740662284, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.686466927553, + 5189.133550125503 + ], + [ + 5202.707014397017, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.706193825197, + "min_y": 5189.039016859059, + "max_x": 5202.7543576823155, + "max_y": 5189.0871807161775, + "center": [ + 5202.730275753756, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.730275753756, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.904024856474, + "min_y": 5189.166542590453, + "max_x": 5203.064571046867, + "max_y": 5189.327088780846, + "center": [ + 5202.984297951671, + 5189.246815685649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.984297951671, + 5189.246815685649 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.408822580328, + "min_y": 5189.829111759219, + "max_x": 5203.448216419392, + "max_y": 5189.879964521423, + "center": [ + 5203.42851949986, + 5189.854538140321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.408822580328, + 5189.829111759219 + ], + [ + 5203.448216419392, + 5189.879964521423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.197093069346, + "min_y": 5189.512640191518, + "max_x": 5203.436493412099, + "max_y": 5189.75204053427, + "center": [ + 5203.316793240722, + 5189.632340362894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.316793240722, + 5189.632340362894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.296023524661, + "min_y": 5189.510167021753, + "max_x": 5203.444747905109, + "max_y": 5189.6588914022, + "center": [ + 5203.370385714885, + 5189.584529211977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.370385714885, + 5189.584529211977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.245040755561, + "min_y": 5189.7421241984875, + "max_x": 5203.685071172218, + "max_y": 5190.182154615145, + "center": [ + 5203.465055963889, + 5189.962139406816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.465055963889, + 5189.962139406816 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.408822580328, + "min_y": 5189.73370110184, + "max_x": 5203.448216419392, + "max_y": 5189.789378604245, + "center": [ + 5203.42851949986, + 5189.761539853042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.448216419392, + 5189.73370110184 + ], + [ + 5203.408822580328, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.408822580328, + "min_y": 5189.768609516541, + "max_x": 5203.448216419392, + "max_y": 5189.829111759219, + "center": [ + 5203.42851949986, + 5189.79886063788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.448216419392, + 5189.768609516541 + ], + [ + 5203.408822580328, + 5189.829111759219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79339072868, + "min_y": 5189.902669181424, + "max_x": 5203.872178407007, + "max_y": 5189.902669181424, + "center": [ + 5203.832784567843, + 5189.902669181424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79339072868, + 5189.902669181424 + ], + [ + 5203.872178407007, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811618054871, + "min_y": 5189.724317347943, + "max_x": 5203.839335028781, + "max_y": 5189.752034321854, + "center": [ + 5203.825476541826, + 5189.738175834898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839335028781, + 5189.752034321854 + ], + [ + 5203.811618054871, + 5189.724317347943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789275825464, + "min_y": 5189.721269538972, + "max_x": 5203.815302245963, + "max_y": 5189.747295959489, + "center": [ + 5203.802289035713, + 5189.73428274923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815302245963, + 5189.747295959489 + ], + [ + 5203.789275825464, + 5189.721269538972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791014034429, + "min_y": 5189.72172145324, + "max_x": 5203.817075718386, + "max_y": 5189.747783137232, + "center": [ + 5203.804044876408, + 5189.734752295236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817075718386, + 5189.747783137232 + ], + [ + 5203.791014034429, + 5189.72172145324 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792752243329, + "min_y": 5189.722173367474, + "max_x": 5203.818849190844, + "max_y": 5189.748270315025, + "center": [ + 5203.805800717087, + 5189.73522184125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818849190844, + 5189.748270315025 + ], + [ + 5203.792752243329, + 5189.722173367474 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794490452359, + "min_y": 5189.722625281708, + "max_x": 5203.820597210144, + "max_y": 5189.74873203961, + "center": [ + 5203.807543831252, + 5189.73567866066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820597210144, + 5189.74873203961 + ], + [ + 5203.794490452359, + 5189.722625281708 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79622866119, + "min_y": 5189.723077195941, + "max_x": 5203.822343075219, + "max_y": 5189.749191609951, + "center": [ + 5203.809285868205, + 5189.736134402946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822343075219, + 5189.749191609951 + ], + [ + 5203.79622866119, + 5189.723077195941 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797966870154, + "min_y": 5189.723529110175, + "max_x": 5203.82411380765, + "max_y": 5189.749676047684, + "center": [ + 5203.811040338902, + 5189.73660257893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82411380765, + 5189.749676047684 + ], + [ + 5203.797966870154, + 5189.723529110175 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799705079054, + "min_y": 5189.723981024459, + "max_x": 5203.825895039043, + "max_y": 5189.75017098443, + "center": [ + 5203.812800059048, + 5189.737076004445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825895039043, + 5189.75017098443 + ], + [ + 5203.799705079054, + 5189.723981024459 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.724275788977, + "max_x": 5203.831360476048, + "max_y": 5189.751777537357, + "center": [ + 5203.817609601883, + 5189.738026663167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831360476048, + 5189.751777537357 + ], + [ + 5203.803858727718, + 5189.724275788977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.722989494248, + "max_x": 5203.833138827407, + "max_y": 5189.752269593918, + "center": [ + 5203.818498777562, + 5189.737629544083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833138827407, + 5189.752269593918 + ], + [ + 5203.803858727718, + 5189.722989494248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.721703199549, + "max_x": 5203.834858973083, + "max_y": 5189.752703444982, + "center": [ + 5203.8193588504, + 5189.7372033222655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834858973083, + 5189.752703444982 + ], + [ + 5203.803858727718, + 5189.721703199549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.72041690485, + "max_x": 5203.836668678745, + "max_y": 5189.753226855899, + "center": [ + 5203.820263703232, + 5189.736821880375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836668678745, + 5189.753226855899 + ], + [ + 5203.803858727718, + 5189.72041690485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.719130610153, + "max_x": 5203.837999035373, + "max_y": 5189.753270917909, + "center": [ + 5203.820928881545, + 5189.736200764031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837999035373, + 5189.753270917909 + ], + [ + 5203.803858727718, + 5189.719130610153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.717844315488, + "max_x": 5203.838885993511, + "max_y": 5189.752871581218, + "center": [ + 5203.821372360615, + 5189.735357948353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838885993511, + 5189.752871581218 + ], + [ + 5203.803858727718, + 5189.717844315488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810527332041, + "min_y": 5189.724047040872, + "max_x": 5203.834788064654, + "max_y": 5189.730059427557, + "center": [ + 5203.822657698347, + 5189.7270532342145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810527332041, + 5189.724047040872 + ], + [ + 5203.834788064654, + 5189.730059427557 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812056339327, + "min_y": 5189.723027331174, + "max_x": 5203.813891259582, + "max_y": 5189.723534399923, + "center": [ + 5203.812973799455, + 5189.723280865548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813891259582, + 5189.723027331174 + ], + [ + 5203.812056339327, + 5189.723534399923 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813328152483, + "min_y": 5189.724741150826, + "max_x": 5203.839573781916, + "max_y": 5189.750986780238, + "center": [ + 5203.8264509672, + 5189.737863965533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839573781916, + 5189.750986780238 + ], + [ + 5203.813328152483, + 5189.724741150826 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810832687723, + "min_y": 5189.746062740456, + "max_x": 5203.814910412122, + "max_y": 5189.74718832165, + "center": [ + 5203.812871549922, + 5189.746625531054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814910412122, + 5189.74718832165 + ], + [ + 5203.810832687723, + 5189.746062740456 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801443288021, + "min_y": 5189.724432938692, + "max_x": 5203.827694519986, + "max_y": 5189.750684170693, + "center": [ + 5203.814568904003, + 5189.737558554692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827694519986, + 5189.750684170693 + ], + [ + 5203.801443288021, + 5189.724432938692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803181497018, + "min_y": 5189.724884852926, + "max_x": 5203.829504139708, + "max_y": 5189.751207495718, + "center": [ + 5203.816342818363, + 5189.738046174321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.829504139708, + 5189.751207495718 + ], + [ + 5203.803181497018, + 5189.724884852926 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806291587735, + "min_y": 5189.671337220728, + "max_x": 5203.821932889828, + "max_y": 5189.68697852284, + "center": [ + 5203.8141122387815, + 5189.679157871784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.821932889828, + 5189.68697852284 + ], + [ + 5203.806291587735, + 5189.671337220728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808119847625, + "min_y": 5189.671879185893, + "max_x": 5203.82355297579, + "max_y": 5189.687312314175, + "center": [ + 5203.815836411708, + 5189.679595750034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82355297579, + 5189.687312314175 + ], + [ + 5203.808119847625, + 5189.671879185893 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809438312548, + "min_y": 5189.671911356118, + "max_x": 5203.825129796289, + "max_y": 5189.687602839893, + "center": [ + 5203.817284054418, + 5189.679757098005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825129796289, + 5189.687602839893 + ], + [ + 5203.809438312548, + 5189.671911356118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810581050748, + "min_y": 5189.671767799652, + "max_x": 5203.826589401693, + "max_y": 5189.687776150567, + "center": [ + 5203.81858522622, + 5189.679771975109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826589401693, + 5189.687776150567 + ], + [ + 5203.810581050748, + 5189.671767799652 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811609969427, + "min_y": 5189.671510423547, + "max_x": 5203.827931443668, + "max_y": 5189.687831897805, + "center": [ + 5203.819770706547, + 5189.679671160677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827931443668, + 5189.687831897805 + ], + [ + 5203.811609969427, + 5189.671510423547 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812307223028, + "min_y": 5189.670921382553, + "max_x": 5203.829143340334, + "max_y": 5189.687757499862, + "center": [ + 5203.820725281681, + 5189.679339441207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.829143340334, + 5189.687757499862 + ], + [ + 5203.812307223028, + 5189.670921382553 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813504149748, + "min_y": 5189.697055065038, + "max_x": 5203.837734469729, + "max_y": 5189.706073776073, + "center": [ + 5203.825619309739, + 5189.701564420555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813504149748, + 5189.706073776073 + ], + [ + 5203.837734469729, + 5189.697055065038 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812808179588, + "min_y": 5189.706213052139, + "max_x": 5203.825687527405, + "max_y": 5189.719092400043, + "center": [ + 5203.819247853497, + 5189.712652726092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825687527405, + 5189.719092400043 + ], + [ + 5203.812808179588, + 5189.706213052139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811537160056, + "min_y": 5189.706228327321, + "max_x": 5203.824725267139, + "max_y": 5189.71941643441, + "center": [ + 5203.818131213598, + 5189.712822380865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.824725267139, + 5189.71941643441 + ], + [ + 5203.811537160056, + 5189.706228327321 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794379515813, + "min_y": 5189.690356977795, + "max_x": 5203.823760266316, + "max_y": 5189.719737728318, + "center": [ + 5203.809069891064, + 5189.705047353056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823760266316, + 5189.719737728318 + ], + [ + 5203.794379515813, + 5189.690356977795 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792821584127, + "min_y": 5189.690085340862, + "max_x": 5203.822795265633, + "max_y": 5189.72005902231, + "center": [ + 5203.80780842488, + 5189.705072181587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822795265633, + 5189.72005902231 + ], + [ + 5203.792821584127, + 5189.690085340862 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791209136383, + "min_y": 5189.689759187794, + "max_x": 5203.821827805326, + "max_y": 5189.72037785681, + "center": [ + 5203.806518470855, + 5189.705068522302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.821827805326, + 5189.72037785681 + ], + [ + 5203.791209136383, + 5189.689759187794 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78973832997, + "min_y": 5189.689574676033, + "max_x": 5203.820855324689, + "max_y": 5189.720691670832, + "center": [ + 5203.80529682733, + 5189.705133173433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820855324689, + 5189.720691670832 + ], + [ + 5203.78973832997, + 5189.689574676033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.788420196261, + "min_y": 5189.689542837055, + "max_x": 5203.819882844046, + "max_y": 5189.721005484919, + "center": [ + 5203.804151520153, + 5189.705274160988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819882844046, + 5189.721005484919 + ], + [ + 5203.788420196261, + 5189.689542837055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78710206262, + "min_y": 5189.689510998128, + "max_x": 5203.818911022224, + "max_y": 5189.721319957683, + "center": [ + 5203.803006542422, + 5189.705415477905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818911022224, + 5189.721319957683 + ], + [ + 5203.78710206262, + 5189.689510998128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78584895165, + "min_y": 5189.68954418187, + "max_x": 5203.817946838057, + "max_y": 5189.721642068278, + "center": [ + 5203.801897894853, + 5189.705593125074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817946838057, + 5189.721642068278 + ], + [ + 5203.78584895165, + 5189.68954418187 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.784755952647, + "min_y": 5189.689737477481, + "max_x": 5203.816982653886, + "max_y": 5189.72196417879, + "center": [ + 5203.800869303266, + 5189.705850828135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816982653886, + 5189.72196417879 + ], + [ + 5203.784755952647, + 5189.689737477481 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781998807719, + "min_y": 5189.690839216663, + "max_x": 5203.814110750034, + "max_y": 5189.722951159062, + "center": [ + 5203.798054778877, + 5189.706895187863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814110750034, + 5189.722951159062 + ], + [ + 5203.781998807719, + 5189.690839216663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.782839187183, + "min_y": 5189.690393301514, + "max_x": 5203.815065654229, + "max_y": 5189.72261976848, + "center": [ + 5203.798952420706, + 5189.706506534997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815065654229, + 5189.72261976848 + ], + [ + 5203.782839187183, + 5189.690393301514 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.783774122547, + "min_y": 5189.690041942129, + "max_x": 5203.816020558364, + "max_y": 5189.722288377915, + "center": [ + 5203.799897340456, + 5189.706165160022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816020558364, + 5189.722288377915 + ], + [ + 5203.783774122547, + 5189.690041942129 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80645820927, + "min_y": 5189.641919064133, + "max_x": 5203.819293492126, + "max_y": 5189.654754347021, + "center": [ + 5203.812875850698, + 5189.648336705577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.654754347021 + ], + [ + 5203.80645820927, + 5189.641919064133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809541658575, + "min_y": 5189.642429924205, + "max_x": 5203.819239063603, + "max_y": 5189.652127329068, + "center": [ + 5203.814390361089, + 5189.647278626637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819239063603, + 5189.652127329068 + ], + [ + 5203.809541658575, + 5189.642429924205 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807900717096, + "min_y": 5189.642075277293, + "max_x": 5203.819293492126, + "max_y": 5189.653468052323, + "center": [ + 5203.813597104611, + 5189.647771664808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.653468052323 + ], + [ + 5203.807900717096, + 5189.642075277293 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813303146084, + "min_y": 5189.64361882212, + "max_x": 5203.818926843005, + "max_y": 5189.649242519077, + "center": [ + 5203.8161149945445, + 5189.646430670598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818926843005, + 5189.649242519077 + ], + [ + 5203.813303146084, + 5189.64361882212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811308270854, + "min_y": 5189.642910241705, + "max_x": 5203.819135816307, + "max_y": 5189.650737787107, + "center": [ + 5203.81522204358, + 5189.646824014406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819135816307, + 5189.650737787107 + ], + [ + 5203.811308270854, + 5189.642910241705 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812953390154, + "min_y": 5189.617053675972, + "max_x": 5203.833070224225, + "max_y": 5189.637170510074, + "center": [ + 5203.82301180719, + 5189.627112093023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833070224225, + 5189.637170510074 + ], + [ + 5203.812953390154, + 5189.617053675972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80601475525, + "min_y": 5189.615260219842, + "max_x": 5203.826247323533, + "max_y": 5189.635492788141, + "center": [ + 5203.816131039392, + 5189.625376503991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826247323533, + 5189.635492788141 + ], + [ + 5203.80601475525, + 5189.615260219842 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807866231645, + "min_y": 5189.615825401538, + "max_x": 5203.827953048678, + "max_y": 5189.635912218641, + "center": [ + 5203.817909640162, + 5189.62586881009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827953048678, + 5189.635912218641 + ], + [ + 5203.807866231645, + 5189.615825401538 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809567476286, + "min_y": 5189.616240351552, + "max_x": 5203.829658773928, + "max_y": 5189.636331649126, + "center": [ + 5203.819613125107, + 5189.626286000339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.829658773928, + 5189.636331649126 + ], + [ + 5203.809567476286, + 5189.616240351552 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811280187074, + "min_y": 5189.616666767521, + "max_x": 5203.831364499072, + "max_y": 5189.636751079576, + "center": [ + 5203.821322343073, + 5189.626708923548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831364499072, + 5189.636751079576 + ], + [ + 5203.811280187074, + 5189.616666767521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812973520924, + "min_y": 5189.643510748318, + "max_x": 5203.813585346743, + "max_y": 5189.643711346928, + "center": [ + 5203.8132794338335, + 5189.6436110476225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813585346743, + 5189.643711346928 + ], + [ + 5203.812973520924, + 5189.643510748318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811138600634, + "min_y": 5189.616634027382, + "max_x": 5203.813789288682, + "max_y": 5189.617246967628, + "center": [ + 5203.812463944658, + 5189.616940497504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811138600634, + 5189.616634027382 + ], + [ + 5203.813789288682, + 5189.617246967628 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.657192333779, + "max_x": 5203.819293492126, + "max_y": 5189.663758409907, + "center": [ + 5203.816010454062, + 5189.660475371843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.663758409907 + ], + [ + 5203.812727415998, + 5189.657192333779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.658478628526, + "max_x": 5203.819293492126, + "max_y": 5189.665044704655, + "center": [ + 5203.816010454062, + 5189.66176166659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.665044704655 + ], + [ + 5203.812727415998, + 5189.658478628526 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.659764923225, + "max_x": 5203.819293492126, + "max_y": 5189.666330999353, + "center": [ + 5203.816010454062, + 5189.663047961289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.666330999353 + ], + [ + 5203.812727415998, + 5189.659764923225 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.661051217922, + "max_x": 5203.819293492126, + "max_y": 5189.667617294052, + "center": [ + 5203.816010454062, + 5189.664334255987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.667617294052 + ], + [ + 5203.812727415998, + 5189.661051217922 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.662337512621, + "max_x": 5203.819293492126, + "max_y": 5189.668903588749, + "center": [ + 5203.816010454062, + 5189.665620550685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.668903588749 + ], + [ + 5203.812727415998, + 5189.662337512621 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805130948751, + "min_y": 5189.641878098376, + "max_x": 5203.819293492126, + "max_y": 5189.656040641769, + "center": [ + 5203.812212220439, + 5189.648959370073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.656040641769 + ], + [ + 5203.805130948751, + 5189.641878098376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812631011789, + "min_y": 5189.655809634921, + "max_x": 5203.819293492126, + "max_y": 5189.662472115209, + "center": [ + 5203.815962251958, + 5189.659140875065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.662472115209 + ], + [ + 5203.812631011789, + 5189.655809634921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811954368394, + "min_y": 5189.501482518656, + "max_x": 5203.814706470181, + "max_y": 5189.502094344457, + "center": [ + 5203.813330419287, + 5189.501788431557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811954368394, + 5189.501482518656 + ], + [ + 5203.814706470181, + 5189.502094344457 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538EE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790547708475, + "min_y": 5189.505050388202, + "max_x": 5203.839273115701, + "max_y": 5189.553571853337, + "center": [ + 5203.814910412088, + 5189.52931112077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803085680107, + 5189.505050388202 + ], + [ + 5203.800944846905, + 5189.505254330125 + ], + [ + 5203.799008512941, + 5189.505763627777 + ], + [ + 5203.797377534591, + 5189.506477424548 + ], + [ + 5203.795950498248, + 5189.507292635127 + ], + [ + 5203.794828817512, + 5189.508312344823 + ], + [ + 5203.793809665175, + 5189.509331497274 + ], + [ + 5203.792993897423, + 5189.510452620744 + ], + [ + 5203.792382628831, + 5189.51147233044 + ], + [ + 5203.791872773985, + 5189.512491482942 + ], + [ + 5203.791566861073, + 5189.513409221668 + ], + [ + 5203.791260948166, + 5189.514224432164 + ], + [ + 5203.791159534361, + 5189.514836257981 + ], + [ + 5203.791057563323, + 5189.515243584664 + ], + [ + 5203.791057563323, + 5189.515345555633 + ], + [ + 5203.790955592421, + 5189.515855410482 + ], + [ + 5203.790955592421, + 5189.51626329436 + ], + [ + 5203.790853621416, + 5189.516976533936 + ], + [ + 5203.790853621416, + 5189.51779230171 + ], + [ + 5203.790751650482, + 5189.518709483206 + ], + [ + 5203.790751650482, + 5189.519729192904 + ], + [ + 5203.790751650482, + 5189.520952287328 + ], + [ + 5203.790649679509, + 5189.522175381717 + ], + [ + 5203.790649679509, + 5189.523500447144 + ], + [ + 5203.790547708475, + 5189.524826069717 + ], + [ + 5203.790547708475, + 5189.526253106113 + ], + [ + 5203.790547708475, + 5189.527680142458 + ], + [ + 5203.790547708475, + 5189.529005207885 + ], + [ + 5203.790649679509, + 5189.530432244231 + ], + [ + 5203.790751650482, + 5189.531757309608 + ], + [ + 5203.791464890072, + 5189.535937004922 + ], + [ + 5203.792076715925, + 5189.537771925164 + ], + [ + 5203.792891926419, + 5189.539402903516 + ], + [ + 5203.793809665175, + 5189.540931910815 + ], + [ + 5203.794828817512, + 5189.542155005238 + ], + [ + 5203.79584852721, + 5189.543378099628 + ], + [ + 5203.796969650714, + 5189.54439780941 + ], + [ + 5203.797988803242, + 5189.545213019902 + ], + [ + 5203.799110483917, + 5189.545926816675 + ], + [ + 5203.800027665415, + 5189.546538085279 + ], + [ + 5203.8008434331, + 5189.547047940127 + ], + [ + 5203.801556672692, + 5189.547353853053 + ], + [ + 5203.802168498544, + 5189.547659765946 + ], + [ + 5203.802474411457, + 5189.547761179703 + ], + [ + 5203.802677796195, + 5189.547761179703 + ], + [ + 5203.802881738104, + 5189.547965121626 + ], + [ + 5203.803187651049, + 5189.548067092594 + ], + [ + 5203.80359553496, + 5189.548271034551 + ], + [ + 5203.804206803546, + 5189.548474976474 + ], + [ + 5203.804920600333, + 5189.548780889399 + ], + [ + 5203.805837781831, + 5189.549086802292 + ], + [ + 5203.806857491531, + 5189.549392158021 + ], + [ + 5203.808182556939, + 5189.5498000419 + ], + [ + 5203.809609593283, + 5189.550207925796 + ], + [ + 5203.811240571535, + 5189.55061580964 + ], + [ + 5203.813075491897, + 5189.551125107293 + ], + [ + 5203.815216325029, + 5189.551634962141 + ], + [ + 5203.817560542805, + 5189.55214481699 + ], + [ + 5203.820109259815, + 5189.552654114643 + ], + [ + 5203.822963332512, + 5189.55316396949 + ], + [ + 5203.828366122347, + 5189.553571853337 + ], + [ + 5203.830608369288, + 5189.553265940444 + ], + [ + 5203.83254526048, + 5189.552654114643 + ], + [ + 5203.834074267797, + 5189.551838904097 + ], + [ + 5203.83539933324, + 5189.550819751596 + ], + [ + 5203.83652101384, + 5189.549698070948 + ], + [ + 5203.837336224365, + 5189.548474976474 + ], + [ + 5203.837948050186, + 5189.547149911098 + ], + [ + 5203.838457347941, + 5189.545926816675 + ], + [ + 5203.838763260848, + 5189.544703165054 + ], + [ + 5203.839069173688, + 5189.543684012587 + ], + [ + 5203.839171144728, + 5189.542766831056 + ], + [ + 5203.839171144728, + 5189.542053034284 + ], + [ + 5203.839273115701, + 5189.541543179436 + ], + [ + 5203.839273115701, + 5189.541339237514 + ], + [ + 5203.839273115701, + 5189.541033881784 + ], + [ + 5203.839273115701, + 5189.540625997889 + ], + [ + 5203.839273115701, + 5189.540014172087 + ], + [ + 5203.839273115701, + 5189.539300932512 + ], + [ + 5203.839273115701, + 5189.538383193819 + ], + [ + 5203.839273115701, + 5189.537466012271 + ], + [ + 5203.839273115701, + 5189.536344331621 + ], + [ + 5203.839273115701, + 5189.535223208117 + ], + [ + 5203.839273115701, + 5189.533898142775 + ], + [ + 5203.839273115701, + 5189.532573077381 + ], + [ + 5203.839273115701, + 5189.531248012006 + ], + [ + 5203.839273115701, + 5189.529820418413 + ], + [ + 5203.839273115701, + 5189.528393382033 + ], + [ + 5203.839273115701, + 5189.526864374685 + ], + [ + 5203.839273115701, + 5189.525335367369 + ], + [ + 5203.838763260848, + 5189.521869468791 + ], + [ + 5203.838355934063, + 5189.520238490556 + ], + [ + 5203.837744108181, + 5189.518811454178 + ], + [ + 5203.837030311428, + 5189.517486388783 + ], + [ + 5203.836215101, + 5189.516365265331 + ], + [ + 5203.83539933324, + 5189.515345555633 + ], + [ + 5203.834482151742, + 5189.514326403133 + ], + [ + 5203.833666383983, + 5189.513612606361 + ], + [ + 5203.832749202387, + 5189.512899366821 + ], + [ + 5203.832035405634, + 5189.512287541018 + ], + [ + 5203.831322166041, + 5189.511778243367 + ], + [ + 5203.830710340256, + 5189.51147233044 + ], + [ + 5203.830201042638, + 5189.511166417515 + ], + [ + 5203.829997100702, + 5189.511064446545 + ], + [ + 5203.829895129697, + 5189.510962475592 + ], + [ + 5203.829385274852, + 5189.510860504622 + ], + [ + 5203.828875419998, + 5189.510656562667 + ], + [ + 5203.828264151347, + 5189.510452620744 + ], + [ + 5203.827346412649, + 5189.510147265049 + ], + [ + 5203.826327260151, + 5189.509841352172 + ], + [ + 5203.825104165713, + 5189.509433468277 + ], + [ + 5203.823778543172, + 5189.509025584347 + ], + [ + 5203.822249535758, + 5189.508618257699 + ], + [ + 5203.820618557498, + 5189.508210373819 + ], + [ + 5203.818784194575, + 5189.507700518971 + ], + [ + 5203.816949274219, + 5189.507190664123 + ], + [ + 5203.814910412122, + 5189.506783337475 + ], + [ + 5203.812871549884, + 5189.506273482626 + ], + [ + 5203.810629302981, + 5189.50586559873 + ], + [ + 5203.808386498848, + 5189.505356301128 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538EF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790547708475, + "min_y": 5189.505050388202, + "max_x": 5203.839273115701, + "max_y": 5189.553571853337, + "center": [ + 5203.814910412088, + 5189.52931112077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797377534591, + 5189.506477424548 + ], + [ + 5203.795950498248, + 5189.507292635127 + ], + [ + 5203.794828817512, + 5189.508312344823 + ], + [ + 5203.793809665175, + 5189.509331497274 + ], + [ + 5203.792993897423, + 5189.510452620744 + ], + [ + 5203.792382628831, + 5189.51147233044 + ], + [ + 5203.791872773985, + 5189.512491482942 + ], + [ + 5203.791566861073, + 5189.513409221668 + ], + [ + 5203.791260948166, + 5189.514224432164 + ], + [ + 5203.791159534361, + 5189.514836257981 + ], + [ + 5203.791057563323, + 5189.515243584664 + ], + [ + 5203.791057563323, + 5189.515345555633 + ], + [ + 5203.790955592421, + 5189.515855410482 + ], + [ + 5203.790955592421, + 5189.51626329436 + ], + [ + 5203.790853621416, + 5189.516976533936 + ], + [ + 5203.790853621416, + 5189.51779230171 + ], + [ + 5203.790751650482, + 5189.518709483206 + ], + [ + 5203.790751650482, + 5189.519729192904 + ], + [ + 5203.790751650482, + 5189.520952287328 + ], + [ + 5203.790649679509, + 5189.522175381717 + ], + [ + 5203.790649679509, + 5189.523500447144 + ], + [ + 5203.790547708475, + 5189.524826069717 + ], + [ + 5203.790547708475, + 5189.526253106113 + ], + [ + 5203.790547708475, + 5189.527680142458 + ], + [ + 5203.790547708475, + 5189.529005207885 + ], + [ + 5203.790649679509, + 5189.530432244231 + ], + [ + 5203.790751650482, + 5189.531757309608 + ], + [ + 5203.791464890072, + 5189.535937004922 + ], + [ + 5203.792076715925, + 5189.537771925164 + ], + [ + 5203.792891926419, + 5189.539402903516 + ], + [ + 5203.793809665175, + 5189.540931910815 + ], + [ + 5203.794828817512, + 5189.542155005238 + ], + [ + 5203.79584852721, + 5189.543378099628 + ], + [ + 5203.796969650714, + 5189.54439780941 + ], + [ + 5203.797988803242, + 5189.545213019902 + ], + [ + 5203.799110483917, + 5189.545926816675 + ], + [ + 5203.800027665415, + 5189.546538085279 + ], + [ + 5203.8008434331, + 5189.547047940127 + ], + [ + 5203.801556672692, + 5189.547353853053 + ], + [ + 5203.802168498544, + 5189.547659765946 + ], + [ + 5203.802474411457, + 5189.547761179703 + ], + [ + 5203.802677796195, + 5189.547761179703 + ], + [ + 5203.802881738104, + 5189.547965121626 + ], + [ + 5203.803187651049, + 5189.548067092594 + ], + [ + 5203.80359553496, + 5189.548271034551 + ], + [ + 5203.804206803546, + 5189.548474976474 + ], + [ + 5203.804920600333, + 5189.548780889399 + ], + [ + 5203.805837781831, + 5189.549086802292 + ], + [ + 5203.806857491531, + 5189.549392158021 + ], + [ + 5203.808182556939, + 5189.5498000419 + ], + [ + 5203.809609593283, + 5189.550207925796 + ], + [ + 5203.811240571535, + 5189.55061580964 + ], + [ + 5203.813075491897, + 5189.551125107293 + ], + [ + 5203.815216325029, + 5189.551634962141 + ], + [ + 5203.817560542805, + 5189.55214481699 + ], + [ + 5203.820109259815, + 5189.552654114643 + ], + [ + 5203.822963332512, + 5189.55316396949 + ], + [ + 5203.828366122347, + 5189.553571853337 + ], + [ + 5203.830608369288, + 5189.553265940444 + ], + [ + 5203.83254526048, + 5189.552654114643 + ], + [ + 5203.834074267797, + 5189.551838904097 + ], + [ + 5203.83539933324, + 5189.550819751596 + ], + [ + 5203.83652101384, + 5189.549698070948 + ], + [ + 5203.837336224365, + 5189.548474976474 + ], + [ + 5203.837948050186, + 5189.547149911098 + ], + [ + 5203.838457347941, + 5189.545926816675 + ], + [ + 5203.838763260848, + 5189.544703165054 + ], + [ + 5203.839069173688, + 5189.543684012587 + ], + [ + 5203.839171144728, + 5189.542766831056 + ], + [ + 5203.839171144728, + 5189.542053034284 + ], + [ + 5203.839273115701, + 5189.541543179436 + ], + [ + 5203.839273115701, + 5189.541339237514 + ], + [ + 5203.839273115701, + 5189.541033881784 + ], + [ + 5203.839273115701, + 5189.540625997889 + ], + [ + 5203.839273115701, + 5189.540014172087 + ], + [ + 5203.839273115701, + 5189.539300932512 + ], + [ + 5203.839273115701, + 5189.538383193819 + ], + [ + 5203.839273115701, + 5189.537466012271 + ], + [ + 5203.839273115701, + 5189.536344331621 + ], + [ + 5203.839273115701, + 5189.535223208117 + ], + [ + 5203.839273115701, + 5189.533898142775 + ], + [ + 5203.839273115701, + 5189.532573077381 + ], + [ + 5203.839273115701, + 5189.531248012006 + ], + [ + 5203.839273115701, + 5189.529820418413 + ], + [ + 5203.839273115701, + 5189.528393382033 + ], + [ + 5203.839273115701, + 5189.526864374685 + ], + [ + 5203.839273115701, + 5189.525335367369 + ], + [ + 5203.838763260848, + 5189.521869468791 + ], + [ + 5203.838355934063, + 5189.520238490556 + ], + [ + 5203.837744108181, + 5189.518811454178 + ], + [ + 5203.837030311428, + 5189.517486388783 + ], + [ + 5203.836215101, + 5189.516365265331 + ], + [ + 5203.83539933324, + 5189.515345555633 + ], + [ + 5203.834482151742, + 5189.514326403133 + ], + [ + 5203.833666383983, + 5189.513612606361 + ], + [ + 5203.832749202387, + 5189.512899366821 + ], + [ + 5203.832035405634, + 5189.512287541018 + ], + [ + 5203.831322166041, + 5189.511778243367 + ], + [ + 5203.830710340256, + 5189.51147233044 + ], + [ + 5203.830201042638, + 5189.511166417515 + ], + [ + 5203.829997100702, + 5189.511064446545 + ], + [ + 5203.829895129697, + 5189.510962475592 + ], + [ + 5203.829385274852, + 5189.510860504622 + ], + [ + 5203.828875419998, + 5189.510656562667 + ], + [ + 5203.828264151347, + 5189.510452620744 + ], + [ + 5203.827346412649, + 5189.510147265049 + ], + [ + 5203.826327260151, + 5189.509841352172 + ], + [ + 5203.825104165713, + 5189.509433468277 + ], + [ + 5203.823778543172, + 5189.509025584347 + ], + [ + 5203.822249535758, + 5189.508618257699 + ], + [ + 5203.820618557498, + 5189.508210373819 + ], + [ + 5203.818784194575, + 5189.507700518971 + ], + [ + 5203.816949274219, + 5189.507190664123 + ], + [ + 5203.814910412122, + 5189.506783337475 + ], + [ + 5203.812871549884, + 5189.506273482626 + ], + [ + 5203.810629302981, + 5189.50586559873 + ], + [ + 5203.808386498848, + 5189.505356301128 + ], + [ + 5203.803085680107, + 5189.505050388202 + ], + [ + 5203.800944846905, + 5189.505254330125 + ], + [ + 5203.799008512941, + 5189.505763627777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5538F0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.790547708475, + "min_y": 5189.505050388202, + "max_x": 5203.839273115701, + "max_y": 5189.553571853337, + "center": [ + 5203.814910412088, + 5189.52931112077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.541339237514 + ], + [ + 5203.839273115701, + 5189.541543179436 + ], + [ + 5203.839171144728, + 5189.542053034284 + ], + [ + 5203.839171144728, + 5189.542766831056 + ], + [ + 5203.839069173688, + 5189.543684012587 + ], + [ + 5203.838763260848, + 5189.544703165054 + ], + [ + 5203.838457347941, + 5189.545926816675 + ], + [ + 5203.837948050186, + 5189.547149911098 + ], + [ + 5203.837336224365, + 5189.548474976474 + ], + [ + 5203.83652101384, + 5189.549698070948 + ], + [ + 5203.83539933324, + 5189.550819751596 + ], + [ + 5203.834074267797, + 5189.551838904097 + ], + [ + 5203.83254526048, + 5189.552654114643 + ], + [ + 5203.830608369288, + 5189.553265940444 + ], + [ + 5203.828366122347, + 5189.553571853337 + ], + [ + 5203.822963332512, + 5189.55316396949 + ], + [ + 5203.820109259815, + 5189.552654114643 + ], + [ + 5203.817560542805, + 5189.55214481699 + ], + [ + 5203.815216325029, + 5189.551634962141 + ], + [ + 5203.813075491897, + 5189.551125107293 + ], + [ + 5203.811240571535, + 5189.55061580964 + ], + [ + 5203.809609593283, + 5189.550207925796 + ], + [ + 5203.808182556939, + 5189.5498000419 + ], + [ + 5203.806857491531, + 5189.549392158021 + ], + [ + 5203.805837781831, + 5189.549086802292 + ], + [ + 5203.804920600333, + 5189.548780889399 + ], + [ + 5203.804206803546, + 5189.548474976474 + ], + [ + 5203.80359553496, + 5189.548271034551 + ], + [ + 5203.803187651049, + 5189.548067092594 + ], + [ + 5203.802881738104, + 5189.547965121626 + ], + [ + 5203.802677796195, + 5189.547761179703 + ], + [ + 5203.802474411457, + 5189.547761179703 + ], + [ + 5203.802168498544, + 5189.547659765946 + ], + [ + 5203.801556672692, + 5189.547353853053 + ], + [ + 5203.8008434331, + 5189.547047940127 + ], + [ + 5203.800027665415, + 5189.546538085279 + ], + [ + 5203.799110483917, + 5189.545926816675 + ], + [ + 5203.797988803242, + 5189.545213019902 + ], + [ + 5203.796969650714, + 5189.54439780941 + ], + [ + 5203.79584852721, + 5189.543378099628 + ], + [ + 5203.794828817512, + 5189.542155005238 + ], + [ + 5203.793809665175, + 5189.540931910815 + ], + [ + 5203.792891926419, + 5189.539402903516 + ], + [ + 5203.792076715925, + 5189.537771925164 + ], + [ + 5203.791464890072, + 5189.535937004922 + ], + [ + 5203.790751650482, + 5189.531757309608 + ], + [ + 5203.790649679509, + 5189.530432244231 + ], + [ + 5203.790547708475, + 5189.529005207885 + ], + [ + 5203.790547708475, + 5189.527680142458 + ], + [ + 5203.790547708475, + 5189.526253106113 + ], + [ + 5203.790547708475, + 5189.524826069717 + ], + [ + 5203.790649679509, + 5189.523500447144 + ], + [ + 5203.790649679509, + 5189.522175381717 + ], + [ + 5203.790751650482, + 5189.520952287328 + ], + [ + 5203.790751650482, + 5189.519729192904 + ], + [ + 5203.790751650482, + 5189.518709483206 + ], + [ + 5203.790853621416, + 5189.51779230171 + ], + [ + 5203.790853621416, + 5189.516976533936 + ], + [ + 5203.790955592421, + 5189.51626329436 + ], + [ + 5203.790955592421, + 5189.515855410482 + ], + [ + 5203.791057563323, + 5189.515345555633 + ], + [ + 5203.791057563323, + 5189.515243584664 + ], + [ + 5203.791159534361, + 5189.514836257981 + ], + [ + 5203.791260948166, + 5189.514224432164 + ], + [ + 5203.791566861073, + 5189.513409221668 + ], + [ + 5203.791872773985, + 5189.512491482942 + ], + [ + 5203.792382628831, + 5189.51147233044 + ], + [ + 5203.792993897423, + 5189.510452620744 + ], + [ + 5203.793809665175, + 5189.509331497274 + ], + [ + 5203.794828817512, + 5189.508312344823 + ], + [ + 5203.795950498248, + 5189.507292635127 + ], + [ + 5203.797377534591, + 5189.506477424548 + ], + [ + 5203.799008512941, + 5189.505763627777 + ], + [ + 5203.800944846905, + 5189.505254330125 + ], + [ + 5203.803085680107, + 5189.505050388202 + ], + [ + 5203.808386498848, + 5189.505356301128 + ], + [ + 5203.810629302981, + 5189.50586559873 + ], + [ + 5203.812871549884, + 5189.506273482626 + ], + [ + 5203.814910412122, + 5189.506783337475 + ], + [ + 5203.816949274219, + 5189.507190664123 + ], + [ + 5203.818784194575, + 5189.507700518971 + ], + [ + 5203.820618557498, + 5189.508210373819 + ], + [ + 5203.822249535758, + 5189.508618257699 + ], + [ + 5203.823778543172, + 5189.509025584347 + ], + [ + 5203.825104165713, + 5189.509433468277 + ], + [ + 5203.826327260151, + 5189.509841352172 + ], + [ + 5203.827346412649, + 5189.510147265049 + ], + [ + 5203.828264151347, + 5189.510452620744 + ], + [ + 5203.828875419998, + 5189.510656562667 + ], + [ + 5203.829385274852, + 5189.510860504622 + ], + [ + 5203.829895129697, + 5189.510962475592 + ], + [ + 5203.829997100702, + 5189.511064446545 + ], + [ + 5203.830201042638, + 5189.511166417515 + ], + [ + 5203.830710340256, + 5189.51147233044 + ], + [ + 5203.831322166041, + 5189.511778243367 + ], + [ + 5203.832035405634, + 5189.512287541018 + ], + [ + 5203.832749202387, + 5189.512899366821 + ], + [ + 5203.833666383983, + 5189.513612606361 + ], + [ + 5203.834482151742, + 5189.514326403133 + ], + [ + 5203.83539933324, + 5189.515345555633 + ], + [ + 5203.836215101, + 5189.516365265331 + ], + [ + 5203.837030311428, + 5189.517486388783 + ], + [ + 5203.837744108181, + 5189.518811454178 + ], + [ + 5203.838355934063, + 5189.520238490556 + ], + [ + 5203.838763260848, + 5189.521869468791 + ], + [ + 5203.839273115701, + 5189.525335367369 + ], + [ + 5203.839273115701, + 5189.526864374685 + ], + [ + 5203.839273115701, + 5189.528393382033 + ], + [ + 5203.839273115701, + 5189.529820418413 + ], + [ + 5203.839273115701, + 5189.531248012006 + ], + [ + 5203.839273115701, + 5189.532573077381 + ], + [ + 5203.839273115701, + 5189.533898142775 + ], + [ + 5203.839273115701, + 5189.535223208117 + ], + [ + 5203.839273115701, + 5189.536344331621 + ], + [ + 5203.839273115701, + 5189.537466012271 + ], + [ + 5203.839273115701, + 5189.538383193819 + ], + [ + 5203.839273115701, + 5189.539300932512 + ], + [ + 5203.839273115701, + 5189.540014172087 + ], + [ + 5203.839273115701, + 5189.540625997889 + ], + [ + 5203.839273115701, + 5189.541033881784 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553926", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801145859585, + "min_y": 5189.629320446133, + "max_x": 5203.835991132053, + "max_y": 5189.637888748734, + "center": [ + 5203.818568495819, + 5189.633604597433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835991132053, + 5189.637888748734 + ], + [ + 5203.801145859585, + 5189.629320446133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553927", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794113980354, + "min_y": 5189.612363862396, + "max_x": 5203.814307159886, + "max_y": 5189.632556753216, + "center": [ + 5203.804210570121, + 5189.622460307806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814307159886, + 5189.632556753216 + ], + [ + 5203.794113980354, + 5189.612363862396 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794436914017, + "min_y": 5189.611400498869, + "max_x": 5203.816012889973, + "max_y": 5189.632976184917, + "center": [ + 5203.805224901995, + 5189.622188341893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816012889973, + 5189.632976184917 + ], + [ + 5203.794436914017, + 5189.611400498869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553929", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79452557534, + "min_y": 5189.61104320645, + "max_x": 5203.817718620529, + "max_y": 5189.634235957035, + "center": [ + 5203.806122097934, + 5189.622639581743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817718620529, + 5189.634235957035 + ], + [ + 5203.79452557534, + 5189.61104320645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55392A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.609798149765, + "max_x": 5203.819424349747, + "max_y": 5189.634655388486, + "center": [ + 5203.806995580959, + 5189.6222267691255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819424349747, + 5189.634655388486 + ], + [ + 5203.794566812169, + 5189.609798149765 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55392B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.608511856703, + "max_x": 5203.821130077898, + "max_y": 5189.635074819654, + "center": [ + 5203.807848445033, + 5189.621793338179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.821130077898, + 5189.635074819654 + ], + [ + 5203.794566812169, + 5189.608511856703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55392C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800452702538, + "min_y": 5189.61227075656, + "max_x": 5203.822835873137, + "max_y": 5189.634653927159, + "center": [ + 5203.811644287837, + 5189.6234623418595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822835873137, + 5189.634653927159 + ], + [ + 5203.800452702538, + 5189.61227075656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55392D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803921607677, + "min_y": 5189.614453366999, + "max_x": 5203.824541598282, + "max_y": 5189.635073357659, + "center": [ + 5203.814231602979, + 5189.62476336233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.824541598282, + 5189.635073357659 + ], + [ + 5203.803921607677, + 5189.614453366999 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55392E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.776174816681, + "min_y": 5189.551431020219, + "max_x": 5203.839579028541, + "max_y": 5189.604642035516, + "center": [ + 5203.807876922611, + 5189.578036527868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819803346974, + 5189.582215665986 + ], + [ + 5203.818274339728, + 5189.582011724012 + ], + [ + 5203.816643361307, + 5189.581706368334 + ], + [ + 5203.814706470181, + 5189.581298484489 + ], + [ + 5203.812769578984, + 5189.580890600592 + ], + [ + 5203.810629302981, + 5189.580482716714 + ], + [ + 5203.808590440851, + 5189.579973419061 + ], + [ + 5203.806449607649, + 5189.579463564213 + ], + [ + 5203.804512716454, + 5189.578953709365 + ], + [ + 5203.802575825262, + 5189.57854638275 + ], + [ + 5203.8008434331, + 5189.578036527901 + ], + [ + 5203.799313868556, + 5189.577628644022 + ], + [ + 5203.797988803242, + 5189.577322731047 + ], + [ + 5203.797071621647, + 5189.577118789091 + ], + [ + 5203.796255853855, + 5189.576813433443 + ], + [ + 5203.796153882954, + 5189.576813433443 + ], + [ + 5203.795950498248, + 5189.576813433443 + ], + [ + 5203.795644585301, + 5189.576711462475 + ], + [ + 5203.795236701457, + 5189.576507520552 + ], + [ + 5203.794726846609, + 5189.576303578596 + ], + [ + 5203.794217549056, + 5189.575997665704 + ], + [ + 5203.793605723173, + 5189.575589781824 + ], + [ + 5203.792993897423, + 5189.575182455126 + ], + [ + 5203.792382628831, + 5189.574672600277 + ], + [ + 5203.791770803013, + 5189.574060774475 + ], + [ + 5203.791260948166, + 5189.5733475349 + ], + [ + 5203.790751650482, + 5189.57253176716 + ], + [ + 5203.790241795628, + 5189.571716556582 + ], + [ + 5203.789833911717, + 5189.570696846884 + ], + [ + 5203.789426585071, + 5189.568250658038 + ], + [ + 5203.789324614138, + 5189.567434890314 + ], + [ + 5203.789222643163, + 5189.566517708765 + ], + [ + 5203.789222643163, + 5189.56560052732 + ], + [ + 5203.789120672126, + 5189.564682788574 + ], + [ + 5203.789120672126, + 5189.563663636075 + ], + [ + 5203.789120672126, + 5189.562643926377 + ], + [ + 5203.789018701225, + 5189.561726744846 + ], + [ + 5203.789018701225, + 5189.560809006103 + ], + [ + 5203.789018701225, + 5189.559891824605 + ], + [ + 5203.788916730224, + 5189.559076614077 + ], + [ + 5203.788916730224, + 5189.558362817257 + ], + [ + 5203.788916730224, + 5189.557750991454 + ], + [ + 5203.788916730224, + 5189.557241693803 + ], + [ + 5203.788916730224, + 5189.556833809906 + ], + [ + 5203.788916730224, + 5189.556425926028 + ], + [ + 5203.788916730224, + 5189.556221984105 + ], + [ + 5203.788916730224, + 5189.556120013135 + ], + [ + 5203.788814759284, + 5189.555916071179 + ], + [ + 5203.788712788319, + 5189.555712686537 + ], + [ + 5203.788610817279, + 5189.555508744564 + ], + [ + 5203.788406875374, + 5189.555202831687 + ], + [ + 5203.788100962433, + 5189.554998889716 + ], + [ + 5203.78769363578, + 5189.55469297684 + ], + [ + 5203.787183780935, + 5189.554387063913 + ], + [ + 5203.786469984181, + 5189.554081708184 + ], + [ + 5203.785756744592, + 5189.553775795292 + ], + [ + 5203.784737034892, + 5189.553469882365 + ], + [ + 5203.78239281705, + 5189.552858056565 + ], + [ + 5203.781271693546, + 5189.552654114643 + ], + [ + 5203.78035395478, + 5189.552450729916 + ], + [ + 5203.779538744288, + 5189.55214481699 + ], + [ + 5203.778926918435, + 5189.551940875067 + ], + [ + 5203.77831509265, + 5189.551736933145 + ], + [ + 5203.777805795031, + 5189.551532991172 + ], + [ + 5203.777397911157, + 5189.551431020219 + ], + [ + 5203.776990027245, + 5189.551431020219 + ], + [ + 5203.776786085338, + 5189.551634962141 + ], + [ + 5203.776582143397, + 5189.551838904097 + ], + [ + 5203.776378758586, + 5189.552246787993 + ], + [ + 5203.776276787653, + 5189.552756085595 + ], + [ + 5203.776174816681, + 5189.553469882365 + ], + [ + 5203.776174816681, + 5189.554489034867 + ], + [ + 5203.776174816681, + 5189.556935780878 + ], + [ + 5203.776174816681, + 5189.577730614974 + ], + [ + 5203.776174816681, + 5189.577934556947 + ], + [ + 5203.776174816681, + 5189.578342440793 + ], + [ + 5203.776174816681, + 5189.579055680318 + ], + [ + 5203.776276787653, + 5189.579973419061 + ], + [ + 5203.776480729594, + 5189.580992571563 + ], + [ + 5203.7766841143, + 5189.582215665986 + ], + [ + 5203.777091998245, + 5189.583540731362 + ], + [ + 5203.777499882091, + 5189.584968324955 + ], + [ + 5203.778111707944, + 5189.586497332303 + ], + [ + 5203.778926918435, + 5189.5879243686 + ], + [ + 5203.779844099933, + 5189.589453375948 + ], + [ + 5203.781067751538, + 5189.590778441341 + ], + [ + 5203.78239281705, + 5189.592103506768 + ], + [ + 5203.784023795333, + 5189.593326601191 + ], + [ + 5203.787998991526, + 5189.595161521417 + ], + [ + 5203.789935882724, + 5189.595875318186 + ], + [ + 5203.792178686825, + 5189.596487144005 + ], + [ + 5203.794624875603, + 5189.597200383613 + ], + [ + 5203.797275563553, + 5189.597914180385 + ], + [ + 5203.800027665415, + 5189.598729390962 + ], + [ + 5203.8027797672, + 5189.599443187734 + ], + [ + 5203.805634397092, + 5189.600156427275 + ], + [ + 5203.808386498848, + 5189.600870224047 + ], + [ + 5203.811036629629, + 5189.601583463655 + ], + [ + 5203.81348337577, + 5189.602195289473 + ], + [ + 5203.815725622581, + 5189.602705144322 + ], + [ + 5203.817662513773, + 5189.603214441923 + ], + [ + 5203.819293492126, + 5189.60362232582 + ], + [ + 5203.820516586468, + 5189.603928238746 + ], + [ + 5203.821638267198, + 5189.604132180667 + ], + [ + 5203.821740238172, + 5189.604234151621 + ], + [ + 5203.822351506758, + 5189.604336122591 + ], + [ + 5203.823269245449, + 5189.604438093594 + ], + [ + 5203.824390368953, + 5189.604540064546 + ], + [ + 5203.825715434365, + 5189.604642035516 + ], + [ + 5203.827244441649, + 5189.604642035516 + ], + [ + 5203.828875419998, + 5189.604540064546 + ], + [ + 5203.830608369288, + 5189.604234151621 + ], + [ + 5203.832239347539, + 5189.603826267742 + ], + [ + 5203.833870325889, + 5189.603214441923 + ], + [ + 5203.83539933324, + 5189.602297260424 + ], + [ + 5203.836724955845, + 5189.601176136973 + ], + [ + 5203.83784607922, + 5189.59974910066 + ], + [ + 5203.838763260848, + 5189.598016151355 + ], + [ + 5203.839579028541, + 5189.593326601191 + ], + [ + 5203.839579028541, + 5189.590880412294 + ], + [ + 5203.839579028541, + 5189.588535637221 + ], + [ + 5203.839579028541, + 5189.586191419379 + ], + [ + 5203.839579028541, + 5189.584050586209 + ], + [ + 5203.839579028541, + 5189.581909753059 + ], + [ + 5203.839579028541, + 5189.579973419061 + ], + [ + 5203.839579028541, + 5189.578138498871 + ], + [ + 5203.839579028541, + 5189.576405549599 + ], + [ + 5203.839579028541, + 5189.574876542249 + ], + [ + 5203.839579028541, + 5189.573449505903 + ], + [ + 5203.839579028541, + 5189.572225854234 + ], + [ + 5203.839579028541, + 5189.571206701732 + ], + [ + 5203.839579028541, + 5189.570391491205 + ], + [ + 5203.839579028541, + 5189.569779665355 + ], + [ + 5203.839579028541, + 5189.569269810506 + ], + [ + 5203.839579028541, + 5189.569167839535 + ], + [ + 5203.839579028541, + 5189.568963897613 + ], + [ + 5203.839579028541, + 5189.568454600011 + ], + [ + 5203.839579028541, + 5189.56784277416 + ], + [ + 5203.839579028541, + 5189.567129534585 + ], + [ + 5203.839477057641, + 5189.56631376681 + ], + [ + 5203.839477057641, + 5189.565498556316 + ], + [ + 5203.839273115701, + 5189.564580817623 + ], + [ + 5203.839171144728, + 5189.563663636075 + ], + [ + 5203.838967202788, + 5189.562745897347 + ], + [ + 5203.838661289879, + 5189.561930686769 + ], + [ + 5203.838253963033, + 5189.561114919028 + ], + [ + 5203.83784607922, + 5189.560401679454 + ], + [ + 5203.837336224365, + 5189.559789853651 + ], + [ + 5203.836011158994, + 5189.559076614077 + ], + [ + 5203.835093977495, + 5189.558974643073 + ], + [ + 5203.834278209803, + 5189.558770701152 + ], + [ + 5203.833361028239, + 5189.558566759228 + ], + [ + 5203.832341318548, + 5189.558362817257 + ], + [ + 5203.831424137048, + 5189.558158875333 + ], + [ + 5203.83050639825, + 5189.557954933377 + ], + [ + 5203.82969118779, + 5189.557750991454 + ], + [ + 5203.828773449066, + 5189.557649020485 + ], + [ + 5203.82806020944, + 5189.557445635809 + ], + [ + 5203.827244441649, + 5189.557343664838 + ], + [ + 5203.82663317309, + 5189.557241693803 + ], + [ + 5203.826021347206, + 5189.557139722833 + ], + [ + 5203.825613463397, + 5189.557037751878 + ], + [ + 5203.825206136744, + 5189.556935780878 + ], + [ + 5203.825002194806, + 5189.556833809906 + ], + [ + 5203.824900223806, + 5189.556935780878 + ], + [ + 5203.824798252867, + 5189.556935780878 + ], + [ + 5203.824696281899, + 5189.557037751878 + ], + [ + 5203.824594310861, + 5189.557139722833 + ], + [ + 5203.824492339958, + 5189.557241693803 + ], + [ + 5203.824390368953, + 5189.557343664838 + ], + [ + 5203.824288398021, + 5189.557445635809 + ], + [ + 5203.824186427046, + 5189.557547049531 + ], + [ + 5203.824186427046, + 5189.557750991454 + ], + [ + 5203.824186427046, + 5189.557852962408 + ], + [ + 5203.824186427046, + 5189.557954933377 + ], + [ + 5203.824288398021, + 5189.558158875333 + ], + [ + 5203.824390368953, + 5189.558260846304 + ], + [ + 5203.824900223806, + 5189.558566759228 + ], + [ + 5203.825104165713, + 5189.558770701152 + ], + [ + 5203.825409521456, + 5189.558974643073 + ], + [ + 5203.825613463397, + 5189.559178027834 + ], + [ + 5203.825919376305, + 5189.559483940726 + ], + [ + 5203.826123318243, + 5189.559789853651 + ], + [ + 5203.826327260151, + 5189.560095766577 + ], + [ + 5203.826531202057, + 5189.560401679454 + ], + [ + 5203.826735144063, + 5189.560809006103 + ], + [ + 5203.826837114995, + 5189.561114919028 + ], + [ + 5203.827040499742, + 5189.561522802925 + ], + [ + 5203.827142470709, + 5189.561930686769 + ], + [ + 5203.827244441649, + 5189.562338570649 + ], + [ + 5203.827244441649, + 5189.5628478683 + ], + [ + 5203.827346412649, + 5189.563255752195 + ], + [ + 5203.827448383558, + 5189.564172933727 + ], + [ + 5203.827448383558, + 5189.564784759546 + ], + [ + 5203.827448383558, + 5189.565396585346 + ], + [ + 5203.827448383558, + 5189.566109824888 + ], + [ + 5203.827448383558, + 5189.566925592663 + ], + [ + 5203.827448383558, + 5189.567740803188 + ], + [ + 5203.827448383558, + 5189.568556570964 + ], + [ + 5203.827448383558, + 5189.569371781509 + ], + [ + 5203.827448383558, + 5189.570187549232 + ], + [ + 5203.827448383558, + 5189.57100275981 + ], + [ + 5203.827448383558, + 5189.571716556582 + ], + [ + 5203.827448383558, + 5189.572429796206 + ], + [ + 5203.827448383558, + 5189.573041622009 + ], + [ + 5203.827448383558, + 5189.573551476856 + ], + [ + 5203.827448383558, + 5189.573856832552 + ], + [ + 5203.827448383558, + 5189.574162745429 + ], + [ + 5203.827448383558, + 5189.574264716398 + ], + [ + 5203.827448383558, + 5189.574570629322 + ], + [ + 5203.827550354588, + 5189.574978513203 + ], + [ + 5203.827550354588, + 5189.575487810855 + ], + [ + 5203.827550354588, + 5189.576099636673 + ], + [ + 5203.827550354588, + 5189.576813433443 + ], + [ + 5203.827448383558, + 5189.577628644022 + ], + [ + 5203.827244441649, + 5189.578342440793 + ], + [ + 5203.827040499742, + 5189.579157651287 + ], + [ + 5203.82663317309, + 5189.579871448092 + ], + [ + 5203.826123318243, + 5189.580584687668 + ], + [ + 5203.825511492359, + 5189.581094542515 + ], + [ + 5203.824594310861, + 5189.581604397364 + ], + [ + 5203.823575158395, + 5189.582011724012 + ], + [ + 5203.821026441314, + 5189.582215665986 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553930", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802834450506, + "min_y": 5189.642154189463, + "max_x": 5203.819293492126, + "max_y": 5189.658613231166, + "center": [ + 5203.811063971316, + 5189.650383710315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.658613231166 + ], + [ + 5203.802834450506, + 5189.642154189463 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553931", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801763591988, + "min_y": 5189.642369625675, + "max_x": 5203.819293492126, + "max_y": 5189.659899525814, + "center": [ + 5203.810528542057, + 5189.651134575744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.659899525814 + ], + [ + 5203.801763591988, + 5189.642369625675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553932", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800745655041, + "min_y": 5189.642637983476, + "max_x": 5203.819293492126, + "max_y": 5189.661185820511, + "center": [ + 5203.810019573584, + 5189.651911901993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.661185820511 + ], + [ + 5203.800745655041, + 5189.642637983476 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553933", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803905308963, + "min_y": 5189.641938753301, + "max_x": 5203.819293492126, + "max_y": 5189.657326936468, + "center": [ + 5203.811599400545, + 5189.649632844885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.657326936468 + ], + [ + 5203.803905308963, + 5189.641938753301 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553934", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.666196396748, + "max_x": 5203.833019198487, + "max_y": 5189.686488179138, + "center": [ + 5203.822873307243, + 5189.676342287943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833019198487, + 5189.686488179138 + ], + [ + 5203.812727415998, + 5189.666196396748 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553935", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.664910102049, + "max_x": 5203.83382247396, + "max_y": 5189.686005159977, + "center": [ + 5203.823274944979, + 5189.675457631013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83382247396, + 5189.686005159977 + ], + [ + 5203.812727415998, + 5189.664910102049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553936", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.663623807319, + "max_x": 5203.834563621779, + "max_y": 5189.685460013084, + "center": [ + 5203.823645518889, + 5189.674541910201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834563621779, + 5189.685460013084 + ], + [ + 5203.812727415998, + 5189.663623807319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553937", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812571774587, + "min_y": 5189.669899639313, + "max_x": 5203.830268518746, + "max_y": 5189.687596383487, + "center": [ + 5203.821420146667, + 5189.6787480114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.830268518746, + 5189.687596383487 + ], + [ + 5203.812571774587, + 5189.669899639313 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553938", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.66876898611, + "max_x": 5203.831254857447, + "max_y": 5189.68729642756, + "center": [ + 5203.821991136722, + 5189.678032706835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831254857447, + 5189.68729642756 + ], + [ + 5203.812727415998, + 5189.66876898611 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553939", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812727415998, + "min_y": 5189.667482691412, + "max_x": 5203.832181113392, + "max_y": 5189.68693638879, + "center": [ + 5203.822454264695, + 5189.677209540101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832181113392, + 5189.68693638879 + ], + [ + 5203.812727415998, + 5189.667482691412 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55393A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5203.805022571305, + "min_y": 5189.647790185766, + "max_x": 5203.839375086633, + "max_y": 5189.687854189813, + "center": [ + 5203.822198828969, + 5189.66782218779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805022571305, + 5189.682855940605 + ], + [ + 5203.805939752803, + 5189.683162410727 + ], + [ + 5203.806959462496, + 5189.68336858157 + ], + [ + 5203.808080585999, + 5189.683675051693 + ], + [ + 5203.809405651378, + 5189.683975949598 + ], + [ + 5203.810832687723, + 5189.684388291269 + ], + [ + 5203.812565637044, + 5189.68479506072 + ], + [ + 5203.814298586236, + 5189.685201830123 + ], + [ + 5203.816235477429, + 5189.685708898871 + ], + [ + 5203.818376310628, + 5189.686221539819 + ], + [ + 5203.823167274517, + 5189.687241249517 + ], + [ + 5203.825919376305, + 5189.687748318299 + ], + [ + 5203.828468093246, + 5189.687854189813 + ], + [ + 5203.830608369288, + 5189.687547719639 + ], + [ + 5203.832443289448, + 5189.686834480114 + ], + [ + 5203.833972296898, + 5189.685915069698 + ], + [ + 5203.835297362241, + 5189.684895359999 + ], + [ + 5203.836419042938, + 5189.683569180179 + ], + [ + 5203.837234253334, + 5189.682248572545 + ], + [ + 5203.837948050186, + 5189.68081652121 + ], + [ + 5203.838457347941, + 5189.679390042062 + ], + [ + 5203.838763260848, + 5189.678063862209 + ], + [ + 5203.839069173688, + 5189.676943853266 + ], + [ + 5203.839171144728, + 5189.675823844188 + ], + [ + 5203.839273115701, + 5189.675010305333 + ], + [ + 5203.839375086633, + 5189.674297065759 + ], + [ + 5203.839171144728, + 5189.65839405219 + ], + [ + 5203.839069173688, + 5189.65839405219 + ], + [ + 5203.839069173688, + 5189.658087582068 + ], + [ + 5203.839069173688, + 5189.657781111945 + ], + [ + 5203.839069173688, + 5189.657274043198 + ], + [ + 5203.838967202788, + 5189.656761402249 + ], + [ + 5203.838865231788, + 5189.656148461953 + ], + [ + 5203.838763260848, + 5189.655435222428 + ], + [ + 5203.838559318842, + 5189.654721982854 + ], + [ + 5203.838355934063, + 5189.654109042559 + ], + [ + 5203.838050021126, + 5189.653395803035 + ], + [ + 5203.837744108181, + 5189.65268256346 + ], + [ + 5203.837234253334, + 5189.652075195349 + ], + [ + 5203.836724955845, + 5189.651562554383 + ], + [ + 5203.836215101, + 5189.651055485651 + ], + [ + 5203.834788064654, + 5189.650442545406 + ], + [ + 5203.834074267797, + 5189.650342246077 + ], + [ + 5203.83325905724, + 5189.650136075234 + ], + [ + 5203.832443289448, + 5189.650035775954 + ], + [ + 5203.83152610795, + 5189.649729305831 + ], + [ + 5203.830608369288, + 5189.649523134988 + ], + [ + 5203.82969118779, + 5189.649322536379 + ], + [ + 5203.828773449066, + 5189.649116365536 + ], + [ + 5203.827958238402, + 5189.648910194744 + ], + [ + 5203.827040499742, + 5189.648709596134 + ], + [ + 5203.826327260151, + 5189.648503425292 + ], + [ + 5203.825613463397, + 5189.648302826682 + ], + [ + 5203.825002194806, + 5189.648196955218 + ], + [ + 5203.824492339958, + 5189.647996356559 + ], + [ + 5203.824084456015, + 5189.647896057262 + ], + [ + 5203.823778543172, + 5189.647790185766 + ], + [ + 5203.823677129364, + 5189.647896057262 + ], + [ + 5203.823575158395, + 5189.647896057262 + ], + [ + 5203.823575158395, + 5189.647996356559 + ], + [ + 5203.823473187356, + 5189.648096655838 + ], + [ + 5203.823371216457, + 5189.648096655838 + ], + [ + 5203.823269245449, + 5189.648196955218 + ], + [ + 5203.823167274517, + 5189.648302826682 + ], + [ + 5203.823167274517, + 5189.648403126011 + ], + [ + 5203.823065303544, + 5189.648609296805 + ], + [ + 5203.823065303544, + 5189.648709596134 + ], + [ + 5203.823065303544, + 5189.648809895464 + ], + [ + 5203.823167274517, + 5189.649016066257 + ], + [ + 5203.823269245449, + 5189.649116365536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55393B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.661044433189, + "max_x": 5203.815263673496, + "max_y": 5189.685454485339, + "center": [ + 5203.803058647456, + 5189.673249459263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815263673496, + 5189.685454485339 + ], + [ + 5203.790853621416, + 5189.661044433189 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55393C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.659758138525, + "max_x": 5203.816983503017, + "max_y": 5189.685888020007, + "center": [ + 5203.8039185622165, + 5189.672823079266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816983503017, + 5189.685888020007 + ], + [ + 5203.790853621416, + 5189.659758138525 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55393D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.658471843827, + "max_x": 5203.818664697827, + "max_y": 5189.686282920201, + "center": [ + 5203.804759159622, + 5189.672377382014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818664697827, + 5189.686282920201 + ], + [ + 5203.790853621416, + 5189.658471843827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55393E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790754784733, + "min_y": 5189.657086712511, + "max_x": 5203.820298793811, + "max_y": 5189.686630721587, + "center": [ + 5203.805526789272, + 5189.671858717049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820298793811, + 5189.686630721587 + ], + [ + 5203.790754784733, + 5189.657086712511 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.101086797003, + "min_y": 5189.536063241351, + "max_x": 5204.140480636068, + "max_y": 5189.586916003555, + "center": [ + 5204.120783716535, + 5189.561489622453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.101086797003, + 5189.536063241351 + ], + [ + 5204.140480636068, + 5189.586916003555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553941", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.101086797003, + "min_y": 5189.500611997752, + "max_x": 5204.101086797003, + "max_y": 5189.536063241351, + "center": [ + 5204.101086797003, + 5189.518337619551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.101086797003, + 5189.536063241351 + ], + [ + 5204.101086797003, + 5189.500611997752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553942", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83254526048, + "min_y": 5189.715588465272, + "max_x": 5203.836011158994, + "max_y": 5189.716808773662, + "center": [ + 5203.834278209737, + 5189.716198619467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836011158994, + 5189.715588465272 + ], + [ + 5203.83254526048, + 5189.716808773662 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553943", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836011158994, + "min_y": 5189.714462884111, + "max_x": 5203.839375086633, + "max_y": 5189.715588465272, + "center": [ + 5203.837693122813, + 5189.715025674692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.714462884111 + ], + [ + 5203.836011158994, + 5189.715588465272 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553944", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813891259582, + "min_y": 5189.722213792319, + "max_x": 5203.816235477429, + "max_y": 5189.723027331174, + "center": [ + 5203.815063368505, + 5189.722620561746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816235477429, + 5189.722213792319 + ], + [ + 5203.813891259582, + 5189.723027331174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553945", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816235477429, + "min_y": 5189.721294381868, + "max_x": 5203.818987579214, + "max_y": 5189.722213792319, + "center": [ + 5203.817611528321, + 5189.721754087093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818987579214, + 5189.721294381868 + ], + [ + 5203.816235477429, + 5189.722213792319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553946", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818987579214, + "min_y": 5189.720274672172, + "max_x": 5203.822147564817, + "max_y": 5189.721294381868, + "center": [ + 5203.8205675720155, + 5189.72078452702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822147564817, + 5189.720274672172 + ], + [ + 5203.818987579214, + 5189.721294381868 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553947", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822147564817, + "min_y": 5189.719154663179, + "max_x": 5203.825511492359, + "max_y": 5189.720274672172, + "center": [ + 5203.823829528588, + 5189.719714667675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825511492359, + 5189.719154663179 + ], + [ + 5203.822147564817, + 5189.720274672172 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553948", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825511492359, + "min_y": 5189.717928782655, + "max_x": 5203.828977391004, + "max_y": 5189.719154663179, + "center": [ + 5203.827244441682, + 5189.7185417229175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828977391004, + 5189.717928782655 + ], + [ + 5203.825511492359, + 5189.719154663179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553949", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828977391004, + "min_y": 5189.716808773662, + "max_x": 5203.83254526048, + "max_y": 5189.717928782655, + "center": [ + 5203.830761325742, + 5189.717368778158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83254526048, + 5189.716808773662 + ], + [ + 5203.828977391004, + 5189.717928782655 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815038249962, + "min_y": 5189.72516495361, + "max_x": 5203.839477057641, + "max_y": 5189.749603761214, + "center": [ + 5203.827257653801, + 5189.737384357411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.749603761214 + ], + [ + 5203.815038249962, + 5189.72516495361 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816748347581, + "min_y": 5189.725588756495, + "max_x": 5203.839477057641, + "max_y": 5189.748317466484, + "center": [ + 5203.828112702611, + 5189.736953111489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.748317466484 + ], + [ + 5203.816748347581, + 5189.725588756495 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818458445094, + "min_y": 5189.726012559361, + "max_x": 5203.839477057641, + "max_y": 5189.747031171785, + "center": [ + 5203.828967751368, + 5189.736521865573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.747031171785 + ], + [ + 5203.818458445094, + 5189.726012559361 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.728020008163, + "max_x": 5203.839477057641, + "max_y": 5189.749328040374, + "center": [ + 5203.839477057641, + 5189.738674024269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.728020008163 + ], + [ + 5203.839477057641, + 5189.749328040374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823588737841, + "min_y": 5189.727283967947, + "max_x": 5203.839477057641, + "max_y": 5189.743172287724, + "center": [ + 5203.8315328977405, + 5189.735228127835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.743172287724 + ], + [ + 5203.823588737841, + 5189.727283967947 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55394F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.821878640225, + "min_y": 5189.726860165079, + "max_x": 5203.839477057641, + "max_y": 5189.744458582423, + "center": [ + 5203.830677848933, + 5189.735659373751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.744458582423 + ], + [ + 5203.821878640225, + 5189.726860165079 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553950", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820168542613, + "min_y": 5189.726436362245, + "max_x": 5203.839477057641, + "max_y": 5189.745744877087, + "center": [ + 5203.829822800127, + 5189.736090619666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.745744877087 + ], + [ + 5203.820168542613, + 5189.726436362245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553951", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830429127967, + "min_y": 5189.728979179415, + "max_x": 5203.839477057641, + "max_y": 5189.7380271089, + "center": [ + 5203.834953092804, + 5189.733503144157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.7380271089 + ], + [ + 5203.830429127967, + 5189.728979179415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553952", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828719030453, + "min_y": 5189.72855537653, + "max_x": 5203.839477057641, + "max_y": 5189.739313403597, + "center": [ + 5203.834098044046, + 5189.733934390064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.739313403597 + ], + [ + 5203.828719030453, + 5189.72855537653 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553953", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827008932934, + "min_y": 5189.728131573662, + "max_x": 5203.839477057641, + "max_y": 5189.74059969833, + "center": [ + 5203.833242995288, + 5189.734365635995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.74059969833 + ], + [ + 5203.827008932934, + 5189.728131573662 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553954", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825298835323, + "min_y": 5189.72770777078, + "max_x": 5203.839477057641, + "max_y": 5189.741885993027, + "center": [ + 5203.832387946482, + 5189.734796881903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.741885993027 + ], + [ + 5203.825298835323, + 5189.72770777078 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553955", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832139225585, + "min_y": 5189.729402982248, + "max_x": 5203.839477057641, + "max_y": 5189.736740814201, + "center": [ + 5203.835808141613, + 5189.733071898225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.736740814201 + ], + [ + 5203.832139225585, + 5189.729402982248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553956", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.728020008163, + "max_x": 5203.839477057641, + "max_y": 5189.728020008163, + "center": [ + 5203.839426072136, + 5189.728020008163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.728020008163 + ], + [ + 5203.839477057641, + 5189.728020008163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553957", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.727919708833, + "max_x": 5203.839375086633, + "max_y": 5189.728020008163, + "center": [ + 5203.839324101167, + 5189.727969858498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.727919708833 + ], + [ + 5203.839375086633, + 5189.728020008163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553958", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.727819409505, + "max_x": 5203.839273115701, + "max_y": 5189.727919708833, + "center": [ + 5203.839171144695, + 5189.7278695591685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.727819409505 + ], + [ + 5203.839273115701, + 5189.727919708833 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553959", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838967202788, + "min_y": 5189.727819409505, + "max_x": 5203.839069173688, + "max_y": 5189.727819409505, + "center": [ + 5203.839018188238, + 5189.727819409505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838967202788, + 5189.727819409505 + ], + [ + 5203.839069173688, + 5189.727819409505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838865231788, + "min_y": 5189.727719110257, + "max_x": 5203.838967202788, + "max_y": 5189.727819409505, + "center": [ + 5203.838916217288, + 5189.727769259881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838865231788, + 5189.727719110257 + ], + [ + 5203.838967202788, + 5189.727819409505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838763260848, + "min_y": 5189.727719110257, + "max_x": 5203.838865231788, + "max_y": 5189.727719110257, + "center": [ + 5203.838814246318, + 5189.727719110257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838763260848, + 5189.727719110257 + ], + [ + 5203.838865231788, + 5189.727719110257 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838559318842, + "min_y": 5189.727719110257, + "max_x": 5203.838763260848, + "max_y": 5189.727819409505, + "center": [ + 5203.838661289845, + 5189.727769259881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838559318842, + 5189.727819409505 + ], + [ + 5203.838763260848, + 5189.727719110257 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.727819409505, + "max_x": 5203.838559318842, + "max_y": 5189.727919708833, + "center": [ + 5203.8384576264525, + 5189.7278695591685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.727919708833 + ], + [ + 5203.838559318842, + 5189.727819409505 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838253963033, + "min_y": 5189.727919708833, + "max_x": 5203.838355934063, + "max_y": 5189.728020008163, + "center": [ + 5203.838304948547, + 5189.727969858498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838253963033, + 5189.728020008163 + ], + [ + 5203.838355934063, + 5189.727919708833 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55395F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838050021126, + "min_y": 5189.728020008163, + "max_x": 5203.838253963033, + "max_y": 5189.728226178989, + "center": [ + 5203.8381519920795, + 5189.728123093576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838050021126, + 5189.728226178989 + ], + [ + 5203.838253963033, + 5189.728020008163 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553960", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83784607922, + "min_y": 5189.728226178989, + "max_x": 5203.838050021126, + "max_y": 5189.728532649112, + "center": [ + 5203.8379480501735, + 5189.72837941405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83784607922, + 5189.728532649112 + ], + [ + 5203.838050021126, + 5189.728226178989 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553961", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837744108181, + "min_y": 5189.728532649112, + "max_x": 5203.83784607922, + "max_y": 5189.728939418531, + "center": [ + 5203.837795093701, + 5189.728736033821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837744108181, + 5189.728939418531 + ], + [ + 5203.83784607922, + 5189.728532649112 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553962", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837540166274, + "min_y": 5189.728939418531, + "max_x": 5203.837744108181, + "max_y": 5189.729346187982, + "center": [ + 5203.837642137228, + 5189.729142803257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837540166274, + 5189.729346187982 + ], + [ + 5203.837744108181, + 5189.728939418531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553963", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837438195338, + "min_y": 5189.729346187982, + "max_x": 5203.837540166274, + "max_y": 5189.729858828933, + "center": [ + 5203.837489180806, + 5189.729602508458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837438195338, + 5189.729858828933 + ], + [ + 5203.837540166274, + 5189.729346187982 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553964", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837234253334, + "min_y": 5189.729858828933, + "max_x": 5203.837438195338, + "max_y": 5189.730265598385, + "center": [ + 5203.8373362243365, + 5189.730062213659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837234253334, + 5189.730265598385 + ], + [ + 5203.837438195338, + 5189.729858828933 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553965", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837030311428, + "min_y": 5189.730265598385, + "max_x": 5203.837234253334, + "max_y": 5189.73036589768, + "center": [ + 5203.8371322823805, + 5189.730315748033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837030311428, + 5189.73036589768 + ], + [ + 5203.837234253334, + 5189.730265598385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553966", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836826369521, + "min_y": 5189.73036589768, + "max_x": 5203.837030311428, + "max_y": 5189.73036589768, + "center": [ + 5203.8369283404745, + 5189.73036589768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836826369521, + 5189.73036589768 + ], + [ + 5203.837030311428, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553967", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83662298488, + "min_y": 5189.73036589768, + "max_x": 5203.836826369521, + "max_y": 5189.730466197009, + "center": [ + 5203.8367246772, + 5189.730416047345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83662298488, + 5189.730466197009 + ], + [ + 5203.836826369521, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553968", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836419042938, + "min_y": 5189.730466197009, + "max_x": 5203.83662298488, + "max_y": 5189.730466197009, + "center": [ + 5203.836521013909, + 5189.730466197009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836419042938, + 5189.730466197009 + ], + [ + 5203.83662298488, + 5189.730466197009 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553969", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836215101, + "min_y": 5189.730466197009, + "max_x": 5203.836419042938, + "max_y": 5189.730466197009, + "center": [ + 5203.8363170719695, + 5189.730466197009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836215101, + 5189.730466197009 + ], + [ + 5203.836419042938, + 5189.730466197009 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835909188094, + "min_y": 5189.730466197009, + "max_x": 5203.836215101, + "max_y": 5189.730466197009, + "center": [ + 5203.836062144546, + 5189.730466197009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835909188094, + 5189.730466197009 + ], + [ + 5203.836215101, + 5189.730466197009 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835705246154, + "min_y": 5189.73036589768, + "max_x": 5203.835909188094, + "max_y": 5189.730466197009, + "center": [ + 5203.835807217124, + 5189.730416047345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835705246154, + 5189.73036589768 + ], + [ + 5203.835909188094, + 5189.730466197009 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835501304141, + "min_y": 5189.73036589768, + "max_x": 5203.835705246154, + "max_y": 5189.73036589768, + "center": [ + 5203.835603275147, + 5189.73036589768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835501304141, + 5189.73036589768 + ], + [ + 5203.835705246154, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835297362241, + "min_y": 5189.730265598385, + "max_x": 5203.835501304141, + "max_y": 5189.73036589768, + "center": [ + 5203.835399333191, + 5189.730315748033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835297362241, + 5189.730265598385 + ], + [ + 5203.835501304141, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835093977495, + "min_y": 5189.730265598385, + "max_x": 5203.835297362241, + "max_y": 5189.730265598385, + "center": [ + 5203.835195669868, + 5189.730265598385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835093977495, + 5189.730265598385 + ], + [ + 5203.835297362241, + 5189.730265598385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55396F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834992006596, + "min_y": 5189.730165299055, + "max_x": 5203.835093977495, + "max_y": 5189.730265598385, + "center": [ + 5203.835042992045, + 5189.730215448721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834992006596, + 5189.730165299055 + ], + [ + 5203.835093977495, + 5189.730265598385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553970", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834788064654, + "min_y": 5189.730165299055, + "max_x": 5203.834992006596, + "max_y": 5189.730165299055, + "center": [ + 5203.834890035625, + 5189.730165299055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834788064654, + 5189.730165299055 + ], + [ + 5203.834992006596, + 5189.730165299055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553971", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834788064654, + "min_y": 5189.730059427557, + "max_x": 5203.834788064654, + "max_y": 5189.730165299055, + "center": [ + 5203.834788064654, + 5189.730112363306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834788064654, + 5189.730059427557 + ], + [ + 5203.834788064654, + 5189.730165299055 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553972", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838367846028, + "min_y": 5189.727913834488, + "max_x": 5203.839477057641, + "max_y": 5189.729023046014, + "center": [ + 5203.838922451834, + 5189.728468440251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.729023046014 + ], + [ + 5203.838367846028, + 5189.727913834488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553973", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837816872765, + "min_y": 5189.728649155924, + "max_x": 5203.839477057641, + "max_y": 5189.730309340712, + "center": [ + 5203.838646965203, + 5189.729479248318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.730309340712 + ], + [ + 5203.837816872765, + 5189.728649155924 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553974", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837488309766, + "min_y": 5189.729606887709, + "max_x": 5203.839477057641, + "max_y": 5189.731595635444, + "center": [ + 5203.838482683703, + 5189.730601261577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.731595635444 + ], + [ + 5203.837488309766, + 5189.729606887709 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553975", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836961025026, + "min_y": 5189.73036589768, + "max_x": 5203.839477057641, + "max_y": 5189.732881930141, + "center": [ + 5203.838219041333, + 5189.731623913911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.732881930141 + ], + [ + 5203.836961025026, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553976", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835674730426, + "min_y": 5189.73036589768, + "max_x": 5203.839477057641, + "max_y": 5189.734168224839, + "center": [ + 5203.837575894033, + 5189.732267061259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.734168224839 + ], + [ + 5203.835674730426, + 5189.73036589768 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553977", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833849323195, + "min_y": 5189.729826785081, + "max_x": 5203.839477057641, + "max_y": 5189.735454519504, + "center": [ + 5203.836663190417, + 5189.7326406522925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.735454519504 + ], + [ + 5203.833849323195, + 5189.729826785081 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553978", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832341318548, + "min_y": 5189.75208069931, + "max_x": 5203.834482151742, + "max_y": 5189.752587768092, + "center": [ + 5203.833411735145, + 5189.752334233701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834482151742, + 5189.752587768092 + ], + [ + 5203.832341318548, + 5189.75208069931 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553979", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.751874528517, + "max_x": 5203.839375086633, + "max_y": 5189.752281297969, + "center": [ + 5203.839324101167, + 5189.752077913243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.751874528517 + ], + [ + 5203.839273115701, + 5189.752281297969 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834482151742, + "min_y": 5189.752587768092, + "max_x": 5203.835807217086, + "max_y": 5189.752994537544, + "center": [ + 5203.8351446844135, + 5189.752791152818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835807217086, + 5189.752994537544 + ], + [ + 5203.834482151742, + 5189.752587768092 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835807217086, + "min_y": 5189.752994537544, + "max_x": 5203.837336224365, + "max_y": 5189.753406879162, + "center": [ + 5203.836571720725, + 5189.753200708353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837336224365, + 5189.753406879162 + ], + [ + 5203.835807217086, + 5189.752994537544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837336224365, + "min_y": 5189.753301007666, + "max_x": 5203.83784607922, + "max_y": 5189.753406879162, + "center": [ + 5203.837591151792, + 5189.7533539434135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83784607922, + 5189.753301007666 + ], + [ + 5203.837336224365, + 5189.753406879162 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83784607922, + "min_y": 5189.753200708336, + "max_x": 5203.838355934063, + "max_y": 5189.753301007666, + "center": [ + 5203.838101006641, + 5189.753250858001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.753200708336 + ], + [ + 5203.83784607922, + 5189.753301007666 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.752994537544, + "max_x": 5203.838763260848, + "max_y": 5189.753200708336, + "center": [ + 5203.838559597456, + 5189.75309762294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838763260848, + 5189.752994537544 + ], + [ + 5203.838355934063, + 5189.753200708336 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55397F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838763260848, + "min_y": 5189.752688067422, + "max_x": 5203.839069173688, + "max_y": 5189.752994537544, + "center": [ + 5203.838916217268, + 5189.752841302483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.752688067422 + ], + [ + 5203.838763260848, + 5189.752994537544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553980", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.752281297969, + "max_x": 5203.839273115701, + "max_y": 5189.752688067422, + "center": [ + 5203.839171144695, + 5189.7524846826955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.752281297969 + ], + [ + 5203.839069173688, + 5189.752688067422 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553981", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.751467759064, + "max_x": 5203.839477057641, + "max_y": 5189.751874528517, + "center": [ + 5203.839426072136, + 5189.751671143791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.751467759064 + ], + [ + 5203.839375086633, + 5189.751874528517 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553982", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.750960690367, + "max_x": 5203.839579028541, + "max_y": 5189.751467759064, + "center": [ + 5203.8395280430905, + 5189.751214224716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839579028541, + 5189.750960690367 + ], + [ + 5203.839477057641, + 5189.751467759064 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553983", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839579028541, + "min_y": 5189.750548348696, + "max_x": 5203.839579028541, + "max_y": 5189.750960690367, + "center": [ + 5203.839579028541, + 5189.750754519531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839579028541, + 5189.750548348696 + ], + [ + 5203.839579028541, + 5189.750960690367 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553984", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.750241878574, + "max_x": 5203.839579028541, + "max_y": 5189.750548348696, + "center": [ + 5203.8395280430905, + 5189.750395113635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.750241878574 + ], + [ + 5203.839579028541, + 5189.750548348696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553985", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.749835109122, + "max_x": 5203.839477057641, + "max_y": 5189.750241878574, + "center": [ + 5203.839477057641, + 5189.7500384938485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.749835109122 + ], + [ + 5203.839477057641, + 5189.750241878574 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553986", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.749634510462, + "max_x": 5203.839477057641, + "max_y": 5189.749835109122, + "center": [ + 5203.839477057641, + 5189.749734809791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.749634510462 + ], + [ + 5203.839477057641, + 5189.749835109122 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553987", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.74942833967, + "max_x": 5203.839477057641, + "max_y": 5189.749634510462, + "center": [ + 5203.839477057641, + 5189.749531425066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.74942833967 + ], + [ + 5203.839477057641, + 5189.749634510462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553988", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839477057641, + "min_y": 5189.749328040374, + "max_x": 5203.839477057641, + "max_y": 5189.74942833967, + "center": [ + 5203.839477057641, + 5189.749378190022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839477057641, + 5189.749328040374 + ], + [ + 5203.839477057641, + 5189.74942833967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553989", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814910412122, + "min_y": 5189.74718832165, + "max_x": 5203.818987579214, + "max_y": 5189.748308330678, + "center": [ + 5203.816948995668, + 5189.747748326165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818987579214, + 5189.748308330678 + ], + [ + 5203.814910412122, + 5189.74718832165 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818987579214, + "min_y": 5189.748308330678, + "max_x": 5203.822861361608, + "max_y": 5189.749328040374, + "center": [ + 5203.820924470411, + 5189.748818185526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822861361608, + 5189.749328040374 + ], + [ + 5203.818987579214, + 5189.748308330678 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822861361608, + "min_y": 5189.749328040374, + "max_x": 5203.826531202057, + "max_y": 5189.750347750071, + "center": [ + 5203.824696281832, + 5189.749837895222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826531202057, + 5189.750347750071 + ], + [ + 5203.822861361608, + 5189.749328040374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826531202057, + "min_y": 5189.750347750071, + "max_x": 5203.82969118779, + "max_y": 5189.75126158827, + "center": [ + 5203.828111194924, + 5189.750804669171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82969118779, + 5189.75126158827 + ], + [ + 5203.826531202057, + 5189.750347750071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82969118779, + "min_y": 5189.75126158827, + "max_x": 5203.832341318548, + "max_y": 5189.75208069931, + "center": [ + 5203.831016253169, + 5189.751671143789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832341318548, + 5189.75208069931 + ], + [ + 5203.82969118779, + 5189.75126158827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839256181857, + "min_y": 5189.692135768052, + "max_x": 5203.85025931829, + "max_y": 5189.694946793135, + "center": [ + 5203.844757750074, + 5189.693541280594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839256181857, + 5189.692135768052 + ], + [ + 5203.85025931829, + 5189.694946793135 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55398F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.842433101232, + "min_y": 5189.712529336182, + "max_x": 5203.845083232019, + "max_y": 5189.713443174413, + "center": [ + 5203.843758166626, + 5189.712986255297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.845083232019, + 5189.712529336182 + ], + [ + 5203.842433101232, + 5189.713443174413 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553990", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832580666223, + "min_y": 5189.698973350169, + "max_x": 5203.845854845667, + "max_y": 5189.712247529513, + "center": [ + 5203.839217755945, + 5189.705610439841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.845854845667, + 5189.712247529513 + ], + [ + 5203.832580666223, + 5189.698973350169 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553991", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831643275653, + "min_y": 5189.699322254183, + "max_x": 5203.844910068996, + "max_y": 5189.712589047593, + "center": [ + 5203.838276672324, + 5189.705955650888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.844910068996, + 5189.712589047593 + ], + [ + 5203.831643275653, + 5189.699322254183 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553992", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830705884888, + "min_y": 5189.699671158197, + "max_x": 5203.843953593434, + "max_y": 5189.712918866743, + "center": [ + 5203.837329739161, + 5189.70629501247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.843953593434, + 5189.712918866743 + ], + [ + 5203.830705884888, + 5189.699671158197 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553993", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.841838282413, + "min_y": 5189.692795429884, + "max_x": 5203.853136152507, + "max_y": 5189.704093300047, + "center": [ + 5203.84748721746, + 5189.698444364965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.704093300047 + ], + [ + 5203.841838282413, + 5189.692795429884 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553994", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.84011061109, + "min_y": 5189.692354053243, + "max_x": 5203.853136152507, + "max_y": 5189.705379594744, + "center": [ + 5203.846623381798, + 5189.698866823994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.705379594744 + ], + [ + 5203.84011061109, + 5189.692354053243 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553995", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839194296807, + "min_y": 5189.692724033745, + "max_x": 5203.853136152507, + "max_y": 5189.706665889477, + "center": [ + 5203.846165224657, + 5189.699694961611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.706665889477 + ], + [ + 5203.839194296807, + 5189.692724033745 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553996", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839071860049, + "min_y": 5189.693887891634, + "max_x": 5203.852962572131, + "max_y": 5189.707778603682, + "center": [ + 5203.84601721609, + 5189.700833247658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852962572131, + 5189.707778603682 + ], + [ + 5203.839071860049, + 5189.693887891634 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553997", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838913095868, + "min_y": 5189.695015422198, + "max_x": 5203.852536654238, + "max_y": 5189.708638980569, + "center": [ + 5203.845724875053, + 5189.701827201383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852536654238, + 5189.708638980569 + ], + [ + 5203.838913095868, + 5189.695015422198 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553998", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838603566703, + "min_y": 5189.695992187732, + "max_x": 5203.851945285729, + "max_y": 5189.709333906744, + "center": [ + 5203.845274426216, + 5189.702663047238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.851945285729, + 5189.709333906744 + ], + [ + 5203.838603566703, + 5189.695992187732 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553999", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838024928083, + "min_y": 5189.696699843825, + "max_x": 5203.851288421798, + "max_y": 5189.709963337525, + "center": [ + 5203.844656674941, + 5189.703331590675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.851288421798, + 5189.709963337525 + ], + [ + 5203.838024928083, + 5189.696699843825 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837267619723, + "min_y": 5189.697228830144, + "max_x": 5203.85047917526, + "max_y": 5189.710440385637, + "center": [ + 5203.843873397492, + 5189.703834607891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.85047917526, + 5189.710440385637 + ], + [ + 5203.837267619723, + 5189.697228830144 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836330229056, + "min_y": 5189.697577734193, + "max_x": 5203.849596585954, + "max_y": 5189.710844091141, + "center": [ + 5203.8429634075055, + 5189.704210912667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.849596585954, + 5189.710844091141 + ], + [ + 5203.836330229056, + 5189.697577734193 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835392838291, + "min_y": 5189.697926638174, + "max_x": 5203.848674328172, + "max_y": 5189.711208127994, + "center": [ + 5203.842033583232, + 5189.7045673830835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.848674328172, + 5189.711208127994 + ], + [ + 5203.835392838291, + 5189.697926638174 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834455447687, + "min_y": 5189.698275542139, + "max_x": 5203.847737065498, + "max_y": 5189.711557159918, + "center": [ + 5203.841096256592, + 5189.704916351028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.847737065498, + 5189.711557159918 + ], + [ + 5203.834455447687, + 5189.698275542139 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833518056987, + "min_y": 5189.698624446204, + "max_x": 5203.846797035931, + "max_y": 5189.711903425219, + "center": [ + 5203.840157546459, + 5189.705263935712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.846797035931, + 5189.711903425219 + ], + [ + 5203.833518056987, + 5189.698624446204 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "55399F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.84702129645, + "min_y": 5189.694119559857, + "max_x": 5203.853136152507, + "max_y": 5189.700234415987, + "center": [ + 5203.850078724479, + 5189.697176987922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.700234415987 + ], + [ + 5203.84702129645, + 5189.694119559857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.845293624989, + "min_y": 5189.693678183168, + "max_x": 5203.853136152507, + "max_y": 5189.701520710684, + "center": [ + 5203.849214888748, + 5189.697599446927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.701520710684 + ], + [ + 5203.845293624989, + 5189.693678183168 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.843565953672, + "min_y": 5189.693236806575, + "max_x": 5203.853136152507, + "max_y": 5189.702807005383, + "center": [ + 5203.84835105309, + 5189.698021905979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.702807005383 + ], + [ + 5203.843565953672, + 5189.693236806575 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.702332239209, + "max_x": 5203.853136152507, + "max_y": 5189.703151350331, + "center": [ + 5203.853136152507, + 5189.70274179477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.702332239209 + ], + [ + 5203.853136152507, + 5189.703151350331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.698225331689, + "max_x": 5203.853136152507, + "max_y": 5189.698359271967, + "center": [ + 5203.853136152507, + 5189.698292301828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.698225331689 + ], + [ + 5203.853136152507, + 5189.698359271967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.850629437482, + "min_y": 5189.695155111479, + "max_x": 5203.852672602325, + "max_y": 5189.697198276358, + "center": [ + 5203.851651019903, + 5189.6961766939185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852672602325, + 5189.697198276358 + ], + [ + 5203.850629437482, + 5189.695155111479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.701518700339, + "max_x": 5203.853136152507, + "max_y": 5189.702332239209, + "center": [ + 5203.853136152507, + 5189.701925469773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.701518700339 + ], + [ + 5203.853136152507, + 5189.702332239209 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.700705161434, + "max_x": 5203.853136152507, + "max_y": 5189.701518700339, + "center": [ + 5203.853136152507, + 5189.701111930886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.700705161434 + ], + [ + 5203.853136152507, + 5189.701518700339 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.699886050395, + "max_x": 5203.853136152507, + "max_y": 5189.700705161434, + "center": [ + 5203.853136152507, + 5189.700295605915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.699886050395 + ], + [ + 5203.853136152507, + 5189.700705161434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.699072511459, + "max_x": 5203.853136152507, + "max_y": 5189.699886050395, + "center": [ + 5203.853136152507, + 5189.699479280927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.699072511459 + ], + [ + 5203.853136152507, + 5189.699886050395 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.698359271967, + "max_x": 5203.853136152507, + "max_y": 5189.699072511459, + "center": [ + 5203.853136152507, + 5189.698715891713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.698359271967 + ], + [ + 5203.853136152507, + 5189.699072511459 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852132189837, + "min_y": 5189.696000922786, + "max_x": 5203.853136152507, + "max_y": 5189.698225331689, + "center": [ + 5203.852634171172, + 5189.697113127238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852132189837, + 5189.696000922786 + ], + [ + 5203.853136152507, + 5189.698225331689 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.85025931829, + "min_y": 5189.694946793135, + "max_x": 5203.852132189837, + "max_y": 5189.696000922786, + "center": [ + 5203.851195754063, + 5189.695473857961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.85025931829, + 5189.694946793135 + ], + [ + 5203.852132189837, + 5189.696000922786 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.848748967772, + "min_y": 5189.694560936498, + "max_x": 5203.853136152507, + "max_y": 5189.698948121288, + "center": [ + 5203.85094256014, + 5189.6967545288935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.698948121288 + ], + [ + 5203.848748967772, + 5189.694560936498 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.845083232019, + "min_y": 5189.711710225176, + "max_x": 5203.847326036155, + "max_y": 5189.712529336182, + "center": [ + 5203.8462046340865, + 5189.712119780679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.847326036155, + 5189.711710225176 + ], + [ + 5203.845083232019, + 5189.712529336182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.847326036155, + "min_y": 5189.711102857064, + "max_x": 5203.848957014407, + "max_y": 5189.711710225176, + "center": [ + 5203.848141525281, + 5189.711406541121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.848957014407, + 5189.711102857064 + ], + [ + 5203.847326036155, + 5189.711710225176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.848957014407, + "min_y": 5189.710690515445, + "max_x": 5203.849976166975, + "max_y": 5189.711102857064, + "center": [ + 5203.849466590691, + 5189.710896686254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.849976166975, + 5189.710690515445 + ], + [ + 5203.848957014407, + 5189.711102857064 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.849976166975, + "min_y": 5189.710183446696, + "max_x": 5203.850995876668, + "max_y": 5189.710690515445, + "center": [ + 5203.850486021822, + 5189.71043698107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.850995876668, + 5189.710183446696 + ], + [ + 5203.849976166975, + 5189.710690515445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.850995876668, + "min_y": 5189.70987697654, + "max_x": 5203.851403203322, + "max_y": 5189.710183446696, + "center": [ + 5203.851199539995, + 5189.710030211618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.851403203322, + 5189.70987697654 + ], + [ + 5203.850995876668, + 5189.710183446696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.851403203322, + "min_y": 5189.709570506452, + "max_x": 5203.851709116163, + "max_y": 5189.70987697654, + "center": [ + 5203.851556159742, + 5189.709723741496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.851709116163, + 5189.709570506452 + ], + [ + 5203.851403203322, + 5189.70987697654 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.851709116163, + "min_y": 5189.709264036296, + "max_x": 5203.852015029108, + "max_y": 5189.709570506452, + "center": [ + 5203.851862072635, + 5189.709417271374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852015029108, + 5189.709264036296 + ], + [ + 5203.851709116163, + 5189.709570506452 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852015029108, + "min_y": 5189.708957566207, + "max_x": 5203.852320942045, + "max_y": 5189.709264036296, + "center": [ + 5203.852167985577, + 5189.709110801252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852320942045, + 5189.708957566207 + ], + [ + 5203.852015029108, + 5189.709264036296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852320942045, + "min_y": 5189.708656668218, + "max_x": 5203.852524883954, + "max_y": 5189.708957566207, + "center": [ + 5203.852422913, + 5189.708807117213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852524883954, + 5189.708656668218 + ], + [ + 5203.852320942045, + 5189.708957566207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852524883954, + "min_y": 5189.708350198146, + "max_x": 5203.852728825861, + "max_y": 5189.708656668218, + "center": [ + 5203.852626854908, + 5189.708503433182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852728825861, + 5189.708350198146 + ], + [ + 5203.852524883954, + 5189.708656668218 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852728825861, + "min_y": 5189.708144027303, + "max_x": 5203.852830796893, + "max_y": 5189.708350198146, + "center": [ + 5203.852779811377, + 5189.708247112725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852830796893, + 5189.708144027303 + ], + [ + 5203.852728825861, + 5189.708350198146 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852830796893, + "min_y": 5189.707837557147, + "max_x": 5203.852932767865, + "max_y": 5189.708144027303, + "center": [ + 5203.852881782379, + 5189.707990792225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.852932767865, + 5189.707837557147 + ], + [ + 5203.852830796893, + 5189.708144027303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.852932767865, + "min_y": 5189.707636958519, + "max_x": 5203.853034181605, + "max_y": 5189.707837557147, + "center": [ + 5203.852983474735, + 5189.707737257833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853034181605, + 5189.707636958519 + ], + [ + 5203.852932767865, + 5189.707837557147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853034181605, + "min_y": 5189.707430787695, + "max_x": 5203.853034181605, + "max_y": 5189.707636958519, + "center": [ + 5203.853034181605, + 5189.7075338731065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853034181605, + 5189.707430787695 + ], + [ + 5203.853034181605, + 5189.707636958519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853034181605, + "min_y": 5189.707330488399, + "max_x": 5203.853034181605, + "max_y": 5189.707430787695, + "center": [ + 5203.853034181605, + 5189.707380638047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853034181605, + 5189.707330488399 + ], + [ + 5203.853034181605, + 5189.707430787695 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853034181605, + "min_y": 5189.707124317605, + "max_x": 5203.853034181605, + "max_y": 5189.707330488399, + "center": [ + 5203.853034181605, + 5189.7072274030015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853034181605, + 5189.707124317605 + ], + [ + 5203.853034181605, + 5189.707330488399 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853034181605, + "min_y": 5189.707024018275, + "max_x": 5203.853136152507, + "max_y": 5189.707124317605, + "center": [ + 5203.853085167057, + 5189.70707416794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.707024018275 + ], + [ + 5203.853034181605, + 5189.707124317605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.706717548204, + "max_x": 5203.853136152507, + "max_y": 5189.707024018275, + "center": [ + 5203.853136152507, + 5189.7068707832395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.706717548204 + ], + [ + 5203.853136152507, + 5189.707024018275 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.706411077998, + "max_x": 5203.853136152507, + "max_y": 5189.706717548204, + "center": [ + 5203.853136152507, + 5189.706564313101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.706411077998 + ], + [ + 5203.853136152507, + 5189.706717548204 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.705904009249, + "max_x": 5203.853136152507, + "max_y": 5189.706411077998, + "center": [ + 5203.853136152507, + 5189.706157543624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.705904009249 + ], + [ + 5203.853136152507, + 5189.706411077998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.705291069004, + "max_x": 5203.853136152507, + "max_y": 5189.705904009249, + "center": [ + 5203.853136152507, + 5189.705597539127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.705291069004 + ], + [ + 5203.853136152507, + 5189.705904009249 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.704678128726, + "max_x": 5203.853136152507, + "max_y": 5189.705291069004, + "center": [ + 5203.853136152507, + 5189.704984598865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.704678128726 + ], + [ + 5203.853136152507, + 5189.705291069004 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.703964889184, + "max_x": 5203.853136152507, + "max_y": 5189.704678128726, + "center": [ + 5203.853136152507, + 5189.704321508955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.703964889184 + ], + [ + 5203.853136152507, + 5189.704678128726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.853136152507, + "min_y": 5189.703151350331, + "max_x": 5203.853136152507, + "max_y": 5189.703964889184, + "center": [ + 5203.853136152507, + 5189.703558119758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.853136152507, + 5189.703151350331 + ], + [ + 5203.853136152507, + 5189.703964889184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827950204626, + "min_y": 5189.67112882774, + "max_x": 5203.837844880853, + "max_y": 5189.68102350407, + "center": [ + 5203.832897542739, + 5189.676076165905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837844880853, + 5189.68102350407 + ], + [ + 5203.827950204626, + 5189.67112882774 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827246575882, + "min_y": 5189.671711493663, + "max_x": 5203.837417006782, + "max_y": 5189.681881924592, + "center": [ + 5203.832331791332, + 5189.676796709127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837417006782, + 5189.681881924592 + ], + [ + 5203.827246575882, + 5189.671711493663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826338740737, + "min_y": 5189.672089953351, + "max_x": 5203.836952991982, + "max_y": 5189.682704204511, + "center": [ + 5203.831645866359, + 5189.677397078931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836952991982, + 5189.682704204511 + ], + [ + 5203.826338740737, + 5189.672089953351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825176880901, + "min_y": 5189.672214388059, + "max_x": 5203.836462032089, + "max_y": 5189.683499539352, + "center": [ + 5203.830819456495, + 5189.677856963705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836462032089, + 5189.683499539352 + ], + [ + 5203.825176880901, + 5189.672214388059 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823729687084, + "min_y": 5189.672053489091, + "max_x": 5203.83588123574, + "max_y": 5189.684205037663, + "center": [ + 5203.8298054614115, + 5189.678129263377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83588123574, + 5189.684205037663 + ], + [ + 5203.823729687084, + 5189.672053489091 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822140787777, + "min_y": 5189.671750884384, + "max_x": 5203.835290525021, + "max_y": 5189.684900621628, + "center": [ + 5203.828715656399, + 5189.678325753006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835290525021, + 5189.684900621628 + ], + [ + 5203.822140787777, + 5189.671750884384 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839022072796, + "min_y": 5189.692135768052, + "max_x": 5203.839256181857, + "max_y": 5189.694361157115, + "center": [ + 5203.839139127327, + 5189.693248462583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839022072796, + 5189.694361157115 + ], + [ + 5203.839256181857, + 5189.692135768052 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838787964003, + "min_y": 5189.694361157115, + "max_x": 5203.839022072796, + "max_y": 5189.695766675888, + "center": [ + 5203.8389050184, + 5189.695063916502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838787964003, + 5189.695766675888 + ], + [ + 5203.839022072796, + 5189.694361157115 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837734469729, + "min_y": 5189.695766675888, + "max_x": 5203.838787964003, + "max_y": 5189.697055065038, + "center": [ + 5203.838261216866, + 5189.696410870463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837734469729, + 5189.697055065038 + ], + [ + 5203.838787964003, + 5189.695766675888 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826963860976, + "min_y": 5189.671104187095, + "max_x": 5203.827979960767, + "max_y": 5189.671945606228, + "center": [ + 5203.827471910872, + 5189.671524896661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826963860976, + 5189.671945606228 + ], + [ + 5203.827979960767, + 5189.671104187095 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825597387432, + "min_y": 5189.671945606228, + "max_x": 5203.826963860976, + "max_y": 5189.672261139984, + "center": [ + 5203.826280624204, + 5189.672103373106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825597387432, + 5189.672261139984 + ], + [ + 5203.826963860976, + 5189.671945606228 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82307465671, + "min_y": 5189.671980662812, + "max_x": 5203.825597387432, + "max_y": 5189.672261139984, + "center": [ + 5203.824336022071, + 5189.672120901398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82307465671, + 5189.671980662812 + ], + [ + 5203.825597387432, + 5189.672261139984 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820937344908, + "min_y": 5189.671454777386, + "max_x": 5203.82307465671, + "max_y": 5189.671980662812, + "center": [ + 5203.822006000809, + 5189.671717720099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820937344908, + 5189.671454777386 + ], + [ + 5203.82307465671, + 5189.671980662812 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82976849425, + "min_y": 5189.700020062212, + "max_x": 5203.842997117901, + "max_y": 5189.713248685894, + "center": [ + 5203.836382806076, + 5189.7066343740535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.842997117901, + 5189.713248685894 + ], + [ + 5203.82976849425, + 5189.700020062212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828831103485, + "min_y": 5189.700368966226, + "max_x": 5203.842037295092, + "max_y": 5189.713575157861, + "center": [ + 5203.835434199289, + 5189.706972062044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.842037295092, + 5189.713575157861 + ], + [ + 5203.828831103485, + 5189.700368966226 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.713443174413, + "max_x": 5203.842433101232, + "max_y": 5189.714462884111, + "center": [ + 5203.840904093932, + 5189.7139530292625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.842433101232, + 5189.713443174413 + ], + [ + 5203.839375086633, + 5189.714462884111 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819457196686, + "min_y": 5189.703858006339, + "max_x": 5203.832440766293, + "max_y": 5189.716841575977, + "center": [ + 5203.82594898149, + 5189.710349791158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832440766293, + 5189.716841575977 + ], + [ + 5203.819457196686, + 5189.703858006339 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818519805921, + "min_y": 5189.704206910355, + "max_x": 5203.831461787855, + "max_y": 5189.717148892324, + "center": [ + 5203.8249907968875, + 5189.710677901339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831461787855, + 5189.717148892324 + ], + [ + 5203.818519805921, + 5189.704206910355 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817582415284, + "min_y": 5189.704555814368, + "max_x": 5203.830482809621, + "max_y": 5189.717456208672, + "center": [ + 5203.824032612452, + 5189.71100601152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.830482809621, + 5189.717456208672 + ], + [ + 5203.817582415284, + 5189.704555814368 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816645024519, + "min_y": 5189.704904718383, + "max_x": 5203.82950383119, + "max_y": 5189.717763524969, + "center": [ + 5203.823074427854, + 5189.7113341216755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82950383119, + 5189.717763524969 + ], + [ + 5203.816645024519, + 5189.704904718383 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815707633852, + "min_y": 5189.705253622398, + "max_x": 5203.828538152055, + "max_y": 5189.718084140496, + "center": [ + 5203.822122892954, + 5189.711668881448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828538152055, + 5189.718084140496 + ], + [ + 5203.815707633852, + 5189.705253622398 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814770243184, + "min_y": 5189.705602526412, + "max_x": 5203.827587943724, + "max_y": 5189.718420227016, + "center": [ + 5203.821179093455, + 5189.712011376714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827587943724, + 5189.718420227016 + ], + [ + 5203.814770243184, + 5189.705602526412 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813832852555, + "min_y": 5189.705951430427, + "max_x": 5203.826637735599, + "max_y": 5189.718756313471, + "center": [ + 5203.820235294077, + 5189.71235387195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.826637735599, + 5189.718756313471 + ], + [ + 5203.813832852555, + 5189.705951430427 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827893712818, + "min_y": 5189.700717870241, + "max_x": 5203.841072662024, + "max_y": 5189.71389681943, + "center": [ + 5203.834483187421, + 5189.7073073448355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.841072662024, + 5189.71389681943 + ], + [ + 5203.827893712818, + 5189.700717870241 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826956322151, + "min_y": 5189.701066774222, + "max_x": 5203.840108028927, + "max_y": 5189.714218481014, + "center": [ + 5203.8335321755385, + 5189.707642627618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.840108028927, + 5189.714218481014 + ], + [ + 5203.826956322151, + 5189.701066774222 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826018931522, + "min_y": 5189.701415678271, + "max_x": 5203.839143595078, + "max_y": 5189.714540341913, + "center": [ + 5203.8325812633, + 5189.707978010092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839143595078, + 5189.714540341913 + ], + [ + 5203.826018931522, + 5189.701415678271 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825081540757, + "min_y": 5189.701764582252, + "max_x": 5203.838179792054, + "max_y": 5189.714862833619, + "center": [ + 5203.8316306664055, + 5189.708313707935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838179792054, + 5189.714862833619 + ], + [ + 5203.825081540757, + 5189.701764582252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.824144150089, + "min_y": 5189.702113486299, + "max_x": 5203.837215989025, + "max_y": 5189.715185325225, + "center": [ + 5203.830680069557, + 5189.708649405762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837215989025, + 5189.715185325225 + ], + [ + 5203.824144150089, + 5189.702113486299 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823206759487, + "min_y": 5189.702462390282, + "max_x": 5203.836252186034, + "max_y": 5189.71550781693, + "center": [ + 5203.82972947276, + 5189.708985103605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836252186034, + 5189.71550781693 + ], + [ + 5203.823206759487, + 5189.702462390282 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82226936872, + "min_y": 5189.702811294296, + "max_x": 5203.835297730698, + "max_y": 5189.715839656307, + "center": [ + 5203.8287835497085, + 5189.709325475302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835297730698, + 5189.715839656307 + ], + [ + 5203.82226936872, + 5189.702811294296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82133197802, + "min_y": 5189.70316019831, + "max_x": 5203.834346392661, + "max_y": 5189.716174612967, + "center": [ + 5203.82783918534, + 5189.709667405638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834346392661, + 5189.716174612967 + ], + [ + 5203.82133197802, + 5189.70316019831 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820394587256, + "min_y": 5189.703509102325, + "max_x": 5203.833395054619, + "max_y": 5189.716509569592, + "center": [ + 5203.826894820937, + 5189.710009335959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833395054619, + 5189.716509569592 + ], + [ + 5203.820394587256, + 5189.703509102325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814196615329, + "min_y": 5189.64391751777, + "max_x": 5203.814604499178, + "max_y": 5189.644123688565, + "center": [ + 5203.814400557254, + 5189.6440206031675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814604499178, + 5189.644123688565 + ], + [ + 5203.814196615329, + 5189.64391751777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834192412789, + "min_y": 5189.650358847251, + "max_x": 5203.838560828668, + "max_y": 5189.654727263073, + "center": [ + 5203.8363766207285, + 5189.652543055162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838560828668, + 5189.654727263073 + ], + [ + 5203.834192412789, + 5189.650358847251 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819089550125, + "min_y": 5189.650136075234, + "max_x": 5203.819191521155, + "max_y": 5189.651462255103, + "center": [ + 5203.819140535639, + 5189.650799165169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819191521155, + 5189.651462255103 + ], + [ + 5203.819089550125, + 5189.650136075234 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825667462147, + "min_y": 5189.650594506666, + "max_x": 5203.827349279971, + "max_y": 5189.652908412475, + "center": [ + 5203.826508371059, + 5189.651751459571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827349279971, + 5189.652908412475 + ], + [ + 5203.825667462147, + 5189.650594506666 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836145413865, + "min_y": 5189.651025553724, + "max_x": 5203.83743920193, + "max_y": 5189.652319341792, + "center": [ + 5203.836792307897, + 5189.651672447758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83743920193, + 5189.652319341792 + ], + [ + 5203.836145413865, + 5189.651025553724 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827349279971, + "min_y": 5189.652908412475, + "max_x": 5203.828190193039, + "max_y": 5189.65417054738, + "center": [ + 5203.827769736505, + 5189.6535394799275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828190193039, + 5189.65417054738 + ], + [ + 5203.827349279971, + 5189.652908412475 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819191521155, + "min_y": 5189.651462255103, + "max_x": 5203.819293492126, + "max_y": 5189.652888734252, + "center": [ + 5203.819242506641, + 5189.652175494677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.652888734252 + ], + [ + 5203.819191521155, + 5189.651462255103 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814604499178, + "min_y": 5189.644123688565, + "max_x": 5203.814910412122, + "max_y": 5189.644223987894, + "center": [ + 5203.81475745565, + 5189.644173838229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814910412122, + 5189.644223987894 + ], + [ + 5203.814604499178, + 5189.644123688565 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814910412122, + "min_y": 5189.644223987894, + "max_x": 5203.815114354028, + "max_y": 5189.644324287172, + "center": [ + 5203.815012383075, + 5189.644274137533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815114354028, + 5189.644324287172 + ], + [ + 5203.814910412122, + 5189.644223987894 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815114354028, + "min_y": 5189.644324287172, + "max_x": 5203.815216325029, + "max_y": 5189.644324287172, + "center": [ + 5203.815165339529, + 5189.644324287172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815216325029, + 5189.644324287172 + ], + [ + 5203.815114354028, + 5189.644324287172 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815216325029, + "min_y": 5189.644324287172, + "max_x": 5203.81531829593, + "max_y": 5189.644430158721, + "center": [ + 5203.81526731048, + 5189.644377222947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81531829593, + 5189.644430158721 + ], + [ + 5203.815216325029, + 5189.644324287172 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81531829593, + "min_y": 5189.644430158721, + "max_x": 5203.815522237941, + "max_y": 5189.644430158721, + "center": [ + 5203.815420266936, + 5189.644430158721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815522237941, + 5189.644430158721 + ], + [ + 5203.81531829593, + 5189.644430158721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815522237941, + "min_y": 5189.644430158721, + "max_x": 5203.815827593516, + "max_y": 5189.644530458017, + "center": [ + 5203.815674915728, + 5189.644480308369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.815827593516, + 5189.644530458017 + ], + [ + 5203.815522237941, + 5189.644430158721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815827593516, + "min_y": 5189.644530458017, + "max_x": 5203.816133506461, + "max_y": 5189.644630757346, + "center": [ + 5203.815980549988, + 5189.644580607681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816133506461, + 5189.644630757346 + ], + [ + 5203.815827593516, + 5189.644530458017 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816133506461, + "min_y": 5189.644630757346, + "max_x": 5203.816439419366, + "max_y": 5189.644836928173, + "center": [ + 5203.816286462914, + 5189.64473384276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816439419366, + 5189.644836928173 + ], + [ + 5203.816133506461, + 5189.644630757346 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816439419366, + "min_y": 5189.644836928173, + "max_x": 5203.816847303215, + "max_y": 5189.645143398261, + "center": [ + 5203.8166433612905, + 5189.644990163217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816847303215, + 5189.645143398261 + ], + [ + 5203.816439419366, + 5189.644836928173 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816847303215, + "min_y": 5189.645143398261, + "max_x": 5203.81725462986, + "max_y": 5189.645550167713, + "center": [ + 5203.817050966538, + 5189.645346782987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81725462986, + 5189.645550167713 + ], + [ + 5203.816847303215, + 5189.645143398261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81725462986, + "min_y": 5189.645550167713, + "max_x": 5203.817560542805, + "max_y": 5189.645956937166, + "center": [ + 5203.817407586333, + 5189.64575355244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817560542805, + 5189.645956937166 + ], + [ + 5203.81725462986, + 5189.645550167713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817560542805, + "min_y": 5189.645956937166, + "max_x": 5203.817968426619, + "max_y": 5189.64656987741, + "center": [ + 5203.817764484712, + 5189.646263407289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817968426619, + 5189.64656987741 + ], + [ + 5203.817560542805, + 5189.645956937166 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817968426619, + "min_y": 5189.64656987741, + "max_x": 5203.818274339728, + "max_y": 5189.647283116986, + "center": [ + 5203.818121383174, + 5189.646926497198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818274339728, + 5189.647283116986 + ], + [ + 5203.817968426619, + 5189.64656987741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818274339728, + "min_y": 5189.647283116986, + "max_x": 5203.818580252635, + "max_y": 5189.648096655838, + "center": [ + 5203.818427296182, + 5189.647689886412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818580252635, + 5189.648096655838 + ], + [ + 5203.818274339728, + 5189.647283116986 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818580252635, + "min_y": 5189.648096655838, + "max_x": 5203.818885608217, + "max_y": 5189.649016066257, + "center": [ + 5203.8187329304255, + 5189.648556361048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818885608217, + 5189.649016066257 + ], + [ + 5203.818580252635, + 5189.648096655838 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.818885608217, + "min_y": 5189.649016066257, + "max_x": 5203.819089550125, + "max_y": 5189.650136075234, + "center": [ + 5203.81898757917, + 5189.649576070746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819089550125, + 5189.650136075234 + ], + [ + 5203.818885608217, + 5189.649016066257 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823167274517, + "min_y": 5189.648337771877, + "max_x": 5203.824673058096, + "max_y": 5189.649843555471, + "center": [ + 5203.823920166306, + 5189.649090663674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.824673058096, + 5189.649843555471 + ], + [ + 5203.823167274517, + 5189.648337771877 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823269245449, + "min_y": 5189.649116365536, + "max_x": 5203.823810449502, + "max_y": 5189.649192133159, + "center": [ + 5203.823539847475, + 5189.649154249348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.823810449502, + 5189.649192133159 + ], + [ + 5203.823269245449, + 5189.649116365536 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823810449502, + "min_y": 5189.649192133159, + "max_x": 5203.825667462147, + "max_y": 5189.650594506666, + "center": [ + 5203.824738955825, + 5189.649893319913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825667462147, + 5189.650594506666 + ], + [ + 5203.823810449502, + 5189.649192133159 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "5539FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.815400777265, + "min_y": 5189.644430158721, + "max_x": 5203.818286756419, + "max_y": 5189.647316137808, + "center": [ + 5203.816843766842, + 5189.645873148264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.818286756419, + 5189.647316137808 + ], + [ + 5203.815400777265, + 5189.644430158721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814615262803, + "min_y": 5189.617429253889, + "max_x": 5203.834775949506, + "max_y": 5189.637589940526, + "center": [ + 5203.824695606155, + 5189.627509597207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834775949506, + 5189.637589940526 + ], + [ + 5203.814615262803, + 5189.617429253889 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.816265823809, + "min_y": 5189.617793520195, + "max_x": 5203.836395324681, + "max_y": 5189.637923021038, + "center": [ + 5203.826330574245, + 5189.627858270616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836395324681, + 5189.637923021038 + ], + [ + 5203.816265823809, + 5189.617793520195 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817905996554, + "min_y": 5189.618147398297, + "max_x": 5203.837735069483, + "max_y": 5189.637976471171, + "center": [ + 5203.827820533019, + 5189.628061934734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837735069483, + 5189.637976471171 + ], + [ + 5203.817905996554, + 5189.618147398297 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819545608975, + "min_y": 5189.618500715996, + "max_x": 5203.838814855125, + "max_y": 5189.637769962121, + "center": [ + 5203.82918023205, + 5189.628135339059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838814855125, + 5189.637769962121 + ], + [ + 5203.819545608975, + 5189.618500715996 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831095806339, + "min_y": 5189.621046850446, + "max_x": 5203.839375086633, + "max_y": 5189.629326130742, + "center": [ + 5203.835235446486, + 5189.6251864905935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.629326130742 + ], + [ + 5203.831095806339, + 5189.621046850446 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.829441841579, + "min_y": 5189.620679180384, + "max_x": 5203.839375086633, + "max_y": 5189.63061242544, + "center": [ + 5203.834408464106, + 5189.625645802912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.63061242544 + ], + [ + 5203.829441841579, + 5189.620679180384 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827774422494, + "min_y": 5189.620298056031, + "max_x": 5203.839375086633, + "max_y": 5189.631898720137, + "center": [ + 5203.833574754563, + 5189.626098388084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.631898720137 + ], + [ + 5203.827774422494, + 5189.620298056031 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826140278252, + "min_y": 5189.619950206469, + "max_x": 5203.839375086633, + "max_y": 5189.633185014836, + "center": [ + 5203.832757682442, + 5189.626567610652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.633185014836 + ], + [ + 5203.826140278252, + 5189.619950206469 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.824510053507, + "min_y": 5189.619606276424, + "max_x": 5203.839375086633, + "max_y": 5189.634471309532, + "center": [ + 5203.83194257007, + 5189.627038792978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.634471309532 + ], + [ + 5203.824510053507, + 5189.619606276424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822855289018, + "min_y": 5189.61923780656, + "max_x": 5203.839375086633, + "max_y": 5189.63575760418, + "center": [ + 5203.831115187825, + 5189.62749770537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.63575760418 + ], + [ + 5203.822855289018, + 5189.61923780656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.821200469585, + "min_y": 5189.618869281812, + "max_x": 5203.839375086633, + "max_y": 5189.637043898879, + "center": [ + 5203.830287778109, + 5189.627956590346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.637043898879 + ], + [ + 5203.821200469585, + 5189.618869281812 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83273679177, + "min_y": 5189.621401541147, + "max_x": 5203.839375086633, + "max_y": 5189.628039835993, + "center": [ + 5203.836055939201, + 5189.62472068857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.628039835993 + ], + [ + 5203.83273679177, + 5189.621401541147 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.831424137048, + "min_y": 5189.621119635623, + "max_x": 5203.832851173393, + "max_y": 5189.621426105696, + "center": [ + 5203.83213765522, + 5189.62127287066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.831424137048, + 5189.621119635623 + ], + [ + 5203.832851173393, + 5189.621426105696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.618160805778, + "max_x": 5203.839375086633, + "max_y": 5189.63726924036, + "center": [ + 5203.839375086633, + 5189.627715023069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.618160805778 + ], + [ + 5203.839375086633, + 5189.63726924036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835991132053, + "min_y": 5189.637888748734, + "max_x": 5203.83739607494, + "max_y": 5189.638007876806, + "center": [ + 5203.836693603496, + 5189.63794831277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83739607494, + 5189.638007876806 + ], + [ + 5203.835991132053, + 5189.637888748734 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83739607494, + "min_y": 5189.637888748734, + "max_x": 5203.838681951049, + "max_y": 5189.638007876806, + "center": [ + 5203.838039012995, + 5189.63794831277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838681951049, + 5189.637888748734 + ], + [ + 5203.83739607494, + 5189.638007876806 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838681951049, + "min_y": 5189.63726924036, + "max_x": 5203.839375086633, + "max_y": 5189.637888748734, + "center": [ + 5203.839028518841, + 5189.637578994547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.63726924036 + ], + [ + 5203.838681951049, + 5189.637888748734 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838193649147, + "min_y": 5189.617854335688, + "max_x": 5203.839375086633, + "max_y": 5189.619035773108, + "center": [ + 5203.83878436789, + 5189.618445054399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.619035773108 + ], + [ + 5203.838193649147, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837485124019, + "min_y": 5189.618432105206, + "max_x": 5203.839375086633, + "max_y": 5189.620322067856, + "center": [ + 5203.838430105326, + 5189.619377086531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.620322067856 + ], + [ + 5203.837485124019, + 5189.618432105206 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837102479564, + "min_y": 5189.619335755502, + "max_x": 5203.839375086633, + "max_y": 5189.621608362553, + "center": [ + 5203.838238783099, + 5189.620472059028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.621608362553 + ], + [ + 5203.837102479564, + 5189.619335755502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836677871972, + "min_y": 5189.620197442692, + "max_x": 5203.839375086633, + "max_y": 5189.622894657252, + "center": [ + 5203.838026479302, + 5189.621546049972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.622894657252 + ], + [ + 5203.836677871972, + 5189.620197442692 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836162326947, + "min_y": 5189.62096819226, + "max_x": 5203.839375086633, + "max_y": 5189.624180951949, + "center": [ + 5203.83776870679, + 5189.622574572104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.624180951949 + ], + [ + 5203.836162326947, + 5189.62096819226 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835456352369, + "min_y": 5189.621548512468, + "max_x": 5203.839375086633, + "max_y": 5189.625467246598, + "center": [ + 5203.837415719501, + 5189.623507879533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.625467246598 + ], + [ + 5203.835456352369, + 5189.621548512468 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834354121054, + "min_y": 5189.621732575869, + "max_x": 5203.839375086633, + "max_y": 5189.626753541296, + "center": [ + 5203.836864603843, + 5189.624243058583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.626753541296 + ], + [ + 5203.834354121054, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832851173393, + "min_y": 5189.621426105696, + "max_x": 5203.834176238835, + "max_y": 5189.621626704354, + "center": [ + 5203.833513706114, + 5189.621526405024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.832851173393, + 5189.621426105696 + ], + [ + 5203.834176238835, + 5189.621626704354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834176238835, + "min_y": 5189.621626704354, + "max_x": 5203.834176238835, + "max_y": 5189.621732575869, + "center": [ + 5203.834176238835, + 5189.621679640111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834176238835, + 5189.621626704354 + ], + [ + 5203.834176238835, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834176238835, + "min_y": 5189.621732575869, + "max_x": 5203.834278209803, + "max_y": 5189.621732575869, + "center": [ + 5203.834227224319, + 5189.621732575869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834176238835, + 5189.621732575869 + ], + [ + 5203.834278209803, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834278209803, + "min_y": 5189.621732575869, + "max_x": 5203.834482151742, + "max_y": 5189.621732575869, + "center": [ + 5203.834380180773, + 5189.621732575869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834278209803, + 5189.621732575869 + ], + [ + 5203.834482151742, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834482151742, + "min_y": 5189.621732575869, + "max_x": 5203.834584122651, + "max_y": 5189.621732575869, + "center": [ + 5203.834533137197, + 5189.621732575869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834482151742, + 5189.621732575869 + ], + [ + 5203.834584122651, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834584122651, + "min_y": 5189.621732575869, + "max_x": 5203.834788064654, + "max_y": 5189.621732575869, + "center": [ + 5203.834686093653, + 5189.621732575869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834584122651, + 5189.621732575869 + ], + [ + 5203.834788064654, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834788064654, + "min_y": 5189.621732575869, + "max_x": 5203.834992006596, + "max_y": 5189.621732575869, + "center": [ + 5203.834890035625, + 5189.621732575869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834788064654, + 5189.621732575869 + ], + [ + 5203.834992006596, + 5189.621732575869 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834992006596, + "min_y": 5189.621626704354, + "max_x": 5203.835297362241, + "max_y": 5189.621732575869, + "center": [ + 5203.835144684419, + 5189.621679640111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834992006596, + 5189.621732575869 + ], + [ + 5203.835297362241, + 5189.621626704354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835297362241, + "min_y": 5189.621526405026, + "max_x": 5203.835501304141, + "max_y": 5189.621626704354, + "center": [ + 5203.835399333191, + 5189.621576554689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835297362241, + 5189.621626704354 + ], + [ + 5203.835501304141, + 5189.621526405026 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835501304141, + "min_y": 5189.621320234232, + "max_x": 5203.835705246154, + "max_y": 5189.621526405026, + "center": [ + 5203.835603275147, + 5189.62142331963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835501304141, + 5189.621526405026 + ], + [ + 5203.835705246154, + 5189.621320234232 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835705246154, + "min_y": 5189.621119635623, + "max_x": 5203.836011158994, + "max_y": 5189.621320234232, + "center": [ + 5203.835858202574, + 5189.6212199349275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835705246154, + 5189.621320234232 + ], + [ + 5203.836011158994, + 5189.621119635623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836011158994, + "min_y": 5189.620813165501, + "max_x": 5203.836317071935, + "max_y": 5189.621119635623, + "center": [ + 5203.836164115464, + 5189.620966400562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836011158994, + 5189.621119635623 + ], + [ + 5203.836317071935, + 5189.620813165501 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836317071935, + "min_y": 5189.620406395999, + "max_x": 5203.83652101384, + "max_y": 5189.620813165501, + "center": [ + 5203.836419042887, + 5189.62060978075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836317071935, + 5189.620813165501 + ], + [ + 5203.83652101384, + 5189.620406395999 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83652101384, + "min_y": 5189.619999626547, + "max_x": 5203.836826369521, + "max_y": 5189.620406395999, + "center": [ + 5203.8366736916805, + 5189.620203011273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83652101384, + 5189.620406395999 + ], + [ + 5203.836826369521, + 5189.619999626547 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836826369521, + "min_y": 5189.618773746023, + "max_x": 5203.837336224365, + "max_y": 5189.619999626547, + "center": [ + 5203.837081296942, + 5189.619386686285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836826369521, + 5189.619999626547 + ], + [ + 5203.837336224365, + 5189.618773746023 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837336224365, + "min_y": 5189.618573147448, + "max_x": 5203.837438195338, + "max_y": 5189.618773746023, + "center": [ + 5203.837387209851, + 5189.618673446736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837336224365, + 5189.618773746023 + ], + [ + 5203.837438195338, + 5189.618573147448 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837438195338, + "min_y": 5189.618266677324, + "max_x": 5203.837540166274, + "max_y": 5189.618573147448, + "center": [ + 5203.837489180806, + 5189.618419912385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837438195338, + 5189.618573147448 + ], + [ + 5203.837540166274, + 5189.618266677324 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837540166274, + "min_y": 5189.618160805778, + "max_x": 5203.837744108181, + "max_y": 5189.618266677324, + "center": [ + 5203.837642137228, + 5189.618213741551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837540166274, + 5189.618266677324 + ], + [ + 5203.837744108181, + 5189.618160805778 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837744108181, + "min_y": 5189.617960207153, + "max_x": 5203.83784607922, + "max_y": 5189.618160805778, + "center": [ + 5203.837795093701, + 5189.618060506466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837744108181, + 5189.618160805778 + ], + [ + 5203.83784607922, + 5189.617960207153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.83784607922, + "min_y": 5189.617960207153, + "max_x": 5203.838050021126, + "max_y": 5189.617960207153, + "center": [ + 5203.8379480501735, + 5189.617960207153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.83784607922, + 5189.617960207153 + ], + [ + 5203.838050021126, + 5189.617960207153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838050021126, + "min_y": 5189.617854335688, + "max_x": 5203.838151992124, + "max_y": 5189.617960207153, + "center": [ + 5203.838101006625, + 5189.61790727142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838050021126, + 5189.617960207153 + ], + [ + 5203.838151992124, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838151992124, + "min_y": 5189.617854335688, + "max_x": 5203.838355934063, + "max_y": 5189.617854335688, + "center": [ + 5203.838253963093, + 5189.617854335688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838151992124, + 5189.617854335688 + ], + [ + 5203.838355934063, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838355934063, + "min_y": 5189.617854335688, + "max_x": 5203.838559318842, + "max_y": 5189.617854335688, + "center": [ + 5203.8384576264525, + 5189.617854335688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838355934063, + 5189.617854335688 + ], + [ + 5203.838559318842, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838559318842, + "min_y": 5189.617854335688, + "max_x": 5203.838661289879, + "max_y": 5189.617854335688, + "center": [ + 5203.838610304361, + 5189.617854335688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838559318842, + 5189.617854335688 + ], + [ + 5203.838661289879, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838661289879, + "min_y": 5189.617854335688, + "max_x": 5203.838865231788, + "max_y": 5189.617960207153, + "center": [ + 5203.838763260834, + 5189.61790727142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838661289879, + 5189.617854335688 + ], + [ + 5203.838865231788, + 5189.617960207153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838865231788, + "min_y": 5189.617960207153, + "max_x": 5203.838967202788, + "max_y": 5189.617960207153, + "center": [ + 5203.838916217288, + 5189.617960207153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838865231788, + 5189.617960207153 + ], + [ + 5203.838967202788, + 5189.617960207153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838967202788, + "min_y": 5189.617960207153, + "max_x": 5203.839069173688, + "max_y": 5189.618060506531, + "center": [ + 5203.839018188238, + 5189.618010356842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838967202788, + 5189.617960207153 + ], + [ + 5203.839069173688, + 5189.618060506531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.618060506531, + "max_x": 5203.839171144728, + "max_y": 5189.618160805778, + "center": [ + 5203.839120159208, + 5189.618110656154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.618060506531 + ], + [ + 5203.839171144728, + 5189.618160805778 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839171144728, + "min_y": 5189.618160805778, + "max_x": 5203.839273115701, + "max_y": 5189.618160805778, + "center": [ + 5203.839222130215, + 5189.618160805778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839171144728, + 5189.618160805778 + ], + [ + 5203.839273115701, + 5189.618160805778 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.618160805778, + "max_x": 5203.839375086633, + "max_y": 5189.618160805778, + "center": [ + 5203.839324101167, + 5189.618160805778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.618160805778 + ], + [ + 5203.839375086633, + 5189.618160805778 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813585346743, + "min_y": 5189.643711346928, + "max_x": 5203.814196615329, + "max_y": 5189.64391751777, + "center": [ + 5203.813890981036, + 5189.643814432349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814196615329, + 5189.64391751777 + ], + [ + 5203.813585346743, + 5189.643711346928 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.813789288682, + "min_y": 5189.617246967628, + "max_x": 5203.81654139027, + "max_y": 5189.617854335688, + "center": [ + 5203.815165339476, + 5189.617550651657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813789288682, + 5189.617246967628 + ], + [ + 5203.81654139027, + 5189.617854335688 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81654139027, + "min_y": 5189.617854335688, + "max_x": 5203.819395463063, + "max_y": 5189.618467275934, + "center": [ + 5203.817968426667, + 5189.6181608058105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81654139027, + 5189.617854335688 + ], + [ + 5203.819395463063, + 5189.618467275934 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819395463063, + "min_y": 5189.618467275934, + "max_x": 5203.822147564817, + "max_y": 5189.619080216229, + "center": [ + 5203.82077151394, + 5189.618773746081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819395463063, + 5189.618467275934 + ], + [ + 5203.822147564817, + 5189.619080216229 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822147564817, + "min_y": 5189.619080216229, + "max_x": 5203.824900223806, + "max_y": 5189.619693156473, + "center": [ + 5203.823523894312, + 5189.6193866863505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822147564817, + 5189.619080216229 + ], + [ + 5203.824900223806, + 5189.619693156473 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.824900223806, + "min_y": 5189.619693156473, + "max_x": 5203.827346412649, + "max_y": 5189.620200225204, + "center": [ + 5203.8261233182275, + 5189.619946690838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.824900223806, + 5189.619693156473 + ], + [ + 5203.827346412649, + 5189.620200225204 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827346412649, + "min_y": 5189.620200225204, + "max_x": 5203.829589216752, + "max_y": 5189.620712866171, + "center": [ + 5203.8284678147, + 5189.620456545687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827346412649, + 5189.620200225204 + ], + [ + 5203.829589216752, + 5189.620712866171 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.829589216752, + "min_y": 5189.620712866171, + "max_x": 5203.831424137048, + "max_y": 5189.621119635623, + "center": [ + 5203.8305066769, + 5189.620916250897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.829589216752, + 5189.620712866171 + ], + [ + 5203.831424137048, + 5189.621119635623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828513120886, + "min_y": 5189.656256207677, + "max_x": 5203.839281827693, + "max_y": 5189.667024914466, + "center": [ + 5203.833897474289, + 5189.661640561071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839281827693, + 5189.667024914466 + ], + [ + 5203.828513120886, + 5189.656256207677 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.657604985502, + "max_x": 5203.839298537487, + "max_y": 5189.668327919022, + "center": [ + 5203.833937070749, + 5189.6629664522625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839298537487, + 5189.668327919022 + ], + [ + 5203.828575604012, + 5189.657604985502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.658891280252, + "max_x": 5203.839315247477, + "max_y": 5189.669630923614, + "center": [ + 5203.833945425745, + 5189.664261101932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839315247477, + 5189.669630923614 + ], + [ + 5203.828575604012, + 5189.658891280252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.656148461953, + "max_x": 5203.819293492126, + "max_y": 5189.657680812615, + "center": [ + 5203.819293492126, + 5189.656914637284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.657680812615 + ], + [ + 5203.819293492126, + 5189.656148461953 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.657680812615, + "max_x": 5203.819293492126, + "max_y": 5189.659107291766, + "center": [ + 5203.819293492126, + 5189.6583940521905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.659107291766 + ], + [ + 5203.819293492126, + 5189.657680812615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.659107291766, + "max_x": 5203.819293492126, + "max_y": 5189.660634070245, + "center": [ + 5203.819293492126, + 5189.6598706810055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.660634070245 + ], + [ + 5203.819293492126, + 5189.659107291766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.660634070245, + "max_x": 5203.819293492126, + "max_y": 5189.661960250013, + "center": [ + 5203.819293492126, + 5189.661297160129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.661960250013 + ], + [ + 5203.819293492126, + 5189.660634070245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.661960250013, + "max_x": 5203.819293492126, + "max_y": 5189.663286429883, + "center": [ + 5203.819293492126, + 5189.6626233399475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.663286429883 + ], + [ + 5203.819293492126, + 5189.661960250013 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.663286429883, + "max_x": 5203.819293492126, + "max_y": 5189.66440643886, + "center": [ + 5203.819293492126, + 5189.663846434371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.66440643886 + ], + [ + 5203.819293492126, + 5189.663286429883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.66440643886, + "max_x": 5203.819293492126, + "max_y": 5189.665526447886, + "center": [ + 5203.819293492126, + 5189.6649664433735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.665526447886 + ], + [ + 5203.819293492126, + 5189.66440643886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.665526447886, + "max_x": 5203.819293492126, + "max_y": 5189.666546157584, + "center": [ + 5203.819293492126, + 5189.666036302735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.666546157584 + ], + [ + 5203.819293492126, + 5189.665526447886 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.666546157584, + "max_x": 5203.819293492126, + "max_y": 5189.667465567952, + "center": [ + 5203.819293492126, + 5189.667005862768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.667465567952 + ], + [ + 5203.819293492126, + 5189.666546157584 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.667465567952, + "max_x": 5203.819293492126, + "max_y": 5189.668178807576, + "center": [ + 5203.819293492126, + 5189.667822187764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.668178807576 + ], + [ + 5203.819293492126, + 5189.667465567952 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.668178807576, + "max_x": 5203.819293492126, + "max_y": 5189.668791747823, + "center": [ + 5203.819293492126, + 5189.6684852777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.668791747823 + ], + [ + 5203.819293492126, + 5189.668178807576 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.668791747823, + "max_x": 5203.819293492126, + "max_y": 5189.669198517274, + "center": [ + 5203.819293492126, + 5189.668995132548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.669198517274 + ], + [ + 5203.819293492126, + 5189.668791747823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.669198517274, + "max_x": 5203.819293492126, + "max_y": 5189.669702778044, + "center": [ + 5203.819293492126, + 5189.669450647659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.669702778044 + ], + [ + 5203.819293492126, + 5189.669198517274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.656659760741, + "max_x": 5203.828575604012, + "max_y": 5189.668054031725, + "center": [ + 5203.828575604012, + 5189.662356896233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828575604012, + 5189.668054031725 + ], + [ + 5203.828575604012, + 5189.656659760741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828400417227, + "min_y": 5189.668054031725, + "max_x": 5203.828575604012, + "max_y": 5189.669877108691, + "center": [ + 5203.82848801062, + 5189.6689655702085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828400417227, + 5189.669877108691 + ], + [ + 5203.828575604012, + 5189.668054031725 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.832602638964, + "min_y": 5189.650055368118, + "max_x": 5203.838899057579, + "max_y": 5189.656351786737, + "center": [ + 5203.835750848271, + 5189.653203577427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838899057579, + 5189.656351786737 + ], + [ + 5203.832602638964, + 5189.650055368118 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830835030836, + "min_y": 5189.649574054741, + "max_x": 5203.839069173688, + "max_y": 5189.657808197512, + "center": [ + 5203.834952102262, + 5189.653691126126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.657808197512 + ], + [ + 5203.830835030836, + 5189.649574054741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.829183068345, + "min_y": 5189.649208386932, + "max_x": 5203.839181568497, + "max_y": 5189.659206887047, + "center": [ + 5203.834182318421, + 5189.65420763699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839181568497, + 5189.659206887047 + ], + [ + 5203.829183068345, + 5189.649208386932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827497978167, + "min_y": 5189.648809591417, + "max_x": 5203.839198278455, + "max_y": 5189.660509891639, + "center": [ + 5203.833348128312, + 5189.654659741528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839198278455, + 5189.660509891639 + ], + [ + 5203.827497978167, + 5189.648809591417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825740666782, + "min_y": 5189.648338574715, + "max_x": 5203.839214988286, + "max_y": 5189.661812896232, + "center": [ + 5203.832477827534, + 5189.6550757354735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839214988286, + 5189.661812896232 + ], + [ + 5203.825740666782, + 5189.648338574715 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.823973430459, + "min_y": 5189.647857633052, + "max_x": 5203.839231698177, + "max_y": 5189.663115900773, + "center": [ + 5203.831602564318, + 5189.655486766913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839231698177, + 5189.663115900773 + ], + [ + 5203.823973430459, + 5189.647857633052 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.826315225435, + "min_y": 5189.65148572278, + "max_x": 5203.839248408003, + "max_y": 5189.664418905366, + "center": [ + 5203.832781816719, + 5189.657952314074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839248408003, + 5189.664418905366 + ], + [ + 5203.826315225435, + 5189.65148572278 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828277475104, + "min_y": 5189.654734267131, + "max_x": 5203.839265117895, + "max_y": 5189.665721909873, + "center": [ + 5203.833771296499, + 5189.660228088502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839265117895, + 5189.665721909873 + ], + [ + 5203.828277475104, + 5189.654734267131 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.652888734252, + "max_x": 5203.819293492126, + "max_y": 5189.656148461953, + "center": [ + 5203.819293492126, + 5189.654518598103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.656148461953 + ], + [ + 5203.819293492126, + 5189.652888734252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828190193039, + "min_y": 5189.65417054738, + "max_x": 5203.828575604012, + "max_y": 5189.656659760741, + "center": [ + 5203.828382898526, + 5189.65541515406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.828575604012, + 5189.656659760741 + ], + [ + 5203.828190193039, + 5189.65417054738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.830201042638, + "min_y": 5189.506069540652, + "max_x": 5203.833666383983, + "max_y": 5189.506987279397, + "center": [ + 5203.831933713311, + 5189.506528410025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.830201042638, + 5189.506069540652 + ], + [ + 5203.833666383983, + 5189.506987279397 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839171144728, + "min_y": 5189.505559685805, + "max_x": 5203.839273115701, + "max_y": 5189.505967569701, + "center": [ + 5203.839222130215, + 5189.5057636277525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839171144728, + 5189.505967569701 + ], + [ + 5203.839273115701, + 5189.505559685805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839069173688, + "min_y": 5189.505967569701, + "max_x": 5203.839171144728, + "max_y": 5189.506375453579, + "center": [ + 5203.839120159208, + 5189.50617151164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839069173688, + 5189.506375453579 + ], + [ + 5203.839171144728, + 5189.505967569701 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838763260848, + "min_y": 5189.506375453579, + "max_x": 5203.839069173688, + "max_y": 5189.506681366472, + "center": [ + 5203.838916217268, + 5189.506528410026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838763260848, + 5189.506681366472 + ], + [ + 5203.839069173688, + 5189.506375453579 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.838457347941, + "min_y": 5189.506681366472, + "max_x": 5203.838763260848, + "max_y": 5189.507088693153, + "center": [ + 5203.838610304394, + 5189.506885029812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838457347941, + 5189.507088693153 + ], + [ + 5203.838763260848, + 5189.506681366472 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837948050186, + "min_y": 5189.507088693153, + "max_x": 5203.838457347941, + "max_y": 5189.507292635127, + "center": [ + 5203.838202699064, + 5189.50719066414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837948050186, + 5189.507292635127 + ], + [ + 5203.838457347941, + 5189.507088693153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.837438195338, + "min_y": 5189.507292635127, + "max_x": 5203.837948050186, + "max_y": 5189.507496577049, + "center": [ + 5203.837693122762, + 5189.5073946060875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.837438195338, + 5189.507496577049 + ], + [ + 5203.837948050186, + 5189.507292635127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.836724955845, + "min_y": 5189.507496577049, + "max_x": 5203.837438195338, + "max_y": 5189.507598548002, + "center": [ + 5203.837081575592, + 5189.507547562525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.836724955845, + 5189.507598548002 + ], + [ + 5203.837438195338, + 5189.507496577049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.835807217086, + "min_y": 5189.507598548002, + "max_x": 5203.836724955845, + "max_y": 5189.507598548002, + "center": [ + 5203.836266086466, + 5189.507598548002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.835807217086, + 5189.507598548002 + ], + [ + 5203.836724955845, + 5189.507598548002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.834788064654, + "min_y": 5189.507394606079, + "max_x": 5203.835807217086, + "max_y": 5189.507598548002, + "center": [ + 5203.83529764087, + 5189.50749657704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.834788064654, + 5189.507394606079 + ], + [ + 5203.835807217086, + 5189.507598548002 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.833666383983, + "min_y": 5189.506987279397, + "max_x": 5203.834788064654, + "max_y": 5189.507394606079, + "center": [ + 5203.834227224319, + 5189.507190942739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.833666383983, + 5189.506987279397 + ], + [ + 5203.834788064654, + 5189.507394606079 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.503928707535, + "max_x": 5203.839375086633, + "max_y": 5189.504234620427, + "center": [ + 5203.839375086633, + 5189.504081663981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.504234620427 + ], + [ + 5203.839375086633, + 5189.503928707535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.504234620427, + "max_x": 5203.839375086633, + "max_y": 5189.504438562384, + "center": [ + 5203.839375086633, + 5189.504336591406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.504438562384 + ], + [ + 5203.839375086633, + 5189.504234620427 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.504438562384, + "max_x": 5203.839375086633, + "max_y": 5189.504744475276, + "center": [ + 5203.839375086633, + 5189.50459151883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.504744475276 + ], + [ + 5203.839375086633, + 5189.504438562384 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839375086633, + "min_y": 5189.504744475276, + "max_x": 5203.839375086633, + "max_y": 5189.505152359155, + "center": [ + 5203.839375086633, + 5189.504948417216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839375086633, + 5189.505152359155 + ], + [ + 5203.839375086633, + 5189.504744475276 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.839273115701, + "min_y": 5189.505152359155, + "max_x": 5203.839375086633, + "max_y": 5189.505559685805, + "center": [ + 5203.839324101167, + 5189.50535602248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839273115701, + 5189.505559685805 + ], + [ + 5203.839375086633, + 5189.505152359155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.82806020944, + "min_y": 5189.505457714851, + "max_x": 5203.830201042638, + "max_y": 5189.506069540652, + "center": [ + 5203.829130626039, + 5189.505763627752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.82806020944, + 5189.505457714851 + ], + [ + 5203.830201042638, + 5189.506069540652 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.825613463397, + "min_y": 5189.504744475276, + "max_x": 5203.82806020944, + "max_y": 5189.505457714851, + "center": [ + 5203.826836836419, + 5189.505101095064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.825613463397, + 5189.504744475276 + ], + [ + 5203.82806020944, + 5189.505457714851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.822963332512, + "min_y": 5189.504132649458, + "max_x": 5203.825613463397, + "max_y": 5189.504744475276, + "center": [ + 5203.824288397955, + 5189.504438562368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.822963332512, + 5189.504132649458 + ], + [ + 5203.825613463397, + 5189.504744475276 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.820211230854, + "min_y": 5189.503419409883, + "max_x": 5203.822963332512, + "max_y": 5189.504132649458, + "center": [ + 5203.821587281683, + 5189.503776029671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.820211230854, + 5189.503419409883 + ], + [ + 5203.822963332512, + 5189.504132649458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.817458571768, + "min_y": 5189.502807584081, + "max_x": 5203.820211230854, + "max_y": 5189.503419409883, + "center": [ + 5203.818834901311, + 5189.503113496981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.817458571768, + 5189.502807584081 + ], + [ + 5203.820211230854, + 5189.503419409883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814706470181, + "min_y": 5189.502094344457, + "max_x": 5203.817458571768, + "max_y": 5189.502807584081, + "center": [ + 5203.816082520974, + 5189.502450964269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.814706470181, + 5189.502094344457 + ], + [ + 5203.817458571768, + 5189.502807584081 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828476747338, + "min_y": 5189.669082781091, + "max_x": 5203.838518575836, + "max_y": 5189.679124609502, + "center": [ + 5203.833497661587, + 5189.674103695296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838518575836, + 5189.679124609502 + ], + [ + 5203.828476747338, + 5189.669082781091 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828294345332, + "min_y": 5189.670186673684, + "max_x": 5203.838204870645, + "max_y": 5189.680097199113, + "center": [ + 5203.833249607989, + 5189.675141936399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.838204870645, + 5189.680097199113 + ], + [ + 5203.828294345332, + 5189.670186673684 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.664036458992, + "max_x": 5203.839307681113, + "max_y": 5189.674768536029, + "center": [ + 5203.833941642562, + 5189.66940249751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839307681113, + 5189.674768536029 + ], + [ + 5203.828575604012, + 5189.664036458992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.665322753691, + "max_x": 5203.839163263003, + "max_y": 5189.675910412682, + "center": [ + 5203.833869433507, + 5189.6706165831865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839163263003, + 5189.675910412682 + ], + [ + 5203.828575604012, + 5189.665322753691 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.666609048389, + "max_x": 5203.839035112765, + "max_y": 5189.67706855706, + "center": [ + 5203.833805358388, + 5189.671838802724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839035112765, + 5189.67706855706 + ], + [ + 5203.828575604012, + 5189.666609048389 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.667895343138, + "max_x": 5203.8387596737, + "max_y": 5189.678079412685, + "center": [ + 5203.833667638856, + 5189.672987377911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.8387596737, + 5189.678079412685 + ], + [ + 5203.828575604012, + 5189.667895343138 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.660177574949, + "max_x": 5203.839331957269, + "max_y": 5189.670933928156, + "center": [ + 5203.8339537806405, + 5189.665555751552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839331957269, + 5189.670933928156 + ], + [ + 5203.828575604012, + 5189.660177574949 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.661463869597, + "max_x": 5203.839348667166, + "max_y": 5189.672236932748, + "center": [ + 5203.833962135589, + 5189.666850401172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839348667166, + 5189.672236932748 + ], + [ + 5203.828575604012, + 5189.661463869597 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.828575604012, + "min_y": 5189.662750164295, + "max_x": 5203.839365377058, + "max_y": 5189.673539937308, + "center": [ + 5203.833970490536, + 5189.668145050802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.839365377058, + 5189.673539937308 + ], + [ + 5203.828575604012, + 5189.662750164295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.827979960767, + "min_y": 5189.669877108691, + "max_x": 5203.828400417227, + "max_y": 5189.671104187095, + "center": [ + 5203.828190188997, + 5189.6704906478935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.827979960767, + 5189.671104187095 + ], + [ + 5203.828400417227, + 5189.669877108691 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.819293492126, + "min_y": 5189.669702778044, + "max_x": 5203.820937344908, + "max_y": 5189.671454777386, + "center": [ + 5203.820115418517, + 5189.6705787777155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.819293492126, + 5189.669702778044 + ], + [ + 5203.820937344908, + 5189.671454777386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.977276139249, + "min_y": 5189.834704583157, + "max_x": 5204.033467305953, + "max_y": 5189.834704583157, + "center": [ + 5204.005371722601, + 5189.834704583157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.977276139249, + 5189.834704583157 + ], + [ + 5204.033467305953, + 5189.834704583157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.997344413042, + "min_y": 5189.959283623294, + "max_x": 5204.04550827016, + "max_y": 5190.007447480412, + "center": [ + 5204.021426341601, + 5189.983365551853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.021426341601, + 5189.983365551853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.814028024928, + "min_y": 5189.900678521166, + "max_x": 5204.013399032134, + "max_y": 5189.920259602187, + "center": [ + 5203.913713528531, + 5189.910469061677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.013399032134, + 5189.920259602187 + ], + [ + 5203.814028024928, + 5189.900678521166 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.025439996454, + "min_y": 5189.951072086763, + "max_x": 5204.117754055905, + "max_y": 5189.951072086763, + "center": [ + 5204.071597026179, + 5189.951072086763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.025439996454, + 5189.951072086763 + ], + [ + 5204.117754055905, + 5189.951072086763 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A7F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.001358067875, + "min_y": 5189.83470458323, + "max_x": 5204.0655765440315, + "max_y": 5189.898923059386, + "center": [ + 5204.033467305953, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.033467305953, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A80", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.984918166535, + "min_y": 5189.791133686444, + "max_x": 5204.338652188927, + "max_y": 5190.144867708836, + "center": [ + 5204.161785177731, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.161785177731, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.025439996454, + "min_y": 5189.888505401069, + "max_x": 5204.117754055905, + "max_y": 5189.888505401069, + "center": [ + 5204.071597026179, + 5189.888505401069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.025439996454, + 5189.888505401069 + ], + [ + 5204.117754055905, + 5189.888505401069 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.061562889201, + "min_y": 5189.951072086763, + "max_x": 5204.061562889201, + "max_y": 5190.007447480387, + "center": [ + 5204.061562889201, + 5189.979259783575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.061562889201, + 5189.951072086763 + ], + [ + 5204.061562889201, + 5190.007447480387 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.065576543959, + "min_y": 5189.866813821308, + "max_x": 5204.065576543959, + "max_y": 5189.870045649675, + "center": [ + 5204.065576543959, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.065576543959, + 5189.866813821308 + ], + [ + 5204.065576543959, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.851816419221, + "max_x": 5204.138565038065, + "max_y": 5189.902669181424, + "center": [ + 5204.118868118484, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.099171198903, + 5189.851816419221 + ], + [ + 5204.138565038065, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.791874745303, + "max_x": 5204.138200044013, + "max_y": 5189.851816419221, + "center": [ + 5204.118685621457, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.138200044013, + 5189.791874745303 + ], + [ + 5204.099171198903, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.791874745303, + "max_x": 5204.113469454236, + "max_y": 5189.812083264246, + "center": [ + 5204.106320326569, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.113469454236, + 5189.791874745303 + ], + [ + 5204.099171198903, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.099171198903, + "min_y": 5189.812083264246, + "max_x": 5204.099171198903, + "max_y": 5189.851816419221, + "center": [ + 5204.099171198903, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.099171198903, + 5189.851816419221 + ], + [ + 5204.099171198903, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.065576543959, + "min_y": 5189.870045649675, + "max_x": 5204.113292740041, + "max_y": 5189.870045649675, + "center": [ + 5204.089434642, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.113292740041, + 5189.870045649675 + ], + [ + 5204.065576543959, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.117754055905, + "min_y": 5189.875804677846, + "max_x": 5204.117754055905, + "max_y": 5189.958389322431, + "center": [ + 5204.117754055905, + 5189.917097000138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.117754055905, + 5189.958389322431 + ], + [ + 5204.117754055905, + 5189.875804677846 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A8A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.013399032126, + "min_y": 5189.6573652154375, + "max_x": 5204.350546031962, + "max_y": 5189.994512215274, + "center": [ + 5204.181972532044, + 5189.825938715356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.181972532044, + 5189.825938715356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5204.013399032134, + "min_y": 5189.834704583157, + "max_x": 5204.013399032134, + "max_y": 5189.920668888536, + "center": [ + 5204.013399032134, + 5189.8776867358465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.013399032134, + 5189.920668888536 + ], + [ + 5204.013399032134, + 5189.834704583157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A8C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5204.0133990321065, + "min_y": 5189.873130007346, + "max_x": 5204.106716505279, + "max_y": 5189.966447480519, + "center": [ + 5204.060057768693, + 5189.919788743932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5204.060057768693, + 5189.919788743932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.99734441307, + "min_y": 5189.91868280922, + "max_x": 5203.99734441307, + "max_y": 5189.983365551853, + "center": [ + 5203.99734441307, + 5189.9510241805365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.99734441307, + 5189.91868280922 + ], + [ + 5203.99734441307, + 5189.983365551853 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.897273990836, + "min_y": 5189.791874745303, + "max_x": 5203.911572246172, + "max_y": 5189.812083264246, + "center": [ + 5203.9044231185035, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.812083264246 + ], + [ + 5203.897273990836, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.911572246172, + "min_y": 5189.812083264246, + "max_x": 5203.911572246172, + "max_y": 5189.851816419221, + "center": [ + 5203.911572246172, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.851816419221 + ], + [ + 5203.911572246172, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A91", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.9451669011705, + "min_y": 5189.83470458323, + "max_x": 5204.009385377327, + "max_y": 5189.898923059386, + "center": [ + 5203.977276139249, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.977276139249, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.945166901116, + "min_y": 5189.866813821308, + "max_x": 5203.945166901116, + "max_y": 5189.870045649675, + "center": [ + 5203.945166901116, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.945166901116, + 5189.866813821308 + ], + [ + 5203.945166901116, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A93", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.672091256211, + "min_y": 5189.791133686444, + "max_x": 5204.025825278603, + "max_y": 5190.144867708836, + "center": [ + 5203.848958267407, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.848958267407, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.897450705131, + "min_y": 5189.870045649675, + "max_x": 5203.945166901116, + "max_y": 5189.870045649675, + "center": [ + 5203.921308803123, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.945166901116, + 5189.870045649675 + ], + [ + 5203.897450705131, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872178407007, + "min_y": 5189.851816419221, + "max_x": 5203.911572246172, + "max_y": 5189.902669181424, + "center": [ + 5203.89187532659, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.872178407007, + 5189.902669181424 + ], + [ + 5203.911572246172, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.872543401054, + "min_y": 5189.791874745303, + "max_x": 5203.911572246172, + "max_y": 5189.851816419221, + "center": [ + 5203.892057823613, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.911572246172, + 5189.851816419221 + ], + [ + 5203.872543401054, + 5189.791874745303 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.527004097622, + "min_y": 5189.768609516541, + "max_x": 5203.566397936787, + "max_y": 5189.829111759219, + "center": [ + 5203.546701017205, + 5189.79886063788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.566397936787, + 5189.829111759219 + ], + [ + 5203.527004097622, + 5189.768609516541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.554263832477, + "min_y": 5189.772228800076, + "max_x": 5203.566397936787, + "max_y": 5189.789378604245, + "center": [ + 5203.560330884632, + 5189.7808037021605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.566397936787, + 5189.789378604245 + ], + [ + 5203.554263832477, + 5189.772228800076 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.787537616562, + "min_y": 5189.720817624821, + "max_x": 5203.813526237169, + "max_y": 5189.746806245541, + "center": [ + 5203.800531926865, + 5189.733811935181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813526237169, + 5189.746806245541 + ], + [ + 5203.787537616562, + 5189.720817624821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.723502095696, + "max_x": 5203.794173784332, + "max_y": 5189.741603034219, + "center": [ + 5203.785123314987, + 5189.732552564958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794173784332, + 5189.741603034219 + ], + [ + 5203.776072845641, + 5189.723502095696 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.722215800998, + "max_x": 5203.795910053671, + "max_y": 5189.742053008861, + "center": [ + 5203.785991449656, + 5189.73213440493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795910053671, + 5189.742053008861 + ], + [ + 5203.776072845641, + 5189.722215800998 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.720929506301, + "max_x": 5203.797642550632, + "max_y": 5189.74249921117, + "center": [ + 5203.786857698136, + 5189.731714358735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797642550632, + 5189.74249921117 + ], + [ + 5203.776072845641, + 5189.720929506301 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553A9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.719643211603, + "max_x": 5203.799379318258, + "max_y": 5189.742949684052, + "center": [ + 5203.78772608195, + 5189.731296447828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799379318258, + 5189.742949684052 + ], + [ + 5203.776072845641, + 5189.719643211603 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.718356916904, + "max_x": 5203.801160653751, + "max_y": 5189.743444724926, + "center": [ + 5203.788616749696, + 5189.730900820915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801160653751, + 5189.743444724926 + ], + [ + 5203.776072845641, + 5189.718356916904 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.717070622207, + "max_x": 5203.802940789611, + "max_y": 5189.743938566035, + "center": [ + 5203.789506817626, + 5189.730504594121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802940789611, + 5189.743938566035 + ], + [ + 5203.776072845641, + 5189.717070622207 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.715784327509, + "max_x": 5203.804686654712, + "max_y": 5189.744398136392, + "center": [ + 5203.790379750177, + 5189.730091231951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804686654712, + 5189.744398136392 + ], + [ + 5203.776072845641, + 5189.715784327509 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.714498032811, + "max_x": 5203.806432519617, + "max_y": 5189.744857706782, + "center": [ + 5203.791252682629, + 5189.729677869796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806432519617, + 5189.744857706782 + ], + [ + 5203.776072845641, + 5189.714498032811 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810527332041, + "min_y": 5189.723534399923, + "max_x": 5203.812056339327, + "max_y": 5189.724047040872, + "center": [ + 5203.811291835684, + 5189.723790720398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812056339327, + 5189.723534399923 + ], + [ + 5203.810527332041, + 5189.724047040872 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.716558020791, + "max_x": 5203.811141748171, + "max_y": 5189.72384104126, + "center": [ + 5203.807500237945, + 5189.720199531026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811141748171, + 5189.72384104126 + ], + [ + 5203.803858727718, + 5189.716558020791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803858727718, + "min_y": 5189.715271726092, + "max_x": 5203.81210731483, + "max_y": 5189.723520313176, + "center": [ + 5203.807983021274, + 5189.719396019635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81210731483, + 5189.723520313176 + ], + [ + 5203.803858727718, + 5189.715271726092 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.727360979791, + "max_x": 5203.788968390485, + "max_y": 5189.74025652453, + "center": [ + 5203.782520618062, + 5189.73380875216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.788968390485, + 5189.74025652453 + ], + [ + 5203.776072845641, + 5189.727360979791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.726074685093, + "max_x": 5203.790555175243, + "max_y": 5189.740557014592, + "center": [ + 5203.783314010441, + 5189.733315849842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790555175243, + 5189.740557014592 + ], + [ + 5203.776072845641, + 5189.726074685093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.724788390395, + "max_x": 5203.792386388133, + "max_y": 5189.741101932782, + "center": [ + 5203.784229616887, + 5189.732945161588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792386388133, + 5189.741101932782 + ], + [ + 5203.776072845641, + 5189.724788390395 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.736365042675, + "max_x": 5203.780800774042, + "max_y": 5189.741092970994, + "center": [ + 5203.778436809842, + 5189.738729006835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.780800774042, + 5189.741092970994 + ], + [ + 5203.776072845641, + 5189.736365042675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.735078747978, + "max_x": 5203.781818112111, + "max_y": 5189.740824014361, + "center": [ + 5203.778945478876, + 5189.73795138117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781818112111, + 5189.740824014361 + ], + [ + 5203.776072845641, + 5189.735078747978 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.733792453281, + "max_x": 5203.782886585381, + "max_y": 5189.740606192916, + "center": [ + 5203.779479715511, + 5189.737199323099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.782886585381, + 5189.740606192916 + ], + [ + 5203.776072845641, + 5189.733792453281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.732506158581, + "max_x": 5203.784033400345, + "max_y": 5189.740466713129, + "center": [ + 5203.780053122993, + 5189.736486435855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.784033400345, + 5189.740466713129 + ], + [ + 5203.776072845641, + 5189.732506158581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.731219863883, + "max_x": 5203.785203412979, + "max_y": 5189.740350431116, + "center": [ + 5203.78063812931, + 5189.735785147499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.785203412979, + 5189.740350431116 + ], + [ + 5203.776072845641, + 5189.731219863883 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.729933569186, + "max_x": 5203.786395801087, + "max_y": 5189.74025652453, + "center": [ + 5203.781234323364, + 5189.735095046858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786395801087, + 5189.74025652453 + ], + [ + 5203.776072845641, + 5189.729933569186 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.728647274488, + "max_x": 5203.787682095883, + "max_y": 5189.74025652453, + "center": [ + 5203.781877470761, + 5189.734451899509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787682095883, + 5189.74025652453 + ], + [ + 5203.776072845641, + 5189.728647274488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.743310081488, + "max_x": 5203.776072845641, + "max_y": 5189.743516252281, + "center": [ + 5203.776072845641, + 5189.743413166884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.743516252281 + ], + [ + 5203.776072845641, + 5189.743310081488 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.743516252281, + "max_x": 5203.776174816681, + "max_y": 5189.74361655156, + "center": [ + 5203.776123831161, + 5189.74356640192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776174816681, + 5189.74361655156 + ], + [ + 5203.776072845641, + 5189.743516252281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776174816681, + "min_y": 5189.74361655156, + "max_x": 5203.776276787653, + "max_y": 5189.743822722402, + "center": [ + 5203.776225802167, + 5189.743719636981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776276787653, + 5189.743822722402 + ], + [ + 5203.776174816681, + 5189.74361655156 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776276787653, + "min_y": 5189.743822722402, + "max_x": 5203.776378758586, + "max_y": 5189.74402889323, + "center": [ + 5203.776327773119, + 5189.743925807816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776378758586, + 5189.74402889323 + ], + [ + 5203.776276787653, + 5189.743822722402 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776378758586, + "min_y": 5189.74402889323, + "max_x": 5203.776582143397, + "max_y": 5189.744229491854, + "center": [ + 5203.776480450992, + 5189.7441291925425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776582143397, + 5189.744229491854 + ], + [ + 5203.776378758586, + 5189.74402889323 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776582143397, + "min_y": 5189.744229491854, + "max_x": 5203.776786085338, + "max_y": 5189.744329791184, + "center": [ + 5203.7766841143675, + 5189.744279641519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776786085338, + 5189.744329791184 + ], + [ + 5203.776582143397, + 5189.744229491854 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776786085338, + "min_y": 5189.744329791184, + "max_x": 5203.776888056306, + "max_y": 5189.744535961978, + "center": [ + 5203.776837070822, + 5189.744432876581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776888056306, + 5189.744535961978 + ], + [ + 5203.776786085338, + 5189.744329791184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776888056306, + "min_y": 5189.744535961978, + "max_x": 5203.777091998245, + "max_y": 5189.744636261256, + "center": [ + 5203.776990027276, + 5189.7445861116175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777091998245, + 5189.744636261256 + ], + [ + 5203.776888056306, + 5189.744535961978 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777091998245, + "min_y": 5189.744636261256, + "max_x": 5203.777295940183, + "max_y": 5189.744742132805, + "center": [ + 5203.777193969214, + 5189.74468919703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777295940183, + 5189.744742132805 + ], + [ + 5203.777091998245, + 5189.744636261256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777295940183, + "min_y": 5189.744742132805, + "max_x": 5203.777499882091, + "max_y": 5189.744742132805, + "center": [ + 5203.777397911137, + 5189.744742132805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777499882091, + 5189.744742132805 + ], + [ + 5203.777295940183, + 5189.744742132805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777499882091, + "min_y": 5189.744636261256, + "max_x": 5203.777703823998, + "max_y": 5189.744742132805, + "center": [ + 5203.777601853045, + 5189.74468919703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777703823998, + 5189.744636261256 + ], + [ + 5203.777499882091, + 5189.744742132805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777703823998, + "min_y": 5189.744435662682, + "max_x": 5203.777805795031, + "max_y": 5189.744636261256, + "center": [ + 5203.777754809515, + 5189.744535961969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777805795031, + 5189.744435662682 + ], + [ + 5203.777703823998, + 5189.744636261256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777805795031, + "min_y": 5189.744129192558, + "max_x": 5203.778009736936, + "max_y": 5189.744435662682, + "center": [ + 5203.777907765983, + 5189.74428242762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778009736936, + 5189.744129192558 + ], + [ + 5203.777805795031, + 5189.744435662682 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778009736936, + "min_y": 5189.743722423106, + "max_x": 5203.778111707944, + "max_y": 5189.744129192558, + "center": [ + 5203.7780607224395, + 5189.743925807832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778111707944, + 5189.743722423106 + ], + [ + 5203.778009736936, + 5189.744129192558 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ABF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778111707944, + "min_y": 5189.743109482861, + "max_x": 5203.77831509265, + "max_y": 5189.743722423106, + "center": [ + 5203.778213400297, + 5189.743415952984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77831509265, + 5189.743109482861 + ], + [ + 5203.778111707944, + 5189.743722423106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77831509265, + "min_y": 5189.742089773165, + "max_x": 5203.778926918435, + "max_y": 5189.743109482861, + "center": [ + 5203.778621005542, + 5189.742599628013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778926918435, + 5189.742089773165 + ], + [ + 5203.77831509265, + 5189.743109482861 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778926918435, + "min_y": 5189.741577132166, + "max_x": 5203.779538744288, + "max_y": 5189.742089773165, + "center": [ + 5203.779232831362, + 5189.741833452666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.779538744288, + 5189.741577132166 + ], + [ + 5203.778926918435, + 5189.742089773165 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.779538744288, + "min_y": 5189.741276234228, + "max_x": 5203.780251983848, + "max_y": 5189.741577132166, + "center": [ + 5203.779895364069, + 5189.741426683197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.780251983848, + 5189.741276234228 + ], + [ + 5203.779538744288, + 5189.741577132166 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.780251983848, + "min_y": 5189.740969764137, + "max_x": 5203.781169722572, + "max_y": 5189.741276234228, + "center": [ + 5203.78071085321, + 5189.741122999183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781169722572, + 5189.740969764137 + ], + [ + 5203.780251983848, + 5189.741276234228 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781169722572, + "min_y": 5189.740763593311, + "max_x": 5203.782086904135, + "max_y": 5189.740969764137, + "center": [ + 5203.781628313353, + 5189.740866678724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.782086904135, + 5189.740763593311 + ], + [ + 5203.781169722572, + 5189.740969764137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.782086904135, + "min_y": 5189.740562994686, + "max_x": 5203.783106056535, + "max_y": 5189.740763593311, + "center": [ + 5203.782596480335, + 5189.740663293998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.783106056535, + 5189.740562994686 + ], + [ + 5203.782086904135, + 5189.740763593311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.783106056535, + "min_y": 5189.740457123188, + "max_x": 5203.784125766233, + "max_y": 5189.740562994686, + "center": [ + 5203.783615911384, + 5189.740510058937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.784125766233, + 5189.740457123188 + ], + [ + 5203.783106056535, + 5189.740562994686 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.784125766233, + "min_y": 5189.740356823893, + "max_x": 5203.785144918772, + "max_y": 5189.740457123188, + "center": [ + 5203.784635342503, + 5189.74040697354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.785144918772, + 5189.740356823893 + ], + [ + 5203.784125766233, + 5189.740457123188 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.785144918772, + "min_y": 5189.74025652453, + "max_x": 5203.786062657432, + "max_y": 5189.740356823893, + "center": [ + 5203.785603788102, + 5189.740306674212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786062657432, + 5189.74025652453 + ], + [ + 5203.785144918772, + 5189.740356823893 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786062657432, + "min_y": 5189.74025652453, + "max_x": 5203.786979839027, + "max_y": 5189.74025652453, + "center": [ + 5203.786521248229, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786979839027, + 5189.74025652453 + ], + [ + 5203.786062657432, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786979839027, + "min_y": 5189.74025652453, + "max_x": 5203.787795606821, + "max_y": 5189.74025652453, + "center": [ + 5203.787387722924, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787795606821, + 5189.74025652453 + ], + [ + 5203.786979839027, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.787795606821, + "min_y": 5189.74025652453, + "max_x": 5203.788508846379, + "max_y": 5189.74025652453, + "center": [ + 5203.7881522266, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.788508846379, + 5189.74025652453 + ], + [ + 5203.787795606821, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.788508846379, + "min_y": 5189.74025652453, + "max_x": 5203.789018701225, + "max_y": 5189.74025652453, + "center": [ + 5203.788763773802, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.789018701225, + 5189.74025652453 + ], + [ + 5203.788508846379, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789018701225, + "min_y": 5189.74025652453, + "max_x": 5203.789324614138, + "max_y": 5189.74025652453, + "center": [ + 5203.789171657681, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.789324614138, + 5189.74025652453 + ], + [ + 5203.789018701225, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789324614138, + "min_y": 5189.74025652453, + "max_x": 5203.789528556077, + "max_y": 5189.74025652453, + "center": [ + 5203.789426585108, + 5189.74025652453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.789528556077, + 5189.74025652453 + ], + [ + 5203.789324614138, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ACF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789528556077, + "min_y": 5189.74025652453, + "max_x": 5203.791260948166, + "max_y": 5189.740763593311, + "center": [ + 5203.790394752122, + 5189.74051005892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791260948166, + 5189.740763593311 + ], + [ + 5203.789528556077, + 5189.74025652453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791260948166, + "min_y": 5189.740763593311, + "max_x": 5203.79329981033, + "max_y": 5189.741376533589, + "center": [ + 5203.792280379248, + 5189.74107006345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79329981033, + 5189.741376533589 + ], + [ + 5203.791260948166, + 5189.740763593311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79329981033, + "min_y": 5189.741376533589, + "max_x": 5203.796051911955, + "max_y": 5189.742089773165, + "center": [ + 5203.794675861142, + 5189.741733153377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796051911955, + 5189.742089773165 + ], + [ + 5203.79329981033, + 5189.741376533589 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796051911955, + "min_y": 5189.742089773165, + "max_x": 5203.79921245485, + "max_y": 5189.742903312036, + "center": [ + 5203.797632183403, + 5189.742496542601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79921245485, + 5189.742903312036 + ], + [ + 5203.796051911955, + 5189.742089773165 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79921245485, + "min_y": 5189.742903312036, + "max_x": 5203.802881738104, + "max_y": 5189.743923021732, + "center": [ + 5203.801047096476, + 5189.743413166884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802881738104, + 5189.743923021732 + ], + [ + 5203.79921245485, + 5189.742903312036 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.742796516165, + "max_x": 5203.777774181972, + "max_y": 5189.744497852359, + "center": [ + 5203.776923513806, + 5189.743647184262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777774181972, + 5189.744497852359 + ], + [ + 5203.776072845641, + 5189.742796516165 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.741510221467, + "max_x": 5203.778154894944, + "max_y": 5189.743592270616, + "center": [ + 5203.777113870292, + 5189.742551246041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778154894944, + 5189.743592270616 + ], + [ + 5203.776072845641, + 5189.741510221467 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.74022392677, + "max_x": 5203.778556333629, + "max_y": 5189.74270741462, + "center": [ + 5203.777314589635, + 5189.741465670695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778556333629, + 5189.74270741462 + ], + [ + 5203.776072845641, + 5189.74022392677 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.738937632071, + "max_x": 5203.77908909839, + "max_y": 5189.741953884718, + "center": [ + 5203.777580972015, + 5189.740445758394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77908909839, + 5189.741953884718 + ], + [ + 5203.776072845641, + 5189.738937632071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.737651337374, + "max_x": 5203.779862187785, + "max_y": 5189.741440679465, + "center": [ + 5203.777967516713, + 5189.739546008419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.779862187785, + 5189.741440679465 + ], + [ + 5203.776072845641, + 5189.737651337374 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806755520488, + "min_y": 5189.744942731429, + "max_x": 5203.810832687723, + "max_y": 5189.746062740456, + "center": [ + 5203.808794104105, + 5189.745502735943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810832687723, + 5189.746062740456 + ], + [ + 5203.806755520488, + 5189.744942731429 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802881738104, + "min_y": 5189.743923021732, + "max_x": 5203.806755520488, + "max_y": 5189.744942731429, + "center": [ + 5203.804818629296, + 5189.7444328765805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806755520488, + 5189.744942731429 + ], + [ + 5203.802881738104, + 5189.743923021732 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793904384049, + "min_y": 5189.674385553519, + "max_x": 5203.80024025089, + "max_y": 5189.680721420348, + "center": [ + 5203.797072317469, + 5189.677553486934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80024025089, + 5189.680721420348 + ], + [ + 5203.793904384049, + 5189.674385553519 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792285941599, + "min_y": 5189.671480816361, + "max_x": 5203.803136892809, + "max_y": 5189.68233176757, + "center": [ + 5203.7977114172045, + 5189.676906291965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803136892809, + 5189.68233176757 + ], + [ + 5203.792285941599, + 5189.671480816361 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79370769421, + "min_y": 5189.674090894916, + "max_x": 5203.794726846609, + "max_y": 5189.675617673362, + "center": [ + 5203.79421727041, + 5189.674854284139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79370769421, + 5189.674090894916 + ], + [ + 5203.794726846609, + 5189.675617673362 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777805795031, + "min_y": 5189.694180133798, + "max_x": 5203.778417063589, + "max_y": 5189.695199843496, + "center": [ + 5203.77811142931, + 5189.694689988647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777805795031, + 5189.695199843496 + ], + [ + 5203.778417063589, + 5189.694180133798 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ADF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777193969145, + "min_y": 5189.695199843496, + "max_x": 5203.777805795031, + "max_y": 5189.696319852572, + "center": [ + 5203.777499882088, + 5189.695759848034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777193969145, + 5189.696319852572 + ], + [ + 5203.777805795031, + 5189.695199843496 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776786085338, + "min_y": 5189.696319852572, + "max_x": 5203.777193969145, + "max_y": 5189.69733956227, + "center": [ + 5203.7769900272415, + 5189.696829707421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776786085338, + 5189.69733956227 + ], + [ + 5203.777193969145, + 5189.696319852572 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776480729594, + "min_y": 5189.69733956227, + "max_x": 5203.776786085338, + "max_y": 5189.698258972588, + "center": [ + 5203.776633407466, + 5189.697799267429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776480729594, + 5189.698258972588 + ], + [ + 5203.776786085338, + 5189.69733956227 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776276787653, + "min_y": 5189.698258972588, + "max_x": 5203.776480729594, + "max_y": 5189.699072511459, + "center": [ + 5203.776378758624, + 5189.698665742024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776276787653, + 5189.699072511459 + ], + [ + 5203.776480729594, + 5189.698258972588 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.699072511459, + "max_x": 5203.776276787653, + "max_y": 5189.699685451737, + "center": [ + 5203.776174816647, + 5189.699378981599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.699685451737 + ], + [ + 5203.776276787653, + 5189.699072511459 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.699685451737, + "max_x": 5203.776072845641, + "max_y": 5189.700092221155, + "center": [ + 5203.776072845641, + 5189.699888836446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.700092221155 + ], + [ + 5203.776072845641, + 5189.699685451737 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.700092221155, + "max_x": 5203.776072845641, + "max_y": 5189.700192520518, + "center": [ + 5203.776072845641, + 5189.700142370836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.700192520518 + ], + [ + 5203.776072845641, + 5189.700092221155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803085680107, + "min_y": 5189.692954253274, + "max_x": 5203.803799476898, + "max_y": 5189.693466894224, + "center": [ + 5203.803442578503, + 5189.693210573749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803085680107, + 5189.692954253274 + ], + [ + 5203.803799476898, + 5189.693466894224 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803187651049, + "min_y": 5189.682449171153, + "max_x": 5203.803493563986, + "max_y": 5189.682449171153, + "center": [ + 5203.803340607517, + 5189.682449171153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803187651049, + 5189.682449171153 + ], + [ + 5203.803493563986, + 5189.682449171153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803187651049, + "min_y": 5189.682382525703, + "max_x": 5203.803254296477, + "max_y": 5189.682449171153, + "center": [ + 5203.803220973763, + 5189.682415848429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803254296477, + 5189.682449171153 + ], + [ + 5203.803187651049, + 5189.682382525703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803799476898, + "min_y": 5189.693466894224, + "max_x": 5203.804512716454, + "max_y": 5189.693973962972, + "center": [ + 5203.804156096676, + 5189.693720428599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803799476898, + 5189.693466894224 + ], + [ + 5203.804512716454, + 5189.693973962972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803799476898, + "min_y": 5189.682549470482, + "max_x": 5203.804410745484, + "max_y": 5189.682755641325, + "center": [ + 5203.804105111191, + 5189.682652555903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803799476898, + 5189.682549470482 + ], + [ + 5203.804410745484, + 5189.682755641325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803493563986, + "min_y": 5189.682449171153, + "max_x": 5203.803799476898, + "max_y": 5189.682549470482, + "center": [ + 5203.803646520442, + 5189.682499320817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803493563986, + 5189.682449171153 + ], + [ + 5203.803799476898, + 5189.682549470482 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796969650714, + "min_y": 5189.678063862209, + "max_x": 5203.798090774217, + "max_y": 5189.679189443452, + "center": [ + 5203.797530212465, + 5189.678626652831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796969650714, + 5189.678063862209 + ], + [ + 5203.798090774217, + 5189.679189443452 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802474411457, + "min_y": 5189.692547483856, + "max_x": 5203.803085680107, + "max_y": 5189.692954253274, + "center": [ + 5203.802780045782, + 5189.692750868566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802474411457, + 5189.692547483856 + ], + [ + 5203.803085680107, + 5189.692954253274 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801862585637, + "min_y": 5189.692241013784, + "max_x": 5203.802474411457, + "max_y": 5189.692547483856, + "center": [ + 5203.802168498547, + 5189.69239424882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801862585637, + 5189.692241013784 + ], + [ + 5203.802474411457, + 5189.692547483856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801454701757, + "min_y": 5189.692040415075, + "max_x": 5203.801862585637, + "max_y": 5189.692241013784, + "center": [ + 5203.801658643697, + 5189.692140714429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801454701757, + 5189.692040415075 + ], + [ + 5203.801862585637, + 5189.692241013784 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801046817845, + "min_y": 5189.691834244282, + "max_x": 5203.801454701757, + "max_y": 5189.692040415075, + "center": [ + 5203.801250759801, + 5189.691937329679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801046817845, + 5189.691834244282 + ], + [ + 5203.801454701757, + 5189.692040415075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.8008434331, + "min_y": 5189.69173394495, + "max_x": 5203.801046817845, + "max_y": 5189.691834244282, + "center": [ + 5203.800945125473, + 5189.691784094616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.8008434331, + 5189.69173394495 + ], + [ + 5203.801046817845, + 5189.691834244282 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.8008434331, + "min_y": 5189.691633645673, + "max_x": 5203.8008434331, + "max_y": 5189.69173394495, + "center": [ + 5203.8008434331, + 5189.691683795312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.8008434331, + 5189.691633645673 + ], + [ + 5203.8008434331, + 5189.69173394495 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800741462201, + "min_y": 5189.691633645673, + "max_x": 5203.8008434331, + "max_y": 5189.691633645673, + "center": [ + 5203.800792447651, + 5189.691633645673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800741462201, + 5189.691633645673 + ], + [ + 5203.8008434331, + 5189.691633645673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800639491191, + "min_y": 5189.691633645673, + "max_x": 5203.800741462201, + "max_y": 5189.691633645673, + "center": [ + 5203.800690476695, + 5189.691633645673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800639491191, + 5189.691633645673 + ], + [ + 5203.800741462201, + 5189.691633645673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800537520259, + "min_y": 5189.691633645673, + "max_x": 5203.800639491191, + "max_y": 5189.691633645673, + "center": [ + 5203.800588505725, + 5189.691633645673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800537520259, + 5189.691633645673 + ], + [ + 5203.800639491191, + 5189.691633645673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800333578256, + "min_y": 5189.691527774158, + "max_x": 5203.800537520259, + "max_y": 5189.691633645673, + "center": [ + 5203.800435549258, + 5189.691580709916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800333578256, + 5189.691527774158 + ], + [ + 5203.800537520259, + 5189.691633645673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800129636348, + "min_y": 5189.691527774158, + "max_x": 5203.800333578256, + "max_y": 5189.691527774158, + "center": [ + 5203.800231607302, + 5189.691527774158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800129636348, + 5189.691527774158 + ], + [ + 5203.800333578256, + 5189.691527774158 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799721752501, + "min_y": 5189.69142747483, + "max_x": 5203.800129636348, + "max_y": 5189.691527774158, + "center": [ + 5203.799925694424, + 5189.691477624494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799721752501, + 5189.69142747483 + ], + [ + 5203.800129636348, + 5189.691527774158 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799313868556, + "min_y": 5189.69132717555, + "max_x": 5203.799721752501, + "max_y": 5189.69142747483, + "center": [ + 5203.799517810528, + 5189.69137732519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799313868556, + 5189.69132717555 + ], + [ + 5203.799721752501, + 5189.69142747483 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798702600003, + "min_y": 5189.691221304004, + "max_x": 5203.799313868556, + "max_y": 5189.69132717555, + "center": [ + 5203.799008234279, + 5189.691274239777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798702600003, + 5189.691221304004 + ], + [ + 5203.799313868556, + 5189.69132717555 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797988803242, + "min_y": 5189.691020705377, + "max_x": 5203.798702600003, + "max_y": 5189.691221304004, + "center": [ + 5203.798345701623, + 5189.691121004691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797988803242, + 5189.691020705377 + ], + [ + 5203.798702600003, + 5189.691221304004 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797173592653, + "min_y": 5189.690914833881, + "max_x": 5203.797988803242, + "max_y": 5189.691020705377, + "center": [ + 5203.797581197948, + 5189.690967769629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.797173592653, + 5189.690914833881 + ], + [ + 5203.797988803242, + 5189.691020705377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796153882954, + "min_y": 5189.690714235254, + "max_x": 5203.797173592653, + "max_y": 5189.690914833881, + "center": [ + 5203.796663737803, + 5189.690814534568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796153882954, + 5189.690714235254 + ], + [ + 5203.797173592653, + 5189.690914833881 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795032759515, + "min_y": 5189.690508064462, + "max_x": 5203.796153882954, + "max_y": 5189.690714235254, + "center": [ + 5203.795593321234, + 5189.690611149857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795032759515, + 5189.690508064462 + ], + [ + 5203.796153882954, + 5189.690714235254 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553AFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79370769421, + "min_y": 5189.690201594306, + "max_x": 5203.795032759515, + "max_y": 5189.690508064462, + "center": [ + 5203.794370226862, + 5189.690354829384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79370769421, + 5189.690201594306 + ], + [ + 5203.795032759515, + 5189.690508064462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792178686825, + "min_y": 5189.690000995681, + "max_x": 5203.79370769421, + "max_y": 5189.690201594306, + "center": [ + 5203.792943190518, + 5189.690101294993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792178686825, + 5189.690000995681 + ], + [ + 5203.79370769421, + 5189.690201594306 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790547708475, + "min_y": 5189.689594226277, + "max_x": 5203.792178686825, + "max_y": 5189.690000995681, + "center": [ + 5203.79136319765, + 5189.689797610979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790547708475, + 5189.689594226277 + ], + [ + 5203.792178686825, + 5189.690000995681 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786164628464, + "min_y": 5189.689488354765, + "max_x": 5203.790547708475, + "max_y": 5189.689594226277, + "center": [ + 5203.788356168469, + 5189.689541290521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786164628464, + 5189.689488354765 + ], + [ + 5203.790547708475, + 5189.689594226277 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.784431679178, + "min_y": 5189.689488354765, + "max_x": 5203.786164628464, + "max_y": 5189.689794824887, + "center": [ + 5203.785298153821, + 5189.689641589826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.784431679178, + 5189.689794824887 + ], + [ + 5203.786164628464, + 5189.689488354765 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.782800700927, + "min_y": 5189.689794824887, + "max_x": 5203.784431679178, + "max_y": 5189.690407765133, + "center": [ + 5203.783616190052, + 5189.69010129501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.782800700927, + 5189.690407765133 + ], + [ + 5203.784431679178, + 5189.689794824887 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781475078283, + "min_y": 5189.690407765133, + "max_x": 5203.782800700927, + "max_y": 5189.691121004706, + "center": [ + 5203.782137889604, + 5189.690764384919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781475078283, + 5189.691121004706 + ], + [ + 5203.782800700927, + 5189.690407765133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.780251983848, + "min_y": 5189.691121004706, + "max_x": 5203.781475078283, + "max_y": 5189.692040415075, + "center": [ + 5203.780863531065, + 5189.69158070989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.780251983848, + 5189.692040415075 + ], + [ + 5203.781475078283, + 5189.691121004706 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77923283138, + "min_y": 5189.692040415075, + "max_x": 5203.780251983848, + "max_y": 5189.693060124772, + "center": [ + 5203.779742407614, + 5189.692550269923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77923283138, + 5189.693060124772 + ], + [ + 5203.780251983848, + 5189.692040415075 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778417063589, + "min_y": 5189.693060124772, + "max_x": 5203.77923283138, + "max_y": 5189.694180133798, + "center": [ + 5203.778824947484, + 5189.693620129285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778417063589, + 5189.694180133798 + ], + [ + 5203.77923283138, + 5189.693060124772 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800801362495, + "min_y": 5189.691633645673, + "max_x": 5203.8008434331, + "max_y": 5189.69167571636, + "center": [ + 5203.800822397798, + 5189.691654681017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.8008434331, + 5189.69167571636 + ], + [ + 5203.800801362495, + 5189.691633645673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803187651049, + "min_y": 5189.682348871873, + "max_x": 5203.803187651049, + "max_y": 5189.682449171153, + "center": [ + 5203.803187651049, + 5189.6823990215125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803187651049, + 5189.682348871873 + ], + [ + 5203.803187651049, + 5189.682449171153 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802575825262, + "min_y": 5189.68214270103, + "max_x": 5203.803187651049, + "max_y": 5189.682348871873, + "center": [ + 5203.802881738155, + 5189.682245786451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802575825262, + 5189.68214270103 + ], + [ + 5203.803187651049, + 5189.682348871873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801964556606, + "min_y": 5189.681836230909, + "max_x": 5203.802575825262, + "max_y": 5189.68214270103, + "center": [ + 5203.802270190934, + 5189.681989465969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801964556606, + 5189.681836230909 + ], + [ + 5203.802575825262, + 5189.68214270103 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801250759754, + "min_y": 5189.681329162127, + "max_x": 5203.801964556606, + "max_y": 5189.681836230909, + "center": [ + 5203.801607658181, + 5189.681582696518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801250759754, + 5189.681329162127 + ], + [ + 5203.801964556606, + 5189.681836230909 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800231607353, + "min_y": 5189.680716221847, + "max_x": 5203.801250759754, + "max_y": 5189.681329162127, + "center": [ + 5203.800741183553, + 5189.681022691988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800231607353, + 5189.680716221847 + ], + [ + 5203.801250759754, + 5189.681329162127 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79921245485, + "min_y": 5189.680002982357, + "max_x": 5203.800231607353, + "max_y": 5189.680716221847, + "center": [ + 5203.799722031102, + 5189.680359602102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79921245485, + 5189.680002982357 + ], + [ + 5203.800231607353, + 5189.680716221847 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798090774217, + "min_y": 5189.679189443452, + "max_x": 5203.79921245485, + "max_y": 5189.680002982357, + "center": [ + 5203.798651614534, + 5189.6795962129045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798090774217, + 5189.679189443452 + ], + [ + 5203.79921245485, + 5189.680002982357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79584852721, + "min_y": 5189.676943853266, + "max_x": 5203.796969650714, + "max_y": 5189.678063862209, + "center": [ + 5203.796409088962, + 5189.677503857737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79584852721, + 5189.676943853266 + ], + [ + 5203.796969650714, + 5189.678063862209 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794726846609, + "min_y": 5189.675617673362, + "max_x": 5203.79584852721, + "max_y": 5189.676943853266, + "center": [ + 5203.795287686909, + 5189.676280763313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794726846609, + 5189.675617673362 + ], + [ + 5203.79584852721, + 5189.676943853266 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792688541673, + "min_y": 5189.672458244974, + "max_x": 5203.79370769421, + "max_y": 5189.674090894916, + "center": [ + 5203.793198117941, + 5189.673274569945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792688541673, + 5189.672458244974 + ], + [ + 5203.79370769421, + 5189.674090894916 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79197474492, + "min_y": 5189.670725295703, + "max_x": 5203.792688541673, + "max_y": 5189.672458244974, + "center": [ + 5203.792331643296, + 5189.671591770339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79197474492, + 5189.670725295703 + ], + [ + 5203.792688541673, + 5189.672458244974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.779166123537, + "min_y": 5189.693151711341, + "max_x": 5203.792731126253, + "max_y": 5189.706716713994, + "center": [ + 5203.785948624894, + 5189.699934212667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792731126253, + 5189.706716713994 + ], + [ + 5203.779166123537, + 5189.693151711341 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778624058077, + "min_y": 5189.693895940581, + "max_x": 5203.791615063011, + "max_y": 5189.706886945466, + "center": [ + 5203.7851195605435, + 5189.700391443023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791615063011, + 5189.706886945466 + ], + [ + 5203.778624058077, + 5189.693895940581 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.779796677475, + "min_y": 5189.692495970445, + "max_x": 5203.794009436738, + "max_y": 5189.706708729844, + "center": [ + 5203.786903057106, + 5189.699602350144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794009436738, + 5189.706708729844 + ], + [ + 5203.779796677475, + 5189.692495970445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781200616337, + "min_y": 5189.691327320065, + "max_x": 5203.798142748541, + "max_y": 5189.708269452347, + "center": [ + 5203.789671682439, + 5189.699798386206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798142748541, + 5189.708269452347 + ], + [ + 5203.781200616337, + 5189.691327320065 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7804663077, + "min_y": 5189.691879306093, + "max_x": 5203.79569735939, + "max_y": 5189.707110357733, + "center": [ + 5203.788081833545, + 5189.699494831913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79569735939, + 5189.707110357733 + ], + [ + 5203.7804663077, + 5189.691879306093 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778119068214, + "min_y": 5189.694677245464, + "max_x": 5203.790596591462, + "max_y": 5189.707154768564, + "center": [ + 5203.784357829838, + 5189.700916007014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790596591462, + 5189.707154768564 + ], + [ + 5203.778119068214, + 5189.694677245464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777646668632, + "min_y": 5189.695491140479, + "max_x": 5203.789737554906, + "max_y": 5189.707582026802, + "center": [ + 5203.783692111769, + 5189.7015365836405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.789737554906, + 5189.707582026802 + ], + [ + 5203.777646668632, + 5189.695491140479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777192574004, + "min_y": 5189.696323340601, + "max_x": 5203.788999814443, + "max_y": 5189.708130581039, + "center": [ + 5203.783096194224, + 5189.702226960821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.788999814443, + 5189.708130581039 + ], + [ + 5203.777192574004, + 5189.696323340601 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776825061201, + "min_y": 5189.697242122466, + "max_x": 5203.78832690755, + "max_y": 5189.708743968793, + "center": [ + 5203.782575984375, + 5189.70299304563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.78832690755, + 5189.708743968793 + ], + [ + 5203.776825061201, + 5189.697242122466 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776499400269, + "min_y": 5189.698202756261, + "max_x": 5203.787699287046, + "max_y": 5189.709402643058, + "center": [ + 5203.782099343658, + 5189.70380269966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787699287046, + 5189.709402643058 + ], + [ + 5203.776499400269, + 5189.698202756261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776228372117, + "min_y": 5189.699218022736, + "max_x": 5203.787185783107, + "max_y": 5189.710175433811, + "center": [ + 5203.781707077612, + 5189.704696728273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787185783107, + 5189.710175433811 + ], + [ + 5203.776228372117, + 5189.699218022736 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.700348791133, + "max_x": 5203.786716532359, + "max_y": 5189.710992477631, + "center": [ + 5203.781394689, + 5189.705670634383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786716532359, + 5189.710992477631 + ], + [ + 5203.776072845641, + 5189.700348791133 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.701635085781, + "max_x": 5203.786512704264, + "max_y": 5189.712074944349, + "center": [ + 5203.781292774953, + 5189.706855015065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.712074944349 + ], + [ + 5203.776072845641, + 5189.701635085781 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.702921380479, + "max_x": 5203.786512704264, + "max_y": 5189.713361239046, + "center": [ + 5203.781292774953, + 5189.708141309762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.713361239046 + ], + [ + 5203.776072845641, + 5189.702921380479 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809405651378, + "min_y": 5189.702438110756, + "max_x": 5203.80950762235, + "max_y": 5189.702945179487, + "center": [ + 5203.809456636864, + 5189.702691645121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809405651378, + 5189.702438110756 + ], + [ + 5203.80950762235, + 5189.702945179487 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80950762235, + "min_y": 5189.702945179487, + "max_x": 5203.809609593283, + "max_y": 5189.703457820452, + "center": [ + 5203.809558607816, + 5189.7032014999695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80950762235, + 5189.702945179487 + ], + [ + 5203.809609593283, + 5189.703457820452 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809303680339, + "min_y": 5189.70182517046, + "max_x": 5203.809405651378, + "max_y": 5189.702438110756, + "center": [ + 5203.809354665858, + 5189.702131640608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809303680339, + 5189.70182517046 + ], + [ + 5203.809405651378, + 5189.702438110756 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809201709437, + "min_y": 5189.701111930936, + "max_x": 5203.809303680339, + "max_y": 5189.70182517046, + "center": [ + 5203.809252694888, + 5189.701468550698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809201709437, + 5189.701111930936 + ], + [ + 5203.809303680339, + 5189.70182517046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809099738439, + "min_y": 5189.700298391982, + "max_x": 5203.809201709437, + "max_y": 5189.701111930936, + "center": [ + 5203.809150723938, + 5189.700705161459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809099738439, + 5189.700298391982 + ], + [ + 5203.809201709437, + 5189.701111930936 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808386498848, + "min_y": 5189.698359271967, + "max_x": 5203.809099738439, + "max_y": 5189.700298391982, + "center": [ + 5203.808743118643, + 5189.6993288319745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808386498848, + 5189.698359271967 + ], + [ + 5203.809099738439, + 5189.700298391982 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807876643994, + "min_y": 5189.697545733062, + "max_x": 5203.808386498848, + "max_y": 5189.698359271967, + "center": [ + 5203.808131571421, + 5189.697952502514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807876643994, + 5189.697545733062 + ], + [ + 5203.808386498848, + 5189.698359271967 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807265375342, + "min_y": 5189.696626322645, + "max_x": 5203.807876643994, + "max_y": 5189.697545733062, + "center": [ + 5203.807571009667, + 5189.697086027853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807265375342, + 5189.696626322645 + ], + [ + 5203.807876643994, + 5189.697545733062 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806551578583, + "min_y": 5189.69591308312, + "max_x": 5203.807265375342, + "max_y": 5189.696626322645, + "center": [ + 5203.806908476962, + 5189.696269702883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806551578583, + 5189.69591308312 + ], + [ + 5203.807265375342, + 5189.696626322645 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805939752803, + "min_y": 5189.695199843496, + "max_x": 5203.806551578583, + "max_y": 5189.69591308312, + "center": [ + 5203.8062456656935, + 5189.695556463308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805939752803, + 5189.695199843496 + ], + [ + 5203.806551578583, + 5189.69591308312 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805226513245, + "min_y": 5189.69458690325, + "max_x": 5203.805939752803, + "max_y": 5189.695199843496, + "center": [ + 5203.805583133024, + 5189.694893373373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805226513245, + 5189.69458690325 + ], + [ + 5203.805939752803, + 5189.695199843496 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812333604916, + "min_y": 5189.706073776073, + "max_x": 5203.813504149748, + "max_y": 5189.706308022972, + "center": [ + 5203.812918877332, + 5189.706190899522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812333604916, + 5189.706308022972 + ], + [ + 5203.813504149748, + 5189.706073776073 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811163060282, + "min_y": 5189.706190893264, + "max_x": 5203.812333604916, + "max_y": 5189.706308022972, + "center": [ + 5203.811748332599, + 5189.706249458118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811163060282, + 5189.706190893264 + ], + [ + 5203.812333604916, + 5189.706308022972 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.810460733436, + "min_y": 5189.705722399549, + "max_x": 5203.811163060282, + "max_y": 5189.706190893264, + "center": [ + 5203.810811896859, + 5189.705956646407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810460733436, + 5189.705722399549 + ], + [ + 5203.811163060282, + 5189.706190893264 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80971156429, + "min_y": 5189.703764290575, + "max_x": 5203.810460733436, + "max_y": 5189.705722399549, + "center": [ + 5203.810086148864, + 5189.7047433450625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80971156429, + 5189.703764290575 + ], + [ + 5203.810460733436, + 5189.705722399549 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809609593283, + "min_y": 5189.703457820452, + "max_x": 5203.80971156429, + "max_y": 5189.703764290575, + "center": [ + 5203.809660578787, + 5189.703611055514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809609593283, + 5189.703457820452 + ], + [ + 5203.80971156429, + 5189.703764290575 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80095831662, + "min_y": 5189.691790599843, + "max_x": 5203.808886577472, + "max_y": 5189.699718860644, + "center": [ + 5203.804922447046, + 5189.695754730244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808886577472, + 5189.699718860644 + ], + [ + 5203.80095831662, + 5189.691790599843 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799186545282, + "min_y": 5189.691305123176, + "max_x": 5203.809236467063, + "max_y": 5189.701355045006, + "center": [ + 5203.804211506173, + 5189.696330084091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809236467063, + 5189.701355045006 + ], + [ + 5203.799186545282, + 5189.691305123176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797560165615, + "min_y": 5189.690965038188, + "max_x": 5203.809499394992, + "max_y": 5189.702904267581, + "center": [ + 5203.8035297803035, + 5189.696934652884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809499394992, + 5189.702904267581 + ], + [ + 5203.797560165615, + 5189.690965038188 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804512716454, + "min_y": 5189.693973962972, + "max_x": 5203.805226513245, + "max_y": 5189.69458690325, + "center": [ + 5203.804869614849, + 5189.694280433111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804512716454, + 5189.693973962972 + ], + [ + 5203.805226513245, + 5189.69458690325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804219555227, + "min_y": 5189.693765543701, + "max_x": 5203.807632446324, + "max_y": 5189.697178434881, + "center": [ + 5203.805926000776, + 5189.695471989291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807632446324, + 5189.697178434881 + ], + [ + 5203.804219555227, + 5189.693765543701 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804410745484, + "min_y": 5189.682755641325, + "max_x": 5203.805022571305, + "max_y": 5189.682855940605, + "center": [ + 5203.804716658395, + 5189.682805790964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804410745484, + 5189.682755641325 + ], + [ + 5203.805022571305, + 5189.682855940605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795993590796, + "min_y": 5189.69068475803, + "max_x": 5203.810107200388, + "max_y": 5189.704798367738, + "center": [ + 5203.803050395592, + 5189.697741562884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810107200388, + 5189.704798367738 + ], + [ + 5203.795993590796, + 5189.69068475803 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.700192520518, + "max_x": 5203.776072845641, + "max_y": 5189.743310081488, + "center": [ + 5203.776072845641, + 5189.721751301003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.743310081488 + ], + [ + 5203.776072845641, + 5189.700192520518 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.713211738112, + "max_x": 5203.808200884419, + "max_y": 5189.74533977689, + "center": [ + 5203.7921368650295, + 5189.7292757575015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808200884419, + 5189.74533977689 + ], + [ + 5203.776072845641, + 5189.713211738112 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.711925443365, + "max_x": 5203.809974356945, + "max_y": 5189.745826954633, + "center": [ + 5203.793023601293, + 5189.7288761989985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809974356945, + 5189.745826954633 + ], + [ + 5203.776072845641, + 5189.711925443365 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.710639148717, + "max_x": 5203.811749509336, + "max_y": 5189.74631581231, + "center": [ + 5203.793911177489, + 5189.728477480514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811749509336, + 5189.74631581231 + ], + [ + 5203.776072845641, + 5189.710639148717 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.704207675227, + "max_x": 5203.786512704264, + "max_y": 5189.714647533745, + "center": [ + 5203.781292774953, + 5189.709427604486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.714647533745 + ], + [ + 5203.776072845641, + 5189.704207675227 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.705493969926, + "max_x": 5203.786512704264, + "max_y": 5189.715933828443, + "center": [ + 5203.781292774953, + 5189.710713899184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.715933828443 + ], + [ + 5203.776072845641, + 5189.705493969926 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.709352854019, + "max_x": 5203.786512704264, + "max_y": 5189.719792712536, + "center": [ + 5203.781292774953, + 5189.714572783278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.719792712536 + ], + [ + 5203.776072845641, + 5189.709352854019 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.708066559322, + "max_x": 5203.786512704264, + "max_y": 5189.718506417839, + "center": [ + 5203.781292774953, + 5189.713286488581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.718506417839 + ], + [ + 5203.776072845641, + 5189.708066559322 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.706780264623, + "max_x": 5203.786512704264, + "max_y": 5189.717220123141, + "center": [ + 5203.781292774953, + 5189.712000193882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786512704264, + 5189.717220123141 + ], + [ + 5203.776072845641, + 5189.706780264623 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802881603268, + "min_y": 5189.713008306862, + "max_x": 5203.813115111299, + "max_y": 5189.723241814911, + "center": [ + 5203.807998357284, + 5189.718125060886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813115111299, + 5189.723241814911 + ], + [ + 5203.802881603268, + 5189.713008306862 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795950498248, + "min_y": 5189.64391751777, + "max_x": 5203.7975814765, + "max_y": 5189.645037526748, + "center": [ + 5203.796765987374, + 5189.644477522259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.7975814765, + 5189.64391751777 + ], + [ + 5203.795950498248, + 5189.645037526748 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795010451493, + "min_y": 5189.645906842861, + "max_x": 5203.803922058241, + "max_y": 5189.654818449642, + "center": [ + 5203.799466254867, + 5189.650362646252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803922058241, + 5189.654818449642 + ], + [ + 5203.795010451493, + 5189.645906842861 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793829463135, + "min_y": 5189.647298443849, + "max_x": 5203.802405555692, + "max_y": 5189.655874536324, + "center": [ + 5203.798117509414, + 5189.651586490087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802405555692, + 5189.655874536324 + ], + [ + 5203.793829463135, + 5189.647298443849 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794388416038, + "min_y": 5189.646571102109, + "max_x": 5203.803096082313, + "max_y": 5189.655278768384, + "center": [ + 5203.798742249175, + 5189.650924935247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803096082313, + 5189.655278768384 + ], + [ + 5203.794388416038, + 5189.646571102109 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791566861073, + "min_y": 5189.650442545406, + "max_x": 5203.792076715925, + "max_y": 5189.651768725227, + "center": [ + 5203.791821788499, + 5189.6511056353165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792076715925, + 5189.650442545406 + ], + [ + 5203.791566861073, + 5189.651768725227 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.653089332863, + "max_x": 5203.791260948166, + "max_y": 5189.654415512731, + "center": [ + 5203.791108270294, + 5189.653752422797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791260948166, + 5189.653089332863 + ], + [ + 5203.790955592421, + 5189.654415512731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.654415512731, + "max_x": 5203.790955592421, + "max_y": 5189.655435222428, + "center": [ + 5203.790904606918, + 5189.65492536758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.654415512731 + ], + [ + 5203.790853621416, + 5189.655435222428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791260948166, + "min_y": 5189.651768725227, + "max_x": 5203.791566861073, + "max_y": 5189.653089332863, + "center": [ + 5203.79141390462, + 5189.652429029045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791566861073, + 5189.651768725227 + ], + [ + 5203.791260948166, + 5189.653089332863 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792076715925, + "min_y": 5189.649016066257, + "max_x": 5203.792688541673, + "max_y": 5189.650442545406, + "center": [ + 5203.792382628799, + 5189.649729305831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792688541673, + 5189.649016066257 + ], + [ + 5203.792076715925, + 5189.650442545406 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792688541673, + "min_y": 5189.647589587108, + "max_x": 5203.793605723173, + "max_y": 5189.649016066257, + "center": [ + 5203.793147132423, + 5189.648302826683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793605723173, + 5189.647589587108 + ], + [ + 5203.792688541673, + 5189.649016066257 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793605723173, + "min_y": 5189.646263407287, + "max_x": 5203.794624875603, + "max_y": 5189.647589587108, + "center": [ + 5203.794115299388, + 5189.6469264971975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794624875603, + 5189.646263407287 + ], + [ + 5203.793605723173, + 5189.647589587108 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794624875603, + "min_y": 5189.645037526748, + "max_x": 5203.795950498248, + "max_y": 5189.646263407287, + "center": [ + 5203.795287686926, + 5189.645650467017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795950498248, + 5189.645037526748 + ], + [ + 5203.794624875603, + 5189.646263407287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.602040141428, + "max_x": 5203.804072896176, + "max_y": 5189.630040191794, + "center": [ + 5203.790072870908, + 5189.616040166611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804072896176, + 5189.630040191794 + ], + [ + 5203.776072845641, + 5189.602040141428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.60718532022, + "max_x": 5203.800096840241, + "max_y": 5189.631209314782, + "center": [ + 5203.788084842941, + 5189.619197317501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800096840241, + 5189.631209314782 + ], + [ + 5203.776072845641, + 5189.60718532022 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.605899025522, + "max_x": 5203.800240614675, + "max_y": 5189.630066794523, + "center": [ + 5203.788156730157, + 5189.617982910023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800240614675, + 5189.630066794523 + ], + [ + 5203.776072845641, + 5189.605899025522 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.604612730824, + "max_x": 5203.800878016344, + "max_y": 5189.62941790144, + "center": [ + 5203.788475430993, + 5189.617015316132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800878016344, + 5189.62941790144 + ], + [ + 5203.776072845641, + 5189.604612730824 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.603326436126, + "max_x": 5203.802367170893, + "max_y": 5189.629620761309, + "center": [ + 5203.789220008267, + 5189.616473598717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802367170893, + 5189.629620761309 + ], + [ + 5203.776072845641, + 5189.603326436126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.600120302356, + "max_x": 5203.776072845641, + "max_y": 5189.616784085013, + "center": [ + 5203.776072845641, + 5189.608452193685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.616784085013 + ], + [ + 5203.776072845641, + 5189.600120302356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.604105183494, + "max_x": 5203.794566812169, + "max_y": 5189.609645841787, + "center": [ + 5203.794566812169, + 5189.60687551264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794566812169, + 5189.609645841787 + ], + [ + 5203.794566812169, + 5189.604105183494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777502036015, + "min_y": 5189.599610447506, + "max_x": 5203.786522899513, + "max_y": 5189.608631311067, + "center": [ + 5203.782012467764, + 5189.604120879287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.608631311067 + ], + [ + 5203.777502036015, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776317712158, + "min_y": 5189.59971241851, + "max_x": 5203.786643705965, + "max_y": 5189.610038412319, + "center": [ + 5203.781480709062, + 5189.604875415414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786643705965, + 5189.610038412319 + ], + [ + 5203.776317712158, + 5189.59971241851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786522899513, + "min_y": 5189.60416592169, + "max_x": 5203.786522899513, + "max_y": 5189.609313120758, + "center": [ + 5203.786522899513, + 5189.606739521224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.609313120758 + ], + [ + 5203.786522899513, + 5189.60416592169 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797323403971, + "min_y": 5189.603996279155, + "max_x": 5203.801649911039, + "max_y": 5189.608322786291, + "center": [ + 5203.7994866575045, + 5189.606159532723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801649911039, + 5189.608322786291 + ], + [ + 5203.797323403971, + 5189.603996279155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795715358367, + "min_y": 5189.603674528376, + "max_x": 5203.801657604795, + "max_y": 5189.609616774642, + "center": [ + 5203.798686481581, + 5189.606645651509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801657604795, + 5189.609616774642 + ], + [ + 5203.795715358367, + 5189.603674528376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794729495656, + "min_y": 5189.603974960248, + "max_x": 5203.801775174406, + "max_y": 5189.611020638981, + "center": [ + 5203.798252335031, + 5189.607497799614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801775174406, + 5189.611020638981 + ], + [ + 5203.794729495656, + 5189.603974960248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.605098571445, + "max_x": 5203.802323525324, + "max_y": 5189.612855284663, + "center": [ + 5203.798445168746, + 5189.608976928053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802323525324, + 5189.612855284663 + ], + [ + 5203.794566812169, + 5189.605098571445 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.60638513498, + "max_x": 5203.80054071602, + "max_y": 5189.612358770029, + "center": [ + 5203.797553764094, + 5189.609371952504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80054071602, + 5189.612358770029 + ], + [ + 5203.794566812169, + 5189.60638513498 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801723889012, + "min_y": 5189.607768020453, + "max_x": 5203.801723889012, + "max_y": 5189.608583788178, + "center": [ + 5203.801723889012, + 5189.608175904315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.607768020453 + ], + [ + 5203.801723889012, + 5189.608583788178 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801658643699, + "min_y": 5189.641878098376, + "max_x": 5203.804206803546, + "max_y": 5189.642390739326, + "center": [ + 5203.802932723622, + 5189.642134418851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804206803546, + 5189.641878098376 + ], + [ + 5203.801658643699, + 5189.642390739326 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802946983349, + "min_y": 5189.61378319324, + "max_x": 5203.803252896294, + "max_y": 5189.614089663362, + "center": [ + 5203.803099939822, + 5189.613936428301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802946983349, + 5189.61378319324 + ], + [ + 5203.803252896294, + 5189.614089663362 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803252896294, + "min_y": 5189.614089663362, + "max_x": 5203.803558809234, + "max_y": 5189.614290261971, + "center": [ + 5203.803405852765, + 5189.614189962667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803252896294, + 5189.614089663362 + ], + [ + 5203.803558809234, + 5189.614290261971 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.803558809234, + "min_y": 5189.614290261971, + "max_x": 5203.804475990799, + "max_y": 5189.614702603641, + "center": [ + 5203.804017400016, + 5189.614496432806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.803558809234, + 5189.614290261971 + ], + [ + 5203.804475990799, + 5189.614702603641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.613616793709, + "max_x": 5203.793091632697, + "max_y": 5189.630635580726, + "center": [ + 5203.784582239168, + 5189.622126187218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793091632697, + 5189.630635580726 + ], + [ + 5203.776072845641, + 5189.613616793709 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.612330499011, + "max_x": 5203.794746513533, + "max_y": 5189.631004166766, + "center": [ + 5203.785409679587, + 5189.621667332888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794746513533, + 5189.631004166766 + ], + [ + 5203.776072845641, + 5189.612330499011 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.611044204314, + "max_x": 5203.796401394169, + "max_y": 5189.631372752808, + "center": [ + 5203.786237119904, + 5189.62120847856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.796401394169, + 5189.631372752808 + ], + [ + 5203.776072845641, + 5189.611044204314 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.609757909666, + "max_x": 5203.798056274945, + "max_y": 5189.63174133885, + "center": [ + 5203.7870645602925, + 5189.620749624258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.798056274945, + 5189.63174133885 + ], + [ + 5203.776072845641, + 5189.609757909666 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.608471614968, + "max_x": 5203.79971115565, + "max_y": 5189.632109924891, + "center": [ + 5203.787892000645, + 5189.62029076993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79971115565, + 5189.632109924891 + ], + [ + 5203.776072845641, + 5189.608471614968 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79035014611, + "min_y": 5189.628683139755, + "max_x": 5203.790477527053, + "max_y": 5189.630053349746, + "center": [ + 5203.790413836581, + 5189.62936824475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790477527053, + 5189.630053349746 + ], + [ + 5203.79035014611, + 5189.628683139755 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790401110506, + "min_y": 5189.629231353233, + "max_x": 5203.791436751986, + "max_y": 5189.630266994685, + "center": [ + 5203.790918931246, + 5189.629749173959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791436751986, + 5189.630266994685 + ], + [ + 5203.790401110506, + 5189.629231353233 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790477527053, + "min_y": 5189.630053349746, + "max_x": 5203.800063100718, + "max_y": 5189.632188312407, + "center": [ + 5203.795270313885, + 5189.631120831076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800063100718, + 5189.632188312407 + ], + [ + 5203.790477527053, + 5189.630053349746 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800063100718, + "min_y": 5189.63034012888, + "max_x": 5203.800126795295, + "max_y": 5189.632188312407, + "center": [ + 5203.8000949480065, + 5189.631264220643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800126795295, + 5189.63034012888 + ], + [ + 5203.800063100718, + 5189.632188312407 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800126795295, + "min_y": 5189.629575363713, + "max_x": 5203.800445251887, + "max_y": 5189.63034012888, + "center": [ + 5203.800286023591, + 5189.629957746296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800445251887, + 5189.629575363713 + ], + [ + 5203.800126795295, + 5189.63034012888 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800445251887, + "min_y": 5189.629320446133, + "max_x": 5203.801145859585, + "max_y": 5189.629575363713, + "center": [ + 5203.800795555736, + 5189.629447904923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801145859585, + 5189.629320446133 + ], + [ + 5203.800445251887, + 5189.629575363713 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7975814765, + "min_y": 5189.642998107354, + "max_x": 5203.799415839593, + "max_y": 5189.64391751777, + "center": [ + 5203.798498658047, + 5189.643457812563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799415839593, + 5189.642998107354 + ], + [ + 5203.7975814765, + 5189.64391751777 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799415839593, + "min_y": 5189.642390739326, + "max_x": 5203.801658643699, + "max_y": 5189.642998107354, + "center": [ + 5203.800537241646, + 5189.642694423341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801658643699, + 5189.642390739326 + ], + [ + 5203.799415839593, + 5189.642998107354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777145251499, + "min_y": 5189.619834378255, + "max_x": 5203.782234651878, + "max_y": 5189.624923778686, + "center": [ + 5203.779689951689, + 5189.622379078471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.782234651878, + 5189.624923778686 + ], + [ + 5203.777145251499, + 5189.619834378255 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776385040343, + "min_y": 5189.617787872419, + "max_x": 5203.784111827073, + "max_y": 5189.625514659215, + "center": [ + 5203.780248433708, + 5189.6216512658175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.784111827073, + 5189.625514659215 + ], + [ + 5203.776385040343, + 5189.617787872419 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.614903088408, + "max_x": 5203.787866177527, + "max_y": 5189.626696420205, + "center": [ + 5203.781969511583, + 5189.620799754306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787866177527, + 5189.626696420205 + ], + [ + 5203.776072845641, + 5189.614903088408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.616189383105, + "max_x": 5203.785989002268, + "max_y": 5189.626105539709, + "center": [ + 5203.781030923954, + 5189.6211474614065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.785989002268, + 5189.626105539709 + ], + [ + 5203.776072845641, + 5189.616189383105 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.616784085013, + "max_x": 5203.776779980837, + "max_y": 5189.61905770992, + "center": [ + 5203.776426413238, + 5189.617920897466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776779980837, + 5189.61905770992 + ], + [ + 5203.776072845641, + 5189.616784085013 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776779980837, + "min_y": 5189.61905770992, + "max_x": 5203.77760625066, + "max_y": 5189.620814592702, + "center": [ + 5203.777193115749, + 5189.619936151311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77760625066, + 5189.620814592702 + ], + [ + 5203.776779980837, + 5189.61905770992 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77760625066, + "min_y": 5189.620814592702, + "max_x": 5203.778948936866, + "max_y": 5189.622468147116, + "center": [ + 5203.778277593763, + 5189.621641369909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778948936866, + 5189.622468147116 + ], + [ + 5203.77760625066, + 5189.620814592702 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778948936866, + "min_y": 5189.622468147116, + "max_x": 5203.780257193226, + "max_y": 5189.62381165385, + "center": [ + 5203.779603065046, + 5189.623139900483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.780257193226, + 5189.62381165385 + ], + [ + 5203.778948936866, + 5189.622468147116 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.780257193226, + "min_y": 5189.62381165385, + "max_x": 5203.781875302723, + "max_y": 5189.624810665953, + "center": [ + 5203.781066247975, + 5189.6243111599015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781875302723, + 5189.624810665953 + ], + [ + 5203.780257193226, + 5189.62381165385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781875302723, + "min_y": 5189.624810665953, + "max_x": 5203.788407555226, + "max_y": 5189.62686683025, + "center": [ + 5203.785141428974, + 5189.625838748101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.788407555226, + 5189.62686683025 + ], + [ + 5203.781875302723, + 5189.624810665953 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.788407555226, + "min_y": 5189.62686683025, + "max_x": 5203.78933108182, + "max_y": 5189.627408539429, + "center": [ + 5203.788869318523, + 5189.62713768484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.78933108182, + 5189.627408539429 + ], + [ + 5203.788407555226, + 5189.62686683025 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78933108182, + "min_y": 5189.627408539429, + "max_x": 5203.79035014611, + "max_y": 5189.628683139755, + "center": [ + 5203.789840613965, + 5189.628045839592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79035014611, + 5189.628683139755 + ], + [ + 5203.78933108182, + 5189.627408539429 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794405136077, + "min_y": 5189.609645841787, + "max_x": 5203.794566812169, + "max_y": 5189.611829751851, + "center": [ + 5203.794485974124, + 5189.610737796818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794405136077, + 5189.611829751851 + ], + [ + 5203.794566812169, + 5189.609645841787 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793920116154, + "min_y": 5189.611829751851, + "max_x": 5203.794405136077, + "max_y": 5189.612719496242, + "center": [ + 5203.794162626116, + 5189.612274624046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793920116154, + 5189.612719496242 + ], + [ + 5203.794405136077, + 5189.611829751851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793192594133, + "min_y": 5189.612719496242, + "max_x": 5203.793920116154, + "max_y": 5189.612921713141, + "center": [ + 5203.793556355144, + 5189.6128206046915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.793192594133, + 5189.612921713141 + ], + [ + 5203.793920116154, + 5189.612719496242 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553B9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790076915798, + "min_y": 5189.612731946443, + "max_x": 5203.793192594133, + "max_y": 5189.612921713141, + "center": [ + 5203.791634754965, + 5189.6128268297925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790076915798, + 5189.612731946443 + ], + [ + 5203.793192594133, + 5189.612921713141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786522899513, + "min_y": 5189.609313120758, + "max_x": 5203.786685684119, + "max_y": 5189.610290438316, + "center": [ + 5203.786604291816, + 5189.6098017795375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786685684119, + 5189.610290438316 + ], + [ + 5203.786522899513, + 5189.609313120758 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786685684119, + "min_y": 5189.610290438316, + "max_x": 5203.786979839027, + "max_y": 5189.611027295671, + "center": [ + 5203.786832761572, + 5189.610658866994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786979839027, + 5189.611027295671 + ], + [ + 5203.786685684119, + 5189.610290438316 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.787461164106, + "min_y": 5189.611836547431, + "max_x": 5203.788057732708, + "max_y": 5189.612341649421, + "center": [ + 5203.787759448407, + 5189.612089098426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.788057732708, + 5189.612341649421 + ], + [ + 5203.787461164106, + 5189.611836547431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.788057732708, + "min_y": 5189.612341649421, + "max_x": 5203.789273831739, + "max_y": 5189.61266307344, + "center": [ + 5203.788665782224, + 5189.61250236143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.789273831739, + 5189.61266307344 + ], + [ + 5203.788057732708, + 5189.612341649421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786979839027, + "min_y": 5189.611027295671, + "max_x": 5203.787461164106, + "max_y": 5189.611836547431, + "center": [ + 5203.7872205015665, + 5189.611431921551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.787461164106, + 5189.611836547431 + ], + [ + 5203.786979839027, + 5189.611027295671 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789273831739, + "min_y": 5189.61266307344, + "max_x": 5203.790076915798, + "max_y": 5189.612731946443, + "center": [ + 5203.789675373768, + 5189.612697509941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790076915798, + 5189.612731946443 + ], + [ + 5203.789273831739, + 5189.61266307344 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801723889012, + "min_y": 5189.608583788178, + "max_x": 5203.801723889012, + "max_y": 5189.609398998722, + "center": [ + 5203.801723889012, + 5189.60899139345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.608583788178 + ], + [ + 5203.801723889012, + 5189.609398998722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801723889012, + "min_y": 5189.609398998722, + "max_x": 5203.801723889012, + "max_y": 5189.610112795493, + "center": [ + 5203.801723889012, + 5189.609755897107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.609398998722 + ], + [ + 5203.801723889012, + 5189.610112795493 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801723889012, + "min_y": 5189.610112795493, + "max_x": 5203.801825859951, + "max_y": 5189.610724621344, + "center": [ + 5203.801774874481, + 5189.610418708418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.610112795493 + ], + [ + 5203.801825859951, + 5189.610724621344 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801825859951, + "min_y": 5189.610724621344, + "max_x": 5203.801825859951, + "max_y": 5189.611233918997, + "center": [ + 5203.801825859951, + 5189.61097927017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801825859951, + 5189.610724621344 + ], + [ + 5203.801825859951, + 5189.611233918997 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801825859951, + "min_y": 5189.611233918997, + "max_x": 5203.801927830949, + "max_y": 5189.611845744798, + "center": [ + 5203.80187684545, + 5189.611539831898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801825859951, + 5189.611233918997 + ], + [ + 5203.801927830949, + 5189.611845744798 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801927830949, + "min_y": 5189.611845744798, + "max_x": 5203.802131772891, + "max_y": 5189.612253628695, + "center": [ + 5203.80202980192, + 5189.612049686746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801927830949, + 5189.611845744798 + ], + [ + 5203.802131772891, + 5189.612253628695 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802131772891, + "min_y": 5189.612253628695, + "max_x": 5203.802233743863, + "max_y": 5189.612660955342, + "center": [ + 5203.802182758377, + 5189.612457292018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802131772891, + 5189.612253628695 + ], + [ + 5203.802233743863, + 5189.612660955342 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802233743863, + "min_y": 5189.612660955342, + "max_x": 5203.802437685803, + "max_y": 5189.613069953616, + "center": [ + 5203.802335714833, + 5189.612865454479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802233743863, + 5189.612660955342 + ], + [ + 5203.802437685803, + 5189.613069953616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.802437685803, + "min_y": 5189.613069953616, + "max_x": 5203.80264107051, + "max_y": 5189.613476723117, + "center": [ + 5203.802539378156, + 5189.6132733383665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.802437685803, + 5189.613069953616 + ], + [ + 5203.80264107051, + 5189.613476723117 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80264107051, + "min_y": 5189.613476723117, + "max_x": 5203.802946983349, + "max_y": 5189.61378319324, + "center": [ + 5203.802794026929, + 5189.6136299581785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80264107051, + 5189.613476723117 + ], + [ + 5203.802946983349, + 5189.61378319324 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795486656332, + "min_y": 5189.603632179924, + "max_x": 5203.79976594449, + "max_y": 5189.604480464857, + "center": [ + 5203.797626300411, + 5189.6040563223905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.795486656332, + 5189.603632179924 + ], + [ + 5203.79976594449, + 5189.604480464857 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.782378192289, + "min_y": 5189.600627719823, + "max_x": 5203.786522899513, + "max_y": 5189.604772427006, + "center": [ + 5203.784450545902, + 5189.602700073414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.604772427006 + ], + [ + 5203.782378192289, + 5189.600627719823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.780661322013, + "min_y": 5189.600197144187, + "max_x": 5203.786522899513, + "max_y": 5189.606058721704, + "center": [ + 5203.7835921107635, + 5189.603127932945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.606058721704 + ], + [ + 5203.780661322013, + 5189.600197144187 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778946076622, + "min_y": 5189.599768193533, + "max_x": 5203.786522899513, + "max_y": 5189.607345016368, + "center": [ + 5203.782734488068, + 5189.60355660495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.607345016368 + ], + [ + 5203.778946076622, + 5189.599768193533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798992115342, + "min_y": 5189.604327068386, + "max_x": 5203.801723889012, + "max_y": 5189.607058842124, + "center": [ + 5203.800358002177, + 5189.605692955255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.607058842124 + ], + [ + 5203.798992115342, + 5189.604327068386 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79978699782, + "min_y": 5189.604506063782, + "max_x": 5203.799990939758, + "max_y": 5189.604608034752, + "center": [ + 5203.799888968789, + 5189.604557049267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79978699782, + 5189.604506063782 + ], + [ + 5203.799990939758, + 5189.604608034752 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799990939758, + "min_y": 5189.604608034752, + "max_x": 5203.800092910662, + "max_y": 5189.604710005755, + "center": [ + 5203.800041925209, + 5189.604659020253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799990939758, + 5189.604608034752 + ], + [ + 5203.800092910662, + 5189.604710005755 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800092910662, + "min_y": 5189.604710005755, + "max_x": 5203.800296852666, + "max_y": 5189.604811976709, + "center": [ + 5203.800194881664, + 5189.604760991232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800092910662, + 5189.604710005755 + ], + [ + 5203.800296852666, + 5189.604811976709 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800296852666, + "min_y": 5189.604811976709, + "max_x": 5203.800500794606, + "max_y": 5189.604913947677, + "center": [ + 5203.800398823636, + 5189.604862962193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800296852666, + 5189.604811976709 + ], + [ + 5203.800500794606, + 5189.604913947677 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800500794606, + "min_y": 5189.604913947677, + "max_x": 5203.800704736544, + "max_y": 5189.605015918631, + "center": [ + 5203.800602765575, + 5189.604964933154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800500794606, + 5189.604913947677 + ], + [ + 5203.800704736544, + 5189.605015918631 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800704736544, + "min_y": 5189.605015918631, + "max_x": 5203.800806707512, + "max_y": 5189.605219860604, + "center": [ + 5203.800755722028, + 5189.605117889618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800704736544, + 5189.605015918631 + ], + [ + 5203.800806707512, + 5189.605219860604 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.800806707512, + "min_y": 5189.605219860604, + "max_x": 5203.80101009216, + "max_y": 5189.605321831557, + "center": [ + 5203.800908399836, + 5189.605270846081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800806707512, + 5189.605219860604 + ], + [ + 5203.80101009216, + 5189.605321831557 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.80101009216, + "min_y": 5189.605321831557, + "max_x": 5203.801214034164, + "max_y": 5189.605525773562, + "center": [ + 5203.801112063162, + 5189.605423802559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80101009216, + 5189.605321831557 + ], + [ + 5203.801214034164, + 5189.605525773562 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801214034164, + "min_y": 5189.605525773562, + "max_x": 5203.801316005097, + "max_y": 5189.605831686455, + "center": [ + 5203.801265019631, + 5189.605678730008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801214034164, + 5189.605525773562 + ], + [ + 5203.801316005097, + 5189.605831686455 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801316005097, + "min_y": 5189.605831686455, + "max_x": 5203.801519947004, + "max_y": 5189.606035071132, + "center": [ + 5203.80141797605, + 5189.605933378793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801316005097, + 5189.605831686455 + ], + [ + 5203.801519947004, + 5189.606035071132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801519947004, + "min_y": 5189.606035071132, + "max_x": 5203.801621918042, + "max_y": 5189.606340984058, + "center": [ + 5203.801570932523, + 5189.606188027596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801519947004, + 5189.606035071132 + ], + [ + 5203.801621918042, + 5189.606340984058 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801621918042, + "min_y": 5189.606340984058, + "max_x": 5203.801723889012, + "max_y": 5189.606850838906, + "center": [ + 5203.801672903526, + 5189.606595911482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801621918042, + 5189.606340984058 + ], + [ + 5203.801723889012, + 5189.606850838906 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.801723889012, + "min_y": 5189.606850838906, + "max_x": 5203.801723889012, + "max_y": 5189.607768020453, + "center": [ + 5203.801723889012, + 5189.607309429679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801723889012, + 5189.606850838906 + ], + [ + 5203.801723889012, + 5189.607768020453 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794970990217, + "min_y": 5189.603632179924, + "max_x": 5203.795486656332, + "max_y": 5189.603781651288, + "center": [ + 5203.795228823275, + 5189.603706915606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794970990217, + 5189.603781651288 + ], + [ + 5203.795486656332, + 5189.603632179924 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.794566812169, + "min_y": 5189.603781651288, + "max_x": 5203.794970990217, + "max_y": 5189.604105183494, + "center": [ + 5203.794768901193, + 5189.603943417391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.794566812169, + 5189.604105183494 + ], + [ + 5203.794970990217, + 5189.603781651288 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78417622209, + "min_y": 5189.601139454856, + "max_x": 5203.786344727459, + "max_y": 5189.603307960274, + "center": [ + 5203.785260474775, + 5189.602223707565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786344727459, + 5189.603307960274 + ], + [ + 5203.78417622209, + 5189.601139454856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78417622209, + "min_y": 5189.601139454856, + "max_x": 5203.784846194047, + "max_y": 5189.60151087489, + "center": [ + 5203.784511208069, + 5189.601325164873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.784846194047, + 5189.60151087489 + ], + [ + 5203.78417622209, + 5189.601139454856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.784846194047, + "min_y": 5189.60151087489, + "max_x": 5203.785741517413, + "max_y": 5189.602194992185, + "center": [ + 5203.78529385573, + 5189.601852933538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.785741517413, + 5189.602194992185 + ], + [ + 5203.784846194047, + 5189.60151087489 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.785741517413, + "min_y": 5189.602194992185, + "max_x": 5203.786262436099, + "max_y": 5189.602911698344, + "center": [ + 5203.786001976756, + 5189.602553345265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786262436099, + 5189.602911698344 + ], + [ + 5203.785741517413, + 5189.602194992185 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.786262436099, + "min_y": 5189.602911698344, + "max_x": 5203.786522899513, + "max_y": 5189.60416592169, + "center": [ + 5203.786392667806, + 5189.603538810017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.786522899513, + 5189.60416592169 + ], + [ + 5203.786262436099, + 5189.602911698344 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77597087474, + "min_y": 5189.600120302356, + "max_x": 5203.776072845641, + "max_y": 5189.600120302356, + "center": [ + 5203.776021860191, + 5189.600120302356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.600120302356 + ], + [ + 5203.77597087474, + 5189.600120302356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77597087474, + "min_y": 5189.600018331385, + "max_x": 5203.77597087474, + "max_y": 5189.600120302356, + "center": [ + 5203.77597087474, + 5189.600069316871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77597087474, + 5189.600120302356 + ], + [ + 5203.77597087474, + 5189.600018331385 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.77597087474, + "min_y": 5189.599916360433, + "max_x": 5203.776072845641, + "max_y": 5189.600018331385, + "center": [ + 5203.776021860191, + 5189.599967345909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.77597087474, + 5189.600018331385 + ], + [ + 5203.776072845641, + 5189.599916360433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.599814389464, + "max_x": 5203.776174816681, + "max_y": 5189.599916360433, + "center": [ + 5203.776123831161, + 5189.599865374948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776072845641, + 5189.599916360433 + ], + [ + 5203.776174816681, + 5189.599814389464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776174816681, + "min_y": 5189.59971241851, + "max_x": 5203.776276787653, + "max_y": 5189.599814389464, + "center": [ + 5203.776225802167, + 5189.599763403987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776174816681, + 5189.599814389464 + ], + [ + 5203.776276787653, + 5189.59971241851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776276787653, + "min_y": 5189.59971241851, + "max_x": 5203.776378758586, + "max_y": 5189.59971241851, + "center": [ + 5203.776327773119, + 5189.59971241851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776276787653, + 5189.59971241851 + ], + [ + 5203.776378758586, + 5189.59971241851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776378758586, + "min_y": 5189.599610447506, + "max_x": 5203.776582143397, + "max_y": 5189.59971241851, + "center": [ + 5203.776480450992, + 5189.599661433008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776378758586, + 5189.59971241851 + ], + [ + 5203.776582143397, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776582143397, + "min_y": 5189.599610447506, + "max_x": 5203.776786085338, + "max_y": 5189.599610447506, + "center": [ + 5203.7766841143675, + 5189.599610447506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776582143397, + 5189.599610447506 + ], + [ + 5203.776786085338, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776786085338, + "min_y": 5189.599610447506, + "max_x": 5203.776990027245, + "max_y": 5189.599610447506, + "center": [ + 5203.776888056292, + 5189.599610447506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776786085338, + 5189.599610447506 + ], + [ + 5203.776990027245, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776990027245, + "min_y": 5189.599610447506, + "max_x": 5203.777295940183, + "max_y": 5189.599610447506, + "center": [ + 5203.777142983714, + 5189.599610447506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.776990027245, + 5189.599610447506 + ], + [ + 5203.777295940183, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777295940183, + "min_y": 5189.599610447506, + "max_x": 5203.777703823998, + "max_y": 5189.599610447506, + "center": [ + 5203.7774998820905, + 5189.599610447506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777295940183, + 5189.599610447506 + ], + [ + 5203.777703823998, + 5189.599610447506 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.777703823998, + "min_y": 5189.599610447506, + "max_x": 5203.778722976529, + "max_y": 5189.59971241851, + "center": [ + 5203.778213400264, + 5189.599661433008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.777703823998, + 5189.599610447506 + ], + [ + 5203.778722976529, + 5189.59971241851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.778722976529, + "min_y": 5189.59971241851, + "max_x": 5203.779538744288, + "max_y": 5189.599916360433, + "center": [ + 5203.779130860408, + 5189.599814389471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.778722976529, + 5189.59971241851 + ], + [ + 5203.779538744288, + 5189.599916360433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.779538744288, + "min_y": 5189.599916360433, + "max_x": 5203.78035395478, + "max_y": 5189.600120302356, + "center": [ + 5203.779946349534, + 5189.6000183313945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.779538744288, + 5189.599916360433 + ], + [ + 5203.78035395478, + 5189.600120302356 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78035395478, + "min_y": 5189.600120302356, + "max_x": 5203.781169722572, + "max_y": 5189.600324244361, + "center": [ + 5203.780761838676, + 5189.600222273359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.78035395478, + 5189.600120302356 + ], + [ + 5203.781169722572, + 5189.600324244361 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781169722572, + "min_y": 5189.600324244361, + "max_x": 5203.781780991228, + "max_y": 5189.600528186318, + "center": [ + 5203.7814753569, + 5189.60042621534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781169722572, + 5189.600324244361 + ], + [ + 5203.781780991228, + 5189.600528186318 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.781780991228, + "min_y": 5189.600528186318, + "max_x": 5203.78239281705, + "max_y": 5189.600630157286, + "center": [ + 5203.782086904139, + 5189.600579171802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.781780991228, + 5189.600528186318 + ], + [ + 5203.78239281705, + 5189.600630157286 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78239281705, + "min_y": 5189.600630157286, + "max_x": 5203.782902671895, + "max_y": 5189.600731571011, + "center": [ + 5203.782647744472, + 5189.600680864149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.78239281705, + 5189.600630157286 + ], + [ + 5203.782902671895, + 5189.600731571011 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.782902671895, + "min_y": 5189.600731571011, + "max_x": 5203.78341196948, + "max_y": 5189.600935512933, + "center": [ + 5203.783157320688, + 5189.600833541972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.782902671895, + 5189.600731571011 + ], + [ + 5203.78341196948, + 5189.600935512933 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.78341196948, + "min_y": 5189.600935512933, + "max_x": 5203.783819853394, + "max_y": 5189.601037483885, + "center": [ + 5203.783615911437, + 5189.600986498409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.78341196948, + 5189.600935512933 + ], + [ + 5203.783819853394, + 5189.601037483885 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.783819853394, + "min_y": 5189.601037483885, + "max_x": 5203.784125766233, + "max_y": 5189.601139454856, + "center": [ + 5203.783972809813, + 5189.601088469371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.783819853394, + 5189.601037483885 + ], + [ + 5203.784125766233, + 5189.601139454856 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.666652029098, + "max_x": 5203.791362919131, + "max_y": 5189.668791747823, + "center": [ + 5203.791159255776, + 5189.667721888461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.666652029098 + ], + [ + 5203.791362919131, + 5189.668791747823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.664306139579, + "max_x": 5203.790955592421, + "max_y": 5189.666652029098, + "center": [ + 5203.790904606918, + 5189.665479084339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.664306139579 + ], + [ + 5203.790955592421, + 5189.666652029098 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.661247010489, + "max_x": 5203.790853621416, + "max_y": 5189.664306139579, + "center": [ + 5203.790853621416, + 5189.6627765750345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.661247010489 + ], + [ + 5203.790853621416, + 5189.664306139579 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.660127001463, + "max_x": 5203.790853621416, + "max_y": 5189.661247010489, + "center": [ + 5203.790853621416, + 5189.660687005976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.660127001463 + ], + [ + 5203.790853621416, + 5189.661247010489 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.659207591045, + "max_x": 5203.790853621416, + "max_y": 5189.660127001463, + "center": [ + 5203.790853621416, + 5189.659667296253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.659207591045 + ], + [ + 5203.790853621416, + 5189.660127001463 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.65849435152, + "max_x": 5203.790853621416, + "max_y": 5189.659207591045, + "center": [ + 5203.790853621416, + 5189.658850971282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.65849435152 + ], + [ + 5203.790853621416, + 5189.659207591045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657987282738, + "max_x": 5203.790853621416, + "max_y": 5189.65849435152, + "center": [ + 5203.790853621416, + 5189.658240817129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657987282738 + ], + [ + 5203.790853621416, + 5189.65849435152 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657574941104, + "max_x": 5203.790853621416, + "max_y": 5189.657987282738, + "center": [ + 5203.790853621416, + 5189.6577811119205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657574941104 + ], + [ + 5203.790853621416, + 5189.657987282738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657374342494, + "max_x": 5203.790853621416, + "max_y": 5189.657574941104, + "center": [ + 5203.790853621416, + 5189.657474641799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657374342494 + ], + [ + 5203.790853621416, + 5189.657574941104 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657274043198, + "max_x": 5203.790853621416, + "max_y": 5189.657374342494, + "center": [ + 5203.790853621416, + 5189.657324192846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657274043198 + ], + [ + 5203.790853621416, + 5189.657374342494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657274043198, + "max_x": 5203.790853621416, + "max_y": 5189.657374342494, + "center": [ + 5203.790853621416, + 5189.657324192846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657374342494 + ], + [ + 5203.790853621416, + 5189.657274043198 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657374342494, + "max_x": 5203.790853621416, + "max_y": 5189.657474641823, + "center": [ + 5203.790853621416, + 5189.6574244921585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657474641823 + ], + [ + 5203.790853621416, + 5189.657374342494 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657474641823, + "max_x": 5203.790853621416, + "max_y": 5189.657574941104, + "center": [ + 5203.790853621416, + 5189.657524791463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657574941104 + ], + [ + 5203.790853621416, + 5189.657474641823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.657574941104, + "max_x": 5203.790853621416, + "max_y": 5189.657680812615, + "center": [ + 5203.790853621416, + 5189.657627876859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.657680812615 + ], + [ + 5203.790853621416, + 5189.657574941104 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.657067872371, + "max_x": 5203.790853621416, + "max_y": 5189.657680812615, + "center": [ + 5203.790802635949, + 5189.657374342492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.657067872371 + ], + [ + 5203.790853621416, + 5189.657680812615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.656354632797, + "max_x": 5203.790751650482, + "max_y": 5189.657067872371, + "center": [ + 5203.790751650482, + 5189.6567112525845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790751650482, + 5189.656354632797 + ], + [ + 5203.790751650482, + 5189.657067872371 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792007756195, + "min_y": 5189.650621915721, + "max_x": 5203.800336583444, + "max_y": 5189.65895074297, + "center": [ + 5203.796172169819, + 5189.654786329345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800336583444, + 5189.65895074297 + ], + [ + 5203.792007756195, + 5189.650621915721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792388275561, + "min_y": 5189.649716140319, + "max_x": 5203.800605676752, + "max_y": 5189.657933541542, + "center": [ + 5203.796496976156, + 5189.653824840931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800605676752, + 5189.657933541542 + ], + [ + 5203.792388275561, + 5189.649716140319 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.7928004488, + "min_y": 5189.648842018797, + "max_x": 5203.80113593384, + "max_y": 5189.657177503903, + "center": [ + 5203.79696819132, + 5189.65300976135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80113593384, + 5189.657177503903 + ], + [ + 5203.7928004488, + 5189.648842018797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793303834627, + "min_y": 5189.648059110026, + "max_x": 5203.801770744702, + "max_y": 5189.65652602013, + "center": [ + 5203.797537289664, + 5189.652292565078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.801770744702, + 5189.65652602013 + ], + [ + 5203.793303834627, + 5189.648059110026 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791381625791, + "min_y": 5189.652568374629, + "max_x": 5203.799934128456, + "max_y": 5189.661120877275, + "center": [ + 5203.795657877123, + 5189.656844625952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799934128456, + 5189.661120877275 + ], + [ + 5203.791381625791, + 5189.652568374629 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791650560664, + "min_y": 5189.651551014788, + "max_x": 5203.80006749021, + "max_y": 5189.659967944447, + "center": [ + 5203.795859025437, + 5189.655759479618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.80006749021, + 5189.659967944447 + ], + [ + 5203.791650560664, + 5189.651551014788 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790807294055, + "min_y": 5189.655852927138, + "max_x": 5203.800610746819, + "max_y": 5189.665656379852, + "center": [ + 5203.795709020437, + 5189.660754653495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800610746819, + 5189.665656379852 + ], + [ + 5203.790807294055, + 5189.655852927138 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790928372553, + "min_y": 5189.654687710916, + "max_x": 5203.800009190307, + "max_y": 5189.66376852856, + "center": [ + 5203.79546878143, + 5189.659228119737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.800009190307, + 5189.66376852856 + ], + [ + 5203.790928372553, + 5189.654687710916 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791140294704, + "min_y": 5189.653613338288, + "max_x": 5203.799971659317, + "max_y": 5189.6624447029, + "center": [ + 5203.795555977011, + 5189.658029020594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.799971659317, + 5189.6624447029 + ], + [ + 5203.791140294704, + 5189.653613338288 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790751650482, + "min_y": 5189.655435222428, + "max_x": 5203.790853621416, + "max_y": 5189.656354632797, + "center": [ + 5203.790802635949, + 5189.655894927613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.655435222428 + ], + [ + 5203.790751650482, + 5189.656354632797 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792484599771, + "min_y": 5189.500870692837, + "max_x": 5203.792688541673, + "max_y": 5189.501176605729, + "center": [ + 5203.792586570722, + 5189.5010236492835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792484599771, + 5189.501176605729 + ], + [ + 5203.792688541673, + 5189.500870692837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792280657866, + "min_y": 5189.501176605729, + "max_x": 5203.792484599771, + "max_y": 5189.501380547685, + "center": [ + 5203.792382628819, + 5189.501278576707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792280657866, + 5189.501380547685 + ], + [ + 5203.792484599771, + 5189.501176605729 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.792076715925, + "min_y": 5189.501380547685, + "max_x": 5203.792280657866, + "max_y": 5189.501584489608, + "center": [ + 5203.792178686896, + 5189.501482518646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.792076715925, + 5189.501584489608 + ], + [ + 5203.792280657866, + 5189.501380547685 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791872773985, + "min_y": 5189.501584489608, + "max_x": 5203.792076715925, + "max_y": 5189.501584489608, + "center": [ + 5203.791974744955, + 5189.501584489608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791872773985, + 5189.501584489608 + ], + [ + 5203.792076715925, + 5189.501584489608 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79166883198, + "min_y": 5189.501584489608, + "max_x": 5203.791872773985, + "max_y": 5189.501584489608, + "center": [ + 5203.791770802983, + 5189.501584489608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79166883198, + 5189.501584489608 + ], + [ + 5203.791872773985, + 5189.501584489608 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791464890072, + "min_y": 5189.501482518656, + "max_x": 5203.79166883198, + "max_y": 5189.501584489608, + "center": [ + 5203.791566861026, + 5189.501533504132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791464890072, + 5189.501482518656 + ], + [ + 5203.79166883198, + 5189.501584489608 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791362919131, + "min_y": 5189.501278576734, + "max_x": 5203.791464890072, + "max_y": 5189.501482518656, + "center": [ + 5203.7914139046015, + 5189.501380547696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791362919131, + 5189.501278576734 + ], + [ + 5203.791464890072, + 5189.501482518656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553BFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791159534361, + "min_y": 5189.501176605729, + "max_x": 5203.791362919131, + "max_y": 5189.501278576734, + "center": [ + 5203.791261226746, + 5189.501227591231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791159534361, + 5189.501176605729 + ], + [ + 5203.791362919131, + 5189.501278576734 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791057563323, + "min_y": 5189.500870692837, + "max_x": 5203.791159534361, + "max_y": 5189.501176605729, + "center": [ + 5203.791108548842, + 5189.5010236492835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791057563323, + 5189.500870692837 + ], + [ + 5203.791159534361, + 5189.501176605729 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790955592421, + "min_y": 5189.500666750881, + "max_x": 5203.791057563323, + "max_y": 5189.500870692837, + "center": [ + 5203.791006577872, + 5189.500768721859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790955592421, + 5189.500666750881 + ], + [ + 5203.791057563323, + 5189.500870692837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.500463366238, + "max_x": 5203.790955592421, + "max_y": 5189.500666750881, + "center": [ + 5203.790904606918, + 5189.500565058559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.790853621416, + 5189.500463366238 + ], + [ + 5203.790955592421, + 5189.500666750881 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806041723736, + "min_y": 5189.641878098376, + "max_x": 5203.807061433436, + "max_y": 5189.641978397656, + "center": [ + 5203.806551578586, + 5189.6419282480165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807061433436, + 5189.641978397656 + ], + [ + 5203.806041723736, + 5189.641878098376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807061433436, + "min_y": 5189.641978397656, + "max_x": 5203.807978615031, + "max_y": 5189.64208426917, + "center": [ + 5203.807520024233, + 5189.642031333413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807978615031, + 5189.64208426917 + ], + [ + 5203.807061433436, + 5189.641978397656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.807978615031, + "min_y": 5189.64208426917, + "max_x": 5203.808896353692, + "max_y": 5189.642284867779, + "center": [ + 5203.808437484362, + 5189.6421845684745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808896353692, + 5189.642284867779 + ], + [ + 5203.807978615031, + 5189.64208426917 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808896353692, + "min_y": 5189.642284867779, + "max_x": 5203.809813535192, + "max_y": 5189.642491038622, + "center": [ + 5203.809354944442, + 5189.642387953201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809813535192, + 5189.642491038622 + ], + [ + 5203.808896353692, + 5189.642284867779 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809813535192, + "min_y": 5189.642491038622, + "max_x": 5203.81073071669, + "max_y": 5189.642697209415, + "center": [ + 5203.810272125941, + 5189.642594124019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81073071669, + 5189.642697209415 + ], + [ + 5203.809813535192, + 5189.642491038622 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.81073071669, + "min_y": 5189.642697209415, + "max_x": 5203.811546484479, + "max_y": 5189.642998107354, + "center": [ + 5203.811138600584, + 5189.642847658384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811546484479, + 5189.642998107354 + ], + [ + 5203.81073071669, + 5189.642697209415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.811546484479, + "min_y": 5189.642998107354, + "max_x": 5203.812260281233, + "max_y": 5189.643204278196, + "center": [ + 5203.811903382855, + 5189.643101192775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812260281233, + 5189.643204278196 + ], + [ + 5203.811546484479, + 5189.642998107354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.812260281233, + "min_y": 5189.643204278196, + "max_x": 5203.812973520924, + "max_y": 5189.643510748318, + "center": [ + 5203.812616901078, + 5189.643357513257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812973520924, + 5189.643510748318 + ], + [ + 5203.812260281233, + 5189.643204278196 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.805189787589, + "min_y": 5189.615003501547, + "max_x": 5203.806514852895, + "max_y": 5189.615415843182, + "center": [ + 5203.805852320242, + 5189.6152096723645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805189787589, + 5189.615003501547 + ], + [ + 5203.806514852895, + 5189.615415843182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.806514852895, + "min_y": 5189.615415843182, + "max_x": 5203.808692411786, + "max_y": 5189.616021087138, + "center": [ + 5203.80760363234, + 5189.61571846516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806514852895, + 5189.615415843182 + ], + [ + 5203.808692411786, + 5189.616021087138 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.808692411786, + "min_y": 5189.616021087138, + "max_x": 5203.811138600634, + "max_y": 5189.616634027382, + "center": [ + 5203.80991550621, + 5189.61632755726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808692411786, + 5189.616021087138 + ], + [ + 5203.811138600634, + 5189.616634027382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.809405651378, + "min_y": 5189.500870692837, + "max_x": 5203.811954368394, + "max_y": 5189.501482518656, + "center": [ + 5203.810680009887, + 5189.501176605747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809405651378, + 5189.500870692837 + ], + [ + 5203.811954368394, + 5189.501482518656 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.799733468081, + "min_y": 5189.642912091217, + "max_x": 5203.81037164314, + "max_y": 5189.653550266257, + "center": [ + 5203.80505255561, + 5189.648231178737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.81037164314, + 5189.653550266257 + ], + [ + 5203.799733468081, + 5189.642912091217 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.798827882552, + "min_y": 5189.643292800333, + "max_x": 5203.809077374902, + "max_y": 5189.653542292736, + "center": [ + 5203.803952628727, + 5189.648417546535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809077374902, + 5189.653542292736 + ], + [ + 5203.798827882552, + 5189.643292800333 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797971046777, + "min_y": 5189.643722259289, + "max_x": 5203.807925485833, + "max_y": 5189.653676698428, + "center": [ + 5203.802948266305, + 5189.648699478858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807925485833, + 5189.653676698428 + ], + [ + 5203.797971046777, + 5189.643722259289 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.795678740444, + "min_y": 5189.645288837066, + "max_x": 5203.804748034363, + "max_y": 5189.654358130932, + "center": [ + 5203.800213387403, + 5189.649823483999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804748034363, + 5189.654358130932 + ], + [ + 5203.795678740444, + 5189.645288837066 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.796402992503, + "min_y": 5189.644726794462, + "max_x": 5203.805745698423, + "max_y": 5189.654069500332, + "center": [ + 5203.801074345463, + 5189.649398147398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805745698423, + 5189.654069500332 + ], + [ + 5203.796402992503, + 5189.644726794462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.797165598254, + "min_y": 5189.644203105533, + "max_x": 5203.806817498659, + "max_y": 5189.653855005797, + "center": [ + 5203.8019915484565, + 5189.649029055665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806817498659, + 5189.653855005797 + ], + [ + 5203.797165598254, + 5189.644203105533 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.776072845641, + "min_y": 5189.600753846697, + "max_x": 5203.805778621329, + "max_y": 5189.630459622327, + "center": [ + 5203.790925733485, + 5189.615606734513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.805778621329, + 5189.630459622327 + ], + [ + 5203.776072845641, + 5189.600753846697 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.789266403885, + "min_y": 5189.612661110203, + "max_x": 5203.807484346473, + "max_y": 5189.630879052827, + "center": [ + 5203.79837537518, + 5189.621770081515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.807484346473, + 5189.630879052827 + ], + [ + 5203.789266403885, + 5189.612661110203 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790658987151, + "min_y": 5189.612767398722, + "max_x": 5203.809190071617, + "max_y": 5189.631298483277, + "center": [ + 5203.799924529384, + 5189.622032940999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.809190071617, + 5189.631298483277 + ], + [ + 5203.790658987151, + 5189.612767398722 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.79198523637, + "min_y": 5189.612807738377, + "max_x": 5203.810895696077, + "max_y": 5189.631717888978, + "center": [ + 5203.8014404662235, + 5189.6222628136775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810895696077, + 5189.631717888978 + ], + [ + 5203.79198523637, + 5189.612807738377 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.793343564139, + "min_y": 5189.612879750588, + "max_x": 5203.812601428901, + "max_y": 5189.632137321313, + "center": [ + 5203.80297249652, + 5189.622508535951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.812601428901, + 5189.632137321313 + ], + [ + 5203.793343564139, + 5189.612879750588 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804206803546, + "min_y": 5189.641878098376, + "max_x": 5203.806041723736, + "max_y": 5189.641878098376, + "center": [ + 5203.805124263641, + 5189.641878098376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806041723736, + 5189.641878098376 + ], + [ + 5203.804206803546, + 5189.641878098376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.804475990799, + "min_y": 5189.614702603641, + "max_x": 5203.805189787589, + "max_y": 5189.615003501547, + "center": [ + 5203.804832889195, + 5189.614853052593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804475990799, + 5189.614702603641 + ], + [ + 5203.805189787589, + 5189.615003501547 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791362919131, + "min_y": 5189.668791747823, + "max_x": 5203.79197474492, + "max_y": 5189.670725295703, + "center": [ + 5203.791668832026, + 5189.669758521763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.791362919131, + 5189.668791747823 + ], + [ + 5203.79197474492, + 5189.670725295703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791584996152, + "min_y": 5189.669493576161, + "max_x": 5203.804932613419, + "max_y": 5189.682841193382, + "center": [ + 5203.798258804785, + 5189.676167384771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.804932613419, + 5189.682841193382 + ], + [ + 5203.791584996152, + 5189.669493576161 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.791173281446, + "min_y": 5189.667795566744, + "max_x": 5203.806692274676, + "max_y": 5189.683314559973, + "center": [ + 5203.7989327780615, + 5189.675555063359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.806692274676, + 5189.683314559973 + ], + [ + 5203.791173281446, + 5189.667795566744 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790939212541, + "min_y": 5189.666275203171, + "max_x": 5203.808415000481, + "max_y": 5189.683750991063, + "center": [ + 5203.799677106511, + 5189.675013097117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.808415000481, + 5189.683750991063 + ], + [ + 5203.790939212541, + 5189.666275203171 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790880759183, + "min_y": 5189.664930455049, + "max_x": 5203.810137810993, + "max_y": 5189.684187506876, + "center": [ + 5203.800509285088, + 5189.6745589809625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.810137810993, + 5189.684187506876 + ], + [ + 5203.790880759183, + 5189.664930455049 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.663617022586, + "max_x": 5203.811867876508, + "max_y": 5189.684631277678, + "center": [ + 5203.801360748962, + 5189.674124150131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.811867876508, + 5189.684631277678 + ], + [ + 5203.790853621416, + 5189.663617022586 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.790853621416, + "min_y": 5189.662330727887, + "max_x": 5203.813548706932, + "max_y": 5189.685025813449, + "center": [ + 5203.802201164174, + 5189.6736782706685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.813548706932, + 5189.685025813449 + ], + [ + 5203.790853621416, + 5189.662330727887 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.448216419392, + "min_y": 5189.73370110184, + "max_x": 5203.448216419392, + "max_y": 5189.768609516541, + "center": [ + 5203.448216419392, + 5189.75115530919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.448216419392, + 5189.768609516541 + ], + [ + 5203.448216419392, + 5189.73370110184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.527004097622, + "min_y": 5189.755141100909, + "max_x": 5203.527004097622, + "max_y": 5189.768609516541, + "center": [ + 5203.527004097622, + 5189.7618753087245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.527004097622, + 5189.768609516541 + ], + [ + 5203.527004097622, + 5189.755141100909 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.448216419392, + "min_y": 5189.768609516541, + "max_x": 5203.527004097622, + "max_y": 5189.768609516541, + "center": [ + 5203.487610258508, + 5189.768609516541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.527004097622, + 5189.768609516541 + ], + [ + 5203.448216419392, + 5189.768609516541 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.448216419392, + "min_y": 5189.73370110184, + "max_x": 5203.502608282042, + "max_y": 5189.73370110184, + "center": [ + 5203.475412350717, + 5189.73370110184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.502608282042, + 5189.73370110184 + ], + [ + 5203.448216419392, + 5189.73370110184 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.363786191186, + "min_y": 5189.5765537494535, + "max_x": 5203.433917696529, + "max_y": 5189.6466852547965, + "center": [ + 5203.398851943857, + 5189.611619502125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.398851943857, + 5189.611619502125 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.562065373612, + "min_y": 5189.834704583157, + "max_x": 5203.688292996568, + "max_y": 5189.834704583157, + "center": [ + 5203.62517918509, + 5189.834704583157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.562065373612, + 5189.834704583157 + ], + [ + 5203.688292996568, + 5189.834704583157 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.6561837584895, + "min_y": 5189.83470458323, + "max_x": 5203.720402234646, + "max_y": 5189.898923059386, + "center": [ + 5203.688292996568, + 5189.866813821308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.688292996568, + 5189.866813821308 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.639743857215, + "min_y": 5189.791133686444, + "max_x": 5203.993477879607, + "max_y": 5190.144867708836, + "center": [ + 5203.816610868411, + 5189.96800069764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.816610868411, + 5189.96800069764 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.720402234671, + "min_y": 5189.870045649675, + "max_x": 5203.768118430656, + "max_y": 5189.870045649675, + "center": [ + 5203.7442603326635, + 5189.870045649675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.768118430656, + 5189.870045649675 + ], + [ + 5203.720402234671, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.812083264246, + "max_x": 5203.753996889518, + "max_y": 5189.851816419221, + "center": [ + 5203.753996889518, + 5189.831949841733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.753996889518, + 5189.851816419221 + ], + [ + 5203.753996889518, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.851816419221, + "max_x": 5203.79339072868, + "max_y": 5189.902669181424, + "center": [ + 5203.773693809098, + 5189.877242800323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.753996889518, + 5189.851816419221 + ], + [ + 5203.79339072868, + 5189.902669181424 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.791874745303, + "max_x": 5203.79302573473, + "max_y": 5189.851816419221, + "center": [ + 5203.773511312123, + 5189.8218455822625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.79302573473, + 5189.791874745303 + ], + [ + 5203.753996889518, + 5189.851816419221 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.753996889518, + "min_y": 5189.791874745303, + "max_x": 5203.768295144851, + "max_y": 5189.812083264246, + "center": [ + 5203.761146017185, + 5189.801979004775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.768295144851, + 5189.791874745303 + ], + [ + 5203.753996889518, + 5189.812083264246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.720402234671, + "min_y": 5189.866813821308, + "max_x": 5203.720402234671, + "max_y": 5189.870045649675, + "center": [ + 5203.720402234671, + 5189.868429735492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.720402234671, + 5189.866813821308 + ], + [ + 5203.720402234671, + 5189.870045649675 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.527004097622, + "min_y": 5189.829111759219, + "max_x": 5203.566397936787, + "max_y": 5189.879964521423, + "center": [ + 5203.546701017205, + 5189.854538140321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.527004097622, + 5189.879964521423 + ], + [ + 5203.566397936787, + 5189.829111759219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.566397936787, + "min_y": 5189.789378604245, + "max_x": 5203.566397936787, + "max_y": 5189.829111759219, + "center": [ + 5203.566397936787, + 5189.809245181732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.566397936787, + 5189.829111759219 + ], + [ + 5203.566397936787, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.448216419392, + "min_y": 5189.879964521423, + "max_x": 5203.527004097622, + "max_y": 5189.879964521423, + "center": [ + 5203.487610258508, + 5189.879964521423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.448216419392, + 5189.879964521423 + ], + [ + 5203.527004097622, + 5189.879964521423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.128789523043, + "min_y": 5189.826741446296, + "max_x": 5203.128789523043, + "max_y": 5190.484980826915, + "center": [ + 5203.128789523043, + 5190.155861136605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.128789523043, + 5189.826741446296 + ], + [ + 5203.128789523043, + 5190.484980826915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.383034920266, + "min_y": 5189.749290218455, + "max_x": 5203.443268536213, + "max_y": 5189.809523834401, + "center": [ + 5203.413151728239, + 5189.779407026428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.413151728239, + 5189.779407026428 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.186586151569, + "min_y": 5188.987041602521, + "max_x": 5204.069590198727, + "max_y": 5189.870045649679, + "center": [ + 5203.628088175148, + 5189.4285436261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.628088175148, + 5189.4285436261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.112734903974, + "min_y": 5189.654957022578, + "max_x": 5203.112734903974, + "max_y": 5189.802659517713, + "center": [ + 5203.112734903974, + 5189.728808270145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.112734903974, + 5189.802659517713 + ], + [ + 5203.112734903974, + 5189.654957022578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.19026753067, + "min_y": 5189.517350321647, + "max_x": 5203.222610172113, + "max_y": 5189.58873933921, + "center": [ + 5203.206438851392, + 5189.553044830429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.19026753067, + 5189.517350321647 + ], + [ + 5203.222610172113, + 5189.58873933921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.161052076181, + "min_y": 5189.60839862737, + "max_x": 5203.222610172113, + "max_y": 5189.60839862737, + "center": [ + 5203.191831124146, + 5189.60839862737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.222610172113, + 5189.60839862737 + ], + [ + 5203.161052076181, + 5189.60839862737 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.222610172113, + "min_y": 5189.556654501117, + "max_x": 5203.262004011276, + "max_y": 5189.617156743812, + "center": [ + 5203.242307091694, + 5189.586905622465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.262004011276, + 5189.556654501117 + ], + [ + 5203.222610172113, + 5189.617156743812 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.222610172113, + "min_y": 5189.521746086382, + "max_x": 5203.262004011276, + "max_y": 5189.577423588874, + "center": [ + 5203.242307091694, + 5189.549584837629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.262004011276, + 5189.521746086382 + ], + [ + 5203.222610172113, + 5189.577423588874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.222610172113, + "min_y": 5189.617156743812, + "max_x": 5203.262004011276, + "max_y": 5189.66800950605, + "center": [ + 5203.242307091694, + 5189.642583124931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.222610172113, + 5189.617156743812 + ], + [ + 5203.262004011276, + 5189.66800950605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.262004011276, + "min_y": 5189.521746086382, + "max_x": 5203.340791689603, + "max_y": 5189.521746086382, + "center": [ + 5203.30139785044, + 5189.521746086382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.340791689603, + 5189.521746086382 + ], + [ + 5203.262004011276, + 5189.521746086382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.262004011276, + "min_y": 5189.556654501117, + "max_x": 5203.340791689603, + "max_y": 5189.556654501117, + "center": [ + 5203.30139785044, + 5189.556654501117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.340791689603, + 5189.556654501117 + ], + [ + 5203.262004011276, + 5189.556654501117 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.262004011276, + "min_y": 5189.66800950605, + "max_x": 5203.340791689603, + "max_y": 5189.66800950605, + "center": [ + 5203.30139785044, + 5189.66800950605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.262004011276, + 5189.66800950605 + ], + [ + 5203.340791689603, + 5189.66800950605 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.340791689603, + "min_y": 5189.521746086382, + "max_x": 5203.340791689603, + "max_y": 5189.556654501117, + "center": [ + 5203.340791689603, + 5189.53920029375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.340791689603, + 5189.556654501117 + ], + [ + 5203.340791689603, + 5189.521746086382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.262004011276, + "min_y": 5189.521746086382, + "max_x": 5203.262004011276, + "max_y": 5189.556654501117, + "center": [ + 5203.262004011276, + 5189.53920029375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.262004011276, + 5189.556654501117 + ], + [ + 5203.262004011276, + 5189.521746086382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.253620294997, + "min_y": 5189.657187125066, + "max_x": 5203.261509511498, + "max_y": 5189.674600774179, + "center": [ + 5203.257564903248, + 5189.665893949623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.253620294997, + 5189.657187125066 + ], + [ + 5203.261509511498, + 5189.674600774179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.222610172113, + "min_y": 5189.577423588874, + "max_x": 5203.222610172113, + "max_y": 5189.617156743812, + "center": [ + 5203.222610172113, + 5189.597290166343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.222610172113, + 5189.617156743812 + ], + [ + 5203.222610172113, + 5189.577423588874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C59", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.089646200947, + "min_y": 5189.46597791301, + "max_x": 5203.4184570856205, + "max_y": 5189.794788797683, + "center": [ + 5203.254051643284, + 5189.630383355347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.254051643284, + 5189.630383355347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.243306611687, + "min_y": 5189.508813333608, + "max_x": 5203.408599822426, + "max_y": 5189.674106544347, + "center": [ + 5203.325953217057, + 5189.591459938977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.325953217057, + 5189.591459938977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.380185528768, + "min_y": 5189.577423588874, + "max_x": 5203.380185528768, + "max_y": 5189.617156743812, + "center": [ + 5203.380185528768, + 5189.597290166343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.380185528768, + 5189.617156743812 + ], + [ + 5203.380185528768, + 5189.577423588874 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.163789337233, + "min_y": 5189.410830273313, + "max_x": 5203.432672025953, + "max_y": 5189.679712962034, + "center": [ + 5203.298230681593, + 5189.545271617673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.298230681593, + 5189.545271617673 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.340791689603, + "min_y": 5189.556654501117, + "max_x": 5203.380185528768, + "max_y": 5189.617156743812, + "center": [ + 5203.360488609185, + 5189.586905622465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.380185528768, + 5189.617156743812 + ], + [ + 5203.340791689603, + 5189.556654501117 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.340791689603, + "min_y": 5189.521746086382, + "max_x": 5203.380185528768, + "max_y": 5189.577423588874, + "center": [ + 5203.360488609185, + 5189.549584837629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.380185528768, + 5189.577423588874 + ], + [ + 5203.340791689603, + 5189.521746086382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.340791689603, + "min_y": 5189.617156743812, + "max_x": 5203.380185528768, + "max_y": 5189.66800950605, + "center": [ + 5203.360488609185, + 5189.642583124931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.340791689603, + 5189.66800950605 + ], + [ + 5203.380185528768, + 5189.617156743812 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C62", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.120915528582, + "min_y": 5189.608398627358, + "max_x": 5203.201188623779, + "max_y": 5189.688671722554, + "center": [ + 5203.161052076181, + 5189.648535174956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.161052076181, + 5189.648535174956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.120762213479, + "min_y": 5189.648535174956, + "max_x": 5203.120762213479, + "max_y": 5189.654957022578, + "center": [ + 5203.120762213479, + 5189.651746098767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.120762213479, + 5189.648535174956 + ], + [ + 5203.120762213479, + 5189.654957022578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.408822580328, + "min_y": 5189.789378604245, + "max_x": 5203.408822580328, + "max_y": 5189.829111759219, + "center": [ + 5203.408822580328, + 5189.809245181732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.408822580328, + 5189.829111759219 + ], + [ + 5203.408822580328, + 5189.789378604245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.144844142009, + "min_y": 5189.89095992245, + "max_x": 5203.144844142009, + "max_y": 5190.035451493791, + "center": [ + 5203.144844142009, + 5189.96320570812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.144844142009, + 5189.89095992245 + ], + [ + 5203.144844142009, + 5190.035451493791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C66", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.120762213447, + "min_y": 5189.87891895817, + "max_x": 5203.144844142006, + "max_y": 5189.903000886729, + "center": [ + 5203.132803177727, + 5189.89095992245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.132803177727, + 5189.89095992245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.128789523043, + "min_y": 5189.878918958182, + "max_x": 5203.132803177727, + "max_y": 5189.878918958182, + "center": [ + 5203.130796350385, + 5189.878918958182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.128789523043, + 5189.878918958182 + ], + [ + 5203.132803177727, + 5189.878918958182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C68", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.120762213447, + "min_y": 5190.023410529511, + "max_x": 5203.144844142006, + "max_y": 5190.04749245807, + "center": [ + 5203.132803177727, + 5190.035451493791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.132803177727, + 5190.035451493791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.128789523043, + "min_y": 5190.047492458141, + "max_x": 5203.132803177727, + "max_y": 5190.047492458141, + "center": [ + 5203.130796350385, + 5190.047492458141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.128789523043, + 5190.047492458141 + ], + [ + 5203.132803177727, + 5190.047492458141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.080625665947, + "min_y": 5189.802659517737, + "max_x": 5203.128789523065, + "max_y": 5189.850823374855, + "center": [ + 5203.104707594506, + 5189.826741446296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.104707594506, + 5189.826741446296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.085652320901, + "min_y": 5189.963205708137, + "max_x": 5203.182688985567, + "max_y": 5189.963205708137, + "center": [ + 5203.134170653235, + 5189.963205708137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.085652320901, + 5189.963205708137 + ], + [ + 5203.182688985567, + 5189.963205708137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.024991951347, + "min_y": 5190.50616400484, + "max_x": 5203.120204761463, + "max_y": 5190.601376814956, + "center": [ + 5203.072598356405, + 5190.553770409898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.072598356405, + 5190.553770409898 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.095771202907, + "min_y": 5190.569267576837, + "max_x": 5203.095771202907, + "max_y": 5190.595356332845, + "center": [ + 5203.095771202907, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.095771202907, + 5190.569267576837 + ], + [ + 5203.095771202907, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.040137101382, + "min_y": 5190.565253922085, + "max_x": 5203.040137101382, + "max_y": 5190.569267576837, + "center": [ + 5203.040137101382, + 5190.567260749461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.040137101382, + 5190.565253922085 + ], + [ + 5203.040137101382, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.049425509811, + "min_y": 5190.569267576837, + "max_x": 5203.049425509811, + "max_y": 5190.595356332845, + "center": [ + 5203.049425509811, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.049425509811, + 5190.569267576837 + ], + [ + 5203.049425509811, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.026252663245, + "min_y": 5190.569267576837, + "max_x": 5203.026252663245, + "max_y": 5190.595356332845, + "center": [ + 5203.026252663245, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.026252663245, + 5190.569267576837 + ], + [ + 5203.026252663245, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C71", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.023679804503, + "min_y": 5190.5730582507995, + "max_x": 5203.051998368649, + "max_y": 5190.601376814945, + "center": [ + 5203.037839086576, + 5190.587217532872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.037839086576, + 5190.587217532872 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.156885106363, + "min_y": 5190.484980826915, + "max_x": 5203.156885106363, + "max_y": 5190.533144684033, + "center": [ + 5203.156885106363, + 5190.509062755474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.156885106363, + 5190.533144684033 + ], + [ + 5203.156885106363, + 5190.484980826915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C73", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.092666630078, + "min_y": 5190.501035445955, + "max_x": 5203.156885106235, + "max_y": 5190.565253922111, + "center": [ + 5203.124775868157, + 5190.533144684033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.124775868157, + 5190.533144684033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.105059611231, + "min_y": 5190.565253922085, + "max_x": 5203.105059611231, + "max_y": 5190.569267576837, + "center": [ + 5203.105059611231, + 5190.567260749461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.105059611231, + 5190.565253922085 + ], + [ + 5203.105059611231, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.118944049467, + "min_y": 5190.569267576837, + "max_x": 5203.118944049467, + "max_y": 5190.595356332845, + "center": [ + 5203.118944049467, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.118944049467, + 5190.569267576837 + ], + [ + 5203.118944049467, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.040137101382, + "min_y": 5190.565253922085, + "max_x": 5203.105059611231, + "max_y": 5190.565253922085, + "center": [ + 5203.072598356306, + 5190.565253922085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.105059611231, + 5190.565253922085 + ], + [ + 5203.040137101382, + 5190.565253922085 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.026252663245, + "min_y": 5190.569267576837, + "max_x": 5203.118944049467, + "max_y": 5190.569267576837, + "center": [ + 5203.072598356356, + 5190.569267576837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.118944049467, + 5190.569267576837 + ], + [ + 5203.026252663245, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5203.037839423064, + "min_y": 5190.601376814937, + "max_x": 5203.10735728988, + "max_y": 5190.601376814937, + "center": [ + 5203.072598356472, + 5190.601376814937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.10735728988, + 5190.601376814937 + ], + [ + 5203.037839423064, + 5190.601376814937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C79", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5203.0931983442315, + "min_y": 5190.5730582507995, + "max_x": 5203.121516908377, + "max_y": 5190.601376814945, + "center": [ + 5203.107357626304, + 5190.587217532872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5203.107357626304, + 5190.587217532872 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.428605366768, + "min_y": 5189.431797817966, + "max_x": 5201.508878461965, + "max_y": 5189.5120709131625, + "center": [ + 5201.468741914367, + 5189.471934365564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468741914367, + 5189.471934365564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.705073281317, + "min_y": 5189.248578273031, + "max_x": 5201.740064976102, + "max_y": 5189.648535174956, + "center": [ + 5201.722569128709, + 5189.4485567239935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.705073281317, + 5189.248578273031 + ], + [ + 5201.740064976102, + 5189.648535174956 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.745057097281, + "min_y": 5189.204943594799, + "max_x": 5201.900611166611, + "max_y": 5189.204943594799, + "center": [ + 5201.822834131946, + 5189.204943594799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.900611166611, + 5189.204943594799 + ], + [ + 5201.745057097281, + 5189.204943594799 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.224555254002, + "min_y": 5189.039016859059, + "max_x": 5202.27271911112, + "max_y": 5189.0871807161775, + "center": [ + 5202.248637182561, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.248637182561, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.398304356644, + "min_y": 5189.103235335212, + "max_x": 5202.446468213762, + "max_y": 5189.15139919233, + "center": [ + 5202.422386285203, + 5189.127317263771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.422386285203, + 5189.127317263771 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.445647641972, + "min_y": 5189.056865925836, + "max_x": 5202.46619511147, + "max_y": 5189.133550125503, + "center": [ + 5202.455921376721, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.445647641972, + 5189.133550125503 + ], + [ + 5202.46619511147, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C80", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.465374539585, + "min_y": 5189.039016859059, + "max_x": 5202.513538396704, + "max_y": 5189.0871807161775, + "center": [ + 5202.489456468144, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.489456468144, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C81", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.572053459486, + "min_y": 5189.039016859059, + "max_x": 5202.620217316604, + "max_y": 5189.0871807161775, + "center": [ + 5202.596135388045, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.596135388045, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.489456468144, + "min_y": 5189.039016859084, + "max_x": 5202.596135388045, + "max_y": 5189.039016859084, + "center": [ + 5202.542795928095, + 5189.039016859084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.489456468144, + 5189.039016859084 + ], + [ + 5202.596135388045, + 5189.039016859084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C83", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.331234173906, + "min_y": 5189.039016859059, + "max_x": 5202.379398031024, + "max_y": 5189.0871807161775, + "center": [ + 5202.355316102465, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.355316102465, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.378577459203, + "min_y": 5189.056865925836, + "max_x": 5202.399124928537, + "max_y": 5189.133550125503, + "center": [ + 5202.38885119387, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.399124928537, + 5189.133550125503 + ], + [ + 5202.378577459203, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.248637182561, + "min_y": 5189.039016859084, + "max_x": 5202.355316102465, + "max_y": 5189.039016859084, + "center": [ + 5202.301976642513, + 5189.039016859084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.248637182561, + 5189.039016859084 + ], + [ + 5202.355316102465, + 5189.039016859084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.980884261683, + "min_y": 5189.039016859084, + "max_x": 5202.114496816861, + "max_y": 5189.039016859084, + "center": [ + 5202.047690539272, + 5189.039016859084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.114496816861, + 5189.039016859084 + ], + [ + 5201.980884261683, + 5189.039016859084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.137758173591, + "min_y": 5189.056865925836, + "max_x": 5202.158305642956, + "max_y": 5189.133550125503, + "center": [ + 5202.148031908273, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.158305642956, + 5189.133550125503 + ], + [ + 5202.137758173591, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C88", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.090414888302, + "min_y": 5189.039016859059, + "max_x": 5202.13857874542, + "max_y": 5189.0871807161775, + "center": [ + 5202.114496816861, + 5189.063098787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.114496816861, + 5189.063098787618 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.204828356466, + "min_y": 5189.056865925836, + "max_x": 5202.225375825793, + "max_y": 5189.133550125503, + "center": [ + 5202.21510209113, + 5189.095208025669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.204828356466, + 5189.133550125503 + ], + [ + 5202.225375825793, + 5189.056865925836 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5202.1574850711695, + "min_y": 5189.103235335212, + "max_x": 5202.205648928288, + "max_y": 5189.15139919233, + "center": [ + 5202.181566999729, + 5189.127317263771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.181566999729, + 5189.127317263771 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.860474619013, + "min_y": 5189.124670499615, + "max_x": 5201.9407477142095, + "max_y": 5189.204943594811, + "center": [ + 5201.900611166611, + 5189.164807047213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.900611166611, + 5189.164807047213 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.940747714085, + "min_y": 5188.9587437638165, + "max_x": 5202.021020809281, + "max_y": 5189.039016859013, + "center": [ + 5201.980884261683, + 5188.998880311415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.980884261683, + 5188.998880311415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5188.775169469899, + "max_x": 5201.442062554537, + "max_y": 5188.823333327017, + "center": [ + 5201.417980625978, + 5188.799251398458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5188.799251398458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.43867893161, + "min_y": 5188.820328167935, + "max_x": 5201.499044570176, + "max_y": 5188.881506553101, + "center": [ + 5201.468861750893, + 5188.850917360518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.43867893161, + 5188.820328167935 + ], + [ + 5201.499044570176, + 5188.881506553101 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C8F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.393898697419, + "min_y": 5188.572807329788, + "max_x": 5201.442062554537, + "max_y": 5188.620971186906, + "center": [ + 5201.417980625978, + 5188.596889258347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.417980625978, + 5188.596889258347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.439117784675, + "min_y": 5188.561833270539, + "max_x": 5201.490106205545, + "max_y": 5188.573922192989, + "center": [ + 5201.46461199511, + 5188.567877731764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.439117784675, + 5188.573922192989 + ], + [ + 5201.490106205545, + 5188.561833270539 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C91", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5188.556965844354, + "max_x": 5201.508878461964, + "max_y": 5188.605129701472, + "center": [ + 5201.484796533405, + 5188.581047772913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5188.581047772913 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C92", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.460714604846, + "min_y": 5188.842884968614, + "max_x": 5201.508878461964, + "max_y": 5188.8910488257325, + "center": [ + 5201.484796533405, + 5188.866966897173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.484796533405, + 5188.866966897173 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5188.596889258347, + "max_x": 5201.442062554541, + "max_y": 5188.799251398458, + "center": [ + 5201.442062554541, + 5188.6980703284025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5188.799251398458 + ], + [ + 5201.442062554541, + 5188.596889258347 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C94", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.291495933987, + "min_y": 5189.169937911881, + "max_x": 5201.45204212438, + "max_y": 5189.330484102274, + "center": [ + 5201.371769029183, + 5189.250211007077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.371769029183, + 5189.250211007077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.439188920192, + "min_y": 5189.20664119971, + "max_x": 5201.512734423211, + "max_y": 5189.320445462577, + "center": [ + 5201.475961671702, + 5189.263543331143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.439188920192, + 5189.20664119971 + ], + [ + 5201.512734423211, + 5189.320445462577 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C96", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.704920549682, + "min_y": 5189.204943594786, + "max_x": 5201.785193644879, + "max_y": 5189.285216689982, + "center": [ + 5201.745057097281, + 5189.245080142384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.745057097281, + 5189.245080142384 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C97", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.428605366768, + "min_y": 5189.041506902167, + "max_x": 5201.508878461965, + "max_y": 5189.121779997364, + "center": [ + 5201.468741914367, + 5189.081643449766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.468741914367, + 5189.081643449766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.635709952298, + "min_y": 5189.331456448891, + "max_x": 5201.690257160287, + "max_y": 5189.331456448891, + "center": [ + 5201.662983556293, + 5189.331456448891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.635709952298, + 5189.331456448891 + ], + [ + 5201.690257160287, + 5189.331456448891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C99", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.666175231728, + "min_y": 5189.331456448949, + "max_x": 5201.714339088846, + "max_y": 5189.379620306067, + "center": [ + 5201.690257160287, + 5189.355538377508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.690257160287, + 5189.355538377508 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.508878462005, + "min_y": 5189.371592996559, + "max_x": 5201.508878462005, + "max_y": 5189.471934365564, + "center": [ + 5201.508878462005, + 5189.421763681062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.508878462005, + 5189.471934365564 + ], + [ + 5201.508878462005, + 5189.371592996559 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.532960390472, + "min_y": 5189.331456448891, + "max_x": 5201.629288104712, + "max_y": 5189.331456448891, + "center": [ + 5201.581124247592, + 5189.331456448891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.629288104712, + 5189.331456448891 + ], + [ + 5201.532960390472, + 5189.331456448891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.508878461912, + "min_y": 5189.331456448961, + "max_x": 5201.589151557108, + "max_y": 5189.411729544157, + "center": [ + 5201.54901500951, + 5189.371592996559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.54901500951, + 5189.371592996559 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.508878461913, + "min_y": 5189.283292591798, + "max_x": 5201.557042319031, + "max_y": 5189.3314564489165, + "center": [ + 5201.532960390472, + 5189.307374520357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.532960390472, + 5189.307374520357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.442062554541, + "min_y": 5189.041035098327, + "max_x": 5201.442062554541, + "max_y": 5189.211087859668, + "center": [ + 5201.442062554541, + 5189.126061478997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.442062554541, + 5189.211087859668 + ], + [ + 5201.442062554541, + 5189.041035098327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553C9F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5201.8354559487725, + "min_y": 5189.89002318078, + "max_x": 5202.174476431863, + "max_y": 5190.2290436638705, + "center": [ + 5202.004966190318, + 5190.059533422325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.004966190318, + 5190.059533422325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.795545693905, + "min_y": 5190.059533422325, + "max_x": 5202.213935872773, + "max_y": 5190.059533422325, + "center": [ + 5202.004740783339, + 5190.059533422325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.213935872773, + 5190.059533422325 + ], + [ + 5201.795545693905, + 5190.059533422325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5202.004966190318, + "min_y": 5189.842034069676, + "max_x": 5202.004966190318, + "max_y": 5190.284536394928, + "center": [ + 5202.004966190318, + 5190.0632852323015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.004966190318, + 5190.284536394928 + ], + [ + 5202.004966190318, + 5189.842034069676 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5201.852602773288, + "min_y": 5189.9071700052955, + "max_x": 5202.1573296073475, + "max_y": 5190.211896839355, + "center": [ + 5202.004966190318, + 5190.059533422325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5202.004966190318, + 5190.059533422325 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.732037666636, + "min_y": 5189.826741446296, + "max_x": 5201.732037666636, + "max_y": 5190.484980826915, + "center": [ + 5201.732037666636, + 5190.155861136605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.732037666636, + 5189.826741446296 + ], + [ + 5201.732037666636, + 5190.484980826915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.748092285568, + "min_y": 5189.654957022578, + "max_x": 5201.748092285568, + "max_y": 5189.802659517713, + "center": [ + 5201.748092285568, + 5189.728808270145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.748092285568, + 5189.802659517713 + ], + [ + 5201.748092285568, + 5189.654957022578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.740064976102, + "min_y": 5189.648535174956, + "max_x": 5201.740064976102, + "max_y": 5189.654957022578, + "center": [ + 5201.740064976102, + 5189.651746098767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.740064976102, + 5189.648535174956 + ], + [ + 5201.740064976102, + 5189.654957022578 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.732037666581, + "min_y": 5189.802659517737, + "max_x": 5201.780201523699, + "max_y": 5189.850823374855, + "center": [ + 5201.75611959514, + 5189.826741446296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.75611959514, + 5189.826741446296 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.715983047572, + "min_y": 5189.89095992245, + "max_x": 5201.715983047572, + "max_y": 5190.035451493791, + "center": [ + 5201.715983047572, + 5189.96320570812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.715983047572, + 5189.89095992245 + ], + [ + 5201.715983047572, + 5190.035451493791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.71598304754, + "min_y": 5189.87891895817, + "max_x": 5201.740064976099, + "max_y": 5189.903000886729, + "center": [ + 5201.72802401182, + 5189.89095992245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.72802401182, + 5189.89095992245 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.72802401182, + "min_y": 5189.878918958182, + "max_x": 5201.732037666636, + "max_y": 5189.878918958182, + "center": [ + 5201.730030839228, + 5189.878918958182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.732037666636, + 5189.878918958182 + ], + [ + 5201.72802401182, + 5189.878918958182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.71598304754, + "min_y": 5190.023410529511, + "max_x": 5201.740064976099, + "max_y": 5190.04749245807, + "center": [ + 5201.72802401182, + 5190.035451493791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.72802401182, + 5190.035451493791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.72802401182, + "min_y": 5190.047492458141, + "max_x": 5201.732037666636, + "max_y": 5190.047492458141, + "center": [ + 5201.730030839228, + 5190.047492458141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.732037666636, + 5190.047492458141 + ], + [ + 5201.72802401182, + 5190.047492458141 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.67813820398, + "min_y": 5189.963205708137, + "max_x": 5201.775174868777, + "max_y": 5189.963205708137, + "center": [ + 5201.726656536379, + 5189.963205708137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.775174868777, + 5189.963205708137 + ], + [ + 5201.67813820398, + 5189.963205708137 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.703942083388, + "min_y": 5190.484980826915, + "max_x": 5201.703942083388, + "max_y": 5190.533144684033, + "center": [ + 5201.703942083388, + 5190.509062755474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.703942083388, + 5190.533144684033 + ], + [ + 5201.703942083388, + 5190.484980826915 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.739310281368, + "min_y": 5190.5730582507995, + "max_x": 5201.767628845513, + "max_y": 5190.601376814945, + "center": [ + 5201.75346956344, + 5190.587217532872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.75346956344, + 5190.587217532872 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.765055986676, + "min_y": 5190.569267576837, + "max_x": 5201.765055986676, + "max_y": 5190.595356332845, + "center": [ + 5201.765055986676, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.765055986676, + 5190.569267576837 + ], + [ + 5201.765055986676, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.755767578317, + "min_y": 5190.565253922085, + "max_x": 5201.755767578317, + "max_y": 5190.569267576837, + "center": [ + 5201.755767578317, + 5190.567260749461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.755767578317, + 5190.565253922085 + ], + [ + 5201.755767578317, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.703942083306, + "min_y": 5190.501035445955, + "max_x": 5201.768160559463, + "max_y": 5190.565253922111, + "center": [ + 5201.736051321384, + 5190.533144684033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.736051321384, + 5190.533144684033 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.741883140075, + "min_y": 5190.569267576837, + "max_x": 5201.741883140075, + "max_y": 5190.595356332845, + "center": [ + 5201.741883140075, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.741883140075, + 5190.569267576837 + ], + [ + 5201.741883140075, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.808828821029, + "min_y": 5190.5730582507995, + "max_x": 5201.837147385175, + "max_y": 5190.601376814945, + "center": [ + 5201.822988103102, + 5190.587217532872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.822988103102, + 5190.587217532872 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.834574526401, + "min_y": 5190.569267576837, + "max_x": 5201.834574526401, + "max_y": 5190.595356332845, + "center": [ + 5201.834574526401, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.834574526401, + 5190.569267576837 + ], + [ + 5201.834574526401, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.811401679739, + "min_y": 5190.569267576837, + "max_x": 5201.811401679739, + "max_y": 5190.595356332845, + "center": [ + 5201.811401679739, + 5190.58231195484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.811401679739, + 5190.569267576837 + ], + [ + 5201.811401679739, + 5190.595356332845 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.820690088169, + "min_y": 5190.565253922085, + "max_x": 5201.820690088169, + "max_y": 5190.569267576837, + "center": [ + 5201.820690088169, + 5190.567260749461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.820690088169, + 5190.565253922085 + ], + [ + 5201.820690088169, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.741883140075, + "min_y": 5190.569267576837, + "max_x": 5201.834574526401, + "max_y": 5190.569267576837, + "center": [ + 5201.7882288332385, + 5190.569267576837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.741883140075, + 5190.569267576837 + ], + [ + 5201.834574526401, + 5190.569267576837 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5201.740622428214, + "min_y": 5190.50616400484, + "max_x": 5201.83583523833, + "max_y": 5190.601376814956, + "center": [ + 5201.788228833272, + 5190.553770409898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.788228833272, + 5190.553770409898 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.753469899663, + "min_y": 5190.601376814937, + "max_x": 5201.822987766483, + "max_y": 5190.601376814937, + "center": [ + 5201.788228833073, + 5190.601376814937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.753469899663, + 5190.601376814937 + ], + [ + 5201.822987766483, + 5190.601376814937 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.755767578317, + "min_y": 5190.565253922085, + "max_x": 5201.820690088169, + "max_y": 5190.565253922085, + "center": [ + 5201.788228833243, + 5190.565253922085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.755767578317, + 5190.565253922085 + ], + [ + 5201.820690088169, + 5190.565253922085 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5188.369910302511, + "max_x": 5200.617847105248, + "max_y": 5188.418074159629, + "center": [ + 5200.593765176689, + 5188.39399223107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5188.39399223107 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5188.366633855778, + "max_x": 5200.57735735607, + "max_y": 5188.430499130316, + "center": [ + 5200.545424718801, + 5188.398566493047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5188.398566493047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.490665558942, + "min_y": 5188.184675895316, + "max_x": 5201.001202243524, + "max_y": 5188.695212579898, + "center": [ + 5200.745933901233, + 5188.439944237607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.745933901233, + 5188.439944237607 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5188.378915639315, + "max_x": 5200.56968324819, + "max_y": 5188.536395397467, + "center": [ + 5200.56968324819, + 5188.45765551839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.536395397467 + ], + [ + 5200.56968324819, + 5188.378915639315 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.312809343507, + "min_y": 5187.562195785582, + "max_x": 5200.312809343507, + "max_y": 5188.701312651658, + "center": [ + 5200.312809343507, + 5188.13175421862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.312809343507, + 5188.701312651658 + ], + [ + 5200.312809343507, + 5187.562195785582 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.328863962604, + "min_y": 5181.704835919986, + "max_x": 5213.2943218074615, + "max_y": 5194.670293764843, + "center": [ + 5206.811592885033, + 5188.187564842415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5206.811592885033, + 5188.187564842415 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5187.155316912272, + "max_x": 5200.56968324819, + "max_y": 5187.274122868467, + "center": [ + 5200.56968324819, + 5187.214719890369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.274122868467 + ], + [ + 5200.56968324819, + 5187.155316912272 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.258129468772, + "max_x": 5200.617847105248, + "max_y": 5187.30629332589, + "center": [ + 5200.593765176689, + 5187.282211397331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.282211397331 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.361270349628, + "min_y": 5187.235360282262, + "max_x": 5201.003455111198, + "max_y": 5187.877545043832, + "center": [ + 5200.682362730413, + 5187.556452663047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.682362730413, + 5187.556452663047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.312809343511, + "min_y": 5187.241103404797, + "max_x": 5200.95499410508, + "max_y": 5187.883288166367, + "center": [ + 5200.633901724295, + 5187.562195785582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.633901724295, + 5187.562195785582 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.51349208153, + "min_y": 5187.064593512796, + "max_x": 5200.749848183025, + "max_y": 5187.300949614291, + "center": [ + 5200.631670132278, + 5187.182771563544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.631670132278, + 5187.182771563544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.513492081622, + "min_y": 5187.123682538215, + "max_x": 5200.513492081622, + "max_y": 5187.241860588921, + "center": [ + 5200.513492081622, + 5187.182771563568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.513492081622, + 5187.241860588921 + ], + [ + 5200.513492081622, + 5187.123682538215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.483765557065, + "min_y": 5187.182771563544, + "max_x": 5200.60195192315, + "max_y": 5187.182771563544, + "center": [ + 5200.5428587401075, + 5187.182771563544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.483765557065, + 5187.182771563544 + ], + [ + 5200.60195192315, + 5187.182771563544 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.131234983713, + "max_x": 5200.617847105248, + "max_y": 5187.179398840831, + "center": [ + 5200.593765176689, + 5187.155316912272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.155316912272 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.143333391914, + "max_x": 5200.56968324819, + "max_y": 5187.143333391914, + "center": [ + 5200.544968900336, + 5187.143333391914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.143333391914 + ], + [ + 5200.520254552483, + 5187.143333391914 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.078814664624, + "max_x": 5200.617847105248, + "max_y": 5187.126978521742, + "center": [ + 5200.593765176689, + 5187.102896593183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.102896593183 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.104031684484, + "max_x": 5200.56968324819, + "max_y": 5187.104031684484, + "center": [ + 5200.54499927143, + 5187.104031684484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.104031684484 + ], + [ + 5200.520315294671, + 5187.104031684484 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.091749900946, + "max_x": 5200.57735735607, + "max_y": 5187.155615175484, + "center": [ + 5200.545424718801, + 5187.123682538215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.123682538215 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5187.102896593183, + "max_x": 5200.56968324819, + "max_y": 5187.155316912272, + "center": [ + 5200.56968324819, + 5187.129106752727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.155316912272 + ], + [ + 5200.56968324819, + 5187.102896593183 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.2099279516515, + "max_x": 5200.57735735607, + "max_y": 5187.27379322619, + "center": [ + 5200.545424718801, + 5187.241860588921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.241860588921 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.261511442687, + "max_x": 5200.56968324819, + "max_y": 5187.261511442687, + "center": [ + 5200.54499927143, + 5187.261511442687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.261511442687 + ], + [ + 5200.520315294671, + 5187.261511442687 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.222209735272, + "max_x": 5200.56968324819, + "max_y": 5187.222209735272, + "center": [ + 5200.544968900336, + 5187.222209735272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.222209735272 + ], + [ + 5200.520254552483, + 5187.222209735272 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.563280317738, + "min_y": 5187.816870899692, + "max_x": 5200.612165315479, + "max_y": 5187.865755897433, + "center": [ + 5200.587722816608, + 5187.841313398562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.587722816608, + 5187.841313398562 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.490432608291, + "min_y": 5187.414747798556, + "max_x": 5200.684864905321, + "max_y": 5187.609180095586, + "center": [ + 5200.587648756806, + 5187.511963947071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.587648756806, + 5187.511963947071 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.454469949145, + "min_y": 5187.480708712481, + "max_x": 5200.569694158739, + "max_y": 5187.595932922075, + "center": [ + 5200.512082053942, + 5187.538320817278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.512082053942, + 5187.538320817278 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.483765557065, + "min_y": 5187.449663392928, + "max_x": 5200.60195192315, + "max_y": 5187.449663392928, + "center": [ + 5200.5428587401075, + 5187.449663392928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.483765557065, + 5187.449663392928 + ], + [ + 5200.60195192315, + 5187.449663392928 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.49036360537, + "min_y": 5187.412842673357, + "max_x": 5200.670345773446, + "max_y": 5187.592824841433, + "center": [ + 5200.580354689408, + 5187.502833757395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.580354689408, + 5187.502833757395 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5187.475544603927, + "max_x": 5200.56968324819, + "max_y": 5187.537199636001, + "center": [ + 5200.56968324819, + 5187.506372119964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.537199636001 + ], + [ + 5200.56968324819, + 5187.475544603927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.451462675368, + "max_x": 5200.617847105248, + "max_y": 5187.499626532486, + "center": [ + 5200.593765176689, + 5187.475544603927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.475544603927 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.51349208153, + "min_y": 5187.331485342181, + "max_x": 5200.749848183025, + "max_y": 5187.567841443676, + "center": [ + 5200.631670132278, + 5187.449663392928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.631670132278, + 5187.449663392928 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.513492081622, + "min_y": 5187.390574367551, + "max_x": 5200.513492081622, + "max_y": 5187.508752418289, + "center": [ + 5200.513492081622, + 5187.44966339292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.513492081622, + 5187.508752418289 + ], + [ + 5200.513492081622, + 5187.390574367551 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.410225221199, + "max_x": 5200.56968324819, + "max_y": 5187.410225221199, + "center": [ + 5200.544968900336, + 5187.410225221199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.410225221199 + ], + [ + 5200.520254552483, + 5187.410225221199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.47681978102, + "max_x": 5200.57735735607, + "max_y": 5187.540685055558, + "center": [ + 5200.545424718801, + 5187.508752418289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.508752418289 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.528403271986, + "max_x": 5200.56968324819, + "max_y": 5187.528403271986, + "center": [ + 5200.54499927143, + 5187.528403271986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.528403271986 + ], + [ + 5200.520315294671, + 5187.528403271986 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.489101564557, + "max_x": 5200.56968324819, + "max_y": 5187.489101564557, + "center": [ + 5200.544968900336, + 5187.489101564557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.489101564557 + ], + [ + 5200.520254552483, + 5187.489101564557 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.348905340633, + "max_x": 5200.617847105248, + "max_y": 5187.397069197751, + "center": [ + 5200.593765176689, + 5187.372987269192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.372987269192 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.370923513818, + "max_x": 5200.56968324819, + "max_y": 5187.370923513818, + "center": [ + 5200.54499927143, + 5187.370923513818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.370923513818 + ], + [ + 5200.520315294671, + 5187.370923513818 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5187.372987269192, + "max_x": 5200.56968324819, + "max_y": 5187.475544603927, + "center": [ + 5200.56968324819, + 5187.424265936559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.475544603927 + ], + [ + 5200.56968324819, + 5187.372987269192 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.358641730282, + "max_x": 5200.57735735607, + "max_y": 5187.422507004821, + "center": [ + 5200.545424718801, + 5187.390574367551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.390574367551 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.459762861462, + "min_y": 5187.168192361646, + "max_x": 5200.58625754142, + "max_y": 5187.294687041604, + "center": [ + 5200.523010201441, + 5187.231439701625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.523010201441, + 5187.231439701625 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.489550751129, + "min_y": 5187.2516817739, + "max_x": 5200.53309539872, + "max_y": 5187.295226421491, + "center": [ + 5200.511323074925, + 5187.273454097695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.511323074925, + 5187.273454097695 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.509858006356, + "min_y": 5187.294659507272, + "max_x": 5200.524876263637, + "max_y": 5187.295177073012, + "center": [ + 5200.517367134997, + 5187.294918290142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.524876263637, + 5187.294659507272 + ], + [ + 5200.509858006356, + 5187.295177073012 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.538887162903, + "min_y": 5187.566442850739, + "max_x": 5200.619160258099, + "max_y": 5187.646715945935, + "center": [ + 5200.579023710501, + 5187.606579398337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.579023710501, + 5187.606579398337 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.501827176028, + "min_y": 5187.515722836438, + "max_x": 5200.5675519300485, + "max_y": 5187.581447590458, + "center": [ + 5200.534689553038, + 5187.548585213448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.534689553038, + 5187.548585213448 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.483765557065, + "min_y": 5187.917474166371, + "max_x": 5200.60195192315, + "max_y": 5187.917474166371, + "center": [ + 5200.5428587401075, + 5187.917474166371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.483765557065, + 5187.917474166371 + ], + [ + 5200.60195192315, + 5187.917474166371 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.490665558942, + "min_y": 5187.679917104847, + "max_x": 5201.001202243524, + "max_y": 5188.190453789429, + "center": [ + 5200.745933901233, + 5187.935185447138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.745933901233, + 5187.935185447138 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CE9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.427307680083, + "min_y": 5187.909416155078, + "max_x": 5200.569685239868, + "max_y": 5188.051793714863, + "center": [ + 5200.498496459975, + 5187.980604934971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.498496459975, + 5187.980604934971 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CEA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.5365118454665, + "min_y": 5188.032586078299, + "max_x": 5200.568621083545, + "max_y": 5188.064695316377, + "center": [ + 5200.552566464506, + 5188.048640697338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.552566464506, + 5188.048640697338 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CEB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.957055525148, + "max_x": 5200.617847105248, + "max_y": 5188.005219382266, + "center": [ + 5200.593765176689, + 5187.981137453707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.981137453707 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CEC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.51349208153, + "min_y": 5187.799296115623, + "max_x": 5200.749848183025, + "max_y": 5188.035652217119, + "center": [ + 5200.631670132278, + 5187.917474166371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.631670132278, + 5187.917474166371 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.513492081622, + "min_y": 5187.858385140994, + "max_x": 5200.513492081622, + "max_y": 5187.976563191782, + "center": [ + 5200.513492081622, + 5187.917474166388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.513492081622, + 5187.976563191782 + ], + [ + 5200.513492081622, + 5187.858385140994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.878035994725, + "max_x": 5200.56968324819, + "max_y": 5187.878035994725, + "center": [ + 5200.544968900336, + 5187.878035994725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.878035994725 + ], + [ + 5200.520254552483, + 5187.878035994725 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CEF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.9446305545125, + "max_x": 5200.57735735607, + "max_y": 5188.008495829051, + "center": [ + 5200.545424718801, + 5187.976563191782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.976563191782 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.996214045464, + "max_x": 5200.56968324819, + "max_y": 5187.996214045464, + "center": [ + 5200.54499927143, + 5187.996214045464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.996214045464 + ], + [ + 5200.520315294671, + 5187.996214045464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5187.956912338083, + "max_x": 5200.56968324819, + "max_y": 5187.956912338083, + "center": [ + 5200.544968900336, + 5187.956912338083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.956912338083 + ], + [ + 5200.520254552483, + 5187.956912338083 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5187.838734287311, + "max_x": 5200.56968324819, + "max_y": 5187.838734287311, + "center": [ + 5200.54499927143, + 5187.838734287311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.838734287311 + ], + [ + 5200.520315294671, + 5187.838734287311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.50087969712, + "min_y": 5187.8331073896115, + "max_x": 5200.571287165265, + "max_y": 5187.903514857757, + "center": [ + 5200.536083431192, + 5187.868311123684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.536083431192, + 5187.868311123684 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5187.838734287311, + "max_x": 5200.56968324819, + "max_y": 5187.996214045464, + "center": [ + 5200.56968324819, + 5187.917474166387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5187.838734287311 + ], + [ + 5200.56968324819, + 5187.996214045464 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5187.833724187312, + "max_x": 5200.617847105248, + "max_y": 5187.8818880444305, + "center": [ + 5200.593765176689, + 5187.857806115871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5187.857806115871 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5187.826452503725, + "max_x": 5200.57735735607, + "max_y": 5187.890317778263, + "center": [ + 5200.545424718801, + 5187.858385140994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5187.858385140994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.499616392865, + "min_y": 5187.964220413438, + "max_x": 5200.571171493132, + "max_y": 5188.035775513705, + "center": [ + 5200.535393942999, + 5187.999997963571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.535393942999, + 5187.999997963571 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.427307680083, + "min_y": 5188.323335969914, + "max_x": 5200.569685239868, + "max_y": 5188.465713529699, + "center": [ + 5200.498496459975, + 5188.394524749807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.498496459975, + 5188.394524749807 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CF9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.499616392865, + "min_y": 5188.339354171107, + "max_x": 5200.571171493132, + "max_y": 5188.410909271373, + "center": [ + 5200.535393942999, + 5188.37513172124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.535393942999, + 5188.37513172124 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.5365118454665, + "min_y": 5188.310434368352, + "max_x": 5200.568621083545, + "max_y": 5188.34254360643, + "center": [ + 5200.552566464506, + 5188.326488987391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.552566464506, + 5188.326488987391 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5188.378915639315, + "max_x": 5200.56968324819, + "max_y": 5188.378915639315, + "center": [ + 5200.54499927143, + 5188.378915639315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.378915639315 + ], + [ + 5200.520315294671, + 5188.378915639315 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.545601319623, + "min_y": 5189.431797817966, + "max_x": 5200.625874414819, + "max_y": 5189.5120709131625, + "center": [ + 5200.585737867221, + 5189.471934365564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.585737867221, + 5189.471934365564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.256868835575, + "min_y": 5189.230024508881, + "max_x": 5200.320734110113, + "max_y": 5189.293889783419, + "center": [ + 5200.288801472844, + 5189.26195714615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.288801472844, + 5189.26195714615 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.227142311203, + "min_y": 5189.202868120823, + "max_x": 5200.345328677153, + "max_y": 5189.202868120823, + "center": [ + 5200.286235494178, + 5189.202868120823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.227142311203, + 5189.202868120823 + ], + [ + 5200.345328677153, + 5189.202868120823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553CFF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.256868835575, + "min_y": 5189.111846458193, + "max_x": 5200.320734110113, + "max_y": 5189.1757117327315, + "center": [ + 5200.288801472844, + 5189.143779095462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.288801472844, + 5189.143779095462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D00", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.256868835632, + "min_y": 5189.084690070075, + "max_x": 5200.493224937128, + "max_y": 5189.321046171571, + "center": [ + 5200.37504688638, + 5189.202868120823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.37504688638, + 5189.202868120823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D01", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.51349208153, + "min_y": 5188.807288241154, + "max_x": 5200.749848183025, + "max_y": 5189.04364434265, + "center": [ + 5200.631670132278, + 5188.925466291902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.631670132278, + 5188.925466291902 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5188.89958508082, + "max_x": 5200.56968324819, + "max_y": 5189.002142415587, + "center": [ + 5200.56968324819, + 5188.950863748203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5189.002142415587 + ], + [ + 5200.56968324819, + 5188.89958508082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.513492081622, + "min_y": 5188.866377266523, + "max_x": 5200.513492081622, + "max_y": 5188.984555317261, + "center": [ + 5200.513492081622, + 5188.925466291892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.513492081622, + 5188.984555317261 + ], + [ + 5200.513492081622, + 5188.866377266523 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D04", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.3631617957335, + "min_y": 5188.515691394673, + "max_x": 5201.005346557303, + "max_y": 5189.157876156242, + "center": [ + 5200.684254176518, + 5188.836783775458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.684254176518, + 5188.836783775458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.312809343507, + "min_y": 5188.701312651658, + "max_x": 5200.312809343507, + "max_y": 5189.287871027382, + "center": [ + 5200.312809343507, + 5188.99459183952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.312809343507, + 5189.287871027382 + ], + [ + 5200.312809343507, + 5188.701312651658 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.296754724572, + "min_y": 5188.564848389818, + "max_x": 5200.296754724572, + "max_y": 5188.685258032573, + "center": [ + 5200.296754724572, + 5188.625053211195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.296754724572, + 5188.685258032573 + ], + [ + 5200.296754724572, + 5188.564848389818 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.483765557065, + "min_y": 5188.457655518408, + "max_x": 5200.60195192315, + "max_y": 5188.457655518408, + "center": [ + 5200.5428587401075, + 5188.457655518408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.483765557065, + 5188.457655518408 + ], + [ + 5200.60195192315, + 5188.457655518408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D08", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5188.493241640347, + "max_x": 5200.617847105248, + "max_y": 5188.541405497465, + "center": [ + 5200.593765176689, + 5188.517323568906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5188.517323568906 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D09", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.50087969712, + "min_y": 5188.471614826987, + "max_x": 5200.571287165265, + "max_y": 5188.5420222951325, + "center": [ + 5200.536083431192, + 5188.50681856106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.536083431192, + 5188.50681856106 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5188.536395397467, + "max_x": 5200.56968324819, + "max_y": 5188.536395397467, + "center": [ + 5200.54499927143, + 5188.536395397467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.536395397467 + ], + [ + 5200.520315294671, + 5188.536395397467 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.563280317738, + "min_y": 5188.509373787346, + "max_x": 5200.612165315479, + "max_y": 5188.558258785087, + "center": [ + 5200.587722816608, + 5188.533816286216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.587722816608, + 5188.533816286216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.51349208153, + "min_y": 5188.33947746766, + "max_x": 5200.749848183025, + "max_y": 5188.575833569155, + "center": [ + 5200.631670132278, + 5188.457655518408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.631670132278, + 5188.457655518408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5188.418217346728, + "max_x": 5200.56968324819, + "max_y": 5188.418217346728, + "center": [ + 5200.544968900336, + 5188.418217346728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.418217346728 + ], + [ + 5200.520254552483, + 5188.418217346728 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5188.497093690054, + "max_x": 5200.56968324819, + "max_y": 5188.497093690054, + "center": [ + 5200.544968900336, + 5188.497093690054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.497093690054 + ], + [ + 5200.520254552483, + 5188.497093690054 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.513492081622, + "min_y": 5188.398566493047, + "max_x": 5200.513492081622, + "max_y": 5188.516744543735, + "center": [ + 5200.513492081622, + 5188.45765551839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.513492081622, + 5188.516744543735 + ], + [ + 5200.513492081622, + 5188.398566493047 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D10", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5188.484811906465, + "max_x": 5200.57735735607, + "max_y": 5188.548677181004, + "center": [ + 5200.545424718801, + 5188.516744543735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5188.516744543735 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D11", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.556821080298, + "max_x": 5200.31280934356, + "max_y": 5188.572875699338, + "center": [ + 5200.30478203404, + 5188.564848389818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.564848389818 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.312809343507, + "min_y": 5188.508685406787, + "max_x": 5200.312809343507, + "max_y": 5188.548793770767, + "center": [ + 5200.312809343507, + 5188.528739588777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.312809343507, + 5188.548793770767 + ], + [ + 5200.312809343507, + 5188.508685406787 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.312809343507, + "min_y": 5188.508685406787, + "max_x": 5200.312809343507, + "max_y": 5188.548793770767, + "center": [ + 5200.312809343507, + 5188.528739588777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.312809343507, + 5188.548793770767 + ], + [ + 5200.312809343507, + 5188.508685406787 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D14", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.540766461247, + "max_x": 5200.31280934356, + "max_y": 5188.556821080287, + "center": [ + 5200.30478203404, + 5188.548793770767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.548793770767 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D15", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.484603478268, + "max_x": 5200.31280934356, + "max_y": 5188.500658097308, + "center": [ + 5200.30478203404, + 5188.492630787788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.492630787788 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.296754724572, + "min_y": 5188.412323136408, + "max_x": 5200.296754724572, + "max_y": 5188.492630787788, + "center": [ + 5200.296754724572, + 5188.452476962098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.296754724572, + 5188.492630787788 + ], + [ + 5200.296754724572, + 5188.412323136408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D17", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.404295826888, + "max_x": 5200.31280934356, + "max_y": 5188.420350445928, + "center": [ + 5200.30478203404, + 5188.412323136408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.412323136408 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D18", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.388241207871, + "max_x": 5200.31280934356, + "max_y": 5188.404295826911, + "center": [ + 5200.30478203404, + 5188.396268517391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.396268517391 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D19", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.500658097267, + "max_x": 5200.31280934356, + "max_y": 5188.516712716307, + "center": [ + 5200.30478203404, + 5188.508685406787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.508685406787 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.490432608291, + "min_y": 5188.765949589192, + "max_x": 5200.684864905321, + "max_y": 5188.960381886222, + "center": [ + 5200.587648756806, + 5188.863165737707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.587648756806, + 5188.863165737707 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.56968324819, + "min_y": 5188.837930048742, + "max_x": 5200.56968324819, + "max_y": 5188.89958508082, + "center": [ + 5200.56968324819, + 5188.868757564781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.837930048742 + ], + [ + 5200.56968324819, + 5188.89958508082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5188.834444629254, + "max_x": 5200.57735735607, + "max_y": 5188.898309903792, + "center": [ + 5200.545424718801, + 5188.866377266523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5188.866377266523 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.501827176028, + "min_y": 5188.793682094285, + "max_x": 5200.5675519300485, + "max_y": 5188.859406848305, + "center": [ + 5200.534689553038, + 5188.826544471295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.534689553038, + 5188.826544471295 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.454469949145, + "min_y": 5188.779196762737, + "max_x": 5200.569694158739, + "max_y": 5188.894420972331, + "center": [ + 5200.512082053942, + 5188.836808867534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.512082053942, + 5188.836808867534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D1F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.538887162903, + "min_y": 5188.7284137388415, + "max_x": 5200.619160258099, + "max_y": 5188.808686834038, + "center": [ + 5200.579023710501, + 5188.76855028644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.579023710501, + 5188.76855028644 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5188.846726412791, + "max_x": 5200.56968324819, + "max_y": 5188.846726412791, + "center": [ + 5200.54499927143, + 5188.846726412791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.846726412791 + ], + [ + 5200.520315294671, + 5188.846726412791 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.483765557065, + "min_y": 5188.925466291902, + "max_x": 5200.60195192315, + "max_y": 5188.925466291902, + "center": [ + 5200.5428587401075, + 5188.925466291902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.483765557065, + 5188.925466291902 + ], + [ + 5200.60195192315, + 5188.925466291902 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D22", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.49036360537, + "min_y": 5188.782304843395, + "max_x": 5200.670345773446, + "max_y": 5188.962287011471, + "center": [ + 5200.580354689408, + 5188.872295927433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.580354689408, + 5188.872295927433 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D23", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5188.8755031522605, + "max_x": 5200.617847105248, + "max_y": 5188.923667009379, + "center": [ + 5200.593765176689, + 5188.89958508082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5188.89958508082 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5188.886028120172, + "max_x": 5200.56968324819, + "max_y": 5188.886028120172, + "center": [ + 5200.544968900336, + 5188.886028120172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.886028120172 + ], + [ + 5200.520254552483, + 5188.886028120172 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D25", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.693285342138, + "max_x": 5200.31280934356, + "max_y": 5188.709339961178, + "center": [ + 5200.30478203404, + 5188.701312651658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.701312651658 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D26", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.29675472452, + "min_y": 5188.677230723053, + "max_x": 5200.31280934356, + "max_y": 5188.693285342093, + "center": [ + 5200.30478203404, + 5188.685258032573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.30478203404, + 5188.685258032573 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.027239890747, + "min_y": 5189.30893385496, + "max_x": 5201.027239890747, + "max_y": 5189.478857729891, + "center": [ + 5201.027239890747, + 5189.393895792426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.027239890747, + 5189.30893385496 + ], + [ + 5201.027239890747, + 5189.478857729891 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.331589680274, + "min_y": 5189.097899201894, + "max_x": 5200.526820982958, + "max_y": 5189.33056680828, + "center": [ + 5200.429205331617, + 5189.2142330050865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.331589680274, + 5189.097899201894 + ], + [ + 5200.526820982958, + 5189.33056680828 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520315294671, + "min_y": 5189.00420617096, + "max_x": 5200.56968324819, + "max_y": 5189.00420617096, + "center": [ + 5200.54499927143, + 5189.00420617096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5189.00420617096 + ], + [ + 5200.520315294671, + 5189.00420617096 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.56968324813, + "min_y": 5188.9780604870275, + "max_x": 5200.617847105248, + "max_y": 5189.026224344146, + "center": [ + 5200.593765176689, + 5189.002142415587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.593765176689, + 5189.002142415587 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.520254552483, + "min_y": 5188.964904463531, + "max_x": 5200.56968324819, + "max_y": 5188.964904463531, + "center": [ + 5200.544968900336, + 5188.964904463531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.56968324819, + 5188.964904463531 + ], + [ + 5200.520254552483, + 5188.964904463531 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.513492081532, + "min_y": 5188.952622679992, + "max_x": 5200.57735735607, + "max_y": 5189.01648795453, + "center": [ + 5200.545424718801, + 5188.984555317261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545424718801, + 5188.984555317261 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.263692048707, + "min_y": 5189.124128241729, + "max_x": 5200.313060002265, + "max_y": 5189.124128241729, + "center": [ + 5200.288376025486, + 5189.124128241729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.313060002265, + 5189.124128241729 + ], + [ + 5200.263692048707, + 5189.124128241729 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.263631306654, + "min_y": 5189.163429949143, + "max_x": 5200.313060002265, + "max_y": 5189.163429949143, + "center": [ + 5200.28834565446, + 5189.163429949143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.313060002265, + 5189.163429949143 + ], + [ + 5200.263631306654, + 5189.163429949143 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D2F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.312809343584, + "min_y": 5188.96602755577, + "max_x": 5200.473355533977, + "max_y": 5189.126573746163, + "center": [ + 5200.393082438781, + 5189.046300650966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.393082438781, + 5189.046300650966 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.320836653013, + "min_y": 5189.295898336865, + "max_x": 5200.497730681391, + "max_y": 5189.295898336865, + "center": [ + 5200.4092836672025, + 5189.295898336865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.497730681391, + 5189.295898336865 + ], + [ + 5200.320836653013, + 5189.295898336865 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.545601319618, + "min_y": 5189.382165359258, + "max_x": 5200.545601319618, + "max_y": 5189.471934365564, + "center": [ + 5200.545601319618, + 5189.427049862411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.545601319618, + 5189.471934365564 + ], + [ + 5200.545601319618, + 5189.382165359258 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D32", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.385055129189, + "min_y": 5189.301892264061, + "max_x": 5200.545601319582, + "max_y": 5189.462438454454, + "center": [ + 5200.465328224385, + 5189.382165359258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.465328224385, + 5189.382165359258 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.263692048707, + "min_y": 5189.281607999932, + "max_x": 5200.313060002265, + "max_y": 5189.281607999932, + "center": [ + 5200.288376025486, + 5189.281607999932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.313060002265, + 5189.281607999932 + ], + [ + 5200.263692048707, + 5189.281607999932 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.263631306654, + "min_y": 5189.242306292502, + "max_x": 5200.313060002265, + "max_y": 5189.242306292502, + "center": [ + 5200.28834565446, + 5189.242306292502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.313060002265, + 5189.242306292502 + ], + [ + 5200.263631306654, + 5189.242306292502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D35", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5200.312809343493, + "min_y": 5189.279843717862, + "max_x": 5200.328863962533, + "max_y": 5189.295898336902, + "center": [ + 5200.320836653013, + 5189.287871027382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.320836653013, + 5189.287871027382 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5200.256868835624, + "min_y": 5189.143779095462, + "max_x": 5200.256868835624, + "max_y": 5189.26195714615, + "center": [ + 5200.256868835624, + 5189.202868120807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5200.256868835624, + 5189.26195714615 + ], + [ + 5200.256868835624, + 5189.143779095462 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5201.027239890747, + "min_y": 5189.748154086112, + "max_x": 5201.027239890747, + "max_y": 5190.210527114442, + "center": [ + 5201.027239890747, + 5189.979340600277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5201.027239890747, + 5189.748154086112 + ], + [ + 5201.027239890747, + 5190.210527114442 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D3B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5236.490238262633, + "min_y": 5187.119148006769, + "max_x": 5240.5840084985975, + "max_y": 5191.212918242733, + "center": [ + 5238.537123380615, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5238.537123380615, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D3C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5236.490238262615, + "min_y": 5187.393378613907, + "max_x": 5239.56056593964, + "max_y": 5190.938687635545, + "center": [ + 5238.025402101128, + 5189.166033124726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5236.490238262615, + 5189.166033124751 + ], + [ + 5239.56056593964, + 5190.938687635545 + ], + [ + 5239.56056593964, + 5187.393378613907 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5218.043739596506, + "min_y": 5189.166033124751, + "max_x": 5225.999805601382, + "max_y": 5189.166033124751, + "center": [ + 5222.021772598944, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5218.043739596506, + 5189.166033124751 + ], + [ + 5225.999805601382, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5229.315116287389, + "min_y": 5189.166033124751, + "max_x": 5231.105976955852, + "max_y": 5189.166033124751, + "center": [ + 5230.210546621621, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5229.315116287389, + 5189.166033124751 + ], + [ + 5231.105976955852, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5233.776813345052, + "min_y": 5189.166033124751, + "max_x": 5236.490238262615, + "max_y": 5189.166033124751, + "center": [ + 5235.133525803833, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5233.776813345052, + 5189.166033124751 + ], + [ + 5236.490238262615, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5240.584008498675, + "min_y": 5189.166033124751, + "max_x": 5242.926425385796, + "max_y": 5189.166033124751, + "center": [ + 5241.755216942236, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5240.584008498675, + 5189.166033124751 + ], + [ + 5242.926425385796, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5245.597261774998, + "min_y": 5189.166033124751, + "max_x": 5246.763201057378, + "max_y": 5189.166033124751, + "center": [ + 5246.180231416188, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5245.597261774998, + 5189.166033124751 + ], + [ + 5246.763201057378, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5250.078511743384, + "min_y": 5189.166033124751, + "max_x": 5259.13327809562, + "max_y": 5189.166033124751, + "center": [ + 5254.605894919502, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5250.078511743384, + 5189.166033124751 + ], + [ + 5259.13327809562, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5211.605266834157, + "min_y": 5189.166033124751, + "max_x": 5213.493012067702, + "max_y": 5189.166033124751, + "center": [ + 5212.54913945093, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5211.605266834157, + 5189.166033124751 + ], + [ + 5213.493012067702, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5214.82450321531, + "min_y": 5189.166033124751, + "max_x": 5214.832357309493, + "max_y": 5189.166033124751, + "center": [ + 5214.8284302624015, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5214.82450321531, + 5189.166033124751 + ], + [ + 5214.832357309493, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5216.163848457001, + "min_y": 5189.166033124751, + "max_x": 5218.043739596506, + "max_y": 5189.166033124751, + "center": [ + 5217.103794026754, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5216.163848457001, + 5189.166033124751 + ], + [ + 5218.043739596506, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5191.094310530787, + "min_y": 5189.166033124751, + "max_x": 5192.931257051019, + "max_y": 5189.166033124751, + "center": [ + 5192.012783790903, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5192.931257051019, + 5189.166033124751 + ], + [ + 5191.094310530787, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5184.27423308043, + "min_y": 5189.166033124751, + "max_x": 5187.778999844782, + "max_y": 5189.166033124751, + "center": [ + 5186.026616462606, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5187.778999844782, + 5189.166033124751 + ], + [ + 5184.27423308043, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5242.926425385796, + "min_y": 5188.397296352214, + "max_x": 5242.926425385796, + "max_y": 5189.939304460523, + "center": [ + 5242.926425385796, + 5189.168300406369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5242.926425385796, + 5189.939304460523 + ], + [ + 5242.926425385796, + 5188.397296352214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5245.597261774998, + "min_y": 5188.397296352214, + "max_x": 5245.597261774998, + "max_y": 5189.939304460523, + "center": [ + 5245.597261774998, + 5189.168300406369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5245.597261774998, + 5189.939304460523 + ], + [ + 5245.597261774998, + 5188.397296352214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5242.926425385796, + "min_y": 5189.339405081447, + "max_x": 5245.597261774998, + "max_y": 5189.339405081447, + "center": [ + 5244.261843580397, + 5189.339405081447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5242.926425385796, + 5189.339405081447 + ], + [ + 5245.597261774998, + 5189.339405081447 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5243.256955604756, + "min_y": 5188.328360790332, + "max_x": 5244.994807739433, + "max_y": 5189.339405081447, + "center": [ + 5244.125881672095, + 5188.833882935889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5244.994807739433, + 5189.339405081447 + ], + [ + 5243.256955604756, + 5188.328360790332 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5245.766769451726, + "min_y": 5188.3952383359, + "max_x": 5245.766769451726, + "max_y": 5189.936827913601, + "center": [ + 5245.766769451726, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5245.766769451726, + 5189.936827913601 + ], + [ + 5245.766769451726, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5242.794961069488, + "min_y": 5188.3952383359, + "max_x": 5242.794961069488, + "max_y": 5189.936827913601, + "center": [ + 5242.794961069488, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5242.794961069488, + 5189.936827913601 + ], + [ + 5242.794961069488, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5231.105976955852, + "min_y": 5188.397296352214, + "max_x": 5231.105976955852, + "max_y": 5189.939304460523, + "center": [ + 5231.105976955852, + 5189.168300406369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5231.105976955852, + 5188.397296352214 + ], + [ + 5231.105976955852, + 5189.939304460523 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5231.105976955852, + "min_y": 5188.397296352214, + "max_x": 5233.776813345052, + "max_y": 5189.939304460523, + "center": [ + 5232.441395150452, + 5189.168300406369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5231.105976955852, + 5189.939304460523 + ], + [ + 5233.776813345052, + 5188.397296352214 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5233.776813345052, + "min_y": 5188.397296352214, + "max_x": 5233.776813345052, + "max_y": 5189.939304460523, + "center": [ + 5233.776813345052, + 5189.168300406369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5233.776813345052, + 5188.397296352214 + ], + [ + 5233.776813345052, + 5189.939304460523 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5234.109196460047, + "min_y": 5188.3952383359, + "max_x": 5234.109196460047, + "max_y": 5189.936827913601, + "center": [ + 5234.109196460047, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5234.109196460047, + 5189.936827913601 + ], + [ + 5234.109196460047, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5230.828603392894, + "min_y": 5188.3952383359, + "max_x": 5230.828603392894, + "max_y": 5189.936827913601, + "center": [ + 5230.828603392894, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5230.828603392894, + 5189.936827913601 + ], + [ + 5230.828603392894, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5241.016544313445, + "min_y": 5188.3952383359, + "max_x": 5241.016544313445, + "max_y": 5189.936827913601, + "center": [ + 5241.016544313445, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5241.016544313445, + 5189.936827913601 + ], + [ + 5241.016544313445, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5236.063753131332, + "min_y": 5188.3952383359, + "max_x": 5236.063753131332, + "max_y": 5189.936827913601, + "center": [ + 5236.063753131332, + 5189.16603312475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5236.063753131332, + 5189.936827913601 + ], + [ + 5236.063753131332, + 5188.3952383359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5184.27423308043, + "min_y": 5189.166033124751, + "max_x": 5184.27423308043, + "max_y": 5238.916550711468, + "center": [ + 5184.27423308043, + 5214.041291918109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5184.27423308043, + 5189.166033124751 + ], + [ + 5184.27423308043, + 5238.916550711468 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5184.27423308043, + "min_y": 5238.916550711468, + "max_x": 5273.566640938689, + "max_y": 5238.916550711468, + "center": [ + 5228.9204370095595, + 5238.916550711468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5184.27423308043, + 5238.916550711468 + ], + [ + 5273.566640938689, + 5238.916550711468 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5214.824503215408, + "min_y": 5189.166033124751, + "max_x": 5214.832357309293, + "max_y": 5189.166033124751, + "center": [ + 5214.828430262351, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5214.824503215408, + 5189.166033124751 + ], + [ + 5214.832357309293, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5216.393663232464, + "min_y": 5188.395238335933, + "max_x": 5216.393663232464, + "max_y": 5189.936827913634, + "center": [ + 5216.393663232464, + 5189.166033124784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5216.393663232464, + 5189.936827913634 + ], + [ + 5216.393663232464, + 5188.395238335933 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5213.255740411796, + "min_y": 5188.395238335933, + "max_x": 5213.255740411796, + "max_y": 5189.936827913634, + "center": [ + 5213.255740411796, + 5189.166033124784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5213.255740411796, + 5189.936827913634 + ], + [ + 5213.255740411796, + 5188.395238335933 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5264.289414856857, + "min_y": 5214.764313219624, + "max_x": 5264.289414856857, + "max_y": 5221.932051225588, + "center": [ + 5264.289414856857, + 5218.348182222606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5264.289414856857, + 5214.764313219624 + ], + [ + 5264.289414856857, + 5221.932051225588 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5250.644383760364, + "min_y": 5221.932051225588, + "max_x": 5264.289414856857, + "max_y": 5221.932051225588, + "center": [ + 5257.466899308611, + 5221.932051225588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5264.289414856857, + 5221.932051225588 + ], + [ + 5250.644383760364, + 5221.932051225588 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5251.345696600343, + "min_y": 5219.977400692503, + "max_x": 5256.955350685469, + "max_y": 5221.535637938371, + "center": [ + 5254.150523642906, + 5220.756519315437 + ] + }, + "raw_value": "급수 25A", + "clean_value": "급수 25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D5F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5263.402471954594, + "min_y": 5212.908595754709, + "max_x": 5266.2072989971575, + "max_y": 5214.466833000577, + "center": [ + 5264.804885475876, + 5213.687714377643 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5252.63515981771, + "min_y": 5222.686556542897, + "max_x": 5260.190249494647, + "max_y": 5224.260533558926, + "center": [ + 5256.412704656179, + 5223.4735450509115 + ] + }, + "raw_value": "25A-CTWS", + "clean_value": "25A-CTWS", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5273.566640938689, + "min_y": 5222.998255010359, + "max_x": 5273.566640938727, + "max_y": 5238.916550711468, + "center": [ + 5273.566640938708, + 5230.957402860913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.566640938689, + 5238.916550711468 + ], + [ + 5273.566640938727, + 5222.998255010359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5273.566640938736, + "min_y": 5211.446289388323, + "max_x": 5273.566640938754, + "max_y": 5219.682944324354, + "center": [ + 5273.566640938745, + 5215.564616856338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.566640938736, + 5219.682944324354 + ], + [ + 5273.566640938754, + 5211.446289388323 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5224.074244275669, + "min_y": 5189.166033124701, + "max_x": 5224.074244275669, + "max_y": 5190.355912337391, + "center": [ + 5224.074244275669, + 5189.760972731046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5224.074244275669, + 5189.166033124701 + ], + [ + 5224.074244275669, + 5190.355912337391 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5224.074244275669, + "min_y": 5191.150804119899, + "max_x": 5224.074244275669, + "max_y": 5193.029614309343, + "center": [ + 5224.074244275669, + 5192.090209214621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5224.074244275669, + 5191.150804119899 + ], + [ + 5224.074244275669, + 5193.029614309343 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D6B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5223.155870347114, + "min_y": 5191.530211748731, + "max_x": 5224.074244275641, + "max_y": 5192.448585677258, + "center": [ + 5223.615057311377, + 5191.989398712994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5223.615057311377, + 5191.989398712994 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D6C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5222.502612821378, + "min_y": 5193.029249218803, + "max_x": 5225.645875729961, + "max_y": 5196.172512127386, + "center": [ + 5224.074244275669, + 5194.600880673094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5224.074244275669, + 5194.600880673094 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5223.100050800741, + "min_y": 5194.123188254455, + "max_x": 5224.670753944576, + "max_y": 5194.995801112142, + "center": [ + 5223.885402372658, + 5194.559494683299 + ] + }, + "raw_value": "P.G", + "clean_value": "P.G", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5291.086308501046, + "min_y": 5178.680689592731, + "max_x": 5291.086308501046, + "max_y": 5181.290467564987, + "center": [ + 5291.086308501046, + 5179.985578578859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5291.086308501046, + 5181.290467564987 + ], + [ + 5291.086308501046, + 5178.680689592731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5291.086308501046, + "min_y": 5178.680689592731, + "max_x": 5293.070045114285, + "max_y": 5178.680689592731, + "center": [ + 5292.078176807665, + 5178.680689592731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5291.086308501046, + 5178.680689592731 + ], + [ + 5293.070045114285, + 5178.680689592731 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D70", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5293.932318024804, + "min_y": 5178.182856095769, + "max_x": 5294.794590935282, + "max_y": 5179.178523089726, + "center": [ + 5294.3634544800425, + 5178.6806895927475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5293.932318024804, + 5178.680689592747 + ], + [ + 5294.794590935282, + 5178.182856095769 + ], + [ + 5294.794590935282, + 5179.178523089726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D71", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5293.070045114327, + "min_y": 5178.182856095769, + "max_x": 5293.932318024804, + "max_y": 5179.178523089726, + "center": [ + 5293.501181569565, + 5178.6806895927475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5293.932318024804, + 5178.680689592747 + ], + [ + 5293.070045114327, + 5178.182856095769 + ], + [ + 5293.070045114327, + 5179.178523089726 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5247.012063579687, + "min_y": 5188.419445557821, + "max_x": 5247.913710843601, + "max_y": 5188.92036070444, + "center": [ + 5247.462887211644, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5247.913710843601, + 5188.92036070444 + ], + [ + 5247.012063579687, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5248.92800195716, + "min_y": 5188.419445557821, + "max_x": 5249.829649221074, + "max_y": 5188.92036070444, + "center": [ + 5249.378825589117, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5248.92800195716, + 5188.92036070444 + ], + [ + 5249.829649221074, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D74", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5247.857339272105, + "min_y": 5188.602515996474, + "max_x": 5248.9843735286595, + "max_y": 5189.729550253029, + "center": [ + 5248.420856400382, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5248.420856400382, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5247.012063579687, + "min_y": 5188.419445557821, + "max_x": 5247.012063579687, + "max_y": 5189.912620691679, + "center": [ + 5247.012063579687, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5247.012063579687, + 5189.912620691679 + ], + [ + 5247.012063579687, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5246.763201057378, + "min_y": 5188.419445557821, + "max_x": 5246.763201057378, + "max_y": 5189.912620691679, + "center": [ + 5246.763201057378, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5246.763201057378, + 5189.912620691679 + ], + [ + 5246.763201057378, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5249.829649221074, + "min_y": 5188.419445557821, + "max_x": 5249.829649221074, + "max_y": 5189.912620691679, + "center": [ + 5249.829649221074, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5249.829649221074, + 5189.912620691679 + ], + [ + 5249.829649221074, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5250.078511743384, + "min_y": 5188.419445557821, + "max_x": 5250.078511743384, + "max_y": 5189.912620691679, + "center": [ + 5250.078511743384, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5250.078511743384, + 5189.912620691679 + ], + [ + 5250.078511743384, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5247.012063579687, + "min_y": 5189.411705545061, + "max_x": 5247.913710843601, + "max_y": 5189.912620691679, + "center": [ + 5247.462887211644, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5247.012063579687, + 5189.912620691679 + ], + [ + 5247.913710843601, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5248.92800195716, + "min_y": 5189.411705545061, + "max_x": 5249.829649221074, + "max_y": 5189.912620691679, + "center": [ + 5249.378825589117, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5249.829649221074, + 5189.912620691679 + ], + [ + 5248.92800195716, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5248.420856400382, + "min_y": 5189.729550253027, + "max_x": 5248.420856400382, + "max_y": 5190.874870114534, + "center": [ + 5248.420856400382, + 5190.3022101837805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5248.420856400382, + 5189.729550253027 + ], + [ + 5248.420856400382, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5248.420856400382, + "min_y": 5190.874870114534, + "max_x": 5249.829649221074, + "max_y": 5190.874870114534, + "center": [ + 5249.125252810728, + 5190.874870114534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5248.420856400382, + 5190.874870114534 + ], + [ + 5249.829649221074, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5226.248668123691, + "min_y": 5188.419445557821, + "max_x": 5227.150315387605, + "max_y": 5188.92036070444, + "center": [ + 5226.699491755648, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5227.150315387605, + 5188.92036070444 + ], + [ + 5226.248668123691, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5228.164606501165, + "min_y": 5188.419445557821, + "max_x": 5229.066253765079, + "max_y": 5188.92036070444, + "center": [ + 5228.615430133122, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5228.164606501165, + 5188.92036070444 + ], + [ + 5229.066253765079, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D7F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5227.093943816108, + "min_y": 5188.602515996474, + "max_x": 5228.220978072663, + "max_y": 5189.729550253029, + "center": [ + 5227.657460944385, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5227.657460944385, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5226.248668123691, + "min_y": 5188.419445557821, + "max_x": 5226.248668123691, + "max_y": 5189.912620691679, + "center": [ + 5226.248668123691, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5226.248668123691, + 5189.912620691679 + ], + [ + 5226.248668123691, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5225.999805601382, + "min_y": 5188.419445557821, + "max_x": 5225.999805601382, + "max_y": 5189.912620691679, + "center": [ + 5225.999805601382, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5225.999805601382, + 5189.912620691679 + ], + [ + 5225.999805601382, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5229.066253765079, + "min_y": 5188.419445557821, + "max_x": 5229.066253765079, + "max_y": 5189.912620691679, + "center": [ + 5229.066253765079, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5229.066253765079, + 5189.912620691679 + ], + [ + 5229.066253765079, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5229.315116287389, + "min_y": 5188.419445557821, + "max_x": 5229.315116287389, + "max_y": 5189.912620691679, + "center": [ + 5229.315116287389, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5229.315116287389, + 5189.912620691679 + ], + [ + 5229.315116287389, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5226.248668123691, + "min_y": 5189.411705545061, + "max_x": 5227.150315387605, + "max_y": 5189.912620691679, + "center": [ + 5226.699491755648, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5226.248668123691, + 5189.912620691679 + ], + [ + 5227.150315387605, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5228.164606501165, + "min_y": 5189.411705545061, + "max_x": 5229.066253765079, + "max_y": 5189.912620691679, + "center": [ + 5228.615430133122, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5229.066253765079, + 5189.912620691679 + ], + [ + 5228.164606501165, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5227.657460944385, + "min_y": 5189.729550253027, + "max_x": 5227.657460944385, + "max_y": 5190.874870114534, + "center": [ + 5227.657460944385, + 5190.3022101837805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5227.657460944385, + 5189.729550253027 + ], + [ + 5227.657460944385, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5227.657460944385, + "min_y": 5190.874870114534, + "max_x": 5229.066253765079, + "max_y": 5190.874870114534, + "center": [ + 5228.361857354732, + 5190.874870114534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5227.657460944385, + 5190.874870114534 + ], + [ + 5229.066253765079, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5188.027862367091, + "min_y": 5188.419445557821, + "max_x": 5188.929509631005, + "max_y": 5188.92036070444, + "center": [ + 5188.478685999048, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5188.929509631005, + 5188.92036070444 + ], + [ + 5188.027862367091, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5189.943800744565, + "min_y": 5188.419445557821, + "max_x": 5190.845448008476, + "max_y": 5188.92036070444, + "center": [ + 5190.39462437652, + 5188.669903131131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5189.943800744565, + 5188.92036070444 + ], + [ + 5190.845448008476, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5188.873138059507, + "min_y": 5188.602515996474, + "max_x": 5190.000172316062, + "max_y": 5189.729550253029, + "center": [ + 5189.436655187785, + 5189.166033124751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5189.436655187785, + 5189.166033124751 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5188.027862367091, + "min_y": 5188.419445557821, + "max_x": 5188.027862367091, + "max_y": 5189.912620691679, + "center": [ + 5188.027862367091, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5188.027862367091, + 5189.912620691679 + ], + [ + 5188.027862367091, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5187.778999844782, + "min_y": 5188.419445557821, + "max_x": 5187.778999844782, + "max_y": 5189.912620691679, + "center": [ + 5187.778999844782, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5187.778999844782, + 5189.912620691679 + ], + [ + 5187.778999844782, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5190.845448008476, + "min_y": 5188.419445557821, + "max_x": 5190.845448008476, + "max_y": 5189.912620691679, + "center": [ + 5190.845448008476, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5190.845448008476, + 5189.912620691679 + ], + [ + 5190.845448008476, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5191.094310530787, + "min_y": 5188.419445557821, + "max_x": 5191.094310530787, + "max_y": 5189.912620691679, + "center": [ + 5191.094310530787, + 5189.166033124749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5191.094310530787, + 5189.912620691679 + ], + [ + 5191.094310530787, + 5188.419445557821 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5188.027862367091, + "min_y": 5189.411705545061, + "max_x": 5188.929509631005, + "max_y": 5189.912620691679, + "center": [ + 5188.478685999048, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5188.027862367091, + 5189.912620691679 + ], + [ + 5188.929509631005, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5189.943800744565, + "min_y": 5189.411705545061, + "max_x": 5190.845448008476, + "max_y": 5189.912620691679, + "center": [ + 5190.39462437652, + 5189.66216311837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5190.845448008476, + 5189.912620691679 + ], + [ + 5189.943800744565, + 5189.411705545061 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5189.436655187785, + "min_y": 5189.729550253027, + "max_x": 5189.436655187785, + "max_y": 5190.874870114534, + "center": [ + 5189.436655187785, + 5190.3022101837805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5189.436655187785, + 5189.729550253027 + ], + [ + 5189.436655187785, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5189.436655187785, + "min_y": 5190.874870114534, + "max_x": 5190.845448008476, + "max_y": 5190.874870114534, + "center": [ + 5190.14105159813, + 5190.874870114534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5189.436655187785, + 5190.874870114534 + ], + [ + 5190.845448008476, + 5190.874870114534 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5273.812313359033, + "min_y": 5219.931806846663, + "max_x": 5274.313228505651, + "max_y": 5220.833454110577, + "center": [ + 5274.062770932342, + 5220.38263047862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.812313359033, + 5220.833454110577 + ], + [ + 5274.313228505651, + 5219.931806846663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5273.812313359033, + "min_y": 5221.847745224136, + "max_x": 5274.313228505651, + "max_y": 5222.74939248805, + "center": [ + 5274.062770932342, + 5222.298568856093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.812313359033, + 5221.847745224136 + ], + [ + 5274.313228505651, + 5222.74939248805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D95", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5273.003123810444, + "min_y": 5220.77708253908, + "max_x": 5274.130158066999, + "max_y": 5221.904116795635, + "center": [ + 5273.566640938721, + 5221.340599667357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.566640938721, + 5221.340599667357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5219.931806846663, + "max_x": 5274.313228505651, + "max_y": 5219.931806846663, + "center": [ + 5273.566640938721, + 5219.931806846663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5219.931806846663 + ], + [ + 5274.313228505651, + 5219.931806846663 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5219.682944324354, + "max_x": 5274.313228505651, + "max_y": 5219.682944324354, + "center": [ + 5273.566640938721, + 5219.682944324354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5219.682944324354 + ], + [ + 5274.313228505651, + 5219.682944324354 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5222.74939248805, + "max_x": 5274.313228505651, + "max_y": 5222.74939248805, + "center": [ + 5273.566640938721, + 5222.74939248805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5222.74939248805 + ], + [ + 5274.313228505651, + 5222.74939248805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5222.998255010359, + "max_x": 5274.313228505651, + "max_y": 5222.998255010359, + "center": [ + 5273.566640938721, + 5222.998255010359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5222.998255010359 + ], + [ + 5274.313228505651, + 5222.998255010359 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5219.931806846663, + "max_x": 5273.320968518412, + "max_y": 5220.833454110577, + "center": [ + 5273.070510945101, + 5220.38263047862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5219.931806846663 + ], + [ + 5273.320968518412, + 5220.833454110577 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5272.820053371791, + "min_y": 5221.847745224136, + "max_x": 5273.320968518412, + "max_y": 5222.74939248805, + "center": [ + 5273.070510945101, + 5222.298568856093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5272.820053371791, + 5222.74939248805 + ], + [ + 5273.320968518412, + 5221.847745224136 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5271.857803948939, + "min_y": 5221.340599667357, + "max_x": 5273.003123810443, + "max_y": 5221.340599667357, + "center": [ + 5272.430463879691, + 5221.340599667357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5273.003123810443, + 5221.340599667357 + ], + [ + 5271.857803948939, + 5221.340599667357 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5271.857803948939, + "min_y": 5221.340599667357, + "max_x": 5271.857803948939, + "max_y": 5222.74939248805, + "center": [ + 5271.857803948939, + 5222.044996077704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5271.857803948939, + 5221.340599667357 + ], + [ + 5271.857803948939, + 5222.74939248805 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5338.601006960429, + "min_y": 5186.168173171376, + "max_x": 5338.601006960429, + "max_y": 5187.661348305234, + "center": [ + 5338.601006960429, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5338.601006960429, + 5186.168173171376 + ], + [ + 5338.601006960429, + 5187.661348305234 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553D9F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5349.936369746355, + "min_y": 5160.036286845169, + "max_x": 5363.3749459510755, + "max_y": 5162.276049545956, + "center": [ + 5356.655657848715, + 5161.156168195563 + ] + }, + "raw_value": "%%UP-6601B", + "clean_value": "P-6601B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553DA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.160439016873, + "min_y": 5186.914760738305, + "max_x": 5338.601006960429, + "max_y": 5186.914760738305, + "center": [ + 5336.3807229886515, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5338.601006960429, + 5186.914760738305 + ], + [ + 5334.160439016873, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5296.943022860922, + "min_y": 5186.168173171376, + "max_x": 5297.844670124835, + "max_y": 5186.669088317995, + "center": [ + 5297.393846492878, + 5186.418630744685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5297.844670124835, + 5186.669088317995 + ], + [ + 5296.943022860922, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5298.858961238393, + "min_y": 5186.168173171376, + "max_x": 5299.760608502307, + "max_y": 5186.669088317995, + "center": [ + 5299.30978487035, + 5186.418630744685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5298.858961238393, + 5186.669088317995 + ], + [ + 5299.760608502307, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5297.788298553337, + "min_y": 5186.351243610027, + "max_x": 5298.915332809892, + "max_y": 5187.478277866582, + "center": [ + 5298.351815681614, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5298.351815681614, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5296.943022860922, + "min_y": 5186.168173171376, + "max_x": 5296.943022860922, + "max_y": 5187.661348305234, + "center": [ + 5296.943022860922, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5296.943022860922, + 5187.661348305234 + ], + [ + 5296.943022860922, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5296.694160338611, + "min_y": 5186.168173171376, + "max_x": 5296.694160338611, + "max_y": 5187.661348305234, + "center": [ + 5296.694160338611, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5296.694160338611, + 5187.661348305234 + ], + [ + 5296.694160338611, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5299.760608502307, + "min_y": 5186.168173171376, + "max_x": 5299.760608502307, + "max_y": 5187.661348305234, + "center": [ + 5299.760608502307, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5299.760608502307, + 5187.661348305234 + ], + [ + 5299.760608502307, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5300.009471024617, + "min_y": 5186.168173171376, + "max_x": 5300.009471024617, + "max_y": 5187.661348305234, + "center": [ + 5300.009471024617, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5300.009471024617, + 5187.661348305234 + ], + [ + 5300.009471024617, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5296.943022860922, + "min_y": 5187.160433158616, + "max_x": 5297.844670124835, + "max_y": 5187.661348305234, + "center": [ + 5297.393846492878, + 5187.410890731925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5296.943022860922, + 5187.661348305234 + ], + [ + 5297.844670124835, + 5187.160433158616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5298.858961238393, + "min_y": 5187.160433158616, + "max_x": 5299.760608502307, + "max_y": 5187.661348305234, + "center": [ + 5299.30978487035, + 5187.410890731925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5299.760608502307, + 5187.661348305234 + ], + [ + 5298.858961238393, + 5187.160433158616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5298.351815681614, + "min_y": 5187.478277866582, + "max_x": 5298.351815681614, + "max_y": 5188.623597728089, + "center": [ + 5298.351815681614, + 5188.050937797336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5298.351815681614, + 5187.478277866582 + ], + [ + 5298.351815681614, + 5188.623597728089 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5298.351815681614, + "min_y": 5188.623597728089, + "max_x": 5299.760608502307, + "max_y": 5188.623597728089, + "center": [ + 5299.05621209196, + 5188.623597728089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5298.351815681614, + 5188.623597728089 + ], + [ + 5299.760608502307, + 5188.623597728089 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.389314970544, + "min_y": 5184.595362294252, + "max_x": 5336.389314970544, + "max_y": 5186.914760738305, + "center": [ + 5336.389314970544, + 5185.755061516278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.389314970544, + 5186.914760738305 + ], + [ + 5336.389314970544, + 5184.595362294252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.634987390853, + "min_y": 5181.528914130556, + "max_x": 5337.135902537472, + "max_y": 5182.43056139447, + "center": [ + 5336.885444964162, + 5181.979737762513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.634987390853, + 5182.43056139447 + ], + [ + 5337.135902537472, + 5181.528914130556 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.634987390853, + "min_y": 5183.444852508027, + "max_x": 5337.135902537472, + "max_y": 5184.346499771943, + "center": [ + 5336.885444964162, + 5183.895676139985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.634987390853, + 5183.444852508027 + ], + [ + 5337.135902537472, + 5184.346499771943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DAF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5335.825797842266, + "min_y": 5182.374189822971, + "max_x": 5336.952832098821, + "max_y": 5183.501224079526, + "center": [ + 5336.389314970544, + 5182.937706951248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.389314970544, + 5182.937706951248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5181.528914130556, + "max_x": 5337.135902537472, + "max_y": 5181.528914130556, + "center": [ + 5336.389314970544, + 5181.528914130556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5181.528914130556 + ], + [ + 5337.135902537472, + 5181.528914130556 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5181.280051608246, + "max_x": 5337.135902537472, + "max_y": 5181.280051608246, + "center": [ + 5336.389314970544, + 5181.280051608246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5181.280051608246 + ], + [ + 5337.135902537472, + 5181.280051608246 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5184.346499771943, + "max_x": 5337.135902537472, + "max_y": 5184.346499771943, + "center": [ + 5336.389314970544, + 5184.346499771943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5184.346499771943 + ], + [ + 5337.135902537472, + 5184.346499771943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5184.595362294252, + "max_x": 5337.135902537472, + "max_y": 5184.595362294252, + "center": [ + 5336.389314970544, + 5184.595362294252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5184.595362294252 + ], + [ + 5337.135902537472, + 5184.595362294252 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5181.528914130556, + "max_x": 5336.143642550235, + "max_y": 5182.43056139447, + "center": [ + 5335.893184976925, + 5181.979737762513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5181.528914130556 + ], + [ + 5336.143642550235, + 5182.43056139447 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.642727403614, + "min_y": 5183.444852508027, + "max_x": 5336.143642550235, + "max_y": 5184.346499771943, + "center": [ + 5335.893184976925, + 5183.895676139985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.642727403614, + 5184.346499771943 + ], + [ + 5336.143642550235, + 5183.444852508027 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.680477980761, + "min_y": 5182.937706951248, + "max_x": 5335.825797842266, + "max_y": 5182.937706951248, + "center": [ + 5335.2531379115135, + 5182.937706951248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.825797842266, + 5182.937706951248 + ], + [ + 5334.680477980761, + 5182.937706951248 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.680477980761, + "min_y": 5182.937706951248, + "max_x": 5334.680477980761, + "max_y": 5184.346499771943, + "center": [ + 5334.680477980761, + 5183.642103361595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5334.680477980761, + 5182.937706951248 + ], + [ + 5334.680477980761, + 5184.346499771943 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.389314970544, + "min_y": 5179.779287000314, + "max_x": 5336.389314970544, + "max_y": 5181.280051608246, + "center": [ + 5336.389314970544, + 5180.52966930428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.389314970544, + 5181.280051608246 + ], + [ + 5336.389314970544, + 5179.779287000314 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.826134040829, + "min_y": 5179.415931722421, + "max_x": 5335.826134040829, + "max_y": 5180.115650281274, + "center": [ + 5335.826134040829, + 5179.765791001848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.826134040829, + 5180.115650281274 + ], + [ + 5335.826134040829, + 5179.415931722421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5335.826134040829, + "min_y": 5179.415931722419, + "max_x": 5336.952495900259, + "max_y": 5179.415931722421, + "center": [ + 5336.389314970544, + 5179.41593172242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5335.826134040829, + 5179.415931722421 + ], + [ + 5336.952495900259, + 5179.415931722419 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.952495900259, + "min_y": 5179.415931722421, + "max_x": 5336.952495900259, + "max_y": 5180.115650281274, + "center": [ + 5336.952495900259, + 5179.765791001848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.952495900259, + 5180.115650281274 + ], + [ + 5336.952495900259, + 5179.415931722421 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5340.900533822776, + "min_y": 5183.15281946986, + "max_x": 5348.424416359665, + "max_y": 5190.676702006749, + "center": [ + 5344.662475091221, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.662475091221, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5340.291131107422, + "min_y": 5180.227735101835, + "max_x": 5342.38015974647, + "max_y": 5183.924235905823, + "center": [ + 5341.335645426946, + 5182.075985503829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5342.38015974647, + 5183.924235905823 + ], + [ + 5340.291131107422, + 5180.227735101835 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.944790435975, + "min_y": 5180.227735101835, + "max_x": 5349.033819075019, + "max_y": 5183.924235905823, + "center": [ + 5347.989304755497, + 5182.075985503829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.944790435975, + 5183.924235905823 + ], + [ + 5349.033819075019, + 5180.227735101835 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5340.291131107422, + "min_y": 5180.227735101835, + "max_x": 5349.033819075019, + "max_y": 5180.227735101835, + "center": [ + 5344.662475091221, + 5180.227735101835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5349.033819075019, + 5180.227735101835 + ], + [ + 5340.291131107422, + 5180.227735101835 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5343.827201489641, + "min_y": 5186.079487136725, + "max_x": 5345.4977486928, + "max_y": 5187.750034339884, + "center": [ + 5344.662475091221, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.662475091221, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.424416359667, + "min_y": 5186.914760738305, + "max_x": 5348.424416359667, + "max_y": 5192.277716852754, + "center": [ + 5348.424416359667, + 5189.59623879553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359667, + 5186.914760738305 + ], + [ + 5348.424416359667, + 5192.277716852754 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5338.849869482737, + "min_y": 5186.914760738305, + "max_x": 5344.662475091221, + "max_y": 5186.914760738305, + "center": [ + 5341.756172286979, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.662475091221, + 5186.914760738305 + ], + [ + 5338.849869482737, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5192.526579375064, + "max_x": 5349.171003926596, + "max_y": 5192.526579375064, + "center": [ + 5348.424416359667, + 5192.526579375064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5192.526579375064 + ], + [ + 5349.171003926596, + 5192.526579375064 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5192.277716852754, + "max_x": 5349.171003926596, + "max_y": 5192.277716852754, + "center": [ + 5348.424416359667, + 5192.277716852754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5192.277716852754 + ], + [ + 5349.171003926596, + 5192.277716852754 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5338.849869482737, + "min_y": 5186.168173171376, + "max_x": 5338.849869482737, + "max_y": 5187.661348305234, + "center": [ + 5338.849869482737, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5338.849869482737, + 5186.168173171376 + ], + [ + 5338.849869482737, + 5187.661348305234 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5333.911576494561, + "min_y": 5186.168173171376, + "max_x": 5333.911576494561, + "max_y": 5187.661348305234, + "center": [ + 5333.911576494561, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5333.911576494561, + 5187.661348305234 + ], + [ + 5333.911576494561, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.160439016873, + "min_y": 5186.168173171376, + "max_x": 5334.160439016873, + "max_y": 5187.661348305234, + "center": [ + 5334.160439016873, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5334.160439016873, + 5187.661348305234 + ], + [ + 5334.160439016873, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5331.124316244693, + "min_y": 5186.168173171376, + "max_x": 5331.124316244693, + "max_y": 5187.661348305234, + "center": [ + 5331.124316244693, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5331.124316244693, + 5187.661348305234 + ], + [ + 5331.124316244693, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5330.875453722384, + "min_y": 5186.168173171376, + "max_x": 5330.875453722384, + "max_y": 5187.661348305234, + "center": [ + 5330.875453722384, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5330.875453722384, + 5187.661348305234 + ], + [ + 5330.875453722384, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5331.124316244693, + "min_y": 5186.914760738305, + "max_x": 5333.911576494561, + "max_y": 5186.914760738305, + "center": [ + 5332.517946369627, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5333.911576494561, + 5186.914760738305 + ], + [ + 5331.124316244693, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5332.035384020768, + "min_y": 5185.506981721439, + "max_x": 5333.443163037635, + "max_y": 5186.914760738305, + "center": [ + 5332.7392735292015, + 5186.210871229872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5333.443163037635, + 5185.506981721439 + ], + [ + 5332.035384020768, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5333.020829332576, + "min_y": 5185.084648016378, + "max_x": 5333.865496742696, + "max_y": 5185.929315426498, + "center": [ + 5333.443163037637, + 5185.506981721438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5333.020829332576, + 5185.084648016378 + ], + [ + 5333.865496742696, + 5185.929315426498 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5333.196801709684, + "min_y": 5184.90867563927, + "max_x": 5334.041469119804, + "max_y": 5185.75334304939, + "center": [ + 5333.619135414744, + 5185.331009344331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5333.196801709684, + 5184.90867563927 + ], + [ + 5334.041469119804, + 5185.75334304939 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5293.653896005142, + "min_y": 5186.914760738305, + "max_x": 5296.694160338611, + "max_y": 5186.914760738305, + "center": [ + 5295.174028171877, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5293.653896005142, + 5186.914760738305 + ], + [ + 5296.694160338611, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5300.009471024617, + "min_y": 5186.914760738305, + "max_x": 5325.507001811011, + "max_y": 5186.914760738305, + "center": [ + 5312.758236417814, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5300.009471024617, + 5186.914760738305 + ], + [ + 5325.507001811011, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5328.822312497017, + "min_y": 5186.914760738305, + "max_x": 5330.875453722384, + "max_y": 5186.914760738305, + "center": [ + 5329.8488831097, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5328.822312497017, + 5186.914760738305 + ], + [ + 5330.875453722384, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.424416359667, + "min_y": 5192.526579375064, + "max_x": 5348.424416359667, + "max_y": 5193.751638222955, + "center": [ + 5348.424416359667, + 5193.13910879901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359667, + 5192.526579375064 + ], + [ + 5348.424416359667, + 5193.751638222955 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.630950904555, + "min_y": 5203.072136268258, + "max_x": 5363.630950904555, + "max_y": 5205.063036446735, + "center": [ + 5363.630950904555, + 5204.067586357496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5205.063036446735 + ], + [ + 5363.630950904555, + 5203.072136268258 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.876623324864, + "min_y": 5205.311898969045, + "max_x": 5364.377538471484, + "max_y": 5206.213546232958, + "center": [ + 5364.1270808981735, + 5205.762722601001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.876623324864, + 5206.213546232958 + ], + [ + 5364.377538471484, + 5205.311898969045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.876623324864, + "min_y": 5207.227837346517, + "max_x": 5364.377538471484, + "max_y": 5208.129484610431, + "center": [ + 5364.1270808981735, + 5207.678660978474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.876623324864, + 5207.227837346517 + ], + [ + 5364.377538471484, + 5208.129484610431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5363.0674337762775, + "min_y": 5206.15717466146, + "max_x": 5364.194468032832, + "max_y": 5207.284208918015, + "center": [ + 5363.630950904555, + 5206.720691789737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5206.720691789737 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5205.311898969045, + "max_x": 5364.377538471484, + "max_y": 5205.311898969045, + "center": [ + 5363.630950904554, + 5205.311898969045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5205.311898969045 + ], + [ + 5364.377538471484, + 5205.311898969045 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5205.063036446735, + "max_x": 5364.377538471484, + "max_y": 5205.063036446735, + "center": [ + 5363.630950904554, + 5205.063036446735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5205.063036446735 + ], + [ + 5364.377538471484, + 5205.063036446735 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5208.129484610431, + "max_x": 5364.377538471484, + "max_y": 5208.129484610431, + "center": [ + 5363.630950904554, + 5208.129484610431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5208.129484610431 + ], + [ + 5364.377538471484, + 5208.129484610431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5208.378347132741, + "max_x": 5364.377538471484, + "max_y": 5208.378347132741, + "center": [ + 5363.630950904554, + 5208.378347132741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5208.378347132741 + ], + [ + 5364.377538471484, + 5208.378347132741 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5205.311898969045, + "max_x": 5363.385278484244, + "max_y": 5206.213546232958, + "center": [ + 5363.134820910935, + 5205.762722601001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5205.311898969045 + ], + [ + 5363.385278484244, + 5206.213546232958 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5207.227837346517, + "max_x": 5363.385278484244, + "max_y": 5208.129484610431, + "center": [ + 5363.134820910935, + 5207.678660978474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5208.129484610431 + ], + [ + 5363.385278484244, + 5207.227837346517 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5361.92211391477, + "min_y": 5206.720691789737, + "max_x": 5363.067433776278, + "max_y": 5206.720691789737, + "center": [ + 5362.494773845525, + 5206.720691789737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.067433776278, + 5206.720691789737 + ], + [ + 5361.92211391477, + 5206.720691789737 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5361.92211391477, + "min_y": 5206.720691789737, + "max_x": 5361.92211391477, + "max_y": 5208.129484610431, + "center": [ + 5361.92211391477, + 5207.425088200084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5361.92211391477, + 5206.720691789737 + ], + [ + 5361.92211391477, + 5208.129484610431 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.630950904555, + "min_y": 5212.833159496611, + "max_x": 5363.630950904555, + "max_y": 5213.704178324695, + "center": [ + 5363.630950904555, + 5213.268668910653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5212.833159496611 + ], + [ + 5363.630950904555, + 5213.704178324695 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.630950904555, + "min_y": 5214.509294340665, + "max_x": 5363.630950904555, + "max_y": 5215.131450646439, + "center": [ + 5363.630950904555, + 5214.820372493552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5214.509294340665 + ], + [ + 5363.630950904555, + 5215.131450646439 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5360.831247528571, + "min_y": 5215.131450646439, + "max_x": 5366.430654280539, + "max_y": 5220.730857398406, + "center": [ + 5363.630950904555, + 5217.931154022423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5217.931154022423 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5362.582285389741, + "min_y": 5217.138694199589, + "max_x": 5364.37409555037, + "max_y": 5218.631869333447, + "center": [ + 5363.478190470056, + 5217.885281766517 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5212.833159496612, + "max_x": 5364.377538471484, + "max_y": 5212.833159496612, + "center": [ + 5363.630950904554, + 5212.833159496612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5212.833159496612 + ], + [ + 5364.377538471484, + 5212.833159496612 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.884363337625, + "min_y": 5212.584296974302, + "max_x": 5364.377538471484, + "max_y": 5212.584296974302, + "center": [ + 5363.630950904554, + 5212.584296974302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.884363337625, + 5212.584296974302 + ], + [ + 5364.377538471484, + 5212.584296974302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.282922403121, + "min_y": 5209.734734486593, + "max_x": 5358.184569667035, + "max_y": 5210.235649633212, + "center": [ + 5357.733746035078, + 5209.985192059903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.184569667035, + 5210.235649633212 + ], + [ + 5357.282922403121, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.198860780594, + "min_y": 5209.734734486593, + "max_x": 5360.100508044508, + "max_y": 5210.235649633212, + "center": [ + 5359.649684412551, + 5209.985192059903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.198860780594, + 5210.235649633212 + ], + [ + 5360.100508044508, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5358.128198095538, + "min_y": 5209.917804925243, + "max_x": 5359.255232352093, + "max_y": 5211.044839181798, + "center": [ + 5358.691715223816, + 5210.481322053521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.691715223816, + 5210.481322053521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.282922403121, + "min_y": 5209.734734486593, + "max_x": 5357.282922403121, + "max_y": 5211.227909620451, + "center": [ + 5357.282922403121, + 5210.481322053522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.282922403121, + 5211.227909620451 + ], + [ + 5357.282922403121, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.034059880812, + "min_y": 5209.734734486593, + "max_x": 5357.034059880812, + "max_y": 5211.227909620451, + "center": [ + 5357.034059880812, + 5210.481322053522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.034059880812, + 5211.227909620451 + ], + [ + 5357.034059880812, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5360.100508044508, + "min_y": 5209.734734486593, + "max_x": 5360.100508044508, + "max_y": 5211.227909620451, + "center": [ + 5360.100508044508, + 5210.481322053522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5360.100508044508, + 5211.227909620451 + ], + [ + 5360.100508044508, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5360.349370566819, + "min_y": 5209.734734486593, + "max_x": 5360.349370566819, + "max_y": 5211.227909620451, + "center": [ + 5360.349370566819, + 5210.481322053522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5360.349370566819, + 5211.227909620451 + ], + [ + 5360.349370566819, + 5209.734734486593 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.282922403121, + "min_y": 5210.726994473832, + "max_x": 5358.184569667035, + "max_y": 5211.227909620451, + "center": [ + 5357.733746035078, + 5210.977452047142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.282922403121, + 5211.227909620451 + ], + [ + 5358.184569667035, + 5210.726994473832 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.198860780594, + "min_y": 5210.726994473832, + "max_x": 5360.100508044508, + "max_y": 5211.227909620451, + "center": [ + 5359.649684412551, + 5210.977452047142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5360.100508044508, + 5211.227909620451 + ], + [ + 5359.198860780594, + 5210.726994473832 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.691715223816, + "min_y": 5211.044839181798, + "max_x": 5358.691715223816, + "max_y": 5212.190159043305, + "center": [ + 5358.691715223816, + 5211.617499112552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.691715223816, + 5211.044839181798 + ], + [ + 5358.691715223816, + 5212.190159043305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.691715223816, + "min_y": 5212.190159043305, + "max_x": 5360.100508044508, + "max_y": 5212.190159043305, + "center": [ + 5359.396111634162, + 5212.190159043305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.691715223816, + 5212.190159043305 + ], + [ + 5360.100508044508, + 5212.190159043305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.424416359797, + "min_y": 5197.066948908958, + "max_x": 5348.424416359797, + "max_y": 5199.430179104041, + "center": [ + 5348.424416359797, + 5198.248564006499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359797, + 5197.066948908958 + ], + [ + 5348.424416359797, + 5199.430179104041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.424416359797, + "min_y": 5197.066948908958, + "max_x": 5348.424416359797, + "max_y": 5199.430179104041, + "center": [ + 5348.424416359797, + 5198.248564006499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359797, + 5197.066948908958 + ], + [ + 5348.424416359797, + 5199.430179104041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.670088780107, + "min_y": 5199.679041626351, + "max_x": 5349.171003926725, + "max_y": 5200.580688890265, + "center": [ + 5348.920546353416, + 5200.129865258308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.670088780107, + 5200.580688890265 + ], + [ + 5349.171003926725, + 5199.679041626351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.670088780107, + "min_y": 5201.594980003823, + "max_x": 5349.171003926725, + "max_y": 5202.496627267738, + "center": [ + 5348.920546353416, + 5202.045803635781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.670088780107, + 5201.594980003823 + ], + [ + 5349.171003926725, + 5202.496627267738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5347.860899231519, + "min_y": 5200.5243173187655, + "max_x": 5348.987933488074, + "max_y": 5201.65135157532, + "center": [ + 5348.424416359797, + 5201.087834447043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359797, + 5201.087834447043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5199.679041626351, + "max_x": 5349.171003926725, + "max_y": 5199.679041626351, + "center": [ + 5348.424416359796, + 5199.679041626351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5199.679041626351 + ], + [ + 5349.171003926725, + 5199.679041626351 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5199.430179104041, + "max_x": 5349.171003926725, + "max_y": 5199.430179104041, + "center": [ + 5348.424416359796, + 5199.430179104041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5199.430179104041 + ], + [ + 5349.171003926725, + 5199.430179104041 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5202.496627267738, + "max_x": 5349.171003926725, + "max_y": 5202.496627267738, + "center": [ + 5348.424416359796, + 5202.496627267738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5202.496627267738 + ], + [ + 5349.171003926725, + 5202.496627267738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5202.745489790046, + "max_x": 5349.171003926725, + "max_y": 5202.745489790046, + "center": [ + 5348.424416359796, + 5202.745489790046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5202.745489790046 + ], + [ + 5349.171003926725, + 5202.745489790046 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5199.679041626351, + "max_x": 5348.178743939486, + "max_y": 5200.580688890265, + "center": [ + 5347.928286366177, + 5200.129865258308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5199.679041626351 + ], + [ + 5348.178743939486, + 5200.580688890265 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792868, + "min_y": 5201.594980003823, + "max_x": 5348.178743939486, + "max_y": 5202.496627267738, + "center": [ + 5347.928286366177, + 5202.045803635781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792868, + 5202.496627267738 + ], + [ + 5348.178743939486, + 5201.594980003823 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.715579370012, + "min_y": 5201.087834447043, + "max_x": 5347.86089923152, + "max_y": 5201.087834447043, + "center": [ + 5347.288239300766, + 5201.087834447043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.86089923152, + 5201.087834447043 + ], + [ + 5346.715579370012, + 5201.087834447043 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.715579370012, + "min_y": 5201.087834447043, + "max_x": 5346.715579370012, + "max_y": 5202.496627267738, + "center": [ + 5346.715579370012, + 5201.792230857391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.715579370012, + 5201.087834447043 + ], + [ + 5346.715579370012, + 5202.496627267738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.06776997484, + "min_y": 5202.708780990363, + "max_x": 5363.06776997484, + "max_y": 5203.408499549219, + "center": [ + 5363.06776997484, + 5203.058640269792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.06776997484, + 5203.408499549219 + ], + [ + 5363.06776997484, + 5202.708780990363 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.06776997484, + "min_y": 5202.708780990363, + "max_x": 5364.19413183427, + "max_y": 5202.708780990363, + "center": [ + 5363.630950904555, + 5202.708780990363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.06776997484, + 5202.708780990363 + ], + [ + 5364.19413183427, + 5202.708780990363 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5364.19413183427, + "min_y": 5202.708780990363, + "max_x": 5364.19413183427, + "max_y": 5203.408499549219, + "center": [ + 5364.19413183427, + 5203.058640269792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.19413183427, + 5203.408499549219 + ], + [ + 5364.19413183427, + 5202.708780990363 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553DFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5364.564185363217, + "min_y": 5213.704178324695, + "max_x": 5364.564185363217, + "max_y": 5214.509294340665, + "center": [ + 5364.564185363217, + 5214.10673633268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.564185363217, + 5213.704178324695 + ], + [ + 5364.564185363217, + 5214.509294340665 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.697716445893, + "min_y": 5213.704178324695, + "max_x": 5362.697716445893, + "max_y": 5214.509294340665, + "center": [ + 5362.697716445893, + 5214.10673633268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5362.697716445893, + 5213.704178324695 + ], + [ + 5362.697716445893, + 5214.509294340665 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.697716445893, + "min_y": 5213.704178324695, + "max_x": 5364.564185363217, + "max_y": 5213.704178324695, + "center": [ + 5363.630950904555, + 5213.704178324695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.564185363217, + 5213.704178324695 + ], + [ + 5362.697716445893, + 5213.704178324695 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5362.697716445893, + "min_y": 5214.509294340665, + "max_x": 5364.564185363217, + "max_y": 5214.509294340665, + "center": [ + 5363.630950904555, + 5214.509294340665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5364.564185363217, + 5214.509294340665 + ], + [ + 5362.697716445893, + 5214.509294340665 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E03", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5360.788629674876, + "min_y": 5208.532103531244, + "max_x": 5366.473272134069, + "max_y": 5214.216745990437, + "center": [ + 5363.630950904472, + 5211.37442476084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904472, + 5211.37442476084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5194.000500745262, + "max_x": 5349.171003926596, + "max_y": 5194.000500745262, + "center": [ + 5348.424416359667, + 5194.000500745262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5194.000500745262 + ], + [ + 5349.171003926596, + 5194.000500745262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5193.751638222955, + "max_x": 5349.171003926596, + "max_y": 5193.751638222955, + "center": [ + 5348.424416359667, + 5193.751638222955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5193.751638222955 + ], + [ + 5349.171003926596, + 5193.751638222955 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5196.81808638665, + "max_x": 5349.171003926596, + "max_y": 5196.81808638665, + "center": [ + 5348.424416359667, + 5196.81808638665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5196.81808638665 + ], + [ + 5349.171003926596, + 5196.81808638665 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5197.066948908959, + "max_x": 5349.171003926596, + "max_y": 5197.066948908959, + "center": [ + 5348.424416359667, + 5197.066948908959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.677828792737, + 5197.066948908959 + ], + [ + 5349.171003926596, + 5197.066948908959 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E09", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5347.677828792737, + "min_y": 5194.000500745262, + "max_x": 5348.646610442356, + "max_y": 5195.828568467335, + "center": [ + 5348.162219617547, + 5194.914534606298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.646610442356, + 5195.828568467335 + ], + [ + 5347.677828792737, + 5194.000500745262 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5363.630950904555, + "min_y": 5208.378347132741, + "max_x": 5363.630950904555, + "max_y": 5212.584296974302, + "center": [ + 5363.630950904555, + 5210.481322053522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5208.378347132741 + ], + [ + 5363.630950904555, + 5212.584296974302 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5360.349370566819, + "min_y": 5210.481322053521, + "max_x": 5363.630950904555, + "max_y": 5210.481322053521, + "center": [ + 5361.990160735687, + 5210.481322053521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5363.630950904555, + 5210.481322053521 + ], + [ + 5360.349370566819, + 5210.481322053521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5353.752479543076, + "min_y": 5210.481322053521, + "max_x": 5357.034059880812, + "max_y": 5210.481322053521, + "center": [ + 5355.3932697119435, + 5210.481322053521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.034059880812, + 5210.481322053521 + ], + [ + 5353.752479543076, + 5210.481322053521 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5353.752479542964, + "min_y": 5204.854641284858, + "max_x": 5353.752479543087, + "max_y": 5280.475982396627, + "center": [ + 5353.752479543025, + 5242.665311840743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5353.752479543087, + 5204.854641284858 + ], + [ + 5353.752479542964, + 5280.475982396627 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.755864333321, + "min_y": 5186.168173171376, + "max_x": 5326.657511597233, + "max_y": 5186.669088317995, + "center": [ + 5326.2066879652775, + 5186.418630744685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5326.657511597233, + 5186.669088317995 + ], + [ + 5325.755864333321, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5327.671802710795, + "min_y": 5186.168173171376, + "max_x": 5328.573449974708, + "max_y": 5186.669088317995, + "center": [ + 5328.122626342752, + 5186.418630744685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5327.671802710795, + 5186.669088317995 + ], + [ + 5328.573449974708, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E10", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5326.601140025738, + "min_y": 5186.351243610027, + "max_x": 5327.7281742822925, + "max_y": 5187.478277866582, + "center": [ + 5327.164657154015, + 5186.914760738305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5327.164657154015, + 5186.914760738305 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.755864333321, + "min_y": 5186.168173171376, + "max_x": 5325.755864333321, + "max_y": 5187.661348305234, + "center": [ + 5325.755864333321, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.755864333321, + 5187.661348305234 + ], + [ + 5325.755864333321, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.507001811011, + "min_y": 5186.168173171376, + "max_x": 5325.507001811011, + "max_y": 5187.661348305234, + "center": [ + 5325.507001811011, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.507001811011, + 5187.661348305234 + ], + [ + 5325.507001811011, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5328.573449974708, + "min_y": 5186.168173171376, + "max_x": 5328.573449974708, + "max_y": 5187.661348305234, + "center": [ + 5328.573449974708, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5328.573449974708, + 5187.661348305234 + ], + [ + 5328.573449974708, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5328.822312497017, + "min_y": 5186.168173171376, + "max_x": 5328.822312497017, + "max_y": 5187.661348305234, + "center": [ + 5328.822312497017, + 5186.914760738306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5328.822312497017, + 5187.661348305234 + ], + [ + 5328.822312497017, + 5186.168173171376 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.755864333321, + "min_y": 5187.160433158616, + "max_x": 5326.657511597233, + "max_y": 5187.661348305234, + "center": [ + 5326.2066879652775, + 5187.410890731925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.755864333321, + 5187.661348305234 + ], + [ + 5326.657511597233, + 5187.160433158616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5327.671802710795, + "min_y": 5187.160433158616, + "max_x": 5328.573449974708, + "max_y": 5187.661348305234, + "center": [ + 5328.122626342752, + 5187.410890731925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5328.573449974708, + 5187.661348305234 + ], + [ + 5327.671802710795, + 5187.160433158616 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5327.164657154015, + "min_y": 5187.478277866582, + "max_x": 5327.164657154015, + "max_y": 5188.623597728089, + "center": [ + 5327.164657154015, + 5188.050937797336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5327.164657154015, + 5187.478277866582 + ], + [ + 5327.164657154015, + 5188.623597728089 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5327.164657154015, + "min_y": 5188.623597728089, + "max_x": 5328.573449974708, + "max_y": 5188.623597728089, + "center": [ + 5327.869053564362, + 5188.623597728089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5327.164657154015, + 5188.623597728089 + ], + [ + 5328.573449974708, + 5188.623597728089 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5349.257133327066, + "min_y": 5171.047873067851, + "max_x": 5349.257133327066, + "max_y": 5172.54104820171, + "center": [ + 5349.257133327066, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5349.257133327066, + 5171.047873067851 + ], + [ + 5349.257133327066, + 5172.54104820171 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5344.816565383511, + "min_y": 5171.79446063478, + "max_x": 5349.257133327066, + "max_y": 5171.79446063478, + "center": [ + 5347.036849355289, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5349.257133327066, + 5171.79446063478 + ], + [ + 5344.816565383511, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.045441337183, + "min_y": 5169.475062190727, + "max_x": 5347.045441337183, + "max_y": 5171.79446063478, + "center": [ + 5347.045441337183, + 5170.6347614127535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.045441337183, + 5171.79446063478 + ], + [ + 5347.045441337183, + 5169.475062190727 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.291113757492, + "min_y": 5166.40861402703, + "max_x": 5347.79202890411, + "max_y": 5167.310261290944, + "center": [ + 5347.541571330801, + 5166.859437658987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.291113757492, + 5167.310261290944 + ], + [ + 5347.79202890411, + 5166.40861402703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.291113757492, + "min_y": 5168.324552404502, + "max_x": 5347.79202890411, + "max_y": 5169.226199668417, + "center": [ + 5347.541571330801, + 5168.775376036459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.291113757492, + 5168.324552404502 + ], + [ + 5347.79202890411, + 5169.226199668417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5346.481924208905, + "min_y": 5167.253889719445, + "max_x": 5347.60895846546, + "max_y": 5168.380923976, + "center": [ + 5347.045441337183, + 5167.817406847723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.045441337183, + 5167.817406847723 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5166.40861402703, + "max_x": 5347.79202890411, + "max_y": 5166.40861402703, + "center": [ + 5347.045441337182, + 5166.40861402703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5166.40861402703 + ], + [ + 5347.79202890411, + 5166.40861402703 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5166.159751504721, + "max_x": 5347.79202890411, + "max_y": 5166.159751504721, + "center": [ + 5347.045441337182, + 5166.159751504721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5166.159751504721 + ], + [ + 5347.79202890411, + 5166.159751504721 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5169.226199668417, + "max_x": 5347.79202890411, + "max_y": 5169.226199668417, + "center": [ + 5347.045441337182, + 5169.226199668417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5169.226199668417 + ], + [ + 5347.79202890411, + 5169.226199668417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5169.475062190727, + "max_x": 5347.79202890411, + "max_y": 5169.475062190727, + "center": [ + 5347.045441337182, + 5169.475062190727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5169.475062190727 + ], + [ + 5347.79202890411, + 5169.475062190727 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5166.40861402703, + "max_x": 5346.799768916874, + "max_y": 5167.310261290944, + "center": [ + 5346.549311343564, + 5166.859437658987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5166.40861402703 + ], + [ + 5346.799768916874, + 5167.310261290944 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.298853770253, + "min_y": 5168.324552404502, + "max_x": 5346.799768916874, + "max_y": 5169.226199668417, + "center": [ + 5346.549311343564, + 5168.775376036459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.298853770253, + 5169.226199668417 + ], + [ + 5346.799768916874, + 5168.324552404502 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5345.3366043474, + "min_y": 5167.817406847723, + "max_x": 5346.481924208905, + "max_y": 5167.817406847723, + "center": [ + 5345.9092642781525, + 5167.817406847723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.481924208905, + 5167.817406847723 + ], + [ + 5345.3366043474, + 5167.817406847723 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5345.3366043474, + "min_y": 5167.817406847723, + "max_x": 5345.3366043474, + "max_y": 5169.226199668417, + "center": [ + 5345.3366043474, + 5168.521803258071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5345.3366043474, + 5167.817406847723 + ], + [ + 5345.3366043474, + 5169.226199668417 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.045441337183, + "min_y": 5164.658986896789, + "max_x": 5347.045441337183, + "max_y": 5166.159751504721, + "center": [ + 5347.045441337183, + 5165.4093692007555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.045441337183, + 5166.159751504721 + ], + [ + 5347.045441337183, + 5164.658986896789 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.482260407467, + "min_y": 5164.295631618895, + "max_x": 5346.482260407467, + "max_y": 5164.995350177751, + "center": [ + 5346.482260407467, + 5164.645490898323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.482260407467, + 5164.995350177751 + ], + [ + 5346.482260407467, + 5164.295631618895 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5346.482260407467, + "min_y": 5164.295631618895, + "max_x": 5347.608622266898, + "max_y": 5164.295631618895, + "center": [ + 5347.045441337183, + 5164.295631618895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5346.482260407467, + 5164.295631618895 + ], + [ + 5347.608622266898, + 5164.295631618895 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5347.608622266898, + "min_y": 5164.295631618895, + "max_x": 5347.608622266898, + "max_y": 5164.995350177751, + "center": [ + 5347.608622266898, + 5164.645490898323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.608622266898, + 5164.995350177751 + ], + [ + 5347.608622266898, + 5164.295631618895 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5351.556660189415, + "min_y": 5168.032519366336, + "max_x": 5359.080542726304, + "max_y": 5175.5564019032245, + "center": [ + 5355.31860145786, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5355.31860145786, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5350.947257474061, + "min_y": 5165.107434998311, + "max_x": 5353.036286113109, + "max_y": 5168.803935802297, + "center": [ + 5351.991771793585, + 5166.955685400304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5353.036286113109, + 5168.803935802297 + ], + [ + 5350.947257474061, + 5165.107434998311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.600916802613, + "min_y": 5165.107434998311, + "max_x": 5359.689945441658, + "max_y": 5168.803935802297, + "center": [ + 5358.645431122135, + 5166.955685400304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.600916802613, + 5168.803935802297 + ], + [ + 5359.689945441658, + 5165.107434998311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5350.947257474061, + "min_y": 5165.107434998311, + "max_x": 5359.689945441658, + "max_y": 5165.107434998311, + "center": [ + 5355.31860145786, + 5165.107434998311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.689945441658, + 5165.107434998311 + ], + [ + 5350.947257474061, + 5165.107434998311 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E2F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5354.48332785628, + "min_y": 5170.959187033201, + "max_x": 5356.153875059439, + "max_y": 5172.62973423636, + "center": [ + 5355.31860145786, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5355.31860145786, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.080542726306, + "min_y": 5171.79446063478, + "max_x": 5359.080542726306, + "max_y": 5177.157416749229, + "center": [ + 5359.080542726306, + 5174.475938692005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726306, + 5171.79446063478 + ], + [ + 5359.080542726306, + 5177.157416749229 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5349.505995849376, + "min_y": 5171.79446063478, + "max_x": 5355.31860145786, + "max_y": 5171.79446063478, + "center": [ + 5352.412298653618, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5355.31860145786, + 5171.79446063478 + ], + [ + 5349.505995849376, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5177.406279271538, + "max_x": 5359.827130293234, + "max_y": 5177.406279271538, + "center": [ + 5359.080542726306, + 5177.406279271538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5177.406279271538 + ], + [ + 5359.827130293234, + 5177.406279271538 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5177.157416749229, + "max_x": 5359.827130293234, + "max_y": 5177.157416749229, + "center": [ + 5359.080542726306, + 5177.157416749229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5177.157416749229 + ], + [ + 5359.827130293234, + 5177.157416749229 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5349.505995849376, + "min_y": 5171.047873067851, + "max_x": 5349.505995849376, + "max_y": 5172.54104820171, + "center": [ + 5349.505995849376, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5349.505995849376, + 5171.047873067851 + ], + [ + 5349.505995849376, + 5172.54104820171 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5344.567702861201, + "min_y": 5171.047873067851, + "max_x": 5344.567702861201, + "max_y": 5172.54104820171, + "center": [ + 5344.567702861201, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.567702861201, + 5172.54104820171 + ], + [ + 5344.567702861201, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5344.816565383511, + "min_y": 5171.047873067851, + "max_x": 5344.816565383511, + "max_y": 5172.54104820171, + "center": [ + 5344.816565383511, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.816565383511, + 5172.54104820171 + ], + [ + 5344.816565383511, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5341.780442611333, + "min_y": 5171.047873067851, + "max_x": 5341.780442611333, + "max_y": 5172.54104820171, + "center": [ + 5341.780442611333, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5341.780442611333, + 5172.54104820171 + ], + [ + 5341.780442611333, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5341.531580089024, + "min_y": 5171.047873067851, + "max_x": 5341.531580089024, + "max_y": 5172.54104820171, + "center": [ + 5341.531580089024, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5341.531580089024, + 5172.54104820171 + ], + [ + 5341.531580089024, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5341.780442611333, + "min_y": 5171.79446063478, + "max_x": 5344.567702861201, + "max_y": 5171.79446063478, + "center": [ + 5343.174072736267, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.567702861201, + 5171.79446063478 + ], + [ + 5341.780442611333, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5342.691510387407, + "min_y": 5170.386681617913, + "max_x": 5344.099289404273, + "max_y": 5171.79446063478, + "center": [ + 5343.3953998958405, + 5171.090571126347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5344.099289404273, + 5170.386681617913 + ], + [ + 5342.691510387407, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5343.676955699215, + "min_y": 5169.964347912852, + "max_x": 5344.521623109335, + "max_y": 5170.809015322974, + "center": [ + 5344.099289404276, + 5170.3866816179125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5343.676955699215, + 5169.964347912852 + ], + [ + 5344.521623109335, + 5170.809015322974 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5343.852928076323, + "min_y": 5169.788375535746, + "max_x": 5344.697595486443, + "max_y": 5170.633042945866, + "center": [ + 5344.275261781383, + 5170.210709240806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5343.852928076323, + 5169.788375535746 + ], + [ + 5344.697595486443, + 5170.633042945866 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5339.478438863657, + "min_y": 5171.79446063478, + "max_x": 5341.531580089024, + "max_y": 5171.79446063478, + "center": [ + 5340.505009476341, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5339.478438863657, + 5171.79446063478 + ], + [ + 5341.531580089024, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.411990699961, + "min_y": 5171.047873067851, + "max_x": 5337.313637963873, + "max_y": 5171.548788214471, + "center": [ + 5336.8628143319165, + 5171.298330641161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5337.313637963873, + 5171.548788214471 + ], + [ + 5336.411990699961, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5338.327929077434, + "min_y": 5171.047873067851, + "max_x": 5339.229576341348, + "max_y": 5171.548788214471, + "center": [ + 5338.7787527093915, + 5171.298330641161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5338.327929077434, + 5171.548788214471 + ], + [ + 5339.229576341348, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E40", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5337.257266392377, + "min_y": 5171.230943506503, + "max_x": 5338.3843006489315, + "max_y": 5172.3579777630575, + "center": [ + 5337.820783520654, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5337.820783520654, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.411990699961, + "min_y": 5171.047873067851, + "max_x": 5336.411990699961, + "max_y": 5172.54104820171, + "center": [ + 5336.411990699961, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.411990699961, + 5172.54104820171 + ], + [ + 5336.411990699961, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.16312817765, + "min_y": 5171.047873067851, + "max_x": 5336.16312817765, + "max_y": 5172.54104820171, + "center": [ + 5336.16312817765, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.16312817765, + 5172.54104820171 + ], + [ + 5336.16312817765, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5339.229576341348, + "min_y": 5171.047873067851, + "max_x": 5339.229576341348, + "max_y": 5172.54104820171, + "center": [ + 5339.229576341348, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5339.229576341348, + 5172.54104820171 + ], + [ + 5339.229576341348, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5339.478438863657, + "min_y": 5171.047873067851, + "max_x": 5339.478438863657, + "max_y": 5172.54104820171, + "center": [ + 5339.478438863657, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5339.478438863657, + 5172.54104820171 + ], + [ + 5339.478438863657, + 5171.047873067851 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5336.411990699961, + "min_y": 5172.040133055091, + "max_x": 5337.313637963873, + "max_y": 5172.54104820171, + "center": [ + 5336.8628143319165, + 5172.2905906284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.411990699961, + 5172.54104820171 + ], + [ + 5337.313637963873, + 5172.040133055091 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5338.327929077434, + "min_y": 5172.040133055091, + "max_x": 5339.229576341348, + "max_y": 5172.54104820171, + "center": [ + 5338.7787527093915, + 5172.2905906284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5339.229576341348, + 5172.54104820171 + ], + [ + 5338.327929077434, + 5172.040133055091 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5337.820783520654, + "min_y": 5172.357977763057, + "max_x": 5337.820783520654, + "max_y": 5173.503297624565, + "center": [ + 5337.820783520654, + 5172.930637693811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5337.820783520654, + 5172.357977763057 + ], + [ + 5337.820783520654, + 5173.503297624565 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5337.820783520654, + "min_y": 5173.503297624565, + "max_x": 5339.229576341348, + "max_y": 5173.503297624565, + "center": [ + 5338.525179931001, + 5173.503297624565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5337.820783520654, + 5173.503297624565 + ], + [ + 5339.229576341348, + 5173.503297624565 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5322.20851822976, + "min_y": 5171.79446063478, + "max_x": 5322.20851822976, + "max_y": 5186.914760738305, + "center": [ + 5322.20851822976, + 5179.354610686542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5322.20851822976, + 5186.914760738305 + ], + [ + 5322.20851822976, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5322.20851822976, + "min_y": 5171.79446063478, + "max_x": 5336.16312817765, + "max_y": 5171.79446063478, + "center": [ + 5329.185823203705, + 5171.79446063478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5336.16312817765, + 5171.79446063478 + ], + [ + 5322.20851822976, + 5171.79446063478 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.42441635979, + "min_y": 5204.854641284858, + "max_x": 5359.080542726384, + "max_y": 5204.854641284858, + "center": [ + 5353.752479543087, + 5204.854641284858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.42441635979, + 5204.854641284858 + ], + [ + 5359.080542726384, + 5204.854641284858 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.080542726306, + "min_y": 5177.406279271538, + "max_x": 5359.080542726306, + "max_y": 5178.631338119429, + "center": [ + 5359.080542726306, + 5178.018808695483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726306, + 5177.406279271538 + ], + [ + 5359.080542726306, + 5178.631338119429 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.080542726434, + "min_y": 5181.946648805433, + "max_x": 5359.080542726434, + "max_y": 5184.309879000516, + "center": [ + 5359.080542726434, + 5183.128263902974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726434, + 5181.946648805433 + ], + [ + 5359.080542726434, + 5184.309879000516 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.080542726434, + "min_y": 5181.946648805433, + "max_x": 5359.080542726434, + "max_y": 5184.309879000516, + "center": [ + 5359.080542726434, + 5183.128263902974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726434, + 5181.946648805433 + ], + [ + 5359.080542726434, + 5184.309879000516 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.326215146746, + "min_y": 5184.558741522827, + "max_x": 5359.827130293364, + "max_y": 5185.460388786739, + "center": [ + 5359.576672720055, + 5185.009565154784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.326215146746, + 5185.460388786739 + ], + [ + 5359.827130293364, + 5184.558741522827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.326215146746, + "min_y": 5186.474679900298, + "max_x": 5359.827130293364, + "max_y": 5187.376327164212, + "center": [ + 5359.576672720055, + 5186.925503532255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.326215146746, + 5186.474679900298 + ], + [ + 5359.827130293364, + 5187.376327164212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E51", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5358.517025598157, + "min_y": 5185.404017215241, + "max_x": 5359.6440598547115, + "max_y": 5186.531051471796, + "center": [ + 5359.080542726434, + 5185.967534343518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726434, + 5185.967534343518 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5184.558741522827, + "max_x": 5359.827130293364, + "max_y": 5184.558741522827, + "center": [ + 5359.080542726435, + 5184.558741522827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5184.558741522827 + ], + [ + 5359.827130293364, + 5184.558741522827 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5184.309879000516, + "max_x": 5359.827130293364, + "max_y": 5184.309879000516, + "center": [ + 5359.080542726435, + 5184.309879000516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5184.309879000516 + ], + [ + 5359.827130293364, + 5184.309879000516 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5187.376327164212, + "max_x": 5359.827130293364, + "max_y": 5187.376327164212, + "center": [ + 5359.080542726435, + 5187.376327164212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5187.376327164212 + ], + [ + 5359.827130293364, + 5187.376327164212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5187.625189686523, + "max_x": 5359.827130293364, + "max_y": 5187.625189686523, + "center": [ + 5359.080542726435, + 5187.625189686523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5187.625189686523 + ], + [ + 5359.827130293364, + 5187.625189686523 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5184.558741522827, + "max_x": 5358.834870306125, + "max_y": 5185.460388786739, + "center": [ + 5358.584412732816, + 5185.009565154784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5184.558741522827 + ], + [ + 5358.834870306125, + 5185.460388786739 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159507, + "min_y": 5186.474679900298, + "max_x": 5358.834870306125, + "max_y": 5187.376327164212, + "center": [ + 5358.584412732816, + 5186.925503532255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159507, + 5187.376327164212 + ], + [ + 5358.834870306125, + 5186.474679900298 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.371705736652, + "min_y": 5185.967534343518, + "max_x": 5358.517025598157, + "max_y": 5185.967534343518, + "center": [ + 5357.944365667405, + 5185.967534343518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.517025598157, + 5185.967534343518 + ], + [ + 5357.371705736652, + 5185.967534343518 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.371705736652, + "min_y": 5185.967534343518, + "max_x": 5357.371705736652, + "max_y": 5187.376327164212, + "center": [ + 5357.371705736652, + 5186.671930753865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.371705736652, + 5185.967534343518 + ], + [ + 5357.371705736652, + 5187.376327164212 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5178.880200641739, + "max_x": 5359.827130293234, + "max_y": 5178.880200641739, + "center": [ + 5359.080542726306, + 5178.880200641739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5178.880200641739 + ], + [ + 5359.827130293234, + 5178.880200641739 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5178.631338119429, + "max_x": 5359.827130293234, + "max_y": 5178.631338119429, + "center": [ + 5359.080542726306, + 5178.631338119429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5178.631338119429 + ], + [ + 5359.827130293234, + 5178.631338119429 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5181.697786283126, + "max_x": 5359.827130293234, + "max_y": 5181.697786283126, + "center": [ + 5359.080542726306, + 5181.697786283126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5181.697786283126 + ], + [ + 5359.827130293234, + 5181.697786283126 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5181.946648805434, + "max_x": 5359.827130293234, + "max_y": 5181.946648805434, + "center": [ + 5359.080542726306, + 5181.946648805434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.333955159377, + 5181.946648805434 + ], + [ + 5359.827130293234, + 5181.946648805434 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E5F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5358.333955159377, + "min_y": 5178.880200641739, + "max_x": 5359.302736808995, + "max_y": 5180.708268363809, + "center": [ + 5358.818345984186, + 5179.794234502774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.302736808995, + 5180.708268363809 + ], + [ + 5358.333955159377, + 5178.880200641739 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5359.080542726384, + "min_y": 5187.625189686523, + "max_x": 5359.080542726434, + "max_y": 5204.854641284858, + "center": [ + 5359.0805427264095, + 5196.23991548569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5359.080542726434, + 5187.625189686523 + ], + [ + 5359.080542726384, + 5204.854641284858 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5348.424416359797, + "min_y": 5202.745489790046, + "max_x": 5348.424416359797, + "max_y": 5204.854641284858, + "center": [ + 5348.424416359797, + 5203.800065537453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5348.424416359797, + 5202.745489790046 + ], + [ + 5348.424416359797, + 5204.854641284858 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E62", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5263.524738652566, + "min_y": 5201.084661708042, + "max_x": 5278.307172477759, + "max_y": 5203.324424408829, + "center": [ + 5270.915955565162, + 5202.204543058436 + ] + }, + "raw_value": "%%UCHT-6601", + "clean_value": "CHT-6601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553E63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5196.619037513784, + "min_y": 5181.263618011592, + "max_x": 5210.057613718504, + "max_y": 5183.503380712379, + "center": [ + 5203.338325616144, + 5182.383499361986 + ] + }, + "raw_value": "%%UCH-6601", + "clean_value": "CH-6601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553E64", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5338.727120067116, + "min_y": 5176.702232670598, + "max_x": 5352.165696271836, + "max_y": 5178.941995371385, + "center": [ + 5345.446408169476, + 5177.822114020992 + ] + }, + "raw_value": "%%UP-6601A", + "clean_value": "P-6601A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553E65", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5383.590750983902, + "min_y": 5387.217942747003, + "max_x": 5393.705265186798, + "max_y": 5411.440289419929, + "center": [ + 5388.64800808535, + 5399.329116083466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5393.705265186798, + 5387.217942747003 + ], + [ + 5393.705265186798, + 5411.440289419929 + ], + [ + 5383.590750983902, + 5411.440289419929 + ], + [ + 5383.590750983902, + 5387.217942747003 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5389.768503233825, + "min_y": 5393.53783946208, + "max_x": 5401.863221818074, + "max_y": 5395.777602162867, + "center": [ + 5395.815862525949, + 5394.657720812474 + ] + }, + "raw_value": "%%UE-9217", + "clean_value": "E-9217", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E67", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5370.027430337179, + "min_y": 5372.312946536154, + "max_x": 5386.153721782844, + "max_y": 5373.8061216700125, + "center": [ + 5378.090576060011, + 5373.059534103084 + ] + }, + "raw_value": "CHR-9643-32A-F-C50", + "clean_value": "CHR-9643-32A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553E68", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5376.70442691159, + "min_y": 5365.381665362789, + "max_x": 5392.830718357255, + "max_y": 5366.874840496647, + "center": [ + 5384.767572634422, + 5366.128252929719 + ] + }, + "raw_value": "CHS-9633-32A-F-C50", + "clean_value": "CHS-9633-32A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553E69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.244302674879, + "min_y": 5402.539078045404, + "max_x": 5383.590750983902, + "max_y": 5402.539078045404, + "center": [ + 5379.91752682939, + 5402.539078045404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5376.244302674879, + 5402.539078045404 + ], + [ + 5383.590750983902, + 5402.539078045404 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5378.594700749354, + "min_y": 5403.335088365954, + "max_x": 5381.282415990298, + "max_y": 5405.574851066741, + "center": [ + 5379.938558369826, + 5404.4549697163475 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5377.389208851701, + "min_y": 5389.475401419132, + "max_x": 5383.590750983902, + "max_y": 5389.475401419132, + "center": [ + 5380.489979917802, + 5389.475401419132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5377.389208851701, + 5389.475401419132 + ], + [ + 5383.590750983902, + 5389.475401419132 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5370.712212277289, + "min_y": 5409.182830747802, + "max_x": 5383.590750983902, + "max_y": 5409.182830747802, + "center": [ + 5377.151481630595, + 5409.182830747802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5370.712212277289, + 5409.182830747802 + ], + [ + 5383.590750983902, + 5409.182830747802 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5377.389208851701, + "min_y": 5362.659738817959, + "max_x": 5377.389208851701, + "max_y": 5389.475401419132, + "center": [ + 5377.389208851701, + 5376.0675701185455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5377.389208851701, + 5362.659738817959 + ], + [ + 5377.389208851701, + 5389.475401419132 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553E6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5370.712212277289, + "min_y": 5360.951549036704, + "max_x": 5370.712212277289, + "max_y": 5363.602113562254, + "center": [ + 5370.712212277289, + 5362.276831299479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5370.712212277289, + 5360.951549036704 + ], + [ + 5370.712212277289, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553E6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5370.712212277289, + "min_y": 5366.91742424826, + "max_x": 5370.712212277289, + "max_y": 5409.182830747802, + "center": [ + 5370.712212277289, + 5388.050127498031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5370.712212277289, + 5366.91742424826 + ], + [ + 5370.712212277289, + 5409.182830747802 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553E70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5377.389208851701, + "min_y": 5352.335109299598, + "max_x": 5377.389208851701, + "max_y": 5354.985673825148, + "center": [ + 5377.389208851701, + 5353.660391562373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5377.389208851701, + 5352.335109299598 + ], + [ + 5377.389208851701, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553E71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5377.389208851701, + "min_y": 5358.300984511155, + "max_x": 5377.389208851701, + "max_y": 5359.840824375181, + "center": [ + 5377.389208851701, + 5359.070904443168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5377.389208851701, + 5358.300984511155 + ], + [ + 5377.389208851701, + 5359.840824375181 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553E72", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5347.124012884838, + "min_y": 5225.815424493198, + "max_x": 5558.181532050703, + "max_y": 5299.431536535903, + "center": [ + 5452.652772467771, + 5262.6234805145505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5347.124012884838, + 5299.431536535903 + ], + [ + 5558.181532050703, + 5299.431536535903 + ], + [ + 5558.181532050703, + 5225.815424493198 + ], + [ + 5347.124012884838, + 5225.815424493198 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E73", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5401.826851523073, + "min_y": 5281.446960972976, + "max_x": 5418.849048049053, + "max_y": 5282.940136106834, + "center": [ + 5410.337949786062, + 5282.193548539904 + ] + }, + "raw_value": "CHS-6630-100A-F-C50", + "clean_value": "CHS-6630-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553E74", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5401.799974370663, + "min_y": 5290.063400710082, + "max_x": 5418.822170896643, + "max_y": 5291.55657584394, + "center": [ + 5410.311072633653, + 5290.809988277011 + ] + }, + "raw_value": "CHR-6640-100A-F-C50", + "clean_value": "CHR-6640-100A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553E75", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5442.424460822658, + "min_y": 5229.9872420134, + "max_x": 5452.538975025553, + "max_y": 5254.209588686327, + "center": [ + 5447.481717924105, + 5242.098415349863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5452.538975025553, + 5254.209588686327 + ], + [ + 5452.538975025553, + 5229.9872420134 + ], + [ + 5442.424460822658, + 5229.9872420134 + ], + [ + 5442.424460822658, + 5254.209588686327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5436.222918690457, + "min_y": 5251.952130014199, + "max_x": 5442.424460822658, + "max_y": 5251.952130014199, + "center": [ + 5439.3236897565575, + 5251.952130014199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.222918690457, + 5251.952130014199 + ], + [ + 5442.424460822658, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5429.545922116044, + "min_y": 5232.244700685529, + "max_x": 5442.424460822658, + "max_y": 5232.244700685529, + "center": [ + 5435.985191469351, + 5232.244700685529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5429.545922116044, + 5232.244700685529 + ], + [ + 5442.424460822658, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5436.222918690457, + "min_y": 5251.952130014199, + "max_x": 5436.222918690457, + "max_y": 5278.767792615372, + "center": [ + 5436.222918690457, + 5265.359961314785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.222918690457, + 5278.767792615372 + ], + [ + 5436.222918690457, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5429.545922116044, + "min_y": 5277.825417871077, + "max_x": 5429.545922116044, + "max_y": 5280.475982396627, + "center": [ + 5429.545922116044, + 5279.150700133852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5429.545922116044, + 5280.475982396627 + ], + [ + 5429.545922116044, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5429.545922116044, + "min_y": 5232.244700685529, + "max_x": 5429.545922116044, + "max_y": 5274.51010718507, + "center": [ + 5429.545922116044, + 5253.377403935299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5429.545922116044, + 5274.51010718507 + ], + [ + 5429.545922116044, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5277.576555348766, + "max_x": 5430.292509682973, + "max_y": 5277.576555348766, + "center": [ + 5429.5459221160445, + 5277.576555348766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5428.799334549116, + 5277.576555348766 + ], + [ + 5430.292509682973, + 5277.576555348766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5277.825417871077, + "max_x": 5430.292509682973, + "max_y": 5277.825417871077, + "center": [ + 5429.5459221160445, + 5277.825417871077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5428.799334549116, + 5277.825417871077 + ], + [ + 5430.292509682973, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5274.75896970738, + "max_x": 5430.292509682973, + "max_y": 5274.75896970738, + "center": [ + 5429.5459221160445, + 5274.75896970738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5428.799334549116, + 5274.75896970738 + ], + [ + 5430.292509682973, + 5274.75896970738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5428.799334549116, + "min_y": 5274.51010718507, + "max_x": 5430.292509682973, + "max_y": 5274.51010718507, + "center": [ + 5429.5459221160445, + 5274.51010718507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5428.799334549116, + 5274.51010718507 + ], + [ + 5430.292509682973, + 5274.51010718507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5428.931218856233, + "min_y": 5275.00783222969, + "max_x": 5430.160625375854, + "max_y": 5277.327692826458, + "center": [ + 5429.545922116044, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5430.160625375854, + 5275.00783222969 + ], + [ + 5428.931218856233, + 5277.327692826458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E80", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5429.238843047545, + "min_y": 5275.860683459575, + "max_x": 5429.853001184542, + "max_y": 5276.474841596572, + "center": [ + 5429.545922116044, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5429.545922116044, + 5276.167762528074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5436.222918690457, + "min_y": 5286.441857608181, + "max_x": 5436.222918690457, + "max_y": 5289.092422133733, + "center": [ + 5436.222918690457, + 5287.767139870957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.222918690457, + 5289.092422133733 + ], + [ + 5436.222918690457, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5286.192995085873, + "max_x": 5436.969506257387, + "max_y": 5286.192995085873, + "center": [ + 5436.222918690458, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5435.476331123528, + 5286.192995085873 + ], + [ + 5436.969506257387, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5286.441857608181, + "max_x": 5436.969506257387, + "max_y": 5286.441857608181, + "center": [ + 5436.222918690458, + 5286.441857608181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5435.476331123528, + 5286.441857608181 + ], + [ + 5436.969506257387, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5283.375409444485, + "max_x": 5436.969506257387, + "max_y": 5283.375409444485, + "center": [ + 5436.222918690458, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5435.476331123528, + 5283.375409444485 + ], + [ + 5436.969506257387, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5435.476331123528, + "min_y": 5283.126546922176, + "max_x": 5436.969506257387, + "max_y": 5283.126546922176, + "center": [ + 5436.222918690458, + 5283.126546922176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5435.476331123528, + 5283.126546922176 + ], + [ + 5436.969506257387, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5435.608215430646, + "min_y": 5283.624271966794, + "max_x": 5436.837621950267, + "max_y": 5285.944132563563, + "center": [ + 5436.222918690457, + 5284.7842022651785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.837621950267, + 5283.624271966794 + ], + [ + 5435.608215430646, + 5285.944132563563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E87", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5435.915839621958, + "min_y": 5284.477123196681, + "max_x": 5436.529997758956, + "max_y": 5285.091281333678, + "center": [ + 5436.222918690457, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.222918690457, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5436.222918690457, + "min_y": 5281.586707058149, + "max_x": 5436.222918690457, + "max_y": 5283.126546922176, + "center": [ + 5436.222918690457, + 5282.356626990162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5436.222918690457, + 5283.126546922176 + ], + [ + 5436.222918690457, + 5281.586707058149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5548.47385230661, + "min_y": 5280.475982396627, + "max_x": 5548.47385230661, + "max_y": 5283.126546922177, + "center": [ + 5548.47385230661, + 5281.801264659402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5548.47385230661, + 5280.475982396627 + ], + [ + 5548.47385230661, + 5283.126546922177 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5548.47385230661, + "min_y": 5286.441857608182, + "max_x": 5548.47385230661, + "max_y": 5289.092422133733, + "center": [ + 5548.47385230661, + 5287.767139870957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5548.47385230661, + 5286.441857608182 + ], + [ + 5548.47385230661, + 5289.092422133733 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5548.719524726921, + "min_y": 5283.375409444485, + "max_x": 5549.22043987354, + "max_y": 5284.2770567084, + "center": [ + 5548.96998230023, + 5283.826233076443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5548.719524726921, + 5284.2770567084 + ], + [ + 5549.22043987354, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5548.719524726921, + "min_y": 5285.291347821959, + "max_x": 5549.22043987354, + "max_y": 5286.192995085873, + "center": [ + 5548.96998230023, + 5285.742171453916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5548.719524726921, + 5285.291347821959 + ], + [ + 5549.22043987354, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5547.910335178332, + "min_y": 5284.220685136902, + "max_x": 5549.037369434887, + "max_y": 5285.347719393457, + "center": [ + 5548.47385230661, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5548.47385230661, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5283.375409444485, + "max_x": 5549.22043987354, + "max_y": 5283.375409444485, + "center": [ + 5548.47385230661, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5283.375409444485 + ], + [ + 5549.22043987354, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5283.126546922177, + "max_x": 5549.22043987354, + "max_y": 5283.126546922177, + "center": [ + 5548.47385230661, + 5283.126546922177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5283.126546922177 + ], + [ + 5549.22043987354, + 5283.126546922177 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5286.192995085873, + "max_x": 5549.22043987354, + "max_y": 5286.192995085873, + "center": [ + 5548.47385230661, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5286.192995085873 + ], + [ + 5549.22043987354, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5286.441857608182, + "max_x": 5549.22043987354, + "max_y": 5286.441857608182, + "center": [ + 5548.47385230661, + 5286.441857608182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5286.441857608182 + ], + [ + 5549.22043987354, + 5286.441857608182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5283.375409444485, + "max_x": 5548.228179886301, + "max_y": 5284.2770567084, + "center": [ + 5547.977722312991, + 5283.826233076443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5283.375409444485 + ], + [ + 5548.228179886301, + 5284.2770567084 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5547.72726473968, + "min_y": 5285.291347821959, + "max_x": 5548.228179886301, + "max_y": 5286.192995085873, + "center": [ + 5547.977722312991, + 5285.742171453916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.72726473968, + 5286.192995085873 + ], + [ + 5548.228179886301, + 5285.291347821959 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5546.765015316825, + "min_y": 5284.784202265179, + "max_x": 5547.910335178332, + "max_y": 5284.784202265179, + "center": [ + 5547.337675247579, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5547.910335178332, + 5284.784202265179 + ], + [ + 5546.765015316825, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5546.765015316825, + "min_y": 5284.784202265179, + "max_x": 5546.765015316825, + "max_y": 5286.192995085873, + "center": [ + 5546.765015316825, + 5285.488598675526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5546.765015316825, + 5284.784202265179 + ], + [ + 5546.765015316825, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E96", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5472.287963499815, + "min_y": 5229.9872420134, + "max_x": 5482.402477702709, + "max_y": 5254.209588686327, + "center": [ + 5477.345220601263, + 5242.098415349863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5482.402477702709, + 5254.209588686327 + ], + [ + 5482.402477702709, + 5229.9872420134 + ], + [ + 5472.287963499815, + 5229.9872420134 + ], + [ + 5472.287963499815, + 5254.209588686327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5466.086421367614, + "min_y": 5251.952130014199, + "max_x": 5472.287963499815, + "max_y": 5251.952130014199, + "center": [ + 5469.187192433715, + 5251.952130014199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.086421367614, + 5251.952130014199 + ], + [ + 5472.287963499815, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5459.4094247932, + "min_y": 5232.244700685529, + "max_x": 5472.287963499815, + "max_y": 5232.244700685529, + "center": [ + 5465.848694146507, + 5232.244700685529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5459.4094247932, + 5232.244700685529 + ], + [ + 5472.287963499815, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5466.086421367614, + "min_y": 5251.952130014199, + "max_x": 5466.086421367614, + "max_y": 5278.767792615372, + "center": [ + 5466.086421367614, + 5265.359961314785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.086421367614, + 5278.767792615372 + ], + [ + 5466.086421367614, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5459.4094247932, + "min_y": 5277.825417871077, + "max_x": 5459.4094247932, + "max_y": 5280.475982396627, + "center": [ + 5459.4094247932, + 5279.150700133852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5459.4094247932, + 5280.475982396627 + ], + [ + 5459.4094247932, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5459.4094247932, + "min_y": 5232.244700685529, + "max_x": 5459.4094247932, + "max_y": 5274.51010718507, + "center": [ + 5459.4094247932, + 5253.377403935299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5459.4094247932, + 5274.51010718507 + ], + [ + 5459.4094247932, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5277.576555348766, + "max_x": 5460.15601236013, + "max_y": 5277.576555348766, + "center": [ + 5459.409424793202, + 5277.576555348766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5458.662837226273, + 5277.576555348766 + ], + [ + 5460.15601236013, + 5277.576555348766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5277.825417871077, + "max_x": 5460.15601236013, + "max_y": 5277.825417871077, + "center": [ + 5459.409424793202, + 5277.825417871077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5458.662837226273, + 5277.825417871077 + ], + [ + 5460.15601236013, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5274.75896970738, + "max_x": 5460.15601236013, + "max_y": 5274.75896970738, + "center": [ + 5459.409424793202, + 5274.75896970738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5458.662837226273, + 5274.75896970738 + ], + [ + 5460.15601236013, + 5274.75896970738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553E9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5458.662837226273, + "min_y": 5274.51010718507, + "max_x": 5460.15601236013, + "max_y": 5274.51010718507, + "center": [ + 5459.409424793202, + 5274.51010718507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5458.662837226273, + 5274.51010718507 + ], + [ + 5460.15601236013, + 5274.51010718507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5458.79472153339, + "min_y": 5275.00783222969, + "max_x": 5460.024128053012, + "max_y": 5277.327692826458, + "center": [ + 5459.409424793201, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5460.024128053012, + 5275.00783222969 + ], + [ + 5458.79472153339, + 5277.327692826458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5459.102345724701, + "min_y": 5275.860683459575, + "max_x": 5459.716503861699, + "max_y": 5276.474841596572, + "center": [ + 5459.4094247932, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5459.4094247932, + 5276.167762528074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5466.086421367614, + "min_y": 5286.441857608181, + "max_x": 5466.086421367614, + "max_y": 5289.092422133733, + "center": [ + 5466.086421367614, + 5287.767139870957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.086421367614, + 5289.092422133733 + ], + [ + 5466.086421367614, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5286.192995085873, + "max_x": 5466.833008934544, + "max_y": 5286.192995085873, + "center": [ + 5466.086421367614, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5465.339833800684, + 5286.192995085873 + ], + [ + 5466.833008934544, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5286.441857608181, + "max_x": 5466.833008934544, + "max_y": 5286.441857608181, + "center": [ + 5466.086421367614, + 5286.441857608181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5465.339833800684, + 5286.441857608181 + ], + [ + 5466.833008934544, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5283.375409444485, + "max_x": 5466.833008934544, + "max_y": 5283.375409444485, + "center": [ + 5466.086421367614, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5465.339833800684, + 5283.375409444485 + ], + [ + 5466.833008934544, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5465.339833800684, + "min_y": 5283.126546922176, + "max_x": 5466.833008934544, + "max_y": 5283.126546922176, + "center": [ + 5466.086421367614, + 5283.126546922176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5465.339833800684, + 5283.126546922176 + ], + [ + 5466.833008934544, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5465.471718107803, + "min_y": 5283.624271966794, + "max_x": 5466.701124627425, + "max_y": 5285.944132563563, + "center": [ + 5466.086421367614, + 5284.7842022651785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.701124627425, + 5283.624271966794 + ], + [ + 5465.471718107803, + 5285.944132563563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5465.779342299115, + "min_y": 5284.477123196681, + "max_x": 5466.393500436113, + "max_y": 5285.091281333678, + "center": [ + 5466.086421367614, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.086421367614, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5466.086421367614, + "min_y": 5281.586707058149, + "max_x": 5466.086421367614, + "max_y": 5283.126546922176, + "center": [ + 5466.086421367614, + 5282.356626990162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5466.086421367614, + 5283.126546922176 + ], + [ + 5466.086421367614, + 5281.586707058149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5502.151466176973, + "min_y": 5229.9872420134, + "max_x": 5512.265980379869, + "max_y": 5254.209588686327, + "center": [ + 5507.2087232784215, + 5242.098415349863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5512.265980379869, + 5254.209588686327 + ], + [ + 5512.265980379869, + 5229.9872420134 + ], + [ + 5502.151466176973, + 5229.9872420134 + ], + [ + 5502.151466176973, + 5254.209588686327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.949924044771, + "min_y": 5251.952130014199, + "max_x": 5502.151466176973, + "max_y": 5251.952130014199, + "center": [ + 5499.050695110873, + 5251.952130014199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.949924044771, + 5251.952130014199 + ], + [ + 5502.151466176973, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5489.272927470359, + "min_y": 5232.244700685529, + "max_x": 5502.151466176973, + "max_y": 5232.244700685529, + "center": [ + 5495.712196823666, + 5232.244700685529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5489.272927470359, + 5232.244700685529 + ], + [ + 5502.151466176973, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.949924044771, + "min_y": 5251.952130014199, + "max_x": 5495.949924044771, + "max_y": 5278.767792615372, + "center": [ + 5495.949924044771, + 5265.359961314785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.949924044771, + 5278.767792615372 + ], + [ + 5495.949924044771, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5489.272927470359, + "min_y": 5277.825417871077, + "max_x": 5489.272927470359, + "max_y": 5280.475982396627, + "center": [ + 5489.272927470359, + 5279.150700133852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5489.272927470359, + 5280.475982396627 + ], + [ + 5489.272927470359, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5489.272927470359, + "min_y": 5232.244700685529, + "max_x": 5489.272927470359, + "max_y": 5274.51010718507, + "center": [ + 5489.272927470359, + 5253.377403935299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5489.272927470359, + 5274.51010718507 + ], + [ + 5489.272927470359, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5277.576555348766, + "max_x": 5490.019515037287, + "max_y": 5277.576555348766, + "center": [ + 5489.272927470359, + 5277.576555348766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5488.52633990343, + 5277.576555348766 + ], + [ + 5490.019515037287, + 5277.576555348766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5277.825417871077, + "max_x": 5490.019515037287, + "max_y": 5277.825417871077, + "center": [ + 5489.272927470359, + 5277.825417871077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5488.52633990343, + 5277.825417871077 + ], + [ + 5490.019515037287, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5274.75896970738, + "max_x": 5490.019515037287, + "max_y": 5274.75896970738, + "center": [ + 5489.272927470359, + 5274.75896970738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5488.52633990343, + 5274.75896970738 + ], + [ + 5490.019515037287, + 5274.75896970738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5488.52633990343, + "min_y": 5274.51010718507, + "max_x": 5490.019515037287, + "max_y": 5274.51010718507, + "center": [ + 5489.272927470359, + 5274.51010718507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5488.52633990343, + 5274.51010718507 + ], + [ + 5490.019515037287, + 5274.51010718507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5488.658224210549, + "min_y": 5275.00783222969, + "max_x": 5489.88763073017, + "max_y": 5277.327692826458, + "center": [ + 5489.27292747036, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5489.88763073017, + 5275.00783222969 + ], + [ + 5488.658224210549, + 5277.327692826458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5488.96584840186, + "min_y": 5275.860683459575, + "max_x": 5489.580006538858, + "max_y": 5276.474841596572, + "center": [ + 5489.272927470359, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5489.272927470359, + 5276.167762528074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.949924044771, + "min_y": 5286.441857608181, + "max_x": 5495.949924044771, + "max_y": 5289.092422133733, + "center": [ + 5495.949924044771, + 5287.767139870957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.949924044771, + 5289.092422133733 + ], + [ + 5495.949924044771, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5286.192995085873, + "max_x": 5496.696511611701, + "max_y": 5286.192995085873, + "center": [ + 5495.949924044771, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.203336477842, + 5286.192995085873 + ], + [ + 5496.696511611701, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5286.441857608181, + "max_x": 5496.696511611701, + "max_y": 5286.441857608181, + "center": [ + 5495.949924044771, + 5286.441857608181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.203336477842, + 5286.441857608181 + ], + [ + 5496.696511611701, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5283.375409444485, + "max_x": 5496.696511611701, + "max_y": 5283.375409444485, + "center": [ + 5495.949924044771, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.203336477842, + 5283.375409444485 + ], + [ + 5496.696511611701, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.203336477842, + "min_y": 5283.126546922176, + "max_x": 5496.696511611701, + "max_y": 5283.126546922176, + "center": [ + 5495.949924044771, + 5283.126546922176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.203336477842, + 5283.126546922176 + ], + [ + 5496.696511611701, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.33522078496, + "min_y": 5283.624271966794, + "max_x": 5496.564627304582, + "max_y": 5285.944132563563, + "center": [ + 5495.949924044771, + 5284.7842022651785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5496.564627304582, + 5283.624271966794 + ], + [ + 5495.33522078496, + 5285.944132563563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5495.6428449762725, + "min_y": 5284.477123196681, + "max_x": 5496.25700311327, + "max_y": 5285.091281333678, + "center": [ + 5495.949924044771, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.949924044771, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5495.949924044771, + "min_y": 5281.586707058149, + "max_x": 5495.949924044771, + "max_y": 5283.126546922176, + "center": [ + 5495.949924044771, + 5282.356626990162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5495.949924044771, + 5283.126546922176 + ], + [ + 5495.949924044771, + 5281.586707058149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5532.01496885413, + "min_y": 5229.9872420134, + "max_x": 5542.129483057026, + "max_y": 5254.209588686327, + "center": [ + 5537.072225955578, + 5242.098415349863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5542.129483057026, + 5254.209588686327 + ], + [ + 5542.129483057026, + 5229.9872420134 + ], + [ + 5532.01496885413, + 5229.9872420134 + ], + [ + 5532.01496885413, + 5254.209588686327 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.813426721928, + "min_y": 5251.952130014199, + "max_x": 5532.01496885413, + "max_y": 5251.952130014199, + "center": [ + 5528.914197788029, + 5251.952130014199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.813426721928, + 5251.952130014199 + ], + [ + 5532.01496885413, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.136430147517, + "min_y": 5232.244700685529, + "max_x": 5532.01496885413, + "max_y": 5232.244700685529, + "center": [ + 5525.575699500823, + 5232.244700685529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.136430147517, + 5232.244700685529 + ], + [ + 5532.01496885413, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.813426721928, + "min_y": 5251.952130014199, + "max_x": 5525.813426721928, + "max_y": 5278.767792615372, + "center": [ + 5525.813426721928, + 5265.359961314785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.813426721928, + 5278.767792615372 + ], + [ + 5525.813426721928, + 5251.952130014199 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.136430147517, + "min_y": 5277.825417871077, + "max_x": 5519.136430147517, + "max_y": 5280.475982396627, + "center": [ + 5519.136430147517, + 5279.150700133852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.136430147517, + 5280.475982396627 + ], + [ + 5519.136430147517, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.136430147517, + "min_y": 5232.244700685529, + "max_x": 5519.136430147517, + "max_y": 5274.51010718507, + "center": [ + 5519.136430147517, + 5253.377403935299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.136430147517, + 5274.51010718507 + ], + [ + 5519.136430147517, + 5232.244700685529 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5277.576555348766, + "max_x": 5519.883017714445, + "max_y": 5277.576555348766, + "center": [ + 5519.136430147516, + 5277.576555348766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5518.389842580587, + 5277.576555348766 + ], + [ + 5519.883017714445, + 5277.576555348766 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5277.825417871077, + "max_x": 5519.883017714445, + "max_y": 5277.825417871077, + "center": [ + 5519.136430147516, + 5277.825417871077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5518.389842580587, + 5277.825417871077 + ], + [ + 5519.883017714445, + 5277.825417871077 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5274.75896970738, + "max_x": 5519.883017714445, + "max_y": 5274.75896970738, + "center": [ + 5519.136430147516, + 5274.75896970738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5518.389842580587, + 5274.75896970738 + ], + [ + 5519.883017714445, + 5274.75896970738 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5518.389842580587, + "min_y": 5274.51010718507, + "max_x": 5519.883017714445, + "max_y": 5274.51010718507, + "center": [ + 5519.136430147516, + 5274.51010718507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5518.389842580587, + 5274.51010718507 + ], + [ + 5519.883017714445, + 5274.51010718507 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5518.521726887706, + "min_y": 5275.00783222969, + "max_x": 5519.751133407329, + "max_y": 5277.327692826458, + "center": [ + 5519.136430147517, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.751133407329, + 5275.00783222969 + ], + [ + 5518.521726887706, + 5277.327692826458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EC9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5518.829351079018, + "min_y": 5275.860683459575, + "max_x": 5519.443509216016, + "max_y": 5276.474841596572, + "center": [ + 5519.136430147517, + 5276.167762528074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.136430147517, + 5276.167762528074 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.813426721928, + "min_y": 5286.441857608181, + "max_x": 5525.813426721928, + "max_y": 5289.092422133733, + "center": [ + 5525.813426721928, + 5287.767139870957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.813426721928, + 5289.092422133733 + ], + [ + 5525.813426721928, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5286.192995085873, + "max_x": 5526.560014288858, + "max_y": 5286.192995085873, + "center": [ + 5525.813426721929, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.066839155001, + 5286.192995085873 + ], + [ + 5526.560014288858, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5286.441857608181, + "max_x": 5526.560014288858, + "max_y": 5286.441857608181, + "center": [ + 5525.813426721929, + 5286.441857608181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.066839155001, + 5286.441857608181 + ], + [ + 5526.560014288858, + 5286.441857608181 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5283.375409444485, + "max_x": 5526.560014288858, + "max_y": 5283.375409444485, + "center": [ + 5525.813426721929, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.066839155001, + 5283.375409444485 + ], + [ + 5526.560014288858, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.066839155001, + "min_y": 5283.126546922176, + "max_x": 5526.560014288858, + "max_y": 5283.126546922176, + "center": [ + 5525.813426721929, + 5283.126546922176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.066839155001, + 5283.126546922176 + ], + [ + 5526.560014288858, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ECF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.198723462118, + "min_y": 5283.624271966794, + "max_x": 5526.42812998174, + "max_y": 5285.944132563563, + "center": [ + 5525.813426721929, + 5284.7842022651785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5526.42812998174, + 5283.624271966794 + ], + [ + 5525.198723462118, + 5285.944132563563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ED0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5525.50634765343, + "min_y": 5284.477123196681, + "max_x": 5526.120505790427, + "max_y": 5285.091281333678, + "center": [ + 5525.813426721928, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.813426721928, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ED1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5525.813426721928, + "min_y": 5281.586707058149, + "max_x": 5525.813426721928, + "max_y": 5283.126546922176, + "center": [ + 5525.813426721928, + 5282.356626990162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5525.813426721928, + 5283.126546922176 + ], + [ + 5525.813426721928, + 5281.586707058149 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553ED2", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5428.861140175934, + "min_y": 5244.58186492221, + "max_x": 5444.987431621599, + "max_y": 5246.075040056068, + "center": [ + 5436.924285898767, + 5245.328452489139 + ] + }, + "raw_value": "CHS-6631-50A-F-C50", + "clean_value": "CHS-6631-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5435.538136750347, + "min_y": 5256.261518617248, + "max_x": 5451.664428196012, + "max_y": 5257.754693751106, + "center": [ + 5443.601282473179, + 5257.008106184177 + ] + }, + "raw_value": "CHR-6641-50A-F-C50", + "clean_value": "CHR-6641-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5458.724642853092, + "min_y": 5244.58186492221, + "max_x": 5474.850934298756, + "max_y": 5246.075040056068, + "center": [ + 5466.787788575924, + 5245.328452489139 + ] + }, + "raw_value": "CHS-6632-25A-F-C50", + "clean_value": "CHS-6632-25A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5465.401639427504, + "min_y": 5256.261518617248, + "max_x": 5481.527930873169, + "max_y": 5257.754693751106, + "center": [ + 5473.464785150336, + 5257.008106184177 + ] + }, + "raw_value": "CHR-6642-25A-F-C50", + "clean_value": "CHR-6642-25A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED6", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5488.58814553025, + "min_y": 5244.58186492221, + "max_x": 5504.714436975914, + "max_y": 5246.075040056068, + "center": [ + 5496.651291253082, + 5245.328452489139 + ] + }, + "raw_value": "CHS-6633-50A-F-C50", + "clean_value": "CHS-6633-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5495.265142104661, + "min_y": 5256.261518617248, + "max_x": 5511.391433550326, + "max_y": 5257.754693751106, + "center": [ + 5503.328287827493, + 5257.008106184177 + ] + }, + "raw_value": "CHR-6643-50A-F-C50", + "clean_value": "CHR-6643-50A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED8", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5518.451648207406, + "min_y": 5244.58186492221, + "max_x": 5534.577939653071, + "max_y": 5246.075040056068, + "center": [ + 5526.514793930239, + 5245.328452489139 + ] + }, + "raw_value": "CHS-6634-25A-F-C50", + "clean_value": "CHS-6634-25A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553ED9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5525.12864478182, + "min_y": 5256.261518617248, + "max_x": 5541.254936227485, + "max_y": 5257.754693751106, + "center": [ + 5533.191790504652, + 5257.008106184177 + ] + }, + "raw_value": "CHR-6644-25A-F-C50", + "clean_value": "CHR-6644-25A-F-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553EDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5448.60221307258, + "min_y": 5236.307138728477, + "max_x": 5460.696931656828, + "max_y": 5238.546901429264, + "center": [ + 5454.649572364704, + 5237.427020078871 + ] + }, + "raw_value": "%%UE-6117", + "clean_value": "E-6117", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EDB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5478.465715749737, + "min_y": 5236.307138728477, + "max_x": 5491.904291954457, + "max_y": 5238.546901429264, + "center": [ + 5485.185003852097, + 5237.427020078871 + ] + }, + "raw_value": "%%UE-6117A", + "clean_value": "E-6117A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EDC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5508.329218426895, + "min_y": 5236.307138728477, + "max_x": 5520.423937011144, + "max_y": 5238.546901429264, + "center": [ + 5514.376577719019, + 5237.427020078871 + ] + }, + "raw_value": "%%UE-6217", + "clean_value": "E-6217", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EDD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5538.192721104053, + "min_y": 5236.307138728477, + "max_x": 5551.631297308773, + "max_y": 5238.546901429264, + "center": [ + 5544.912009206413, + 5237.427020078871 + ] + }, + "raw_value": "%%UE-6217A", + "clean_value": "E-6217A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EDE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5362.623084142546, + "min_y": 5267.680836847011, + "max_x": 5394.875667033876, + "max_y": 5272.1603622485845, + "center": [ + 5378.7493755882115, + 5269.920599547798 + ] + }, + "raw_value": "%%U6th PLANT", + "clean_value": "6th PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553EDF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5292.881718351321, + "min_y": 5344.832495786395, + "max_x": 5465.458088040318, + "max_y": 5418.448607829098, + "center": [ + 5379.16990319582, + 5381.640551807746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5292.881718351321, + 5418.448607829098 + ], + [ + 5465.458088040318, + 5418.448607829098 + ], + [ + 5465.458088040318, + 5344.832495786395 + ], + [ + 5292.881718351321, + 5344.832495786395 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553EE0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5302.687343763535, + "min_y": 5405.140012116797, + "max_x": 5334.939926654865, + "max_y": 5409.619537518371, + "center": [ + 5318.813635209201, + 5407.379774817584 + ] + }, + "raw_value": "%%U9th PLANT", + "clean_value": "9th PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553EE1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5163.787055416332, + "max_x": 5582.945228543926, + "max_y": 5163.787055416332, + "center": [ + 5551.317681168074, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5163.787055416332 + ], + [ + 5519.690133792223, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5174.471862832472, + "max_x": 5582.945228543926, + "max_y": 5174.471862832472, + "center": [ + 5551.317681168074, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5174.471862832472 + ], + [ + 5519.690133792223, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5153.102248000193, + "max_x": 5582.945228543926, + "max_y": 5153.102248000193, + "center": [ + 5551.317681168074, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5153.102248000193 + ], + [ + 5519.690133792223, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5153.102248000193, + "max_x": 5582.945228543926, + "max_y": 5153.102248000193, + "center": [ + 5551.317681168074, + 5153.102248000193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5153.102248000193 + ], + [ + 5519.690133792223, + 5153.102248000193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5163.787055416332, + "max_x": 5582.945228543926, + "max_y": 5163.787055416332, + "center": [ + 5551.317681168074, + 5163.787055416332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5163.787055416332 + ], + [ + 5519.690133792223, + 5163.787055416332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE6", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5174.471862832472, + "max_x": 5582.945228543926, + "max_y": 5174.471862832472, + "center": [ + 5551.317681168074, + 5174.471862832472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5174.471862832472 + ], + [ + 5519.690133792223, + 5174.471862832472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5142.417440584062, + "max_x": 5582.945228543926, + "max_y": 5142.417440584062, + "center": [ + 5551.317681168074, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5142.417440584062 + ], + [ + 5519.690133792223, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5142.417440584062, + "max_x": 5582.945228543926, + "max_y": 5142.417440584062, + "center": [ + 5551.317681168074, + 5142.417440584062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5142.417440584062 + ], + [ + 5519.690133792223, + 5142.417440584062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EE9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5139.215879039879, + "max_x": 5542.081661198198, + "max_y": 5139.215879039879, + "center": [ + 5530.885897495211, + 5139.215879039879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.690133792223, + 5139.215879039879 + ], + [ + 5542.081661198198, + 5139.215879039879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EEA", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5532.929123242531, + "min_y": 5137.057630582686, + "max_x": 5535.849878734183, + "max_y": 5138.274612037541, + "center": [ + 5534.389500988357, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EEB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5532.929123242531, + "min_y": 5137.057630582686, + "max_x": 5535.849878734183, + "max_y": 5138.274612037541, + "center": [ + 5534.389500988357, + 5137.666121310114 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EEC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5534.996771376043, + "min_y": 5139.972711614599, + "max_x": 5535.998406099735, + "max_y": 5141.6421028207515, + "center": [ + 5535.49758873789, + 5140.807407217675 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EED", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5521.137770805902, + "min_y": 5140.026275593804, + "max_x": 5526.249092916292, + "max_y": 5141.243257048659, + "center": [ + 5523.6934318610965, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EEE", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5521.137770805902, + "min_y": 5140.026275593804, + "max_x": 5526.249092916292, + "max_y": 5141.243257048659, + "center": [ + 5523.6934318610965, + 5140.634766321231 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EEF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5521.663549269685, + "min_y": 5137.083634048247, + "max_x": 5525.31449363425, + "max_y": 5138.300615503103, + "center": [ + 5523.489021451967, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5521.663549269685, + "min_y": 5137.083634048247, + "max_x": 5525.31449363425, + "max_y": 5138.300615503103, + "center": [ + 5523.489021451967, + 5137.6921247756745 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5528.576892502741, + "min_y": 5136.020785296789, + "max_x": 5528.576892502741, + "max_y": 5142.417440584062, + "center": [ + 5528.576892502741, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5528.576892502741, + 5142.417440584062 + ], + [ + 5528.576892502741, + 5136.020785296789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EF2", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5543.529512226096, + "min_y": 5140.388472455367, + "max_x": 5548.6408343364865, + "max_y": 5141.605453910222, + "center": [ + 5546.085173281292, + 5140.996963182795 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF3", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5543.529512226096, + "min_y": 5140.388472455367, + "max_x": 5548.6408343364865, + "max_y": 5141.605453910222, + "center": [ + 5546.085173281292, + 5140.996963182795 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5542.081661198198, + "min_y": 5136.020785296789, + "max_x": 5542.081661198198, + "max_y": 5142.417440584062, + "center": [ + 5542.081661198198, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5542.081661198198, + 5142.417440584062 + ], + [ + 5542.081661198198, + 5136.020785296789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EF5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5150.871489282997, + "max_x": 5525.879321423619, + "max_y": 5152.088470737852, + "center": [ + 5523.323660368424, + 5151.479980010425 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5172.241104115276, + "max_x": 5525.879321423619, + "max_y": 5173.4580855701315, + "center": [ + 5523.323660368424, + 5172.849594842704 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5182.232706727603, + "max_x": 5529.530265788184, + "max_y": 5183.449688182458, + "center": [ + 5525.149132550707, + 5182.841197455031 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553EF8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5576.92370572043, + "min_y": 5137.417830334262, + "max_x": 5581.893126385041, + "max_y": 5137.417830334262, + "center": [ + 5579.408416052735, + 5137.417830334262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5576.92370572043, + 5137.417830334262 + ], + [ + 5581.893126385041, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EF9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5576.92370572043, + "min_y": 5137.417830334262, + "max_x": 5579.381470138185, + "max_y": 5141.725385866432, + "center": [ + 5578.152587929308, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5576.92370572043, + 5137.417830334262 + ], + [ + 5579.381470138185, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5576.92370572043, + "min_y": 5137.417830334262, + "max_x": 5579.381470138185, + "max_y": 5141.725385866432, + "center": [ + 5578.152587929308, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5576.92370572043, + 5137.417830334262 + ], + [ + 5579.381470138185, + 5141.725385866432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFB", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5576.192844196205, + "min_y": 5136.020785296789, + "max_x": 5576.192844196205, + "max_y": 5142.417440584062, + "center": [ + 5576.192844196205, + 5139.2191129404255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5576.192844196205, + 5142.417440584062 + ], + [ + 5576.192844196205, + 5136.020785296789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5579.381470138185, + "min_y": 5137.417830334262, + "max_x": 5581.893126385041, + "max_y": 5141.725385866432, + "center": [ + 5580.637298261613, + 5139.571608100347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5579.381470138185, + 5141.725385866432 + ], + [ + 5581.893126385041, + 5137.417830334262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFD", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5184.264113696894, + "max_x": 5582.945228543926, + "max_y": 5184.264113696894, + "center": [ + 5551.317681168074, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5184.264113696894 + ], + [ + 5519.690133792223, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5184.264113696894, + "max_x": 5582.945228543926, + "max_y": 5184.264113696894, + "center": [ + 5551.317681168074, + 5184.264113696894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.945228543926, + 5184.264113696894 + ], + [ + 5519.690133792223, + 5184.264113696894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553EFF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5578.783400401437, + "min_y": 5138.226707916594, + "max_x": 5579.947604599321, + "max_y": 5140.167048246401, + "center": [ + 5579.365502500379, + 5139.196878081497 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553F00", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5136.020785296789, + "max_x": 5519.690133792223, + "max_y": 5184.264113696894, + "center": [ + 5519.690133792223, + 5160.142449496841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.690133792223, + 5184.264113696894 + ], + [ + 5519.690133792223, + 5136.020785296789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F01", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5538.280173682082, + "min_y": 5178.069716503075, + "max_x": 5561.797682040344, + "max_y": 5180.682772987327, + "center": [ + 5550.038927861213, + 5179.376244745201 + ] + }, + "raw_value": "10th PLANT 증설공사", + "clean_value": "10th PLANT 증설공사", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "553F02", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5538.624171122723, + "min_y": 5167.793935684509, + "max_x": 5584.0913539486955, + "max_y": 5170.406992168761, + "center": [ + 5561.357762535709, + 5169.100463926635 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "553F0B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.080595837674, + "min_y": 5170.593864280164, + "max_x": 5533.43025568903, + "max_y": 5170.593864280164, + "center": [ + 5533.255425763352, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.080595837674, + 5170.593864280164 + ], + [ + 5533.43025568903, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F0C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.130521175495, + "min_y": 5169.413764349588, + "max_x": 5533.43025568903, + "max_y": 5169.413764349588, + "center": [ + 5533.280388432262, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5169.413764349588 + ], + [ + 5533.130521175495, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F0D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.327807947644, + "min_y": 5169.71045146651, + "max_x": 5533.43025568903, + "max_y": 5169.71045146651, + "center": [ + 5533.379031818336, + 5169.71045146651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5169.71045146651 + ], + [ + 5533.327807947644, + 5169.71045146651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F0E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5532.733789070693, + "min_y": 5169.206637212251, + "max_x": 5533.091269303679, + "max_y": 5169.206637212251, + "center": [ + 5532.912529187186, + 5169.206637212251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.091269303679, + 5169.206637212251 + ], + [ + 5532.733789070693, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F0F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5532.733789070693, + "min_y": 5169.206637212251, + "max_x": 5533.080595837674, + "max_y": 5170.593864280164, + "center": [ + 5532.907192454184, + 5169.900250746207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.080595837674, + 5170.593864280164 + ], + [ + 5532.733789070693, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F10", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.327807947644, + "min_y": 5169.71045146651, + "max_x": 5533.43025568903, + "max_y": 5170.120242432068, + "center": [ + 5533.379031818336, + 5169.9153469492885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5170.120242432068 + ], + [ + 5533.327807947644, + 5169.71045146651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F11", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.091269303679, + "min_y": 5169.206637212251, + "max_x": 5533.130521175495, + "max_y": 5169.413764349588, + "center": [ + 5533.110895239587, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.130521175495, + 5169.413764349588 + ], + [ + 5533.091269303679, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F12", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.43025568903, + "min_y": 5170.593864280164, + "max_x": 5533.779915540392, + "max_y": 5170.593864280164, + "center": [ + 5533.60508561471, + 5170.593864280164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.779915540392, + 5170.593864280164 + ], + [ + 5533.43025568903, + 5170.593864280164 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F13", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.43025568903, + "min_y": 5169.413764349588, + "max_x": 5533.729990202573, + "max_y": 5169.413764349588, + "center": [ + 5533.580122945801, + 5169.413764349588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5169.413764349588 + ], + [ + 5533.729990202573, + 5169.413764349588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F14", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.43025568903, + "min_y": 5169.71045146651, + "max_x": 5533.532703430421, + "max_y": 5169.71045146651, + "center": [ + 5533.481479559725, + 5169.71045146651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5169.71045146651 + ], + [ + 5533.532703430421, + 5169.71045146651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F15", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.769242074388, + "min_y": 5169.206637212251, + "max_x": 5534.126722307369, + "max_y": 5169.206637212251, + "center": [ + 5533.947982190879, + 5169.206637212251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.769242074388, + 5169.206637212251 + ], + [ + 5534.126722307369, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F16", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.779915540392, + "min_y": 5169.206637212251, + "max_x": 5534.126722307369, + "max_y": 5170.593864280164, + "center": [ + 5533.953318923881, + 5169.900250746207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.779915540392, + 5170.593864280164 + ], + [ + 5534.126722307369, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F17", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.43025568903, + "min_y": 5169.71045146651, + "max_x": 5533.532703430421, + "max_y": 5170.120242432068, + "center": [ + 5533.481479559725, + 5169.9153469492885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.43025568903, + 5170.120242432068 + ], + [ + 5533.532703430421, + 5169.71045146651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F18", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5533.729990202573, + "min_y": 5169.206637212251, + "max_x": 5533.769242074388, + "max_y": 5169.413764349588, + "center": [ + 5533.749616138481, + 5169.310200780919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.729990202573, + 5169.413764349588 + ], + [ + 5533.769242074388, + 5169.206637212251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F19", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 5533.580700961558, + "min_y": 5166.720206165759, + "max_x": 5540.505953677325, + "max_y": 5167.829987820085, + "center": [ + 5537.043327319441, + 5167.275096992922 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F1A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5165.901413657422, + "min_y": 5136.020785296789, + "max_x": 5582.945228543926, + "max_y": 5433.022211779237, + "center": [ + 5374.423321100674, + 5284.5214985380135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5165.901413657422, + 5433.022211779237 + ], + [ + 5582.945228543926, + 5433.022211779237 + ], + [ + 5582.945228543926, + 5136.020785296789 + ], + [ + 5165.901413657422, + 5136.020785296789 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F1B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5520.767999313229, + "min_y": 5161.556296699135, + "max_x": 5529.530265788184, + "max_y": 5162.77327815399, + "center": [ + 5525.149132550707, + 5162.164787426562 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "553F1C", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5548.220098992175, + "min_y": 5156.654849414124, + "max_x": 5559.086004839093, + "max_y": 5159.241969853867, + "center": [ + 5553.653051915634, + 5157.948409633996 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "553F1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.668589658961, + "min_y": 5161.048795138769, + "max_x": 5536.288131300187, + "max_y": 5161.048795138769, + "center": [ + 5535.978360479574, + 5161.048795138769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5536.288131300187, + 5161.048795138769 + ], + [ + 5535.668589658961, + 5161.048795138769 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5533.367434991542, + "min_y": 5161.048795138769, + "max_x": 5533.98697663277, + "max_y": 5161.048795138769, + "center": [ + 5533.677205812156, + 5161.048795138769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.98697663277, + 5161.048795138769 + ], + [ + 5533.367434991542, + 5161.048795138769 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5533.367434991542, + "min_y": 5160.163735651299, + "max_x": 5536.288131300187, + "max_y": 5160.163735651299, + "center": [ + 5534.8277831458645, + 5160.163735651299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5536.288131300187, + 5160.163735651299 + ], + [ + 5533.367434991542, + 5160.163735651299 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5533.98697663277, + "min_y": 5161.048795138769, + "max_x": 5533.98697663277, + "max_y": 5161.57983083126, + "center": [ + 5533.98697663277, + 5161.314312985014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.98697663277, + 5161.57983083126 + ], + [ + 5533.98697663277, + 5161.048795138769 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5533.367434991542, + "min_y": 5160.163735651299, + "max_x": 5533.367434991542, + "max_y": 5161.048795138769, + "center": [ + 5533.367434991542, + 5160.606265395034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5533.367434991542, + 5161.048795138769 + ], + [ + 5533.367434991542, + 5160.163735651299 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.668589658961, + "min_y": 5161.048795138769, + "max_x": 5535.668589658961, + "max_y": 5161.57983083126, + "center": [ + 5535.668589658961, + 5161.314312985014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5535.668589658961, + 5161.57983083126 + ], + [ + 5535.668589658961, + 5161.048795138769 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5536.288131300187, + "min_y": 5160.163735651299, + "max_x": 5536.288131300187, + "max_y": 5161.048795138769, + "center": [ + 5536.288131300187, + 5160.606265395034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5536.288131300187, + 5161.048795138769 + ], + [ + 5536.288131300187, + 5160.163735651299 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F28", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5534.208241504634, + "min_y": 5157.4756024834805, + "max_x": 5535.447324787087, + "max_y": 5158.714685765934, + "center": [ + 5534.827783145861, + 5158.095144124707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5534.827783145861, + 5158.095144124707 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F2A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 5537.063057533116, + "min_y": 5157.4471183207515, + "max_x": 5538.302140815569, + "max_y": 5158.686201603205, + "center": [ + 5537.682599174343, + 5158.066659961978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5537.682599174343, + 5158.066659961978 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "553F2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5537.015061854623, + "min_y": 5158.522419152478, + "max_x": 5537.514778476576, + "max_y": 5158.6630390852, + "center": [ + 5537.2649201655995, + 5158.592729118838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5537.514778476576, + 5158.6630390852 + ], + [ + 5537.015061854623, + 5158.522419152478 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "553F2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.447168180936, + "min_y": 5158.08121489147, + "max_x": 5537.015061854623, + "max_y": 5158.522419152478, + "center": [ + 5536.231115017779, + 5158.301817021974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5537.015061854623, + 5158.522419152478 + ], + [ + 5535.447168180936, + 5158.08121489147 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5534.995603843629, + "min_y": 5157.498765001489, + "max_x": 5535.495320465583, + "max_y": 5157.639384934206, + "center": [ + 5535.245462154606, + 5157.569074967847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5534.995603843629, + 5157.498765001489 + ], + [ + 5535.495320465583, + 5157.639384934206 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "553F2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.495320465583, + "min_y": 5157.639384934206, + "max_x": 5537.063214139266, + "max_y": 5158.08058919522, + "center": [ + 5536.279267302425, + 5157.859987064713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5535.495320465583, + 5157.639384934206 + ], + [ + 5537.063214139266, + 5158.08058919522 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "553F2F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5160.279176337466, + "min_y": 5158.379123973944, + "max_x": 5186.409741179979, + "max_y": 5160.179123973944, + "center": [ + 5173.344458758723, + 5159.279123973944 + ] + }, + "raw_value": "\\pi8.51082;{\\W0.9;\\LCH-6601\\P\\pi8.61193;\\lCHILLER}", + "clean_value": "\\pi8.51082; .9; CH-6601 \\pi8.61193;\\lCHILLER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F33", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5168.638866764259, + "min_y": 5151.833167222649, + "max_x": 5202.534160980647, + "max_y": 5153.633167222649, + "center": [ + 5185.586513872453, + 5152.733167222648 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA. : 120 RT ", + "clean_value": ".9; CAPA. : 120 RT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F37", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5188.996176392141, + "min_y": 5158.62550409928, + "max_x": 5215.126741234654, + "max_y": 5160.42550409928, + "center": [ + 5202.061458813398, + 5159.52550409928 + ] + }, + "raw_value": "\\pi7.24251;{\\W0.9;\\LP-6601A/B\\P\\pi0.76251;\\lCHILLED WATER PUMP}", + "clean_value": "\\pi7.24251; .9; P-6601A/B \\pi0.76251;\\lCHILLED WATER PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F3B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5193.13093977734, + "min_y": 5152.581504485322, + "max_x": 5227.026233993729, + "max_y": 5154.381504485322, + "center": [ + 5210.078586885535, + 5153.481504485322 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA. : 1500 L/min\\PHEAD(M) : 50 M\\PPOWER : 18.5 Kw", + "clean_value": ".9; CAPA. : 1500 L/min HEAD(M) : 50 M POWER : 18.5 Kw", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F3F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5520.22249192939, + "min_y": 5185.029137017409, + "max_x": 5522.400001758816, + "max_y": 5185.93643277967, + "center": [ + 5521.311246844103, + 5185.48278489854 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5523.228629629398, + "min_y": 5184.264113696894, + "max_x": 5523.228629629548, + "max_y": 5207.629923617822, + "center": [ + 5523.228629629473, + 5195.947018657358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629398, + 5184.264113696894 + ], + [ + 5523.228629629548, + 5207.629923617822 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792277, + "min_y": 5187.215768965883, + "max_x": 5582.94522854393, + "max_y": 5187.215768965883, + "center": [ + 5551.317681168104, + 5187.215768965883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5187.215768965883 + ], + [ + 5519.690133792277, + 5187.215768965883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F42", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5187.215768965924, + "max_x": 5523.228629629485, + "max_y": 5190.618128074394, + "center": [ + 5521.527450075269, + 5188.916948520159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629485, + 5188.916948520139 + ], + [ + 5521.527450075225, + 5190.618128074394 + ], + [ + 5519.826270521053, + 5188.916948520139 + ], + [ + 5521.527450075225, + 5187.215768965924 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F43", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5190.618128074394, + "max_x": 5523.228629629485, + "max_y": 5194.020487182864, + "center": [ + 5521.527450075269, + 5192.319307628629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629485, + 5192.31930762865 + ], + [ + 5521.527450075225, + 5194.020487182864 + ], + [ + 5519.826270521053, + 5192.31930762865 + ], + [ + 5521.527450075225, + 5190.618128074394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F44", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5194.020487182864, + "max_x": 5523.228629629485, + "max_y": 5197.422846291334, + "center": [ + 5521.527450075269, + 5195.721666737099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629485, + 5195.721666737118 + ], + [ + 5521.527450075225, + 5197.422846291334 + ], + [ + 5519.826270521053, + 5195.721666737118 + ], + [ + 5521.527450075225, + 5194.020487182864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F45", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521053, + "min_y": 5197.422846291334, + "max_x": 5523.228629629485, + "max_y": 5200.825205399843, + "center": [ + 5521.527450075269, + 5199.124025845589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629485, + 5199.124025845588 + ], + [ + 5521.527450075225, + 5200.825205399843 + ], + [ + 5519.826270521053, + 5199.124025845588 + ], + [ + 5521.527450075225, + 5197.422846291334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F46", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5527.284282139843, + "min_y": 5185.029137017409, + "max_x": 5529.916844840646, + "max_y": 5186.126038142744, + "center": [ + 5528.600563490245, + 5185.577587580076 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5572.496456213681, + "min_y": 5184.264113696935, + "max_x": 5572.49645621383, + "max_y": 5207.629923616387, + "center": [ + 5572.496456213756, + 5195.947018656661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5572.496456213681, + 5184.264113696935 + ], + [ + 5572.49645621383, + 5207.629923616387 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5567.46380201233, + "min_y": 5184.264113696894, + "max_x": 5567.463802012388, + "max_y": 5207.629923616535, + "center": [ + 5567.463802012359, + 5195.947018656714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5567.46380201233, + 5184.264113696894 + ], + [ + 5567.463802012388, + 5207.629923616535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F49", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5568.141624381857, + "min_y": 5185.029137017409, + "max_x": 5570.77418708266, + "max_y": 5186.126038142744, + "center": [ + 5569.457905732259, + 5185.577587580076 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5561.793203498202, + "min_y": 5184.264113696894, + "max_x": 5561.793203498261, + "max_y": 5207.629923616699, + "center": [ + 5561.793203498231, + 5195.947018656796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5561.793203498202, + 5184.264113696894 + ], + [ + 5561.793203498261, + 5207.629923616699 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5562.795110874418, + "min_y": 5185.029137017409, + "max_x": 5565.427673575222, + "max_y": 5186.126038142744, + "center": [ + 5564.1113922248205, + 5185.577587580076 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5556.122604984071, + "min_y": 5184.264113696894, + "max_x": 5556.122604984221, + "max_y": 5207.629923616864, + "center": [ + 5556.122604984146, + 5195.94701865688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5556.122604984071, + 5184.264113696894 + ], + [ + 5556.122604984221, + 5207.629923616864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5557.077502312115, + "min_y": 5185.029137017409, + "max_x": 5559.710065012919, + "max_y": 5186.126038142744, + "center": [ + 5558.393783662517, + 5185.577587580076 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5540.934171947579, + "min_y": 5185.029137017409, + "max_x": 5548.173719374788, + "max_y": 5186.126038142744, + "center": [ + 5544.553945661183, + 5185.577587580076 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5534.818678218965, + "min_y": 5184.264113696935, + "max_x": 5534.818678219024, + "max_y": 5207.629923617485, + "center": [ + 5534.818678218995, + 5195.94701865721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5534.818678219024, + 5207.629923617485 + ], + [ + 5534.818678218965, + 5184.264113696935 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F50", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5575.192746451932, + "min_y": 5184.976896931174, + "max_x": 5579.141590503137, + "max_y": 5186.073798056509, + "center": [ + 5577.167168477535, + 5185.525347493842 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F51", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521057, + "min_y": 5200.825205399843, + "max_x": 5523.228629629485, + "max_y": 5204.227564508354, + "center": [ + 5521.527450075271, + 5202.526384954099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629485, + 5202.526384954099 + ], + [ + 5521.527450075228, + 5204.227564508354 + ], + [ + 5519.826270521057, + 5202.526384954099 + ], + [ + 5521.527450075228, + 5200.825205399843 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F52", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5519.826270521104, + "min_y": 5204.227564508833, + "max_x": 5523.228629629535, + "max_y": 5207.629923617344, + "center": [ + 5521.527450075319, + 5205.928744063089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5523.228629629535, + 5205.928744063089 + ], + [ + 5521.527450075277, + 5207.629923617344 + ], + [ + 5519.826270521104, + 5205.928744063089 + ], + [ + 5521.527450075277, + 5204.227564508833 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792228, + "min_y": 5184.264113696997, + "max_x": 5519.690133792376, + "max_y": 5207.629923617925, + "center": [ + 5519.690133792303, + 5195.947018657461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5519.690133792228, + 5184.264113696997 + ], + [ + 5519.690133792376, + 5207.629923617925 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792266, + "min_y": 5190.618128074394, + "max_x": 5582.94522854393, + "max_y": 5190.618128074394, + "center": [ + 5551.317681168099, + 5190.618128074394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5190.618128074394 + ], + [ + 5519.690133792266, + 5190.618128074394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792259, + "min_y": 5194.020487182905, + "max_x": 5582.94522854393, + "max_y": 5194.020487182905, + "center": [ + 5551.317681168095, + 5194.020487182905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5194.020487182905 + ], + [ + 5519.690133792259, + 5194.020487182905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792249, + "min_y": 5197.422846291416, + "max_x": 5582.94522854393, + "max_y": 5197.422846291416, + "center": [ + 5551.31768116809, + 5197.422846291416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5197.422846291416 + ], + [ + 5519.690133792249, + 5197.422846291416 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792241, + "min_y": 5200.825205399927, + "max_x": 5582.94522854393, + "max_y": 5200.825205399927, + "center": [ + 5551.317681168086, + 5200.825205399927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5200.825205399927 + ], + [ + 5519.690133792241, + 5200.825205399927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792232, + "min_y": 5204.227564508437, + "max_x": 5582.94522854393, + "max_y": 5204.227564508437, + "center": [ + 5551.3176811680805, + 5204.227564508437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5204.227564508437 + ], + [ + 5519.690133792232, + 5204.227564508437 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5519.690133792223, + "min_y": 5207.629923616948, + "max_x": 5582.94522854393, + "max_y": 5207.629923616948, + "center": [ + 5551.317681168077, + 5207.629923616948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5582.94522854393, + 5207.629923616948 + ], + [ + 5519.690133792223, + 5207.629923616948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5296.676965769003, + "min_y": 5192.696508957998, + "max_x": 5304.142841438293, + "max_y": 5200.162384627288, + "center": [ + 5300.409903603648, + 5196.429446792643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5300.409903603648, + 5196.429446792643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5299.347749612085, + "min_y": 5197.084167825481, + "max_x": 5301.362057799411, + "max_y": 5198.762757981585, + "center": [ + 5300.354903705747, + 5197.923462903533 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5298.366329415605, + "min_y": 5194.099499511828, + "max_x": 5302.394945790256, + "max_y": 5195.778089667932, + "center": [ + 5300.380637602931, + 5194.93879458988 + ] + }, + "raw_value": "6601", + "clean_value": "6601", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5304.142841438292, + "min_y": 5192.696508957998, + "max_x": 5311.6087171075815, + "max_y": 5200.162384627288, + "center": [ + 5307.875779272937, + 5196.429446792643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5307.875779272937, + 5196.429446792643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5306.555024843999, + "min_y": 5197.084167825481, + "max_x": 5309.576487124987, + "max_y": 5198.762757981585, + "center": [ + 5308.065755984493, + 5197.923462903533 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F5F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5305.832205084895, + "min_y": 5194.099499511828, + "max_x": 5309.860821459546, + "max_y": 5195.778089667932, + "center": [ + 5307.84651327222, + 5194.93879458988 + ] + }, + "raw_value": "6601", + "clean_value": "6601", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F60", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5304.142841438293, + "min_y": 5192.696508957998, + "max_x": 5311.608717107583, + "max_y": 5200.162384627287, + "center": [ + 5307.8757792729375, + 5196.429446792643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5304.142841438293, + 5200.162384627287 + ], + [ + 5311.608717107583, + 5200.162384627287 + ], + [ + 5311.608717107583, + 5192.696508957998 + ], + [ + 5304.142841438293, + 5192.696508957998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F61", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5304.142841438293, + "min_y": 5196.429446792643, + "max_x": 5311.608717107583, + "max_y": 5196.429446792643, + "center": [ + 5307.8757792729375, + 5196.429446792643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5304.142841438293, + 5196.429446792643 + ], + [ + 5311.608717107583, + 5196.429446792643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F62", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 5311.608717107583, + "min_y": 5192.696508957998, + "max_x": 5319.028687077173, + "max_y": 5193.891049065084, + "center": [ + 5315.318702092378, + 5193.293779011541 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 21\\P H 19\\P L 15.5\\P LL 15", + "clean_value": "\\Fmonotxt.shx; .6; HH 21 H 19 L 15.5 LL 15", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5293.653896005142, + "min_y": 5196.429446792643, + "max_x": 5296.676965769004, + "max_y": 5196.429446792643, + "center": [ + 5295.165430887073, + 5196.429446792643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5296.676965769004, + 5196.429446792643 + ], + [ + 5293.653896005142, + 5196.429446792643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553F67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5334.162442598004, + "min_y": 5311.033905731008, + "max_x": 5367.209472809694, + "max_y": 5311.033905731008, + "center": [ + 5350.6859577038485, + 5311.033905731008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5334.162442598004, + 5311.033905731008 + ], + [ + 5367.209472809694, + 5311.033905731008 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553F68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5367.209472809694, + "min_y": 5286.441857608182, + "max_x": 5367.209472809694, + "max_y": 5311.033905731008, + "center": [ + 5367.209472809694, + 5298.737881669595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5367.209472809694, + 5311.033905731008 + ], + [ + 5367.209472809694, + 5286.441857608182 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553F69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5305.058602591799, + "max_x": 5325.027887996228, + "max_y": 5319.650345468114, + "center": [ + 5325.027887996228, + 5312.354474029957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.027887996228, + 5319.650345468114 + ], + [ + 5325.027887996228, + 5305.058602591799 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553F6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5325.027887996228, + "min_y": 5305.058602591799, + "max_x": 5358.074918207918, + "max_y": 5305.058602591799, + "center": [ + 5341.551403102073, + 5305.058602591799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5325.027887996228, + 5305.058602591799 + ], + [ + 5358.074918207918, + 5305.058602591799 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553F6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5358.074918207918, + "min_y": 5295.058297345287, + "max_x": 5358.074918207918, + "max_y": 5305.058602591799, + "center": [ + 5358.074918207918, + 5300.058449968543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.074918207918, + 5305.058602591799 + ], + [ + 5358.074918207918, + 5295.058297345287 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "553F6C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5506.252217160163, + "min_y": 5387.217942747003, + "max_x": 5516.36673136306, + "max_y": 5411.440289419929, + "center": [ + 5511.309474261612, + 5399.329116083466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5516.36673136306, + 5387.217942747003 + ], + [ + 5516.36673136306, + 5411.440289419929 + ], + [ + 5506.252217160163, + 5411.440289419929 + ], + [ + 5506.252217160163, + 5387.217942747003 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5512.429969410086, + "min_y": 5393.53783946208, + "max_x": 5525.868545614807, + "max_y": 5395.777602162867, + "center": [ + 5519.149257512447, + 5394.657720812474 + ] + }, + "raw_value": "%%UE-10117", + "clean_value": "E-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5498.90576885114, + "min_y": 5402.539078045404, + "max_x": 5506.252217160163, + "max_y": 5402.539078045404, + "center": [ + 5502.578993005652, + 5402.539078045404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5498.90576885114, + 5402.539078045404 + ], + [ + 5506.252217160163, + 5402.539078045404 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "553F6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5501.256166925617, + "min_y": 5403.335088365954, + "max_x": 5503.943882166562, + "max_y": 5405.574851066741, + "center": [ + 5502.600024546089, + 5404.4549697163475 + ] + }, + "raw_value": "6F", + "clean_value": "6F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553F70", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5547.136452806269, + "min_y": 5387.217942747003, + "max_x": 5557.250967009166, + "max_y": 5411.440289419929, + "center": [ + 5552.193709907717, + 5399.329116083466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5557.250967009166, + 5387.217942747003 + ], + [ + 5557.250967009166, + 5411.440289419929 + ], + [ + 5547.136452806269, + 5411.440289419929 + ], + [ + 5547.136452806269, + 5387.217942747003 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "553F71", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5553.314205056192, + "min_y": 5393.53783946208, + "max_x": 5566.752781260912, + "max_y": 5395.777602162867, + "center": [ + 5560.033493158552, + 5394.657720812474 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5539.790004497247, + "min_y": 5402.539078045404, + "max_x": 5547.136452806269, + "max_y": 5402.539078045404, + "center": [ + 5543.463228651757, + 5402.539078045404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5539.790004497247, + 5402.539078045404 + ], + [ + 5547.136452806269, + 5402.539078045404 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "553F73", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5542.140402571724, + "min_y": 5403.335088365954, + "max_x": 5544.828117812668, + "max_y": 5405.574851066741, + "center": [ + 5543.4842601921955, + 5404.4549697163475 + ] + }, + "raw_value": "6F", + "clean_value": "6F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5494.653787870971, + "min_y": 5382.704877343247, + "max_x": 5494.653787870971, + "max_y": 5385.355441868796, + "center": [ + 5494.653787870971, + 5384.030159606022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5494.653787870971, + 5382.704877343247 + ], + [ + 5494.653787870971, + 5385.355441868796 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5501.743539717118, + "min_y": 5372.697234431171, + "max_x": 5501.743539717118, + "max_y": 5375.34779895672, + "center": [ + 5501.743539717118, + 5374.022516693945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5501.743539717118, + 5372.697234431171 + ], + [ + 5501.743539717118, + 5375.34779895672 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.299828328021, + "min_y": 5382.704877343247, + "max_x": 5535.299828328021, + "max_y": 5385.355441868796, + "center": [ + 5535.299828328021, + 5384.030159606022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5535.299828328021, + 5382.704877343247 + ], + [ + 5535.299828328021, + 5385.355441868796 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5540.568371255533, + "min_y": 5372.697234431171, + "max_x": 5540.568371255533, + "max_y": 5375.34779895672, + "center": [ + 5540.568371255533, + 5374.022516693945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5540.568371255533, + 5372.697234431171 + ], + [ + 5540.568371255533, + 5375.34779895672 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5552.297811044529, + "min_y": 5372.697234431171, + "max_x": 5552.297811044529, + "max_y": 5375.615563075789, + "center": [ + 5552.297811044529, + 5374.15639875348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5552.297811044529, + 5372.697234431171 + ], + [ + 5552.297811044529, + 5375.615563075789 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "553F7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5552.297811044529, + "min_y": 5378.930873761795, + "max_x": 5552.297811044529, + "max_y": 5382.704877343247, + "center": [ + 5552.297811044529, + 5380.8178755525205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5552.297811044529, + 5378.930873761795 + ], + [ + 5552.297811044529, + 5382.704877343247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "553F7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5494.653787870971, + "min_y": 5388.670752554802, + "max_x": 5494.653787870971, + "max_y": 5409.141707791553, + "center": [ + 5494.653787870971, + 5398.906230173177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5494.653787870971, + 5388.670752554802 + ], + [ + 5494.653787870971, + 5409.141707791553 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5494.653787870971, + "min_y": 5409.141707791553, + "max_x": 5506.252217160163, + "max_y": 5409.141707791553, + "center": [ + 5500.453002515567, + 5409.141707791553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5494.653787870971, + 5409.141707791553 + ], + [ + 5506.252217160163, + 5409.141707791553 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5501.743539717118, + "min_y": 5378.663109642726, + "max_x": 5501.743539717118, + "max_y": 5381.46378835368, + "center": [ + 5501.743539717118, + 5380.063448998203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5501.743539717118, + 5378.663109642726 + ], + [ + 5501.743539717118, + 5381.46378835368 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5501.743539717118, + "min_y": 5384.527998173613, + "max_x": 5501.743539717118, + "max_y": 5389.932737004382, + "center": [ + 5501.743539717118, + 5387.230367588998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5501.743539717118, + 5384.527998173613 + ], + [ + 5501.743539717118, + 5389.932737004382 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5501.743539717118, + "min_y": 5389.932737004382, + "max_x": 5506.252217160163, + "max_y": 5389.932737004382, + "center": [ + 5503.99787843864, + 5389.932737004382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5501.743539717118, + 5389.932737004382 + ], + [ + 5506.252217160163, + 5389.932737004382 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.299828328021, + "min_y": 5388.670752554802, + "max_x": 5535.299828328021, + "max_y": 5409.141707791553, + "center": [ + 5535.299828328021, + 5398.906230173177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5535.299828328021, + 5388.670752554802 + ], + [ + 5535.299828328021, + 5409.141707791553 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5535.299828328021, + "min_y": 5409.141707791553, + "max_x": 5547.136452806269, + "max_y": 5409.141707791553, + "center": [ + 5541.218140567145, + 5409.141707791553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5535.299828328021, + 5409.141707791553 + ], + [ + 5547.136452806269, + 5409.141707791553 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5540.568371255533, + "min_y": 5378.663109642726, + "max_x": 5540.568371255533, + "max_y": 5381.88776212615, + "center": [ + 5540.568371255533, + 5380.275435884438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5540.568371255533, + 5378.663109642726 + ], + [ + 5540.568371255533, + 5381.88776212615 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5540.568371255533, + "min_y": 5383.770946387743, + "max_x": 5540.568371255533, + "max_y": 5389.932737004382, + "center": [ + 5540.568371255533, + 5386.851841696062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5540.568371255533, + 5383.770946387743 + ], + [ + 5540.568371255533, + 5389.932737004382 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5540.568371255533, + "min_y": 5389.932737004382, + "max_x": 5547.136452806269, + "max_y": 5389.932737004382, + "center": [ + 5543.852412030901, + 5389.932737004382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5540.568371255533, + 5389.932737004382 + ], + [ + 5547.136452806269, + 5389.932737004382 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "553F89", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5473.574308700932, + "min_y": 5344.832495786395, + "max_x": 5571.308901150665, + "max_y": 5418.448607829098, + "center": [ + 5522.441604925799, + 5381.640551807746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5473.574308700932, + 5418.448607829098 + ], + [ + 5571.308901150665, + 5418.448607829098 + ], + [ + 5571.308901150665, + 5344.832495786395 + ], + [ + 5473.574308700932, + 5344.832495786395 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "553F8A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5533.293338812496, + "min_y": 5353.85747376301, + "max_x": 5568.23363694477, + "max_y": 5358.336999164583, + "center": [ + 5550.763487878633, + 5356.097236463796 + ] + }, + "raw_value": "%%U10th PLANT", + "clean_value": "10th PLANT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553F8B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5492.075221136428, + "min_y": 5390.125643176643, + "max_x": 5510.889227823037, + "max_y": 5391.618818310501, + "center": [ + 5501.482224479732, + 5390.872230743573 + ] + }, + "raw_value": "CHR-10641-65A-F1A-C50", + "clean_value": "CHR-10641-65A-F1A-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553F8C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5499.550809817738, + "min_y": 5374.811179502344, + "max_x": 5518.364816504347, + "max_y": 5376.304354636202, + "center": [ + 5508.957813161042, + 5375.557767069273 + ] + }, + "raw_value": "CHS-10631-65A-F1A-C50", + "clean_value": "CHS-10631-65A-F1A-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553F8D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5533.070384872644, + "min_y": 5390.607939220597, + "max_x": 5551.884391559253, + "max_y": 5392.101114354455, + "center": [ + 5542.477388215949, + 5391.354526787525 + ] + }, + "raw_value": "CHR-10642-50A-F1A-C50", + "clean_value": "CHR-10642-50A-F1A-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553F8E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5539.068215334157, + "min_y": 5374.215871985558, + "max_x": 5557.882222020766, + "max_y": 5375.709047119416, + "center": [ + 5548.475218677461, + 5374.962459552487 + ] + }, + "raw_value": "CHS-10632-50A-F1A-C50", + "clean_value": "CHS-10632-50A-F1A-C50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "553F8F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5246.1016859258, + "min_y": 5249.71471027786, + "max_x": 5258.1016859258, + "max_y": 5254.71471027786, + "center": [ + 5252.1016859258, + 5252.21471027786 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "553F90", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5364.124312258464, + "min_y": 5256.271522851898, + "max_x": 5376.124312258464, + "max_y": 5261.271522851898, + "center": [ + 5370.124312258464, + 5258.771522851898 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "553F91", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5304.608628894129, + "min_y": 5393.460216708668, + "max_x": 5316.608628894129, + "max_y": 5398.460216708668, + "center": [ + 5310.608628894129, + 5395.960216708668 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "553F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5294.809434822977, + "max_x": 5358.821505774848, + "max_y": 5294.809434822977, + "center": [ + 5358.07491820792, + 5294.809434822977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.32833064099, + 5294.809434822977 + ], + [ + 5358.821505774848, + 5294.809434822977 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5295.058297345287, + "max_x": 5358.821505774848, + "max_y": 5295.058297345287, + "center": [ + 5358.07491820792, + 5295.058297345287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.32833064099, + 5295.058297345287 + ], + [ + 5358.821505774848, + 5295.058297345287 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5291.991849181591, + "max_x": 5358.821505774848, + "max_y": 5291.991849181591, + "center": [ + 5358.07491820792, + 5291.991849181591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.32833064099, + 5291.991849181591 + ], + [ + 5358.821505774848, + 5291.991849181591 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.32833064099, + "min_y": 5291.742986659281, + "max_x": 5358.821505774848, + "max_y": 5291.742986659281, + "center": [ + 5358.07491820792, + 5291.742986659281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5357.32833064099, + 5291.742986659281 + ], + [ + 5358.821505774848, + 5291.742986659281 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5357.460214948107, + "min_y": 5292.2407117039, + "max_x": 5358.689621467728, + "max_y": 5294.560572300668, + "center": [ + 5358.074918207918, + 5293.400642002284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.689621467728, + 5292.2407117039 + ], + [ + 5357.460214948107, + 5294.560572300668 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F97", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5357.767839139419, + "min_y": 5293.093562933786, + "max_x": 5358.381997276417, + "max_y": 5293.707721070784, + "center": [ + 5358.074918207918, + 5293.400642002285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5358.074918207918, + 5293.400642002285 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5286.192995085873, + "max_x": 5367.956060376624, + "max_y": 5286.192995085873, + "center": [ + 5367.209472809695, + 5286.192995085873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5366.462885242767, + 5286.192995085873 + ], + [ + 5367.956060376624, + 5286.192995085873 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5286.441857608182, + "max_x": 5367.956060376624, + "max_y": 5286.441857608182, + "center": [ + 5367.209472809695, + 5286.441857608182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5366.462885242767, + 5286.441857608182 + ], + [ + 5367.956060376624, + 5286.441857608182 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5283.375409444485, + "max_x": 5367.956060376624, + "max_y": 5283.375409444485, + "center": [ + 5367.209472809695, + 5283.375409444485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5366.462885242767, + 5283.375409444485 + ], + [ + 5367.956060376624, + 5283.375409444485 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5366.462885242767, + "min_y": 5283.126546922176, + "max_x": 5367.956060376624, + "max_y": 5283.126546922176, + "center": [ + 5367.209472809695, + 5283.126546922176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5366.462885242767, + 5283.126546922176 + ], + [ + 5367.956060376624, + 5283.126546922176 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5366.594769549884, + "min_y": 5283.624271966795, + "max_x": 5367.824176069506, + "max_y": 5285.944132563564, + "center": [ + 5367.209472809695, + 5284.78420226518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5367.824176069506, + 5283.624271966795 + ], + [ + 5366.594769549884, + 5285.944132563564 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5366.902393741195, + "min_y": 5284.477123196681, + "max_x": 5367.516551878192, + "max_y": 5285.091281333678, + "center": [ + 5367.209472809694, + 5284.784202265179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5367.209472809694, + 5284.784202265179 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5358.052121988844, + "max_x": 5378.13579641863, + "max_y": 5358.052121988844, + "center": [ + 5377.389208851701, + 5358.052121988844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5376.642621284773, + 5358.052121988844 + ], + [ + 5378.13579641863, + 5358.052121988844 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553F9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5358.300984511155, + "max_x": 5378.13579641863, + "max_y": 5358.300984511155, + "center": [ + 5377.389208851701, + 5358.300984511155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5376.642621284773, + 5358.300984511155 + ], + [ + 5378.13579641863, + 5358.300984511155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5355.234536347458, + "max_x": 5378.13579641863, + "max_y": 5355.234536347458, + "center": [ + 5377.389208851701, + 5355.234536347458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5376.642621284773, + 5355.234536347458 + ], + [ + 5378.13579641863, + 5355.234536347458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.642621284773, + "min_y": 5354.985673825148, + "max_x": 5378.13579641863, + "max_y": 5354.985673825148, + "center": [ + 5377.389208851701, + 5354.985673825148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5376.642621284773, + 5354.985673825148 + ], + [ + 5378.13579641863, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5376.774505591889, + "min_y": 5355.483398869767, + "max_x": 5378.003912111512, + "max_y": 5357.803259466535, + "center": [ + 5377.3892088517005, + 5356.6433291681515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5378.003912111512, + 5355.483398869767 + ], + [ + 5376.774505591889, + 5357.803259466535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5377.082129783203, + "min_y": 5356.336250099652, + "max_x": 5377.6962879202, + "max_y": 5356.950408236649, + "center": [ + 5377.389208851701, + 5356.643329168151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5377.389208851701, + 5356.643329168151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5366.668561725949, + "max_x": 5371.458799844218, + "max_y": 5366.668561725949, + "center": [ + 5370.71221227729, + 5366.668561725949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5369.965624710361, + 5366.668561725949 + ], + [ + 5371.458799844218, + 5366.668561725949 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5366.91742424826, + "max_x": 5371.458799844218, + "max_y": 5366.91742424826, + "center": [ + 5370.71221227729, + 5366.91742424826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5369.965624710361, + 5366.91742424826 + ], + [ + 5371.458799844218, + 5366.91742424826 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5363.850976084563, + "max_x": 5371.458799844218, + "max_y": 5363.850976084563, + "center": [ + 5370.71221227729, + 5363.850976084563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5369.965624710361, + 5363.850976084563 + ], + [ + 5371.458799844218, + 5363.850976084563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5369.965624710361, + "min_y": 5363.602113562254, + "max_x": 5371.458799844218, + "max_y": 5363.602113562254, + "center": [ + 5370.71221227729, + 5363.602113562254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5369.965624710361, + 5363.602113562254 + ], + [ + 5371.458799844218, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5370.097509017478, + "min_y": 5364.099838606872, + "max_x": 5371.3269155371, + "max_y": 5366.419699203641, + "center": [ + 5370.712212277289, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5371.3269155371, + 5364.099838606872 + ], + [ + 5370.097509017478, + 5366.419699203641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FA9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5370.40513320879, + "min_y": 5364.952689836758, + "max_x": 5371.019291345788, + "max_y": 5365.566847973755, + "center": [ + 5370.712212277289, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5370.712212277289, + 5365.259768905256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5358.052121988844, + "max_x": 5412.248918159337, + "max_y": 5358.052121988844, + "center": [ + 5411.502330592409, + 5358.052121988844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5410.75574302548, + 5358.052121988844 + ], + [ + 5412.248918159337, + 5358.052121988844 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5358.300984511155, + "max_x": 5412.248918159337, + "max_y": 5358.300984511155, + "center": [ + 5411.502330592409, + 5358.300984511155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5410.75574302548, + 5358.300984511155 + ], + [ + 5412.248918159337, + 5358.300984511155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5355.234536347458, + "max_x": 5412.248918159337, + "max_y": 5355.234536347458, + "center": [ + 5411.502330592409, + 5355.234536347458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5410.75574302548, + 5355.234536347458 + ], + [ + 5412.248918159337, + 5355.234536347458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.75574302548, + "min_y": 5354.985673825148, + "max_x": 5412.248918159337, + "max_y": 5354.985673825148, + "center": [ + 5411.502330592409, + 5354.985673825148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5410.75574302548, + 5354.985673825148 + ], + [ + 5412.248918159337, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5410.887627332597, + "min_y": 5355.483398869767, + "max_x": 5412.117033852219, + "max_y": 5357.803259466535, + "center": [ + 5411.502330592408, + 5356.6433291681515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5412.117033852219, + 5355.483398869767 + ], + [ + 5410.887627332597, + 5357.803259466535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FAF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5411.195251523909, + "min_y": 5356.336250099652, + "max_x": 5411.809409660907, + "max_y": 5356.950408236649, + "center": [ + 5411.502330592408, + 5356.643329168151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5411.502330592408, + 5356.643329168151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5366.668561725949, + "max_x": 5405.571921584924, + "max_y": 5366.668561725949, + "center": [ + 5404.825334017995, + 5366.668561725949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.078746451067, + 5366.668561725949 + ], + [ + 5405.571921584924, + 5366.668561725949 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5366.91742424826, + "max_x": 5405.571921584924, + "max_y": 5366.91742424826, + "center": [ + 5404.825334017995, + 5366.91742424826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.078746451067, + 5366.91742424826 + ], + [ + 5405.571921584924, + 5366.91742424826 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5363.850976084563, + "max_x": 5405.571921584924, + "max_y": 5363.850976084563, + "center": [ + 5404.825334017995, + 5363.850976084563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.078746451067, + 5363.850976084563 + ], + [ + 5405.571921584924, + 5363.850976084563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.078746451067, + "min_y": 5363.602113562254, + "max_x": 5405.571921584924, + "max_y": 5363.602113562254, + "center": [ + 5404.825334017995, + 5363.602113562254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.078746451067, + 5363.602113562254 + ], + [ + 5405.571921584924, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.210630758183, + "min_y": 5364.099838606872, + "max_x": 5405.440037277806, + "max_y": 5366.419699203641, + "center": [ + 5404.8253340179945, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5405.440037277806, + 5364.099838606872 + ], + [ + 5404.210630758183, + 5366.419699203641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5366.668561725949, + "max_x": 5439.685043325631, + "max_y": 5366.668561725949, + "center": [ + 5438.938455758703, + 5366.668561725949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.191868191774, + 5366.668561725949 + ], + [ + 5439.685043325631, + 5366.668561725949 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5366.91742424826, + "max_x": 5439.685043325631, + "max_y": 5366.91742424826, + "center": [ + 5438.938455758703, + 5366.91742424826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.191868191774, + 5366.91742424826 + ], + [ + 5439.685043325631, + 5366.91742424826 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5363.850976084563, + "max_x": 5439.685043325631, + "max_y": 5363.850976084563, + "center": [ + 5438.938455758703, + 5363.850976084563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.191868191774, + 5363.850976084563 + ], + [ + 5439.685043325631, + 5363.850976084563 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.191868191774, + "min_y": 5363.602113562254, + "max_x": 5439.685043325631, + "max_y": 5363.602113562254, + "center": [ + 5438.938455758703, + 5363.602113562254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.191868191774, + 5363.602113562254 + ], + [ + 5439.685043325631, + 5363.602113562254 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5438.323752498891, + "min_y": 5364.099838606872, + "max_x": 5439.553159018513, + "max_y": 5366.419699203641, + "center": [ + 5438.938455758702, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5439.553159018513, + 5364.099838606872 + ], + [ + 5438.323752498891, + 5366.419699203641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5438.631376690203, + "min_y": 5364.952689836758, + "max_x": 5439.245534827201, + "max_y": 5365.566847973755, + "center": [ + 5438.938455758702, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5438.938455758702, + 5365.259768905256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5358.052121988844, + "max_x": 5446.362039900044, + "max_y": 5358.052121988844, + "center": [ + 5445.615452333116, + 5358.052121988844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5444.868864766188, + 5358.052121988844 + ], + [ + 5446.362039900044, + 5358.052121988844 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5358.300984511155, + "max_x": 5446.362039900044, + "max_y": 5358.300984511155, + "center": [ + 5445.615452333116, + 5358.300984511155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5444.868864766188, + 5358.300984511155 + ], + [ + 5446.362039900044, + 5358.300984511155 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5355.234536347458, + "max_x": 5446.362039900044, + "max_y": 5355.234536347458, + "center": [ + 5445.615452333116, + 5355.234536347458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5444.868864766188, + 5355.234536347458 + ], + [ + 5446.362039900044, + 5355.234536347458 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5444.868864766188, + "min_y": 5354.985673825148, + "max_x": 5446.362039900044, + "max_y": 5354.985673825148, + "center": [ + 5445.615452333116, + 5354.985673825148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5444.868864766188, + 5354.985673825148 + ], + [ + 5446.362039900044, + 5354.985673825148 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5445.000749073305, + "min_y": 5355.483398869767, + "max_x": 5446.230155592926, + "max_y": 5357.803259466535, + "center": [ + 5445.615452333115, + 5356.6433291681515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5446.230155592926, + 5355.483398869767 + ], + [ + 5445.000749073305, + 5357.803259466535 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5445.308373264616, + "min_y": 5356.336250099652, + "max_x": 5445.922531401614, + "max_y": 5356.950408236649, + "center": [ + 5445.615452333115, + 5356.643329168151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5445.615452333115, + 5356.643329168151 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5358.319886107912, + "max_x": 5456.637136402645, + "max_y": 5358.319886107912, + "center": [ + 5455.890548835717, + 5358.319886107912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.143961268788, + 5358.319886107912 + ], + [ + 5456.637136402645, + 5358.319886107912 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5358.568748630222, + "max_x": 5456.637136402645, + "max_y": 5358.568748630222, + "center": [ + 5455.890548835717, + 5358.568748630222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.143961268788, + 5358.568748630222 + ], + [ + 5456.637136402645, + 5358.568748630222 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5355.502300466525, + "max_x": 5456.637136402645, + "max_y": 5355.502300466525, + "center": [ + 5455.890548835717, + 5355.502300466525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.143961268788, + 5355.502300466525 + ], + [ + 5456.637136402645, + 5355.502300466525 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.143961268788, + "min_y": 5355.253437944216, + "max_x": 5456.637136402645, + "max_y": 5355.253437944216, + "center": [ + 5455.890548835717, + 5355.253437944216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.143961268788, + 5355.253437944216 + ], + [ + 5456.637136402645, + 5355.253437944216 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5455.275845575904, + "min_y": 5355.751162988835, + "max_x": 5456.505252095527, + "max_y": 5358.071023585603, + "center": [ + 5455.890548835716, + 5356.911093287219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5456.505252095527, + 5355.751162988835 + ], + [ + 5455.275845575904, + 5358.071023585603 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5455.583469767217, + "min_y": 5356.60401421872, + "max_x": 5456.197627904215, + "max_y": 5357.218172355718, + "center": [ + 5455.890548835716, + 5356.911093287219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5455.890548835716, + 5356.911093287219 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5404.210630758183, + "min_y": 5364.099838606872, + "max_x": 5405.440037277806, + "max_y": 5366.419699203641, + "center": [ + 5404.8253340179945, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5405.440037277806, + 5364.099838606872 + ], + [ + 5404.210630758183, + 5366.419699203641 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 5404.518254949497, + "min_y": 5364.952689836758, + "max_x": 5405.132413086494, + "max_y": 5365.566847973755, + "center": [ + 5404.825334017995, + 5365.259768905256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5404.825334017995, + 5365.259768905256 + ] + ], + "properties": { + "color": 8, + "lineweight": 0 + } + }, + { + "entity_id": "553FC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5220.150884340438, + "max_x": 4621.941881661501, + "max_y": 5220.150884340438, + "center": [ + 4581.77186299435, + 5220.150884340438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4541.601844327199, + 5220.150884340438 + ], + [ + 4621.941881661501, + 5220.150884340438 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FCA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4611.39399466203, + "min_y": 5156.080810570334, + "max_x": 4614.97761498329, + "max_y": 5159.067160838049, + "center": [ + 4613.18580482266, + 5157.573985704192 + ] + }, + "raw_value": "1F", + "clean_value": "1F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553FCB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5221.618299359433, + "max_x": 4620.337007046696, + "max_y": 5224.604649627148, + "center": [ + 4618.545196886067, + 5223.111474493291 + ] + }, + "raw_value": "3F", + "clean_value": "3F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553FCC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5288.295947479245, + "max_x": 4620.337007046696, + "max_y": 5291.2822977469605, + "center": [ + 4618.545196886067, + 5289.789122613103 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553FCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5287.389394730058, + "max_x": 4621.941881661501, + "max_y": 5287.389394730058, + "center": [ + 4581.77186299435, + 5287.389394730058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4541.601844327199, + 5287.389394730058 + ], + [ + 4621.941881661501, + 5287.389394730058 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FCE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5196.189961389517, + "max_x": 4620.337007046696, + "max_y": 5199.176311657232, + "center": [ + 4618.545196886067, + 5197.683136523374 + ] + }, + "raw_value": "2F", + "clean_value": "2F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553FCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5195.393951068967, + "max_x": 4621.941881661501, + "max_y": 5195.393951068967, + "center": [ + 4581.77186299435, + 5195.393951068967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4541.601844327199, + 5195.393951068967 + ], + [ + 4621.941881661501, + 5195.393951068967 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5155.284800249786, + "max_x": 4621.941881661501, + "max_y": 5155.284800249786, + "center": [ + 4581.77186299435, + 5155.284800249786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4541.601844327199, + 5155.284800249786 + ], + [ + 4621.941881661501, + 5155.284800249786 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4621.941881661501, + "min_y": 5155.284800249786, + "max_x": 4621.941881661501, + "max_y": 5392.028469767722, + "center": [ + 4621.941881661501, + 5273.656635008754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4621.941881661501, + 5392.028469767722 + ], + [ + 4621.941881661501, + 5155.284800249786 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FD2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4616.753386725437, + "min_y": 5393.075287610443, + "max_x": 4620.337007046696, + "max_y": 5396.061637878159, + "center": [ + 4618.545196886067, + 5394.568462744301 + ] + }, + "raw_value": "5F", + "clean_value": "5F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "553FD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4541.601844327199, + "min_y": 5392.049798651171, + "max_x": 4621.941881661501, + "max_y": 5392.049798651171, + "center": [ + 4581.77186299435, + 5392.049798651171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4541.601844327199, + 5392.049798651171 + ], + [ + 4621.941881661501, + 5392.049798651171 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "553FD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5226.308845960183, + "max_x": 4574.178799737494, + "max_y": 5231.135740532486, + "center": [ + 4574.178799737494, + 5228.722293246335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5231.135740532486 + ], + [ + 4574.178799737494, + 5226.308845960183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5226.308833931261, + "max_x": 4596.605634897696, + "max_y": 5226.308845960183, + "center": [ + 4585.392217317595, + 5226.308839945722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5226.308845960183 + ], + [ + 4596.605634897696, + 5226.308833931261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5226.308833931261, + "max_x": 4599.019095988714, + "max_y": 5228.722295022279, + "center": [ + 4597.812365443206, + 5227.515564476769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5226.308833931261 + ], + [ + 4599.019095988714, + 5228.722295022279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5228.722295022279, + "max_x": 4599.019095988714, + "max_y": 5231.135756113298, + "center": [ + 4597.812365443206, + 5229.929025567788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5228.722295022279 + ], + [ + 4596.605634897696, + 5231.135756113298 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5226.308845960183, + "max_x": 4574.178799737494, + "max_y": 5231.135740532486, + "center": [ + 4574.178799737494, + 5228.722293246335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5231.135740532486 + ], + [ + 4574.178799737494, + 5226.308845960183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5226.308833931261, + "max_x": 4596.605634897696, + "max_y": 5226.308845960183, + "center": [ + 4585.392217317595, + 5226.308839945722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5226.308845960183 + ], + [ + 4596.605634897696, + 5226.308833931261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5231.135740532486, + "max_x": 4596.605634897696, + "max_y": 5231.135756113298, + "center": [ + 4585.392217317595, + 5231.135748322892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5231.135740532486 + ], + [ + 4596.605634897696, + 5231.135756113298 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5226.308833931261, + "max_x": 4599.019095988714, + "max_y": 5228.722295022279, + "center": [ + 4597.812365443206, + 5227.515564476769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5226.308833931261 + ], + [ + 4599.019095988714, + 5228.722295022279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5228.722295022279, + "max_x": 4599.019095988714, + "max_y": 5231.135756113298, + "center": [ + 4597.812365443206, + 5229.929025567788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5228.722295022279 + ], + [ + 4596.605634897696, + 5231.135756113298 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FDD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5228.075371377046, + "max_x": 4598.6850221486075, + "max_y": 5229.754366519205, + "center": [ + 4588.611051295656, + 5228.914868948126 + ] + }, + "raw_value": "3F #10 Plant Utility", + "clean_value": "3F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.659950266576, + "min_y": 5165.581334701872, + "max_x": 4574.178799737494, + "max_y": 5165.581334701872, + "center": [ + 4559.919375002035, + 5165.581334701872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.659950266576, + 5165.581334701872 + ], + [ + 4574.178799737494, + 5165.581334701872 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "553FDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.892762213689, + "min_y": 5165.581334701872, + "max_x": 4545.739296360177, + "max_y": 5165.581334701872, + "center": [ + 4545.3160292869325, + 5165.581334701872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.892762213689, + 5165.581334701872 + ], + [ + 4545.739296360177, + 5165.581334701872 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "553FE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5163.167887415721, + "max_x": 4574.178799737494, + "max_y": 5167.994781988023, + "center": [ + 4574.178799737494, + 5165.581334701872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5167.994781988023 + ], + [ + 4574.178799737494, + 5163.167887415721 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5163.167875386799, + "max_x": 4596.605634897696, + "max_y": 5163.167887415721, + "center": [ + 4585.392217317595, + 5163.16788140126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5163.167887415721 + ], + [ + 4596.605634897696, + 5163.167875386799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5163.167875386799, + "max_x": 4599.019095988714, + "max_y": 5165.581336477817, + "center": [ + 4597.812365443206, + 5164.3746059323075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5163.167875386799 + ], + [ + 4599.019095988714, + 5165.581336477817 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5165.581336477817, + "max_x": 4599.019095988714, + "max_y": 5167.994797568836, + "center": [ + 4597.812365443206, + 5166.788067023326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5165.581336477817 + ], + [ + 4596.605634897696, + 5167.994797568836 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5163.167887415721, + "max_x": 4574.178799737494, + "max_y": 5167.994781988023, + "center": [ + 4574.178799737494, + 5165.581334701872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5167.994781988023 + ], + [ + 4574.178799737494, + 5163.167887415721 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5163.167875386799, + "max_x": 4596.605634897696, + "max_y": 5163.167887415721, + "center": [ + 4585.392217317595, + 5163.16788140126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5163.167887415721 + ], + [ + 4596.605634897696, + 5163.167875386799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5167.994781988023, + "max_x": 4596.605634897696, + "max_y": 5167.994797568836, + "center": [ + 4585.392217317595, + 5167.99478977843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5167.994781988023 + ], + [ + 4596.605634897696, + 5167.994797568836 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5163.167875386799, + "max_x": 4599.019095988714, + "max_y": 5165.581336477817, + "center": [ + 4597.812365443206, + 5164.3746059323075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5163.167875386799 + ], + [ + 4599.019095988714, + 5165.581336477817 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5165.581336477817, + "max_x": 4599.019095988714, + "max_y": 5167.994797568836, + "center": [ + 4597.812365443206, + 5166.788067023326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5165.581336477817 + ], + [ + 4596.605634897696, + 5167.994797568836 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5164.934412832583, + "max_x": 4598.6850221486075, + "max_y": 5166.613407974742, + "center": [ + 4588.611051295656, + 5165.773910403663 + ] + }, + "raw_value": "1F #10 Plant Utility", + "clean_value": "1F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.902786852861, + "min_y": 5209.514217778647, + "max_x": 4574.178799737494, + "max_y": 5209.514217778647, + "center": [ + 4559.5407932951775, + 5209.514217778647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.902786852861, + 5209.514217778647 + ], + [ + 4574.178799737494, + 5209.514217778647 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "553FEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5207.100770492496, + "max_x": 4574.178799737494, + "max_y": 5211.927665064798, + "center": [ + 4574.178799737494, + 5209.514217778647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5211.927665064798 + ], + [ + 4574.178799737494, + 5207.100770492496 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5207.100758463575, + "max_x": 4596.605634897696, + "max_y": 5207.100770492496, + "center": [ + 4585.392217317595, + 5207.100764478036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5207.100770492496 + ], + [ + 4596.605634897696, + 5207.100758463575 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5207.100758463575, + "max_x": 4599.019095988714, + "max_y": 5209.514219554593, + "center": [ + 4597.812365443206, + 5208.307489009085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5207.100758463575 + ], + [ + 4599.019095988714, + 5209.514219554593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5209.514219554593, + "max_x": 4599.019095988714, + "max_y": 5211.927680645612, + "center": [ + 4597.812365443206, + 5210.7209501001025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5209.514219554593 + ], + [ + 4596.605634897696, + 5211.927680645612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5207.100770492496, + "max_x": 4574.178799737494, + "max_y": 5211.927665064798, + "center": [ + 4574.178799737494, + 5209.514217778647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5211.927665064798 + ], + [ + 4574.178799737494, + 5207.100770492496 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5207.100758463575, + "max_x": 4596.605634897696, + "max_y": 5207.100770492496, + "center": [ + 4585.392217317595, + 5207.100764478036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5207.100770492496 + ], + [ + 4596.605634897696, + 5207.100758463575 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5211.927665064798, + "max_x": 4596.605634897696, + "max_y": 5211.927680645612, + "center": [ + 4585.392217317595, + 5211.927672855205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5211.927665064798 + ], + [ + 4596.605634897696, + 5211.927680645612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5207.100758463575, + "max_x": 4599.019095988714, + "max_y": 5209.514219554593, + "center": [ + 4597.812365443206, + 5208.307489009085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5207.100758463575 + ], + [ + 4599.019095988714, + 5209.514219554593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5209.514219554593, + "max_x": 4599.019095988714, + "max_y": 5211.927680645612, + "center": [ + 4597.812365443206, + 5210.7209501001025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5209.514219554593 + ], + [ + 4596.605634897696, + 5211.927680645612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5208.867295909359, + "max_x": 4598.6850221486075, + "max_y": 5210.546291051518, + "center": [ + 4588.611051295656, + 5209.706793480438 + ] + }, + "raw_value": "2F #10 Plant Utility", + "clean_value": "2F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.892746214969, + "min_y": 5404.100513853479, + "max_x": 4574.178799737494, + "max_y": 5404.100513853479, + "center": [ + 4559.535772976231, + 5404.100513853479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.892746214969, + 5404.100513853479 + ], + [ + 4574.178799737494, + 5404.100513853479 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "553FF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5401.687066567329, + "max_x": 4574.178799737494, + "max_y": 5406.513961139631, + "center": [ + 4574.178799737494, + 5404.10051385348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5406.513961139631 + ], + [ + 4574.178799737494, + 5401.687066567329 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5401.687054538406, + "max_x": 4596.605634897696, + "max_y": 5401.687066567329, + "center": [ + 4585.392217317595, + 5401.6870605528675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5401.687066567329 + ], + [ + 4596.605634897696, + 5401.687054538406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5401.687054538406, + "max_x": 4599.019095988714, + "max_y": 5404.100515629425, + "center": [ + 4597.812365443206, + 5402.893785083916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5401.687054538406 + ], + [ + 4599.019095988714, + 5404.100515629425 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5404.100515629425, + "max_x": 4599.019095988714, + "max_y": 5406.513976720443, + "center": [ + 4597.812365443206, + 5405.307246174934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5404.100515629425 + ], + [ + 4596.605634897696, + 5406.513976720443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5401.687066567329, + "max_x": 4574.178799737494, + "max_y": 5406.513961139631, + "center": [ + 4574.178799737494, + 5404.10051385348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5406.513961139631 + ], + [ + 4574.178799737494, + 5401.687066567329 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5401.687054538406, + "max_x": 4596.605634897696, + "max_y": 5401.687066567329, + "center": [ + 4585.392217317595, + 5401.6870605528675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5401.687066567329 + ], + [ + 4596.605634897696, + 5401.687054538406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.178799737494, + "min_y": 5406.513961139631, + "max_x": 4596.605634897696, + "max_y": 5406.513976720443, + "center": [ + 4585.392217317595, + 5406.513968930037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.178799737494, + 5406.513961139631 + ], + [ + 4596.605634897696, + 5406.513976720443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5401.687054538406, + "max_x": 4599.019095988714, + "max_y": 5404.100515629425, + "center": [ + 4597.812365443206, + 5402.893785083916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.605634897696, + 5401.687054538406 + ], + [ + 4599.019095988714, + 5404.100515629425 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.605634897696, + "min_y": 5404.100515629425, + "max_x": 4599.019095988714, + "max_y": 5406.513976720443, + "center": [ + 4597.812365443206, + 5405.307246174934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.019095988714, + 5404.100515629425 + ], + [ + 4596.605634897696, + 5406.513976720443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "553FFF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4578.537080442704, + "min_y": 5403.453591984192, + "max_x": 4598.6850221486075, + "max_y": 5405.132587126351, + "center": [ + 4588.611051295656, + 5404.293089555271 + ] + }, + "raw_value": "5F #10 Plant Utility", + "clean_value": "5F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554000", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3731.080026387607, + "min_y": 5277.975301002411, + "max_x": 3731.080026387607, + "max_y": 5279.935971576297, + "center": [ + 3731.080026387607, + 5278.955636289354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3731.080026387607, + 5279.935971576297 + ], + [ + 3731.080026387607, + 5277.975301002411 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554001", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685230339837, + "min_y": 5340.037199147952, + "max_x": 4619.684772212671, + "max_y": 5340.037207729512, + "center": [ + 4611.685001276254, + 5340.037203438733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685230339837, + 5340.037207729512 + ], + [ + 4619.684772212671, + 5340.037199147952 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554002", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685230339837, + "min_y": 5340.037207729512, + "max_x": 4603.685230339837, + "max_y": 5343.480765470657, + "center": [ + 4603.685230339837, + 5341.758986600085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685230339837, + 5343.480765470657 + ], + [ + 4603.685230339837, + 5340.037207729512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554003", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4609.12900120225, + "min_y": 5341.160680242936, + "max_x": 4614.159815498396, + "max_y": 5342.35849317059, + "center": [ + 4611.644408350323, + 5341.759586706763 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554004", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685230339837, + "min_y": 5340.037199147952, + "max_x": 4619.684772212671, + "max_y": 5340.037207729512, + "center": [ + 4611.685001276254, + 5340.037203438733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685230339837, + 5340.037207729512 + ], + [ + 4619.684772212671, + 5340.037199147952 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554005", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685230339837, + "min_y": 5343.480765470657, + "max_x": 4619.684772212671, + "max_y": 5343.480776586172, + "center": [ + 4611.685001276254, + 5343.480771028415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685230339837, + 5343.480765470657 + ], + [ + 4619.684772212671, + 5343.480776586172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554006", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.684772212671, + "min_y": 5340.037199147952, + "max_x": 4621.406560931782, + "max_y": 5341.758987867062, + "center": [ + 4620.545666572227, + 5340.898093507507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4619.684772212671, + 5340.037199147952 + ], + [ + 4621.406560931782, + 5341.758987867062 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554007", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.684772212671, + "min_y": 5341.758987867062, + "max_x": 4621.406560931782, + "max_y": 5343.480776586172, + "center": [ + 4620.545666572227, + 5342.619882226618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4621.406560931782, + 5341.758987867062 + ], + [ + 4619.684772212671, + 5343.480776586172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554008", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3425.169819539819, + "min_y": 5249.573983205951, + "max_x": 3642.926921489141, + "max_y": 5249.573983205951, + "center": [ + 3534.0483705144798, + 5249.573983205951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3642.926921489141, + 5249.573983205951 + ], + [ + 3632.926921489141, + 5249.573983205951 + ], + [ + 3622.926921489141, + 5249.573983205951 + ], + [ + 3612.926921489141, + 5249.573983205951 + ], + [ + 3602.926921489141, + 5249.573983205951 + ], + [ + 3592.926921489141, + 5249.573983205951 + ], + [ + 3582.926921489141, + 5249.573983205951 + ], + [ + 3572.926921489141, + 5249.573983205951 + ], + [ + 3562.926921489141, + 5249.573983205951 + ], + [ + 3552.926921489142, + 5249.573983205951 + ], + [ + 3542.926921489141, + 5249.573983205951 + ], + [ + 3532.926921489141, + 5249.573983205951 + ], + [ + 3522.926921489141, + 5249.573983205951 + ], + [ + 3512.926921489141, + 5249.573983205951 + ], + [ + 3502.926921489141, + 5249.573983205951 + ], + [ + 3492.926921489142, + 5249.573983205951 + ], + [ + 3482.926921489141, + 5249.573983205951 + ], + [ + 3472.926921489141, + 5249.573983205951 + ], + [ + 3462.926921489141, + 5249.573983205951 + ], + [ + 3452.926921489142, + 5249.573983205951 + ], + [ + 3442.926921489141, + 5249.573983205951 + ], + [ + 3432.926921489141, + 5249.573983205951 + ], + [ + 3425.169819539819, + 5249.573983205951 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554009", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3424.927765816796, + "min_y": 5332.433574785675, + "max_x": 3642.684867766118, + "max_y": 5332.433574785675, + "center": [ + 3533.806316791457, + 5332.433574785675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3424.927765816796, + 5332.433574785675 + ], + [ + 3434.927765816796, + 5332.433574785675 + ], + [ + 3444.927765816795, + 5332.433574785675 + ], + [ + 3454.927765816795, + 5332.433574785675 + ], + [ + 3464.927765816796, + 5332.433574785675 + ], + [ + 3474.927765816796, + 5332.433574785675 + ], + [ + 3484.927765816796, + 5332.433574785675 + ], + [ + 3494.927765816795, + 5332.433574785675 + ], + [ + 3504.927765816795, + 5332.433574785675 + ], + [ + 3514.927765816795, + 5332.433574785675 + ], + [ + 3524.927765816796, + 5332.433574785675 + ], + [ + 3534.927765816796, + 5332.433574785675 + ], + [ + 3544.927765816795, + 5332.433574785675 + ], + [ + 3554.927765816795, + 5332.433574785675 + ], + [ + 3564.927765816796, + 5332.433574785675 + ], + [ + 3574.927765816795, + 5332.433574785675 + ], + [ + 3584.927765816796, + 5332.433574785675 + ], + [ + 3594.927765816795, + 5332.433574785675 + ], + [ + 3604.927765816795, + 5332.433574785675 + ], + [ + 3614.927765816795, + 5332.433574785675 + ], + [ + 3624.927765816796, + 5332.433574785675 + ], + [ + 3634.927765816796, + 5332.433574785675 + ], + [ + 3642.684867766118, + 5332.433574785675 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55400A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3425.169819539819, + "min_y": 5250.542198098046, + "max_x": 3425.169819539819, + "max_y": 5330.013037555435, + "center": [ + 3425.169819539819, + 5290.277617826741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3425.169819539819, + 5250.542198098046 + ], + [ + 3425.169819539819, + 5260.542198098047 + ], + [ + 3425.169819539819, + 5270.542198098047 + ], + [ + 3425.169819539819, + 5280.542198098046 + ], + [ + 3425.169819539819, + 5290.542198098046 + ], + [ + 3425.169819539819, + 5300.542198098046 + ], + [ + 3425.169819539819, + 5310.542198098047 + ], + [ + 3425.169819539819, + 5320.542198098046 + ], + [ + 3425.169819539819, + 5330.013037555435 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55400B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3642.926921489141, + "min_y": 5250.542198098046, + "max_x": 3642.926921489141, + "max_y": 5330.013037555435, + "center": [ + 3642.926921489141, + 5290.277617826741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3642.926921489141, + 5330.013037555435 + ], + [ + 3642.926921489141, + 5320.013037555435 + ], + [ + 3642.926921489141, + 5310.013037555435 + ], + [ + 3642.926921489141, + 5300.013037555435 + ], + [ + 3642.926921489141, + 5290.013037555436 + ], + [ + 3642.926921489141, + 5280.013037555435 + ], + [ + 3642.926921489141, + 5270.013037555435 + ], + [ + 3642.926921489141, + 5260.013037555435 + ], + [ + 3642.926921489141, + 5250.542198098046 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55400C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3776.21170158144, + "min_y": 5387.130267023731, + "max_x": 3788.21170158144, + "max_y": 5392.130267023731, + "center": [ + 3782.21170158144, + 5389.630267023731 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55400D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3735.740725600575, + "min_y": 5277.154071093023, + "max_x": 3825.23002946609, + "max_y": 5277.154071093023, + "center": [ + 3780.485377533332, + 5277.154071093023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3735.740725600575, + 5277.154071093023 + ], + [ + 3745.740725600575, + 5277.154071093023 + ], + [ + 3755.740725600574, + 5277.154071093023 + ], + [ + 3765.740725600574, + 5277.154071093023 + ], + [ + 3775.740725600574, + 5277.154071093023 + ], + [ + 3785.740725600574, + 5277.154071093023 + ], + [ + 3795.740725600575, + 5277.154071093023 + ], + [ + 3805.740725600574, + 5277.154071093023 + ], + [ + 3815.740725600574, + 5277.154071093023 + ], + [ + 3825.23002946609, + 5277.154071093023 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55400E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3735.740725600575, + "min_y": 5277.154071093023, + "max_x": 3735.740725600575, + "max_y": 5314.913972786118, + "center": [ + 3735.740725600575, + 5296.034021939571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3735.740725600575, + 5314.913972786118 + ], + [ + 3735.740725600575, + 5304.913972786119 + ], + [ + 3735.740725600575, + 5294.913972786119 + ], + [ + 3735.740725600575, + 5284.913972786118 + ], + [ + 3735.740725600575, + 5277.154071093023 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55400F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3735.740725600575, + "min_y": 5314.913972786118, + "max_x": 3772.352083586414, + "max_y": 5314.913972786118, + "center": [ + 3754.0464045934946, + 5314.913972786118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3772.352083586414, + 5314.913972786118 + ], + [ + 3767.00154533144, + 5314.913972786118 + ], + [ + 3757.00154533144, + 5314.913972786118 + ], + [ + 3747.00154533144, + 5314.913972786118 + ], + [ + 3737.00154533144, + 5314.913972786118 + ], + [ + 3735.740725600575, + 5314.913972786118 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554010", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3772.51609627324, + "min_y": 5314.913972786118, + "max_x": 3772.51609627324, + "max_y": 5381.181349929629, + "center": [ + 3772.51609627324, + 5348.047661357874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3772.51609627324, + 5381.181349929629 + ], + [ + 3772.51609627324, + 5371.18134992963 + ], + [ + 3772.51609627324, + 5361.18134992963 + ], + [ + 3772.51609627324, + 5351.181349929629 + ], + [ + 3772.51609627324, + 5341.181349929629 + ], + [ + 3772.51609627324, + 5331.18134992963 + ], + [ + 3772.51609627324, + 5321.18134992963 + ], + [ + 3772.51609627324, + 5314.913972786118 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554011", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3772.929693447482, + "min_y": 5381.181349929629, + "max_x": 3826.186925265172, + "max_y": 5381.181349929629, + "center": [ + 3799.558309356327, + 5381.181349929629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3826.186925265172, + 5381.181349929629 + ], + [ + 3808.262365062306, + 5381.181349929629 + ], + [ + 3798.262365062306, + 5381.181349929629 + ], + [ + 3788.262365062307, + 5381.181349929629 + ], + [ + 3778.262365062307, + 5381.181349929629 + ], + [ + 3772.929693447482, + 5381.181349929629 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554012", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3825.199859605656, + "min_y": 5287.906890780459, + "max_x": 3825.199859605656, + "max_y": 5381.181349929629, + "center": [ + 3825.199859605656, + 5334.544120355044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3825.199859605656, + 5287.906890780459 + ], + [ + 3825.199859605656, + 5297.90689078046 + ], + [ + 3825.199859605656, + 5307.90689078046 + ], + [ + 3825.199859605656, + 5317.906890780459 + ], + [ + 3825.199859605656, + 5327.906890780459 + ], + [ + 3825.199859605656, + 5337.906890780459 + ], + [ + 3825.199859605656, + 5347.90689078046 + ], + [ + 3825.199859605656, + 5357.906890780459 + ], + [ + 3825.199859605656, + 5367.90689078046 + ], + [ + 3825.199859605656, + 5377.906890780459 + ], + [ + 3825.199859605656, + 5381.181349929629 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554013", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3824.51210605563, + "min_y": 5276.810194318009, + "max_x": 3824.51210605563, + "max_y": 5287.563014005446, + "center": [ + 3824.51210605563, + 5282.186604161728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3824.51210605563, + 5276.810194318009 + ], + [ + 3824.51210605563, + 5286.81019431801 + ], + [ + 3824.51210605563, + 5287.563014005446 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554014", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4377.325558465998, + "min_y": 5189.514534160093, + "max_x": 4383.440110639146, + "max_y": 5190.970379915604, + "center": [ + 4380.382834552573, + 5190.242457037848 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554015", + "entity_type": "TEXT", + "layer": "PSV", + "bbox": { + "min_x": 4419.438249996399, + "min_y": 5191.799653669645, + "max_x": 4425.552802169546, + "max_y": 5193.255499425156, + "center": [ + 4422.495526082972, + 5192.5275765474 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554016", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4103.059407510197, + "min_y": 5187.611873531029, + "max_x": 4111.12255323303, + "max_y": 5189.105048664887, + "center": [ + 4107.090980371613, + 5188.358461097958 + ] + }, + "raw_value": "3 kgf/Cm2", + "clean_value": "3 kgf/Cm2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554017", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4046.818307858115, + "min_y": 5210.868860510507, + "max_x": 4048.9348836103586, + "max_y": 5212.04473592842, + "center": [ + 4047.8765957342366, + 5211.456798219464 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554018", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685874907776, + "min_y": 5362.747658686495, + "max_x": 4619.685416780611, + "max_y": 5362.747667268054, + "center": [ + 4611.685645844194, + 5362.747662977275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685874907776, + 5362.747667268054 + ], + [ + 4619.685416780611, + 5362.747658686495 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685874907776, + "min_y": 5362.747667268054, + "max_x": 4603.685874907776, + "max_y": 5366.1912250092, + "center": [ + 4603.685874907776, + 5364.469446138627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685874907776, + 5366.1912250092 + ], + [ + 4603.685874907776, + 5362.747667268054 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4609.129645770189, + "min_y": 5363.87113978148, + "max_x": 4614.160460066335, + "max_y": 5365.0689527091345, + "center": [ + 4611.645052918262, + 5364.4700462453075 + ] + }, + "raw_value": "T-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685874907776, + "min_y": 5362.747658686495, + "max_x": 4619.685416780611, + "max_y": 5362.747667268054, + "center": [ + 4611.685645844194, + 5362.747662977275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685874907776, + 5362.747667268054 + ], + [ + 4619.685416780611, + 5362.747658686495 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.685874907776, + "min_y": 5366.1912250092, + "max_x": 4619.685416780611, + "max_y": 5366.191236124715, + "center": [ + 4611.685645844194, + 5366.1912305669575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.685874907776, + 5366.1912250092 + ], + [ + 4619.685416780611, + 5366.191236124715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.685416780611, + "min_y": 5362.747658686495, + "max_x": 4621.407205499721, + "max_y": 5364.469447405604, + "center": [ + 4620.546311140166, + 5363.60855304605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4619.685416780611, + 5362.747658686495 + ], + [ + 4621.407205499721, + 5364.469447405604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.685416780611, + "min_y": 5364.469447405604, + "max_x": 4621.407205499721, + "max_y": 5366.191236124715, + "center": [ + 4620.546311140166, + 5365.33034176516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4621.407205499721, + 5364.469447405604 + ], + [ + 4619.685416780611, + 5366.191236124715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55401F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.250883797578, + "min_y": 5259.93161089578, + "max_x": 4619.250425670412, + "max_y": 5259.931619477339, + "center": [ + 4611.250654733995, + 5259.93161518656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.250883797578, + 5259.931619477339 + ], + [ + 4619.250425670412, + 5259.93161089578 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554020", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.250883797578, + "min_y": 5259.931619477339, + "max_x": 4603.250883797578, + "max_y": 5263.375177218485, + "center": [ + 4603.250883797578, + 5261.653398347912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.250883797578, + 5263.375177218485 + ], + [ + 4603.250883797578, + 5259.931619477339 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554021", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4608.69465465999, + "min_y": 5261.055091990765, + "max_x": 4613.725468956136, + "max_y": 5262.252904918419, + "center": [ + 4611.210061808063, + 5261.653998454592 + ] + }, + "raw_value": "T-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.250883797578, + "min_y": 5259.93161089578, + "max_x": 4619.250425670412, + "max_y": 5259.931619477339, + "center": [ + 4611.250654733995, + 5259.93161518656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.250883797578, + 5259.931619477339 + ], + [ + 4619.250425670412, + 5259.93161089578 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.250883797578, + "min_y": 5263.375177218485, + "max_x": 4619.250425670412, + "max_y": 5263.375188334, + "center": [ + 4611.250654733995, + 5263.375182776243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.250883797578, + 5263.375177218485 + ], + [ + 4619.250425670412, + 5263.375188334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554024", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.250425670412, + "min_y": 5259.93161089578, + "max_x": 4620.972214389523, + "max_y": 5261.653399614889, + "center": [ + 4620.111320029968, + 5260.792505255335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4619.250425670412, + 5259.93161089578 + ], + [ + 4620.972214389523, + 5261.653399614889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554025", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.250425670412, + "min_y": 5261.653399614889, + "max_x": 4620.972214389523, + "max_y": 5263.375188334, + "center": [ + 4620.111320029968, + 5262.514293974445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4620.972214389523, + 5261.653399614889 + ], + [ + 4619.250425670412, + 5263.375188334 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554026", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.79690684088, + "min_y": 5296.13924467445, + "max_x": 4619.796448713714, + "max_y": 5296.13925325601, + "center": [ + 4611.796677777297, + 5296.13924896523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.79690684088, + 5296.13925325601 + ], + [ + 4619.796448713714, + 5296.13924467445 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554027", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.79690684088, + "min_y": 5296.13925325601, + "max_x": 4603.79690684088, + "max_y": 5299.582810997155, + "center": [ + 4603.79690684088, + 5297.861032126582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.79690684088, + 5299.582810997155 + ], + [ + 4603.79690684088, + 5296.13925325601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554028", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4609.240677703293, + "min_y": 5297.262725769435, + "max_x": 4614.271491999439, + "max_y": 5298.460538697089, + "center": [ + 4611.756084851366, + 5297.861632233262 + ] + }, + "raw_value": "T-10201", + "clean_value": "T-10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554029", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.79690684088, + "min_y": 5296.13924467445, + "max_x": 4619.796448713714, + "max_y": 5296.13925325601, + "center": [ + 4611.796677777297, + 5296.13924896523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.79690684088, + 5296.13925325601 + ], + [ + 4619.796448713714, + 5296.13924467445 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.79690684088, + "min_y": 5299.582810997155, + "max_x": 4619.796448713714, + "max_y": 5299.582822112671, + "center": [ + 4611.796677777297, + 5299.582816554914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.79690684088, + 5299.582810997155 + ], + [ + 4619.796448713714, + 5299.582822112671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.796448713714, + "min_y": 5296.13924467445, + "max_x": 4621.518237432825, + "max_y": 5297.861033393559, + "center": [ + 4620.65734307327, + 5297.000139034005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4619.796448713714, + 5296.13924467445 + ], + [ + 4621.518237432825, + 5297.861033393559 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.796448713714, + "min_y": 5297.861033393559, + "max_x": 4621.518237432825, + "max_y": 5299.582822112671, + "center": [ + 4620.65734307327, + 5298.721927753115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4621.518237432825, + 5297.861033393559 + ], + [ + 4619.796448713714, + 5299.582822112671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.672867444905, + "min_y": 5318.046969666131, + "max_x": 4619.67240931774, + "max_y": 5318.04697824769, + "center": [ + 4611.672638381322, + 5318.046973956911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.672867444905, + 5318.04697824769 + ], + [ + 4619.67240931774, + 5318.046969666131 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.672867444905, + "min_y": 5318.04697824769, + "max_x": 4603.672867444905, + "max_y": 5321.490535988836, + "center": [ + 4603.672867444905, + 5319.768757118263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.672867444905, + 5321.490535988836 + ], + [ + 4603.672867444905, + 5318.04697824769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55402F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4609.116638307319, + "min_y": 5319.170450761116, + "max_x": 4614.147452603464, + "max_y": 5320.36826368877, + "center": [ + 4611.632045455392, + 5319.769357224943 + ] + }, + "raw_value": "T-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554030", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.672867444905, + "min_y": 5318.046969666131, + "max_x": 4619.67240931774, + "max_y": 5318.04697824769, + "center": [ + 4611.672638381322, + 5318.046973956911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.672867444905, + 5318.04697824769 + ], + [ + 4619.67240931774, + 5318.046969666131 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554031", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4603.672867444905, + "min_y": 5321.490535988836, + "max_x": 4619.67240931774, + "max_y": 5321.490547104351, + "center": [ + 4611.672638381322, + 5321.490541546594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4603.672867444905, + 5321.490535988836 + ], + [ + 4619.67240931774, + 5321.490547104351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554032", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.67240931774, + "min_y": 5318.046969666131, + "max_x": 4621.394198036851, + "max_y": 5319.76875838524, + "center": [ + 4620.533303677295, + 5318.907864025686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4619.67240931774, + 5318.046969666131 + ], + [ + 4621.394198036851, + 5319.76875838524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554033", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4619.67240931774, + "min_y": 5319.76875838524, + "max_x": 4621.394198036851, + "max_y": 5321.490547104351, + "center": [ + 4620.533303677295, + 5320.629652744796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4621.394198036851, + 5319.76875838524 + ], + [ + 4619.67240931774, + 5321.490547104351 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554034", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4380.302852534665, + "min_y": 5175.508083198942, + "max_x": 4381.375031389192, + "max_y": 5175.726892392361, + "center": [ + 4380.838941961929, + 5175.617487795651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4380.302852534665, + 5175.726892392361 + ], + [ + 4381.375031389192, + 5175.508083198942 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554035", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4380.302852534665, + "min_y": 5174.414037231823, + "max_x": 4381.375031389192, + "max_y": 5174.632846425248, + "center": [ + 4380.838941961929, + 5174.523441828536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4380.302852534665, + 5174.414037231823 + ], + [ + 4381.375031389192, + 5174.632846425248 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554036", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4381.375031389192, + "min_y": 5174.632846425248, + "max_x": 4381.375031389192, + "max_y": 5175.508083198942, + "center": [ + 4381.375031389192, + 5175.070464812095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4381.375031389192, + 5174.632846425248 + ], + [ + 4381.375031389192, + 5175.508083198942 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554037", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4380.302852534665, + "min_y": 5174.414037231823, + "max_x": 4380.302852534665, + "max_y": 5175.726892392361, + "center": [ + 4380.302852534665, + 5175.070464812092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4380.302852534665, + 5174.414037231823 + ], + [ + 4380.302852534665, + 5175.726892392361 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554038", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4381.394658979361, + "min_y": 5176.010247110891, + "max_x": 4386.098160651014, + "max_y": 5177.130128461285, + "center": [ + 4383.746409815188, + 5176.570187786088 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554039", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4381.375030781792, + "min_y": 5175.138463452529, + "max_x": 4391.872084442993, + "max_y": 5175.138463452529, + "center": [ + 4386.623557612393, + 5175.138463452529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4381.375030781792, + 5175.138463452529 + ], + [ + 4391.872084442993, + 5175.138463452529 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55403A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4562.581199959796, + "min_y": 5261.675268212229, + "max_x": 4564.70487583605, + "max_y": 5261.675268212229, + "center": [ + 4563.643037897923, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.581199959796, + 5261.675268212229 + ], + [ + 4564.70487583605, + 5261.675268212229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55403B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.293903471978, + "min_y": 5261.675268212229, + "max_x": 4572.071123636598, + "max_y": 5261.675268212229, + "center": [ + 4571.182513554288, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.071123636598, + 5261.675268212229 + ], + [ + 4570.293903471978, + 5261.675268212229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55403C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.33289957852, + "min_y": 5261.647222027612, + "max_x": 4556.33289957852, + "max_y": 5268.157800202772, + "center": [ + 4556.33289957852, + 5264.902511115191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.33289957852, + 5268.157800202772 + ], + [ + 4556.33289957852, + 5261.647222027612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55403D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.817711203525, + "min_y": 5260.541053402503, + "max_x": 4572.817711203525, + "max_y": 5262.809483021956, + "center": [ + 4572.817711203525, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.817711203525, + 5262.809483021956 + ], + [ + 4572.817711203525, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55403E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4576.454889031682, + "min_y": 5260.541053402503, + "max_x": 4576.454889031682, + "max_y": 5262.809483021956, + "center": [ + 4576.454889031682, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4576.454889031682, + 5262.809483021956 + ], + [ + 4576.454889031682, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55403F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.817711203525, + "min_y": 5260.541053402503, + "max_x": 4574.057324116755, + "max_y": 5261.314173327317, + "center": [ + 4573.43751766014, + 5260.92761336491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.817711203525, + 5260.541053402503 + ], + [ + 4574.057324116755, + 5261.314173327317 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554040", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.817711203525, + "min_y": 5262.036363097142, + "max_x": 4574.057324116755, + "max_y": 5262.809483021956, + "center": [ + 4573.43751766014, + 5262.422923059549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.817711203525, + 5262.809483021956 + ], + [ + 4574.057324116755, + 5262.036363097142 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554041", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.953949236114, + "min_y": 5260.99291733074, + "max_x": 4575.318650999086, + "max_y": 5262.357619093712, + "center": [ + 4574.6363001176, + 5261.675268212226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.6363001176, + 5261.675268212226 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554042", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.215276118446, + "min_y": 5260.541053402503, + "max_x": 4576.454889031682, + "max_y": 5261.314173327317, + "center": [ + 4575.835082575064, + 5260.92761336491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.215276118446, + 5261.314173327317 + ], + [ + 4576.454889031682, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554043", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.215276118446, + "min_y": 5262.036363097142, + "max_x": 4576.454889031682, + "max_y": 5262.809483021956, + "center": [ + 4575.835082575064, + 5262.422923059549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.215276118446, + 5262.036363097142 + ], + [ + 4576.454889031682, + 5262.809483021956 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554044", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.201476598609, + "min_y": 5260.541053402503, + "max_x": 4577.201476598609, + "max_y": 5262.809483021956, + "center": [ + 4577.201476598609, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.201476598609, + 5262.809483021956 + ], + [ + 4577.201476598609, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554045", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.071123636598, + "min_y": 5260.541053402503, + "max_x": 4572.071123636598, + "max_y": 5262.809483021956, + "center": [ + 4572.071123636598, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.071123636598, + 5262.809483021956 + ], + [ + 4572.071123636598, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554046", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.197434564717, + "min_y": 5260.541053402503, + "max_x": 4558.197434564717, + "max_y": 5262.809483021956, + "center": [ + 4558.197434564717, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.197434564717, + 5262.809483021956 + ], + [ + 4558.197434564717, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554047", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.834612392869, + "min_y": 5260.541053402503, + "max_x": 4561.834612392869, + "max_y": 5262.809483021956, + "center": [ + 4561.834612392869, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.834612392869, + 5262.809483021956 + ], + [ + 4561.834612392869, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554048", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.197434564717, + "min_y": 5260.541053402503, + "max_x": 4559.437047477945, + "max_y": 5261.314173327317, + "center": [ + 4558.817241021331, + 5260.92761336491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.197434564717, + 5260.541053402503 + ], + [ + 4559.437047477945, + 5261.314173327317 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554049", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.197434564717, + "min_y": 5262.036363097142, + "max_x": 4559.437047477945, + "max_y": 5262.809483021956, + "center": [ + 4558.817241021331, + 5262.422923059549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.197434564717, + 5262.809483021956 + ], + [ + 4559.437047477945, + 5262.036363097142 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4559.333672597304, + "min_y": 5260.99291733074, + "max_x": 4560.698374360276, + "max_y": 5262.357619093712, + "center": [ + 4560.01602347879, + 5261.675268212226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.01602347879, + 5261.675268212226 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4560.594999479635, + "min_y": 5260.541053402503, + "max_x": 4561.834612392869, + "max_y": 5261.314173327317, + "center": [ + 4561.214805936252, + 5260.92761336491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.594999479635, + 5261.314173327317 + ], + [ + 4561.834612392869, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4560.594999479635, + "min_y": 5262.036363097142, + "max_x": 4561.834612392869, + "max_y": 5262.809483021956, + "center": [ + 4561.214805936252, + 5262.422923059549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.594999479635, + 5262.036363097142 + ], + [ + 4561.834612392869, + 5262.809483021956 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4562.581199959796, + "min_y": 5260.541053402503, + "max_x": 4562.581199959796, + "max_y": 5262.809483021956, + "center": [ + 4562.581199959796, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.581199959796, + 5262.809483021956 + ], + [ + 4562.581199959796, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4557.450846997788, + "min_y": 5260.541053402503, + "max_x": 4557.450846997788, + "max_y": 5262.809483021956, + "center": [ + 4557.450846997788, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4557.450846997788, + 5262.809483021956 + ], + [ + 4557.450846997788, + 5260.541053402503 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55404F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.33289957852, + "min_y": 5268.166732896251, + "max_x": 4564.70487583605, + "max_y": 5268.166732896251, + "center": [ + 4560.518887707285, + 5268.166732896251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.33289957852, + 5268.166732896251 + ], + [ + 4564.70487583605, + 5268.166732896251 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554050", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.835228798061, + "min_y": 5268.252613043538, + "max_x": 4578.207205055592, + "max_y": 5268.252613043538, + "center": [ + 4574.021216926826, + 5268.252613043538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.835228798061, + 5268.252613043538 + ], + [ + 4578.207205055592, + 5268.252613043538 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554051", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.451463402978, + "min_y": 5267.075458160167, + "max_x": 4565.451463402978, + "max_y": 5269.343887779621, + "center": [ + 4565.451463402978, + 5268.209672969893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.451463402978, + 5267.075458160167 + ], + [ + 4565.451463402978, + 5269.343887779621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554052", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.088641231133, + "min_y": 5267.075458160167, + "max_x": 4569.088641231133, + "max_y": 5269.343887779621, + "center": [ + 4569.088641231133, + 5268.209672969893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.088641231133, + 5267.075458160167 + ], + [ + 4569.088641231133, + 5269.343887779621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554053", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.451463402978, + "min_y": 5268.570767854806, + "max_x": 4566.691076316207, + "max_y": 5269.343887779621, + "center": [ + 4566.071269859593, + 5268.957327817214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.451463402978, + 5269.343887779621 + ], + [ + 4566.691076316207, + 5268.570767854806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554054", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.451463402978, + "min_y": 5267.075458160167, + "max_x": 4566.691076316207, + "max_y": 5267.848578084982, + "center": [ + 4566.071269859593, + 5267.462018122575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.451463402978, + 5267.075458160167 + ], + [ + 4566.691076316207, + 5267.848578084982 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554055", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4566.587701435565, + "min_y": 5267.527322088409, + "max_x": 4567.952403198537, + "max_y": 5268.892023851381, + "center": [ + 4567.270052317051, + 5268.209672969895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.270052317051, + 5268.209672969895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554056", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.849028317898, + "min_y": 5268.570767854806, + "max_x": 4569.088641231133, + "max_y": 5269.343887779621, + "center": [ + 4568.468834774516, + 5268.957327817214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.849028317898, + 5268.570767854806 + ], + [ + 4569.088641231133, + 5269.343887779621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554057", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.849028317898, + "min_y": 5267.075458160167, + "max_x": 4569.088641231133, + "max_y": 5267.848578084982, + "center": [ + 4568.468834774516, + 5267.462018122575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.849028317898, + 5267.848578084982 + ], + [ + 4569.088641231133, + 5267.075458160167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554058", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.835228798061, + "min_y": 5267.075458160167, + "max_x": 4569.835228798061, + "max_y": 5269.343887779621, + "center": [ + 4569.835228798061, + 5268.209672969893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.835228798061, + 5267.075458160167 + ], + [ + 4569.835228798061, + 5269.343887779621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554059", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4564.70487583605, + "min_y": 5267.075458160167, + "max_x": 4564.70487583605, + "max_y": 5269.343887779621, + "center": [ + 4564.70487583605, + 5268.209672969893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.70487583605, + 5267.075458160167 + ], + [ + 4564.70487583605, + 5269.343887779621 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4578.207205055592, + "min_y": 5261.725721849741, + "max_x": 4578.207205055592, + "max_y": 5268.254696923083, + "center": [ + 4578.207205055592, + 5264.990209386412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4578.207205055592, + 5268.254696923083 + ], + [ + 4578.207205055592, + 5261.725721849741 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.293903471978, + "min_y": 5260.919396679589, + "max_x": 4570.293903471978, + "max_y": 5262.43113974487, + "center": [ + 4570.293903471978, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.293903471978, + 5262.43113974487 + ], + [ + 4570.293903471978, + 5260.919396679589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.991554858922, + "min_y": 5260.919396679589, + "max_x": 4569.991554858922, + "max_y": 5262.43113974487, + "center": [ + 4569.991554858922, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.991554858922, + 5262.43113974487 + ], + [ + 4569.991554858922, + 5260.919396679589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.365582355054, + "min_y": 5260.541460913266, + "max_x": 4568.633196952976, + "max_y": 5260.541460913266, + "center": [ + 4567.4993896540145, + 5260.541460913266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.365582355054, + 5260.541460913266 + ], + [ + 4568.633196952976, + 5260.541460913266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4568.633196952976, + "min_y": 5260.541460913266, + "max_x": 4568.633196952976, + "max_y": 5262.809075511192, + "center": [ + 4568.633196952976, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.633196952976, + 5260.541460913266 + ], + [ + 4568.633196952976, + 5262.809075511192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55405F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.365582355054, + "min_y": 5262.809075511192, + "max_x": 4568.633196952976, + "max_y": 5262.809075511192, + "center": [ + 4567.4993896540145, + 5262.809075511192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.633196952976, + 5262.809075511192 + ], + [ + 4566.365582355054, + 5262.809075511192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554060", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.365582355054, + "min_y": 5260.541460913266, + "max_x": 4566.365582355054, + "max_y": 5262.809075511192, + "center": [ + 4566.365582355054, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.365582355054, + 5262.809075511192 + ], + [ + 4566.365582355054, + 5260.541460913266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554061", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4568.633196952976, + "min_y": 5261.675268212229, + "max_x": 4569.991554858922, + "max_y": 5261.675268212229, + "center": [ + 4569.312375905949, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.991554858922, + 5261.675268212229 + ], + [ + 4568.633196952976, + 5261.675268212229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554062", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.753144052436, + "min_y": 5264.352642212725, + "max_x": 4570.240771379411, + "max_y": 5264.352642212725, + "center": [ + 4567.496957715924, + 5264.352642212725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.753144052436, + 5264.352642212725 + ], + [ + 4570.240771379411, + 5264.352642212725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554063", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.240771379411, + "min_y": 5264.805345495247, + "max_x": 4570.693474661934, + "max_y": 5265.258048777769, + "center": [ + 4570.467123020672, + 5265.031697136508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.693474661934, + 5264.805345495247 + ], + [ + 4570.240771379411, + 5265.258048777769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554064", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.753144052436, + "min_y": 5265.258048777769, + "max_x": 4570.240771379411, + "max_y": 5265.258048777769, + "center": [ + 4567.496957715924, + 5265.258048777769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.240771379411, + 5265.258048777769 + ], + [ + 4564.753144052436, + 5265.258048777769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554065", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.300440769917, + "min_y": 5264.352642212725, + "max_x": 4564.753144052436, + "max_y": 5264.805345495247, + "center": [ + 4564.526792411177, + 5264.578993853986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.300440769917, + 5264.805345495247 + ], + [ + 4564.753144052436, + 5264.352642212725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554066", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.240771379411, + "min_y": 5264.352642212725, + "max_x": 4570.693474661934, + "max_y": 5264.805345495247, + "center": [ + 4570.467123020672, + 5264.578993853986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.693474661934, + 5264.805345495247 + ], + [ + 4570.240771379411, + 5264.352642212725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554067", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.300440769914, + "min_y": 5264.805345495248, + "max_x": 4564.753144052436, + "max_y": 5265.258048777769, + "center": [ + 4564.526792411175, + 5265.031697136508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.300440769914, + 5264.805345495248 + ], + [ + 4564.753144052436, + 5265.258048777769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554068", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4563.636463504202, + "min_y": 5264.805345495247, + "max_x": 4571.35745192764, + "max_y": 5264.805345495247, + "center": [ + 4567.496957715921, + 5264.805345495247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.636463504202, + 5264.805345495247 + ], + [ + 4571.35745192764, + 5264.805345495247 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554069", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.70487583605, + "min_y": 5260.919396679589, + "max_x": 4564.70487583605, + "max_y": 5262.43113974487, + "center": [ + 4564.70487583605, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.70487583605, + 5262.43113974487 + ], + [ + 4564.70487583605, + 5260.919396679589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.007224449107, + "min_y": 5260.919396679589, + "max_x": 4565.007224449107, + "max_y": 5262.43113974487, + "center": [ + 4565.007224449107, + 5261.67526821223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.007224449107, + 5262.43113974487 + ], + [ + 4565.007224449107, + 5260.919396679589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.007224449107, + "min_y": 5261.675268212229, + "max_x": 4566.365582355054, + "max_y": 5261.675268212229, + "center": [ + 4565.68640340208, + 5261.675268212229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.007224449107, + 5261.675268212229 + ], + [ + 4566.365582355054, + 5261.675268212229 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4567.499389654014, + "min_y": 5262.809075511192, + "max_x": 4567.499389654014, + "max_y": 5264.352642212725, + "center": [ + 4567.499389654014, + 5263.580858861958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.499389654014, + 5264.352642212725 + ], + [ + 4567.499389654014, + 5262.809075511192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4544.882385995658, + "min_y": 5261.676576446969, + "max_x": 4553.361254202065, + "max_y": 5261.676576446969, + "center": [ + 4549.1218200988615, + 5261.676576446969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.882385995658, + 5261.676576446969 + ], + [ + 4553.361254202065, + 5261.676576446969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4577.200507844594, + "min_y": 5261.675900316594, + "max_x": 4603.259125079894, + "max_y": 5261.675900316594, + "center": [ + 4590.229816462244, + 5261.675900316594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.200507844594, + 5261.675900316594 + ], + [ + 4603.259125079894, + 5261.675900316594 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55406F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3559.167728349989, + "min_y": 5240.558079057468, + "max_x": 3570.366541853923, + "max_y": 5241.724622130794, + "center": [ + 3564.7671351019562, + 5241.141350594131 + ] + }, + "raw_value": "0.65 -> 0.35 MPa", + "clean_value": "0.65 -> 0.35 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554070", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4012.146194009996, + "min_y": 5212.875388281388, + "max_x": 4012.146194009996, + "max_y": 5215.14381790084, + "center": [ + 4012.146194009996, + 5214.009603091114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4012.146194009996, + 5215.14381790084 + ], + [ + 4012.146194009996, + 5212.875388281388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554071", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4012.870852516154, + "min_y": 5212.896870252913, + "max_x": 4012.870852516154, + "max_y": 5215.165299872365, + "center": [ + 4012.870852516154, + 5214.031085062639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4012.870852516154, + 5215.165299872365 + ], + [ + 4012.870852516154, + 5212.896870252913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554072", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4441.615174783197, + "min_y": 5175.612884289488, + "max_x": 4441.615174783197, + "max_y": 5182.268599776215, + "center": [ + 4441.615174783197, + 5178.940742032852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4441.615174783197, + 5182.268599776215 + ], + [ + 4441.615174783197, + 5175.612884289488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554073", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.766962113217, + "min_y": 5175.612884289488, + "max_x": 4445.766962113217, + "max_y": 5182.268599776215, + "center": [ + 4445.766962113217, + 5178.940742032852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.766962113217, + 5175.612884289488 + ], + [ + 4445.766962113217, + 5182.268599776215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554074", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4441.129354163324, + "min_y": 5182.760994879632, + "max_x": 4446.252782733091, + "max_y": 5182.760994879632, + "center": [ + 4443.691068448208, + 5182.760994879632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4441.129354163324, + 5182.760994879632 + ], + [ + 4446.252782733091, + 5182.760994879632 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554075", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4441.129354163324, + "min_y": 5182.268599776215, + "max_x": 4446.252782733091, + "max_y": 5182.268599776215, + "center": [ + 4443.691068448208, + 5182.268599776215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4441.129354163324, + 5182.268599776215 + ], + [ + 4446.252782733091, + 5182.268599776215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554078", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4441.615174783197, + "min_y": 5180.176981490769, + "max_x": 4444.507670369639, + "max_y": 5180.176981490769, + "center": [ + 4443.061422576418, + 5180.176981490769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4441.615174783197, + 5180.176981490769 + ], + [ + 4444.507670369639, + 5180.176981490769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554079", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4444.507670369639, + "min_y": 5180.176981490769, + "max_x": 4445.766962113217, + "max_y": 5180.176981490769, + "center": [ + 4445.1373162414275, + 5180.176981490769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4444.507670369639, + 5180.176981490769 + ], + [ + 4445.766962113217, + 5180.176981490769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55407A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4442.71114614249, + "min_y": 5176.210680410809, + "max_x": 4442.71114614249, + "max_y": 5180.176981490769, + "center": [ + 4442.71114614249, + 5178.19383095079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4442.71114614249, + 5180.176981490769 + ], + [ + 4442.71114614249, + 5176.210680410809 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55407B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4442.71114614249, + "min_y": 5176.210680410809, + "max_x": 4444.670990753924, + "max_y": 5176.210680410809, + "center": [ + 4443.691068448207, + 5176.210680410809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4442.71114614249, + 5176.210680410809 + ], + [ + 4444.670990753924, + 5176.210680410809 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55407C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4444.670990753924, + "min_y": 5176.210680410809, + "max_x": 4444.670990753924, + "max_y": 5180.176981490769, + "center": [ + 4444.670990753924, + 5178.19383095079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4444.670990753924, + 5176.210680410809 + ], + [ + 4444.670990753924, + 5180.176981490769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55407D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.275079445018, + "min_y": 5173.356232154735, + "max_x": 4443.980352655244, + "max_y": 5173.356759444573, + "center": [ + 4443.62771605013, + 5173.356495799654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.980352655244, + 5173.356759444573 + ], + [ + 4443.275079445018, + 5173.356232154735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55407E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.627187527749, + "min_y": 5173.356495799657, + "max_x": 4443.627716050128, + "max_y": 5174.063417592297, + "center": [ + 4443.627451788938, + 5173.709956695977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.627716050128, + 5173.356495799657 + ], + [ + 4443.627187527749, + 5174.063417592297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55407F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.276241170883, + "min_y": 5171.851761737032, + "max_x": 4443.981514381106, + "max_y": 5171.852289026872, + "center": [ + 4443.628877775995, + 5171.8520253819515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.276241170883, + 5171.851761737032 + ], + [ + 4443.981514381106, + 5171.852289026872 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554080", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4443.40085798336, + "min_y": 5172.378572006088, + "max_x": 4443.852309348315, + "max_y": 5172.830023371043, + "center": [ + 4443.626583665838, + 5172.604297688566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.626583665838, + 5172.604297688566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554081", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.62718301992, + "min_y": 5171.176784517137, + "max_x": 4443.627687855456, + "max_y": 5171.85202411489, + "center": [ + 4443.627435437688, + 5171.5144043160135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.62718301992, + 5171.85202411489 + ], + [ + 4443.627687855456, + 5171.176784517137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554082", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.276084264713, + "min_y": 5172.012241883934, + "max_x": 4443.513278611955, + "max_y": 5172.409069492616, + "center": [ + 4443.394681438334, + 5172.210655688275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.513278611955, + 5172.409069492616 + ], + [ + 4443.276084264713, + 5172.012241883934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554083", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.276084264713, + "min_y": 5172.012241883934, + "max_x": 4443.981357474934, + "max_y": 5172.012769173774, + "center": [ + 4443.628720869823, + 5172.012505528854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.276084264713, + 5172.012241883934 + ], + [ + 4443.981357474934, + 5172.012769173774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554084", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.742684087807, + "min_y": 5172.012769173774, + "max_x": 4443.981357474934, + "max_y": 5172.410718826735, + "center": [ + 4443.862020781371, + 5172.211744000255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.981357474934, + 5172.012769173774 + ], + [ + 4443.742684087807, + 5172.410718826735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554085", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.275203601317, + "min_y": 5172.795047287588, + "max_x": 4443.512180116162, + "max_y": 5173.190167677746, + "center": [ + 4443.39369185874, + 5172.992607482667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.512180116162, + 5172.795047287588 + ], + [ + 4443.275203601317, + 5173.190167677746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554086", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.275203601317, + "min_y": 5173.190167677746, + "max_x": 4443.980476811542, + "max_y": 5173.190694967582, + "center": [ + 4443.627840206429, + 5173.190431322664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.275203601317, + 5173.190167677746 + ], + [ + 4443.980476811542, + 5173.190694967582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554087", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.744091376205, + "min_y": 5172.795220673516, + "max_x": 4443.980476811542, + "max_y": 5173.190694967582, + "center": [ + 4443.862284093873, + 5172.992957820549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.980476811542, + 5173.190694967582 + ], + [ + 4443.744091376205, + 5172.795220673516 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554088", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.243472234502, + "min_y": 5170.82047233324, + "max_x": 4443.243472234502, + "max_y": 5171.340794314437, + "center": [ + 4443.243472234502, + 5171.080633323838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.243472234502, + 5171.340794314437 + ], + [ + 4443.243472234502, + 5170.82047233324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554089", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4444.011752025751, + "min_y": 5170.82047233324, + "max_x": 4444.011752025751, + "max_y": 5171.340794314437, + "center": [ + 4444.011752025751, + 5171.080633323838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4444.011752025751, + 5171.340794314437 + ], + [ + 4444.011752025751, + 5170.82047233324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55408A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4443.243472234502, + "min_y": 5170.82047233324, + "max_x": 4444.011752025751, + "max_y": 5170.82047233324, + "center": [ + 4443.627612130127, + 5170.82047233324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4443.243472234502, + 5170.82047233324 + ], + [ + 4444.011752025751, + 5170.82047233324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55408B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.577677647563, + "min_y": 5185.682662838623, + "max_x": 4445.577677647563, + "max_y": 5186.734998969235, + "center": [ + 4445.577677647563, + 5186.208830903929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.577677647563, + 5185.682662838623 + ], + [ + 4445.577677647563, + 5186.734998969235 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "55408C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4445.577677647564, + "min_y": 5186.416995743373, + "max_x": 4446.213684099287, + "max_y": 5187.053002195096, + "center": [ + 4445.895680873426, + 5186.734998969235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.895680873426, + 5186.734998969235 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "55408D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.583717726802, + "min_y": 5182.767982918123, + "max_x": 4445.583717726802, + "max_y": 5183.398003372483, + "center": [ + 4445.583717726802, + 5183.082993145303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.583717726802, + 5182.767982918123 + ], + [ + 4445.583717726802, + 5183.398003372483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55408E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4445.260930000859, + "min_y": 5184.2175453796135, + "max_x": 4445.9065054527455, + "max_y": 5184.8631208315, + "center": [ + 4445.583717726802, + 5184.540333105557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.583717726802, + 5184.540333105557 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "55408F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5185.682662838623, + "max_x": 4446.087988213048, + "max_y": 5185.682662838623, + "center": [ + 4445.583717726803, + 5185.682662838623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.079447240558, + 5185.682662838623 + ], + [ + 4446.087988213048, + 5185.682662838623 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554090", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5183.398003372483, + "max_x": 4446.087988213048, + "max_y": 5183.398003372483, + "center": [ + 4445.583717726803, + 5183.398003372483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.079447240558, + 5183.398003372483 + ], + [ + 4446.087988213048, + 5183.398003372483 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554091", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5183.698115927596, + "max_x": 4445.417901129525, + "max_y": 5184.263391284789, + "center": [ + 4445.248674185041, + 5183.980753606193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.417901129525, + 5184.263391284789 + ], + [ + 4445.079447240558, + 5183.698115927596 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554092", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5183.698115927596, + "max_x": 4446.087988213048, + "max_y": 5183.698115927596, + "center": [ + 4445.583717726803, + 5183.698115927596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.079447240558, + 5183.698115927596 + ], + [ + 4446.087988213048, + 5183.698115927596 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554093", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.749534324081, + "min_y": 5183.698115927596, + "max_x": 4446.087988213048, + "max_y": 5184.263391284789, + "center": [ + 4445.918761268565, + 5183.980753606193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.087988213048, + 5183.698115927596 + ], + [ + 4445.749534324081, + 5184.263391284789 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554094", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5184.817274926317, + "max_x": 4445.417901129525, + "max_y": 5185.382550283518, + "center": [ + 4445.248674185041, + 5185.099912604917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.417901129525, + 5184.817274926317 + ], + [ + 4445.079447240558, + 5185.382550283518 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554095", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.079447240558, + "min_y": 5185.382550283518, + "max_x": 4446.087988213048, + "max_y": 5185.382550283518, + "center": [ + 4445.583717726803, + 5185.382550283518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4445.079447240558, + 5185.382550283518 + ], + [ + 4446.087988213048, + 5185.382550283518 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554096", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4445.749534324081, + "min_y": 5184.817274926317, + "max_x": 4446.087988213048, + "max_y": 5185.382550283518, + "center": [ + 4445.918761268565, + 5185.099912604917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.087988213048, + 5185.382550283518 + ], + [ + 4445.749534324081, + 5184.817274926317 + ] + ], + "properties": { + "color": 213, + "lineweight": 0 + } + }, + { + "entity_id": "554097", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4428.60759254661, + "min_y": 5180.884842148202, + "max_x": 4438.470879628521, + "max_y": 5180.884842148202, + "center": [ + 4433.539236087566, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.470879628521, + 5180.884842148202 + ], + [ + 4428.60759254661, + 5180.884842148202 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554098", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.309923977735, + "min_y": 5180.891012116444, + "max_x": 4450.309923977735, + "max_y": 5182.835898376566, + "center": [ + 4450.309923977735, + 5181.863455246505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.309923977735, + 5180.891012116444 + ], + [ + 4450.309923977735, + 5182.835898376566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554099", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4449.9871362517915, + "min_y": 5183.655365028078, + "max_x": 4450.632711703678, + "max_y": 5184.300940479965, + "center": [ + 4450.309923977735, + 5183.978152754022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.309923977735, + 5183.978152754022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5185.120482487088, + "max_x": 4450.814194463981, + "max_y": 5185.120482487088, + "center": [ + 4450.309923977737, + 5185.120482487088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.805653491492, + 5185.120482487088 + ], + [ + 4450.814194463981, + 5185.120482487088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5182.835823020948, + "max_x": 4450.814194463981, + "max_y": 5182.835823020948, + "center": [ + 4450.309923977737, + 5182.835823020948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.805653491492, + 5182.835823020948 + ], + [ + 4450.814194463981, + 5182.835823020948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5183.135935576061, + "max_x": 4450.144107380458, + "max_y": 5183.701210933254, + "center": [ + 4449.974880435975, + 5183.4185732546575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.144107380458, + 5183.701210933254 + ], + [ + 4449.805653491492, + 5183.135935576061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5183.135935576061, + "max_x": 4450.814194463981, + "max_y": 5183.135935576061, + "center": [ + 4450.309923977737, + 5183.135935576061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.805653491492, + 5183.135935576061 + ], + [ + 4450.814194463981, + 5183.135935576061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.475740575015, + "min_y": 5183.135935576061, + "max_x": 4450.814194463981, + "max_y": 5183.701210933254, + "center": [ + 4450.644967519498, + 5183.4185732546575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.814194463981, + 5183.135935576061 + ], + [ + 4450.475740575015, + 5183.701210933254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55409F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5184.255094574782, + "max_x": 4450.144107380458, + "max_y": 5184.820369931983, + "center": [ + 4449.974880435975, + 5184.537732253382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.144107380458, + 5184.255094574782 + ], + [ + 4449.805653491492, + 5184.820369931983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.805653491492, + "min_y": 5184.820369931983, + "max_x": 4450.814194463981, + "max_y": 5184.820369931983, + "center": [ + 4450.309923977737, + 5184.820369931983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.805653491492, + 5184.820369931983 + ], + [ + 4450.814194463981, + 5184.820369931983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.475740575015, + "min_y": 5184.255094574782, + "max_x": 4450.814194463981, + "max_y": 5184.820369931983, + "center": [ + 4450.644967519498, + 5184.537732253382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.814194463981, + 5184.820369931983 + ], + [ + 4450.475740575015, + 5184.255094574782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.299220735431, + "min_y": 5185.120620471075, + "max_x": 4450.299220735431, + "max_y": 5185.72644912333, + "center": [ + 4450.299220735431, + 5185.423534797203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.299220735431, + 5185.120620471075 + ], + [ + 4450.299220735431, + 5185.72644912333 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4449.362706147613, + "min_y": 5190.175978843369, + "max_x": 4450.922706147613, + "max_y": 5191.475978843369, + "center": [ + 4450.142706147613, + 5190.82597884337 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540A4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4449.0165633026345, + "min_y": 5183.4648368492635, + "max_x": 4451.641557978807, + "max_y": 5186.089831525436, + "center": [ + 4450.329060640721, + 5184.77733418735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.329060640721, + 5184.77733418735 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.793924889863, + "min_y": 5186.224921439618, + "max_x": 4450.864196391577, + "max_y": 5186.224921439618, + "center": [ + 4450.32906064072, + 5186.224921439618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.793924889863, + 5186.224921439618 + ], + [ + 4450.864196391577, + 5186.224921439618 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.864196391577, + "min_y": 5185.726644088186, + "max_x": 4450.864196391577, + "max_y": 5186.224921439618, + "center": [ + 4450.864196391577, + 5185.975782763902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.864196391577, + 5186.224921439618 + ], + [ + 4450.864196391577, + 5185.726644088186 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.793924889863, + "min_y": 5185.726644088186, + "max_x": 4450.864196391577, + "max_y": 5185.726644088186, + "center": [ + 4450.32906064072, + 5185.726644088186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.864196391577, + 5185.726644088186 + ], + [ + 4449.793924889863, + 5185.726644088186 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4449.793924889863, + "min_y": 5185.726644088186, + "max_x": 4449.793924889863, + "max_y": 5186.224921439618, + "center": [ + 4449.793924889863, + 5185.975782763902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4449.793924889863, + 5185.726644088186 + ], + [ + 4449.793924889863, + 5186.224921439618 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540A9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4447.718466147605, + "min_y": 5188.239003758098, + "max_x": 4452.398466147605, + "max_y": 5189.539003758098, + "center": [ + 4450.058466147605, + 5188.889003758099 + ] + }, + "raw_value": "10900C", + "clean_value": "10900C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540AA", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4447.450011033561, + "min_y": 5186.47625165522, + "max_x": 4453.39113266296, + "max_y": 5192.417373284619, + "center": [ + 4450.420571848261, + 5189.44681246992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.420571848261, + 5189.44681246992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.299220735431, + "min_y": 5186.224476576336, + "max_x": 4450.299220735431, + "max_y": 5186.483329643267, + "center": [ + 4450.299220735431, + 5186.353903109802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.299220735431, + 5186.224476576336 + ], + [ + 4450.299220735431, + 5186.483329643267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540AC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4450.675947491472, + "min_y": 5183.720023031265, + "max_x": 4451.995770184789, + "max_y": 5184.453257860885, + "center": [ + 4451.335858838131, + 5184.086640446075 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540AD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.432532161715, + "min_y": 5180.348639310992, + "max_x": 4456.432532161715, + "max_y": 5181.401848804481, + "center": [ + 4456.432532161715, + 5180.875244057737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.432532161715, + 5180.348639310992 + ], + [ + 4456.432532161715, + 5181.401848804481 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540AE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4458.121237945342, + "min_y": 5180.348639310992, + "max_x": 4458.121237945342, + "max_y": 5181.401848804481, + "center": [ + 4458.121237945342, + 5180.875244057737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4458.121237945342, + 5180.348639310992 + ], + [ + 4458.121237945342, + 5181.401848804481 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540AF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.432532161715, + "min_y": 5181.042896850479, + "max_x": 4457.008072208128, + "max_y": 5181.401848804481, + "center": [ + 4456.720302184922, + 5181.22237282748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.432532161715, + 5181.401848804481 + ], + [ + 4457.008072208128, + 5181.042896850479 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.432532161715, + "min_y": 5180.348639310992, + "max_x": 4457.008072208128, + "max_y": 5180.707591264996, + "center": [ + 4456.720302184922, + 5180.528115287994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.432532161715, + 5180.348639310992 + ], + [ + 4457.008072208128, + 5180.707591264996 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B1", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.960076270873, + "min_y": 5180.558435275086, + "max_x": 4457.593693836178, + "max_y": 5181.192052840391, + "center": [ + 4457.276885053526, + 5180.875244057738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4457.276885053526, + 5180.875244057738 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4457.545697898925, + "min_y": 5181.042896850479, + "max_x": 4458.121237945342, + "max_y": 5181.401848804481, + "center": [ + 4457.833467922133, + 5181.22237282748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4457.545697898925, + 5181.042896850479 + ], + [ + 4458.121237945342, + 5181.401848804481 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4457.545697898925, + "min_y": 5180.348639310992, + "max_x": 4458.121237945342, + "max_y": 5180.707591264996, + "center": [ + 4457.833467922133, + 5180.528115287994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4457.545697898925, + 5180.707591264996 + ], + [ + 4458.121237945342, + 5180.348639310992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4458.46787118733, + "min_y": 5180.348639310992, + "max_x": 4458.46787118733, + "max_y": 5181.401848804481, + "center": [ + 4458.46787118733, + 5180.875244057737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4458.46787118733, + 5180.348639310992 + ], + [ + 4458.46787118733, + 5181.401848804481 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.085898919726, + "min_y": 5180.348639310992, + "max_x": 4456.085898919726, + "max_y": 5181.401848804481, + "center": [ + 4456.085898919726, + 5180.875244057737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.085898919726, + 5180.348639310992 + ], + [ + 4456.085898919726, + 5181.401848804481 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4438.817512870509, + "min_y": 5180.306900360392, + "max_x": 4438.817512870509, + "max_y": 5181.360109853882, + "center": [ + 4438.817512870509, + 5180.833505107137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.817512870509, + 5180.306900360392 + ], + [ + 4438.817512870509, + 5181.360109853882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4440.506218654138, + "min_y": 5180.306900360392, + "max_x": 4440.506218654138, + "max_y": 5181.360109853882, + "center": [ + 4440.506218654138, + 5180.833505107137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4440.506218654138, + 5180.306900360392 + ], + [ + 4440.506218654138, + 5181.360109853882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4438.817512870509, + "min_y": 5181.00115789988, + "max_x": 4439.393052916923, + "max_y": 5181.360109853882, + "center": [ + 4439.105282893715, + 5181.180633876881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.817512870509, + 5181.360109853882 + ], + [ + 4439.393052916923, + 5181.00115789988 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540B9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4438.817512870509, + "min_y": 5180.306900360392, + "max_x": 4439.393052916923, + "max_y": 5180.665852314396, + "center": [ + 4439.105282893715, + 5180.486376337394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.817512870509, + 5180.306900360392 + ], + [ + 4439.393052916923, + 5180.665852314396 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BA", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4439.34505697967, + "min_y": 5180.5166963244865, + "max_x": 4439.978674544975, + "max_y": 5181.1503138897915, + "center": [ + 4439.661865762322, + 5180.833505107139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4439.661865762322, + 5180.833505107139 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4439.930678607721, + "min_y": 5181.00115789988, + "max_x": 4440.506218654138, + "max_y": 5181.360109853882, + "center": [ + 4440.21844863093, + 5181.180633876881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4439.930678607721, + 5181.00115789988 + ], + [ + 4440.506218654138, + 5181.360109853882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4439.930678607721, + "min_y": 5180.306900360392, + "max_x": 4440.506218654138, + "max_y": 5180.665852314396, + "center": [ + 4440.21844863093, + 5180.486376337394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4439.930678607721, + 5180.665852314396 + ], + [ + 4440.506218654138, + 5180.306900360392 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4440.852851896124, + "min_y": 5180.306900360392, + "max_x": 4440.852851896124, + "max_y": 5181.360109853882, + "center": [ + 4440.852851896124, + 5180.833505107137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4440.852851896124, + 5180.306900360392 + ], + [ + 4440.852851896124, + 5181.360109853882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4438.470879628521, + "min_y": 5180.306900360392, + "max_x": 4438.470879628521, + "max_y": 5181.360109853882, + "center": [ + 4438.470879628521, + 5180.833505107137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.470879628521, + 5180.306900360392 + ], + [ + 4438.470879628521, + 5181.360109853882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540BF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4458.46527512389, + "min_y": 5180.884842148202, + "max_x": 4544.892762213689, + "max_y": 5180.884842148202, + "center": [ + 4501.6790186687895, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4458.46527512389, + 5180.884842148202 + ], + [ + 4544.892762213689, + 5180.884842148202 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540C0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4485.102099185756, + "min_y": 5178.82455706829, + "max_x": 4497.196817770005, + "max_y": 5179.944438418684, + "center": [ + 4491.14945847788, + 5179.384497743487 + ] + }, + "raw_value": "N2-10700-25A-F1A-n", + "clean_value": "N2-10700-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4546.802733112252, + "min_y": 5172.38129792766, + "max_x": 4574.170057635041, + "max_y": 5172.38129792766, + "center": [ + 4560.486395373647, + 5172.38129792766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4546.802733112252, + 5172.38129792766 + ], + [ + 4574.170057635041, + 5172.38129792766 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5172.812015854851, + "max_x": 4546.802733112252, + "max_y": 5173.030825048269, + "center": [ + 4546.266643684989, + 5172.92142045156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5173.030825048269 + ], + [ + 4546.802733112252, + 5172.812015854851 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5171.717969887731, + "max_x": 4546.802733112252, + "max_y": 5171.936779081157, + "center": [ + 4546.266643684989, + 5171.827374484444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5171.717969887731 + ], + [ + 4546.802733112252, + 5171.936779081157 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4546.802733112252, + "min_y": 5171.936779081157, + "max_x": 4546.802733112252, + "max_y": 5172.812015854851, + "center": [ + 4546.802733112252, + 5172.374397468004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4546.802733112252, + 5171.936779081157 + ], + [ + 4546.802733112252, + 5172.812015854851 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5171.717969887731, + "max_x": 4545.730554257725, + "max_y": 5173.030825048269, + "center": [ + 4545.730554257725, + 5172.374397468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5171.717969887731 + ], + [ + 4545.730554257725, + 5173.030825048269 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540C6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4546.536653124669, + "min_y": 5173.882488990353, + "max_x": 4551.240154796322, + "max_y": 5175.002370340746, + "center": [ + 4548.888403960495, + 5174.442429665549 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5540C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.884020111235, + "min_y": 5172.38129792766, + "max_x": 4545.730554257725, + "max_y": 5172.38129792766, + "center": [ + 4545.30728718448, + 5172.38129792766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.884020111235, + 5172.38129792766 + ], + [ + 4545.730554257725, + 5172.38129792766 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5169.967850641509, + "max_x": 4574.170057635041, + "max_y": 5174.794745213811, + "center": [ + 4574.170057635041, + 5172.381297927661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5174.794745213811 + ], + [ + 4574.170057635041, + 5169.967850641509 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5169.967838612587, + "max_x": 4596.596892795243, + "max_y": 5169.967850641509, + "center": [ + 4585.3834752151415, + 5169.967844627048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5169.967850641509 + ], + [ + 4596.596892795243, + 5169.967838612587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5169.967850641509, + "max_x": 4574.170057635041, + "max_y": 5174.794745213811, + "center": [ + 4574.170057635041, + 5172.381297927661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5174.794745213811 + ], + [ + 4574.170057635041, + 5169.967850641509 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5169.967838612587, + "max_x": 4596.596892795243, + "max_y": 5169.967850641509, + "center": [ + 4585.3834752151415, + 5169.967844627048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5169.967850641509 + ], + [ + 4596.596892795243, + 5169.967838612587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5174.794745213811, + "max_x": 4596.596892795243, + "max_y": 5174.794760794624, + "center": [ + 4585.3834752151415, + 5174.794753004218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5174.794745213811 + ], + [ + 4596.596892795243, + 5174.794760794624 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5169.967838612587, + "max_x": 4599.010353886262, + "max_y": 5172.381299703605, + "center": [ + 4597.803623340753, + 5171.174569158096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.596892795243, + 5169.967838612587 + ], + [ + 4599.010353886262, + 5172.381299703605 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5172.381299703605, + "max_x": 4599.010353886262, + "max_y": 5174.794760794624, + "center": [ + 4597.803623340753, + 5173.588030249115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.010353886262, + 5172.381299703605 + ], + [ + 4596.596892795243, + 5174.794760794624 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540CF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4576.390269250782, + "min_y": 5171.572028331699, + "max_x": 4595.530813871391, + "max_y": 5173.2510234738575, + "center": [ + 4585.960541561086, + 5172.4115259027785 + ] + }, + "raw_value": "D-10113 VACUUM LINE", + "clean_value": "D-10113 VACUUM LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4546.802733112252, + "min_y": 5184.359535718522, + "max_x": 4574.170057635041, + "max_y": 5184.359535718522, + "center": [ + 4560.486395373647, + 5184.359535718522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4546.802733112252, + 5184.359535718522 + ], + [ + 4574.170057635041, + 5184.359535718522 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5184.790253645713, + "max_x": 4546.802733112252, + "max_y": 5185.009062839132, + "center": [ + 4546.266643684989, + 5184.899658242422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5185.009062839132 + ], + [ + 4546.802733112252, + 5184.790253645713 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5183.696207678593, + "max_x": 4546.802733112252, + "max_y": 5183.915016872019, + "center": [ + 4546.266643684989, + 5183.805612275306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5183.696207678593 + ], + [ + 4546.802733112252, + 5183.915016872019 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4546.802733112252, + "min_y": 5183.915016872019, + "max_x": 4546.802733112252, + "max_y": 5184.790253645713, + "center": [ + 4546.802733112252, + 5184.352635258866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4546.802733112252, + 5183.915016872019 + ], + [ + 4546.802733112252, + 5184.790253645713 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4545.730554257725, + "min_y": 5183.696207678593, + "max_x": 4545.730554257725, + "max_y": 5185.009062839132, + "center": [ + 4545.730554257725, + 5184.352635258862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4545.730554257725, + 5183.696207678593 + ], + [ + 4545.730554257725, + 5185.009062839132 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5540D5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4546.536653124669, + "min_y": 5185.860726781216, + "max_x": 4551.240154796322, + "max_y": 5186.980608131609, + "center": [ + 4548.888403960495, + 5186.420667456412 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5540D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.884020111235, + "min_y": 5184.359535718522, + "max_x": 4545.730554257725, + "max_y": 5184.359535718522, + "center": [ + 4545.30728718448, + 5184.359535718522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.884020111235, + 5184.359535718522 + ], + [ + 4545.730554257725, + 5184.359535718522 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5181.946088432372, + "max_x": 4574.170057635041, + "max_y": 5186.772983004674, + "center": [ + 4574.170057635041, + 5184.359535718522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5186.772983004674 + ], + [ + 4574.170057635041, + 5181.946088432372 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5181.946076403449, + "max_x": 4596.596892795243, + "max_y": 5181.946088432372, + "center": [ + 4585.3834752151415, + 5181.9460824179105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5181.946088432372 + ], + [ + 4596.596892795243, + 5181.946076403449 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5181.946088432372, + "max_x": 4574.170057635041, + "max_y": 5186.772983004674, + "center": [ + 4574.170057635041, + 5184.359535718522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5186.772983004674 + ], + [ + 4574.170057635041, + 5181.946088432372 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5181.946076403449, + "max_x": 4596.596892795243, + "max_y": 5181.946088432372, + "center": [ + 4585.3834752151415, + 5181.9460824179105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5181.946088432372 + ], + [ + 4596.596892795243, + 5181.946076403449 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4574.170057635041, + "min_y": 5186.772983004674, + "max_x": 4596.596892795243, + "max_y": 5186.772998585486, + "center": [ + 4585.3834752151415, + 5186.77299079508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4574.170057635041, + 5186.772983004674 + ], + [ + 4596.596892795243, + 5186.772998585486 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5181.946076403449, + "max_x": 4599.010353886262, + "max_y": 5184.359537494469, + "center": [ + 4597.803623340753, + 5183.15280694896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4596.596892795243, + 5181.946076403449 + ], + [ + 4599.010353886262, + 5184.359537494469 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4596.596892795243, + "min_y": 5184.359537494469, + "max_x": 4599.010353886262, + "max_y": 5186.772998585486, + "center": [ + 4597.803623340753, + 5185.566268039977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4599.010353886262, + 5184.359537494469 + ], + [ + 4596.596892795243, + 5186.772998585486 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4576.390269250782, + "min_y": 5183.550266122562, + "max_x": 4595.530813871391, + "max_y": 5185.229261264721, + "center": [ + 4585.960541561086, + 5184.389763693642 + ] + }, + "raw_value": "D-10213 VACUUM LINE", + "clean_value": "D-10213 VACUUM LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540DF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4550.299408630224, + "min_y": 5163.658060748019, + "max_x": 4562.394127214473, + "max_y": 5164.7779420984125, + "center": [ + 4556.346767922349, + 5164.218001423216 + ] + }, + "raw_value": "N2-10707-25A-F1A-n", + "clean_value": "N2-10707-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4550.558964929648, + "min_y": 5170.607629044948, + "max_x": 4562.653683513897, + "max_y": 5171.727510395342, + "center": [ + 4556.606324221772, + 5171.1675697201445 + ] + }, + "raw_value": "N2-10705-15A-F1A-n", + "clean_value": "N2-10705-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4550.848535935258, + "min_y": 5182.360595384801, + "max_x": 4562.943254519507, + "max_y": 5183.480476735194, + "center": [ + 4556.895895227382, + 5182.920536059997 + ] + }, + "raw_value": "N2-10706-15A-F1A-n", + "clean_value": "N2-10706-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.894107794376, + "min_y": 5228.950629579363, + "max_x": 4574.170120679007, + "max_y": 5228.950629579363, + "center": [ + 4559.532114236692, + 5228.950629579363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.894107794376, + 5228.950629579363 + ], + [ + 4574.170120679007, + 5228.950629579363 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540E3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4550.832493971676, + "min_y": 5207.220525836715, + "max_x": 4562.927212555925, + "max_y": 5208.340407187108, + "center": [ + 4556.8798532638, + 5207.780466511911 + ] + }, + "raw_value": "N2-10708-25A-F1A-n", + "clean_value": "N2-10708-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E4", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4551.188646781, + "min_y": 5227.385702434252, + "max_x": 4563.283365365249, + "max_y": 5228.505583784646, + "center": [ + 4557.236006073124, + 5227.9456431094495 + ] + }, + "raw_value": "N2-10709-25A-F1A-n", + "clean_value": "N2-10709-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4551.455761387994, + "min_y": 5234.686835025376, + "max_x": 4563.550479972243, + "max_y": 5235.80671637577, + "center": [ + 4557.503120680119, + 5235.2467757005725 + ] + }, + "raw_value": "N2-10701-25A-F1A-n", + "clean_value": "N2-10701-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4551.722875994985, + "min_y": 5243.056426044471, + "max_x": 4563.817594579234, + "max_y": 5244.176307394864, + "center": [ + 4557.770235287109, + 5243.616366719667 + ] + }, + "raw_value": "N2-10702-25A-F1A-n", + "clean_value": "N2-10702-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.903701838753, + "min_y": 5236.843564554559, + "max_x": 4574.179714723387, + "max_y": 5236.843564554559, + "center": [ + 4559.54170828107, + 5236.843564554559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.903701838753, + 5236.843564554559 + ], + [ + 4574.179714723387, + 5236.843564554559 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4544.903701838753, + "min_y": 5245.135247146615, + "max_x": 4574.179714723387, + "max_y": 5245.135247146615, + "center": [ + 4559.54170828107, + 5245.135247146615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.903701838753, + 5245.135247146615 + ], + [ + 4574.179714723387, + 5245.135247146615 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.719314105079, + "min_y": 5261.679763683455, + "max_x": 4547.719314105079, + "max_y": 5262.310185947717, + "center": [ + 4547.719314105079, + 5261.994974815587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.719314105079, + 5261.679763683455 + ], + [ + 4547.719314105079, + 5262.310185947717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540EA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4547.396526379136, + "min_y": 5262.824760411684, + "max_x": 4548.042101831023, + "max_y": 5263.470335863571, + "center": [ + 4547.719314105079, + 5263.147548137627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.719314105079, + 5263.147548137627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.215043618835, + "min_y": 5262.305330959666, + "max_x": 4547.553497507802, + "max_y": 5262.87060631686, + "center": [ + 4547.384270563318, + 5262.587968638263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.553497507802, + 5262.87060631686 + ], + [ + 4547.215043618835, + 5262.305330959666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.215043618835, + "min_y": 5262.305330959666, + "max_x": 4548.223584591325, + "max_y": 5262.305330959666, + "center": [ + 4547.719314105079, + 5262.305330959666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.215043618835, + 5262.305330959666 + ], + [ + 4548.223584591325, + 5262.305330959666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.885130702358, + "min_y": 5262.305330959666, + "max_x": 4548.223584591325, + "max_y": 5262.87060631686, + "center": [ + 4548.054357646841, + 5262.587968638263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4548.223584591325, + 5262.305330959666 + ], + [ + 4547.885130702358, + 5262.87060631686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.215043618835, + "min_y": 5263.424489958388, + "max_x": 4547.553497507802, + "max_y": 5263.989765315589, + "center": [ + 4547.384270563318, + 5263.707127636988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.553497507802, + 5263.424489958388 + ], + [ + 4547.215043618835, + 5263.989765315589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.215043618835, + "min_y": 5263.989765315589, + "max_x": 4548.223584591325, + "max_y": 5263.989765315589, + "center": [ + 4547.719314105079, + 5263.989765315589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.215043618835, + 5263.989765315589 + ], + [ + 4548.223584591325, + 5263.989765315589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.885130702358, + "min_y": 5263.424489958388, + "max_x": 4548.223584591325, + "max_y": 5263.989765315589, + "center": [ + 4548.054357646841, + 5263.707127636988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4548.223584591325, + 5263.989765315589 + ], + [ + 4547.885130702358, + 5263.424489958388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.708610862773, + "min_y": 5264.005637046116, + "max_x": 4547.708610862773, + "max_y": 5264.611465698371, + "center": [ + 4547.708610862773, + 5264.3085513722435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.708610862773, + 5264.005637046116 + ], + [ + 4547.708610862773, + 5264.611465698371 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540F2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4546.754813202629, + "min_y": 5268.181416085401, + "max_x": 4548.314813202629, + "max_y": 5269.481416085401, + "center": [ + 4547.534813202628, + 5268.831416085401 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540F3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4545.107258202619, + "min_y": 5265.826603695739, + "max_x": 4549.787258202619, + "max_y": 5267.1266036957395, + "center": [ + 4547.447258202619, + 5266.476603695739 + ] + }, + "raw_value": "10900D", + "clean_value": "10900D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540F4", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4544.994585667319, + "min_y": 5264.552166650202, + "max_x": 4550.659470074627, + "max_y": 5270.21705105751, + "center": [ + 4547.827027870973, + 5267.384608853856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.827027870973, + 5267.384608853856 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5540F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.694565448077, + "min_y": 5261.666311513461, + "max_x": 4581.694565448077, + "max_y": 5262.296733777723, + "center": [ + 4581.694565448077, + 5261.981522645592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.694565448077, + 5261.666311513461 + ], + [ + 4581.694565448077, + 5262.296733777723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4581.371777722134, + "min_y": 5262.811308241689, + "max_x": 4582.01735317402, + "max_y": 5263.456883693576, + "center": [ + 4581.694565448077, + 5263.134095967633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.694565448077, + 5263.134095967633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.190294961834, + "min_y": 5262.291878789672, + "max_x": 4581.5287488508, + "max_y": 5262.857154146867, + "center": [ + 4581.359521906317, + 5262.57451646827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.5287488508, + 5262.857154146867 + ], + [ + 4581.190294961834, + 5262.291878789672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.190294961834, + "min_y": 5262.291878789672, + "max_x": 4582.198835934323, + "max_y": 5262.291878789672, + "center": [ + 4581.694565448079, + 5262.291878789672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.190294961834, + 5262.291878789672 + ], + [ + 4582.198835934323, + 5262.291878789672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.860382045357, + "min_y": 5262.291878789672, + "max_x": 4582.198835934323, + "max_y": 5262.857154146867, + "center": [ + 4582.02960898984, + 5262.57451646827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.198835934323, + 5262.291878789672 + ], + [ + 4581.860382045357, + 5262.857154146867 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.190294961834, + "min_y": 5263.411037788394, + "max_x": 4581.5287488508, + "max_y": 5263.976313145595, + "center": [ + 4581.359521906317, + 5263.693675466995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.5287488508, + 5263.411037788394 + ], + [ + 4581.190294961834, + 5263.976313145595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.190294961834, + "min_y": 5263.976313145595, + "max_x": 4582.198835934323, + "max_y": 5263.976313145595, + "center": [ + 4581.694565448079, + 5263.976313145595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.190294961834, + 5263.976313145595 + ], + [ + 4582.198835934323, + 5263.976313145595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.860382045357, + "min_y": 5263.411037788394, + "max_x": 4582.198835934323, + "max_y": 5263.976313145595, + "center": [ + 4582.02960898984, + 5263.693675466995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.198835934323, + 5263.976313145595 + ], + [ + 4581.860382045357, + 5263.411037788394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5540FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.683862205773, + "min_y": 5263.992184876123, + "max_x": 4581.683862205773, + "max_y": 5264.598013528377, + "center": [ + 4581.683862205773, + 5264.295099202251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.683862205773, + 5263.992184876123 + ], + [ + 4581.683862205773, + 5264.598013528377 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5540FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.496158795717, + "min_y": 5257.299178373379, + "max_x": 4567.496158795717, + "max_y": 5260.541437883144, + "center": [ + 4567.496158795717, + 5258.920308128261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.496158795717, + 5260.541437883144 + ], + [ + 4567.496158795717, + 5257.299178373379 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5540FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.496158795717, + "min_y": 5257.299178373379, + "max_x": 4607.356791121469, + "max_y": 5257.299178373379, + "center": [ + 4587.426474958593, + 5257.299178373379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.496158795717, + 5257.299178373379 + ], + [ + 4607.356791121469, + 5257.299178373379 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4607.356791121469, + "min_y": 5257.299178373379, + "max_x": 4607.356791121469, + "max_y": 5259.933574193175, + "center": [ + 4607.356791121469, + 5258.616376283277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4607.356791121469, + 5257.299178373379 + ], + [ + 4607.356791121469, + 5259.933574193175 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.361884755766, + "min_y": 5262.12367181206, + "max_x": 4554.434063610293, + "max_y": 5262.342481005479, + "center": [ + 4553.89797418303, + 5262.233076408769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.361884755766, + 5262.342481005479 + ], + [ + 4554.434063610293, + 5262.12367181206 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554102", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.361884755766, + "min_y": 5261.02962584494, + "max_x": 4554.434063610293, + "max_y": 5261.248435038367, + "center": [ + 4553.89797418303, + 5261.139030441653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.361884755766, + 5261.02962584494 + ], + [ + 4554.434063610293, + 5261.248435038367 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4554.434063610293, + "min_y": 5261.248435038367, + "max_x": 4554.434063610293, + "max_y": 5262.12367181206, + "center": [ + 4554.434063610293, + 5261.686053425214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.434063610293, + 5261.248435038367 + ], + [ + 4554.434063610293, + 5262.12367181206 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.361884755766, + "min_y": 5261.02962584494, + "max_x": 4553.361884755766, + "max_y": 5262.342481005479, + "center": [ + 4553.361884755766, + 5261.68605342521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.361884755766, + 5261.02962584494 + ], + [ + 4553.361884755766, + 5262.342481005479 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554105", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4552.675451726872, + "min_y": 5262.815079834268, + "max_x": 4557.378953398525, + "max_y": 5263.934961184661, + "center": [ + 4555.027202562698, + 5263.375020509464 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554106", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4554.434626580541, + "min_y": 5261.676576446969, + "max_x": 4557.383246038995, + "max_y": 5261.676576446969, + "center": [ + 4555.908936309768, + 5261.676576446969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.434626580541, + 5261.676576446969 + ], + [ + 4557.383246038995, + 5261.676576446969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554107", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4585.190324640961, + "min_y": 5259.605146903104, + "max_x": 4597.28504322521, + "max_y": 5260.725028253497, + "center": [ + 4591.2376839330855, + 5260.1650875783 + ] + }, + "raw_value": "N2-10704-15A-F1A-n", + "clean_value": "N2-10704-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554108", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.879668676485, + "min_y": 5257.534646429643, + "max_x": 4561.92702796861, + "max_y": 5258.654527780036, + "center": [ + 4558.903348322548, + 5258.094587104839 + ] + }, + "raw_value": "NBD-10200", + "clean_value": "NBD-10200", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554109", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.652562660978, + "min_y": 5256.013847218664, + "max_x": 4561.699921953103, + "max_y": 5257.133728569057, + "center": [ + 4558.67624230704, + 5256.57378789386 + ] + }, + "raw_value": "+250mmH2O", + "clean_value": "+250mmH2O", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55410A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4555.825870333712, + "min_y": 5255.608454730561, + "max_x": 4563.01604347406, + "max_y": 5255.608454730561, + "center": [ + 4559.420956903887, + 5255.608454730561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4555.825870333712, + 5255.608454730561 + ], + [ + 4563.01604347406, + 5255.608454730561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55410B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4563.020589677579, + "min_y": 5255.61478672706, + "max_x": 4566.74200090149, + "max_y": 5260.546898174484, + "center": [ + 4564.881295289535, + 5258.080842450772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.020589677579, + 5255.61478672706 + ], + [ + 4566.74200090149, + 5260.546898174484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55410C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4563.13026277679, + "min_y": 5297.836864133167, + "max_x": 4565.253938653044, + "max_y": 5297.836864133167, + "center": [ + 4564.192100714918, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.13026277679, + 5297.836864133167 + ], + [ + 4565.253938653044, + 5297.836864133167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55410D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.842966288972, + "min_y": 5297.836864133167, + "max_x": 4572.620186453592, + "max_y": 5297.836864133167, + "center": [ + 4571.731576371282, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.620186453592, + 5297.836864133167 + ], + [ + 4570.842966288972, + 5297.836864133167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55410E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.881962395514, + "min_y": 5297.808817948549, + "max_x": 4556.881962395514, + "max_y": 5304.31939612371, + "center": [ + 4556.881962395514, + 5301.06410703613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.881962395514, + 5304.31939612371 + ], + [ + 4556.881962395514, + 5297.808817948549 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55410F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.366774020519, + "min_y": 5296.702649323441, + "max_x": 4573.366774020519, + "max_y": 5298.971078942894, + "center": [ + 4573.366774020519, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.366774020519, + 5298.971078942894 + ], + [ + 4573.366774020519, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554110", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.003951848675, + "min_y": 5296.702649323441, + "max_x": 4577.003951848675, + "max_y": 5298.971078942894, + "center": [ + 4577.003951848675, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.003951848675, + 5298.971078942894 + ], + [ + 4577.003951848675, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554111", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.366774020519, + "min_y": 5296.702649323441, + "max_x": 4574.606386933748, + "max_y": 5297.475769248254, + "center": [ + 4573.986580477133, + 5297.089209285848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.366774020519, + 5296.702649323441 + ], + [ + 4574.606386933748, + 5297.475769248254 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554112", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.366774020519, + "min_y": 5298.19795901808, + "max_x": 4574.606386933748, + "max_y": 5298.971078942894, + "center": [ + 4573.986580477133, + 5298.584518980487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.366774020519, + 5298.971078942894 + ], + [ + 4574.606386933748, + 5298.19795901808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554113", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4574.503012053106, + "min_y": 5297.154513251679, + "max_x": 4575.867713816078, + "max_y": 5298.519215014651, + "center": [ + 4575.185362934592, + 5297.836864133165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.185362934592, + 5297.836864133165 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554114", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.76433893544, + "min_y": 5296.702649323441, + "max_x": 4577.003951848675, + "max_y": 5297.475769248254, + "center": [ + 4576.384145392058, + 5297.089209285848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.76433893544, + 5297.475769248254 + ], + [ + 4577.003951848675, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554115", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.76433893544, + "min_y": 5298.19795901808, + "max_x": 4577.003951848675, + "max_y": 5298.971078942894, + "center": [ + 4576.384145392058, + 5298.584518980487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.76433893544, + 5298.19795901808 + ], + [ + 4577.003951848675, + 5298.971078942894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554116", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.750539415602, + "min_y": 5296.702649323441, + "max_x": 4577.750539415602, + "max_y": 5298.971078942894, + "center": [ + 4577.750539415602, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.750539415602, + 5298.971078942894 + ], + [ + 4577.750539415602, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554117", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.620186453592, + "min_y": 5296.702649323441, + "max_x": 4572.620186453592, + "max_y": 5298.971078942894, + "center": [ + 4572.620186453592, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.620186453592, + 5298.971078942894 + ], + [ + 4572.620186453592, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554118", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.746497381711, + "min_y": 5296.702649323441, + "max_x": 4558.746497381711, + "max_y": 5298.971078942894, + "center": [ + 4558.746497381711, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.746497381711, + 5298.971078942894 + ], + [ + 4558.746497381711, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554119", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4562.383675209863, + "min_y": 5296.702649323441, + "max_x": 4562.383675209863, + "max_y": 5298.971078942894, + "center": [ + 4562.383675209863, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.383675209863, + 5298.971078942894 + ], + [ + 4562.383675209863, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.746497381711, + "min_y": 5296.702649323441, + "max_x": 4559.986110294938, + "max_y": 5297.475769248254, + "center": [ + 4559.366303838325, + 5297.089209285848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.746497381711, + 5296.702649323441 + ], + [ + 4559.986110294938, + 5297.475769248254 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.746497381711, + "min_y": 5298.19795901808, + "max_x": 4559.986110294938, + "max_y": 5298.971078942894, + "center": [ + 4559.366303838325, + 5298.584518980487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.746497381711, + 5298.971078942894 + ], + [ + 4559.986110294938, + 5298.19795901808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4559.882735414298, + "min_y": 5297.154513251679, + "max_x": 4561.24743717727, + "max_y": 5298.519215014651, + "center": [ + 4560.565086295784, + 5297.836864133165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.565086295784, + 5297.836864133165 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.144062296629, + "min_y": 5296.702649323441, + "max_x": 4562.383675209863, + "max_y": 5297.475769248254, + "center": [ + 4561.763868753246, + 5297.089209285848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.144062296629, + 5297.475769248254 + ], + [ + 4562.383675209863, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.144062296629, + "min_y": 5298.19795901808, + "max_x": 4562.383675209863, + "max_y": 5298.971078942894, + "center": [ + 4561.763868753246, + 5298.584518980487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.144062296629, + 5298.19795901808 + ], + [ + 4562.383675209863, + 5298.971078942894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55411F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4563.13026277679, + "min_y": 5296.702649323441, + "max_x": 4563.13026277679, + "max_y": 5298.971078942894, + "center": [ + 4563.13026277679, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.13026277679, + 5298.971078942894 + ], + [ + 4563.13026277679, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554120", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4557.999909814781, + "min_y": 5296.702649323441, + "max_x": 4557.999909814781, + "max_y": 5298.971078942894, + "center": [ + 4557.999909814781, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4557.999909814781, + 5298.971078942894 + ], + [ + 4557.999909814781, + 5296.702649323441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554121", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.881962395514, + "min_y": 5304.328328817189, + "max_x": 4565.253938653044, + "max_y": 5304.328328817189, + "center": [ + 4561.067950524279, + 5304.328328817189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.881962395514, + 5304.328328817189 + ], + [ + 4565.253938653044, + 5304.328328817189 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554122", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.384291615055, + "min_y": 5304.414208964476, + "max_x": 4578.756267872586, + "max_y": 5304.414208964476, + "center": [ + 4574.570279743821, + 5304.414208964476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.384291615055, + 5304.414208964476 + ], + [ + 4578.756267872586, + 5304.414208964476 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554123", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4566.000526219972, + "min_y": 5303.237054081105, + "max_x": 4566.000526219972, + "max_y": 5305.505483700558, + "center": [ + 4566.000526219972, + 5304.371268890832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.000526219972, + 5303.237054081105 + ], + [ + 4566.000526219972, + 5305.505483700558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554124", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.637704048127, + "min_y": 5303.237054081105, + "max_x": 4569.637704048127, + "max_y": 5305.505483700558, + "center": [ + 4569.637704048127, + 5304.371268890832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.637704048127, + 5303.237054081105 + ], + [ + 4569.637704048127, + 5305.505483700558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554125", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4566.000526219972, + "min_y": 5304.732363775744, + "max_x": 4567.2401391332, + "max_y": 5305.505483700558, + "center": [ + 4566.620332676586, + 5305.118923738151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.000526219972, + 5305.505483700558 + ], + [ + 4567.2401391332, + 5304.732363775744 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554126", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4566.000526219972, + "min_y": 5303.237054081105, + "max_x": 4567.2401391332, + "max_y": 5304.010174005919, + "center": [ + 4566.620332676586, + 5303.623614043512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.000526219972, + 5303.237054081105 + ], + [ + 4567.2401391332, + 5304.010174005919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554127", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.136764252559, + "min_y": 5303.688918009346, + "max_x": 4568.501466015531, + "max_y": 5305.053619772318, + "center": [ + 4567.819115134045, + 5304.371268890832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.819115134045, + 5304.371268890832 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554128", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.398091134891, + "min_y": 5304.732363775744, + "max_x": 4569.637704048127, + "max_y": 5305.505483700558, + "center": [ + 4569.017897591509, + 5305.118923738151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.398091134891, + 5304.732363775744 + ], + [ + 4569.637704048127, + 5305.505483700558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554129", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.398091134891, + "min_y": 5303.237054081105, + "max_x": 4569.637704048127, + "max_y": 5304.010174005919, + "center": [ + 4569.017897591509, + 5303.623614043512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.398091134891, + 5304.010174005919 + ], + [ + 4569.637704048127, + 5303.237054081105 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4570.384291615055, + "min_y": 5303.237054081105, + "max_x": 4570.384291615055, + "max_y": 5305.505483700558, + "center": [ + 4570.384291615055, + 5304.371268890832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.384291615055, + 5303.237054081105 + ], + [ + 4570.384291615055, + 5305.505483700558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.253938653044, + "min_y": 5303.237054081105, + "max_x": 4565.253938653044, + "max_y": 5305.505483700558, + "center": [ + 4565.253938653044, + 5304.371268890832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.253938653044, + 5303.237054081105 + ], + [ + 4565.253938653044, + 5305.505483700558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4578.756267872586, + "min_y": 5297.887317770678, + "max_x": 4578.756267872586, + "max_y": 5304.41629284402, + "center": [ + 4578.756267872586, + 5301.151805307349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4578.756267872586, + 5304.41629284402 + ], + [ + 4578.756267872586, + 5297.887317770678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.842966288972, + "min_y": 5297.080992600526, + "max_x": 4570.842966288972, + "max_y": 5298.592735665807, + "center": [ + 4570.842966288972, + 5297.836864133166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.842966288972, + 5298.592735665807 + ], + [ + 4570.842966288972, + 5297.080992600526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.540617675916, + "min_y": 5297.080992600526, + "max_x": 4570.540617675916, + "max_y": 5298.592735665807, + "center": [ + 4570.540617675916, + 5297.836864133166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.540617675916, + 5298.592735665807 + ], + [ + 4570.540617675916, + 5297.080992600526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55412F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.914645172047, + "min_y": 5296.703056834204, + "max_x": 4569.18225976997, + "max_y": 5296.703056834204, + "center": [ + 4568.048452471008, + 5296.703056834204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.914645172047, + 5296.703056834204 + ], + [ + 4569.18225976997, + 5296.703056834204 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554130", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.18225976997, + "min_y": 5296.703056834204, + "max_x": 4569.18225976997, + "max_y": 5298.97067143213, + "center": [ + 4569.18225976997, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.18225976997, + 5296.703056834204 + ], + [ + 4569.18225976997, + 5298.97067143213 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554131", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.914645172047, + "min_y": 5298.97067143213, + "max_x": 4569.18225976997, + "max_y": 5298.97067143213, + "center": [ + 4568.048452471008, + 5298.97067143213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.18225976997, + 5298.97067143213 + ], + [ + 4566.914645172047, + 5298.97067143213 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554132", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.914645172047, + "min_y": 5296.703056834204, + "max_x": 4566.914645172047, + "max_y": 5298.97067143213, + "center": [ + 4566.914645172047, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.914645172047, + 5298.97067143213 + ], + [ + 4566.914645172047, + 5296.703056834204 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554133", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.18225976997, + "min_y": 5297.836864133167, + "max_x": 4570.540617675916, + "max_y": 5297.836864133167, + "center": [ + 4569.861438722943, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.540617675916, + 5297.836864133167 + ], + [ + 4569.18225976997, + 5297.836864133167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554134", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.30220686943, + "min_y": 5300.514238133662, + "max_x": 4570.789834196404, + "max_y": 5300.514238133662, + "center": [ + 4568.046020532916, + 5300.514238133662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.30220686943, + 5300.514238133662 + ], + [ + 4570.789834196404, + 5300.514238133662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554135", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.789834196404, + "min_y": 5300.966941416184, + "max_x": 4571.242537478927, + "max_y": 5301.419644698706, + "center": [ + 4571.016185837665, + 5301.193293057446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.242537478927, + 5300.966941416184 + ], + [ + 4570.789834196404, + 5301.419644698706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554136", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.30220686943, + "min_y": 5301.419644698706, + "max_x": 4570.789834196404, + "max_y": 5301.419644698706, + "center": [ + 4568.046020532916, + 5301.419644698706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.789834196404, + 5301.419644698706 + ], + [ + 4565.30220686943, + 5301.419644698706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554137", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.849503586911, + "min_y": 5300.514238133662, + "max_x": 4565.30220686943, + "max_y": 5300.966941416184, + "center": [ + 4565.07585522817, + 5300.740589774923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.849503586911, + 5300.966941416184 + ], + [ + 4565.30220686943, + 5300.514238133662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554138", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.789834196404, + "min_y": 5300.514238133662, + "max_x": 4571.242537478927, + "max_y": 5300.966941416184, + "center": [ + 4571.016185837665, + 5300.740589774923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.242537478927, + 5300.966941416184 + ], + [ + 4570.789834196404, + 5300.514238133662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554139", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.849503586907, + "min_y": 5300.966941416185, + "max_x": 4565.30220686943, + "max_y": 5301.419644698706, + "center": [ + 4565.075855228169, + 5301.193293057446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.849503586907, + 5300.966941416185 + ], + [ + 4565.30220686943, + 5301.419644698706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.185526321196, + "min_y": 5300.966941416184, + "max_x": 4571.906514744634, + "max_y": 5300.966941416184, + "center": [ + 4568.046020532915, + 5300.966941416184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.185526321196, + 5300.966941416184 + ], + [ + 4571.906514744634, + 5300.966941416184 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.253938653044, + "min_y": 5297.080992600526, + "max_x": 4565.253938653044, + "max_y": 5298.592735665807, + "center": [ + 4565.253938653044, + 5297.836864133166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.253938653044, + 5298.592735665807 + ], + [ + 4565.253938653044, + 5297.080992600526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.556287266101, + "min_y": 5297.080992600526, + "max_x": 4565.556287266101, + "max_y": 5298.592735665807, + "center": [ + 4565.556287266101, + 5297.836864133166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.556287266101, + 5298.592735665807 + ], + [ + 4565.556287266101, + 5297.080992600526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.556287266101, + "min_y": 5297.836864133167, + "max_x": 4566.914645172047, + "max_y": 5297.836864133167, + "center": [ + 4566.235466219074, + 5297.836864133167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.556287266101, + 5297.836864133167 + ], + [ + 4566.914645172047, + 5297.836864133167 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4568.048452471008, + "min_y": 5298.97067143213, + "max_x": 4568.048452471008, + "max_y": 5300.514238133662, + "center": [ + 4568.048452471008, + 5299.742454782896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.048452471008, + 5300.514238133662 + ], + [ + 4568.048452471008, + 5298.97067143213 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55413F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4577.749570661587, + "min_y": 5297.837496237531, + "max_x": 4603.808187896886, + "max_y": 5297.837496237531, + "center": [ + 4590.778879279236, + 5297.837496237531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.749570661587, + 5297.837496237531 + ], + [ + 4603.808187896886, + 5297.837496237531 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554140", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.006983873181, + "min_y": 5297.827907434398, + "max_x": 4582.006983873181, + "max_y": 5298.458329698661, + "center": [ + 4582.006983873181, + 5298.14311856653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.006983873181, + 5297.827907434398 + ], + [ + 4582.006983873181, + 5298.458329698661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554141", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4581.684196147237, + "min_y": 5298.972904162628, + "max_x": 4582.329771599124, + "max_y": 5299.618479614514, + "center": [ + 4582.006983873181, + 5299.295691888571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.006983873181, + 5299.295691888571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554142", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.502713386937, + "min_y": 5298.45347471061, + "max_x": 4581.841167275904, + "max_y": 5299.018750067804, + "center": [ + 4581.67194033142, + 5298.736112389207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.841167275904, + 5299.018750067804 + ], + [ + 4581.502713386937, + 5298.45347471061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554143", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.502713386937, + "min_y": 5298.45347471061, + "max_x": 4582.511254359427, + "max_y": 5298.45347471061, + "center": [ + 4582.0069838731815, + 5298.45347471061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.502713386937, + 5298.45347471061 + ], + [ + 4582.511254359427, + 5298.45347471061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554144", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.17280047046, + "min_y": 5298.45347471061, + "max_x": 4582.511254359427, + "max_y": 5299.018750067804, + "center": [ + 4582.342027414943, + 5298.736112389207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.511254359427, + 5298.45347471061 + ], + [ + 4582.17280047046, + 5299.018750067804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554145", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.502713386937, + "min_y": 5299.572633709331, + "max_x": 4581.841167275904, + "max_y": 5300.137909066532, + "center": [ + 4581.67194033142, + 5299.855271387932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.841167275904, + 5299.572633709331 + ], + [ + 4581.502713386937, + 5300.137909066532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554146", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.502713386937, + "min_y": 5300.137909066532, + "max_x": 4582.511254359427, + "max_y": 5300.137909066532, + "center": [ + 4582.0069838731815, + 5300.137909066532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.502713386937, + 5300.137909066532 + ], + [ + 4582.511254359427, + 5300.137909066532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554147", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.17280047046, + "min_y": 5299.572633709331, + "max_x": 4582.511254359427, + "max_y": 5300.137909066532, + "center": [ + 4582.342027414943, + 5299.855271387932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.511254359427, + 5300.137909066532 + ], + [ + 4582.17280047046, + 5299.572633709331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.996280630876, + "min_y": 5300.15378079706, + "max_x": 4581.996280630876, + "max_y": 5300.759609449315, + "center": [ + 4581.996280630876, + 5300.456695123187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.996280630876, + 5300.15378079706 + ], + [ + 4581.996280630876, + 5300.759609449315 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554149", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4568.04522161271, + "min_y": 5293.460774294317, + "max_x": 4568.04522161271, + "max_y": 5296.703033804082, + "center": [ + 4568.04522161271, + 5295.0819040492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.04522161271, + 5296.703033804082 + ], + [ + 4568.04522161271, + 5293.460774294317 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55414A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.910947572759, + "min_y": 5298.285267732999, + "max_x": 4554.983126427285, + "max_y": 5298.504076926417, + "center": [ + 4554.447037000022, + 5298.394672329709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.910947572759, + 5298.504076926417 + ], + [ + 4554.983126427285, + 5298.285267732999 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55414B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.910947572759, + "min_y": 5297.191221765878, + "max_x": 4554.983126427285, + "max_y": 5297.410030959304, + "center": [ + 4554.447037000022, + 5297.300626362591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.910947572759, + 5297.191221765878 + ], + [ + 4554.983126427285, + 5297.410030959304 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55414C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4554.983126427285, + "min_y": 5297.410030959304, + "max_x": 4554.983126427285, + "max_y": 5298.285267732999, + "center": [ + 4554.983126427285, + 5297.847649346151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.983126427285, + 5297.410030959304 + ], + [ + 4554.983126427285, + 5298.285267732999 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55414D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.910947572759, + "min_y": 5297.191221765878, + "max_x": 4553.910947572759, + "max_y": 5298.504076926417, + "center": [ + 4553.910947572759, + 5297.847649346148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.910947572759, + 5297.191221765878 + ], + [ + 4553.910947572759, + 5298.504076926417 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55414E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4553.224514543864, + "min_y": 5298.976675755206, + "max_x": 4557.928016215516, + "max_y": 5300.0965571055995, + "center": [ + 4555.57626537969, + 5299.536616430403 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55414F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4554.983689397533, + "min_y": 5297.838172367907, + "max_x": 4557.932308855988, + "max_y": 5297.838172367907, + "center": [ + 4556.45799912676, + 5297.838172367907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.983689397533, + 5297.838172367907 + ], + [ + 4557.932308855988, + 5297.838172367907 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554150", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4585.739387457953, + "min_y": 5296.060042204098, + "max_x": 4597.834106042202, + "max_y": 5297.179923554491, + "center": [ + 4591.786746750077, + 5296.619982879294 + ] + }, + "raw_value": "N2-10710-15A-F1A-n", + "clean_value": "N2-10710-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554151", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4556.428731493477, + "min_y": 5293.696242350581, + "max_x": 4562.476090785602, + "max_y": 5294.8161237009745, + "center": [ + 4559.452411139539, + 5294.256183025778 + ] + }, + "raw_value": "NBD-10201", + "clean_value": "NBD-10201", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554152", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.611789596232, + "min_y": 5292.175443139602, + "max_x": 4561.659148888356, + "max_y": 5293.295324489995, + "center": [ + 4558.635469242294, + 5292.735383814799 + ] + }, + "raw_value": "+250mmH2O", + "clean_value": "+250mmH2O", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554153", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4555.896551431291, + "min_y": 5291.776870418791, + "max_x": 4563.086724571638, + "max_y": 5291.776870418791, + "center": [ + 4559.491638001465, + 5291.776870418791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4555.896551431291, + 5291.776870418791 + ], + [ + 4563.086724571638, + 5291.776870418791 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554154", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4563.086156875859, + "min_y": 5291.776382647998, + "max_x": 4566.80756809977, + "max_y": 5296.708494095422, + "center": [ + 4564.9468624878145, + 5294.24243837171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.086156875859, + 5291.776382647998 + ], + [ + 4566.80756809977, + 5296.708494095422 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554155", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4568.044312356247, + "min_y": 5293.45933645733, + "max_x": 4607.904944681999, + "max_y": 5293.45933645733, + "center": [ + 4587.974628519123, + 5293.45933645733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.044312356247, + 5293.45933645733 + ], + [ + 4607.904944681999, + 5293.45933645733 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554156", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4607.904944681999, + "min_y": 5293.45933645733, + "max_x": 4607.904944681999, + "max_y": 5296.093732277125, + "center": [ + 4607.904944681999, + 5294.776534367227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4607.904944681999, + 5293.45933645733 + ], + [ + 4607.904944681999, + 5296.093732277125 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554157", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4563.029966385085, + "min_y": 5319.721700692357, + "max_x": 4565.153642261338, + "max_y": 5319.721700692357, + "center": [ + 4564.091804323211, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.029966385085, + 5319.721700692357 + ], + [ + 4565.153642261338, + 5319.721700692357 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554158", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.742669897266, + "min_y": 5319.721700692357, + "max_x": 4572.519890061887, + "max_y": 5319.721700692357, + "center": [ + 4571.631279979576, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.519890061887, + 5319.721700692357 + ], + [ + 4570.742669897266, + 5319.721700692357 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554159", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.781666003808, + "min_y": 5319.69365450774, + "max_x": 4556.781666003808, + "max_y": 5326.204232682901, + "center": [ + 4556.781666003808, + 5322.94894359532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.781666003808, + 5326.204232682901 + ], + [ + 4556.781666003808, + 5319.69365450774 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.266477628814, + "min_y": 5318.58748588263, + "max_x": 4573.266477628814, + "max_y": 5320.855915502084, + "center": [ + 4573.266477628814, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.266477628814, + 5320.855915502084 + ], + [ + 4573.266477628814, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4576.90365545697, + "min_y": 5318.58748588263, + "max_x": 4576.90365545697, + "max_y": 5320.855915502084, + "center": [ + 4576.90365545697, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4576.90365545697, + 5320.855915502084 + ], + [ + 4576.90365545697, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.266477628814, + "min_y": 5318.58748588263, + "max_x": 4574.506090542043, + "max_y": 5319.360605807445, + "center": [ + 4573.886284085429, + 5318.974045845038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.266477628814, + 5318.58748588263 + ], + [ + 4574.506090542043, + 5319.360605807445 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.266477628814, + "min_y": 5320.08279557727, + "max_x": 4574.506090542043, + "max_y": 5320.855915502084, + "center": [ + 4573.886284085429, + 5320.469355539677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.266477628814, + 5320.855915502084 + ], + [ + 4574.506090542043, + 5320.08279557727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4574.402715661402, + "min_y": 5319.039349810869, + "max_x": 4575.767417424374, + "max_y": 5320.404051573841, + "center": [ + 4575.085066542888, + 5319.721700692355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.085066542888, + 5319.721700692355 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55415F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.664042543734, + "min_y": 5318.58748588263, + "max_x": 4576.90365545697, + "max_y": 5319.360605807445, + "center": [ + 4576.283849000352, + 5318.974045845038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.664042543734, + 5319.360605807445 + ], + [ + 4576.90365545697, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554160", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.664042543734, + "min_y": 5320.08279557727, + "max_x": 4576.90365545697, + "max_y": 5320.855915502084, + "center": [ + 4576.283849000352, + 5320.469355539677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.664042543734, + 5320.08279557727 + ], + [ + 4576.90365545697, + 5320.855915502084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554161", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.650243023898, + "min_y": 5318.58748588263, + "max_x": 4577.650243023898, + "max_y": 5320.855915502084, + "center": [ + 4577.650243023898, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.650243023898, + 5320.855915502084 + ], + [ + 4577.650243023898, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554162", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.519890061887, + "min_y": 5318.58748588263, + "max_x": 4572.519890061887, + "max_y": 5320.855915502084, + "center": [ + 4572.519890061887, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.519890061887, + 5320.855915502084 + ], + [ + 4572.519890061887, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554163", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.646200990006, + "min_y": 5318.58748588263, + "max_x": 4558.646200990006, + "max_y": 5320.855915502084, + "center": [ + 4558.646200990006, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.646200990006, + 5320.855915502084 + ], + [ + 4558.646200990006, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554164", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4562.283378818158, + "min_y": 5318.58748588263, + "max_x": 4562.283378818158, + "max_y": 5320.855915502084, + "center": [ + 4562.283378818158, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.283378818158, + 5320.855915502084 + ], + [ + 4562.283378818158, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554165", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.646200990006, + "min_y": 5318.58748588263, + "max_x": 4559.885813903233, + "max_y": 5319.360605807445, + "center": [ + 4559.266007446619, + 5318.974045845038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.646200990006, + 5318.58748588263 + ], + [ + 4559.885813903233, + 5319.360605807445 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554166", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.646200990006, + "min_y": 5320.08279557727, + "max_x": 4559.885813903233, + "max_y": 5320.855915502084, + "center": [ + 4559.266007446619, + 5320.469355539677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.646200990006, + 5320.855915502084 + ], + [ + 4559.885813903233, + 5320.08279557727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554167", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4559.782439022593, + "min_y": 5319.039349810869, + "max_x": 4561.147140785565, + "max_y": 5320.404051573841, + "center": [ + 4560.464789904079, + 5319.721700692355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.464789904079, + 5319.721700692355 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554168", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.043765904924, + "min_y": 5318.58748588263, + "max_x": 4562.283378818158, + "max_y": 5319.360605807445, + "center": [ + 4561.663572361541, + 5318.974045845038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.043765904924, + 5319.360605807445 + ], + [ + 4562.283378818158, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554169", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.043765904924, + "min_y": 5320.08279557727, + "max_x": 4562.283378818158, + "max_y": 5320.855915502084, + "center": [ + 4561.663572361541, + 5320.469355539677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.043765904924, + 5320.08279557727 + ], + [ + 4562.283378818158, + 5320.855915502084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4563.029966385085, + "min_y": 5318.58748588263, + "max_x": 4563.029966385085, + "max_y": 5320.855915502084, + "center": [ + 4563.029966385085, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.029966385085, + 5320.855915502084 + ], + [ + 4563.029966385085, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4557.899613423076, + "min_y": 5318.58748588263, + "max_x": 4557.899613423076, + "max_y": 5320.855915502084, + "center": [ + 4557.899613423076, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4557.899613423076, + 5320.855915502084 + ], + [ + 4557.899613423076, + 5318.58748588263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.781666003808, + "min_y": 5326.213165376379, + "max_x": 4565.153642261338, + "max_y": 5326.213165376379, + "center": [ + 4560.967654132573, + 5326.213165376379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.781666003808, + 5326.213165376379 + ], + [ + 4565.153642261338, + 5326.213165376379 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.283995223349, + "min_y": 5326.299045523666, + "max_x": 4578.65597148088, + "max_y": 5326.299045523666, + "center": [ + 4574.4699833521145, + 5326.299045523666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.283995223349, + 5326.299045523666 + ], + [ + 4578.65597148088, + 5326.299045523666 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.900229828266, + "min_y": 5325.121890640295, + "max_x": 4565.900229828266, + "max_y": 5327.390320259748, + "center": [ + 4565.900229828266, + 5326.256105450021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.900229828266, + 5325.121890640295 + ], + [ + 4565.900229828266, + 5327.390320259748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55416F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.537407656421, + "min_y": 5325.121890640295, + "max_x": 4569.537407656421, + "max_y": 5327.390320259748, + "center": [ + 4569.537407656421, + 5326.256105450021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.537407656421, + 5325.121890640295 + ], + [ + 4569.537407656421, + 5327.390320259748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554170", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.900229828266, + "min_y": 5326.617200334934, + "max_x": 4567.139842741495, + "max_y": 5327.390320259748, + "center": [ + 4566.520036284881, + 5327.003760297341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.900229828266, + 5327.390320259748 + ], + [ + 4567.139842741495, + 5326.617200334934 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554171", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.900229828266, + "min_y": 5325.121890640295, + "max_x": 4567.139842741495, + "max_y": 5325.895010565109, + "center": [ + 4566.520036284881, + 5325.5084506027015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.900229828266, + 5325.121890640295 + ], + [ + 4567.139842741495, + 5325.895010565109 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554172", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.036467860853, + "min_y": 5325.573754568537, + "max_x": 4568.401169623825, + "max_y": 5326.938456331509, + "center": [ + 4567.718818742339, + 5326.256105450023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.718818742339, + 5326.256105450023 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554173", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.297794743187, + "min_y": 5326.617200334934, + "max_x": 4569.537407656421, + "max_y": 5327.390320259748, + "center": [ + 4568.917601199804, + 5327.003760297341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.297794743187, + 5326.617200334934 + ], + [ + 4569.537407656421, + 5327.390320259748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554174", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.297794743187, + "min_y": 5325.121890640295, + "max_x": 4569.537407656421, + "max_y": 5325.895010565109, + "center": [ + 4568.917601199804, + 5325.5084506027015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.297794743187, + 5325.895010565109 + ], + [ + 4569.537407656421, + 5325.121890640295 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554175", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4570.283995223349, + "min_y": 5325.121890640295, + "max_x": 4570.283995223349, + "max_y": 5327.390320259748, + "center": [ + 4570.283995223349, + 5326.256105450021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.283995223349, + 5325.121890640295 + ], + [ + 4570.283995223349, + 5327.390320259748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554176", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.153642261338, + "min_y": 5325.121890640295, + "max_x": 4565.153642261338, + "max_y": 5327.390320259748, + "center": [ + 4565.153642261338, + 5326.256105450021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.153642261338, + 5325.121890640295 + ], + [ + 4565.153642261338, + 5327.390320259748 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554177", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4578.65597148088, + "min_y": 5319.772154329868, + "max_x": 4578.65597148088, + "max_y": 5326.30112940321, + "center": [ + 4578.65597148088, + 5323.036641866539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4578.65597148088, + 5326.30112940321 + ], + [ + 4578.65597148088, + 5319.772154329868 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554178", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.742669897266, + "min_y": 5318.965829159716, + "max_x": 4570.742669897266, + "max_y": 5320.477572224998, + "center": [ + 4570.742669897266, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.742669897266, + 5320.477572224998 + ], + [ + 4570.742669897266, + 5318.965829159716 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554179", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.44032128421, + "min_y": 5318.965829159716, + "max_x": 4570.44032128421, + "max_y": 5320.477572224998, + "center": [ + 4570.44032128421, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.44032128421, + 5320.477572224998 + ], + [ + 4570.44032128421, + 5318.965829159716 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.814348780343, + "min_y": 5318.587893393395, + "max_x": 4569.081963378265, + "max_y": 5318.587893393395, + "center": [ + 4567.948156079304, + 5318.587893393395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.814348780343, + 5318.587893393395 + ], + [ + 4569.081963378265, + 5318.587893393395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.081963378265, + "min_y": 5318.587893393395, + "max_x": 4569.081963378265, + "max_y": 5320.85550799132, + "center": [ + 4569.081963378265, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.081963378265, + 5318.587893393395 + ], + [ + 4569.081963378265, + 5320.85550799132 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.814348780343, + "min_y": 5320.85550799132, + "max_x": 4569.081963378265, + "max_y": 5320.85550799132, + "center": [ + 4567.948156079304, + 5320.85550799132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.081963378265, + 5320.85550799132 + ], + [ + 4566.814348780343, + 5320.85550799132 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.814348780343, + "min_y": 5318.587893393395, + "max_x": 4566.814348780343, + "max_y": 5320.85550799132, + "center": [ + 4566.814348780343, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.814348780343, + 5320.85550799132 + ], + [ + 4566.814348780343, + 5318.587893393395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.081963378265, + "min_y": 5319.721700692357, + "max_x": 4570.44032128421, + "max_y": 5319.721700692357, + "center": [ + 4569.761142331237, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.44032128421, + 5319.721700692357 + ], + [ + 4569.081963378265, + 5319.721700692357 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55417F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.201910477724, + "min_y": 5322.399074692853, + "max_x": 4570.689537804699, + "max_y": 5322.399074692853, + "center": [ + 4567.945724141211, + 5322.399074692853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.201910477724, + 5322.399074692853 + ], + [ + 4570.689537804699, + 5322.399074692853 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554180", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.689537804699, + "min_y": 5322.851777975375, + "max_x": 4571.142241087222, + "max_y": 5323.304481257896, + "center": [ + 4570.915889445961, + 5323.078129616635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.142241087222, + 5322.851777975375 + ], + [ + 4570.689537804699, + 5323.304481257896 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554181", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.201910477724, + "min_y": 5323.304481257896, + "max_x": 4570.689537804699, + "max_y": 5323.304481257896, + "center": [ + 4567.945724141211, + 5323.304481257896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.689537804699, + 5323.304481257896 + ], + [ + 4565.201910477724, + 5323.304481257896 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554182", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.749207195205, + "min_y": 5322.399074692853, + "max_x": 4565.201910477724, + "max_y": 5322.851777975375, + "center": [ + 4564.975558836464, + 5322.625426334114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.749207195205, + 5322.851777975375 + ], + [ + 4565.201910477724, + 5322.399074692853 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554183", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.689537804699, + "min_y": 5322.399074692853, + "max_x": 4571.142241087222, + "max_y": 5322.851777975375, + "center": [ + 4570.915889445961, + 5322.625426334114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.142241087222, + 5322.851777975375 + ], + [ + 4570.689537804699, + 5322.399074692853 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554184", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.749207195202, + "min_y": 5322.851777975376, + "max_x": 4565.201910477724, + "max_y": 5323.304481257896, + "center": [ + 4564.975558836462, + 5323.078129616636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.749207195202, + 5322.851777975376 + ], + [ + 4565.201910477724, + 5323.304481257896 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554185", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.085229929491, + "min_y": 5322.851777975375, + "max_x": 4571.806218352929, + "max_y": 5322.851777975375, + "center": [ + 4567.94572414121, + 5322.851777975375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.085229929491, + 5322.851777975375 + ], + [ + 4571.806218352929, + 5322.851777975375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554186", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.153642261338, + "min_y": 5318.965829159716, + "max_x": 4565.153642261338, + "max_y": 5320.477572224998, + "center": [ + 4565.153642261338, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.153642261338, + 5320.477572224998 + ], + [ + 4565.153642261338, + 5318.965829159716 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554187", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.455990874396, + "min_y": 5318.965829159716, + "max_x": 4565.455990874396, + "max_y": 5320.477572224998, + "center": [ + 4565.455990874396, + 5319.7217006923565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.455990874396, + 5320.477572224998 + ], + [ + 4565.455990874396, + 5318.965829159716 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554188", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.455990874396, + "min_y": 5319.721700692357, + "max_x": 4566.814348780343, + "max_y": 5319.721700692357, + "center": [ + 4566.135169827369, + 5319.721700692357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.455990874396, + 5319.721700692357 + ], + [ + 4566.814348780343, + 5319.721700692357 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554189", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4567.948156079302, + "min_y": 5320.85550799132, + "max_x": 4567.948156079302, + "max_y": 5322.399074692853, + "center": [ + 4567.948156079302, + 5321.627291342087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.948156079302, + 5322.399074692853 + ], + [ + 4567.948156079302, + 5320.85550799132 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55418A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4551.442157116009, + "min_y": 5319.71494702138, + "max_x": 4553.810767370651, + "max_y": 5319.71494702138, + "center": [ + 4552.62646224333, + 5319.71494702138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4551.442157116009, + 5319.71494702138 + ], + [ + 4553.810767370651, + 5319.71494702138 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55418B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4577.649274269881, + "min_y": 5319.722332796722, + "max_x": 4603.70789150518, + "max_y": 5319.722332796722, + "center": [ + 4590.678582887531, + 5319.722332796722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.649274269881, + 5319.722332796722 + ], + [ + 4603.70789150518, + 5319.722332796722 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55418C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.145032260239, + "min_y": 5319.712743993588, + "max_x": 4582.145032260239, + "max_y": 5320.343166257851, + "center": [ + 4582.145032260239, + 5320.02795512572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.145032260239, + 5319.712743993588 + ], + [ + 4582.145032260239, + 5320.343166257851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55418D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4581.822244534295, + "min_y": 5320.857740721819, + "max_x": 4582.467819986182, + "max_y": 5321.503316173706, + "center": [ + 4582.145032260239, + 5321.180528447762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.145032260239, + 5321.180528447762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55418E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.640761773996, + "min_y": 5320.3383112698, + "max_x": 4581.979215662963, + "max_y": 5320.903586626994, + "center": [ + 4581.80998871848, + 5320.620948948397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.979215662963, + 5320.903586626994 + ], + [ + 4581.640761773996, + 5320.3383112698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55418F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.640761773996, + "min_y": 5320.3383112698, + "max_x": 4582.649302746485, + "max_y": 5320.3383112698, + "center": [ + 4582.14503226024, + 5320.3383112698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.640761773996, + 5320.3383112698 + ], + [ + 4582.649302746485, + 5320.3383112698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554190", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.310848857518, + "min_y": 5320.3383112698, + "max_x": 4582.649302746485, + "max_y": 5320.903586626994, + "center": [ + 4582.480075802001, + 5320.620948948397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.649302746485, + 5320.3383112698 + ], + [ + 4582.310848857518, + 5320.903586626994 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554191", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.640761773996, + "min_y": 5321.457470268521, + "max_x": 4581.979215662963, + "max_y": 5322.022745625723, + "center": [ + 4581.80998871848, + 5321.740107947122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.979215662963, + 5321.457470268521 + ], + [ + 4581.640761773996, + 5322.022745625723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554192", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.640761773996, + "min_y": 5322.022745625723, + "max_x": 4582.649302746485, + "max_y": 5322.022745625723, + "center": [ + 4582.14503226024, + 5322.022745625723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.640761773996, + 5322.022745625723 + ], + [ + 4582.649302746485, + 5322.022745625723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.310848857518, + "min_y": 5321.457470268521, + "max_x": 4582.649302746485, + "max_y": 5322.022745625723, + "center": [ + 4582.480075802001, + 5321.740107947122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.649302746485, + 5322.022745625723 + ], + [ + 4582.310848857518, + 5321.457470268521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.134329017934, + "min_y": 5322.03861735625, + "max_x": 4582.134329017934, + "max_y": 5322.644446008505, + "center": [ + 4582.134329017934, + 5322.3415316823775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.134329017934, + 5322.03861735625 + ], + [ + 4582.134329017934, + 5322.644446008505 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.944925221005, + "min_y": 5315.345610853507, + "max_x": 4567.944925221005, + "max_y": 5318.587870363272, + "center": [ + 4567.944925221005, + 5316.96674060839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.944925221005, + 5318.587870363272 + ], + [ + 4567.944925221005, + 5315.345610853507 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554196", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.810651181053, + "min_y": 5320.170104292189, + "max_x": 4554.882830035579, + "max_y": 5320.388913485607, + "center": [ + 4554.346740608316, + 5320.279508888898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.810651181053, + 5320.388913485607 + ], + [ + 4554.882830035579, + 5320.170104292189 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554197", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.810651181053, + "min_y": 5319.076058325069, + "max_x": 4554.882830035579, + "max_y": 5319.294867518494, + "center": [ + 4554.346740608316, + 5319.185462921781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.810651181053, + 5319.076058325069 + ], + [ + 4554.882830035579, + 5319.294867518494 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4554.882830035579, + "min_y": 5319.294867518494, + "max_x": 4554.882830035579, + "max_y": 5320.170104292189, + "center": [ + 4554.882830035579, + 5319.7324859053415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.882830035579, + 5319.294867518494 + ], + [ + 4554.882830035579, + 5320.170104292189 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.810651181053, + "min_y": 5319.076058325069, + "max_x": 4553.810651181053, + "max_y": 5320.388913485607, + "center": [ + 4553.810651181053, + 5319.732485905339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.810651181053, + 5319.076058325069 + ], + [ + 4553.810651181053, + 5320.388913485607 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55419A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4554.883393005828, + "min_y": 5319.723008927097, + "max_x": 4557.832012464284, + "max_y": 5319.723008927097, + "center": [ + 4556.357702735057, + 5319.723008927097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.883393005828, + 5319.723008927097 + ], + [ + 4557.832012464284, + 5319.723008927097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55419B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4585.639091066248, + "min_y": 5317.966132415416, + "max_x": 4597.733809650496, + "max_y": 5319.086013765809, + "center": [ + 4591.686450358372, + 5318.526073090612 + ] + }, + "raw_value": "N2-10711-15A-F1A-n", + "clean_value": "N2-10711-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55419C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4556.328435101772, + "min_y": 5315.581078909771, + "max_x": 4562.375794393896, + "max_y": 5316.700960260165, + "center": [ + 4559.352114747834, + 5316.141019584968 + ] + }, + "raw_value": "NBD-10221", + "clean_value": "NBD-10221", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55419D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.617833467553, + "min_y": 5314.060279698793, + "max_x": 4561.665192759678, + "max_y": 5315.180161049187, + "center": [ + 4558.6415131136155, + 5314.62022037399 + ] + }, + "raw_value": "+250mmH2O", + "clean_value": "+250mmH2O", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55419E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4555.791141140288, + "min_y": 5313.654887210688, + "max_x": 4562.981314280633, + "max_y": 5313.654887210688, + "center": [ + 4559.386227710461, + 5313.654887210688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4555.791141140288, + 5313.654887210688 + ], + [ + 4562.981314280633, + 5313.654887210688 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55419F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4562.985860484153, + "min_y": 5313.661219207188, + "max_x": 4566.707271708065, + "max_y": 5318.593330654612, + "center": [ + 4564.846566096108, + 5316.1272749309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.985860484153, + 5313.661219207188 + ], + [ + 4566.707271708065, + 5318.593330654612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.944015964541, + "min_y": 5315.34417301652, + "max_x": 4607.804648290294, + "max_y": 5315.34417301652, + "center": [ + 4587.874332127418, + 5315.34417301652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.944015964541, + 5315.34417301652 + ], + [ + 4607.804648290294, + 5315.34417301652 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5541A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4607.804648290294, + "min_y": 5315.34417301652, + "max_x": 4607.804648290294, + "max_y": 5317.978568836316, + "center": [ + 4607.804648290294, + 5316.661370926418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4607.804648290294, + 5315.34417301652 + ], + [ + 4607.804648290294, + 5317.978568836316 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5541A2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4563.022854105667, + "min_y": 5341.786255612589, + "max_x": 4565.146529981921, + "max_y": 5341.786255612589, + "center": [ + 4564.084692043794, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.022854105667, + 5341.786255612589 + ], + [ + 4565.146529981921, + 5341.786255612589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.735557617848, + "min_y": 5341.786255612589, + "max_x": 4572.512777782469, + "max_y": 5341.786255612589, + "center": [ + 4571.624167700158, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.512777782469, + 5341.786255612589 + ], + [ + 4570.735557617848, + 5341.786255612589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.77455372439, + "min_y": 5341.758209427972, + "max_x": 4556.77455372439, + "max_y": 5348.268787603132, + "center": [ + 4556.77455372439, + 5345.013498515553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.77455372439, + 5348.268787603132 + ], + [ + 4556.77455372439, + 5341.758209427972 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.259365349397, + "min_y": 5340.652040802862, + "max_x": 4573.259365349397, + "max_y": 5342.920470422316, + "center": [ + 4573.259365349397, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.259365349397, + 5342.920470422316 + ], + [ + 4573.259365349397, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4576.896543177553, + "min_y": 5340.652040802862, + "max_x": 4576.896543177553, + "max_y": 5342.920470422316, + "center": [ + 4576.896543177553, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4576.896543177553, + 5342.920470422316 + ], + [ + 4576.896543177553, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.259365349397, + "min_y": 5340.652040802862, + "max_x": 4574.498978262625, + "max_y": 5341.425160727677, + "center": [ + 4573.879171806011, + 5341.03860076527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.259365349397, + 5340.652040802862 + ], + [ + 4574.498978262625, + 5341.425160727677 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.259365349397, + "min_y": 5342.147350497501, + "max_x": 4574.498978262625, + "max_y": 5342.920470422316, + "center": [ + 4573.879171806011, + 5342.533910459908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.259365349397, + 5342.920470422316 + ], + [ + 4574.498978262625, + 5342.147350497501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541A9", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4574.395603381984, + "min_y": 5341.1039047311015, + "max_x": 4575.760305144956, + "max_y": 5342.468606494073, + "center": [ + 4575.07795426347, + 5341.786255612587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.07795426347, + 5341.786255612587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.656930264316, + "min_y": 5340.652040802862, + "max_x": 4576.896543177553, + "max_y": 5341.425160727677, + "center": [ + 4576.276736720934, + 5341.03860076527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.656930264316, + 5341.425160727677 + ], + [ + 4576.896543177553, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.656930264316, + "min_y": 5342.147350497501, + "max_x": 4576.896543177553, + "max_y": 5342.920470422316, + "center": [ + 4576.276736720934, + 5342.533910459908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.656930264316, + 5342.147350497501 + ], + [ + 4576.896543177553, + 5342.920470422316 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.64313074448, + "min_y": 5340.652040802862, + "max_x": 4577.64313074448, + "max_y": 5342.920470422316, + "center": [ + 4577.64313074448, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.64313074448, + 5342.920470422316 + ], + [ + 4577.64313074448, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.512777782469, + "min_y": 5340.652040802862, + "max_x": 4572.512777782469, + "max_y": 5342.920470422316, + "center": [ + 4572.512777782469, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.512777782469, + 5342.920470422316 + ], + [ + 4572.512777782469, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.639088710588, + "min_y": 5340.652040802862, + "max_x": 4558.639088710588, + "max_y": 5342.920470422316, + "center": [ + 4558.639088710588, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.639088710588, + 5342.920470422316 + ], + [ + 4558.639088710588, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541AF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4562.27626653874, + "min_y": 5340.652040802862, + "max_x": 4562.27626653874, + "max_y": 5342.920470422316, + "center": [ + 4562.27626653874, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.27626653874, + 5342.920470422316 + ], + [ + 4562.27626653874, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.639088710588, + "min_y": 5340.652040802862, + "max_x": 4559.878701623815, + "max_y": 5341.425160727677, + "center": [ + 4559.258895167201, + 5341.03860076527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.639088710588, + 5340.652040802862 + ], + [ + 4559.878701623815, + 5341.425160727677 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.639088710588, + "min_y": 5342.147350497501, + "max_x": 4559.878701623815, + "max_y": 5342.920470422316, + "center": [ + 4559.258895167201, + 5342.533910459908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.639088710588, + 5342.920470422316 + ], + [ + 4559.878701623815, + 5342.147350497501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B2", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4559.775326743175, + "min_y": 5341.1039047311015, + "max_x": 4561.140028506147, + "max_y": 5342.468606494073, + "center": [ + 4560.457677624661, + 5341.786255612587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.457677624661, + 5341.786255612587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.036653625506, + "min_y": 5340.652040802862, + "max_x": 4562.27626653874, + "max_y": 5341.425160727677, + "center": [ + 4561.656460082123, + 5341.03860076527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.036653625506, + 5341.425160727677 + ], + [ + 4562.27626653874, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.036653625506, + "min_y": 5342.147350497501, + "max_x": 4562.27626653874, + "max_y": 5342.920470422316, + "center": [ + 4561.656460082123, + 5342.533910459908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.036653625506, + 5342.147350497501 + ], + [ + 4562.27626653874, + 5342.920470422316 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4563.022854105667, + "min_y": 5340.652040802862, + "max_x": 4563.022854105667, + "max_y": 5342.920470422316, + "center": [ + 4563.022854105667, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.022854105667, + 5342.920470422316 + ], + [ + 4563.022854105667, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4557.892501143658, + "min_y": 5340.652040802862, + "max_x": 4557.892501143658, + "max_y": 5342.920470422316, + "center": [ + 4557.892501143658, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4557.892501143658, + 5342.920470422316 + ], + [ + 4557.892501143658, + 5340.652040802862 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.77455372439, + "min_y": 5348.277720296611, + "max_x": 4565.146529981921, + "max_y": 5348.277720296611, + "center": [ + 4560.9605418531555, + 5348.277720296611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.77455372439, + 5348.277720296611 + ], + [ + 4565.146529981921, + 5348.277720296611 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.276882943931, + "min_y": 5348.363600443898, + "max_x": 4578.648859201463, + "max_y": 5348.363600443898, + "center": [ + 4574.462871072697, + 5348.363600443898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.276882943931, + 5348.363600443898 + ], + [ + 4578.648859201463, + 5348.363600443898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541B9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.893117548848, + "min_y": 5347.186445560527, + "max_x": 4565.893117548848, + "max_y": 5349.45487517998, + "center": [ + 4565.893117548848, + 5348.320660370254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.893117548848, + 5347.186445560527 + ], + [ + 4565.893117548848, + 5349.45487517998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.530295377004, + "min_y": 5347.186445560527, + "max_x": 4569.530295377004, + "max_y": 5349.45487517998, + "center": [ + 4569.530295377004, + 5348.320660370254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.530295377004, + 5347.186445560527 + ], + [ + 4569.530295377004, + 5349.45487517998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.893117548848, + "min_y": 5348.681755255165, + "max_x": 4567.132730462077, + "max_y": 5349.45487517998, + "center": [ + 4566.512924005463, + 5349.0683152175725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.893117548848, + 5349.45487517998 + ], + [ + 4567.132730462077, + 5348.681755255165 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.893117548848, + "min_y": 5347.186445560527, + "max_x": 4567.132730462077, + "max_y": 5347.959565485341, + "center": [ + 4566.512924005463, + 5347.573005522934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.893117548848, + 5347.186445560527 + ], + [ + 4567.132730462077, + 5347.959565485341 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BD", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.029355581436, + "min_y": 5347.638309488769, + "max_x": 4568.394057344408, + "max_y": 5349.003011251741, + "center": [ + 4567.711706462922, + 5348.320660370255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.711706462922, + 5348.320660370255 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.290682463768, + "min_y": 5348.681755255165, + "max_x": 4569.530295377004, + "max_y": 5349.45487517998, + "center": [ + 4568.910488920386, + 5349.0683152175725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.290682463768, + 5348.681755255165 + ], + [ + 4569.530295377004, + 5349.45487517998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541BF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.290682463768, + "min_y": 5347.186445560527, + "max_x": 4569.530295377004, + "max_y": 5347.959565485341, + "center": [ + 4568.910488920386, + 5347.573005522934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.290682463768, + 5347.959565485341 + ], + [ + 4569.530295377004, + 5347.186445560527 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4570.276882943931, + "min_y": 5347.186445560527, + "max_x": 4570.276882943931, + "max_y": 5349.45487517998, + "center": [ + 4570.276882943931, + 5348.320660370254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.276882943931, + 5347.186445560527 + ], + [ + 4570.276882943931, + 5349.45487517998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.146529981921, + "min_y": 5347.186445560527, + "max_x": 4565.146529981921, + "max_y": 5349.45487517998, + "center": [ + 4565.146529981921, + 5348.320660370254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.146529981921, + 5347.186445560527 + ], + [ + 4565.146529981921, + 5349.45487517998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4578.648859201463, + "min_y": 5341.8367092501, + "max_x": 4578.648859201463, + "max_y": 5348.365684323442, + "center": [ + 4578.648859201463, + 5345.101196786771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4578.648859201463, + 5348.365684323442 + ], + [ + 4578.648859201463, + 5341.8367092501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.735557617848, + "min_y": 5341.030384079948, + "max_x": 4570.735557617848, + "max_y": 5342.54212714523, + "center": [ + 4570.735557617848, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.735557617848, + 5342.54212714523 + ], + [ + 4570.735557617848, + 5341.030384079948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.433209004792, + "min_y": 5341.030384079948, + "max_x": 4570.433209004792, + "max_y": 5342.54212714523, + "center": [ + 4570.433209004792, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.433209004792, + 5342.54212714523 + ], + [ + 4570.433209004792, + 5341.030384079948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.807236500925, + "min_y": 5340.652448313626, + "max_x": 4569.074851098847, + "max_y": 5340.652448313626, + "center": [ + 4567.941043799886, + 5340.652448313626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.807236500925, + 5340.652448313626 + ], + [ + 4569.074851098847, + 5340.652448313626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.074851098847, + "min_y": 5340.652448313626, + "max_x": 4569.074851098847, + "max_y": 5342.920062911551, + "center": [ + 4569.074851098847, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.074851098847, + 5340.652448313626 + ], + [ + 4569.074851098847, + 5342.920062911551 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.807236500925, + "min_y": 5342.920062911551, + "max_x": 4569.074851098847, + "max_y": 5342.920062911551, + "center": [ + 4567.941043799886, + 5342.920062911551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.074851098847, + 5342.920062911551 + ], + [ + 4566.807236500925, + 5342.920062911551 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.807236500925, + "min_y": 5340.652448313626, + "max_x": 4566.807236500925, + "max_y": 5342.920062911551, + "center": [ + 4566.807236500925, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.807236500925, + 5342.920062911551 + ], + [ + 4566.807236500925, + 5340.652448313626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541C9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.074851098847, + "min_y": 5341.786255612589, + "max_x": 4570.433209004792, + "max_y": 5341.786255612589, + "center": [ + 4569.754030051819, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.433209004792, + 5341.786255612589 + ], + [ + 4569.074851098847, + 5341.786255612589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.194798198307, + "min_y": 5344.463629613085, + "max_x": 4570.682425525281, + "max_y": 5344.463629613085, + "center": [ + 4567.938611861794, + 5344.463629613085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.194798198307, + 5344.463629613085 + ], + [ + 4570.682425525281, + 5344.463629613085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.682425525281, + "min_y": 5344.916332895607, + "max_x": 4571.135128807804, + "max_y": 5345.369036178128, + "center": [ + 4570.908777166543, + 5345.142684536868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.135128807804, + 5344.916332895607 + ], + [ + 4570.682425525281, + 5345.369036178128 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.194798198307, + "min_y": 5345.369036178128, + "max_x": 4570.682425525281, + "max_y": 5345.369036178128, + "center": [ + 4567.938611861794, + 5345.369036178128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.682425525281, + 5345.369036178128 + ], + [ + 4565.194798198307, + 5345.369036178128 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.742094915787, + "min_y": 5344.463629613085, + "max_x": 4565.194798198307, + "max_y": 5344.916332895607, + "center": [ + 4564.968446557046, + 5344.689981254346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.742094915787, + 5344.916332895607 + ], + [ + 4565.194798198307, + 5344.463629613085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.682425525281, + "min_y": 5344.463629613085, + "max_x": 4571.135128807804, + "max_y": 5344.916332895607, + "center": [ + 4570.908777166543, + 5344.689981254346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.135128807804, + 5344.916332895607 + ], + [ + 4570.682425525281, + 5344.463629613085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541CF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.742094915784, + "min_y": 5344.916332895607, + "max_x": 4565.194798198307, + "max_y": 5345.369036178128, + "center": [ + 4564.968446557045, + 5345.142684536868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.742094915784, + 5344.916332895607 + ], + [ + 4565.194798198307, + 5345.369036178128 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.078117650073, + "min_y": 5344.916332895607, + "max_x": 4571.799106073512, + "max_y": 5344.916332895607, + "center": [ + 4567.938611861793, + 5344.916332895607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.078117650073, + 5344.916332895607 + ], + [ + 4571.799106073512, + 5344.916332895607 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.146529981921, + "min_y": 5341.030384079948, + "max_x": 4565.146529981921, + "max_y": 5342.54212714523, + "center": [ + 4565.146529981921, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.146529981921, + 5342.54212714523 + ], + [ + 4565.146529981921, + 5341.030384079948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.448878594978, + "min_y": 5341.030384079948, + "max_x": 4565.448878594978, + "max_y": 5342.54212714523, + "center": [ + 4565.448878594978, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.448878594978, + 5342.54212714523 + ], + [ + 4565.448878594978, + 5341.030384079948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.448878594978, + "min_y": 5341.786255612589, + "max_x": 4566.807236500925, + "max_y": 5341.786255612589, + "center": [ + 4566.128057547951, + 5341.786255612589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.448878594978, + 5341.786255612589 + ], + [ + 4566.807236500925, + 5341.786255612589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4567.941043799884, + "min_y": 5342.920062911551, + "max_x": 4567.941043799884, + "max_y": 5344.463629613085, + "center": [ + 4567.941043799884, + 5343.691846262318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.941043799884, + 5344.463629613085 + ], + [ + 4567.941043799884, + 5342.920062911551 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4551.435044836593, + "min_y": 5341.767548117162, + "max_x": 4553.803655091234, + "max_y": 5341.767548117162, + "center": [ + 4552.619349963914, + 5341.767548117162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4551.435044836593, + 5341.767548117162 + ], + [ + 4553.803655091234, + 5341.767548117162 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4577.642161990465, + "min_y": 5341.786887716953, + "max_x": 4603.700779225764, + "max_y": 5341.786887716953, + "center": [ + 4590.671470608115, + 5341.786887716953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.642161990465, + 5341.786887716953 + ], + [ + 4603.700779225764, + 5341.786887716953 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.350524640459, + "min_y": 5341.77729891382, + "max_x": 4582.350524640459, + "max_y": 5342.407721178083, + "center": [ + 4582.350524640459, + 5342.092510045952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.350524640459, + 5341.77729891382 + ], + [ + 4582.350524640459, + 5342.407721178083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541D8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4582.027736914516, + "min_y": 5342.922295642049, + "max_x": 4582.673312366403, + "max_y": 5343.5678710939355, + "center": [ + 4582.350524640459, + 5343.245083367992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.350524640459, + 5343.245083367992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.846254154217, + "min_y": 5342.402866190032, + "max_x": 4582.184708043183, + "max_y": 5342.968141547226, + "center": [ + 4582.0154810987, + 5342.685503868629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.184708043183, + 5342.968141547226 + ], + [ + 4581.846254154217, + 5342.402866190032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.846254154217, + "min_y": 5342.402866190032, + "max_x": 4582.854795126706, + "max_y": 5342.402866190032, + "center": [ + 4582.350524640462, + 5342.402866190032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.846254154217, + 5342.402866190032 + ], + [ + 4582.854795126706, + 5342.402866190032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.516341237741, + "min_y": 5342.402866190032, + "max_x": 4582.854795126706, + "max_y": 5342.968141547226, + "center": [ + 4582.6855681822235, + 5342.685503868629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.854795126706, + 5342.402866190032 + ], + [ + 4582.516341237741, + 5342.968141547226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.846254154217, + "min_y": 5343.522025188753, + "max_x": 4582.184708043183, + "max_y": 5344.087300545954, + "center": [ + 4582.0154810987, + 5343.804662867354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.184708043183, + 5343.522025188753 + ], + [ + 4581.846254154217, + 5344.087300545954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.846254154217, + "min_y": 5344.087300545954, + "max_x": 4582.854795126706, + "max_y": 5344.087300545954, + "center": [ + 4582.350524640462, + 5344.087300545954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.846254154217, + 5344.087300545954 + ], + [ + 4582.854795126706, + 5344.087300545954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.516341237741, + "min_y": 5343.522025188753, + "max_x": 4582.854795126706, + "max_y": 5344.087300545954, + "center": [ + 4582.6855681822235, + 5343.804662867354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.854795126706, + 5344.087300545954 + ], + [ + 4582.516341237741, + 5343.522025188753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5541DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.339821398156, + "min_y": 5344.103172276482, + "max_x": 4582.339821398156, + "max_y": 5344.709000928737, + "center": [ + 4582.339821398156, + 5344.406086602609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.339821398156, + 5344.103172276482 + ], + [ + 4582.339821398156, + 5344.709000928737 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5541E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.937812941587, + "min_y": 5337.410165773739, + "max_x": 4567.937812941587, + "max_y": 5340.652425283503, + "center": [ + 4567.937812941587, + 5339.031295528621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.937812941587, + 5340.652425283503 + ], + [ + 4567.937812941587, + 5337.410165773739 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5541E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.803538901637, + "min_y": 5342.234659212421, + "max_x": 4554.875717756163, + "max_y": 5342.453468405839, + "center": [ + 4554.3396283289, + 5342.344063809131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.803538901637, + 5342.453468405839 + ], + [ + 4554.875717756163, + 5342.234659212421 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5541E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.803538901637, + "min_y": 5341.1406132453, + "max_x": 4554.875717756163, + "max_y": 5341.359422438726, + "center": [ + 4554.3396283289, + 5341.250017842013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.803538901637, + 5341.1406132453 + ], + [ + 4554.875717756163, + 5341.359422438726 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5541E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4554.875717756163, + "min_y": 5341.359422438726, + "max_x": 4554.875717756163, + "max_y": 5342.234659212421, + "center": [ + 4554.875717756163, + 5341.797040825573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.875717756163, + 5341.359422438726 + ], + [ + 4554.875717756163, + 5342.234659212421 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5541E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.803538901637, + "min_y": 5341.1406132453, + "max_x": 4553.803538901637, + "max_y": 5342.453468405839, + "center": [ + 4553.803538901637, + 5341.79704082557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.803538901637, + 5341.1406132453 + ], + [ + 4553.803538901637, + 5342.453468405839 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5541E5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4554.876280726412, + "min_y": 5341.787563847329, + "max_x": 4557.824900184865, + "max_y": 5341.787563847329, + "center": [ + 4556.350590455639, + 5341.787563847329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.876280726412, + 5341.787563847329 + ], + [ + 4557.824900184865, + 5341.787563847329 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541E6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4585.631978786831, + "min_y": 5339.627208003661, + "max_x": 4597.726697371079, + "max_y": 5340.747089354054, + "center": [ + 4591.679338078955, + 5340.187148678857 + ] + }, + "raw_value": "N2-10712-15A-F1A-n", + "clean_value": "N2-10712-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541E7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4556.321322822356, + "min_y": 5337.645633830003, + "max_x": 4562.36868211448, + "max_y": 5338.7655151803965, + "center": [ + 4559.345002468418, + 5338.2055745052 + ] + }, + "raw_value": "NBD-10101", + "clean_value": "NBD-10101", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5541E8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.610721188135, + "min_y": 5336.124834619024, + "max_x": 4561.65808048026, + "max_y": 5337.2447159694175, + "center": [ + 4558.634400834198, + 5336.684775294221 + ] + }, + "raw_value": "+250mmH2O", + "clean_value": "+250mmH2O", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5541E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4555.784028860869, + "min_y": 5335.71944213092, + "max_x": 4562.974202001217, + "max_y": 5335.71944213092, + "center": [ + 4559.379115431043, + 5335.71944213092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4555.784028860869, + 5335.71944213092 + ], + [ + 4562.974202001217, + 5335.71944213092 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4562.978748204736, + "min_y": 5335.725774127419, + "max_x": 4566.700159428647, + "max_y": 5340.657885574844, + "center": [ + 4564.839453816691, + 5338.191829851132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.978748204736, + 5335.725774127419 + ], + [ + 4566.700159428647, + 5340.657885574844 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4607.797536010876, + "min_y": 5337.408727936752, + "max_x": 4607.797536010876, + "max_y": 5340.043123756548, + "center": [ + 4607.797536010876, + 5338.72592584665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4607.797536010876, + 5337.408727936752 + ], + [ + 4607.797536010876, + 5340.043123756548 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5541EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.937812979442, + "min_y": 5337.410165533694, + "max_x": 4607.798445305194, + "max_y": 5337.410165533694, + "center": [ + 4587.868129142318, + 5337.410165533694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.937812979442, + 5337.410165533694 + ], + [ + 4607.798445305194, + 5337.410165533694 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5541ED", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4563.00634223984, + "min_y": 5364.482430764039, + "max_x": 4565.130018116093, + "max_y": 5364.482430764039, + "center": [ + 4564.0681801779665, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.00634223984, + 5364.482430764039 + ], + [ + 4565.130018116093, + 5364.482430764039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541EE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.719045752021, + "min_y": 5364.482430764039, + "max_x": 4572.496265916641, + "max_y": 5364.482430764039, + "center": [ + 4571.607655834331, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.496265916641, + 5364.482430764039 + ], + [ + 4570.719045752021, + 5364.482430764039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541EF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.758041858562, + "min_y": 5364.454384579421, + "max_x": 4556.758041858562, + "max_y": 5370.964962754582, + "center": [ + 4556.758041858562, + 5367.709673667001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.758041858562, + 5370.964962754582 + ], + [ + 4556.758041858562, + 5364.454384579421 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.242853483569, + "min_y": 5363.348215954313, + "max_x": 4573.242853483569, + "max_y": 5365.616645573766, + "center": [ + 4573.242853483569, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.242853483569, + 5365.616645573766 + ], + [ + 4573.242853483569, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4576.880031311724, + "min_y": 5363.348215954313, + "max_x": 4576.880031311724, + "max_y": 5365.616645573766, + "center": [ + 4576.880031311724, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4576.880031311724, + 5365.616645573766 + ], + [ + 4576.880031311724, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.242853483569, + "min_y": 5363.348215954313, + "max_x": 4574.482466396797, + "max_y": 5364.121335879127, + "center": [ + 4573.862659940183, + 5363.7347759167205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.242853483569, + 5363.348215954313 + ], + [ + 4574.482466396797, + 5364.121335879127 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4573.242853483569, + "min_y": 5364.843525648952, + "max_x": 4574.482466396797, + "max_y": 5365.616645573766, + "center": [ + 4573.862659940183, + 5365.230085611359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4573.242853483569, + 5365.616645573766 + ], + [ + 4574.482466396797, + 5364.843525648952 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F4", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4574.379091516156, + "min_y": 5363.80007988255, + "max_x": 4575.743793279128, + "max_y": 5365.1647816455215, + "center": [ + 4575.061442397642, + 5364.482430764036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.061442397642, + 5364.482430764036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.640418398489, + "min_y": 5363.348215954313, + "max_x": 4576.880031311724, + "max_y": 5364.121335879127, + "center": [ + 4576.260224855107, + 5363.7347759167205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.640418398489, + 5364.121335879127 + ], + [ + 4576.880031311724, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4575.640418398489, + "min_y": 5364.843525648952, + "max_x": 4576.880031311724, + "max_y": 5365.616645573766, + "center": [ + 4576.260224855107, + 5365.230085611359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4575.640418398489, + 5364.843525648952 + ], + [ + 4576.880031311724, + 5365.616645573766 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4577.626618878652, + "min_y": 5363.348215954313, + "max_x": 4577.626618878652, + "max_y": 5365.616645573766, + "center": [ + 4577.626618878652, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.626618878652, + 5365.616645573766 + ], + [ + 4577.626618878652, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4572.496265916641, + "min_y": 5363.348215954313, + "max_x": 4572.496265916641, + "max_y": 5365.616645573766, + "center": [ + 4572.496265916641, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4572.496265916641, + 5365.616645573766 + ], + [ + 4572.496265916641, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541F9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.622576844761, + "min_y": 5363.348215954313, + "max_x": 4558.622576844761, + "max_y": 5365.616645573766, + "center": [ + 4558.622576844761, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.622576844761, + 5365.616645573766 + ], + [ + 4558.622576844761, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4562.259754672912, + "min_y": 5363.348215954313, + "max_x": 4562.259754672912, + "max_y": 5365.616645573766, + "center": [ + 4562.259754672912, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.259754672912, + 5365.616645573766 + ], + [ + 4562.259754672912, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.622576844761, + "min_y": 5363.348215954313, + "max_x": 4559.862189757986, + "max_y": 5364.121335879127, + "center": [ + 4559.242383301374, + 5363.7347759167205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.622576844761, + 5363.348215954313 + ], + [ + 4559.862189757986, + 5364.121335879127 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4558.622576844761, + "min_y": 5364.843525648952, + "max_x": 4559.862189757986, + "max_y": 5365.616645573766, + "center": [ + 4559.242383301374, + 5365.230085611359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4558.622576844761, + 5365.616645573766 + ], + [ + 4559.862189757986, + 5364.843525648952 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FD", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4559.758814877348, + "min_y": 5363.80007988255, + "max_x": 4561.12351664032, + "max_y": 5365.1647816455215, + "center": [ + 4560.441165758834, + 5364.482430764036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4560.441165758834, + 5364.482430764036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.020141759678, + "min_y": 5363.348215954313, + "max_x": 4562.259754672912, + "max_y": 5364.121335879127, + "center": [ + 4561.639948216295, + 5363.7347759167205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.020141759678, + 5364.121335879127 + ], + [ + 4562.259754672912, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5541FF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4561.020141759678, + "min_y": 5364.843525648952, + "max_x": 4562.259754672912, + "max_y": 5365.616645573766, + "center": [ + 4561.639948216295, + 5365.230085611359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4561.020141759678, + 5364.843525648952 + ], + [ + 4562.259754672912, + 5365.616645573766 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554200", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4563.00634223984, + "min_y": 5363.348215954313, + "max_x": 4563.00634223984, + "max_y": 5365.616645573766, + "center": [ + 4563.00634223984, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4563.00634223984, + 5365.616645573766 + ], + [ + 4563.00634223984, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554201", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4557.875989277831, + "min_y": 5363.348215954313, + "max_x": 4557.875989277831, + "max_y": 5365.616645573766, + "center": [ + 4557.875989277831, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4557.875989277831, + 5365.616645573766 + ], + [ + 4557.875989277831, + 5363.348215954313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554202", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4556.758041858562, + "min_y": 5370.97389544806, + "max_x": 4565.130018116093, + "max_y": 5370.97389544806, + "center": [ + 4560.944029987328, + 5370.97389544806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4556.758041858562, + 5370.97389544806 + ], + [ + 4565.130018116093, + 5370.97389544806 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554203", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.260371078104, + "min_y": 5371.059775595348, + "max_x": 4578.632347335635, + "max_y": 5371.059775595348, + "center": [ + 4574.44635920687, + 5371.059775595348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.260371078104, + 5371.059775595348 + ], + [ + 4578.632347335635, + 5371.059775595348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554204", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.876605683021, + "min_y": 5369.882620711977, + "max_x": 4565.876605683021, + "max_y": 5372.151050331431, + "center": [ + 4565.876605683021, + 5371.016835521705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.876605683021, + 5369.882620711977 + ], + [ + 4565.876605683021, + 5372.151050331431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554205", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4569.513783511176, + "min_y": 5369.882620711977, + "max_x": 4569.513783511176, + "max_y": 5372.151050331431, + "center": [ + 4569.513783511176, + 5371.016835521705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.513783511176, + 5369.882620711977 + ], + [ + 4569.513783511176, + 5372.151050331431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554206", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.876605683021, + "min_y": 5371.377930406616, + "max_x": 4567.116218596249, + "max_y": 5372.151050331431, + "center": [ + 4566.496412139635, + 5371.764490369023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.876605683021, + 5372.151050331431 + ], + [ + 4567.116218596249, + 5371.377930406616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554207", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.876605683021, + "min_y": 5369.882620711977, + "max_x": 4567.116218596249, + "max_y": 5370.655740636792, + "center": [ + 4566.496412139635, + 5370.269180674384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.876605683021, + 5369.882620711977 + ], + [ + 4567.116218596249, + 5370.655740636792 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554208", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4567.012843715608, + "min_y": 5370.334484640219, + "max_x": 4568.37754547858, + "max_y": 5371.699186403191, + "center": [ + 4567.695194597094, + 5371.016835521705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.695194597094, + 5371.016835521705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554209", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.27417059794, + "min_y": 5371.377930406616, + "max_x": 4569.513783511176, + "max_y": 5372.151050331431, + "center": [ + 4568.8939770545585, + 5371.764490369023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.27417059794, + 5371.377930406616 + ], + [ + 4569.513783511176, + 5372.151050331431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4568.27417059794, + "min_y": 5369.882620711977, + "max_x": 4569.513783511176, + "max_y": 5370.655740636792, + "center": [ + 4568.8939770545585, + 5370.269180674384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4568.27417059794, + 5370.655740636792 + ], + [ + 4569.513783511176, + 5369.882620711977 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4570.260371078104, + "min_y": 5369.882620711977, + "max_x": 4570.260371078104, + "max_y": 5372.151050331431, + "center": [ + 4570.260371078104, + 5371.016835521705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.260371078104, + 5369.882620711977 + ], + [ + 4570.260371078104, + 5372.151050331431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4565.130018116093, + "min_y": 5369.882620711977, + "max_x": 4565.130018116093, + "max_y": 5372.151050331431, + "center": [ + 4565.130018116093, + 5371.016835521705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.130018116093, + 5369.882620711977 + ], + [ + 4565.130018116093, + 5372.151050331431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4578.632347335635, + "min_y": 5364.53288440155, + "max_x": 4578.632347335635, + "max_y": 5371.061859474892, + "center": [ + 4578.632347335635, + 5367.797371938221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4578.632347335635, + 5371.061859474892 + ], + [ + 4578.632347335635, + 5364.53288440155 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.719045752021, + "min_y": 5363.726559231398, + "max_x": 4570.719045752021, + "max_y": 5365.238302296679, + "center": [ + 4570.719045752021, + 5364.482430764038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.719045752021, + 5365.238302296679 + ], + [ + 4570.719045752021, + 5363.726559231398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55420F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.416697138964, + "min_y": 5363.726559231398, + "max_x": 4570.416697138964, + "max_y": 5365.238302296679, + "center": [ + 4570.416697138964, + 5364.482430764038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.416697138964, + 5365.238302296679 + ], + [ + 4570.416697138964, + 5363.726559231398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554210", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.790724635096, + "min_y": 5363.348623465077, + "max_x": 4569.058339233019, + "max_y": 5363.348623465077, + "center": [ + 4567.924531934057, + 5363.348623465077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.790724635096, + 5363.348623465077 + ], + [ + 4569.058339233019, + 5363.348623465077 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554211", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.058339233019, + "min_y": 5363.348623465077, + "max_x": 4569.058339233019, + "max_y": 5365.616238063001, + "center": [ + 4569.058339233019, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.058339233019, + 5363.348623465077 + ], + [ + 4569.058339233019, + 5365.616238063001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554212", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.790724635096, + "min_y": 5365.616238063001, + "max_x": 4569.058339233019, + "max_y": 5365.616238063001, + "center": [ + 4567.924531934057, + 5365.616238063001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4569.058339233019, + 5365.616238063001 + ], + [ + 4566.790724635096, + 5365.616238063001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554213", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4566.790724635096, + "min_y": 5363.348623465077, + "max_x": 4566.790724635096, + "max_y": 5365.616238063001, + "center": [ + 4566.790724635096, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4566.790724635096, + 5365.616238063001 + ], + [ + 4566.790724635096, + 5363.348623465077 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554214", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4569.058339233019, + "min_y": 5364.482430764039, + "max_x": 4570.416697138964, + "max_y": 5364.482430764039, + "center": [ + 4569.737518185992, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.416697138964, + 5364.482430764039 + ], + [ + 4569.058339233019, + 5364.482430764039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554215", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.178286332479, + "min_y": 5367.159804764535, + "max_x": 4570.665913659453, + "max_y": 5367.159804764535, + "center": [ + 4567.922099995965, + 5367.159804764535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.178286332479, + 5367.159804764535 + ], + [ + 4570.665913659453, + 5367.159804764535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554216", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.665913659453, + "min_y": 5367.612508047057, + "max_x": 4571.118616941975, + "max_y": 5368.065211329579, + "center": [ + 4570.892265300714, + 5367.838859688318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.118616941975, + 5367.612508047057 + ], + [ + 4570.665913659453, + 5368.065211329579 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554217", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.178286332479, + "min_y": 5368.065211329579, + "max_x": 4570.665913659453, + "max_y": 5368.065211329579, + "center": [ + 4567.922099995965, + 5368.065211329579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4570.665913659453, + 5368.065211329579 + ], + [ + 4565.178286332479, + 5368.065211329579 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554218", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.725583049959, + "min_y": 5367.159804764535, + "max_x": 4565.178286332479, + "max_y": 5367.612508047057, + "center": [ + 4564.951934691218, + 5367.386156405796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.725583049959, + 5367.612508047057 + ], + [ + 4565.178286332479, + 5367.159804764535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554219", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4570.665913659453, + "min_y": 5367.159804764535, + "max_x": 4571.118616941975, + "max_y": 5367.612508047057, + "center": [ + 4570.892265300714, + 5367.386156405796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4571.118616941975, + 5367.612508047057 + ], + [ + 4570.665913659453, + 5367.159804764535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.725583049956, + "min_y": 5367.612508047058, + "max_x": 4565.178286332479, + "max_y": 5368.065211329579, + "center": [ + 4564.9519346912175, + 5367.838859688319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.725583049956, + 5367.612508047058 + ], + [ + 4565.178286332479, + 5368.065211329579 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4564.061605784245, + "min_y": 5367.612508047057, + "max_x": 4571.782594207683, + "max_y": 5367.612508047057, + "center": [ + 4567.922099995964, + 5367.612508047057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4564.061605784245, + 5367.612508047057 + ], + [ + 4571.782594207683, + 5367.612508047057 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.130018116093, + "min_y": 5363.726559231398, + "max_x": 4565.130018116093, + "max_y": 5365.238302296679, + "center": [ + 4565.130018116093, + 5364.482430764038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.130018116093, + 5365.238302296679 + ], + [ + 4565.130018116093, + 5363.726559231398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.43236672915, + "min_y": 5363.726559231398, + "max_x": 4565.43236672915, + "max_y": 5365.238302296679, + "center": [ + 4565.43236672915, + 5364.482430764038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.43236672915, + 5365.238302296679 + ], + [ + 4565.43236672915, + 5363.726559231398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4565.43236672915, + "min_y": 5364.482430764039, + "max_x": 4566.790724635096, + "max_y": 5364.482430764039, + "center": [ + 4566.111545682123, + 5364.482430764039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4565.43236672915, + 5364.482430764039 + ], + [ + 4566.790724635096, + 5364.482430764039 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55421F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4567.924531934057, + "min_y": 5365.616238063001, + "max_x": 4567.924531934057, + "max_y": 5367.159804764535, + "center": [ + 4567.924531934057, + 5366.388021413768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.924531934057, + 5367.159804764535 + ], + [ + 4567.924531934057, + 5365.616238063001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554220", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4551.429957555913, + "min_y": 5364.463723268612, + "max_x": 4553.787143225405, + "max_y": 5364.463723268612, + "center": [ + 4552.608550390659, + 5364.463723268612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4551.429957555913, + 5364.463723268612 + ], + [ + 4553.787143225405, + 5364.463723268612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554221", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4577.625650124635, + "min_y": 5364.483062868403, + "max_x": 4603.684267359935, + "max_y": 5364.483062868403, + "center": [ + 4590.654958742285, + 5364.483062868403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4577.625650124635, + 5364.483062868403 + ], + [ + 4603.684267359935, + 5364.483062868403 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554222", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.108035692472, + "min_y": 5364.47347406527, + "max_x": 4582.108035692472, + "max_y": 5365.103896329532, + "center": [ + 4582.108035692472, + 5364.788685197402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.108035692472, + 5364.47347406527 + ], + [ + 4582.108035692472, + 5365.103896329532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554223", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4581.785247966529, + "min_y": 5365.6184707935, + "max_x": 4582.4308234184155, + "max_y": 5366.264046245386, + "center": [ + 4582.108035692472, + 5365.941258519443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.108035692472, + 5365.941258519443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.603765206227, + "min_y": 5365.099041341482, + "max_x": 4581.942219095195, + "max_y": 5365.664316698676, + "center": [ + 4581.772992150711, + 5365.381679020079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.942219095195, + 5365.664316698676 + ], + [ + 4581.603765206227, + 5365.099041341482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554225", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.603765206227, + "min_y": 5365.099041341482, + "max_x": 4582.612306178718, + "max_y": 5365.099041341482, + "center": [ + 4582.108035692472, + 5365.099041341482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.603765206227, + 5365.099041341482 + ], + [ + 4582.612306178718, + 5365.099041341482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554226", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.273852289751, + "min_y": 5365.099041341482, + "max_x": 4582.612306178718, + "max_y": 5365.664316698676, + "center": [ + 4582.443079234235, + 5365.381679020079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.612306178718, + 5365.099041341482 + ], + [ + 4582.273852289751, + 5365.664316698676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.603765206227, + "min_y": 5366.218200340203, + "max_x": 4581.942219095195, + "max_y": 5366.783475697404, + "center": [ + 4581.772992150711, + 5366.500838018804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.942219095195, + 5366.218200340203 + ], + [ + 4581.603765206227, + 5366.783475697404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4581.603765206227, + "min_y": 5366.783475697404, + "max_x": 4582.612306178718, + "max_y": 5366.783475697404, + "center": [ + 4582.108035692472, + 5366.783475697404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.603765206227, + 5366.783475697404 + ], + [ + 4582.612306178718, + 5366.783475697404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554229", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.273852289751, + "min_y": 5366.218200340203, + "max_x": 4582.612306178718, + "max_y": 5366.783475697404, + "center": [ + 4582.443079234235, + 5366.500838018804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.612306178718, + 5366.783475697404 + ], + [ + 4582.273852289751, + 5366.218200340203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55422A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4582.097332450167, + "min_y": 5366.799347427932, + "max_x": 4582.097332450167, + "max_y": 5367.405176080186, + "center": [ + 4582.097332450167, + 5367.102261754058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.097332450167, + 5366.799347427932 + ], + [ + 4582.097332450167, + 5367.405176080186 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55422B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.921301075759, + "min_y": 5360.106340925189, + "max_x": 4567.921301075759, + "max_y": 5363.348600434953, + "center": [ + 4567.921301075759, + 5361.727470680071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.921301075759, + 5363.348600434953 + ], + [ + 4567.921301075759, + 5360.106340925189 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55422C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.787027035807, + "min_y": 5364.930834363871, + "max_x": 4554.859205890334, + "max_y": 5365.149643557288, + "center": [ + 4554.323116463071, + 5365.04023896058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.787027035807, + 5365.149643557288 + ], + [ + 4554.859205890334, + 5364.930834363871 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55422D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.787027035807, + "min_y": 5363.83678839675, + "max_x": 4554.859205890334, + "max_y": 5364.055597590176, + "center": [ + 4554.323116463071, + 5363.946192993463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.787027035807, + 5363.83678839675 + ], + [ + 4554.859205890334, + 5364.055597590176 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55422E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4554.859205890334, + "min_y": 5364.055597590176, + "max_x": 4554.859205890334, + "max_y": 5364.930834363871, + "center": [ + 4554.859205890334, + 5364.493215977023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.859205890334, + 5364.055597590176 + ], + [ + 4554.859205890334, + 5364.930834363871 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55422F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4553.787027035807, + "min_y": 5363.83678839675, + "max_x": 4553.787027035807, + "max_y": 5365.149643557288, + "center": [ + 4553.787027035807, + 5364.49321597702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4553.787027035807, + 5363.83678839675 + ], + [ + 4553.787027035807, + 5365.149643557288 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554230", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4554.859768860582, + "min_y": 5364.483738998779, + "max_x": 4557.808388319037, + "max_y": 5364.483738998779, + "center": [ + 4556.334078589809, + 5364.483738998779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4554.859768860582, + 5364.483738998779 + ], + [ + 4557.808388319037, + 5364.483738998779 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554231", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4585.615466921002, + "min_y": 5362.554441525759, + "max_x": 4597.710185505251, + "max_y": 5363.6743228761525, + "center": [ + 4591.662826213126, + 5363.114382200956 + ] + }, + "raw_value": "N2-10703-15A-F1A-n", + "clean_value": "N2-10703-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554232", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4556.304810956526, + "min_y": 5360.341808981453, + "max_x": 4562.3521702486505, + "max_y": 5361.4616903318465, + "center": [ + 4559.328490602588, + 5360.90174965665 + ] + }, + "raw_value": "NBD-10100", + "clean_value": "NBD-10100", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554233", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4555.594209322307, + "min_y": 5358.821009770474, + "max_x": 4561.641568614431, + "max_y": 5359.9408911208675, + "center": [ + 4558.617888968369, + 5359.380950445671 + ] + }, + "raw_value": "+250mmH2O", + "clean_value": "+250mmH2O", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554234", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4555.767516995041, + "min_y": 5358.41561728237, + "max_x": 4562.957690135386, + "max_y": 5358.41561728237, + "center": [ + 4559.362603565213, + 5358.41561728237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4555.767516995041, + 5358.41561728237 + ], + [ + 4562.957690135386, + 5358.41561728237 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554235", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4562.962236338908, + "min_y": 5358.42194927887, + "max_x": 4566.683647562818, + "max_y": 5363.354060726294, + "center": [ + 4564.8229419508625, + 5360.888005002582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4562.962236338908, + 5358.42194927887 + ], + [ + 4566.683647562818, + 5363.354060726294 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554236", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4607.781024145047, + "min_y": 5360.104903088203, + "max_x": 4607.781024145047, + "max_y": 5362.739298907998, + "center": [ + 4607.781024145047, + 5361.422100998101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4607.781024145047, + 5360.104903088203 + ], + [ + 4607.781024145047, + 5362.739298907998 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554237", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4567.921301113613, + "min_y": 5360.106340685145, + "max_x": 4607.781933439365, + "max_y": 5360.106340685145, + "center": [ + 4587.8516172764885, + 5360.106340685145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4567.921301113613, + 5360.106340685145 + ], + [ + 4607.781933439365, + 5360.106340685145 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554238", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4553.234896807633, + "min_y": 5320.796317675519, + "max_x": 4557.938398479286, + "max_y": 5321.916199025913, + "center": [ + 4555.586647643459, + 5321.3562583507155 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554239", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4553.264765191854, + "min_y": 5342.772641396456, + "max_x": 4557.968266863507, + "max_y": 5343.892522746849, + "center": [ + 4555.6165160276805, + 5343.332582071653 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55423A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4552.966081349637, + "min_y": 5365.549871683652, + "max_x": 4557.669583021289, + "max_y": 5366.669753034045, + "center": [ + 4555.317832185463, + 5366.109812358849 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55423B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4055.44932688433, + "min_y": 5193.14467232504, + "max_x": 4072.6093268843297, + "max_y": 5194.57467232504, + "center": [ + 4064.0293268843297, + 5193.85967232504 + ] + }, + "raw_value": "SW-10801-50A-F1A-E50", + "clean_value": "SW-10801-50A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55423C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.959373277979, + "min_y": 5217.674443903988, + "max_x": 4088.178182471398, + "max_y": 5218.746622758516, + "center": [ + 4088.0687778746887, + 5218.210533331252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.959373277979, + 5217.674443903988 + ], + [ + 4088.178182471398, + 5218.746622758516 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55423D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.053419245092, + "min_y": 5217.674443903988, + "max_x": 4089.272228438518, + "max_y": 5218.746622758516, + "center": [ + 4089.162823841805, + 5218.210533331252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.272228438518, + 5217.674443903988 + ], + [ + 4089.053419245092, + 5218.746622758516 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55423E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.178182471398, + "min_y": 5218.746622758516, + "max_x": 4089.053419245092, + "max_y": 5218.746622758516, + "center": [ + 4088.615800858245, + 5218.746622758516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.053419245092, + 5218.746622758516 + ], + [ + 4088.178182471398, + 5218.746622758516 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55423F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.959373277979, + "min_y": 5217.674443903988, + "max_x": 4089.272228438518, + "max_y": 5217.674443903988, + "center": [ + 4088.615800858249, + 5217.674443903988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.272228438518, + 5217.674443903988 + ], + [ + 4087.959373277979, + 5217.674443903988 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554240", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.627227051732, + "min_y": 5218.74875370873, + "max_x": 4088.627227051732, + "max_y": 5221.882521638271, + "center": [ + 4088.627227051732, + 5220.3156376735005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.627227051732, + 5218.74875370873 + ], + [ + 4088.627227051732, + 5221.882521638271 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554241", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4093.342686278929, + "min_y": 5219.005584560944, + "max_x": 4110.502686278929, + "max_y": 5220.435584560944, + "center": [ + 4101.922686278929, + 5219.720584560944 + ] + }, + "raw_value": "SW-10802-25A-F1A-E50", + "clean_value": "SW-10802-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554242", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4087.1197222756, + "min_y": 5217.02238598842, + "max_x": 4093.8397222756, + "max_y": 5218.62238598842, + "center": [ + 4090.4797222755997, + 5217.82238598842 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554243", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4084.958560977958, + "min_y": 5325.660959661433, + "max_x": 4102.118560977958, + "max_y": 5327.090959661433, + "center": [ + 4093.538560977958, + 5326.375959661433 + ] + }, + "raw_value": "SW-10804-25A-F1A-E50", + "clean_value": "SW-10804-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554244", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.661413486978, + "min_y": 5245.143750023839, + "max_x": 4088.661413486978, + "max_y": 5249.66504632216, + "center": [ + 4088.661413486978, + 5247.404398172999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.661413486978, + 5245.143750023839 + ], + [ + 4088.661413486978, + 5249.66504632216 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "554245", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.66141351029, + "min_y": 5249.662560555343, + "max_x": 4109.694421017577, + "max_y": 5249.662881883579, + "center": [ + 4099.1779172639335, + 5249.662721219461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.66141351029, + 5249.662881883579 + ], + [ + 4109.694421017577, + 5249.662560555343 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "554246", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.648741012039, + "min_y": 5252.688376740849, + "max_x": 4081.518080628697, + "max_y": 5252.688376740849, + "center": [ + 4060.083410820368, + 5252.688376740849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4038.648741012039, + 5252.688376740849 + ], + [ + 4081.518080628697, + 5252.688376740849 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "554247", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4009.278258153265, + "min_y": 5210.916289653436, + "max_x": 4011.3948339055087, + "max_y": 5212.092165071349, + "center": [ + 4010.336546029387, + 5211.504227362393 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554248", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.93446409632, + "min_y": 5199.958342795472, + "max_x": 4109.153273289738, + "max_y": 5201.030521649999, + "center": [ + 4109.043868693028, + 5200.494432222736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.93446409632, + 5199.958342795472 + ], + [ + 4109.153273289738, + 5201.030521649999 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554249", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4110.028510063433, + "min_y": 5199.958342795472, + "max_x": 4110.247319256859, + "max_y": 5201.030521649999, + "center": [ + 4110.137914660146, + 5200.494432222736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.247319256859, + 5199.958342795472 + ], + [ + 4110.028510063433, + 5201.030521649999 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55424A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4109.153273289738, + "min_y": 5201.030521649999, + "max_x": 4110.028510063433, + "max_y": 5201.030521649999, + "center": [ + 4109.590891676586, + 5201.030521649999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.028510063433, + 5201.030521649999 + ], + [ + 4109.153273289738, + 5201.030521649999 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55424B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.93446409632, + "min_y": 5199.958342795472, + "max_x": 4110.247319256859, + "max_y": 5199.958342795472, + "center": [ + 4109.590891676589, + 5199.958342795472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.247319256859, + 5199.958342795472 + ], + [ + 4108.93446409632, + 5199.958342795472 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55424C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4108.340205901155, + "min_y": 5198.99028467824, + "max_x": 4115.060205901155, + "max_y": 5200.59028467824, + "center": [ + 4111.700205901156, + 5199.79028467824 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55424D", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.584595484392, + "min_y": 5201.034200187933, + "max_x": 4109.58468406327, + "max_y": 5204.002757180727, + "center": [ + 4109.584639773831, + 5202.518478684329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.58468406327, + 5201.034200187933 + ], + [ + 4109.584595484392, + 5204.002757180727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55424E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4090.255364921101, + "min_y": 5355.169292069639, + "max_x": 4107.415364921101, + "max_y": 5356.599292069639, + "center": [ + 4098.835364921101, + 5355.884292069639 + ] + }, + "raw_value": "SW-10806-25A-F1A-E50", + "clean_value": "SW-10806-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55424F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4090.151018537302, + "min_y": 5366.772685279665, + "max_x": 4107.3110185373025, + "max_y": 5368.202685279665, + "center": [ + 4098.731018537303, + 5367.487685279665 + ] + }, + "raw_value": "SW-10807-25A-F1A-E50", + "clean_value": "SW-10807-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554250", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4090.46789403279, + "min_y": 5407.224003989008, + "max_x": 4107.62789403279, + "max_y": 5408.654003989009, + "center": [ + 4099.04789403279, + 5407.939003989009 + ] + }, + "raw_value": "SW-10809-15A-F1A-E50", + "clean_value": "SW-10809-15A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554251", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.742654561847, + "min_y": 5405.164725250145, + "max_x": 4108.542783387385, + "max_y": 5405.164725250145, + "center": [ + 4098.6427189746155, + 5405.164725250145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.542783387385, + 5405.164725250145 + ], + [ + 4088.742654561847, + 5405.164725250145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554252", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4112.940106753216, + "min_y": 5403.947016062878, + "max_x": 4112.940106753216, + "max_y": 5406.215445682331, + "center": [ + 4112.940106753216, + 5405.0812308726045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.940106753216, + 5403.947016062878 + ], + [ + 4112.940106753216, + 5406.215445682331 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554253", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.302928925067, + "min_y": 5403.947016062878, + "max_x": 4109.302928925067, + "max_y": 5406.215445682331, + "center": [ + 4109.302928925067, + 5405.0812308726045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.302928925067, + 5403.947016062878 + ], + [ + 4109.302928925067, + 5406.215445682331 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554254", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.700493839989, + "min_y": 5405.442325757516, + "max_x": 4112.940106753216, + "max_y": 5406.215445682331, + "center": [ + 4112.320300296602, + 5405.828885719924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.940106753216, + 5406.215445682331 + ], + [ + 4111.700493839989, + 5405.442325757516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554255", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4111.700493839989, + "min_y": 5403.947016062878, + "max_x": 4112.940106753216, + "max_y": 5404.720135987693, + "center": [ + 4112.320300296602, + 5404.333576025285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4112.940106753216, + 5403.947016062878 + ], + [ + 4111.700493839989, + 5404.720135987693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554256", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4110.439166957658, + "min_y": 5404.398879991121, + "max_x": 4111.80386872063, + "max_y": 5405.763581754093, + "center": [ + 4111.121517839144, + 5405.081230872607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4111.121517839144, + 5405.081230872607 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554257", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.302928925067, + "min_y": 5405.442325757516, + "max_x": 4110.542541838298, + "max_y": 5406.215445682331, + "center": [ + 4109.922735381682, + 5405.828885719924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.542541838298, + 5405.442325757516 + ], + [ + 4109.302928925067, + 5406.215445682331 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554258", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.302928925067, + "min_y": 5403.947016062878, + "max_x": 4110.542541838298, + "max_y": 5404.720135987693, + "center": [ + 4109.922735381682, + 5404.333576025285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.542541838298, + 5404.720135987693 + ], + [ + 4109.302928925067, + 5403.947016062878 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554259", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.556341358137, + "min_y": 5403.947016062878, + "max_x": 4108.556341358137, + "max_y": 5406.215445682331, + "center": [ + 4108.556341358137, + 5405.0812308726045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.556341358137, + 5403.947016062878 + ], + [ + 4108.556341358137, + 5406.215445682331 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4113.686694320146, + "min_y": 5403.947016062878, + "max_x": 4113.686694320146, + "max_y": 5406.215445682331, + "center": [ + 4113.686694320146, + 5405.0812308726045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4113.686694320146, + 5403.947016062878 + ], + [ + 4113.686694320146, + 5406.215445682331 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425B", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4113.683327990802, + "min_y": 5405.197147248885, + "max_x": 4119.281167573428, + "max_y": 5405.198069043377, + "center": [ + 4116.482247782115, + 5405.197608146131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281167573428, + 5405.197147248885 + ], + [ + 4113.683327990802, + 5405.198069043377 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5402.830876382981, + "max_x": 4119.281273652213, + "max_y": 5407.657770955284, + "center": [ + 4119.281273652213, + 5405.244323669132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281273652213, + 5407.657770955284 + ], + [ + 4119.281273652213, + 5402.830876382981 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5402.83086435406, + "max_x": 4141.708108812414, + "max_y": 5402.830876382981, + "center": [ + 4130.494691232314, + 5402.830870368521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281273652213, + 5402.830876382981 + ], + [ + 4141.708108812414, + 5402.83086435406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.708108812414, + "min_y": 5402.83086435406, + "max_x": 4144.121569903433, + "max_y": 5405.244325445078, + "center": [ + 4142.9148393579235, + 5404.03759489957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.708108812414, + 5402.83086435406 + ], + [ + 4144.121569903433, + 5405.244325445078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55425F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.708108812414, + "min_y": 5405.244325445078, + "max_x": 4144.121569903433, + "max_y": 5407.657786536097, + "center": [ + 4142.9148393579235, + 5406.4510559905875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.121569903433, + 5405.244325445078 + ], + [ + 4141.708108812414, + 5407.657786536097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554260", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5402.830876382981, + "max_x": 4119.281273652213, + "max_y": 5407.657770955284, + "center": [ + 4119.281273652213, + 5405.244323669132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281273652213, + 5407.657770955284 + ], + [ + 4119.281273652213, + 5402.830876382981 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554261", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4124.426214929984, + "min_y": 5404.408190817779, + "max_x": 4135.507582868231, + "max_y": 5406.087185959937, + "center": [ + 4129.966898899107, + 5405.247688388858 + ] + }, + "raw_value": "5F SCRUBBER", + "clean_value": "5F SCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554262", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5402.83086435406, + "max_x": 4141.708108812414, + "max_y": 5402.830876382981, + "center": [ + 4130.494691232314, + 5402.830870368521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281273652213, + 5402.830876382981 + ], + [ + 4141.708108812414, + 5402.83086435406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554263", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4119.281273652213, + "min_y": 5407.657770955284, + "max_x": 4141.708108812414, + "max_y": 5407.657786536097, + "center": [ + 4130.494691232314, + 5407.65777874569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.281273652213, + 5407.657770955284 + ], + [ + 4141.708108812414, + 5407.657786536097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554264", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.708108812414, + "min_y": 5402.83086435406, + "max_x": 4144.121569903433, + "max_y": 5405.244325445078, + "center": [ + 4142.9148393579235, + 5404.03759489957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4141.708108812414, + 5402.83086435406 + ], + [ + 4144.121569903433, + 5405.244325445078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4141.708108812414, + "min_y": 5405.244325445078, + "max_x": 4144.121569903433, + "max_y": 5407.657786536097, + "center": [ + 4142.9148393579235, + 5406.4510559905875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4144.121569903433, + 5405.244325445078 + ], + [ + 4141.708108812414, + 5407.657786536097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4088.032614423307, + "min_y": 5405.819644897729, + "max_x": 4119.184301315448, + "max_y": 5405.819644897729, + "center": [ + 4103.608457869377, + 5405.819644897729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4119.184301315448, + 5405.819644897729 + ], + [ + 4088.032614423307, + 5405.819644897729 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554267", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4090.42265839779, + "min_y": 5391.026830833755, + "max_x": 4107.5826583977905, + "max_y": 5392.456830833756, + "center": [ + 4099.002658397791, + 5391.741830833756 + ] + }, + "raw_value": "SW-10808-25A-F1A-E50", + "clean_value": "SW-10808-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554268", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.749378791322, + "min_y": 5275.280013580093, + "max_x": 4088.749378791322, + "max_y": 5405.12070284667, + "center": [ + 4088.749378791322, + 5340.200358213381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.749378791322, + 5275.280013580093 + ], + [ + 4088.749378791322, + 5405.12070284667 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4042.138087155236, + "min_y": 5221.305757903797, + "max_x": 4043.291644338553, + "max_y": 5221.305757903797, + "center": [ + 4042.7148657468942, + 5221.305757903797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4042.138087155236, + 5221.305757903797 + ], + [ + 4043.291644338553, + 5221.305757903797 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4044.038231905482, + "min_y": 5220.171543094071, + "max_x": 4044.038231905482, + "max_y": 5222.439972713523, + "center": [ + 4044.038231905482, + 5221.305757903798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.038231905482, + 5222.439972713523 + ], + [ + 4044.038231905482, + 5220.171543094071 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4044.038231905482, + "min_y": 5220.171543094071, + "max_x": 4045.277844818708, + "max_y": 5220.944663018885, + "center": [ + 4044.658038362095, + 5220.558103056478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.038231905482, + 5220.171543094071 + ], + [ + 4045.277844818708, + 5220.944663018885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4044.038231905482, + "min_y": 5221.666852788709, + "max_x": 4045.277844818708, + "max_y": 5222.439972713523, + "center": [ + 4044.658038362095, + 5222.053412751116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4044.038231905482, + 5222.439972713523 + ], + [ + 4045.277844818708, + 5221.666852788709 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4045.174469938068, + "min_y": 5220.623407022309, + "max_x": 4046.53917170104, + "max_y": 5221.988108785281, + "center": [ + 4045.856820819554, + 5221.305757903795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4045.856820819554, + 5221.305757903795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4046.4357968204, + "min_y": 5220.171543094071, + "max_x": 4047.675409733632, + "max_y": 5220.944663018885, + "center": [ + 4047.055603277016, + 5220.558103056478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4046.4357968204, + 5220.944663018885 + ], + [ + 4047.675409733632, + 5220.171543094071 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55426F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4046.4357968204, + "min_y": 5221.666852788709, + "max_x": 4047.675409733632, + "max_y": 5222.439972713523, + "center": [ + 4047.055603277016, + 5222.053412751116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4046.4357968204, + 5221.666852788709 + ], + [ + 4047.675409733632, + 5222.439972713523 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554270", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4043.291644338553, + "min_y": 5220.171543094071, + "max_x": 4043.291644338553, + "max_y": 5222.439972713523, + "center": [ + 4043.291644338553, + 5221.305757903798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4043.291644338553, + 5222.439972713523 + ], + [ + 4043.291644338553, + 5220.171543094071 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554271", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4047.686105859443, + "min_y": 5220.179990351002, + "max_x": 4047.686105859443, + "max_y": 5222.448419970454, + "center": [ + 4047.686105859443, + 5221.314205160728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4047.686105859443, + 5222.448419970454 + ], + [ + 4047.686105859443, + 5220.179990351002 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554272", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4048.410764365601, + "min_y": 5220.201472322528, + "max_x": 4048.410764365601, + "max_y": 5222.46990194198, + "center": [ + 4048.410764365601, + 5221.335687132254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4048.410764365601, + 5222.46990194198 + ], + [ + 4048.410764365601, + 5220.201472322528 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554273", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4044.818170002712, + "min_y": 5218.22089172305, + "max_x": 4046.9347457549557, + "max_y": 5219.396767140963, + "center": [ + 4045.876457878834, + 5218.808829432006 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554274", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3523.238416793658, + "min_y": 5255.976528784189, + "max_x": 3523.238416793658, + "max_y": 5285.990935549941, + "center": [ + 3523.238416793658, + 5270.983732167066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3523.238416793658, + 5285.990935549941 + ], + [ + 3523.238416793658, + 5255.976528784189 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554275", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3530.677002083358, + "min_y": 5255.976528784189, + "max_x": 3530.677002083358, + "max_y": 5264.842540004176, + "center": [ + 3530.677002083358, + 5260.409534394183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.677002083358, + 5255.976528784189 + ], + [ + 3530.677002083358, + 5264.842540004176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554276", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3530.692477472268, + "min_y": 5264.842540004176, + "max_x": 3536.281851674221, + "max_y": 5264.842540004176, + "center": [ + 3533.4871645732446, + 5264.842540004176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3530.692477472268, + 5264.842540004176 + ], + [ + 3536.281851674221, + 5264.842540004176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554277", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3541.41626048865, + "min_y": 5264.959246434003, + "max_x": 3543.539936364903, + "max_y": 5264.959246434003, + "center": [ + 3542.4780984267763, + 5264.959246434003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3541.41626048865, + 5264.959246434003 + ], + [ + 3543.539936364903, + 5264.959246434003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554278", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.359219048858, + "min_y": 5264.873961938777, + "max_x": 3547.8510066429517, + "max_y": 5268.365749532871, + "center": [ + 3546.105112845905, + 5266.619855735824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3546.105112845905, + 5266.619855735824 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554279", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.399270484743, + "min_y": 5266.991671536215, + "max_x": 3547.810955207075, + "max_y": 5266.991671536215, + "center": [ + 3546.105112845909, + 5266.991671536215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3544.399270484743, + 5266.991671536215 + ], + [ + 3547.810955207075, + 5266.991671536215 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.286523931832, + "min_y": 5263.825031624275, + "max_x": 3544.286523931832, + "max_y": 5266.093461243729, + "center": [ + 3544.286523931832, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3544.286523931832, + 5266.093461243729 + ], + [ + 3544.286523931832, + 5263.825031624275 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3546.105112845905, + "min_y": 5264.959246434001, + "max_x": 3546.105112845908, + "max_y": 5266.991671536215, + "center": [ + 3546.1051128459067, + 5265.975458985108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3546.105112845908, + 5264.959246434001 + ], + [ + 3546.105112845905, + 5266.991671536215 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3547.923701759986, + "min_y": 5263.825031624275, + "max_x": 3547.923701759986, + "max_y": 5266.093461243729, + "center": [ + 3547.923701759986, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3547.923701759986, + 5266.093461243729 + ], + [ + 3547.923701759986, + 5263.825031624275 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.286523931832, + "min_y": 5263.825031624275, + "max_x": 3547.923701759986, + "max_y": 5266.093461243729, + "center": [ + 3546.1051128459094, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3544.286523931832, + 5263.825031624275 + ], + [ + 3547.923701759986, + 5266.093461243729 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3544.286523931832, + "min_y": 5263.825031624275, + "max_x": 3547.923701759986, + "max_y": 5266.093461243729, + "center": [ + 3546.1051128459094, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3544.286523931832, + 5266.093461243729 + ], + [ + 3547.923701759986, + 5263.825031624275 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55427F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3543.539936364903, + "min_y": 5263.825031624276, + "max_x": 3543.539936364903, + "max_y": 5266.093461243729, + "center": [ + 3543.539936364903, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3543.539936364903, + 5263.825031624276 + ], + [ + 3543.539936364903, + 5266.093461243729 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554280", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3548.670289326915, + "min_y": 5263.825031624276, + "max_x": 3548.670289326915, + "max_y": 5266.093461243729, + "center": [ + 3548.670289326915, + 5264.959246434002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3548.670289326915, + 5263.825031624276 + ], + [ + 3548.670289326915, + 5266.093461243729 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554281", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3546.105112845913, + "min_y": 5264.959246434001, + "max_x": 3550.769223974403, + "max_y": 5269.8280881498, + "center": [ + 3548.437168410158, + 5267.393667291901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3546.105112845913, + 5264.959246434001 + ], + [ + 3550.769223974403, + 5269.8280881498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554282", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3546.105112845905, + "min_y": 5268.365749532871, + "max_x": 3546.105112845905, + "max_y": 5269.8280881498, + "center": [ + 3546.105112845905, + 5269.0969188413355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3546.105112845905, + 5268.365749532871 + ], + [ + 3546.105112845905, + 5269.8280881498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554283", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.851084007644, + "min_y": 5264.959246434, + "max_x": 3540.669672921723, + "max_y": 5266.09346124373, + "center": [ + 3539.7603784646835, + 5265.526353838865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.851084007644, + 5264.959246434 + ], + [ + 3540.669672921723, + 5266.09346124373 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554284", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.851084007644, + "min_y": 5263.825031624276, + "max_x": 3540.669672921723, + "max_y": 5264.959246434, + "center": [ + 3539.7603784646835, + 5264.392139029138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.851084007644, + 5264.959246434 + ], + [ + 3540.669672921723, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554285", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3538.481523162015, + "min_y": 5264.959246434, + "max_x": 3539.220644853273, + "max_y": 5264.959246434, + "center": [ + 3538.851084007644, + 5264.959246434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.481523162015, + 5264.959246434 + ], + [ + 3539.220644853273, + 5264.959246434 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554286", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3537.03249509357, + "min_y": 5264.959246434, + "max_x": 3538.851084007644, + "max_y": 5266.09346124373, + "center": [ + 3537.941789550607, + 5265.526353838865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.851084007644, + 5264.959246434 + ], + [ + 3537.03249509357, + 5266.09346124373 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554287", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3537.03249509357, + "min_y": 5263.825031624276, + "max_x": 3537.03249509357, + "max_y": 5266.09346124373, + "center": [ + 3537.03249509357, + 5264.959246434003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3537.03249509357, + 5266.09346124373 + ], + [ + 3537.03249509357, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554288", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3537.03249509357, + "min_y": 5263.825031624276, + "max_x": 3538.851084007644, + "max_y": 5264.959246434, + "center": [ + 3537.941789550607, + 5264.392139029138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3538.851084007644, + 5264.959246434 + ], + [ + 3537.03249509357, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554289", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3540.669672921723, + "min_y": 5263.825031624276, + "max_x": 3540.669672921723, + "max_y": 5266.09346124373, + "center": [ + 3540.669672921723, + 5264.959246434003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3540.669672921723, + 5266.09346124373 + ], + [ + 3540.669672921723, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3541.41626048865, + "min_y": 5263.825031624276, + "max_x": 3541.41626048865, + "max_y": 5266.09346124373, + "center": [ + 3541.41626048865, + 5264.959246434003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3541.41626048865, + 5266.09346124373 + ], + [ + 3541.41626048865, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3536.285907526642, + "min_y": 5263.825031624276, + "max_x": 3536.285907526642, + "max_y": 5266.09346124373, + "center": [ + 3536.285907526642, + 5264.959246434003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3536.285907526642, + 5266.09346124373 + ], + [ + 3536.285907526642, + 5263.825031624276 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428C", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3548.670289326915, + "min_y": 5264.959246434003, + "max_x": 3563.533749800277, + "max_y": 5264.960395570184, + "center": [ + 3556.1020195635956, + 5264.959821002094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3548.670289326915, + 5264.959246434003 + ], + [ + 3563.533749800277, + 5264.960395570184 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3542.133049286143, + "min_y": 5261.092118011116, + "max_x": 3552.631936946081, + "max_y": 5262.258661084443, + "center": [ + 3547.382493116112, + 5261.67538954778 + ] + }, + "raw_value": "0.65 -> 0.4 MPa", + "clean_value": "0.65 -> 0.4 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3554.898888227501, + "min_y": 5262.84400289419, + "max_x": 3557.5194105874216, + "max_y": 5264.299848649702, + "center": [ + 3556.209149407461, + 5263.571925771947 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55428F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 3546.105112845905, + "min_y": 5269.8280881498, + "max_x": 3550.769223974403, + "max_y": 5269.8280881498, + "center": [ + 3548.437168410154, + 5269.8280881498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3546.105112845905, + 5269.8280881498 + ], + [ + 3550.769223974403, + 5269.8280881498 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554290", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3562.60094709569, + "min_y": 5264.95879563247, + "max_x": 3564.561617669575, + "max_y": 5264.95879563247, + "center": [ + 3563.5812823826327, + 5264.95879563247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3564.561617669575, + 5264.95879563247 + ], + [ + 3562.60094709569, + 5264.95879563247 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554291", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3542.449959236048, + "min_y": 5285.990934832039, + "max_x": 3544.574960829021, + "max_y": 5285.990934832039, + "center": [ + 3543.5124600325344, + 5285.990934832039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3542.449959236048, + 5285.990934832039 + ], + [ + 3544.574960829021, + 5285.990934832039 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554292", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3541.695526847222, + "min_y": 5285.990934832039, + "max_x": 3541.702354419231, + "max_y": 5285.990934832039, + "center": [ + 3541.698940633227, + 5285.990934832039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3541.695526847222, + 5285.990934832039 + ], + [ + 3541.702354419231, + 5285.990934832039 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554293", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3593.607605706788, + "min_y": 5285.831843758319, + "max_x": 3595.568276280673, + "max_y": 5285.831843758319, + "center": [ + 3594.5879409937306, + 5285.831843758319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3595.568276280673, + 5285.831843758319 + ], + [ + 3593.607605706788, + 5285.831843758319 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "554294", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3583.534392578552, + "min_y": 5285.831843758319, + "max_x": 3595.568276280673, + "max_y": 5285.831843758319, + "center": [ + 3589.5513344296123, + 5285.831843758319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3583.534392578552, + 5285.831843758319 + ], + [ + 3595.568276280673, + 5285.831843758319 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554295", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3587.17065709787, + "min_y": 5283.255068077058, + "max_x": 3589.7911794577903, + "max_y": 5284.7109138325695, + "center": [ + 3588.48091827783, + 5283.982990954813 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554296", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3652.148827803877, + "min_y": 5194.324136744056, + "max_x": 3676.086391379278, + "max_y": 5194.324136744056, + "center": [ + 3664.1176095915775, + 5194.324136744056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.086391379278, + 5194.324136744056 + ], + [ + 3652.148827803877, + 5194.324136744056 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554297", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.114658203809, + "min_y": 5277.252611107158, + "max_x": 3639.933247117888, + "max_y": 5278.386825916888, + "center": [ + 3639.0239526608484, + 5277.8197185120225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.933247117888, + 5278.386825916888 + ], + [ + 3638.114658203809, + 5277.252611107158 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554298", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.114658203809, + "min_y": 5278.386825916888, + "max_x": 3639.933247117888, + "max_y": 5279.521040726613, + "center": [ + 3639.0239526608484, + 5278.953933321751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.933247117888, + 5278.386825916888 + ], + [ + 3638.114658203809, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554299", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.563686272259, + "min_y": 5278.386825916888, + "max_x": 3640.302807963517, + "max_y": 5278.386825916888, + "center": [ + 3639.9332471178877, + 5278.386825916888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3640.302807963517, + 5278.386825916888 + ], + [ + 3639.563686272259, + 5278.386825916888 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.933247117888, + "min_y": 5277.252611107158, + "max_x": 3641.751836031961, + "max_y": 5278.386825916888, + "center": [ + 3640.8425415749243, + 5277.8197185120225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.933247117888, + 5278.386825916888 + ], + [ + 3641.751836031961, + 5277.252611107158 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3641.751836031961, + "min_y": 5277.252611107158, + "max_x": 3641.751836031961, + "max_y": 5279.521040726613, + "center": [ + 3641.751836031961, + 5278.386825916886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3641.751836031961, + 5277.252611107158 + ], + [ + 3641.751836031961, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.933247117888, + "min_y": 5278.386825916888, + "max_x": 3641.751836031961, + "max_y": 5279.521040726613, + "center": [ + 3640.8425415749243, + 5278.953933321751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.933247117888, + 5278.386825916888 + ], + [ + 3641.751836031961, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.114658203809, + "min_y": 5277.252611107158, + "max_x": 3638.114658203809, + "max_y": 5279.521040726613, + "center": [ + 3638.114658203809, + 5278.386825916886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3638.114658203809, + 5277.252611107158 + ], + [ + 3638.114658203809, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3637.368070636882, + "min_y": 5277.252611107158, + "max_x": 3637.368070636882, + "max_y": 5279.521040726613, + "center": [ + 3637.368070636882, + 5278.386825916886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3637.368070636882, + 5277.252611107158 + ], + [ + 3637.368070636882, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55429F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3642.498423598891, + "min_y": 5277.252611107158, + "max_x": 3642.498423598891, + "max_y": 5279.521040726613, + "center": [ + 3642.498423598891, + 5278.386825916886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3642.498423598891, + 5277.252611107158 + ], + [ + 3642.498423598891, + 5279.521040726613 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A0", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.040389346855, + "min_y": 5299.327442512446, + "max_x": 3639.858978260933, + "max_y": 5300.461657322174, + "center": [ + 3638.949683803894, + 5299.89454991731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.858978260933, + 5300.461657322174 + ], + [ + 3638.040389346855, + 5299.327442512446 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A1", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.040389346855, + "min_y": 5300.461657322174, + "max_x": 3639.858978260933, + "max_y": 5301.595872131899, + "center": [ + 3638.949683803894, + 5301.028764727036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.858978260933, + 5300.461657322174 + ], + [ + 3638.040389346855, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A2", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.489417415304, + "min_y": 5300.461657322174, + "max_x": 3640.228539106562, + "max_y": 5300.461657322174, + "center": [ + 3639.8589782609333, + 5300.461657322174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3640.228539106562, + 5300.461657322174 + ], + [ + 3639.489417415304, + 5300.461657322174 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A3", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.858978260933, + "min_y": 5299.327442512446, + "max_x": 3641.677567175006, + "max_y": 5300.461657322174, + "center": [ + 3640.7682727179695, + 5299.89454991731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.858978260933, + 5300.461657322174 + ], + [ + 3641.677567175006, + 5299.327442512446 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A4", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3641.677567175006, + "min_y": 5299.327442512446, + "max_x": 3641.677567175006, + "max_y": 5301.595872131899, + "center": [ + 3641.677567175006, + 5300.461657322173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3641.677567175006, + 5299.327442512446 + ], + [ + 3641.677567175006, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A5", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3639.858978260933, + "min_y": 5300.461657322174, + "max_x": 3641.677567175006, + "max_y": 5301.595872131899, + "center": [ + 3640.7682727179695, + 5301.028764727036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3639.858978260933, + 5300.461657322174 + ], + [ + 3641.677567175006, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A6", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3638.040389346855, + "min_y": 5299.327442512446, + "max_x": 3638.040389346855, + "max_y": 5301.595872131899, + "center": [ + 3638.040389346855, + 5300.461657322173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3638.040389346855, + 5299.327442512446 + ], + [ + 3638.040389346855, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A7", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3637.293801779927, + "min_y": 5299.327442512446, + "max_x": 3637.293801779927, + "max_y": 5301.595872131899, + "center": [ + 3637.293801779927, + 5300.461657322173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3637.293801779927, + 5299.327442512446 + ], + [ + 3637.293801779927, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A8", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3642.424154741936, + "min_y": 5299.327442512446, + "max_x": 3642.424154741936, + "max_y": 5301.595872131899, + "center": [ + 3642.424154741936, + 5300.461657322173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3642.424154741936, + 5299.327442512446 + ], + [ + 3642.424154741936, + 5301.595872131899 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3635.483225283849, + "min_y": 5278.414673824315, + "max_x": 3683.556291251735, + "max_y": 5278.414673824315, + "center": [ + 3659.519758267792, + 5278.414673824315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3635.483225283849, + 5278.414673824315 + ], + [ + 3683.556291251735, + 5278.414673824315 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3683.55396543496, + "min_y": 5196.726791586399, + "max_x": 3683.55396543496, + "max_y": 5278.414440772521, + "center": [ + 3683.55396543496, + 5237.57061617946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.55396543496, + 5278.414440772521 + ], + [ + 3683.55396543496, + 5196.726791586399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3634.694114433204, + "min_y": 5300.51178282352, + "max_x": 3689.673302846501, + "max_y": 5300.51178282352, + "center": [ + 3662.1837086398527, + 5300.51178282352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3634.694114433204, + 5300.51178282352 + ], + [ + 3689.673302846501, + 5300.51178282352 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3689.673302846501, + "min_y": 5196.755180456821, + "max_x": 3689.673302846501, + "max_y": 5300.51178282352, + "center": [ + 3689.673302846501, + 5248.63348164017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3689.673302846501, + 5300.51178282352 + ], + [ + 3689.673302846501, + 5196.755180456821 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3679.760852337884, + "min_y": 5194.608857731362, + "max_x": 3694.127693307531, + "max_y": 5194.608857731362, + "center": [ + 3686.9442728227077, + 5194.608857731362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3694.127693307531, + 5194.608857731362 + ], + [ + 3679.760852337884, + 5194.608857731362 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3694.130315645312, + "min_y": 5193.717779951906, + "max_x": 3694.130315645312, + "max_y": 5195.210955085764, + "center": [ + 3694.130315645312, + 5194.4643675188345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3694.130315645312, + 5195.210955085764 + ], + [ + 3694.130315645312, + 5193.717779951906 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3694.379178167624, + "min_y": 5193.717779951906, + "max_x": 3694.379178167624, + "max_y": 5195.210955085764, + "center": [ + 3694.379178167624, + 5194.4643675188345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3694.379178167624, + 5195.210955085764 + ], + [ + 3694.379178167624, + 5193.717779951906 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3679.759171727082, + "min_y": 5177.436361539406, + "max_x": 3679.759171727082, + "max_y": 5194.608596700615, + "center": [ + 3679.759171727082, + 5186.022479120011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3679.759171727082, + 5194.608596700615 + ], + [ + 3679.759171727082, + 5177.436361539406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542B1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3686.669062822388, + "min_y": 5250.408950665912, + "max_x": 3689.289585182308, + "max_y": 5251.864796421423, + "center": [ + 3687.979324002348, + 5251.136873543668 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542B2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3679.820529399555, + "min_y": 5250.181907717725, + "max_x": 3682.4410517594756, + "max_y": 5251.637753473236, + "center": [ + 3681.1307905795156, + 5250.909830595481 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542B3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3683.321528024698, + "min_y": 5192.579318958205, + "max_x": 3685.9420503846186, + "max_y": 5194.035164713716, + "center": [ + 3684.631789204658, + 5193.307241835961 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3679.76985506718, + "min_y": 5185.298261025904, + "max_x": 3682.335903825425, + "max_y": 5185.298261025904, + "center": [ + 3681.0528794463025, + 5185.298261025904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3679.76985506718, + 5185.298261025904 + ], + [ + 3682.335903825425, + 5185.298261025904 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.335903825425, + "min_y": 5185.298261025904, + "max_x": 3682.335903825425, + "max_y": 5188.698510500532, + "center": [ + 3682.335903825425, + 5186.998385763218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.335903825425, + 5185.298261025904 + ], + [ + 3682.335903825425, + 5188.698510500532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3681.667363378167, + "min_y": 5188.704852463586, + "max_x": 3683.160538512024, + "max_y": 5188.704852463586, + "center": [ + 3682.413950945095, + 5188.704852463586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3681.667363378167, + 5188.704852463586 + ], + [ + 3683.160538512024, + 5188.704852463586 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3681.667363378167, + "min_y": 5188.953714985895, + "max_x": 3683.160538512024, + "max_y": 5188.953714985895, + "center": [ + 3682.413950945095, + 5188.953714985895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3681.667363378167, + 5188.953714985895 + ], + [ + 3683.160538512024, + 5188.953714985895 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542B8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3667.434643489224, + "min_y": 5192.182858198487, + "max_x": 3670.0551658491445, + "max_y": 5193.638703953999, + "center": [ + 3668.7449046691845, + 5192.910781076243 + ] + }, + "raw_value": "80A", + "clean_value": "80A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3676.100786920625, + "min_y": 5182.09789838729, + "max_x": 3676.100786920625, + "max_y": 5194.324137612468, + "center": [ + 3676.100786920625, + 5188.211017999879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.100786920625, + 5194.324137612468 + ], + [ + 3676.100786920625, + 5182.09789838729 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3651.900971703279, + "min_y": 5193.515675164418, + "max_x": 3651.900971703279, + "max_y": 5195.008850298275, + "center": [ + 3651.900971703279, + 5194.262262731347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3651.900971703279, + 5195.008850298275 + ], + [ + 3651.900971703279, + 5193.515675164418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3652.149834225591, + "min_y": 5193.515675164418, + "max_x": 3652.149834225591, + "max_y": 5195.008850298275, + "center": [ + 3652.149834225591, + 5194.262262731347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3652.149834225591, + 5195.008850298275 + ], + [ + 3652.149834225591, + 5193.515675164418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3672.607504512877, + "min_y": 5185.37217147244, + "max_x": 3676.099637258443, + "max_y": 5185.373450623427, + "center": [ + 3674.35357088566, + 5185.372811047933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3672.607504512877, + 5185.373450623427 + ], + [ + 3676.099637258443, + 5185.37217147244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3672.605851377563, + "min_y": 5185.373450623427, + "max_x": 3672.605851377563, + "max_y": 5188.772420947068, + "center": [ + 3672.605851377563, + 5187.072935785247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3672.605851377563, + 5185.373450623427 + ], + [ + 3672.605851377563, + 5188.772420947068 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3671.937310930305, + "min_y": 5188.778762910122, + "max_x": 3673.430486064162, + "max_y": 5188.778762910122, + "center": [ + 3672.6838984972337, + 5188.778762910122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3671.937310930305, + 5188.778762910122 + ], + [ + 3673.430486064162, + 5188.778762910122 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3671.937310930305, + "min_y": 5189.027625432433, + "max_x": 3673.430486064162, + "max_y": 5189.027625432433, + "center": [ + 3672.6838984972337, + 5189.027625432433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3671.937310930305, + 5189.027625432433 + ], + [ + 3673.430486064162, + 5189.027625432433 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5542C0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3667.290886243251, + "min_y": 5188.276303978414, + "max_x": 3671.6584235097853, + "max_y": 5189.732149733925, + "center": [ + 3669.474654876518, + 5189.00422685617 + ] + }, + "raw_value": "Spare", + "clean_value": "Spare", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542C1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3683.804399042428, + "min_y": 5188.330349971332, + "max_x": 3688.1719363089624, + "max_y": 5189.786195726843, + "center": [ + 3685.988167675695, + 5189.058272849088 + ] + }, + "raw_value": "Spare", + "clean_value": "Spare", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542C2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3651.426461543804, + "min_y": 5230.73707632249, + "max_x": 3653.38713211769, + "max_y": 5230.73707632249, + "center": [ + 3652.406796830747, + 5230.73707632249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.38713211769, + 5230.73707632249 + ], + [ + 3651.426461543804, + 5230.73707632249 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542C3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3683.561782492954, + "min_y": 5263.637381398651, + "max_x": 3683.561782492954, + "max_y": 5265.598051972538, + "center": [ + 3683.561782492954, + 5264.617716685594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.561782492954, + 5263.637381398651 + ], + [ + 3683.561782492954, + 5265.598051972538 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542C4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3689.67907015079, + "min_y": 5263.751293041007, + "max_x": 3689.67907015079, + "max_y": 5265.711963614893, + "center": [ + 3689.67907015079, + 5264.73162832795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3689.67907015079, + 5263.751293041007 + ], + [ + 3689.67907015079, + 5265.711963614893 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3714.348303706079, + "min_y": 5228.382298568871, + "max_x": 3731.079869497764, + "max_y": 5228.382298568871, + "center": [ + 3722.7140866019217, + 5228.382298568871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3714.348303706079, + 5228.382298568871 + ], + [ + 3731.079869497764, + 5228.382298568871 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.506097702414, + "min_y": 5285.685185218326, + "max_x": 3634.694114521093, + "max_y": 5285.685185218326, + "center": [ + 3624.6001061117536, + 5285.685185218326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.506097702414, + 5285.685185218326 + ], + [ + 3634.694114521093, + 5285.685185218326 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3634.694114521093, + "min_y": 5285.685185218326, + "max_x": 3634.694114521093, + "max_y": 5300.511782815378, + "center": [ + 3634.694114521093, + 5293.098484016852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3634.694114521093, + 5285.685185218326 + ], + [ + 3634.694114521093, + 5300.511782815378 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.321640654783, + "min_y": 5264.974171711074, + "max_x": 3635.483218739677, + "max_y": 5264.974171711074, + "center": [ + 3624.90242969723, + 5264.974171711074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.321640654783, + 5264.974171711074 + ], + [ + 3635.483218739677, + 5264.974171711074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3635.483218739677, + "min_y": 5264.974171711074, + "max_x": 3635.483218739677, + "max_y": 5278.414670224297, + "center": [ + 3635.483218739677, + 5271.694420967686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3635.483218739677, + 5264.974171711074 + ], + [ + 3635.483218739677, + 5278.414670224297 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3676.539848064346, + "min_y": 5181.026112812787, + "max_x": 3676.758740811167, + "max_y": 5182.098274612433, + "center": [ + 3676.649294437757, + 5181.56219371261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.758740811167, + 5182.098274612433 + ], + [ + 3676.539848064346, + 5181.026112812787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5542CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3675.445885654614, + "min_y": 5181.026181019312, + "max_x": 3675.664611293309, + "max_y": 5182.098376922217, + "center": [ + 3675.5552484739615, + 5181.562278970765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3675.445885654614, + 5182.098376922217 + ], + [ + 3675.664611293309, + 5181.026181019312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5542CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3675.664611293309, + "min_y": 5181.026112812787, + "max_x": 3676.539848064346, + "max_y": 5181.026181019312, + "center": [ + 3676.102229678828, + 5181.02614691605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3675.664611293309, + 5181.026181019312 + ], + [ + 3676.539848064346, + 5181.026112812787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5542CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3675.445885654614, + "min_y": 5182.098274612433, + "max_x": 3676.758740811167, + "max_y": 5182.098376922217, + "center": [ + 3676.1023132328905, + 5182.098325767325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3675.445885654614, + 5182.098376922217 + ], + [ + 3676.758740811167, + 5182.098274612433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5542CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3675.53225945413, + "min_y": 5182.098281343473, + "max_x": 3676.672367011659, + "max_y": 5182.098370191172, + "center": [ + 3676.1023132328946, + 5182.098325767322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.672367011659, + 5182.098281343473 + ], + [ + 3675.53225945413, + 5182.098370191172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5542CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3676.100786920625, + "min_y": 5177.440876614443, + "max_x": 3676.100786920625, + "max_y": 5181.027602859859, + "center": [ + 3676.100786920625, + 5179.234239737151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3676.100786920625, + 5181.027602859859 + ], + [ + 3676.100786920625, + 5177.440876614443 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 3672.661846783128, + "min_y": 5181.013467768622, + "max_x": 3677.3653484547804, + "max_y": 5182.133349119015, + "center": [ + 3675.013597618954, + 5181.573408443819 + ] + }, + "raw_value": "80Ax50A", + "clean_value": "80Ax50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5542D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3785.147124686797, + "min_y": 5360.744985007942, + "max_x": 3786.965713600876, + "max_y": 5361.87919981767, + "center": [ + 3786.056419143836, + 5361.312092412806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3785.147124686797, + 5361.87919981767 + ], + [ + 3786.965713600876, + 5360.744985007942 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3783.328535772724, + "min_y": 5361.87919981767, + "max_x": 3785.147124686797, + "max_y": 5363.013414627396, + "center": [ + 3784.23783022976, + 5362.4463072225335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3785.147124686797, + 5361.87919981767 + ], + [ + 3783.328535772724, + 5363.013414627396 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3783.328535772724, + "min_y": 5360.744985007942, + "max_x": 3783.328535772724, + "max_y": 5363.013414627396, + "center": [ + 3783.328535772724, + 5361.879199817669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3783.328535772724, + 5363.013414627396 + ], + [ + 3783.328535772724, + 5360.744985007942 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3786.965713600876, + "min_y": 5360.744985007942, + "max_x": 3786.965713600876, + "max_y": 5363.013414627396, + "center": [ + 3786.965713600876, + 5361.879199817669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3786.965713600876, + 5363.013414627396 + ], + [ + 3786.965713600876, + 5360.744985007942 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3787.125205638386, + "min_y": 5356.096063766024, + "max_x": 3788.943794552466, + "max_y": 5357.230278575752, + "center": [ + 3788.0345000954258, + 5356.663171170888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3787.125205638386, + 5357.230278575752 + ], + [ + 3788.943794552466, + 5356.096063766024 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3785.306616724314, + "min_y": 5357.230278575752, + "max_x": 3787.125205638386, + "max_y": 5358.364493385477, + "center": [ + 3786.21591118135, + 5357.797385980614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3787.125205638386, + 5357.230278575752 + ], + [ + 3785.306616724314, + 5358.364493385477 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3785.306616724314, + "min_y": 5356.096063766024, + "max_x": 3785.306616724314, + "max_y": 5358.364493385477, + "center": [ + 3785.306616724314, + 5357.23027857575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3785.306616724314, + 5358.364493385477 + ], + [ + 3785.306616724314, + 5356.096063766024 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3788.943794552466, + "min_y": 5356.096063766024, + "max_x": 3788.943794552466, + "max_y": 5358.364493385477, + "center": [ + 3788.943794552466, + 5357.23027857575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3788.943794552466, + 5358.364493385477 + ], + [ + 3788.943794552466, + 5356.096063766024 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3774.804399128104, + "min_y": 5357.298359420363, + "max_x": 3785.307900931421, + "max_y": 5357.299143908091, + "center": [ + 3780.0561500297626, + 5357.298751664227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3774.804399128104, + 5357.298359420363 + ], + [ + 3785.307900931421, + 5357.299143908091 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3731.080010524165, + "min_y": 5361.788201716635, + "max_x": 3783.32811122289, + "max_y": 5361.788201716635, + "center": [ + 3757.204060873528, + 5361.788201716635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3731.080010524165, + 5361.788201716635 + ], + [ + 3783.32811122289, + 5361.788201716635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3791.340396043189, + "min_y": 5357.287136713187, + "max_x": 3791.340396043189, + "max_y": 5361.788201716635, + "center": [ + 3791.340396043189, + 5359.537669214911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3791.340396043189, + 5361.788201716635 + ], + [ + 3791.340396043189, + 5357.287136713187 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3788.944277488666, + "min_y": 5357.24050624746, + "max_x": 3807.396739574297, + "max_y": 5357.304272788989, + "center": [ + 3798.1705085314816, + 5357.272389518224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3788.944277488666, + 5357.304272788989 + ], + [ + 3807.396739574297, + 5357.24050624746 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3786.966565446516, + "min_y": 5361.788201716635, + "max_x": 3791.340396043189, + "max_y": 5361.79064638288, + "center": [ + 3789.1534807448525, + 5361.789424049757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3786.966565446516, + 5361.79064638288 + ], + [ + 3791.340396043189, + 5361.788201716635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542E0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3771.498496412798, + "min_y": 5337.619598833742, + "max_x": 3774.1190187727184, + "max_y": 5339.0754445892535, + "center": [ + 3772.8087575927584, + 5338.347521711497 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3690.3333680491023, + "min_y": 5162.5747172250785, + "max_x": 3695.126965373862, + "max_y": 5167.368314549837, + "center": [ + 3692.730166711482, + 5164.971515887458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.730166711482, + 5164.971515887458 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3690.3333680491023, + "min_y": 5160.177918562698, + "max_x": 3695.126965373862, + "max_y": 5164.971515887457, + "center": [ + 3692.730166711482, + 5162.574717225078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.730166711482, + 5162.574717225078 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3692.730166711482, + "min_y": 5160.177918562699, + "max_x": 3696.15084053061, + "max_y": 5167.149155412606, + "center": [ + 3694.440503621046, + 5163.663536987653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.730166711482, + 5160.177918562699 + ], + [ + 3694.657665396751, + 5160.177918562699 + ], + [ + 3696.15084053061, + 5161.671093696557 + ], + [ + 3696.15084053061, + 5167.149155412606 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E4", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3694.704774119824, + "min_y": 5163.756528471354, + "max_x": 3695.608225716853, + "max_y": 5167.149155412606, + "center": [ + 3695.1564999183383, + 5165.45284194198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3694.704774119824, + 5167.149155412606 + ], + [ + 3695.608225716853, + 5163.756528471354 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E5", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3694.554106569115, + "min_y": 5162.447201529959, + "max_x": 3695.608225716853, + "max_y": 5163.756528471354, + "center": [ + 3695.0811661429843, + 5163.101865000656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3695.608225716853, + 5163.756528471354 + ], + [ + 3694.554106569115, + 5162.447201529959 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E6", + "entity_type": "CIRCLE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3692.7319396654557, + "min_y": 5160.455007597613, + "max_x": 3694.9717023662424, + "max_y": 5162.6947702984, + "center": [ + 3693.851821015849, + 5161.574888948006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3693.851821015849, + 5161.574888948006 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E7", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3689.905559403078, + "min_y": 5160.794734033805, + "max_x": 3691.125079901754, + "max_y": 5162.627870933805, + "center": [ + 3690.515319652416, + 5161.711302483805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3690.333957515435, + 5162.627870933805 + ], + [ + 3689.905559403078, + 5162.627870933805 + ], + [ + 3689.905559403078, + 5160.794734033805 + ], + [ + 3691.125079901754, + 5160.794734033805 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E8", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3695.866617720821, + "min_y": 5160.794734033805, + "max_x": 3696.995161148862, + "max_y": 5162.627870933805, + "center": [ + 3696.4308894348414, + 5161.711302483805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3695.866617720821, + 5160.794734033805 + ], + [ + 3696.995161148862, + 5160.794734033805 + ], + [ + 3696.995161148862, + 5162.627870933805 + ], + [ + 3696.15084053061, + 5162.627870933805 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3693.731430875679, + "min_y": 5167.149155412606, + "max_x": 3696.15084053061, + "max_y": 5167.149155412606, + "center": [ + 3694.9411357031445, + 5167.149155412606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3693.731430875679, + 5167.149155412606 + ], + [ + 3696.15084053061, + 5167.149155412606 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3686.505883027808, + "min_y": 5161.574888948006, + "max_x": 3689.905559403078, + "max_y": 5161.581184306468, + "center": [ + 3688.205721215443, + 5161.578036627237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3689.905559403078, + 5161.574888948006 + ], + [ + 3686.505883027808, + 5161.581184306468 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3680.710861215788, + "min_y": 5152.354605891345, + "max_x": 3680.710861215788, + "max_y": 5167.301190326877, + "center": [ + 3680.710861215788, + 5159.827898109112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3680.710861215788, + 5152.354605891345 + ], + [ + 3680.710861215788, + 5167.301190326877 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3690.3658309317234, + "min_y": 5153.215494357528, + "max_x": 3695.159428256483, + "max_y": 5158.009091682286, + "center": [ + 3692.762629594103, + 5155.612293019907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.762629594103, + 5155.612293019907 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542ED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3690.3658309317234, + "min_y": 5150.818695695148, + "max_x": 3695.159428256483, + "max_y": 5155.612293019906, + "center": [ + 3692.762629594103, + 5153.215494357527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.762629594103, + 5153.215494357527 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542EE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3692.762629594103, + "min_y": 5150.818695695147, + "max_x": 3696.18330341323, + "max_y": 5157.789932545054, + "center": [ + 3694.4729665036666, + 5154.304314120101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3692.762629594103, + 5150.818695695147 + ], + [ + 3694.690128279371, + 5150.818695695147 + ], + [ + 3696.18330341323, + 5152.311870829005 + ], + [ + 3696.18330341323, + 5157.789932545054 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542EF", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3694.737237002444, + "min_y": 5154.397305603803, + "max_x": 3695.640688599473, + "max_y": 5157.789932545054, + "center": [ + 3695.1889628009585, + 5156.093619074429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3694.737237002444, + 5157.789932545054 + ], + [ + 3695.640688599473, + 5154.397305603803 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F0", + "entity_type": "LINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3694.586569451736, + "min_y": 5153.087978662408, + "max_x": 3695.640688599473, + "max_y": 5154.397305603803, + "center": [ + 3695.1136290256045, + 5153.742642133106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3695.640688599473, + 5154.397305603803 + ], + [ + 3694.586569451736, + 5153.087978662408 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F1", + "entity_type": "CIRCLE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3692.764402548076, + "min_y": 5151.095784730061, + "max_x": 3695.0041652488626, + "max_y": 5153.335547430847, + "center": [ + 3693.884283898469, + 5152.215666080454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3693.884283898469, + 5152.215666080454 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F2", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3689.938022285698, + "min_y": 5151.435511166254, + "max_x": 3691.157542784374, + "max_y": 5153.268648066253, + "center": [ + 3690.5477825350363, + 5152.352079616254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3690.366420398055, + 5153.268648066253 + ], + [ + 3689.938022285698, + 5153.268648066253 + ], + [ + 3689.938022285698, + 5151.435511166254 + ], + [ + 3691.157542784374, + 5151.435511166254 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F3", + "entity_type": "LWPOLYLINE", + "layer": "VALVE NO", + "bbox": { + "min_x": 3695.899080603441, + "min_y": 5151.435511166254, + "max_x": 3697.027624031483, + "max_y": 5153.268648066253, + "center": [ + 3696.4633523174616, + 5152.352079616254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3695.899080603441, + 5151.435511166254 + ], + [ + 3697.027624031483, + 5151.435511166254 + ], + [ + 3697.027624031483, + 5153.268648066253 + ], + [ + 3696.18330341323, + 5153.268648066253 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3693.7638937583, + "min_y": 5157.789932545054, + "max_x": 3696.18330341323, + "max_y": 5157.789932545054, + "center": [ + 3694.973598585765, + 5157.789932545054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3693.7638937583, + 5157.789932545054 + ], + [ + 3696.18330341323, + 5157.789932545054 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3686.274773585441, + "min_y": 5152.354605891345, + "max_x": 3689.938591381853, + "max_y": 5152.354605891345, + "center": [ + 3688.106682483647, + 5152.354605891345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3689.938591381853, + 5152.354605891345 + ], + [ + 3686.274773585441, + 5152.354605891345 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3707.706890596051, + "min_y": 5178.980274386647, + "max_x": 3710.3274129559713, + "max_y": 5180.436120142158, + "center": [ + 3709.017151776011, + 5179.708197264403 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3704.423419231369, + "min_y": 5161.777384352941, + "max_x": 3711.203277092844, + "max_y": 5161.777384352941, + "center": [ + 3707.813348162106, + 5161.777384352941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3704.423419231369, + 5161.777384352941 + ], + [ + 3711.203277092844, + 5161.777384352941 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3711.203277092844, + "min_y": 5161.777384352941, + "max_x": 3711.203277092844, + "max_y": 5189.719225054979, + "center": [ + 3711.203277092844, + 5175.7483047039605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.203277092844, + 5161.777384352941 + ], + [ + 3711.203277092844, + 5189.719225054979 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3711.203277092844, + "min_y": 5198.02542482886, + "max_x": 3718.090874497845, + "max_y": 5198.02542482886, + "center": [ + 3714.647075795345, + 5198.02542482886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.203277092844, + 5198.02542482886 + ], + [ + 3718.090874497845, + 5198.02542482886 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542FA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3719.309997261603, + "min_y": 5179.218485550017, + "max_x": 3721.930519621523, + "max_y": 5180.6743313055285, + "center": [ + 3720.6202584415632, + 5179.946408427773 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5542FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3702.59313273078, + "min_y": 5160.596850696079, + "max_x": 3704.411721644861, + "max_y": 5161.731065505808, + "center": [ + 3703.50242718782, + 5161.163958100944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3702.59313273078, + 5161.731065505808 + ], + [ + 3704.411721644861, + 5160.596850696079 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3700.774543816709, + "min_y": 5161.731065505808, + "max_x": 3702.59313273078, + "max_y": 5162.865280315532, + "center": [ + 3701.683838273744, + 5162.2981729106705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3702.59313273078, + 5161.731065505808 + ], + [ + 3700.774543816709, + 5162.865280315532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3700.774543816709, + "min_y": 5160.596850696079, + "max_x": 3700.774543816709, + "max_y": 5162.865280315532, + "center": [ + 3700.774543816709, + 5161.731065505805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3700.774543816709, + 5162.865280315532 + ], + [ + 3700.774543816709, + 5160.596850696079 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5542FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3704.411721644861, + "min_y": 5160.596850696079, + "max_x": 3704.411721644861, + "max_y": 5162.865280315532, + "center": [ + 3704.411721644861, + 5161.731065505805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3704.411721644861, + 5162.865280315532 + ], + [ + 3704.411721644861, + 5160.596850696079 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554300", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3702.639081002573, + "min_y": 5151.016636027305, + "max_x": 3704.457669916653, + "max_y": 5152.150850837034, + "center": [ + 3703.548375459613, + 5151.583743432169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3702.639081002573, + 5152.150850837034 + ], + [ + 3704.457669916653, + 5151.016636027305 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554301", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3700.820492088501, + "min_y": 5152.150850837034, + "max_x": 3702.639081002573, + "max_y": 5153.285065646758, + "center": [ + 3701.729786545537, + 5152.717958241896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3702.639081002573, + 5152.150850837034 + ], + [ + 3700.820492088501, + 5153.285065646758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554302", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3700.820492088501, + "min_y": 5151.016636027305, + "max_x": 3700.820492088501, + "max_y": 5153.285065646758, + "center": [ + 3700.820492088501, + 5152.150850837032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3700.820492088501, + 5153.285065646758 + ], + [ + 3700.820492088501, + 5151.016636027305 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554303", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3704.457669916653, + "min_y": 5151.016636027305, + "max_x": 3704.457669916653, + "max_y": 5153.285065646758, + "center": [ + 3704.457669916653, + 5152.150850837032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3704.457669916653, + 5153.285065646758 + ], + [ + 3704.457669916653, + 5151.016636027305 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554305", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.078345282573, + "min_y": 5161.027480572037, + "max_x": 3698.078345282573, + "max_y": 5162.520655705893, + "center": [ + 3698.078345282573, + 5161.774068138965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.078345282573, + 5162.520655705893 + ], + [ + 3698.078345282573, + 5161.027480572037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554306", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.327207804885, + "min_y": 5161.027480572037, + "max_x": 3698.327207804885, + "max_y": 5162.520655705893, + "center": [ + 3698.327207804885, + 5161.774068138965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.327207804885, + 5162.520655705893 + ], + [ + 3698.327207804885, + 5161.027480572037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554307", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.239521169961, + "min_y": 5151.625553807793, + "max_x": 3698.239521169961, + "max_y": 5153.11872894165, + "center": [ + 3698.239521169961, + 5152.372141374722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.239521169961, + 5153.11872894165 + ], + [ + 3698.239521169961, + 5151.625553807793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554308", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.488383692273, + "min_y": 5151.625553807793, + "max_x": 3698.488383692273, + "max_y": 5153.11872894165, + "center": [ + 3698.488383692273, + 5152.372141374722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.488383692273, + 5153.11872894165 + ], + [ + 3698.488383692273, + 5151.625553807793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554309", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3697.027612305977, + "min_y": 5152.388620899643, + "max_x": 3698.239523274184, + "max_y": 5152.388620899643, + "center": [ + 3697.6335677900806, + 5152.388620899643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3697.027612305977, + 5152.388620899643 + ], + [ + 3698.239523274184, + 5152.388620899643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.488334410497, + "min_y": 5152.388620899643, + "max_x": 3700.820394321863, + "max_y": 5152.388620899643, + "center": [ + 3699.65436436618, + 5152.388620899643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.488334410497, + 5152.388620899643 + ], + [ + 3700.820394321863, + 5152.388620899643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3696.980985997481, + "min_y": 5161.645705623016, + "max_x": 3698.078597999752, + "max_y": 5161.645705623016, + "center": [ + 3697.529791998617, + 5161.645705623016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3696.980985997481, + 5161.645705623016 + ], + [ + 3698.078597999752, + 5161.645705623016 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3698.325091028813, + "min_y": 5161.645705623016, + "max_x": 3700.777585263885, + "max_y": 5161.645705623016, + "center": [ + 3699.551338146349, + 5161.645705623016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3698.325091028813, + 5161.645705623016 + ], + [ + 3700.777585263885, + 5161.645705623016 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3684.68987405543, + "min_y": 5160.43309305011, + "max_x": 3686.508462969511, + "max_y": 5161.567307859838, + "center": [ + 3685.599168512471, + 5161.000200454974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3684.68987405543, + 5161.567307859838 + ], + [ + 3686.508462969511, + 5160.43309305011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.871285141358, + "min_y": 5161.567307859838, + "max_x": 3684.68987405543, + "max_y": 5162.701522669563, + "center": [ + 3683.780579598394, + 5162.134415264701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3684.68987405543, + 5161.567307859838 + ], + [ + 3682.871285141358, + 5162.701522669563 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55430F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.871285141358, + "min_y": 5160.43309305011, + "max_x": 3682.871285141358, + "max_y": 5162.701522669563, + "center": [ + 3682.871285141358, + 5161.567307859837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.871285141358, + 5162.701522669563 + ], + [ + 3682.871285141358, + 5160.43309305011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554310", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3686.508462969511, + "min_y": 5160.43309305011, + "max_x": 3686.508462969511, + "max_y": 5162.701522669563, + "center": [ + 3686.508462969511, + 5161.567307859837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3686.508462969511, + 5162.701522669563 + ], + [ + 3686.508462969511, + 5160.43309305011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554312", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3684.45440708972, + "min_y": 5151.02188956347, + "max_x": 3686.2729960038, + "max_y": 5152.156104373199, + "center": [ + 3685.3637015467602, + 5151.588996968334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3684.45440708972, + 5152.156104373199 + ], + [ + 3686.2729960038, + 5151.02188956347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.635818175648, + "min_y": 5152.156104373199, + "max_x": 3684.45440708972, + "max_y": 5153.290319182923, + "center": [ + 3683.5451126326843, + 5152.72321177806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3684.45440708972, + 5152.156104373199 + ], + [ + 3682.635818175648, + 5153.290319182923 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554314", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.635818175648, + "min_y": 5151.02188956347, + "max_x": 3682.635818175648, + "max_y": 5153.290319182923, + "center": [ + 3682.635818175648, + 5152.156104373196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.635818175648, + 5153.290319182923 + ], + [ + 3682.635818175648, + 5151.02188956347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554315", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3686.2729960038, + "min_y": 5151.02188956347, + "max_x": 3686.2729960038, + "max_y": 5153.290319182923, + "center": [ + 3686.2729960038, + 5152.156104373196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3686.2729960038, + 5153.290319182923 + ], + [ + 3686.2729960038, + 5151.02188956347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554317", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3680.710861215788, + "min_y": 5161.574888948006, + "max_x": 3682.874161318952, + "max_y": 5161.574888948006, + "center": [ + 3681.79251126737, + 5161.574888948006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.874161318952, + 5161.574888948006 + ], + [ + 3680.710861215788, + 5161.574888948006 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3680.743893194563, + "min_y": 5152.354605891345, + "max_x": 3682.634682127817, + "max_y": 5152.354605891345, + "center": [ + 3681.68928766119, + 5152.354605891345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.634682127817, + 5152.354605891345 + ], + [ + 3680.743893194563, + 5152.354605891345 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554319", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5192.290912359712, + "max_x": 3711.178361755573, + "max_y": 5194.10950127379, + "center": [ + 3710.611254350709, + 5193.200206816751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.178361755573, + 5192.290912359712 + ], + [ + 3710.044146945844, + 5194.10950127379 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3711.178361755573, + "min_y": 5192.290912359712, + "max_x": 3712.312576565298, + "max_y": 5194.10950127379, + "center": [ + 3711.7454691604353, + 5193.200206816751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.178361755573, + 5192.290912359712 + ], + [ + 3712.312576565298, + 5194.10950127379 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431B", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3711.178361755573, + "min_y": 5191.921351514082, + "max_x": 3711.178361755573, + "max_y": 5192.660473205341, + "center": [ + 3711.178361755573, + 5192.290912359711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.178361755573, + 5191.921351514082 + ], + [ + 3711.178361755573, + 5192.660473205341 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5190.472323445639, + "max_x": 3711.178361755573, + "max_y": 5192.290912359712, + "center": [ + 3710.611254350709, + 5191.381617902675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.178361755573, + 5192.290912359712 + ], + [ + 3710.044146945844, + 5190.472323445639 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5190.472323445639, + "max_x": 3712.312576565298, + "max_y": 5190.472323445639, + "center": [ + 3711.178361755571, + 5190.472323445639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3710.044146945844, + 5190.472323445639 + ], + [ + 3712.312576565298, + 5190.472323445639 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3711.178361755573, + "min_y": 5190.472323445639, + "max_x": 3712.312576565298, + "max_y": 5192.290912359712, + "center": [ + 3711.7454691604353, + 5191.381617902675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.178361755573, + 5192.290912359712 + ], + [ + 3712.312576565298, + 5190.472323445639 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55431F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5194.10950127379, + "max_x": 3712.312576565298, + "max_y": 5194.10950127379, + "center": [ + 3711.178361755571, + 5194.10950127379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3710.044146945844, + 5194.10950127379 + ], + [ + 3712.312576565298, + 5194.10950127379 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554320", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5194.856088840719, + "max_x": 3712.312576565298, + "max_y": 5194.856088840719, + "center": [ + 3711.178361755571, + 5194.856088840719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3710.044146945844, + 5194.856088840719 + ], + [ + 3712.312576565298, + 5194.856088840719 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554321", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3710.044146945844, + "min_y": 5189.72573587871, + "max_x": 3712.312576565298, + "max_y": 5189.72573587871, + "center": [ + 3711.178361755571, + 5189.72573587871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3710.044146945844, + 5189.72573587871 + ], + [ + 3712.312576565298, + 5189.72573587871 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554322", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5192.362187802209, + "max_x": 3718.13562453085, + "max_y": 5194.180776716287, + "center": [ + 3717.5685171259856, + 5193.271482259248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.13562453085, + 5192.362187802209 + ], + [ + 3717.001409721121, + 5194.180776716287 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554323", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3718.13562453085, + "min_y": 5192.362187802209, + "max_x": 3719.269839340574, + "max_y": 5194.180776716287, + "center": [ + 3718.702731935712, + 5193.271482259248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.13562453085, + 5192.362187802209 + ], + [ + 3719.269839340574, + 5194.180776716287 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554324", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3718.13562453085, + "min_y": 5191.992626956579, + "max_x": 3718.13562453085, + "max_y": 5192.731748647838, + "center": [ + 3718.13562453085, + 5192.362187802209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.13562453085, + 5191.992626956579 + ], + [ + 3718.13562453085, + 5192.731748647838 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554325", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5190.543598888136, + "max_x": 3718.13562453085, + "max_y": 5192.362187802209, + "center": [ + 3717.5685171259856, + 5191.452893345173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.13562453085, + 5192.362187802209 + ], + [ + 3717.001409721121, + 5190.543598888136 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554326", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5190.543598888136, + "max_x": 3719.269839340574, + "max_y": 5190.543598888136, + "center": [ + 3718.1356245308475, + 5190.543598888136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3717.001409721121, + 5190.543598888136 + ], + [ + 3719.269839340574, + 5190.543598888136 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554327", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3718.13562453085, + "min_y": 5190.543598888136, + "max_x": 3719.269839340574, + "max_y": 5192.362187802209, + "center": [ + 3718.702731935712, + 5191.452893345173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.13562453085, + 5192.362187802209 + ], + [ + 3719.269839340574, + 5190.543598888136 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554328", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5194.180776716287, + "max_x": 3719.269839340574, + "max_y": 5194.180776716287, + "center": [ + 3718.1356245308475, + 5194.180776716287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3717.001409721121, + 5194.180776716287 + ], + [ + 3719.269839340574, + 5194.180776716287 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554329", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5194.927364283215, + "max_x": 3719.269839340574, + "max_y": 5194.927364283215, + "center": [ + 3718.1356245308475, + 5194.927364283215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3717.001409721121, + 5194.927364283215 + ], + [ + 3719.269839340574, + 5194.927364283215 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55432A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3717.001409721121, + "min_y": 5189.797011321206, + "max_x": 3719.269839340574, + "max_y": 5189.797011321206, + "center": [ + 3718.1356245308475, + 5189.797011321206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3717.001409721121, + 5189.797011321206 + ], + [ + 3719.269839340574, + 5189.797011321206 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55432B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3711.203277092844, + "min_y": 5194.853223984756, + "max_x": 3711.203277092844, + "max_y": 5198.02542482886, + "center": [ + 3711.203277092844, + 5196.439324406809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3711.203277092844, + 5194.853223984756 + ], + [ + 3711.203277092844, + 5198.02542482886 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55432C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3718.079985655136, + "min_y": 5194.924344074264, + "max_x": 3718.079985655136, + "max_y": 5198.023414551185, + "center": [ + 3718.079985655136, + 5196.473879312724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.079985655136, + 5194.924344074264 + ], + [ + 3718.079985655136, + 5198.023414551185 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55432D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3658.427089059271, + "min_y": 5183.782287329919, + "max_x": 3670.106445294246, + "max_y": 5183.782287329919, + "center": [ + 3664.2667671767585, + 5183.782287329919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.106445294246, + 5183.782287329919 + ], + [ + 3658.427089059271, + 5183.782287329919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55432E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3658.451602402412, + "min_y": 5177.519362455889, + "max_x": 3658.451602402412, + "max_y": 5183.782287329919, + "center": [ + 3658.451602402412, + 5180.650824892904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3658.451602402412, + 5183.782287329919 + ], + [ + 3658.451602402412, + 5177.519362455889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55432F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3669.485389112105, + "min_y": 5177.610484194911, + "max_x": 3669.704281858926, + "max_y": 5178.682645994557, + "center": [ + 3669.5948354855154, + 5178.146565094734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3669.485389112105, + 5177.610484194911 + ], + [ + 3669.704281858926, + 5178.682645994557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3670.579518629963, + "min_y": 5177.610381885126, + "max_x": 3670.798244268659, + "max_y": 5178.682577788032, + "center": [ + 3670.688881449311, + 5178.14647983658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.798244268659, + 5177.610381885126 + ], + [ + 3670.579518629963, + 5178.682577788032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3669.704281858926, + "min_y": 5178.682577788032, + "max_x": 3670.579518629963, + "max_y": 5178.682645994557, + "center": [ + 3670.1419002444445, + 5178.682611891294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.579518629963, + 5178.682577788032 + ], + [ + 3669.704281858926, + 5178.682645994557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554332", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3669.485389112105, + "min_y": 5177.610381885126, + "max_x": 3670.798244268659, + "max_y": 5177.610484194911, + "center": [ + 3670.1418166903823, + 5177.6104330400185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.798244268659, + 5177.610381885126 + ], + [ + 3669.485389112105, + 5177.610484194911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3669.571762911613, + "min_y": 5177.610388616172, + "max_x": 3670.711870469143, + "max_y": 5177.610477463871, + "center": [ + 3670.1418166903777, + 5177.610433040021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3669.571762911613, + 5177.610477463871 + ], + [ + 3670.711870469143, + 5177.610388616172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554334", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 3665.833401286713, + "min_y": 5177.567587337005, + "max_x": 3671.8807605788375, + "max_y": 5178.687468687398, + "center": [ + 3668.8570809327753, + 5178.127528012201 + ] + }, + "raw_value": "125Ax100A", + "clean_value": "125Ax100A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3670.106445294246, + "min_y": 5178.690883702931, + "max_x": 3670.106445294246, + "max_y": 5183.782287329919, + "center": [ + 3670.106445294246, + 5181.236585516425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.106445294246, + 5178.690883702931 + ], + [ + 3670.106445294246, + 5183.782287329919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554336", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3649.50630828174, + "min_y": 5178.261674044825, + "max_x": 3659.1148902681157, + "max_y": 5179.717519800336, + "center": [ + 3654.310599274928, + 5178.98959692258 + ] + }, + "raw_value": "Trench Vent", + "clean_value": "Trench Vent", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554337", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3714.352524503933, + "min_y": 5198.014268072619, + "max_x": 3714.352524503933, + "max_y": 5228.365122594712, + "center": [ + 3714.352524503933, + 5213.189695333665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3714.352524503933, + 5198.014268072619 + ], + [ + 3714.352524503933, + 5228.365122594712 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3670.102972070984, + "min_y": 5175.464229751848, + "max_x": 3670.102972070984, + "max_y": 5177.602901536741, + "center": [ + 3670.102972070984, + 5176.533565644295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3670.102972070984, + 5177.602901536741 + ], + [ + 3670.102972070984, + 5175.464229751848 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554339", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3605.516106534263, + "min_y": 5219.55341462621, + "max_x": 3608.1366288941836, + "max_y": 5221.009260381721, + "center": [ + 3606.826367714223, + 5220.281337503966 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55433A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4544.968931531093, + "min_y": 5297.801974071123, + "max_x": 4553.912802295874, + "max_y": 5297.801974071123, + "center": [ + 4549.440866913484, + 5297.801974071123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4544.968931531093, + 5297.801974071123 + ], + [ + 4553.912802295874, + 5297.801974071123 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55433B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.699519377487, + "min_y": 5297.805161307607, + "max_x": 4547.699519377487, + "max_y": 5298.43558357187, + "center": [ + 4547.699519377487, + 5298.120372439738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.699519377487, + 5297.805161307607 + ], + [ + 4547.699519377487, + 5298.43558357187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55433C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4547.376731651544, + "min_y": 5298.950158035837, + "max_x": 4548.022307103431, + "max_y": 5299.595733487724, + "center": [ + 4547.699519377487, + 5299.272945761781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.699519377487, + 5299.272945761781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55433D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.195248891243, + "min_y": 5298.43072858382, + "max_x": 4547.53370278021, + "max_y": 5298.996003941013, + "center": [ + 4547.364475835726, + 5298.7133662624165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.53370278021, + 5298.996003941013 + ], + [ + 4547.195248891243, + 5298.43072858382 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55433E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.195248891243, + "min_y": 5298.43072858382, + "max_x": 4548.203789863733, + "max_y": 5298.43072858382, + "center": [ + 4547.699519377487, + 5298.43072858382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.195248891243, + 5298.43072858382 + ], + [ + 4548.203789863733, + 5298.43072858382 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55433F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.865335974766, + "min_y": 5298.43072858382, + "max_x": 4548.203789863733, + "max_y": 5298.996003941013, + "center": [ + 4548.034562919249, + 5298.7133662624165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4548.203789863733, + 5298.43072858382 + ], + [ + 4547.865335974766, + 5298.996003941013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.195248891243, + "min_y": 5299.54988758254, + "max_x": 4547.53370278021, + "max_y": 5300.115162939742, + "center": [ + 4547.364475835726, + 5299.832525261141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.53370278021, + 5299.54988758254 + ], + [ + 4547.195248891243, + 5300.115162939742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.195248891243, + "min_y": 5300.115162939742, + "max_x": 4548.203789863733, + "max_y": 5300.115162939742, + "center": [ + 4547.699519377487, + 5300.115162939742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.195248891243, + 5300.115162939742 + ], + [ + 4548.203789863733, + 5300.115162939742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554342", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.865335974766, + "min_y": 5299.54988758254, + "max_x": 4548.203789863733, + "max_y": 5300.115162939742, + "center": [ + 4548.034562919249, + 5299.832525261141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4548.203789863733, + 5300.115162939742 + ], + [ + 4547.865335974766, + 5299.54988758254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554343", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4547.688816135181, + "min_y": 5300.131034670269, + "max_x": 4547.688816135181, + "max_y": 5300.736863322524, + "center": [ + 4547.688816135181, + 5300.433948996397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.688816135181, + 5300.131034670269 + ], + [ + 4547.688816135181, + 5300.736863322524 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554344", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4551.423141092411, + "min_y": 5297.800285042643, + "max_x": 4551.423141092411, + "max_y": 5364.464185318286, + "center": [ + 4551.423141092411, + 5331.132235180465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4551.423141092411, + 5364.464185318286 + ], + [ + 4551.423141092411, + 5297.800285042643 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "554345", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5195.697733416917, + "max_x": 3572.062354289274, + "max_y": 5200.524627989219, + "center": [ + 3572.062354289274, + 5198.111180703068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3572.062354289274, + 5200.524627989219 + ], + [ + 3572.062354289274, + 5195.697733416917 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554346", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5195.697721387994, + "max_x": 3594.489189449476, + "max_y": 5195.697733416917, + "center": [ + 3583.2757718693747, + 5195.697727402456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3572.062354289274, + 5195.697733416917 + ], + [ + 3594.489189449476, + 5195.697721387994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3594.489189449476, + "min_y": 5195.697721387994, + "max_x": 3596.902650540495, + "max_y": 5198.111182479014, + "center": [ + 3595.695919994985, + 5196.904451933504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3594.489189449476, + 5195.697721387994 + ], + [ + 3596.902650540495, + 5198.111182479014 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3594.489189449476, + "min_y": 5198.111182479014, + "max_x": 3596.902650540495, + "max_y": 5200.524643570032, + "center": [ + 3595.695919994985, + 5199.317913024523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3596.902650540495, + 5198.111182479014 + ], + [ + 3594.489189449476, + 5200.524643570032 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5195.697733416917, + "max_x": 3572.062354289274, + "max_y": 5200.524627989219, + "center": [ + 3572.062354289274, + 5198.111180703068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3572.062354289274, + 5200.524627989219 + ], + [ + 3572.062354289274, + 5195.697733416917 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5195.697721387994, + "max_x": 3594.489189449476, + "max_y": 5195.697733416917, + "center": [ + 3583.2757718693747, + 5195.697727402456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3572.062354289274, + 5195.697733416917 + ], + [ + 3594.489189449476, + 5195.697721387994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3572.062354289274, + "min_y": 5200.524627989219, + "max_x": 3594.489189449476, + "max_y": 5200.524643570032, + "center": [ + 3583.2757718693747, + 5200.524635779626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3572.062354289274, + 5200.524627989219 + ], + [ + 3594.489189449476, + 5200.524643570032 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3594.489189449476, + "min_y": 5195.697721387994, + "max_x": 3596.902650540495, + "max_y": 5198.111182479014, + "center": [ + 3595.695919994985, + 5196.904451933504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3594.489189449476, + 5195.697721387994 + ], + [ + 3596.902650540495, + 5198.111182479014 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3594.489189449476, + "min_y": 5198.111182479014, + "max_x": 3596.902650540495, + "max_y": 5200.524643570032, + "center": [ + 3595.695919994985, + 5199.317913024523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3596.902650540495, + 5198.111182479014 + ], + [ + 3594.489189449476, + 5200.524643570032 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3576.420634994484, + "min_y": 5197.464258833779, + "max_x": 3596.568576700388, + "max_y": 5199.143253975938, + "center": [ + 3586.494605847436, + 5198.303756404859 + ] + }, + "raw_value": "1F #10 Plant Utility", + "clean_value": "1F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55434F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.818527173366, + "min_y": 5196.487608034385, + "max_x": 3684.311702307223, + "max_y": 5196.487608034385, + "center": [ + 3683.5651147402946, + 5196.487608034385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.818527173366, + 5196.487608034385 + ], + [ + 3684.311702307223, + 5196.487608034385 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554350", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3682.818527173366, + "min_y": 5196.736470556697, + "max_x": 3684.311702307223, + "max_y": 5196.736470556697, + "center": [ + 3683.5651147402946, + 5196.736470556697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3682.818527173366, + 5196.736470556697 + ], + [ + 3684.311702307223, + 5196.736470556697 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554351", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3688.959707723264, + "min_y": 5196.515659053769, + "max_x": 3690.452882857122, + "max_y": 5196.515659053769, + "center": [ + 3689.706295290193, + 5196.515659053769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3688.959707723264, + 5196.515659053769 + ], + [ + 3690.452882857122, + 5196.515659053769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554352", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3688.959707723264, + "min_y": 5196.76452157608, + "max_x": 3690.452882857122, + "max_y": 5196.76452157608, + "center": [ + 3689.706295290193, + 5196.76452157608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3688.959707723264, + 5196.76452157608 + ], + [ + 3690.452882857122, + 5196.76452157608 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554353", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3683.55396543496, + "min_y": 5194.604051060615, + "max_x": 3683.55396543496, + "max_y": 5196.487607228073, + "center": [ + 3683.55396543496, + 5195.545829144345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3683.55396543496, + 5196.487607228073 + ], + [ + 3683.55396543496, + 5194.604051060615 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554354", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3689.673302846501, + "min_y": 5194.604051060615, + "max_x": 3689.673302846501, + "max_y": 5196.515168651774, + "center": [ + 3689.673302846501, + 5195.559609856195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3689.673302846501, + 5196.515168651774 + ], + [ + 3689.673302846501, + 5194.604051060615 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554355", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3596.967016618263, + "min_y": 5198.119074388111, + "max_x": 3606.445235412863, + "max_y": 5198.119074388111, + "center": [ + 3601.7061260155633, + 5198.119074388111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3596.967016618263, + 5198.119074388111 + ], + [ + 3606.445235412863, + 5198.119074388111 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554356", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3610.109022309525, + "min_y": 5198.119074244862, + "max_x": 3613.537117153756, + "max_y": 5198.119074684596, + "center": [ + 3611.8230697316403, + 5198.119074464728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3610.109022309525, + 5198.119074684596 + ], + [ + 3613.537117153756, + 5198.119074244862 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554357", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3616.131774690936, + "min_y": 5191.471616917517, + "max_x": 3622.201970731107, + "max_y": 5191.471616917524, + "center": [ + 3619.1668727110214, + 5191.471616917521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3622.201970731107, + 5191.471616917524 + ], + [ + 3616.131774690936, + 5191.471616917517 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554358", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3606.447411429432, + "min_y": 5191.471616917524, + "max_x": 3613.645498907244, + "max_y": 5191.471616917529, + "center": [ + 3610.046455168338, + 5191.471616917526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3613.645498907244, + 5191.471616917524 + ], + [ + 3606.447411429432, + 5191.471616917529 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554359", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3622.201970731107, + "min_y": 5191.471616917524, + "max_x": 3623.499245111993, + "max_y": 5191.471616917524, + "center": [ + 3622.85060792155, + 5191.471616917524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3622.201970731107, + 5191.471616917524 + ], + [ + 3623.499245111993, + 5191.471616917524 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3623.499245111993, + "min_y": 5191.471616917524, + "max_x": 3623.499245111993, + "max_y": 5198.119074244857, + "center": [ + 3623.499245111993, + 5194.795345581191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3623.499245111993, + 5191.471616917524 + ], + [ + 3623.499245111993, + 5198.119074244857 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3606.447411429432, + "min_y": 5191.471616917529, + "max_x": 3606.447411429432, + "max_y": 5198.119074244857, + "center": [ + 3606.447411429432, + 5194.795345581193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3606.447411429432, + 5198.119074244857 + ], + [ + 3606.447411429432, + 5191.471616917529 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435C", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3618.12528316251, + "min_y": 5196.658063131064, + "max_x": 3618.12528316251, + "max_y": 5198.119074244843, + "center": [ + 3618.12528316251, + 5197.388568687954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.12528316251, + 5196.658063131064 + ], + [ + 3618.12528316251, + 5198.119074244843 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3618.12528316251, + "min_y": 5193.399311981537, + "max_x": 3618.12528316251, + "max_y": 5194.239955505501, + "center": [ + 3618.12528316251, + 5193.819633743518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.12528316251, + 5194.239955505501 + ], + [ + 3618.12528316251, + 5193.399311981537 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3606.445207320254, + "min_y": 5198.119074608104, + "max_x": 3607.639580090341, + "max_y": 5198.11907468458, + "center": [ + 3607.0423937052974, + 5198.119074646342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3606.445207320254, + 5198.11907468458 + ], + [ + 3607.639580090341, + 5198.119074608104 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55435F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3616.481301616768, + "min_y": 5198.11907424484, + "max_x": 3620.023194720626, + "max_y": 5198.11907424484, + "center": [ + 3618.2522481686974, + 5198.11907424484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3616.481301616768, + 5198.11907424484 + ], + [ + 3620.023194720626, + 5198.11907424484 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554360", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883046, + "min_y": 5192.745600376452, + "max_x": 3617.576511883046, + "max_y": 5193.488917492448, + "center": [ + 3617.576511883046, + 5193.11725893445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.576511883046, + 5193.488917492448 + ], + [ + 3617.576511883046, + 5192.745600376452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554361", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3618.674054441977, + "min_y": 5192.745600376452, + "max_x": 3618.674054441977, + "max_y": 5193.488917492448, + "center": [ + 3618.674054441977, + 5193.11725893445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.674054441977, + 5193.488917492448 + ], + [ + 3618.674054441977, + 5192.745600376452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554362", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883046, + "min_y": 5192.745600376452, + "max_x": 3618.674054441977, + "max_y": 5192.745600376452, + "center": [ + 3618.1252831625116, + 5192.745600376452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.576511883046, + 5192.745600376452 + ], + [ + 3618.674054441977, + 5192.745600376452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3622.492908350346, + "min_y": 5197.596680522535, + "max_x": 3622.492910433575, + "max_y": 5198.641467967146, + "center": [ + 3622.492909391961, + 5198.119074244841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3622.492910433575, + 5198.641467967146 + ], + [ + 3622.492908350346, + 5197.596680522535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554364", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3620.023058591183, + "min_y": 5197.596685447225, + "max_x": 3620.023060674411, + "max_y": 5198.641472891847, + "center": [ + 3620.0230596327974, + 5198.119079169536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3620.023060674411, + 5198.641472891847 + ], + [ + 3620.023058591183, + 5197.596685447225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554365", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3620.416560604634, + "min_y": 5198.284728205273, + "max_x": 3620.981270577006, + "max_y": 5198.622845104457, + "center": [ + 3620.69891559082, + 5198.453786654865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3620.416560604634, + 5198.622845104457 + ], + [ + 3620.981270577006, + 5198.284728205273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554366", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3621.534600227627, + "min_y": 5197.615308310126, + "max_x": 3622.099310199999, + "max_y": 5197.953425209305, + "center": [ + 3621.816955213813, + 5197.784366759715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3621.534600227627, + 5197.953425209305 + ], + [ + 3622.099310199999, + 5197.615308310126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554367", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3622.099310199999, + "min_y": 5197.615308310126, + "max_x": 3622.099312208945, + "max_y": 5198.622841749171, + "center": [ + 3622.0993112044716, + 5198.119075029648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3622.099312208945, + 5198.622841749171 + ], + [ + 3622.099310199999, + 5197.615308310126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554368", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3620.416558595685, + "min_y": 5197.615311665407, + "max_x": 3620.416560604634, + "max_y": 5198.622845104457, + "center": [ + 3620.4165596001594, + 5198.119078384932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3620.416560604634, + 5198.622845104457 + ], + [ + 3620.416558595685, + 5197.615311665407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554369", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3620.416558595685, + "min_y": 5197.615311665407, + "max_x": 3620.981269916414, + "max_y": 5197.953426312611, + "center": [ + 3620.6989142560496, + 5197.784368989009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3620.416558595685, + 5197.615311665407 + ], + [ + 3620.981269916414, + 5197.953426312611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3621.534600888219, + "min_y": 5198.284727101973, + "max_x": 3622.099312208945, + "max_y": 5198.622841749171, + "center": [ + 3621.816956548582, + 5198.453784425572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3621.534600888219, + 5198.284727101973 + ], + [ + 3622.099312208945, + 5198.622841749171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3620.935470141633, + "min_y": 5197.796611446607, + "max_x": 3621.5804006629974, + "max_y": 5198.441541967972, + "center": [ + 3621.257935402315, + 5198.119076707289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3621.257935402315, + 5198.119076707289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3610.109021267911, + "min_y": 5197.596680522551, + "max_x": 3610.109023351139, + "max_y": 5198.641467967163, + "center": [ + 3610.1090223095252, + 5198.119074244857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3610.109023351139, + 5198.641467967163 + ], + [ + 3610.109021267911, + 5197.596680522551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3607.639171508747, + "min_y": 5197.596685447241, + "max_x": 3607.639173591976, + "max_y": 5198.641472891864, + "center": [ + 3607.6391725503618, + 5198.119079169553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3607.639173591976, + 5198.641472891864 + ], + [ + 3607.639171508747, + 5197.596685447241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3608.032673522199, + "min_y": 5198.284728205289, + "max_x": 3608.597383494571, + "max_y": 5198.622845104473, + "center": [ + 3608.315028508385, + 5198.453786654881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3608.032673522199, + 5198.622845104473 + ], + [ + 3608.597383494571, + 5198.284728205289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55436F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3609.150713145192, + "min_y": 5197.615308310143, + "max_x": 3609.715423117563, + "max_y": 5197.953425209321, + "center": [ + 3609.4330681313777, + 5197.784366759732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3609.150713145192, + 5197.953425209321 + ], + [ + 3609.715423117563, + 5197.615308310143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554370", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3609.715423117563, + "min_y": 5197.615308310143, + "max_x": 3609.71542512651, + "max_y": 5198.622841749187, + "center": [ + 3609.715424122037, + 5198.119075029665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3609.71542512651, + 5198.622841749187 + ], + [ + 3609.715423117563, + 5197.615308310143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554371", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3608.03267151325, + "min_y": 5197.615311665423, + "max_x": 3608.032673522199, + "max_y": 5198.622845104473, + "center": [ + 3608.0326725177247, + 5198.119078384948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3608.032673522199, + 5198.622845104473 + ], + [ + 3608.03267151325, + 5197.615311665423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554372", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3608.03267151325, + "min_y": 5197.615311665423, + "max_x": 3608.597382833978, + "max_y": 5197.953426312627, + "center": [ + 3608.315027173614, + 5197.784368989025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3608.03267151325, + 5197.615311665423 + ], + [ + 3608.597382833978, + 5197.953426312627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554373", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3609.150713805784, + "min_y": 5198.284727101989, + "max_x": 3609.71542512651, + "max_y": 5198.622841749187, + "center": [ + 3609.433069466147, + 5198.453784425588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3609.150713805784, + 5198.284727101989 + ], + [ + 3609.71542512651, + 5198.622841749187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554374", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3608.5515830591976, + "min_y": 5197.796611446623, + "max_x": 3609.196513580562, + "max_y": 5198.441541967987, + "center": [ + 3608.87404831988, + 5198.119076707305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3608.87404831988, + 5198.119076707305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554375", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3616.115347624803, + "min_y": 5190.949223195218, + "max_x": 3616.115349708031, + "max_y": 5191.99401063983, + "center": [ + 3616.115348666417, + 5191.471616917524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3616.115349708031, + 5191.99401063983 + ], + [ + 3616.115347624803, + 5190.949223195218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554376", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3613.64549786564, + "min_y": 5190.949228119909, + "max_x": 3613.645499948868, + "max_y": 5191.994015564532, + "center": [ + 3613.645498907254, + 5191.47162184222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3613.645499948868, + 5191.994015564532 + ], + [ + 3613.64549786564, + 5190.949228119909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554377", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.038999879091, + "min_y": 5191.637270877958, + "max_x": 3614.603709851462, + "max_y": 5191.975387777141, + "center": [ + 3614.3213548652766, + 5191.80632932755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.038999879091, + 5191.975387777141 + ], + [ + 3614.603709851462, + 5191.637270877958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554378", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3615.157039502084, + "min_y": 5190.967850982809, + "max_x": 3615.721749474455, + "max_y": 5191.305967881989, + "center": [ + 3615.4393944882695, + 5191.136909432399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3615.157039502084, + 5191.305967881989 + ], + [ + 3615.721749474455, + 5190.967850982809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554379", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3615.721749474455, + "min_y": 5190.967850982809, + "max_x": 3615.721751483402, + "max_y": 5191.975384421855, + "center": [ + 3615.7217504789287, + 5191.471617702332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3615.721751483402, + 5191.975384421855 + ], + [ + 3615.721749474455, + 5190.967850982809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.038997870142, + "min_y": 5190.96785433809, + "max_x": 3614.038999879091, + "max_y": 5191.975387777141, + "center": [ + 3614.0389988746165, + 5191.471621057615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.038999879091, + 5191.975387777141 + ], + [ + 3614.038997870142, + 5190.96785433809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.038997870142, + "min_y": 5190.96785433809, + "max_x": 3614.603709190871, + "max_y": 5191.305968985293, + "center": [ + 3614.3213535305067, + 5191.136911661692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.038997870142, + 5190.96785433809 + ], + [ + 3614.603709190871, + 5191.305968985293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3615.157040162676, + "min_y": 5191.637269774656, + "max_x": 3615.721751483402, + "max_y": 5191.975384421855, + "center": [ + 3615.439395823039, + 5191.806327098255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3615.157040162676, + 5191.637269774656 + ], + [ + 3615.721751483402, + 5191.975384421855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3614.55790941609, + "min_y": 5191.149154119291, + "max_x": 3615.2028399374544, + "max_y": 5191.7940846406555, + "center": [ + 3614.880374676772, + 5191.471619379973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.880374676772, + 5191.471619379973 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5196.658063131064, + "max_x": 3618.674054441975, + "max_y": 5196.658063131064, + "center": [ + 3618.1252831625097, + 5196.658063131064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.674054441975, + 5196.658063131064 + ], + [ + 3617.576511883045, + 5196.658063131064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55437F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5194.239955505501, + "max_x": 3618.674054441975, + "max_y": 5194.239955505501, + "center": [ + 3618.1252831625097, + 5194.239955505501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.576511883045, + 5194.239955505501 + ], + [ + 3618.674054441975, + 5194.239955505501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554380", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3617.7713727385485, + "min_y": 5195.136225200213, + "max_x": 3618.473918845027, + "max_y": 5195.838771306691, + "center": [ + 3618.122645791788, + 5195.487498253452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.122645791788, + 5195.487498253452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554381", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5194.566552352519, + "max_x": 3617.946094003138, + "max_y": 5195.183817131447, + "center": [ + 3617.7613029430913, + 5194.875184741983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.946094003138, + 5195.183817131447 + ], + [ + 3617.576511883045, + 5194.566552352519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554382", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5194.566552352519, + "max_x": 3618.674054441975, + "max_y": 5194.566552352519, + "center": [ + 3618.1252831625097, + 5194.566552352519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.576511883045, + 5194.566552352519 + ], + [ + 3618.674054441975, + 5194.566552352519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554383", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3618.303095349566, + "min_y": 5194.566552352519, + "max_x": 3618.674054441975, + "max_y": 5195.186116908587, + "center": [ + 3618.4885748957704, + 5194.876334630553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.674054441975, + 5194.566552352519 + ], + [ + 3618.303095349566, + 5195.186116908587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554384", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.576511883045, + "min_y": 5196.399634442166, + "max_x": 3618.674054441975, + "max_y": 5196.399634442166, + "center": [ + 3618.1252831625097, + 5196.399634442166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.576511883045, + 5196.399634442166 + ], + [ + 3618.674054441975, + 5196.399634442166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554385", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3618.30573272029, + "min_y": 5195.784474742203, + "max_x": 3618.674054441975, + "max_y": 5196.399634442166, + "center": [ + 3618.4898935811325, + 5196.0920545921845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3618.674054441975, + 5196.399634442166 + ], + [ + 3618.30573272029, + 5195.784474742203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554386", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3617.571237141599, + "min_y": 5195.784474742203, + "max_x": 3617.939558863284, + "max_y": 5196.399634442166, + "center": [ + 3617.7553980024413, + 5196.0920545921845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3617.571237141599, + 5196.399634442166 + ], + [ + 3617.939558863284, + 5195.784474742203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55438B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3613.863476005093, + "min_y": 5195.800729197093, + "max_x": 3615.6772806354443, + "max_y": 5196.8083984361765, + "center": [ + 3614.7703783202687, + 5196.304563816635 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55438C", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3610.107782476055, + "min_y": 5198.11907424484, + "max_x": 3613.537117153756, + "max_y": 5198.119074457479, + "center": [ + 3611.8224498149057, + 5198.11907435116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3610.107782476055, + 5198.119074457479 + ], + [ + 3613.537117153756, + 5198.11907424484 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55438D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3659.098224756251, + "min_y": 5196.200057151841, + "max_x": 3660.591399890108, + "max_y": 5196.200057151841, + "center": [ + 3659.844812323179, + 5196.200057151841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3659.098224756251, + 5196.200057151841 + ], + [ + 3660.591399890108, + 5196.200057151841 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55438E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3659.098224756251, + "min_y": 5196.448919674152, + "max_x": 3660.591399890108, + "max_y": 5196.448919674152, + "center": [ + 3659.844812323179, + 5196.448919674152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3659.098224756251, + 5196.448919674152 + ], + [ + 3660.591399890108, + 5196.448919674152 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55438F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3665.239405306149, + "min_y": 5196.228108171225, + "max_x": 3666.732580440007, + "max_y": 5196.228108171225, + "center": [ + 3665.985992873078, + 5196.228108171225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3665.239405306149, + 5196.228108171225 + ], + [ + 3666.732580440007, + 5196.228108171225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554390", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3665.239405306149, + "min_y": 5196.476970693534, + "max_x": 3666.732580440007, + "max_y": 5196.476970693534, + "center": [ + 3665.985992873078, + 5196.476970693534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3665.239405306149, + 5196.476970693534 + ], + [ + 3666.732580440007, + 5196.476970693534 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554391", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3659.833663017846, + "min_y": 5194.327137140931, + "max_x": 3659.833663017846, + "max_y": 5230.73988634383, + "center": [ + 3659.833663017846, + 5212.53351174238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3659.833663017846, + 5230.73988634383 + ], + [ + 3659.833663017846, + 5194.327137140931 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554392", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3665.953000429386, + "min_y": 5194.326608337932, + "max_x": 3665.953000429386, + "max_y": 5243.808252088768, + "center": [ + 3665.953000429386, + 5219.06743021335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3665.953000429386, + 5243.808252088768 + ], + [ + 3665.953000429386, + 5194.326608337932 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554393", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3654.501557891221, + "min_y": 5194.31882075994, + "max_x": 3654.501557891221, + "max_y": 5198.116995831686, + "center": [ + 3654.501557891221, + 5196.217908295813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3654.501557891221, + 5198.116995831686 + ], + [ + 3654.501557891221, + 5194.31882075994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3654.501557891221, + "min_y": 5194.31882075994, + "max_x": 3654.501557891221, + "max_y": 5197.843281565353, + "center": [ + 3654.501557891221, + 5196.081051162646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3654.501557891221, + 5194.31882075994 + ], + [ + 3654.501557891221, + 5197.843281565353 + ] + ], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554395", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3632.162899554957, + "min_y": 5195.92431267827, + "max_x": 3634.7834219148776, + "max_y": 5197.380158433782, + "center": [ + 3633.4731607349177, + 5196.652235556026 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3616.481458259447, + "min_y": 5197.40351491098, + "max_x": 3616.481460738485, + "max_y": 5198.646811970061, + "center": [ + 3616.481459498966, + 5198.025163440521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3616.481460738485, + 5198.646811970061 + ], + [ + 3616.481458259447, + 5197.40351491098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554397", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3613.542337046043, + "min_y": 5197.403520771355, + "max_x": 3613.542339525084, + "max_y": 5198.646817830456, + "center": [ + 3613.5423382855633, + 5198.025169300905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3613.542339525084, + 5198.646817830456 + ], + [ + 3613.542337046043, + 5197.403520771355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554398", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3616.013076460533, + "min_y": 5197.118365793604, + "max_x": 3616.013078851179, + "max_y": 5198.916600862942, + "center": [ + 3616.0130776558563, + 5198.017483328273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3616.013078851179, + 5198.916600862942 + ], + [ + 3616.013076460533, + 5197.118365793604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554399", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.0106020514, + "min_y": 5197.118369786387, + "max_x": 3614.010604462458, + "max_y": 5198.931958653027, + "center": [ + 3614.0106032569292, + 5198.025164219707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.010604462458, + 5198.931958653027 + ], + [ + 3614.0106020514, + 5197.118369786387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55439A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.010602051404, + "min_y": 5197.118365793604, + "max_x": 3616.013076460533, + "max_y": 5197.118369786387, + "center": [ + 3615.0118392559684, + 5197.118367789995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.010602051404, + 5197.118369786387 + ], + [ + 3616.013076460533, + 5197.118365793604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55439B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3614.010602051404, + "min_y": 5198.931958653013, + "max_x": 3616.013076460533, + "max_y": 5198.931962645797, + "center": [ + 3615.0118392559684, + 5198.931960649405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3614.010602051404, + 5198.931958653013 + ], + [ + 3616.013076460533, + 5198.931962645797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55439C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3614.514755508889, + "min_y": 5197.472475640227, + "max_x": 3615.1854007177653, + "max_y": 5198.590217655021, + "center": [ + 3614.850078113327, + 5198.031346647624 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55439D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3603.104629285791, + "min_y": 5196.658202083465, + "max_x": 3603.104629285791, + "max_y": 5198.119213197244, + "center": [ + 3603.104629285791, + 5197.388707640354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.104629285791, + 5196.658202083465 + ], + [ + 3603.104629285791, + 5198.119213197244 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55439E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3603.104629285791, + "min_y": 5193.399450933939, + "max_x": 3603.104629285791, + "max_y": 5194.240094457902, + "center": [ + 3603.104629285791, + 5193.819772695921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.104629285791, + 5194.240094457902 + ], + [ + 3603.104629285791, + 5193.399450933939 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55439F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006327, + "min_y": 5192.745739328853, + "max_x": 3602.555858006327, + "max_y": 5193.489056444849, + "center": [ + 3602.555858006327, + 5193.117397886851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.555858006327, + 5193.489056444849 + ], + [ + 3602.555858006327, + 5192.745739328853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3603.653400565257, + "min_y": 5192.745739328853, + "max_x": 3603.653400565257, + "max_y": 5193.489056444849, + "center": [ + 3603.653400565257, + 5193.117397886851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.653400565257, + 5193.489056444849 + ], + [ + 3603.653400565257, + 5192.745739328853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006327, + "min_y": 5192.745739328853, + "max_x": 3603.653400565257, + "max_y": 5192.745739328853, + "center": [ + 3603.104629285792, + 5192.745739328853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.555858006327, + 5192.745739328853 + ], + [ + 3603.653400565257, + 5192.745739328853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5196.658202083465, + "max_x": 3603.653400565256, + "max_y": 5196.658202083465, + "center": [ + 3603.104629285791, + 5196.658202083465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.653400565256, + 5196.658202083465 + ], + [ + 3602.555858006326, + 5196.658202083465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5194.240094457902, + "max_x": 3603.653400565256, + "max_y": 5194.240094457902, + "center": [ + 3603.104629285791, + 5194.240094457902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.555858006326, + 5194.240094457902 + ], + [ + 3603.653400565256, + 5194.240094457902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3602.750718861829, + "min_y": 5195.136364152615, + "max_x": 3603.4532649683074, + "max_y": 5195.838910259094, + "center": [ + 3603.101991915068, + 5195.487637205854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.101991915068, + 5195.487637205854 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5194.56669130492, + "max_x": 3602.925440126418, + "max_y": 5195.183956083849, + "center": [ + 3602.740649066372, + 5194.875323694385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.925440126418, + 5195.183956083849 + ], + [ + 3602.555858006326, + 5194.56669130492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5194.56669130492, + "max_x": 3603.653400565256, + "max_y": 5194.56669130492, + "center": [ + 3603.104629285791, + 5194.56669130492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.555858006326, + 5194.56669130492 + ], + [ + 3603.653400565256, + 5194.56669130492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3603.282441472846, + "min_y": 5194.56669130492, + "max_x": 3603.653400565256, + "max_y": 5195.186255860988, + "center": [ + 3603.467921019051, + 5194.876473582954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.653400565256, + 5194.56669130492 + ], + [ + 3603.282441472846, + 5195.186255860988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.555858006326, + "min_y": 5196.399773394568, + "max_x": 3603.653400565256, + "max_y": 5196.399773394568, + "center": [ + 3603.104629285791, + 5196.399773394568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.555858006326, + 5196.399773394568 + ], + [ + 3603.653400565256, + 5196.399773394568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3603.285078843569, + "min_y": 5195.784613694605, + "max_x": 3603.653400565256, + "max_y": 5196.399773394568, + "center": [ + 3603.4692397044128, + 5196.092193544586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3603.653400565256, + 5196.399773394568 + ], + [ + 3603.285078843569, + 5195.784613694605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3602.550583264878, + "min_y": 5195.784613694605, + "max_x": 3602.918904986565, + "max_y": 5196.399773394568, + "center": [ + 3602.7347441257216, + 5196.092193544586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3602.550583264878, + 5196.399773394568 + ], + [ + 3602.918904986565, + 5195.784613694605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543AC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3651.166299261819, + "min_y": 5198.113656631904, + "max_x": 3653.126969835704, + "max_y": 5198.113656631904, + "center": [ + 3652.1466345487615, + 5198.113656631904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.126969835704, + 5198.113656631904 + ], + [ + 3651.166299261819, + 5198.113656631904 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5543AD", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3622.492871847406, + "min_y": 5198.11907424484, + "max_x": 3654.501532586355, + "max_y": 5198.11907424484, + "center": [ + 3638.4972022168804, + 5198.11907424484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3622.492871847406, + 5198.11907424484 + ], + [ + 3654.501532586355, + 5198.11907424484 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5543AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3704.458609053499, + "min_y": 5152.373559587236, + "max_x": 3718.122485024891, + "max_y": 5152.373559587236, + "center": [ + 3711.290547039195, + 5152.373559587236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3704.458609053499, + 5152.373559587236 + ], + [ + 3718.122485024891, + 5152.373559587236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3718.122485024891, + "min_y": 5152.373559587236, + "max_x": 3718.122485024891, + "max_y": 5189.800514455551, + "center": [ + 3718.122485024891, + 5171.087037021393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3718.122485024891, + 5152.373559587236 + ], + [ + 3718.122485024891, + 5189.800514455551 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4094.534871387796, + "min_y": 5194.709266293401, + "max_x": 4094.534871387796, + "max_y": 5196.571395050724, + "center": [ + 4094.534871387796, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4094.534871387796, + 5196.571395050724 + ], + [ + 4094.534871387796, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4094.000513962027, + "min_y": 5194.709266293401, + "max_x": 4094.000513962027, + "max_y": 5196.571395050724, + "center": [ + 4094.000513962027, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4094.000513962027, + 5196.571395050724 + ], + [ + 4094.000513962027, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4099.472321473945, + "min_y": 5194.706293669547, + "max_x": 4099.472321473945, + "max_y": 5196.568422426884, + "center": [ + 4099.472321473945, + 5195.637358048216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4099.472321473945, + 5196.568422426884 + ], + [ + 4099.472321473945, + 5194.706293669547 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4100.006678899716, + "min_y": 5194.706293669547, + "max_x": 4100.006678899716, + "max_y": 5196.568422426884, + "center": [ + 4100.006678899716, + 5195.637358048216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.006678899716, + 5196.568422426884 + ], + [ + 4100.006678899716, + 5194.706293669547 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4094.5348588597876, + "min_y": 5195.284682147196, + "max_x": 4095.2402106618124, + "max_y": 5195.9900339492215, + "center": [ + 4094.8875347608, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4094.8875347608, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4095.2402106618097, + "min_y": 5195.2846821471985, + "max_x": 4095.94556246383, + "max_y": 5195.990033949219, + "center": [ + 4095.59288656282, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4095.59288656282, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4095.94556246383, + "min_y": 5195.2846821471985, + "max_x": 4096.65091426585, + "max_y": 5195.990033949219, + "center": [ + 4096.29823836484, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4096.29823836484, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4095.9455624638317, + "min_y": 5195.284682147196, + "max_x": 4096.650914265858, + "max_y": 5195.9900339492215, + "center": [ + 4096.298238364845, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4096.298238364845, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4096.650914265857, + "min_y": 5195.2846821471985, + "max_x": 4097.356266067877, + "max_y": 5195.990033949219, + "center": [ + 4097.003590166867, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4097.003590166867, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543B9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4097.356266067878, + "min_y": 5195.284682147195, + "max_x": 4098.061617869906, + "max_y": 5195.990033949222, + "center": [ + 4097.708941968892, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4097.708941968892, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4098.0616178699065, + "min_y": 5195.2846821471985, + "max_x": 4098.766969671927, + "max_y": 5195.990033949219, + "center": [ + 4098.414293770917, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4098.414293770917, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4098.766969671922, + "min_y": 5195.2846821471985, + "max_x": 4099.472321473942, + "max_y": 5195.990033949219, + "center": [ + 4099.119645572932, + 5195.637358048209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4099.119645572932, + 5195.637358048209 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4084.611897487962, + "min_y": 5193.821479104812, + "max_x": 4086.427776431359, + "max_y": 5195.637358048209, + "center": [ + 4085.51983695966, + 5194.72941857651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4084.611897487962, + 5195.637358048209 + ], + [ + 4086.427776431359, + 5193.821479104812 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4085.973806695512, + "min_y": 5193.367509368961, + "max_x": 4086.905762035452, + "max_y": 5194.275448840665, + "center": [ + 4086.439784365482, + 5193.821479104813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4086.905762035452, + 5194.275448840665 + ], + [ + 4085.973806695512, + 5193.367509368961 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4086.725353826181, + "min_y": 5194.709266293401, + "max_x": 4086.725353826181, + "max_y": 5196.571395050724, + "center": [ + 4086.725353826181, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4086.725353826181, + 5196.571395050724 + ], + [ + 4086.725353826181, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.221650911344, + "min_y": 5194.709266293401, + "max_x": 4087.221650911344, + "max_y": 5196.571395050724, + "center": [ + 4087.221650911344, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.221650911344, + 5196.571395050724 + ], + [ + 4087.221650911344, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4083.707447252836, + "min_y": 5194.709266293401, + "max_x": 4083.707447252836, + "max_y": 5196.571395050724, + "center": [ + 4083.707447252836, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.707447252836, + 5196.571395050724 + ], + [ + 4083.707447252836, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4083.211150167675, + "min_y": 5194.709266293401, + "max_x": 4083.211150167675, + "max_y": 5196.571395050724, + "center": [ + 4083.211150167675, + 5195.640330672062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.211150167675, + 5196.571395050724 + ], + [ + 4083.211150167675, + 5194.709266293401 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4083.707447252842, + "min_y": 5195.640330672063, + "max_x": 4086.725353826181, + "max_y": 5195.640330672063, + "center": [ + 4085.2164005395116, + 5195.640330672063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4086.725353826181, + 5195.640330672063 + ], + [ + 4083.707447252842, + 5195.640330672063 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4083.211150167675, + "min_y": 5194.742465273461, + "max_x": 4083.211150167675, + "max_y": 5196.53819607066, + "center": [ + 4083.211150167675, + 5195.64033067206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.211150167675, + 5196.53819607066 + ], + [ + 4083.211150167675, + 5194.742465273461 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.221650911344, + "min_y": 5195.640330672063, + "max_x": 4094.000518624731, + "max_y": 5195.640557174633, + "center": [ + 4090.6110847680375, + 5195.640443923348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4094.000518624731, + 5195.640557174633 + ], + [ + 4087.221650911344, + 5195.640330672063 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5543C5", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4082.037572428089, + "min_y": 5195.649309582515, + "max_x": 4083.211266312047, + "max_y": 5195.649388274967, + "center": [ + 4082.6244193700677, + 5195.649348928741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4082.037572428089, + 5195.649388274967 + ], + [ + 4083.211266312047, + 5195.649309582515 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543C6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4059.796842289901, + "min_y": 5212.369123268668, + "max_x": 4059.796842289901, + "max_y": 5214.637552888121, + "center": [ + 4059.796842289901, + 5213.503338078394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4059.796842289901, + 5212.369123268668 + ], + [ + 4059.796842289901, + 5214.637552888121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543C7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4056.159664461747, + "min_y": 5212.369123268668, + "max_x": 4056.159664461747, + "max_y": 5214.637552888121, + "center": [ + 4056.159664461747, + 5213.503338078394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4056.159664461747, + 5212.369123268668 + ], + [ + 4056.159664461747, + 5214.637552888121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543C8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4058.557229376674, + "min_y": 5213.864432963307, + "max_x": 4059.796842289901, + "max_y": 5214.637552888121, + "center": [ + 4059.177035833288, + 5214.250992925714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4059.796842289901, + 5214.637552888121 + ], + [ + 4058.557229376674, + 5213.864432963307 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543C9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4058.557229376674, + "min_y": 5212.369123268668, + "max_x": 4059.796842289901, + "max_y": 5213.142243193484, + "center": [ + 4059.177035833288, + 5212.755683231077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4059.796842289901, + 5212.369123268668 + ], + [ + 4058.557229376674, + 5213.142243193484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CA", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4057.295902494342, + "min_y": 5212.820987196911, + "max_x": 4058.660604257314, + "max_y": 5214.185688959883, + "center": [ + 4057.978253375828, + 5213.503338078397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4057.978253375828, + 5213.503338078397 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4056.159664461747, + "min_y": 5213.864432963307, + "max_x": 4057.399277374983, + "max_y": 5214.637552888121, + "center": [ + 4056.779470918365, + 5214.250992925714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4057.399277374983, + 5213.864432963307 + ], + [ + 4056.159664461747, + 5214.637552888121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4056.159664461747, + "min_y": 5212.369123268668, + "max_x": 4057.399277374983, + "max_y": 5213.142243193484, + "center": [ + 4056.779470918365, + 5212.755683231077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4057.399277374983, + 5213.142243193484 + ], + [ + 4056.159664461747, + 5212.369123268668 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4055.413076894818, + "min_y": 5212.369123268668, + "max_x": 4055.413076894818, + "max_y": 5214.637552888121, + "center": [ + 4055.413076894818, + 5213.503338078394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4055.413076894818, + 5212.369123268668 + ], + [ + 4055.413076894818, + 5214.637552888121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4060.543429856831, + "min_y": 5212.369123268668, + "max_x": 4060.543429856831, + "max_y": 5214.637552888121, + "center": [ + 4060.543429856831, + 5213.503338078394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4060.543429856831, + 5212.369123268668 + ], + [ + 4060.543429856831, + 5214.637552888121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4073.04073542627, + "min_y": 5212.56321609683, + "max_x": 4073.04073542627, + "max_y": 5214.425344854152, + "center": [ + 4073.04073542627, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4073.04073542627, + 5214.425344854152 + ], + [ + 4073.04073542627, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4072.506378000501, + "min_y": 5212.56321609683, + "max_x": 4072.506378000501, + "max_y": 5214.425344854152, + "center": [ + 4072.506378000501, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4072.506378000501, + 5214.425344854152 + ], + [ + 4072.506378000501, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4077.978185512419, + "min_y": 5212.560243472976, + "max_x": 4077.978185512419, + "max_y": 5214.422372230313, + "center": [ + 4077.978185512419, + 5213.491307851645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4077.978185512419, + 5214.422372230313 + ], + [ + 4077.978185512419, + 5212.560243472976 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4078.51254293819, + "min_y": 5212.560243472976, + "max_x": 4078.51254293819, + "max_y": 5214.422372230313, + "center": [ + 4078.51254293819, + 5213.491307851645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.51254293819, + 5214.422372230313 + ], + [ + 4078.51254293819, + 5212.560243472976 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4073.040722898261, + "min_y": 5213.138631950625, + "max_x": 4073.7460747002856, + "max_y": 5213.84398375265, + "center": [ + 4073.393398799273, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4073.393398799273, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4073.7460747002838, + "min_y": 5213.138631950627, + "max_x": 4074.451426502304, + "max_y": 5213.843983752648, + "center": [ + 4074.098750601294, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4074.098750601294, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4074.4514265023054, + "min_y": 5213.138631950627, + "max_x": 4075.1567783043247, + "max_y": 5213.843983752648, + "center": [ + 4074.804102403315, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4074.804102403315, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4074.451426502306, + "min_y": 5213.138631950625, + "max_x": 4075.1567783043324, + "max_y": 5213.84398375265, + "center": [ + 4074.804102403319, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4074.804102403319, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4075.1567783043315, + "min_y": 5213.138631950627, + "max_x": 4075.862130106351, + "max_y": 5213.843983752648, + "center": [ + 4075.509454205341, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4075.509454205341, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4075.862130106352, + "min_y": 5213.138631950624, + "max_x": 4076.5674819083797, + "max_y": 5213.843983752651, + "center": [ + 4076.214806007366, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4076.214806007366, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543D9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4076.567481908382, + "min_y": 5213.138631950627, + "max_x": 4077.272833710402, + "max_y": 5213.843983752648, + "center": [ + 4076.920157809392, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4076.920157809392, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4077.2728337103968, + "min_y": 5213.138631950627, + "max_x": 4077.978185512417, + "max_y": 5213.843983752648, + "center": [ + 4077.625509611407, + 5213.491307851637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4077.625509611407, + 5213.491307851637 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4063.117761526437, + "min_y": 5211.67542890824, + "max_x": 4064.933640469833, + "max_y": 5213.491307851637, + "center": [ + 4064.025700998135, + 5212.583368379939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4063.117761526437, + 5213.491307851637 + ], + [ + 4064.933640469833, + 5211.67542890824 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4064.479670733986, + "min_y": 5211.22145917239, + "max_x": 4065.411626073927, + "max_y": 5212.129398644093, + "center": [ + 4064.9456484039565, + 5211.675428908242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4065.411626073927, + 5212.129398644093 + ], + [ + 4064.479670733986, + 5211.22145917239 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4065.231217864655, + "min_y": 5212.56321609683, + "max_x": 4065.231217864655, + "max_y": 5214.425344854152, + "center": [ + 4065.231217864655, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4065.231217864655, + 5214.425344854152 + ], + [ + 4065.231217864655, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4065.727514949818, + "min_y": 5212.56321609683, + "max_x": 4065.727514949818, + "max_y": 5214.425344854152, + "center": [ + 4065.727514949818, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4065.727514949818, + 5214.425344854152 + ], + [ + 4065.727514949818, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4062.21331129131, + "min_y": 5212.56321609683, + "max_x": 4062.21331129131, + "max_y": 5214.425344854152, + "center": [ + 4062.21331129131, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4062.21331129131, + 5214.425344854152 + ], + [ + 4062.21331129131, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4061.717014206148, + "min_y": 5212.56321609683, + "max_x": 4061.717014206148, + "max_y": 5214.425344854152, + "center": [ + 4061.717014206148, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4061.717014206148, + 5214.425344854152 + ], + [ + 4061.717014206148, + 5212.56321609683 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543E1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 4070.926507090942, + "min_y": 5213.494280475491, + "max_x": 4072.506378000501, + "max_y": 5213.494280475491, + "center": [ + 4071.7164425457213, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4070.926507090942, + 5213.494280475491 + ], + [ + 4072.506378000501, + 5213.494280475491 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5543E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4062.213311291316, + "min_y": 5213.494280475491, + "max_x": 4065.231217864655, + "max_y": 5213.494280475491, + "center": [ + 4063.7222645779857, + 5213.494280475491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4065.231217864655, + 5213.494280475491 + ], + [ + 4062.213311291316, + 5213.494280475491 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4061.717014206148, + "min_y": 5212.596415076889, + "max_x": 4061.717014206148, + "max_y": 5214.392145874089, + "center": [ + 4061.717014206148, + 5213.494280475488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4061.717014206148, + 5214.392145874089 + ], + [ + 4061.717014206148, + 5212.596415076889 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5543E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4065.727514949818, + "min_y": 5213.494280475491, + "max_x": 4072.510210010232, + "max_y": 5213.494506978062, + "center": [ + 4069.118862480025, + 5213.494393726776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4072.510210010232, + 5213.494506978062 + ], + [ + 4065.727514949818, + 5213.494280475491 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5543E5", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4060.543436466564, + "min_y": 5213.503259385944, + "max_x": 4061.717130350522, + "max_y": 5213.503338078395, + "center": [ + 4061.1302834085427, + 5213.50329873217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4060.543436466564, + 5213.503338078395 + ], + [ + 4061.717130350522, + 5213.503259385944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5543E6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 4068.825984552806, + "min_y": 5211.441264835424, + "max_x": 4068.825984552806, + "max_y": 5213.495024850288, + "center": [ + 4068.825984552806, + 5212.468144842856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.825984552806, + 5213.495024850288 + ], + [ + 4068.825984552806, + 5211.441264835424 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5543E7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4068.3808374782707, + "min_y": 5209.420764369294, + "max_x": 4069.271131627341, + "max_y": 5210.311058518365, + "center": [ + 4068.825984552806, + 5209.86591144383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.825984552806, + 5209.86591144383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5211.441264835434, + "max_x": 4069.521409173026, + "max_y": 5211.441264835434, + "center": [ + 4068.8259845528037, + 5211.441264835434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.130559932581, + 5211.441264835434 + ], + [ + 4069.521409173026, + 5211.441264835434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5208.290558052226, + "max_x": 4069.521409173026, + "max_y": 5208.290558052226, + "center": [ + 4068.8259845528037, + 5208.290558052226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.130559932581, + 5208.290558052226 + ], + [ + 4069.521409173026, + 5208.290558052226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5208.704434464502, + "max_x": 4068.597311752522, + "max_y": 5209.483989110909, + "center": [ + 4068.3639358425517, + 5209.094211787706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.597311752522, + 5209.483989110909 + ], + [ + 4068.130559932581, + 5208.704434464502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5208.704434464502, + "max_x": 4069.521409173026, + "max_y": 5208.704434464502, + "center": [ + 4068.8259845528037, + 5208.704434464502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.130559932581, + 5208.704434464502 + ], + [ + 4069.521409173026, + 5208.704434464502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4069.054657353083, + "min_y": 5208.704434464502, + "max_x": 4069.521409173026, + "max_y": 5209.483989110909, + "center": [ + 4069.2880332630543, + 5209.094211787706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4069.521409173026, + 5208.704434464502 + ], + [ + 4069.054657353083, + 5209.483989110909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5210.247833776744, + "max_x": 4068.597311752525, + "max_y": 5211.027388423151, + "center": [ + 4068.363935842553, + 5210.637611099948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.597311752525, + 5210.247833776744 + ], + [ + 4068.130559932581, + 5211.027388423151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.130559932581, + "min_y": 5211.027388423151, + "max_x": 4069.521409173026, + "max_y": 5211.027388423151, + "center": [ + 4068.8259845528037, + 5211.027388423151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.130559932581, + 5211.027388423151 + ], + [ + 4069.521409173026, + 5211.027388423151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4069.054657353083, + "min_y": 5210.247833776744, + "max_x": 4069.521409173026, + "max_y": 5211.027388423151, + "center": [ + 4069.2880332630543, + 5210.637611099948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4069.521409173026, + 5211.027388423151 + ], + [ + 4069.054657353083, + 5210.247833776744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 4068.822642372552, + "min_y": 5206.958937244812, + "max_x": 4068.822642372552, + "max_y": 5208.290558052226, + "center": [ + 4068.822642372552, + 5207.624747648519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.822642372552, + 5208.290558052226 + ], + [ + 4068.822642372552, + 5206.958937244812 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5543F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.127217752333, + "min_y": 5206.130528102949, + "max_x": 4068.127217752333, + "max_y": 5207.072488884131, + "center": [ + 4068.127217752333, + 5206.601508493541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.127217752333, + 5207.072488884131 + ], + [ + 4068.127217752333, + 5206.130528102949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4069.518066992774, + "min_y": 5206.130528102949, + "max_x": 4069.518066992774, + "max_y": 5207.072488884131, + "center": [ + 4069.518066992774, + 5206.601508493541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4069.518066992774, + 5207.072488884131 + ], + [ + 4069.518066992774, + 5206.130528102949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4068.127217752333, + "min_y": 5206.130528102949, + "max_x": 4069.518066992774, + "max_y": 5206.130528102949, + "center": [ + 4068.8226423725537, + 5206.130528102949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4068.127217752333, + 5206.130528102949 + ], + [ + 4069.518066992774, + 5206.130528102949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F4", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4069.994100866948, + "min_y": 5208.39605182299, + "max_x": 4072.5485849762263, + "max_y": 5209.815209661478, + "center": [ + 4071.2713429215873, + 5209.105630742233 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5543F5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 4090.288918455598, + "min_y": 5193.572409884119, + "max_x": 4090.288918455598, + "max_y": 5195.626169898982, + "center": [ + 4090.288918455598, + 5194.59928989155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.288918455598, + 5195.626169898982 + ], + [ + 4090.288918455598, + 5193.572409884119 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5543F6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4089.8437713810627, + "min_y": 5191.55190941799, + "max_x": 4090.734065530133, + "max_y": 5192.4422035670605, + "center": [ + 4090.288918455598, + 5191.997056492525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.288918455598, + 5191.997056492525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5193.572409884129, + "max_x": 4090.984343075819, + "max_y": 5193.572409884129, + "center": [ + 4090.288918455596, + 5193.572409884129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.593493835373, + 5193.572409884129 + ], + [ + 4090.984343075819, + 5193.572409884129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5190.421703100921, + "max_x": 4090.984343075819, + "max_y": 5190.421703100921, + "center": [ + 4090.288918455596, + 5190.421703100921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.593493835373, + 5190.421703100921 + ], + [ + 4090.984343075819, + 5190.421703100921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5190.835579513198, + "max_x": 4090.060245655315, + "max_y": 5191.615134159604, + "center": [ + 4089.826869745344, + 5191.225356836401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.060245655315, + 5191.615134159604 + ], + [ + 4089.593493835373, + 5190.835579513198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5190.835579513198, + "max_x": 4090.984343075819, + "max_y": 5190.835579513198, + "center": [ + 4090.288918455596, + 5190.835579513198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.593493835373, + 5190.835579513198 + ], + [ + 4090.984343075819, + 5190.835579513198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4090.517591255875, + "min_y": 5190.835579513198, + "max_x": 4090.984343075819, + "max_y": 5191.615134159604, + "center": [ + 4090.750967165847, + 5191.225356836401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.984343075819, + 5190.835579513198 + ], + [ + 4090.517591255875, + 5191.615134159604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5192.378978825439, + "max_x": 4090.060245655318, + "max_y": 5193.158533471847, + "center": [ + 4089.8268697453454, + 5192.768756148643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.060245655318, + 5192.378978825439 + ], + [ + 4089.593493835373, + 5193.158533471847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.593493835373, + "min_y": 5193.158533471847, + "max_x": 4090.984343075819, + "max_y": 5193.158533471847, + "center": [ + 4090.288918455596, + 5193.158533471847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.593493835373, + 5193.158533471847 + ], + [ + 4090.984343075819, + 5193.158533471847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4090.517591255875, + "min_y": 5192.378978825439, + "max_x": 4090.984343075819, + "max_y": 5193.158533471847, + "center": [ + 4090.750967165847, + 5192.768756148643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.984343075819, + 5193.158533471847 + ], + [ + 4090.517591255875, + 5192.378978825439 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5543FF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 4090.285576275344, + "min_y": 5189.090082293507, + "max_x": 4090.285576275344, + "max_y": 5190.421703100921, + "center": [ + 4090.285576275344, + 5189.755892697214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.285576275344, + 5190.421703100921 + ], + [ + 4090.285576275344, + 5189.090082293507 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554400", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.590151655126, + "min_y": 5188.261673151645, + "max_x": 4089.590151655126, + "max_y": 5189.203633932827, + "center": [ + 4089.590151655126, + 5188.732653542236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.590151655126, + 5189.203633932827 + ], + [ + 4089.590151655126, + 5188.261673151645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554401", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4090.981000895566, + "min_y": 5188.261673151645, + "max_x": 4090.981000895566, + "max_y": 5189.203633932827, + "center": [ + 4090.981000895566, + 5188.732653542236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4090.981000895566, + 5189.203633932827 + ], + [ + 4090.981000895566, + 5188.261673151645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554402", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4089.590151655126, + "min_y": 5188.261673151645, + "max_x": 4090.981000895566, + "max_y": 5188.261673151645, + "center": [ + 4090.285576275346, + 5188.261673151645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.590151655126, + 5188.261673151645 + ], + [ + 4090.981000895566, + 5188.261673151645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554403", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4091.45703476974, + "min_y": 5190.527196871685, + "max_x": 4094.0115188790182, + "max_y": 5191.946354710173, + "center": [ + 4092.734276824379, + 5191.236775790929 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554404", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.677711795446, + "min_y": 5204.535730666009, + "max_x": 4110.539840552768, + "max_y": 5204.535730666009, + "center": [ + 4109.608776174107, + 5204.535730666009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.677711795446, + 5204.535730666009 + ], + [ + 4110.539840552768, + 5204.535730666009 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554405", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.677711795446, + "min_y": 5204.001373240239, + "max_x": 4110.539840552768, + "max_y": 5204.001373240239, + "center": [ + 4109.608776174107, + 5204.001373240239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.677711795446, + 5204.001373240239 + ], + [ + 4110.539840552768, + 5204.001373240239 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554406", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.680684419285, + "min_y": 5209.473180752158, + "max_x": 4110.542813176622, + "max_y": 5209.473180752158, + "center": [ + 4109.611748797954, + 5209.473180752158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.680684419285, + 5209.473180752158 + ], + [ + 4110.542813176622, + 5209.473180752158 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554407", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4108.680684419285, + "min_y": 5210.007538177927, + "max_x": 4110.542813176622, + "max_y": 5210.007538177927, + "center": [ + 4109.611748797954, + 5210.007538177927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.680684419285, + 5210.007538177927 + ], + [ + 4110.542813176622, + 5210.007538177927 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554408", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896948, + "min_y": 5204.535718137997, + "max_x": 4109.964424698974, + "max_y": 5205.2410699400225, + "center": [ + 4109.611748797961, + 5204.88839403901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5204.88839403901 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554409", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896951, + "min_y": 5205.241069940022, + "max_x": 4109.964424698971, + "max_y": 5205.946421742042, + "center": [ + 4109.611748797961, + 5205.593745841032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5205.593745841032 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896951, + "min_y": 5205.946421742043, + "max_x": 4109.964424698971, + "max_y": 5206.651773544063, + "center": [ + 4109.611748797961, + 5206.299097643053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5206.299097643053 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896948, + "min_y": 5205.946421742045, + "max_x": 4109.964424698974, + "max_y": 5206.65177354407, + "center": [ + 4109.611748797961, + 5206.299097643057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5206.299097643057 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896951, + "min_y": 5206.6517735440675, + "max_x": 4109.964424698971, + "max_y": 5207.357125346088, + "center": [ + 4109.611748797961, + 5207.004449445078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5207.004449445078 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896947, + "min_y": 5207.3571253460905, + "max_x": 4109.964424698975, + "max_y": 5208.062477148118, + "center": [ + 4109.611748797961, + 5207.709801247104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5207.709801247104 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896951, + "min_y": 5208.06247714812, + "max_x": 4109.964424698971, + "max_y": 5208.76782895014, + "center": [ + 4109.611748797961, + 5208.41515304913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5208.41515304913 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55440F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4109.259072896951, + "min_y": 5208.767828950135, + "max_x": 4109.964424698971, + "max_y": 5209.473180752155, + "center": [ + 4109.611748797961, + 5209.120504851145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.611748797961, + 5209.120504851145 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554410", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.744473903557, + "min_y": 5222.416457105961, + "max_x": 4089.606602660878, + "max_y": 5222.416457105961, + "center": [ + 4088.6755382822175, + 5222.416457105961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.744473903557, + 5222.416457105961 + ], + [ + 4089.606602660878, + 5222.416457105961 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554411", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.744473903557, + "min_y": 5221.882099680192, + "max_x": 4089.606602660878, + "max_y": 5221.882099680192, + "center": [ + 4088.6755382822175, + 5221.882099680192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.744473903557, + 5221.882099680192 + ], + [ + 4089.606602660878, + 5221.882099680192 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554412", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.747446527395, + "min_y": 5227.35390719211, + "max_x": 4089.609575284732, + "max_y": 5227.35390719211, + "center": [ + 4088.6785109060634, + 5227.35390719211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.747446527395, + 5227.35390719211 + ], + [ + 4089.609575284732, + 5227.35390719211 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554413", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4087.747446527395, + "min_y": 5227.888264617879, + "max_x": 4089.609575284732, + "max_y": 5227.888264617879, + "center": [ + 4088.6785109060634, + 5227.888264617879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.747446527395, + 5227.888264617879 + ], + [ + 4089.609575284732, + 5227.888264617879 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554414", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.3258350050587, + "min_y": 5222.41644457795, + "max_x": 4089.0311868070835, + "max_y": 5223.121796379975, + "center": [ + 4088.678510906071, + 5222.769120478963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5222.769120478963 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554415", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.325835005061, + "min_y": 5223.1217963799745, + "max_x": 4089.031186807081, + "max_y": 5223.827148181995, + "center": [ + 4088.678510906071, + 5223.474472280985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5223.474472280985 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554416", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.3258350050614, + "min_y": 5223.827148181995, + "max_x": 4089.0311868070808, + "max_y": 5224.532499984015, + "center": [ + 4088.678510906071, + 5224.179824083005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5224.179824083005 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554417", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.325835005058, + "min_y": 5223.827148181997, + "max_x": 4089.0311868070844, + "max_y": 5224.532499984022, + "center": [ + 4088.678510906071, + 5224.179824083009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5224.179824083009 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554418", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.3258350050614, + "min_y": 5224.53249998402, + "max_x": 4089.0311868070808, + "max_y": 5225.237851786041, + "center": [ + 4088.678510906071, + 5224.885175885031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5224.885175885031 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554419", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.3258350050573, + "min_y": 5225.237851786043, + "max_x": 4089.031186807085, + "max_y": 5225.943203588071, + "center": [ + 4088.678510906071, + 5225.590527687057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5225.590527687057 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55441A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.325835005061, + "min_y": 5225.943203588072, + "max_x": 4089.031186807081, + "max_y": 5226.648555390092, + "center": [ + 4088.678510906071, + 5226.295879489082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5226.295879489082 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55441B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4088.325835005061, + "min_y": 5226.648555390087, + "max_x": 4089.031186807081, + "max_y": 5227.353907192107, + "center": [ + 4088.678510906071, + 5227.001231291097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.678510906071, + 5227.001231291097 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "55441C", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.627227051732, + "min_y": 5227.888682173077, + "max_x": 4088.627227051732, + "max_y": 5229.353976680886, + "center": [ + 4088.627227051732, + 5228.621329426982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.627227051732, + 5227.888682173077 + ], + [ + 4088.627227051732, + 5229.353976680886 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55441D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4109.597488573555, + "min_y": 5214.034567618644, + "max_x": 4110.731703383284, + "max_y": 5215.853156532723, + "center": [ + 4110.16459597842, + 5214.943862075684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.597488573555, + 5214.034567618644 + ], + [ + 4110.731703383284, + 5215.853156532723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55441E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5212.215978704571, + "max_x": 4109.597488573555, + "max_y": 5214.034567618644, + "center": [ + 4109.030381168694, + 5213.125273161608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.597488573555, + 5214.034567618644 + ], + [ + 4108.463273763831, + 5212.215978704571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55441F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5212.215978704571, + "max_x": 4110.731703383284, + "max_y": 5212.215978704571, + "center": [ + 4109.597488573558, + 5212.215978704571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.463273763831, + 5212.215978704571 + ], + [ + 4110.731703383284, + 5212.215978704571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554420", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5215.853156532723, + "max_x": 4110.731703383284, + "max_y": 5215.853156532723, + "center": [ + 4109.597488573558, + 5215.853156532723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.463273763831, + 5215.853156532723 + ], + [ + 4110.731703383284, + 5215.853156532723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554422", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5211.469391137643, + "max_x": 4110.731703383284, + "max_y": 5211.469391137643, + "center": [ + 4109.597488573558, + 5211.469391137643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.731703383284, + 5211.469391137643 + ], + [ + 4108.463273763831, + 5211.469391137643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554423", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4108.463273763831, + "min_y": 5216.599744099653, + "max_x": 4110.731703383284, + "max_y": 5216.599744099653, + "center": [ + 4109.597488573558, + 5216.599744099653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.731703383284, + 5216.599744099653 + ], + [ + 4108.463273763831, + 5216.599744099653 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554424", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.584404021021, + "min_y": 5210.00463099779, + "max_x": 4109.584423548678, + "max_y": 5211.47307090037, + "center": [ + 4109.58441378485, + 5210.738850949079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.584423548678, + 5210.00463099779 + ], + [ + 4109.584404021021, + 5211.47307090037 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554425", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4109.584381003703, + "min_y": 5216.597075339624, + "max_x": 4109.584400989933, + "max_y": 5233.497952150838, + "center": [ + 4109.584390996818, + 5225.04751374523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.584400989933, + 5216.597075339624 + ], + [ + 4109.584381003703, + 5233.497952150838 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554426", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4088.627227051732, + "min_y": 5234.484923788127, + "max_x": 4088.627227051732, + "max_y": 5239.997232859943, + "center": [ + 4088.627227051732, + 5237.241078324036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.627227051732, + 5234.484923788127 + ], + [ + 4088.627227051732, + 5239.997232859943 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554427", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4085.996828508482, + "min_y": 5237.004747098882, + "max_x": 4088.626270486572, + "max_y": 5237.004747098882, + "center": [ + 4087.3115494975273, + 5237.004747098882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.626270486572, + 5237.004747098882 + ], + [ + 4085.996828508482, + 5237.004747098882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554428", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 4078.23703356838, + "min_y": 5237.004747098882, + "max_x": 4080.86647554647, + "max_y": 5237.004747098882, + "center": [ + 4079.551754557425, + 5237.004747098882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4080.86647554647, + 5237.004747098882 + ], + [ + 4078.23703356838, + 5237.004747098882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554429", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4081.613063113399, + "min_y": 5235.870532289156, + "max_x": 4081.613063113399, + "max_y": 5238.138961908609, + "center": [ + 4081.613063113399, + 5237.004747098883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.613063113399, + 5238.138961908609 + ], + [ + 4081.613063113399, + 5235.870532289156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4085.250240941554, + "min_y": 5235.870532289156, + "max_x": 4085.250240941554, + "max_y": 5238.138961908609, + "center": [ + 4085.250240941554, + 5237.004747098883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.250240941554, + 5238.138961908609 + ], + [ + 4085.250240941554, + 5235.870532289156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4081.613063113399, + "min_y": 5235.870532289156, + "max_x": 4082.852676026627, + "max_y": 5236.643652213969, + "center": [ + 4082.232869570013, + 5236.257092251562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.613063113399, + 5235.870532289156 + ], + [ + 4082.852676026627, + 5236.643652213969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4081.613063113399, + "min_y": 5237.365841983795, + "max_x": 4082.852676026627, + "max_y": 5238.138961908609, + "center": [ + 4082.232869570013, + 5237.752401946202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.613063113399, + 5238.138961908609 + ], + [ + 4082.852676026627, + 5237.365841983795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4082.749301145986, + "min_y": 5236.322396217394, + "max_x": 4084.114002908958, + "max_y": 5237.687097980366, + "center": [ + 4083.431652027472, + 5237.00474709888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.431652027472, + 5237.00474709888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4084.010628028318, + "min_y": 5235.870532289156, + "max_x": 4085.250240941554, + "max_y": 5236.643652213969, + "center": [ + 4084.630434484936, + 5236.257092251562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4084.010628028318, + 5236.643652213969 + ], + [ + 4085.250240941554, + 5235.870532289156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55442F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4084.010628028318, + "min_y": 5237.365841983795, + "max_x": 4085.250240941554, + "max_y": 5238.138961908609, + "center": [ + 4084.630434484936, + 5237.752401946202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4084.010628028318, + 5237.365841983795 + ], + [ + 4085.250240941554, + 5238.138961908609 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554430", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4080.8664755464697, + "min_y": 5236.631453315417, + "max_x": 4081.6130631133983, + "max_y": 5237.378040882347, + "center": [ + 4081.239769329934, + 5237.004747098882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.239769329934, + 5237.004747098882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554431", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4085.250240941554, + "min_y": 5236.631453315417, + "max_x": 4085.9968285084824, + "max_y": 5237.378040882347, + "center": [ + 4085.623534725018, + 5237.004747098882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.623534725018, + 5237.004747098882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554432", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4077.672982657623, + "min_y": 5237.899811055239, + "max_x": 4078.80108447913, + "max_y": 5237.899811055239, + "center": [ + 4078.2370335683763, + 5237.899811055239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.80108447913, + 5237.899811055239 + ], + [ + 4077.672982657623, + 5237.899811055239 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554433", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4077.672982657623, + "min_y": 5236.109683142528, + "max_x": 4077.672982657623, + "max_y": 5237.899811055239, + "center": [ + 4077.672982657623, + 5237.004747098884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4077.672982657623, + 5237.899811055239 + ], + [ + 4077.672982657623, + 5236.109683142528 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554434", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4077.672982657623, + "min_y": 5236.109683142528, + "max_x": 4078.80108447913, + "max_y": 5236.109683142528, + "center": [ + 4078.2370335683763, + 5236.109683142528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4078.80108447913, + 5236.109683142528 + ], + [ + 4077.672982657623, + 5236.109683142528 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554435", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5237.896145227474, + "max_x": 4110.750523688547, + "max_y": 5237.896145227474, + "center": [ + 4109.616308878822, + 5237.896145227474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.750523688547, + 5237.896145227474 + ], + [ + 4108.482094069095, + 5237.896145227474 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554436", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5234.258967399322, + "max_x": 4110.750523688547, + "max_y": 5234.258967399322, + "center": [ + 4109.616308878822, + 5234.258967399322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.750523688547, + 5234.258967399322 + ], + [ + 4108.482094069095, + 5234.258967399322 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554437", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5236.656532314246, + "max_x": 4109.25521399391, + "max_y": 5237.896145227474, + "center": [ + 4108.868654031503, + 5237.27633877086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4108.482094069095, + 5237.896145227474 + ], + [ + 4109.25521399391, + 5236.656532314246 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554438", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.977403763734, + "min_y": 5236.656532314246, + "max_x": 4110.750523688547, + "max_y": 5237.896145227474, + "center": [ + 4110.36396372614, + 5237.27633877086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.750523688547, + 5237.896145227474 + ], + [ + 4109.977403763734, + 5236.656532314246 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554439", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.933957997333, + "min_y": 5235.395205431915, + "max_x": 4110.298659760305, + "max_y": 5236.759907194887, + "center": [ + 4109.616308878819, + 5236.077556313401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.616308878819, + 5236.077556313401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5234.258967399322, + "max_x": 4109.25521399391, + "max_y": 5235.498580312555, + "center": [ + 4108.868654031503, + 5234.878773855939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.25521399391, + 5235.498580312555 + ], + [ + 4108.482094069095, + 5234.258967399322 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4109.977403763734, + "min_y": 5234.258967399322, + "max_x": 4110.750523688547, + "max_y": 5235.498580312555, + "center": [ + 4110.36396372614, + 5234.878773855939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4109.977403763734, + 5235.498580312555 + ], + [ + 4110.750523688547, + 5234.258967399322 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5233.512379832394, + "max_x": 4110.750523688547, + "max_y": 5233.512379832394, + "center": [ + 4109.616308878822, + 5233.512379832394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.750523688547, + 5233.512379832394 + ], + [ + 4108.482094069095, + 5233.512379832394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4108.482094069095, + "min_y": 5238.642732794403, + "max_x": 4110.750523688547, + "max_y": 5238.642732794403, + "center": [ + 4109.616308878822, + 5238.642732794403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4110.750523688547, + 5238.642732794403 + ], + [ + 4108.482094069095, + 5238.642732794403 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5244.379994400309, + "max_x": 4089.798678753088, + "max_y": 5244.379994400309, + "center": [ + 4088.6644639433607, + 5244.379994400309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.798678753088, + 5244.379994400309 + ], + [ + 4087.530249133634, + 5244.379994400309 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55443F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5240.742816572156, + "max_x": 4089.798678753088, + "max_y": 5240.742816572156, + "center": [ + 4088.6644639433607, + 5240.742816572156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.798678753088, + 5240.742816572156 + ], + [ + 4087.530249133634, + 5240.742816572156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554440", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5243.140381487081, + "max_x": 4088.30336905845, + "max_y": 5244.379994400309, + "center": [ + 4087.916809096042, + 5243.760187943695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4087.530249133634, + 5244.379994400309 + ], + [ + 4088.30336905845, + 5243.140381487081 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554441", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4089.025558828274, + "min_y": 5243.140381487081, + "max_x": 4089.798678753088, + "max_y": 5244.379994400309, + "center": [ + 4089.4121187906812, + 5243.760187943695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.798678753088, + 5244.379994400309 + ], + [ + 4089.025558828274, + 5243.140381487081 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554442", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.982113061873, + "min_y": 5241.879054604749, + "max_x": 4089.346814824845, + "max_y": 5243.243756367721, + "center": [ + 4088.664463943359, + 5242.561405486235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.664463943359, + 5242.561405486235 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554443", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5240.742816572156, + "max_x": 4088.30336905845, + "max_y": 5241.982429485389, + "center": [ + 4087.916809096042, + 5241.362623028772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4088.30336905845, + 5241.982429485389 + ], + [ + 4087.530249133634, + 5240.742816572156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554444", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4089.025558828274, + "min_y": 5240.742816572156, + "max_x": 4089.798678753088, + "max_y": 5241.982429485389, + "center": [ + 4089.4121187906812, + 5241.362623028772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.025558828274, + 5241.982429485389 + ], + [ + 4089.798678753088, + 5240.742816572156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554445", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5239.996229005227, + "max_x": 4089.798678753088, + "max_y": 5239.996229005227, + "center": [ + 4088.6644639433607, + 5239.996229005227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.798678753088, + 5239.996229005227 + ], + [ + 4087.530249133634, + 5239.996229005227 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554446", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4087.530249133634, + "min_y": 5245.126581967237, + "max_x": 4089.798678753088, + "max_y": 5245.126581967237, + "center": [ + 4088.6644639433607, + 5245.126581967237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4089.798678753088, + 5245.126581967237 + ], + [ + 4087.530249133634, + 5245.126581967237 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554447", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 4095.204848968977, + "min_y": 5254.41796479771, + "max_x": 4097.892564209921, + "max_y": 5255.911139931568, + "center": [ + 4096.548706589449, + 5255.164552364638 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "554448", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4100.122703473204, + "min_y": 5249.629424857348, + "max_x": 4100.122703473204, + "max_y": 5252.271633747753, + "center": [ + 4100.122703473204, + 5250.95052930255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473204, + 5252.271633747753 + ], + [ + 4100.122703473204, + 5249.629424857348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554449", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4100.122703473204, + "min_y": 5257.401986709762, + "max_x": 4100.122703473204, + "max_y": 5258.55554389308, + "center": [ + 4100.122703473204, + 5257.978765301421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473204, + 5258.55554389308 + ], + [ + 4100.122703473204, + 5257.401986709762 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4096.389765638559, + "min_y": 5258.5555438930805, + "max_x": 4103.855641307849, + "max_y": 5266.02141956237, + "center": [ + 4100.122703473204, + 5262.288481727725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473204, + 5262.288481727725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4098.902235555345, + "min_y": 5262.945725691658, + "max_x": 4100.916543742671, + "max_y": 5264.624315847762, + "center": [ + 4099.9093896490085, + 5263.78502076971 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4097.56823573815, + "min_y": 5259.956852492846, + "max_x": 4102.604006206464, + "max_y": 5261.635442648951, + "center": [ + 4100.086120972307, + 5260.796147570898 + ] + }, + "raw_value": "10800", + "clean_value": "10800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5256.655399142833, + "max_x": 4101.25691828293, + "max_y": 5256.655399142833, + "center": [ + 4100.122703473204, + 5256.655399142833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4101.25691828293, + 5256.655399142833 + ], + [ + 4098.988488663478, + 5256.655399142833 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5253.018221314681, + "max_x": 4101.25691828293, + "max_y": 5253.018221314681, + "center": [ + 4100.122703473204, + 5253.018221314681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4101.25691828293, + 5253.018221314681 + ], + [ + 4098.988488663478, + 5253.018221314681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55444F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5255.415786229606, + "max_x": 4099.761608588294, + "max_y": 5256.655399142833, + "center": [ + 4099.375048625886, + 5256.035592686219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4098.988488663478, + 5256.655399142833 + ], + [ + 4099.761608588294, + 5255.415786229606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554450", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4100.483798358117, + "min_y": 5255.415786229606, + "max_x": 4101.25691828293, + "max_y": 5256.655399142833, + "center": [ + 4100.870358320524, + 5256.035592686219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4101.25691828293, + 5256.655399142833 + ], + [ + 4100.483798358117, + 5255.415786229606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554451", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4099.440352591717, + "min_y": 5254.1544593472745, + "max_x": 4100.805054354689, + "max_y": 5255.519161110246, + "center": [ + 4100.122703473203, + 5254.83681022876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473203, + 5254.83681022876 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554452", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4098.988488663478, + "min_y": 5253.018221314681, + "max_x": 4099.761608588294, + "max_y": 5254.257834227915, + "center": [ + 4099.375048625886, + 5253.638027771298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4099.761608588294, + 5254.257834227915 + ], + [ + 4098.988488663478, + 5253.018221314681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554453", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4100.483798358117, + "min_y": 5253.018221314681, + "max_x": 4101.25691828293, + "max_y": 5254.257834227915, + "center": [ + 4100.870358320524, + 5253.638027771298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.483798358117, + 5254.257834227915 + ], + [ + 4101.25691828293, + 5253.018221314681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554454", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4099.749409689739, + "min_y": 5256.655399142834, + "max_x": 4100.4959972566685, + "max_y": 5257.401986709763, + "center": [ + 4100.122703473204, + 5257.028692926298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473204, + 5257.028692926298 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554455", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4099.749409689739, + "min_y": 5252.271633747753, + "max_x": 4100.4959972566685, + "max_y": 5253.018221314683, + "center": [ + 4100.122703473204, + 5252.644927531218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4100.122703473204, + 5252.644927531218 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554456", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.648749498411, + "min_y": 5240.908137607077, + "max_x": 4038.648749498411, + "max_y": 5252.688424308045, + "center": [ + 4038.648749498411, + 5246.798280957561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4038.648749498411, + 5252.688424308045 + ], + [ + 4038.648749498411, + 5240.908137607077 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "554457", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.648749498411, + "min_y": 5236.992523273655, + "max_x": 4038.648749498411, + "max_y": 5237.95363855323, + "center": [ + 4038.648749498411, + 5237.473080913443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4038.648749498411, + 5237.95363855323 + ], + [ + 4038.648749498411, + 5236.992523273655 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "554458", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 4082.576403753764, + "min_y": 5249.727520598406, + "max_x": 4085.2641189947085, + "max_y": 5251.220695732264, + "center": [ + 4083.9202613742364, + 5250.474108165336 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "554459", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4086.655633260794, + "min_y": 5252.688376740849, + "max_x": 4088.638285530874, + "max_y": 5252.688376740849, + "center": [ + 4087.6469593958336, + 5252.688376740849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4086.655633260794, + 5252.688376740849 + ], + [ + 4088.638285530874, + 5252.688376740849 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "55445A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4085.865725721887, + "min_y": 5251.460369745859, + "max_x": 4085.865725721887, + "max_y": 5253.728799365312, + "center": [ + 4085.865725721887, + 5252.594584555585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.865725721887, + 5251.460369745859 + ], + [ + 4085.865725721887, + 5253.728799365312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55445B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4082.228547893733, + "min_y": 5251.460369745859, + "max_x": 4082.228547893733, + "max_y": 5253.728799365312, + "center": [ + 4082.228547893733, + 5252.594584555585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4082.228547893733, + 5251.460369745859 + ], + [ + 4082.228547893733, + 5253.728799365312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55445C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4084.626112808661, + "min_y": 5252.955679440497, + "max_x": 4085.865725721887, + "max_y": 5253.728799365312, + "center": [ + 4085.245919265274, + 5253.342239402904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.865725721887, + 5253.728799365312 + ], + [ + 4084.626112808661, + 5252.955679440497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55445D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4084.626112808661, + "min_y": 5251.460369745859, + "max_x": 4085.865725721887, + "max_y": 5252.233489670674, + "center": [ + 4085.245919265274, + 5251.8469297082665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4085.865725721887, + 5251.460369745859 + ], + [ + 4084.626112808661, + 5252.233489670674 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55445E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4083.364785926327, + "min_y": 5251.912233674102, + "max_x": 4084.729487689299, + "max_y": 5253.276935437074, + "center": [ + 4084.047136807813, + 5252.594584555588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4084.047136807813, + 5252.594584555588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55445F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4082.228547893733, + "min_y": 5252.955679440497, + "max_x": 4083.468160806969, + "max_y": 5253.728799365312, + "center": [ + 4082.8483543503507, + 5253.342239402904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.468160806969, + 5252.955679440497 + ], + [ + 4082.228547893733, + 5253.728799365312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554460", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4082.228547893733, + "min_y": 5251.460369745859, + "max_x": 4083.468160806969, + "max_y": 5252.233489670674, + "center": [ + 4082.8483543503507, + 5251.8469297082665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4083.468160806969, + 5252.233489670674 + ], + [ + 4082.228547893733, + 5251.460369745859 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554461", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4081.481960326803, + "min_y": 5251.460369745859, + "max_x": 4081.481960326803, + "max_y": 5253.728799365312, + "center": [ + 4081.481960326803, + 5252.594584555585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4081.481960326803, + 5251.460369745859 + ], + [ + 4081.481960326803, + 5253.728799365312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554462", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4086.612313288816, + "min_y": 5251.460369745859, + "max_x": 4086.612313288816, + "max_y": 5253.728799365312, + "center": [ + 4086.612313288816, + 5252.594584555585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4086.612313288816, + 5251.460369745859 + ], + [ + 4086.612313288816, + 5253.728799365312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554463", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4037.960894552101, + "min_y": 5237.956978665202, + "max_x": 4039.454069685958, + "max_y": 5237.956978665202, + "center": [ + 4038.7074821190295, + 5237.956978665202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4037.960894552101, + 5237.956978665202 + ], + [ + 4039.454069685958, + 5237.956978665202 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554464", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4037.960894552101, + "min_y": 5238.205841187512, + "max_x": 4039.454069685958, + "max_y": 5238.205841187512, + "center": [ + 4038.7074821190295, + 5238.205841187512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4037.960894552101, + 5238.205841187512 + ], + [ + 4039.454069685958, + 5238.205841187512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554465", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.021379227038, + "min_y": 5239.8353795343, + "max_x": 4038.240188420456, + "max_y": 5240.907558388827, + "center": [ + 4038.130783823747, + 5240.371468961564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4038.021379227038, + 5239.8353795343 + ], + [ + 4038.240188420456, + 5240.907558388827 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554466", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4039.11542519415, + "min_y": 5239.8353795343, + "max_x": 4039.334234387577, + "max_y": 5240.907558388827, + "center": [ + 4039.2248297908636, + 5240.371468961564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4039.334234387577, + 5239.8353795343 + ], + [ + 4039.11542519415, + 5240.907558388827 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554467", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.240188420456, + "min_y": 5240.907558388827, + "max_x": 4039.11542519415, + "max_y": 5240.907558388827, + "center": [ + 4038.6778068073027, + 5240.907558388827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4039.11542519415, + 5240.907558388827 + ], + [ + 4038.240188420456, + 5240.907558388827 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554468", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.021379227038, + "min_y": 5239.8353795343, + "max_x": 4039.334234387577, + "max_y": 5239.8353795343, + "center": [ + 4038.677806807307, + 5239.8353795343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4039.334234387577, + 5239.8353795343 + ], + [ + 4038.021379227038, + 5239.8353795343 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "554469", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4038.648749498411, + "min_y": 5238.205979374352, + "max_x": 4038.648749498411, + "max_y": 5239.835610742307, + "center": [ + 4038.648749498411, + 5239.02079505833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4038.648749498411, + 5239.835610742307 + ], + [ + 4038.648749498411, + 5238.205979374352 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "55446A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 4041.565847302054, + "min_y": 5238.412205440711, + "max_x": 4048.2858473020538, + "max_y": 5240.012205440711, + "center": [ + 4044.9258473020536, + 5239.212205440711 + ] + }, + "raw_value": "40Ax20A", + "clean_value": "40Ax20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55446B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4462.63522375548, + "min_y": 5183.52232118382, + "max_x": 4463.9550464487975, + "max_y": 5184.255556013441, + "center": [ + 4463.295135102138, + 5183.88893859863 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55446C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4450.310011539483, + "min_y": 5181.91080240359, + "max_x": 4456.439660830314, + "max_y": 5181.91080240359, + "center": [ + 4453.374836184898, + 5181.91080240359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.310011539483, + 5181.91080240359 + ], + [ + 4456.439660830314, + 5181.91080240359 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55446D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4456.421332602127, + "min_y": 5181.919844351365, + "max_x": 4456.421620769142, + "max_y": 5182.809285265098, + "center": [ + 4456.421476685635, + 5182.364564808231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.421620769142, + 5181.919844351365 + ], + [ + 4456.421332602127, + 5182.809285265098 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55446E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4456.414412517888, + "min_y": 5185.033731129103, + "max_x": 4456.414412517888, + "max_y": 5186.458649528004, + "center": [ + 4456.414412517888, + 5185.746190328553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.414412517888, + 5185.033731129103 + ], + [ + 4456.414412517888, + 5186.458649528004 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55446F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4457.046907229456, + "min_y": 5183.643780017506, + "max_x": 4458.366729922774, + "max_y": 5184.377014847127, + "center": [ + 4457.7068185761145, + 5184.0103974323165 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554470", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4580.692597590298, + "min_y": 5268.256245882692, + "max_x": 4582.252597590298, + "max_y": 5269.556245882693, + "center": [ + 4581.472597590298, + 5268.906245882692 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554471", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.117972590286, + "min_y": 5265.901433493029, + "max_x": 4583.797972590286, + "max_y": 5267.201433493029, + "center": [ + 4581.457972590286, + 5266.5514334930285 + ] + }, + "raw_value": "10900E", + "clean_value": "10900E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554472", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4578.9323700549885, + "min_y": 5264.626996447493, + "max_x": 4584.597254462296, + "max_y": 5270.291880854801, + "center": [ + 4581.764812258642, + 5267.459438651147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4581.764812258642, + 5267.459438651147 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554473", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4581.187318497676, + "min_y": 5304.440193158298, + "max_x": 4582.747318497676, + "max_y": 5305.740193158298, + "center": [ + 4581.967318497676, + 5305.090193158298 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554474", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.634793497665, + "min_y": 5302.085380768636, + "max_x": 4584.314793497665, + "max_y": 5303.385380768636, + "center": [ + 4581.974793497665, + 5302.735380768636 + ] + }, + "raw_value": "10900F", + "clean_value": "10900F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554475", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.427090962365, + "min_y": 5300.810943723098, + "max_x": 4585.091975369673, + "max_y": 5306.475828130406, + "center": [ + 4582.259533166019, + 5303.643385926752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.259533166019, + 5303.643385926752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554476", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4581.133668247217, + "min_y": 5326.277564933241, + "max_x": 4582.693668247218, + "max_y": 5327.577564933241, + "center": [ + 4581.913668247218, + 5326.927564933241 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554477", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.450200747206, + "min_y": 5323.922752543578, + "max_x": 4584.130200747206, + "max_y": 5325.222752543578, + "center": [ + 4581.790200747206, + 5324.572752543578 + ] + }, + "raw_value": "10900G", + "clean_value": "10900G", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554478", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.373440711908, + "min_y": 5322.6483154980415, + "max_x": 4585.038325119216, + "max_y": 5328.313199905349, + "center": [ + 4582.205882915562, + 5325.480757701695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.205882915562, + 5325.480757701695 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554479", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4581.373769308276, + "min_y": 5348.348436729798, + "max_x": 4582.933769308276, + "max_y": 5349.648436729798, + "center": [ + 4582.1537693082755, + 5348.998436729798 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.719584308266, + "min_y": 5345.993624340135, + "max_x": 4584.399584308267, + "max_y": 5347.2936243401355, + "center": [ + 4582.0595843082665, + 5346.643624340135 + ] + }, + "raw_value": "10900H", + "clean_value": "10900H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.613541772966, + "min_y": 5344.719187294598, + "max_x": 4585.2784261802735, + "max_y": 5350.384071701906, + "center": [ + 4582.44598397662, + 5347.551629498252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.44598397662, + 5347.551629498252 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4581.056464912773, + "min_y": 5371.043533770629, + "max_x": 4582.616464912773, + "max_y": 5372.34353377063, + "center": [ + 4581.8364649127725, + 5371.693533770629 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.749802412762, + "min_y": 5368.688721380967, + "max_x": 4584.429802412762, + "max_y": 5369.988721380967, + "center": [ + 4582.089802412762, + 5369.338721380967 + ] + }, + "raw_value": "10900I", + "clean_value": "10900I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4579.296237377463, + "min_y": 5367.41428433543, + "max_x": 4584.9611217847705, + "max_y": 5373.079168742738, + "center": [ + 4582.128679581117, + 5370.246726539084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4582.128679581117, + 5370.246726539084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55447F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4546.752684938691, + "min_y": 5304.360679882558, + "max_x": 4548.312684938692, + "max_y": 5305.660679882558, + "center": [ + 4547.532684938691, + 5305.010679882558 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554480", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4545.271984938679, + "min_y": 5302.005867492895, + "max_x": 4549.95198493868, + "max_y": 5303.305867492895, + "center": [ + 4547.61198493868, + 5302.655867492895 + ] + }, + "raw_value": "10900J", + "clean_value": "10900J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554481", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4544.99245740338, + "min_y": 5300.731430447358, + "max_x": 4550.657341810688, + "max_y": 5306.396314854666, + "center": [ + 4547.824899607034, + 5303.563872651012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4547.824899607034, + 5303.563872651012 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554482", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4455.574497530175, + "min_y": 5190.169062134346, + "max_x": 4457.134497530175, + "max_y": 5191.469062134346, + "center": [ + 4456.354497530176, + 5190.819062134346 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554483", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4454.329162530168, + "min_y": 5188.217137049075, + "max_x": 4458.229162530168, + "max_y": 5189.517137049075, + "center": [ + 4456.279162530168, + 5188.867137049076 + ] + }, + "raw_value": "10900", + "clean_value": "10900", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554484", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.520362416123, + "min_y": 5186.454384946196, + "max_x": 4459.461484045522, + "max_y": 5192.395506575595, + "center": [ + 4456.490923230823, + 5189.424945760896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.490923230823, + 5189.424945760896 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554485", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.206949477718, + "min_y": 5204.339606983317, + "max_x": 3566.206949477718, + "max_y": 5209.166501555619, + "center": [ + 3566.206949477718, + 5206.753054269468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.206949477718, + 5209.166501555619 + ], + [ + 3566.206949477718, + 5204.339606983317 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554486", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.206949477718, + "min_y": 5204.339594954394, + "max_x": 3588.633784637918, + "max_y": 5204.339606983317, + "center": [ + 3577.420367057818, + 5204.339600968855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.206949477718, + 5204.339606983317 + ], + [ + 3588.633784637918, + 5204.339594954394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554487", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3588.633784637918, + "min_y": 5204.339594954394, + "max_x": 3591.047245728937, + "max_y": 5206.753056045412, + "center": [ + 3589.8405151834277, + 5205.546325499903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3588.633784637918, + 5204.339594954394 + ], + [ + 3591.047245728937, + 5206.753056045412 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554488", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3588.633784637918, + "min_y": 5206.753056045412, + "max_x": 3591.047245728937, + "max_y": 5209.166517136431, + "center": [ + 3589.8405151834277, + 5207.959786590922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3591.047245728937, + 5206.753056045412 + ], + [ + 3588.633784637918, + 5209.166517136431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554489", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.206949477718, + "min_y": 5204.339606983317, + "max_x": 3566.206949477718, + "max_y": 5209.166501555619, + "center": [ + 3566.206949477718, + 5206.753054269468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.206949477718, + 5209.166501555619 + ], + [ + 3566.206949477718, + 5204.339606983317 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3569.575808611733, + "min_y": 5205.952025626942, + "max_x": 3591.738544488227, + "max_y": 5207.6310207691, + "center": [ + 3580.6571765499802, + 5206.7915231980205 + ] + }, + "raw_value": "1~5F #10 Plant Utility", + "clean_value": "1~5F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.206949477718, + "min_y": 5204.339594954394, + "max_x": 3588.633784637918, + "max_y": 5204.339606983317, + "center": [ + 3577.420367057818, + 5204.339600968855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.206949477718, + 5204.339606983317 + ], + [ + 3588.633784637918, + 5204.339594954394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.206949477718, + "min_y": 5209.166501555619, + "max_x": 3588.633784637918, + "max_y": 5209.166517136431, + "center": [ + 3577.420367057818, + 5209.166509346025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.206949477718, + 5209.166501555619 + ], + [ + 3588.633784637918, + 5209.166517136431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3588.633784637918, + "min_y": 5204.339594954394, + "max_x": 3591.047245728937, + "max_y": 5206.753056045412, + "center": [ + 3589.8405151834277, + 5205.546325499903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3588.633784637918, + 5204.339594954394 + ], + [ + 3591.047245728937, + 5206.753056045412 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3588.633784637918, + "min_y": 5206.753056045412, + "max_x": 3591.047245728937, + "max_y": 5209.166517136431, + "center": [ + 3589.8405151834277, + 5207.959786590922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3591.047245728937, + 5206.753056045412 + ], + [ + 3588.633784637918, + 5209.166517136431 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55448F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3549.477526705177, + "min_y": 5206.729705714882, + "max_x": 3566.178667009713, + "max_y": 5206.729705714882, + "center": [ + 3557.828096857445, + 5206.729705714882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.178667009713, + 5206.729705714882 + ], + [ + 3549.477526705177, + 5206.729705714882 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554490", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3555.384374804904, + "min_y": 5204.887585086845, + "max_x": 3558.0048971648243, + "max_y": 5206.343430842357, + "center": [ + 3556.6946359848644, + 5205.615507964601 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554491", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3548.726826648215, + "min_y": 5201.928822181905, + "max_x": 3550.220001782073, + "max_y": 5201.928822181905, + "center": [ + 3549.4734142151437, + 5201.928822181905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3548.726826648215, + 5201.928822181905 + ], + [ + 3550.220001782073, + 5201.928822181905 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554492", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3548.726826648215, + "min_y": 5202.177684704217, + "max_x": 3550.220001782073, + "max_y": 5202.177684704217, + "center": [ + 3549.4734142151437, + 5202.177684704217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3548.726826648215, + 5202.177684704217 + ], + [ + 3550.220001782073, + 5202.177684704217 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554493", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4023.1768817472, + "min_y": 5236.989123307347, + "max_x": 4023.1768817472, + "max_y": 5239.405211428143, + "center": [ + 4023.1768817472, + 5238.197167367745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4023.1768817472, + 5239.405211428143 + ], + [ + 4023.1768817472, + 5236.989123307347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554494", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4018.294581876892, + "min_y": 5236.989123307347, + "max_x": 4018.294581876892, + "max_y": 5239.405211428143, + "center": [ + 4018.294581876892, + 5238.197167367745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4018.294581876892, + 5239.405211428143 + ], + [ + 4018.294581876892, + 5236.989123307347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554495", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4017.746100755545, + "min_y": 5239.405211428143, + "max_x": 4023.725362868548, + "max_y": 5239.405211428149, + "center": [ + 4020.7357318120467, + 5239.405211428146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4023.725362868548, + 5239.405211428149 + ], + [ + 4017.746100755545, + 5239.405211428143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554496", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4017.746100755545, + "min_y": 5240.343696564988, + "max_x": 4023.725362868548, + "max_y": 5240.343696564988, + "center": [ + 4020.7357318120467, + 5240.343696564988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4023.725362868548, + 5240.343696564988 + ], + [ + 4017.746100755545, + 5240.343696564988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554497", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4018.464826119062, + "min_y": 5240.851433094817, + "max_x": 4023.403502874297, + "max_y": 5242.02730851273, + "center": [ + 4020.9341644966794, + 5241.439370803773 + ] + }, + "raw_value": "570x570", + "clean_value": "570x570", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554498", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4218.038901617699, + "min_y": 5191.951386533161, + "max_x": 4223.6383083696655, + "max_y": 5192.884620991822, + "center": [ + 4220.838604993682, + 5192.418003762492 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554499", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4649.511500602001, + "min_y": 5191.773415451393, + "max_x": 4655.110907353968, + "max_y": 5192.706649910054, + "center": [ + 4652.311203977984, + 5192.240032680724 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3776.231417423777, + "min_y": 5191.696069325827, + "max_x": 3781.830824175744, + "max_y": 5192.629303784488, + "center": [ + 3779.0311207997606, + 5192.162686555157 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3793.450585736664, + "min_y": 5191.828173344054, + "max_x": 3797.9301111382374, + "max_y": 5192.761407802715, + "center": [ + 3795.6903484374507, + 5192.294790573385 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4235.555520446739, + "min_y": 5191.887825628274, + "max_x": 4240.035045848313, + "max_y": 5192.821060086935, + "center": [ + 4237.795283147526, + 5192.354442857604 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4455.886172960989, + "min_y": 5197.507902947446, + "max_x": 4457.446172960989, + "max_y": 5198.807902947447, + "center": [ + 4456.66617296099, + 5198.157902947447 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4454.405472960981, + "min_y": 5195.570927862174, + "max_x": 4458.30547296098, + "max_y": 5196.8709278621745, + "center": [ + 4456.3554729609805, + 5196.220927862174 + ] + }, + "raw_value": "10900", + "clean_value": "10900", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55449F", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.5966728469375, + "min_y": 5193.808175759296, + "max_x": 4459.537794476337, + "max_y": 5199.749297388696, + "center": [ + 4456.567233661637, + 5196.778736573996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.567233661637, + 5196.778736573996 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.62866762612, + "min_y": 5199.755951668205, + "max_x": 4456.793483801223, + "max_y": 5199.755958326846, + "center": [ + 4455.211075713672, + 5199.755954997525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.793483801223, + 5199.755951668205 + ], + [ + 4453.62866762612, + 5199.755958326846 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.626789708889, + "min_y": 5197.140990051718, + "max_x": 4453.626796367536, + "max_y": 5199.754131034958, + "center": [ + 4453.626793038213, + 5198.447560543338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4453.626789708889, + 5197.140990051718 + ], + [ + 4453.626796367536, + 5199.754131034958 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4456.194820280601, + "min_y": 5199.753495121633, + "max_x": 4459.534287228578, + "max_y": 5199.753501780285, + "center": [ + 4457.864553754589, + 5199.753498450958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.194820280601, + 5199.753501780285 + ], + [ + 4459.534287228578, + 5199.753495121633 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4459.537781546131, + "min_y": 5196.784629400723, + "max_x": 4459.537788204774, + "max_y": 5199.754131034958, + "center": [ + 4459.537784875452, + 5198.26938021784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4459.537781546131, + 5196.784629400723 + ], + [ + 4459.537788204774, + 5199.754131034958 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.61182017276, + "min_y": 5193.801516445078, + "max_x": 4456.951287120728, + "max_y": 5193.801523103735, + "center": [ + 4455.281553646744, + 5193.801519774406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.951287120728, + 5193.801516445078 + ], + [ + 4453.61182017276, + 5193.801523103735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.61060696648, + "min_y": 5193.801523103735, + "max_x": 4453.610613625122, + "max_y": 5197.140990051707, + "center": [ + 4453.610610295801, + 5195.471256577721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4453.610613625122, + 5197.140990051707 + ], + [ + 4453.61060696648, + 5193.801523103735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4456.807724377283, + "min_y": 5193.801509786453, + "max_x": 4459.537398932122, + "max_y": 5193.801516445078, + "center": [ + 4458.172561654703, + 5193.801513115765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.807724377283, + 5193.801516445078 + ], + [ + 4459.537398932122, + 5193.801509786453 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4459.53802175119, + "min_y": 5193.801509786453, + "max_x": 4459.538028409837, + "max_y": 5197.14097673441, + "center": [ + 4459.538025080514, + 5195.471243260432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4459.538028409837, + 5197.14097673441 + ], + [ + 4459.53802175119, + 5193.801509786453 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4453.60362169494, + "min_y": 5197.019403289097, + "max_x": 4459.532087011475, + "max_y": 5197.019416367905, + "center": [ + 4456.567854353207, + 5197.019409828501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4459.532087011475, + 5197.019403289097 + ], + [ + 4453.60362169494, + 5197.019416367905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544A9", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 4667.104393249859, + "min_y": 5191.854826064293, + "max_x": 4671.583918651432, + "max_y": 5192.788060522954, + "center": [ + 4669.3441559506455, + 5192.321443293624 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544AA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4399.098182574173, + "min_y": 5170.009720309336, + "max_x": 4410.2969960781065, + "max_y": 5171.176263382663, + "center": [ + 4404.69758932614, + 5170.592991846 + ] + }, + "raw_value": "0.75 -> 0.15 MPa", + "clean_value": "0.75 -> 0.15 MPa", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5544AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.218683799956, + "min_y": 5364.478826812877, + "max_x": 4590.22002243936, + "max_y": 5365.063421797144, + "center": [ + 4590.219353119658, + 5364.771124305011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.218683799956, + 5364.478826812877 + ], + [ + 4590.22002243936, + 5365.063421797144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544AC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.353561316536, + "min_y": 5371.713393837815, + "max_x": 4590.913561316536, + "max_y": 5373.013393837815, + "center": [ + 4590.133561316536, + 5372.363393837815 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544AD", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.905458816524, + "min_y": 5369.343631448153, + "max_x": 4592.585458816524, + "max_y": 5370.643631448153, + "center": [ + 4590.245458816524, + 5369.993631448153 + ] + }, + "raw_value": "10900I", + "clean_value": "10900I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544AE", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.451893781225, + "min_y": 5368.069194402615, + "max_x": 4593.116778188533, + "max_y": 5373.734078809923, + "center": [ + 4590.284335984879, + 5370.901636606269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.284335984879, + 5370.901636606269 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544AF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5365.390922810244, + "max_x": 4590.715165682455, + "max_y": 5365.390922810244, + "center": [ + 4590.220717805156, + 5365.390922810244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5365.390922810244 + ], + [ + 4590.715165682455, + 5365.390922810244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5366.976508575015, + "max_x": 4590.715165682455, + "max_y": 5366.976508575015, + "center": [ + 4590.220717805156, + 5366.976508575015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5366.976508575015 + ], + [ + 4590.715165682455, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.378132959513, + "min_y": 5365.390922810244, + "max_x": 4590.715165682455, + "max_y": 5365.931317776318, + "center": [ + 4590.546649320984, + 5365.661120293281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.715165682455, + 5365.390922810244 + ], + [ + 4590.378132959513, + 5365.931317776318 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5365.390922810244, + "max_x": 4590.063302650796, + "max_y": 5365.931317776318, + "center": [ + 4589.894786289326, + 5365.661120293281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5365.390922810244 + ], + [ + 4590.063302650796, + 5365.931317776318 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B3", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.923254800767, + "min_y": 5365.886252688238, + "max_x": 4590.518180809545, + "max_y": 5366.481178697016, + "center": [ + 4590.220717805156, + 5366.183715692627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5366.183715692627 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.378132959513, + "min_y": 5366.436113608941, + "max_x": 4590.715165682455, + "max_y": 5366.976508575015, + "center": [ + 4590.546649320984, + 5366.706311091978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.378132959513, + 5366.436113608941 + ], + [ + 4590.715165682455, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5366.436113608941, + "max_x": 4590.063302650796, + "max_y": 5366.976508575015, + "center": [ + 4589.894786289326, + 5366.706311091978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.063302650796, + 5366.436113608941 + ], + [ + 4589.726269927856, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B6", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.057984681535, + "min_y": 5366.97650857501, + "max_x": 4590.383450928776, + "max_y": 5367.3019748222505, + "center": [ + 4590.220717805156, + 5367.13924169863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5367.13924169863 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B7", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.057984681535, + "min_y": 5365.065456563006, + "max_x": 4590.383450928776, + "max_y": 5365.390922810247, + "center": [ + 4590.220717805156, + 5365.228189686626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5365.228189686626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5365.390922810244, + "max_x": 4590.715165682455, + "max_y": 5365.390922810244, + "center": [ + 4590.220717805156, + 5365.390922810244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5365.390922810244 + ], + [ + 4590.715165682455, + 5365.390922810244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544B9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5366.976508575015, + "max_x": 4590.715165682455, + "max_y": 5366.976508575015, + "center": [ + 4590.220717805156, + 5366.976508575015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5366.976508575015 + ], + [ + 4590.715165682455, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.378132959513, + "min_y": 5365.390922810244, + "max_x": 4590.715165682455, + "max_y": 5365.931317776318, + "center": [ + 4590.546649320984, + 5365.661120293281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.715165682455, + 5365.390922810244 + ], + [ + 4590.378132959513, + 5365.931317776318 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5365.390922810244, + "max_x": 4590.063302650796, + "max_y": 5365.931317776318, + "center": [ + 4589.894786289326, + 5365.661120293281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.726269927856, + 5365.390922810244 + ], + [ + 4590.063302650796, + 5365.931317776318 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BC", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.923254800767, + "min_y": 5365.886252688238, + "max_x": 4590.518180809545, + "max_y": 5366.481178697016, + "center": [ + 4590.220717805156, + 5366.183715692627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5366.183715692627 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.378132959513, + "min_y": 5366.436113608941, + "max_x": 4590.715165682455, + "max_y": 5366.976508575015, + "center": [ + 4590.546649320984, + 5366.706311091978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.378132959513, + 5366.436113608941 + ], + [ + 4590.715165682455, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.726269927856, + "min_y": 5366.436113608941, + "max_x": 4590.063302650796, + "max_y": 5366.976508575015, + "center": [ + 4589.894786289326, + 5366.706311091978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.063302650796, + 5366.436113608941 + ], + [ + 4589.726269927856, + 5366.976508575015 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544BF", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.057984681535, + "min_y": 5366.97650857501, + "max_x": 4590.383450928776, + "max_y": 5367.3019748222505, + "center": [ + 4590.220717805156, + 5367.13924169863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5367.13924169863 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C0", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.057984681535, + "min_y": 5365.065456563006, + "max_x": 4590.383450928776, + "max_y": 5365.390922810247, + "center": [ + 4590.220717805156, + 5365.228189686626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.220717805156, + 5365.228189686626 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.225506988388, + "min_y": 5367.301749765351, + "max_x": 4590.225618191097, + "max_y": 5367.986152584888, + "center": [ + 4590.225562589742, + 5367.64395117512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.225506988388, + 5367.301749765351 + ], + [ + 4590.225618191097, + 5367.986152584888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.226551010125, + "min_y": 5373.727235404073, + "max_x": 4590.226899032119, + "max_y": 5375.103339546028, + "center": [ + 4590.226725021123, + 5374.415287475051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.226551010125, + 5373.727235404073 + ], + [ + 4590.226899032119, + 5375.103339546028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544C3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.572699196312, + "min_y": 5378.833795674641, + "max_x": 4591.132699196312, + "max_y": 5380.133795674641, + "center": [ + 4590.352699196312, + 5379.483795674641 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.889231696305, + "min_y": 5376.896820589371, + "max_x": 4592.569231696305, + "max_y": 5378.196820589371, + "center": [ + 4590.229231696305, + 5377.54682058937 + ] + }, + "raw_value": "10900I", + "clean_value": "10900I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.2831990822615, + "min_y": 5375.134068486493, + "max_x": 4593.224320711661, + "max_y": 5381.075190115892, + "center": [ + 4590.253759896961, + 5378.104629301192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.253759896961, + 5378.104629301192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.315193861445, + "min_y": 5381.081844395401, + "max_x": 4590.480010036546, + "max_y": 5381.081851054042, + "center": [ + 4588.8976019489955, + 5381.081847724721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.480010036546, + 5381.081844395401 + ], + [ + 4587.315193861445, + 5381.081851054042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.313315944213, + "min_y": 5378.466882778915, + "max_x": 4587.31332260286, + "max_y": 5381.080023762154, + "center": [ + 4587.313319273537, + 5379.773453270534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.313315944213, + 5378.466882778915 + ], + [ + 4587.31332260286, + 5381.080023762154 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.881346515926, + "min_y": 5381.07938784883, + "max_x": 4593.220813463902, + "max_y": 5381.079394507481, + "center": [ + 4591.551079989915, + 5381.079391178156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.881346515926, + 5381.079394507481 + ], + [ + 4593.220813463902, + 5381.07938784883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544C9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.224307781454, + "min_y": 5378.110522127919, + "max_x": 4593.224314440099, + "max_y": 5381.080023762154, + "center": [ + 4593.224311110776, + 5379.595272945036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.224307781454, + 5378.110522127919 + ], + [ + 4593.224314440099, + 5381.080023762154 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.298346408084, + "min_y": 5375.127409172274, + "max_x": 4590.637813356052, + "max_y": 5375.127415830931, + "center": [ + 4588.968079882068, + 5375.1274125016025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.637813356052, + 5375.127409172274 + ], + [ + 4587.298346408084, + 5375.127415830931 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.297133201803, + "min_y": 5375.127415830931, + "max_x": 4587.297139860446, + "max_y": 5378.466882778904, + "center": [ + 4587.297136531124, + 5376.797149304917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.297139860446, + 5378.466882778904 + ], + [ + 4587.297133201803, + 5375.127415830931 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4590.494250612606, + "min_y": 5375.127402513649, + "max_x": 4593.223925167445, + "max_y": 5375.127409172274, + "center": [ + 4591.859087890025, + 5375.127405842962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.494250612606, + 5375.127409172274 + ], + [ + 4593.223925167445, + 5375.127402513649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.224547986515, + "min_y": 5375.127402513649, + "max_x": 4593.224554645161, + "max_y": 5378.466869461607, + "center": [ + 4593.224551315838, + 5376.797135987628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.224554645161, + 5378.466869461607 + ], + [ + 4593.224547986515, + 5375.127402513649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.290147930263, + "min_y": 5378.345296016293, + "max_x": 4593.2186132468, + "max_y": 5378.345309095101, + "center": [ + 4590.254380588531, + 5378.345302555697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.2186132468, + 5378.345296016293 + ], + [ + 4587.290147930263, + 5378.345309095101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.138207624423, + "min_y": 5341.788015225745, + "max_x": 4590.139546263826, + "max_y": 5342.372610210011, + "center": [ + 4590.138876944124, + 5342.080312717878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.138207624423, + 5341.788015225745 + ], + [ + 4590.139546263826, + 5342.372610210011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544D0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.273085141002, + "min_y": 5349.022582250682, + "max_x": 4590.833085141003, + "max_y": 5350.322582250682, + "center": [ + 4590.053085141002, + 5349.672582250681 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.477460140991, + "min_y": 5346.65281986102, + "max_x": 4592.157460140991, + "max_y": 5347.9528198610205, + "center": [ + 4589.817460140991, + 5347.302819861021 + ] + }, + "raw_value": "10900H", + "clean_value": "10900H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.371417605692, + "min_y": 5345.378382815483, + "max_x": 4593.036302013, + "max_y": 5351.043267222791, + "center": [ + 4590.203859809346, + 5348.210825019137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.203859809346, + 5348.210825019137 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5342.700111223111, + "max_x": 4590.634689506922, + "max_y": 5342.700111223111, + "center": [ + 4590.140241629622, + 5342.700111223111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5342.700111223111 + ], + [ + 4590.634689506922, + 5342.700111223111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5344.285696987882, + "max_x": 4590.634689506922, + "max_y": 5344.285696987882, + "center": [ + 4590.140241629622, + 5344.285696987882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5344.285696987882 + ], + [ + 4590.634689506922, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.297656783979, + "min_y": 5342.700111223111, + "max_x": 4590.634689506922, + "max_y": 5343.240506189185, + "center": [ + 4590.466173145451, + 5342.970308706148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.634689506922, + 5342.700111223111 + ], + [ + 4590.297656783979, + 5343.240506189185 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5342.700111223111, + "max_x": 4589.982826475263, + "max_y": 5343.240506189185, + "center": [ + 4589.814310113793, + 5342.970308706148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5342.700111223111 + ], + [ + 4589.982826475263, + 5343.240506189185 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D7", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.842778625232, + "min_y": 5343.195441101105, + "max_x": 4590.4377046340105, + "max_y": 5343.790367109883, + "center": [ + 4590.140241629621, + 5343.492904105494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5343.492904105494 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.297656783979, + "min_y": 5343.745302021808, + "max_x": 4590.634689506922, + "max_y": 5344.285696987882, + "center": [ + 4590.466173145451, + 5344.015499504845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.297656783979, + 5343.745302021808 + ], + [ + 4590.634689506922, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544D9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5343.745302021808, + "max_x": 4589.982826475263, + "max_y": 5344.285696987882, + "center": [ + 4589.814310113793, + 5344.015499504845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.982826475263, + 5343.745302021808 + ], + [ + 4589.645793752323, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DA", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.977508506001, + "min_y": 5344.285696987878, + "max_x": 4590.302974753242, + "max_y": 5344.6111632351185, + "center": [ + 4590.140241629621, + 5344.448430111498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5344.448430111498 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DB", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.977508506001, + "min_y": 5342.374644975873, + "max_x": 4590.302974753242, + "max_y": 5342.700111223114, + "center": [ + 4590.140241629621, + 5342.537378099493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5342.537378099493 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5342.700111223111, + "max_x": 4590.634689506922, + "max_y": 5342.700111223111, + "center": [ + 4590.140241629622, + 5342.700111223111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5342.700111223111 + ], + [ + 4590.634689506922, + 5342.700111223111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5344.285696987882, + "max_x": 4590.634689506922, + "max_y": 5344.285696987882, + "center": [ + 4590.140241629622, + 5344.285696987882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5344.285696987882 + ], + [ + 4590.634689506922, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.297656783979, + "min_y": 5342.700111223111, + "max_x": 4590.634689506922, + "max_y": 5343.240506189185, + "center": [ + 4590.466173145451, + 5342.970308706148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.634689506922, + 5342.700111223111 + ], + [ + 4590.297656783979, + 5343.240506189185 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544DF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5342.700111223111, + "max_x": 4589.982826475263, + "max_y": 5343.240506189185, + "center": [ + 4589.814310113793, + 5342.970308706148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.645793752323, + 5342.700111223111 + ], + [ + 4589.982826475263, + 5343.240506189185 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E0", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.842778625232, + "min_y": 5343.195441101105, + "max_x": 4590.4377046340105, + "max_y": 5343.790367109883, + "center": [ + 4590.140241629621, + 5343.492904105494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5343.492904105494 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.297656783979, + "min_y": 5343.745302021808, + "max_x": 4590.634689506922, + "max_y": 5344.285696987882, + "center": [ + 4590.466173145451, + 5344.015499504845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.297656783979, + 5343.745302021808 + ], + [ + 4590.634689506922, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.645793752323, + "min_y": 5343.745302021808, + "max_x": 4589.982826475263, + "max_y": 5344.285696987882, + "center": [ + 4589.814310113793, + 5344.015499504845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.982826475263, + 5343.745302021808 + ], + [ + 4589.645793752323, + 5344.285696987882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E3", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.977508506001, + "min_y": 5344.285696987878, + "max_x": 4590.302974753242, + "max_y": 5344.6111632351185, + "center": [ + 4590.140241629621, + 5344.448430111498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5344.448430111498 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E4", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.977508506001, + "min_y": 5342.374644975873, + "max_x": 4590.302974753242, + "max_y": 5342.700111223114, + "center": [ + 4590.140241629621, + 5342.537378099493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.140241629621, + 5342.537378099493 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.145030812855, + "min_y": 5344.610938178218, + "max_x": 4590.145142015564, + "max_y": 5345.295340997755, + "center": [ + 4590.14508641421, + 5344.953139587987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.145030812855, + 5344.610938178218 + ], + [ + 4590.145142015564, + 5345.295340997755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.146074834591, + "min_y": 5351.036423816941, + "max_x": 4590.146422856586, + "max_y": 5352.412527958895, + "center": [ + 4590.146248845588, + 5351.724475887919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.146074834591, + 5351.036423816941 + ], + [ + 4590.146422856586, + 5352.412527958895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544E7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.492223020779, + "min_y": 5356.142984087509, + "max_x": 4591.05222302078, + "max_y": 5357.442984087509, + "center": [ + 4590.27222302078, + 5356.7929840875095 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.461233020773, + "min_y": 5354.206009002238, + "max_x": 4592.141233020773, + "max_y": 5355.506009002238, + "center": [ + 4589.801233020773, + 5354.856009002238 + ] + }, + "raw_value": "10900H", + "clean_value": "10900H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544E9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.202722906727, + "min_y": 5352.44325689936, + "max_x": 4593.143844536126, + "max_y": 5358.384378528759, + "center": [ + 4590.173283721427, + 5355.413817714059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.173283721427, + 5355.413817714059 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544EA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.234717685912, + "min_y": 5358.391032808269, + "max_x": 4590.399533861012, + "max_y": 5358.391039466908, + "center": [ + 4588.817125773462, + 5358.391036137589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.399533861012, + 5358.391032808269 + ], + [ + 4587.234717685912, + 5358.391039466908 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544EB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.23283976868, + "min_y": 5355.776071191781, + "max_x": 4587.232846427326, + "max_y": 5358.389212175022, + "center": [ + 4587.232843098003, + 5357.082641683402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.23283976868, + 5355.776071191781 + ], + [ + 4587.232846427326, + 5358.389212175022 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544EC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.800870340392, + "min_y": 5358.388576261696, + "max_x": 4593.140337288368, + "max_y": 5358.388582920348, + "center": [ + 4591.4706038143795, + 5358.388579591022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.800870340392, + 5358.388582920348 + ], + [ + 4593.140337288368, + 5358.388576261696 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544ED", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.143831605921, + "min_y": 5355.419710540786, + "max_x": 4593.143838264564, + "max_y": 5358.389212175022, + "center": [ + 4593.143834935243, + 5356.904461357904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.143831605921, + 5355.419710540786 + ], + [ + 4593.143838264564, + 5358.389212175022 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544EE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.217870232551, + "min_y": 5352.436597585142, + "max_x": 4590.557337180518, + "max_y": 5352.436604243798, + "center": [ + 4588.887603706535, + 5352.436600914471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.557337180518, + 5352.436597585142 + ], + [ + 4587.217870232551, + 5352.436604243798 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544EF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.21665702627, + "min_y": 5352.436604243798, + "max_x": 4587.216663684912, + "max_y": 5355.776071191771, + "center": [ + 4587.216660355591, + 5354.106337717784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.216663684912, + 5355.776071191771 + ], + [ + 4587.21665702627, + 5352.436604243798 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4590.413774437073, + "min_y": 5352.436590926516, + "max_x": 4593.143448991912, + "max_y": 5352.436597585142, + "center": [ + 4591.778611714492, + 5352.436594255829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.413774437073, + 5352.436597585142 + ], + [ + 4593.143448991912, + 5352.436590926516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.14407181098, + "min_y": 5352.436590926516, + "max_x": 4593.144078469627, + "max_y": 5355.776057874474, + "center": [ + 4593.144075140303, + 5354.1063244004945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.144078469627, + 5355.776057874474 + ], + [ + 4593.14407181098, + 5352.436590926516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.20967175473, + "min_y": 5355.65448442916, + "max_x": 4593.138137071266, + "max_y": 5355.654497507969, + "center": [ + 4590.173904412998, + 5355.6544909685645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.138137071266, + 5355.65448442916 + ], + [ + 4587.20967175473, + 5355.654497507969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.27215944832, + "min_y": 5319.718780433482, + "max_x": 4590.273498087724, + "max_y": 5320.303375417747, + "center": [ + 4590.272828768022, + 5320.011077925614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27215944832, + 5319.718780433482 + ], + [ + 4590.273498087724, + 5320.303375417747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5544F4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.4070369649, + "min_y": 5326.953347458418, + "max_x": 4590.9670369649, + "max_y": 5328.253347458418, + "center": [ + 4590.1870369649005, + 5327.603347458418 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.582129464889, + "min_y": 5324.583585068756, + "max_x": 4592.262129464889, + "max_y": 5325.8835850687565, + "center": [ + 4589.922129464889, + 5325.233585068756 + ] + }, + "raw_value": "10900G", + "clean_value": "10900G", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.50536942959, + "min_y": 5323.30914802322, + "max_x": 4593.170253836898, + "max_y": 5328.974032430528, + "center": [ + 4590.337811633244, + 5326.141590226874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.337811633244, + 5326.141590226874 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5320.630876430848, + "max_x": 4590.768641330821, + "max_y": 5320.630876430848, + "center": [ + 4590.274193453521, + 5320.630876430848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5320.630876430848 + ], + [ + 4590.768641330821, + 5320.630876430848 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5322.216462195619, + "max_x": 4590.768641330821, + "max_y": 5322.216462195619, + "center": [ + 4590.274193453521, + 5322.216462195619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5322.216462195619 + ], + [ + 4590.768641330821, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544F9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.431608607878, + "min_y": 5320.630876430848, + "max_x": 4590.768641330821, + "max_y": 5321.171271396922, + "center": [ + 4590.600124969349, + 5320.901073913885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.768641330821, + 5320.630876430848 + ], + [ + 4590.431608607878, + 5321.171271396922 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5320.630876430848, + "max_x": 4590.116778299161, + "max_y": 5321.171271396922, + "center": [ + 4589.94826193769, + 5320.901073913885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5320.630876430848 + ], + [ + 4590.116778299161, + 5321.171271396922 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FB", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.976730449131, + "min_y": 5321.126206308841, + "max_x": 4590.571656457909, + "max_y": 5321.721132317619, + "center": [ + 4590.27419345352, + 5321.42366931323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5321.42366931323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.431608607878, + "min_y": 5321.676067229545, + "max_x": 4590.768641330821, + "max_y": 5322.216462195619, + "center": [ + 4590.600124969349, + 5321.946264712582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.431608607878, + 5321.676067229545 + ], + [ + 4590.768641330821, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5321.676067229545, + "max_x": 4590.116778299161, + "max_y": 5322.216462195619, + "center": [ + 4589.94826193769, + 5321.946264712582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.116778299161, + 5321.676067229545 + ], + [ + 4589.779745576221, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FE", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.111460329899, + "min_y": 5322.216462195614, + "max_x": 4590.43692657714, + "max_y": 5322.541928442855, + "center": [ + 4590.27419345352, + 5322.379195319235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5322.379195319235 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5544FF", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.111460329899, + "min_y": 5320.30541018361, + "max_x": 4590.43692657714, + "max_y": 5320.630876430851, + "center": [ + 4590.27419345352, + 5320.46814330723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5320.46814330723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554500", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5320.630876430848, + "max_x": 4590.768641330821, + "max_y": 5320.630876430848, + "center": [ + 4590.274193453521, + 5320.630876430848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5320.630876430848 + ], + [ + 4590.768641330821, + 5320.630876430848 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554501", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5322.216462195619, + "max_x": 4590.768641330821, + "max_y": 5322.216462195619, + "center": [ + 4590.274193453521, + 5322.216462195619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5322.216462195619 + ], + [ + 4590.768641330821, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554502", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.431608607878, + "min_y": 5320.630876430848, + "max_x": 4590.768641330821, + "max_y": 5321.171271396922, + "center": [ + 4590.600124969349, + 5320.901073913885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.768641330821, + 5320.630876430848 + ], + [ + 4590.431608607878, + 5321.171271396922 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554503", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5320.630876430848, + "max_x": 4590.116778299161, + "max_y": 5321.171271396922, + "center": [ + 4589.94826193769, + 5320.901073913885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.779745576221, + 5320.630876430848 + ], + [ + 4590.116778299161, + 5321.171271396922 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554504", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.976730449131, + "min_y": 5321.126206308841, + "max_x": 4590.571656457909, + "max_y": 5321.721132317619, + "center": [ + 4590.27419345352, + 5321.42366931323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5321.42366931323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554505", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.431608607878, + "min_y": 5321.676067229545, + "max_x": 4590.768641330821, + "max_y": 5322.216462195619, + "center": [ + 4590.600124969349, + 5321.946264712582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.431608607878, + 5321.676067229545 + ], + [ + 4590.768641330821, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554506", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.779745576221, + "min_y": 5321.676067229545, + "max_x": 4590.116778299161, + "max_y": 5322.216462195619, + "center": [ + 4589.94826193769, + 5321.946264712582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.116778299161, + 5321.676067229545 + ], + [ + 4589.779745576221, + 5322.216462195619 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554507", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.111460329899, + "min_y": 5322.216462195614, + "max_x": 4590.43692657714, + "max_y": 5322.541928442855, + "center": [ + 4590.27419345352, + 5322.379195319235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5322.379195319235 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554508", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4590.111460329899, + "min_y": 5320.30541018361, + "max_x": 4590.43692657714, + "max_y": 5320.630876430851, + "center": [ + 4590.27419345352, + 5320.46814330723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.27419345352, + 5320.46814330723 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554509", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.278982636753, + "min_y": 5322.541703385955, + "max_x": 4590.279093839463, + "max_y": 5323.226106205492, + "center": [ + 4590.279038238108, + 5322.8839047957235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.278982636753, + 5322.541703385955 + ], + [ + 4590.279093839463, + 5323.226106205492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55450A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4590.280026658489, + "min_y": 5328.967189024677, + "max_x": 4590.280374680484, + "max_y": 5330.343293166632, + "center": [ + 4590.2802006694865, + 5329.655241095655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.280026658489, + 5328.967189024677 + ], + [ + 4590.280374680484, + 5330.343293166632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55450B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.626174844677, + "min_y": 5334.073749295246, + "max_x": 4591.186174844677, + "max_y": 5335.373749295246, + "center": [ + 4590.406174844677, + 5334.723749295246 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55450C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.56590234467, + "min_y": 5332.136774209974, + "max_x": 4592.24590234467, + "max_y": 5333.436774209974, + "center": [ + 4589.90590234467, + 5332.786774209973 + ] + }, + "raw_value": "10900G", + "clean_value": "10900G", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55450D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.336674730626, + "min_y": 5330.374022107097, + "max_x": 4593.277796360026, + "max_y": 5336.315143736496, + "center": [ + 4590.307235545326, + 5333.344582921796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.307235545326, + 5333.344582921796 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55450E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.368669509809, + "min_y": 5336.321798016005, + "max_x": 4590.533485684911, + "max_y": 5336.321804674646, + "center": [ + 4588.9510775973595, + 5336.321801345326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.533485684911, + 5336.321798016005 + ], + [ + 4587.368669509809, + 5336.321804674646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55450F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.366791592578, + "min_y": 5333.706836399518, + "max_x": 4587.366798251225, + "max_y": 5336.319977382758, + "center": [ + 4587.366794921902, + 5335.0134068911375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.366791592578, + 5333.706836399518 + ], + [ + 4587.366798251225, + 5336.319977382758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554510", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.93482216429, + "min_y": 5336.319341469433, + "max_x": 4593.274289112267, + "max_y": 5336.319348128085, + "center": [ + 4591.604555638279, + 5336.31934479876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.93482216429, + 5336.319348128085 + ], + [ + 4593.274289112267, + 5336.319341469433 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554511", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.277783429819, + "min_y": 5333.350475748524, + "max_x": 4593.277790088463, + "max_y": 5336.319977382758, + "center": [ + 4593.277786759141, + 5334.835226565641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.277783429819, + 5333.350475748524 + ], + [ + 4593.277790088463, + 5336.319977382758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554512", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.351822056449, + "min_y": 5330.367362792879, + "max_x": 4590.691289004417, + "max_y": 5330.367369451534, + "center": [ + 4589.021555530433, + 5330.3673661222065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.691289004417, + 5330.367362792879 + ], + [ + 4587.351822056449, + 5330.367369451534 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554513", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.350608850169, + "min_y": 5330.367369451534, + "max_x": 4587.35061550881, + "max_y": 5333.706836399508, + "center": [ + 4587.350612179489, + 5332.03710292552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.35061550881, + 5333.706836399508 + ], + [ + 4587.350608850169, + 5330.367369451534 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554514", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4590.547726260971, + "min_y": 5330.367356134253, + "max_x": 4593.27740081581, + "max_y": 5330.367362792879, + "center": [ + 4591.912563538391, + 5330.367359463566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.547726260971, + 5330.367362792879 + ], + [ + 4593.27740081581, + 5330.367356134253 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554515", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4593.278023634879, + "min_y": 5330.367356134253, + "max_x": 4593.278030293526, + "max_y": 5333.70682308221, + "center": [ + 4593.278026964203, + 5332.037089608231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.278030293526, + 5333.70682308221 + ], + [ + 4593.278023634879, + 5330.367356134253 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554516", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.343623578628, + "min_y": 5333.585249636897, + "max_x": 4593.272088895164, + "max_y": 5333.585262715706, + "center": [ + 4590.3078562368955, + 5333.585256176302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4593.272088895164, + 5333.585249636897 + ], + [ + 4587.343623578628, + 5333.585262715706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554517", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.989851510296, + "min_y": 5297.841253641517, + "max_x": 4589.991190149699, + "max_y": 5298.425848625782, + "center": [ + 4589.990520829997, + 5298.133551133649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.989851510296, + 5297.841253641517 + ], + [ + 4589.991190149699, + 5298.425848625782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554518", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.124729026876, + "min_y": 5305.075820666454, + "max_x": 4590.684729026876, + "max_y": 5306.375820666454, + "center": [ + 4589.904729026875, + 5305.725820666454 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554519", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.430764026865, + "min_y": 5302.706058276791, + "max_x": 4592.110764026866, + "max_y": 5304.006058276791, + "center": [ + 4589.770764026865, + 5303.356058276791 + ] + }, + "raw_value": "10900F", + "clean_value": "10900F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.223061491565, + "min_y": 5301.431621231255, + "max_x": 4592.887945898873, + "max_y": 5307.096505638563, + "center": [ + 4590.055503695219, + 5304.264063434909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.055503695219, + 5304.264063434909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5298.753349638883, + "max_x": 4590.486333392795, + "max_y": 5298.753349638883, + "center": [ + 4589.991885515496, + 5298.753349638883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5298.753349638883 + ], + [ + 4590.486333392795, + 5298.753349638883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5300.338935403654, + "max_x": 4590.486333392795, + "max_y": 5300.338935403654, + "center": [ + 4589.991885515496, + 5300.338935403654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5300.338935403654 + ], + [ + 4590.486333392795, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.149300669852, + "min_y": 5298.753349638883, + "max_x": 4590.486333392795, + "max_y": 5299.293744604957, + "center": [ + 4590.317817031324, + 5299.02354712192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.486333392795, + 5298.753349638883 + ], + [ + 4590.149300669852, + 5299.293744604957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5298.753349638883, + "max_x": 4589.834470361136, + "max_y": 5299.293744604957, + "center": [ + 4589.665953999665, + 5299.02354712192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5298.753349638883 + ], + [ + 4589.834470361136, + 5299.293744604957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55451F", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.694422511106, + "min_y": 5299.248679516877, + "max_x": 4590.289348519884, + "max_y": 5299.843605525655, + "center": [ + 4589.991885515495, + 5299.546142521266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5299.546142521266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554520", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.149300669852, + "min_y": 5299.79854043758, + "max_x": 4590.486333392795, + "max_y": 5300.338935403654, + "center": [ + 4590.317817031324, + 5300.068737920617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.149300669852, + 5299.79854043758 + ], + [ + 4590.486333392795, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554521", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5299.79854043758, + "max_x": 4589.834470361136, + "max_y": 5300.338935403654, + "center": [ + 4589.665953999665, + 5300.068737920617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.834470361136, + 5299.79854043758 + ], + [ + 4589.497437638196, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554522", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.829152391874, + "min_y": 5300.338935403651, + "max_x": 4590.154618639115, + "max_y": 5300.664401650892, + "center": [ + 4589.991885515495, + 5300.501668527271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5300.501668527271 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554523", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.829152391874, + "min_y": 5298.427883391646, + "max_x": 4590.154618639115, + "max_y": 5298.753349638887, + "center": [ + 4589.991885515495, + 5298.590616515266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5298.590616515266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554524", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5298.753349638883, + "max_x": 4590.486333392795, + "max_y": 5298.753349638883, + "center": [ + 4589.991885515496, + 5298.753349638883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5298.753349638883 + ], + [ + 4590.486333392795, + 5298.753349638883 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554525", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5300.338935403654, + "max_x": 4590.486333392795, + "max_y": 5300.338935403654, + "center": [ + 4589.991885515496, + 5300.338935403654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5300.338935403654 + ], + [ + 4590.486333392795, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554526", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.149300669852, + "min_y": 5298.753349638883, + "max_x": 4590.486333392795, + "max_y": 5299.293744604957, + "center": [ + 4590.317817031324, + 5299.02354712192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.486333392795, + 5298.753349638883 + ], + [ + 4590.149300669852, + 5299.293744604957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554527", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5298.753349638883, + "max_x": 4589.834470361136, + "max_y": 5299.293744604957, + "center": [ + 4589.665953999665, + 5299.02354712192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.497437638196, + 5298.753349638883 + ], + [ + 4589.834470361136, + 5299.293744604957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554528", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.694422511106, + "min_y": 5299.248679516877, + "max_x": 4590.289348519884, + "max_y": 5299.843605525655, + "center": [ + 4589.991885515495, + 5299.546142521266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5299.546142521266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554529", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4590.149300669852, + "min_y": 5299.79854043758, + "max_x": 4590.486333392795, + "max_y": 5300.338935403654, + "center": [ + 4590.317817031324, + 5300.068737920617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.149300669852, + 5299.79854043758 + ], + [ + 4590.486333392795, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55452A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.497437638196, + "min_y": 5299.79854043758, + "max_x": 4589.834470361136, + "max_y": 5300.338935403654, + "center": [ + 4589.665953999665, + 5300.068737920617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.834470361136, + 5299.79854043758 + ], + [ + 4589.497437638196, + 5300.338935403654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55452B", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.829152391874, + "min_y": 5300.338935403651, + "max_x": 4590.154618639115, + "max_y": 5300.664401650892, + "center": [ + 4589.991885515495, + 5300.501668527271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5300.501668527271 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55452C", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.829152391874, + "min_y": 5298.427883391646, + "max_x": 4590.154618639115, + "max_y": 5298.753349638887, + "center": [ + 4589.991885515495, + 5298.590616515266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.991885515495, + 5298.590616515266 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55452D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.996674698728, + "min_y": 5300.66417659399, + "max_x": 4589.996785901438, + "max_y": 5301.348579413527, + "center": [ + 4589.996730300083, + 5301.006378003758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.996674698728, + 5300.66417659399 + ], + [ + 4589.996785901438, + 5301.348579413527 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55452E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.997718720463, + "min_y": 5307.089662232712, + "max_x": 4589.998066742459, + "max_y": 5308.465766374667, + "center": [ + 4589.9978927314605, + 5307.777714303689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.997718720463, + 5307.089662232712 + ], + [ + 4589.998066742459, + 5308.465766374667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55452F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.343866906652, + "min_y": 5312.196222503281, + "max_x": 4590.903866906652, + "max_y": 5313.496222503281, + "center": [ + 4590.1238669066515, + 5312.846222503282 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554530", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.414536906645, + "min_y": 5310.259247418009, + "max_x": 4592.094536906645, + "max_y": 5311.559247418009, + "center": [ + 4589.754536906645, + 5310.909247418009 + ] + }, + "raw_value": "10900F", + "clean_value": "10900F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554531", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.054366792601, + "min_y": 5308.496495315131, + "max_x": 4592.995488422001, + "max_y": 5314.43761694453, + "center": [ + 4590.024927607301, + 5311.467056129831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.024927607301, + 5311.467056129831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554532", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.086361571784, + "min_y": 5314.44427122404, + "max_x": 4590.251177746886, + "max_y": 5314.444277882682, + "center": [ + 4588.668769659335, + 5314.4442745533615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.251177746886, + 5314.44427122404 + ], + [ + 4587.086361571784, + 5314.444277882682 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554533", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.084483654552, + "min_y": 5311.829309607554, + "max_x": 4587.0844903132, + "max_y": 5314.442450590793, + "center": [ + 4587.084486983877, + 5313.135880099173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.084483654552, + 5311.829309607554 + ], + [ + 4587.0844903132, + 5314.442450590793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554534", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.652514226265, + "min_y": 5314.441814677469, + "max_x": 4592.991981174242, + "max_y": 5314.441821336121, + "center": [ + 4591.322247700254, + 5314.441818006795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.652514226265, + 5314.441821336121 + ], + [ + 4592.991981174242, + 5314.441814677469 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554535", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4592.995475491794, + "min_y": 5311.472948956559, + "max_x": 4592.995482150437, + "max_y": 5314.442450590793, + "center": [ + 4592.995478821116, + 5312.957699773676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.995475491794, + 5311.472948956559 + ], + [ + 4592.995482150437, + 5314.442450590793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554536", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.069514118424, + "min_y": 5308.489836000914, + "max_x": 4590.408981066391, + "max_y": 5308.48984265957, + "center": [ + 4588.739247592408, + 5308.489839330242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.408981066391, + 5308.489836000914 + ], + [ + 4587.069514118424, + 5308.48984265957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554537", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.068300912144, + "min_y": 5308.48984265957, + "max_x": 4587.068307570786, + "max_y": 5311.829309607543, + "center": [ + 4587.068304241465, + 5310.159576133557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4587.068307570786, + 5311.829309607543 + ], + [ + 4587.068300912144, + 5308.48984265957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554538", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4590.265418322945, + "min_y": 5308.489829342288, + "max_x": 4592.995092877785, + "max_y": 5308.489836000914, + "center": [ + 4591.630255600365, + 5308.489832671601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4590.265418322945, + 5308.489836000914 + ], + [ + 4592.995092877785, + 5308.489829342288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554539", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4592.995715696853, + "min_y": 5308.489829342288, + "max_x": 4592.995722355501, + "max_y": 5311.829296290246, + "center": [ + 4592.9957190261775, + 5310.159562816267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.995722355501, + 5311.829296290246 + ], + [ + 4592.995715696853, + 5308.489829342288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55453A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4587.061315640603, + "min_y": 5311.707722844932, + "max_x": 4592.989780957139, + "max_y": 5311.707735923741, + "center": [ + 4590.025548298871, + 5311.707729384336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.989780957139, + 5311.707722844932 + ], + [ + 4587.061315640603, + 5311.707735923741 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55453B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.248239533002, + "min_y": 5261.677222693709, + "max_x": 4589.249578172406, + "max_y": 5262.261817677974, + "center": [ + 4589.248908852704, + 5261.969520185841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.248239533002, + 5261.677222693709 + ], + [ + 4589.249578172406, + 5262.261817677974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55453C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4588.383117049582, + "min_y": 5268.911789718646, + "max_x": 4589.943117049583, + "max_y": 5270.211789718646, + "center": [ + 4589.163117049582, + 5269.561789718646 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55453D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.667052049571, + "min_y": 5266.542027328983, + "max_x": 4591.347052049571, + "max_y": 5267.842027328983, + "center": [ + 4589.007052049571, + 5267.192027328983 + ] + }, + "raw_value": "10900E", + "clean_value": "10900E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55453E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.481449514271, + "min_y": 5265.267590283446, + "max_x": 4592.146333921579, + "max_y": 5270.932474690754, + "center": [ + 4589.313891717925, + 5268.1000324871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.313891717925, + 5268.1000324871 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55453F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5262.589318691074, + "max_x": 4589.744721415502, + "max_y": 5262.589318691074, + "center": [ + 4589.250273538202, + 5262.589318691074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5262.589318691074 + ], + [ + 4589.744721415502, + 5262.589318691074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554540", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5264.174904455845, + "max_x": 4589.744721415502, + "max_y": 5264.174904455845, + "center": [ + 4589.250273538202, + 5264.174904455845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5264.174904455845 + ], + [ + 4589.744721415502, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554541", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.407688692559, + "min_y": 5262.589318691074, + "max_x": 4589.744721415502, + "max_y": 5263.129713657148, + "center": [ + 4589.576205054031, + 5262.859516174111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.744721415502, + 5262.589318691074 + ], + [ + 4589.407688692559, + 5263.129713657148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554542", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5262.589318691074, + "max_x": 4589.092858383843, + "max_y": 5263.129713657148, + "center": [ + 4588.924342022373, + 5262.859516174111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5262.589318691074 + ], + [ + 4589.092858383843, + 5263.129713657148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554543", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.952810533813, + "min_y": 5263.084648569069, + "max_x": 4589.547736542591, + "max_y": 5263.679574577847, + "center": [ + 4589.250273538202, + 5263.382111573458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5263.382111573458 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554544", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.407688692559, + "min_y": 5263.634509489771, + "max_x": 4589.744721415502, + "max_y": 5264.174904455845, + "center": [ + 4589.576205054031, + 5263.904706972808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.407688692559, + 5263.634509489771 + ], + [ + 4589.744721415502, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554545", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5263.634509489771, + "max_x": 4589.092858383843, + "max_y": 5264.174904455845, + "center": [ + 4588.924342022373, + 5263.904706972808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.092858383843, + 5263.634509489771 + ], + [ + 4588.755825660903, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554546", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.087540414582, + "min_y": 5264.174904455842, + "max_x": 4589.413006661823, + "max_y": 5264.500370703083, + "center": [ + 4589.250273538202, + 5264.337637579462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5264.337637579462 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554547", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.087540414582, + "min_y": 5262.263852443836, + "max_x": 4589.413006661823, + "max_y": 5262.589318691077, + "center": [ + 4589.250273538202, + 5262.426585567457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5262.426585567457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554548", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5262.589318691074, + "max_x": 4589.744721415502, + "max_y": 5262.589318691074, + "center": [ + 4589.250273538202, + 5262.589318691074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5262.589318691074 + ], + [ + 4589.744721415502, + 5262.589318691074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554549", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5264.174904455845, + "max_x": 4589.744721415502, + "max_y": 5264.174904455845, + "center": [ + 4589.250273538202, + 5264.174904455845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5264.174904455845 + ], + [ + 4589.744721415502, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.407688692559, + "min_y": 5262.589318691074, + "max_x": 4589.744721415502, + "max_y": 5263.129713657148, + "center": [ + 4589.576205054031, + 5262.859516174111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.744721415502, + 5262.589318691074 + ], + [ + 4589.407688692559, + 5263.129713657148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5262.589318691074, + "max_x": 4589.092858383843, + "max_y": 5263.129713657148, + "center": [ + 4588.924342022373, + 5262.859516174111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.755825660903, + 5262.589318691074 + ], + [ + 4589.092858383843, + 5263.129713657148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.952810533813, + "min_y": 5263.084648569069, + "max_x": 4589.547736542591, + "max_y": 5263.679574577847, + "center": [ + 4589.250273538202, + 5263.382111573458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5263.382111573458 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4589.407688692559, + "min_y": 5263.634509489771, + "max_x": 4589.744721415502, + "max_y": 5264.174904455845, + "center": [ + 4589.576205054031, + 5263.904706972808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.407688692559, + 5263.634509489771 + ], + [ + 4589.744721415502, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4588.755825660903, + "min_y": 5263.634509489771, + "max_x": 4589.092858383843, + "max_y": 5264.174904455845, + "center": [ + 4588.924342022373, + 5263.904706972808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.092858383843, + 5263.634509489771 + ], + [ + 4588.755825660903, + 5264.174904455845 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55454F", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.087540414582, + "min_y": 5264.174904455842, + "max_x": 4589.413006661823, + "max_y": 5264.500370703083, + "center": [ + 4589.250273538202, + 5264.337637579462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5264.337637579462 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554550", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4589.087540414582, + "min_y": 5262.263852443836, + "max_x": 4589.413006661823, + "max_y": 5262.589318691077, + "center": [ + 4589.250273538202, + 5262.426585567457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.250273538202, + 5262.426585567457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554551", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.255062721434, + "min_y": 5264.500145646181, + "max_x": 4589.255173924144, + "max_y": 5265.184548465718, + "center": [ + 4589.25511832279, + 5264.84234705595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.255062721434, + 5264.500145646181 + ], + [ + 4589.255173924144, + 5265.184548465718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554552", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4589.25610674317, + "min_y": 5270.925631284904, + "max_x": 4589.256454765165, + "max_y": 5272.301735426858, + "center": [ + 4589.256280754167, + 5271.613683355881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.25610674317, + 5270.925631284904 + ], + [ + 4589.256454765165, + 5272.301735426858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554553", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4588.602254929359, + "min_y": 5276.032191555472, + "max_x": 4590.16225492936, + "max_y": 5277.3321915554725, + "center": [ + 4589.38225492936, + 5276.682191555472 + ] + }, + "raw_value": "PI", + "clean_value": "PI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554554", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.650824929352, + "min_y": 5274.095216470201, + "max_x": 4591.330824929352, + "max_y": 5275.395216470201, + "center": [ + 4588.990824929352, + 5274.745216470201 + ] + }, + "raw_value": "10900E", + "clean_value": "10900E", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554555", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.312754815308, + "min_y": 5272.332464367322, + "max_x": 4592.253876444707, + "max_y": 5278.2735859967215, + "center": [ + 4589.283315630008, + 5275.303025182022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.283315630008, + 5275.303025182022 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554556", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.34474959449, + "min_y": 5278.280240276232, + "max_x": 4589.509565769593, + "max_y": 5278.280246934873, + "center": [ + 4587.927157682041, + 5278.280243605552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.509565769593, + 5278.280240276232 + ], + [ + 4586.34474959449, + 5278.280246934873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554557", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.342871677259, + "min_y": 5275.665278659745, + "max_x": 4586.342878335907, + "max_y": 5278.278419642985, + "center": [ + 4586.342875006583, + 5276.971849151365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4586.342871677259, + 5275.665278659745 + ], + [ + 4586.342878335907, + 5278.278419642985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554558", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4588.910902248971, + "min_y": 5278.277783729659, + "max_x": 4592.250369196949, + "max_y": 5278.277790388312, + "center": [ + 4590.580635722959, + 5278.277787058985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4588.910902248971, + 5278.277790388312 + ], + [ + 4592.250369196949, + 5278.277783729659 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554559", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4592.253863514501, + "min_y": 5275.30891800875, + "max_x": 4592.253870173144, + "max_y": 5278.278419642985, + "center": [ + 4592.253866843823, + 5276.793668825867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.253863514501, + 5275.30891800875 + ], + [ + 4592.253870173144, + 5278.278419642985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.327902141131, + "min_y": 5272.325805053105, + "max_x": 4589.667369089098, + "max_y": 5272.325811711761, + "center": [ + 4587.997635615115, + 5272.325808382433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.667369089098, + 5272.325805053105 + ], + [ + 4586.327902141131, + 5272.325811711761 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.326688934851, + "min_y": 5272.325811711761, + "max_x": 4586.326695593492, + "max_y": 5275.665278659734, + "center": [ + 4586.3266922641715, + 5273.995545185748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4586.326695593492, + 5275.665278659734 + ], + [ + 4586.326688934851, + 5272.325811711761 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4589.523806345652, + "min_y": 5272.325798394479, + "max_x": 4592.253480900492, + "max_y": 5272.325805053105, + "center": [ + 4590.888643623071, + 5272.325801723791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4589.523806345652, + 5272.325805053105 + ], + [ + 4592.253480900492, + 5272.325798394479 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4592.25410371956, + "min_y": 5272.325798394479, + "max_x": 4592.254110378208, + "max_y": 5275.665265342437, + "center": [ + 4592.254107048884, + 5273.995531868458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.254110378208, + 5275.665265342437 + ], + [ + 4592.25410371956, + 5272.325798394479 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4586.31970366331, + "min_y": 5275.543691897123, + "max_x": 4592.248168979845, + "max_y": 5275.543704975932, + "center": [ + 4589.283936321577, + 5275.543698436528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4592.248168979845, + 5275.543691897123 + ], + [ + 4586.31970366331, + 5275.543704975932 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55455F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4456.529222076959, + "min_y": 5192.426784801209, + "max_x": 4456.529570098953, + "max_y": 5193.802888943164, + "center": [ + 4456.529396087955, + 5193.114836872186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.529222076959, + 5192.426784801209 + ], + [ + 4456.529570098953, + 5193.802888943164 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554560", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5183.130654361065, + "max_x": 4456.906843874729, + "max_y": 5183.130654361065, + "center": [ + 4456.4123959974295, + 5183.130654361065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5183.130654361065 + ], + [ + 4456.906843874729, + 5183.130654361065 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554561", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5184.716240125837, + "max_x": 4456.906843874729, + "max_y": 5184.716240125837, + "center": [ + 4456.4123959974295, + 5184.716240125837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5184.716240125837 + ], + [ + 4456.906843874729, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554562", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.569811151786, + "min_y": 5183.130654361065, + "max_x": 4456.906843874729, + "max_y": 5183.67104932714, + "center": [ + 4456.738327513258, + 5183.400851844102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.906843874729, + 5183.130654361065 + ], + [ + 4456.569811151786, + 5183.67104932714 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554563", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5183.130654361065, + "max_x": 4456.25498084307, + "max_y": 5183.67104932714, + "center": [ + 4456.0864644816, + 5183.400851844102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5183.130654361065 + ], + [ + 4456.25498084307, + 5183.67104932714 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554564", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.1149329930395, + "min_y": 5183.625984239059, + "max_x": 4456.709859001818, + "max_y": 5184.220910247837, + "center": [ + 4456.412395997429, + 5183.923447243448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5183.923447243448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554565", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.569811151786, + "min_y": 5184.175845159763, + "max_x": 4456.906843874729, + "max_y": 5184.716240125837, + "center": [ + 4456.738327513258, + 5184.4460426428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.569811151786, + 5184.175845159763 + ], + [ + 4456.906843874729, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554566", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5184.175845159763, + "max_x": 4456.25498084307, + "max_y": 5184.716240125837, + "center": [ + 4456.0864644816, + 5184.4460426428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.25498084307, + 5184.175845159763 + ], + [ + 4455.91794812013, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554567", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4456.249662873808, + "min_y": 5184.716240125832, + "max_x": 4456.575129121049, + "max_y": 5185.041706373073, + "center": [ + 4456.412395997429, + 5184.878973249452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5184.878973249452 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554568", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4456.249662873808, + "min_y": 5182.805188113827, + "max_x": 4456.575129121049, + "max_y": 5183.130654361068, + "center": [ + 4456.412395997429, + 5182.967921237448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5182.967921237448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554569", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5183.130654361065, + "max_x": 4456.906843874729, + "max_y": 5183.130654361065, + "center": [ + 4456.4123959974295, + 5183.130654361065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5183.130654361065 + ], + [ + 4456.906843874729, + 5183.130654361065 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5184.716240125837, + "max_x": 4456.906843874729, + "max_y": 5184.716240125837, + "center": [ + 4456.4123959974295, + 5184.716240125837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5184.716240125837 + ], + [ + 4456.906843874729, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.569811151786, + "min_y": 5183.130654361065, + "max_x": 4456.906843874729, + "max_y": 5183.67104932714, + "center": [ + 4456.738327513258, + 5183.400851844102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.906843874729, + 5183.130654361065 + ], + [ + 4456.569811151786, + 5183.67104932714 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5183.130654361065, + "max_x": 4456.25498084307, + "max_y": 5183.67104932714, + "center": [ + 4456.0864644816, + 5183.400851844102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4455.91794812013, + 5183.130654361065 + ], + [ + 4456.25498084307, + 5183.67104932714 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.1149329930395, + "min_y": 5183.625984239059, + "max_x": 4456.709859001818, + "max_y": 5184.220910247837, + "center": [ + 4456.412395997429, + 5183.923447243448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5183.923447243448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4456.569811151786, + "min_y": 5184.175845159763, + "max_x": 4456.906843874729, + "max_y": 5184.716240125837, + "center": [ + 4456.738327513258, + 5184.4460426428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.569811151786, + 5184.175845159763 + ], + [ + 4456.906843874729, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55456F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4455.91794812013, + "min_y": 5184.175845159763, + "max_x": 4456.25498084307, + "max_y": 5184.716240125837, + "center": [ + 4456.0864644816, + 5184.4460426428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.25498084307, + 5184.175845159763 + ], + [ + 4455.91794812013, + 5184.716240125837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554570", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4456.249662873808, + "min_y": 5184.716240125832, + "max_x": 4456.575129121049, + "max_y": 5185.041706373073, + "center": [ + 4456.412395997429, + 5184.878973249452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5184.878973249452 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554571", + "entity_type": "CIRCLE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 4456.249662873808, + "min_y": 5182.805188113827, + "max_x": 4456.575129121049, + "max_y": 5183.130654361068, + "center": [ + 4456.412395997429, + 5182.967921237448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4456.412395997429, + 5182.967921237448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554572", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3569.457609839342, + "min_y": 5237.002237481441, + "max_x": 3569.457609839342, + "max_y": 5243.951392656621, + "center": [ + 3569.457609839342, + 5240.476815069031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3569.457609839342, + 5243.951392656621 + ], + [ + 3569.457609839342, + 5237.002237481441 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554573", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3551.646343745558, + "min_y": 5232.663252827598, + "max_x": 3551.646343745558, + "max_y": 5243.94214137369, + "center": [ + 3551.646343745558, + 5238.302697100644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3551.646343745558, + 5243.94214137369 + ], + [ + 3551.646343745558, + 5232.663252827598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554574", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3551.646343745558, + "min_y": 5232.662666347787, + "max_x": 3553.846553317653, + "max_y": 5232.662666347787, + "center": [ + 3552.746448531606, + 5232.662666347787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3551.646343745558, + 5232.662666347787 + ], + [ + 3553.846553317653, + 5232.662666347787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554575", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.410841036924, + "min_y": 5232.651770867795, + "max_x": 3558.229429951003, + "max_y": 5233.785985677525, + "center": [ + 3557.320135493964, + 5233.21887827266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.410841036924, + 5232.651770867795 + ], + [ + 3558.229429951003, + 5233.785985677525 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554576", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.410841036924, + "min_y": 5231.517556058071, + "max_x": 3558.229429951003, + "max_y": 5232.651770867795, + "center": [ + 3557.320135493964, + 5232.084663462932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.410841036924, + 5232.651770867795 + ], + [ + 3558.229429951003, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554577", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.041280191295, + "min_y": 5232.651770867795, + "max_x": 3556.780401882553, + "max_y": 5232.651770867795, + "center": [ + 3556.410841036924, + 5232.651770867795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.041280191295, + 5232.651770867795 + ], + [ + 3556.780401882553, + 5232.651770867795 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554578", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.592252122851, + "min_y": 5232.651770867795, + "max_x": 3556.410841036924, + "max_y": 5233.785985677525, + "center": [ + 3555.5015465798874, + 5233.21887827266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.410841036924, + 5232.651770867795 + ], + [ + 3554.592252122851, + 5233.785985677525 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554579", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.592252122851, + "min_y": 5231.517556058071, + "max_x": 3554.592252122851, + "max_y": 5233.785985677525, + "center": [ + 3554.592252122851, + 5232.651770867798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.592252122851, + 5233.785985677525 + ], + [ + 3554.592252122851, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55457A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.592252122851, + "min_y": 5231.517556058071, + "max_x": 3556.410841036924, + "max_y": 5232.651770867795, + "center": [ + 3555.5015465798874, + 5232.084663462932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.410841036924, + 5232.651770867795 + ], + [ + 3554.592252122851, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55457B", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3558.229429951003, + "min_y": 5231.517556058071, + "max_x": 3558.229429951003, + "max_y": 5233.785985677525, + "center": [ + 3558.229429951003, + 5232.651770867798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.229429951003, + 5233.785985677525 + ], + [ + 3558.229429951003, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55457C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3558.97601751793, + "min_y": 5231.517556058071, + "max_x": 3558.97601751793, + "max_y": 5233.785985677525, + "center": [ + 3558.97601751793, + 5232.651770867798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.97601751793, + 5233.785985677525 + ], + [ + 3558.97601751793, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55457D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3553.845664555921, + "min_y": 5231.517556058071, + "max_x": 3553.845664555921, + "max_y": 5233.785985677525, + "center": [ + 3553.845664555921, + 5232.651770867798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3553.845664555921, + 5233.785985677525 + ], + [ + 3553.845664555921, + 5231.517556058071 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55457E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3562.523837148646, + "min_y": 5228.743685022075, + "max_x": 3565.1518371486463, + "max_y": 5230.203685022075, + "center": [ + 3563.837837148646, + 5229.473685022074 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55457F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.543801569017, + "min_y": 5231.522498664369, + "max_x": 3566.54380617818, + "max_y": 5233.834104969568, + "center": [ + 3566.5438038735983, + 5232.678301816968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.54380617818, + 5233.834104969568 + ], + [ + 3566.543801569017, + 5231.522498664369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554580", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3561.079225682648, + "min_y": 5231.522509560301, + "max_x": 3561.079230291817, + "max_y": 5233.834115865537, + "center": [ + 3561.0792279872326, + 5232.678312712918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.079230291817, + 5233.834115865537 + ], + [ + 3561.079225682648, + 5231.522509560301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554581", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3565.672960355567, + "min_y": 5230.992333734891, + "max_x": 3565.672964800387, + "max_y": 5234.33571132446, + "center": [ + 3565.672962577977, + 5232.664022529676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3565.672964800387, + 5234.33571132446 + ], + [ + 3565.672960355567, + 5230.992333734891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554582", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3561.949849747092, + "min_y": 5230.992341158493, + "max_x": 3561.949854229862, + "max_y": 5234.364265372855, + "center": [ + 3561.949851988477, + 5232.678303265674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.949854229862, + 5234.364265372855 + ], + [ + 3561.949849747092, + 5230.992341158493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554583", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3561.9498497471, + "min_y": 5230.992333734891, + "max_x": 3565.672960355567, + "max_y": 5230.992341158493, + "center": [ + 3563.811405051333, + 5230.9923374466925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.9498497471, + 5230.992341158493 + ], + [ + 3565.672960355567, + 5230.992333734891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554584", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3561.9498497471, + "min_y": 5234.364265372832, + "max_x": 3565.672960355567, + "max_y": 5234.364272796435, + "center": [ + 3563.811405051333, + 5234.364269084634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.9498497471, + 5234.364265372832 + ], + [ + 3565.672960355567, + 5234.364272796435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554585", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3562.887199596515, + "min_y": 5231.650714246779, + "max_x": 3564.1341000713987, + "max_y": 5233.728881704918, + "center": [ + 3563.510649833957, + 5232.689797975849 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554586", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3558.9719607984, + "min_y": 5232.774226645406, + "max_x": 3561.079292810526, + "max_y": 5232.774226645406, + "center": [ + 3560.025626804463, + 5232.774226645406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.9719607984, + 5232.774226645406 + ], + [ + 3561.079292810526, + 5232.774226645406 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554587", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3663.165643243433, + "min_y": 5194.29770623276, + "max_x": 3663.165643243433, + "max_y": 5232.774224773827, + "center": [ + 3663.165643243433, + 5213.5359655032935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3663.165643243433, + 5232.774224773827 + ], + [ + 3663.165643243433, + 5194.29770623276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554588", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3566.542365409877, + "min_y": 5232.774226645406, + "max_x": 3663.165641054177, + "max_y": 5232.774226645406, + "center": [ + 3614.854003232027, + 5232.774226645406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.542365409877, + 5232.774226645406 + ], + [ + 3663.165641054177, + 5232.774226645406 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554589", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.486907564039, + "min_y": 5214.826455041586, + "max_x": 3558.305496478118, + "max_y": 5215.960669851315, + "center": [ + 3557.3962020210784, + 5215.39356244645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.486907564039, + 5214.826455041586 + ], + [ + 3558.305496478118, + 5215.960669851315 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458A", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.486907564039, + "min_y": 5213.692240231861, + "max_x": 3558.305496478118, + "max_y": 5214.826455041586, + "center": [ + 3557.3962020210784, + 5214.259347636724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.486907564039, + 5214.826455041586 + ], + [ + 3558.305496478118, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458B", + "entity_type": "LWPOLYLINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3556.11734671841, + "min_y": 5214.826455041586, + "max_x": 3556.856468409668, + "max_y": 5214.826455041586, + "center": [ + 3556.486907564039, + 5214.826455041586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.11734671841, + 5214.826455041586 + ], + [ + 3556.856468409668, + 5214.826455041586 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458C", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.668318649966, + "min_y": 5214.826455041586, + "max_x": 3556.486907564039, + "max_y": 5215.960669851315, + "center": [ + 3555.5776131070024, + 5215.39356244645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.486907564039, + 5214.826455041586 + ], + [ + 3554.668318649966, + 5215.960669851315 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458D", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.668318649966, + "min_y": 5213.692240231861, + "max_x": 3554.668318649966, + "max_y": 5215.960669851315, + "center": [ + 3554.668318649966, + 5214.826455041588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3554.668318649966, + 5215.960669851315 + ], + [ + 3554.668318649966, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458E", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3554.668318649966, + "min_y": 5213.692240231861, + "max_x": 3556.486907564039, + "max_y": 5214.826455041586, + "center": [ + 3555.5776131070024, + 5214.259347636724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3556.486907564039, + 5214.826455041586 + ], + [ + 3554.668318649966, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55458F", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3558.305496478118, + "min_y": 5213.692240231861, + "max_x": 3558.305496478118, + "max_y": 5215.960669851315, + "center": [ + 3558.305496478118, + 5214.826455041588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3558.305496478118, + 5215.960669851315 + ], + [ + 3558.305496478118, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554590", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3559.052084045045, + "min_y": 5213.692240231861, + "max_x": 3559.052084045045, + "max_y": 5215.960669851315, + "center": [ + 3559.052084045045, + 5214.826455041588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.052084045045, + 5215.960669851315 + ], + [ + 3559.052084045045, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554591", + "entity_type": "LINE", + "layer": "VV-GLOBE", + "bbox": { + "min_x": 3553.921731083036, + "min_y": 5213.692240231861, + "max_x": 3553.921731083036, + "max_y": 5215.960669851315, + "center": [ + 3553.921731083036, + 5214.826455041588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3553.921731083036, + 5215.960669851315 + ], + [ + 3553.921731083036, + 5213.692240231861 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "554592", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3562.599903675761, + "min_y": 5210.918369195866, + "max_x": 3565.2279036757614, + "max_y": 5212.378369195866, + "center": [ + 3563.9139036757615, + 5211.648369195866 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554593", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3566.619868096132, + "min_y": 5213.69718283816, + "max_x": 3566.619872705295, + "max_y": 5216.008789143359, + "center": [ + 3566.619870400714, + 5214.852985990759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.619872705295, + 5216.008789143359 + ], + [ + 3566.619868096132, + 5213.69718283816 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554594", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3561.155292209763, + "min_y": 5213.697193734091, + "max_x": 3561.155296818931, + "max_y": 5216.008800039327, + "center": [ + 3561.155294514347, + 5214.85299688671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3561.155296818931, + 5216.008800039327 + ], + [ + 3561.155292209763, + 5213.697193734091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554595", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3565.749026882681, + "min_y": 5213.167017908681, + "max_x": 3565.749031327502, + "max_y": 5216.51039549825, + "center": [ + 3565.7490291050917, + 5214.8387067034655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3565.749031327502, + 5216.51039549825 + ], + [ + 3565.749026882681, + 5213.167017908681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554596", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3562.025916274207, + "min_y": 5213.167025332285, + "max_x": 3562.025920756977, + "max_y": 5216.538949546645, + "center": [ + 3562.025918515592, + 5214.852987439465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.025920756977, + 5216.538949546645 + ], + [ + 3562.025916274207, + 5213.167025332285 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554597", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3562.025916274214, + "min_y": 5213.167017908681, + "max_x": 3565.749026882681, + "max_y": 5213.167025332285, + "center": [ + 3563.8874715784477, + 5213.167021620484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.025916274214, + 5213.167025332285 + ], + [ + 3565.749026882681, + 5213.167017908681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554598", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3562.025916274214, + "min_y": 5216.538949546623, + "max_x": 3565.749026882681, + "max_y": 5216.538956970225, + "center": [ + 3563.8874715784477, + 5216.538953258424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3562.025916274214, + 5216.538949546623 + ], + [ + 3565.749026882681, + 5216.538956970225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554599", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3562.96326612363, + "min_y": 5213.82539842057, + "max_x": 3564.2101665985138, + "max_y": 5215.90356587871, + "center": [ + 3563.586716361072, + 5214.86448214964 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55459A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3559.048027325515, + "min_y": 5214.948910819196, + "max_x": 3561.155228933227, + "max_y": 5214.948910819196, + "center": [ + 3560.101628129371, + 5214.948910819196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3559.048027325515, + 5214.948910819196 + ], + [ + 3561.155228933227, + 5214.948910819196 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55459B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3551.646343722139, + "min_y": 5214.743817397814, + "max_x": 3553.920229692916, + "max_y": 5214.743817397814, + "center": [ + 3552.7832867075276, + 5214.743817397814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3551.646343722139, + 5214.743817397814 + ], + [ + 3553.920229692916, + 5214.743817397814 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55459C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3551.646343745558, + "min_y": 5214.742013650938, + "max_x": 3551.646343745558, + "max_y": 5222.486885744969, + "center": [ + 3551.646343745558, + 5218.614449697954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3551.646343745558, + 5222.486885744969 + ], + [ + 3551.646343745558, + 5214.742013650938 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55459D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 3566.622339085969, + "min_y": 5214.948910819196, + "max_x": 3656.9011068016, + "max_y": 5214.948910819196, + "center": [ + 3611.7617229437847, + 5214.948910819196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3566.622339085969, + 5214.948910819196 + ], + [ + 3656.9011068016, + 5214.948910819196 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55459E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3656.901106793285, + "min_y": 5194.324265874921, + "max_x": 3656.901106793285, + "max_y": 5214.948910808802, + "center": [ + 3656.901106793285, + 5204.636588341862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3656.901106793285, + 5214.948910808802 + ], + [ + 3656.901106793285, + 5194.324265874921 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55459F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3776.354528610697, + "min_y": 5195.167460711832, + "max_x": 3781.9539353626637, + "max_y": 5196.100695170493, + "center": [ + 3779.1542319866803, + 5195.634077941162 + ] + }, + "raw_value": "2025.06.20", + "clean_value": "2025.06.20", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5545A0", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3793.489940360261, + "min_y": 5195.192708537869, + "max_x": 3797.9694657618343, + "max_y": 5196.12594299653, + "center": [ + 3795.7297030610475, + 5195.659325767199 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5545A1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3631.504998399192, + "min_y": 5230.151954627437, + "max_x": 3634.1329983991923, + "max_y": 5231.611954627437, + "center": [ + 3632.8189983991924, + 5230.881954627437 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545A2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3632.13262974807, + "min_y": 5212.058239455496, + "max_x": 3634.76062974807, + "max_y": 5213.518239455496, + "center": [ + 3633.4466297480703, + 5212.788239455496 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545A3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3651.410088510734, + "min_y": 5232.779523759084, + "max_x": 3653.370759084621, + "max_y": 5232.779523759084, + "center": [ + 3652.3904237976776, + 5232.779523759084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.370759084621, + 5232.779523759084 + ], + [ + 3651.410088510734, + 5232.779523759084 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5545A4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3651.135796669115, + "min_y": 5214.937375641508, + "max_x": 3653.096467243002, + "max_y": 5214.937375641508, + "center": [ + 3652.1161319560583, + 5214.937375641508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3653.096467243002, + 5214.937375641508 + ], + [ + 3651.135796669115, + 5214.937375641508 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5545A5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2014.172364116902, + "min_y": 5148.375493750853, + "max_x": 2051.426898449195, + "max_y": 5150.675156363957, + "center": [ + 2032.7996312830485, + 5149.525325057405 + ] + }, + "raw_value": "PIPING & INSTRUMENT DIAGRAM", + "clean_value": "PIPING & INSTRUMENT DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5545A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1648.575143658974, + "min_y": 5135.934550405232, + "max_x": 1860.610294578582, + "max_y": 5135.934550405232, + "center": [ + 1754.592719118778, + 5135.934550405232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.610294578582, + 5135.934550405232 + ], + [ + 1648.575143658974, + 5135.934550405232 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.423836458628, + "min_y": 5250.574807006815, + "max_x": 1796.03899615859, + "max_y": 5250.943128728503, + "center": [ + 1795.731416308609, + 5250.7589678676595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.03899615859, + 5250.574807006815 + ], + [ + 1795.423836458628, + 5250.943128728503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5251.30402784406, + "max_x": 1794.821073768907, + "max_y": 5251.672349565748, + "center": [ + 1794.5134939189238, + 5251.488188704904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.821073768907, + 5251.30402784406 + ], + [ + 1794.205914068941, + 5251.672349565748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.03899615859, + "min_y": 5250.574807006815, + "max_x": 1796.03899615859, + "max_y": 5251.672349565748, + "center": [ + 1796.03899615859, + 5251.123578286281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.03899615859, + 5251.672349565748 + ], + [ + 1796.03899615859, + 5250.574807006815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5250.574807006815, + "max_x": 1794.205914068941, + "max_y": 5251.672349565748, + "center": [ + 1794.205914068941, + 5251.123578286281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5251.672349565748 + ], + [ + 1794.205914068941, + 5250.574807006815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.423836458625, + "min_y": 5251.30402784406, + "max_x": 1796.03899615859, + "max_y": 5251.672349565748, + "center": [ + 1795.7314163086075, + 5251.488188704904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.03899615859, + 5251.672349565748 + ], + [ + 1795.423836458625, + 5251.30402784406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5250.574807006815, + "max_x": 1794.821073768909, + "max_y": 5250.943128728498, + "center": [ + 1794.513493918925, + 5250.758967867656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.821073768909, + 5250.943128728498 + ], + [ + 1794.205914068941, + 5250.574807006815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.467649883005, + "min_y": 5250.554515940026, + "max_x": 1796.467649883005, + "max_y": 5251.692640632532, + "center": [ + 1796.467649883005, + 5251.123578286279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.467649883005, + 5251.692640632532 + ], + [ + 1796.467649883005, + 5250.554515940026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545AE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1801.271090446194, + "min_y": 5276.709088588816, + "max_x": 1802.751099680881, + "max_y": 5276.710396500792, + "center": [ + 1802.0110950635376, + 5276.709742544804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.751099680881, + 5276.709088588816 + ], + [ + 1801.271090446194, + 5276.710396500792 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5545AF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1794.7711820605275, + "min_y": 5250.772305233042, + "max_x": 1795.4737281670066, + "max_y": 5251.474851339521, + "center": [ + 1795.122455113767, + 5251.123578286281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.122455113767, + 5251.123578286281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701582, + "min_y": 5253.222455562198, + "max_x": 1792.721172701584, + "max_y": 5273.333353569952, + "center": [ + 1792.7211727015829, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.721172701584, + 5273.333353569952 + ], + [ + 1792.721172701582, + 5253.222455562198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5245.017507940656, + "max_x": 1792.721172701582, + "max_y": 5252.456528414612, + "center": [ + 1792.7211727015806, + 5248.737018177634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.721172701582, + 5252.456528414612 + ], + [ + 1792.721172701579, + 5245.017507940656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.078767193805, + "min_y": 5253.222455562198, + "max_x": 1787.078767193805, + "max_y": 5273.333353569952, + "center": [ + 1787.078767193805, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.078767193805, + 5273.333353569952 + ], + [ + 1787.078767193805, + 5253.222455562198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.078767193805, + "min_y": 5244.978416547634, + "max_x": 1787.078767193805, + "max_y": 5252.456528414612, + "center": [ + 1787.078767193805, + 5248.717472481123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.078767193805, + 5252.456528414612 + ], + [ + 1787.078767193805, + 5244.978416547634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5245.100339809855, + "max_x": 1796.707470023368, + "max_y": 5245.100339809871, + "center": [ + 1795.4566920461543, + 5245.100339809863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5245.100339809855 + ], + [ + 1796.707470023368, + 5245.100339809871 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5545B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.884825123488, + "min_y": 5253.222455562198, + "max_x": 1787.884825123488, + "max_y": 5273.333353569952, + "center": [ + 1787.884825123488, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.884825123488, + 5253.222455562198 + ], + [ + 1787.884825123488, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.690883053169, + "min_y": 5253.222455562198, + "max_x": 1788.690883053169, + "max_y": 5273.333353569952, + "center": [ + 1788.690883053169, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.690883053169, + 5253.222455562198 + ], + [ + 1788.690883053169, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.49694098285, + "min_y": 5253.222455562198, + "max_x": 1789.49694098285, + "max_y": 5273.333353569952, + "center": [ + 1789.49694098285, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.49694098285, + 5253.222455562198 + ], + [ + 1789.49694098285, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.302998912537, + "min_y": 5253.222455562198, + "max_x": 1790.302998912537, + "max_y": 5273.333353569952, + "center": [ + 1790.302998912537, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.302998912537, + 5253.222455562198 + ], + [ + 1790.302998912537, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1791.109056842217, + "min_y": 5253.222455562198, + "max_x": 1791.109056842217, + "max_y": 5273.333353569952, + "center": [ + 1791.109056842217, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1791.109056842217, + 5253.222455562198 + ], + [ + 1791.109056842217, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1791.915114771898, + "min_y": 5253.222455562198, + "max_x": 1791.915114771898, + "max_y": 5273.333353569952, + "center": [ + 1791.915114771898, + 5263.277904566075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1791.915114771898, + 5253.222455562198 + ], + [ + 1791.915114771898, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.14903440987, + "min_y": 5254.428870475624, + "max_x": 1787.078767193805, + "max_y": 5254.428870475624, + "center": [ + 1786.1139008018376, + 5254.428870475624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.078767193805, + 5254.428870475624 + ], + [ + 1785.14903440987, + 5254.428870475624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.913398005798, + "min_y": 5242.303923488195, + "max_x": 1789.913398005798, + "max_y": 5243.748586530085, + "center": [ + 1789.913398005798, + 5243.02625500914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.913398005798, + 5243.748586530085 + ], + [ + 1789.913398005798, + 5242.303923488195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1789.5513742110395, + "min_y": 5240.709512543107, + "max_x": 1790.2539203175186, + "max_y": 5241.412058649586, + "center": [ + 1789.902647264279, + 5241.060785596346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.902647264279, + 5241.060785596346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5242.303923488195, + "max_x": 1790.451418543743, + "max_y": 5242.303923488195, + "center": [ + 1789.9026472642781, + 5242.303923488195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.353875984813, + 5242.303923488195 + ], + [ + 1790.451418543743, + 5242.303923488195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5239.817647704501, + "max_x": 1790.451418543743, + "max_y": 5239.817647704501, + "center": [ + 1789.9026472642781, + 5239.817647704501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.353875984813, + 5239.817647704501 + ], + [ + 1790.451418543743, + 5239.817647704501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.812660378323, + "min_y": 5252.456528414612, + "max_x": 1793.992634150254, + "max_y": 5252.456528414612, + "center": [ + 1789.9026472642886, + 5252.456528414612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.992634150254, + 5252.456528414612 + ], + [ + 1785.812660378323, + 5252.456528414612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.81266037832, + "min_y": 5253.222455562198, + "max_x": 1793.992634150252, + "max_y": 5253.222455562198, + "center": [ + 1789.9026472642859, + 5253.222455562198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.992634150252, + 5253.222455562198 + ], + [ + 1785.81266037832, + 5253.222455562198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.14903440987, + "min_y": 5253.880099196158, + "max_x": 1785.14903440987, + "max_y": 5254.977641755087, + "center": [ + 1785.14903440987, + 5254.428870475622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.14903440987, + 5253.880099196158 + ], + [ + 1785.14903440987, + 5254.977641755087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.14903440987, + "min_y": 5253.880099196158, + "max_x": 1785.14903440987, + "max_y": 5254.977641755087, + "center": [ + 1785.14903440987, + 5254.428870475622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.14903440987, + 5253.880099196158 + ], + [ + 1785.14903440987, + 5254.977641755087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5244.550741971341, + "max_x": 1794.205914068941, + "max_y": 5245.648284530277, + "center": [ + 1794.205914068941, + 5245.099513250809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5244.550741971341 + ], + [ + 1794.205914068941, + 5245.648284530277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1793.879317221923, + "min_y": 5244.550741971341, + "max_x": 1793.879317221923, + "max_y": 5245.648284530277, + "center": [ + 1793.879317221923, + 5245.099513250809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.879317221923, + 5244.550741971341 + ], + [ + 1793.879317221923, + 5245.648284530277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.726527334773, + "min_y": 5271.680368601433, + "max_x": 1794.65626011871, + "max_y": 5271.680368601433, + "center": [ + 1793.6913937267414, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.726527334773, + 5271.680368601433 + ], + [ + 1794.65626011871, + 5271.680368601433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.65626011871, + "min_y": 5271.131597321967, + "max_x": 1794.65626011871, + "max_y": 5272.229139880899, + "center": [ + 1794.65626011871, + 5271.680368601434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.65626011871, + 5271.131597321967 + ], + [ + 1794.65626011871, + 5272.229139880899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5251.123578286281, + "max_x": 1793.879317221923, + "max_y": 5251.123578286281, + "center": [ + 1793.300244961751, + 5251.123578286281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.721172701579, + 5251.123578286281 + ], + [ + 1793.879317221923, + 5251.123578286281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.812660378323, + "min_y": 5273.333353569952, + "max_x": 1793.992634150254, + "max_y": 5273.333353569952, + "center": [ + 1789.9026472642886, + 5273.333353569952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.992634150254, + 5273.333353569952 + ], + [ + 1785.812660378323, + 5273.333353569952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.81266037832, + "min_y": 5274.099280717532, + "max_x": 1793.992634150252, + "max_y": 5274.099280717532, + "center": [ + 1789.9026472642859, + 5274.099280717532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.992634150252, + 5274.099280717532 + ], + [ + 1785.81266037832, + 5274.099280717532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.65626011871, + "min_y": 5271.131597321967, + "max_x": 1794.65626011871, + "max_y": 5272.229139880899, + "center": [ + 1794.65626011871, + 5271.680368601434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.65626011871, + 5271.131597321967 + ], + [ + 1794.65626011871, + 5272.229139880899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.65626011871, + "min_y": 5271.131597321967, + "max_x": 1794.65626011871, + "max_y": 5272.229139880899, + "center": [ + 1794.65626011871, + 5271.680368601434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.65626011871, + 5271.131597321967 + ], + [ + 1794.65626011871, + 5272.229139880899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5240.144244551514, + "max_x": 1789.722197706498, + "max_y": 5240.759404251482, + "center": [ + 1789.5380368456554, + 5240.451824401498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.722197706498, + 5240.759404251482 + ], + [ + 1789.353875984813, + 5240.144244551514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5240.144244551514, + "max_x": 1790.451418543743, + "max_y": 5240.144244551514, + "center": [ + 1789.9026472642781, + 5240.144244551514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.353875984813, + 5240.144244551514 + ], + [ + 1790.451418543743, + 5240.144244551514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.08309682206, + "min_y": 5240.144244551514, + "max_x": 1790.451418543743, + "max_y": 5240.759404251482, + "center": [ + 1790.2672576829016, + 5240.451824401498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.451418543743, + 5240.144244551514 + ], + [ + 1790.08309682206, + 5240.759404251482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5241.362166941203, + "max_x": 1789.722197706501, + "max_y": 5241.977326641171, + "center": [ + 1789.538036845657, + 5241.669746791187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.722197706501, + 5241.362166941203 + ], + [ + 1789.353875984813, + 5241.977326641171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.353875984813, + "min_y": 5241.977326641171, + "max_x": 1790.451418543743, + "max_y": 5241.977326641171, + "center": [ + 1789.9026472642781, + 5241.977326641171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.353875984813, + 5241.977326641171 + ], + [ + 1790.451418543743, + 5241.977326641171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.083096822057, + "min_y": 5241.362166941203, + "max_x": 1790.451418543743, + "max_y": 5241.977326641171, + "center": [ + 1790.2672576829, + 5241.669746791187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.451418543743, + 5241.977326641171 + ], + [ + 1790.083096822057, + 5241.362166941203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1793.879317221923, + "min_y": 5250.574807006815, + "max_x": 1793.879317221923, + "max_y": 5251.672349565745, + "center": [ + 1793.879317221923, + 5251.1235782862805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.879317221923, + 5250.574807006815 + ], + [ + 1793.879317221923, + 5251.672349565745 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.467649883005, + "min_y": 5251.124404845331, + "max_x": 1799.013755121116, + "max_y": 5251.124404845331, + "center": [ + 1797.7407025020605, + 5251.124404845331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.467649883005, + 5251.124404845331 + ], + [ + 1799.013755121116, + 5251.124404845331 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545D6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1796.707470023368, + "min_y": 5245.100339809871, + "max_x": 1799.013755121116, + "max_y": 5245.100339809871, + "center": [ + 1797.860612572242, + 5245.100339809871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.013755121116, + 5245.100339809871 + ], + [ + 1796.707470023368, + 5245.100339809871 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5545D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.932167505886, + "min_y": 5257.790991310847, + "max_x": 1786.932167505886, + "max_y": 5260.798562445532, + "center": [ + 1786.932167505886, + 5259.29477687819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5257.790991310847 + ], + [ + 1786.932167505886, + 5260.798562445532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.423820156109, + "min_y": 5258.891441190513, + "max_x": 1786.280585340296, + "max_y": 5260.581368390337, + "center": [ + 1785.3522027482027, + 5259.736404790425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.423820156109, + 5258.891441190513 + ], + [ + 1786.280585340296, + 5260.581368390337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.279024119311, + "min_y": 5258.008185366048, + "max_x": 1786.932167505886, + "max_y": 5258.008185366048, + "center": [ + 1785.6055958125985, + 5258.008185366048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5258.008185366048 + ], + [ + 1784.279024119311, + 5258.008185366048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.279024119311, + "min_y": 5258.16914376902, + "max_x": 1786.932167505886, + "max_y": 5258.16914376902, + "center": [ + 1785.6055958125985, + 5258.16914376902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5258.16914376902 + ], + [ + 1784.279024119311, + 5258.16914376902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.932167505886, + "min_y": 5257.790991310847, + "max_x": 1787.078767193805, + "max_y": 5257.790991310847, + "center": [ + 1787.0054673498455, + 5257.790991310847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5257.790991310847 + ], + [ + 1787.078767193805, + 5257.790991310847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.279024119311, + "min_y": 5258.008185366048, + "max_x": 1784.279024119311, + "max_y": 5258.16914376902, + "center": [ + 1784.279024119311, + 5258.088664567534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.279024119311, + 5258.008185366048 + ], + [ + 1784.279024119311, + 5258.16914376902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.280585340296, + "min_y": 5260.581368390337, + "max_x": 1786.932167505886, + "max_y": 5260.581368390337, + "center": [ + 1786.606376423091, + 5260.581368390337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5260.581368390337 + ], + [ + 1786.280585340296, + 5260.581368390337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.932167505886, + "min_y": 5260.798562445532, + "max_x": 1787.078767193805, + "max_y": 5260.798562445532, + "center": [ + 1787.0054673498455, + 5260.798562445532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.932167505886, + 5260.798562445532 + ], + [ + 1787.078767193805, + 5260.798562445532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.435700433264, + "min_y": 5259.666602791188, + "max_x": 1785.275509549829, + "max_y": 5259.666602791188, + "center": [ + 1784.8556049915464, + 5259.666602791188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.275509549829, + 5259.666602791188 + ], + [ + 1784.435700433264, + 5259.666602791188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.435700433264, + "min_y": 5259.142480595596, + "max_x": 1784.435700433264, + "max_y": 5259.666602791188, + "center": [ + 1784.435700433264, + 5259.404541693391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.435700433264, + 5259.666602791188 + ], + [ + 1784.435700433264, + 5259.142480595596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.435700433264, + "min_y": 5259.142480595596, + "max_x": 1784.699643414808, + "max_y": 5259.142480595596, + "center": [ + 1784.567671924036, + 5259.142480595596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.435700433264, + 5259.142480595596 + ], + [ + 1784.699643414808, + 5259.142480595596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1784.515833035576, + "min_y": 5259.403941745779, + "max_x": 1784.6983614786739, + "max_y": 5259.586470188877, + "center": [ + 1784.607097257125, + 5259.495205967328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.607097257125, + 5259.495205967328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.607097257125, + "min_y": 5259.28967719654, + "max_x": 1784.607097257125, + "max_y": 5259.700734738116, + "center": [ + 1784.607097257125, + 5259.495205967328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.607097257125, + 5259.28967719654 + ], + [ + 1784.607097257125, + 5259.700734738116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.401568486334, + "min_y": 5259.495205967328, + "max_x": 1784.812626027916, + "max_y": 5259.495205967328, + "center": [ + 1784.6070972571251, + 5259.495205967328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.401568486334, + 5259.495205967328 + ], + [ + 1784.812626027916, + 5259.495205967328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.423820156109, + "min_y": 5258.16914376902, + "max_x": 1784.423820156109, + "max_y": 5258.891441190513, + "center": [ + 1784.423820156109, + 5258.530292479767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.423820156109, + 5258.891441190513 + ], + [ + 1784.423820156109, + 5258.16914376902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.280585340296, + "min_y": 5260.581368390337, + "max_x": 1786.280585340296, + "max_y": 5260.740177439314, + "center": [ + 1786.280585340296, + 5260.660772914825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.280585340296, + 5260.581368390337 + ], + [ + 1786.280585340296, + 5260.740177439314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1786.280585340296, + "min_y": 5260.740177439314, + "max_x": 1786.932167505886, + "max_y": 5260.740177439314, + "center": [ + 1786.606376423091, + 5260.740177439314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1786.280585340296, + 5260.740177439314 + ], + [ + 1786.932167505886, + 5260.740177439314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1746.4578547183378, + "min_y": 5229.4661878727975, + "max_x": 1748.140606322654, + "max_y": 5231.148939477113, + "center": [ + 1747.299230520496, + 5230.307563674955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.299230520496, + 5230.307563674955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.457854718339, + "min_y": 5230.307561997311, + "max_x": 1748.140606322652, + "max_y": 5230.307565352595, + "center": [ + 1747.2992305204955, + 5230.307563674953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.140606322652, + 5230.307561997311 + ], + [ + 1746.457854718339, + 5230.307565352595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.299228640801, + "min_y": 5229.36485236051, + "max_x": 1747.299230520496, + "max_y": 5230.307563674955, + "center": [ + 1747.2992295806484, + 5229.836208017732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.299230520496, + 5230.307563674955 + ], + [ + 1747.299228640801, + 5229.36485236051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.575892823138, + "min_y": 5228.538618702661, + "max_x": 1748.140602795513, + "max_y": 5228.876735601845, + "center": [ + 1747.8582478093253, + 5228.707677152253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.140602795513, + 5228.538618702661 + ], + [ + 1747.575892823138, + 5228.876735601845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.457853200148, + "min_y": 5229.208038597808, + "max_x": 1747.02256317252, + "max_y": 5229.546155496993, + "center": [ + 1746.740208186334, + 5229.377097047401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.02256317252, + 5229.208038597808 + ], + [ + 1746.457853200148, + 5229.546155496993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.140602795513, + "min_y": 5228.538618702661, + "max_x": 1748.140604804459, + "max_y": 5229.546152141707, + "center": [ + 1748.140603799986, + 5229.042385422184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.140604804459, + 5229.546152141707 + ], + [ + 1748.140602795513, + 5228.538618702661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.457851191199, + "min_y": 5228.538622057941, + "max_x": 1746.457853200148, + "max_y": 5229.546155496993, + "center": [ + 1746.4578521956737, + 5229.042388777467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.457853200148, + 5229.546155496993 + ], + [ + 1746.457851191199, + 5228.538622057941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.575893483733, + "min_y": 5229.208037494508, + "max_x": 1748.140604804459, + "max_y": 5229.546152141707, + "center": [ + 1747.858249144096, + 5229.377094818108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.140604804459, + 5229.546152141707 + ], + [ + 1747.575893483733, + 5229.208037494508 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.457851191199, + "min_y": 5228.538622057941, + "max_x": 1747.022562511928, + "max_y": 5228.876736705145, + "center": [ + 1746.7402068515635, + 5228.707679381543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.022562511928, + 5228.876736705145 + ], + [ + 1746.457851191199, + 5228.538622057941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1737.739614907084, + "min_y": 5228.520004804082, + "max_x": 1737.73961699031, + "max_y": 5229.564792248702, + "center": [ + 1737.739615948697, + 5229.042398526392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1737.73961699031, + 5229.564792248702 + ], + [ + 1737.739614907084, + 5228.520004804082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.534102725733, + "min_y": 5228.51999091527, + "max_x": 1748.534104808961, + "max_y": 5229.564778359884, + "center": [ + 1748.534103767347, + 5229.042384637577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.534104808961, + 5229.564778359884 + ], + [ + 1748.534102725733, + 5228.51999091527 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5545F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.299232198136, + "min_y": 5231.148939477108, + "max_x": 1747.299237397228, + "max_y": 5233.756405761647, + "center": [ + 1747.299234797682, + 5232.452672619378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.299232198136, + 5231.148939477108 + ], + [ + 1747.299237397228, + 5233.756405761647 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.948884345998, + "min_y": 5232.237384396197, + "max_x": 1747.649585197467, + "max_y": 5232.641932358553, + "center": [ + 1747.2992347717327, + 5232.439658377375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.948884345998, + 5232.237384396197 + ], + [ + 1747.649585197467, + 5232.641932358553 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.948885003584, + "min_y": 5232.567178412802, + "max_x": 1747.649585855052, + "max_y": 5232.971726375158, + "center": [ + 1747.299235429318, + 5232.76945239398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.948885003584, + 5232.567178412802 + ], + [ + 1747.649585855052, + 5232.971726375158 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.899403823185, + "min_y": 5234.062833521777, + "max_x": 1748.2350695904438, + "max_y": 5234.8048700591435, + "center": [ + 1747.5672367068144, + 5234.43385179046 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.778762645145, + "min_y": 5235.188237683518, + "max_x": 1748.819717859251, + "max_y": 5235.188243746954, + "center": [ + 1747.2992402521982, + 5235.188240715236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.778762645145, + 5235.188243746954 + ], + [ + 1748.819717859251, + 5235.188237683518 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.819715004281, + "min_y": 5233.756402729929, + "max_x": 1748.819717859251, + "max_y": 5235.188237683518, + "center": [ + 1748.8197164317662, + 5234.472320206723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.819717859251, + 5235.188237683518 + ], + [ + 1748.819715004281, + 5233.756402729929 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.778759790176, + "min_y": 5233.756402729929, + "max_x": 1748.819715004281, + "max_y": 5233.756408793367, + "center": [ + 1747.2992373972286, + 5233.756405761647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.819715004281, + 5233.756402729929 + ], + [ + 1745.778759790176, + 5233.756408793367 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.778759790176, + "min_y": 5233.756408793367, + "max_x": 1745.778762645145, + "max_y": 5235.188243746954, + "center": [ + 1745.7787612176605, + 5234.472326270161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.778759790176, + 5233.756408793367 + ], + [ + 1745.778762645145, + 5235.188243746954 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5545FF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1734.884318875186, + "min_y": 5228.637752774129, + "max_x": 1736.7047818468573, + "max_y": 5229.396279012325, + "center": [ + 1735.7945503610217, + 5229.017015893227 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554600", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.518041582249, + "min_y": 5230.93383518337, + "max_x": 1738.763597436299, + "max_y": 5236.17939103742, + "center": [ + 1736.140819509274, + 5233.556613110395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140819509274, + 5233.556613110395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554601", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1736.14081330583, + "min_y": 5229.84594827524, + "max_x": 1736.14081547686, + "max_y": 5230.934771706389, + "center": [ + 1736.140814391345, + 5230.390359990814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.14081330583, + 5229.84594827524 + ], + [ + 1736.14081547686, + 5230.934771706389 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554602", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.518049144674, + "min_y": 5236.227214153556, + "max_x": 1738.763604998724, + "max_y": 5241.4727700076055, + "center": [ + 1736.140827071699, + 5238.849992080581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140827071699, + 5238.849992080581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554603", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.470231353528, + "min_y": 5241.520593123729, + "max_x": 1736.140832396676, + "max_y": 5241.520598448703, + "center": [ + 1734.8055318751021, + 5241.520595786216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140832396676, + 5241.520593123729 + ], + [ + 1733.470231353528, + 5241.520598448703 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554604", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.470226028554, + "min_y": 5238.849997405563, + "max_x": 1733.470231353528, + "max_y": 5241.520598448703, + "center": [ + 1733.470228691041, + 5240.185297927133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.470226028554, + 5238.849997405563 + ], + [ + 1733.470231353528, + 5241.520598448703 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554605", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1736.140832396676, + "min_y": 5241.520587798746, + "max_x": 1738.811433439825, + "max_y": 5241.520593123729, + "center": [ + 1737.4761329182504, + 5241.520590461238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140832396676, + 5241.520593123729 + ], + [ + 1738.811433439825, + 5241.520587798746 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554606", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1738.811428114847, + "min_y": 5238.849986755607, + "max_x": 1738.811433439825, + "max_y": 5241.520587798746, + "center": [ + 1738.811430777336, + 5240.185287277176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.811428114847, + 5238.849986755607 + ], + [ + 1738.811433439825, + 5241.520587798746 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554607", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.470220703577, + "min_y": 5236.179391037419, + "max_x": 1736.140821746725, + "max_y": 5236.179396362405, + "center": [ + 1734.805521225151, + 5236.179393699912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140821746725, + 5236.179391037419 + ], + [ + 1733.470220703577, + 5236.179396362405 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554608", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.470220703577, + "min_y": 5236.179396362405, + "max_x": 1733.470226028554, + "max_y": 5238.849997405554, + "center": [ + 1733.4702233660655, + 5237.51469688398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.470226028554, + 5238.849997405554 + ], + [ + 1733.470220703577, + 5236.179396362405 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554609", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1736.140821746725, + "min_y": 5236.179385712459, + "max_x": 1738.811422789873, + "max_y": 5236.179391037419, + "center": [ + 1737.476122268299, + 5236.17938837494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1736.140821746725, + 5236.179391037419 + ], + [ + 1738.811422789873, + 5236.179385712459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55460A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1738.811422789873, + "min_y": 5236.179385712459, + "max_x": 1738.811428114847, + "max_y": 5238.849986755593, + "center": [ + 1738.81142545236, + 5237.514686234026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.811428114847, + 5238.849986755593 + ], + [ + 1738.811422789873, + 5236.179385712459 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55460B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1737.739614346354, + "min_y": 5228.238786163554, + "max_x": 1737.739617550909, + "max_y": 5229.845945087342, + "center": [ + 1737.7396159486316, + 5229.042365625448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1737.739617550909, + 5229.845945087342 + ], + [ + 1737.739614346354, + 5228.238786163554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55460C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.542005856195, + "min_y": 5228.238786163554, + "max_x": 1737.739614346354, + "max_y": 5228.238792539344, + "center": [ + 1736.1408101012744, + 5228.23878935145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1737.739614346354, + 5228.238786163554 + ], + [ + 1734.542005856195, + 5228.238792539344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55460D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.542005856195, + "min_y": 5228.238792539344, + "max_x": 1734.54200906075, + "max_y": 5229.845951463135, + "center": [ + 1734.5420074584724, + 5229.0423720012395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.542005856195, + 5228.238792539344 + ], + [ + 1734.54200906075, + 5229.845951463135 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55460E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.54200906075, + "min_y": 5229.845945087342, + "max_x": 1737.739617550909, + "max_y": 5229.845951463135, + "center": [ + 1736.1408133058294, + 5229.845948275239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.54200906075, + 5229.845951463135 + ], + [ + 1737.739617550909, + 5229.845945087342 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55460F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1733.378634520855, + "min_y": 5229.04232821917, + "max_x": 1734.542007458427, + "max_y": 5229.042349528318, + "center": [ + 1733.9603209896409, + 5229.042338873744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.542007458427, + 5229.042349528318 + ], + [ + 1733.378634520855, + 5229.04232821917 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554610", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.06425296657, + "min_y": 5228.519995839963, + "max_x": 1746.064255049798, + "max_y": 5229.564783284583, + "center": [ + 1746.064254008184, + 5229.0423895622735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.064255049798, + 5229.564783284583 + ], + [ + 1746.06425296657, + 5228.519995839963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554611", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1743.512275005767, + "min_y": 5229.042355151971, + "max_x": 1746.064254008117, + "max_y": 5229.042355958684, + "center": [ + 1744.788264506942, + 5229.042355555328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.064254008117, + 5229.042355958684 + ], + [ + 1743.512275005767, + 5229.042355151971 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554612", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1747.299240252198, + "min_y": 5235.188240715238, + "max_x": 1747.299242721596, + "max_y": 5238.849988683468, + "center": [ + 1747.299241486897, + 5237.019114699353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.299240252198, + 5235.188240715238 + ], + [ + 1747.299242721596, + 5238.849988683468 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554613", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1750.441289833406, + "min_y": 5235.337882971164, + "max_x": 1752.7925175205116, + "max_y": 5236.644120575112, + "center": [ + 1751.6169036769588, + 5235.991001773138 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554614", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1749.252454603032, + "min_y": 5232.189140217465, + "max_x": 1754.498010457082, + "max_y": 5237.434696071515, + "center": [ + 1751.875232530057, + 5234.81191814449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.875232530057, + 5234.81191814449 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554615", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1734.358238016488, + "min_y": 5239.224608753138, + "max_x": 1737.4932082659623, + "max_y": 5240.530846357086, + "center": [ + 1735.9257231412253, + 5239.877727555113 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554616", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1733.51804914468, + "min_y": 5238.849986850969, + "max_x": 1738.763604998717, + "max_y": 5238.849997310206, + "center": [ + 1736.1408270716984, + 5238.849992080588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.763604998717, + 5238.849986850969 + ], + [ + 1733.51804914468, + 5238.849997310206 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554617", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1735.044848438999, + "min_y": 5233.895959998583, + "max_x": 1737.3960761261046, + "max_y": 5235.202197602531, + "center": [ + 1736.2204622825518, + 5234.549078800557 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554618", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1737.739615948604, + "min_y": 5229.042352159151, + "max_x": 1741.042425246587, + "max_y": 5229.042352375675, + "center": [ + 1739.3910205975956, + 5229.042352267414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.042425246587, + 5229.042352159151 + ], + [ + 1737.739615948604, + 5229.042352375675 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554619", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1754.141448962068, + "min_y": 5228.519943574463, + "max_x": 1754.141451045297, + "max_y": 5229.564731019074, + "center": [ + 1754.1414500036824, + 5229.042337296769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.141451045297, + 5229.564731019074 + ], + [ + 1754.141448962068, + 5228.519943574463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.671599202905, + "min_y": 5228.519948499154, + "max_x": 1751.671601286133, + "max_y": 5229.564735943776, + "center": [ + 1751.6716002445191, + 5229.042342221465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.671601286133, + 5229.564735943776 + ], + [ + 1751.671599202905, + 5228.519948499154 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.065101216356, + "min_y": 5229.207991257201, + "max_x": 1752.629811188727, + "max_y": 5229.546108156386, + "center": [ + 1752.3474562025415, + 5229.3770497067935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.065101216356, + 5229.546108156386 + ], + [ + 1752.629811188727, + 5229.207991257201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1753.183140839349, + "min_y": 5228.538571362054, + "max_x": 1753.747850811721, + "max_y": 5228.876688261234, + "center": [ + 1753.465495825535, + 5228.707629811644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1753.183140839349, + 5228.876688261234 + ], + [ + 1753.747850811721, + 5228.538571362054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1753.747850811721, + "min_y": 5228.538571362054, + "max_x": 1753.747852820667, + "max_y": 5229.546104801099, + "center": [ + 1753.747851816194, + 5229.042338081577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1753.747852820667, + 5229.546104801099 + ], + [ + 1753.747850811721, + 5228.538571362054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.065099207407, + "min_y": 5228.538574717334, + "max_x": 1752.065101216356, + "max_y": 5229.546108156386, + "center": [ + 1752.0651002118816, + 5229.04234143686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.065101216356, + 5229.546108156386 + ], + [ + 1752.065099207407, + 5228.538574717334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55461F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.065099207407, + "min_y": 5228.538574717334, + "max_x": 1752.629810528136, + "max_y": 5228.876689364538, + "center": [ + 1752.3474548677714, + 5228.707632040936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.065099207407, + 5228.538574717334 + ], + [ + 1752.629810528136, + 5228.876689364538 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554620", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1753.183141499941, + "min_y": 5229.207990153901, + "max_x": 1753.747852820667, + "max_y": 5229.546104801099, + "center": [ + 1753.465497160304, + 5229.3770474775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1753.183141499941, + 5229.207990153901 + ], + [ + 1753.747852820667, + 5229.546104801099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1742.554064061554, + "min_y": 5228.538585641288, + "max_x": 1743.118774033925, + "max_y": 5228.876702540478, + "center": [ + 1742.8364190477396, + 5228.707644090882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1743.118774033925, + 5228.538585641288 + ], + [ + 1742.554064061554, + 5228.876702540478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554622", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.436024438559, + "min_y": 5229.208005536432, + "max_x": 1742.000734410932, + "max_y": 5229.546122435617, + "center": [ + 1741.7183794247453, + 5229.377063986025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1742.000734410932, + 5229.208005536432 + ], + [ + 1741.436024438559, + 5229.546122435617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554623", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.118774033925, + "min_y": 5228.538585641288, + "max_x": 1743.118776042869, + "max_y": 5229.546119080336, + "center": [ + 1743.118775038397, + 5229.0423523608115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1743.118776042869, + 5229.546119080336 + ], + [ + 1743.118774033925, + 5228.538585641288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554624", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.436022429612, + "min_y": 5228.538588996571, + "max_x": 1741.436024438559, + "max_y": 5229.546122435617, + "center": [ + 1741.4360234340854, + 5229.042355716094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.436024438559, + 5229.546122435617 + ], + [ + 1741.436022429612, + 5228.538588996571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554625", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1742.554064722143, + "min_y": 5229.208004433138, + "max_x": 1743.118776042869, + "max_y": 5229.546119080336, + "center": [ + 1742.836420382506, + 5229.377061756737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1743.118776042869, + 5229.546119080336 + ], + [ + 1742.554064722143, + 5229.208004433138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554626", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.436022429612, + "min_y": 5228.538588996571, + "max_x": 1742.000733750341, + "max_y": 5228.87670364377, + "center": [ + 1741.7183780899763, + 5228.70764632017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1742.000733750341, + 5228.87670364377 + ], + [ + 1741.436022429612, + 5228.538588996571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554627", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.512273964146, + "min_y": 5228.519957853895, + "max_x": 1743.512276047374, + "max_y": 5229.564745298512, + "center": [ + 1743.5122750057599, + 5229.042351576203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1743.512276047374, + 5229.564745298512 + ], + [ + 1743.512273964146, + 5228.519957853895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554628", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.042424204982, + "min_y": 5228.519962778591, + "max_x": 1741.042426288208, + "max_y": 5229.564750223208, + "center": [ + 1741.042425246595, + 5229.0423565009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.042426288208, + 5229.564750223208 + ], + [ + 1741.042424204982, + 5228.519962778591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554629", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1740.546821312215, + "min_y": 5223.386166120111, + "max_x": 1740.546832590225, + "max_y": 5229.042353725715, + "center": [ + 1740.5468269512198, + 5226.214259922913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1740.546832590225, + 5229.042353725715 + ], + [ + 1740.546821312215, + 5223.386166120111 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55462A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1740.546821312215, + "min_y": 5223.386156755885, + "max_x": 1746.074932260215, + "max_y": 5223.386166120111, + "center": [ + 1743.310876786215, + 5223.386161437998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1740.546821312215, + 5223.386166120111 + ], + [ + 1746.074932260215, + 5223.386156755885 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55462B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1748.534103767243, + "min_y": 5229.042332757081, + "max_x": 1751.671600244511, + "max_y": 5229.042338027229, + "center": [ + 1750.1028520058771, + 5229.042335392154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.671600244511, + 5229.042338027229 + ], + [ + 1748.534103767243, + 5229.042332757081 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55462C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.586571075174, + "min_y": 5222.882385896274, + "max_x": 1748.151281047545, + "max_y": 5223.220502795463, + "center": [ + 1747.8689260613596, + 5223.051444345869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.151281047545, + 5222.882385896274 + ], + [ + 1747.586571075174, + 5223.220502795463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55462D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.468531452181, + "min_y": 5223.551805791415, + "max_x": 1747.033241424552, + "max_y": 5223.889922690604, + "center": [ + 1746.7508864383665, + 5223.72086424101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.033241424552, + 5223.551805791415 + ], + [ + 1746.468531452181, + 5223.889922690604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55462E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.151281047545, + "min_y": 5222.882385896274, + "max_x": 1748.151283056491, + "max_y": 5223.889919335324, + "center": [ + 1748.151282052018, + 5223.386152615799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.151283056491, + 5223.889919335324 + ], + [ + 1748.151281047545, + 5222.882385896274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55462F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.468529443231, + "min_y": 5222.882389251548, + "max_x": 1746.468531452181, + "max_y": 5223.889922690604, + "center": [ + 1746.4685304477061, + 5223.386155971077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.468531452181, + 5223.889922690604 + ], + [ + 1746.468529443231, + 5222.882389251548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.586571735765, + "min_y": 5223.551804688114, + "max_x": 1748.151283056491, + "max_y": 5223.889919335324, + "center": [ + 1747.868927396128, + 5223.720862011719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.151283056491, + 5223.889919335324 + ], + [ + 1747.586571735765, + 5223.551804688114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554631", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.468529443231, + "min_y": 5222.882389251548, + "max_x": 1747.03324076396, + "max_y": 5223.220503898758, + "center": [ + 1746.7508851035955, + 5223.051446575153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.03324076396, + 5223.220503898758 + ], + [ + 1746.468529443231, + 5222.882389251548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554632", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.544780977765, + "min_y": 5222.863758108883, + "max_x": 1748.544783060993, + "max_y": 5223.908545553494, + "center": [ + 1748.544782019379, + 5223.386151831189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.544783060993, + 5223.908545553494 + ], + [ + 1748.544780977765, + 5222.863758108883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554633", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.074931218602, + "min_y": 5222.863763033573, + "max_x": 1746.07493330183, + "max_y": 5223.90855047819, + "center": [ + 1746.074932260216, + 5223.3861567558815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.07493330183, + 5223.90855047819 + ], + [ + 1746.074931218602, + 5222.863763033573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554634", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1754.51927591982, + "min_y": 5223.386142466768, + "max_x": 1754.519287197882, + "max_y": 5229.042354766659, + "center": [ + 1754.5192815588512, + 5226.214248616714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.51927591982, + 5223.386142466768 + ], + [ + 1754.519287197882, + 5229.042354766659 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554635", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1748.544782019381, + "min_y": 5223.386142466768, + "max_x": 1754.51927591982, + "max_y": 5223.386151831192, + "center": [ + 1751.5320289696006, + 5223.38614714898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.544782019381, + 5223.386151831192 + ], + [ + 1754.51927591982, + 5223.386142466768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554636", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1722.577476160692, + "min_y": 5238.706207726219, + "max_x": 1723.990965226022, + "max_y": 5238.706210832106, + "center": [ + 1723.284220693357, + 5238.706209279162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.990965226022, + 5238.706207726219 + ], + [ + 1722.577476160692, + 5238.706210832106 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554637", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.328617293442, + "min_y": 5228.246145587197, + "max_x": 1729.13464381941, + "max_y": 5228.246748204158, + "center": [ + 1728.731630556426, + 5228.246446895678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.13464381941, + 5228.246748204158 + ], + [ + 1728.328617293442, + 5228.246145587197 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554638", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1728.731630556427, + "min_y": 5228.246446895676, + "max_x": 1728.731630556427, + "max_y": 5229.04235460178, + "center": [ + 1728.731630556427, + 5228.644400748728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.731630556427, + 5228.246446895676 + ], + [ + 1728.731630556427, + 5229.04235460178 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554639", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.32994498014, + "min_y": 5226.470306579414, + "max_x": 1729.13597150611, + "max_y": 5226.470909196372, + "center": [ + 1728.732958243125, + 5226.4706078878935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.32994498014, + 5226.470306579414 + ], + [ + 1729.13597150611, + 5226.470909196372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1728.4723641944038, + "min_y": 5227.128819703031, + "max_x": 1728.988308611496, + "max_y": 5227.644764120122, + "center": [ + 1728.73033640295, + 5227.386791911576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.73033640295, + 5227.386791911576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.329765658803, + "min_y": 5226.710156706277, + "max_x": 1728.600844912795, + "max_y": 5227.163673973345, + "center": [ + 1728.4653052857989, + 5226.936915339811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.600844912795, + 5227.163673973345 + ], + [ + 1728.329765658803, + 5226.710156706277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.329765658803, + "min_y": 5226.710156706277, + "max_x": 1729.135792184773, + "max_y": 5226.710759323233, + "center": [ + 1728.732778921788, + 5226.710458014755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.329765658803, + 5226.710156706277 + ], + [ + 1729.135792184773, + 5226.710759323233 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.863022599484, + "min_y": 5226.710759323233, + "max_x": 1729.135792184773, + "max_y": 5227.165558926621, + "center": [ + 1728.9994073921284, + 5226.938159124928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.135792184773, + 5226.710759323233 + ], + [ + 1728.863022599484, + 5227.165558926621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.328759186351, + "min_y": 5227.604791453322, + "max_x": 1728.59958948903, + "max_y": 5228.056357613489, + "center": [ + 1728.4641743376906, + 5227.8305745334055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.59958948903, + 5227.604791453322 + ], + [ + 1728.328759186351, + 5228.056357613489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55463F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.328759186351, + "min_y": 5228.056357613489, + "max_x": 1729.134785712321, + "max_y": 5228.056960230447, + "center": [ + 1728.731772449336, + 5228.056658921968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.328759186351, + 5228.056357613489 + ], + [ + 1729.134785712321, + 5228.056960230447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554640", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.864630929083, + "min_y": 5227.604989608666, + "max_x": 1729.134785712321, + "max_y": 5228.056960230447, + "center": [ + 1728.999708320702, + 5227.830974919556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.134785712321, + 5228.056960230447 + ], + [ + 1728.864630929083, + 5227.604989608666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.262231304862, + "min_y": 5235.313718466354, + "max_x": 1716.262231304862, + "max_y": 5239.606293421143, + "center": [ + 1716.262231304862, + 5237.460005943749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.262231304862, + 5239.606293421143 + ], + [ + 1716.262231304862, + 5235.313718466354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554642", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.939908610331, + "min_y": 5235.313718466354, + "max_x": 1718.939908610331, + "max_y": 5239.606293421143, + "center": [ + 1718.939908610331, + 5237.460005943749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.939908610331, + 5235.313718466354 + ], + [ + 1718.939908610331, + 5239.606293421143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554643", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1715.948903394503, + "min_y": 5239.606293421143, + "max_x": 1719.253236520688, + "max_y": 5239.606293421143, + "center": [ + 1717.6010699575954, + 5239.606293421143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1715.948903394503, + 5239.606293421143 + ], + [ + 1719.253236520688, + 5239.606293421143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554645", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.262231304862, + "min_y": 5238.257313242383, + "max_x": 1718.127733839634, + "max_y": 5238.257313242383, + "center": [ + 1717.1949825722481, + 5238.257313242383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.262231304862, + 5238.257313242383 + ], + [ + 1718.127733839634, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554646", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.127733839634, + "min_y": 5238.257313242383, + "max_x": 1718.939908610331, + "max_y": 5238.257313242383, + "center": [ + 1718.5338212249826, + 5238.257313242383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.127733839634, + 5238.257313242383 + ], + [ + 1718.939908610331, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554647", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5235.699264492712, + "max_x": 1716.969073299156, + "max_y": 5238.257313242383, + "center": [ + 1716.969073299156, + 5236.978288867547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5238.257313242383 + ], + [ + 1716.969073299156, + 5235.699264492712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554648", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5235.699264492712, + "max_x": 1718.233066616041, + "max_y": 5235.699264492712, + "center": [ + 1717.6010699575986, + 5235.699264492712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5235.699264492712 + ], + [ + 1718.233066616041, + 5235.699264492712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554649", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.233066616041, + "min_y": 5235.699264492712, + "max_x": 1718.233066616041, + "max_y": 5238.257313242383, + "center": [ + 1718.233066616041, + 5236.978288867547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5235.699264492712 + ], + [ + 1718.233066616041, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5237.707389947997, + "max_x": 1717.51899659354, + "max_y": 5238.257313242383, + "center": [ + 1717.244034946348, + 5237.98235159519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5237.707389947997 + ], + [ + 1717.51899659354, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5237.154052863256, + "max_x": 1718.072333678283, + "max_y": 5238.257313242383, + "center": [ + 1717.5207034887194, + 5237.70568305282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5237.154052863256 + ], + [ + 1718.072333678283, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5236.600715778504, + "max_x": 1718.233066616041, + "max_y": 5237.864709095394, + "center": [ + 1717.6010699575986, + 5237.232712436949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5236.600715778504 + ], + [ + 1718.233066616041, + 5237.864709095394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5236.047378693763, + "max_x": 1718.233066616041, + "max_y": 5237.311372010651, + "center": [ + 1717.6010699575986, + 5236.679375352207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5236.047378693763 + ], + [ + 1718.233066616041, + 5237.311372010651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.174296182842, + "min_y": 5235.699264492712, + "max_x": 1718.233066616041, + "max_y": 5236.758034925907, + "center": [ + 1717.7036813994414, + 5236.22864970931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.174296182842, + 5235.699264492712 + ], + [ + 1718.233066616041, + 5236.758034925907 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55464F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.727633267586, + "min_y": 5235.699264492712, + "max_x": 1718.233066616041, + "max_y": 5236.204697841161, + "center": [ + 1717.9803499418135, + 5235.951981166936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.727633267586, + 5235.699264492712 + ], + [ + 1718.233066616041, + 5236.204697841161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554650", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5235.699264492712, + "max_x": 1717.285140435518, + "max_y": 5236.015331629073, + "center": [ + 1717.127106867337, + 5235.857298060893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.285140435518, + 5235.699264492712 + ], + [ + 1716.969073299156, + 5236.015331629073 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554651", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5235.699264492712, + "max_x": 1717.838477520259, + "max_y": 5236.568668713818, + "center": [ + 1717.4037754097076, + 5236.133966603265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.838477520259, + 5235.699264492712 + ], + [ + 1716.969073299156, + 5236.568668713818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554652", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5235.858012481671, + "max_x": 1718.233066616041, + "max_y": 5237.122005798561, + "center": [ + 1717.6010699575986, + 5236.490009140116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5235.858012481671 + ], + [ + 1716.969073299156, + 5237.122005798561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554653", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5236.411349566417, + "max_x": 1718.233066616041, + "max_y": 5237.675342883303, + "center": [ + 1717.6010699575986, + 5237.04334622486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5236.411349566417 + ], + [ + 1716.969073299156, + 5237.675342883303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554654", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5236.96468665116, + "max_x": 1718.233066616041, + "max_y": 5238.228679968043, + "center": [ + 1717.6010699575986, + 5237.596683309602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5236.96468665116 + ], + [ + 1716.969073299156, + 5238.228679968043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554655", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.493777109564, + "min_y": 5237.518023735905, + "max_x": 1718.233066616041, + "max_y": 5238.257313242383, + "center": [ + 1717.8634218628026, + 5237.887668489144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5237.518023735905 + ], + [ + 1717.493777109564, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554656", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.047114194305, + "min_y": 5238.071360820645, + "max_x": 1718.233066616041, + "max_y": 5238.257313242383, + "center": [ + 1718.140090405173, + 5238.164337031514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5238.071360820645 + ], + [ + 1718.047114194305, + 5238.257313242383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554657", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.248961874866, + "min_y": 5233.595713276329, + "max_x": 1717.954235085091, + "max_y": 5233.596240566164, + "center": [ + 1717.6015984799785, + 5233.595976921246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.954235085091, + 5233.596240566164 + ], + [ + 1717.248961874866, + 5233.595713276329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554658", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601069957596, + "min_y": 5233.595976921245, + "max_x": 1717.601598479976, + "max_y": 5234.302898713885, + "center": [ + 1717.6013342187862, + 5233.949437817565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601598479976, + 5233.595976921245 + ], + [ + 1717.601069957596, + 5234.302898713885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554659", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.25012360073, + "min_y": 5232.041854144512, + "max_x": 1717.955396810953, + "max_y": 5232.042381434355, + "center": [ + 1717.6027602058416, + 5232.042117789433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.25012360073, + 5232.041854144512 + ], + [ + 1717.955396810953, + 5232.042381434355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1717.3747404132082, + "min_y": 5232.618053127674, + "max_x": 1717.8261917781638, + "max_y": 5233.06950449263, + "center": [ + 1717.600466095686, + 5232.843778810152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.600466095686, + 5232.843778810152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601065449767, + "min_y": 5231.366876924615, + "max_x": 1717.601570285303, + "max_y": 5232.042116522368, + "center": [ + 1717.601317867535, + 5231.7044967234915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601065449767, + 5232.042116522368 + ], + [ + 1717.601570285303, + 5231.366876924615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249966694559, + "min_y": 5232.25172300552, + "max_x": 1717.487161041802, + "max_y": 5232.648550614204, + "center": [ + 1717.3685638681804, + 5232.450136809863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.487161041802, + 5232.648550614204 + ], + [ + 1717.249966694559, + 5232.25172300552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249966694559, + "min_y": 5232.25172300552, + "max_x": 1717.955239904782, + "max_y": 5232.252250295356, + "center": [ + 1717.6026032996706, + 5232.251986650438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.249966694559, + 5232.25172300552 + ], + [ + 1717.955239904782, + 5232.252250295356 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.716566517653, + "min_y": 5232.252250295356, + "max_x": 1717.955239904782, + "max_y": 5232.65019994832, + "center": [ + 1717.8359032112176, + 5232.451225121838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.955239904782, + 5232.252250295356 + ], + [ + 1717.716566517653, + 5232.65019994832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55465F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249086031165, + "min_y": 5233.034528409181, + "max_x": 1717.486062546009, + "max_y": 5233.429648799333, + "center": [ + 1717.367574288587, + 5233.232088604257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.486062546009, + 5233.034528409181 + ], + [ + 1717.249086031165, + 5233.429648799333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554660", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249086031165, + "min_y": 5233.429648799333, + "max_x": 1717.95435924139, + "max_y": 5233.430176089168, + "center": [ + 1717.6017226362774, + 5233.4299124442505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.249086031165, + 5233.429648799333 + ], + [ + 1717.95435924139, + 5233.430176089168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554661", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.717973806053, + "min_y": 5233.034701795107, + "max_x": 1717.95435924139, + "max_y": 5233.430176089168, + "center": [ + 1717.8361665237214, + 5233.232438942137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.95435924139, + 5233.430176089168 + ], + [ + 1717.717973806053, + 5233.034701795107 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554662", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1734.27606635627, + "min_y": 5231.808087915322, + "max_x": 1737.6360663562698, + "max_y": 5232.928087915322, + "center": [ + 1735.9560663562697, + 5232.368087915322 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554663", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1750.010479377047, + "min_y": 5233.063392949399, + "max_x": 1753.3704793770469, + "max_y": 5234.183392949399, + "center": [ + 1751.6904793770468, + 5233.623392949399 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554664", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5238.700324504579, + "max_x": 1716.262231304862, + "max_y": 5238.700324504579, + "center": [ + 1713.9745549350826, + 5238.700324504579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.686878565303, + 5238.700324504579 + ], + [ + 1716.262231304862, + 5238.700324504579 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554665", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1730.279183927122, + "min_y": 5228.499513631465, + "max_x": 1730.279183927122, + "max_y": 5229.042360701321, + "center": [ + 1730.279183927122, + 5228.770937166393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.279183927122, + 5229.042360701321 + ], + [ + 1730.279183927122, + 5228.499513631465 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "554666", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1730.279183927122, + "min_y": 5218.809763833195, + "max_x": 1730.279183927122, + "max_y": 5226.723673631051, + "center": [ + 1730.279183927122, + 5222.766718732122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.279183927122, + 5226.723673631051 + ], + [ + 1730.279183927122, + 5218.809763833195 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "554667", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.262231304862, + "min_y": 5215.997791250522, + "max_x": 1716.262231304862, + "max_y": 5220.290366205314, + "center": [ + 1716.262231304862, + 5218.144078727918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.262231304862, + 5220.290366205314 + ], + [ + 1716.262231304862, + 5215.997791250522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554668", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.939908610331, + "min_y": 5215.997791250522, + "max_x": 1718.939908610331, + "max_y": 5220.290366205314, + "center": [ + 1718.939908610331, + 5218.144078727918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.939908610331, + 5215.997791250522 + ], + [ + 1718.939908610331, + 5220.290366205314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554669", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1715.948903394503, + "min_y": 5220.290366205314, + "max_x": 1719.253236520688, + "max_y": 5220.290366205314, + "center": [ + 1717.6010699575954, + 5220.290366205314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1715.948903394503, + 5220.290366205314 + ], + [ + 1719.253236520688, + 5220.290366205314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55466B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.262231304862, + "min_y": 5218.94138602655, + "max_x": 1718.127733839634, + "max_y": 5218.94138602655, + "center": [ + 1717.1949825722481, + 5218.94138602655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.262231304862, + 5218.94138602655 + ], + [ + 1718.127733839634, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55466C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.127733839634, + "min_y": 5218.94138602655, + "max_x": 1718.939908610331, + "max_y": 5218.94138602655, + "center": [ + 1718.5338212249826, + 5218.94138602655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.127733839634, + 5218.94138602655 + ], + [ + 1718.939908610331, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55466D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1712.914372943869, + "min_y": 5228.891931532258, + "max_x": 1714.4837750631746, + "max_y": 5230.199766631679, + "center": [ + 1713.6990740035217, + 5229.545849081969 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55466E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.248961874866, + "min_y": 5214.279786060489, + "max_x": 1717.954235085091, + "max_y": 5214.280313350326, + "center": [ + 1717.6015984799785, + 5214.280049705407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.954235085091, + 5214.280313350326 + ], + [ + 1717.248961874866, + 5214.279786060489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55466F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601069957596, + "min_y": 5214.28004970541, + "max_x": 1717.601598479976, + "max_y": 5214.986971498049, + "center": [ + 1717.6013342187862, + 5214.6335106017295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601598479976, + 5214.28004970541 + ], + [ + 1717.601069957596, + 5214.986971498049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554670", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.25012360073, + "min_y": 5212.775315642787, + "max_x": 1717.955396810953, + "max_y": 5212.775842932625, + "center": [ + 1717.6027602058416, + 5212.775579287706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.25012360073, + 5212.775315642787 + ], + [ + 1717.955396810953, + 5212.775842932625 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554671", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1717.3747404132082, + "min_y": 5213.302125911842, + "max_x": 1717.8261917781638, + "max_y": 5213.753577276798, + "center": [ + 1717.600466095686, + 5213.52785159432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.600466095686, + 5213.52785159432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554672", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601065449767, + "min_y": 5212.10033842289, + "max_x": 1717.601570285303, + "max_y": 5212.775578020643, + "center": [ + 1717.601317867535, + 5212.437958221766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601065449767, + 5212.775578020643 + ], + [ + 1717.601570285303, + 5212.10033842289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554673", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249966694559, + "min_y": 5212.935795789689, + "max_x": 1717.487161041802, + "max_y": 5213.332623398368, + "center": [ + 1717.3685638681804, + 5213.134209594029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.487161041802, + 5213.332623398368 + ], + [ + 1717.249966694559, + 5212.935795789689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554674", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249966694559, + "min_y": 5212.935795789689, + "max_x": 1717.955239904782, + "max_y": 5212.936323079527, + "center": [ + 1717.6026032996706, + 5212.936059434608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.249966694559, + 5212.935795789689 + ], + [ + 1717.955239904782, + 5212.936323079527 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554675", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.716566517653, + "min_y": 5212.936323079527, + "max_x": 1717.955239904782, + "max_y": 5213.334272732488, + "center": [ + 1717.8359032112176, + 5213.1352979060075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.955239904782, + 5212.936323079527 + ], + [ + 1717.716566517653, + 5213.334272732488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554676", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249086031165, + "min_y": 5213.718601193342, + "max_x": 1717.486062546009, + "max_y": 5214.113721583499, + "center": [ + 1717.367574288587, + 5213.916161388421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.486062546009, + 5213.718601193342 + ], + [ + 1717.249086031165, + 5214.113721583499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554677", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.249086031165, + "min_y": 5214.113721583499, + "max_x": 1717.95435924139, + "max_y": 5214.114248873336, + "center": [ + 1717.6017226362774, + 5214.113985228418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.249086031165, + 5214.113721583499 + ], + [ + 1717.95435924139, + 5214.114248873336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554678", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.717973806053, + "min_y": 5213.71877457927, + "max_x": 1717.95435924139, + "max_y": 5214.114248873336, + "center": [ + 1717.8361665237214, + 5213.916511726303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.95435924139, + 5214.114248873336 + ], + [ + 1717.717973806053, + 5213.71877457927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554679", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1718.939908610331, + "min_y": 5219.384403659012, + "max_x": 1720.309866213088, + "max_y": 5219.384404751844, + "center": [ + 1719.6248874117096, + 5219.384404205428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.309866213088, + 5219.384403659012 + ], + [ + 1718.939908610331, + 5219.384404751844 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5219.384397288742, + "max_x": 1716.262231304862, + "max_y": 5219.384397288742, + "center": [ + 1713.9745549350826, + 5219.384397288742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.686878565303, + 5219.384397288742 + ], + [ + 1716.262231304862, + 5219.384397288742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1718.939908610331, + "min_y": 5219.384403659012, + "max_x": 1720.309866213088, + "max_y": 5219.384404751844, + "center": [ + 1719.6248874117096, + 5219.384404205428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.309866213088, + 5219.384403659012 + ], + [ + 1718.939908610331, + 5219.384404751844 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5219.384397288742, + "max_x": 1716.262231304862, + "max_y": 5219.384397288742, + "center": [ + 1713.9745549350826, + 5219.384397288742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.686878565303, + 5219.384397288742 + ], + [ + 1716.262231304862, + 5219.384397288742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1723.990965226009, + "min_y": 5219.378533066195, + "max_x": 1723.990965226009, + "max_y": 5238.706202226017, + "center": [ + 1723.990965226009, + 5229.042367646106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.990965226009, + 5219.378533066195 + ], + [ + 1723.990965226009, + 5238.706202226017 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1708.505651485619, + "min_y": 5219.390267881556, + "max_x": 1708.505651485619, + "max_y": 5238.706196163125, + "center": [ + 1708.505651485619, + 5229.04823202234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.505651485619, + 5238.706196163125 + ], + [ + 1708.505651485619, + 5219.390267881556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55467F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1756.130401155929, + "min_y": 5229.042360701321, + "max_x": 1756.130401155929, + "max_y": 5230.89767247271, + "center": [ + 1756.130401155929, + 5229.970016587015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.130401155929, + 5229.042360701321 + ], + [ + 1756.130401155929, + 5230.89767247271 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554680", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1711.677486895245, + "min_y": 5226.812648172479, + "max_x": 1715.709486895245, + "max_y": 5227.932648172479, + "center": [ + 1713.6934868952449, + 5227.372648172479 + ] + }, + "raw_value": "10102B", + "clean_value": "10102B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554681", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5245.06380926303, + "max_x": 1793.879317221923, + "max_y": 5245.06380926303, + "center": [ + 1793.300244961751, + 5245.06380926303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.879317221923, + 5245.06380926303 + ], + [ + 1792.721172701579, + 5245.06380926303 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554682", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1741.9549339755595, + "min_y": 5228.719888777771, + "max_x": 1742.5998644969245, + "max_y": 5229.364819299136, + "center": [ + 1742.277399236242, + 5229.042354038454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1742.277399236242, + 5229.042354038454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554683", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1746.9767627371496, + "min_y": 5228.719921839148, + "max_x": 1747.6216932585146, + "max_y": 5229.3648523605125, + "center": [ + 1747.299227997832, + 5229.04238709983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.299227997832, + 5229.04238709983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554684", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1752.5840107533545, + "min_y": 5228.719874498534, + "max_x": 1753.2289412747195, + "max_y": 5229.364805019899, + "center": [ + 1752.906476014037, + 5229.042339759217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.906476014037, + 5229.042339759217 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554685", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1746.9874409891816, + "min_y": 5223.06368903276, + "max_x": 1747.6323715105466, + "max_y": 5223.708619554124, + "center": [ + 1747.309906249864, + 5223.386154293442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.309906249864, + 5223.386154293442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554687", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.278271917106, + "min_y": 5257.504776742422, + "max_x": 1808.9924453350122, + "max_y": 5263.218950160328, + "center": [ + 1806.135358626059, + 5260.361863451375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5260.361863451375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554688", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1797.737859887095, + "min_y": 5245.100339809871, + "max_x": 1816.816688204441, + "max_y": 5245.100694833954, + "center": [ + 1807.277274045768, + 5245.100517321913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1797.737859887095, + 5245.100339809871 + ], + [ + 1816.816688204441, + 5245.100694833954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554689", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1820.690081472285, + "min_y": 5238.229322185361, + "max_x": 1820.690081472288, + "max_y": 5256.289312117756, + "center": [ + 1820.6900814722867, + 5247.259317151558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.690081472288, + 5256.289312117756 + ], + [ + 1820.690081472285, + 5238.229322185361 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55468A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.690081472288, + "min_y": 5256.615908964778, + "max_x": 1820.690081472288, + "max_y": 5258.346684028658, + "center": [ + 1820.690081472288, + 5257.481296496719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.690081472288, + 5258.346684028658 + ], + [ + 1820.690081472288, + 5256.615908964778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55468B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.15560011127, + "min_y": 5256.289312117756, + "max_x": 1821.253142670203, + "max_y": 5256.289312117756, + "center": [ + 1820.7043713907365, + 5256.289312117756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.15560011127, + 5256.289312117756 + ], + [ + 1821.253142670203, + 5256.289312117756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55468C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.15560011127, + "min_y": 5256.615908964778, + "max_x": 1821.253142670203, + "max_y": 5256.615908964778, + "center": [ + 1820.7043713907365, + 5256.615908964778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.15560011127, + 5256.615908964778 + ], + [ + 1821.253142670203, + 5256.615908964778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55468D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1834.844995538439, + "min_y": 5208.258649265754, + "max_x": 1837.888131461178, + "max_y": 5208.258649265754, + "center": [ + 1836.3665634998085, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.844995538439, + 5208.258649265754 + ], + [ + 1837.888131461178, + 5208.258649265754 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55468E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1835.4635260965533, + "min_y": 5206.274573420106, + "max_x": 1839.4316777878485, + "max_y": 5210.242725111401, + "center": [ + 1837.447601942201, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.447601942201, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55468F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.14212256534, + "min_y": 5204.731862137024, + "max_x": 1836.243891829619, + "max_y": 5206.681424194265, + "center": [ + 1835.6930071974796, + 5205.706643165644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.243891829619, + 5206.681424194265 + ], + [ + 1835.14212256534, + 5204.731862137024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554690", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.651312054784, + "min_y": 5204.731862137024, + "max_x": 1839.753081319064, + "max_y": 5206.681424194265, + "center": [ + 1839.202196686924, + 5205.706643165644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.651312054784, + 5206.681424194265 + ], + [ + 1839.753081319064, + 5204.731862137024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554691", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.14212256534, + "min_y": 5204.731862137024, + "max_x": 1839.753081319064, + "max_y": 5204.731862137024, + "center": [ + 1837.447601942202, + 5204.731862137024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.753081319064, + 5204.731862137024 + ], + [ + 1835.14212256534, + 5204.731862137024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554692", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.088385731085, + "min_y": 5220.575516951154, + "max_x": 1855.484891627593, + "max_y": 5220.575516951157, + "center": [ + 1854.786638679339, + 5220.575516951156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.088385731085, + 5220.575516951154 + ], + [ + 1855.484891627593, + 5220.575516951157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554693", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.9681620271, + "min_y": 5220.575516951157, + "max_x": 1860.255373005895, + "max_y": 5220.575516951157, + "center": [ + 1859.6117675164976, + 5220.575516951157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.9681620271, + 5220.575516951157 + ], + [ + 1860.255373005895, + 5220.575516951157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554694", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1860.581969852917, + "min_y": 5220.573700096876, + "max_x": 1863.014745422507, + "max_y": 5220.573700096876, + "center": [ + 1861.798357637712, + 5220.573700096876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.581969852917, + 5220.573700096876 + ], + [ + 1863.014745422507, + 5220.573700096876 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554695", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1865.705134960984, + "min_y": 5220.573700096871, + "max_x": 1867.377528028154, + "max_y": 5220.573700096874, + "center": [ + 1866.541331494569, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.705134960984, + 5220.573700096871 + ], + [ + 1867.377528028154, + 5220.573700096874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554696", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.067917566628, + "min_y": 5220.573700096876, + "max_x": 1871.589402488322, + "max_y": 5220.573700096876, + "center": [ + 1870.828660027475, + 5220.573700096876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.067917566628, + 5220.573700096876 + ], + [ + 1871.589402488322, + 5220.573700096876 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554697", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1874.279792026798, + "min_y": 5220.573700096874, + "max_x": 1876.776787909145, + "max_y": 5220.573700096874, + "center": [ + 1875.5282899679714, + 5220.573700096874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.279792026798, + 5220.573700096874 + ], + [ + 1876.776787909145, + 5220.573700096874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554698", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.088385731085, + "min_y": 5220.024928817411, + "max_x": 1854.088385731085, + "max_y": 5221.122471376341, + "center": [ + 1854.088385731085, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.088385731085, + 5220.024928817411 + ], + [ + 1854.088385731085, + 5221.122471376341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554699", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.088385731085, + "min_y": 5220.024928817411, + "max_x": 1854.088385731085, + "max_y": 5221.122471376341, + "center": [ + 1854.088385731085, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.088385731085, + 5220.024928817411 + ], + [ + 1854.088385731085, + 5221.122471376341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.581969852917, + "min_y": 5220.024928817411, + "max_x": 1860.581969852917, + "max_y": 5221.122471376341, + "center": [ + 1860.581969852917, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.581969852917, + 5220.024928817411 + ], + [ + 1860.581969852917, + 5221.122471376341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.255373005895, + "min_y": 5220.024928817411, + "max_x": 1860.255373005895, + "max_y": 5221.122471376341, + "center": [ + 1860.255373005895, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.255373005895, + 5220.024928817411 + ], + [ + 1860.255373005895, + 5221.122471376341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1867.8061817525645, + "min_y": 5221.035361583047, + "max_x": 1869.6392638422153, + "max_y": 5222.868443672699, + "center": [ + 1868.72272279739, + 5221.951902627873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.72272279739, + 5221.951902627873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.806181752564, + "min_y": 5221.951902627873, + "max_x": 1869.639263842213, + "max_y": 5221.951902627873, + "center": [ + 1868.7227227973885, + 5221.951902627873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.639263842213, + 5221.951902627873 + ], + [ + 1867.806181752564, + 5221.951902627873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.72272279739, + "min_y": 5220.924973150109, + "max_x": 1868.72272279739, + "max_y": 5221.951902627873, + "center": [ + 1868.72272279739, + 5221.438437888991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.72272279739, + 5221.951902627873 + ], + [ + 1868.72272279739, + 5220.924973150109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55469F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.024104142251, + "min_y": 5220.024928817405, + "max_x": 1869.639263842213, + "max_y": 5220.393250539095, + "center": [ + 1869.331683992232, + 5220.20908967825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.639263842213, + 5220.024928817405 + ], + [ + 1869.024104142251, + 5220.393250539095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.806181752564, + "min_y": 5220.754149654652, + "max_x": 1868.421341452532, + "max_y": 5221.12247137634, + "center": [ + 1868.113761602548, + 5220.938310515496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.421341452532, + 5220.754149654652 + ], + [ + 1867.806181752564, + 5221.12247137634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.639263842213, + "min_y": 5220.024928817405, + "max_x": 1869.639263842213, + "max_y": 5221.12247137634, + "center": [ + 1869.639263842213, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.639263842213, + 5221.12247137634 + ], + [ + 1869.639263842213, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.806181752564, + "min_y": 5220.024928817405, + "max_x": 1867.806181752564, + "max_y": 5221.12247137634, + "center": [ + 1867.806181752564, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.806181752564, + 5221.12247137634 + ], + [ + 1867.806181752564, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.024104142245, + "min_y": 5220.754149654654, + "max_x": 1869.639263842213, + "max_y": 5221.12247137634, + "center": [ + 1869.331683992229, + 5220.9383105154975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.639263842213, + 5221.12247137634 + ], + [ + 1869.024104142245, + 5220.754149654654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.806181752564, + "min_y": 5220.024928817405, + "max_x": 1868.421341452527, + "max_y": 5220.393250539095, + "center": [ + 1868.1137616025455, + 5220.20908967825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.421341452527, + 5220.393250539095 + ], + [ + 1867.806181752564, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.377528028154, + "min_y": 5220.004637750619, + "max_x": 1867.377528028154, + "max_y": 5221.142762443126, + "center": [ + 1867.377528028154, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.377528028154, + 5221.142762443126 + ], + [ + 1867.377528028154, + 5220.004637750619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.067917566628, + "min_y": 5220.004637750619, + "max_x": 1870.067917566628, + "max_y": 5221.142762443126, + "center": [ + 1870.067917566628, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.067917566628, + 5221.142762443126 + ], + [ + 1870.067917566628, + 5220.004637750619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1871.006527373488, + "min_y": 5214.595353543227, + "max_x": 1875.834328234822, + "max_y": 5214.595353543229, + "center": [ + 1873.420427804155, + 5214.595353543228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.834328234822, + 5214.595353543229 + ], + [ + 1871.006527373488, + 5214.595353543227 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.006527373488, + "min_y": 5214.026291196979, + "max_x": 1871.006527373488, + "max_y": 5215.164415889483, + "center": [ + 1871.006527373488, + 5214.595353543231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.006527373488, + 5215.164415889483 + ], + [ + 1871.006527373488, + 5214.026291196979 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546A9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1869.4121164284034, + "min_y": 5214.244080489991, + "max_x": 1870.1146625348824, + "max_y": 5214.946626596469, + "center": [ + 1869.763389481643, + 5214.59535354323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.763389481643, + 5214.59535354323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.520251589799, + "min_y": 5214.046582263761, + "max_x": 1868.520251589799, + "max_y": 5215.1441248227, + "center": [ + 1868.520251589799, + 5214.595353543231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.520251589799, + 5214.046582263761 + ], + [ + 1868.520251589799, + 5215.1441248227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.006527373488, + "min_y": 5214.046582263761, + "max_x": 1871.006527373488, + "max_y": 5215.1441248227, + "center": [ + 1871.006527373488, + 5214.595353543231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.006527373488, + 5214.046582263761 + ], + [ + 1871.006527373488, + 5215.1441248227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.744540054653, + "min_y": 5222.632681229795, + "max_x": 1871.538344273301, + "max_y": 5226.696622306873, + "center": [ + 1870.641442163977, + 5224.664651768334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.538344273301, + 5226.696622306873 + ], + [ + 1869.744540054653, + 5222.632681229795 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.952856837714, + "min_y": 5220.839088644882, + "max_x": 1869.315421824353, + "max_y": 5221.660495310666, + "center": [ + 1869.1341393310336, + 5221.249791977774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.315421824353, + 5221.660495310666 + ], + [ + 1868.952856837714, + 5220.839088644882 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546AE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1837.0070724232257, + "min_y": 5207.818119746778, + "max_x": 1837.888131461176, + "max_y": 5208.699178784729, + "center": [ + 1837.447601942201, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.447601942201, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546AF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1839.0993979490424, + "min_y": 5237.488071525936, + "max_x": 1839.8019440555215, + "max_y": 5238.190617632415, + "center": [ + 1839.450671002282, + 5237.839344579175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450671002282, + 5237.839344579175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5236.596206687328, + "max_x": 1839.999442281748, + "max_y": 5236.596206687328, + "center": [ + 1839.450671002283, + 5236.596206687328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.901899722818, + 5236.596206687328 + ], + [ + 1839.999442281748, + 5236.596206687328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.443059977737, + "min_y": 5208.258649265754, + "max_x": 1839.443236429569, + "max_y": 5210.522906783691, + "center": [ + 1839.443148203653, + 5209.390778024723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977737, + 5210.522906783691 + ], + [ + 1839.443236429569, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.518398691421, + "min_y": 5207.689586919507, + "max_x": 1834.518398691421, + "max_y": 5208.827711612007, + "center": [ + 1834.518398691421, + 5208.258649265757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.518398691421, + 5208.827711612007 + ], + [ + 1834.518398691421, + 5207.689586919507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.844995538439, + "min_y": 5207.689586919507, + "max_x": 1834.844995538439, + "max_y": 5208.827711612007, + "center": [ + 1834.844995538439, + 5208.258649265757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.844995538439, + 5208.827711612007 + ], + [ + 1834.844995538439, + 5207.689586919507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.59957397583, + "min_y": 5207.689586919507, + "max_x": 1824.59957397583, + "max_y": 5208.827711612007, + "center": [ + 1824.59957397583, + 5208.258649265757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.59957397583, + 5208.827711612007 + ], + [ + 1824.59957397583, + 5207.689586919507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1823.0051630307435, + "min_y": 5207.9073762125145, + "max_x": 1823.7077091372225, + "max_y": 5208.609922318993, + "center": [ + 1823.356436083983, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.356436083983, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.59957397583, + "min_y": 5207.709877986291, + "max_x": 1824.59957397583, + "max_y": 5208.807420545219, + "center": [ + 1824.59957397583, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.59957397583, + 5207.709877986291 + ], + [ + 1824.59957397583, + 5208.807420545219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.926170822848, + "min_y": 5208.258649265754, + "max_x": 1827.728028117087, + "max_y": 5208.258649265754, + "center": [ + 1826.3270994699674, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.728028117087, + 5208.258649265754 + ], + [ + 1824.926170822848, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546B8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.709259686626, + "min_y": 5206.636175796365, + "max_x": 1828.709259686626, + "max_y": 5208.256832411474, + "center": [ + 1828.709259686626, + 5207.446504103919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.709259686626, + 5208.256832411474 + ], + [ + 1828.709259686626, + 5206.636175796365 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546B9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1828.3579866333864, + "min_y": 5205.041764851287, + "max_x": 1829.0605327398655, + "max_y": 5205.744310957765, + "center": [ + 1828.709259686626, + 5205.393037904526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.709259686626, + 5205.393037904526 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5206.636175796372, + "max_x": 1829.25803096609, + "max_y": 5206.636175796372, + "center": [ + 1828.7092596866235, + 5206.636175796372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.160488407157, + 5206.636175796372 + ], + [ + 1829.25803096609, + 5206.636175796372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5204.149900012677, + "max_x": 1829.25803096609, + "max_y": 5204.149900012677, + "center": [ + 1828.7092596866235, + 5204.149900012677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.160488407157, + 5204.149900012677 + ], + [ + 1829.25803096609, + 5204.149900012677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.728028117087, + "min_y": 5207.687770065223, + "max_x": 1827.728028117087, + "max_y": 5208.825894757724, + "center": [ + 1827.728028117087, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.728028117087, + 5208.825894757724 + ], + [ + 1827.728028117087, + 5207.687770065223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.054624964105, + "min_y": 5207.687770065223, + "max_x": 1828.054624964105, + "max_y": 5208.825894757724, + "center": [ + 1828.054624964105, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.054624964105, + 5208.825894757724 + ], + [ + 1828.054624964105, + 5207.687770065223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.500651481987, + "min_y": 5207.687770065223, + "max_x": 1831.500651481987, + "max_y": 5208.825894757724, + "center": [ + 1831.500651481987, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.500651481987, + 5208.825894757724 + ], + [ + 1831.500651481987, + 5207.687770065223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.174054634966, + "min_y": 5207.687770065223, + "max_x": 1831.174054634966, + "max_y": 5208.825894757724, + "center": [ + 1831.174054634966, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.174054634966, + 5208.825894757724 + ], + [ + 1831.174054634966, + 5207.687770065223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546C0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.054624964105, + "min_y": 5208.256832411474, + "max_x": 1829.523441744405, + "max_y": 5208.256832411474, + "center": [ + 1828.789033354255, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.523441744405, + 5208.256832411474 + ], + [ + 1828.054624964105, + 5208.256832411474 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.113298192135, + "min_y": 5207.689586919507, + "max_x": 1822.113298192135, + "max_y": 5208.827711612007, + "center": [ + 1822.113298192135, + 5208.258649265757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.113298192135, + 5208.827711612007 + ], + [ + 1822.113298192135, + 5207.689586919507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546C2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1816.000654109004, + "min_y": 5208.258649265754, + "max_x": 1822.113298192135, + "max_y": 5208.258649265754, + "center": [ + 1819.0569761505694, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.113298192135, + 5208.258649265754 + ], + [ + 1816.000654109004, + 5208.258649265754 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546C3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.2782533334139, + "min_y": 5250.431139720693, + "max_x": 1808.9924267513202, + "max_y": 5256.145313138599, + "center": [ + 1806.135340042367, + 5253.288226429646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135340042367, + 5253.288226429646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546C4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1855.85778469413, + "min_y": 5220.134751359085, + "max_x": 1857.8408807492365, + "max_y": 5220.9610413820465, + "center": [ + 1856.8493327216834, + 5220.547896370566 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546C5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.3651606325388, + "min_y": 5222.635945550065, + "max_x": 1860.0793340504451, + "max_y": 5228.350118967971, + "center": [ + 1857.222247341492, + 5225.493032259018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.222247341492, + 5225.493032259018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.22652682735, + "min_y": 5221.450885077643, + "max_x": 1857.22652682735, + "max_y": 5222.636979760496, + "center": [ + 1857.22652682735, + 5222.043932419069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.22652682735, + 5221.450885077643 + ], + [ + 1857.22652682735, + 5222.636979760496 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1862.509143928532, + "min_y": 5214.59535354323, + "max_x": 1868.520251589799, + "max_y": 5214.595353543236, + "center": [ + 1865.5146977591655, + 5214.595353543233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.520251589799, + 5214.59535354323 + ], + [ + 1862.509143928532, + 5214.595353543236 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.661321536606, + "min_y": 5220.024928817405, + "max_x": 1865.276481236571, + "max_y": 5220.393250539093, + "center": [ + 1864.9689013865886, + 5220.209089678249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.276481236571, + 5220.024928817405 + ], + [ + 1864.661321536606, + 5220.393250539093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.443399146919, + "min_y": 5220.754149654654, + "max_x": 1864.058558846884, + "max_y": 5221.12247137634, + "center": [ + 1863.7509789969015, + 5220.9383105154975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.058558846884, + 5220.754149654654 + ], + [ + 1863.443399146919, + 5221.12247137634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.276481236571, + "min_y": 5220.024928817405, + "max_x": 1865.276481236571, + "max_y": 5221.12247137634, + "center": [ + 1865.276481236571, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.276481236571, + 5221.12247137634 + ], + [ + 1865.276481236571, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.443399146919, + "min_y": 5220.024928817405, + "max_x": 1863.443399146919, + "max_y": 5221.12247137634, + "center": [ + 1863.443399146919, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.443399146919, + 5221.12247137634 + ], + [ + 1863.443399146919, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.661321536603, + "min_y": 5220.754149654654, + "max_x": 1865.276481236571, + "max_y": 5221.12247137634, + "center": [ + 1864.968901386587, + 5220.9383105154975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.276481236571, + 5221.12247137634 + ], + [ + 1864.661321536603, + 5220.754149654654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.443399146919, + "min_y": 5220.024928817405, + "max_x": 1864.058558846884, + "max_y": 5220.393250539093, + "center": [ + 1863.7509789969015, + 5220.209089678249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.058558846884, + 5220.393250539093 + ], + [ + 1863.443399146919, + 5220.024928817405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.014745422507, + "min_y": 5220.004637750619, + "max_x": 1863.014745422507, + "max_y": 5221.142762443126, + "center": [ + 1863.014745422507, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.014745422507, + 5221.142762443126 + ], + [ + 1863.014745422507, + 5220.004637750619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.705134960984, + "min_y": 5220.004637750619, + "max_x": 1865.705134960984, + "max_y": 5221.142762443126, + "center": [ + 1865.705134960984, + 5220.573700096873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.705134960984, + 5221.142762443126 + ], + [ + 1865.705134960984, + 5220.004637750619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.235978602418, + "min_y": 5220.024928817406, + "max_x": 1873.851138302384, + "max_y": 5220.393250539095, + "center": [ + 1873.5435584524012, + 5220.20908967825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.851138302384, + 5220.024928817406 + ], + [ + 1873.235978602418, + 5220.393250539095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.018056212734, + "min_y": 5220.754149654657, + "max_x": 1872.633215912699, + "max_y": 5221.122471376342, + "center": [ + 1872.3256360627165, + 5220.938310515499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.633215912699, + 5220.754149654657 + ], + [ + 1872.018056212734, + 5221.122471376342 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.851138302384, + "min_y": 5220.024928817406, + "max_x": 1873.851138302384, + "max_y": 5221.122471376342, + "center": [ + 1873.851138302384, + 5220.573700096875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.851138302384, + 5221.122471376342 + ], + [ + 1873.851138302384, + 5220.024928817406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.018056212734, + "min_y": 5220.024928817406, + "max_x": 1872.018056212734, + "max_y": 5221.122471376342, + "center": [ + 1872.018056212734, + 5220.573700096875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.018056212734, + 5221.122471376342 + ], + [ + 1872.018056212734, + 5220.024928817406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.235978602418, + "min_y": 5220.754149654657, + "max_x": 1873.851138302384, + "max_y": 5221.122471376342, + "center": [ + 1873.5435584524012, + 5220.938310515499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.851138302384, + 5221.122471376342 + ], + [ + 1873.235978602418, + 5220.754149654657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.018056212734, + "min_y": 5220.024928817406, + "max_x": 1872.633215912699, + "max_y": 5220.393250539095, + "center": [ + 1872.3256360627165, + 5220.20908967825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.633215912699, + 5220.393250539095 + ], + [ + 1872.018056212734, + 5220.024928817406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.589402488322, + "min_y": 5220.004637750623, + "max_x": 1871.589402488322, + "max_y": 5221.142762443129, + "center": [ + 1871.589402488322, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.589402488322, + 5221.142762443129 + ], + [ + 1871.589402488322, + 5220.004637750623 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.279792026795, + "min_y": 5220.004637750623, + "max_x": 1874.279792026795, + "max_y": 5221.142762443129, + "center": [ + 1874.279792026795, + 5220.573700096877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.279792026795, + 5221.142762443129 + ], + [ + 1874.279792026795, + 5220.004637750623 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546D8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1862.509143928532, + "min_y": 5214.595353543236, + "max_x": 1862.509143928532, + "max_y": 5220.573700096876, + "center": [ + 1862.509143928532, + 5217.5845268200555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.509143928532, + 5220.573700096876 + ], + [ + 1862.509143928532, + 5214.595353543236 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1853.782985284473, + "min_y": 5220.026745671692, + "max_x": 1853.782985284473, + "max_y": 5221.124288230626, + "center": [ + 1853.782985284473, + 5220.575516951159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1853.782985284473, + 5220.026745671692 + ], + [ + 1853.782985284473, + 5221.124288230626 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546DA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1867.936043787478, + "min_y": 5218.85285041754, + "max_x": 1869.3910327409528, + "max_y": 5219.661177613915, + "center": [ + 1868.6635382642153, + 5219.257014015728 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.884143164882, + "min_y": 5210.522906783691, + "max_x": 1840.001976790598, + "max_y": 5210.522906783691, + "center": [ + 1839.4430599777402, + 5210.522906783691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.001976790598, + 5210.522906783691 + ], + [ + 1838.884143164882, + 5210.522906783691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5292.300850462855, + "max_x": 1825.24024063888, + "max_y": 5292.300850462855, + "center": [ + 1820.6900814721225, + 5292.300850462855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5292.300850462855 + ], + [ + 1825.24024063888, + 5292.300850462855 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5546DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305368, + "min_y": 5281.615674321291, + "max_x": 1825.240240638877, + "max_y": 5281.615674321291, + "center": [ + 1820.6900814721225, + 5281.615674321291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5281.615674321291 + ], + [ + 1825.240240638877, + 5281.615674321291 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5546DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5281.615674321291, + "max_x": 1825.240240638877, + "max_y": 5292.300850462855, + "center": [ + 1820.690081472121, + 5286.958262392073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5292.300850462855 + ], + [ + 1825.240240638877, + 5281.615674321291 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5546DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305368, + "min_y": 5281.615674321286, + "max_x": 1825.24024063888, + "max_y": 5292.300850462855, + "center": [ + 1820.690081472124, + 5286.9582623920705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5281.615674321286 + ], + [ + 1825.24024063888, + 5292.300850462855 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5546E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.878708784668, + "min_y": 5267.047761100707, + "max_x": 1816.139922305365, + "max_y": 5267.047761100707, + "center": [ + 1815.5093155450165, + 5267.047761100707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.878708784668, + 5267.047761100707 + ], + [ + 1816.139922305365, + 5267.047761100707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.878708784668, + "min_y": 5264.499169203115, + "max_x": 1816.139922305365, + "max_y": 5264.499169203115, + "center": [ + 1815.5093155450165, + 5264.499169203115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.878708784668, + 5264.499169203115 + ], + [ + 1816.139922305365, + 5264.499169203115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.878708784665, + "min_y": 5264.212858534174, + "max_x": 1814.878708784668, + "max_y": 5267.334071769655, + "center": [ + 1814.8787087846665, + 5265.773465151915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.878708784665, + 5267.334071769655 + ], + [ + 1814.878708784668, + 5264.212858534174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.388813514137, + "min_y": 5264.212858534174, + "max_x": 1814.388813514137, + "max_y": 5267.334071769655, + "center": [ + 1814.388813514137, + 5265.773465151915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.388813514137, + 5267.334071769655 + ], + [ + 1814.388813514137, + 5264.212858534174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1808.992364031294, + "min_y": 5260.406978012598, + "max_x": 1816.330971255085, + "max_y": 5260.406978012598, + "center": [ + 1812.6616676431895, + 5260.406978012598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.330971255085, + 5260.406978012598 + ], + [ + 1808.992364031294, + 5260.406978012598 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546E5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1805.2221352612, + "min_y": 5261.009685523116, + "max_x": 1806.7896203859373, + "max_y": 5262.315923127064, + "center": [ + 1806.0058778235687, + 5261.662804325089 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546E6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1804.459912963356, + "min_y": 5266.711449683783, + "max_x": 1807.5948832128302, + "max_y": 5268.017687287731, + "center": [ + 1806.027398088093, + 5267.3645684857565 + ] + }, + "raw_value": "TICA", + "clean_value": "TICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546E7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.278271917106, + "min_y": 5263.21895016033, + "max_x": 1808.9924453350122, + "max_y": 5268.933123578236, + "center": [ + 1806.135358626059, + 5266.076036869283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5266.076036869283 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546E8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.450671002283, + "min_y": 5239.084299325305, + "max_x": 1839.450671002283, + "max_y": 5263.102180203437, + "center": [ + 1839.450671002283, + 5251.093239764371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450671002283, + 5239.084299325305 + ], + [ + 1839.450671002283, + 5263.102180203437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5546E9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1829.901221742945, + "min_y": 5255.453647636335, + "max_x": 1831.4687068676822, + "max_y": 5256.7598852402825, + "center": [ + 1830.6849643053135, + 5256.106766438308 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546EA", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.8951814889037, + "min_y": 5251.963760588096, + "max_x": 1833.60935490681, + "max_y": 5257.677934006002, + "center": [ + 1830.752268197857, + 5254.820847297049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.752268197857, + 5254.820847297049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546EB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.127489605623, + "min_y": 5225.919697809312, + "max_x": 1858.4787172927286, + "max_y": 5227.22593541326, + "center": [ + 1857.3031034491758, + 5226.572816611286 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.72272279739, + "min_y": 5222.868443672697, + "max_x": 1868.722722797393, + "max_y": 5225.708850856568, + "center": [ + 1868.7227227973915, + 5224.288647264632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.72272279739, + 5222.868443672697 + ], + [ + 1868.722722797393, + 5225.708850856568 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546ED", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1868.722722797391, + "min_y": 5227.268600377549, + "max_x": 1868.722722797393, + "max_y": 5231.194258871269, + "center": [ + 1868.7227227973922, + 5229.231429624409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.722722797393, + 5227.268600377549 + ], + [ + 1868.722722797391, + 5231.194258871269 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.341073866228, + "min_y": 5224.054125267709, + "max_x": 1869.104371728552, + "max_y": 5224.494815493994, + "center": [ + 1868.72272279739, + 5224.274470380851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.341073866228, + 5224.054125267709 + ], + [ + 1869.104371728552, + 5224.494815493994 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.341073866228, + "min_y": 5224.413381799433, + "max_x": 1869.104371728552, + "max_y": 5224.854072025716, + "center": [ + 1868.72272279739, + 5224.633726912574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.341073866228, + 5224.413381799433 + ], + [ + 1869.104371728552, + 5224.854072025716 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546F0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1868.287168980928, + "min_y": 5226.042652812854, + "max_x": 1869.742157934403, + "max_y": 5226.850980009229, + "center": [ + 1869.0146634576654, + 5226.446816411041 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5546F1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1871.584655162457, + "min_y": 5229.762407607473, + "max_x": 1873.9358828495626, + "max_y": 5231.0686452114205, + "center": [ + 1872.7602690060098, + 5230.415526409446 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1870.1748470627379, + "min_y": 5226.275133034441, + "max_x": 1875.8890204806441, + "max_y": 5231.989306452347, + "center": [ + 1873.031933771691, + 5229.132219743394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.031933771691, + 5229.132219743394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5289.813677092014, + "max_x": 1826.068996322522, + "max_y": 5289.813677092014, + "center": [ + 1825.6546184807012, + 5289.813677092014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.24024063888, + 5289.813677092014 + ], + [ + 1826.068996322522, + 5289.813677092014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.068996322522, + "min_y": 5289.264905812547, + "max_x": 1826.068996322522, + "max_y": 5290.362448371475, + "center": [ + 1826.068996322522, + 5289.813677092011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.068996322522, + 5289.264905812547 + ], + [ + 1826.068996322522, + 5290.362448371475 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5546F5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1855.44325894113, + "min_y": 5231.721232820096, + "max_x": 1858.5782291906041, + "max_y": 5233.027470424044, + "center": [ + 1857.0107440658671, + 5232.374351622069 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.368762034344, + "min_y": 5228.402212145546, + "max_x": 1860.0829354522502, + "max_y": 5234.116385563452, + "center": [ + 1857.225848743297, + 5231.259298854499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.225848743297, + 5231.259298854499 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5234.168481010826, + "max_x": 1857.225848743297, + "max_y": 5234.168481010826, + "center": [ + 1855.7712576651336, + 5234.168481010826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.225848743297, + 5234.168481010826 + ], + [ + 1854.31666658697, + 5234.168481010826 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5231.259298854499, + "max_x": 1854.31666658697, + "max_y": 5234.168481010826, + "center": [ + 1854.31666658697, + 5232.713889932663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.31666658697, + 5231.259298854499 + ], + [ + 1854.31666658697, + 5234.168481010826 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546F9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.225848743297, + "min_y": 5234.168481010826, + "max_x": 1860.135030899625, + "max_y": 5234.168481010826, + "center": [ + 1858.680439821461, + 5234.168481010826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.225848743297, + 5234.168481010826 + ], + [ + 1860.135030899625, + 5234.168481010826 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.135030899625, + "min_y": 5231.259298854499, + "max_x": 1860.135030899625, + "max_y": 5234.168481010826, + "center": [ + 1860.135030899625, + 5232.713889932663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.135030899625, + 5231.259298854499 + ], + [ + 1860.135030899625, + 5234.168481010826 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5228.350116698158, + "max_x": 1857.225848743297, + "max_y": 5228.350116698163, + "center": [ + 1855.7712576651336, + 5228.3501166981605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.225848743297, + 5228.350116698158 + ], + [ + 1854.31666658697, + 5228.350116698163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5228.350116698163, + "max_x": 1854.31666658697, + "max_y": 5231.259298854485, + "center": [ + 1854.31666658697, + 5229.804707776324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.31666658697, + 5231.259298854485 + ], + [ + 1854.31666658697, + 5228.350116698163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.225848743297, + "min_y": 5228.350116698158, + "max_x": 1860.135030899625, + "max_y": 5228.350116698163, + "center": [ + 1858.680439821461, + 5228.3501166981605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.225848743297, + 5228.350116698158 + ], + [ + 1860.135030899625, + 5228.350116698163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.135030899625, + "min_y": 5228.350116698163, + "max_x": 1860.135030899625, + "max_y": 5231.259298854485, + "center": [ + 1860.135030899625, + 5229.804707776324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.135030899625, + 5231.259298854485 + ], + [ + 1860.135030899625, + 5228.350116698163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5546FF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.226176469733, + "min_y": 5269.037314472992, + "max_x": 1806.135358626059, + "max_y": 5269.037314472999, + "center": [ + 1804.680767547896, + 5269.037314472996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5269.037314472999 + ], + [ + 1803.226176469733, + 5269.037314472992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554700", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.226176469733, + "min_y": 5266.128132316669, + "max_x": 1803.226176469733, + "max_y": 5269.037314472992, + "center": [ + 1803.226176469733, + 5267.58272339483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1803.226176469733, + 5266.128132316669 + ], + [ + 1803.226176469733, + 5269.037314472992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554701", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.135358626059, + "min_y": 5269.037314472992, + "max_x": 1809.044540782386, + "max_y": 5269.037314472999, + "center": [ + 1807.5899497042226, + 5269.037314472996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5269.037314472999 + ], + [ + 1809.044540782386, + 5269.037314472992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554702", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.044540782386, + "min_y": 5266.128132316669, + "max_x": 1809.044540782386, + "max_y": 5269.037314472992, + "center": [ + 1809.044540782386, + 5267.58272339483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.044540782386, + 5266.128132316669 + ], + [ + 1809.044540782386, + 5269.037314472992 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554703", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.226176469733, + "min_y": 5263.218950160337, + "max_x": 1806.135358626059, + "max_y": 5263.218950160337, + "center": [ + 1804.680767547896, + 5263.218950160337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5263.218950160337 + ], + [ + 1803.226176469733, + 5263.218950160337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554704", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.135358626059, + "min_y": 5263.218950160337, + "max_x": 1809.044540782386, + "max_y": 5263.218950160337, + "center": [ + 1807.5899497042226, + 5263.218950160337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.135358626059, + 5263.218950160337 + ], + [ + 1809.044540782386, + 5263.218950160337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554705", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.044540782386, + "min_y": 5263.218950160337, + "max_x": 1809.044540782386, + "max_y": 5266.128132316659, + "center": [ + 1809.044540782386, + 5264.673541238498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.044540782386, + 5266.128132316659 + ], + [ + 1809.044540782386, + 5263.218950160337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554706", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5239.084299325305, + "max_x": 1839.999442281751, + "max_y": 5239.084299325305, + "center": [ + 1839.4506710022845, + 5239.084299325305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.901899722818, + 5239.084299325305 + ], + [ + 1839.999442281751, + 5239.084299325305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554707", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.240240638877, + "min_y": 5274.147721385001, + "max_x": 1826.057285911761, + "max_y": 5274.147721385001, + "center": [ + 1825.648763275319, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.240240638877, + 5274.147721385001 + ], + [ + 1826.057285911761, + 5274.147721385001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554708", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.747675450238, + "min_y": 5274.147721385001, + "max_x": 1829.503136737917, + "max_y": 5274.147721385001, + "center": [ + 1829.1254060940773, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.747675450238, + 5274.147721385001 + ], + [ + 1829.503136737917, + 5274.147721385001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554709", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.226176469759, + "min_y": 5263.218950160337, + "max_x": 1803.226176469759, + "max_y": 5266.128132316659, + "center": [ + 1803.226176469759, + 5264.673541238498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1803.226176469759, + 5266.128132316659 + ], + [ + 1803.226176469759, + 5263.218950160337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55470A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.747675450238, + "min_y": 5274.147721385001, + "max_x": 1830.752268197857, + "max_y": 5274.147721385001, + "center": [ + 1829.7499718240474, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.752268197857, + 5274.147721385001 + ], + [ + 1828.747675450238, + 5274.147721385001 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55470B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.703862025857, + "min_y": 5273.598950105535, + "max_x": 1828.319021725823, + "max_y": 5273.967271827221, + "center": [ + 1828.0114418758399, + 5273.783110966378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725823, + 5273.598950105535 + ], + [ + 1827.703862025857, + 5273.967271827221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55470C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5274.328170942779, + "max_x": 1827.101099336139, + "max_y": 5274.696492664467, + "center": [ + 1826.7935194861561, + 5274.512331803623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.101099336139, + 5274.328170942779 + ], + [ + 1826.485939636173, + 5274.696492664467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55470D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.319021725823, + "min_y": 5273.598950105535, + "max_x": 1828.319021725823, + "max_y": 5274.696492664467, + "center": [ + 1828.319021725823, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725823, + 5274.696492664467 + ], + [ + 1828.319021725823, + 5273.598950105535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55470E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5273.598950105535, + "max_x": 1826.485939636173, + "max_y": 5274.696492664467, + "center": [ + 1826.485939636173, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636173, + 5274.696492664467 + ], + [ + 1826.485939636173, + 5273.598950105535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55470F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.703862025857, + "min_y": 5274.328170942779, + "max_x": 1828.319021725823, + "max_y": 5274.696492664467, + "center": [ + 1828.0114418758399, + 5274.512331803623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725823, + 5274.696492664467 + ], + [ + 1827.703862025857, + 5274.328170942779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554710", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5273.598950105535, + "max_x": 1827.101099336139, + "max_y": 5273.967271827223, + "center": [ + 1826.7935194861561, + 5273.783110966378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.101099336139, + 5273.967271827223 + ], + [ + 1826.485939636173, + 5273.598950105535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554711", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.057285911761, + "min_y": 5273.578659038753, + "max_x": 1826.057285911761, + "max_y": 5274.716783731254, + "center": [ + 1826.057285911761, + 5274.147721385003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.057285911761, + 5274.716783731254 + ], + [ + 1826.057285911761, + 5273.578659038753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554712", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.747675450238, + "min_y": 5273.578659038753, + "max_x": 1828.747675450238, + "max_y": 5274.716783731254, + "center": [ + 1828.747675450238, + 5274.147721385003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.747675450238, + 5274.716783731254 + ], + [ + 1828.747675450238, + 5273.578659038753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554713", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5276.715958263014, + "max_x": 1816.139922305365, + "max_y": 5276.715958263019, + "center": [ + 1815.3084926322945, + 5276.715958263017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5276.715958263014 + ], + [ + 1814.477062959224, + 5276.715958263019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554714", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1805.112751934116, + "min_y": 5253.921026768942, + "max_x": 1806.6802370588532, + "max_y": 5255.22726437289, + "center": [ + 1805.8964944964846, + 5254.574145570916 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554715", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.163829258627, + "min_y": 5263.103997057714, + "max_x": 1826.057285911767, + "max_y": 5263.103997057715, + "center": [ + 1825.110557585197, + 5263.103997057715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.163829258627, + 5263.103997057714 + ], + [ + 1826.057285911767, + 5263.103997057715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554716", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.747675450243, + "min_y": 5263.102180203437, + "max_x": 1839.450671002283, + "max_y": 5263.102180203437, + "center": [ + 1834.0991732262628, + 5263.102180203437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450671002283, + 5263.102180203437 + ], + [ + 1828.747675450243, + 5263.102180203437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554717", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1818.0199258023479, + "min_y": 5264.479493875327, + "max_x": 1822.8720555561483, + "max_y": 5269.3316236291275, + "center": [ + 1820.445990679248, + 5266.905558752227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5266.905558752227 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554718", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5269.331623629128, + "max_x": 1820.445990679248, + "max_y": 5270.324657100132, + "center": [ + 1820.445990679248, + 5269.828140364631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5269.331623629128 + ], + [ + 1820.445990679248, + 5270.324657100132 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554719", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5273.015046638604, + "max_x": 1820.445990679248, + "max_y": 5273.425008101397, + "center": [ + 1820.445990679248, + 5273.22002737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5273.015046638604 + ], + [ + 1820.445990679248, + 5273.425008101397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55471A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5263.760398690298, + "max_x": 1820.445990679251, + "max_y": 5264.479493875326, + "center": [ + 1820.4459906792495, + 5264.119946282812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5264.479493875326 + ], + [ + 1820.445990679251, + 5263.760398690298 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55471B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5260.551628599443, + "max_x": 1820.445990679251, + "max_y": 5261.070009151827, + "center": [ + 1820.4459906792495, + 5260.810818875635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679251, + 5261.070009151827 + ], + [ + 1820.445990679248, + 5260.551628599443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55471C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576103, + "min_y": 5273.425008101397, + "max_x": 1820.859894782392, + "max_y": 5273.425008101397, + "center": [ + 1820.4459906792476, + 5273.425008101397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.032086576103, + 5273.425008101397 + ], + [ + 1820.859894782392, + 5273.425008101397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55471D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576103, + "min_y": 5273.743547790451, + "max_x": 1820.859894782392, + "max_y": 5273.743547790451, + "center": [ + 1820.4459906792476, + 5273.743547790451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.032086576103, + 5273.743547790451 + ], + [ + 1820.859894782392, + 5273.743547790451 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55471E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576103, + "min_y": 5273.425008101397, + "max_x": 1820.445990679248, + "max_y": 5273.743547790451, + "center": [ + 1820.2390386276757, + 5273.5842779459235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5273.743547790451 + ], + [ + 1820.032086576103, + 5273.425008101397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55471F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5273.425008101397, + "max_x": 1820.859894782392, + "max_y": 5273.743547790451, + "center": [ + 1820.65294273082, + 5273.5842779459235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5273.743547790451 + ], + [ + 1820.859894782392, + 5273.425008101397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554720", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1819.9614958040831, + "min_y": 5273.007222262938, + "max_x": 1820.930485554413, + "max_y": 5273.976212013268, + "center": [ + 1820.445990679248, + 5273.491717138103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5273.491717138103 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554721", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1819.9614958040831, + "min_y": 5260.000424687566, + "max_x": 1820.930485554413, + "max_y": 5260.969414437896, + "center": [ + 1820.445990679248, + 5260.484919562731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5260.484919562731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554722", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576106, + "min_y": 5260.233088910384, + "max_x": 1820.859894782395, + "max_y": 5260.233088910384, + "center": [ + 1820.4459906792504, + 5260.233088910384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.032086576106, + 5260.233088910384 + ], + [ + 1820.859894782395, + 5260.233088910384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554723", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.445990679248, + "min_y": 5260.233088910384, + "max_x": 1820.859894782395, + "max_y": 5260.551628599443, + "center": [ + 1820.6529427308215, + 5260.392358754913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5260.233088910384 + ], + [ + 1820.859894782395, + 5260.551628599443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554724", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576106, + "min_y": 5260.551628599443, + "max_x": 1820.859894782395, + "max_y": 5260.551628599443, + "center": [ + 1820.4459906792504, + 5260.551628599443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.032086576106, + 5260.551628599443 + ], + [ + 1820.859894782395, + 5260.551628599443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554725", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.032086576106, + "min_y": 5260.233088910384, + "max_x": 1820.445990679248, + "max_y": 5260.551628599443, + "center": [ + 1820.239038627677, + 5260.392358754913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5260.233088910384 + ], + [ + 1820.032086576106, + 5260.551628599443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554726", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5276.679149499321, + "max_x": 1828.900148687521, + "max_y": 5277.659583830835, + "center": [ + 1828.900148687521, + 5277.169366665078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5276.679149499321 + ], + [ + 1828.900148687521, + 5277.659583830835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554727", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5280.14585961453, + "max_x": 1828.900148687521, + "max_y": 5281.940569760951, + "center": [ + 1828.900148687521, + 5281.043214687741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5280.14585961453 + ], + [ + 1828.900148687521, + 5281.940569760951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554728", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5282.829795776021, + "max_x": 1828.900148687521, + "max_y": 5283.336416615721, + "center": [ + 1828.900148687521, + 5283.083106195871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5282.829795776021 + ], + [ + 1828.900148687521, + 5283.336416615721 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554729", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1828.5488756342816, + "min_y": 5278.551448669444, + "max_x": 1829.2514217407606, + "max_y": 5279.253994775922, + "center": [ + 1828.900148687521, + 5278.902721722683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5278.902721722683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55472A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5280.14585961453, + "max_x": 1829.448919966987, + "max_y": 5280.14585961453, + "center": [ + 1828.9001486875195, + 5280.14585961453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5280.14585961453 + ], + [ + 1829.448919966987, + 5280.14585961453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55472B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5277.659583830835, + "max_x": 1829.448919966987, + "max_y": 5277.659583830835, + "center": [ + 1828.9001486875195, + 5277.659583830835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5277.659583830835 + ], + [ + 1829.448919966987, + 5277.659583830835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55472C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.835924255644, + "min_y": 5286.62016887497, + "max_x": 1829.4034093803812, + "max_y": 5287.926406478918, + "center": [ + 1828.6196668180125, + 5287.273287676944 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55472D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1826.043061978568, + "min_y": 5283.336416615726, + "max_x": 1831.7572353964742, + "max_y": 5289.050590033632, + "center": [ + 1828.900148687521, + 5286.193503324679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5286.193503324679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55472E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1826.5578652696993, + "min_y": 5277.904147410748, + "max_x": 1831.242432105343, + "max_y": 5282.588714246392, + "center": [ + 1828.900148687521, + 5280.24643082857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5280.24643082857 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55472F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5281.065485361766, + "max_x": 1830.281897358037, + "max_y": 5281.065485361772, + "center": [ + 1829.5910230227792, + 5281.065485361769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5281.065485361772 + ], + [ + 1830.281897358037, + 5281.065485361766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554730", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5276.679149499321, + "max_x": 1826.057285911761, + "max_y": 5276.679149499321, + "center": [ + 1825.6487632753206, + 5276.679149499321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.24024063888, + 5276.679149499321 + ], + [ + 1826.057285911761, + 5276.679149499321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554731", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5276.679149499321, + "max_x": 1828.900148687521, + "max_y": 5276.679149499321, + "center": [ + 1827.693044161847, + 5276.679149499321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636173, + 5276.679149499321 + ], + [ + 1828.900148687521, + 5276.679149499321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554732", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1859.554362768523, + "min_y": 5231.259298854499, + "max_x": 1860.082935452251, + "max_y": 5231.259298854499, + "center": [ + 1859.818649110387, + 5231.259298854499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.554362768523, + 5231.259298854499 + ], + [ + 1860.082935452251, + 5231.259298854499 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554733", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.048409234812, + "min_y": 5276.167186983553, + "max_x": 1814.048409234812, + "max_y": 5277.264729542486, + "center": [ + 1814.048409234812, + 5276.715958263019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.048409234812, + 5277.264729542486 + ], + [ + 1814.048409234812, + 5276.167186983553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554734", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5276.14689591677, + "max_x": 1814.477062959224, + "max_y": 5277.285020609269, + "center": [ + 1814.477062959224, + 5276.715958263019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.477062959224, + 5277.285020609269 + ], + [ + 1814.477062959224, + 5276.14689591677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554735", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1827.0512076277605, + "min_y": 5273.796448331762, + "max_x": 1827.7537537342396, + "max_y": 5274.4989944382405, + "center": [ + 1827.402480681, + 5274.147721385001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.402480681, + 5274.147721385001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554736", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5270.753310824543, + "max_x": 1820.26554112147, + "max_y": 5271.368470524511, + "center": [ + 1820.0813802606272, + 5271.060890674527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.897219399784, + 5270.753310824543 + ], + [ + 1820.26554112147, + 5271.368470524511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554737", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.626440237026, + "min_y": 5271.97123321423, + "max_x": 1820.994761958714, + "max_y": 5272.586392914195, + "center": [ + 1820.81060109787, + 5272.278813064213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.626440237026, + 5271.97123321423 + ], + [ + 1820.994761958714, + 5272.586392914195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554738", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5270.753310824543, + "max_x": 1820.994761958714, + "max_y": 5270.753310824543, + "center": [ + 1820.445990679249, + 5270.753310824543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5270.753310824543 + ], + [ + 1819.897219399784, + 5270.753310824543 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554739", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5272.586392914195, + "max_x": 1820.994761958714, + "max_y": 5272.586392914195, + "center": [ + 1820.445990679249, + 5272.586392914195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5272.586392914195 + ], + [ + 1819.897219399784, + 5272.586392914195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.626440237029, + "min_y": 5270.753310824543, + "max_x": 1820.994761958714, + "max_y": 5271.368470524511, + "center": [ + 1820.8106010978715, + 5271.060890674527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5270.753310824543 + ], + [ + 1820.626440237029, + 5271.368470524511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5271.971233214227, + "max_x": 1820.265541121467, + "max_y": 5272.586392914195, + "center": [ + 1820.0813802606256, + 5272.278813064211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.265541121467, + 5271.971233214227 + ], + [ + 1819.897219399784, + 5272.586392914195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5273.015046638604, + "max_x": 1821.015053025499, + "max_y": 5273.015046638604, + "center": [ + 1820.4459906792486, + 5273.015046638604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.015053025499, + 5273.015046638604 + ], + [ + 1819.876928332998, + 5273.015046638604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5270.324657100132, + "max_x": 1821.015053025499, + "max_y": 5270.324657100132, + "center": [ + 1820.4459906792486, + 5270.324657100132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.015053025499, + 5270.324657100132 + ], + [ + 1819.876928332998, + 5270.324657100132 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1820.0947176260086, + "min_y": 5271.318578816129, + "max_x": 1820.7972637324876, + "max_y": 5272.021124922608, + "center": [ + 1820.445990679248, + 5271.669851869368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5271.669851869368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55473F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5261.498662876237, + "max_x": 1820.26554112147, + "max_y": 5262.1138225762, + "center": [ + 1820.0813802606272, + 5261.806242726218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.897219399784, + 5261.498662876237 + ], + [ + 1820.26554112147, + 5262.1138225762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554740", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.626440237026, + "min_y": 5262.716585265921, + "max_x": 1820.994761958714, + "max_y": 5263.331744965888, + "center": [ + 1820.81060109787, + 5263.024165115905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.626440237026, + 5262.716585265921 + ], + [ + 1820.994761958714, + 5263.331744965888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554741", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5261.498662876237, + "max_x": 1820.994761958714, + "max_y": 5261.498662876237, + "center": [ + 1820.445990679249, + 5261.498662876237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5261.498662876237 + ], + [ + 1819.897219399784, + 5261.498662876237 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554742", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5263.331744965888, + "max_x": 1820.994761958714, + "max_y": 5263.331744965888, + "center": [ + 1820.445990679249, + 5263.331744965888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5263.331744965888 + ], + [ + 1819.897219399784, + 5263.331744965888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554743", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.626440237029, + "min_y": 5261.498662876237, + "max_x": 1820.994761958714, + "max_y": 5262.1138225762, + "center": [ + 1820.8106010978715, + 5261.806242726218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.994761958714, + 5261.498662876237 + ], + [ + 1820.626440237029, + 5262.1138225762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554744", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.897219399784, + "min_y": 5262.716585265918, + "max_x": 1820.265541121467, + "max_y": 5263.331744965888, + "center": [ + 1820.0813802606256, + 5263.024165115903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.265541121467, + 5262.716585265918 + ], + [ + 1819.897219399784, + 5263.331744965888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554745", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5263.760398690298, + "max_x": 1821.015053025499, + "max_y": 5263.760398690298, + "center": [ + 1820.4459906792486, + 5263.760398690298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.015053025499, + 5263.760398690298 + ], + [ + 1819.876928332998, + 5263.760398690298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554746", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.876928332998, + "min_y": 5261.070009151822, + "max_x": 1821.015053025499, + "max_y": 5261.070009151822, + "center": [ + 1820.4459906792486, + 5261.070009151822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1821.015053025499, + 5261.070009151822 + ], + [ + 1819.876928332998, + 5261.070009151822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554747", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1820.0947176260086, + "min_y": 5262.063930867823, + "max_x": 1820.7972637324876, + "max_y": 5262.766476974301, + "center": [ + 1820.445990679248, + 5262.415203921062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.445990679248, + 5262.415203921062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554748", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1847.273847922835, + "min_y": 5220.575516951146, + "max_x": 1852.136611191157, + "max_y": 5220.575516951146, + "center": [ + 1849.705229556996, + 5220.575516951146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.136611191157, + 5220.575516951146 + ], + [ + 1847.273847922835, + 5220.575516951146 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554749", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5282.829795776021, + "max_x": 1829.855152220969, + "max_y": 5282.829795776021, + "center": [ + 1828.9001486875204, + 5282.829795776021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.945145154072, + 5282.829795776021 + ], + [ + 1829.855152220969, + 5282.829795776021 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55474A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.855152220969, + "min_y": 5281.940569760951, + "max_x": 1829.855152220969, + "max_y": 5282.829795776021, + "center": [ + 1829.855152220969, + 5282.385182768486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.855152220969, + 5282.829795776021 + ], + [ + 1829.855152220969, + 5281.940569760951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55474B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5281.940569760951, + "max_x": 1829.855152220969, + "max_y": 5281.940569760951, + "center": [ + 1828.9001486875204, + 5281.940569760951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.855152220969, + 5281.940569760951 + ], + [ + 1827.945145154072, + 5281.940569760951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55474C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5281.940569760951, + "max_x": 1827.945145154072, + "max_y": 5282.829795776021, + "center": [ + 1827.945145154072, + 5282.385182768486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.945145154072, + 5281.940569760951 + ], + [ + 1827.945145154072, + 5282.829795776021 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55474D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5277.98618067786, + "max_x": 1828.71969912974, + "max_y": 5278.601340377822, + "center": [ + 1828.535538268896, + 5278.293760527841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.71969912974, + 5278.601340377822 + ], + [ + 1828.351377408052, + 5277.98618067786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55474E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5277.98618067786, + "max_x": 1829.448919966987, + "max_y": 5277.98618067786, + "center": [ + 1828.9001486875195, + 5277.98618067786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5277.98618067786 + ], + [ + 1829.448919966987, + 5277.98618067786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55474F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.080598245302, + "min_y": 5277.98618067786, + "max_x": 1829.448919966987, + "max_y": 5278.601340377822, + "center": [ + 1829.2647591061445, + 5278.293760527841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.448919966987, + 5277.98618067786 + ], + [ + 1829.080598245302, + 5278.601340377822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554750", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5279.204103067543, + "max_x": 1828.71969912974, + "max_y": 5279.819262767507, + "center": [ + 1828.535538268896, + 5279.511682917525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.71969912974, + 5279.204103067543 + ], + [ + 1828.351377408052, + 5279.819262767507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554751", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5279.819262767507, + "max_x": 1829.448919966987, + "max_y": 5279.819262767507, + "center": [ + 1828.9001486875195, + 5279.819262767507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5279.819262767507 + ], + [ + 1829.448919966987, + 5279.819262767507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554752", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.080598245299, + "min_y": 5279.204103067543, + "max_x": 1829.448919966987, + "max_y": 5279.819262767507, + "center": [ + 1829.264759106143, + 5279.511682917525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.448919966987, + 5279.819262767507 + ], + [ + 1829.080598245299, + 5279.204103067543 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554753", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5238.140725924033, + "max_x": 1839.270221444504, + "max_y": 5238.755885623998, + "center": [ + 1839.086060583661, + 5238.448305774016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.270221444504, + 5238.140725924033 + ], + [ + 1838.901899722818, + 5238.755885623998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554754", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5238.755885623998, + "max_x": 1839.999442281748, + "max_y": 5238.755885623998, + "center": [ + 1839.450671002283, + 5238.755885623998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.901899722818, + 5238.755885623998 + ], + [ + 1839.999442281748, + 5238.755885623998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554755", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.63112056006, + "min_y": 5238.140725924033, + "max_x": 1839.999442281748, + "max_y": 5238.755885623998, + "center": [ + 1839.815281420904, + 5238.448305774016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.999442281748, + 5238.755885623998 + ], + [ + 1839.63112056006, + 5238.140725924033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554756", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.06641163295, + "min_y": 5227.268600377549, + "max_x": 1870.379033961832, + "max_y": 5227.268600377549, + "center": [ + 1868.7227227973908, + 5227.268600377549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.06641163295, + 5227.268600377549 + ], + [ + 1870.379033961832, + 5227.268600377549 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554757", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.379033961832, + "min_y": 5225.708850856568, + "max_x": 1870.379033961832, + "max_y": 5227.268600377549, + "center": [ + 1870.379033961832, + 5226.488725617059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.379033961832, + 5227.268600377549 + ], + [ + 1870.379033961832, + 5225.708850856568 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554758", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.06641163295, + "min_y": 5225.708850856568, + "max_x": 1870.379033961832, + "max_y": 5225.708850856568, + "center": [ + 1868.7227227973908, + 5225.708850856568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.379033961832, + 5225.708850856568 + ], + [ + 1867.06641163295, + 5225.708850856568 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554759", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.06641163295, + "min_y": 5225.708850856568, + "max_x": 1867.06641163295, + "max_y": 5227.268600377549, + "center": [ + 1867.06641163295, + 5226.488725617059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.06641163295, + 5225.708850856568 + ], + [ + 1867.06641163295, + 5227.268600377549 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55475A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.9681620271, + "min_y": 5219.700148824673, + "max_x": 1858.9681620271, + "max_y": 5221.450885077643, + "center": [ + 1858.9681620271, + 5220.575516951158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.9681620271, + 5221.450885077643 + ], + [ + 1858.9681620271, + 5219.700148824673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55475B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.484891627593, + "min_y": 5219.700148824673, + "max_x": 1858.9681620271, + "max_y": 5219.700148824673, + "center": [ + 1857.2265268273466, + 5219.700148824673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.9681620271, + 5219.700148824673 + ], + [ + 1855.484891627593, + 5219.700148824673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55475C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.484891627593, + "min_y": 5219.700148824673, + "max_x": 1855.484891627593, + "max_y": 5221.450885077643, + "center": [ + 1855.484891627593, + 5220.575516951158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.484891627593, + 5219.700148824673 + ], + [ + 1855.484891627593, + 5221.450885077643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55475D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.484891627593, + "min_y": 5221.450885077643, + "max_x": 1858.9681620271, + "max_y": 5221.450885077643, + "center": [ + 1857.2265268273466, + 5221.450885077643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.484891627593, + 5221.450885077643 + ], + [ + 1858.9681620271, + 5221.450885077643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55475E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.439895039156, + "min_y": 5207.703720758279, + "max_x": 1822.439895039156, + "max_y": 5208.813577773231, + "center": [ + 1822.439895039156, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.439895039156, + 5208.813577773231 + ], + [ + 1822.439895039156, + 5207.703720758279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55475F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.439895039156, + "min_y": 5208.439098823535, + "max_x": 1823.055054739122, + "max_y": 5208.807420545219, + "center": [ + 1822.747474889139, + 5208.6232596843765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.055054739122, + 5208.439098823535 + ], + [ + 1822.439895039156, + 5208.807420545219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554760", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.439895039156, + "min_y": 5207.709877986291, + "max_x": 1822.439895039156, + "max_y": 5208.807420545219, + "center": [ + 1822.439895039156, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.439895039156, + 5208.807420545219 + ], + [ + 1822.439895039156, + 5207.709877986291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554761", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.439895039156, + "min_y": 5207.709877986291, + "max_x": 1823.055054739122, + "max_y": 5208.078199707978, + "center": [ + 1822.747474889139, + 5207.894038847135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.439895039156, + 5207.709877986291 + ], + [ + 1823.055054739122, + 5208.078199707978 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554762", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5204.4764968597, + "max_x": 1828.528810128842, + "max_y": 5205.091656559662, + "center": [ + 1828.3446492679996, + 5204.78407670968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528810128842, + 5205.091656559662 + ], + [ + 1828.160488407157, + 5204.4764968597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554763", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5204.4764968597, + "max_x": 1829.25803096609, + "max_y": 5204.4764968597, + "center": [ + 1828.7092596866235, + 5204.4764968597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.160488407157, + 5204.4764968597 + ], + [ + 1829.25803096609, + 5204.4764968597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554764", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.889709244404, + "min_y": 5204.4764968597, + "max_x": 1829.25803096609, + "max_y": 5205.091656559662, + "center": [ + 1829.073870105247, + 5204.78407670968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.25803096609, + 5204.4764968597 + ], + [ + 1828.889709244404, + 5205.091656559662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554765", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5205.694419249383, + "max_x": 1828.528810128845, + "max_y": 5206.309578949347, + "center": [ + 1828.344649268001, + 5206.001999099365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528810128845, + 5205.694419249383 + ], + [ + 1828.160488407157, + 5206.309578949347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554766", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.160488407157, + "min_y": 5206.309578949347, + "max_x": 1829.25803096609, + "max_y": 5206.309578949347, + "center": [ + 1828.7092596866235, + 5206.309578949347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.160488407157, + 5206.309578949347 + ], + [ + 1829.25803096609, + 5206.309578949347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554767", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.889709244404, + "min_y": 5205.694419249383, + "max_x": 1829.25803096609, + "max_y": 5206.309578949347, + "center": [ + 1829.073870105247, + 5206.001999099365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.25803096609, + 5206.309578949347 + ], + [ + 1828.889709244404, + 5205.694419249383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554768", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.926170822848, + "min_y": 5208.258649265754, + "max_x": 1827.728028117087, + "max_y": 5208.258649265754, + "center": [ + 1826.3270994699674, + 5208.258649265754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.728028117087, + 5208.258649265754 + ], + [ + 1824.926170822848, + 5208.258649265754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.272977128806, + "min_y": 5207.703720758279, + "max_x": 1824.272977128806, + "max_y": 5208.813577773231, + "center": [ + 1824.272977128806, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.272977128806, + 5208.813577773231 + ], + [ + 1824.272977128806, + 5207.703720758279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.59957397583, + "min_y": 5207.703720758279, + "max_x": 1824.59957397583, + "max_y": 5208.813577773231, + "center": [ + 1824.59957397583, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.59957397583, + 5208.813577773231 + ], + [ + 1824.59957397583, + 5207.703720758279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.063242594657, + "min_y": 5207.148792250803, + "max_x": 1827.173099609611, + "max_y": 5208.258649265754, + "center": [ + 1826.618171102134, + 5207.703720758278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.063242594657, + 5208.258649265754 + ], + [ + 1827.173099609611, + 5207.148792250803 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.895635355869, + "min_y": 5206.871327997061, + "max_x": 1827.45056386335, + "max_y": 5207.426256504546, + "center": [ + 1827.1730996096094, + 5207.148792250803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.45056386335, + 5207.426256504546 + ], + [ + 1826.895635355869, + 5206.871327997061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.657817428838, + "min_y": 5208.439098823535, + "max_x": 1824.272977128806, + "max_y": 5208.807420545219, + "center": [ + 1823.965397278822, + 5208.6232596843765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.657817428838, + 5208.439098823535 + ], + [ + 1824.272977128806, + 5208.807420545219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.272977128806, + "min_y": 5207.709877986291, + "max_x": 1824.272977128806, + "max_y": 5208.807420545219, + "center": [ + 1824.272977128806, + 5208.258649265756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.272977128806, + 5208.807420545219 + ], + [ + 1824.272977128806, + 5207.709877986291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55476F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.657817428838, + "min_y": 5207.709877986291, + "max_x": 1824.272977128806, + "max_y": 5208.078199707978, + "center": [ + 1823.965397278822, + 5207.894038847135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.272977128806, + 5207.709877986291 + ], + [ + 1823.657817428838, + 5208.078199707978 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554770", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1834.0872985104102, + "min_y": 5208.0412784924365, + "max_x": 1834.518406348484, + "max_y": 5208.472386330511, + "center": [ + 1834.302852429447, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.302852429447, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554771", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1833.6561906723407, + "min_y": 5208.041278492439, + "max_x": 1834.0872985104095, + "max_y": 5208.472386330508, + "center": [ + 1833.871744591375, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.871744591375, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554772", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1833.2250828342717, + "min_y": 5208.041278492439, + "max_x": 1833.6561906723405, + "max_y": 5208.472386330508, + "center": [ + 1833.440636753306, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.440636753306, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554773", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1833.2250828342692, + "min_y": 5208.0412784924365, + "max_x": 1833.656190672343, + "max_y": 5208.472386330511, + "center": [ + 1833.440636753306, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.440636753306, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554774", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1832.7939749961995, + "min_y": 5208.041278492439, + "max_x": 1833.2250828342683, + "max_y": 5208.472386330508, + "center": [ + 1833.009528915234, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.009528915234, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554775", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1832.3628671581278, + "min_y": 5208.0412784924365, + "max_x": 1832.7939749962025, + "max_y": 5208.472386330511, + "center": [ + 1832.578421077165, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.578421077165, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554776", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1831.9317593200556, + "min_y": 5208.041278492439, + "max_x": 1832.3628671581243, + "max_y": 5208.472386330508, + "center": [ + 1832.14731323909, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.14731323909, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554777", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1831.5006514819886, + "min_y": 5208.041278492439, + "max_x": 1831.9317593200574, + "max_y": 5208.472386330508, + "center": [ + 1831.716205401023, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.716205401023, + 5208.256832411474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554778", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5236.922803534347, + "max_x": 1839.270221444504, + "max_y": 5237.537963234315, + "center": [ + 1839.086060583661, + 5237.230383384331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.270221444504, + 5237.537963234315 + ], + [ + 1838.901899722818, + 5236.922803534347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554779", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.901899722818, + "min_y": 5236.922803534347, + "max_x": 1839.999442281748, + "max_y": 5236.922803534347, + "center": [ + 1839.450671002283, + 5236.922803534347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.901899722818, + 5236.922803534347 + ], + [ + 1839.999442281748, + 5236.922803534347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.631120560062, + "min_y": 5236.922803534347, + "max_x": 1839.999442281748, + "max_y": 5237.537963234315, + "center": [ + 1839.8152814209052, + 5237.230383384331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.999442281748, + 5236.922803534347 + ], + [ + 1839.631120560062, + 5237.537963234315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.679930526467, + "min_y": 5214.040425035754, + "max_x": 1870.679930526467, + "max_y": 5215.150282050706, + "center": [ + 1870.679930526467, + 5214.59535354323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.679930526467, + 5215.150282050706 + ], + [ + 1870.679930526467, + 5214.040425035754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.006527373488, + "min_y": 5214.040425035754, + "max_x": 1871.006527373488, + "max_y": 5215.150282050706, + "center": [ + 1871.006527373488, + 5214.59535354323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.006527373488, + 5215.150282050706 + ], + [ + 1871.006527373488, + 5214.040425035754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.520251589799, + "min_y": 5214.042241890036, + "max_x": 1868.520251589799, + "max_y": 5215.152098904986, + "center": [ + 1868.520251589799, + 5214.597170397511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.520251589799, + 5215.152098904986 + ], + [ + 1868.520251589799, + 5214.042241890036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.520251589799, + "min_y": 5214.042241890036, + "max_x": 1868.520251589799, + "max_y": 5215.152098904986, + "center": [ + 1868.520251589799, + 5214.597170397511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.520251589799, + 5215.152098904986 + ], + [ + 1868.520251589799, + 5214.042241890036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55477F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.846848436817, + "min_y": 5214.77580310101, + "max_x": 1869.462008136783, + "max_y": 5215.1441248227, + "center": [ + 1869.1544282867999, + 5214.9599639618555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.462008136783, + 5214.77580310101 + ], + [ + 1868.846848436817, + 5215.1441248227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554780", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.846848436817, + "min_y": 5214.046582263761, + "max_x": 1868.846848436817, + "max_y": 5215.1441248227, + "center": [ + 1868.846848436817, + 5214.595353543231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.846848436817, + 5215.1441248227 + ], + [ + 1868.846848436817, + 5214.046582263761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554781", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.846848436817, + "min_y": 5214.046582263761, + "max_x": 1869.462008136783, + "max_y": 5214.414903985449, + "center": [ + 1869.1544282867999, + 5214.2307431246045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.846848436817, + 5214.046582263761 + ], + [ + 1869.462008136783, + 5214.414903985449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554782", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.064770826501, + "min_y": 5214.77580310101, + "max_x": 1870.679930526467, + "max_y": 5215.1441248227, + "center": [ + 1870.372350676484, + 5214.9599639618555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.064770826501, + 5214.77580310101 + ], + [ + 1870.679930526467, + 5215.1441248227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554783", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.679930526467, + "min_y": 5214.046582263761, + "max_x": 1870.679930526467, + "max_y": 5215.1441248227, + "center": [ + 1870.679930526467, + 5214.595353543231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.679930526467, + 5215.1441248227 + ], + [ + 1870.679930526467, + 5214.046582263761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554784", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.064770826501, + "min_y": 5214.046582263761, + "max_x": 1870.679930526467, + "max_y": 5214.414903985449, + "center": [ + 1870.372350676484, + 5214.2307431246045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.679930526467, + 5214.046582263761 + ], + [ + 1870.064770826501, + 5214.414903985449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554785", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.581969852917, + "min_y": 5220.020588443679, + "max_x": 1860.581969852917, + "max_y": 5221.130445458636, + "center": [ + 1860.581969852917, + 5220.575516951158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.581969852917, + 5221.130445458636 + ], + [ + 1860.581969852917, + 5220.020588443679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554786", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.581969852917, + "min_y": 5220.020588443679, + "max_x": 1860.581969852917, + "max_y": 5221.130445458636, + "center": [ + 1860.581969852917, + 5220.575516951158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.581969852917, + 5221.130445458636 + ], + [ + 1860.581969852917, + 5220.020588443679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554787", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1814.390584732317, + "min_y": 5295.811213877391, + "max_x": 1823.983797489945, + "max_y": 5295.811213877391, + "center": [ + 1819.187191111131, + 5295.811213877391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.390584732317, + 5295.811213877391 + ], + [ + 1823.983797489945, + 5295.811213877391 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554788", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.983797489943, + "min_y": 5295.115117686858, + "max_x": 1824.428489204779, + "max_y": 5295.811213877397, + "center": [ + 1824.206143347361, + 5295.463165782127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.983797489943, + 5295.811213877397 + ], + [ + 1824.428489204779, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554789", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.983797489938, + "min_y": 5295.115117686858, + "max_x": 1823.983797489943, + "max_y": 5295.811213877397, + "center": [ + 1823.9837974899406, + 5295.463165782127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.983797489943, + 5295.811213877397 + ], + [ + 1823.983797489938, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.539105775104, + "min_y": 5295.115117686858, + "max_x": 1823.983797489943, + "max_y": 5295.811213877397, + "center": [ + 1823.7614516325234, + 5295.463165782127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.983797489943, + 5295.811213877397 + ], + [ + 1823.539105775104, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.846247416148, + "min_y": 5295.115117686858, + "max_x": 1821.290939130987, + "max_y": 5295.811213877391, + "center": [ + 1821.0685932735673, + 5295.463165782125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.846247416148, + 5295.811213877391 + ], + [ + 1821.290939130987, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.846247416143, + "min_y": 5295.115117686858, + "max_x": 1820.846247416148, + "max_y": 5295.811213877391, + "center": [ + 1820.8462474161454, + 5295.463165782125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.846247416148, + 5295.811213877391 + ], + [ + 1820.846247416143, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.401555701312, + "min_y": 5295.115117686858, + "max_x": 1820.846247416148, + "max_y": 5295.811213877391, + "center": [ + 1820.6239015587298, + 5295.463165782125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.846247416148, + 5295.811213877391 + ], + [ + 1820.401555701312, + 5295.115117686858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.415022453012, + "min_y": 5295.115117686822, + "max_x": 1822.85971416785, + "max_y": 5295.811213877359, + "center": [ + 1822.637368310431, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.415022453012, + 5295.811213877359 + ], + [ + 1822.85971416785, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55478F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.415022453006, + "min_y": 5295.115117686822, + "max_x": 1822.415022453012, + "max_y": 5295.811213877359, + "center": [ + 1822.415022453009, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.415022453012, + 5295.811213877359 + ], + [ + 1822.415022453006, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554790", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1821.970330738173, + "min_y": 5295.115117686822, + "max_x": 1822.415022453012, + "max_y": 5295.811213877359, + "center": [ + 1822.1926765955925, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.415022453012, + 5295.811213877359 + ], + [ + 1821.970330738173, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554791", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.70869734237, + "min_y": 5295.11511768689, + "max_x": 1818.153389057209, + "max_y": 5295.811213877424, + "center": [ + 1817.9310431997897, + 5295.463165782157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.70869734237, + 5295.811213877424 + ], + [ + 1818.153389057209, + 5295.11511768689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554792", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.708697342367, + "min_y": 5295.11511768689, + "max_x": 1817.70869734237, + "max_y": 5295.811213877424, + "center": [ + 1817.7086973423684, + 5295.463165782157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.70869734237, + 5295.811213877424 + ], + [ + 1817.708697342367, + 5295.11511768689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554793", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.264005627534, + "min_y": 5295.11511768689, + "max_x": 1817.70869734237, + "max_y": 5295.811213877424, + "center": [ + 1817.4863514849521, + 5295.463165782157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.70869734237, + 5295.811213877424 + ], + [ + 1817.264005627534, + 5295.11511768689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554794", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.277472379233, + "min_y": 5295.115117686822, + "max_x": 1819.722164094072, + "max_y": 5295.811213877359, + "center": [ + 1819.4998182366526, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.277472379233, + 5295.811213877359 + ], + [ + 1819.722164094072, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554795", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1819.277472379228, + "min_y": 5295.115117686822, + "max_x": 1819.277472379233, + "max_y": 5295.811213877359, + "center": [ + 1819.2774723792304, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.277472379233, + 5295.811213877359 + ], + [ + 1819.277472379228, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554796", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1818.832780664397, + "min_y": 5295.115117686822, + "max_x": 1819.277472379233, + "max_y": 5295.811213877359, + "center": [ + 1819.055126521815, + 5295.46316578209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1819.277472379233, + 5295.811213877359 + ], + [ + 1818.832780664397, + 5295.115117686822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554797", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1870.858517678422, + "min_y": 5227.283902752736, + "max_x": 1874.7772304902649, + "max_y": 5228.590140356684, + "center": [ + 1872.8178740843434, + 5227.93702155471 + ] + }, + "raw_value": "10116", + "clean_value": "10116", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554798", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1855.048831248223, + "min_y": 5223.578739061446, + "max_x": 1858.9675440600658, + "max_y": 5224.884976665394, + "center": [ + 1857.0081876541444, + 5224.23185786342 + ] + }, + "raw_value": "10116", + "clean_value": "10116", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554799", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1828.578852104589, + "min_y": 5252.978217911215, + "max_x": 1832.4975649164319, + "max_y": 5254.284455515163, + "center": [ + 1830.5382085105105, + 5253.63133671319 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55479A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.85293862606, + "min_y": 5264.242189631302, + "max_x": 1807.88493862606, + "max_y": 5265.362189631302, + "center": [ + 1805.8689386260598, + 5264.802189631302 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55479B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.622297088039, + "min_y": 5289.264905812547, + "max_x": 1828.237456788005, + "max_y": 5289.633227534231, + "center": [ + 1827.929876938022, + 5289.449066673389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.237456788005, + 5289.264905812547 + ], + [ + 1827.622297088039, + 5289.633227534231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55479C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.404374698356, + "min_y": 5289.994126649792, + "max_x": 1827.019534398321, + "max_y": 5290.36244837148, + "center": [ + 1826.7119545483383, + 5290.178287510636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.019534398321, + 5289.994126649792 + ], + [ + 1826.404374698356, + 5290.36244837148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55479D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.237456788005, + "min_y": 5289.264905812547, + "max_x": 1828.237456788005, + "max_y": 5290.36244837148, + "center": [ + 1828.237456788005, + 5289.813677092014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.237456788005, + 5290.36244837148 + ], + [ + 1828.237456788005, + 5289.264905812547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55479E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.404374698356, + "min_y": 5289.264905812547, + "max_x": 1826.404374698356, + "max_y": 5290.36244837148, + "center": [ + 1826.404374698356, + 5289.813677092014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.404374698356, + 5290.36244837148 + ], + [ + 1826.404374698356, + 5289.264905812547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55479F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.622297088039, + "min_y": 5289.994126649792, + "max_x": 1828.237456788005, + "max_y": 5290.36244837148, + "center": [ + 1827.929876938022, + 5290.178287510636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.237456788005, + 5290.36244837148 + ], + [ + 1827.622297088039, + 5289.994126649792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.404374698356, + "min_y": 5289.264905812547, + "max_x": 1827.019534398321, + "max_y": 5289.633227534237, + "center": [ + 1826.7119545483383, + 5289.449066673393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.019534398321, + 5289.633227534237 + ], + [ + 1826.404374698356, + 5289.264905812547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.666110512419, + "min_y": 5289.244614745764, + "max_x": 1828.666110512419, + "max_y": 5290.382739438265, + "center": [ + 1828.666110512419, + 5289.813677092015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.666110512419, + 5290.382739438265 + ], + [ + 1828.666110512419, + 5289.244614745764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547A2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1826.9696426899416, + "min_y": 5289.462404038774, + "max_x": 1827.6721887964206, + "max_y": 5290.164950145253, + "center": [ + 1827.320915743181, + 5289.813677092014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.320915743181, + 5289.813677092014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.163829258627, + "min_y": 5261.28077648974, + "max_x": 1824.163829258627, + "max_y": 5263.103997057714, + "center": [ + 1824.163829258627, + 5262.192386773727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.163829258627, + 5263.103997057714 + ], + [ + 1824.163829258627, + 5261.28077648974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5547A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.752268197857, + "min_y": 5257.677934006002, + "max_x": 1830.752268197857, + "max_y": 5261.965461451028, + "center": [ + 1830.752268197857, + 5259.821697728516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.752268197857, + 5257.677934006002 + ], + [ + 1830.752268197857, + 5261.965461451028 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5547A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.752268197857, + "min_y": 5264.62186459932, + "max_x": 1830.752268197857, + "max_y": 5274.147721385001, + "center": [ + 1830.752268197857, + 5269.384792992161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.752268197857, + 5264.62186459932 + ], + [ + 1830.752268197857, + 5274.147721385001 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5547A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.013755121116, + "min_y": 5251.124404845331, + "max_x": 1818.327884903895, + "max_y": 5251.124404845334, + "center": [ + 1808.6708200125054, + 5251.124404845332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.013755121116, + 5251.124404845331 + ], + [ + 1818.327884903895, + 5251.124404845334 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5547A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.052278040682, + "min_y": 5251.124404845334, + "max_x": 1830.752268197857, + "max_y": 5251.124404845335, + "center": [ + 1826.9022731192695, + 5251.1244048453345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.052278040682, + 5251.124404845334 + ], + [ + 1830.752268197857, + 5251.124404845335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5547A8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.85293862606, + "min_y": 5258.528016213394, + "max_x": 1807.88493862606, + "max_y": 5259.648016213394, + "center": [ + 1805.8689386260598, + 5259.088016213394 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547A9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.852920042366, + "min_y": 5251.454379191665, + "max_x": 1807.8849200423658, + "max_y": 5252.574379191665, + "center": [ + 1805.868920042366, + 5252.014379191665 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547AA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1826.21488338915, + "min_y": 5284.266999017161, + "max_x": 1830.9173387633614, + "max_y": 5285.573236621109, + "center": [ + 1828.5661110762558, + 5284.920117819134 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547AB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1855.052432650029, + "min_y": 5229.345005656923, + "max_x": 1858.9711454618719, + "max_y": 5230.651243260871, + "center": [ + 1857.0117890559504, + 5229.998124458896 + ] + }, + "raw_value": "10116", + "clean_value": "10116", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5261.235186100197, + "max_x": 1816.139922305365, + "max_y": 5310.98756874837, + "center": [ + 1816.139922305365, + 5286.111377424284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5310.98756874837 + ], + [ + 1816.139922305365, + 5261.235186100197 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5261.235186100197, + "max_x": 1825.24024063888, + "max_y": 5310.98756874837, + "center": [ + 1825.24024063888, + 5286.111377424284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.24024063888, + 5310.98756874837 + ], + [ + 1825.24024063888, + 5261.235186100197 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5308.185567572276, + "max_x": 1816.139922305365, + "max_y": 5308.185567572276, + "center": [ + 1815.3084926322945, + 5308.185567572276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5308.185567572276 + ], + [ + 1814.477062959224, + 5308.185567572276 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.260458853376, + "min_y": 5308.185567572276, + "max_x": 1814.150466112206, + "max_y": 5308.185567572276, + "center": [ + 1813.205462482791, + 5308.185567572276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.150466112206, + 5308.185567572276 + ], + [ + 1812.260458853376, + 5308.185567572276 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5547B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.150466112206, + "min_y": 5307.636796292811, + "max_x": 1814.150466112206, + "max_y": 5308.734338851744, + "center": [ + 1814.150466112206, + 5308.185567572277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.150466112206, + 5307.636796292811 + ], + [ + 1814.150466112206, + 5308.734338851744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5307.636796292811, + "max_x": 1814.477062959224, + "max_y": 5308.734338851744, + "center": [ + 1814.477062959224, + 5308.185567572277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.477062959224, + 5307.636796292811 + ], + [ + 1814.477062959224, + 5308.734338851744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547B2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.490148779563, + "min_y": 5308.833389644011, + "max_x": 1810.0576339043002, + "max_y": 5310.139627247959, + "center": [ + 1809.2738913419316, + 5309.486508445985 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5462854354698, + "min_y": 5305.328480863323, + "max_x": 1812.2604588533761, + "max_y": 5311.042654281229, + "center": [ + 1809.403372144423, + 5308.185567572276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5308.185567572276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.380784036169, + "min_y": 5302.761446331015, + "max_x": 1809.9482691609062, + "max_y": 5304.067683934963, + "center": [ + 1809.1645265985376, + 5303.414565132989 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.270864141801, + "min_y": 5314.535153804677, + "max_x": 1810.6220918289066, + "max_y": 5315.841391408625, + "center": [ + 1809.4464779853538, + 5315.188272606651 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5462854354698, + "min_y": 5311.04265428123, + "max_x": 1812.2604588533761, + "max_y": 5316.756827699136, + "center": [ + 1809.403372144423, + 5313.899740990183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5313.899740990183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5316.80892314651, + "max_x": 1809.403372144423, + "max_y": 5316.808923146513, + "center": [ + 1807.9487810662627, + 5316.808923146511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5316.808923146513 + ], + [ + 1806.494189988102, + 5316.80892314651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5313.899740990183, + "max_x": 1806.494189988102, + "max_y": 5316.80892314651, + "center": [ + 1806.494189988102, + 5315.354332068347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.494189988102, + 5313.899740990183 + ], + [ + 1806.494189988102, + 5316.80892314651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547B9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.403372144423, + "min_y": 5316.80892314651, + "max_x": 1812.312554300751, + "max_y": 5316.808923146513, + "center": [ + 1810.857963222587, + 5316.808923146511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5316.808923146513 + ], + [ + 1812.312554300751, + 5316.80892314651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.312554300751, + "min_y": 5313.899740990183, + "max_x": 1812.312554300751, + "max_y": 5316.80892314651, + "center": [ + 1812.312554300751, + 5315.354332068347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.312554300751, + 5313.899740990183 + ], + [ + 1812.312554300751, + 5316.80892314651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5310.99055883385, + "max_x": 1809.403372144423, + "max_y": 5310.990558833855, + "center": [ + 1807.9487810662627, + 5310.990558833852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5310.99055883385 + ], + [ + 1806.494189988102, + 5310.990558833855 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5310.990558833855, + "max_x": 1806.494189988102, + "max_y": 5313.899740990183, + "center": [ + 1806.494189988102, + 5312.445149912019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.494189988102, + 5313.899740990183 + ], + [ + 1806.494189988102, + 5310.990558833855 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.403372144423, + "min_y": 5310.99055883385, + "max_x": 1812.312554300751, + "max_y": 5310.990558833855, + "center": [ + 1810.857963222587, + 5310.990558833852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5310.99055883385 + ], + [ + 1812.312554300751, + 5310.990558833855 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.312554300751, + "min_y": 5310.990558833855, + "max_x": 1812.312554300751, + "max_y": 5313.899740990183, + "center": [ + 1812.312554300751, + 5312.445149912019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.312554300751, + 5313.899740990183 + ], + [ + 1812.312554300751, + 5310.990558833855 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547BF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.100960144423, + "min_y": 5312.30876773473, + "max_x": 1811.132960144423, + "max_y": 5313.42876773473, + "center": [ + 1809.116960144423, + 5312.86876773473 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.100960144423, + "min_y": 5306.594594316831, + "max_x": 1811.132960144423, + "max_y": 5307.714594316831, + "center": [ + 1809.116960144423, + 5307.154594316831 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C1", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5462854354698, + "min_y": 5299.271559282769, + "max_x": 1812.2604588533761, + "max_y": 5304.985732700675, + "center": [ + 1809.403372144423, + 5302.128645991722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.403372144423, + 5302.128645991722 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.965771774471, + "min_y": 5300.53767273628, + "max_x": 1810.997771774471, + "max_y": 5301.65767273628, + "center": [ + 1808.9817717744709, + 5301.0976727362795 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1872.583101589676, + "min_y": 5258.321031006152, + "max_x": 1884.6778201739248, + "max_y": 5259.440912356546, + "center": [ + 1878.6304608818004, + 5258.8809716813485 + ] + }, + "raw_value": "N2-10701-25A-F1A-n", + "clean_value": "N2-10701-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5547C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1813.961931007905, + "min_y": 5295.262442597926, + "max_x": 1813.961931007905, + "max_y": 5296.359985156859, + "center": [ + 1813.961931007905, + 5295.811213877392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.961931007905, + 5296.359985156859 + ], + [ + 1813.961931007905, + 5295.262442597926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.390584732314, + "min_y": 5295.242151531141, + "max_x": 1814.390584732314, + "max_y": 5296.380276223642, + "center": [ + 1814.390584732314, + 5295.811213877391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.390584732314, + 5296.380276223642 + ], + [ + 1814.390584732314, + 5295.242151531141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547C6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1835.784195158402, + "min_y": 5286.635190607411, + "max_x": 1837.3516802831393, + "max_y": 5287.9414282113585, + "center": [ + 1836.5679377207707, + 5287.288309409385 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.8492142300158, + "min_y": 5283.336416615722, + "max_x": 1839.5633876479221, + "max_y": 5289.0505900336275, + "center": [ + 1836.706300938969, + 5286.193503324675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5286.193503324675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547C8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1766.686883289046, + "min_y": 5295.811213877391, + "max_x": 1811.260012781863, + "max_y": 5295.811213877391, + "center": [ + 1788.9734480354546, + 5295.811213877391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1766.686883289046, + 5295.811213877391 + ], + [ + 1811.260012781863, + 5295.811213877391 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5547C9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1834.021035640594, + "min_y": 5284.511552999695, + "max_x": 1838.7234910148054, + "max_y": 5285.817790603643, + "center": [ + 1836.3722633276998, + 5285.164671801669 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547CA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1864.0086671385054, + "min_y": 5220.222427043632, + "max_x": 1864.7112132449845, + "max_y": 5220.92497315011, + "center": [ + 1864.359940191745, + 5220.573700096871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.359940191745, + 5220.573700096871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547CB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1872.5833242043204, + "min_y": 5220.2224270436345, + "max_x": 1873.2858703107995, + "max_y": 5220.924973150113, + "center": [ + 1872.93459725756, + 5220.573700096874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.93459725756, + 5220.573700096874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547CC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1841.298425477998, + "min_y": 5286.828916139165, + "max_x": 1843.6496531651037, + "max_y": 5288.135153743113, + "center": [ + 1842.474039321551, + 5287.482034941138 + ] + }, + "raw_value": "PIA", + "clean_value": "PIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547CD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.615483095294, + "min_y": 5283.336416615722, + "max_x": 1845.3296565132002, + "max_y": 5289.0505900336275, + "center": [ + 1842.472569804247, + 5286.193503324675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.472569804247, + 5286.193503324675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547CE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5289.102685480997, + "max_x": 1842.472569804247, + "max_y": 5289.102685481001, + "center": [ + 1841.017978726086, + 5289.102685480999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.472569804247, + 5289.102685481001 + ], + [ + 1839.563387647925, + 5289.102685480997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547CF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5286.193503324675, + "max_x": 1839.563387647925, + "max_y": 5289.102685480997, + "center": [ + 1839.563387647925, + 5287.648094402835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.563387647925, + 5286.193503324675 + ], + [ + 1839.563387647925, + 5289.102685480997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1842.472569804247, + "min_y": 5289.102685480997, + "max_x": 1845.381751960575, + "max_y": 5289.102685481001, + "center": [ + 1843.927160882411, + 5289.102685480999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.472569804247, + 5289.102685481001 + ], + [ + 1845.381751960575, + 5289.102685480997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1845.381751960575, + "min_y": 5286.193503324675, + "max_x": 1845.381751960575, + "max_y": 5289.102685480997, + "center": [ + 1845.381751960575, + 5287.648094402835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.381751960575, + 5286.193503324675 + ], + [ + 1845.381751960575, + 5289.102685480997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5283.284321168334, + "max_x": 1842.472569804247, + "max_y": 5283.284321168343, + "center": [ + 1841.017978726086, + 5283.2843211683385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.472569804247, + 5283.284321168334 + ], + [ + 1839.563387647925, + 5283.284321168343 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5283.284321168343, + "max_x": 1839.563387647925, + "max_y": 5286.193503324667, + "center": [ + 1839.563387647925, + 5284.738912246505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.563387647925, + 5286.193503324667 + ], + [ + 1839.563387647925, + 5283.284321168343 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1842.472569804247, + "min_y": 5283.284321168334, + "max_x": 1845.381751960575, + "max_y": 5283.284321168343, + "center": [ + 1843.927160882411, + 5283.2843211683385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.472569804247, + 5283.284321168334 + ], + [ + 1845.381751960575, + 5283.284321168343 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1845.381751960575, + "min_y": 5283.284321168343, + "max_x": 1845.381751960575, + "max_y": 5286.193503324667, + "center": [ + 1845.381751960575, + 5284.738912246505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.381751960575, + 5286.193503324667 + ], + [ + 1845.381751960575, + 5283.284321168343 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.787304505872, + "min_y": 5284.511552999691, + "max_x": 1844.4897598800835, + "max_y": 5285.817790603639, + "center": [ + 1842.138532192978, + 5285.1646718016655 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1839.563387647925, + "min_y": 5286.193503324667, + "max_x": 1845.381751960575, + "max_y": 5286.193503324675, + "center": [ + 1842.47256980425, + 5286.193503324671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.381751960575, + 5286.193503324667 + ], + [ + 1839.563387647925, + 5286.193503324675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1899.1059697546, + "min_y": 5256.118777076858, + "max_x": 1899.1059697546, + "max_y": 5259.091375693086, + "center": [ + 1899.1059697546, + 5257.605076384973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.1059697546, + 5259.091375693086 + ], + [ + 1899.1059697546, + 5256.118777076858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547D9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1892.29569157217, + "min_y": 5256.858002142721, + "max_x": 1894.0875017327994, + "max_y": 5258.351177276579, + "center": [ + 1893.1915966524848, + 5257.60458970965 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547DA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1889.592650787696, + "min_y": 5259.588626458295, + "max_x": 1899.1059697546, + "max_y": 5259.588626458295, + "center": [ + 1894.349310271148, + 5259.588626458295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.1059697546, + 5259.588626458295 + ], + [ + 1889.592650787696, + 5259.588626458295 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5547DB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1889.592650787688, + "min_y": 5255.621526311653, + "max_x": 1899.1059697546, + "max_y": 5255.621526311653, + "center": [ + 1894.349310271144, + 5255.621526311653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.592650787688, + 5255.621526311653 + ], + [ + 1899.1059697546, + 5255.621526311653 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5547DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1899.1059697546, + "min_y": 5255.621526311653, + "max_x": 1899.1059697546, + "max_y": 5259.588626458295, + "center": [ + 1899.1059697546, + 5257.605076384974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.1059697546, + 5255.621526311653 + ], + [ + 1899.1059697546, + 5259.588626458295 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5547DD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1887.609100714373, + "min_y": 5257.605076384972, + "max_x": 1889.592650787692, + "max_y": 5259.588626458292, + "center": [ + 1888.6008757510326, + 5258.596851421632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.592650787692, + 5259.588626458292 + ], + [ + 1887.609100714373, + 5257.605076384972 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5547DE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1887.609100714373, + "min_y": 5255.621526311649, + "max_x": 1889.592650787692, + "max_y": 5257.605076384972, + "center": [ + 1888.6008757510326, + 5256.61330134831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.609100714373, + 5257.605076384972 + ], + [ + 1889.592650787692, + 5255.621526311649 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5547DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5310.98756874837, + "max_x": 1816.139922305365, + "max_y": 5384.503390713059, + "center": [ + 1816.139922305365, + 5347.745479730715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5384.503390713059 + ], + [ + 1816.139922305365, + 5310.98756874837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5310.987568748367, + "max_x": 1825.256095434563, + "max_y": 5384.503390713059, + "center": [ + 1825.256095434563, + 5347.745479730713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5384.503390713059 + ], + [ + 1825.256095434563, + 5310.987568748367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5374.964893755626, + "max_x": 1825.256095434561, + "max_y": 5374.964893755626, + "center": [ + 1820.698008869963, + 5374.964893755626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5374.964893755626 + ], + [ + 1825.256095434561, + 5374.964893755626 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5360.291827937167, + "max_x": 1825.256095434563, + "max_y": 5360.291827937167, + "center": [ + 1820.6980088699638, + 5360.291827937167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5360.291827937167 + ], + [ + 1825.256095434563, + 5360.291827937167 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5360.291827937167, + "max_x": 1825.256095434563, + "max_y": 5374.964893755626, + "center": [ + 1820.6980088699638, + 5367.628360846396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5374.964893755626 + ], + [ + 1825.256095434563, + 5360.291827937167 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5360.291827937167, + "max_x": 1825.256095434563, + "max_y": 5374.964893755626, + "center": [ + 1820.6980088699638, + 5367.628360846396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5360.291827937167 + ], + [ + 1825.256095434563, + 5374.964893755626 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5348.999219303382, + "max_x": 1825.256095434563, + "max_y": 5348.999219303382, + "center": [ + 1820.6980088699638, + 5348.999219303382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5348.999219303382 + ], + [ + 1825.256095434563, + 5348.999219303382 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305368, + "min_y": 5312.70590360831, + "max_x": 1825.256095434563, + "max_y": 5312.70590360831, + "center": [ + 1820.6980088699654, + 5312.70590360831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5312.70590360831 + ], + [ + 1825.256095434563, + 5312.70590360831 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305365, + "min_y": 5312.70590360831, + "max_x": 1825.256095434563, + "max_y": 5348.99921930338, + "center": [ + 1820.6980088699638, + 5330.852561455846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5348.99921930338 + ], + [ + 1825.256095434563, + 5312.70590360831 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305368, + "min_y": 5312.70590360831, + "max_x": 1825.256095434561, + "max_y": 5348.99921930338, + "center": [ + 1820.6980088699645, + 5330.852561455846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5312.70590360831 + ], + [ + 1825.256095434561, + 5348.99921930338 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5547EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5383.389092987642, + "max_x": 1816.139922305365, + "max_y": 5383.389092987642, + "center": [ + 1815.5082168865983, + 5383.389092987642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5383.389092987642 + ], + [ + 1816.139922305365, + 5383.389092987642 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5380.836060871331, + "max_x": 1816.139922305365, + "max_y": 5380.836060871331, + "center": [ + 1815.5082168865983, + 5380.836060871331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5380.836060871331 + ], + [ + 1816.139922305365, + 5380.836060871331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5380.549251384982, + "max_x": 1814.876511467832, + "max_y": 5383.675902473989, + "center": [ + 1814.876511467832, + 5382.112576929485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5383.675902473989 + ], + [ + 1814.876511467832, + 5380.549251384982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.38576268986, + "min_y": 5380.549251384982, + "max_x": 1814.38576268986, + "max_y": 5383.675902473989, + "center": [ + 1814.38576268986, + 5382.112576929485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.38576268986, + 5383.675902473989 + ], + [ + 1814.38576268986, + 5380.549251384982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547EE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1835.355890483334, + "min_y": 5388.885654122159, + "max_x": 1836.9233756080712, + "max_y": 5390.191891726107, + "center": [ + 1836.1396330457026, + 5389.538772924134 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547EF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.4159318690722, + "min_y": 5385.373553467258, + "max_x": 1839.1400606587276, + "max_y": 5391.097682256914, + "center": [ + 1836.2779962639, + 5388.235617862086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5388.235617862086 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5547F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.698008870127, + "min_y": 5387.396925203081, + "max_x": 1820.69800887013, + "max_y": 5389.130715665327, + "center": [ + 1820.6980088701284, + 5388.263820434204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.69800887013, + 5387.396925203081 + ], + [ + 1820.698008870127, + 5389.130715665327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1820.698008870127, + "min_y": 5389.457881517305, + "max_x": 1820.698008870138, + "max_y": 5402.849240825297, + "center": [ + 1820.6980088701325, + 5396.153561171301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.698008870127, + 5389.457881517305 + ], + [ + 1820.698008870138, + 5402.849240825297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5547F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.162596322699, + "min_y": 5389.457881517305, + "max_x": 1821.262051046941, + "max_y": 5389.457881517305, + "center": [ + 1820.7123236848201, + 5389.457881517305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.162596322699, + 5389.457881517305 + ], + [ + 1821.262051046941, + 5389.457881517305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.162596322699, + "min_y": 5389.130715665327, + "max_x": 1821.262051046941, + "max_y": 5389.130715665327, + "center": [ + 1820.7123236848201, + 5389.130715665327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.162596322699, + 5389.130715665327 + ], + [ + 1821.262051046941, + 5389.130715665327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.953087992537, + "min_y": 5376.305071853678, + "max_x": 1817.398554460084, + "max_y": 5377.002380799911, + "center": [ + 1817.1758212263103, + 5376.653726326795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.398554460084, + 5377.002380799911 + ], + [ + 1816.953087992537, + 5376.305071853678 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.398554460084, + "min_y": 5376.305071853678, + "max_x": 1817.398554460087, + "max_y": 5377.002380799911, + "center": [ + 1817.3985544600855, + 5376.653726326795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.398554460084, + 5377.002380799911 + ], + [ + 1817.398554460087, + 5376.305071853678 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.398554460084, + "min_y": 5376.305071853678, + "max_x": 1817.844020927628, + "max_y": 5377.002380799911, + "center": [ + 1817.621287693856, + 5376.653726326795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.398554460084, + 5377.002380799911 + ], + [ + 1817.844020927628, + 5376.305071853678 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.096104382293, + "min_y": 5376.305071853706, + "max_x": 1820.541570849839, + "max_y": 5377.00238079994, + "center": [ + 1820.318837616066, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.541570849839, + 5377.00238079994 + ], + [ + 1820.096104382293, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.541570849839, + "min_y": 5376.305071853706, + "max_x": 1820.541570849845, + "max_y": 5377.00238079994, + "center": [ + 1820.541570849842, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.541570849839, + 5377.00238079994 + ], + [ + 1820.541570849845, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1820.541570849839, + "min_y": 5376.305071853706, + "max_x": 1820.987037317386, + "max_y": 5377.00238079994, + "center": [ + 1820.7643040836124, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.541570849839, + 5377.00238079994 + ], + [ + 1820.987037317386, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1818.524596187449, + "min_y": 5376.30507185364, + "max_x": 1818.970062654993, + "max_y": 5377.002380799876, + "center": [ + 1818.747329421221, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1818.970062654993, + 5377.002380799876 + ], + [ + 1818.524596187449, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1818.970062654993, + "min_y": 5376.30507185364, + "max_x": 1818.970062655001, + "max_y": 5377.002380799876, + "center": [ + 1818.970062654997, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1818.970062654993, + 5377.002380799876 + ], + [ + 1818.970062655001, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1818.970062654993, + "min_y": 5376.30507185364, + "max_x": 1819.415529122542, + "max_y": 5377.002380799876, + "center": [ + 1819.1927958887675, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1818.970062654993, + 5377.002380799876 + ], + [ + 1819.415529122542, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.239120772032, + "min_y": 5376.305071853706, + "max_x": 1823.684587239579, + "max_y": 5377.00238079994, + "center": [ + 1823.4618540058054, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.684587239579, + 5377.00238079994 + ], + [ + 1823.239120772032, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.684587239579, + "min_y": 5376.305071853706, + "max_x": 1823.684587239584, + "max_y": 5377.00238079994, + "center": [ + 1823.6845872395816, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.684587239579, + 5377.00238079994 + ], + [ + 1823.684587239584, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5547FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1823.684587239579, + "min_y": 5376.305071853706, + "max_x": 1824.130053707122, + "max_y": 5377.00238079994, + "center": [ + 1823.9073204733504, + 5376.653726326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1823.684587239579, + 5377.00238079994 + ], + [ + 1824.130053707122, + 5376.305071853706 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554800", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1821.667612577188, + "min_y": 5376.30507185364, + "max_x": 1822.113079044735, + "max_y": 5377.002380799876, + "center": [ + 1821.8903458109617, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.113079044735, + 5377.002380799876 + ], + [ + 1821.667612577188, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554801", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.113079044735, + "min_y": 5376.30507185364, + "max_x": 1822.11307904474, + "max_y": 5377.002380799876, + "center": [ + 1822.1130790447376, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.113079044735, + 5377.002380799876 + ], + [ + 1822.11307904474, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554802", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.113079044735, + "min_y": 5376.30507185364, + "max_x": 1822.558545512281, + "max_y": 5377.002380799876, + "center": [ + 1822.335812278508, + 5376.653726326758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.113079044735, + 5377.002380799876 + ], + [ + 1822.558545512281, + 5376.30507185364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554803", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5372.373308556166, + "max_x": 1816.139922305368, + "max_y": 5372.373308556166, + "center": [ + 1815.3070440953215, + 5372.373308556166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5372.373308556166 + ], + [ + 1814.474165885275, + 5372.373308556166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554804", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.253699957902, + "min_y": 5372.373308556166, + "max_x": 1814.147000033294, + "max_y": 5372.373308556166, + "center": [ + 1813.2003499955981, + 5372.373308556166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5372.373308556166 + ], + [ + 1812.253699957902, + 5372.373308556166 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.147000033294, + "min_y": 5371.823581194047, + "max_x": 1814.147000033294, + "max_y": 5372.923035918287, + "center": [ + 1814.147000033294, + 5372.373308556167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5371.823581194047 + ], + [ + 1814.147000033294, + 5372.923035918287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5371.823581194047, + "max_x": 1814.474165885275, + "max_y": 5372.923035918287, + "center": [ + 1814.474165885275, + 5372.373308556167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.474165885275, + 5371.823581194047 + ], + [ + 1814.474165885275, + 5372.923035918287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554807", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.478412198216, + "min_y": 5373.023344816235, + "max_x": 1810.0458973229531, + "max_y": 5374.329582420183, + "center": [ + 1809.2621547605845, + 5373.676463618209 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554808", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5369.511244161338, + "max_x": 1812.2536999579038, + "max_y": 5375.235372950994, + "center": [ + 1809.391635563076, + 5372.373308556166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5372.373308556166 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554809", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.369047454817, + "min_y": 5366.494493826888, + "max_x": 1809.9365325795543, + "max_y": 5367.800731430836, + "center": [ + 1809.1527900171857, + 5367.147612628862 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55480A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682402, + "min_y": 5362.997414904435, + "max_x": 1812.2536999578956, + "max_y": 5368.7215436940905, + "center": [ + 1809.391635563068, + 5365.859479299263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563068, + 5365.859479299263 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55480B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5351.063091269204, + "max_x": 1827.626294340938, + "max_y": 5351.063091269204, + "center": [ + 1826.4411948877505, + 5351.063091269204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5351.063091269204 + ], + [ + 1827.626294340938, + 5351.063091269204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55480C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.626294340938, + "min_y": 5351.063091269204, + "max_x": 1829.617234190849, + "max_y": 5351.063091269204, + "center": [ + 1828.6217642658935, + 5351.063091269204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.626294340938, + 5351.063091269204 + ], + [ + 1829.617234190849, + 5351.063091269204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55480D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1830.046634726192, + "min_y": 5351.063091269208, + "max_x": 1830.744908868071, + "max_y": 5351.063091269209, + "center": [ + 1830.3957717971316, + 5351.063091269209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.046634726192, + 5351.063091269209 + ], + [ + 1830.744908868071, + 5351.063091269208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55480E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5353.693575541809, + "max_x": 1816.139922305365, + "max_y": 5353.693575541809, + "center": [ + 1815.5082168865983, + 5353.693575541809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5353.693575541809 + ], + [ + 1816.139922305365, + 5353.693575541809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55480F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5351.140543425497, + "max_x": 1816.139922305365, + "max_y": 5351.140543425497, + "center": [ + 1815.5082168865983, + 5351.140543425497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5351.140543425497 + ], + [ + 1816.139922305365, + 5351.140543425497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554810", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467829, + "min_y": 5350.853733939151, + "max_x": 1814.876511467832, + "max_y": 5353.980385028155, + "center": [ + 1814.8765114678304, + 5352.417059483653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467829, + 5353.980385028155 + ], + [ + 1814.876511467832, + 5350.853733939151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.38576268986, + "min_y": 5350.853733939151, + "max_x": 1814.38576268986, + "max_y": 5353.980385028155, + "center": [ + 1814.38576268986, + 5352.417059483653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.38576268986, + 5353.980385028155 + ], + [ + 1814.38576268986, + 5350.853733939151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554812", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.259127560453, + "min_y": 5378.73506434866, + "max_x": 1810.6103552475586, + "max_y": 5380.041301952608, + "center": [ + 1809.4347414040058, + 5379.388183150633 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554813", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5375.235372950996, + "max_x": 1812.2536999579038, + "max_y": 5380.959501740652, + "center": [ + 1809.391635563076, + 5378.097437345824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5378.097437345824 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554814", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.551199770399, + "min_y": 5278.66510112419, + "max_x": 1868.585779383558, + "max_y": 5278.66510112419, + "center": [ + 1867.0684895769787, + 5278.66510112419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.551199770399, + 5278.66510112419 + ], + [ + 1868.585779383558, + 5278.66510112419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554815", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1866.598246832771, + "min_y": 5276.677568573403, + "max_x": 1870.573311934345, + "max_y": 5280.652633674978, + "center": [ + 1868.585779383558, + 5278.66510112419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.585779383558, + 5278.66510112419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554816", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.276283344519, + "min_y": 5275.132169541246, + "max_x": 1867.379972137975, + "max_y": 5277.08512817286, + "center": [ + 1866.828127741247, + 5276.108648857053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.379972137975, + 5277.08512817286 + ], + [ + 1866.276283344519, + 5275.132169541246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554817", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.791586629144, + "min_y": 5275.132169541246, + "max_x": 1870.895275422603, + "max_y": 5277.08512817286, + "center": [ + 1870.3434310258735, + 5276.108648857053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.791586629144, + 5277.08512817286 + ], + [ + 1870.895275422603, + 5275.132169541246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554818", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.276283344519, + "min_y": 5275.132169541246, + "max_x": 1870.895275422603, + "max_y": 5275.132169541246, + "center": [ + 1868.585779383561, + 5275.132169541246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.895275422603, + 5275.132169541246 + ], + [ + 1866.276283344519, + 5275.132169541246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554819", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.22403391842, + "min_y": 5278.095047343694, + "max_x": 1865.22403391842, + "max_y": 5279.235154904684, + "center": [ + 1865.22403391842, + 5278.665101124189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.22403391842, + 5279.235154904684 + ], + [ + 1865.22403391842, + 5278.095047343694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.551199770399, + "min_y": 5278.095047343694, + "max_x": 1865.551199770399, + "max_y": 5279.235154904684, + "center": [ + 1865.551199770399, + 5278.665101124189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.551199770399, + 5279.235154904684 + ], + [ + 1865.551199770399, + 5278.095047343694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.441857697037, + "min_y": 5278.110647493349, + "max_x": 1854.441857697037, + "max_y": 5279.250755054339, + "center": [ + 1854.441857697037, + 5278.680701273844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.441857697037, + 5279.250755054339 + ], + [ + 1854.441857697037, + 5278.110647493349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1852.8446689304674, + "min_y": 5278.328816224156, + "max_x": 1853.5484390298407, + "max_y": 5279.032586323529, + "center": [ + 1853.196553980154, + 5278.680701273843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1853.196553980154, + 5278.680701273843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.951250263271, + "min_y": 5278.13097391172, + "max_x": 1851.951250263271, + "max_y": 5279.230428635964, + "center": [ + 1851.951250263271, + 5278.680701273842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.951250263271, + 5278.13097391172 + ], + [ + 1851.951250263271, + 5279.230428635964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.441857697037, + "min_y": 5278.13097391172, + "max_x": 1854.441857697037, + "max_y": 5279.230428635964, + "center": [ + 1854.441857697037, + 5278.680701273842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.441857697037, + 5278.13097391172 + ], + [ + 1854.441857697037, + 5279.230428635964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55481F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.441857697037, + "min_y": 5278.680701273843, + "max_x": 1856.665438966647, + "max_y": 5278.680701273843, + "center": [ + 1855.553648331842, + 5278.680701273843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.665438966647, + 5278.680701273843 + ], + [ + 1854.441857697037, + 5278.680701273843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554820", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1858.572820156276, + "min_y": 5277.039800942107, + "max_x": 1858.572820156279, + "max_y": 5278.663281104539, + "center": [ + 1858.5728201562774, + 5277.851541023323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.572820156279, + 5278.663281104539 + ], + [ + 1858.572820156276, + 5277.039800942107 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554821", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1858.2209351065894, + "min_y": 5275.442612175542, + "max_x": 1858.9247052059627, + "max_y": 5276.146382274916, + "center": [ + 1858.572820156276, + 5275.794497225229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.572820156276, + 5275.794497225229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554822", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.023092794158, + "min_y": 5277.039800942109, + "max_x": 1859.122547518397, + "max_y": 5277.039800942109, + "center": [ + 1858.5728201562774, + 5277.039800942109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.023092794158, + 5277.039800942109 + ], + [ + 1859.122547518397, + 5277.039800942109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.021172278132, + "min_y": 5274.874023470518, + "max_x": 1859.120627002371, + "max_y": 5274.874023470518, + "center": [ + 1858.5708996402516, + 5274.874023470518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.021172278132, + 5274.874023470518 + ], + [ + 1859.120627002371, + 5274.874023470518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554824", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.571491914698, + "min_y": 5306.579057830055, + "max_x": 1875.357102658481, + "max_y": 5306.579057830055, + "center": [ + 1872.9642972865895, + 5306.579057830055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.571491914698, + 5306.579057830055 + ], + [ + 1875.357102658481, + 5306.579057830055 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554825", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1850.500298386341, + "min_y": 5369.340041794576, + "max_x": 1858.138781173194, + "max_y": 5369.340041794584, + "center": [ + 1854.3195397797676, + 5369.3400417945795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.138781173194, + 5369.340041794584 + ], + [ + 1850.500298386341, + 5369.340041794576 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554826", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1838.751573862065, + "min_y": 5369.341861814223, + "max_x": 1848.009690952578, + "max_y": 5369.341861814223, + "center": [ + 1843.3806324073216, + 5369.341861814223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.009690952578, + 5369.341861814223 + ], + [ + 1838.751573862065, + 5369.341861814223 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554827", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.500298386339, + "min_y": 5368.769988014081, + "max_x": 1850.500298386339, + "max_y": 5369.910095575071, + "center": [ + 1850.500298386339, + 5369.340041794576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.500298386339, + 5369.910095575071 + ], + [ + 1850.500298386339, + 5368.769988014081 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554828", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1848.9031096197714, + "min_y": 5368.988156744889, + "max_x": 1849.6068797191447, + "max_y": 5369.6919268442625, + "center": [ + 1849.254994669458, + 5369.340041794576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.254994669458, + 5369.340041794576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554829", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.009690952578, + "min_y": 5368.790314432453, + "max_x": 1848.009690952578, + "max_y": 5369.889769156697, + "center": [ + 1848.009690952578, + 5369.340041794575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.009690952578, + 5368.790314432453 + ], + [ + 1848.009690952578, + 5369.889769156697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55482A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.500298386339, + "min_y": 5368.790314432453, + "max_x": 1850.500298386339, + "max_y": 5369.889769156697, + "center": [ + 1850.500298386339, + 5369.340041794575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.500298386339, + 5368.790314432453 + ], + [ + 1850.500298386339, + 5369.889769156697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55482B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1836.933705482103, + "min_y": 5377.002380799903, + "max_x": 1839.849884145916, + "max_y": 5377.002380799903, + "center": [ + 1838.3917948140095, + 5377.002380799903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.849884145916, + 5377.002380799903 + ], + [ + 1836.933705482103, + 5377.002380799903 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55482C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1829.30891495473, + "min_y": 5377.002380799903, + "max_x": 1835.861526624316, + "max_y": 5377.002380799903, + "center": [ + 1832.585220789523, + 5377.002380799903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.861526624316, + 5377.002380799903 + ], + [ + 1829.30891495473, + 5377.002380799903 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55482D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1817.398554460087, + "min_y": 5377.002380799903, + "max_x": 1828.879514419387, + "max_y": 5377.002380799903, + "center": [ + 1823.139034439737, + 5377.002380799903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.879514419387, + 5377.002380799903 + ], + [ + 1817.398554460087, + 5377.002380799903 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55482E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.058278196144, + "min_y": 5377.000560780246, + "max_x": 1872.220238605024, + "max_y": 5377.000560780249, + "center": [ + 1871.139258400584, + 5377.000560780247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.058278196144, + 5377.000560780246 + ], + [ + 1872.220238605024, + 5377.000560780249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55482F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1874.710846038784, + "min_y": 5377.000560780249, + "max_x": 1876.818234014727, + "max_y": 5377.000677623339, + "center": [ + 1875.7645400267556, + 5377.000619201794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.710846038784, + 5377.000560780249 + ], + [ + 1876.818234014727, + 5377.000677623339 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554830", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1877.890412877147, + "min_y": 5377.00073706977, + "max_x": 1910.439701002516, + "max_y": 5377.00073706977, + "center": [ + 1894.1650569398314, + 5377.00073706977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.890412877147, + 5377.00073706977 + ], + [ + 1910.439701002516, + 5377.00073706977 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554831", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.694392591531, + "min_y": 5306.585624953777, + "max_x": 1876.95774313207, + "max_y": 5306.585624953783, + "center": [ + 1876.3260678618003, + 5306.58562495378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.694392591531, + 5306.585624953777 + ], + [ + 1876.95774313207, + 5306.585624953783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554832", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1891.367111778606, + "min_y": 5306.582101954012, + "max_x": 1893.119693264454, + "max_y": 5306.582101954012, + "center": [ + 1892.24340252153, + 5306.582101954012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.367111778606, + 5306.582101954012 + ], + [ + 1893.119693264454, + 5306.582101954012 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554833", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.357102658481, + "min_y": 5306.034077572011, + "max_x": 1875.357102658481, + "max_y": 5307.133532296256, + "center": [ + 1875.357102658481, + 5306.583804934133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.357102658481, + 5306.034077572011 + ], + [ + 1875.357102658481, + 5307.133532296256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554834", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.694392591531, + "min_y": 5306.034077572011, + "max_x": 1875.694392591531, + "max_y": 5307.133532296256, + "center": [ + 1875.694392591531, + 5306.583804934133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.694392591531, + 5306.034077572011 + ], + [ + 1875.694392591531, + 5307.133532296256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554835", + "entity_type": "TEXT", + "layer": "TEXT", + "bbox": { + "min_x": 1877.61557753854, + "min_y": 5311.583224272158, + "max_x": 1879.9668052256457, + "max_y": 5312.889461876106, + "center": [ + 1878.7911913820928, + 5312.236343074132 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554836", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1893.5490937997968, + "min_y": 5307.042857752194, + "max_x": 1895.3853695295973, + "max_y": 5308.879133481994, + "center": [ + 1894.467231664697, + 5307.960995617094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.467231664697, + 5307.960995617094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554837", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.549093799798, + "min_y": 5307.960995617094, + "max_x": 1895.385369529596, + "max_y": 5307.960995617094, + "center": [ + 1894.467231664697, + 5307.960995617094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.385369529596, + 5307.960995617094 + ], + [ + 1893.549093799798, + 5307.960995617094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554838", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.467231664697, + "min_y": 5306.932276997849, + "max_x": 1894.467231664697, + "max_y": 5307.960995617094, + "center": [ + 1894.467231664697, + 5307.446636307472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.467231664697, + 5307.960995617094 + ], + [ + 1894.467231664697, + 5306.932276997849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554839", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.769138083458, + "min_y": 5306.030664586039, + "max_x": 1895.385369529596, + "max_y": 5306.399628006778, + "center": [ + 1895.077253806527, + 5306.215146296408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.385369529596, + 5306.030664586039 + ], + [ + 1894.769138083458, + 5306.399628006778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.549093799798, + "min_y": 5306.761155889547, + "max_x": 1894.165325245936, + "max_y": 5307.130119310284, + "center": [ + 1893.857209522867, + 5306.945637599915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.165325245936, + 5306.761155889547 + ], + [ + 1893.549093799798, + 5307.130119310284 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1895.385369529596, + "min_y": 5306.030664586039, + "max_x": 1895.385369529596, + "max_y": 5307.130119310284, + "center": [ + 1895.385369529596, + 5306.580391948161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.385369529596, + 5307.130119310284 + ], + [ + 1895.385369529596, + 5306.030664586039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.549093799798, + "min_y": 5306.045946853851, + "max_x": 1893.549093799798, + "max_y": 5307.145401578097, + "center": [ + 1893.549093799798, + 5306.595674215974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.549093799798, + 5307.145401578097 + ], + [ + 1893.549093799798, + 5306.045946853851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.769138083455, + "min_y": 5306.761155889547, + "max_x": 1895.385369529596, + "max_y": 5307.130119310284, + "center": [ + 1895.0772538065253, + 5306.945637599915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.385369529596, + 5307.130119310284 + ], + [ + 1894.769138083455, + 5306.761155889547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.549093799798, + "min_y": 5306.030664586039, + "max_x": 1894.165325245936, + "max_y": 5306.399628006778, + "center": [ + 1893.857209522867, + 5306.215146296408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.165325245936, + 5306.399628006778 + ], + [ + 1893.549093799798, + 5306.030664586039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55483F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.119693264454, + "min_y": 5306.025620435477, + "max_x": 1893.119693264454, + "max_y": 5307.165727996467, + "center": [ + 1893.119693264454, + 5306.595674215972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.119693264454, + 5307.165727996467 + ], + [ + 1893.119693264454, + 5306.025620435477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554840", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1895.814770064942, + "min_y": 5306.010338167668, + "max_x": 1895.814770064942, + "max_y": 5307.150445728659, + "center": [ + 1895.814770064942, + 5306.580391948164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.814770064942, + 5307.150445728659 + ], + [ + 1895.814770064942, + 5306.010338167668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554841", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.467231664697, + "min_y": 5308.879133481995, + "max_x": 1894.4672316647, + "max_y": 5311.724489292266, + "center": [ + 1894.4672316646984, + 5310.301811387131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.467231664697, + 5308.879133481995 + ], + [ + 1894.4672316647, + 5311.724489292266 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554842", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.084917815496, + "min_y": 5310.066880800286, + "max_x": 1894.849545513901, + "max_y": 5310.508338807792, + "center": [ + 1894.4672316646984, + 5310.287609804039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.084917815496, + 5310.066880800286 + ], + [ + 1894.849545513901, + 5310.508338807792 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554843", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.084917815496, + "min_y": 5310.426763237468, + "max_x": 1894.849545513901, + "max_y": 5310.868221244971, + "center": [ + 1894.4672316646984, + 5310.64749224122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.084917815496, + 5310.426763237468 + ], + [ + 1894.849545513901, + 5310.868221244971 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554844", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1894.030919015792, + "min_y": 5312.058872806431, + "max_x": 1895.488442886369, + "max_y": 5312.868608290085, + "center": [ + 1894.7596809510806, + 5312.463740548258 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554845", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1894.87666452645, + "min_y": 5300.660360145587, + "max_x": 1900.255941026802, + "max_y": 5300.675642413394, + "center": [ + 1897.566302776626, + 5300.66800127949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.255941026802, + 5300.660360145587 + ], + [ + 1894.87666452645, + 5300.675642413394 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554846", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1888.16003437362, + "min_y": 5300.675642413398, + "max_x": 1892.385333254064, + "max_y": 5300.690924681205, + "center": [ + 1890.272683813842, + 5300.6832835473015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.385333254064, + 5300.690924681205 + ], + [ + 1888.16003437362, + 5300.675642413398 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554847", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.876664526448, + "min_y": 5300.105588632904, + "max_x": 1894.876664526448, + "max_y": 5301.245696193895, + "center": [ + 1894.876664526448, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.876664526448, + 5301.245696193895 + ], + [ + 1894.876664526448, + 5300.105588632904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554848", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1893.2794757598833, + "min_y": 5300.323757363712, + "max_x": 1893.9832458592566, + "max_y": 5301.027527463085, + "center": [ + 1893.63136080957, + 5300.675642413398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.63136080957, + 5300.675642413398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554849", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.876664526448, + "min_y": 5300.125915051281, + "max_x": 1894.876664526448, + "max_y": 5301.22536977552, + "center": [ + 1894.876664526448, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.876664526448, + 5300.125915051281 + ], + [ + 1894.876664526448, + 5301.22536977552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55484A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1899.004890322122, + "min_y": 5316.143761616346, + "max_x": 1901.3561180092277, + "max_y": 5317.449999220294, + "center": [ + 1900.1805041656748, + 5316.79688041832 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55484B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1876.928505385964, + "min_y": 5317.424371517329, + "max_x": 1880.0634756354382, + "max_y": 5318.730609121277, + "center": [ + 1878.4959905107012, + 5318.077490319303 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55484C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.8490307933032, + "min_y": 5314.098518101602, + "max_x": 1881.5731595829586, + "max_y": 5319.822646891258, + "center": [ + 1878.711095188131, + 5316.96058249643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188131, + 5316.96058249643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55484D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.849030793304, + "min_y": 5316.96058249643, + "max_x": 1881.573159582959, + "max_y": 5316.96058249643, + "center": [ + 1878.7110951881316, + 5316.96058249643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.573159582959, + 5316.96058249643 + ], + [ + 1875.849030793304, + 5316.96058249643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55484E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1895.814770064942, + "min_y": 5306.58221196781, + "max_x": 1896.849054153933, + "max_y": 5306.58221196781, + "center": [ + 1896.3319121094373, + 5306.58221196781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.814770064942, + 5306.58221196781 + ], + [ + 1896.849054153933, + 5306.58221196781 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55484F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1868.1444823633526, + "min_y": 5278.223804103985, + "max_x": 1869.0270764037634, + "max_y": 5279.106398144396, + "center": [ + 1868.585779383558, + 5278.66510112419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.585779383558, + 5278.66510112419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554850", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5345.632943272111, + "max_x": 1816.139922305365, + "max_y": 5345.632943272111, + "center": [ + 1815.30704409532, + 5345.632943272111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5345.632943272111 + ], + [ + 1814.474165885275, + 5345.632943272111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554851", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.253699957902, + "min_y": 5345.632943272111, + "max_x": 1814.147000033294, + "max_y": 5345.632943272111, + "center": [ + 1813.2003499955981, + 5345.632943272111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5345.632943272111 + ], + [ + 1812.253699957902, + 5345.632943272111 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554852", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.147000033294, + "min_y": 5345.083215909993, + "max_x": 1814.147000033294, + "max_y": 5346.182670634235, + "center": [ + 1814.147000033294, + 5345.632943272114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5345.083215909993 + ], + [ + 1814.147000033294, + 5346.182670634235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554853", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5345.083215909993, + "max_x": 1814.474165885275, + "max_y": 5346.182670634235, + "center": [ + 1814.474165885275, + 5345.632943272114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.474165885275, + 5345.083215909993 + ], + [ + 1814.474165885275, + 5346.182670634235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554854", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.478412198216, + "min_y": 5346.28297953219, + "max_x": 1810.0458973229531, + "max_y": 5347.589217136138, + "center": [ + 1809.2621547605845, + 5346.936098334165 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554855", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5342.770878877283, + "max_x": 1812.2536999579038, + "max_y": 5348.495007666939, + "center": [ + 1809.391635563076, + 5345.632943272111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5345.632943272111 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554856", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.259127560453, + "min_y": 5351.994699064601, + "max_x": 1810.6103552475586, + "max_y": 5353.300936668549, + "center": [ + 1809.4347414040058, + 5352.647817866575 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554857", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5348.495007666946, + "max_x": 1812.2536999579038, + "max_y": 5354.2191364566015, + "center": [ + 1809.391635563076, + 5351.357072061774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5351.357072061774 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554858", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1894.467231664702, + "min_y": 5313.286956246754, + "max_x": 1894.467231664702, + "max_y": 5316.943591733486, + "center": [ + 1894.467231664702, + 5315.11527399012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.467231664702, + 5313.286956246754 + ], + [ + 1894.467231664702, + 5316.943591733486 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554859", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5381.011687949979, + "max_x": 1809.391635563076, + "max_y": 5381.011687949983, + "center": [ + 1807.9345102609982, + 5381.011687949981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5381.011687949983 + ], + [ + 1806.47738495892, + 5381.011687949979 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5378.097437345824, + "max_x": 1806.47738495892, + "max_y": 5381.011687949979, + "center": [ + 1806.47738495892, + 5379.554562647902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.47738495892, + 5378.097437345824 + ], + [ + 1806.47738495892, + 5381.011687949979 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.391635563076, + "min_y": 5381.011687949979, + "max_x": 1812.30588616723, + "max_y": 5381.011687949983, + "center": [ + 1810.848760865153, + 5381.011687949981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5381.011687949983 + ], + [ + 1812.30588616723, + 5381.011687949979 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.30588616723, + "min_y": 5378.097437345824, + "max_x": 1812.30588616723, + "max_y": 5381.011687949979, + "center": [ + 1812.30588616723, + 5379.554562647902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.30588616723, + 5378.097437345824 + ], + [ + 1812.30588616723, + 5381.011687949979 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5375.183186741661, + "max_x": 1809.391635563076, + "max_y": 5375.183186741665, + "center": [ + 1807.9345102609982, + 5375.183186741663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5375.183186741661 + ], + [ + 1806.47738495892, + 5375.183186741665 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5375.183186741665, + "max_x": 1806.47738495892, + "max_y": 5378.097437345821, + "center": [ + 1806.47738495892, + 5376.640312043743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.47738495892, + 5378.097437345821 + ], + [ + 1806.47738495892, + 5375.183186741665 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55485F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.391635563076, + "min_y": 5375.183186741661, + "max_x": 1812.30588616723, + "max_y": 5375.183186741665, + "center": [ + 1810.848760865153, + 5375.183186741663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5375.183186741661 + ], + [ + 1812.30588616723, + 5375.183186741665 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554860", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.30588616723, + "min_y": 5375.183186741665, + "max_x": 1812.30588616723, + "max_y": 5378.097437345821, + "center": [ + 1812.30588616723, + 5376.640312043743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.30588616723, + 5378.097437345821 + ], + [ + 1812.30588616723, + 5375.183186741665 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554861", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5354.27132266593, + "max_x": 1809.391635563076, + "max_y": 5354.27132266593, + "center": [ + 1807.9345102609982, + 5354.27132266593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5354.27132266593 + ], + [ + 1806.47738495892, + 5354.27132266593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554862", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5351.357072061774, + "max_x": 1806.47738495892, + "max_y": 5354.27132266593, + "center": [ + 1806.47738495892, + 5352.814197363852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.47738495892, + 5351.357072061774 + ], + [ + 1806.47738495892, + 5354.27132266593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554863", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.391635563076, + "min_y": 5354.27132266593, + "max_x": 1812.30588616723, + "max_y": 5354.27132266593, + "center": [ + 1810.848760865153, + 5354.27132266593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5354.27132266593 + ], + [ + 1812.30588616723, + 5354.27132266593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554864", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.30588616723, + "min_y": 5351.357072061774, + "max_x": 1812.30588616723, + "max_y": 5354.27132266593, + "center": [ + 1812.30588616723, + 5352.814197363852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.30588616723, + 5351.357072061774 + ], + [ + 1812.30588616723, + 5354.27132266593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554865", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5348.442821457612, + "max_x": 1809.391635563076, + "max_y": 5348.442821457616, + "center": [ + 1807.9345102609982, + 5348.442821457615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5348.442821457612 + ], + [ + 1806.47738495892, + 5348.442821457616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554866", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.47738495892, + "min_y": 5348.442821457616, + "max_x": 1806.47738495892, + "max_y": 5351.357072061766, + "center": [ + 1806.47738495892, + 5349.899946759691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.47738495892, + 5351.357072061766 + ], + [ + 1806.47738495892, + 5348.442821457616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554867", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.391635563076, + "min_y": 5348.442821457612, + "max_x": 1812.30588616723, + "max_y": 5348.442821457616, + "center": [ + 1810.848760865153, + 5348.442821457615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5348.442821457612 + ], + [ + 1812.30588616723, + 5348.442821457616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554868", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1812.30588616723, + "min_y": 5348.442821457616, + "max_x": 1812.30588616723, + "max_y": 5351.357072061766, + "center": [ + 1812.30588616723, + 5349.899946759691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.30588616723, + 5351.357072061766 + ], + [ + 1812.30588616723, + 5348.442821457616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554869", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1820.698008870138, + "min_y": 5402.849240825291, + "max_x": 1896.931177676361, + "max_y": 5402.849240825297, + "center": [ + 1858.8145932732496, + 5402.849240825294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1820.698008870138, + 5402.849240825297 + ], + [ + 1896.931177676361, + 5402.849240825291 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55486A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5319.874833100585, + "max_x": 1878.711095188131, + "max_y": 5319.874833100594, + "center": [ + 1877.253969886054, + 5319.87483310059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188131, + 5319.874833100594 + ], + [ + 1875.796844583977, + 5319.874833100585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55486B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5316.96058249643, + "max_x": 1875.796844583977, + "max_y": 5319.874833100585, + "center": [ + 1875.796844583977, + 5318.417707798508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.796844583977, + 5316.96058249643 + ], + [ + 1875.796844583977, + 5319.874833100585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55486C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1878.711095188131, + "min_y": 5319.874833100585, + "max_x": 1881.625345792286, + "max_y": 5319.874833100594, + "center": [ + 1880.1682204902086, + 5319.87483310059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188131, + 5319.874833100594 + ], + [ + 1881.625345792286, + 5319.874833100585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55486D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1881.625345792286, + "min_y": 5316.96058249643, + "max_x": 1881.625345792286, + "max_y": 5319.874833100585, + "center": [ + 1881.625345792286, + 5318.417707798508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.625345792286, + 5316.96058249643 + ], + [ + 1881.625345792286, + 5319.874833100585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55486E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5314.046331892267, + "max_x": 1878.711095188131, + "max_y": 5314.046331892274, + "center": [ + 1877.253969886054, + 5314.04633189227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188131, + 5314.046331892267 + ], + [ + 1875.796844583977, + 5314.046331892274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55486F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.796844583977, + "min_y": 5314.046331892274, + "max_x": 1875.796844583977, + "max_y": 5316.96058249642, + "center": [ + 1875.796844583977, + 5315.503457194347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.796844583977, + 5316.96058249642 + ], + [ + 1875.796844583977, + 5314.046331892274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554870", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1878.711095188131, + "min_y": 5314.046331892267, + "max_x": 1881.625345792286, + "max_y": 5314.046331892274, + "center": [ + 1880.1682204902086, + 5314.04633189227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188131, + 5314.046331892267 + ], + [ + 1881.625345792286, + 5314.046331892274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554871", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1881.625345792286, + "min_y": 5314.046331892274, + "max_x": 1881.625345792286, + "max_y": 5316.96058249642, + "center": [ + 1881.625345792286, + 5315.503457194347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.625345792286, + 5316.96058249642 + ], + [ + 1881.625345792286, + 5314.046331892274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554872", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5359.242970207501, + "max_x": 1826.037574581799, + "max_y": 5359.242970207501, + "center": [ + 1825.646835008181, + 5359.242970207501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5359.242970207501 + ], + [ + 1826.037574581799, + 5359.242970207501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554873", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.290472327583, + "min_y": 5350.657377711077, + "max_x": 1825.256095434563, + "max_y": 5350.657377711077, + "center": [ + 1823.773283881073, + 5350.657377711077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5350.657377711077 + ], + [ + 1822.290472327583, + 5350.657377711077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554874", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1822.290472327583, + "min_y": 5350.657377711077, + "max_x": 1822.290472327583, + "max_y": 5354.589217985086, + "center": [ + 1822.290472327583, + 5352.623297848082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.290472327583, + 5350.657377711077 + ], + [ + 1822.290472327583, + 5354.589217985086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554875", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.139922305368, + "min_y": 5354.589217985086, + "max_x": 1822.290472327583, + "max_y": 5354.589217985086, + "center": [ + 1819.2151973164755, + 5354.589217985086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1822.290472327583, + 5354.589217985086 + ], + [ + 1816.139922305368, + 5354.589217985086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554876", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.665438966647, + "min_y": 5278.108827473698, + "max_x": 1856.665438966647, + "max_y": 5279.248935034687, + "center": [ + 1856.665438966647, + 5278.678881254193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.665438966647, + 5279.248935034687 + ], + [ + 1856.665438966647, + 5278.108827473698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554877", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.992604818628, + "min_y": 5278.108827473698, + "max_x": 1856.992604818628, + "max_y": 5279.248935034687, + "center": [ + 1856.992604818628, + 5278.678881254193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.992604818628, + 5279.248935034687 + ], + [ + 1856.992604818628, + 5278.108827473698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554878", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1862.201029116484, + "min_y": 5278.093227324045, + "max_x": 1862.201029116484, + "max_y": 5279.233334885034, + "center": [ + 1862.201029116484, + 5278.66328110454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.201029116484, + 5279.233334885034 + ], + [ + 1862.201029116484, + 5278.093227324045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554879", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.873863264502, + "min_y": 5278.093227324045, + "max_x": 1861.873863264502, + "max_y": 5279.233334885034, + "center": [ + 1861.873863264502, + 5278.66328110454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.873863264502, + 5279.233334885034 + ], + [ + 1861.873863264502, + 5278.093227324045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55487A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1860.86073420756, + "min_y": 5278.663281104539, + "max_x": 1861.873863264502, + "max_y": 5278.666518991876, + "center": [ + 1861.367298736031, + 5278.6649000482075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.873863264502, + 5278.663281104539 + ], + [ + 1860.86073420756, + 5278.666518991876 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55487B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1856.992604818628, + "min_y": 5278.669945598102, + "max_x": 1859.788555353033, + "max_y": 5278.678881254193, + "center": [ + 1858.3905800858306, + 5278.674413426147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.788555353033, + 5278.669945598102 + ], + [ + 1856.992604818628, + 5278.678881254193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55487C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1842.340491579676, + "min_y": 5377.002380799904, + "max_x": 1847.436841076995, + "max_y": 5377.002380799908, + "center": [ + 1844.8886663283356, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.340491579676, + 5377.002380799908 + ], + [ + 1847.436841076995, + 5377.002380799904 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55487D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1857.176492488208, + "min_y": 5377.000560780255, + "max_x": 1863.34564921824, + "max_y": 5377.002380799905, + "center": [ + 1860.2610708532238, + 5377.00147079008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.176492488208, + 5377.002380799905 + ], + [ + 1863.34564921824, + 5377.000560780255 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55487E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1847.8662416123398, + "min_y": 5377.464846603936, + "max_x": 1849.7025173421403, + "max_y": 5379.301122333736, + "center": [ + 1848.78437947724, + 5378.382984468836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.78437947724, + 5378.382984468836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55487F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.866241612338, + "min_y": 5378.382984468836, + "max_x": 1849.702517342139, + "max_y": 5378.382984468836, + "center": [ + 1848.7843794772384, + 5378.382984468836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.702517342139, + 5378.382984468836 + ], + [ + 1847.866241612338, + 5378.382984468836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554880", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.78437947724, + "min_y": 5377.35426584959, + "max_x": 1848.78437947724, + "max_y": 5378.382984468836, + "center": [ + 1848.78437947724, + 5377.8686251592135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.78437947724, + 5378.382984468836 + ], + [ + 1848.78437947724, + 5377.35426584959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554881", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.086285895999, + "min_y": 5376.452653437785, + "max_x": 1849.702517342139, + "max_y": 5376.821616858523, + "center": [ + 1849.394401619069, + 5376.637135148154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.702517342139, + 5376.452653437785 + ], + [ + 1849.086285895999, + 5376.821616858523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554882", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.866241612338, + "min_y": 5377.183144741287, + "max_x": 1848.482473058479, + "max_y": 5377.552108162026, + "center": [ + 1848.1743573354083, + 5377.367626451656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.482473058479, + 5377.183144741287 + ], + [ + 1847.866241612338, + 5377.552108162026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554883", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.702517342139, + "min_y": 5376.452653437785, + "max_x": 1849.702517342139, + "max_y": 5377.552108162026, + "center": [ + 1849.702517342139, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.702517342139, + 5377.552108162026 + ], + [ + 1849.702517342139, + 5376.452653437785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554884", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.866241612338, + "min_y": 5376.452653437785, + "max_x": 1847.866241612338, + "max_y": 5377.552108162026, + "center": [ + 1847.866241612338, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.866241612338, + 5377.552108162026 + ], + [ + 1847.866241612338, + 5376.452653437785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554885", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.086285895999, + "min_y": 5377.183144741287, + "max_x": 1849.702517342139, + "max_y": 5377.552108162026, + "center": [ + 1849.394401619069, + 5377.367626451656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.702517342139, + 5377.552108162026 + ], + [ + 1849.086285895999, + 5377.183144741287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554886", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.866241612338, + "min_y": 5376.452653437785, + "max_x": 1848.482473058479, + "max_y": 5376.821616858523, + "center": [ + 1848.1743573354083, + 5376.637135148154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.482473058479, + 5376.821616858523 + ], + [ + 1847.866241612338, + 5376.452653437785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554887", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.436841076995, + "min_y": 5376.43232701941, + "max_x": 1847.436841076995, + "max_y": 5377.5724345804, + "center": [ + 1847.436841076995, + 5377.002380799905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.436841076995, + 5377.5724345804 + ], + [ + 1847.436841076995, + 5376.43232701941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554888", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.131917877486, + "min_y": 5376.43232701941, + "max_x": 1850.131917877486, + "max_y": 5377.5724345804, + "center": [ + 1850.131917877486, + 5377.002380799905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.131917877486, + 5377.5724345804 + ], + [ + 1850.131917877486, + 5376.43232701941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554889", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.78437947724, + "min_y": 5379.301122333739, + "max_x": 1848.78437947724, + "max_y": 5382.146478144012, + "center": [ + 1848.78437947724, + 5380.723800238875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.78437947724, + 5379.301122333739 + ], + [ + 1848.78437947724, + 5382.146478144012 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55488A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.402065628039, + "min_y": 5380.488869652026, + "max_x": 1849.166693326441, + "max_y": 5380.930327659532, + "center": [ + 1848.78437947724, + 5380.709598655779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.402065628039, + 5380.488869652026 + ], + [ + 1849.166693326441, + 5380.930327659532 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55488B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.402065628039, + "min_y": 5380.848752089208, + "max_x": 1849.166693326441, + "max_y": 5381.290210096716, + "center": [ + 1848.78437947724, + 5381.069481092962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.402065628039, + 5380.848752089208 + ], + [ + 1849.166693326441, + 5381.290210096716 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55488C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1848.348066828335, + "min_y": 5382.480861658171, + "max_x": 1849.805590698912, + "max_y": 5383.290597141825, + "center": [ + 1849.0768287636236, + 5382.885729399998 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55488D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.49796809318, + "min_y": 5382.57338665088, + "max_x": 1853.8491957802855, + "max_y": 5383.879624254828, + "center": [ + 1852.6735819367327, + 5383.226505452854 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55488E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1850.0831823075862, + "min_y": 5379.078920203632, + "max_x": 1855.8073110972416, + "max_y": 5384.803048993288, + "center": [ + 1852.945246702414, + 5381.94098459846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.945246702414, + 5381.94098459846 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55488F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.250886462422, + "min_y": 5377.698070102952, + "max_x": 1851.140610652061, + "max_y": 5379.719565834268, + "center": [ + 1850.1957485572416, + 5378.708817968611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.140610652061, + 5379.719565834268 + ], + [ + 1849.250886462422, + 5377.698070102952 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554890", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1848.784379477243, + "min_y": 5383.708945098497, + "max_x": 1848.784379477243, + "max_y": 5387.294569625264, + "center": [ + 1848.784379477243, + 5385.501757361881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.784379477243, + 5383.708945098497 + ], + [ + 1848.784379477243, + 5387.294569625264 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554891", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1848.784379477243, + "min_y": 5387.292826773254, + "max_x": 1863.828742149476, + "max_y": 5387.294569625263, + "center": [ + 1856.3065608133595, + 5387.293698199259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.784379477243, + 5387.294569625263 + ], + [ + 1863.828742149476, + 5387.292826773254 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554892", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.672815070223, + "min_y": 5377.000560780248, + "max_x": 1864.998323234719, + "max_y": 5377.000560780255, + "center": [ + 1864.335569152471, + 5377.000560780251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.672815070223, + 5377.000560780255 + ], + [ + 1864.998323234719, + 5377.000560780248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554893", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.487662272539, + "min_y": 5377.000560780248, + "max_x": 1869.731112344165, + "max_y": 5377.000560780248, + "center": [ + 1869.1093873083519, + 5377.000560780248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.487662272539, + 5377.000560780248 + ], + [ + 1869.731112344165, + 5377.000560780248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554894", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.34564921824, + "min_y": 5376.450833418135, + "max_x": 1863.34564921824, + "max_y": 5377.550288142376, + "center": [ + 1863.34564921824, + 5377.000560780256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.34564921824, + 5376.450833418135 + ], + [ + 1863.34564921824, + 5377.550288142376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554895", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.672815070223, + "min_y": 5376.450833418135, + "max_x": 1863.672815070223, + "max_y": 5377.550288142376, + "center": [ + 1863.672815070223, + 5377.000560780256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.672815070223, + 5376.450833418135 + ], + [ + 1863.672815070223, + 5377.550288142376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554896", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1865.648235017759, + "min_y": 5382.079454605001, + "max_x": 1867.9994627048645, + "max_y": 5383.385692208949, + "center": [ + 1866.8238488613117, + 5382.732573406975 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554897", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.8809283588002, + "min_y": 5378.788869604578, + "max_x": 1869.6050571484557, + "max_y": 5384.512998394234, + "center": [ + 1866.742992753628, + 5381.650933999406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5381.650933999406 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554898", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.731112344165, + "min_y": 5376.450833418127, + "max_x": 1869.731112344165, + "max_y": 5377.550288142369, + "center": [ + 1869.731112344165, + 5377.000560780249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.731112344165, + 5376.450833418127 + ], + [ + 1869.731112344165, + 5377.550288142369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554899", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1864.96040295146, + "min_y": 5387.891038019295, + "max_x": 1868.0953732009343, + "max_y": 5389.197275623243, + "center": [ + 1866.527888076197, + 5388.544156821268 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.8809283588002, + "min_y": 5384.565184603564, + "max_x": 1869.6050571484557, + "max_y": 5390.28931339322, + "center": [ + 1866.742992753628, + 5387.427248998392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5387.427248998392 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5384.512998394233, + "max_x": 1866.742992753628, + "max_y": 5384.512998394241, + "center": [ + 1865.285867451552, + 5384.512998394237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5384.512998394233 + ], + [ + 1863.828742149476, + 5384.512998394241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5384.512998394241, + "max_x": 1863.828742149476, + "max_y": 5387.427248998388, + "center": [ + 1863.828742149476, + 5385.970123696314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.828742149476, + 5387.427248998388 + ], + [ + 1863.828742149476, + 5384.512998394241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1866.742992753628, + "min_y": 5384.512998394233, + "max_x": 1869.657243357782, + "max_y": 5384.512998394241, + "center": [ + 1868.200118055705, + 5384.512998394237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5384.512998394233 + ], + [ + 1869.657243357782, + 5384.512998394241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1869.657243357782, + "min_y": 5384.512998394241, + "max_x": 1869.657243357782, + "max_y": 5387.427248998388, + "center": [ + 1869.657243357782, + 5385.970123696314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.657243357782, + 5387.427248998388 + ], + [ + 1869.657243357782, + 5384.512998394241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55489F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1829.018664221063, + "min_y": 5356.289551764405, + "max_x": 1830.2278673079638, + "max_y": 5357.297221003489, + "center": [ + 1829.6232657645135, + 5356.793386383946 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1827.5769415831737, + "min_y": 5353.591804550452, + "max_x": 1831.9926990873664, + "max_y": 5358.007562054646, + "center": [ + 1829.78482033527, + 5355.799683302549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.78482033527, + 5355.799683302549 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.630416698925, + "min_y": 5359.242970207497, + "max_x": 1829.78482033527, + "max_y": 5359.242970207497, + "center": [ + 1829.2076185170977, + 5359.242970207497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.630416698925, + 5359.242970207497 + ], + [ + 1829.78482033527, + 5359.242970207497 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.693242845379, + "max_x": 1826.466975117143, + "max_y": 5359.79269756962, + "center": [ + 1826.466975117143, + 5359.2429702075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5359.79269756962 + ], + [ + 1826.466975117143, + 5358.693242845379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5351.687895334755, + "max_x": 1826.037574581799, + "max_y": 5352.828002895745, + "center": [ + 1826.037574581799, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5352.828002895745 + ], + [ + 1826.037574581799, + 5351.687895334755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5351.708221753129, + "max_x": 1826.037574581799, + "max_y": 5352.807676477374, + "center": [ + 1826.037574581799, + 5352.257949115252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5352.807676477374 + ], + [ + 1826.037574581799, + 5351.708221753129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.784820335266, + "min_y": 5358.007562054646, + "max_x": 1829.78482033527, + "max_y": 5359.242970207497, + "center": [ + 1829.784820335268, + 5358.625266131072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.78482033527, + 5359.242970207497 + ], + [ + 1829.784820335266, + 5358.007562054646 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.528182015563, + "min_y": 5352.25794911525, + "max_x": 1829.78482033527, + "max_y": 5352.25794911525, + "center": [ + 1829.1565011754165, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528182015563, + 5352.25794911525 + ], + [ + 1829.78482033527, + 5352.25794911525 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.78482033527, + "min_y": 5352.257949115255, + "max_x": 1829.78482033527, + "max_y": 5353.591804550453, + "center": [ + 1829.78482033527, + 5352.924876832854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.78482033527, + 5352.257949115255 + ], + [ + 1829.78482033527, + 5353.591804550453 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5352.25794911525, + "max_x": 1826.037574581799, + "max_y": 5352.25794911525, + "center": [ + 1825.646835008181, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5352.25794911525 + ], + [ + 1825.256095434563, + 5352.25794911525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5358.672916427004, + "max_x": 1826.037574581799, + "max_y": 5359.813023987996, + "center": [ + 1826.037574581799, + 5359.2429702075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5359.813023987996 + ], + [ + 1826.037574581799, + 5358.672916427004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548AA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1877.386028528952, + "min_y": 5306.144091449191, + "max_x": 1879.372579582183, + "max_y": 5306.971821054704, + "center": [ + 1878.3793040555674, + 5306.557956251948 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548AB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1875.8490307933073, + "min_y": 5308.322203102607, + "max_x": 1881.5731595829627, + "max_y": 5314.046331892263, + "center": [ + 1878.711095188135, + 5311.184267497435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.711095188135, + 5311.184267497435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5548AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1878.702412650977, + "min_y": 5307.462518167884, + "max_x": 1878.702412650977, + "max_y": 5308.322295392865, + "center": [ + 1878.702412650977, + 5307.892406780375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1878.702412650977, + 5308.322295392865 + ], + [ + 1878.702412650977, + 5307.462518167884 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548AD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1865.426608631604, + "min_y": 5376.559027275654, + "max_x": 1867.4131596848351, + "max_y": 5377.3867568811675, + "center": [ + 1866.4198841582197, + 5376.972892078411 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.742992753629, + "min_y": 5377.877453994353, + "max_x": 1866.74299275364, + "max_y": 5378.788869604578, + "center": [ + 1866.7429927536346, + 5378.333161799466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.74299275364, + 5378.788869604578 + ], + [ + 1866.742992753629, + 5377.877453994353 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.340491579676, + "min_y": 5376.43232701941, + "max_x": 1842.340491579676, + "max_y": 5377.572434580404, + "center": [ + 1842.340491579676, + 5377.002380799907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.340491579676, + 5377.572434580404 + ], + [ + 1842.340491579676, + 5376.43232701941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.849884145916, + "min_y": 5376.45265343778, + "max_x": 1839.849884145916, + "max_y": 5377.552108162024, + "center": [ + 1839.849884145916, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.849884145916, + 5376.45265343778 + ], + [ + 1839.849884145916, + 5377.552108162024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.340491579676, + "min_y": 5376.45265343778, + "max_x": 1842.340491579676, + "max_y": 5377.552108162024, + "center": [ + 1842.340491579676, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.340491579676, + 5376.45265343778 + ], + [ + 1842.340491579676, + 5377.552108162024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.321479797125, + "min_y": 5306.03237459189, + "max_x": 1890.937711243263, + "max_y": 5306.40133801263, + "center": [ + 1890.629595520194, + 5306.216856302261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.937711243263, + 5306.03237459189 + ], + [ + 1890.321479797125, + 5306.40133801263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1889.101435513465, + "min_y": 5306.762865895396, + "max_x": 1889.717666959603, + "max_y": 5307.131829316136, + "center": [ + 1889.409551236534, + 5306.9473476057665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.717666959603, + 5306.762865895396 + ], + [ + 1889.101435513465, + 5307.131829316136 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.937711243263, + "min_y": 5306.03237459189, + "max_x": 1890.937711243263, + "max_y": 5307.131829316136, + "center": [ + 1890.937711243263, + 5306.582101954013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.937711243263, + 5307.131829316136 + ], + [ + 1890.937711243263, + 5306.03237459189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1889.101435513465, + "min_y": 5306.03237459189, + "max_x": 1889.101435513465, + "max_y": 5307.131829316136, + "center": [ + 1889.101435513465, + 5306.582101954013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.101435513465, + 5307.131829316136 + ], + [ + 1889.101435513465, + 5306.03237459189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.321479797125, + "min_y": 5306.762865895396, + "max_x": 1890.937711243263, + "max_y": 5307.131829316136, + "center": [ + 1890.629595520194, + 5306.9473476057665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.937711243263, + 5307.131829316136 + ], + [ + 1890.321479797125, + 5306.762865895396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1889.101435513465, + "min_y": 5306.03237459189, + "max_x": 1889.717666959603, + "max_y": 5306.40133801263, + "center": [ + 1889.409551236534, + 5306.216856302261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1889.717666959603, + 5306.40133801263 + ], + [ + 1889.101435513465, + 5306.03237459189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1888.672034978119, + "min_y": 5306.012048173517, + "max_x": 1888.672034978119, + "max_y": 5307.152155734507, + "center": [ + 1888.672034978119, + 5306.582101954012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.672034978119, + 5307.152155734507 + ], + [ + 1888.672034978119, + 5306.012048173517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.367111778606, + "min_y": 5306.012048173517, + "max_x": 1891.367111778606, + "max_y": 5307.152155734507, + "center": [ + 1891.367111778606, + 5306.582101954012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.367111778606, + 5307.152155734507 + ], + [ + 1891.367111778606, + 5306.012048173517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1898.498498972937, + "min_y": 5306.032484605687, + "max_x": 1899.114730419075, + "max_y": 5306.401448026424, + "center": [ + 1898.806614696006, + 5306.216966316056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.114730419075, + 5306.032484605687 + ], + [ + 1898.498498972937, + 5306.401448026424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1897.278454689276, + "min_y": 5306.762975909191, + "max_x": 1897.894686135417, + "max_y": 5307.131939329932, + "center": [ + 1897.5865704123466, + 5306.947457619561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1897.894686135417, + 5306.762975909191 + ], + [ + 1897.278454689276, + 5307.131939329932 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1899.114730419075, + "min_y": 5306.032484605687, + "max_x": 1899.114730419075, + "max_y": 5307.131939329932, + "center": [ + 1899.114730419075, + 5306.58221196781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.114730419075, + 5307.131939329932 + ], + [ + 1899.114730419075, + 5306.032484605687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1897.278454689276, + "min_y": 5306.032484605687, + "max_x": 1897.278454689276, + "max_y": 5307.131939329932, + "center": [ + 1897.278454689276, + 5306.58221196781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1897.278454689276, + 5307.131939329932 + ], + [ + 1897.278454689276, + 5306.032484605687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1898.498498972937, + "min_y": 5306.762975909191, + "max_x": 1899.114730419075, + "max_y": 5307.131939329932, + "center": [ + 1898.806614696006, + 5306.947457619561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.114730419075, + 5307.131939329932 + ], + [ + 1898.498498972937, + 5306.762975909191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1897.278454689276, + "min_y": 5306.032484605687, + "max_x": 1897.894686135417, + "max_y": 5306.401448026424, + "center": [ + 1897.5865704123466, + 5306.216966316056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1897.894686135417, + 5306.401448026424 + ], + [ + 1897.278454689276, + 5306.032484605687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1896.849054153933, + "min_y": 5306.012158187315, + "max_x": 1896.849054153933, + "max_y": 5307.152265748306, + "center": [ + 1896.849054153933, + 5306.5822119678105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1896.849054153933, + 5307.152265748306 + ], + [ + 1896.849054153933, + 5306.012158187315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1899.544130954421, + "min_y": 5306.012158187315, + "max_x": 1899.544130954421, + "max_y": 5307.152265748306, + "center": [ + 1899.544130954421, + 5306.5822119678105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1899.544130954421, + 5307.152265748306 + ], + [ + 1899.544130954421, + 5306.012158187315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1888.16003437362, + "min_y": 5300.675642413398, + "max_x": 1888.16003437362, + "max_y": 5306.582101954012, + "center": [ + 1888.16003437362, + 5303.6288721837045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.16003437362, + 5306.582101954012 + ], + [ + 1888.16003437362, + 5300.675642413398 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.176492488208, + "min_y": 5376.43232701941, + "max_x": 1857.176492488208, + "max_y": 5377.5724345804, + "center": [ + 1857.176492488208, + 5377.002380799905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.176492488208, + 5377.5724345804 + ], + [ + 1857.176492488208, + 5376.43232701941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.685885054444, + "min_y": 5376.452653437785, + "max_x": 1854.685885054444, + "max_y": 5377.552108162026, + "center": [ + 1854.685885054444, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.685885054444, + 5376.452653437785 + ], + [ + 1854.685885054444, + 5377.552108162026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.176492488208, + "min_y": 5376.452653437785, + "max_x": 1857.176492488208, + "max_y": 5377.552108162026, + "center": [ + 1857.176492488208, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.176492488208, + 5376.452653437785 + ], + [ + 1857.176492488208, + 5377.552108162026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1838.751573862065, + "min_y": 5369.341861814223, + "max_x": 1838.751573862065, + "max_y": 5377.002380799903, + "center": [ + 1838.751573862065, + 5373.172121307063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.751573862065, + 5377.002380799903 + ], + [ + 1838.751573862065, + 5369.341861814223 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1858.138781173194, + "min_y": 5369.340041794584, + "max_x": 1858.138781173194, + "max_y": 5377.002380799905, + "center": [ + 1858.138781173194, + 5373.171211297245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.138781173194, + 5377.002380799905 + ], + [ + 1858.138781173194, + 5369.340041794584 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548C8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1873.1136572722173, + "min_y": 5376.648675730562, + "max_x": 1873.8174273715906, + "max_y": 5377.352445829935, + "center": [ + 1873.465542321904, + 5377.000560780249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.465542321904, + 5377.000560780249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.220238605024, + "min_y": 5376.450833418125, + "max_x": 1872.220238605024, + "max_y": 5377.550288142368, + "center": [ + 1872.220238605024, + 5377.000560780247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.220238605024, + 5376.450833418125 + ], + [ + 1872.220238605024, + 5377.550288142368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.710846038784, + "min_y": 5376.450833418125, + "max_x": 1874.710846038784, + "max_y": 5377.550288142368, + "center": [ + 1874.710846038784, + 5377.000560780247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.710846038784, + 5376.450833418125 + ], + [ + 1874.710846038784, + 5377.550288142368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.058278196144, + "min_y": 5376.450833418127, + "max_x": 1870.058278196144, + "max_y": 5377.550288142369, + "center": [ + 1870.058278196144, + 5377.000560780249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.058278196144, + 5376.450833418127 + ], + [ + 1870.058278196144, + 5377.550288142369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.573311934346, + "min_y": 5278.66510112419, + "max_x": 1870.573311934346, + "max_y": 5280.406147171428, + "center": [ + 1870.573311934346, + 5279.535624147809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5278.66510112419 + ], + [ + 1870.573311934346, + 5280.406147171428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548CD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.573311934346, + "min_y": 5280.406147171433, + "max_x": 1870.573311934346, + "max_y": 5281.304926490162, + "center": [ + 1870.573311934346, + 5280.855536830797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5280.406147171433 + ], + [ + 1870.573311934346, + 5281.304926490162 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548CE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.571051299674, + "min_y": 5298.353814536836, + "max_x": 1870.571491914698, + "max_y": 5306.580387596861, + "center": [ + 1870.5712716071862, + 5302.467101066848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.571491914698, + 5306.580387596861 + ], + [ + 1870.571051299674, + 5298.353814536836 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548CF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.570610684653, + "min_y": 5290.20916621713, + "max_x": 1870.571051299674, + "max_y": 5295.863207103078, + "center": [ + 1870.5708309921636, + 5293.036186660103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.571051299674, + 5295.863207103078 + ], + [ + 1870.570610684653, + 5290.20916621713 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5373.369227743212, + "max_x": 1826.921851854657, + "max_y": 5373.369227743212, + "center": [ + 1826.08897364461, + 5373.369227743212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5373.369227743212 + ], + [ + 1826.921851854657, + 5373.369227743212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.35125239, + "min_y": 5372.819500381088, + "max_x": 1827.35125239, + "max_y": 5373.918955105331, + "center": [ + 1827.35125239, + 5373.369227743209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.35125239, + 5373.918955105331 + ], + [ + 1827.35125239, + 5372.819500381088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.921851854657, + "min_y": 5372.799173962714, + "max_x": 1826.921851854657, + "max_y": 5373.939281523707, + "center": [ + 1826.921851854657, + 5373.369227743211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.921851854657, + 5373.939281523707 + ], + [ + 1826.921851854657, + 5372.799173962714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.256095434563, + "min_y": 5347.403553290963, + "max_x": 1826.921851854657, + "max_y": 5347.403553290963, + "center": [ + 1826.08897364461, + 5347.403553290963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.256095434563, + 5347.403553290963 + ], + [ + 1826.921851854657, + 5347.403553290963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.35125239, + "min_y": 5346.853825928842, + "max_x": 1827.35125239, + "max_y": 5347.953280653086, + "center": [ + 1827.35125239, + 5347.403553290964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.35125239, + 5347.953280653086 + ], + [ + 1827.35125239, + 5346.853825928842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.921851854657, + "min_y": 5346.833499510467, + "max_x": 1826.921851854657, + "max_y": 5347.973607071458, + "center": [ + 1826.921851854657, + 5347.403553290962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.921851854657, + 5347.973607071458 + ], + [ + 1826.921851854657, + 5346.833499510467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.01336800068, + "min_y": 5280.406147171433, + "max_x": 1871.133149143302, + "max_y": 5280.406147171433, + "center": [ + 1870.5732585719911, + 5280.406147171433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.133149143302, + 5280.406147171433 + ], + [ + 1870.01336800068, + 5280.406147171433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.528182015563, + "min_y": 5351.687895334755, + "max_x": 1828.528182015563, + "max_y": 5352.828002895745, + "center": [ + 1828.528182015563, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528182015563, + 5352.828002895745 + ], + [ + 1828.528182015563, + 5351.687895334755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1826.9309932489934, + "min_y": 5351.906064065563, + "max_x": 1827.6347633483667, + "max_y": 5352.609834164937, + "center": [ + 1827.28287829868, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.28287829868, + 5352.25794911525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5351.708221753129, + "max_x": 1826.037574581799, + "max_y": 5352.807676477374, + "center": [ + 1826.037574581799, + 5352.257949115252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5351.708221753129 + ], + [ + 1826.037574581799, + 5352.807676477374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.528182015563, + "min_y": 5351.708221753129, + "max_x": 1828.528182015563, + "max_y": 5352.807676477374, + "center": [ + 1828.528182015563, + 5352.257949115252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528182015563, + 5351.708221753129 + ], + [ + 1828.528182015563, + 5352.807676477374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.630416698925, + "min_y": 5358.680904401938, + "max_x": 1828.630416698925, + "max_y": 5359.821011962928, + "center": [ + 1828.630416698925, + 5359.250958182433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.630416698925, + 5359.821011962928 + ], + [ + 1828.630416698925, + 5358.680904401938 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1827.0332279323554, + "min_y": 5358.899073132748, + "max_x": 1827.7369980317287, + "max_y": 5359.602843232121, + "center": [ + 1827.385112982042, + 5359.250958182434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.385112982042, + 5359.250958182434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.693242845379, + "max_x": 1826.466975117143, + "max_y": 5359.79269756962, + "center": [ + 1826.466975117143, + 5359.2429702075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5358.693242845379 + ], + [ + 1826.466975117143, + 5359.79269756962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.630416698925, + "min_y": 5358.701230820313, + "max_x": 1828.630416698925, + "max_y": 5359.800685544552, + "center": [ + 1828.630416698925, + 5359.250958182432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.630416698925, + 5358.701230820313 + ], + [ + 1828.630416698925, + 5359.800685544552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548DF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1847.860626984775, + "min_y": 5278.673702259149, + "max_x": 1847.86062698488, + "max_y": 5311.271938731445, + "center": [ + 1847.8606269848274, + 5294.972820495297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984775, + 5278.673702259149 + ], + [ + 1847.86062698488, + 5311.271938731445 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.84315495807, + "min_y": 5337.544318075114, + "max_x": 1847.843748135787, + "max_y": 5338.532425370051, + "center": [ + 1847.8434515469285, + 5338.038371722582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.84315495807, + 5337.544318075114 + ], + [ + 1847.843748135787, + 5338.532425370051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1847.8481971814, + "min_y": 5338.90806987255, + "max_x": 1847.8481971814, + "max_y": 5351.063091269196, + "center": [ + 1847.8481971814, + 5344.985580570873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.8481971814, + 5338.90806987255 + ], + [ + 1847.8481971814, + 5351.063091269196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.972326133175, + "min_y": 5322.129224925706, + "max_x": 1849.972326133175, + "max_y": 5334.651556962011, + "center": [ + 1849.972326133175, + 5328.390390943859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.972326133175, + 5322.129224925706 + ], + [ + 1849.972326133175, + 5334.651556962011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.696320349247, + "min_y": 5323.681554640646, + "max_x": 1845.696320349247, + "max_y": 5334.651556962011, + "center": [ + 1845.696320349247, + 5329.166555801328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.696320349247, + 5323.681554640646 + ], + [ + 1845.696320349247, + 5334.651556962011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.9220639873, + "min_y": 5334.651556962011, + "max_x": 1850.746582495126, + "max_y": 5334.651556962011, + "center": [ + 1847.834323241213, + 5334.651556962011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.9220639873, + 5334.651556962011 + ], + [ + 1850.746582495126, + 5334.651556962011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.972326133175, + "min_y": 5316.380402526168, + "max_x": 1849.972326133175, + "max_y": 5322.129224925706, + "center": [ + 1849.972326133175, + 5319.254813725936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.972326133175, + 5322.129224925706 + ], + [ + 1849.972326133175, + 5316.380402526168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.696320349244, + "min_y": 5316.336146652043, + "max_x": 1845.696320349246, + "max_y": 5323.681554640646, + "center": [ + 1845.696320349245, + 5320.008850646344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.696320349244, + 5323.681554640646 + ], + [ + 1845.696320349246, + 5316.336146652043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.117124976389, + "min_y": 5318.994718083283, + "max_x": 1849.117124976389, + "max_y": 5334.651556962011, + "center": [ + 1849.117124976389, + 5326.823137522648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.117124976389, + 5334.651556962011 + ], + [ + 1849.117124976389, + 5318.994718083283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.261923819603, + "min_y": 5318.994718083283, + "max_x": 1848.261923819603, + "max_y": 5334.651556962011, + "center": [ + 1848.261923819603, + 5326.823137522648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.261923819603, + 5334.651556962011 + ], + [ + 1848.261923819603, + 5318.994718083283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.406722662819, + "min_y": 5318.994718083283, + "max_x": 1847.406722662819, + "max_y": 5334.651556962011, + "center": [ + 1847.406722662819, + 5326.823137522648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.406722662819, + 5334.651556962011 + ], + [ + 1847.406722662819, + 5318.994718083283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1846.551521506031, + "min_y": 5318.994718083283, + "max_x": 1846.551521506031, + "max_y": 5334.651556962011, + "center": [ + 1846.551521506031, + 5326.823137522648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.551521506031, + 5334.651556962011 + ], + [ + 1846.551521506031, + 5318.994718083283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.972326133175, + "min_y": 5334.651556962017, + "max_x": 1849.972326133175, + "max_y": 5336.107659555014, + "center": [ + 1849.972326133175, + 5335.379608258516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.972326133175, + 5334.651556962017 + ], + [ + 1849.972326133175, + 5336.107659555014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.696320349244, + "min_y": 5334.651556962011, + "max_x": 1845.696320349247, + "max_y": 5336.151915429142, + "center": [ + 1845.6963203492455, + 5335.401736195577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.696320349244, + 5334.651556962011 + ], + [ + 1845.696320349247, + 5336.151915429142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.189654198787, + "min_y": 5338.532425370051, + "max_x": 1848.531599770544, + "max_y": 5338.532425370051, + "center": [ + 1847.8606269846655, + 5338.532425370051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.189654198787, + 5338.532425370051 + ], + [ + 1848.531599770544, + 5338.532425370051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.972326133175, + "min_y": 5331.320711253045, + "max_x": 1850.656277244275, + "max_y": 5331.320711253045, + "center": [ + 1850.3143016887252, + 5331.320711253045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.972326133175, + 5331.320711253045 + ], + [ + 1850.656277244275, + 5331.320711253045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.983443096257, + "min_y": 5330.769163871276, + "max_x": 1850.983443096257, + "max_y": 5331.868618595513, + "center": [ + 1850.983443096257, + 5331.318891233394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.983443096257, + 5330.769163871276 + ], + [ + 1850.983443096257, + 5331.868618595513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.656277244275, + "min_y": 5330.769163871276, + "max_x": 1850.656277244275, + "max_y": 5331.868618595513, + "center": [ + 1850.656277244275, + 5331.318891233394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.656277244275, + 5330.769163871276 + ], + [ + 1850.656277244275, + 5331.868618595513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.974498253754, + "min_y": 5323.944127422866, + "max_x": 1850.619225048267, + "max_y": 5323.944127422866, + "center": [ + 1850.2968616510107, + 5323.944127422866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.974498253754, + 5323.944127422866 + ], + [ + 1850.619225048267, + 5323.944127422866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.946390900248, + "min_y": 5323.392580041094, + "max_x": 1850.946390900248, + "max_y": 5324.492034765336, + "center": [ + 1850.946390900248, + 5323.942307403215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.946390900248, + 5323.392580041094 + ], + [ + 1850.946390900248, + 5324.492034765336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.619225048267, + "min_y": 5323.392580041094, + "max_x": 1850.619225048267, + "max_y": 5324.492034765336, + "center": [ + 1850.619225048267, + 5323.942307403215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.619225048267, + 5323.392580041094 + ], + [ + 1850.619225048267, + 5324.492034765336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.152636664771, + "min_y": 5331.320711253046, + "max_x": 1854.152636664774, + "max_y": 5333.271328685345, + "center": [ + 1854.1526366647727, + 5332.296019969195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.152636664771, + 5331.320711253046 + ], + [ + 1854.152636664774, + 5333.271328685345 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5548F7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1853.130048556523, + "min_y": 5336.561913685766, + "max_x": 1854.6975336812602, + "max_y": 5337.868151289714, + "center": [ + 1853.9137911188916, + 5337.21503248774 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5548F8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.2905722699463, + "min_y": 5333.271328685346, + "max_x": 1857.0147010596017, + "max_y": 5338.995457475002, + "center": [ + 1854.152636664774, + 5336.133393080174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.152636664774, + 5336.133393080174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5548F9", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1850.946390900248, + "min_y": 5323.944127422859, + "max_x": 1881.841653562706, + "max_y": 5323.944127422869, + "center": [ + 1866.3940222314768, + 5323.944127422865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.946390900248, + 5323.944127422859 + ], + [ + 1881.841653562706, + 5323.944127422869 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.385333254064, + "min_y": 5300.105588632904, + "max_x": 1892.385333254064, + "max_y": 5301.245696193895, + "center": [ + 1892.385333254064, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.385333254064, + 5301.245696193895 + ], + [ + 1892.385333254064, + 5300.105588632904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.385333254064, + "min_y": 5300.125915051281, + "max_x": 1892.385333254064, + "max_y": 5301.22536977552, + "center": [ + 1892.385333254064, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.385333254064, + 5300.125915051281 + ], + [ + 1892.385333254064, + 5301.22536977552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5548FC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1839.89778807385, + "min_y": 5403.449010130792, + "max_x": 1854.008293088807, + "max_y": 5404.568891481185, + "center": [ + 1846.9530405813284, + 5404.008950805988 + ] + }, + "raw_value": "P-10138-600A-F2A-H100", + "clean_value": "P-10138-600A-F2A-H100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548FD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1878.944765996558, + "min_y": 5378.543578374573, + "max_x": 1890.3675557705708, + "max_y": 5379.663459724967, + "center": [ + 1884.6561608835646, + 5379.10351904977 + ] + }, + "raw_value": "P-10143-32A-F2A-n", + "clean_value": "P-10143-32A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548FE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1832.504381413272, + "min_y": 5351.488389033776, + "max_x": 1843.9271711872848, + "max_y": 5352.608270384169, + "center": [ + 1838.2157763002783, + 5352.048329708972 + ] + }, + "raw_value": "P-10127-65A-F2A-n", + "clean_value": "P-10127-65A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5548FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.385333254064, + "min_y": 5300.119747095998, + "max_x": 1892.385333254064, + "max_y": 5301.231537730799, + "center": [ + 1892.385333254064, + 5300.675642413398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.385333254064, + 5301.231537730799 + ], + [ + 1892.385333254064, + 5300.119747095998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554900", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.946390900248, + "min_y": 5323.388232105463, + "max_x": 1850.946390900248, + "max_y": 5324.500022740267, + "center": [ + 1850.946390900248, + 5323.944127422865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.946390900248, + 5324.500022740267 + ], + [ + 1850.946390900248, + 5323.388232105463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554901", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.946390900248, + "min_y": 5323.388232105463, + "max_x": 1850.946390900248, + "max_y": 5324.500022740267, + "center": [ + 1850.946390900248, + 5323.944127422865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.946390900248, + 5324.500022740267 + ], + [ + 1850.946390900248, + 5323.388232105463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554902", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.983443096257, + "min_y": 5330.764815935641, + "max_x": 1850.983443096257, + "max_y": 5331.876606570445, + "center": [ + 1850.983443096257, + 5331.320711253044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.983443096257, + 5331.876606570445 + ], + [ + 1850.983443096257, + 5330.764815935641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554903", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.983443096257, + "min_y": 5330.764815935641, + "max_x": 1850.983443096257, + "max_y": 5331.876606570445, + "center": [ + 1850.983443096257, + 5331.320711253044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.983443096257, + 5331.876606570445 + ], + [ + 1850.983443096257, + 5330.764815935641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554904", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1851.794820916603, + "min_y": 5311.921537107004, + "max_x": 1862.9936344205369, + "max_y": 5313.788006024326, + "center": [ + 1857.3942276685698, + 5312.854771565665 + ] + }, + "raw_value": "%%UE-10117", + "clean_value": "E-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554905", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.303250846944, + "min_y": 5358.695062865028, + "max_x": 1828.303250846944, + "max_y": 5359.806853499839, + "center": [ + 1828.303250846944, + 5359.250958182434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.303250846944, + 5359.806853499839 + ], + [ + 1828.303250846944, + 5358.695062865028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554906", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.630416698925, + "min_y": 5358.695062865028, + "max_x": 1828.630416698925, + "max_y": 5359.806853499839, + "center": [ + 1828.630416698925, + 5359.250958182434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.630416698925, + 5359.806853499839 + ], + [ + 1828.630416698925, + 5358.695062865028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554907", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.688894909747, + "max_x": 1826.466975117143, + "max_y": 5359.800685544552, + "center": [ + 1826.466975117143, + 5359.24479022715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5359.800685544552 + ], + [ + 1826.466975117143, + 5358.688894909747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554908", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.688894909747, + "max_x": 1826.466975117143, + "max_y": 5359.800685544552, + "center": [ + 1826.466975117143, + 5359.24479022715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5359.800685544552 + ], + [ + 1826.466975117143, + 5358.688894909747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554909", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5359.431722123819, + "max_x": 1827.083206563281, + "max_y": 5359.800685544552, + "center": [ + 1826.775090840212, + 5359.616203834185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.083206563281, + 5359.431722123819 + ], + [ + 1826.466975117143, + 5359.800685544552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.701230820313, + "max_x": 1826.466975117143, + "max_y": 5359.800685544552, + "center": [ + 1826.466975117143, + 5359.250958182432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5359.800685544552 + ], + [ + 1826.466975117143, + 5358.701230820313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.466975117143, + "min_y": 5358.701230820313, + "max_x": 1827.083206563281, + "max_y": 5359.070194241047, + "center": [ + 1826.775090840212, + 5358.88571253068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.466975117143, + 5358.701230820313 + ], + [ + 1827.083206563281, + 5359.070194241047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.687019400801, + "min_y": 5359.431722123813, + "max_x": 1828.303250846944, + "max_y": 5359.800685544552, + "center": [ + 1827.9951351238724, + 5359.616203834183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.687019400801, + 5359.431722123813 + ], + [ + 1828.303250846944, + 5359.800685544552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.303250846944, + "min_y": 5358.701230820313, + "max_x": 1828.303250846944, + "max_y": 5359.800685544552, + "center": [ + 1828.303250846944, + 5359.250958182432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.303250846944, + 5359.800685544552 + ], + [ + 1828.303250846944, + 5358.701230820313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.687019400801, + "min_y": 5358.701230820313, + "max_x": 1828.303250846944, + "max_y": 5359.070194241049, + "center": [ + 1827.9951351238724, + 5358.88571253068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.303250846944, + 5358.701230820313 + ], + [ + 1827.687019400801, + 5359.070194241049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55490F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.201016163579, + "min_y": 5351.702053797847, + "max_x": 1828.201016163579, + "max_y": 5352.813844432653, + "center": [ + 1828.201016163579, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.201016163579, + 5352.813844432653 + ], + [ + 1828.201016163579, + 5351.702053797847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554910", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.528182015563, + "min_y": 5351.702053797847, + "max_x": 1828.528182015563, + "max_y": 5352.813844432653, + "center": [ + 1828.528182015563, + 5352.25794911525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.528182015563, + 5352.813844432653 + ], + [ + 1828.528182015563, + 5351.702053797847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554911", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5351.703873817495, + "max_x": 1826.037574581799, + "max_y": 5352.8156644523, + "center": [ + 1826.037574581799, + 5352.259769134897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5352.8156644523 + ], + [ + 1826.037574581799, + 5351.703873817495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554912", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.037574581799, + "min_y": 5351.703873817495, + "max_x": 1826.037574581799, + "max_y": 5352.8156644523, + "center": [ + 1826.037574581799, + 5352.259769134897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.037574581799, + 5352.8156644523 + ], + [ + 1826.037574581799, + 5351.703873817495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554913", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.364740433781, + "min_y": 5352.438713056635, + "max_x": 1826.980971879919, + "max_y": 5352.807676477374, + "center": [ + 1826.67285615685, + 5352.623194767004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.980971879919, + 5352.438713056635 + ], + [ + 1826.364740433781, + 5352.807676477374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554914", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.364740433781, + "min_y": 5351.708221753129, + "max_x": 1826.364740433781, + "max_y": 5352.807676477374, + "center": [ + 1826.364740433781, + 5352.257949115252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.364740433781, + 5352.807676477374 + ], + [ + 1826.364740433781, + 5351.708221753129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554915", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.364740433781, + "min_y": 5351.708221753129, + "max_x": 1826.980971879919, + "max_y": 5352.077185173868, + "center": [ + 1826.67285615685, + 5351.892703463498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.364740433781, + 5351.708221753129 + ], + [ + 1826.980971879919, + 5352.077185173868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554916", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.584784717438, + "min_y": 5352.438713056635, + "max_x": 1828.201016163579, + "max_y": 5352.807676477374, + "center": [ + 1827.8929004405086, + 5352.623194767004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.584784717438, + 5352.438713056635 + ], + [ + 1828.201016163579, + 5352.807676477374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554917", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.201016163579, + "min_y": 5351.708221753129, + "max_x": 1828.201016163579, + "max_y": 5352.807676477374, + "center": [ + 1828.201016163579, + 5352.257949115252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.201016163579, + 5352.807676477374 + ], + [ + 1828.201016163579, + 5351.708221753129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554918", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.584784717438, + "min_y": 5351.708221753129, + "max_x": 1828.201016163579, + "max_y": 5352.077185173868, + "center": [ + 1827.8929004405086, + 5351.892703463498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.201016163579, + 5351.708221753129 + ], + [ + 1827.584784717438, + 5352.077185173868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554919", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.547404457005, + "min_y": 5376.450833418125, + "max_x": 1873.163635903143, + "max_y": 5376.819796838865, + "center": [ + 1872.855520180074, + 5376.635315128495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.163635903143, + 5376.819796838865 + ], + [ + 1872.547404457005, + 5376.450833418125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.547404457005, + "min_y": 5376.450833418125, + "max_x": 1872.547404457005, + "max_y": 5377.550288142368, + "center": [ + 1872.547404457005, + 5377.000560780247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.547404457005, + 5376.450833418125 + ], + [ + 1872.547404457005, + 5377.550288142368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.547404457005, + "min_y": 5377.181324721634, + "max_x": 1873.163635903143, + "max_y": 5377.550288142368, + "center": [ + 1872.855520180074, + 5377.365806432001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.547404457005, + 5377.550288142368 + ], + [ + 1873.163635903143, + 5377.181324721634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.767448740666, + "min_y": 5376.450833418125, + "max_x": 1874.383680186803, + "max_y": 5376.819796838865, + "center": [ + 1874.0755644637345, + 5376.635315128495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.767448740666, + 5376.819796838865 + ], + [ + 1874.383680186803, + 5376.450833418125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.383680186803, + "min_y": 5376.450833418125, + "max_x": 1874.383680186803, + "max_y": 5377.550288142368, + "center": [ + 1874.383680186803, + 5377.000560780247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.383680186803, + 5376.450833418125 + ], + [ + 1874.383680186803, + 5377.550288142368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.767448740666, + "min_y": 5377.181324721629, + "max_x": 1874.383680186803, + "max_y": 5377.550288142368, + "center": [ + 1874.0755644637345, + 5377.365806431999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.383680186803, + 5377.550288142368 + ], + [ + 1873.767448740666, + 5377.181324721629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55491F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.849326636229, + "min_y": 5376.446485482503, + "max_x": 1856.849326636229, + "max_y": 5377.558276117309, + "center": [ + 1856.849326636229, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.849326636229, + 5377.558276117309 + ], + [ + 1856.849326636229, + 5376.446485482503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554920", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.176492488208, + "min_y": 5376.446485482503, + "max_x": 1857.176492488208, + "max_y": 5377.558276117309, + "center": [ + 1857.176492488208, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.176492488208, + 5377.558276117309 + ], + [ + 1857.176492488208, + 5376.446485482503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554921", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.685885054444, + "min_y": 5376.448305502153, + "max_x": 1854.685885054444, + "max_y": 5377.560096136958, + "center": [ + 1854.685885054444, + 5377.004200819556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.685885054444, + 5377.560096136958 + ], + [ + 1854.685885054444, + 5376.448305502153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554922", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.685885054444, + "min_y": 5376.448305502153, + "max_x": 1854.685885054444, + "max_y": 5377.560096136958, + "center": [ + 1854.685885054444, + 5377.004200819556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.685885054444, + 5377.560096136958 + ], + [ + 1854.685885054444, + 5376.448305502153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554923", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.013050906426, + "min_y": 5377.183144741292, + "max_x": 1855.629282352564, + "max_y": 5377.552108162026, + "center": [ + 1855.321166629495, + 5377.36762645166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.629282352564, + 5377.183144741292 + ], + [ + 1855.013050906426, + 5377.552108162026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554924", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.013050906426, + "min_y": 5376.452653437785, + "max_x": 1855.013050906426, + "max_y": 5377.552108162026, + "center": [ + 1855.013050906426, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.013050906426, + 5377.552108162026 + ], + [ + 1855.013050906426, + 5376.452653437785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554925", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.013050906426, + "min_y": 5376.452653437785, + "max_x": 1855.629282352569, + "max_y": 5376.821616858523, + "center": [ + 1855.3211666294974, + 5376.637135148154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.013050906426, + 5376.452653437785 + ], + [ + 1855.629282352569, + 5376.821616858523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554926", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.233095190086, + "min_y": 5377.183144741287, + "max_x": 1856.849326636229, + "max_y": 5377.552108162026, + "center": [ + 1856.5412109131576, + 5377.367626451656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.233095190086, + 5377.183144741287 + ], + [ + 1856.849326636229, + 5377.552108162026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554927", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.849326636229, + "min_y": 5376.452653437785, + "max_x": 1856.849326636229, + "max_y": 5377.552108162026, + "center": [ + 1856.849326636229, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.849326636229, + 5377.552108162026 + ], + [ + 1856.849326636229, + 5376.452653437785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1856.233095190089, + "min_y": 5376.452653437785, + "max_x": 1856.849326636229, + "max_y": 5376.821616858523, + "center": [ + 1856.541210913159, + 5376.637135148154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.849326636229, + 5376.452653437785 + ], + [ + 1856.233095190089, + 5376.821616858523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554929", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.013325727698, + "min_y": 5376.4464854825, + "max_x": 1842.013325727698, + "max_y": 5377.558276117305, + "center": [ + 1842.013325727698, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.013325727698, + 5377.558276117305 + ], + [ + 1842.013325727698, + 5376.4464854825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.340491579679, + "min_y": 5376.4464854825, + "max_x": 1842.340491579679, + "max_y": 5377.558276117305, + "center": [ + 1842.340491579679, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.340491579679, + 5377.558276117305 + ], + [ + 1842.340491579679, + 5376.4464854825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.849884145916, + "min_y": 5376.448305502151, + "max_x": 1839.849884145916, + "max_y": 5377.560096136956, + "center": [ + 1839.849884145916, + 5377.004200819554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.849884145916, + 5377.560096136956 + ], + [ + 1839.849884145916, + 5376.448305502151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.849884145916, + "min_y": 5376.448305502151, + "max_x": 1839.849884145916, + "max_y": 5377.560096136956, + "center": [ + 1839.849884145916, + 5377.004200819554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.849884145916, + 5377.560096136956 + ], + [ + 1839.849884145916, + 5376.448305502151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.177049997897, + "min_y": 5377.183144741291, + "max_x": 1840.793281444035, + "max_y": 5377.552108162024, + "center": [ + 1840.485165720966, + 5377.367626451657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.793281444035, + 5377.183144741291 + ], + [ + 1840.177049997897, + 5377.552108162024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.177049997897, + "min_y": 5376.45265343778, + "max_x": 1840.177049997897, + "max_y": 5377.552108162024, + "center": [ + 1840.177049997897, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.177049997897, + 5377.552108162024 + ], + [ + 1840.177049997897, + 5376.45265343778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55492F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.177049997897, + "min_y": 5376.45265343778, + "max_x": 1840.793281444037, + "max_y": 5376.821616858521, + "center": [ + 1840.485165720967, + 5376.63713514815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.177049997897, + 5376.45265343778 + ], + [ + 1840.793281444037, + 5376.821616858521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554930", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.397094281557, + "min_y": 5377.183144741285, + "max_x": 1842.013325727698, + "max_y": 5377.552108162024, + "center": [ + 1841.7052100046276, + 5377.367626451654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.397094281557, + 5377.183144741285 + ], + [ + 1842.013325727698, + 5377.552108162024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554931", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.013325727698, + "min_y": 5376.45265343778, + "max_x": 1842.013325727698, + "max_y": 5377.552108162024, + "center": [ + 1842.013325727698, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.013325727698, + 5377.552108162024 + ], + [ + 1842.013325727698, + 5376.45265343778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554932", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.397094281557, + "min_y": 5376.45265343778, + "max_x": 1842.013325727698, + "max_y": 5376.821616858517, + "center": [ + 1841.7052100046276, + 5376.637135148148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.013325727698, + 5376.45265343778 + ], + [ + 1841.397094281557, + 5376.821616858517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554933", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.487662272539, + "min_y": 5376.123667566147, + "max_x": 1868.487662272539, + "max_y": 5377.877453994353, + "center": [ + 1868.487662272539, + 5377.00056078025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.487662272539, + 5377.877453994353 + ], + [ + 1868.487662272539, + 5376.123667566147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554934", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.998323234719, + "min_y": 5376.123667566147, + "max_x": 1868.487662272539, + "max_y": 5376.123667566147, + "center": [ + 1866.742992753629, + 5376.123667566147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.487662272539, + 5376.123667566147 + ], + [ + 1864.998323234719, + 5376.123667566147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554935", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.998323234719, + "min_y": 5376.123667566147, + "max_x": 1864.998323234719, + "max_y": 5377.877453994353, + "center": [ + 1864.998323234719, + 5377.00056078025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.998323234719, + 5376.123667566147 + ], + [ + 1864.998323234719, + 5377.877453994353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554936", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.998323234719, + "min_y": 5377.877453994353, + "max_x": 1868.487662272539, + "max_y": 5377.877453994353, + "center": [ + 1866.742992753629, + 5377.877453994353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.998323234719, + 5377.877453994353 + ], + [ + 1868.487662272539, + 5377.877453994353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554937", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.447082169889, + "min_y": 5305.708731739681, + "max_x": 1880.447082169889, + "max_y": 5307.462518167884, + "center": [ + 1880.447082169889, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1880.447082169889, + 5307.462518167884 + ], + [ + 1880.447082169889, + 5305.708731739681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554938", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.95774313207, + "min_y": 5305.708731739681, + "max_x": 1880.447082169889, + "max_y": 5305.708731739681, + "center": [ + 1878.7024126509796, + 5305.708731739681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1880.447082169889, + 5305.708731739681 + ], + [ + 1876.95774313207, + 5305.708731739681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554939", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.95774313207, + "min_y": 5305.708731739681, + "max_x": 1876.95774313207, + "max_y": 5307.462518167884, + "center": [ + 1876.95774313207, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.95774313207, + 5305.708731739681 + ], + [ + 1876.95774313207, + 5307.462518167884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55493A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.95774313207, + "min_y": 5307.462518167884, + "max_x": 1880.447082169889, + "max_y": 5307.462518167884, + "center": [ + 1878.7024126509796, + 5307.462518167884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.95774313207, + 5307.462518167884 + ], + [ + 1880.447082169889, + 5307.462518167884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55493B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.34564921824, + "min_y": 5376.446485482503, + "max_x": 1863.34564921824, + "max_y": 5377.558276117309, + "center": [ + 1863.34564921824, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.34564921824, + 5377.558276117309 + ], + [ + 1863.34564921824, + 5376.446485482503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55493C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.34564921824, + "min_y": 5376.446485482503, + "max_x": 1863.34564921824, + "max_y": 5377.558276117309, + "center": [ + 1863.34564921824, + 5377.002380799906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.34564921824, + 5377.558276117309 + ], + [ + 1863.34564921824, + 5376.446485482503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55493D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.125182647251, + "min_y": 5383.708945098497, + "max_x": 1850.443576307232, + "max_y": 5383.708945098497, + "center": [ + 1848.7843794772416, + 5383.708945098497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.125182647251, + 5383.708945098497 + ], + [ + 1850.443576307232, + 5383.708945098497 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55493E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.443576307232, + "min_y": 5382.146478144012, + "max_x": 1850.443576307232, + "max_y": 5383.708945098497, + "center": [ + 1850.443576307232, + 5382.927711621254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.443576307232, + 5383.708945098497 + ], + [ + 1850.443576307232, + 5382.146478144012 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55493F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.125182647251, + "min_y": 5382.146478144012, + "max_x": 1850.443576307232, + "max_y": 5382.146478144012, + "center": [ + 1848.7843794772416, + 5382.146478144012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.443576307232, + 5382.146478144012 + ], + [ + 1847.125182647251, + 5382.146478144012 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.125182647251, + "min_y": 5382.146478144012, + "max_x": 1847.125182647251, + "max_y": 5383.708945098497, + "center": [ + 1847.125182647251, + 5382.927711621254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.125182647251, + 5382.146478144012 + ], + [ + 1847.125182647251, + 5383.708945098497 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554941", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.549498674469, + "min_y": 5300.119747095998, + "max_x": 1894.549498674469, + "max_y": 5301.231537730799, + "center": [ + 1894.549498674469, + 5300.675642413398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.549498674469, + 5301.231537730799 + ], + [ + 1894.549498674469, + 5300.119747095998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554942", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.87666452645, + "min_y": 5300.119747095998, + "max_x": 1894.87666452645, + "max_y": 5301.231537730799, + "center": [ + 1894.87666452645, + 5300.675642413398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.87666452645, + 5301.231537730799 + ], + [ + 1894.87666452645, + 5300.119747095998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554943", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.713222944668, + "min_y": 5300.856406354786, + "max_x": 1893.329454390806, + "max_y": 5301.22536977552, + "center": [ + 1893.021338667737, + 5301.040888065153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.329454390806, + 5300.856406354786 + ], + [ + 1892.713222944668, + 5301.22536977552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554944", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.713222944668, + "min_y": 5300.125915051281, + "max_x": 1892.713222944668, + "max_y": 5301.22536977552, + "center": [ + 1892.713222944668, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.713222944668, + 5301.22536977552 + ], + [ + 1892.713222944668, + 5300.125915051281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554945", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.713222944668, + "min_y": 5300.125915051281, + "max_x": 1893.329454390806, + "max_y": 5300.494878472013, + "center": [ + 1893.021338667737, + 5300.310396761646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.713222944668, + 5300.125915051281 + ], + [ + 1893.329454390806, + 5300.494878472013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554946", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.933267228328, + "min_y": 5300.856406354781, + "max_x": 1894.549498674469, + "max_y": 5301.22536977552, + "center": [ + 1894.2413829513985, + 5301.04088806515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.933267228328, + 5300.856406354781 + ], + [ + 1894.549498674469, + 5301.22536977552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554947", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1894.549498674469, + "min_y": 5300.125915051281, + "max_x": 1894.549498674469, + "max_y": 5301.22536977552, + "center": [ + 1894.549498674469, + 5300.6756424134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.549498674469, + 5301.22536977552 + ], + [ + 1894.549498674469, + 5300.125915051281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554948", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1893.933267228328, + "min_y": 5300.125915051281, + "max_x": 1894.549498674469, + "max_y": 5300.494878472013, + "center": [ + 1894.2413829513985, + 5300.310396761646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.549498674469, + 5300.125915051281 + ], + [ + 1893.933267228328, + 5300.494878472013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554949", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.808034834711, + "min_y": 5313.286956246754, + "max_x": 1896.126428494689, + "max_y": 5313.286956246754, + "center": [ + 1894.4672316647, + 5313.286956246754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.808034834711, + 5313.286956246754 + ], + [ + 1896.126428494689, + 5313.286956246754 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55494A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1896.126428494689, + "min_y": 5311.724489292266, + "max_x": 1896.126428494689, + "max_y": 5313.286956246754, + "center": [ + 1896.126428494689, + 5312.505722769511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1896.126428494689, + 5313.286956246754 + ], + [ + 1896.126428494689, + 5311.724489292266 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55494B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.808034834711, + "min_y": 5311.724489292266, + "max_x": 1896.126428494689, + "max_y": 5311.724489292266, + "center": [ + 1894.4672316647, + 5311.724489292266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1896.126428494689, + 5311.724489292266 + ], + [ + 1892.808034834711, + 5311.724489292266 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55494C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.808034834711, + "min_y": 5311.724489292266, + "max_x": 1892.808034834711, + "max_y": 5313.286956246754, + "center": [ + 1892.808034834711, + 5312.505722769511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.808034834711, + 5311.724489292266 + ], + [ + 1892.808034834711, + 5313.286956246754 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55494D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.357102658481, + "min_y": 5306.02972963638, + "max_x": 1875.357102658481, + "max_y": 5307.141520271185, + "center": [ + 1875.357102658481, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.357102658481, + 5307.141520271185 + ], + [ + 1875.357102658481, + 5306.02972963638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55494E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.357102658481, + "min_y": 5306.02972963638, + "max_x": 1875.357102658481, + "max_y": 5307.141520271185, + "center": [ + 1875.357102658481, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.357102658481, + 5307.141520271185 + ], + [ + 1875.357102658481, + 5306.02972963638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55494F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.173132534358, + "min_y": 5368.784146477173, + "max_x": 1850.173132534358, + "max_y": 5369.895937111979, + "center": [ + 1850.173132534358, + 5369.340041794576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.173132534358, + 5369.895937111979 + ], + [ + 1850.173132534358, + 5368.784146477173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554950", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.500298386341, + "min_y": 5368.784146477173, + "max_x": 1850.500298386341, + "max_y": 5369.895937111979, + "center": [ + 1850.500298386341, + 5369.340041794576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.500298386341, + 5369.895937111979 + ], + [ + 1850.500298386341, + 5368.784146477173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554951", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.009690952578, + "min_y": 5368.785966496821, + "max_x": 1848.009690952578, + "max_y": 5369.897757131626, + "center": [ + 1848.009690952578, + 5369.341861814224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.009690952578, + 5369.897757131626 + ], + [ + 1848.009690952578, + 5368.785966496821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554952", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.009690952578, + "min_y": 5368.785966496821, + "max_x": 1848.009690952578, + "max_y": 5369.897757131626, + "center": [ + 1848.009690952578, + 5369.341861814224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.009690952578, + 5369.897757131626 + ], + [ + 1848.009690952578, + 5368.785966496821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554953", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.336856804559, + "min_y": 5369.520805735958, + "max_x": 1848.953088250697, + "max_y": 5369.889769156697, + "center": [ + 1848.644972527628, + 5369.705287446328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.953088250697, + 5369.520805735958 + ], + [ + 1848.336856804559, + 5369.889769156697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554954", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.336856804559, + "min_y": 5368.790314432453, + "max_x": 1848.336856804559, + "max_y": 5369.889769156697, + "center": [ + 1848.336856804559, + 5369.340041794575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.336856804559, + 5369.889769156697 + ], + [ + 1848.336856804559, + 5368.790314432453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554955", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.336856804559, + "min_y": 5368.790314432453, + "max_x": 1848.953088250697, + "max_y": 5369.159277853195, + "center": [ + 1848.644972527628, + 5368.974796142824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.336856804559, + 5368.790314432453 + ], + [ + 1848.953088250697, + 5369.159277853195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554956", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.55690108822, + "min_y": 5369.520805735958, + "max_x": 1850.173132534358, + "max_y": 5369.889769156697, + "center": [ + 1849.865016811289, + 5369.705287446328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.55690108822, + 5369.520805735958 + ], + [ + 1850.173132534358, + 5369.889769156697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554957", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.173132534358, + "min_y": 5368.790314432453, + "max_x": 1850.173132534358, + "max_y": 5369.889769156697, + "center": [ + 1850.173132534358, + 5369.340041794575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.173132534358, + 5369.889769156697 + ], + [ + 1850.173132534358, + 5368.790314432453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554958", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.55690108822, + "min_y": 5368.790314432453, + "max_x": 1850.173132534358, + "max_y": 5369.159277853195, + "center": [ + 1849.865016811289, + 5368.974796142824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.173132534358, + 5368.790314432453 + ], + [ + 1849.55690108822, + 5369.159277853195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554959", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.023092794158, + "min_y": 5274.876359360327, + "max_x": 1858.392056214892, + "max_y": 5275.492590806464, + "center": [ + 1858.207574504525, + 5275.184475083395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.392056214892, + 5275.492590806464 + ], + [ + 1858.023092794158, + 5274.876359360327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.167721278268, + "min_y": 5272.851560582785, + "max_x": 1859.267176002507, + "max_y": 5272.851560582785, + "center": [ + 1858.7174486403874, + 5272.851560582785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.167721278268, + 5272.851560582785 + ], + [ + 1859.267176002507, + 5272.851560582785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.753584097661, + "min_y": 5274.876359360327, + "max_x": 1859.122547518397, + "max_y": 5275.492590806464, + "center": [ + 1858.938065808029, + 5275.184475083395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.122547518397, + 5274.876359360327 + ], + [ + 1858.753584097661, + 5275.492590806464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.023092794158, + "min_y": 5276.096403643984, + "max_x": 1858.392056214894, + "max_y": 5276.712635090126, + "center": [ + 1858.2075745045258, + 5276.404519367055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.392056214894, + 5276.096403643984 + ], + [ + 1858.023092794158, + 5276.712635090126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.023092794158, + "min_y": 5276.712635090126, + "max_x": 1859.122547518397, + "max_y": 5276.712635090126, + "center": [ + 1858.5728201562774, + 5276.712635090126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.023092794158, + 5276.712635090126 + ], + [ + 1859.122547518397, + 5276.712635090126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.753584097658, + "min_y": 5276.096403643984, + "max_x": 1859.122547518397, + "max_y": 5276.712635090126, + "center": [ + 1858.9380658080274, + 5276.404519367055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.122547518397, + 5276.712635090126 + ], + [ + 1858.753584097658, + 5276.096403643984 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55495F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.951250263271, + "min_y": 5278.126625976088, + "max_x": 1851.951250263271, + "max_y": 5279.238416610894, + "center": [ + 1851.951250263271, + 5278.682521293491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.951250263271, + 5279.238416610894 + ], + [ + 1851.951250263271, + 5278.126625976088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554960", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.951250263271, + "min_y": 5278.126625976088, + "max_x": 1851.951250263271, + "max_y": 5279.238416610894, + "center": [ + 1851.951250263271, + 5278.682521293491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.951250263271, + 5279.238416610894 + ], + [ + 1851.951250263271, + 5278.126625976088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554961", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.441857697037, + "min_y": 5278.680701273843, + "max_x": 1856.665438966647, + "max_y": 5278.680701273843, + "center": [ + 1855.553648331842, + 5278.680701273843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.665438966647, + 5278.680701273843 + ], + [ + 1854.441857697037, + 5278.680701273843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554962", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.114691845056, + "min_y": 5278.124805956437, + "max_x": 1854.114691845056, + "max_y": 5279.236596591243, + "center": [ + 1854.114691845056, + 5278.68070127384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.114691845056, + 5279.236596591243 + ], + [ + 1854.114691845056, + 5278.124805956437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554963", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.441857697037, + "min_y": 5278.124805956437, + "max_x": 1854.441857697037, + "max_y": 5279.236596591243, + "center": [ + 1854.441857697037, + 5278.68070127384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.441857697037, + 5279.236596591243 + ], + [ + 1854.441857697037, + 5278.124805956437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554964", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.997753014439, + "min_y": 5277.568910639036, + "max_x": 1856.109543649244, + "max_y": 5278.680701273843, + "center": [ + 1855.5536483318415, + 5278.12480595644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.997753014439, + 5278.680701273843 + ], + [ + 1856.109543649244, + 5277.568910639036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554965", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1855.831595990545, + "min_y": 5277.290962980335, + "max_x": 1856.387491307948, + "max_y": 5277.846858297741, + "center": [ + 1856.1095436492465, + 5277.568910639038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.387491307948, + 5277.846858297741 + ], + [ + 1855.831595990545, + 5277.290962980335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554966", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.278416115252, + "min_y": 5278.861465215228, + "max_x": 1852.894647561392, + "max_y": 5279.230428635964, + "center": [ + 1852.5865318383221, + 5279.045946925597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.894647561392, + 5278.861465215228 + ], + [ + 1852.278416115252, + 5279.230428635964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554967", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.278416115252, + "min_y": 5278.13097391172, + "max_x": 1852.278416115252, + "max_y": 5279.230428635964, + "center": [ + 1852.278416115252, + 5278.680701273842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.278416115252, + 5279.230428635964 + ], + [ + 1852.278416115252, + 5278.13097391172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554968", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.278416115252, + "min_y": 5278.13097391172, + "max_x": 1852.894647561392, + "max_y": 5278.499937332458, + "center": [ + 1852.5865318383221, + 5278.315455622089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.278416115252, + 5278.13097391172 + ], + [ + 1852.894647561392, + 5278.499937332458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554969", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1853.498460398912, + "min_y": 5278.861465215221, + "max_x": 1854.114691845056, + "max_y": 5279.230428635964, + "center": [ + 1853.806576121984, + 5279.045946925593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1853.498460398912, + 5278.861465215221 + ], + [ + 1854.114691845056, + 5279.230428635964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1854.114691845056, + "min_y": 5278.13097391172, + "max_x": 1854.114691845056, + "max_y": 5279.230428635964, + "center": [ + 1854.114691845056, + 5278.680701273842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.114691845056, + 5279.230428635964 + ], + [ + 1854.114691845056, + 5278.13097391172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1853.498460398912, + "min_y": 5278.13097391172, + "max_x": 1854.114691845056, + "max_y": 5278.499937332458, + "center": [ + 1853.806576121984, + 5278.315455622089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.114691845056, + 5278.13097391172 + ], + [ + 1853.498460398912, + 5278.499937332458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1864.7921826641996, + "min_y": 5278.447351642228, + "max_x": 1865.2240415888223, + "max_y": 5278.879210566851, + "center": [ + 1865.008112126511, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.008112126511, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1864.3603237395832, + "min_y": 5278.44735164223, + "max_x": 1864.792182664201, + "max_y": 5278.879210566848, + "center": [ + 1864.576253201892, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.576253201892, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1863.928464814965, + "min_y": 5278.44735164223, + "max_x": 1864.3603237395828, + "max_y": 5278.879210566848, + "center": [ + 1864.144394277274, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.144394277274, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55496F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1863.9284648149603, + "min_y": 5278.447351642229, + "max_x": 1864.3603237395816, + "max_y": 5278.87921056685, + "center": [ + 1864.144394277271, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.144394277271, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554970", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1863.4966058903428, + "min_y": 5278.44735164223, + "max_x": 1863.928464814961, + "max_y": 5278.879210566848, + "center": [ + 1863.712535352652, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.712535352652, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554971", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1863.06474696572, + "min_y": 5278.447351642228, + "max_x": 1863.4966058903422, + "max_y": 5278.879210566851, + "center": [ + 1863.280676428031, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.280676428031, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554972", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1862.6328880411043, + "min_y": 5278.44735164223, + "max_x": 1863.064746965722, + "max_y": 5278.879210566848, + "center": [ + 1862.848817503413, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.848817503413, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554973", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1862.2010291164822, + "min_y": 5278.44735164223, + "max_x": 1862.6328880411, + "max_y": 5278.879210566848, + "center": [ + 1862.416958578791, + 5278.663281104539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.416958578791, + 5278.663281104539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554974", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.9220639873, + "min_y": 5318.994718083283, + "max_x": 1850.746582495126, + "max_y": 5318.994718083283, + "center": [ + 1847.834323241213, + 5318.994718083283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.9220639873, + 5318.994718083283 + ], + [ + 1850.746582495126, + 5318.994718083283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554975", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.090365488413, + "min_y": 5318.102749389762, + "max_x": 1845.685045928138, + "max_y": 5318.102749389762, + "center": [ + 1844.8877057082755, + 5318.102749389762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.685045928138, + 5318.102749389762 + ], + [ + 1844.090365488413, + 5318.102749389762 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554976", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.090365488413, + "min_y": 5316.85697531061, + "max_x": 1845.696320349244, + "max_y": 5316.85697531061, + "center": [ + 1844.8933429188285, + 5316.85697531061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.696320349244, + 5316.85697531061 + ], + [ + 1844.090365488413, + 5316.85697531061 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554977", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.090365488413, + "min_y": 5316.36654662037, + "max_x": 1844.090365488413, + "max_y": 5318.577006381726, + "center": [ + 1844.090365488413, + 5317.471776501048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.090365488413, + 5318.577006381726 + ], + [ + 1844.090365488413, + 5316.36654662037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554978", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.894020925085, + "min_y": 5316.36654662037, + "max_x": 1843.894020925085, + "max_y": 5318.577006381726, + "center": [ + 1843.894020925085, + 5317.471776501048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.894020925085, + 5318.577006381726 + ], + [ + 1843.894020925085, + 5316.36654662037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554979", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1840.066223419219, + "min_y": 5316.91610535787, + "max_x": 1841.634056951408, + "max_y": 5318.2226333013605, + "center": [ + 1840.8501401853136, + 5317.569369329615 + ] + }, + "raw_value": "SG", + "clean_value": "SG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55497A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1838.8529927625086, + "min_y": 5315.297631844503, + "max_x": 1843.5181344003695, + "max_y": 5319.962773482363, + "center": [ + 1841.185563581439, + 5317.630202663433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.185563581439, + 5317.630202663433 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55497B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1850.771830609146, + "min_y": 5380.394800742405, + "max_x": 1854.690543420989, + "max_y": 5381.701038346353, + "center": [ + 1852.7311870150675, + 5381.047919544379 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55497C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1864.569576660359, + "min_y": 5379.828907016638, + "max_x": 1868.4882894722018, + "max_y": 5381.135144620586, + "center": [ + 1866.5289330662804, + 5380.482025818612 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55497D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1898.278752838087, + "min_y": 5313.834605968043, + "max_x": 1902.1974656499299, + "max_y": 5315.140843571991, + "center": [ + 1900.2381092440085, + 5314.487724770017 + ] + }, + "raw_value": "10118", + "clean_value": "10118", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55497E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1876.537679094867, + "min_y": 5309.159460107327, + "max_x": 1880.4563919067098, + "max_y": 5310.4656977112745, + "center": [ + 1878.4970355007883, + 5309.812578909301 + ] + }, + "raw_value": "10118", + "clean_value": "10118", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55497F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1847.860626984775, + "min_y": 5278.673702259149, + "max_x": 1851.951250263271, + "max_y": 5278.680701273842, + "center": [ + 1849.905938624023, + 5278.677201766495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984775, + 5278.673702259149 + ], + [ + 1851.951250263271, + 5278.680701273842 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554981", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.7466852532182, + "min_y": 5315.047062451439, + "max_x": 1857.4708140428736, + "max_y": 5320.771191241095, + "center": [ + 1854.608749648046, + 5317.909126846267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1854.608749648046, + 5317.909126846267 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554982", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1853.635045111982, + "min_y": 5318.315122538186, + "max_x": 1855.2025302367192, + "max_y": 5319.621360142134, + "center": [ + 1854.4187876743506, + 5318.968241340161 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554983", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1849.972326133175, + "min_y": 5317.909126846272, + "max_x": 1850.578730156836, + "max_y": 5317.909126846272, + "center": [ + 1850.2755281450054, + 5317.909126846272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1849.972326133175, + 5317.909126846272 + ], + [ + 1850.578730156836, + 5317.909126846272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554984", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.943322921839, + "min_y": 5317.359399484147, + "max_x": 1850.943322921839, + "max_y": 5318.45885420839, + "center": [ + 1850.943322921839, + 5317.909126846269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.943322921839, + 5317.359399484147 + ], + [ + 1850.943322921839, + 5318.45885420839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554985", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.578730156836, + "min_y": 5317.359399484147, + "max_x": 1850.578730156836, + "max_y": 5318.45885420839, + "center": [ + 1850.578730156836, + 5317.909126846269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.578730156836, + 5317.359399484147 + ], + [ + 1850.578730156836, + 5318.45885420839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554986", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1850.943322921839, + "min_y": 5317.909126846267, + "max_x": 1851.746685253218, + "max_y": 5317.909126846267, + "center": [ + 1851.3450040875284, + 5317.909126846267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.943322921839, + 5317.909126846267 + ], + [ + 1851.746685253218, + 5317.909126846267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554987", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5279.988593382489, + "max_x": 1908.949965733491, + "max_y": 5279.988593382489, + "center": [ + 1908.090750594882, + 5279.988593382489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5279.988593382489 + ], + [ + 1907.231535456273, + 5279.988593382489 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554988", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1904.225009782857, + "min_y": 5306.58221196781, + "max_x": 1907.231535456273, + "max_y": 5306.582211967811, + "center": [ + 1905.728272619565, + 5306.5822119678105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5306.58221196781 + ], + [ + 1904.225009782857, + 5306.582211967811 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554989", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.671950903837, + "min_y": 5376.413668394341, + "max_x": 1811.3744062780484, + "max_y": 5377.719905998289, + "center": [ + 1809.0231785909427, + 5377.066787196314 + ] + }, + "raw_value": "10111D", + "clean_value": "10111D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.059711563076, + "min_y": 5370.780516674215, + "max_x": 1811.091711563076, + "max_y": 5371.9005166742145, + "center": [ + 1809.0757115630759, + 5371.340516674214 + ] + }, + "raw_value": "10111D", + "clean_value": "10111D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.059711563068, + "min_y": 5364.266687417313, + "max_x": 1811.091711563068, + "max_y": 5365.386687417313, + "center": [ + 1809.0757115630681, + 5364.826687417313 + ] + }, + "raw_value": "10111D", + "clean_value": "10111D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5349.764280179822, + "max_x": 1811.094567563076, + "max_y": 5350.884280179822, + "center": [ + 1809.078567563076, + 5350.324280179822 + ] + }, + "raw_value": "10111C", + "clean_value": "10111C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5344.040151390164, + "max_x": 1811.094567563076, + "max_y": 5345.160151390164, + "center": [ + 1809.078567563076, + 5344.600151390165 + ] + }, + "raw_value": "10111C", + "clean_value": "10111C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.616047306756, + "min_y": 5386.553808267012, + "max_x": 1838.3185026809674, + "max_y": 5387.86004587096, + "center": [ + 1835.9672749938618, + 5387.206927068986 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55498F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1827.713329488754, + "min_y": 5354.5007755288, + "max_x": 1831.3409387494562, + "max_y": 5355.508444767884, + "center": [ + 1829.527134119105, + 5355.004610148342 + ] + }, + "raw_value": "10111B", + "clean_value": "10111B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554990", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.467371366398, + "min_y": 5334.449624128695, + "max_x": 1856.1698267406096, + "max_y": 5335.755861732643, + "center": [ + 1853.818599053504, + 5335.102742930669 + ] + }, + "raw_value": "10117B", + "clean_value": "10117B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554991", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1852.61433319217, + "min_y": 5316.245460072689, + "max_x": 1856.533046004013, + "max_y": 5317.551697676637, + "center": [ + 1854.5736895980915, + 5316.898578874663 + ] + }, + "raw_value": "10117", + "clean_value": "10117", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554992", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1864.56957666035, + "min_y": 5385.553035806303, + "max_x": 1868.488289472193, + "max_y": 5386.859273410251, + "center": [ + 1866.5289330662715, + 5386.206154608277 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554993", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1876.358922514746, + "min_y": 5331.320711253045, + "max_x": 1876.358922514746, + "max_y": 5334.739622652283, + "center": [ + 1876.358922514746, + 5333.030166952664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.358922514746, + 5331.320711253045 + ], + [ + 1876.358922514746, + 5334.739622652283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554994", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1876.537679094876, + "min_y": 5314.988232350737, + "max_x": 1880.4563919067189, + "max_y": 5316.294469954685, + "center": [ + 1878.4970355007974, + 5315.641351152712 + ] + }, + "raw_value": "10118", + "clean_value": "10118", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554995", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5284.213856818681, + "max_x": 1908.949965733494, + "max_y": 5284.213856818681, + "center": [ + 1908.0907505948835, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5284.213856818681 + ], + [ + 1908.949965733494, + 5284.213856818681 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554996", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.549465251788, + "min_y": 5323.135875189509, + "max_x": 1845.549465251788, + "max_y": 5326.148686187689, + "center": [ + 1845.549465251788, + 5324.6422806885985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5323.135875189509 + ], + [ + 1845.549465251788, + 5326.148686187689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554997", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.036747798322, + "min_y": 5324.238242299689, + "max_x": 1844.896747883917, + "max_y": 5325.931113731734, + "center": [ + 1843.9667478411195, + 5325.084678015712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.036747798322, + 5324.238242299689 + ], + [ + 1844.896747883917, + 5325.931113731734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554998", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.89169949435, + "min_y": 5323.353447645463, + "max_x": 1845.549465251788, + "max_y": 5323.353447645463, + "center": [ + 1844.220582373069, + 5323.353447645463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5323.353447645463 + ], + [ + 1842.89169949435, + 5323.353447645463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554999", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.89169949435, + "min_y": 5323.514686474083, + "max_x": 1845.549465251788, + "max_y": 5323.514686474083, + "center": [ + 1844.220582373069, + 5323.514686474083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5323.514686474083 + ], + [ + 1842.89169949435, + 5323.514686474083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55499A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.549465251788, + "min_y": 5323.135875189509, + "max_x": 1845.696320349244, + "max_y": 5323.135875189509, + "center": [ + 1845.622892800516, + 5323.135875189509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5323.135875189509 + ], + [ + 1845.696320349244, + 5323.135875189509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55499C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1842.89169949435, + "min_y": 5323.353447645463, + "max_x": 1842.89169949435, + "max_y": 5323.514686474083, + "center": [ + 1842.89169949435, + 5323.434067059773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.89169949435, + 5323.353447645463 + ], + [ + 1842.89169949435, + 5323.514686474083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55499E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.896747883917, + "min_y": 5325.931113731734, + "max_x": 1845.549465251788, + "max_y": 5325.931113731734, + "center": [ + 1845.2231065678525, + 5325.931113731734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5325.931113731734 + ], + [ + 1844.896747883917, + 5325.931113731734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55499F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.549465251788, + "min_y": 5326.148686187689, + "max_x": 1845.696320349244, + "max_y": 5326.148686187689, + "center": [ + 1845.622892800516, + 5326.148686187689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.549465251788, + 5326.148686187689 + ], + [ + 1845.696320349244, + 5326.148686187689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.048648773582, + "min_y": 5325.014754405736, + "max_x": 1843.889921025992, + "max_y": 5325.014754405736, + "center": [ + 1843.469284899787, + 5325.014754405736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.889921025992, + 5325.014754405736 + ], + [ + 1843.048648773582, + 5325.014754405736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.048648773582, + "min_y": 5324.48971907172, + "max_x": 1843.048648773582, + "max_y": 5325.014754405736, + "center": [ + 1843.048648773582, + 5324.752236738728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.048648773582, + 5325.014754405736 + ], + [ + 1843.048648773582, + 5324.48971907172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.048648773582, + "min_y": 5324.48971907172, + "max_x": 1843.313051602999, + "max_y": 5324.48971907172, + "center": [ + 1843.1808501882906, + 5324.48971907172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.048648773582, + 5324.48971907172 + ], + [ + 1843.313051602999, + 5324.48971907172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1843.128920984859, + "min_y": 5324.75163574587, + "max_x": 1843.311767433445, + "max_y": 5324.934482194456, + "center": [ + 1843.220344209152, + 5324.843058970163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.220344209152, + 5324.843058970163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.220344209152, + "min_y": 5324.637172122154, + "max_x": 1843.220344209152, + "max_y": 5325.048945818167, + "center": [ + 1843.220344209152, + 5324.84305897016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.220344209152, + 5324.637172122154 + ], + [ + 1843.220344209152, + 5325.048945818167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.014457361146, + "min_y": 5324.843058970163, + "max_x": 1843.426231057162, + "max_y": 5324.843058970163, + "center": [ + 1843.220344209154, + 5324.843058970163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.014457361146, + 5324.843058970163 + ], + [ + 1843.426231057162, + 5324.843058970163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.036747798322, + "min_y": 5323.514686474083, + "max_x": 1843.036747798322, + "max_y": 5324.238242299689, + "center": [ + 1843.036747798322, + 5323.876464386885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.036747798322, + 5324.238242299689 + ], + [ + 1843.036747798322, + 5323.514686474083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.896747883917, + "min_y": 5325.931113731734, + "max_x": 1844.896747883917, + "max_y": 5326.090199461694, + "center": [ + 1844.896747883917, + 5326.010656596714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.896747883917, + 5325.931113731734 + ], + [ + 1844.896747883917, + 5326.090199461694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.896747883917, + "min_y": 5326.090199461694, + "max_x": 1845.549465251788, + "max_y": 5326.090199461694, + "center": [ + 1845.2231065678525, + 5326.090199461694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.896747883917, + 5326.090199461694 + ], + [ + 1845.549465251788, + 5326.090199461694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549AB", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1847.409764248356, + "min_y": 5290.660806491195, + "max_x": 1858.8325540223686, + "max_y": 5291.780687841589, + "center": [ + 1853.1211591353622, + 5291.220747166391 + ] + }, + "raw_value": "P-10128-50A-F2A-n", + "clean_value": "P-10128-50A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733494, + "min_y": 5283.709212424537, + "max_x": 1908.949965733494, + "max_y": 5284.718501212824, + "center": [ + 1908.949965733494, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733494, + 5284.718501212824 + ], + [ + 1908.949965733494, + 5283.709212424537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5283.709212424537, + "max_x": 1911.173632502022, + "max_y": 5284.718501212824, + "center": [ + 1911.173632502022, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5283.709212424537 + ], + [ + 1911.173632502022, + 5284.718501212824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549AE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5283.888404452338, + "max_x": 1910.3494321584587, + "max_y": 5284.534458587326, + "center": [ + 1910.026405090965, + 5284.211431519832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5284.211431519832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5283.709212424537, + "max_x": 1910.873297418612, + "max_y": 5284.049076320592, + "center": [ + 1910.589482264608, + 5283.879144372564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5284.049076320592 + ], + [ + 1910.873297418612, + 5283.709212424537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418612, + "min_y": 5283.709212424537, + "max_x": 1910.873297418612, + "max_y": 5284.718501212824, + "center": [ + 1910.873297418612, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418612, + 5283.709212424537 + ], + [ + 1910.873297418612, + 5284.718501212824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259328, + "min_y": 5284.377371067265, + "max_x": 1910.873297418612, + "max_y": 5284.718501212824, + "center": [ + 1910.58842483897, + 5284.547936140045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418612, + 5284.718501212824 + ], + [ + 1910.303552259328, + 5284.377371067265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5283.709212424537, + "max_x": 1909.753308582727, + "max_y": 5284.047917271247, + "center": [ + 1909.4704613331473, + 5283.8785648478915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5284.047917271247 + ], + [ + 1909.187614083568, + 5283.709212424537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5283.709212424537, + "max_x": 1909.187614083568, + "max_y": 5284.718501212824, + "center": [ + 1909.187614083568, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083568, + 5283.709212424537 + ], + [ + 1909.187614083568, + 5284.718501212824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5284.379796366114, + "max_x": 1909.753308582727, + "max_y": 5284.718501212824, + "center": [ + 1909.4704613331473, + 5284.549148789469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083568, + 5284.718501212824 + ], + [ + 1909.753308582727, + 5284.379796366114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5279.486421949474, + "max_x": 1911.173632502022, + "max_y": 5280.495710737759, + "center": [ + 1911.173632502022, + 5279.991066343617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5279.486421949474 + ], + [ + 1911.173632502022, + 5280.495710737759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5279.665613977274, + "max_x": 1910.3494321584587, + "max_y": 5280.311668112262, + "center": [ + 1910.026405090965, + 5279.988641044768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5279.988641044768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5279.486421949474, + "max_x": 1910.873297418609, + "max_y": 5279.826285845521, + "center": [ + 1910.5894822646064, + 5279.656353897497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5279.826285845521 + ], + [ + 1910.873297418609, + 5279.486421949474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5279.486421949474, + "max_x": 1910.873297418609, + "max_y": 5280.495710737759, + "center": [ + 1910.873297418609, + 5279.991066343617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5279.486421949474 + ], + [ + 1910.873297418609, + 5280.495710737759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5280.154580592203, + "max_x": 1910.873297418609, + "max_y": 5280.495710737759, + "center": [ + 1910.5884248389675, + 5280.325145664981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5280.495710737759 + ], + [ + 1910.303552259326, + 5280.154580592203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5279.486421949474, + "max_x": 1909.753308582727, + "max_y": 5279.825126796182, + "center": [ + 1909.470461333146, + 5279.655774372828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5279.825126796182 + ], + [ + 1909.187614083565, + 5279.486421949474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5279.486421949474, + "max_x": 1909.187614083565, + "max_y": 5280.495710737759, + "center": [ + 1909.187614083565, + 5279.991066343617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5279.486421949474 + ], + [ + 1909.187614083565, + 5280.495710737759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5280.157005891048, + "max_x": 1909.753308582727, + "max_y": 5280.495710737759, + "center": [ + 1909.470461333146, + 5280.3263583144035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5280.495710737759 + ], + [ + 1909.753308582727, + 5280.157005891048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5279.486421949474, + "max_x": 1908.949965733491, + "max_y": 5280.495710737759, + "center": [ + 1908.949965733491, + 5279.991066343617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5280.495710737759 + ], + [ + 1908.949965733491, + 5279.486421949474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549BE", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1881.841653562706, + "min_y": 5323.944127422869, + "max_x": 1881.841653562706, + "max_y": 5334.739622652283, + "center": [ + 1881.841653562706, + 5329.341875037577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.841653562706, + 5323.944127422869 + ], + [ + 1881.841653562706, + 5334.739622652283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.860626984656, + "min_y": 5313.762546165205, + "max_x": 1847.860626984666, + "max_y": 5314.932527780144, + "center": [ + 1847.860626984661, + 5314.347536972675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984666, + 5313.762546165205 + ], + [ + 1847.860626984656, + 5314.932527780144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1840.7433028131125, + "min_y": 5376.650495750217, + "max_x": 1841.4470729124857, + "max_y": 5377.35426584959, + "center": [ + 1841.095187862799, + 5377.002380799903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.095187862799, + 5377.002380799903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1848.4324944275534, + "min_y": 5376.650495750218, + "max_x": 1849.1362645269267, + "max_y": 5377.354265849592, + "center": [ + 1848.78437947724, + 5377.002380799905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.78437947724, + 5377.002380799905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1855.5793037216413, + "min_y": 5376.650495750221, + "max_x": 1856.2830738210146, + "max_y": 5377.354265849594, + "center": [ + 1855.931188771328, + 5377.002380799908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.931188771328, + 5377.002380799908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1889.6676883286773, + "min_y": 5306.230216904326, + "max_x": 1890.3714584280506, + "max_y": 5306.933987003699, + "center": [ + 1890.019573378364, + 5306.582101954013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.019573378364, + 5306.582101954013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1894.1153466150104, + "min_y": 5306.228506898477, + "max_x": 1894.8191167143837, + "max_y": 5306.93227699785, + "center": [ + 1894.467231664697, + 5306.580391948163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.467231664697, + 5306.580391948163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1897.8447075044894, + "min_y": 5306.230326918121, + "max_x": 1898.5484776038627, + "max_y": 5306.934097017494, + "center": [ + 1898.196592554176, + 5306.582211967808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.196592554176, + 5306.582211967808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1874.609559116987, + "min_y": 5403.449010130792, + "max_x": 1886.7042777012357, + "max_y": 5404.568891481185, + "center": [ + 1880.6569184091113, + 5404.008950805988 + ] + }, + "raw_value": "P-10139-600A-F2A-n", + "clean_value": "P-10139-600A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5359.442336400789, + "max_x": 1816.139922305365, + "max_y": 5359.442336400789, + "center": [ + 1815.5082168865983, + 5359.442336400789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5359.442336400789 + ], + [ + 1816.139922305365, + 5359.442336400789 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467832, + "min_y": 5356.889304284476, + "max_x": 1816.139922305365, + "max_y": 5356.889304284476, + "center": [ + 1815.5082168865983, + 5356.889304284476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467832, + 5356.889304284476 + ], + [ + 1816.139922305365, + 5356.889304284476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.876511467829, + "min_y": 5356.60249479813, + "max_x": 1814.876511467832, + "max_y": 5359.729145887135, + "center": [ + 1814.8765114678304, + 5358.165820342632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.876511467829, + 5359.729145887135 + ], + [ + 1814.876511467832, + 5356.60249479813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.38576268986, + "min_y": 5356.60249479813, + "max_x": 1814.38576268986, + "max_y": 5359.729145887135, + "center": [ + 1814.38576268986, + 5358.165820342632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.38576268986, + 5359.729145887135 + ], + [ + 1814.38576268986, + 5356.60249479813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.189654198787, + "min_y": 5338.914832669679, + "max_x": 1848.531599770544, + "max_y": 5338.914832669679, + "center": [ + 1847.8606269846655, + 5338.914832669679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.189654198787, + 5338.914832669679 + ], + [ + 1848.531599770544, + 5338.914832669679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549CC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1859.688903298954, + "min_y": 5318.544141373889, + "max_x": 1861.2563884236913, + "max_y": 5319.850378977837, + "center": [ + 1860.4726458613227, + 5319.1972601758625 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549CD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.4708140428722, + "min_y": 5315.047062451439, + "max_x": 1863.1949428325277, + "max_y": 5320.771191241095, + "center": [ + 1860.3328784377, + 5317.909126846267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.3328784377, + 5317.909126846267 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549CE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5320.82337745042, + "max_x": 1860.3328784377, + "max_y": 5320.823377450425, + "center": [ + 1858.8757531356246, + 5320.823377450422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.3328784377, + 5320.823377450425 + ], + [ + 1857.418627833549, + 5320.82337745042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549CF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5317.909126846267, + "max_x": 1857.418627833549, + "max_y": 5320.82337745042, + "center": [ + 1857.418627833549, + 5319.366252148344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.418627833549, + 5317.909126846267 + ], + [ + 1857.418627833549, + 5320.82337745042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.3328784377, + "min_y": 5320.82337745042, + "max_x": 1863.247129041855, + "max_y": 5320.823377450425, + "center": [ + 1861.7900037397776, + 5320.823377450422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.3328784377, + 5320.823377450425 + ], + [ + 1863.247129041855, + 5320.82337745042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.247129041855, + "min_y": 5317.909126846267, + "max_x": 1863.247129041855, + "max_y": 5320.82337745042, + "center": [ + 1863.247129041855, + 5319.366252148344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.247129041855, + 5317.909126846267 + ], + [ + 1863.247129041855, + 5320.82337745042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5314.994876242107, + "max_x": 1860.3328784377, + "max_y": 5314.994876242114, + "center": [ + 1858.8757531356246, + 5314.99487624211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.3328784377, + 5314.994876242107 + ], + [ + 1857.418627833549, + 5314.994876242114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5314.994876242114, + "max_x": 1857.418627833549, + "max_y": 5317.909126846267, + "center": [ + 1857.418627833549, + 5316.45200154419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.418627833549, + 5317.909126846267 + ], + [ + 1857.418627833549, + 5314.994876242114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.3328784377, + "min_y": 5314.994876242107, + "max_x": 1863.247129041855, + "max_y": 5314.994876242114, + "center": [ + 1861.7900037397776, + 5314.99487624211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.3328784377, + 5314.994876242107 + ], + [ + 1863.247129041855, + 5314.994876242114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.247129041855, + "min_y": 5314.994876242114, + "max_x": 1863.247129041855, + "max_y": 5317.909126846267, + "center": [ + 1863.247129041855, + 5316.45200154419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.247129041855, + 5317.909126846267 + ], + [ + 1863.247129041855, + 5314.994876242114 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1858.159462344432, + "min_y": 5316.225357894786, + "max_x": 1862.078175156275, + "max_y": 5317.531595498734, + "center": [ + 1860.1188187503535, + 5316.87847669676 + ] + }, + "raw_value": "10117", + "clean_value": "10117", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.418627833549, + "min_y": 5317.909126846267, + "max_x": 1863.247129041855, + "max_y": 5317.90912684627, + "center": [ + 1860.332878437702, + 5317.909126846269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.247129041855, + 5317.909126846267 + ], + [ + 1857.418627833549, + 5317.90912684627 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549D8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1874.869770808049, + "min_y": 5359.659634590901, + "max_x": 1874.869770808049, + "max_y": 5370.438817593925, + "center": [ + 1874.869770808049, + 5365.049226092413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.869770808049, + 5359.659634590901 + ], + [ + 1874.869770808049, + 5370.438817593925 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549D9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1877.848074221444, + "min_y": 5359.659634590901, + "max_x": 1877.848074221444, + "max_y": 5370.438817593935, + "center": [ + 1877.848074221444, + 5365.049226092418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.848074221444, + 5370.438817593935 + ], + [ + 1877.848074221444, + 5359.659634590901 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.869770808049, + "min_y": 5359.659634590901, + "max_x": 1877.848074221444, + "max_y": 5359.659634590901, + "center": [ + 1876.3589225147466, + 5359.659634590901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.848074221444, + 5359.659634590901 + ], + [ + 1874.869770808049, + 5359.659634590901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549DB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1874.869770808052, + "min_y": 5370.438817593929, + "max_x": 1876.358922514749, + "max_y": 5371.927969300624, + "center": [ + 1875.6143466614005, + 5371.183393447276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.869770808052, + 5370.438817593929 + ], + [ + 1876.358922514749, + 5371.927969300624 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549DC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1876.358922514749, + "min_y": 5370.438817593929, + "max_x": 1877.848074221446, + "max_y": 5371.927969300624, + "center": [ + 1877.1034983680975, + 5371.183393447276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.358922514749, + 5371.927969300624 + ], + [ + 1877.848074221446, + 5370.438817593929 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.7258132413, + "min_y": 5371.592114198914, + "max_x": 1882.957493884112, + "max_y": 5371.592114198914, + "center": [ + 1881.8416535627061, + 5371.592114198914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1880.7258132413, + 5371.592114198914 + ], + [ + 1882.957493884112, + 5371.592114198914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549DE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1880.352501856006, + "min_y": 5360.812931195891, + "max_x": 1880.352501856006, + "max_y": 5371.592114198914, + "center": [ + 1880.352501856006, + 5366.202522697402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1880.352501856006, + 5371.592114198914 + ], + [ + 1880.352501856006, + 5360.812931195891 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549DF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1883.330805269401, + "min_y": 5360.812931195884, + "max_x": 1883.330805269401, + "max_y": 5371.592114198914, + "center": [ + 1883.330805269401, + 5366.202522697398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.330805269401, + 5360.812931195884 + ], + [ + 1883.330805269401, + 5371.592114198914 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.352501856006, + "min_y": 5371.592114198914, + "max_x": 1883.330805269401, + "max_y": 5371.592114198914, + "center": [ + 1881.8416535627034, + 5371.592114198914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.330805269401, + 5371.592114198914 + ], + [ + 1880.352501856006, + 5371.592114198914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549E1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1880.352501856009, + "min_y": 5359.323779489191, + "max_x": 1881.841653562706, + "max_y": 5360.812931195884, + "center": [ + 1881.0970777093576, + 5360.068355342537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1880.352501856009, + 5360.812931195884 + ], + [ + 1881.841653562706, + 5359.323779489191 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549E2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1881.841653562706, + "min_y": 5359.323779489191, + "max_x": 1883.330805269403, + "max_y": 5360.812931195884, + "center": [ + 1882.5862294160545, + 5360.068355342537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.841653562706, + 5359.323779489191 + ], + [ + 1883.330805269403, + 5360.812931195884 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5549E3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1896.931177676361, + "min_y": 5402.849240825286, + "max_x": 1927.610778354268, + "max_y": 5402.849240825291, + "center": [ + 1912.2709780153145, + 5402.849240825289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1896.931177676361, + 5402.849240825291 + ], + [ + 1927.610778354268, + 5402.849240825286 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.329001908203, + "min_y": 5336.345911347205, + "max_x": 1912.615974278845, + "max_y": 5336.345911347205, + "center": [ + 1910.9724880935241, + 5336.345911347205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.615974278845, + 5336.345911347205 + ], + [ + 1909.329001908203, + 5336.345911347205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549E5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1907.0738844964565, + "min_y": 5334.090793935458, + "max_x": 1911.5841193199497, + "max_y": 5338.601028758952, + "center": [ + 1909.329001908203, + 5336.345911347205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.329001908203, + 5336.345911347205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.69714901787, + "min_y": 5332.337335223986, + "max_x": 1911.94942929589, + "max_y": 5334.553223971482, + "center": [ + 1911.32328915688, + 5333.445279597734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.69714901787, + 5334.553223971482 + ], + [ + 1911.94942929589, + 5332.337335223986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.708574520516, + "min_y": 5332.337335223986, + "max_x": 1907.960854798536, + "max_y": 5334.553223971482, + "center": [ + 1907.334714659526, + 5333.445279597734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.960854798536, + 5334.553223971482 + ], + [ + 1906.708574520516, + 5332.337335223986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.708574520516, + "min_y": 5332.337335223986, + "max_x": 1911.94942929589, + "max_y": 5332.337335223986, + "center": [ + 1909.329001908203, + 5332.337335223986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.708574520516, + 5332.337335223986 + ], + [ + 1911.94942929589, + 5332.337335223986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912806, + "min_y": 5343.083787803109, + "max_x": 1907.709154080108, + "max_y": 5343.083787803109, + "center": [ + 1907.0738844964571, + 5343.083787803109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.709154080108, + 5343.083787803109 + ], + [ + 1906.438614912806, + 5343.083787803109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912809, + "min_y": 5345.167284432838, + "max_x": 1907.686091081726, + "max_y": 5345.167284432838, + "center": [ + 1907.0623529972677, + 5345.167284432838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.686091081726, + 5345.167284432838 + ], + [ + 1906.438614912809, + 5345.167284432838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912809, + "min_y": 5343.083787803109, + "max_x": 1907.686091081731, + "max_y": 5343.083787803109, + "center": [ + 1907.06235299727, + 5343.083787803109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.686091081731, + 5343.083787803109 + ], + [ + 1906.438614912809, + 5343.083787803109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912806, + "min_y": 5343.083787803109, + "max_x": 1907.686091081726, + "max_y": 5345.167284432838, + "center": [ + 1907.062352997266, + 5344.125536117974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.438614912806, + 5343.083787803109 + ], + [ + 1907.686091081726, + 5345.167284432838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549ED", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1895.434114051164, + "min_y": 5325.02112598733, + "max_x": 1922.759275752378, + "max_y": 5325.02112598733, + "center": [ + 1909.0966949017711, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.434114051164, + 5325.02112598733 + ], + [ + 1922.759275752378, + 5325.02112598733 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.715801862987, + "min_y": 5325.02112598733, + "max_x": 1929.240969529073, + "max_y": 5325.02112598733, + "center": [ + 1928.47838569603, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.715801862987, + 5325.02112598733 + ], + [ + 1929.240969529073, + 5325.02112598733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.200084169263, + "min_y": 5325.02112598733, + "max_x": 1934.72525183535, + "max_y": 5325.02112598733, + "center": [ + 1933.9626680023066, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.200084169263, + 5325.02112598733 + ], + [ + 1934.72525183535, + 5325.02112598733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1935.096464578025, + "min_y": 5325.019060935365, + "max_x": 1937.397168183503, + "max_y": 5325.019978223223, + "center": [ + 1936.246816380764, + 5325.019519579294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.096464578025, + 5325.019060935365 + ], + [ + 1937.397168183503, + 5325.019978223223 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549F1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1940.22309029858, + "min_y": 5325.019464632999, + "max_x": 1942.390713697811, + "max_y": 5325.02055354914, + "center": [ + 1941.3069019981954, + 5325.020009091069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.22309029858, + 5325.019464632999 + ], + [ + 1942.390713697811, + 5325.02055354914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5549F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.344589120314, + "min_y": 5324.39738790287, + "max_x": 1927.344589120314, + "max_y": 5325.644864071792, + "center": [ + 1927.344589120314, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.344589120314, + 5324.39738790287 + ], + [ + 1927.344589120314, + 5325.644864071792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.715801862987, + "min_y": 5324.39738790287, + "max_x": 1927.715801862987, + "max_y": 5325.644864071792, + "center": [ + 1927.715801862987, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.715801862987, + 5324.39738790287 + ], + [ + 1927.715801862987, + 5325.644864071792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1930.125769113303, + "min_y": 5331.445531387416, + "max_x": 1932.4769968004086, + "max_y": 5332.751768991364, + "center": [ + 1931.3013829568558, + 5332.098650189389 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549F5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.573918085043, + "min_y": 5328.226801480342, + "max_x": 1933.8671356132988, + "max_y": 5333.520019008597, + "center": [ + 1931.220526849171, + 5330.87341024447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849171, + 5330.87341024447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5549F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.096464578025, + "min_y": 5324.395322850904, + "max_x": 1935.096464578025, + "max_y": 5325.642799019826, + "center": [ + 1935.096464578025, + 5325.019060935365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.096464578025, + 5324.395322850904 + ], + [ + 1935.096464578025, + 5325.642799019826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.72525183535, + "min_y": 5324.395322850904, + "max_x": 1934.72525183535, + "max_y": 5325.642799019826, + "center": [ + 1934.72525183535, + 5325.019060935365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.72525183535, + 5324.395322850904 + ], + [ + 1934.72525183535, + 5325.642799019826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1942.8779251517765, + "min_y": 5325.545281904706, + "max_x": 1944.9614217815054, + "max_y": 5327.628778534434, + "center": [ + 1943.919673466641, + 5326.58703021957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.919673466641, + 5326.58703021957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.877925151777, + "min_y": 5326.58703021957, + "max_x": 1944.961421781505, + "max_y": 5326.58703021957, + "center": [ + 1943.919673466641, + 5326.58703021957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.961421781505, + 5326.58703021957 + ], + [ + 1942.877925151777, + 5326.58703021957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.919673466641, + "min_y": 5325.020553549141, + "max_x": 1943.919673466641, + "max_y": 5326.58703021957, + "center": [ + 1943.919673466641, + 5325.803791884356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.919673466641, + 5326.58703021957 + ], + [ + 1943.919673466641, + 5325.020553549141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.877925151777, + "min_y": 5324.39681546468, + "max_x": 1944.961421781505, + "max_y": 5325.644291633599, + "center": [ + 1943.919673466641, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.961421781505, + 5324.39681546468 + ], + [ + 1942.877925151777, + 5325.644291633599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1944.961421781505, + "min_y": 5324.39681546468, + "max_x": 1944.961421781505, + "max_y": 5325.644291633599, + "center": [ + 1944.961421781505, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.961421781505, + 5325.644291633599 + ], + [ + 1944.961421781505, + 5324.39681546468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.877925151777, + "min_y": 5324.39681546468, + "max_x": 1942.877925151777, + "max_y": 5325.644291633599, + "center": [ + 1942.877925151777, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.877925151777, + 5325.644291633599 + ], + [ + 1942.877925151777, + 5324.39681546468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.877925151777, + "min_y": 5324.39681546468, + "max_x": 1944.961421781505, + "max_y": 5325.644291633599, + "center": [ + 1943.919673466641, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.961421781505, + 5325.644291633599 + ], + [ + 1942.877925151777, + 5324.39681546468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5549FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.390713697811, + "min_y": 5324.3737524663, + "max_x": 1942.390713697811, + "max_y": 5325.667354631979, + "center": [ + 1942.390713697811, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.390713697811, + 5325.667354631979 + ], + [ + 1942.390713697811, + 5324.3737524663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.448633235468, + "min_y": 5324.3737524663, + "max_x": 1945.448633235468, + "max_y": 5325.667354631979, + "center": [ + 1945.448633235468, + 5325.02055354914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.448633235468, + 5325.667354631979 + ], + [ + 1945.448633235468, + 5324.3737524663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.919673466641, + "min_y": 5327.628778534434, + "max_x": 1943.919673466641, + "max_y": 5330.857209398534, + "center": [ + 1943.919673466641, + 5329.2429939664835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.919673466641, + 5327.628778534434 + ], + [ + 1943.919673466641, + 5330.857209398534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.485888058823, + "min_y": 5328.976434278325, + "max_x": 1944.353458874453, + "max_y": 5329.477326522264, + "center": [ + 1943.919673466638, + 5329.226880400294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.485888058823, + 5328.976434278325 + ], + [ + 1944.353458874453, + 5329.477326522264 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.485888058823, + "min_y": 5329.38476829527, + "max_x": 1944.353458874453, + "max_y": 5329.885660539211, + "center": [ + 1943.919673466638, + 5329.635214417241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.485888058823, + 5329.38476829527 + ], + [ + 1944.353458874453, + 5329.885660539211 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A04", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1943.424619309605, + "min_y": 5331.236611529428, + "max_x": 1945.0783720782192, + "max_y": 5332.155363067547, + "center": [ + 1944.2514956939121, + 5331.695987298488 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A05", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1946.393444101291, + "min_y": 5317.935803306357, + "max_x": 1950.352305306116, + "max_y": 5317.935803306358, + "center": [ + 1948.3728747037035, + 5317.935803306358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.352305306116, + 5317.935803306357 + ], + [ + 1946.393444101291, + 5317.935803306358 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A06", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1936.915792874076, + "min_y": 5317.935803306358, + "max_x": 1943.567521986216, + "max_y": 5317.935803306363, + "center": [ + 1940.241657430146, + 5317.93580330636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.567521986216, + 5317.935803306358 + ], + [ + 1936.915792874076, + 5317.935803306363 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.393444101291, + "min_y": 5317.289002223517, + "max_x": 1946.393444101291, + "max_y": 5318.582604389199, + "center": [ + 1946.393444101291, + 5317.935803306358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.393444101291, + 5318.582604389199 + ], + [ + 1946.393444101291, + 5317.289002223517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A08", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1944.5812231160785, + "min_y": 5317.536543378679, + "max_x": 1945.3797429714314, + "max_y": 5318.335063234032, + "center": [ + 1944.980483043755, + 5317.935803306355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.980483043755, + 5317.935803306355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.567521986216, + "min_y": 5317.3120652219, + "max_x": 1943.567521986216, + "max_y": 5318.559541390819, + "center": [ + 1943.567521986216, + 5317.93580330636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.567521986216, + 5317.3120652219 + ], + [ + 1943.567521986216, + 5318.559541390819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.393444101291, + "min_y": 5317.312065221894, + "max_x": 1946.393444101291, + "max_y": 5318.559541390817, + "center": [ + 1946.393444101291, + 5317.935803306355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.393444101291, + 5317.312065221894 + ], + [ + 1946.393444101291, + 5318.559541390817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A0B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1946.814632823325, + "min_y": 5330.961551811839, + "max_x": 1949.1658605104305, + "max_y": 5332.267789415787, + "center": [ + 1947.9902466668777, + 5331.614670613813 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A0C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1945.615302668431, + "min_y": 5327.511139832795, + "max_x": 1950.9085201966868, + "max_y": 5332.80435736105, + "center": [ + 1948.261911432559, + 5330.157748596923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.261911432559, + 5330.157748596923 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1944.448987074394, + "min_y": 5325.809904676923, + "max_x": 1946.593128020296, + "max_y": 5328.103557789495, + "center": [ + 1945.521057547345, + 5326.956731233209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.593128020296, + 5328.103557789495 + ], + [ + 1944.448987074394, + 5325.809904676923 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A0E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1960.509926475632, + "min_y": 5320.211722690482, + "max_x": 1979.19838918619, + "max_y": 5320.211722690482, + "center": [ + 1969.854157830911, + 5320.211722690482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509926475632, + 5320.211722690482 + ], + [ + 1979.19838918619, + 5320.211722690482 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.254935607633, + "min_y": 5350.682668474338, + "max_x": 1923.254935607633, + "max_y": 5375.87066030496, + "center": [ + 1923.254935607633, + 5363.276664389649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.254935607633, + 5375.87066030496 + ], + [ + 1923.254935607633, + 5350.682668474338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.966621100909, + "min_y": 5350.682668474338, + "max_x": 1931.966621100909, + "max_y": 5375.87066030496, + "center": [ + 1931.966621100909, + 5363.276664389649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.966621100909, + 5375.87066030496 + ], + [ + 1931.966621100909, + 5350.682668474338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.826887692103, + "min_y": 5377.41095571749, + "max_x": 1925.826887692103, + "max_y": 5380.025984698609, + "center": [ + 1925.826887692103, + 5378.718470208049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.826887692103, + 5377.41095571749 + ], + [ + 1925.826887692103, + 5380.025984698609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.826887692103, + "min_y": 5380.831411170142, + "max_x": 1925.826887692103, + "max_y": 5395.74032262883, + "center": [ + 1925.826887692103, + 5388.285866899486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.826887692103, + 5380.831411170142 + ], + [ + 1925.826887692103, + 5395.74032262883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.826887692103, + "min_y": 5396.545749100365, + "max_x": 1925.826887692103, + "max_y": 5399.220067038738, + "center": [ + 1925.826887692103, + 5397.882908069552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.826887692103, + 5396.545749100365 + ], + [ + 1925.826887692103, + 5399.220067038738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.394669016439, + "min_y": 5377.41095571749, + "max_x": 1929.394669016439, + "max_y": 5380.025984698609, + "center": [ + 1929.394669016439, + 5378.718470208049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.394669016439, + 5377.41095571749 + ], + [ + 1929.394669016439, + 5380.025984698609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.394669016439, + "min_y": 5380.831411170142, + "max_x": 1929.394669016439, + "max_y": 5395.74032262883, + "center": [ + 1929.394669016439, + 5388.285866899486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.394669016439, + 5380.831411170142 + ], + [ + 1929.394669016439, + 5395.74032262883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.394669016439, + "min_y": 5396.545749100365, + "max_x": 1929.394669016442, + "max_y": 5399.220067038744, + "center": [ + 1929.3946690164405, + 5397.882908069554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.394669016439, + 5396.545749100365 + ], + [ + 1929.394669016442, + 5399.220067038744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5380.428697934372, + "max_x": 1930.211760322028, + "max_y": 5380.428697934372, + "center": [ + 1927.6107783542166, + 5380.428697934372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5380.428697934372 + ], + [ + 1925.009796386405, + 5380.428697934372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5396.143035864598, + "max_x": 1930.211760322028, + "max_y": 5396.143035864598, + "center": [ + 1927.6107783542166, + 5396.143035864598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5396.143035864598 + ], + [ + 1925.009796386405, + 5396.143035864598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.610778354216, + "min_y": 5380.831411170142, + "max_x": 1927.61077835436, + "max_y": 5395.74032262883, + "center": [ + 1927.610778354288, + 5388.285866899486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.61077835436, + 5395.74032262883 + ], + [ + 1927.610778354216, + 5380.831411170142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1926.718833023143, + "min_y": 5380.831411170142, + "max_x": 1926.718833023287, + "max_y": 5395.74032262883, + "center": [ + 1926.718833023215, + 5388.285866899486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1926.718833023287, + 5395.74032262883 + ], + [ + 1926.718833023143, + 5380.831411170142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1928.502723685232, + "min_y": 5380.831411170142, + "max_x": 1928.502723685377, + "max_y": 5395.74032262883, + "center": [ + 1928.5027236853045, + 5388.285866899486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.502723685232, + 5395.74032262883 + ], + [ + 1928.502723685377, + 5380.831411170142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5371.272192849087, + "max_x": 1918.703419072365, + "max_y": 5371.272192849087, + "center": [ + 1918.0839515544465, + 5371.272192849087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.464484036528, + 5371.272192849087 + ], + [ + 1918.703419072365, + 5371.272192849087 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5370.648454764627, + "max_x": 1921.274127156056, + "max_y": 5371.895930933553, + "center": [ + 1921.274127156056, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5370.648454764627 + ], + [ + 1921.274127156056, + 5371.895930933553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5370.648454764627, + "max_x": 1921.645339898731, + "max_y": 5371.895930933553, + "center": [ + 1921.645339898731, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5370.648454764627 + ], + [ + 1921.645339898731, + 5371.895930933553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5371.272192849093, + "max_x": 1923.254935607632, + "max_y": 5371.272192849093, + "center": [ + 1922.4501377531815, + 5371.272192849093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5371.272192849093 + ], + [ + 1923.254935607632, + 5371.272192849093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5363.447994339298, + "max_x": 1918.703419072365, + "max_y": 5363.447994339298, + "center": [ + 1918.0839515544465, + 5363.447994339298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.464484036528, + 5363.447994339298 + ], + [ + 1918.703419072365, + 5363.447994339298 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5362.824256254836, + "max_x": 1921.274127156056, + "max_y": 5364.048669425383, + "center": [ + 1921.274127156056, + 5363.436462840109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5362.824256254836 + ], + [ + 1921.274127156056, + 5364.048669425383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5362.824256254836, + "max_x": 1921.645339898731, + "max_y": 5364.071732423762, + "center": [ + 1921.645339898731, + 5363.447994339299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5362.824256254836 + ], + [ + 1921.645339898731, + 5364.071732423762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5363.447994339301, + "max_x": 1923.254935607632, + "max_y": 5363.447994339301, + "center": [ + 1922.4501377531815, + 5363.447994339301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5363.447994339301 + ], + [ + 1923.254935607632, + 5363.447994339301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5363.447994339298, + "max_x": 1917.464484036528, + "max_y": 5364.760324069924, + "center": [ + 1917.464484036528, + 5364.104159204611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.464484036528, + 5363.447994339298 + ], + [ + 1917.464484036528, + 5364.760324069924 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.464484036528, + "min_y": 5370.053541598179, + "max_x": 1917.46448403653, + "max_y": 5371.272192849087, + "center": [ + 1917.464484036529, + 5370.662867223633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.46448403653, + 5370.053541598179 + ], + [ + 1917.464484036528, + 5371.272192849087 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A28", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1914.8178752724, + "min_y": 5364.760324069924, + "max_x": 1920.1110928006558, + "max_y": 5370.0535415981785, + "center": [ + 1917.464484036528, + 5367.406932834051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.464484036528, + 5367.406932834051 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.349475231409, + "min_y": 5336.345911347205, + "max_x": 1912.527301588745, + "max_y": 5336.345911347208, + "center": [ + 1911.438388410077, + 5336.345911347207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.527301588745, + 5336.345911347205 + ], + [ + 1910.349475231409, + 5336.345911347208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.610778353831, + "min_y": 5347.637080536009, + "max_x": 1927.610778353831, + "max_y": 5348.993591799545, + "center": [ + 1927.610778353831, + 5348.315336167778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.610778353831, + 5348.993591799545 + ], + [ + 1927.610778353831, + 5347.637080536009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A2B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1927.610778353831, + "min_y": 5336.345911347186, + "max_x": 1927.610778353831, + "max_y": 5347.123520155704, + "center": [ + 1927.610778353831, + 5341.734715751445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.610778353831, + 5347.123520155704 + ], + [ + 1927.610778353831, + 5336.345911347186 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.254980526033, + "min_y": 5349.092959381213, + "max_x": 1932.49301190943, + "max_y": 5349.757811892093, + "center": [ + 1931.8739962177315, + 5349.425385636653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.254980526033, + 5349.757811892093 + ], + [ + 1932.49301190943, + 5349.092959381213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A2D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1932.180700953208, + "min_y": 5345.142360811614, + "max_x": 1937.473918481464, + "max_y": 5350.435578339869, + "center": [ + 1934.827309717336, + 5347.788969575741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.827309717336, + 5347.788969575741 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.966621100029, + "min_y": 5372.758432717488, + "max_x": 1933.576216808933, + "max_y": 5372.758432717488, + "center": [ + 1932.7714189544809, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.576216808933, + 5372.758432717488 + ], + [ + 1931.966621100029, + 5372.758432717488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.966621100029, + "min_y": 5363.703350569631, + "max_x": 1933.576216808933, + "max_y": 5363.703350569631, + "center": [ + 1932.7714189544809, + 5363.703350569631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.576216808933, + 5363.703350569631 + ], + [ + 1931.966621100029, + 5363.703350569631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A30", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1929.376302861592, + "min_y": 5336.653690912189, + "max_x": 1932.5112731110662, + "max_y": 5337.959928516137, + "center": [ + 1930.943787986329, + 5337.306809714162 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A31", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5338.909751820877, + "max_x": 1931.220526849145, + "max_y": 5338.909751820885, + "center": [ + 1929.8730936460756, + 5338.909751820881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849145, + 5338.909751820885 + ], + [ + 1928.525660443006, + 5338.909751820877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A32", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5336.214885414745, + "max_x": 1928.525660443006, + "max_y": 5338.909751820877, + "center": [ + 1928.525660443006, + 5337.562318617811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.525660443006, + 5336.214885414745 + ], + [ + 1928.525660443006, + 5338.909751820877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A33", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1931.220526849145, + "min_y": 5338.909751820877, + "max_x": 1933.915393255282, + "max_y": 5338.909751820885, + "center": [ + 1932.5679600522135, + 5338.909751820881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849145, + 5338.909751820885 + ], + [ + 1933.915393255282, + 5338.909751820877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A34", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1933.915393255282, + "min_y": 5336.214885414745, + "max_x": 1933.915393255282, + "max_y": 5338.909751820877, + "center": [ + 1933.915393255282, + 5337.562318617811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.915393255282, + 5336.214885414745 + ], + [ + 1933.915393255282, + 5338.909751820877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A35", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5333.520019008599, + "max_x": 1931.220526849145, + "max_y": 5333.520019008606, + "center": [ + 1929.8730936460756, + 5333.5200190086025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849145, + 5333.520019008599 + ], + [ + 1928.525660443006, + 5333.520019008606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A36", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.525660443006, + "min_y": 5333.520019008606, + "max_x": 1928.525660443006, + "max_y": 5336.214885414734, + "center": [ + 1928.525660443006, + 5334.867452211671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.525660443006, + 5336.214885414734 + ], + [ + 1928.525660443006, + 5333.520019008606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A37", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1931.220526849145, + "min_y": 5333.520019008599, + "max_x": 1933.915393255282, + "max_y": 5333.520019008606, + "center": [ + 1932.5679600522135, + 5333.5200190086025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849145, + 5333.520019008599 + ], + [ + 1933.915393255282, + 5333.520019008606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A38", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1933.915393255282, + "min_y": 5333.520019008606, + "max_x": 1933.915393255282, + "max_y": 5336.214885414734, + "center": [ + 1933.915393255282, + 5334.867452211671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.915393255282, + 5336.214885414734 + ], + [ + 1933.915393255282, + 5333.520019008606 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.375477467135, + "min_y": 5394.242261749383, + "max_x": 1931.375477467135, + "max_y": 5395.489737918301, + "center": [ + 1931.375477467135, + 5394.865999833843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.375477467135, + 5394.242261749383 + ], + [ + 1931.375477467135, + 5395.489737918301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.004264724463, + "min_y": 5394.242261749383, + "max_x": 1931.004264724463, + "max_y": 5395.489737918301, + "center": [ + 1931.004264724463, + 5394.865999833843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.004264724463, + 5394.242261749383 + ], + [ + 1931.004264724463, + 5395.489737918301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.394669015559, + "min_y": 5394.865999833843, + "max_x": 1931.004264724463, + "max_y": 5394.865999833843, + "center": [ + 1930.1994668700108, + 5394.865999833843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.004264724463, + 5394.865999833843 + ], + [ + 1929.394669015559, + 5394.865999833843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A3C", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1931.375477467135, + "min_y": 5394.865999833843, + "max_x": 1945.590819289, + "max_y": 5394.865999833843, + "center": [ + 1938.4831483780674, + 5394.865999833843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.375477467135, + 5394.865999833843 + ], + [ + 1945.590819289, + 5394.865999833843 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A3D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1963.771463575221, + "min_y": 5360.932868382725, + "max_x": 1963.771463575221, + "max_y": 5378.923397263734, + "center": [ + 1963.771463575221, + 5369.92813282323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1963.771463575221, + 5378.923397263734 + ], + [ + 1963.771463575221, + 5360.932868382725 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A3E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1963.771463575221, + "min_y": 5360.932868382723, + "max_x": 1978.022790206111, + "max_y": 5360.932868382725, + "center": [ + 1970.8971268906662, + 5360.932868382724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1963.771463575221, + 5360.932868382725 + ], + [ + 1978.022790206111, + 5360.932868382723 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A3F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1980.401355742564, + "min_y": 5360.932868382729, + "max_x": 1985.703607112033, + "max_y": 5360.934933434691, + "center": [ + 1983.0524814272985, + 5360.93390090871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.401355742564, + 5360.932868382729 + ], + [ + 1985.703607112033, + 5360.934933434691 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A40", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1976.272496918671, + "min_y": 5360.932868382725, + "max_x": 1976.272496918671, + "max_y": 5364.678079797123, + "center": [ + 1976.272496918671, + 5362.805474089924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.272496918671, + 5360.932868382725 + ], + [ + 1976.272496918671, + 5364.678079797123 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A41", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1976.272496918671, + "min_y": 5367.457985730373, + "max_x": 1976.272496918674, + "max_y": 5369.5542435591, + "center": [ + 1976.2724969186725, + 5368.506114644737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.272496918674, + 5367.457985730373 + ], + [ + 1976.272496918671, + 5369.5542435591 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A42", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1976.7972252742366, + "min_y": 5365.03181105383, + "max_x": 1978.8807219039654, + "max_y": 5367.115307683558, + "center": [ + 1977.838973589101, + 5366.073559368694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.838973589101, + 5366.073559368694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1977.838973589101, + "min_y": 5365.031811053831, + "max_x": 1977.838973589101, + "max_y": 5367.115307683553, + "center": [ + 1977.838973589101, + 5366.073559368691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.838973589101, + 5367.115307683553 + ], + [ + 1977.838973589101, + 5365.031811053831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.797282838187, + "min_y": 5366.073559368694, + "max_x": 1977.838973589101, + "max_y": 5366.073559368698, + "center": [ + 1977.3181282136438, + 5366.073559368696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.838973589101, + 5366.073559368694 + ], + [ + 1976.797282838187, + 5366.073559368698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.542080327455, + "min_y": 5366.523809351511, + "max_x": 1976.896235003135, + "max_y": 5367.115307683553, + "center": [ + 1976.719157665295, + 5366.819558517532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.896235003135, + 5367.115307683553 + ], + [ + 1976.542080327455, + 5366.523809351511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5365.031811053831, + "max_x": 1976.002913509892, + "max_y": 5365.62330938587, + "center": [ + 1975.8258361720525, + 5365.32756021985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.002913509892, + 5365.62330938587 + ], + [ + 1975.648758834213, + 5365.031811053831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5367.115307683553, + "max_x": 1976.896235003135, + "max_y": 5367.115307683553, + "center": [ + 1976.2724969186738, + 5367.115307683553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.648758834213, + 5367.115307683553 + ], + [ + 1976.896235003135, + 5367.115307683553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5365.031811053831, + "max_x": 1976.896235003135, + "max_y": 5365.031811053831, + "center": [ + 1976.2724969186738, + 5365.031811053831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.648758834213, + 5365.031811053831 + ], + [ + 1976.896235003135, + 5365.031811053831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5366.523809351513, + "max_x": 1976.00291350989, + "max_y": 5367.115307683553, + "center": [ + 1975.8258361720514, + 5366.819558517533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.648758834213, + 5367.115307683553 + ], + [ + 1976.00291350989, + 5366.523809351513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.542080327455, + "min_y": 5365.031811053831, + "max_x": 1976.896235003135, + "max_y": 5365.623309385873, + "center": [ + 1976.719157665295, + 5365.327560219852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.542080327455, + 5365.623309385873 + ], + [ + 1976.896235003135, + 5365.031811053831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A4B", + "entity_type": "ARC", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1976.2740678355246, + "min_y": 5368.842638560218, + "max_x": 1977.7452489928735, + "max_y": 5370.313819717567, + "center": [ + 1977.009658414199, + 5369.578229138892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.009658414199, + 5369.578229138892 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A4C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1981.476110410848, + "min_y": 5371.717660269252, + "max_x": 1983.8273380979535, + "max_y": 5373.0238978731995, + "center": [ + 1982.6517242544007, + 5372.370779071225 + ] + }, + "raw_value": "PCV", + "clean_value": "PCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A4D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1979.7042566500934, + "min_y": 5367.66237654832, + "max_x": 1986.2046983000184, + "max_y": 5374.162818198245, + "center": [ + 1982.954477475056, + 5370.912597373283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.954477475056, + 5370.912597373283 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.095120794624, + "min_y": 5360.936998486657, + "max_x": 1995.223415459779, + "max_y": 5360.936998486658, + "center": [ + 1994.6592681272016, + 5360.936998486657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.095120794624, + 5360.936998486658 + ], + [ + 1995.223415459779, + 5360.936998486657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A4F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1999.7287274400785, + "min_y": 5358.681881074913, + "max_x": 2004.2389622635717, + "max_y": 5363.192115898407, + "center": [ + 2001.983844851825, + 5360.93699848666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.983844851825, + 5360.93699848666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1999.363417464135, + "min_y": 5356.928422363447, + "max_x": 2000.615697742155, + "max_y": 5359.144311110942, + "center": [ + 1999.989557603145, + 5358.036366737195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2000.615697742155, + 5359.144311110942 + ], + [ + 1999.363417464135, + 5356.928422363447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.351991961491, + "min_y": 5356.928422363447, + "max_x": 2004.604272239514, + "max_y": 5359.144311110942, + "center": [ + 2003.9781321005025, + 5358.036366737195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.351991961491, + 5359.144311110942 + ], + [ + 2004.604272239514, + 5356.928422363447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1999.363417464135, + "min_y": 5356.928422363447, + "max_x": 2004.604272239514, + "max_y": 5356.928422363447, + "center": [ + 2001.9838448518244, + 5356.928422363447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.604272239514, + 5356.928422363447 + ], + [ + 1999.363417464135, + 5356.928422363447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5360.93699848666, + "max_x": 2004.238962263572, + "max_y": 5363.4715723567, + "center": [ + 2004.238962263572, + 5362.20428542168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5360.93699848666 + ], + [ + 2004.238962263572, + 5363.4715723567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A54", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5363.471572356701, + "max_x": 2004.238962263572, + "max_y": 5365.321945536923, + "center": [ + 2004.238962263572, + 5364.396758946812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5363.471572356701 + ], + [ + 2004.238962263572, + 5365.321945536923 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A55", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1908.8282923255483, + "min_y": 5335.84520176455, + "max_x": 1909.8297114908578, + "max_y": 5336.84662092986, + "center": [ + 1909.329001908203, + 5336.345911347205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.329001908203, + 5336.345911347205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.39466901633, + "min_y": 5383.357726851135, + "max_x": 1930.990693432768, + "max_y": 5383.35772685114, + "center": [ + 1930.192681224549, + 5383.357726851138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.39466901633, + 5383.35772685114 + ], + [ + 1930.990693432768, + 5383.357726851135 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.990693432768, + "min_y": 5382.733988766673, + "max_x": 1930.990693432768, + "max_y": 5383.981464935605, + "center": [ + 1930.990693432768, + 5383.357726851139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.990693432768, + 5382.733988766673 + ], + [ + 1930.990693432768, + 5383.981464935605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.192625898927, + "min_y": 5394.865999833843, + "max_x": 1942.192625898927, + "max_y": 5397.079232182415, + "center": [ + 1942.192625898927, + 5395.972616008128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.192625898927, + 5394.865999833843 + ], + [ + 1942.192625898927, + 5397.079232182415 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A5A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.5256604430347, + "min_y": 5333.5200190086, + "max_x": 1933.9153932553254, + "max_y": 5338.909751820891, + "center": [ + 1931.22052684918, + 5336.214885414745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.22052684918, + 5336.214885414745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A5B", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1931.220526849145, + "min_y": 5338.909751820885, + "max_x": 1931.220526849153, + "max_y": 5340.712553159671, + "center": [ + 1931.2205268491489, + 5339.811152490278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849153, + 5340.712553159671 + ], + [ + 1931.220526849145, + 5338.909751820885 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912803, + "min_y": 5342.712575060428, + "max_x": 1907.709154080108, + "max_y": 5342.712575060428, + "center": [ + 1907.0738844964553, + 5342.712575060428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.709154080108, + 5342.712575060428 + ], + [ + 1906.438614912803, + 5342.712575060428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912806, + "min_y": 5342.712575060428, + "max_x": 1907.686091081728, + "max_y": 5342.712575060428, + "center": [ + 1907.062352997267, + 5342.712575060428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.686091081728, + 5342.712575060428 + ], + [ + 1906.438614912806, + 5342.712575060428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1912.98718702152, + "min_y": 5335.697045212393, + "max_x": 1912.98718702152, + "max_y": 5336.990647378073, + "center": [ + 1912.98718702152, + 5336.343846295233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.98718702152, + 5336.990647378073 + ], + [ + 1912.98718702152, + 5335.697045212393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1912.615974278845, + "min_y": 5335.697045212393, + "max_x": 1912.615974278845, + "max_y": 5336.990647378073, + "center": [ + 1912.615974278845, + 5336.343846295233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.615974278845, + 5336.990647378073 + ], + [ + 1912.615974278845, + 5335.697045212393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.079061324779, + "min_y": 5335.699110264356, + "max_x": 1923.079061324779, + "max_y": 5336.992712430035, + "center": [ + 1923.079061324779, + 5336.345911347195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.079061324779, + 5336.992712430035 + ], + [ + 1923.079061324779, + 5335.699110264356 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A61", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1924.0927624546387, + "min_y": 5335.94665141952, + "max_x": 1924.8912823099915, + "max_y": 5336.7451712748725, + "center": [ + 1924.492022382315, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.492022382315, + 5336.345911347196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.904983439854, + "min_y": 5335.722173262736, + "max_x": 1925.904983439854, + "max_y": 5336.969649431658, + "center": [ + 1925.904983439854, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.904983439854, + 5335.722173262736 + ], + [ + 1925.904983439854, + 5336.969649431658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.079061324779, + "min_y": 5335.722173262736, + "max_x": 1923.079061324779, + "max_y": 5336.969649431658, + "center": [ + 1923.079061324779, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.079061324779, + 5335.722173262736 + ], + [ + 1923.079061324779, + 5336.969649431658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.556115556895, + "min_y": 5336.345911347196, + "max_x": 1923.079061324779, + "max_y": 5336.345911347196, + "center": [ + 1921.817588440837, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.556115556895, + 5336.345911347196 + ], + [ + 1923.079061324779, + 5336.345911347196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A65", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1919.45017524321, + "min_y": 5333.890809097117, + "max_x": 1919.45017524321, + "max_y": 5336.343846295231, + "center": [ + 1919.45017524321, + 5335.1173276961745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.45017524321, + 5336.343846295231 + ], + [ + 1919.45017524321, + 5333.890809097117 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A66", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1919.0509153155335, + "min_y": 5332.078588111904, + "max_x": 1919.8494351708864, + "max_y": 5332.877107967256, + "center": [ + 1919.45017524321, + 5332.47784803958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.45017524321, + 5332.47784803958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5333.890809097123, + "max_x": 1920.073913327669, + "max_y": 5333.890809097123, + "center": [ + 1919.4501752432075, + 5333.890809097123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.073913327669, + 5333.890809097123 + ], + [ + 1918.826437158746, + 5333.890809097123 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5331.064886982039, + "max_x": 1920.073913327669, + "max_y": 5331.064886982039, + "center": [ + 1919.4501752432075, + 5331.064886982039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.073913327669, + 5331.064886982039 + ], + [ + 1918.826437158746, + 5331.064886982039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.556115556895, + "min_y": 5335.697045212392, + "max_x": 1920.556115556895, + "max_y": 5336.990647378069, + "center": [ + 1920.556115556895, + 5336.343846295231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.556115556895, + 5336.990647378069 + ], + [ + 1920.556115556895, + 5335.697045212392 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.184902814219, + "min_y": 5335.697045212392, + "max_x": 1920.184902814219, + "max_y": 5336.990647378069, + "center": [ + 1920.184902814219, + 5336.343846295231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.184902814219, + 5336.990647378069 + ], + [ + 1920.184902814219, + 5335.697045212392 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.417184060779, + "min_y": 5335.694980160431, + "max_x": 1916.417184060779, + "max_y": 5336.988582326107, + "center": [ + 1916.417184060779, + 5336.341781243269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.417184060779, + 5336.988582326107 + ], + [ + 1916.417184060779, + 5335.694980160431 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.788396803454, + "min_y": 5335.694980160431, + "max_x": 1916.788396803454, + "max_y": 5336.988582326107, + "center": [ + 1916.788396803454, + 5336.341781243269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.788396803454, + 5336.988582326107 + ], + [ + 1916.788396803454, + 5335.694980160431 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A6D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1925.904983439854, + "min_y": 5336.345911347186, + "max_x": 1927.610778353831, + "max_y": 5336.345911347196, + "center": [ + 1926.7578808968424, + 5336.345911347191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.904983439854, + 5336.345911347196 + ], + [ + 1927.610778353831, + 5336.345911347186 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.52952922711, + "min_y": 5360.286067299885, + "max_x": 1988.52952922711, + "max_y": 5361.579669465565, + "center": [ + 1988.52952922711, + 5360.932868382724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.52952922711, + 5361.579669465565 + ], + [ + 1988.52952922711, + 5360.286067299885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A6F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1986.7173082418956, + "min_y": 5360.533608455053, + "max_x": 1987.5158280972485, + "max_y": 5361.332128310405, + "center": [ + 1987.116568169572, + 5360.932868382729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.116568169572, + 5360.932868382729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.703607112033, + "min_y": 5360.309130298265, + "max_x": 1985.703607112033, + "max_y": 5361.556606467187, + "center": [ + 1985.703607112033, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.703607112033, + 5360.309130298265 + ], + [ + 1985.703607112033, + 5361.556606467187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.52952922711, + "min_y": 5360.309130298265, + "max_x": 1988.52952922711, + "max_y": 5361.556606467187, + "center": [ + 1988.52952922711, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.52952922711, + 5360.309130298265 + ], + [ + 1988.52952922711, + 5361.556606467187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A72", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1932.645672792233, + "min_y": 5346.049569722644, + "max_x": 1936.5643856040758, + "max_y": 5347.355807326592, + "center": [ + 1934.6050291981544, + 5346.702688524618 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A73", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1937.825923401846, + "min_y": 5366.019224032753, + "max_x": 1943.1191409301018, + "max_y": 5371.312441561008, + "center": [ + 1940.472532165974, + 5368.665832796881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.472532165974, + 5368.665832796881 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554A74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.634136346587, + "min_y": 5372.758432717488, + "max_x": 1937.5166431819, + "max_y": 5372.758432717488, + "center": [ + 1937.0753897642435, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.634136346587, + 5372.758432717488 + ], + [ + 1937.5166431819, + 5372.758432717488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1938.527345002583, + "min_y": 5372.75843271748, + "max_x": 1940.472532165974, + "max_y": 5372.758432717488, + "center": [ + 1939.4999385842784, + 5372.7584327174845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5372.758432717488 + ], + [ + 1940.472532165974, + 5372.75843271748 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.634136346587, + "min_y": 5372.758432717488, + "max_x": 1937.5166431819, + "max_y": 5372.758432717488, + "center": [ + 1937.0753897642435, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.5166431819, + 5372.758432717488 + ], + [ + 1936.634136346587, + 5372.758432717488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A77", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1932.9288113492237, + "min_y": 5370.0961735451065, + "max_x": 1938.2533296939862, + "max_y": 5375.42069188987, + "center": [ + 1935.591070521605, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.591070521605, + 5372.758432717488 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.447729167095, + "min_y": 5372.134694633028, + "max_x": 1936.146924892624, + "max_y": 5372.553332221664, + "center": [ + 1935.7973270298594, + 5372.344013427346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5372.134694633028 + ], + [ + 1935.447729167095, + 5372.553332221664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5372.963533213309, + "max_x": 1934.762623988424, + "max_y": 5373.382170801947, + "center": [ + 1934.4130261256605, + 5373.1728520076285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.762623988424, + 5372.963533213309 + ], + [ + 1934.063428262897, + 5373.382170801947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.146924892624, + "min_y": 5372.134694633028, + "max_x": 1936.146924892624, + "max_y": 5373.382170801947, + "center": [ + 1936.146924892624, + 5372.758432717487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5373.382170801947 + ], + [ + 1936.146924892624, + 5372.134694633028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5372.134694633028, + "max_x": 1934.063428262897, + "max_y": 5373.382170801947, + "center": [ + 1934.063428262897, + 5372.758432717487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.063428262897, + 5373.382170801947 + ], + [ + 1934.063428262897, + 5372.134694633028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.447729167095, + "min_y": 5372.963533213306, + "max_x": 1936.146924892624, + "max_y": 5373.382170801947, + "center": [ + 1935.7973270298594, + 5373.172852007627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5373.382170801947 + ], + [ + 1935.447729167095, + 5372.963533213306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5372.134694633028, + "max_x": 1934.762623988424, + "max_y": 5372.553332221664, + "center": [ + 1934.4130261256605, + 5372.344013427346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.762623988424, + 5372.553332221664 + ], + [ + 1934.063428262897, + 5372.134694633028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.576216808933, + "min_y": 5372.111631634648, + "max_x": 1933.576216808933, + "max_y": 5373.40523380033, + "center": [ + 1933.576216808933, + 5372.758432717489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.576216808933, + 5373.40523380033 + ], + [ + 1933.576216808933, + 5372.111631634648 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.634136346587, + "min_y": 5372.111631634648, + "max_x": 1936.634136346587, + "max_y": 5373.40523380033, + "center": [ + 1936.634136346587, + 5372.758432717489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.634136346587, + 5373.40523380033 + ], + [ + 1936.634136346587, + 5372.111631634648 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.447729167095, + "min_y": 5363.079612485167, + "max_x": 1936.146924892624, + "max_y": 5363.498250073806, + "center": [ + 1935.7973270298594, + 5363.288931279487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5363.079612485167 + ], + [ + 1935.447729167095, + 5363.498250073806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5363.908451065449, + "max_x": 1934.762623988424, + "max_y": 5364.327088654087, + "center": [ + 1934.4130261256605, + 5364.117769859768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.762623988424, + 5363.908451065449 + ], + [ + 1934.063428262897, + 5364.327088654087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.146924892624, + "min_y": 5363.079612485167, + "max_x": 1936.146924892624, + "max_y": 5364.327088654087, + "center": [ + 1936.146924892624, + 5363.703350569627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5364.327088654087 + ], + [ + 1936.146924892624, + 5363.079612485167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5363.079612485167, + "max_x": 1934.063428262897, + "max_y": 5364.327088654087, + "center": [ + 1934.063428262897, + 5363.703350569627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.063428262897, + 5364.327088654087 + ], + [ + 1934.063428262897, + 5363.079612485167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.447729167095, + "min_y": 5363.908451065449, + "max_x": 1936.146924892624, + "max_y": 5364.327088654087, + "center": [ + 1935.7973270298594, + 5364.117769859768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.146924892624, + 5364.327088654087 + ], + [ + 1935.447729167095, + 5363.908451065449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.063428262897, + "min_y": 5363.079612485167, + "max_x": 1934.762623988424, + "max_y": 5363.498250073806, + "center": [ + 1934.4130261256605, + 5363.288931279487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.762623988424, + 5363.498250073806 + ], + [ + 1934.063428262897, + 5363.079612485167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.576216808933, + "min_y": 5363.056549486787, + "max_x": 1933.576216808933, + "max_y": 5364.350151652466, + "center": [ + 1933.576216808933, + 5363.703350569626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.576216808933, + 5364.350151652466 + ], + [ + 1933.576216808933, + 5363.056549486787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.634136346587, + "min_y": 5363.056549486787, + "max_x": 1936.634136346587, + "max_y": 5364.350151652466, + "center": [ + 1936.634136346587, + 5363.703350569626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.634136346587, + 5364.350151652466 + ], + [ + 1936.634136346587, + 5363.056549486787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.472532165974, + "min_y": 5371.312441561008, + "max_x": 1940.472532165974, + "max_y": 5372.758432717488, + "center": [ + 1940.472532165974, + 5372.035437139248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.472532165974, + 5372.758432717488 + ], + [ + 1940.472532165974, + 5371.312441561008 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1938.527345002583, + "min_y": 5363.703350569631, + "max_x": 1940.472532165974, + "max_y": 5363.703350569631, + "center": [ + 1939.4999385842784, + 5363.703350569631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5363.703350569631 + ], + [ + 1940.472532165974, + 5363.703350569631 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.472532165974, + "min_y": 5363.703350569631, + "max_x": 1940.472532165974, + "max_y": 5366.019224032752, + "center": [ + 1940.472532165974, + 5364.861287301192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.472532165974, + 5363.703350569631 + ], + [ + 1940.472532165974, + 5366.019224032752 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.634136346587, + "min_y": 5363.703350569631, + "max_x": 1937.5166431819, + "max_y": 5363.703350569631, + "center": [ + 1937.0753897642435, + 5363.703350569631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.634136346587, + 5363.703350569631 + ], + [ + 1937.5166431819, + 5363.703350569631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A8C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1932.9288113492237, + "min_y": 5361.041091397249, + "max_x": 1938.2533296939862, + "max_y": 5366.365609742013, + "center": [ + 1935.591070521605, + 5363.703350569631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.591070521605, + 5363.703350569631 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.279589244654, + "min_y": 5372.38472733601, + "max_x": 1940.027000007603, + "max_y": 5373.132138098952, + "center": [ + 1939.6532946261286, + 5372.758432717481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.279589244654, + 5373.132138098952 + ], + [ + 1940.027000007603, + 5372.38472733601 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.279589244654, + "min_y": 5372.38472733601, + "max_x": 1940.027000007603, + "max_y": 5373.132138098952, + "center": [ + 1939.6532946261286, + 5372.758432717481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.279589244654, + 5372.38472733601 + ], + [ + 1940.027000007603, + 5373.132138098952 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.098826784501, + "min_y": 5364.524825242646, + "max_x": 1940.84623754745, + "max_y": 5365.272236005599, + "center": [ + 1940.4725321659755, + 5364.898530624123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.098826784501, + 5364.524825242646 + ], + [ + 1940.84623754745, + 5365.272236005599 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.098826784501, + "min_y": 5364.524825242646, + "max_x": 1940.84623754745, + "max_y": 5365.272236005599, + "center": [ + 1940.4725321659755, + 5364.898530624123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.098826784501, + 5365.272236005599 + ], + [ + 1940.84623754745, + 5364.524825242646 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A91", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1927.610778354268, + "min_y": 5399.220067038741, + "max_x": 1927.610778354268, + "max_y": 5400.093577285391, + "center": [ + 1927.610778354268, + 5399.6568221620655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.610778354268, + 5399.220067038741 + ], + [ + 1927.610778354268, + 5400.093577285391 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A92", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1927.610778354268, + "min_y": 5400.093577285391, + "max_x": 1927.610778354268, + "max_y": 5402.849240825286, + "center": [ + 1927.610778354268, + 5401.471409055339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.610778354268, + 5400.093577285391 + ], + [ + 1927.610778354268, + 5402.849240825286 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A93", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1929.726915711604, + "min_y": 5324.520148081994, + "max_x": 1931.9809194851227, + "max_y": 5325.45931632096, + "center": [ + 1930.8539175983633, + 5324.989732201477 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.220526849171, + "min_y": 5326.016076814467, + "max_x": 1931.220526849171, + "max_y": 5328.226801480338, + "center": [ + 1931.220526849171, + 5327.121439147402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.220526849171, + 5328.226801480338 + ], + [ + 1931.220526849171, + 5326.016076814467 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554A95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.554144914732, + "min_y": 5324.374101692609, + "max_x": 1946.554144914732, + "max_y": 5325.66770385829, + "center": [ + 1946.554144914732, + 5325.02090277545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.554144914732, + 5325.66770385829 + ], + [ + 1946.554144914732, + 5324.374101692609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1949.38006702981, + "min_y": 5324.397164690991, + "max_x": 1949.38006702981, + "max_y": 5325.644640859914, + "center": [ + 1949.38006702981, + 5325.020902775453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.38006702981, + 5324.397164690991 + ], + [ + 1949.38006702981, + 5325.644640859914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.554144914732, + "min_y": 5324.397164690991, + "max_x": 1946.554144914732, + "max_y": 5325.644640859914, + "center": [ + 1946.554144914732, + 5325.020902775453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.554144914732, + 5324.397164690991 + ], + [ + 1946.554144914732, + 5325.644640859914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.22309029858, + "min_y": 5324.372663550156, + "max_x": 1940.22309029858, + "max_y": 5325.666265715838, + "center": [ + 1940.22309029858, + 5325.0194646329965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.22309029858, + 5325.666265715838 + ], + [ + 1940.22309029858, + 5324.372663550156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.397168183503, + "min_y": 5324.395726548539, + "max_x": 1937.397168183503, + "max_y": 5325.64320271746, + "center": [ + 1937.397168183503, + 5325.019464632999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.397168183503, + 5324.395726548539 + ], + [ + 1937.397168183503, + 5325.64320271746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.22309029858, + "min_y": 5324.395726548539, + "max_x": 1940.22309029858, + "max_y": 5325.64320271746, + "center": [ + 1940.22309029858, + 5325.019464632999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.22309029858, + 5324.395726548539 + ], + [ + 1940.22309029858, + 5325.64320271746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A9B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1936.915792874076, + "min_y": 5317.935803306363, + "max_x": 1936.915792874076, + "max_y": 5325.019464632999, + "center": [ + 1936.915792874076, + 5321.477633969681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.915792874076, + 5325.019464632999 + ], + [ + 1936.915792874076, + 5317.935803306363 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554A9C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1923.7729768822405, + "min_y": 5324.621866059654, + "max_x": 1924.5714967375934, + "max_y": 5325.420385915007, + "center": [ + 1924.172236809917, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.172236809917, + 5325.02112598733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.759275752378, + "min_y": 5324.397387902868, + "max_x": 1922.759275752378, + "max_y": 5325.644864071793, + "center": [ + 1922.759275752378, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.759275752378, + 5324.397387902868 + ], + [ + 1922.759275752378, + 5325.644864071793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.585197867456, + "min_y": 5324.397387902868, + "max_x": 1925.585197867456, + "max_y": 5325.644864071793, + "center": [ + 1925.585197867456, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.585197867456, + 5324.397387902868 + ], + [ + 1925.585197867456, + 5325.644864071793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554A9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1981.033831879796, + "min_y": 5349.705840955255, + "max_x": 1981.033831879796, + "max_y": 5353.681515346937, + "center": [ + 1981.033831879796, + 5351.693678151096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1981.033831879796, + 5349.705840955255 + ], + [ + 1981.033831879796, + 5353.681515346937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1977.390314068789, + "min_y": 5349.705840955255, + "max_x": 1977.390314068789, + "max_y": 5353.681515346937, + "center": [ + 1977.390314068789, + 5351.693678151096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.390314068789, + 5349.705840955255 + ], + [ + 1977.390314068789, + 5353.681515346937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.993878112496, + "min_y": 5353.705222743343, + "max_x": 1981.430267836097, + "max_y": 5353.705222743343, + "center": [ + 1979.2120729742965, + 5353.705222743343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.993878112496, + 5353.705222743343 + ], + [ + 1981.430267836097, + 5353.705222743343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.993878112496, + "min_y": 5354.091386574078, + "max_x": 1981.430267836097, + "max_y": 5354.091386574078, + "center": [ + 1979.2120729742965, + 5354.091386574078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.993878112496, + 5354.091386574078 + ], + [ + 1981.430267836097, + 5354.091386574078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1981.033831879798, + "min_y": 5354.091386574075, + "max_x": 1981.033831879798, + "max_y": 5354.965656210606, + "center": [ + 1981.033831879798, + 5354.52852139234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1981.033831879798, + 5354.965656210606 + ], + [ + 1981.033831879798, + 5354.091386574075 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1977.390314068789, + "min_y": 5354.091386574075, + "max_x": 1977.390314068789, + "max_y": 5354.965656210606, + "center": [ + 1977.390314068789, + 5354.52852139234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.390314068789, + 5354.965656210606 + ], + [ + 1977.390314068789, + 5354.091386574075 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AA7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1978.022790206111, + "min_y": 5355.772124801352, + "max_x": 1978.022790206111, + "max_y": 5360.932868382723, + "center": [ + 1978.022790206111, + 5358.352496592038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.022790206111, + 5360.932868382723 + ], + [ + 1978.022790206111, + 5355.772124801352 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AA8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1980.401355742564, + "min_y": 5355.772124801352, + "max_x": 1980.401355742564, + "max_y": 5360.932868382723, + "center": [ + 1980.401355742564, + 5358.352496592038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.401355742564, + 5360.932868382723 + ], + [ + 1980.401355742564, + 5355.772124801352 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.826887692106, + "min_y": 5399.220067038741, + "max_x": 1929.394669016442, + "max_y": 5399.220067038744, + "center": [ + 1927.610778354274, + 5399.220067038743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.826887692106, + 5399.220067038741 + ], + [ + 1929.394669016442, + 5399.220067038744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AAA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1967.102731239054, + "min_y": 5360.932868382723, + "max_x": 1967.102731239054, + "max_y": 5362.468559110287, + "center": [ + 1967.102731239054, + 5361.700713746505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5360.932868382723 + ], + [ + 1967.102731239054, + 5362.468559110287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AAB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1967.102731239054, + "min_y": 5365.294481225367, + "max_x": 1967.102731239054, + "max_y": 5367.334363979401, + "center": [ + 1967.102731239054, + 5366.314422602384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5365.294481225367 + ], + [ + 1967.102731239054, + 5367.334363979401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.102731239054, + "min_y": 5368.345065800081, + "max_x": 1967.102731239054, + "max_y": 5368.920895337679, + "center": [ + 1967.102731239054, + 5368.63298056888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5368.345065800081 + ], + [ + 1967.102731239054, + 5368.920895337679 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AAD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1966.7034713113776, + "min_y": 5363.482260240153, + "max_x": 1967.5019911667305, + "max_y": 5364.280780095505, + "center": [ + 1967.102731239054, + 5363.881520167829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5363.881520167829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5365.294481225367, + "max_x": 1967.726469323518, + "max_y": 5365.294481225367, + "center": [ + 1967.102731239055, + 5365.294481225367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.478993154592, + 5365.294481225367 + ], + [ + 1967.726469323518, + 5365.294481225367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5362.468559110287, + "max_x": 1967.726469323518, + "max_y": 5362.468559110287, + "center": [ + 1967.102731239055, + 5362.468559110287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.478993154592, + 5362.468559110287 + ], + [ + 1967.726469323518, + 5362.468559110287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1964.4404720666728, + "min_y": 5362.7465321467225, + "max_x": 1969.7649904114353, + "max_y": 5368.071050491486, + "center": [ + 1967.102731239054, + 5365.408791319104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5365.408791319104 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AB1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1967.102731239054, + "min_y": 5366.339735639124, + "max_x": 1968.673238481695, + "max_y": 5366.339735639124, + "center": [ + 1967.8879848603747, + 5366.339735639124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5366.339735639124 + ], + [ + 1968.673238481695, + 5366.339735639124 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912803, + "min_y": 5345.597220051629, + "max_x": 1907.709154080108, + "max_y": 5345.597220051629, + "center": [ + 1907.0738844964553, + 5345.597220051629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.709154080108, + 5345.597220051629 + ], + [ + 1906.438614912803, + 5345.597220051629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.073884496455, + "min_y": 5336.345911347205, + "max_x": 1907.073884496455, + "max_y": 5338.540152535817, + "center": [ + 1907.073884496455, + 5337.443031941511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496455, + 5336.345911347205 + ], + [ + 1907.073884496455, + 5338.540152535817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2000.038561057744, + "min_y": 5360.93699848666, + "max_x": 2003.929128645897, + "max_y": 5360.93699848666, + "center": [ + 2001.9838448518203, + 5360.93699848666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.929128645897, + 5360.93699848666 + ], + [ + 2000.038561057744, + 5360.93699848666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2001.011202954785, + "min_y": 5359.252333303421, + "max_x": 2002.956486748862, + "max_y": 5362.621663669902, + "center": [ + 2001.9838448518235, + 5360.936998486662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.011202954785, + 5362.621663669902 + ], + [ + 2002.956486748862, + 5359.252333303421 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2001.011202954785, + "min_y": 5359.252333303423, + "max_x": 2002.956486748862, + "max_y": 5362.621663669902, + "center": [ + 2001.9838448518235, + 5360.936998486663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.011202954785, + 5359.252333303423 + ], + [ + 2002.956486748862, + 5362.621663669902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.581662207845, + "min_y": 5363.471572356701, + "max_x": 2004.875264373521, + "max_y": 5363.471572356701, + "center": [ + 2004.228463290683, + 5363.471572356701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.581662207845, + 5363.471572356701 + ], + [ + 2004.875264373521, + 5363.471572356701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1926.98704026981, + "min_y": 5400.093577285389, + "max_x": 1928.234516438729, + "max_y": 5400.093577285389, + "center": [ + 1927.6107783542695, + 5400.093577285389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.234516438729, + 5400.093577285389 + ], + [ + 1926.98704026981, + 5400.093577285389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.669466129144, + "min_y": 5377.046074845691, + "max_x": 1932.551564987556, + "max_y": 5377.928173704103, + "center": [ + 1932.11051555835, + 5377.487124274897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.551564987556, + 5377.046074845691 + ], + [ + 1931.669466129144, + 5377.928173704103 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ABA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1926.987040269364, + "min_y": 5347.642857659275, + "max_x": 1928.234516438287, + "max_y": 5347.642857659275, + "center": [ + 1927.6107783538255, + 5347.642857659275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.234516438287, + 5347.642857659275 + ], + [ + 1926.987040269364, + 5347.642857659275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ABB", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1930.366009117932, + "min_y": 5375.742617834488, + "max_x": 1932.110515558346, + "max_y": 5377.4871242749, + "center": [ + 1931.238262338139, + 5376.614871054694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.110515558346, + 5377.4871242749 + ], + [ + 1930.366009117932, + 5375.742617834488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ABC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1932.390914413761, + "min_y": 5377.767523130288, + "max_x": 1933.54678854719, + "max_y": 5378.923397263715, + "center": [ + 1932.9688514804757, + 5378.345460197002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.390914413761, + 5377.767523130288 + ], + [ + 1933.54678854719, + 5378.923397263715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554ABD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1933.54678854719, + "min_y": 5378.923397263715, + "max_x": 1963.771463575221, + "max_y": 5378.923397263734, + "center": [ + 1948.6591260612056, + 5378.923397263725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.54678854719, + 5378.923397263715 + ], + [ + 1963.771463575221, + 5378.923397263734 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554ABE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.153602784074, + "min_y": 5385.073795219376, + "max_x": 1960.153602784074, + "max_y": 5386.825508117077, + "center": [ + 1960.153602784074, + 5385.949651668227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.153602784074, + 5385.073795219376 + ], + [ + 1960.153602784074, + 5386.825508117077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ABF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1960.153602784076, + "min_y": 5378.923397263726, + "max_x": 1960.153602784076, + "max_y": 5383.377690615908, + "center": [ + 1960.153602784076, + 5381.150543939817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.153602784076, + 5383.377690615908 + ], + [ + 1960.153602784076, + 5378.923397263726 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AC0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1938.4108693133676, + "min_y": 5324.620204705323, + "max_x": 1939.2093891687205, + "max_y": 5325.418724560675, + "center": [ + 1938.810129241044, + 5325.019464632999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.810129241044, + 5325.019464632999 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1947.5712950313825, + "min_y": 5324.62370789975, + "max_x": 1948.3698148867354, + "max_y": 5325.4222277551025, + "center": [ + 1947.970554959059, + 5325.022967827426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1947.970554959059, + 5325.022967827426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.639391355156, + "max_x": 1919.190630526328, + "max_y": 5371.88686752408, + "center": [ + 1919.190630526328, + 5371.263129439618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5371.88686752408 + ], + [ + 1919.190630526328, + 5370.639391355156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.703419072365, + "min_y": 5370.616328356776, + "max_x": 1918.703419072365, + "max_y": 5371.909930522455, + "center": [ + 1918.703419072365, + 5371.263129439616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.703419072365, + 5371.909930522455 + ], + [ + 1918.703419072365, + 5370.616328356776 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5370.625391766251, + "max_x": 1921.645339898731, + "max_y": 5371.918993931934, + "center": [ + 1921.645339898731, + 5371.272192849092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5371.918993931934 + ], + [ + 1921.645339898731, + 5370.625391766251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1919.8331189135156, + "min_y": 5370.872932921417, + "max_x": 1920.6316387688685, + "max_y": 5371.671452776769, + "center": [ + 1920.232378841192, + 5371.272192849093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.232378841192, + 5371.272192849093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.639391355156, + "max_x": 1919.190630526328, + "max_y": 5371.88686752408, + "center": [ + 1919.190630526328, + 5371.263129439618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5370.639391355156 + ], + [ + 1919.190630526328, + 5371.88686752408 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5370.648454764627, + "max_x": 1921.645339898731, + "max_y": 5371.895930933553, + "center": [ + 1921.645339898731, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5370.648454764627 + ], + [ + 1921.645339898731, + 5371.895930933553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.792129846983, + "max_x": 1919.190630526328, + "max_y": 5364.039606015905, + "center": [ + 1919.190630526328, + 5363.415867931444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5364.039606015905 + ], + [ + 1919.190630526328, + 5362.792129846983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.703419072365, + "min_y": 5362.769066848604, + "max_x": 1918.703419072365, + "max_y": 5364.062669014284, + "center": [ + 1918.703419072365, + 5363.415867931444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.703419072365, + 5364.062669014284 + ], + [ + 1918.703419072365, + 5362.769066848604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5362.778130258083, + "max_x": 1921.645339898731, + "max_y": 5364.071732423762, + "center": [ + 1921.645339898731, + 5363.424931340923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5364.071732423762 + ], + [ + 1921.645339898731, + 5362.778130258083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1919.8331189135156, + "min_y": 5363.025671413243, + "max_x": 1920.6316387688685, + "max_y": 5363.824191268595, + "center": [ + 1920.232378841192, + 5363.424931340919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.232378841192, + 5363.424931340919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.792129846983, + "max_x": 1919.190630526328, + "max_y": 5364.039606015905, + "center": [ + 1919.190630526328, + 5363.415867931444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5362.792129846983 + ], + [ + 1919.190630526328, + 5364.039606015905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5362.801193256458, + "max_x": 1921.645339898731, + "max_y": 5364.048669425383, + "center": [ + 1921.645339898731, + 5363.42493134092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5362.801193256458 + ], + [ + 1921.645339898731, + 5364.048669425383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1934.7059166500846, + "min_y": 5372.359172789812, + "max_x": 1935.5044365054375, + "max_y": 5373.157692645164, + "center": [ + 1935.105176577761, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.105176577761, + 5372.758432717488 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ACF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1934.7059166500846, + "min_y": 5363.304090641955, + "max_x": 1935.5044365054375, + "max_y": 5364.102610497307, + "center": [ + 1935.105176577761, + 5363.703350569631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.105176577761, + 5363.703350569631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1991.90763220611, + "min_y": 5360.932868382729, + "max_x": 1991.90763220611, + "max_y": 5362.632074927375, + "center": [ + 1991.90763220611, + 5361.782471655051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.90763220611, + 5360.932868382729 + ], + [ + 1991.90763220611, + 5362.632074927375 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AD1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1991.90763220611, + "min_y": 5365.457997042451, + "max_x": 1991.90763220611, + "max_y": 5368.837772609217, + "center": [ + 1991.90763220611, + 5367.147884825834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.90763220611, + 5365.457997042451 + ], + [ + 1991.90763220611, + 5368.837772609217 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AD2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1991.90763220611, + "min_y": 5366.826878965341, + "max_x": 1993.591376801359, + "max_y": 5366.826878965341, + "center": [ + 1992.7495045037344, + 5366.826878965341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.90763220611, + 5366.826878965341 + ], + [ + 1993.591376801359, + 5366.826878965341 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AD3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1994.7960548089645, + "min_y": 5366.427619037665, + "max_x": 1995.5945746643174, + "max_y": 5367.226138893017, + "center": [ + 1995.195314736641, + 5366.826878965341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.195314736641, + 5366.826878965341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.789391631128, + "min_y": 5366.203140880877, + "max_x": 1996.789391631128, + "max_y": 5367.4506170498, + "center": [ + 1996.789391631128, + 5366.826878965338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.789391631128, + 5367.4506170498 + ], + [ + 1996.789391631128, + 5366.203140880877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1897.707864251495, + "min_y": 5325.65684400431, + "max_x": 1909.1306540255077, + "max_y": 5326.776725354704, + "center": [ + 1903.4192591385013, + 5326.216784679507 + ] + }, + "raw_value": "P-10144-25A-F1A-n", + "clean_value": "P-10144-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.153566421775, + "min_y": 5366.203140880877, + "max_x": 1994.852762147299, + "max_y": 5366.621778469514, + "center": [ + 1994.503164284537, + 5366.412459675195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.852762147299, + 5366.621778469514 + ], + [ + 1994.153566421775, + 5366.203140880877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.153566421775, + "min_y": 5366.203140880877, + "max_x": 1994.153566421775, + "max_y": 5367.4506170498, + "center": [ + 1994.153566421775, + 5366.826878965338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.153566421775, + 5366.203140880877 + ], + [ + 1994.153566421775, + 5367.4506170498 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.153566421775, + "min_y": 5367.031979461161, + "max_x": 1994.852762147299, + "max_y": 5367.4506170498, + "center": [ + 1994.503164284537, + 5367.241298255481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.153566421775, + 5367.4506170498 + ], + [ + 1994.852762147299, + 5367.031979461161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.537867325975, + "min_y": 5366.203140880877, + "max_x": 1996.237063051502, + "max_y": 5366.62177846952, + "center": [ + 1995.8874651887386, + 5366.412459675199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.537867325975, + 5366.62177846952 + ], + [ + 1996.237063051502, + 5366.203140880877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.237063051502, + "min_y": 5366.203140880877, + "max_x": 1996.237063051502, + "max_y": 5367.4506170498, + "center": [ + 1996.237063051502, + 5366.826878965338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.237063051502, + 5366.203140880877 + ], + [ + 1996.237063051502, + 5367.4506170498 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.537867325975, + "min_y": 5367.031979461161, + "max_x": 1996.237063051502, + "max_y": 5367.4506170498, + "center": [ + 1995.8874651887386, + 5367.241298255481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.237063051502, + 5367.4506170498 + ], + [ + 1995.537867325975, + 5367.031979461161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5362.79419489895, + "max_x": 1921.274127156056, + "max_y": 5364.055667782889, + "center": [ + 1921.274127156056, + 5363.42493134092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5364.055667782889 + ], + [ + 1921.274127156056, + 5362.79419489895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5362.79419489895, + "max_x": 1921.645339898731, + "max_y": 5364.055667782889, + "center": [ + 1921.645339898731, + 5363.42493134092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5364.055667782889 + ], + [ + 1921.645339898731, + 5362.79419489895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.787196541437, + "max_x": 1919.190630526328, + "max_y": 5364.048669425383, + "center": [ + 1919.190630526328, + 5363.41793298341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5364.048669425383 + ], + [ + 1919.190630526328, + 5362.787196541437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ADF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.787196541437, + "max_x": 1919.190630526328, + "max_y": 5364.048669425383, + "center": [ + 1919.190630526328, + 5363.41793298341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5364.048669425383 + ], + [ + 1919.190630526328, + 5362.787196541437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5363.630031836745, + "max_x": 1919.889826251852, + "max_y": 5364.048669425383, + "center": [ + 1919.5402283890899, + 5363.839350631064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.889826251852, + 5363.630031836745 + ], + [ + 1919.190630526328, + 5364.048669425383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.801193256458, + "max_x": 1919.190630526328, + "max_y": 5364.048669425383, + "center": [ + 1919.190630526328, + 5363.42493134092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5364.048669425383 + ], + [ + 1919.190630526328, + 5362.801193256458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5362.801193256458, + "max_x": 1919.889826251852, + "max_y": 5363.219830845095, + "center": [ + 1919.5402283890899, + 5363.010512050776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5362.801193256458 + ], + [ + 1919.889826251852, + 5363.219830845095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.574931430529, + "min_y": 5363.630031836742, + "max_x": 1921.274127156056, + "max_y": 5364.048669425383, + "center": [ + 1920.9245292932924, + 5363.839350631062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.574931430529, + 5363.630031836742 + ], + [ + 1921.274127156056, + 5364.048669425383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5362.801193256458, + "max_x": 1921.274127156056, + "max_y": 5364.048669425383, + "center": [ + 1921.274127156056, + 5363.42493134092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5364.048669425383 + ], + [ + 1921.274127156056, + 5362.801193256458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.574931430529, + "min_y": 5362.801193256458, + "max_x": 1921.274127156056, + "max_y": 5363.2198308451, + "center": [ + 1920.9245292932924, + 5363.010512050779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5362.801193256458 + ], + [ + 1920.574931430529, + 5363.2198308451 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5370.64145640712, + "max_x": 1921.274127156056, + "max_y": 5371.902929291061, + "center": [ + 1921.274127156056, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5371.902929291061 + ], + [ + 1921.274127156056, + 5370.64145640712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5370.64145640712, + "max_x": 1921.645339898731, + "max_y": 5371.902929291061, + "center": [ + 1921.645339898731, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5371.902929291061 + ], + [ + 1921.645339898731, + 5370.64145640712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.634458049615, + "max_x": 1919.190630526328, + "max_y": 5371.895930933553, + "center": [ + 1919.190630526328, + 5371.265194491584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5371.895930933553 + ], + [ + 1919.190630526328, + 5370.634458049615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.634458049615, + "max_x": 1919.190630526328, + "max_y": 5371.895930933553, + "center": [ + 1919.190630526328, + 5371.265194491584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5371.895930933553 + ], + [ + 1919.190630526328, + 5370.634458049615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5371.477293344916, + "max_x": 1919.889826251852, + "max_y": 5371.895930933553, + "center": [ + 1919.5402283890899, + 5371.686612139234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.889826251852, + 5371.477293344916 + ], + [ + 1919.190630526328, + 5371.895930933553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.648454764627, + "max_x": 1919.190630526328, + "max_y": 5371.895930933553, + "center": [ + 1919.190630526328, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5371.895930933553 + ], + [ + 1919.190630526328, + 5370.648454764627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.190630526328, + "min_y": 5370.648454764627, + "max_x": 1919.889826251852, + "max_y": 5371.067092353266, + "center": [ + 1919.5402283890899, + 5370.857773558946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.190630526328, + 5370.648454764627 + ], + [ + 1919.889826251852, + 5371.067092353266 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.574931430529, + "min_y": 5371.477293344916, + "max_x": 1921.274127156056, + "max_y": 5371.895930933553, + "center": [ + 1920.9245292932924, + 5371.686612139234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.574931430529, + 5371.477293344916 + ], + [ + 1921.274127156056, + 5371.895930933553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5370.648454764627, + "max_x": 1921.274127156056, + "max_y": 5371.895930933553, + "center": [ + 1921.274127156056, + 5371.27219284909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5371.895930933553 + ], + [ + 1921.274127156056, + 5370.648454764627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.574931430529, + "min_y": 5370.648454764627, + "max_x": 1921.274127156056, + "max_y": 5371.067092353271, + "center": [ + 1920.9245292932924, + 5370.857773558949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5370.648454764627 + ], + [ + 1920.574931430529, + 5371.067092353271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.83856829352, + "min_y": 5385.568811263503, + "max_x": 1960.468637274627, + "max_y": 5386.198880244615, + "center": [ + 1960.1536027840734, + 5385.883845754059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.83856829352, + 5386.198880244615 + ], + [ + 1960.468637274627, + 5385.568811263503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.83856829352, + "min_y": 5385.883845754056, + "max_x": 1960.468637274627, + "max_y": 5386.513914735168, + "center": [ + 1960.1536027840734, + 5386.198880244612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.468637274627, + 5385.883845754056 + ], + [ + 1959.83856829352, + 5386.513914735168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.83856829352, + "min_y": 5386.198880244615, + "max_x": 1960.468637274627, + "max_y": 5386.828949225725, + "center": [ + 1960.1536027840734, + 5386.51391473517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.83856829352, + 5386.828949225725 + ], + [ + 1960.468637274627, + 5386.198880244615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.153602784074, + "min_y": 5385.073795219376, + "max_x": 1960.153602784074, + "max_y": 5386.828949225725, + "center": [ + 1960.153602784074, + 5385.951372222551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.153602784074, + 5385.073795219376 + ], + [ + 1960.153602784074, + 5386.828949225725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.523533802958, + "min_y": 5383.813657257157, + "max_x": 1960.153602784074, + "max_y": 5385.073795219376, + "center": [ + 1959.838568293516, + 5384.443726238266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.153602784074, + 5385.073795219376 + ], + [ + 1959.523533802958, + 5383.813657257157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.523533802958, + "min_y": 5383.813657257157, + "max_x": 1960.783671765186, + "max_y": 5383.813657257157, + "center": [ + 1960.153602784072, + 5383.813657257157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.523533802958, + 5383.813657257157 + ], + [ + 1960.783671765186, + 5383.813657257157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.153602784074, + "min_y": 5383.813657257157, + "max_x": 1960.783671765186, + "max_y": 5385.073795219376, + "center": [ + 1960.46863727463, + 5384.443726238266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.783671765186, + 5383.813657257157 + ], + [ + 1960.153602784074, + 5385.073795219376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.153602784074, + "min_y": 5385.073795219376, + "max_x": 1961.413740746296, + "max_y": 5385.703864200493, + "center": [ + 1960.783671765185, + 5385.388829709935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.153602784074, + 5385.073795219376 + ], + [ + 1961.413740746296, + 5385.703864200493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.413740746296, + "min_y": 5384.443726238274, + "max_x": 1961.413740746296, + "max_y": 5385.703864200493, + "center": [ + 1961.413740746296, + 5385.073795219383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.413740746296, + 5385.703864200493 + ], + [ + 1961.413740746296, + 5384.443726238274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.153602784074, + "min_y": 5384.443726238274, + "max_x": 1961.413740746296, + "max_y": 5385.073795219376, + "center": [ + 1960.783671765185, + 5384.758760728825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.413740746296, + 5384.443726238274 + ], + [ + 1960.153602784074, + 5385.073795219376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.017266133833, + "min_y": 5368.345065800081, + "max_x": 1968.188196344278, + "max_y": 5368.345065800081, + "center": [ + 1967.1027312390554, + 5368.345065800081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.017266133833, + 5368.345065800081 + ], + [ + 1968.188196344278, + 5368.345065800081 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.188196344278, + "min_y": 5367.334363979401, + "max_x": 1968.188196344278, + "max_y": 5368.345065800081, + "center": [ + 1968.188196344278, + 5367.839714889741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.188196344278, + 5368.345065800081 + ], + [ + 1968.188196344278, + 5367.334363979401 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.017266133833, + "min_y": 5367.334363979401, + "max_x": 1968.188196344278, + "max_y": 5367.334363979401, + "center": [ + 1967.1027312390554, + 5367.334363979401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.188196344278, + 5367.334363979401 + ], + [ + 1966.017266133833, + 5367.334363979401 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.017266133833, + "min_y": 5367.334363979401, + "max_x": 1966.017266133833, + "max_y": 5368.345065800081, + "center": [ + 1966.017266133833, + 5367.839714889741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.017266133833, + 5367.334363979401 + ], + [ + 1966.017266133833, + 5368.345065800081 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554AFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5362.83977185296, + "max_x": 1966.89763074323, + "max_y": 5363.538967578486, + "center": [ + 1966.688311948911, + 5363.189369715723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.89763074323, + 5363.538967578486 + ], + [ + 1966.478993154592, + 5362.83977185296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554AFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5362.83977185296, + "max_x": 1967.726469323518, + "max_y": 5362.83977185296, + "center": [ + 1967.102731239055, + 5362.83977185296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.478993154592, + 5362.83977185296 + ], + [ + 1967.726469323518, + 5362.83977185296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.30783173488, + "min_y": 5362.83977185296, + "max_x": 1967.726469323518, + "max_y": 5363.538967578486, + "center": [ + 1967.517150529199, + 5363.189369715723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.726469323518, + 5362.83977185296 + ], + [ + 1967.30783173488, + 5363.538967578486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5364.224072757163, + "max_x": 1966.897630743233, + "max_y": 5364.923268482687, + "center": [ + 1966.6883119489125, + 5364.573670619925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.897630743233, + 5364.224072757163 + ], + [ + 1966.478993154592, + 5364.923268482687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.478993154592, + "min_y": 5364.923268482687, + "max_x": 1967.726469323518, + "max_y": 5364.923268482687, + "center": [ + 1967.102731239055, + 5364.923268482687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.478993154592, + 5364.923268482687 + ], + [ + 1967.726469323518, + 5364.923268482687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.307831734874, + "min_y": 5364.224072757163, + "max_x": 1967.726469323518, + "max_y": 5364.923268482687, + "center": [ + 1967.517150529196, + 5364.573670619925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.726469323518, + 5364.923268482687 + ], + [ + 1967.307831734874, + 5364.224072757163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.130488495053, + "min_y": 5324.397387902868, + "max_x": 1923.829684220578, + "max_y": 5324.816025491506, + "center": [ + 1923.4800863578155, + 5324.606706697186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.829684220578, + 5324.816025491506 + ], + [ + 1923.130488495053, + 5324.397387902868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.130488495053, + "min_y": 5324.397387902868, + "max_x": 1923.130488495053, + "max_y": 5325.644864071793, + "center": [ + 1923.130488495053, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.130488495053, + 5324.397387902868 + ], + [ + 1923.130488495053, + 5325.644864071793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.130488495053, + "min_y": 5325.226226483152, + "max_x": 1923.829684220578, + "max_y": 5325.644864071793, + "center": [ + 1923.4800863578155, + 5325.435545277473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.130488495053, + 5325.644864071793 + ], + [ + 1923.829684220578, + 5325.226226483152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.514789399251, + "min_y": 5324.397387902868, + "max_x": 1925.213985124783, + "max_y": 5324.816025491508, + "center": [ + 1924.8643872620169, + 5324.606706697188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.514789399251, + 5324.816025491508 + ], + [ + 1925.213985124783, + 5324.397387902868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.213985124783, + "min_y": 5324.397387902868, + "max_x": 1925.213985124783, + "max_y": 5325.644864071793, + "center": [ + 1925.213985124783, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.213985124783, + 5324.397387902868 + ], + [ + 1925.213985124783, + 5325.644864071793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.514789399251, + "min_y": 5325.226226483152, + "max_x": 1925.213985124783, + "max_y": 5325.644864071793, + "center": [ + 1924.8643872620169, + 5325.435545277473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.213985124783, + 5325.644864071793 + ], + [ + 1924.514789399251, + 5325.226226483152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.851877555908, + "min_y": 5324.388728191031, + "max_x": 1939.851877555908, + "max_y": 5325.650201074968, + "center": [ + 1939.851877555908, + 5325.019464633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.851877555908, + 5325.650201074968 + ], + [ + 1939.851877555908, + 5324.388728191031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.22309029858, + "min_y": 5324.388728191031, + "max_x": 1940.22309029858, + "max_y": 5325.650201074968, + "center": [ + 1940.22309029858, + 5325.019464633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.22309029858, + 5325.650201074968 + ], + [ + 1940.22309029858, + 5324.388728191031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.397168183503, + "min_y": 5324.390793242995, + "max_x": 1937.397168183503, + "max_y": 5325.652266126937, + "center": [ + 1937.397168183503, + 5325.021529684966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.397168183503, + 5325.652266126937 + ], + [ + 1937.397168183503, + 5324.390793242995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.397168183503, + "min_y": 5324.390793242995, + "max_x": 1937.397168183503, + "max_y": 5325.652266126937, + "center": [ + 1937.397168183503, + 5325.021529684966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.397168183503, + 5325.652266126937 + ], + [ + 1937.397168183503, + 5324.390793242995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.768380926181, + "min_y": 5325.224565128818, + "max_x": 1938.467576651708, + "max_y": 5325.64320271746, + "center": [ + 1938.1179787889446, + 5325.433883923139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.467576651708, + 5325.224565128818 + ], + [ + 1937.768380926181, + 5325.64320271746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.768380926181, + "min_y": 5324.395726548539, + "max_x": 1937.768380926181, + "max_y": 5325.64320271746, + "center": [ + 1937.768380926181, + 5325.019464632999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.768380926181, + 5325.64320271746 + ], + [ + 1937.768380926181, + 5324.395726548539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.768380926181, + "min_y": 5324.395726548539, + "max_x": 1938.467576651708, + "max_y": 5324.814364137176, + "center": [ + 1938.1179787889446, + 5324.605045342858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.768380926181, + 5324.395726548539 + ], + [ + 1938.467576651708, + 5324.814364137176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.152681830378, + "min_y": 5325.224565128818, + "max_x": 1939.851877555908, + "max_y": 5325.64320271746, + "center": [ + 1939.502279693143, + 5325.433883923139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.152681830378, + 5325.224565128818 + ], + [ + 1939.851877555908, + 5325.64320271746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.851877555908, + "min_y": 5324.395726548539, + "max_x": 1939.851877555908, + "max_y": 5325.64320271746, + "center": [ + 1939.851877555908, + 5325.019464632999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.851877555908, + 5325.64320271746 + ], + [ + 1939.851877555908, + 5324.395726548539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.152681830378, + "min_y": 5324.395726548539, + "max_x": 1939.851877555908, + "max_y": 5324.814364137176, + "center": [ + 1939.502279693143, + 5324.605045342858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.851877555908, + 5324.395726548539 + ], + [ + 1939.152681830378, + 5324.814364137176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.925357657405, + "min_y": 5324.390166333484, + "max_x": 1946.925357657405, + "max_y": 5325.65163921742, + "center": [ + 1946.925357657405, + 5325.020902775452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.925357657405, + 5325.65163921742 + ], + [ + 1946.925357657405, + 5324.390166333484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.554144914732, + "min_y": 5324.390166333484, + "max_x": 1946.554144914732, + "max_y": 5325.65163921742, + "center": [ + 1946.554144914732, + 5325.020902775452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.554144914732, + 5325.65163921742 + ], + [ + 1946.554144914732, + 5324.390166333484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1949.38006702981, + "min_y": 5324.392231385448, + "max_x": 1949.38006702981, + "max_y": 5325.65370426939, + "center": [ + 1949.38006702981, + 5325.022967827419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.38006702981, + 5325.65370426939 + ], + [ + 1949.38006702981, + 5324.392231385448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1949.38006702981, + "min_y": 5324.392231385448, + "max_x": 1949.38006702981, + "max_y": 5325.65370426939, + "center": [ + 1949.38006702981, + 5325.022967827419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.38006702981, + 5325.65370426939 + ], + [ + 1949.38006702981, + 5324.392231385448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1948.30965856161, + "min_y": 5325.226003271275, + "max_x": 1949.008854287132, + "max_y": 5325.644640859914, + "center": [ + 1948.659256424371, + 5325.435322065594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.30965856161, + 5325.226003271275 + ], + [ + 1949.008854287132, + 5325.644640859914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1949.008854287132, + "min_y": 5324.397164690991, + "max_x": 1949.008854287132, + "max_y": 5325.644640859914, + "center": [ + 1949.008854287132, + 5325.020902775453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.008854287132, + 5325.644640859914 + ], + [ + 1949.008854287132, + 5324.397164690991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1948.30965856161, + "min_y": 5324.397164690991, + "max_x": 1949.008854287132, + "max_y": 5324.81580227963, + "center": [ + 1948.659256424371, + 5324.6064834853105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.008854287132, + 5324.397164690991 + ], + [ + 1948.30965856161, + 5324.81580227963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.925357657405, + "min_y": 5325.225020032115, + "max_x": 1947.626195558971, + "max_y": 5325.644640859914, + "center": [ + 1947.275776608188, + 5325.4348304460145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1947.626195558971, + 5325.225020032115 + ], + [ + 1946.925357657405, + 5325.644640859914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.925357657405, + "min_y": 5324.397164690991, + "max_x": 1946.925357657405, + "max_y": 5325.644640859914, + "center": [ + 1946.925357657405, + 5325.020902775453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.925357657405, + 5325.644640859914 + ], + [ + 1946.925357657405, + 5324.397164690991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.925357657405, + "min_y": 5324.397164690991, + "max_x": 1947.628002369722, + "max_y": 5324.817867331606, + "center": [ + 1947.2766800135635, + 5324.607516011299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.925357657405, + 5324.397164690991 + ], + [ + 1947.628002369722, + 5324.817867331606 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.200084169263, + "min_y": 5324.026175160195, + "max_x": 1933.200084169263, + "max_y": 5326.016076814467, + "center": [ + 1933.200084169263, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.200084169263, + 5326.016076814467 + ], + [ + 1933.200084169263, + 5324.026175160195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.240969529073, + "min_y": 5324.026175160195, + "max_x": 1933.200084169263, + "max_y": 5324.026175160195, + "center": [ + 1931.220526849168, + 5324.026175160195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.200084169263, + 5324.026175160195 + ], + [ + 1929.240969529073, + 5324.026175160195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.240969529073, + "min_y": 5324.026175160195, + "max_x": 1929.240969529073, + "max_y": 5326.016076814467, + "center": [ + 1929.240969529073, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.240969529073, + 5324.026175160195 + ], + [ + 1929.240969529073, + 5326.016076814467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.240969529073, + "min_y": 5326.016076814467, + "max_x": 1933.200084169263, + "max_y": 5326.016076814467, + "center": [ + 1931.220526849168, + 5326.016076814467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.240969529073, + 5326.016076814467 + ], + [ + 1933.200084169263, + 5326.016076814467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1938.527345002583, + "min_y": 5362.617885464406, + "max_x": 1938.527345002583, + "max_y": 5364.788815674851, + "center": [ + 1938.527345002583, + 5363.703350569629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5364.788815674851 + ], + [ + 1938.527345002583, + 5362.617885464406 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5362.617885464406, + "max_x": 1938.527345002583, + "max_y": 5362.617885464406, + "center": [ + 1938.0219940922416, + 5362.617885464406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5362.617885464406 + ], + [ + 1937.5166431819, + 5362.617885464406 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5362.617885464406, + "max_x": 1937.5166431819, + "max_y": 5364.788815674851, + "center": [ + 1937.5166431819, + 5363.703350569629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.5166431819, + 5362.617885464406 + ], + [ + 1937.5166431819, + 5364.788815674851 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5364.788815674851, + "max_x": 1938.527345002583, + "max_y": 5364.788815674851, + "center": [ + 1938.0219940922416, + 5364.788815674851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.5166431819, + 5364.788815674851 + ], + [ + 1938.527345002583, + 5364.788815674851 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1938.527345002583, + "min_y": 5371.672967612267, + "max_x": 1938.527345002583, + "max_y": 5373.843897822709, + "center": [ + 1938.527345002583, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5373.843897822709 + ], + [ + 1938.527345002583, + 5371.672967612267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5371.672967612267, + "max_x": 1938.527345002583, + "max_y": 5371.672967612267, + "center": [ + 1938.0219940922416, + 5371.672967612267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.527345002583, + 5371.672967612267 + ], + [ + 1937.5166431819, + 5371.672967612267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5371.672967612267, + "max_x": 1937.5166431819, + "max_y": 5373.843897822709, + "center": [ + 1937.5166431819, + 5372.758432717488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.5166431819, + 5371.672967612267 + ], + [ + 1937.5166431819, + 5373.843897822709 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.5166431819, + "min_y": 5373.843897822709, + "max_x": 1938.527345002583, + "max_y": 5373.843897822709, + "center": [ + 1938.0219940922416, + 5373.843897822709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.5166431819, + 5373.843897822709 + ], + [ + 1938.527345002583, + 5373.843897822709 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.703607112033, + "min_y": 5360.304196992721, + "max_x": 1985.703607112033, + "max_y": 5361.565669876663, + "center": [ + 1985.703607112033, + 5360.934933434692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.703607112033, + 5361.565669876663 + ], + [ + 1985.703607112033, + 5360.304196992721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.703607112033, + "min_y": 5360.304196992721, + "max_x": 1985.703607112033, + "max_y": 5361.565669876663, + "center": [ + 1985.703607112033, + 5360.934933434692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.703607112033, + 5361.565669876663 + ], + [ + 1985.703607112033, + 5360.304196992721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.158316484435, + "min_y": 5360.302131940755, + "max_x": 1988.158316484435, + "max_y": 5361.563604824697, + "center": [ + 1988.158316484435, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.158316484435, + 5361.563604824697 + ], + [ + 1988.158316484435, + 5360.302131940755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.52952922711, + "min_y": 5360.302131940755, + "max_x": 1988.52952922711, + "max_y": 5361.563604824697, + "center": [ + 1988.52952922711, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.52952922711, + 5361.563604824697 + ], + [ + 1988.52952922711, + 5360.302131940755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.074819854708, + "min_y": 5361.137968878551, + "max_x": 1986.774015580235, + "max_y": 5361.556606467187, + "center": [ + 1986.4244177174714, + 5361.347287672868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.774015580235, + 5361.137968878551 + ], + [ + 1986.074819854708, + 5361.556606467187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.074819854708, + "min_y": 5360.309130298265, + "max_x": 1986.074819854708, + "max_y": 5361.556606467187, + "center": [ + 1986.074819854708, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.074819854708, + 5361.556606467187 + ], + [ + 1986.074819854708, + 5360.309130298265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.074819854708, + "min_y": 5360.309130298265, + "max_x": 1986.774015580235, + "max_y": 5360.727767886903, + "center": [ + 1986.4244177174714, + 5360.518449092584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.074819854708, + 5360.309130298265 + ], + [ + 1986.774015580235, + 5360.727767886903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1987.459120758909, + "min_y": 5361.137968878546, + "max_x": 1988.158316484435, + "max_y": 5361.556606467187, + "center": [ + 1987.8087186216721, + 5361.3472876728665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.459120758909, + 5361.137968878546 + ], + [ + 1988.158316484435, + 5361.556606467187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.158316484435, + "min_y": 5360.309130298265, + "max_x": 1988.158316484435, + "max_y": 5361.556606467187, + "center": [ + 1988.158316484435, + 5360.932868382726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.158316484435, + 5361.556606467187 + ], + [ + 1988.158316484435, + 5360.309130298265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1987.459120758909, + "min_y": 5360.309130298265, + "max_x": 1988.158316484435, + "max_y": 5360.727767886906, + "center": [ + 1987.8087186216721, + 5360.518449092586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.158316484435, + 5360.309130298265 + ], + [ + 1987.459120758909, + 5360.727767886906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.655275739033, + "min_y": 5331.436099724714, + "max_x": 1920.073913327669, + "max_y": 5332.135295450241, + "center": [ + 1919.864594533351, + 5331.785697587477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.655275739033, + 5332.135295450241 + ], + [ + 1920.073913327669, + 5331.436099724714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5331.436099724714, + "max_x": 1920.073913327669, + "max_y": 5331.436099724714, + "center": [ + 1919.4501752432075, + 5331.436099724714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.073913327669, + 5331.436099724714 + ], + [ + 1918.826437158746, + 5331.436099724714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5331.436099724714, + "max_x": 1919.245074747387, + "max_y": 5332.135295450241, + "center": [ + 1919.0357559530667, + 5331.785697587477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.826437158746, + 5331.436099724714 + ], + [ + 1919.245074747387, + 5332.135295450241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.655275739031, + "min_y": 5332.820400628917, + "max_x": 1920.073913327669, + "max_y": 5333.519596354442, + "center": [ + 1919.86459453335, + 5333.1699984916795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.655275739031, + 5332.820400628917 + ], + [ + 1920.073913327669, + 5333.519596354442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5333.519596354442, + "max_x": 1920.073913327669, + "max_y": 5333.519596354442, + "center": [ + 1919.4501752432075, + 5333.519596354442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.073913327669, + 5333.519596354442 + ], + [ + 1918.826437158746, + 5333.519596354442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.826437158746, + "min_y": 5332.820400628917, + "max_x": 1919.245074747389, + "max_y": 5333.519596354442, + "center": [ + 1919.0357559530676, + 5333.1699984916795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.826437158746, + 5333.519596354442 + ], + [ + 1919.245074747389, + 5332.820400628917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.904983439854, + "min_y": 5335.71723995719, + "max_x": 1925.904983439854, + "max_y": 5336.978712841131, + "center": [ + 1925.904983439854, + 5336.34797639916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.904983439854, + 5336.978712841131 + ], + [ + 1925.904983439854, + 5335.71723995719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.904983439854, + "min_y": 5335.71723995719, + "max_x": 1925.904983439854, + "max_y": 5336.978712841131, + "center": [ + 1925.904983439854, + 5336.34797639916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.904983439854, + 5336.978712841131 + ], + [ + 1925.904983439854, + 5335.71723995719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.556115556895, + "min_y": 5336.345911347196, + "max_x": 1923.079061324779, + "max_y": 5336.345911347196, + "center": [ + 1921.817588440837, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.556115556895, + 5336.345911347196 + ], + [ + 1923.079061324779, + 5336.345911347196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.450274067455, + "min_y": 5335.715174905228, + "max_x": 1923.450274067455, + "max_y": 5336.976647789165, + "center": [ + 1923.450274067455, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.450274067455, + 5336.976647789165 + ], + [ + 1923.450274067455, + 5335.715174905228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.079061324779, + "min_y": 5335.715174905228, + "max_x": 1923.079061324779, + "max_y": 5336.976647789165, + "center": [ + 1923.079061324779, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.079061324779, + 5336.976647789165 + ], + [ + 1923.079061324779, + 5335.715174905228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.186851998866, + "min_y": 5335.084438463257, + "max_x": 1922.448324882808, + "max_y": 5336.345911347196, + "center": [ + 1921.817588440837, + 5335.715174905226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.448324882808, + 5336.345911347196 + ], + [ + 1921.186851998866, + 5335.084438463257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.871483777883, + "min_y": 5334.769070242269, + "max_x": 1921.502220219854, + "max_y": 5335.39980668424, + "center": [ + 1921.1868519988684, + 5335.084438463255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.871483777883, + 5335.39980668424 + ], + [ + 1921.502220219854, + 5334.769070242269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.834574971655, + "min_y": 5336.55101184302, + "max_x": 1925.533770697182, + "max_y": 5336.969649431658, + "center": [ + 1925.1841728344184, + 5336.7603306373385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.834574971655, + 5336.55101184302 + ], + [ + 1925.533770697182, + 5336.969649431658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.533770697182, + "min_y": 5335.722173262736, + "max_x": 1925.533770697182, + "max_y": 5336.969649431658, + "center": [ + 1925.533770697182, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.533770697182, + 5336.969649431658 + ], + [ + 1925.533770697182, + 5335.722173262736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.834574971655, + "min_y": 5335.722173262736, + "max_x": 1925.533770697182, + "max_y": 5336.140810851371, + "center": [ + 1925.1841728344184, + 5335.931492057053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.533770697182, + 5335.722173262736 + ], + [ + 1924.834574971655, + 5336.140810851371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.450274067452, + "min_y": 5336.551011843017, + "max_x": 1924.149469792981, + "max_y": 5336.969649431658, + "center": [ + 1923.7998719302166, + 5336.760330637337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.149469792981, + 5336.551011843017 + ], + [ + 1923.450274067452, + 5336.969649431658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.450274067452, + "min_y": 5335.722173262736, + "max_x": 1923.450274067452, + "max_y": 5336.969649431658, + "center": [ + 1923.450274067452, + 5336.345911347196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.450274067452, + 5336.969649431658 + ], + [ + 1923.450274067452, + 5335.722173262736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.450274067452, + "min_y": 5335.722173262736, + "max_x": 1924.149469792981, + "max_y": 5336.140810851373, + "center": [ + 1923.7998719302166, + 5335.931492057054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.450274067452, + 5335.722173262736 + ], + [ + 1924.149469792981, + 5336.140810851373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B47", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1912.987178318439, + "min_y": 5336.0967808331, + "max_x": 1913.4771791387752, + "max_y": 5336.586781653436, + "center": [ + 1913.232178728607, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.232178728607, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B48", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1913.4771791387748, + "min_y": 5336.096780833102, + "max_x": 1913.9671799591074, + "max_y": 5336.586781653435, + "center": [ + 1913.722179548941, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.722179548941, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B49", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1913.9671799591056, + "min_y": 5336.096780833102, + "max_x": 1914.4571807794382, + "max_y": 5336.586781653435, + "center": [ + 1914.212180369272, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.212180369272, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1913.9671799591054, + "min_y": 5336.0967808331, + "max_x": 1914.4571807794425, + "max_y": 5336.586781653436, + "center": [ + 1914.212180369274, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.212180369274, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1914.4571807794466, + "min_y": 5336.096780833102, + "max_x": 1914.9471815997792, + "max_y": 5336.586781653435, + "center": [ + 1914.702181189613, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.702181189613, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1914.9471815997779, + "min_y": 5336.096780833099, + "max_x": 1915.437182420116, + "max_y": 5336.586781653437, + "center": [ + 1915.192182009947, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1915.192182009947, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1915.4371824201166, + "min_y": 5336.096780833102, + "max_x": 1915.9271832404493, + "max_y": 5336.586781653435, + "center": [ + 1915.682182830283, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1915.682182830283, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1915.9271832404477, + "min_y": 5336.096780833102, + "max_x": 1916.4171840607803, + "max_y": 5336.586781653435, + "center": [ + 1916.172183650614, + 5336.341781243268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.172183650614, + 5336.341781243268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5396.545749100365, + "max_x": 1930.211760322028, + "max_y": 5396.545749100365, + "center": [ + 1927.6107783542166, + 5396.545749100365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.009796386405, + 5396.545749100365 + ], + [ + 1930.211760322028, + 5396.545749100365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.211760322028, + "min_y": 5395.74032262883, + "max_x": 1930.211760322028, + "max_y": 5396.545749100365, + "center": [ + 1930.211760322028, + 5396.143035864598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5396.545749100365 + ], + [ + 1930.211760322028, + 5395.74032262883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5395.74032262883, + "max_x": 1930.211760322028, + "max_y": 5395.74032262883, + "center": [ + 1927.6107783542166, + 5395.74032262883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5395.74032262883 + ], + [ + 1925.009796386405, + 5395.74032262883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5395.74032262883, + "max_x": 1925.009796386405, + "max_y": 5396.545749100365, + "center": [ + 1925.009796386405, + 5396.143035864598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.009796386405, + 5395.74032262883 + ], + [ + 1925.009796386405, + 5396.545749100365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5380.831411170142, + "max_x": 1930.211760322028, + "max_y": 5380.831411170142, + "center": [ + 1927.6107783542166, + 5380.831411170142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.009796386405, + 5380.831411170142 + ], + [ + 1930.211760322028, + 5380.831411170142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.211760322028, + "min_y": 5380.025984698609, + "max_x": 1930.211760322028, + "max_y": 5380.831411170142, + "center": [ + 1930.211760322028, + 5380.428697934376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5380.831411170142 + ], + [ + 1930.211760322028, + 5380.025984698609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5380.025984698609, + "max_x": 1930.211760322028, + "max_y": 5380.025984698609, + "center": [ + 1927.6107783542166, + 5380.025984698609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.211760322028, + 5380.025984698609 + ], + [ + 1925.009796386405, + 5380.025984698609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.009796386405, + "min_y": 5380.025984698609, + "max_x": 1925.009796386405, + "max_y": 5380.831411170142, + "center": [ + 1925.009796386405, + 5380.428697934376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.009796386405, + 5380.025984698609 + ], + [ + 1925.009796386405, + 5380.831411170142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.022231358619, + "min_y": 5317.305066864385, + "max_x": 1946.022231358619, + "max_y": 5318.566539748323, + "center": [ + 1946.022231358619, + 5317.935803306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.022231358619, + 5318.566539748323 + ], + [ + 1946.022231358619, + 5317.305066864385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.393444101291, + "min_y": 5317.305066864385, + "max_x": 1946.393444101291, + "max_y": 5318.566539748323, + "center": [ + 1946.393444101291, + 5317.935803306354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.393444101291, + 5318.566539748323 + ], + [ + 1946.393444101291, + 5317.305066864385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.567521986216, + "min_y": 5317.307131916352, + "max_x": 1943.567521986216, + "max_y": 5318.568604800294, + "center": [ + 1943.567521986216, + 5317.937868358324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.567521986216, + 5318.568604800294 + ], + [ + 1943.567521986216, + 5317.307131916352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.567521986216, + "min_y": 5317.307131916352, + "max_x": 1943.567521986216, + "max_y": 5318.568604800294, + "center": [ + 1943.567521986216, + 5317.937868358324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.567521986216, + 5318.568604800294 + ], + [ + 1943.567521986216, + 5317.307131916352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.938734728891, + "min_y": 5318.140903802182, + "max_x": 1944.637930454415, + "max_y": 5318.559541390819, + "center": [ + 1944.288332591653, + 5318.3502225965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.637930454415, + 5318.140903802182 + ], + [ + 1943.938734728891, + 5318.559541390819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.938734728891, + "min_y": 5317.3120652219, + "max_x": 1943.938734728891, + "max_y": 5318.559541390819, + "center": [ + 1943.938734728891, + 5317.93580330636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.938734728891, + 5318.559541390819 + ], + [ + 1943.938734728891, + 5317.3120652219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1943.938734728891, + "min_y": 5317.3120652219, + "max_x": 1944.637930454415, + "max_y": 5317.730702810532, + "center": [ + 1944.288332591653, + 5317.521384016216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.938734728891, + 5317.3120652219 + ], + [ + 1944.637930454415, + 5317.730702810532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.323035633089, + "min_y": 5318.140903802174, + "max_x": 1946.022231358619, + "max_y": 5318.559541390817, + "center": [ + 1945.672633495854, + 5318.350222596495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.323035633089, + 5318.140903802174 + ], + [ + 1946.022231358619, + 5318.559541390817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1946.022231358619, + "min_y": 5317.312065221894, + "max_x": 1946.022231358619, + "max_y": 5318.559541390817, + "center": [ + 1946.022231358619, + 5317.935803306355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.022231358619, + 5318.559541390817 + ], + [ + 1946.022231358619, + 5317.312065221894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.323035633089, + "min_y": 5317.312065221894, + "max_x": 1946.022231358619, + "max_y": 5317.730702810532, + "center": [ + 1945.672633495854, + 5317.521384016213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.022231358619, + 5317.312065221894 + ], + [ + 1945.323035633089, + 5317.730702810532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.037096167797, + "min_y": 5332.630033915521, + "max_x": 1945.802250765482, + "max_y": 5332.630033915521, + "center": [ + 1943.9196734666396, + 5332.630033915521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.037096167797, + 5332.630033915521 + ], + [ + 1945.802250765482, + 5332.630033915521 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1945.802250765482, + "min_y": 5330.857209398534, + "max_x": 1945.802250765482, + "max_y": 5332.630033915521, + "center": [ + 1945.802250765482, + 5331.743621657028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.802250765482, + 5332.630033915521 + ], + [ + 1945.802250765482, + 5330.857209398534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.037096167797, + "min_y": 5330.857209398534, + "max_x": 1945.802250765482, + "max_y": 5330.857209398534, + "center": [ + 1943.9196734666396, + 5330.857209398534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.802250765482, + 5330.857209398534 + ], + [ + 1942.037096167797, + 5330.857209398534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.037096167797, + "min_y": 5330.857209398534, + "max_x": 1942.037096167797, + "max_y": 5332.630033915521, + "center": [ + 1942.037096167797, + 5331.743621657028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.037096167797, + 5330.857209398534 + ], + [ + 1942.037096167797, + 5332.630033915521 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.096464578025, + "min_y": 5324.390389545363, + "max_x": 1935.096464578025, + "max_y": 5325.6518624293, + "center": [ + 1935.096464578025, + 5325.021125987332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.096464578025, + 5325.6518624293 + ], + [ + 1935.096464578025, + 5324.390389545363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.096464578025, + "min_y": 5324.390389545363, + "max_x": 1935.096464578025, + "max_y": 5325.6518624293, + "center": [ + 1935.096464578025, + 5325.021125987332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.096464578025, + 5325.6518624293 + ], + [ + 1935.096464578025, + 5324.390389545363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.344589120314, + "min_y": 5324.392454597325, + "max_x": 1927.344589120314, + "max_y": 5325.653927481267, + "center": [ + 1927.344589120314, + 5325.023191039296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.344589120314, + 5325.653927481267 + ], + [ + 1927.344589120314, + 5324.392454597325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.344589120314, + "min_y": 5324.392454597325, + "max_x": 1927.344589120314, + "max_y": 5325.653927481267, + "center": [ + 1927.344589120314, + 5325.023191039296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.344589120314, + 5325.653927481267 + ], + [ + 1927.344589120314, + 5324.392454597325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B69", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.299116072706, + "min_y": 5366.849929570085, + "max_x": 1942.217828884549, + "max_y": 5368.156167174033, + "center": [ + 1940.2584724786275, + 5367.503048372058 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B6A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1980.781061381788, + "min_y": 5369.190398774798, + "max_x": 1984.699774193631, + "max_y": 5370.496636378746, + "center": [ + 1982.7404177877095, + 5369.843517576772 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B6B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.985476570491, + "min_y": 5334.201136043065, + "max_x": 1932.904189382334, + "max_y": 5335.507373647013, + "center": [ + 1930.9448329764125, + 5334.854254845039 + ] + }, + "raw_value": "10114", + "clean_value": "10114", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B6C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.496943706601, + "min_y": 5329.204130728391, + "max_x": 1933.1993990808126, + "max_y": 5330.510368332339, + "center": [ + 1930.8481713937067, + 5329.857249530365 + ] + }, + "raw_value": "10114A", + "clean_value": "10114A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B6D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1945.599962475414, + "min_y": 5328.40065759318, + "max_x": 1950.3024178496255, + "max_y": 5329.706895197128, + "center": [ + 1947.9511901625197, + 5329.053776395154 + ] + }, + "raw_value": "10114A", + "clean_value": "10114A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5324.044703209707, + "max_x": 1941.793417704075, + "max_y": 5324.044703209707, + "center": [ + 1941.3069019981945, + 5324.044703209707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.793417704075, + 5324.044703209707 + ], + [ + 1940.820386292314, + 5324.044703209707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B6F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1941.306901998196, + "min_y": 5324.044703209707, + "max_x": 1941.306901998196, + "max_y": 5325.020009091069, + "center": [ + 1941.306901998196, + 5324.532356150388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.306901998196, + 5324.044703209707 + ], + [ + 1941.306901998196, + 5325.020009091069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5321.900918754572, + "max_x": 1941.793417704075, + "max_y": 5321.900918754572, + "center": [ + 1941.3069019981945, + 5321.900918754572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.820386292314, + 5321.900918754572 + ], + [ + 1941.793417704075, + 5321.900918754572 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B71", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1940.9931410814424, + "min_y": 5322.695510781335, + "max_x": 1941.6159865686177, + "max_y": 5323.318356268509, + "center": [ + 1941.30456382503, + 5323.006933524922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.30456382503, + 5323.006933524922 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5322.190464693861, + "max_x": 1941.14804102347, + "max_y": 5322.737703627216, + "center": [ + 1940.9842136578918, + 5322.464084160539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.14804102347, + 5322.737703627216 + ], + [ + 1940.820386292314, + 5322.190464693861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5322.190464693861, + "max_x": 1941.793417704075, + "max_y": 5322.190464693861, + "center": [ + 1941.3069019981945, + 5322.190464693861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.820386292314, + 5322.190464693861 + ], + [ + 1941.793417704075, + 5322.190464693861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.464542211772, + "min_y": 5322.190464693861, + "max_x": 1941.793417704075, + "max_y": 5322.739742505234, + "center": [ + 1941.6289799579235, + 5322.465103599548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.793417704075, + 5322.190464693861 + ], + [ + 1941.464542211772, + 5322.739742505234 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5323.270219399137, + "max_x": 1941.146923611455, + "max_y": 5323.815592065045, + "center": [ + 1940.9836549518845, + 5323.542905732091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.146923611455, + 5323.270219399137 + ], + [ + 1940.820386292314, + 5323.815592065045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.820386292314, + "min_y": 5323.815592065045, + "max_x": 1941.793417704075, + "max_y": 5323.815592065045, + "center": [ + 1941.3069019981945, + 5323.815592065045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.820386292314, + 5323.815592065045 + ], + [ + 1941.793417704075, + 5323.815592065045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.466880384937, + "min_y": 5323.270219399137, + "max_x": 1941.793417704075, + "max_y": 5323.815592065045, + "center": [ + 1941.630149044506, + 5323.542905732091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.793417704075, + 5323.815592065045 + ], + [ + 1941.466880384937, + 5323.270219399137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B78", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1914.779218738145, + "min_y": 5365.747728320646, + "max_x": 1919.4816741123564, + "max_y": 5367.053965924594, + "center": [ + 1917.1304464252507, + 5366.400847122621 + ] + }, + "raw_value": "10113B", + "clean_value": "10113B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B79", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1955.125924071786, + "min_y": 5378.923397263723, + "max_x": 1955.125924071786, + "max_y": 5382.187985854804, + "center": [ + 1955.125924071786, + 5380.555691559263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.125924071786, + 5378.923397263723 + ], + [ + 1955.125924071786, + 5382.187985854804 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987325, + "min_y": 5382.187985854803, + "max_x": 1955.749662156242, + "max_y": 5382.187985854808, + "center": [ + 1955.1259240717836, + 5382.187985854805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.502185987325, + 5382.187985854808 + ], + [ + 1955.749662156242, + 5382.187985854803 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5382.559198597483, + "max_x": 1955.749662156242, + "max_y": 5382.559198597483, + "center": [ + 1955.1259240717804, + 5382.559198597483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.502185987319, + 5382.559198597483 + ], + [ + 1955.749662156242, + 5382.559198597483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B7C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1954.7266641441065, + "min_y": 5383.201686984671, + "max_x": 1955.5251839994594, + "max_y": 5384.000206840024, + "center": [ + 1955.125924071783, + 5383.600946912347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.125924071783, + 5383.600946912347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.504251039288, + "min_y": 5385.013907969885, + "max_x": 1955.75172720821, + "max_y": 5385.013907969885, + "center": [ + 1955.127989123749, + 5385.013907969885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.504251039288, + 5385.013907969885 + ], + [ + 1955.75172720821, + 5385.013907969885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5382.559198597483, + "max_x": 1954.92082357596, + "max_y": 5383.258394323005, + "center": [ + 1954.7115047816396, + 5382.908796460244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.92082357596, + 5383.258394323005 + ], + [ + 1954.502185987319, + 5382.559198597483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5382.559198597483, + "max_x": 1955.749662156242, + "max_y": 5382.559198597483, + "center": [ + 1955.1259240717804, + 5382.559198597483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.502185987319, + 5382.559198597483 + ], + [ + 1955.749662156242, + 5382.559198597483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.331024567607, + "min_y": 5382.559198597483, + "max_x": 1955.749662156242, + "max_y": 5383.258394323005, + "center": [ + 1955.5403433619244, + 5382.908796460244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.749662156242, + 5382.559198597483 + ], + [ + 1955.331024567607, + 5383.258394323005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5383.943499501686, + "max_x": 1954.920823575963, + "max_y": 5384.642695227207, + "center": [ + 1954.711504781641, + 5384.293097364447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.920823575963, + 5383.943499501686 + ], + [ + 1954.502185987319, + 5384.642695227207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.502185987319, + "min_y": 5384.642695227207, + "max_x": 1955.749662156242, + "max_y": 5384.642695227207, + "center": [ + 1955.1259240717804, + 5384.642695227207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.502185987319, + 5384.642695227207 + ], + [ + 1955.749662156242, + 5384.642695227207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.331024567604, + "min_y": 5383.943499501686, + "max_x": 1955.749662156242, + "max_y": 5384.642695227207, + "center": [ + 1955.540343361923, + 5384.293097364447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.749662156242, + 5384.642695227207 + ], + [ + 1955.331024567604, + 5383.943499501686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1978.880721903965, + "min_y": 5366.073559368694, + "max_x": 1980.904162077667, + "max_y": 5368.477116413215, + "center": [ + 1979.892441990816, + 5367.275337890955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.880721903965, + 5366.073559368694 + ], + [ + 1980.904162077667, + 5368.477116413215 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554B85", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1978.880721903965, + "min_y": 5366.073559368694, + "max_x": 1978.880721903965, + "max_y": 5388.993654330274, + "center": [ + 1978.880721903965, + 5377.5336068494835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.880721903965, + 5366.073559368694 + ], + [ + 1978.880721903965, + 5388.993654330274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B86", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1900.39476978069, + "min_y": 5390.841364289913, + "max_x": 1921.151236308673, + "max_y": 5390.841364289913, + "center": [ + 1910.7730030446814, + 5390.841364289913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.39476978069, + 5390.841364289913 + ], + [ + 1921.151236308673, + 5390.841364289913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B87", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1930.656296174501, + "min_y": 5390.841364289913, + "max_x": 1948.819344976116, + "max_y": 5390.841364289913, + "center": [ + 1939.7378205753084, + 5390.841364289913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.656296174501, + 5390.841364289913 + ], + [ + 1948.819344976116, + 5390.841364289913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B88", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1956.536805207486, + "min_y": 5390.841364289913, + "max_x": 1971.561185687905, + "max_y": 5390.841364289913, + "center": [ + 1964.0489954476955, + 5390.841364289913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.536805207486, + 5390.841364289913 + ], + [ + 1971.561185687905, + 5390.841364289913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B89", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1973.47715972994, + "min_y": 5390.841364289912, + "max_x": 1977.033011944327, + "max_y": 5390.841364289913, + "center": [ + 1975.2550858371335, + 5390.841364289912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1973.47715972994, + 5390.841364289913 + ], + [ + 1977.033011944327, + 5390.841364289912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554B8A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1974.656936211714, + "min_y": 5396.43728070941, + "max_x": 1987.423583606199, + "max_y": 5397.557162059803, + "center": [ + 1981.0402599089566, + 5396.997221384607 + ] + }, + "raw_value": "VG-10441-200A-F1A-n", + "clean_value": "VG-10441-200A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B8B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5380.506564385798, + "max_x": 2004.238962263572, + "max_y": 5383.279093311521, + "center": [ + 2004.238962263572, + 5381.8928288486595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5383.279093311521 + ], + [ + 2004.238962263572, + 5380.506564385798 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.372553421324, + "min_y": 5382.733988766673, + "max_x": 1931.372553421324, + "max_y": 5383.981464935605, + "center": [ + 1931.372553421324, + 5383.357726851139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.372553421324, + 5382.733988766673 + ], + [ + 1931.372553421324, + 5383.981464935605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B8D", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1931.372553421324, + "min_y": 5383.35772685114, + "max_x": 1950.189416103677, + "max_y": 5383.35772685114, + "center": [ + 1940.7809847625006, + 5383.35772685114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.372553421324, + 5383.35772685114 + ], + [ + 1950.189416103677, + 5383.35772685114 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B8E", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1950.189416103677, + "min_y": 5409.763006778151, + "max_x": 1952.701741306399, + "max_y": 5409.763006778192, + "center": [ + 1951.445578705038, + 5409.763006778172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.189416103677, + 5409.763006778192 + ], + [ + 1952.701741306399, + 5409.763006778151 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B8F", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1945.589245992314, + "min_y": 5426.926128509188, + "max_x": 1952.701741306399, + "max_y": 5426.926128509188, + "center": [ + 1949.1454936493565, + 5426.926128509188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.589245992314, + 5426.926128509188 + ], + [ + 1952.701741306399, + 5426.926128509188 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B90", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1961.840538953536, + "min_y": 5385.073795219375, + "max_x": 1972.652025157789, + "max_y": 5385.073795219387, + "center": [ + 1967.2462820556625, + 5385.073795219381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.840538953536, + 5385.073795219387 + ], + [ + 1972.652025157789, + 5385.073795219375 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B91", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1972.652025157789, + "min_y": 5385.07379521938, + "max_x": 1972.652025157789, + "max_y": 5395.971216937923, + "center": [ + 1972.652025157789, + 5390.5225060786515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1972.652025157789, + 5385.07379521938 + ], + [ + 1972.652025157789, + 5395.971216937923 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B92", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1955.127989123749, + "min_y": 5385.013907969885, + "max_x": 1955.127989123749, + "max_y": 5402.493175179938, + "center": [ + 1955.127989123749, + 5393.753541574912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.127989123749, + 5385.013907969885 + ], + [ + 1955.127989123749, + 5402.493175179938 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B93", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1945.591274807526, + "min_y": 5394.865999833843, + "max_x": 1945.591274807526, + "max_y": 5426.926128509188, + "center": [ + 1945.591274807526, + 5410.896064171515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.591274807526, + 5394.865999833843 + ], + [ + 1945.591274807526, + 5426.926128509188 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B94", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1950.189416103677, + "min_y": 5383.35772685114, + "max_x": 1950.189416103677, + "max_y": 5409.763006778, + "center": [ + 1950.189416103677, + 5396.56036681457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.189416103677, + 5383.35772685114 + ], + [ + 1950.189416103677, + 5409.763006778 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B95", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1975.7477109991562, + "min_y": 5365.548773449177, + "max_x": 1976.797282838186, + "max_y": 5366.598345288207, + "center": [ + 1976.272496918671, + 5366.073559368692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.272496918671, + 5366.073559368692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B96", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1972.652025157789, + "min_y": 5395.971216937921, + "max_x": 2007.857341046016, + "max_y": 5395.971216937921, + "center": [ + 1990.2546831019026, + 5395.971216937921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1972.652025157789, + 5395.971216937921 + ], + [ + 2007.857341046016, + 5395.971216937921 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B97", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1955.127989123749, + "min_y": 5402.493175179938, + "max_x": 1976.325122903683, + "max_y": 5402.493175179938, + "center": [ + 1965.7265560137162, + 5402.493175179938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.127989123749, + 5402.493175179938 + ], + [ + 1976.325122903683, + 5402.493175179938 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B98", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1980.142514462903, + "min_y": 5401.786047959729, + "max_x": 1981.9338766709923, + "max_y": 5403.2788497998035, + "center": [ + 1981.0381955669477, + 5402.532448879767 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B99", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1978.310162128711, + "min_y": 5404.478214404967, + "max_x": 1992.678813071745, + "max_y": 5404.478214404967, + "center": [ + 1985.494487600228, + 5404.478214404967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.678813071745, + 5404.478214404967 + ], + [ + 1978.310162128711, + 5404.478214404967 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554B9A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1978.3101621287, + "min_y": 5400.508135954911, + "max_x": 1992.678813071745, + "max_y": 5400.508135954911, + "center": [ + 1985.4944876002226, + 5400.508135954911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.3101621287, + 5400.508135954911 + ], + [ + 1992.678813071745, + 5400.508135954911 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.678813071745, + "min_y": 5400.508135954911, + "max_x": 1992.678813071745, + "max_y": 5404.478214404967, + "center": [ + 1992.678813071745, + 5402.4931751799395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.678813071745, + 5400.508135954911 + ], + [ + 1992.678813071745, + 5404.478214404967 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554B9C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1976.325122903683, + "min_y": 5402.493175179938, + "max_x": 1978.310162128711, + "max_y": 5404.478214404967, + "center": [ + 1977.3176425161969, + 5403.485694792453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.310162128711, + 5404.478214404967 + ], + [ + 1976.325122903683, + 5402.493175179938 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554B9D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1976.325122903683, + "min_y": 5400.508135954911, + "max_x": 1978.310162128711, + "max_y": 5402.493175179938, + "center": [ + 1977.3176425161969, + 5401.5006555674245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.325122903683, + 5402.493175179938 + ], + [ + 1978.310162128711, + 5400.508135954911 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554B9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1982.206090559474, + "min_y": 5425.956439978563, + "max_x": 1984.893133871608, + "max_y": 5427.449241818637, + "center": [ + 1983.549612215541, + 5426.702840898601 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554B9F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1975.950099173282, + "min_y": 5424.987747306598, + "max_x": 1990.318750116317, + "max_y": 5424.987747306598, + "center": [ + 1983.1344246447995, + 5424.987747306598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.950099173282, + 5424.987747306598 + ], + [ + 1990.318750116317, + 5424.987747306598 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1975.950099173282, + "min_y": 5428.957825756652, + "max_x": 1990.318750116327, + "max_y": 5428.957825756652, + "center": [ + 1983.1344246448045, + 5428.957825756652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.318750116327, + 5428.957825756652 + ], + [ + 1975.950099173282, + 5428.957825756652 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.950099173282, + "min_y": 5424.987747306598, + "max_x": 1975.950099173282, + "max_y": 5428.957825756652, + "center": [ + 1975.950099173282, + 5426.972786531625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.950099173282, + 5428.957825756652 + ], + [ + 1975.950099173282, + 5424.987747306598 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BA2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1990.31875011632, + "min_y": 5424.987747306602, + "max_x": 1992.303789341347, + "max_y": 5426.972786531629, + "center": [ + 1991.3112697288334, + 5425.980266919116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.31875011632, + 5424.987747306602 + ], + [ + 1992.303789341347, + 5426.972786531629 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1990.31875011632, + "min_y": 5426.972786531629, + "max_x": 1992.303789341347, + "max_y": 5428.957825756657, + "center": [ + 1991.3112697288334, + 5427.965306144143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.303789341347, + 5426.972786531629 + ], + [ + 1990.31875011632, + 5428.957825756657 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1982.369354458216, + "min_y": 5408.949597912308, + "max_x": 1985.05639777035, + "max_y": 5410.442399752382, + "center": [ + 1983.712876114283, + 5409.695998832345 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BA5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.935138398237, + "min_y": 5411.748046002937, + "max_x": 1992.303789341271, + "max_y": 5411.748046002937, + "center": [ + 1985.119463869754, + 5411.748046002937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.303789341271, + 5411.748046002937 + ], + [ + 1977.935138398237, + 5411.748046002937 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.935138398226, + "min_y": 5407.777967552883, + "max_x": 1992.303789341271, + "max_y": 5407.777967552883, + "center": [ + 1985.1194638697484, + 5407.777967552883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.935138398226, + 5407.777967552883 + ], + [ + 1992.303789341271, + 5407.777967552883 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.303789341271, + "min_y": 5407.777967552883, + "max_x": 1992.303789341271, + "max_y": 5411.748046002937, + "center": [ + 1992.303789341271, + 5409.76300677791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.303789341271, + 5407.777967552883 + ], + [ + 1992.303789341271, + 5411.748046002937 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BA8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1975.95009917321, + "min_y": 5409.76300677791, + "max_x": 1977.935138398237, + "max_y": 5411.748046002937, + "center": [ + 1976.9426187857234, + 5410.755526390423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.935138398237, + 5411.748046002937 + ], + [ + 1975.95009917321, + 5409.76300677791 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BA9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1975.95009917321, + "min_y": 5407.777967552883, + "max_x": 1977.935138398237, + "max_y": 5409.76300677791, + "center": [ + 1976.9426187857234, + 5408.770487165397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.95009917321, + 5409.76300677791 + ], + [ + 1977.935138398237, + 5407.777967552883 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554BAA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.494189988102, + "min_y": 5313.899740990183, + "max_x": 1812.312554300751, + "max_y": 5313.899740990187, + "center": [ + 1809.4033721444266, + 5313.899740990185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.312554300751, + 5313.899740990183 + ], + [ + 1806.494189988102, + 5313.899740990187 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885272, + "min_y": 5365.859479299263, + "max_x": 1816.139922305365, + "max_y": 5365.859479299263, + "center": [ + 1815.3070440953184, + 5365.859479299263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5365.859479299263 + ], + [ + 1814.474165885272, + 5365.859479299263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.2536999579, + "min_y": 5365.859479299263, + "max_x": 1814.147000033291, + "max_y": 5365.859479299263, + "center": [ + 1813.2003499955954, + 5365.859479299263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033291, + 5365.859479299263 + ], + [ + 1812.2536999579, + 5365.859479299263 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.147000033291, + "min_y": 5365.309751937145, + "max_x": 1814.147000033291, + "max_y": 5366.409206661386, + "center": [ + 1814.147000033291, + 5365.859479299265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033291, + 5365.309751937145 + ], + [ + 1814.147000033291, + 5366.409206661386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885272, + "min_y": 5365.309751937145, + "max_x": 1814.474165885272, + "max_y": 5366.409206661386, + "center": [ + 1814.474165885272, + 5365.859479299265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.474165885272, + 5365.309751937145 + ], + [ + 1814.474165885272, + 5366.409206661386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5339.574769164926, + "max_x": 1816.139922305368, + "max_y": 5339.574769164926, + "center": [ + 1815.3070440953215, + 5339.574769164926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305368, + 5339.574769164926 + ], + [ + 1814.474165885275, + 5339.574769164926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.253699957902, + "min_y": 5339.574769164926, + "max_x": 1814.147000033294, + "max_y": 5339.574769164926, + "center": [ + 1813.2003499955981, + 5339.574769164926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5339.574769164926 + ], + [ + 1812.253699957902, + 5339.574769164926 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554BB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.147000033294, + "min_y": 5339.025041802807, + "max_x": 1814.147000033294, + "max_y": 5340.12449652705, + "center": [ + 1814.147000033294, + 5339.5747691649285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.147000033294, + 5339.025041802807 + ], + [ + 1814.147000033294, + 5340.12449652705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474165885275, + "min_y": 5339.025041802807, + "max_x": 1814.474165885275, + "max_y": 5340.12449652705, + "center": [ + 1814.474165885275, + 5339.5747691649285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.474165885275, + 5339.025041802807 + ], + [ + 1814.474165885275, + 5340.12449652705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BB3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1808.369047454826, + "min_y": 5340.209783692557, + "max_x": 1809.9365325795632, + "max_y": 5341.516021296505, + "center": [ + 1809.1527900171945, + 5340.862902494531 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BB4", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.5295711682484, + "min_y": 5336.712704770098, + "max_x": 1812.2536999579038, + "max_y": 5342.436833559754, + "center": [ + 1809.391635563076, + 5339.574769164926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.391635563076, + 5339.574769164926 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BB5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1807.062567563076, + "min_y": 5337.981977282978, + "max_x": 1811.094567563076, + "max_y": 5339.101977282978, + "center": [ + 1809.078567563076, + 5338.541977282977 + ] + }, + "raw_value": "10111C", + "clean_value": "10111C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5302.128645991722, + "max_x": 1816.139922305365, + "max_y": 5302.128645991722, + "center": [ + 1815.3084926322945, + 5302.128645991722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.139922305365, + 5302.128645991722 + ], + [ + 1814.477062959224, + 5302.128645991722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.260458853376, + "min_y": 5302.128645991722, + "max_x": 1814.150466112206, + "max_y": 5302.128645991722, + "center": [ + 1813.205462482791, + 5302.128645991722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.150466112206, + 5302.128645991722 + ], + [ + 1812.260458853376, + 5302.128645991722 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554BB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.150466112206, + "min_y": 5301.57987471226, + "max_x": 1814.150466112206, + "max_y": 5302.677417271192, + "center": [ + 1814.150466112206, + 5302.128645991726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.150466112206, + 5301.57987471226 + ], + [ + 1814.150466112206, + 5302.677417271192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.477062959224, + "min_y": 5301.57987471226, + "max_x": 1814.477062959224, + "max_y": 5302.677417271192, + "center": [ + 1814.477062959224, + 5302.128645991726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.477062959224, + 5301.57987471226 + ], + [ + 1814.477062959224, + 5302.677417271192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BBA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1854.31666658697, + "min_y": 5231.259298854499, + "max_x": 1860.082935452251, + "max_y": 5231.259298854499, + "center": [ + 1857.1998010196105, + 5231.259298854499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.082935452251, + 5231.259298854499 + ], + [ + 1854.31666658697, + 5231.259298854499 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BBB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1734.276058988855, + "min_y": 5237.272847841238, + "max_x": 1737.636058988855, + "max_y": 5238.392847841238, + "center": [ + 1735.9560589888551, + 5237.832847841239 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554BBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5274.099280717532, + "max_x": 1792.721172701582, + "max_y": 5278.872608224952, + "center": [ + 1792.7211727015806, + 5276.485944471242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.721172701582, + 5274.099280717532 + ], + [ + 1792.721172701579, + 5278.872608224952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.078767193805, + "min_y": 5274.099280717532, + "max_x": 1787.078767193805, + "max_y": 5278.911699617974, + "center": [ + 1787.078767193805, + 5276.505490167752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.078767193805, + 5274.099280717532 + ], + [ + 1787.078767193805, + 5278.911699617974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701579, + "min_y": 5276.715958262881, + "max_x": 1794.650905485516, + "max_y": 5276.715958262881, + "center": [ + 1793.6860390935476, + 5276.715958262881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.721172701579, + 5276.715958262881 + ], + [ + 1794.650905485516, + 5276.715958262881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.650905485516, + "min_y": 5276.167186983414, + "max_x": 1794.650905485516, + "max_y": 5277.264729542348, + "center": [ + 1794.650905485516, + 5276.715958262881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.650905485516, + 5276.167186983414 + ], + [ + 1794.650905485516, + 5277.264729542348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.977502332538, + "min_y": 5276.167186983414, + "max_x": 1794.977502332538, + "max_y": 5277.264729542348, + "center": [ + 1794.977502332538, + 5276.715958262881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.977502332538, + 5276.167186983414 + ], + [ + 1794.977502332538, + 5277.264729542348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.650905485516, + "min_y": 5276.167186983414, + "max_x": 1794.650905485516, + "max_y": 5277.264729542348, + "center": [ + 1794.650905485516, + 5276.715958262881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.650905485516, + 5276.167186983414 + ], + [ + 1794.650905485516, + 5277.264729542348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BC3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1868.3714497441504, + "min_y": 5220.222427043632, + "max_x": 1869.0739958506294, + "max_y": 5220.92497315011, + "center": [ + 1868.72272279739, + 5220.573700096871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.72272279739, + 5220.573700096871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BC4", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 1842.455733995307, + "min_y": 5236.910703209631, + "max_x": 1852.261380904327, + "max_y": 5236.910703209631, + "center": [ + 1847.358557449817, + 5236.910703209631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.455733995307, + 5236.910703209631 + ], + [ + 1852.261380904327, + 5236.910703209631 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BC5", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 1846.412528143259, + "min_y": 5232.438064877588, + "max_x": 1846.412528143259, + "max_y": 5237.788740276946, + "center": [ + 1846.412528143259, + 5235.113402577266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.412528143259, + 5232.438064877588 + ], + [ + 1846.412528143259, + 5237.788740276946 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BC6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1842.85152690612, + "min_y": 5237.426950479744, + "max_x": 1844.8673133368281, + "max_y": 5238.546831830137, + "center": [ + 1843.8594201214742, + 5237.98689115494 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BC7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1847.787856717629, + "min_y": 5237.426950479744, + "max_x": 1850.4755719585733, + "max_y": 5238.546831830137, + "center": [ + 1849.1317143381011, + 5237.98689115494 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BCA", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 1860.427708583213, + "min_y": 5405.716825160028, + "max_x": 1868.952570950193, + "max_y": 5405.716825160028, + "center": [ + 1864.690139766703, + 5405.716825160028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.427708583213, + 5405.716825160028 + ], + [ + 1868.952570950193, + 5405.716825160028 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BCB", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 1864.384502731167, + "min_y": 5398.30434323342, + "max_x": 1864.384502731167, + "max_y": 5406.594862227342, + "center": [ + 1864.384502731167, + 5402.449602730381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.384502731167, + 5398.30434323342 + ], + [ + 1864.384502731167, + 5406.594862227342 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BCC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1860.28943545714, + "min_y": 5406.233072430141, + "max_x": 1862.9771506980842, + "max_y": 5407.352953780534, + "center": [ + 1861.633293077612, + 5406.793013105338 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BCD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1865.759831305537, + "min_y": 5406.233072430141, + "max_x": 1868.4475465464814, + "max_y": 5407.352953780534, + "center": [ + 1867.1036889260092, + 5406.793013105338 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BD0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1959.153238698542, + "min_y": 5410.229070549572, + "max_x": 1972.591814903263, + "max_y": 5411.348951899965, + "center": [ + 1965.8725268009025, + 5410.789011224768 + ] + }, + "raw_value": "CWS-10612-200A-S2A-n", + "clean_value": "CWS-10612-200A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BD1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1959.153238698468, + "min_y": 5427.392192280676, + "max_x": 1972.5918149031888, + "max_y": 5428.512073631069, + "center": [ + 1965.8725268008284, + 5427.952132955872 + ] + }, + "raw_value": "CWR-10622-200A-S2A-n", + "clean_value": "CWR-10622-200A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.949864984545, + "min_y": 5377.326473701089, + "max_x": 1932.831963842957, + "max_y": 5378.208572559504, + "center": [ + 1932.390914413751, + 5377.7675231302965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.831963842957, + 5377.326473701089 + ], + [ + 1931.949864984545, + 5378.208572559504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD3", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 1930.366009117932, + "min_y": 5375.141313198711, + "max_x": 1930.366009117932, + "max_y": 5375.742617834488, + "center": [ + 1930.366009117932, + 5375.441965516599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.366009117932, + 5375.742617834488 + ], + [ + 1930.366009117932, + 5375.141313198711 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1926.987040269364, + "min_y": 5347.123520155704, + "max_x": 1928.234516438287, + "max_y": 5347.123520155704, + "center": [ + 1927.6107783538255, + 5347.123520155704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.234516438287, + 5347.123520155704 + ], + [ + 1926.987040269364, + 5347.123520155704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5364.678079797123, + "max_x": 1976.896235003135, + "max_y": 5364.678079797123, + "center": [ + 1976.2724969186738, + 5364.678079797123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.648758834213, + 5364.678079797123 + ], + [ + 1976.896235003135, + 5364.678079797123 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1975.648758834213, + "min_y": 5367.457985730373, + "max_x": 1976.896235003135, + "max_y": 5367.457985730373, + "center": [ + 1976.2724969186738, + 5367.457985730373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1975.648758834213, + 5367.457985730373 + ], + [ + 1976.896235003135, + 5367.457985730373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.152082407371, + "min_y": 5293.292240875846, + "max_x": 1864.152082407371, + "max_y": 5294.432348436835, + "center": [ + 1864.152082407371, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.152082407371, + 5293.292240875846 + ], + [ + 1864.152082407371, + 5294.432348436835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1865.0455010745673, + "min_y": 5293.510409606654, + "max_x": 1865.7492711739405, + "max_y": 5294.214179706028, + "center": [ + 1865.397386124254, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.397386124254, + 5293.862294656341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.642689841132, + "min_y": 5293.312567294219, + "max_x": 1866.642689841132, + "max_y": 5294.412022018464, + "center": [ + 1866.642689841132, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.642689841132, + 5294.412022018464 + ], + [ + 1866.642689841132, + 5293.312567294219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.152082407371, + "min_y": 5293.312567294219, + "max_x": 1864.152082407371, + "max_y": 5294.412022018464, + "center": [ + 1864.152082407371, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.152082407371, + 5294.412022018464 + ], + [ + 1864.152082407371, + 5293.312567294219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.479248259355, + "min_y": 5293.306399338938, + "max_x": 1864.479248259355, + "max_y": 5294.418189973746, + "center": [ + 1864.479248259355, + 5293.862294656342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.479248259355, + 5293.306399338938 + ], + [ + 1864.479248259355, + 5294.418189973746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.152082407371, + "min_y": 5293.306399338938, + "max_x": 1864.152082407371, + "max_y": 5294.418189973746, + "center": [ + 1864.152082407371, + 5293.862294656342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.152082407371, + 5293.306399338938 + ], + [ + 1864.152082407371, + 5294.418189973746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.642689841132, + "min_y": 5293.30457931929, + "max_x": 1866.642689841132, + "max_y": 5294.416369954095, + "center": [ + 1866.642689841132, + 5293.860474636693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.642689841132, + 5293.30457931929 + ], + [ + 1866.642689841132, + 5294.416369954095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.642689841132, + "min_y": 5293.30457931929, + "max_x": 1866.642689841132, + "max_y": 5294.416369954095, + "center": [ + 1866.642689841132, + 5293.860474636693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.642689841132, + 5293.30457931929 + ], + [ + 1866.642689841132, + 5294.416369954095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.699292543013, + "min_y": 5293.312567294219, + "max_x": 1866.315523989154, + "max_y": 5293.681530714956, + "center": [ + 1866.0074082660835, + 5293.497049004587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.699292543013, + 5293.681530714956 + ], + [ + 1866.315523989154, + 5293.312567294219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.315523989154, + "min_y": 5293.312567294219, + "max_x": 1866.315523989154, + "max_y": 5294.412022018464, + "center": [ + 1866.315523989154, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.315523989154, + 5293.312567294219 + ], + [ + 1866.315523989154, + 5294.412022018464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.699292543013, + "min_y": 5294.043058597726, + "max_x": 1866.315523989154, + "max_y": 5294.412022018464, + "center": [ + 1866.0074082660835, + 5294.227540308095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.315523989154, + 5294.412022018464 + ], + [ + 1865.699292543013, + 5294.043058597726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.479248259355, + "min_y": 5293.312567294219, + "max_x": 1865.09547970549, + "max_y": 5293.681530714962, + "center": [ + 1864.7873639824224, + 5293.497049004591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.09547970549, + 5293.681530714962 + ], + [ + 1864.479248259355, + 5293.312567294219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.479248259355, + "min_y": 5293.312567294219, + "max_x": 1864.479248259355, + "max_y": 5294.412022018464, + "center": [ + 1864.479248259355, + 5293.862294656341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.479248259355, + 5293.312567294219 + ], + [ + 1864.479248259355, + 5294.412022018464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.479248259355, + "min_y": 5294.043058597726, + "max_x": 1865.09547970549, + "max_y": 5294.412022018464, + "center": [ + 1864.7873639824224, + 5294.227540308095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.479248259355, + 5294.412022018464 + ], + [ + 1865.09547970549, + 5294.043058597726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1850.449858688767, + "min_y": 5278.674155283852, + "max_x": 1850.449858688767, + "max_y": 5293.860474636695, + "center": [ + 1850.449858688767, + 5286.267314960273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.449858688767, + 5293.860474636695 + ], + [ + 1850.449858688767, + 5278.674155283852 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BE6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1866.642689841132, + "min_y": 5293.860474636692, + "max_x": 1870.571491914698, + "max_y": 5293.860474636693, + "center": [ + 1868.6070908779152, + 5293.860474636693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.571491914698, + 5293.860474636692 + ], + [ + 1866.642689841132, + 5293.860474636693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BE7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1850.449858688767, + "min_y": 5293.860474636693, + "max_x": 1864.152082407371, + "max_y": 5293.860474636695, + "center": [ + 1857.300970548069, + 5293.860474636694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.152082407371, + 5293.860474636693 + ], + [ + 1850.449858688767, + 5293.860474636695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.438614912806, + "min_y": 5338.540152535817, + "max_x": 1907.709154080108, + "max_y": 5338.540152535817, + "center": [ + 1907.0738844964571, + 5338.540152535817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.709154080108, + 5338.540152535817 + ], + [ + 1906.438614912806, + 5338.540152535817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.02487004037, + "min_y": 5230.733428122466, + "max_x": 1750.074753314665, + "max_y": 5232.904763549438, + "center": [ + 1749.0498116775175, + 5231.819095835952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.02487004037, + 5230.733428122466 + ], + [ + 1750.074753314665, + 5232.904763549438 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554BEA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1991.5083722784336, + "min_y": 5363.645776057235, + "max_x": 1992.3068921337865, + "max_y": 5364.444295912587, + "center": [ + 1991.90763220611, + 5364.045035984911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.90763220611, + 5364.045035984911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5365.457997042454, + "max_x": 1992.531370290571, + "max_y": 5365.457997042454, + "center": [ + 1991.9076322061096, + 5365.457997042454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.531370290571, + 5365.457997042454 + ], + [ + 1991.283894121648, + 5365.457997042454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5362.632074927374, + "max_x": 1992.531370290571, + "max_y": 5362.632074927374, + "center": [ + 1991.9076322061096, + 5362.632074927374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.531370290571, + 5362.632074927374 + ], + [ + 1991.283894121648, + 5362.632074927374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5364.387588574252, + "max_x": 1991.702531710286, + "max_y": 5365.086784299779, + "center": [ + 1991.493212915967, + 5364.737186437015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.702531710286, + 5364.387588574252 + ], + [ + 1991.283894121648, + 5365.086784299779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5365.086784299779, + "max_x": 1992.531370290571, + "max_y": 5365.086784299779, + "center": [ + 1991.9076322061096, + 5365.086784299779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.283894121648, + 5365.086784299779 + ], + [ + 1992.531370290571, + 5365.086784299779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.112732701933, + "min_y": 5364.387588574252, + "max_x": 1992.531370290571, + "max_y": 5365.086784299779, + "center": [ + 1992.322051496252, + 5364.737186437015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.531370290571, + 5365.086784299779 + ], + [ + 1992.112732701933, + 5364.387588574252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5363.003287670051, + "max_x": 1991.702531710289, + "max_y": 5363.702483395575, + "center": [ + 1991.4932129159683, + 5363.352885532813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.702531710289, + 5363.702483395575 + ], + [ + 1991.283894121648, + 5363.003287670051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.283894121648, + "min_y": 5363.003287670051, + "max_x": 1992.531370290571, + "max_y": 5363.003287670051, + "center": [ + 1991.9076322061096, + 5363.003287670051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.283894121648, + 5363.003287670051 + ], + [ + 1992.531370290571, + 5363.003287670051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.11273270193, + "min_y": 5363.003287670051, + "max_x": 1992.531370290571, + "max_y": 5363.702483395575, + "center": [ + 1992.3220514962504, + 5363.352885532813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.531370290571, + 5363.003287670051 + ], + [ + 1992.11273270193, + 5363.702483395575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1711.408530987048, + "min_y": 5238.196250176883, + "max_x": 1711.408530987048, + "max_y": 5239.203783615941, + "center": [ + 1711.408530987048, + 5238.700016896411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.408530987048, + 5238.196250176883 + ], + [ + 1711.408530987048, + 5239.203783615941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5238.196250176883, + "max_x": 1711.408530987048, + "max_y": 5238.534365950084, + "center": [ + 1711.126175663771, + 5238.365308063483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.843820340494, + 5238.534365950084 + ], + [ + 1711.408530987048, + 5238.196250176883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5238.196250176883, + "max_x": 1709.725779382732, + "max_y": 5239.203783615941, + "center": [ + 1709.725779382732, + 5238.700016896411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.725779382732, + 5238.196250176883 + ], + [ + 1709.725779382732, + 5239.203783615941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5238.196250176883, + "max_x": 1710.290490029283, + "max_y": 5238.534365950084, + "center": [ + 1710.0081347060077, + 5238.365308063483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.290490029283, + 5238.534365950084 + ], + [ + 1709.725779382732, + 5238.196250176883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1710.2446899242084, + "min_y": 5238.37755163573, + "max_x": 1710.8896204455734, + "max_y": 5239.022482157095, + "center": [ + 1710.567155184891, + 5238.700016896412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.567155184891, + 5238.700016896412 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5238.196557785056, + "max_x": 1711.686878565303, + "max_y": 5239.204091224103, + "center": [ + 1711.686878565303, + 5238.70032450458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.686878565303, + 5239.204091224103 + ], + [ + 1711.686878565303, + 5238.196557785056 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.419268617699, + "min_y": 5238.196557785056, + "max_x": 1709.419268617699, + "max_y": 5239.204091224103, + "center": [ + 1709.419268617699, + 5238.70032450458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.419268617699, + 5239.204091224103 + ], + [ + 1709.419268617699, + 5238.196557785056 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5238.865667842743, + "max_x": 1711.408530987048, + "max_y": 5239.203783615941, + "center": [ + 1711.126175663771, + 5239.0347257293415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.408530987048, + 5239.203783615941 + ], + [ + 1710.843820340494, + 5238.865667842743 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5238.865667842743, + "max_x": 1710.290490029283, + "max_y": 5239.203783615941, + "center": [ + 1710.0081347060077, + 5239.0347257293415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.725779382732, + 5239.203783615941 + ], + [ + 1710.290490029283, + 5238.865667842743 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BFC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1708.505651485619, + "min_y": 5219.390267881556, + "max_x": 1709.419268617699, + "max_y": 5219.390267881558, + "center": [ + 1708.962460051659, + 5219.3902678815575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.505651485619, + 5219.390267881556 + ], + [ + 1709.419268617699, + 5219.390267881558 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554BFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1711.408530987048, + "min_y": 5218.880321895316, + "max_x": 1711.408530987048, + "max_y": 5219.887855334371, + "center": [ + 1711.408530987048, + 5219.384088614844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.408530987048, + 5218.880321895316 + ], + [ + 1711.408530987048, + 5219.887855334371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5218.880321895316, + "max_x": 1711.408530987048, + "max_y": 5219.218437668515, + "center": [ + 1711.126175663771, + 5219.049379781916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.843820340494, + 5219.218437668515 + ], + [ + 1711.408530987048, + 5218.880321895316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554BFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5218.880321895316, + "max_x": 1709.725779382732, + "max_y": 5219.887855334371, + "center": [ + 1709.725779382732, + 5219.384088614844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.725779382732, + 5218.880321895316 + ], + [ + 1709.725779382732, + 5219.887855334371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5218.880321895316, + "max_x": 1710.290490029283, + "max_y": 5219.218437668515, + "center": [ + 1710.0081347060077, + 5219.049379781916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.290490029283, + 5219.218437668515 + ], + [ + 1709.725779382732, + 5218.880321895316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C01", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1710.2446899242084, + "min_y": 5219.061623354161, + "max_x": 1710.8896204455734, + "max_y": 5219.706553875526, + "center": [ + 1710.567155184891, + 5219.384088614844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1710.567155184891, + 5219.384088614844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1711.686878565303, + "min_y": 5218.880629503487, + "max_x": 1711.686878565303, + "max_y": 5219.888162942535, + "center": [ + 1711.686878565303, + 5219.384396223011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.686878565303, + 5219.888162942535 + ], + [ + 1711.686878565303, + 5218.880629503487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.419268617699, + "min_y": 5218.880629503487, + "max_x": 1709.419268617699, + "max_y": 5219.888162942535, + "center": [ + 1709.419268617699, + 5219.384396223011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.419268617699, + 5219.888162942535 + ], + [ + 1709.419268617699, + 5218.880629503487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1710.843820340494, + "min_y": 5219.549739561173, + "max_x": 1711.408530987048, + "max_y": 5219.887855334371, + "center": [ + 1711.126175663771, + 5219.718797447772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1711.408530987048, + 5219.887855334371 + ], + [ + 1710.843820340494, + 5219.549739561173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.725779382732, + "min_y": 5219.549739561173, + "max_x": 1710.290490029283, + "max_y": 5219.887855334371, + "center": [ + 1710.0081347060077, + 5219.718797447772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.725779382732, + 5219.887855334371 + ], + [ + 1710.290490029283, + 5219.549739561173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C06", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1722.577476160692, + "min_y": 5219.378533066195, + "max_x": 1723.990923079304, + "max_y": 5219.378533066195, + "center": [ + 1723.284199619998, + 5219.378533066195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.577476160692, + 5219.378533066195 + ], + [ + 1723.990923079304, + 5219.378533066195 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.299128582437, + "min_y": 5218.874457672768, + "max_x": 1722.299128582437, + "max_y": 5219.881991111824, + "center": [ + 1722.299128582437, + 5219.378224392296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.299128582437, + 5218.874457672768 + ], + [ + 1722.299128582437, + 5219.881991111824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.734417935883, + "min_y": 5218.874457672768, + "max_x": 1722.299128582437, + "max_y": 5219.212573445968, + "center": [ + 1722.01677325916, + 5219.043515559368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.734417935883, + 5219.212573445968 + ], + [ + 1722.299128582437, + 5218.874457672768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5218.874457672768, + "max_x": 1720.616376978121, + "max_y": 5219.881991111824, + "center": [ + 1720.616376978121, + 5219.378224392296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.616376978121, + 5218.874457672768 + ], + [ + 1720.616376978121, + 5219.881991111824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5218.874457672768, + "max_x": 1721.181087624672, + "max_y": 5219.212573445968, + "center": [ + 1720.8987323013966, + 5219.043515559368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.181087624672, + 5219.212573445968 + ], + [ + 1720.616376978121, + 5218.874457672768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1721.1352875195985, + "min_y": 5219.055759131614, + "max_x": 1721.7802180409635, + "max_y": 5219.700689652978, + "center": [ + 1721.457752780281, + 5219.378224392296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.457752780281, + 5219.378224392296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.577476160692, + "min_y": 5218.874765280941, + "max_x": 1722.577476160692, + "max_y": 5219.882298719988, + "center": [ + 1722.577476160692, + 5219.3785320004645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.577476160692, + 5219.882298719988 + ], + [ + 1722.577476160692, + 5218.874765280941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.309866213088, + "min_y": 5218.874765280941, + "max_x": 1720.309866213088, + "max_y": 5219.882298719988, + "center": [ + 1720.309866213088, + 5219.3785320004645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.309866213088, + 5219.882298719988 + ], + [ + 1720.309866213088, + 5218.874765280941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.734417935883, + "min_y": 5219.543875338627, + "max_x": 1722.299128582437, + "max_y": 5219.881991111824, + "center": [ + 1722.01677325916, + 5219.712933225226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.299128582437, + 5219.881991111824 + ], + [ + 1721.734417935883, + 5219.543875338627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5219.543875338627, + "max_x": 1721.181087624672, + "max_y": 5219.881991111824, + "center": [ + 1720.8987323013966, + 5219.712933225226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.616376978121, + 5219.881991111824 + ], + [ + 1721.181087624672, + 5219.543875338627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C10", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1718.939908610331, + "min_y": 5238.700323411746, + "max_x": 1720.309866213088, + "max_y": 5238.700324504579, + "center": [ + 1719.6248874117096, + 5238.700323958163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.309866213088, + 5238.700323411746 + ], + [ + 1718.939908610331, + 5238.700324504579 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.299128582437, + "min_y": 5238.190377425503, + "max_x": 1722.299128582437, + "max_y": 5239.197910864559, + "center": [ + 1722.299128582437, + 5238.694144145031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.299128582437, + 5238.190377425503 + ], + [ + 1722.299128582437, + 5239.197910864559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.734417935883, + "min_y": 5238.190377425503, + "max_x": 1722.299128582437, + "max_y": 5238.528493198703, + "center": [ + 1722.01677325916, + 5238.3594353121025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.734417935883, + 5238.528493198703 + ], + [ + 1722.299128582437, + 5238.190377425503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5238.190377425503, + "max_x": 1720.616376978121, + "max_y": 5239.197910864559, + "center": [ + 1720.616376978121, + 5238.694144145031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.616376978121, + 5238.190377425503 + ], + [ + 1720.616376978121, + 5239.197910864559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5238.190377425503, + "max_x": 1721.181087624672, + "max_y": 5238.528493198703, + "center": [ + 1720.8987323013966, + 5238.3594353121025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.181087624672, + 5238.528493198703 + ], + [ + 1720.616376978121, + 5238.190377425503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C15", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1721.1352875195985, + "min_y": 5238.371678884349, + "max_x": 1721.7802180409635, + "max_y": 5239.016609405714, + "center": [ + 1721.457752780281, + 5238.694144145032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.457752780281, + 5238.694144145032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.577476160692, + "min_y": 5238.190685033675, + "max_x": 1722.577476160692, + "max_y": 5239.198218472723, + "center": [ + 1722.577476160692, + 5238.694451753199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.577476160692, + 5239.198218472723 + ], + [ + 1722.577476160692, + 5238.190685033675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.309866213088, + "min_y": 5238.190685033675, + "max_x": 1720.309866213088, + "max_y": 5239.198218472723, + "center": [ + 1720.309866213088, + 5238.694451753199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.309866213088, + 5239.198218472723 + ], + [ + 1720.309866213088, + 5238.190685033675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.734417935883, + "min_y": 5238.859795091362, + "max_x": 1722.299128582437, + "max_y": 5239.197910864559, + "center": [ + 1722.01677325916, + 5239.028852977961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.299128582437, + 5239.197910864559 + ], + [ + 1721.734417935883, + 5238.859795091362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.616376978121, + "min_y": 5238.859795091362, + "max_x": 1721.181087624672, + "max_y": 5239.197910864559, + "center": [ + 1720.8987323013966, + 5239.028852977961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.616376978121, + 5239.197910864559 + ], + [ + 1721.181087624672, + 5238.859795091362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.743007904825, + "min_y": 5253.880099196158, + "max_x": 1784.743007904825, + "max_y": 5254.977641755087, + "center": [ + 1784.743007904825, + 5254.428870475622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.743007904825, + 5253.880099196158 + ], + [ + 1784.743007904825, + 5254.977641755087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5276.130378219853, + "max_x": 1826.485939636173, + "max_y": 5277.227920778786, + "center": [ + 1826.485939636173, + 5276.6791494993195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636173, + 5277.227920778786 + ], + [ + 1826.485939636173, + 5276.130378219853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.057285911761, + "min_y": 5276.110087153071, + "max_x": 1826.057285911761, + "max_y": 5277.248211845573, + "center": [ + 1826.057285911761, + 5276.679149499321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.057285911761, + 5277.248211845573 + ], + [ + 1826.057285911761, + 5276.110087153071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C1D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1863.731417190226, + "min_y": 5257.605076384976, + "max_x": 1866.550867798881, + "max_y": 5257.605076384976, + "center": [ + 1865.1411424945536, + 5257.605076384976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.731417190226, + 5257.605076384976 + ], + [ + 1866.550867798881, + 5257.605076384976 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C1E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1853.8685312748, + "min_y": 5257.605076384972, + "max_x": 1855.490135919379, + "max_y": 5257.605076384972, + "center": [ + 1854.6793335970897, + 5257.605076384972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1855.490135919379, + 5257.605076384972 + ], + [ + 1853.8685312748, + 5257.605076384972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C1F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1847.512682025431, + "min_y": 5257.605076384972, + "max_x": 1853.8685312748, + "max_y": 5257.605076384972, + "center": [ + 1850.6906066501156, + 5257.605076384972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1853.8685312748, + 5257.605076384972 + ], + [ + 1847.512682025431, + 5257.605076384972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C20", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1828.666110512419, + "min_y": 5289.813677092011, + "max_x": 1845.855508124695, + "max_y": 5289.813677092014, + "center": [ + 1837.260809318557, + 5289.813677092012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855508124695, + 5289.813677092011 + ], + [ + 1828.666110512419, + 5289.813677092014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.703862025863, + "min_y": 5262.555225778247, + "max_x": 1828.319021725831, + "max_y": 5262.923547499933, + "center": [ + 1828.011441875847, + 5262.73938663909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725831, + 5262.555225778247 + ], + [ + 1827.703862025863, + 5262.923547499933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636179, + "min_y": 5263.284446615492, + "max_x": 1827.101099336144, + "max_y": 5263.65276833718, + "center": [ + 1826.7935194861616, + 5263.468607476336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.101099336144, + 5263.284446615492 + ], + [ + 1826.485939636179, + 5263.65276833718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.319021725831, + "min_y": 5262.555225778247, + "max_x": 1828.319021725831, + "max_y": 5263.65276833718, + "center": [ + 1828.319021725831, + 5263.103997057713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725831, + 5263.65276833718 + ], + [ + 1828.319021725831, + 5262.555225778247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636179, + "min_y": 5262.555225778247, + "max_x": 1826.485939636179, + "max_y": 5263.65276833718, + "center": [ + 1826.485939636179, + 5263.103997057713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636179, + 5263.65276833718 + ], + [ + 1826.485939636179, + 5262.555225778247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.703862025863, + "min_y": 5263.284446615492, + "max_x": 1828.319021725831, + "max_y": 5263.65276833718, + "center": [ + 1828.011441875847, + 5263.468607476336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.319021725831, + 5263.65276833718 + ], + [ + 1827.703862025863, + 5263.284446615492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636179, + "min_y": 5262.555225778247, + "max_x": 1827.101099336144, + "max_y": 5262.923547499936, + "center": [ + 1826.7935194861616, + 5262.739386639092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.101099336144, + 5262.923547499936 + ], + [ + 1826.485939636179, + 5262.555225778247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.057285911767, + "min_y": 5262.534934711465, + "max_x": 1826.057285911767, + "max_y": 5263.673059403966, + "center": [ + 1826.057285911767, + 5263.103997057716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.057285911767, + 5263.673059403966 + ], + [ + 1826.057285911767, + 5262.534934711465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.747675450243, + "min_y": 5262.534934711465, + "max_x": 1828.747675450243, + "max_y": 5263.673059403966, + "center": [ + 1828.747675450243, + 5263.103997057716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.747675450243, + 5263.673059403966 + ], + [ + 1828.747675450243, + 5262.534934711465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C29", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1827.0512076277655, + "min_y": 5262.752724004475, + "max_x": 1827.7537537342446, + "max_y": 5263.455270110953, + "center": [ + 1827.402480681005, + 5263.103997057714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.402480681005, + 5263.103997057714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1847.5087419349793, + "min_y": 5312.165357398635, + "max_x": 1848.2125120343526, + "max_y": 5312.869127498008, + "center": [ + 1847.860626984666, + 5312.517242448322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984666, + 5312.517242448322 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5311.271938731445, + "max_x": 1848.410354346787, + "max_y": 5311.271938731445, + "center": [ + 1847.860626984666, + 5311.271938731445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.410354346787, + 5311.271938731445 + ], + [ + 1847.310899622545, + 5311.271938731445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5312.819148867085, + "max_x": 1847.679863043285, + "max_y": 5313.435380313224, + "center": [ + 1847.495381332915, + 5313.1272645901545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.679863043285, + 5312.819148867085 + ], + [ + 1847.310899622545, + 5313.435380313224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5313.435380313224, + "max_x": 1848.410354346787, + "max_y": 5313.435380313224, + "center": [ + 1847.860626984666, + 5313.435380313224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.310899622545, + 5313.435380313224 + ], + [ + 1848.410354346787, + 5313.435380313224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.041390926048, + "min_y": 5312.819148867085, + "max_x": 1848.410354346787, + "max_y": 5313.435380313224, + "center": [ + 1848.2258726364175, + 5313.1272645901545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.410354346787, + 5313.435380313224 + ], + [ + 1848.041390926048, + 5312.819148867085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5311.599104583426, + "max_x": 1847.679863043285, + "max_y": 5312.215336029564, + "center": [ + 1847.495381332915, + 5311.907220306495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.679863043285, + 5312.215336029564 + ], + [ + 1847.310899622545, + 5311.599104583426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5311.599104583426, + "max_x": 1848.410354346787, + "max_y": 5311.599104583426, + "center": [ + 1847.860626984666, + 5311.599104583426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.310899622545, + 5311.599104583426 + ], + [ + 1848.410354346787, + 5311.599104583426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1848.041390926048, + "min_y": 5311.599104583426, + "max_x": 1848.410354346787, + "max_y": 5312.215336029564, + "center": [ + 1848.2258726364175, + 5311.907220306495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1848.410354346787, + 5311.599104583426 + ], + [ + 1848.041390926048, + 5312.215336029564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.310899622545, + "min_y": 5313.762546165205, + "max_x": 1848.410354346787, + "max_y": 5313.762546165205, + "center": [ + 1847.860626984666, + 5313.762546165205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.310899622545, + 5313.762546165205 + ], + [ + 1848.410354346787, + 5313.762546165205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.000997519182, + "min_y": 5295.863207103076, + "max_x": 1871.141105080172, + "max_y": 5295.863207103076, + "center": [ + 1870.571051299677, + 5295.863207103076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.141105080172, + 5295.863207103076 + ], + [ + 1870.000997519182, + 5295.863207103076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C34", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1870.2191662499904, + "min_y": 5296.756625770274, + "max_x": 1870.9229363493637, + "max_y": 5297.460395869647, + "center": [ + 1870.571051299677, + 5297.10851081996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.571051299677, + 5297.10851081996 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5298.353814536836, + "max_x": 1871.120778661798, + "max_y": 5298.353814536836, + "center": [ + 1870.5710512996757, + 5298.353814536836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.021323937553, + 5298.353814536836 + ], + [ + 1871.120778661798, + 5298.353814536836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5295.863207103076, + "max_x": 1871.120778661798, + "max_y": 5295.863207103076, + "center": [ + 1870.5710512996757, + 5295.863207103076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.021323937553, + 5295.863207103076 + ], + [ + 1871.120778661798, + 5295.863207103076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.015155982272, + "min_y": 5296.190372955059, + "max_x": 1871.126946617079, + "max_y": 5296.190372955059, + "center": [ + 1870.5710512996757, + 5296.190372955059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.126946617079, + 5296.190372955059 + ], + [ + 1870.015155982272, + 5296.190372955059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.015155982272, + "min_y": 5295.863207103076, + "max_x": 1871.126946617079, + "max_y": 5295.863207103076, + "center": [ + 1870.5710512996757, + 5295.863207103076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.126946617079, + 5295.863207103076 + ], + [ + 1870.015155982272, + 5295.863207103076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.016976001922, + "min_y": 5298.353814536836, + "max_x": 1871.128766636727, + "max_y": 5298.353814536836, + "center": [ + 1870.5728713193246, + 5298.353814536836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.128766636727, + 5298.353814536836 + ], + [ + 1870.016976001922, + 5298.353814536836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.016976001922, + "min_y": 5298.353814536836, + "max_x": 1871.128766636727, + "max_y": 5298.353814536836, + "center": [ + 1870.5728713193246, + 5298.353814536836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.128766636727, + 5298.353814536836 + ], + [ + 1870.016976001922, + 5298.353814536836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.751815241061, + "min_y": 5297.410417238717, + "max_x": 1871.120778661798, + "max_y": 5298.026648684858, + "center": [ + 1870.9362969514295, + 5297.718532961788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.751815241061, + 5297.410417238717 + ], + [ + 1871.120778661798, + 5298.026648684858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5298.026648684858, + "max_x": 1871.120778661798, + "max_y": 5298.026648684858, + "center": [ + 1870.5710512996757, + 5298.026648684858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.120778661798, + 5298.026648684858 + ], + [ + 1870.021323937553, + 5298.026648684858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5297.410417238717, + "max_x": 1870.390287358292, + "max_y": 5298.026648684858, + "center": [ + 1870.2058056479225, + 5297.718532961788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.021323937553, + 5298.026648684858 + ], + [ + 1870.390287358292, + 5297.410417238717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.751815241056, + "min_y": 5296.190372955059, + "max_x": 1871.120778661798, + "max_y": 5296.806604401194, + "center": [ + 1870.936296951427, + 5296.498488678126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.751815241056, + 5296.806604401194 + ], + [ + 1871.120778661798, + 5296.190372955059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5296.190372955059, + "max_x": 1871.120778661798, + "max_y": 5296.190372955059, + "center": [ + 1870.5710512996757, + 5296.190372955059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.120778661798, + 5296.190372955059 + ], + [ + 1870.021323937553, + 5296.190372955059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.021323937553, + "min_y": 5296.190372955059, + "max_x": 1870.390287358292, + "max_y": 5296.806604401194, + "center": [ + 1870.2058056479225, + 5296.498488678126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.021323937553, + 5296.190372955059 + ], + [ + 1870.390287358292, + 5296.806604401194 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.523533802958, + "min_y": 5383.377690615908, + "max_x": 1960.783671765186, + "max_y": 5383.377690615908, + "center": [ + 1960.153602784072, + 5383.377690615908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.523533802958, + 5383.377690615908 + ], + [ + 1960.783671765186, + 5383.377690615908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.840538953536, + "min_y": 5384.443726238274, + "max_x": 1961.840538953536, + "max_y": 5385.703864200493, + "center": [ + 1961.840538953536, + 5385.073795219383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.840538953536, + 5385.703864200493 + ], + [ + 1961.840538953536, + 5384.443726238274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1993.591376801359, + "min_y": 5366.203140880877, + "max_x": 1993.591376801359, + "max_y": 5367.4506170498, + "center": [ + 1993.591376801359, + 5366.826878965338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.591376801359, + 5367.4506170498 + ], + [ + 1993.591376801359, + 5366.203140880877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1980.396689836311, + "min_y": 5346.779080544937, + "max_x": 1980.396689836311, + "max_y": 5347.752111956697, + "center": [ + 1980.396689836311, + 5347.265596250817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.396689836311, + 5347.752111956697 + ], + [ + 1980.396689836311, + 5346.779080544937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1979.212072974292, + "min_y": 5347.265596250819, + "max_x": 1980.396689836311, + "max_y": 5347.265596250819, + "center": [ + 1979.8043814053015, + 5347.265596250819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.396689836311, + 5347.265596250819 + ], + [ + 1979.212072974292, + 5347.265596250819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1982.540474291445, + "min_y": 5346.779080544937, + "max_x": 1982.540474291445, + "max_y": 5347.752111956697, + "center": [ + 1982.540474291445, + 5347.265596250817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.540474291445, + 5346.779080544937 + ], + [ + 1982.540474291445, + 5347.752111956697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C47", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1981.1603720694864, + "min_y": 5346.951835334068, + "max_x": 1981.7832175566616, + "max_y": 5347.5746808212425, + "center": [ + 1981.471794813074, + 5347.263258077655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1981.471794813074, + 5347.263258077655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1981.741024710779, + "min_y": 5346.779080544937, + "max_x": 1982.288263644135, + "max_y": 5347.106735276094, + "center": [ + 1982.0146441774568, + 5346.942907910516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1981.741024710779, + 5347.106735276094 + ], + [ + 1982.288263644135, + 5346.779080544937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1982.288263644135, + "min_y": 5346.779080544937, + "max_x": 1982.288263644135, + "max_y": 5347.752111956697, + "center": [ + 1982.288263644135, + 5347.265596250817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.288263644135, + 5346.779080544937 + ], + [ + 1982.288263644135, + 5347.752111956697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1981.738985832763, + "min_y": 5347.423236464395, + "max_x": 1982.288263644135, + "max_y": 5347.752111956697, + "center": [ + 1982.013624738449, + 5347.5876742105465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.288263644135, + 5347.752111956697 + ], + [ + 1981.738985832763, + 5347.423236464395 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1980.663136272951, + "min_y": 5346.779080544937, + "max_x": 1981.208508938858, + "max_y": 5347.105617864079, + "center": [ + 1980.9358226059044, + 5346.942349204508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1981.208508938858, + 5347.105617864079 + ], + [ + 1980.663136272951, + 5346.779080544937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1980.663136272951, + "min_y": 5346.779080544937, + "max_x": 1980.663136272951, + "max_y": 5347.752111956697, + "center": [ + 1980.663136272951, + 5347.265596250817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.663136272951, + 5346.779080544937 + ], + [ + 1980.663136272951, + 5347.752111956697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1980.663136272951, + "min_y": 5347.425574637561, + "max_x": 1981.208508938858, + "max_y": 5347.752111956697, + "center": [ + 1980.9358226059044, + 5347.58884329713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.663136272951, + 5347.752111956697 + ], + [ + 1981.208508938858, + 5347.425574637561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1979.212072974292, + "min_y": 5347.265596250819, + "max_x": 1979.212072974292, + "max_y": 5348.641212907677, + "center": [ + 1979.212072974292, + 5347.953404579248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1979.212072974292, + 5348.641212907677 + ], + [ + 1979.212072974292, + 5347.265596250819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C4F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1982.540474291445, + "min_y": 5347.265596250817, + "max_x": 1983.608935830806, + "max_y": 5347.265596250824, + "center": [ + 1983.0747050611255, + 5347.265596250821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1983.608935830806, + 5347.265596250824 + ], + [ + 1982.540474291445, + 5347.265596250817 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.141249854595, + "min_y": 5348.176475703572, + "max_x": 1987.00210097034, + "max_y": 5348.176475703572, + "center": [ + 1985.5716754124674, + 5348.176475703572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.00210097034, + 5348.176475703572 + ], + [ + 1984.141249854595, + 5348.176475703572 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.141249854595, + "min_y": 5346.354716798071, + "max_x": 1987.00210097034, + "max_y": 5346.354716798071, + "center": [ + 1985.5716754124674, + 5346.354716798071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.00210097034, + 5346.354716798071 + ], + [ + 1984.141249854595, + 5346.354716798071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C54", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1986.070202777946, + "min_y": 5344.544710333431, + "max_x": 1986.568479167686, + "max_y": 5345.042986723171, + "center": [ + 1986.319340972816, + 5344.793848528301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.319340972816, + 5344.793848528301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.931998946643, + "min_y": 5344.140673463454, + "max_x": 1986.194122731565, + "max_y": 5344.578464610139, + "center": [ + 1986.0630608391039, + 5344.3595690367965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.194122731565, + 5344.578464610139 + ], + [ + 1985.931998946643, + 5344.140673463454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.931998946643, + "min_y": 5344.140673463454, + "max_x": 1986.71042407605, + "max_y": 5344.140673463454, + "center": [ + 1986.3212115113465, + 5344.140673463454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.931998946643, + 5344.140673463454 + ], + [ + 1986.71042407605, + 5344.140673463454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.447323682207, + "min_y": 5344.140673463454, + "max_x": 1986.71042407605, + "max_y": 5344.580095712547, + "center": [ + 1986.5788738791284, + 5344.360384588001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.71042407605, + 5344.140673463454 + ], + [ + 1986.447323682207, + 5344.580095712547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.931998946643, + "min_y": 5345.004477227675, + "max_x": 1986.193228801954, + "max_y": 5345.440775360398, + "center": [ + 1986.0626138742987, + 5345.222626294037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.193228801954, + 5345.004477227675 + ], + [ + 1985.931998946643, + 5345.440775360398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.931998946643, + "min_y": 5345.440775360398, + "max_x": 1986.71042407605, + "max_y": 5345.440775360398, + "center": [ + 1986.3212115113465, + 5345.440775360398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.931998946643, + 5345.440775360398 + ], + [ + 1986.71042407605, + 5345.440775360398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.449194220741, + "min_y": 5345.004477227675, + "max_x": 1986.71042407605, + "max_y": 5345.440775360398, + "center": [ + 1986.5798091483955, + 5345.222626294037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.71042407605, + 5345.440775360398 + ], + [ + 1986.449194220741, + 5345.004477227675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C5B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1986.321211511345, + "min_y": 5343.25924971193, + "max_x": 1986.321211511345, + "max_y": 5344.140673463454, + "center": [ + 1986.321211511345, + 5343.699961587692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.321211511345, + 5344.140673463454 + ], + [ + 1986.321211511345, + 5343.25924971193 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C5C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1986.321211511345, + "min_y": 5345.440775360398, + "max_x": 1986.321211511345, + "max_y": 5346.35471679807, + "center": [ + 1986.321211511345, + 5345.897746079234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.321211511345, + 5346.35471679807 + ], + [ + 1986.321211511345, + 5345.440775360398 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.141249854595, + "min_y": 5346.35471679807, + "max_x": 1984.141249854595, + "max_y": 5348.176475703572, + "center": [ + 1984.141249854595, + 5347.265596250821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.141249854595, + 5348.176475703572 + ], + [ + 1984.141249854595, + 5346.35471679807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1987.00210097034, + "min_y": 5346.35471679807, + "max_x": 1987.00210097034, + "max_y": 5348.176475703572, + "center": [ + 1987.00210097034, + 5347.265596250821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.00210097034, + 5348.176475703572 + ], + [ + 1987.00210097034, + 5346.35471679807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C5F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1984.750226341163, + "min_y": 5349.46193632507, + "max_x": 1985.248502730903, + "max_y": 5349.960212714811, + "center": [ + 1984.999364536033, + 5349.711074519941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.999364536033, + 5349.711074519941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.61202250986, + "min_y": 5349.057899455095, + "max_x": 1984.874146294784, + "max_y": 5349.495690601781, + "center": [ + 1984.743084402322, + 5349.276795028438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.874146294784, + 5349.495690601781 + ], + [ + 1984.61202250986, + 5349.057899455095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.61202250986, + "min_y": 5349.057899455095, + "max_x": 1985.390447639268, + "max_y": 5349.057899455095, + "center": [ + 1985.001235074564, + 5349.057899455095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.61202250986, + 5349.057899455095 + ], + [ + 1985.390447639268, + 5349.057899455095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.127347245424, + "min_y": 5349.057899455095, + "max_x": 1985.390447639268, + "max_y": 5349.497321704189, + "center": [ + 1985.258897442346, + 5349.277610579642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.390447639268, + 5349.057899455095 + ], + [ + 1985.127347245424, + 5349.497321704189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.61202250986, + "min_y": 5349.921703219317, + "max_x": 1984.873252365173, + "max_y": 5350.35800135204, + "center": [ + 1984.7426374375164, + 5350.139852285679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.873252365173, + 5349.921703219317 + ], + [ + 1984.61202250986, + 5350.35800135204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.61202250986, + "min_y": 5350.35800135204, + "max_x": 1985.390447639268, + "max_y": 5350.35800135204, + "center": [ + 1985.001235074564, + 5350.35800135204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.61202250986, + 5350.35800135204 + ], + [ + 1985.390447639268, + 5350.35800135204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.129217783958, + "min_y": 5349.921703219317, + "max_x": 1985.390447639268, + "max_y": 5350.35800135204, + "center": [ + 1985.259832711613, + 5350.139852285679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.390447639268, + 5350.35800135204 + ], + [ + 1985.129217783958, + 5349.921703219317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C66", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1985.001235074564, + "min_y": 5348.176475703572, + "max_x": 1985.001235074564, + "max_y": 5349.057899455095, + "center": [ + 1985.001235074564, + 5348.617187579333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.001235074564, + 5349.057899455095 + ], + [ + 1985.001235074564, + 5348.176475703572 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C67", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1985.001235074564, + "min_y": 5350.35800135204, + "max_x": 1985.001235074564, + "max_y": 5351.271942789711, + "center": [ + 1985.001235074564, + 5350.814972070875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.001235074564, + 5351.271942789711 + ], + [ + 1985.001235074564, + 5350.35800135204 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C68", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1983.652326957994, + "min_y": 5352.088704965656, + "max_x": 1984.9961845784662, + "max_y": 5353.208586316049, + "center": [ + 1984.3242557682302, + 5352.648645640853 + ] + }, + "raw_value": "VT", + "clean_value": "VT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C69", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1909.329001908203, + "min_y": 5338.601028758951, + "max_x": 1909.329001908206, + "max_y": 5348.993797135691, + "center": [ + 1909.3290019082046, + 5343.7974129473205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.329001908203, + 5338.601028758951 + ], + [ + 1909.329001908206, + 5348.993797135691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554C6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.683152087527, + "min_y": 5324.373295039858, + "max_x": 1957.683152087527, + "max_y": 5325.66689720554, + "center": [ + 1957.683152087527, + 5325.020096122699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.683152087527, + 5325.66689720554 + ], + [ + 1957.683152087527, + 5324.373295039858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509074202605, + "min_y": 5324.39635803824, + "max_x": 1960.509074202605, + "max_y": 5325.643834207163, + "center": [ + 1960.509074202605, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509074202605, + 5324.39635803824 + ], + [ + 1960.509074202605, + 5325.643834207163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.683152087527, + "min_y": 5324.39635803824, + "max_x": 1957.683152087527, + "max_y": 5325.643834207163, + "center": [ + 1957.683152087527, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.683152087527, + 5324.39635803824 + ], + [ + 1957.683152087527, + 5325.643834207163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C6D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1958.7003022041777, + "min_y": 5324.6229012469985, + "max_x": 1959.4988220595305, + "max_y": 5325.421421102351, + "center": [ + 1959.099562131854, + 5325.022161174675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.099562131854, + 5325.022161174675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.0543648302, + "min_y": 5324.389359680733, + "max_x": 1958.0543648302, + "max_y": 5325.65083256467, + "center": [ + 1958.0543648302, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.0543648302, + 5325.65083256467 + ], + [ + 1958.0543648302, + 5324.389359680733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.683152087527, + "min_y": 5324.389359680733, + "max_x": 1957.683152087527, + "max_y": 5325.65083256467, + "center": [ + 1957.683152087527, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.683152087527, + 5325.65083256467 + ], + [ + 1957.683152087527, + 5324.389359680733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509074202605, + "min_y": 5324.391424732697, + "max_x": 1960.509074202605, + "max_y": 5325.652897616638, + "center": [ + 1960.509074202605, + 5325.022161174667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509074202605, + 5325.652897616638 + ], + [ + 1960.509074202605, + 5324.391424732697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509074202605, + "min_y": 5324.391424732697, + "max_x": 1960.509074202605, + "max_y": 5325.652897616638, + "center": [ + 1960.509074202605, + 5325.022161174667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509074202605, + 5325.652897616638 + ], + [ + 1960.509074202605, + 5324.391424732697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438665734406, + "min_y": 5325.225196618525, + "max_x": 1960.137861459927, + "max_y": 5325.643834207163, + "center": [ + 1959.7882635971664, + 5325.434515412844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.438665734406, + 5325.225196618525 + ], + [ + 1960.137861459927, + 5325.643834207163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.137861459927, + "min_y": 5324.39635803824, + "max_x": 1960.137861459927, + "max_y": 5325.643834207163, + "center": [ + 1960.137861459927, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137861459927, + 5325.643834207163 + ], + [ + 1960.137861459927, + 5324.39635803824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438665734406, + "min_y": 5324.39635803824, + "max_x": 1960.137861459927, + "max_y": 5324.814995626878, + "center": [ + 1959.7882635971664, + 5324.605676832559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137861459927, + 5324.39635803824 + ], + [ + 1959.438665734406, + 5324.814995626878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.0543648302, + "min_y": 5325.224213379364, + "max_x": 1958.755202731766, + "max_y": 5325.643834207163, + "center": [ + 1958.404783780983, + 5325.434023793264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.755202731766, + 5325.224213379364 + ], + [ + 1958.0543648302, + 5325.643834207163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.0543648302, + "min_y": 5324.39635803824, + "max_x": 1958.0543648302, + "max_y": 5325.643834207163, + "center": [ + 1958.0543648302, + 5325.020096122702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.0543648302, + 5325.643834207163 + ], + [ + 1958.0543648302, + 5324.39635803824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.0543648302, + "min_y": 5324.39635803824, + "max_x": 1958.757009542517, + "max_y": 5324.817060678855, + "center": [ + 1958.4056871863586, + 5324.606709358548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.0543648302, + 5324.39635803824 + ], + [ + 1958.757009542517, + 5324.817060678855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C78", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1876.06570916884, + "min_y": 5340.427261314117, + "max_x": 1888.8323565633248, + "max_y": 5341.54714266451, + "center": [ + 1882.4490328660822, + 5340.987201989314 + ] + }, + "raw_value": "CWR-10621-80A-S2A-n", + "clean_value": "CWR-10621-80A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C79", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1881.561660965036, + "min_y": 5340.486255299808, + "max_x": 1894.3283083595209, + "max_y": 5341.606136650202, + "center": [ + 1887.9449846622783, + 5341.046195975005 + ] + }, + "raw_value": "CWS-10611-80A-S2A-n", + "clean_value": "CWS-10611-80A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C7A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1788.230584564094, + "min_y": 5283.13119656047, + "max_x": 1801.669160768815, + "max_y": 5284.251077910863, + "center": [ + 1794.9498726664544, + 5283.691137235666 + ] + }, + "raw_value": "P-10117-300A-F2A-H50", + "clean_value": "P-10117-300A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C7B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1744.788264506942, + "min_y": 5228.424436249851, + "max_x": 1744.788264506942, + "max_y": 5229.042355555328, + "center": [ + 1744.788264506942, + 5228.733395902589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.788264506942, + 5228.424436249851 + ], + [ + 1744.788264506942, + 5229.042355555328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C7C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1744.785627136221, + "min_y": 5225.091254755827, + "max_x": 1744.785627136221, + "max_y": 5226.142059160786, + "center": [ + 1744.785627136221, + 5225.6166569583065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.785627136221, + 5226.142059160786 + ], + [ + 1744.785627136221, + 5225.091254755827 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.401487240596, + "min_y": 5224.791277293011, + "max_x": 1744.401487240596, + "max_y": 5225.311599274208, + "center": [ + 1744.401487240596, + 5225.05143828361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.401487240596, + 5225.311599274208 + ], + [ + 1744.401487240596, + 5224.791277293011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.169767031848, + "min_y": 5224.791277293011, + "max_x": 1745.169767031848, + "max_y": 5225.311599274208, + "center": [ + 1745.169767031848, + 5225.05143828361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.169767031848, + 5225.311599274208 + ], + [ + 1745.169767031848, + 5224.791277293011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.401487240596, + "min_y": 5224.791277293011, + "max_x": 1745.169767031848, + "max_y": 5224.791277293011, + "center": [ + 1744.785627136222, + 5224.791277293011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.401487240596, + 5224.791277293011 + ], + [ + 1745.169767031848, + 5224.791277293011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C80", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1728.730320872403, + "min_y": 5225.419803482932, + "max_x": 1728.730320872403, + "max_y": 5226.470607887893, + "center": [ + 1728.730320872403, + 5225.9452056854125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.730320872403, + 5226.470607887893 + ], + [ + 1728.730320872403, + 5225.419803482932 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.346180976778, + "min_y": 5224.962205359372, + "max_x": 1728.346180976778, + "max_y": 5225.482527340568, + "center": [ + 1728.346180976778, + 5225.22236634997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.346180976778, + 5225.482527340568 + ], + [ + 1728.346180976778, + 5224.962205359372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.11446076803, + "min_y": 5224.962205359372, + "max_x": 1729.11446076803, + "max_y": 5225.482527340568, + "center": [ + 1729.11446076803, + 5225.22236634997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.11446076803, + 5225.482527340568 + ], + [ + 1729.11446076803, + 5224.962205359372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.346180976778, + "min_y": 5224.962205359372, + "max_x": 1729.11446076803, + "max_y": 5224.962205359372, + "center": [ + 1728.730320872404, + 5224.962205359372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.346180976778, + 5224.962205359372 + ], + [ + 1729.11446076803, + 5224.962205359372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5231.010564740718, + "max_x": 1717.217354664348, + "max_y": 5231.530886721916, + "center": [ + 1717.217354664348, + 5231.270725731318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.217354664348, + 5231.530886721916 + ], + [ + 1717.217354664348, + 5231.010564740718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.985634455599, + "min_y": 5231.010564740718, + "max_x": 1717.985634455599, + "max_y": 5231.530886721916, + "center": [ + 1717.985634455599, + 5231.270725731318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.985634455599, + 5231.530886721916 + ], + [ + 1717.985634455599, + 5231.010564740718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5231.010564740718, + "max_x": 1717.985634455599, + "max_y": 5231.010564740718, + "center": [ + 1717.6014945599736, + 5231.010564740718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.217354664348, + 5231.010564740718 + ], + [ + 1717.985634455599, + 5231.010564740718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5211.744026238992, + "max_x": 1717.217354664348, + "max_y": 5212.26434822019, + "center": [ + 1717.217354664348, + 5212.0041872295915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.217354664348, + 5212.26434822019 + ], + [ + 1717.217354664348, + 5211.744026238992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.985634455599, + "min_y": 5211.744026238992, + "max_x": 1717.985634455599, + "max_y": 5212.26434822019, + "center": [ + 1717.985634455599, + 5212.0041872295915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.985634455599, + 5212.26434822019 + ], + [ + 1717.985634455599, + 5211.744026238992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.217354664348, + "min_y": 5211.744026238992, + "max_x": 1717.985634455599, + "max_y": 5211.744026238992, + "center": [ + 1717.6014945599736, + 5211.744026238992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.217354664348, + 5211.744026238992 + ], + [ + 1717.985634455599, + 5211.744026238992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C8A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5229.036486300548, + "max_x": 1708.505651485619, + "max_y": 5229.036486300548, + "center": [ + 1705.5122626563316, + 5229.036486300548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827044, + 5229.036486300548 + ], + [ + 1708.505651485619, + 5229.036486300548 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C8B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1828.706622315901, + "min_y": 5203.099095607718, + "max_x": 1828.706622315901, + "max_y": 5204.149900012677, + "center": [ + 1828.706622315901, + 5203.624497810197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.706622315901, + 5204.149900012677 + ], + [ + 1828.706622315901, + 5203.099095607718 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.157851036437, + "min_y": 5202.445384002632, + "max_x": 1828.157851036437, + "max_y": 5203.188701118627, + "center": [ + 1828.157851036437, + 5202.8170425606295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.157851036437, + 5203.188701118627 + ], + [ + 1828.157851036437, + 5202.445384002632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.255393595367, + "min_y": 5202.445384002632, + "max_x": 1829.255393595367, + "max_y": 5203.188701118627, + "center": [ + 1829.255393595367, + 5202.8170425606295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.255393595367, + 5203.188701118627 + ], + [ + 1829.255393595367, + 5202.445384002632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C8E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.900807425881, + "min_y": 5220.575516951146, + "max_x": 1853.782985284473, + "max_y": 5220.575516951146, + "center": [ + 1853.3418963551771, + 5220.575516951146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.900807425881, + 5220.575516951146 + ], + [ + 1853.782985284473, + 5220.575516951146 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C8F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1866.541331494569, + "min_y": 5218.953043481762, + "max_x": 1866.541331494569, + "max_y": 5220.573700096872, + "center": [ + 1866.541331494569, + 5219.763371789317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.541331494569, + 5220.573700096872 + ], + [ + 1866.541331494569, + 5218.953043481762 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C90", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1866.1900584413295, + "min_y": 5217.358632536684, + "max_x": 1866.8926045478086, + "max_y": 5218.061178643163, + "center": [ + 1866.541331494569, + 5217.709905589923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.541331494569, + 5217.709905589923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5218.953043481771, + "max_x": 1867.090102774033, + "max_y": 5218.953043481771, + "center": [ + 1866.5413314945665, + 5218.953043481771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.9925602151, + 5218.953043481771 + ], + [ + 1867.090102774033, + 5218.953043481771 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5216.466767698076, + "max_x": 1867.090102774033, + "max_y": 5216.466767698076, + "center": [ + 1866.5413314945665, + 5216.466767698076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.9925602151, + 5216.466767698076 + ], + [ + 1867.090102774033, + 5216.466767698076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5216.793364545097, + "max_x": 1866.360881936785, + "max_y": 5217.408524245059, + "center": [ + 1866.1767210759426, + 5217.100944395078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.360881936785, + 5217.408524245059 + ], + [ + 1865.9925602151, + 5216.793364545097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5216.793364545097, + "max_x": 1867.090102774033, + "max_y": 5216.793364545097, + "center": [ + 1866.5413314945665, + 5216.793364545097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.9925602151, + 5216.793364545097 + ], + [ + 1867.090102774033, + 5216.793364545097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.721781052347, + "min_y": 5216.793364545097, + "max_x": 1867.090102774033, + "max_y": 5217.408524245059, + "center": [ + 1866.90594191319, + 5217.100944395078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.090102774033, + 5216.793364545097 + ], + [ + 1866.721781052347, + 5217.408524245059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5218.01128693478, + "max_x": 1866.360881936788, + "max_y": 5218.626446634743, + "center": [ + 1866.176721075944, + 5218.318866784762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.360881936788, + 5218.01128693478 + ], + [ + 1865.9925602151, + 5218.626446634743 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.9925602151, + "min_y": 5218.626446634743, + "max_x": 1867.090102774033, + "max_y": 5218.626446634743, + "center": [ + 1866.5413314945665, + 5218.626446634743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.9925602151, + 5218.626446634743 + ], + [ + 1867.090102774033, + 5218.626446634743 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.721781052347, + "min_y": 5218.01128693478, + "max_x": 1867.090102774033, + "max_y": 5218.626446634743, + "center": [ + 1866.90594191319, + 5218.318866784762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.090102774033, + 5218.626446634743 + ], + [ + 1866.721781052347, + 5218.01128693478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C99", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1866.539485335061, + "min_y": 5215.731204614604, + "max_x": 1866.539485335061, + "max_y": 5216.466767698076, + "center": [ + 1866.539485335061, + 5216.09898615634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.539485335061, + 5216.466767698076 + ], + [ + 1866.539485335061, + 5215.731204614604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.155345439436, + "min_y": 5215.273606491043, + "max_x": 1866.155345439436, + "max_y": 5215.79392847224, + "center": [ + 1866.155345439436, + 5215.533767481642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.155345439436, + 5215.79392847224 + ], + [ + 1866.155345439436, + 5215.273606491043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.923625230687, + "min_y": 5215.273606491043, + "max_x": 1866.923625230687, + "max_y": 5215.79392847224, + "center": [ + 1866.923625230687, + 5215.533767481642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.923625230687, + 5215.79392847224 + ], + [ + 1866.923625230687, + 5215.273606491043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.155345439436, + "min_y": 5215.273606491043, + "max_x": 1866.923625230687, + "max_y": 5215.273606491043, + "center": [ + 1866.5394853350615, + 5215.273606491043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.155345439436, + 5215.273606491043 + ], + [ + 1866.923625230687, + 5215.273606491043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5305.700482186439, + "max_x": 1892.316020302484, + "max_y": 5305.700482186439, + "center": [ + 1891.8762384127872, + 5305.700482186439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.316020302484, + 5305.700482186439 + ], + [ + 1891.43645652309, + 5305.700482186439 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554C9E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1891.876238412785, + "min_y": 5305.700482186439, + "max_x": 1891.876238412785, + "max_y": 5306.582101954012, + "center": [ + 1891.876238412785, + 5306.141292070226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.876238412785, + 5305.700482186439 + ], + [ + 1891.876238412785, + 5306.582101954012 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554C9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5303.762625777313, + "max_x": 1892.316020302484, + "max_y": 5303.762625777313, + "center": [ + 1891.8762384127872, + 5303.762625777313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.43645652309, + 5303.762625777313 + ], + [ + 1892.316020302484, + 5303.762625777313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1891.5926168005458, + "min_y": 5304.48089073535, + "max_x": 1892.1556328800443, + "max_y": 5305.043906814849, + "center": [ + 1891.874124840295, + 5304.762398775099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.874124840295, + 5304.762398775099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5304.024358458895, + "max_x": 1891.732637335124, + "max_y": 5304.519030612996, + "center": [ + 1891.584546929107, + 5304.271694535946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.732637335124, + 5304.519030612996 + ], + [ + 1891.43645652309, + 5304.024358458895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5304.024358458895, + "max_x": 1892.316020302484, + "max_y": 5304.024358458895, + "center": [ + 1891.8762384127872, + 5304.024358458895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.43645652309, + 5304.024358458895 + ], + [ + 1892.316020302484, + 5304.024358458895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.018735993403, + "min_y": 5304.024358458895, + "max_x": 1892.316020302484, + "max_y": 5304.520873640084, + "center": [ + 1892.1673781479435, + 5304.272616049489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.316020302484, + 5304.024358458895 + ], + [ + 1892.018735993403, + 5304.520873640084 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5305.000393885825, + "max_x": 1891.73162725968, + "max_y": 5305.493379042735, + "center": [ + 1891.584041891385, + 5305.24688646428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.73162725968, + 5305.000393885825 + ], + [ + 1891.43645652309, + 5305.493379042735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.43645652309, + "min_y": 5305.493379042735, + "max_x": 1892.316020302484, + "max_y": 5305.493379042735, + "center": [ + 1891.8762384127872, + 5305.493379042735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.43645652309, + 5305.493379042735 + ], + [ + 1892.316020302484, + 5305.493379042735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.020849565893, + "min_y": 5305.000393885825, + "max_x": 1892.316020302484, + "max_y": 5305.493379042735, + "center": [ + 1892.1684349341886, + 5305.24688646428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.316020302484, + 5305.493379042735 + ], + [ + 1892.020849565893, + 5305.000393885825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1891.873601042065, + "min_y": 5302.711821372352, + "max_x": 1891.873601042065, + "max_y": 5303.762625777313, + "center": [ + 1891.873601042065, + 5303.237223574832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.873601042065, + 5303.762625777313 + ], + [ + 1891.873601042065, + 5302.711821372352 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.489461146439, + "min_y": 5302.254223248792, + "max_x": 1891.489461146439, + "max_y": 5302.774545229989, + "center": [ + 1891.489461146439, + 5302.51438423939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.489461146439, + 5302.774545229989 + ], + [ + 1891.489461146439, + 5302.254223248792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1892.25774093769, + "min_y": 5302.254223248792, + "max_x": 1892.25774093769, + "max_y": 5302.774545229989, + "center": [ + 1892.25774093769, + 5302.51438423939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1892.25774093769, + 5302.774545229989 + ], + [ + 1892.25774093769, + 5302.254223248792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1891.489461146439, + "min_y": 5302.254223248792, + "max_x": 1892.25774093769, + "max_y": 5302.254223248792, + "center": [ + 1891.8736010420644, + 5302.254223248792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.489461146439, + 5302.254223248792 + ], + [ + 1892.25774093769, + 5302.254223248792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CAB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5275.422441191004, + "max_x": 1908.949965733491, + "max_y": 5275.422441191004, + "center": [ + 1908.090750594882, + 5275.422441191004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5275.422441191004 + ], + [ + 1907.231535456273, + 5275.422441191004 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5274.920269757989, + "max_x": 1911.173632502022, + "max_y": 5275.929558546274, + "center": [ + 1911.173632502022, + 5275.424914152132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5274.920269757989 + ], + [ + 1911.173632502022, + 5275.929558546274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CAD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5275.099461785789, + "max_x": 1910.3494321584587, + "max_y": 5275.745515920777, + "center": [ + 1910.026405090965, + 5275.422488853283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5275.422488853283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5274.920269757989, + "max_x": 1910.873297418609, + "max_y": 5275.260133654036, + "center": [ + 1910.5894822646064, + 5275.0902017060125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5275.260133654036 + ], + [ + 1910.873297418609, + 5274.920269757989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5274.920269757989, + "max_x": 1910.873297418609, + "max_y": 5275.929558546274, + "center": [ + 1910.873297418609, + 5275.424914152132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5274.920269757989 + ], + [ + 1910.873297418609, + 5275.929558546274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5275.588428400718, + "max_x": 1910.873297418609, + "max_y": 5275.929558546274, + "center": [ + 1910.5884248389675, + 5275.758993473496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5275.929558546274 + ], + [ + 1910.303552259326, + 5275.588428400718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5274.920269757989, + "max_x": 1909.753308582727, + "max_y": 5275.258974604696, + "center": [ + 1909.470461333146, + 5275.089622181343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5275.258974604696 + ], + [ + 1909.187614083565, + 5274.920269757989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5274.920269757989, + "max_x": 1909.187614083565, + "max_y": 5275.929558546274, + "center": [ + 1909.187614083565, + 5275.424914152132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5274.920269757989 + ], + [ + 1909.187614083565, + 5275.929558546274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5275.590853699564, + "max_x": 1909.753308582727, + "max_y": 5275.929558546274, + "center": [ + 1909.470461333146, + 5275.760206122919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5275.929558546274 + ], + [ + 1909.753308582727, + 5275.590853699564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5274.920269757989, + "max_x": 1908.949965733491, + "max_y": 5275.929558546274, + "center": [ + 1908.949965733491, + 5275.424914152132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5275.929558546274 + ], + [ + 1908.949965733491, + 5274.920269757989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5376.120761032334, + "max_x": 1852.378963483234, + "max_y": 5376.120761032334, + "center": [ + 1851.9391815935364, + 5376.120761032334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.378963483234, + 5376.120761032334 + ], + [ + 1851.499399703839, + 5376.120761032334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1851.939181593535, + "min_y": 5376.120761032334, + "max_x": 1851.939181593535, + "max_y": 5377.002380799906, + "center": [ + 1851.939181593535, + 5376.561570916119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.939181593535, + 5376.120761032334 + ], + [ + 1851.939181593535, + 5377.002380799906 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5374.182904623207, + "max_x": 1852.378963483234, + "max_y": 5374.182904623207, + "center": [ + 1851.9391815935364, + 5374.182904623207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.499399703839, + 5374.182904623207 + ], + [ + 1852.378963483234, + 5374.182904623207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1851.6555599812957, + "min_y": 5374.901169581243, + "max_x": 1852.2185760607942, + "max_y": 5375.464185660742, + "center": [ + 1851.937068021045, + 5375.182677620993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.937068021045, + 5375.182677620993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5374.44463730479, + "max_x": 1851.795580515873, + "max_y": 5374.939309458891, + "center": [ + 1851.6474901098559, + 5374.691973381841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.795580515873, + 5374.939309458891 + ], + [ + 1851.499399703839, + 5374.44463730479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5374.44463730479, + "max_x": 1852.378963483234, + "max_y": 5374.44463730479, + "center": [ + 1851.9391815935364, + 5374.44463730479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.499399703839, + 5374.44463730479 + ], + [ + 1852.378963483234, + 5374.44463730479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.081679174152, + "min_y": 5374.44463730479, + "max_x": 1852.378963483234, + "max_y": 5374.94115248598, + "center": [ + 1852.230321328693, + 5374.692894895385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.378963483234, + 5374.44463730479 + ], + [ + 1852.081679174152, + 5374.94115248598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5375.420672731719, + "max_x": 1851.79457044043, + "max_y": 5375.913657888629, + "center": [ + 1851.6469850721346, + 5375.667165310174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.79457044043, + 5375.420672731719 + ], + [ + 1851.499399703839, + 5375.913657888629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.499399703839, + "min_y": 5375.913657888629, + "max_x": 1852.378963483234, + "max_y": 5375.913657888629, + "center": [ + 1851.9391815935364, + 5375.913657888629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.499399703839, + 5375.913657888629 + ], + [ + 1852.378963483234, + 5375.913657888629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.083792746643, + "min_y": 5375.420672731719, + "max_x": 1852.378963483234, + "max_y": 5375.913657888629, + "center": [ + 1852.2313781149385, + 5375.667165310174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.378963483234, + 5375.913657888629 + ], + [ + 1852.083792746643, + 5375.420672731719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CBF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1851.936544222814, + "min_y": 5373.132100218247, + "max_x": 1851.936544222814, + "max_y": 5374.182904623207, + "center": [ + 1851.936544222814, + 5373.657502420727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.936544222814, + 5374.182904623207 + ], + [ + 1851.936544222814, + 5373.132100218247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.552404327189, + "min_y": 5372.674502094686, + "max_x": 1851.552404327189, + "max_y": 5373.194824075884, + "center": [ + 1851.552404327189, + 5372.934663085285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.552404327189, + 5373.194824075884 + ], + [ + 1851.552404327189, + 5372.674502094686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.32068411844, + "min_y": 5372.674502094686, + "max_x": 1852.32068411844, + "max_y": 5373.194824075884, + "center": [ + 1852.32068411844, + 5372.934663085285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.32068411844, + 5373.194824075884 + ], + [ + 1852.32068411844, + 5372.674502094686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1851.552404327189, + "min_y": 5372.674502094686, + "max_x": 1852.32068411844, + "max_y": 5372.674502094686, + "center": [ + 1851.9365442228145, + 5372.674502094686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1851.552404327189, + 5372.674502094686 + ], + [ + 1852.32068411844, + 5372.674502094686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1941.306901998196, + "min_y": 5320.925612873209, + "max_x": 1941.306901998196, + "max_y": 5321.900918754572, + "center": [ + 1941.306901998196, + 5321.41326581389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.306901998196, + 5321.900918754572 + ], + [ + 1941.306901998196, + 5320.925612873209 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.920915943066, + "min_y": 5320.415165783131, + "max_x": 1940.920915943066, + "max_y": 5320.935487764328, + "center": [ + 1940.920915943066, + 5320.6753267737295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.920915943066, + 5320.935487764328 + ], + [ + 1940.920915943066, + 5320.415165783131 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.689195734317, + "min_y": 5320.415165783131, + "max_x": 1941.689195734317, + "max_y": 5320.935487764328, + "center": [ + 1941.689195734317, + 5320.6753267737295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.689195734317, + 5320.935487764328 + ], + [ + 1941.689195734317, + 5320.415165783131 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.920915943066, + "min_y": 5320.415165783131, + "max_x": 1941.689195734317, + "max_y": 5320.415165783131, + "center": [ + 1941.3050558386915, + 5320.415165783131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.920915943066, + 5320.415165783131 + ], + [ + 1941.689195734317, + 5320.415165783131 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.66989991733, + "min_y": 5365.653207443005, + "max_x": 2004.808024609831, + "max_y": 5365.653207443005, + "center": [ + 2004.2389622635806, + 5365.653207443005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.808024609831, + 5365.653207443005 + ], + [ + 2003.66989991733, + 5365.653207443005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.66989991733, + "min_y": 5365.326610595985, + "max_x": 2004.808024609831, + "max_y": 5365.326610595985, + "center": [ + 2004.2389622635806, + 5365.326610595985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.808024609831, + 5365.326610595985 + ], + [ + 2003.66989991733, + 5365.326610595985 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.668083063047, + "min_y": 5368.670954652441, + "max_x": 2004.806207755548, + "max_y": 5368.670954652441, + "center": [ + 2004.2371454092977, + 5368.670954652441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.806207755548, + 5368.670954652441 + ], + [ + 2003.668083063047, + 5368.670954652441 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.02159149026, + "min_y": 5365.65319978594, + "max_x": 2004.452699328334, + "max_y": 5366.084307624014, + "center": [ + 2004.237145409297, + 5365.868753704977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5365.868753704977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5366.084307624014, + "max_x": 2004.4526993283314, + "max_y": 5366.515415462083, + "center": [ + 2004.237145409297, + 5366.299861543049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5366.299861543049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5366.515415462087, + "max_x": 2004.4526993283314, + "max_y": 5366.946523300156, + "center": [ + 2004.237145409297, + 5366.730969381121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5366.730969381121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.02159149026, + "min_y": 5366.515415462084, + "max_x": 2004.452699328334, + "max_y": 5366.946523300158, + "center": [ + 2004.237145409297, + 5366.730969381121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5366.730969381121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5366.946523300159, + "max_x": 2004.4526993283314, + "max_y": 5367.377631138228, + "center": [ + 2004.237145409297, + 5367.162077219194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5367.162077219194 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CCF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902597, + "min_y": 5367.3776311382235, + "max_x": 2004.4526993283343, + "max_y": 5367.808738976298, + "center": [ + 2004.237145409297, + 5367.593185057261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5367.593185057261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5367.808738976303, + "max_x": 2004.4526993283314, + "max_y": 5368.239846814372, + "center": [ + 2004.237145409297, + 5368.024292895338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5368.024292895338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2004.0215914902626, + "min_y": 5368.239846814368, + "max_x": 2004.4526993283314, + "max_y": 5368.670954652437, + "center": [ + 2004.237145409297, + 5368.455400733403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.237145409297, + 5368.455400733403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2004.238962263583, + "min_y": 5368.994853828731, + "max_x": 2004.238962263583, + "max_y": 5369.419966053715, + "center": [ + 2004.238962263583, + 5369.207409941223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263583, + 5368.994853828731 + ], + [ + 2004.238962263583, + 5369.419966053715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.684745484459, + "min_y": 5368.997551499458, + "max_x": 2004.82287017696, + "max_y": 5368.997551499458, + "center": [ + 2004.2538078307093, + 5368.997551499458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.82287017696, + 5368.997551499458 + ], + [ + 2003.684745484459, + 5368.997551499458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1744.4631618755375, + "min_y": 5226.960782444637, + "max_x": 1745.1080923969025, + "max_y": 5227.605712966001, + "center": [ + 1744.78562713622, + 5227.283247705319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.78562713622, + 5227.283247705319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5228.424436249851, + "max_x": 1745.289393855748, + "max_y": 5228.424436249851, + "center": [ + 1744.785627136221, + 5228.424436249851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.281860416694, + 5228.424436249851 + ], + [ + 1745.289393855748, + 5228.424436249851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5226.142059160786, + "max_x": 1745.289393855748, + "max_y": 5226.142059160786, + "center": [ + 1744.785627136221, + 5226.142059160786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.281860416694, + 5226.142059160786 + ], + [ + 1745.289393855748, + 5226.142059160786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5226.441871903159, + "max_x": 1744.619976189891, + "max_y": 5227.006582549709, + "center": [ + 1744.4509183032924, + 5226.724227226434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.619976189891, + 5227.006582549709 + ], + [ + 1744.281860416694, + 5226.441871903159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5226.441871903159, + "max_x": 1745.289393855748, + "max_y": 5226.441871903159, + "center": [ + 1744.785627136221, + 5226.441871903159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.281860416694, + 5226.441871903159 + ], + [ + 1745.289393855748, + 5226.441871903159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.951278082551, + "min_y": 5226.441871903159, + "max_x": 1745.289393855748, + "max_y": 5227.006582549709, + "center": [ + 1745.1203359691494, + 5226.724227226434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.289393855748, + 5226.441871903159 + ], + [ + 1744.951278082551, + 5227.006582549709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5227.559912860929, + "max_x": 1744.619976189891, + "max_y": 5228.124623507479, + "center": [ + 1744.4509183032924, + 5227.842268184204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.619976189891, + 5227.559912860929 + ], + [ + 1744.281860416694, + 5228.124623507479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.281860416694, + "min_y": 5228.124623507479, + "max_x": 1745.289393855748, + "max_y": 5228.124623507479, + "center": [ + 1744.785627136221, + 5228.124623507479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.281860416694, + 5228.124623507479 + ], + [ + 1745.289393855748, + 5228.124623507479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.951278082548, + "min_y": 5227.559912860929, + "max_x": 1745.289393855748, + "max_y": 5228.124623507479, + "center": [ + 1745.120335969148, + 5227.842268184204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.289393855748, + 5228.124623507479 + ], + [ + 1744.951278082548, + 5227.559912860929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CDD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5246.203297543613, + "max_x": 1907.231535456273, + "max_y": 5294.049677580845, + "center": [ + 1907.231535456273, + 5270.126487562229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5294.049677580845 + ], + [ + 1907.231535456273, + 5246.203297543613 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CDE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.450724551129, + "min_y": 5216.284210970705, + "max_x": 1839.450725831327, + "max_y": 5216.755096867681, + "center": [ + 1839.450725191228, + 5216.519653919193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450725831327, + 5216.284210970705 + ], + [ + 1839.450724551129, + 5216.755096867681 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.673238481695, + "min_y": 5365.692934556282, + "max_x": 1968.673238481695, + "max_y": 5366.986536721963, + "center": [ + 1968.673238481695, + 5366.339735639122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.673238481695, + 5366.986536721963 + ], + [ + 1968.673238481695, + 5365.692934556282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1971.499160596772, + "min_y": 5365.715997554662, + "max_x": 1971.499160596772, + "max_y": 5366.963473723586, + "center": [ + 1971.499160596772, + 5366.339735639123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.499160596772, + 5365.715997554662 + ], + [ + 1971.499160596772, + 5366.963473723586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.673238481695, + "min_y": 5365.715997554662, + "max_x": 1968.673238481695, + "max_y": 5366.963473723586, + "center": [ + 1968.673238481695, + 5366.339735639123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.673238481695, + 5365.715997554662 + ], + [ + 1968.673238481695, + 5366.963473723586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1969.6903885983456, + "min_y": 5365.942540763423, + "max_x": 1970.4889084536985, + "max_y": 5366.741060618775, + "center": [ + 1970.089648526022, + 5366.341800691099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.089648526022, + 5366.341800691099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1969.044451224367, + "min_y": 5365.708999197156, + "max_x": 1969.044451224367, + "max_y": 5366.970472081092, + "center": [ + 1969.044451224367, + 5366.339735639124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1969.044451224367, + 5366.970472081092 + ], + [ + 1969.044451224367, + 5365.708999197156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.673238481695, + "min_y": 5365.708999197156, + "max_x": 1968.673238481695, + "max_y": 5366.970472081092, + "center": [ + 1968.673238481695, + 5366.339735639124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.673238481695, + 5366.970472081092 + ], + [ + 1968.673238481695, + 5365.708999197156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1971.499160596772, + "min_y": 5365.711064249119, + "max_x": 1971.499160596772, + "max_y": 5366.972537133062, + "center": [ + 1971.499160596772, + 5366.341800691091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.499160596772, + 5366.972537133062 + ], + [ + 1971.499160596772, + 5365.711064249119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1971.499160596772, + "min_y": 5365.711064249119, + "max_x": 1971.499160596772, + "max_y": 5366.972537133062, + "center": [ + 1971.499160596772, + 5366.341800691091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.499160596772, + 5366.972537133062 + ], + [ + 1971.499160596772, + 5365.711064249119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.428752128573, + "min_y": 5366.544836134948, + "max_x": 1971.127947854094, + "max_y": 5366.963473723586, + "center": [ + 1970.7783499913335, + 5366.754154929267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.428752128573, + 5366.544836134948 + ], + [ + 1971.127947854094, + 5366.963473723586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1971.127947854094, + "min_y": 5365.715997554662, + "max_x": 1971.127947854094, + "max_y": 5366.963473723586, + "center": [ + 1971.127947854094, + 5366.339735639123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.127947854094, + 5366.963473723586 + ], + [ + 1971.127947854094, + 5365.715997554662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.428752128573, + "min_y": 5365.715997554662, + "max_x": 1971.127947854094, + "max_y": 5366.134635143301, + "center": [ + 1970.7783499913335, + 5365.925316348981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.127947854094, + 5365.715997554662 + ], + [ + 1970.428752128573, + 5366.134635143301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1969.044451224367, + "min_y": 5366.543852895786, + "max_x": 1969.745289125934, + "max_y": 5366.963473723586, + "center": [ + 1969.3948701751506, + 5366.753663309686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1969.745289125934, + 5366.543852895786 + ], + [ + 1969.044451224367, + 5366.963473723586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1969.044451224367, + "min_y": 5365.715997554662, + "max_x": 1969.044451224367, + "max_y": 5366.963473723586, + "center": [ + 1969.044451224367, + 5366.339735639123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1969.044451224367, + 5366.963473723586 + ], + [ + 1969.044451224367, + 5365.715997554662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1969.044451224367, + "min_y": 5365.715997554662, + "max_x": 1969.747095936685, + "max_y": 5366.136700195277, + "center": [ + 1969.395773580526, + 5365.926348874969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1969.044451224367, + 5365.715997554662 + ], + [ + 1969.747095936685, + 5366.136700195277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.907632206108, + "min_y": 5369.848474429897, + "max_x": 1991.907632206108, + "max_y": 5370.424303967494, + "center": [ + 1991.907632206108, + 5370.136389198695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.907632206108, + 5369.848474429897 + ], + [ + 1991.907632206108, + 5370.424303967494 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CEE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1990.843407774232, + "min_y": 5374.247701300929, + "max_x": 1992.4108928989692, + "max_y": 5375.553938904877, + "center": [ + 1991.6271503366006, + 5374.900820102903 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554CEF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1988.6574113811455, + "min_y": 5370.4243039674975, + "max_x": 1995.1578530310705, + "max_y": 5376.924745617423, + "center": [ + 1991.907632206108, + 5373.67452479246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.907632206108, + 5373.67452479246 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554CF0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1989.2453730337268, + "min_y": 5364.249940776537, + "max_x": 1994.5698913784893, + "max_y": 5369.574459121301, + "center": [ + 1991.907632206108, + 5366.912199948919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.907632206108, + 5366.912199948919 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.822167100887, + "min_y": 5369.848474429897, + "max_x": 1992.993097311332, + "max_y": 5369.848474429897, + "center": [ + 1991.9076322061096, + 5369.848474429897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.822167100887, + 5369.848474429897 + ], + [ + 1992.993097311332, + 5369.848474429897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.993097311332, + "min_y": 5368.837772609217, + "max_x": 1992.993097311332, + "max_y": 5369.848474429897, + "center": [ + 1992.993097311332, + 5369.343123519557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.993097311332, + 5369.848474429897 + ], + [ + 1992.993097311332, + 5368.837772609217 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.822167100887, + "min_y": 5368.837772609217, + "max_x": 1992.993097311332, + "max_y": 5368.837772609217, + "center": [ + 1991.9076322061096, + 5368.837772609217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.993097311332, + 5368.837772609217 + ], + [ + 1990.822167100887, + 5368.837772609217 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.822167100887, + "min_y": 5368.837772609217, + "max_x": 1990.822167100887, + "max_y": 5369.848474429897, + "center": [ + 1990.822167100887, + 5369.343123519557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.822167100887, + 5368.837772609217 + ], + [ + 1990.822167100887, + 5369.848474429897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1989.222366907717, + "min_y": 5371.691931887601, + "max_x": 1993.9248222819285, + "max_y": 5372.998169491549, + "center": [ + 1991.5735945948227, + 5372.345050689575 + ] + }, + "raw_value": "10117B", + "clean_value": "10117B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554CF6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1726.770535370042, + "min_y": 5229.042357228854, + "max_x": 1726.770535370042, + "max_y": 5229.942386449368, + "center": [ + 1726.770535370042, + 5229.492371839111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370042, + 5229.042357228854 + ], + [ + 1726.770535370042, + 5229.942386449368 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554CF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.770535370042, + "min_y": 5232.224763538422, + "max_x": 1726.770535370042, + "max_y": 5233.994401298026, + "center": [ + 1726.770535370042, + 5233.109582418224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370042, + 5232.224763538422 + ], + [ + 1726.770535370042, + 5233.994401298026 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.770535370041, + "min_y": 5234.810702167429, + "max_x": 1726.770535370041, + "max_y": 5235.275775191488, + "center": [ + 1726.770535370041, + 5235.043238679458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370041, + 5234.810702167429 + ], + [ + 1726.770535370041, + 5235.275775191488 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CF9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1726.4480701093594, + "min_y": 5230.761109733213, + "max_x": 1727.0930006307244, + "max_y": 5231.406040254577, + "center": [ + 1726.770535370042, + 5231.083574993895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370042, + 5231.083574993895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5232.224763538422, + "max_x": 1727.274302089567, + "max_y": 5232.224763538422, + "center": [ + 1726.7705353700405, + 5232.224763538422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.266768650514, + 5232.224763538422 + ], + [ + 1727.274302089567, + 5232.224763538422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5229.942386449368, + "max_x": 1727.274302089567, + "max_y": 5229.942386449368, + "center": [ + 1726.7705353700405, + 5229.942386449368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.266768650514, + 5229.942386449368 + ], + [ + 1727.274302089567, + 5229.942386449368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554CFC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1725.706310938164, + "min_y": 5238.237897821421, + "max_x": 1727.2737960629013, + "max_y": 5239.544135425369, + "center": [ + 1726.4900535005327, + 5238.8910166233945 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554CFD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1724.147757443016, + "min_y": 5235.27577519149, + "max_x": 1729.393313297066, + "max_y": 5240.521331045539, + "center": [ + 1726.770535370041, + 5237.898553118514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370041, + 5237.898553118514 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554CFE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1724.6203418782409, + "min_y": 5230.289004674579, + "max_x": 1728.920728861841, + "max_y": 5234.589391658178, + "center": [ + 1726.770535370041, + 5232.439198166378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.770535370041, + 5232.439198166378 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554CFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.893851375848, + "min_y": 5234.810702167429, + "max_x": 1727.647219364236, + "max_y": 5234.810702167429, + "center": [ + 1726.7705353700421, + 5234.810702167429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.893851375848, + 5234.810702167429 + ], + [ + 1727.647219364236, + 5234.810702167429 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.893851375848, + "min_y": 5233.994401298026, + "max_x": 1725.893851375848, + "max_y": 5234.810702167429, + "center": [ + 1725.893851375848, + 5234.402551732727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.893851375848, + 5234.810702167429 + ], + [ + 1725.893851375848, + 5233.994401298026 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.893851375848, + "min_y": 5233.994401298026, + "max_x": 1727.647219364236, + "max_y": 5233.994401298026, + "center": [ + 1726.7705353700421, + 5233.994401298026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.647219364236, + 5233.994401298026 + ], + [ + 1725.893851375848, + 5233.994401298026 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.647219364236, + "min_y": 5233.994401298026, + "max_x": 1727.647219364236, + "max_y": 5234.810702167429, + "center": [ + 1727.647219364236, + 5234.402551732727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.647219364236, + 5233.994401298026 + ], + [ + 1727.647219364236, + 5234.810702167429 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5230.242199191735, + "max_x": 1726.604884423708, + "max_y": 5230.80690983829, + "center": [ + 1726.435826537111, + 5230.524554515013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.604884423708, + 5230.80690983829 + ], + [ + 1726.266768650514, + 5230.242199191735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5230.242199191735, + "max_x": 1727.274302089567, + "max_y": 5230.242199191735, + "center": [ + 1726.7705353700405, + 5230.242199191735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.266768650514, + 5230.242199191735 + ], + [ + 1727.274302089567, + 5230.242199191735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.936186316371, + "min_y": 5230.242199191735, + "max_x": 1727.274302089567, + "max_y": 5230.80690983829, + "center": [ + 1727.105244202969, + 5230.524554515013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.274302089567, + 5230.242199191735 + ], + [ + 1726.936186316371, + 5230.80690983829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5231.360240149506, + "max_x": 1726.604884423711, + "max_y": 5231.924950796055, + "center": [ + 1726.4358265371125, + 5231.64259547278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.604884423711, + 5231.360240149506 + ], + [ + 1726.266768650514, + 5231.924950796055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.266768650514, + "min_y": 5231.924950796055, + "max_x": 1727.274302089567, + "max_y": 5231.924950796055, + "center": [ + 1726.7705353700405, + 5231.924950796055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.266768650514, + 5231.924950796055 + ], + [ + 1727.274302089567, + 5231.924950796055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.936186316368, + "min_y": 5231.360240149506, + "max_x": 1727.274302089567, + "max_y": 5231.924950796055, + "center": [ + 1727.1052442029677, + 5231.64259547278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.274302089567, + 5231.924950796055 + ], + [ + 1726.936186316368, + 5231.360240149506 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D09", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1724.578471370041, + "min_y": 5236.427576959747, + "max_x": 1728.6104713700408, + "max_y": 5237.547576959747, + "center": [ + 1726.594471370041, + 5236.9875769597475 + ] + }, + "raw_value": "10102C", + "clean_value": "10102C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D0A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.529571168248, + "min_y": 5378.097437345824, + "max_x": 1812.253699957902, + "max_y": 5378.097437345824, + "center": [ + 1809.391635563075, + 5378.097437345824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.253699957902, + 5378.097437345824 + ], + [ + 1806.529571168248, + 5378.097437345824 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D0B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1799.674893307364, + "min_y": 5245.452179863836, + "max_x": 1813.113469512085, + "max_y": 5246.5720612142295, + "center": [ + 1806.3941814097245, + 5246.012120539033 + ] + }, + "raw_value": "P-10115-200A-F2A-H50", + "clean_value": "P-10115-200A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D0C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1817.262203350038, + "min_y": 5210.157781997774, + "max_x": 1830.0288507445227, + "max_y": 5211.277663348167, + "center": [ + 1823.6455270472802, + 5210.717722672971 + ] + }, + "raw_value": "P-10119-32A-F1A-H50", + "clean_value": "P-10119-32A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D0D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1783.613104813935, + "min_y": 5296.449234159168, + "max_x": 1796.3797522084199, + "max_y": 5297.569115509561, + "center": [ + 1789.9964285111773, + 5297.009174834364 + ] + }, + "raw_value": "P-10113-25A-F1A-H50", + "clean_value": "P-10113-25A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1993.229610889526, + "min_y": 5360.373650114417, + "max_x": 1993.229610889526, + "max_y": 5361.500346858912, + "center": [ + 1993.229610889526, + 5360.936998486664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.229610889526, + 5361.500346858912 + ], + [ + 1993.229610889526, + 5360.373650114417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.092344656579, + "min_y": 5360.6361192424, + "max_x": 1994.092344656579, + "max_y": 5361.237877730935, + "center": [ + 1994.092344656579, + 5360.936998486668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.092344656579, + 5361.237877730935 + ], + [ + 1994.092344656579, + 5360.6361192424 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1993.229610889526, + "min_y": 5361.237877730935, + "max_x": 1994.092344656579, + "max_y": 5361.500346858912, + "center": [ + 1993.6609777730523, + 5361.369112294924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.092344656579, + 5361.237877730935 + ], + [ + 1993.229610889526, + 5361.500346858912 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1993.229610889526, + "min_y": 5360.373650114417, + "max_x": 1994.092344656579, + "max_y": 5360.6361192424, + "center": [ + 1993.6609777730523, + 5360.504884678408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.092344656579, + 5360.6361192424 + ], + [ + 1993.229610889526, + 5360.373650114417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D12", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1988.52952922711, + "min_y": 5360.930900105412, + "max_x": 1993.233748957255, + "max_y": 5360.932868382729, + "center": [ + 1990.8816390921825, + 5360.93188424407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.233748957255, + 5360.930900105412 + ], + [ + 1988.52952922711, + 5360.932868382729 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.421113159903, + "min_y": 5223.522614220935, + "max_x": 1718.421113159903, + "max_y": 5224.574950351546, + "center": [ + 1718.421113159903, + 5224.048782286241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.421113159903, + 5223.522614220935 + ], + [ + 1718.421113159903, + 5224.574950351546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D14", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1718.4211131599047, + "min_y": 5224.256947125685, + "max_x": 1719.0571196116273, + "max_y": 5224.892953577408, + "center": [ + 1718.739116385766, + 5224.574950351546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.739116385766, + 5224.574950351546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.427153239141, + "min_y": 5220.607934300434, + "max_x": 1718.427153239141, + "max_y": 5221.237954754794, + "center": [ + 1718.427153239141, + 5220.922944527614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.427153239141, + 5220.607934300434 + ], + [ + 1718.427153239141, + 5221.237954754794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D16", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1718.1043655131978, + "min_y": 5222.057496761926, + "max_x": 1718.7499409650843, + "max_y": 5222.703072213812, + "center": [ + 1718.427153239141, + 5222.380284487869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.427153239141, + 5222.380284487869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5223.522614220935, + "max_x": 1718.931423725388, + "max_y": 5223.522614220935, + "center": [ + 1718.4271532391435, + 5223.522614220935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5223.522614220935 + ], + [ + 1718.931423725388, + 5223.522614220935 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5221.237954754794, + "max_x": 1718.931423725388, + "max_y": 5221.237954754794, + "center": [ + 1718.4271532391435, + 5221.237954754794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5221.237954754794 + ], + [ + 1718.931423725388, + 5221.237954754794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5221.538067309907, + "max_x": 1718.261336641865, + "max_y": 5222.103342667101, + "center": [ + 1718.092109697382, + 5221.820704988504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.261336641865, + 5222.103342667101 + ], + [ + 1717.922882752899, + 5221.538067309907 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5221.538067309907, + "max_x": 1718.931423725388, + "max_y": 5221.538067309907, + "center": [ + 1718.4271532391435, + 5221.538067309907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5221.538067309907 + ], + [ + 1718.931423725388, + 5221.538067309907 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.592969836421, + "min_y": 5221.538067309907, + "max_x": 1718.931423725388, + "max_y": 5222.103342667101, + "center": [ + 1718.7621967809046, + 5221.820704988504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.931423725388, + 5221.538067309907 + ], + [ + 1718.592969836421, + 5222.103342667101 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5222.657226308628, + "max_x": 1718.261336641865, + "max_y": 5223.22250166583, + "center": [ + 1718.092109697382, + 5222.939863987229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.261336641865, + 5222.657226308628 + ], + [ + 1717.922882752899, + 5223.22250166583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5223.22250166583, + "max_x": 1718.931423725388, + "max_y": 5223.22250166583, + "center": [ + 1718.4271532391435, + 5223.22250166583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5223.22250166583 + ], + [ + 1718.931423725388, + 5223.22250166583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.592969836421, + "min_y": 5222.657226308628, + "max_x": 1718.931423725388, + "max_y": 5223.22250166583, + "center": [ + 1718.7621967809046, + 5222.939863987229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.931423725388, + 5223.22250166583 + ], + [ + 1718.592969836421, + 5222.657226308628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1715.948903394503, + "min_y": 5220.607934300434, + "max_x": 1717.601069957596, + "max_y": 5220.607934300434, + "center": [ + 1716.7749866760496, + 5220.607934300434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601069957596, + 5220.607934300434 + ], + [ + 1715.948903394503, + 5220.607934300434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601069957596, + "min_y": 5220.607934300434, + "max_x": 1719.253236520688, + "max_y": 5220.607934300434, + "center": [ + 1718.4271532391422, + 5220.607934300434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601069957596, + 5220.607934300434 + ], + [ + 1719.253236520688, + 5220.607934300434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5238.700324504579, + "max_x": 1713.974554935083, + "max_y": 5240.482865900568, + "center": [ + 1713.974554935083, + 5239.591595202573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5238.700324504579 + ], + [ + 1713.974554935083, + 5240.482865900568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5242.767525366714, + "max_x": 1713.974554935085, + "max_y": 5243.536213803597, + "center": [ + 1713.9745549350841, + 5243.1518695851555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935085, + 5242.767525366714 + ], + [ + 1713.974554935083, + 5243.536213803597 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5244.107624412173, + "max_x": 1713.974554935083, + "max_y": 5244.857354240401, + "center": [ + 1713.974554935083, + 5244.482489326287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5244.107624412173 + ], + [ + 1713.974554935083, + 5244.857354240401 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D24", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1713.6517672091397, + "min_y": 5241.302407907691, + "max_x": 1714.2973426610263, + "max_y": 5241.947983359578, + "center": [ + 1713.974554935083, + 5241.625195633635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5241.625195633635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5242.767525366714, + "max_x": 1714.478825421332, + "max_y": 5242.767525366714, + "center": [ + 1713.974554935085, + 5242.767525366714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5242.767525366714 + ], + [ + 1714.478825421332, + 5242.767525366714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5240.482865900568, + "max_x": 1714.478825421332, + "max_y": 5240.482865900568, + "center": [ + 1713.974554935085, + 5240.482865900568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5240.482865900568 + ], + [ + 1714.478825421332, + 5240.482865900568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D27", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1712.909028983707, + "min_y": 5248.207880243291, + "max_x": 1714.4784311030126, + "max_y": 5249.515715342712, + "center": [ + 1713.6937300433597, + 5248.861797793001 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D28", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1711.0682547141466, + "min_y": 5244.857354240405, + "max_x": 1716.8808551560194, + "max_y": 5250.6699546822765, + "center": [ + 1713.974554935083, + 5247.763654461341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5247.763654461341 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D29", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.469419490823, + "min_y": 5240.942436167175, + "max_x": 1715.479690379343, + "max_y": 5243.952707055696, + "center": [ + 1713.974554935083, + 5242.447571611436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5242.447571611436 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5244.107624412173, + "max_x": 1714.588233731022, + "max_y": 5244.107624412173, + "center": [ + 1713.9745549350855, + 5244.107624412173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.360876139149, + 5244.107624412173 + ], + [ + 1714.588233731022, + 5244.107624412173 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.588233731022, + "min_y": 5243.536213803597, + "max_x": 1714.588233731022, + "max_y": 5244.107624412173, + "center": [ + 1714.588233731022, + 5243.821919107885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.588233731022, + 5244.107624412173 + ], + [ + 1714.588233731022, + 5243.536213803597 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5243.536213803597, + "max_x": 1714.588233731022, + "max_y": 5243.536213803597, + "center": [ + 1713.9745549350855, + 5243.536213803597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.588233731022, + 5243.536213803597 + ], + [ + 1713.360876139149, + 5243.536213803597 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5243.536213803597, + "max_x": 1713.360876139149, + "max_y": 5244.107624412173, + "center": [ + 1713.360876139149, + 5243.821919107885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.360876139149, + 5243.536213803597 + ], + [ + 1713.360876139149, + 5244.107624412173 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5240.782978455673, + "max_x": 1713.808738337804, + "max_y": 5241.348253812875, + "center": [ + 1713.6395113933208, + 5241.065616134274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.808738337804, + 5241.348253812875 + ], + [ + 1713.470284448838, + 5240.782978455673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5240.782978455673, + "max_x": 1714.478825421332, + "max_y": 5240.782978455673, + "center": [ + 1713.974554935085, + 5240.782978455673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5240.782978455673 + ], + [ + 1714.478825421332, + 5240.782978455673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.140371532361, + "min_y": 5240.782978455673, + "max_x": 1714.478825421332, + "max_y": 5241.348253812875, + "center": [ + 1714.3095984768465, + 5241.065616134274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.478825421332, + 5240.782978455673 + ], + [ + 1714.140371532361, + 5241.348253812875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5241.902137454402, + "max_x": 1713.808738337808, + "max_y": 5242.467412811596, + "center": [ + 1713.6395113933231, + 5242.184775132999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.808738337808, + 5241.902137454402 + ], + [ + 1713.470284448838, + 5242.467412811596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5242.467412811596, + "max_x": 1714.478825421332, + "max_y": 5242.467412811596, + "center": [ + 1713.974554935085, + 5242.467412811596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5242.467412811596 + ], + [ + 1714.478825421332, + 5242.467412811596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.140371532361, + "min_y": 5241.902137454402, + "max_x": 1714.478825421332, + "max_y": 5242.467412811596, + "center": [ + 1714.3095984768465, + 5242.184775132999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.478825421332, + 5242.467412811596 + ], + [ + 1714.140371532361, + 5241.902137454402 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D34", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1711.692134935083, + "min_y": 5246.130276883511, + "max_x": 1715.724134935083, + "max_y": 5247.250276883511, + "center": [ + 1713.7081349350829, + 5246.690276883512 + ] + }, + "raw_value": "10102A", + "clean_value": "10102A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.421113159903, + "min_y": 5242.83854143677, + "max_x": 1718.421113159903, + "max_y": 5243.890877567381, + "center": [ + 1718.421113159903, + 5243.364709502075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.421113159903, + 5242.83854143677 + ], + [ + 1718.421113159903, + 5243.890877567381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D36", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1718.4211131599047, + "min_y": 5243.572874341519, + "max_x": 1719.0571196116273, + "max_y": 5244.208880793242, + "center": [ + 1718.739116385766, + 5243.890877567381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.739116385766, + 5243.890877567381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.427153239141, + "min_y": 5239.923861516269, + "max_x": 1718.427153239141, + "max_y": 5240.55388197063, + "center": [ + 1718.427153239141, + 5240.23887174345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.427153239141, + 5239.923861516269 + ], + [ + 1718.427153239141, + 5240.55388197063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D38", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1718.1043655131978, + "min_y": 5241.37342397776, + "max_x": 1718.7499409650843, + "max_y": 5242.018999429646, + "center": [ + 1718.427153239141, + 5241.696211703703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.427153239141, + 5241.696211703703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5242.83854143677, + "max_x": 1718.931423725388, + "max_y": 5242.83854143677, + "center": [ + 1718.4271532391435, + 5242.83854143677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5242.83854143677 + ], + [ + 1718.931423725388, + 5242.83854143677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5240.55388197063, + "max_x": 1718.931423725388, + "max_y": 5240.55388197063, + "center": [ + 1718.4271532391435, + 5240.55388197063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5240.55388197063 + ], + [ + 1718.931423725388, + 5240.55388197063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5240.853994525742, + "max_x": 1718.261336641865, + "max_y": 5241.419269882936, + "center": [ + 1718.092109697382, + 5241.136632204339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.261336641865, + 5241.419269882936 + ], + [ + 1717.922882752899, + 5240.853994525742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5240.853994525742, + "max_x": 1718.931423725388, + "max_y": 5240.853994525742, + "center": [ + 1718.4271532391435, + 5240.853994525742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5240.853994525742 + ], + [ + 1718.931423725388, + 5240.853994525742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.592969836421, + "min_y": 5240.853994525742, + "max_x": 1718.931423725388, + "max_y": 5241.419269882936, + "center": [ + 1718.7621967809046, + 5241.136632204339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.931423725388, + 5240.853994525742 + ], + [ + 1718.592969836421, + 5241.419269882936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5241.973153524462, + "max_x": 1718.261336641865, + "max_y": 5242.538428881665, + "center": [ + 1718.092109697382, + 5242.255791203063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.261336641865, + 5241.973153524462 + ], + [ + 1717.922882752899, + 5242.538428881665 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.922882752899, + "min_y": 5242.538428881665, + "max_x": 1718.931423725388, + "max_y": 5242.538428881665, + "center": [ + 1718.4271532391435, + 5242.538428881665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.922882752899, + 5242.538428881665 + ], + [ + 1718.931423725388, + 5242.538428881665 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.592969836421, + "min_y": 5241.973153524462, + "max_x": 1718.931423725388, + "max_y": 5242.538428881665, + "center": [ + 1718.7621967809046, + 5242.255791203063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.931423725388, + 5242.538428881665 + ], + [ + 1718.592969836421, + 5241.973153524462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1715.948903394503, + "min_y": 5239.923861516269, + "max_x": 1717.601069957596, + "max_y": 5239.923861516269, + "center": [ + 1716.7749866760496, + 5239.923861516269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601069957596, + 5239.923861516269 + ], + [ + 1715.948903394503, + 5239.923861516269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.601069957596, + "min_y": 5239.923861516269, + "max_x": 1719.253236520688, + "max_y": 5239.923861516269, + "center": [ + 1718.4271532391422, + 5239.923861516269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.601069957596, + 5239.923861516269 + ], + [ + 1719.253236520688, + 5239.923861516269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D43", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1803.226176469738, + "min_y": 5266.076036869283, + "max_x": 1808.992445335013, + "max_y": 5266.076036869288, + "center": [ + 1806.1093109023755, + 5266.076036869285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1808.992445335013, + 5266.076036869283 + ], + [ + 1803.226176469738, + 5266.076036869288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D44", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.8809283588, + "min_y": 5387.427248998392, + "max_x": 1869.605057148454, + "max_y": 5387.427248998401, + "center": [ + 1866.742992753627, + 5387.427248998397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.605057148454, + 5387.427248998392 + ], + [ + 1863.8809283588, + 5387.427248998401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D45", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1928.525660443036, + "min_y": 5336.214885414745, + "max_x": 1933.915393255327, + "max_y": 5336.214885414745, + "center": [ + 1931.2205268491816, + 5336.214885414745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.915393255327, + 5336.214885414745 + ], + [ + 1928.525660443036, + 5336.214885414745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5280.418684278924, + "max_x": 1830.281897358037, + "max_y": 5281.712286444605, + "center": [ + 1830.281897358037, + 5281.065485361764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5281.712286444605 + ], + [ + 1830.281897358037, + 5280.418684278924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5280.441747277304, + "max_x": 1833.107819473115, + "max_y": 5281.689223446227, + "center": [ + 1833.107819473115, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5280.441747277304 + ], + [ + 1833.107819473115, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5280.441747277304, + "max_x": 1830.281897358037, + "max_y": 5281.689223446227, + "center": [ + 1830.281897358037, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5280.441747277304 + ], + [ + 1830.281897358037, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D49", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1831.2990474746885, + "min_y": 5280.6682904860645, + "max_x": 1832.0975673300413, + "max_y": 5281.466810341417, + "center": [ + 1831.698307402365, + 5281.067550413741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.698307402365, + 5281.067550413741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5280.434748919798, + "max_x": 1830.65311010071, + "max_y": 5281.696221803735, + "center": [ + 1830.65311010071, + 5281.065485361767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5281.696221803735 + ], + [ + 1830.65311010071, + 5280.434748919798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5280.434748919798, + "max_x": 1830.281897358037, + "max_y": 5281.696221803735, + "center": [ + 1830.281897358037, + 5281.065485361767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5281.696221803735 + ], + [ + 1830.281897358037, + 5280.434748919798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5280.436813971761, + "max_x": 1833.107819473115, + "max_y": 5281.698286855704, + "center": [ + 1833.107819473115, + 5281.0675504137325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5281.698286855704 + ], + [ + 1833.107819473115, + 5280.436813971761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5280.436813971761, + "max_x": 1833.107819473115, + "max_y": 5281.698286855704, + "center": [ + 1833.107819473115, + 5281.0675504137325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5281.698286855704 + ], + [ + 1833.107819473115, + 5280.436813971761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5281.270585857591, + "max_x": 1832.736606730438, + "max_y": 5281.689223446227, + "center": [ + 1832.3870088676772, + 5281.479904651909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.037411004916, + 5281.270585857591 + ], + [ + 1832.736606730438, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.736606730438, + "min_y": 5280.441747277304, + "max_x": 1832.736606730438, + "max_y": 5281.689223446227, + "center": [ + 1832.736606730438, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.736606730438, + 5281.689223446227 + ], + [ + 1832.736606730438, + 5280.441747277304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5280.441747277304, + "max_x": 1832.736606730438, + "max_y": 5280.860384865943, + "center": [ + 1832.3870088676772, + 5280.651066071623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.736606730438, + 5280.441747277304 + ], + [ + 1832.037411004916, + 5280.860384865943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5281.269602618428, + "max_x": 1831.353948002276, + "max_y": 5281.689223446227, + "center": [ + 1831.003529051493, + 5281.479413032327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.353948002276, + 5281.269602618428 + ], + [ + 1830.65311010071, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5280.441747277304, + "max_x": 1830.65311010071, + "max_y": 5281.689223446227, + "center": [ + 1830.65311010071, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5281.689223446227 + ], + [ + 1830.65311010071, + 5280.441747277304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5280.441747277304, + "max_x": 1831.355754813028, + "max_y": 5280.862449917919, + "center": [ + 1831.004432456869, + 5280.652098597611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5280.441747277304 + ], + [ + 1831.355754813028, + 5280.862449917919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D54", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1918.626642037933, + "min_y": 5336.343846295231, + "max_x": 1920.184902814219, + "max_y": 5336.343846295232, + "center": [ + 1919.405772426076, + 5336.343846295231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.626642037933, + 5336.343846295232 + ], + [ + 1920.184902814219, + 5336.343846295231 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D55", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1850.983443096257, + "min_y": 5331.320711253045, + "max_x": 1876.358922514746, + "max_y": 5331.320711253046, + "center": [ + 1863.6711828055013, + 5331.320711253045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.983443096257, + 5331.320711253046 + ], + [ + 1876.358922514746, + 5331.320711253045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D56", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1790.749606315565, + "min_y": 5240.368817677524, + "max_x": 1792.7653927462732, + "max_y": 5241.488699027917, + "center": [ + 1791.7574995309192, + 5240.92875835272 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D57", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1850.131917877486, + "min_y": 5377.002380799901, + "max_x": 1854.685885054444, + "max_y": 5377.002380799903, + "center": [ + 1852.408901465965, + 5377.002380799902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1850.131917877486, + 5377.002380799901 + ], + [ + 1854.685885054444, + 5377.002380799903 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1793.701738197022, + "min_y": 5253.715553772616, + "max_x": 1793.701738197022, + "max_y": 5259.552478647442, + "center": [ + 1793.701738197022, + 5256.634016210029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5259.552478647442 + ], + [ + 1793.701738197022, + 5253.715553772616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5258.081630404285, + "max_x": 1793.701738197022, + "max_y": 5259.062195899724, + "center": [ + 1793.2114554493025, + 5258.5719131520045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5258.081630404285 + ], + [ + 1792.721172701583, + 5259.062195899724 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5257.388265893061, + "max_x": 1793.701738197022, + "max_y": 5258.368831388501, + "center": [ + 1793.2114554493025, + 5257.878548640781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5257.388265893061 + ], + [ + 1792.721172701583, + 5258.368831388501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5256.694901381838, + "max_x": 1793.701738197022, + "max_y": 5257.675466877278, + "center": [ + 1793.2114554493025, + 5257.1851841295575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5256.694901381838 + ], + [ + 1792.721172701583, + 5257.675466877278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5256.001536870616, + "max_x": 1793.701738197022, + "max_y": 5256.982102366055, + "center": [ + 1793.2114554493025, + 5256.491819618335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5256.001536870616 + ], + [ + 1792.721172701583, + 5256.982102366055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5255.308172359392, + "max_x": 1793.701738197022, + "max_y": 5256.288737854832, + "center": [ + 1793.2114554493025, + 5255.798455107112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5255.308172359392 + ], + [ + 1792.721172701583, + 5256.288737854832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.721172701583, + "min_y": 5254.61480784817, + "max_x": 1793.701738197022, + "max_y": 5255.595373343609, + "center": [ + 1793.2114554493025, + 5255.105090595889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.701738197022, + 5254.61480784817 + ], + [ + 1792.721172701583, + 5255.595373343609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D5F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1795.802425737971, + "min_y": 5254.138491422992, + "max_x": 1799.3860460592298, + "max_y": 5255.63166655685, + "center": [ + 1797.5942358986003, + 5254.885078989921 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.22080613432, + "min_y": 5301.085324540667, + "max_x": 1826.22080613432, + "max_y": 5306.922249415493, + "center": [ + 1826.22080613432, + 5304.00378697808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5306.922249415493 + ], + [ + 1826.22080613432, + 5301.085324540667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5305.451401172334, + "max_x": 1826.22080613432, + "max_y": 5306.431966667774, + "center": [ + 1825.7305233866, + 5305.941683920054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5305.451401172334 + ], + [ + 1825.24024063888, + 5306.431966667774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5304.758036661112, + "max_x": 1826.22080613432, + "max_y": 5305.738602156552, + "center": [ + 1825.7305233866, + 5305.248319408832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5304.758036661112 + ], + [ + 1825.24024063888, + 5305.738602156552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5304.064672149888, + "max_x": 1826.22080613432, + "max_y": 5305.045237645328, + "center": [ + 1825.7305233866, + 5304.554954897608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5304.064672149888 + ], + [ + 1825.24024063888, + 5305.045237645328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5303.371307638666, + "max_x": 1826.22080613432, + "max_y": 5304.351873134105, + "center": [ + 1825.7305233866, + 5303.861590386385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5303.371307638666 + ], + [ + 1825.24024063888, + 5304.351873134105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5302.677943127443, + "max_x": 1826.22080613432, + "max_y": 5303.658508622883, + "center": [ + 1825.7305233866, + 5303.1682258751625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5302.677943127443 + ], + [ + 1825.24024063888, + 5303.658508622883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5301.984578616221, + "max_x": 1826.22080613432, + "max_y": 5302.96514411166, + "center": [ + 1825.7305233866, + 5302.47486136394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.22080613432, + 5301.984578616221 + ], + [ + 1825.24024063888, + 5302.96514411166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1828.321493675269, + "min_y": 5301.508262191042, + "max_x": 1831.905113996528, + "max_y": 5303.0014373249005, + "center": [ + 1830.1133038358985, + 5302.254849757972 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D68", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1925.585197867456, + "min_y": 5325.02112598733, + "max_x": 1925.957161060647, + "max_y": 5325.02112598733, + "center": [ + 1925.7711794640513, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.585197867456, + 5325.02112598733 + ], + [ + 1925.957161060647, + 5325.02112598733 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D69", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1943.91967346664, + "min_y": 5332.630033915521, + "max_x": 1943.91967346664, + "max_y": 5336.21488541475, + "center": [ + 1943.91967346664, + 5334.422459665136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.91967346664, + 5332.630033915521 + ], + [ + 1943.91967346664, + 5336.21488541475 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D6A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1945.448633235468, + "min_y": 5325.022967827426, + "max_x": 1946.554144914732, + "max_y": 5325.023594736951, + "center": [ + 1946.0013890751, + 5325.023281282189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1945.448633235468, + 5325.023594736951 + ], + [ + 1946.554144914732, + 5325.022967827426 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.926170822848, + "min_y": 5207.687770065223, + "max_x": 1824.926170822848, + "max_y": 5208.825894757724, + "center": [ + 1824.926170822848, + 5208.256832411474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.926170822848, + 5208.825894757724 + ], + [ + 1824.926170822848, + 5207.687770065223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D6C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1806.529571168248, + "min_y": 5351.357072061774, + "max_x": 1812.253699957902, + "max_y": 5351.357072061774, + "center": [ + 1809.391635563075, + 5351.357072061774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1806.529571168248, + 5351.357072061774 + ], + [ + 1812.253699957902, + 5351.357072061774 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D6D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1864.313178396761, + "min_y": 5291.88180990884, + "max_x": 1866.3289648274692, + "max_y": 5293.001691259234, + "center": [ + 1865.3210716121152, + 5292.441750584037 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554D6E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1953.7154424362595, + "min_y": 5409.363746850473, + "max_x": 1954.5139622916124, + "max_y": 5410.1622667058255, + "center": [ + 1954.114702363936, + 5409.763006778149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.114702363936, + 5409.763006778149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.701741306399, + "min_y": 5409.139268693688, + "max_x": 1952.701741306399, + "max_y": 5410.386744862613, + "center": [ + 1952.701741306399, + 5409.76300677815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.701741306399, + 5409.139268693688 + ], + [ + 1952.701741306399, + 5410.386744862613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.527663421477, + "min_y": 5409.139268693688, + "max_x": 1955.527663421477, + "max_y": 5410.386744862613, + "center": [ + 1955.527663421477, + 5409.76300677815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.527663421477, + 5409.139268693688 + ], + [ + 1955.527663421477, + 5410.386744862613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5409.139268693688, + "max_x": 1953.772149774598, + "max_y": 5409.557906282326, + "center": [ + 1953.422551911835, + 5409.348587488007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.772149774598, + 5409.557906282326 + ], + [ + 1953.072954049072, + 5409.139268693688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5409.139268693688, + "max_x": 1953.072954049072, + "max_y": 5410.386744862613, + "center": [ + 1953.072954049072, + 5409.76300677815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.072954049072, + 5409.139268693688 + ], + [ + 1953.072954049072, + 5410.386744862613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5409.968107273972, + "max_x": 1953.772149774598, + "max_y": 5410.386744862613, + "center": [ + 1953.422551911835, + 5410.177426068292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.072954049072, + 5410.386744862613 + ], + [ + 1953.772149774598, + 5409.968107273972 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.457254953273, + "min_y": 5409.139268693688, + "max_x": 1955.156450678802, + "max_y": 5409.557906282328, + "center": [ + 1954.8068528160375, + 5409.348587488008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.457254953273, + 5409.557906282328 + ], + [ + 1955.156450678802, + 5409.139268693688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.156450678802, + "min_y": 5409.139268693688, + "max_x": 1955.156450678802, + "max_y": 5410.386744862613, + "center": [ + 1955.156450678802, + 5409.76300677815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.156450678802, + 5409.139268693688 + ], + [ + 1955.156450678802, + 5410.386744862613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.457254953273, + "min_y": 5409.968107273972, + "max_x": 1955.156450678802, + "max_y": 5410.386744862613, + "center": [ + 1954.8068528160375, + 5410.177426068292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.156450678802, + 5410.386744862613 + ], + [ + 1954.457254953273, + 5409.968107273972 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D77", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1953.7154424362595, + "min_y": 5426.526868581511, + "max_x": 1954.5139622916124, + "max_y": 5427.325388436863, + "center": [ + 1954.114702363936, + 5426.926128509187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.114702363936, + 5426.926128509187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.701741306399, + "min_y": 5426.302390424725, + "max_x": 1952.701741306399, + "max_y": 5427.549866593651, + "center": [ + 1952.701741306399, + 5426.926128509188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.701741306399, + 5426.302390424725 + ], + [ + 1952.701741306399, + 5427.549866593651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.527663421477, + "min_y": 5426.302390424725, + "max_x": 1955.527663421477, + "max_y": 5427.549866593651, + "center": [ + 1955.527663421477, + 5426.926128509188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.527663421477, + 5426.302390424725 + ], + [ + 1955.527663421477, + 5427.549866593651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5426.302390424725, + "max_x": 1953.772149774598, + "max_y": 5426.721028013363, + "center": [ + 1953.422551911835, + 5426.511709219044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.772149774598, + 5426.721028013363 + ], + [ + 1953.072954049072, + 5426.302390424725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5426.302390424725, + "max_x": 1953.072954049072, + "max_y": 5427.549866593651, + "center": [ + 1953.072954049072, + 5426.926128509188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.072954049072, + 5426.302390424725 + ], + [ + 1953.072954049072, + 5427.549866593651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.072954049072, + "min_y": 5427.13122900501, + "max_x": 1953.772149774598, + "max_y": 5427.549866593651, + "center": [ + 1953.422551911835, + 5427.340547799331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.072954049072, + 5427.549866593651 + ], + [ + 1953.772149774598, + 5427.13122900501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.457254953273, + "min_y": 5426.302390424725, + "max_x": 1955.156450678802, + "max_y": 5426.721028013366, + "center": [ + 1954.8068528160375, + 5426.511709219045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.457254953273, + 5426.721028013366 + ], + [ + 1955.156450678802, + 5426.302390424725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.156450678802, + "min_y": 5426.302390424725, + "max_x": 1955.156450678802, + "max_y": 5427.549866593651, + "center": [ + 1955.156450678802, + 5426.926128509188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.156450678802, + 5426.302390424725 + ], + [ + 1955.156450678802, + 5427.549866593651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.457254953273, + "min_y": 5427.13122900501, + "max_x": 1955.156450678802, + "max_y": 5427.549866593651, + "center": [ + 1954.8068528160375, + 5427.340547799331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.156450678802, + 5427.549866593651 + ], + [ + 1954.457254953273, + 5427.13122900501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D80", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1955.527663421477, + "min_y": 5426.926128509188, + "max_x": 1975.950099173282, + "max_y": 5426.972786531625, + "center": [ + 1965.7388812973795, + 5426.949457520406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.527663421477, + 5426.926128509188 + ], + [ + 1975.950099173282, + 5426.972786531625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D81", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1955.527663421477, + "min_y": 5409.763006777796, + "max_x": 1975.9500991734, + "max_y": 5409.763006778104, + "center": [ + 1965.7388812974386, + 5409.76300677795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.527663421477, + 5409.763006778104 + ], + [ + 1975.9500991734, + 5409.763006777796 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.383337276877, + "max_x": 1716.969073299156, + "max_y": 5218.94138602655, + "center": [ + 1716.969073299156, + 5217.662361651714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5218.94138602655 + ], + [ + 1716.969073299156, + 5216.383337276877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.383337276877, + "max_x": 1718.233066616041, + "max_y": 5216.383337276877, + "center": [ + 1717.6010699575986, + 5216.383337276877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5216.383337276877 + ], + [ + 1718.233066616041, + 5216.383337276877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.233066616041, + "min_y": 5216.383337276877, + "max_x": 1718.233066616041, + "max_y": 5218.94138602655, + "center": [ + 1718.233066616041, + 5217.662361651714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5216.383337276877 + ], + [ + 1718.233066616041, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5218.391462732162, + "max_x": 1717.51899659354, + "max_y": 5218.94138602655, + "center": [ + 1717.244034946348, + 5218.666424379357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5218.391462732162 + ], + [ + 1717.51899659354, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5217.838125647421, + "max_x": 1718.072333678283, + "max_y": 5218.94138602655, + "center": [ + 1717.5207034887194, + 5218.389755836986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5217.838125647421 + ], + [ + 1718.072333678283, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5217.28478856267, + "max_x": 1718.233066616041, + "max_y": 5218.54878187956, + "center": [ + 1717.6010699575986, + 5217.916785221115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5217.28478856267 + ], + [ + 1718.233066616041, + 5218.54878187956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.731451477929, + "max_x": 1718.233066616041, + "max_y": 5217.995444794816, + "center": [ + 1717.6010699575986, + 5217.363448136372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.969073299156, + 5216.731451477929 + ], + [ + 1718.233066616041, + 5217.995444794816 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.174296182842, + "min_y": 5216.383337276877, + "max_x": 1718.233066616041, + "max_y": 5217.442107710072, + "center": [ + 1717.7036813994414, + 5216.912722493475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.174296182842, + 5216.383337276877 + ], + [ + 1718.233066616041, + 5217.442107710072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.727633267586, + "min_y": 5216.383337276877, + "max_x": 1718.233066616041, + "max_y": 5216.888770625327, + "center": [ + 1717.9803499418135, + 5216.636053951102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.727633267586, + 5216.383337276877 + ], + [ + 1718.233066616041, + 5216.888770625327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.383337276877, + "max_x": 1717.285140435518, + "max_y": 5216.69940441324, + "center": [ + 1717.127106867337, + 5216.541370845058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.285140435518, + 5216.383337276877 + ], + [ + 1716.969073299156, + 5216.69940441324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.383337276877, + "max_x": 1717.838477520259, + "max_y": 5217.252741497983, + "center": [ + 1717.4037754097076, + 5216.81803938743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.838477520259, + 5216.383337276877 + ], + [ + 1716.969073299156, + 5217.252741497983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5216.542085265836, + "max_x": 1718.233066616041, + "max_y": 5217.806078582726, + "center": [ + 1717.6010699575986, + 5217.1740819242805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5216.542085265836 + ], + [ + 1716.969073299156, + 5217.806078582726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5217.095422350582, + "max_x": 1718.233066616041, + "max_y": 5218.359415667467, + "center": [ + 1717.6010699575986, + 5217.727419009025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5217.095422350582 + ], + [ + 1716.969073299156, + 5218.359415667467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1716.969073299156, + "min_y": 5217.648759435327, + "max_x": 1718.233066616041, + "max_y": 5218.912752752208, + "center": [ + 1717.6010699575986, + 5218.280756093767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5217.648759435327 + ], + [ + 1716.969073299156, + 5218.912752752208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.493777109564, + "min_y": 5218.202096520069, + "max_x": 1718.233066616041, + "max_y": 5218.94138602655, + "center": [ + 1717.8634218628026, + 5218.57174127331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5218.202096520069 + ], + [ + 1717.493777109564, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.047114194305, + "min_y": 5218.755433604811, + "max_x": 1718.233066616041, + "max_y": 5218.94138602655, + "center": [ + 1718.140090405173, + 5218.8484098156805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.233066616041, + 5218.755433604811 + ], + [ + 1718.047114194305, + 5218.94138602655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1813.953656662065, + "min_y": 5253.288226429646, + "max_x": 1817.653593987348, + "max_y": 5259.083955998312, + "center": [ + 1815.8036253247064, + 5256.186091213979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.953656662065, + 5253.288226429646 + ], + [ + 1817.653593987348, + 5259.083955998312 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554D93", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1818.414299439888, + "min_y": 5265.595889659879, + "max_x": 1822.0419087005903, + "max_y": 5266.603558898963, + "center": [ + 1820.2281040702392, + 5266.09972427942 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D94", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1819.819173148005, + "min_y": 5267.412418701279, + "max_x": 1821.0283762349056, + "max_y": 5268.420087940363, + "center": [ + 1820.4237746914553, + 5267.916253320822 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D95", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1916.594011455876, + "min_y": 5368.030648007568, + "max_x": 1918.1614965806132, + "max_y": 5369.336885611516, + "center": [ + 1917.3777540182446, + 5368.683766809541 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D96", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1939.837079615757, + "min_y": 5369.143986242855, + "max_x": 1941.4045647404942, + "max_y": 5370.450223846803, + "center": [ + 1940.6208221781255, + 5369.797105044829 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D97", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1933.788667148876, + "min_y": 5348.218308342858, + "max_x": 1935.3561522736131, + "max_y": 5349.524545946806, + "center": [ + 1934.5724097112445, + 5348.871427144832 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D98", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1877.12603123514, + "min_y": 5362.075841599695, + "max_x": 1879.8137464760844, + "max_y": 5363.569016733553, + "center": [ + 1878.4698888556122, + 5362.822429166625 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D99", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1882.608762283098, + "min_y": 5362.963687554938, + "max_x": 1885.2964775240423, + "max_y": 5364.456862688796, + "center": [ + 1883.9526199035702, + 5363.710275121866 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D9A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1799.43102693714, + "min_y": 5271.680368601433, + "max_x": 1800.0802086969, + "max_y": 5271.680368601433, + "center": [ + 1799.7556178170198, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5271.680368601433 + ], + [ + 1799.43102693714, + 5271.680368601433 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D9B", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1941.665528367244, + "min_y": 5344.104334093912, + "max_x": 1941.665528367244, + "max_y": 5351.63436564733, + "center": [ + 1941.665528367244, + 5347.869349870622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367244, + 5351.63436564733 + ], + [ + 1941.665528367244, + 5344.104334093912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554D9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5307.920523432396, + "max_x": 2038.671267902833, + "max_y": 5308.346531167951, + "center": [ + 2038.671267902833, + 5308.133527300173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5307.920523432396 + ], + [ + 2038.671267902833, + 5308.346531167951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5308.578088510945, + "max_x": 2038.671267902833, + "max_y": 5309.174745481287, + "center": [ + 2038.671267902833, + 5308.876416996116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5308.578088510945 + ], + [ + 2038.671267902833, + 5309.174745481287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554D9E", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2038.345026549369, + "min_y": 5308.346531167955, + "max_x": 2038.997509256297, + "max_y": 5308.346531167955, + "center": [ + 2038.671267902833, + 5308.346531167955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.345026549369, + 5308.346531167955 + ], + [ + 2038.997509256297, + 5308.346531167955 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554D9F", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2038.345026549369, + "min_y": 5308.578088510945, + "max_x": 2038.997509256297, + "max_y": 5308.578088510945, + "center": [ + 2038.671267902833, + 5308.578088510945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.345026549369, + 5308.578088510945 + ], + [ + 2038.997509256297, + 5308.578088510945 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5303.800362501565, + "max_x": 2043.979231794222, + "max_y": 5303.800362501565, + "center": [ + 2043.4746282539165, + 5303.800362501565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.970024713611, + 5303.800362501565 + ], + [ + 2043.979231794222, + 5303.800362501565 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5296.875152358863, + "max_x": 2043.979231794222, + "max_y": 5296.875152358863, + "center": [ + 2043.4746282539165, + 5296.875152358863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.970024713611, + 5296.875152358863 + ], + [ + 2043.979231794222, + 5296.875152358863 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5303.447224345281, + "max_x": 2043.979231794222, + "max_y": 5304.128316950079, + "center": [ + 2043.979231794222, + 5303.78777064768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5303.447224345281 + ], + [ + 2043.979231794222, + 5304.128316950079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5303.447224345281, + "max_x": 2043.979231794222, + "max_y": 5304.153500657843, + "center": [ + 2043.979231794222, + 5303.800362501563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5303.447224345281 + ], + [ + 2043.979231794222, + 5304.153500657843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2044.5326887341027, + "min_y": 5303.582375985341, + "max_x": 2044.9686617665454, + "max_y": 5304.018349017784, + "center": [ + 2044.750675250324, + 5303.800362501563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.750675250324, + 5303.800362501563 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5303.447224345281, + "max_x": 2043.979231794222, + "max_y": 5304.153500657843, + "center": [ + 2043.979231794222, + 5303.800362501563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5303.447224345281 + ], + [ + 2043.979231794222, + 5304.153500657843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.522118706426, + "min_y": 5303.447224345281, + "max_x": 2045.522118706426, + "max_y": 5304.153500657843, + "center": [ + 2045.522118706426, + 5303.800362501563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.522118706426, + 5303.447224345281 + ], + [ + 2045.522118706426, + 5304.153500657843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5303.912342541281, + "max_x": 2044.563649605132, + "max_y": 5304.140908803961, + "center": [ + 2044.372777406598, + 5304.026625672621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.563649605132, + 5303.912342541281 + ], + [ + 2044.181905208064, + 5304.140908803961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5303.459816199162, + "max_x": 2044.181905208064, + "max_y": 5304.140908803961, + "center": [ + 2044.181905208064, + 5303.800362501561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.181905208064, + 5304.140908803961 + ], + [ + 2044.181905208064, + 5303.459816199162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5303.459816199162, + "max_x": 2044.563649605132, + "max_y": 5303.688382461842, + "center": [ + 2044.372777406598, + 5303.574099330502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.181905208064, + 5303.459816199162 + ], + [ + 2044.563649605132, + 5303.688382461842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.937700895511, + "min_y": 5303.912342541281, + "max_x": 2045.319445292583, + "max_y": 5304.140908803961, + "center": [ + 2045.128573094047, + 5304.026625672621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.937700895511, + 5303.912342541281 + ], + [ + 2045.319445292583, + 5304.140908803961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.319445292583, + "min_y": 5303.459816199162, + "max_x": 2045.319445292583, + "max_y": 5304.140908803961, + "center": [ + 2045.319445292583, + 5303.800362501561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.319445292583, + 5304.140908803961 + ], + [ + 2045.319445292583, + 5303.459816199162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.937700895511, + "min_y": 5303.459816199162, + "max_x": 2045.319445292583, + "max_y": 5303.688382461842, + "center": [ + 2045.128573094047, + 5303.574099330502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.319445292583, + 5303.459816199162 + ], + [ + 2044.937700895511, + 5303.688382461842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5296.522014202583, + "max_x": 2043.979231794222, + "max_y": 5297.20310680738, + "center": [ + 2043.979231794222, + 5296.862560504982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5296.522014202583 + ], + [ + 2043.979231794222, + 5297.20310680738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5296.522014202583, + "max_x": 2043.979231794222, + "max_y": 5297.228290515145, + "center": [ + 2043.979231794222, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5296.522014202583 + ], + [ + 2043.979231794222, + 5297.228290515145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DAF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2044.5326887341027, + "min_y": 5296.657165842644, + "max_x": 2044.9686617665454, + "max_y": 5297.093138875087, + "center": [ + 2044.750675250324, + 5296.875152358865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.750675250324, + 5296.875152358865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.979231794222, + "min_y": 5296.522014202583, + "max_x": 2043.979231794222, + "max_y": 5297.228290515145, + "center": [ + 2043.979231794222, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.979231794222, + 5296.522014202583 + ], + [ + 2043.979231794222, + 5297.228290515145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.522118706426, + "min_y": 5296.522014202583, + "max_x": 2045.522118706426, + "max_y": 5297.228290515145, + "center": [ + 2045.522118706426, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.522118706426, + 5296.522014202583 + ], + [ + 2045.522118706426, + 5297.228290515145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5296.987132398584, + "max_x": 2044.563649605132, + "max_y": 5297.215698661262, + "center": [ + 2044.372777406598, + 5297.1014155299235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.563649605132, + 5296.987132398584 + ], + [ + 2044.181905208064, + 5297.215698661262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5296.534606056465, + "max_x": 2044.181905208064, + "max_y": 5297.215698661262, + "center": [ + 2044.181905208064, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.181905208064, + 5297.215698661262 + ], + [ + 2044.181905208064, + 5296.534606056465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.181905208064, + "min_y": 5296.534606056465, + "max_x": 2044.563649605132, + "max_y": 5296.763172319144, + "center": [ + 2044.372777406598, + 5296.648889187805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.181905208064, + 5296.534606056465 + ], + [ + 2044.563649605132, + 5296.763172319144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.937700895511, + "min_y": 5296.987132398584, + "max_x": 2045.319445292583, + "max_y": 5297.215698661262, + "center": [ + 2045.128573094047, + 5297.1014155299235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.937700895511, + 5296.987132398584 + ], + [ + 2045.319445292583, + 5297.215698661262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.319445292583, + "min_y": 5296.534606056465, + "max_x": 2045.319445292583, + "max_y": 5297.215698661262, + "center": [ + 2045.319445292583, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.319445292583, + 5297.215698661262 + ], + [ + 2045.319445292583, + 5296.534606056465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.937700895511, + "min_y": 5296.534606056465, + "max_x": 2045.319445292583, + "max_y": 5296.763172319144, + "center": [ + 2045.128573094047, + 5296.648889187805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.319445292583, + 5296.534606056465 + ], + [ + 2044.937700895511, + 5296.763172319144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DB8", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2041.42779593737, + "min_y": 5312.976129144154, + "max_x": 2053.549850067275, + "max_y": 5312.976129144154, + "center": [ + 2047.4888230023225, + 5312.976129144154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.42779593737, + 5312.976129144154 + ], + [ + 2053.549850067275, + 5312.976129144154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DB9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2046.042757459728, + "min_y": 5288.500357934911, + "max_x": 2052.314093021931, + "max_y": 5289.9935330687695, + "center": [ + 2049.1784252408297, + 5289.24694550184 + ] + }, + "raw_value": "P-10101", + "clean_value": "P-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DBA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2044.056155039711, + "min_y": 5290.746221573894, + "max_x": 2055.101950259812, + "max_y": 5290.746221573894, + "center": [ + 2049.5790526497613, + 5290.746221573894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.056155039711, + 5290.746221573894 + ], + [ + 2055.101950259812, + 5290.746221573894 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DBB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2055.101950259812, + "min_y": 5289.257069867196, + "max_x": 2056.591101966509, + "max_y": 5290.746221573894, + "center": [ + 2055.8465261131605, + 5290.001645720546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.101950259812, + 5290.746221573894 + ], + [ + 2056.591101966509, + 5289.257069867196 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DBC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2055.101950259812, + "min_y": 5287.767918160499, + "max_x": 2056.591101966509, + "max_y": 5289.257069867196, + "center": [ + 2055.8465261131605, + 5288.512494013848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2056.591101966509, + 5289.257069867196 + ], + [ + 2055.101950259812, + 5287.767918160499 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DBD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2044.056155039711, + "min_y": 5287.767918160499, + "max_x": 2055.101950259812, + "max_y": 5287.767918160499, + "center": [ + 2049.5790526497613, + 5287.767918160499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.056155039711, + 5287.767918160499 + ], + [ + 2055.101950259812, + 5287.767918160499 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.056155039711, + "min_y": 5287.767918160499, + "max_x": 2044.056155039711, + "max_y": 5290.746221573894, + "center": [ + 2044.056155039711, + 5289.257069867197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.056155039711, + 5287.767918160499 + ], + [ + 2044.056155039711, + 5290.746221573894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DBF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2040.264710564679, + "min_y": 5313.291301803532, + "max_x": 2052.3594291489276, + "max_y": 5314.411183153926, + "center": [ + 2046.3120698568032, + 5313.85124247873 + ] + }, + "raw_value": "N2-10703-15A-F1A-n", + "clean_value": "N2-10703-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DC0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5315.945275847475, + "max_x": 1957.682854410245, + "max_y": 5315.945275847475, + "center": [ + 1956.2775603383388, + 5315.945275847475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5315.945275847475 + ], + [ + 1957.682854410245, + 5315.945275847475 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DC1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5320.212882662579, + "max_x": 1957.684004360554, + "max_y": 5320.213286854314, + "center": [ + 1956.2781353134933, + 5320.213084758447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5320.212882662579 + ], + [ + 1957.684004360554, + 5320.213286854314 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.684004360554, + "min_y": 5319.564921607639, + "max_x": 1957.684004360554, + "max_y": 5320.85852377332, + "center": [ + 1957.684004360554, + 5320.211722690479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.684004360554, + 5320.85852377332 + ], + [ + 1957.684004360554, + 5319.564921607639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509926475632, + "min_y": 5319.587984606021, + "max_x": 1960.509926475632, + "max_y": 5320.835460774944, + "center": [ + 1960.509926475632, + 5320.211722690483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509926475632, + 5319.587984606021 + ], + [ + 1960.509926475632, + 5320.835460774944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.684004360554, + "min_y": 5319.587984606021, + "max_x": 1957.684004360554, + "max_y": 5320.835460774944, + "center": [ + 1957.684004360554, + 5320.211722690483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.684004360554, + 5319.587984606021 + ], + [ + 1957.684004360554, + 5320.835460774944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1958.7011544772045, + "min_y": 5319.8145278147795, + "max_x": 1959.4996743325573, + "max_y": 5320.613047670132, + "center": [ + 1959.100414404881, + 5320.213787742456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.100414404881, + 5320.213787742456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.055217103227, + "min_y": 5319.580986248514, + "max_x": 1958.055217103227, + "max_y": 5320.84245913245, + "center": [ + 1958.055217103227, + 5320.211722690482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.055217103227, + 5320.84245913245 + ], + [ + 1958.055217103227, + 5319.580986248514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.684004360554, + "min_y": 5319.580986248514, + "max_x": 1957.684004360554, + "max_y": 5320.84245913245, + "center": [ + 1957.684004360554, + 5320.211722690482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.684004360554, + 5320.84245913245 + ], + [ + 1957.684004360554, + 5319.580986248514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509926475632, + "min_y": 5319.583051300476, + "max_x": 1960.509926475632, + "max_y": 5320.844524184419, + "center": [ + 1960.509926475632, + 5320.2137877424475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509926475632, + 5320.844524184419 + ], + [ + 1960.509926475632, + 5319.583051300476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.509926475632, + "min_y": 5319.583051300476, + "max_x": 1960.509926475632, + "max_y": 5320.844524184419, + "center": [ + 1960.509926475632, + 5320.2137877424475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509926475632, + 5320.844524184419 + ], + [ + 1960.509926475632, + 5319.583051300476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.439518007432, + "min_y": 5320.416823186305, + "max_x": 1960.138713732954, + "max_y": 5320.835460774944, + "center": [ + 1959.7891158701932, + 5320.626141980625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.439518007432, + 5320.416823186305 + ], + [ + 1960.138713732954, + 5320.835460774944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.138713732954, + "min_y": 5319.587984606021, + "max_x": 1960.138713732954, + "max_y": 5320.835460774944, + "center": [ + 1960.138713732954, + 5320.211722690483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.138713732954, + 5320.835460774944 + ], + [ + 1960.138713732954, + 5319.587984606021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.439518007432, + "min_y": 5319.587984606021, + "max_x": 1960.138713732954, + "max_y": 5320.006622194659, + "center": [ + 1959.7891158701932, + 5319.79730340034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.138713732954, + 5319.587984606021 + ], + [ + 1959.439518007432, + 5320.006622194659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.055217103227, + "min_y": 5320.415839947145, + "max_x": 1958.756055004793, + "max_y": 5320.835460774944, + "center": [ + 1958.40563605401, + 5320.625650361045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.756055004793, + 5320.415839947145 + ], + [ + 1958.055217103227, + 5320.835460774944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.055217103227, + "min_y": 5319.587984606021, + "max_x": 1958.055217103227, + "max_y": 5320.835460774944, + "center": [ + 1958.055217103227, + 5320.211722690483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.055217103227, + 5320.835460774944 + ], + [ + 1958.055217103227, + 5319.587984606021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.055217103227, + "min_y": 5319.587984606021, + "max_x": 1958.757861815544, + "max_y": 5320.008687246636, + "center": [ + 1958.4065394593854, + 5319.798335926329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.055217103227, + 5319.587984606021 + ], + [ + 1958.757861815544, + 5320.008687246636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5315.296409712666, + "max_x": 1957.682854410245, + "max_y": 5316.590011878347, + "center": [ + 1957.682854410245, + 5315.943210795506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5316.590011878347 + ], + [ + 1957.682854410245, + 5315.296409712666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5315.319472711049, + "max_x": 1960.508776525322, + "max_y": 5316.566948879971, + "center": [ + 1960.508776525322, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5315.319472711049 + ], + [ + 1960.508776525322, + 5316.566948879971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5315.319472711049, + "max_x": 1957.682854410245, + "max_y": 5316.566948879971, + "center": [ + 1957.682854410245, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5315.319472711049 + ], + [ + 1957.682854410245, + 5316.566948879971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1958.7000045268946, + "min_y": 5315.546015919806, + "max_x": 1959.4985243822475, + "max_y": 5316.344535775159, + "center": [ + 1959.099264454571, + 5315.945275847483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.099264454571, + 5315.945275847483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5315.312474353542, + "max_x": 1958.054067152917, + "max_y": 5316.573947237478, + "center": [ + 1958.054067152917, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5316.573947237478 + ], + [ + 1958.054067152917, + 5315.312474353542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5315.312474353542, + "max_x": 1957.682854410245, + "max_y": 5316.573947237478, + "center": [ + 1957.682854410245, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5316.573947237478 + ], + [ + 1957.682854410245, + 5315.312474353542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5315.314539405504, + "max_x": 1960.508776525322, + "max_y": 5316.576012289448, + "center": [ + 1960.508776525322, + 5315.945275847476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5316.576012289448 + ], + [ + 1960.508776525322, + 5315.314539405504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5315.314539405504, + "max_x": 1960.508776525322, + "max_y": 5316.576012289448, + "center": [ + 1960.508776525322, + 5315.945275847476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5316.576012289448 + ], + [ + 1960.508776525322, + 5315.314539405504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438368057123, + "min_y": 5316.148311291333, + "max_x": 1960.137563782644, + "max_y": 5316.566948879971, + "center": [ + 1959.7879659198834, + 5316.357630085652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.438368057123, + 5316.148311291333 + ], + [ + 1960.137563782644, + 5316.566948879971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.137563782644, + "min_y": 5315.319472711049, + "max_x": 1960.137563782644, + "max_y": 5316.566948879971, + "center": [ + 1960.137563782644, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137563782644, + 5316.566948879971 + ], + [ + 1960.137563782644, + 5315.319472711049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438368057123, + "min_y": 5315.319472711049, + "max_x": 1960.137563782644, + "max_y": 5315.738110299686, + "center": [ + 1959.7879659198834, + 5315.528791505367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137563782644, + 5315.319472711049 + ], + [ + 1959.438368057123, + 5315.738110299686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5316.147328052172, + "max_x": 1958.754905054483, + "max_y": 5316.566948879971, + "center": [ + 1958.4044861037, + 5316.357138466072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.754905054483, + 5316.147328052172 + ], + [ + 1958.054067152917, + 5316.566948879971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5315.319472711049, + "max_x": 1958.054067152917, + "max_y": 5316.566948879971, + "center": [ + 1958.054067152917, + 5315.94321079551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5316.566948879971 + ], + [ + 1958.054067152917, + 5315.319472711049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5315.319472711049, + "max_x": 1958.756711865235, + "max_y": 5315.740175351663, + "center": [ + 1958.405389509076, + 5315.529824031356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5315.319472711049 + ], + [ + 1958.756711865235, + 5315.740175351663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DDE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1960.509074202605, + "min_y": 5325.020096122701, + "max_x": 1980.425369724527, + "max_y": 5325.021168768122, + "center": [ + 1970.4672219635659, + 5325.020632445412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.509074202605, + 5325.020096122701 + ], + [ + 1980.425369724527, + 5325.021168768122 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DDF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1949.38006702981, + "min_y": 5325.020902775452, + "max_x": 1951.324871005991, + "max_y": 5325.021384723296, + "center": [ + 1950.3524690179006, + 5325.0211437493745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1949.38006702981, + 5325.020902775452 + ], + [ + 1951.324871005991, + 5325.021384723296 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DE0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5287.200207086396, + "max_x": 1908.949965733494, + "max_y": 5287.200207086396, + "center": [ + 1908.0907505948835, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5287.200207086396 + ], + [ + 1908.949965733494, + 5287.200207086396 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733494, + "min_y": 5286.695562692252, + "max_x": 1908.949965733494, + "max_y": 5287.70485148054, + "center": [ + 1908.949965733494, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733494, + 5287.70485148054 + ], + [ + 1908.949965733494, + 5286.695562692252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5286.695562692252, + "max_x": 1911.173632502022, + "max_y": 5287.70485148054, + "center": [ + 1911.173632502022, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5286.695562692252 + ], + [ + 1911.173632502022, + 5287.70485148054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5286.874754720053, + "max_x": 1910.3494321584587, + "max_y": 5287.520808855041, + "center": [ + 1910.026405090965, + 5287.197781787547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5287.197781787547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5286.695562692252, + "max_x": 1910.873297418612, + "max_y": 5287.035426588308, + "center": [ + 1910.589482264608, + 5286.86549464028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5287.035426588308 + ], + [ + 1910.873297418612, + 5286.695562692252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418612, + "min_y": 5286.695562692252, + "max_x": 1910.873297418612, + "max_y": 5287.70485148054, + "center": [ + 1910.873297418612, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418612, + 5286.695562692252 + ], + [ + 1910.873297418612, + 5287.70485148054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259328, + "min_y": 5287.363721334981, + "max_x": 1910.873297418612, + "max_y": 5287.70485148054, + "center": [ + 1910.58842483897, + 5287.534286407761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418612, + 5287.70485148054 + ], + [ + 1910.303552259328, + 5287.363721334981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5286.695562692252, + "max_x": 1909.753308582727, + "max_y": 5287.034267538962, + "center": [ + 1909.4704613331473, + 5286.864915115607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5287.034267538962 + ], + [ + 1909.187614083568, + 5286.695562692252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5286.695562692252, + "max_x": 1909.187614083568, + "max_y": 5287.70485148054, + "center": [ + 1909.187614083568, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083568, + 5286.695562692252 + ], + [ + 1909.187614083568, + 5287.70485148054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083568, + "min_y": 5287.366146633829, + "max_x": 1909.753308582727, + "max_y": 5287.70485148054, + "center": [ + 1909.4704613331473, + 5287.535499057185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083568, + 5287.70485148054 + ], + [ + 1909.753308582727, + 5287.366146633829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DEA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5287.200207086396, + "max_x": 2019.745750672881, + "max_y": 5287.200207086396, + "center": [ + 1965.4596915874515, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5287.200207086396 + ], + [ + 2019.745750672881, + 5287.200207086396 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DEB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5287.200207086396, + "max_x": 2019.745750672881, + "max_y": 5311.647073655265, + "center": [ + 2019.745750672881, + 5299.423640370831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2019.745750672881, + 5287.200207086396 + ], + [ + 2019.745750672881, + 5311.647073655265 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.21095279927, + "min_y": 5371.592114198914, + "max_x": 1888.442633442083, + "max_y": 5371.592114198914, + "center": [ + 1887.3267931206765, + 5371.592114198914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.21095279927, + 5371.592114198914 + ], + [ + 1888.442633442083, + 5371.592114198914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DED", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1885.837641413976, + "min_y": 5360.812931195891, + "max_x": 1885.837641413976, + "max_y": 5371.592114198914, + "center": [ + 1885.837641413976, + 5366.202522697402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.837641413976, + 5371.592114198914 + ], + [ + 1885.837641413976, + 5360.812931195891 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DEE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1888.815944827371, + "min_y": 5360.812931195884, + "max_x": 1888.815944827371, + "max_y": 5371.592114198914, + "center": [ + 1888.815944827371, + 5366.202522697398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.815944827371, + 5360.812931195884 + ], + [ + 1888.815944827371, + 5371.592114198914 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1885.837641413976, + "min_y": 5371.592114198914, + "max_x": 1888.815944827371, + "max_y": 5371.592114198914, + "center": [ + 1887.3267931206733, + 5371.592114198914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.815944827371, + 5371.592114198914 + ], + [ + 1885.837641413976, + 5371.592114198914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DF0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1885.837641413979, + "min_y": 5359.323779489191, + "max_x": 1887.326793120677, + "max_y": 5360.812931195884, + "center": [ + 1886.582217267328, + 5360.068355342537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1885.837641413979, + 5360.812931195884 + ], + [ + 1887.326793120677, + 5359.323779489191 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1887.326793120677, + "min_y": 5359.323779489191, + "max_x": 1888.815944827374, + "max_y": 5360.812931195884, + "center": [ + 1888.0713689740255, + 5360.068355342537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.326793120677, + 5359.323779489191 + ], + [ + 1888.815944827374, + 5360.812931195884 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1888.09390184107, + "min_y": 5362.963687554938, + "max_x": 1890.7816170820142, + "max_y": 5364.456862688796, + "center": [ + 1889.437759461542, + 5363.710275121866 + ] + }, + "raw_value": "CHS", + "clean_value": "CHS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DF3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1870.106072704957, + "min_y": 5359.659634590901, + "max_x": 1870.106072704957, + "max_y": 5370.438817593925, + "center": [ + 1870.106072704957, + 5365.049226092413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.106072704957, + 5359.659634590901 + ], + [ + 1870.106072704957, + 5370.438817593925 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1873.084376118352, + "min_y": 5359.659634590901, + "max_x": 1873.084376118352, + "max_y": 5370.438817593935, + "center": [ + 1873.084376118352, + 5365.049226092418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.084376118352, + 5370.438817593935 + ], + [ + 1873.084376118352, + 5359.659634590901 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.106072704957, + "min_y": 5359.659634590901, + "max_x": 1873.084376118352, + "max_y": 5359.659634590901, + "center": [ + 1871.5952244116545, + 5359.659634590901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.084376118352, + 5359.659634590901 + ], + [ + 1870.106072704957, + 5359.659634590901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DF6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1870.10607270496, + "min_y": 5370.438817593929, + "max_x": 1871.595224411657, + "max_y": 5371.927969300624, + "center": [ + 1870.8506485583084, + 5371.183393447276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.10607270496, + 5370.438817593929 + ], + [ + 1871.595224411657, + 5371.927969300624 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1871.595224411657, + "min_y": 5370.438817593929, + "max_x": 1873.084376118354, + "max_y": 5371.927969300624, + "center": [ + 1872.3398002650056, + 5371.183393447276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.595224411657, + 5371.927969300624 + ], + [ + 1873.084376118354, + 5370.438817593929 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554DF8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1872.36233313205, + "min_y": 5362.075841599695, + "max_x": 1875.0500483729943, + "max_y": 5363.569016733553, + "center": [ + 1873.7061907525222, + 5362.822429166625 + ] + }, + "raw_value": "CHR", + "clean_value": "CHR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DF9", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1871.595224411654, + "min_y": 5336.94964557112, + "max_x": 1871.595224411654, + "max_y": 5359.659634590901, + "center": [ + 1871.595224411654, + 5348.304640081011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.595224411654, + 5359.659634590901 + ], + [ + 1871.595224411654, + 5336.94964557112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DFA", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1871.595224411654, + "min_y": 5333.722310077412, + "max_x": 1876.358922514746, + "max_y": 5333.722310077412, + "center": [ + 1873.9770734632, + 5333.722310077412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.595224411654, + 5333.722310077412 + ], + [ + 1876.358922514746, + 5333.722310077412 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DFB", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1887.326793120677, + "min_y": 5333.722310077412, + "max_x": 1887.326793120677, + "max_y": 5334.739622652283, + "center": [ + 1887.326793120677, + 5334.2309663648475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.326793120677, + 5333.722310077412 + ], + [ + 1887.326793120677, + 5334.739622652283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554DFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.09100619657, + "min_y": 5336.94964557112, + "max_x": 1872.102672589907, + "max_y": 5336.94964557112, + "center": [ + 1871.5968393932385, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.09100619657, + 5336.94964557112 + ], + [ + 1872.102672589907, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5334.739622652283, + "max_x": 1872.084636086098, + "max_y": 5334.739622652283, + "center": [ + 1871.5968393932399, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.084636086098, + 5334.739622652283 + ], + [ + 1871.109042700382, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5336.94964557112, + "max_x": 1872.084636086098, + "max_y": 5336.94964557112, + "center": [ + 1871.5968393932399, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.084636086098, + 5336.94964557112 + ], + [ + 1871.109042700382, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554DFF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1871.2845966792495, + "min_y": 5335.532391397713, + "max_x": 1871.9090821072307, + "max_y": 5336.156876825694, + "center": [ + 1871.59683939324, + 5335.844634111703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.59683939324, + 5335.844634111703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.103569608818, + "min_y": 5336.659337262659, + "max_x": 1872.090109177662, + "max_y": 5336.659337262659, + "center": [ + 1871.5968393932399, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.103569608818, + 5336.659337262659 + ], + [ + 1872.090109177662, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.101954627231, + "min_y": 5334.739622652283, + "max_x": 1872.088494196077, + "max_y": 5334.739622652283, + "center": [ + 1871.5952244116538, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.101954627231, + 5334.739622652283 + ], + [ + 1872.088494196077, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.101954627231, + "min_y": 5334.739622652283, + "max_x": 1872.088494196077, + "max_y": 5334.739622652283, + "center": [ + 1871.5952244116538, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.101954627231, + 5334.739622652283 + ], + [ + 1872.088494196077, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5335.029930960748, + "max_x": 1871.436439786327, + "max_y": 5335.57673958294, + "center": [ + 1871.2727412433544, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.436439786327, + 5335.57673958294 + ], + [ + 1871.109042700382, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5335.029930960748, + "max_x": 1872.084636086098, + "max_y": 5335.029930960748, + "center": [ + 1871.5968393932399, + 5335.029930960748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.109042700382, + 5335.029930960748 + ], + [ + 1872.084636086098, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.757239000156, + "min_y": 5335.029930960748, + "max_x": 1872.084636086098, + "max_y": 5335.57673958294, + "center": [ + 1871.920937543127, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.084636086098, + 5335.029930960748 + ], + [ + 1871.757239000156, + 5335.57673958294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5336.112528640466, + "max_x": 1871.436439786327, + "max_y": 5336.659337262659, + "center": [ + 1871.2727412433544, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.436439786327, + 5336.112528640466 + ], + [ + 1871.109042700382, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.109042700382, + "min_y": 5336.659337262659, + "max_x": 1872.084636086098, + "max_y": 5336.659337262659, + "center": [ + 1871.5968393932399, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.109042700382, + 5336.659337262659 + ], + [ + 1872.084636086098, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.757239000156, + "min_y": 5336.112528640466, + "max_x": 1872.084636086098, + "max_y": 5336.659337262659, + "center": [ + 1871.920937543127, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.084636086098, + 5336.659337262659 + ], + [ + 1871.757239000156, + 5336.112528640466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.854704299662, + "min_y": 5336.94964557112, + "max_x": 1876.866370692999, + "max_y": 5336.94964557112, + "center": [ + 1876.3605374963304, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.854704299662, + 5336.94964557112 + ], + [ + 1876.866370692999, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5334.739622652283, + "max_x": 1876.84833418919, + "max_y": 5334.739622652283, + "center": [ + 1876.360537496332, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.84833418919, + 5334.739622652283 + ], + [ + 1875.872740803474, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5336.94964557112, + "max_x": 1876.84833418919, + "max_y": 5336.94964557112, + "center": [ + 1876.360537496332, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.84833418919, + 5336.94964557112 + ], + [ + 1875.872740803474, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1876.0482947823414, + "min_y": 5335.532391397713, + "max_x": 1876.6727802103226, + "max_y": 5336.156876825694, + "center": [ + 1876.360537496332, + 5335.844634111703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.360537496332, + 5335.844634111703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.86726771191, + "min_y": 5336.659337262659, + "max_x": 1876.853807280754, + "max_y": 5336.659337262659, + "center": [ + 1876.360537496332, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.86726771191, + 5336.659337262659 + ], + [ + 1876.853807280754, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.865652730323, + "min_y": 5334.739622652283, + "max_x": 1876.852192299169, + "max_y": 5334.739622652283, + "center": [ + 1876.3589225147462, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.865652730323, + 5334.739622652283 + ], + [ + 1876.852192299169, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.865652730323, + "min_y": 5334.739622652283, + "max_x": 1876.852192299169, + "max_y": 5334.739622652283, + "center": [ + 1876.3589225147462, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.865652730323, + 5334.739622652283 + ], + [ + 1876.852192299169, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5335.029930960748, + "max_x": 1876.200137889419, + "max_y": 5335.57673958294, + "center": [ + 1876.0364393464465, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.200137889419, + 5335.57673958294 + ], + [ + 1875.872740803474, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5335.029930960748, + "max_x": 1876.84833418919, + "max_y": 5335.029930960748, + "center": [ + 1876.360537496332, + 5335.029930960748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.872740803474, + 5335.029930960748 + ], + [ + 1876.84833418919, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.520937103248, + "min_y": 5335.029930960748, + "max_x": 1876.84833418919, + "max_y": 5335.57673958294, + "center": [ + 1876.6846356462188, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.84833418919, + 5335.029930960748 + ], + [ + 1876.520937103248, + 5335.57673958294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5336.112528640466, + "max_x": 1876.200137889419, + "max_y": 5336.659337262659, + "center": [ + 1876.0364393464465, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.200137889419, + 5336.112528640466 + ], + [ + 1875.872740803474, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1875.872740803474, + "min_y": 5336.659337262659, + "max_x": 1876.84833418919, + "max_y": 5336.659337262659, + "center": [ + 1876.360537496332, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.872740803474, + 5336.659337262659 + ], + [ + 1876.84833418919, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.520937103248, + "min_y": 5336.112528640466, + "max_x": 1876.84833418919, + "max_y": 5336.659337262659, + "center": [ + 1876.6846356462188, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.84833418919, + 5336.659337262659 + ], + [ + 1876.520937103248, + 5336.112528640466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.337435347622, + "min_y": 5336.94964557112, + "max_x": 1882.349101740959, + "max_y": 5336.94964557112, + "center": [ + 1881.8432685442904, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.337435347622, + 5336.94964557112 + ], + [ + 1882.349101740959, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5334.739622652283, + "max_x": 1882.33106523715, + "max_y": 5334.739622652283, + "center": [ + 1881.8432685442915, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.33106523715, + 5334.739622652283 + ], + [ + 1881.355471851433, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5336.94964557112, + "max_x": 1882.33106523715, + "max_y": 5336.94964557112, + "center": [ + 1881.8432685442915, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.33106523715, + 5336.94964557112 + ], + [ + 1881.355471851433, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E19", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1881.5310258303005, + "min_y": 5335.532391397713, + "max_x": 1882.1555112582816, + "max_y": 5336.156876825694, + "center": [ + 1881.843268544291, + 5335.844634111703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.843268544291, + 5335.844634111703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.34999875987, + "min_y": 5336.659337262659, + "max_x": 1882.336538328713, + "max_y": 5336.659337262659, + "center": [ + 1881.8432685442915, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.34999875987, + 5336.659337262659 + ], + [ + 1882.336538328713, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.348383778283, + "min_y": 5334.739622652283, + "max_x": 1882.334923347129, + "max_y": 5334.739622652283, + "center": [ + 1881.8416535627061, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.348383778283, + 5334.739622652283 + ], + [ + 1882.334923347129, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.348383778283, + "min_y": 5334.739622652283, + "max_x": 1882.334923347129, + "max_y": 5334.739622652283, + "center": [ + 1881.8416535627061, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.348383778283, + 5334.739622652283 + ], + [ + 1882.334923347129, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5335.029930960748, + "max_x": 1881.682868937378, + "max_y": 5335.57673958294, + "center": [ + 1881.5191703944056, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.682868937378, + 5335.57673958294 + ], + [ + 1881.355471851433, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5335.029930960748, + "max_x": 1882.33106523715, + "max_y": 5335.029930960748, + "center": [ + 1881.8432685442915, + 5335.029930960748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.355471851433, + 5335.029930960748 + ], + [ + 1882.33106523715, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.003668151207, + "min_y": 5335.029930960748, + "max_x": 1882.33106523715, + "max_y": 5335.57673958294, + "center": [ + 1882.1673666941783, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.33106523715, + 5335.029930960748 + ], + [ + 1882.003668151207, + 5335.57673958294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5336.112528640466, + "max_x": 1881.682868937378, + "max_y": 5336.659337262659, + "center": [ + 1881.5191703944056, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.682868937378, + 5336.112528640466 + ], + [ + 1881.355471851433, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.355471851433, + "min_y": 5336.659337262659, + "max_x": 1882.33106523715, + "max_y": 5336.659337262659, + "center": [ + 1881.8432685442915, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.355471851433, + 5336.659337262659 + ], + [ + 1882.33106523715, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.003668151207, + "min_y": 5336.112528640466, + "max_x": 1882.33106523715, + "max_y": 5336.659337262659, + "center": [ + 1882.1673666941783, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.33106523715, + 5336.659337262659 + ], + [ + 1882.003668151207, + 5336.112528640466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.822574905593, + "min_y": 5336.94964557112, + "max_x": 1887.834241298929, + "max_y": 5336.94964557112, + "center": [ + 1887.3284081022612, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.822574905593, + 5336.94964557112 + ], + [ + 1887.834241298929, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5334.739622652283, + "max_x": 1887.816204795121, + "max_y": 5334.739622652283, + "center": [ + 1887.3284081022625, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.816204795121, + 5334.739622652283 + ], + [ + 1886.840611409404, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5336.94964557112, + "max_x": 1887.816204795121, + "max_y": 5336.94964557112, + "center": [ + 1887.3284081022625, + 5336.94964557112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.816204795121, + 5336.94964557112 + ], + [ + 1886.840611409404, + 5336.94964557112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E26", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1887.0161653882715, + "min_y": 5335.532391397713, + "max_x": 1887.6406508162527, + "max_y": 5336.156876825694, + "center": [ + 1887.328408102262, + 5335.844634111703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.328408102262, + 5335.844634111703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.835138317841, + "min_y": 5336.659337262659, + "max_x": 1887.821677886684, + "max_y": 5336.659337262659, + "center": [ + 1887.3284081022625, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.835138317841, + 5336.659337262659 + ], + [ + 1887.821677886684, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.833523336253, + "min_y": 5334.739622652283, + "max_x": 1887.8200629051, + "max_y": 5334.739622652283, + "center": [ + 1887.3267931206765, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.833523336253, + 5334.739622652283 + ], + [ + 1887.8200629051, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.833523336253, + "min_y": 5334.739622652283, + "max_x": 1887.8200629051, + "max_y": 5334.739622652283, + "center": [ + 1887.3267931206765, + 5334.739622652283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.833523336253, + 5334.739622652283 + ], + [ + 1887.8200629051, + 5334.739622652283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5335.029930960748, + "max_x": 1887.168008495349, + "max_y": 5335.57673958294, + "center": [ + 1887.0043099523764, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.168008495349, + 5335.57673958294 + ], + [ + 1886.840611409404, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5335.029930960748, + "max_x": 1887.816204795121, + "max_y": 5335.029930960748, + "center": [ + 1887.3284081022625, + 5335.029930960748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.840611409404, + 5335.029930960748 + ], + [ + 1887.816204795121, + 5335.029930960748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1887.488807709178, + "min_y": 5335.029930960748, + "max_x": 1887.816204795121, + "max_y": 5335.57673958294, + "center": [ + 1887.6525062521496, + 5335.303335271844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.816204795121, + 5335.029930960748 + ], + [ + 1887.488807709178, + 5335.57673958294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5336.112528640466, + "max_x": 1887.168008495349, + "max_y": 5336.659337262659, + "center": [ + 1887.0043099523764, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.168008495349, + 5336.112528640466 + ], + [ + 1886.840611409404, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1886.840611409404, + "min_y": 5336.659337262659, + "max_x": 1887.816204795121, + "max_y": 5336.659337262659, + "center": [ + 1887.3284081022625, + 5336.659337262659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.840611409404, + 5336.659337262659 + ], + [ + 1887.816204795121, + 5336.659337262659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1887.488807709178, + "min_y": 5336.112528640466, + "max_x": 1887.816204795121, + "max_y": 5336.659337262659, + "center": [ + 1887.6525062521496, + 5336.385932951563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.816204795121, + 5336.659337262659 + ], + [ + 1887.488807709178, + 5336.112528640466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E30", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1871.595224411654, + "min_y": 5333.722310077412, + "max_x": 1871.595224411654, + "max_y": 5334.739622652283, + "center": [ + 1871.595224411654, + 5334.2309663648475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.595224411654, + 5334.739622652283 + ], + [ + 1871.595224411654, + 5333.722310077412 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E31", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1876.358922514746, + "min_y": 5336.94964557112, + "max_x": 1876.358922514746, + "max_y": 5359.659634590901, + "center": [ + 1876.358922514746, + 5348.304640081011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.358922514746, + 5336.94964557112 + ], + [ + 1876.358922514746, + 5359.659634590901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E32", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1881.841653562706, + "min_y": 5336.94964557112, + "max_x": 1881.841653562706, + "max_y": 5359.323779489191, + "center": [ + 1881.841653562706, + 5348.136712530155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.841653562706, + 5336.94964557112 + ], + [ + 1881.841653562706, + 5359.323779489191 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E33", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1887.326793120677, + "min_y": 5336.94964557112, + "max_x": 1887.326793120677, + "max_y": 5359.323779489191, + "center": [ + 1887.326793120677, + 5348.136712530155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1887.326793120677, + 5336.94964557112 + ], + [ + 1887.326793120677, + 5359.323779489191 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E34", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1871.257656881921, + "min_y": 5340.592989486559, + "max_x": 1885.368161896878, + "max_y": 5341.712870836953, + "center": [ + 1878.3129093893995, + 5341.152930161756 + ] + }, + "raw_value": "CHR-10641-65A-F1A-C50", + "clean_value": "CHR-10641-65A-F1A-C50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E35", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1886.993997924873, + "min_y": 5340.628558042965, + "max_x": 1901.10450293983, + "max_y": 5341.748439393358, + "center": [ + 1894.0492504323515, + 5341.188498718162 + ] + }, + "raw_value": "CHS-10631-65A-F1A-C50", + "clean_value": "CHS-10631-65A-F1A-C50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E36", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1881.841653562706, + "min_y": 5333.722310077412, + "max_x": 1887.326793120677, + "max_y": 5333.722310077412, + "center": [ + 1884.5842233416915, + 5333.722310077412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.841653562706, + 5333.722310077412 + ], + [ + 1887.326793120677, + 5333.722310077412 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.157851036437, + "min_y": 5202.445384002632, + "max_x": 1829.255393595367, + "max_y": 5202.445384002632, + "center": [ + 1828.706622315902, + 5202.445384002632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.157851036437, + 5202.445384002632 + ], + [ + 1829.255393595367, + 5202.445384002632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E38", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1993.308086510206, + "min_y": 5426.412950477859, + "max_x": 2003.3870186637466, + "max_y": 5427.532831828253, + "center": [ + 1998.3475525869762, + 5426.9728911530565 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E39", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1993.025574821546, + "min_y": 5409.330578431027, + "max_x": 2003.1045069750865, + "max_y": 5410.45045978142, + "center": [ + 1998.065040898316, + 5409.890519106224 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1976.143808780286, + "min_y": 5404.829386992134, + "max_x": 1981.5192392621743, + "max_y": 5405.949268342527, + "center": [ + 1978.83152402123, + 5405.38932766733 + ] + }, + "raw_value": "UFD-9005", + "clean_value": "UFD-9005", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1889.411336664299, + "min_y": 5260.38117729625, + "max_x": 1899.4902688178395, + "max_y": 5261.501058646643, + "center": [ + 1894.4508027410693, + 5260.941117971446 + ] + }, + "raw_value": "SARF-#10-UFD-N2", + "clean_value": "SARF-#10-UFD-N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1869.824643641032, + "min_y": 5359.478320467503, + "max_x": 1883.263219845753, + "max_y": 5360.598201817897, + "center": [ + 1876.5439317433925, + 5360.038261142699 + ] + }, + "raw_value": "SARF-UTILITY-UFD-CHW", + "clean_value": "SARF-UTILITY-UFD-CHW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1874.64165859225, + "min_y": 5359.478320467503, + "max_x": 1884.7205907457906, + "max_y": 5360.598201817897, + "center": [ + 1879.6811246690204, + 5360.038261142699 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1879.929410436898, + "min_y": 5360.631617072488, + "max_x": 1890.0083425904386, + "max_y": 5361.751498422881, + "center": [ + 1884.9688765136684, + 5361.191557747685 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E3F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1885.482842850555, + "min_y": 5360.631617072494, + "max_x": 1898.921419055276, + "max_y": 5361.751498422887, + "center": [ + 1892.2021309529155, + 5361.19155774769 + ] + }, + "raw_value": "SARF-UTILITY-UFD-CHW", + "clean_value": "SARF-UTILITY-UFD-CHW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E40", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1649.620580189683, + "min_y": 5164.894488659673, + "max_x": 1670.1517382802288, + "max_y": 5166.694488659673, + "center": [ + 1659.8861592349558, + 5165.794488659672 + ] + }, + "raw_value": "\\pi5.16928;{\\W0.9;\\LDP-10101\\P\\pi0.24444;DIAPHRAGM PUMP}", + "clean_value": "\\pi5.16928; .9; DP-10101 \\pi0.24444;DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E44", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1650.573805376549, + "min_y": 5158.217097714256, + "max_x": 1680.595307498642, + "max_y": 5160.017097714256, + "center": [ + 1665.5845564375954, + 5159.117097714256 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 60L/min\\PSIZE : 25A/25A}\\PMATERIAL : STS316/PTFE\\PPRESSURE : 0.3MPa\\PSPM : 3,600\\PREMARK : AIR OPERATING", + "clean_value": ".9; CAPA : 60L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E48", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1676.654668051405, + "min_y": 5164.906876088671, + "max_x": 1697.1858261419507, + "max_y": 5166.706876088671, + "center": [ + 1686.920247096678, + 5165.806876088671 + ] + }, + "raw_value": "\\pi5.98478;{\\W0.9;\\LP-10101\\P\\pi3.9878;FEED PUMP}", + "clean_value": "\\pi5.98478; .9; P-10101 \\pi3.9878;FEED PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E4C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1680.154053847297, + "min_y": 5158.338810943575, + "max_x": 1704.4137366618127, + "max_y": 5160.138810943575, + "center": [ + 1692.2838952545549, + 5159.238810943574 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 60L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 60L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E50", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1704.052180916746, + "min_y": 5164.490746097157, + "max_x": 1724.5833390072917, + "max_y": 5166.290746097157, + "center": [ + 1714.317759962019, + 5165.390746097157 + ] + }, + "raw_value": "\\pi5.77266;{\\W0.9;\\LP-10114\\P\\pi4.59228;TOP PUMP}", + "clean_value": "\\pi5.77266; .9; P-10114 \\pi4.59228;TOP PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E54", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1704.844979642343, + "min_y": 5158.321801093152, + "max_x": 1728.6385968663624, + "max_y": 5160.1218010931525, + "center": [ + 1716.7417882543527, + 5159.221801093152 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 90L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.35MPa\\PRPM : 3,530", + "clean_value": ".9; CAPA : 90L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E58", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1728.96649432391, + "min_y": 5164.838978155232, + "max_x": 1749.4976524144556, + "max_y": 5166.6389781552325, + "center": [ + 1739.2320733691827, + 5165.738978155232 + ] + }, + "raw_value": "\\pi5.77486;{\\W0.9;\\LP-10116\\P\\pi2.21833;BOTTOM PUMP}", + "clean_value": "\\pi5.77486; .9; P-10116 \\pi2.21833;BOTTOM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E5C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1729.759293049507, + "min_y": 5158.670033151228, + "max_x": 1754.1354922616465, + "max_y": 5160.470033151229, + "center": [ + 1741.9473926555768, + 5159.570033151229 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 15L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 15L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E60", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1756.151109355958, + "min_y": 5165.378688629873, + "max_x": 1776.6822674465036, + "max_y": 5167.178688629873, + "center": [ + 1766.4166884012307, + 5166.278688629873 + ] + }, + "raw_value": "\\pi5.77706;{\\W0.9;\\LP-10118\\P\\pi4.32741;SIDE PUMP}", + "clean_value": "\\pi5.77706; .9; P-10118 \\pi4.32741;SIDE PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E64", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1756.151109355958, + "min_y": 5159.247456835664, + "max_x": 1779.9447265799772, + "max_y": 5161.047456835664, + "center": [ + 1768.0479179679676, + 5160.147456835664 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 48L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25Mpa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 48L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25Mpa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E68", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1782.300695897493, + "min_y": 5165.750001952062, + "max_x": 1802.8318539880386, + "max_y": 5167.550001952062, + "center": [ + 1792.5662749427656, + 5166.650001952063 + ] + }, + "raw_value": "\\pi5.00992;{\\W0.9;\\LVP-10117\\P\\pi2.026;VACUUM PUMP}", + "clean_value": "\\pi5.00992; .9; VP-10117 \\pi2.026;VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E6C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1784.318094280375, + "min_y": 5159.607255972446, + "max_x": 1821.337378005862, + "max_y": 5161.407255972446, + "center": [ + 1802.8277361431185, + 5160.507255972447 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 345m\\H0.7x;\\S3^ ;\\H1.42857x;/h\\PSIZE : 50A/40A}\\H0.999999x;\\P{\\A1;MATERIAL : FCD400+PTFE Coated\\P}PRESSURE : 0.05Torr\\PRPM : 3,550", + "clean_value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E70", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1650.369638623337, + "min_y": 5190.771785591385, + "max_x": 1672.7672656312052, + "max_y": 5192.571785591385, + "center": [ + 1661.568452127271, + 5191.671785591385 + ] + }, + "raw_value": "\\pi6.90702;{\\W0.9;\\LT-10101\\P\\pi0.3358;FEED BUFFER TANK}", + "clean_value": "\\pi6.90702; .9; T-10101 \\pi0.3358;FEED BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E74", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1650.681314579649, + "min_y": 5183.061499445005, + "max_x": 1676.9291766579497, + "max_y": 5184.861499445005, + "center": [ + 1663.8052456187993, + 5183.961499445006 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C2,500 x 3,600H\\PVOLUME : 20.6M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C2,500 x 3,600H VOLUME : 20.6M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E78", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1675.802854677018, + "min_y": 5190.576676149512, + "max_x": 1698.2004816848862, + "max_y": 5192.376676149513, + "center": [ + 1687.001668180952, + 5191.476676149512 + ] + }, + "raw_value": "\\pi6.69491;{\\W0.9;\\LT-10100\\P\\pi2.93176;RECYCLE TANK}", + "clean_value": "\\pi6.69491; .9; T-10100 \\pi2.93176;RECYCLE TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E7C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1913.803613934863, + "min_y": 5374.380101961595, + "max_x": 1921.274127156056, + "max_y": 5374.380101961598, + "center": [ + 1917.5388705454595, + 5374.380101961597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.803613934863, + 5374.380101961598 + ], + [ + 1921.274127156056, + 5374.380101961595 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E7D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1913.803613934863, + "min_y": 5374.380101961595, + "max_x": 1921.274127156056, + "max_y": 5374.380101961598, + "center": [ + 1917.5388705454595, + 5374.380101961597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5374.380101961595 + ], + [ + 1913.803613934863, + 5374.380101961598 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E7E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1913.803613934863, + "min_y": 5374.380101961595, + "max_x": 1921.274127156056, + "max_y": 5374.380101961598, + "center": [ + 1917.5388705454595, + 5374.380101961597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.803613934863, + 5374.380101961598 + ], + [ + 1921.274127156056, + 5374.380101961595 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.274127156056, + "min_y": 5373.756363877135, + "max_x": 1921.274127156056, + "max_y": 5375.003840046061, + "center": [ + 1921.274127156056, + 5374.3801019615985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.274127156056, + 5373.756363877135 + ], + [ + 1921.274127156056, + 5375.003840046061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5373.756363877135, + "max_x": 1921.645339898731, + "max_y": 5375.003840046061, + "center": [ + 1921.645339898731, + 5374.3801019615985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5373.756363877135 + ], + [ + 1921.645339898731, + 5375.003840046061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.645339898731, + "min_y": 5374.380101961595, + "max_x": 1923.254935607632, + "max_y": 5374.380101961595, + "center": [ + 1922.4501377531815, + 5374.380101961595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.645339898731, + 5374.380101961595 + ], + [ + 1923.254935607632, + 5374.380101961595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E82", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1847.807522099212, + "min_y": 5375.091063698746, + "max_x": 1849.6213267295632, + "max_y": 5376.09873293783, + "center": [ + 1848.7144244143876, + 5375.594898318288 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E83", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.328781990294, + "min_y": 5227.277299955176, + "max_x": 1748.142586620645, + "max_y": 5228.28496919426, + "center": [ + 1747.2356843054695, + 5227.781134574718 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554E84", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1794.39543529761, + "min_y": 5251.978350016665, + "max_x": 1801.7866522102065, + "max_y": 5253.098231367058, + "center": [ + 1798.0910437539083, + 5252.538290691862 + ] + }, + "raw_value": "E10115BA-01", + "clean_value": "E10115BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E85", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1825.77224933313, + "min_y": 5264.140417899541, + "max_x": 1833.1634662457266, + "max_y": 5265.260299249934, + "center": [ + 1829.4678577894283, + 5264.700358574737 + ] + }, + "raw_value": "C10111BA-01", + "clean_value": "C10111BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E86", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1826.420578357004, + "min_y": 5274.909520336517, + "max_x": 1833.8117952696005, + "max_y": 5276.02940168691, + "center": [ + 1830.1161868133022, + 5275.469461011713 + ] + }, + "raw_value": "C10111BA-04", + "clean_value": "C10111BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E87", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1829.544981468402, + "min_y": 5278.278344764879, + "max_x": 1836.9361983809986, + "max_y": 5279.398226115272, + "center": [ + 1833.2405899247003, + 5278.838285440075 + ] + }, + "raw_value": "C10111BA-05", + "clean_value": "C10111BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E88", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1830.465398574414, + "min_y": 5282.0443445914, + "max_x": 1837.8566154870105, + "max_y": 5283.164225941793, + "center": [ + 1834.1610070307122, + 5282.604285266596 + ] + }, + "raw_value": "C10111BA-06", + "clean_value": "C10111BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E89", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1825.581085253406, + "min_y": 5290.756346507304, + "max_x": 1829.2766937097042, + "max_y": 5291.316287182502, + "center": [ + 1827.428889481555, + 5291.036316844903 + ] + }, + "raw_value": "C10111BA-09", + "clean_value": "C10111BA-09", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E8A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1825.18810263829, + "min_y": 5352.807676477374, + "max_x": 1828.8837110945883, + "max_y": 5353.367617152571, + "center": [ + 1827.0359068664393, + 5353.087646814973 + ] + }, + "raw_value": "C10111BA-10", + "clean_value": "C10111BA-10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E8B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1825.18810263829, + "min_y": 5359.813023987996, + "max_x": 1828.8837110945883, + "max_y": 5360.372964663193, + "center": [ + 1827.0359068664393, + 5360.092994325594 + ] + }, + "raw_value": "C10111BA-11", + "clean_value": "C10111BA-11", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554E8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.378562816382, + "min_y": 5271.667341638419, + "max_x": 1831.125973579331, + "max_y": 5272.41475240137, + "center": [ + 1830.7522681978567, + 5272.041047019895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.378562816382, + 5271.667341638419 + ], + [ + 1831.125973579331, + 5272.41475240137 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.378562816382, + "min_y": 5271.667341638419, + "max_x": 1831.125973579331, + "max_y": 5272.41475240137, + "center": [ + 1830.7522681978567, + 5272.041047019895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.378562816382, + 5272.41475240137 + ], + [ + 1831.125973579331, + 5271.667341638419 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.378562816382, + "min_y": 5259.286706950046, + "max_x": 1831.125973579331, + "max_y": 5260.034117712997, + "center": [ + 1830.7522681978567, + 5259.660412331521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.378562816382, + 5259.286706950046 + ], + [ + 1831.125973579331, + 5260.034117712997 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.378562816382, + "min_y": 5259.286706950046, + "max_x": 1831.125973579331, + "max_y": 5260.034117712997, + "center": [ + 1830.7522681978567, + 5259.660412331521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.378562816382, + 5260.034117712997 + ], + [ + 1831.125973579331, + 5259.286706950046 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.329977048827, + "min_y": 5250.750699463859, + "max_x": 1829.077387811776, + "max_y": 5251.498110226811, + "center": [ + 1828.7036824303013, + 5251.124404845335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.329977048827, + 5250.750699463859 + ], + [ + 1829.077387811776, + 5251.498110226811 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.329977048827, + "min_y": 5250.750699463859, + "max_x": 1829.077387811776, + "max_y": 5251.498110226811, + "center": [ + 1828.7036824303013, + 5251.124404845335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.329977048827, + 5251.498110226811 + ], + [ + 1829.077387811776, + 5250.750699463859 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.086296926159, + "min_y": 5250.750699463858, + "max_x": 1824.833707689109, + "max_y": 5251.49811022681, + "center": [ + 1824.460002307634, + 5251.124404845334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.086296926159, + 5250.750699463858 + ], + [ + 1824.833707689109, + 5251.49811022681 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1824.086296926159, + "min_y": 5250.750699463858, + "max_x": 1824.833707689109, + "max_y": 5251.49811022681, + "center": [ + 1824.460002307634, + 5251.124404845334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1824.086296926159, + 5251.49811022681 + ], + [ + 1824.833707689109, + 5250.750699463858 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1815.286244461258, + "min_y": 5250.750699463857, + "max_x": 1816.033655224208, + "max_y": 5251.498110226808, + "center": [ + 1815.659949842733, + 5251.124404845333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1815.286244461258, + 5250.750699463857 + ], + [ + 1816.033655224208, + 5251.498110226808 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1815.286244461258, + "min_y": 5250.750699463857, + "max_x": 1816.033655224208, + "max_y": 5251.498110226808, + "center": [ + 1815.659949842733, + 5251.124404845333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1815.286244461258, + 5251.498110226808 + ], + [ + 1816.033655224208, + 5250.750699463857 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1809.07707038704, + "min_y": 5250.750699463857, + "max_x": 1809.824481149989, + "max_y": 5251.498110226808, + "center": [ + 1809.4507757685146, + 5251.124404845333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.07707038704, + 5250.750699463857 + ], + [ + 1809.824481149989, + 5251.498110226808 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1809.07707038704, + "min_y": 5250.750699463857, + "max_x": 1809.824481149989, + "max_y": 5251.498110226808, + "center": [ + 1809.4507757685146, + 5251.124404845333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1809.07707038704, + 5251.498110226808 + ], + [ + 1809.824481149989, + 5250.750699463857 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1802.73388536158, + "min_y": 5250.750699463855, + "max_x": 1803.481296124529, + "max_y": 5251.498110226807, + "center": [ + 1803.1075907430545, + 5251.124404845331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.73388536158, + 5250.750699463855 + ], + [ + 1803.481296124529, + 5251.498110226807 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1802.73388536158, + "min_y": 5250.750699463855, + "max_x": 1803.481296124529, + "max_y": 5251.498110226807, + "center": [ + 1803.1075907430545, + 5251.124404845331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.73388536158, + 5251.498110226807 + ], + [ + 1803.481296124529, + 5250.750699463855 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.76907861183, + "min_y": 5250.750699463855, + "max_x": 1798.516489374778, + "max_y": 5251.498110226807, + "center": [ + 1798.142783993304, + 5251.124404845331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1797.76907861183, + 5250.750699463855 + ], + [ + 1798.516489374778, + 5251.498110226807 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.76907861183, + "min_y": 5250.750699463855, + "max_x": 1798.516489374778, + "max_y": 5251.498110226807, + "center": [ + 1798.142783993304, + 5251.124404845331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1797.76907861183, + 5251.498110226807 + ], + [ + 1798.516489374778, + 5250.750699463855 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554E9C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1951.591080262677, + "min_y": 5427.549866593651, + "max_x": 1958.9822971752735, + "max_y": 5428.6697479440445, + "center": [ + 1955.2866887189753, + 5428.109807268847 + ] + }, + "raw_value": "E10112BA-03", + "clean_value": "E10112BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E9D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1952.065393075528, + "min_y": 5410.386744862613, + "max_x": 1959.4566099881245, + "max_y": 5411.506626213007, + "center": [ + 1955.7610015318262, + 5410.9466855378105 + ] + }, + "raw_value": "E10112BA-04", + "clean_value": "E10112BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E9E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1932.215627548101, + "min_y": 5373.642442445603, + "max_x": 1939.6068444606976, + "max_y": 5374.762323795996, + "center": [ + 1935.9112360043994, + 5374.202383120799 + ] + }, + "raw_value": "D10113BA-01", + "clean_value": "D10113BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554E9F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1932.124970486403, + "min_y": 5364.50781842216, + "max_x": 1939.5161873989996, + "max_y": 5365.627699772554, + "center": [ + 1935.8205789427013, + 5365.067759097357 + ] + }, + "raw_value": "D10113BA-02", + "clean_value": "D10113BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1918.008352761652, + "min_y": 5361.386388100996, + "max_x": 1925.3995696742486, + "max_y": 5362.506269451389, + "center": [ + 1921.7039612179503, + 5361.946328776192 + ] + }, + "raw_value": "D10113BA-03", + "clean_value": "D10113BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1918.004099895634, + "min_y": 5372.111095704653, + "max_x": 1925.3953168082305, + "max_y": 5373.230977055046, + "center": [ + 1921.6997083519323, + 5372.67103637985 + ] + }, + "raw_value": "D10113BA-04", + "clean_value": "D10113BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1954.13906377746, + "min_y": 5380.916683445989, + "max_x": 1961.5302806900565, + "max_y": 5382.036564796383, + "center": [ + 1957.8346722337583, + 5381.4766241211855 + ] + }, + "raw_value": "D10113BA-05", + "clean_value": "D10113BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1967.853168928314, + "min_y": 5362.83977185296, + "max_x": 1976.5882434613827, + "max_y": 5363.959653203354, + "center": [ + 1972.2207061948484, + 5363.399712528157 + ] + }, + "raw_value": "SP10601ABA-04", + "clean_value": "SP10601ABA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA4", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1968.549921687445, + "min_y": 5367.270511197682, + "max_x": 1976.6130674102776, + "max_y": 5368.390392548075, + "center": [ + 1972.5814945488614, + 5367.830451872878 + ] + }, + "raw_value": "SP10601BA-05", + "clean_value": "SP10601BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1992.831712385967, + "min_y": 5363.003287670051, + "max_x": 2000.8948581087996, + "max_y": 5364.123169020444, + "center": [ + 1996.8632852473834, + 5363.563228345247 + ] + }, + "raw_value": "VP10117BA-03", + "clean_value": "VP10117BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1993.424277816631, + "min_y": 5367.939836642591, + "max_x": 2001.4874235394636, + "max_y": 5369.059717992985, + "center": [ + 1997.4558506780472, + 5368.499777317787 + ] + }, + "raw_value": "VP10117BA-04", + "clean_value": "VP10117BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1975.676981335124, + "min_y": 5345.337478815836, + "max_x": 1983.7401270579567, + "max_y": 5346.45736016623, + "center": [ + 1979.7085541965403, + 5345.897419491033 + ] + }, + "raw_value": "SP10601BA-01", + "clean_value": "SP10601BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1987.964330647897, + "min_y": 5349.336114845636, + "max_x": 1996.0274763707296, + "max_y": 5350.455996196029, + "center": [ + 1991.9959035093134, + 5349.896055520832 + ] + }, + "raw_value": "SP10601BA-02", + "clean_value": "SP10601BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EA9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1989.18733523323, + "min_y": 5344.293247916687, + "max_x": 1997.2504809560626, + "max_y": 5345.41312926708, + "center": [ + 1993.2189080946464, + 5344.853188591884 + ] + }, + "raw_value": "SP10601BA-03", + "clean_value": "SP10601BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1984.41310888017, + "min_y": 5361.924031124389, + "max_x": 1992.4762546030026, + "max_y": 5363.043912474783, + "center": [ + 1988.4446817415865, + 5362.483971799586 + ] + }, + "raw_value": "VP10117BA-01", + "clean_value": "VP10117BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2043.600015143536, + "min_y": 5304.178220623339, + "max_x": 2050.9912320561325, + "max_y": 5305.298101973733, + "center": [ + 2047.2956235998342, + 5304.7381612985355 + ] + }, + "raw_value": "T10100BA-07", + "clean_value": "T10100BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1956.018658227918, + "min_y": 5325.880844043009, + "max_x": 1964.0818039507506, + "max_y": 5327.000725393403, + "center": [ + 1960.0502310893344, + 5326.4407847182065 + ] + }, + "raw_value": "HD10114BA-01", + "clean_value": "HD10114BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAD", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1955.928001166221, + "min_y": 5320.991926006952, + "max_x": 1963.9911468890537, + "max_y": 5322.111807357345, + "center": [ + 1959.9595740276372, + 5321.551866682148 + ] + }, + "raw_value": "HD10114BA-02", + "clean_value": "HD10114BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1955.837344104521, + "min_y": 5316.797879569929, + "max_x": 1963.9004898273536, + "max_y": 5317.9177609203225, + "center": [ + 1959.8689169659374, + 5317.357820245126 + ] + }, + "raw_value": "HD10114BA-03", + "clean_value": "HD10114BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EAF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.859308671795, + "min_y": 5287.950821660301, + "max_x": 1916.9224543946275, + "max_y": 5289.070703010694, + "center": [ + 1912.890881533211, + 5288.510762335498 + ] + }, + "raw_value": "HD10118BA-02", + "clean_value": "HD10118BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EB0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5276.152464890023, + "max_x": 1916.8945700508225, + "max_y": 5277.2723462404165, + "center": [ + 1912.862997189406, + 5276.71240556522 + ] + }, + "raw_value": "HD10118BA-05", + "clean_value": "HD10118BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "554EB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5410.526032996244, + "max_x": 1834.358855094082, + "max_y": 5410.526032996244, + "center": [ + 1822.973394698416, + 5410.526032996244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.58793430275, + 5410.526032996244 + ], + [ + 1834.358855094082, + 5410.526032996244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5413.51238326396, + "max_x": 1834.358855094082, + "max_y": 5413.51238326396, + "center": [ + 1822.973394698416, + 5413.51238326396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.58793430275, + 5413.51238326396 + ], + [ + 1834.358855094082, + 5413.51238326396 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EB3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1816.744092016231, + "min_y": 5411.272620563174, + "max_x": 1821.2236174178047, + "max_y": 5412.765795697032, + "center": [ + 1818.983854717018, + 5412.019208130103 + ] + }, + "raw_value": "VAPOR", + "clean_value": "VAPOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EB4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1812.289193338829, + "min_y": 5408.659564078923, + "max_x": 1815.648837390009, + "max_y": 5409.779445429316, + "center": [ + 1813.969015364419, + 5409.219504754119 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EB5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1818.62281360727, + "min_y": 5408.659564078923, + "max_x": 1824.6701728993944, + "max_y": 5409.779445429316, + "center": [ + 1821.6464932533322, + 5409.219504754119 + ] + }, + "raw_value": "70~98%%DC", + "clean_value": "70~98%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EB6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1812.153207746282, + "min_y": 5406.046507594671, + "max_x": 1816.1847806076983, + "max_y": 5407.166388945065, + "center": [ + 1814.16899417699, + 5406.6064482698675 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EB7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1818.486828014721, + "min_y": 5406.046507594671, + "max_x": 1829.9096177887336, + "max_y": 5407.166388945065, + "center": [ + 1824.1982229017271, + 5406.6064482698675 + ] + }, + "raw_value": "0.089~-0.085 MPaG", + "clean_value": "0.089~-0.085 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.727376453232, + "min_y": 5405.299920027742, + "max_x": 1817.727376453232, + "max_y": 5410.526032996244, + "center": [ + 1817.727376453232, + 5407.912976511992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.727376453232, + 5410.526032996244 + ], + [ + 1817.727376453232, + 5405.299920027742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5405.299920027742, + "max_x": 1811.58793430275, + "max_y": 5413.51238326396, + "center": [ + 1811.58793430275, + 5409.406151645851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.58793430275, + 5413.51238326396 + ], + [ + 1811.58793430275, + 5405.299920027742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.358855094082, + "min_y": 5405.299920027742, + "max_x": 1834.358855094082, + "max_y": 5413.51238326396, + "center": [ + 1834.358855094082, + 5409.406151645851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.358855094082, + 5413.51238326396 + ], + [ + 1834.358855094082, + 5405.299920027742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EBB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1962.0179347854, + "min_y": 5389.302900028249, + "max_x": 1967.4593486764536, + "max_y": 5390.3105692673325, + "center": [ + 1964.7386417309267, + 5389.806734647791 + ] + }, + "raw_value": "PSV-10111", + "clean_value": "PSV-10111", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EBC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1962.092880191084, + "min_y": 5387.671078222926, + "max_x": 1967.5342940821376, + "max_y": 5388.67874746201, + "center": [ + 1964.8135871366107, + 5388.174912842467 + ] + }, + "raw_value": "125Ax200A", + "clean_value": "125Ax200A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EBD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1961.616199453724, + "min_y": 5386.138882410269, + "max_x": 1968.2668164316783, + "max_y": 5387.146551649353, + "center": [ + 1964.9415079427013, + 5386.64271702981 + ] + }, + "raw_value": "SP: 0.19MPa", + "clean_value": "SP: 0.19MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.046634726192, + "min_y": 5350.513363907083, + "max_x": 1830.046634726192, + "max_y": 5351.612818631327, + "center": [ + 1830.046634726192, + 5351.063091269205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.046634726192, + 5351.612818631327 + ], + [ + 1830.046634726192, + 5350.513363907083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.617234190849, + "min_y": 5350.493037488709, + "max_x": 1829.617234190849, + "max_y": 5351.633145049699, + "center": [ + 1829.617234190849, + 5351.063091269204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.617234190849, + 5351.633145049699 + ], + [ + 1829.617234190849, + 5350.493037488709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.225546668783, + "min_y": 5307.71316692738, + "max_x": 2035.225546668783, + "max_y": 5308.288687787953, + "center": [ + 2035.225546668783, + 5308.000927357667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668783, + 5307.71316692738 + ], + [ + 2035.225546668783, + 5308.288687787953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2035.0075601525616, + "min_y": 5308.842144727833, + "max_x": 2035.4435331850043, + "max_y": 5309.2781177602765, + "center": [ + 2035.225546668783, + 5309.060131244055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668783, + 5309.060131244055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.872408512504, + "min_y": 5308.288687787953, + "max_x": 2035.578684825066, + "max_y": 5308.288687787953, + "center": [ + 2035.225546668785, + 5308.288687787953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.578684825066, + 5308.288687787953 + ], + [ + 2034.872408512504, + 5308.288687787953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.872408512504, + "min_y": 5309.831574700156, + "max_x": 2035.578684825066, + "max_y": 5309.831574700156, + "center": [ + 2035.225546668785, + 5309.831574700156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.578684825066, + 5309.831574700156 + ], + [ + 2034.872408512504, + 5309.831574700156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.885000366386, + "min_y": 5308.491361201799, + "max_x": 2035.113566629065, + "max_y": 5308.873105598862, + "center": [ + 2034.9992834977256, + 5308.68223340033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.113566629065, + 5308.873105598862 + ], + [ + 2034.885000366386, + 5308.491361201799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.885000366386, + "min_y": 5308.491361201799, + "max_x": 2035.566092971183, + "max_y": 5308.491361201799, + "center": [ + 2035.2255466687845, + 5308.491361201799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.885000366386, + 5308.491361201799 + ], + [ + 2035.566092971183, + 5308.491361201799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.337526708501, + "min_y": 5308.491361201799, + "max_x": 2035.566092971183, + "max_y": 5308.873105598862, + "center": [ + 2035.451809839842, + 5308.68223340033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.566092971183, + 5308.491361201799 + ], + [ + 2035.337526708501, + 5308.873105598862 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.885000366386, + "min_y": 5309.247156889246, + "max_x": 2035.113566629065, + "max_y": 5309.628901286314, + "center": [ + 2034.9992834977256, + 5309.43802908778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.113566629065, + 5309.247156889246 + ], + [ + 2034.885000366386, + 5309.628901286314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.885000366386, + "min_y": 5309.628901286314, + "max_x": 2035.566092971183, + "max_y": 5309.628901286314, + "center": [ + 2035.2255466687845, + 5309.628901286314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.885000366386, + 5309.628901286314 + ], + [ + 2035.566092971183, + 5309.628901286314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.337526708501, + "min_y": 5309.247156889246, + "max_x": 2035.566092971183, + "max_y": 5309.628901286314, + "center": [ + 2035.451809839842, + 5309.43802908778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.566092971183, + 5309.628901286314 + ], + [ + 2035.337526708501, + 5309.247156889246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ECA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.225546668784, + "min_y": 5309.831574700156, + "max_x": 2035.225546668784, + "max_y": 5310.268437540472, + "center": [ + 2035.225546668784, + 5310.050006120315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668784, + 5309.831574700156 + ], + [ + 2035.225546668784, + 5310.268437540472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ECB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.225546668784, + "min_y": 5310.810398611516, + "max_x": 2035.225546668784, + "max_y": 5311.189347001491, + "center": [ + 2035.225546668784, + 5310.999872806504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668784, + 5310.810398611516 + ], + [ + 2035.225546668784, + 5311.189347001491 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ECC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2033.871079055234, + "min_y": 5314.55982726614, + "max_x": 2035.8660603510793, + "max_y": 5316.222311679344, + "center": [ + 2034.8685697031567, + 5315.391069472742 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554ECD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2033.7979833628428, + "min_y": 5307.808338822025, + "max_x": 2036.6531099747253, + "max_y": 5310.663465433908, + "center": [ + 2035.225546668784, + 5309.235902127966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668784, + 5309.235902127966 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.643495841363, + "min_y": 5310.810398611516, + "max_x": 2035.807597496206, + "max_y": 5310.810398611516, + "center": [ + 2035.2255466687843, + 5310.810398611516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.643495841363, + 5310.810398611516 + ], + [ + 2035.807597496206, + 5310.810398611516 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ECF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.643495841363, + "min_y": 5310.268437540472, + "max_x": 2035.807597496206, + "max_y": 5310.268437540472, + "center": [ + 2035.2255466687843, + 5310.268437540472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.807597496206, + 5310.268437540472 + ], + [ + 2034.643495841363, + 5310.268437540472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ED0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2033.272958725473, + "min_y": 5311.9615458296, + "max_x": 2038.260411965086, + "max_y": 5313.624030242804, + "center": [ + 2035.7666853452795, + 5312.792788036202 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554ED1", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2032.3527979209862, + "min_y": 5311.18934700149, + "max_x": 2038.098295416582, + "max_y": 5316.9348444970865, + "center": [ + 2035.225546668784, + 5314.062095749288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.225546668784, + 5314.062095749288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554ED2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.807597496206, + "min_y": 5310.268437540472, + "max_x": 2035.807597496206, + "max_y": 5310.810398611516, + "center": [ + 2035.807597496206, + 5310.539418075994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.807597496206, + 5310.268437540472 + ], + [ + 2035.807597496206, + 5310.810398611516 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554ED3", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1951.291790761694, + "min_y": 5390.841364289913, + "max_x": 1953.725869975692, + "max_y": 5390.841364289913, + "center": [ + 1952.508830368693, + 5390.841364289913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.291790761694, + 5390.841364289913 + ], + [ + 1953.725869975692, + 5390.841364289913 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554ED4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.467237313969, + "min_y": 5417.90904992311, + "max_x": 1941.218950211667, + "max_y": 5417.90904992311, + "center": [ + 1940.3430937628182, + 5417.90904992311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.218950211667, + 5417.90904992311 + ], + [ + 1939.467237313969, + 5417.90904992311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ED5", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1942.915054815137, + "min_y": 5417.909049923112, + "max_x": 1945.585623883262, + "max_y": 5417.909049923112, + "center": [ + 1944.2503393491995, + 5417.909049923112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.915054815137, + 5417.909049923112 + ], + [ + 1945.585623883262, + 5417.909049923112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554ED6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.09386518643, + "min_y": 5417.594015432557, + "max_x": 1940.723934167543, + "max_y": 5418.224084413664, + "center": [ + 1940.4088996769865, + 5417.909049923111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.09386518643, + 5417.594015432557 + ], + [ + 1940.723934167543, + 5418.224084413664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ED7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.778830695876, + "min_y": 5417.594015432557, + "max_x": 1940.408899676989, + "max_y": 5418.224084413664, + "center": [ + 1940.0938651864326, + 5417.909049923111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.408899676989, + 5418.224084413664 + ], + [ + 1939.778830695876, + 5417.594015432557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.46379620532, + "min_y": 5417.594015432557, + "max_x": 1940.09386518643, + "max_y": 5418.224084413664, + "center": [ + 1939.778830695875, + 5417.909049923111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1939.46379620532, + 5417.594015432557 + ], + [ + 1940.09386518643, + 5418.224084413664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554ED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1939.46379620532, + "min_y": 5417.90904992311, + "max_x": 1941.218950211667, + "max_y": 5417.90904992311, + "center": [ + 1940.3413732084937, + 5417.90904992311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.218950211667, + 5417.90904992311 + ], + [ + 1939.46379620532, + 5417.90904992311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.218950211667, + "min_y": 5417.278980941994, + "max_x": 1942.479088173887, + "max_y": 5417.90904992311, + "center": [ + 1941.8490191927772, + 5417.594015432552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.218950211667, + 5417.90904992311 + ], + [ + 1942.479088173887, + 5417.278980941994 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.479088173887, + "min_y": 5417.278980941994, + "max_x": 1942.479088173887, + "max_y": 5418.539118904223, + "center": [ + 1942.479088173887, + 5417.909049923108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.479088173887, + 5417.278980941994 + ], + [ + 1942.479088173887, + 5418.539118904223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.218950211667, + "min_y": 5417.90904992311, + "max_x": 1942.479088173887, + "max_y": 5418.539118904223, + "center": [ + 1941.8490191927772, + 5418.224084413667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.479088173887, + 5418.539118904223 + ], + [ + 1941.218950211667, + 5417.90904992311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.588881230552, + "min_y": 5417.90904992311, + "max_x": 1941.218950211667, + "max_y": 5419.169187885333, + "center": [ + 1940.9039157211096, + 5418.539118904221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.218950211667, + 5417.90904992311 + ], + [ + 1940.588881230552, + 5419.169187885333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.588881230552, + "min_y": 5419.169187885333, + "max_x": 1941.849019192772, + "max_y": 5419.169187885333, + "center": [ + 1941.218950211662, + 5419.169187885333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.588881230552, + 5419.169187885333 + ], + [ + 1941.849019192772, + 5419.169187885333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.218950211667, + "min_y": 5417.90904992311, + "max_x": 1941.849019192772, + "max_y": 5419.169187885333, + "center": [ + 1941.5339847022196, + 5418.539118904221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.849019192772, + 5419.169187885333 + ], + [ + 1941.218950211667, + 5417.90904992311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1942.915054815137, + "min_y": 5417.278980941994, + "max_x": 1942.915054815137, + "max_y": 5418.539118904223, + "center": [ + 1942.915054815137, + 5417.909049923108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.915054815137, + 5417.278980941994 + ], + [ + 1942.915054815137, + 5418.539118904223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1940.588881230552, + "min_y": 5419.595986092573, + "max_x": 1941.849019192772, + "max_y": 5419.595986092573, + "center": [ + 1941.218950211662, + 5419.595986092573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1940.588881230552, + 5419.595986092573 + ], + [ + 1941.849019192772, + 5419.595986092573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1931.55878172089, + "min_y": 5418.795330758713, + "max_x": 1937.0001956119436, + "max_y": 5419.802999997797, + "center": [ + 1934.279488666417, + 5419.299165378256 + ] + }, + "raw_value": "PSV-10112", + "clean_value": "PSV-10112", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EE3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1932.304381388646, + "min_y": 5417.163507616159, + "max_x": 1936.536592192799, + "max_y": 5418.171176855243, + "center": [ + 1934.4204867907224, + 5417.667342235702 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EE4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1931.492373519245, + "min_y": 5415.630808637498, + "max_x": 1937.5383889537488, + "max_y": 5416.638477876582, + "center": [ + 1934.515381236497, + 5416.134643257041 + ] + }, + "raw_value": "SP: 0.6MPa", + "clean_value": "SP: 0.6MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.47220940699, + "min_y": 5338.60880863632, + "max_x": 1866.47220940699, + "max_y": 5340.360521534019, + "center": [ + 1866.47220940699, + 5339.48466508517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.47220940699, + 5338.60880863632 + ], + [ + 1866.47220940699, + 5340.360521534019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1866.472209406993, + "min_y": 5331.320711253039, + "max_x": 1866.472209406993, + "max_y": 5336.912704032851, + "center": [ + 1866.472209406993, + 5334.116707642945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.472209406993, + 5336.912704032851 + ], + [ + 1866.472209406993, + 5331.320711253039 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.157174916437, + "min_y": 5339.103824680445, + "max_x": 1866.787243897544, + "max_y": 5339.733893661557, + "center": [ + 1866.4722094069905, + 5339.418859171001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.157174916437, + 5339.733893661557 + ], + [ + 1866.787243897544, + 5339.103824680445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.157174916437, + "min_y": 5339.418859170998, + "max_x": 1866.787243897544, + "max_y": 5340.048928152111, + "center": [ + 1866.4722094069905, + 5339.733893661554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.787243897544, + 5339.418859170998 + ], + [ + 1866.157174916437, + 5340.048928152111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.157174916437, + "min_y": 5339.733893661557, + "max_x": 1866.787243897544, + "max_y": 5340.363962642666, + "center": [ + 1866.4722094069905, + 5340.048928152111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.157174916437, + 5340.363962642666 + ], + [ + 1866.787243897544, + 5339.733893661557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.47220940699, + "min_y": 5338.60880863632, + "max_x": 1866.47220940699, + "max_y": 5340.363962642666, + "center": [ + 1866.47220940699, + 5339.486385639493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.47220940699, + 5338.60880863632 + ], + [ + 1866.47220940699, + 5340.363962642666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.842140425875, + "min_y": 5337.348670674099, + "max_x": 1866.47220940699, + "max_y": 5338.60880863632, + "center": [ + 1866.1571749164325, + 5337.978739655209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.47220940699, + 5338.60880863632 + ], + [ + 1865.842140425875, + 5337.348670674099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.842140425875, + "min_y": 5337.348670674099, + "max_x": 1867.102278388103, + "max_y": 5337.348670674099, + "center": [ + 1866.472209406989, + 5337.348670674099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.842140425875, + 5337.348670674099 + ], + [ + 1867.102278388103, + 5337.348670674099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.47220940699, + "min_y": 5337.348670674099, + "max_x": 1867.102278388103, + "max_y": 5338.60880863632, + "center": [ + 1866.7872438975464, + 5337.978739655209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.102278388103, + 5337.348670674099 + ], + [ + 1866.47220940699, + 5338.60880863632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.47220940699, + "min_y": 5338.60880863632, + "max_x": 1867.732347369213, + "max_y": 5339.238877617435, + "center": [ + 1867.1022783881015, + 5338.923843126877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.47220940699, + 5338.60880863632 + ], + [ + 1867.732347369213, + 5339.238877617435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1867.732347369213, + "min_y": 5337.978739655216, + "max_x": 1867.732347369213, + "max_y": 5339.238877617435, + "center": [ + 1867.732347369213, + 5338.608808636325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.732347369213, + 5339.238877617435 + ], + [ + 1867.732347369213, + 5337.978739655216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.47220940699, + "min_y": 5337.978739655216, + "max_x": 1867.732347369213, + "max_y": 5338.60880863632, + "center": [ + 1867.1022783881015, + 5338.293774145768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.732347369213, + 5337.978739655216 + ], + [ + 1866.47220940699, + 5338.60880863632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.842140425875, + "min_y": 5336.912704032851, + "max_x": 1867.102278388103, + "max_y": 5336.912704032851, + "center": [ + 1866.472209406989, + 5336.912704032851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.842140425875, + 5336.912704032851 + ], + [ + 1867.102278388103, + 5336.912704032851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.159145576453, + "min_y": 5337.978739655216, + "max_x": 1868.159145576453, + "max_y": 5339.238877617435, + "center": [ + 1868.159145576453, + 5338.608808636325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.159145576453, + 5339.238877617435 + ], + [ + 1868.159145576453, + 5337.978739655216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EF3", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1868.159145576453, + "min_y": 5338.608808636325, + "max_x": 1870.812454308834, + "max_y": 5338.608808636325, + "center": [ + 1869.4857999426436, + 5338.608808636325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.159145576453, + 5338.608808636325 + ], + [ + 1870.812454308834, + 5338.608808636325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EF4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1862.433569875505, + "min_y": 5329.916556828584, + "max_x": 1867.8749837665587, + "max_y": 5330.924226067668, + "center": [ + 1865.154276821032, + 5330.420391448126 + ] + }, + "raw_value": "PSV-10117", + "clean_value": "PSV-10117", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EF5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1863.355509225343, + "min_y": 5328.28473368603, + "max_x": 1867.5877200294958, + "max_y": 5329.292402925114, + "center": [ + 1865.4716146274195, + 5328.788568305572 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EF6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1862.543501355942, + "min_y": 5326.752034707368, + "max_x": 1868.589516790446, + "max_y": 5327.759703946452, + "center": [ + 1865.566509073194, + 5327.255869326909 + ] + }, + "raw_value": "SP: 0.6MPa", + "clean_value": "SP: 0.6MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554EF7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1940.019209805657, + "min_y": 5398.25984590043, + "max_x": 1943.9379226175, + "max_y": 5399.566083504378, + "center": [ + 1941.9785662115785, + 5398.912964702404 + ] + }, + "raw_value": "10112", + "clean_value": "10112", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554EF8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1941.170037790675, + "min_y": 5400.57631110487, + "max_x": 1942.7375229154122, + "max_y": 5401.882548708818, + "center": [ + 1941.9537803530436, + 5401.2294299068435 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554EF9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1939.3305615040983, + "min_y": 5397.079232182414, + "max_x": 1945.0546902937538, + "max_y": 5402.80336097207, + "center": [ + 1942.192625898926, + 5399.941296577242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1942.192625898926, + 5399.941296577242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554EFA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2024.062468736281, + "min_y": 5144.394342586694, + "max_x": 2041.999837118496, + "max_y": 5146.694005199798, + "center": [ + 2033.0311529273886, + 5145.544173893246 + ] + }, + "raw_value": "PGMEA PROCESS", + "clean_value": "PGMEA PROCESS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554EFB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1744.569397209894, + "min_y": 5230.603300926434, + "max_x": 1745.7786002967948, + "max_y": 5231.610970165518, + "center": [ + 1745.1739987533444, + 5231.107135545975 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EFC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1735.016205876534, + "min_y": 5226.698073798541, + "max_x": 1736.8300105068852, + "max_y": 5227.705743037625, + "center": [ + 1735.9231081917096, + 5227.201908418083 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EFD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1870.072187094121, + "min_y": 5221.49500111267, + "max_x": 1871.042179729771, + "max_y": 5222.303328309045, + "center": [ + 1870.557183411946, + 5221.899164710858 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EFE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1856.372190879026, + "min_y": 5218.415186220883, + "max_x": 1857.8271798325009, + "max_y": 5219.223513417258, + "center": [ + 1857.0996853557635, + 5218.81934981907 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554EFF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1845.919597814415, + "min_y": 5378.597303724294, + "max_x": 1847.1288009013158, + "max_y": 5379.604972963378, + "center": [ + 1846.5241993578654, + 5379.101138343836 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.30891495473, + "min_y": 5376.452653437779, + "max_x": 1829.30891495473, + "max_y": 5377.552108162021, + "center": [ + 1829.30891495473, + 5377.0023807999005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.30891495473, + 5377.552108162021 + ], + [ + 1829.30891495473, + 5376.452653437779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.879514419387, + "min_y": 5376.432327019404, + "max_x": 1828.879514419387, + "max_y": 5377.572434580399, + "center": [ + 1828.879514419387, + 5377.002380799901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.879514419387, + 5377.572434580399 + ], + [ + 1828.879514419387, + 5376.432327019404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1880.447082169889, + "min_y": 5306.585624953777, + "max_x": 1881.710432710428, + "max_y": 5306.585624953783, + "center": [ + 1881.0787574401584, + 5306.58562495378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.710432710428, + 5306.585624953777 + ], + [ + 1880.447082169889, + 5306.585624953783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.047722643479, + "min_y": 5306.034077572011, + "max_x": 1882.047722643479, + "max_y": 5307.133532296256, + "center": [ + 1882.047722643479, + 5306.583804934133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.047722643479, + 5306.034077572011 + ], + [ + 1882.047722643479, + 5307.133532296256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1881.710432710428, + "min_y": 5306.034077572011, + "max_x": 1881.710432710428, + "max_y": 5307.133532296256, + "center": [ + 1881.710432710428, + 5306.583804934133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1881.710432710428, + 5306.034077572011 + ], + [ + 1881.710432710428, + 5307.133532296256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.047722643479, + "min_y": 5306.02972963638, + "max_x": 1882.047722643479, + "max_y": 5307.141520271185, + "center": [ + 1882.047722643479, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.047722643479, + 5307.141520271185 + ], + [ + 1882.047722643479, + 5306.02972963638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.047722643479, + "min_y": 5306.02972963638, + "max_x": 1882.047722643479, + "max_y": 5307.141520271185, + "center": [ + 1882.047722643479, + 5306.585624953783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.047722643479, + 5307.141520271185 + ], + [ + 1882.047722643479, + 5306.02972963638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F07", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1877.666379758522, + "min_y": 5304.352661753224, + "max_x": 1879.480184388873, + "max_y": 5305.360330992308, + "center": [ + 1878.5732820736976, + 5304.856496372766 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F08", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5311.647073655265, + "max_x": 2032.176772552544, + "max_y": 5311.647073655265, + "center": [ + 2025.9612616127124, + 5311.647073655265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2019.745750672881, + 5311.647073655265 + ], + [ + 2032.176772552544, + 5311.647073655265 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F09", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1930.153917773424, + "min_y": 5322.383812141568, + "max_x": 1931.967722403775, + "max_y": 5323.391481380652, + "center": [ + 1931.0608200885995, + 5322.88764676111 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F0A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1677.745386962129, + "min_y": 5183.647007412147, + "max_x": 1704.5706370797113, + "max_y": 5185.447007412147, + "center": [ + 1691.15801202092, + 5184.547007412148 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,100 x 1,259H\\PVOLUME : 1.46M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5326.752493181404, + "max_x": 1844.715754853808, + "max_y": 5332.58941805623, + "center": [ + 1844.715754853808, + 5329.670955618817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5332.58941805623 + ], + [ + 1844.715754853808, + 5326.752493181404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5331.118569813072, + "max_x": 1845.696320349247, + "max_y": 5332.099135308511, + "center": [ + 1845.2060376015274, + 5331.608852560792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5331.118569813072 + ], + [ + 1845.696320349247, + 5332.099135308511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5330.42520530185, + "max_x": 1845.696320349247, + "max_y": 5331.405770797289, + "center": [ + 1845.2060376015274, + 5330.91548804957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5330.42520530185 + ], + [ + 1845.696320349247, + 5331.405770797289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5329.731840790627, + "max_x": 1845.696320349247, + "max_y": 5330.712406286066, + "center": [ + 1845.2060376015274, + 5330.222123538346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5329.731840790627 + ], + [ + 1845.696320349247, + 5330.712406286066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5329.038476279404, + "max_x": 1845.696320349247, + "max_y": 5330.019041774843, + "center": [ + 1845.2060376015274, + 5329.528759027124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5329.038476279404 + ], + [ + 1845.696320349247, + 5330.019041774843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5328.345111768181, + "max_x": 1845.696320349247, + "max_y": 5329.325677263621, + "center": [ + 1845.2060376015274, + 5328.8353945159015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5328.345111768181 + ], + [ + 1845.696320349247, + 5329.325677263621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.715754853808, + "min_y": 5327.651747256958, + "max_x": 1845.696320349247, + "max_y": 5328.632312752398, + "center": [ + 1845.2060376015274, + 5328.1420300046775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.715754853808, + 5327.651747256958 + ], + [ + 1845.696320349247, + 5328.632312752398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F15", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1844.13197568828, + "min_y": 5327.072070740517, + "max_x": 1846.8196909292242, + "max_y": 5328.565245874375, + "center": [ + 1845.475833308752, + 5327.818658307446 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F16", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1943.009422916805, + "min_y": 5322.986824684885, + "max_x": 1944.8232275471562, + "max_y": 5323.994493923969, + "center": [ + 1943.9163252319806, + 5323.490659304427 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F17", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1977.528585719664, + "min_y": 5364.542580902256, + "max_x": 1978.7377888065648, + "max_y": 5365.55025014134, + "center": [ + 1978.1331872631145, + 5365.046415521798 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F18", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1974.207849131463, + "min_y": 5366.847860899465, + "max_x": 1976.0216537618142, + "max_y": 5367.855530138549, + "center": [ + 1975.1147514466386, + 5367.351695519006 + ] + }, + "raw_value": "32A", + "clean_value": "32A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.954144222041, + "min_y": 5267.993562077, + "max_x": 1729.954144222041, + "max_y": 5281.324468118924, + "center": [ + 1729.954144222041, + 5274.659015097963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.954144222041, + 5267.993562077 + ], + [ + 1729.954144222041, + 5281.324468118924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.58317490561, + "min_y": 5267.993562077, + "max_x": 1722.58317490561, + "max_y": 5281.324468118924, + "center": [ + 1722.58317490561, + 5274.659015097963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.58317490561, + 5267.993562077 + ], + [ + 1722.58317490561, + 5281.324468118924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.554490827959, + "min_y": 5282.184743842127, + "max_x": 1729.554490827959, + "max_y": 5282.760264702701, + "center": [ + 1729.554490827959, + 5282.472504272414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.554490827959, + 5282.184743842127 + ], + [ + 1729.554490827959, + 5282.760264702701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F1D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1729.3365043117376, + "min_y": 5283.313721642581, + "max_x": 1729.7724773441803, + "max_y": 5283.749694675024, + "center": [ + 1729.554490827959, + 5283.531708158803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.554490827959, + 5283.531708158803 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.201352671679, + "min_y": 5282.760264702701, + "max_x": 1729.90762898424, + "max_y": 5282.760264702701, + "center": [ + 1729.5544908279594, + 5282.760264702701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.90762898424, + 5282.760264702701 + ], + [ + 1729.201352671679, + 5282.760264702701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.201352671679, + "min_y": 5284.303151614904, + "max_x": 1729.90762898424, + "max_y": 5284.303151614904, + "center": [ + 1729.5544908279594, + 5284.303151614904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.90762898424, + 5284.303151614904 + ], + [ + 1729.201352671679, + 5284.303151614904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5282.511422728011, + "max_x": 1726.268659563827, + "max_y": 5282.937430463567, + "center": [ + 1726.268659563827, + 5282.724426595789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5282.511422728011 + ], + [ + 1726.268659563827, + 5282.937430463567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5283.16898780656, + "max_x": 1726.268659563827, + "max_y": 5284.254309818004, + "center": [ + 1726.268659563827, + 5283.711648812282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5283.16898780656 + ], + [ + 1726.268659563827, + 5284.254309818004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.213944525561, + "min_y": 5282.962938116546, + "max_x": 1729.44251078824, + "max_y": 5283.34468251361, + "center": [ + 1729.3282276569005, + 5283.153810315078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.44251078824, + 5283.34468251361 + ], + [ + 1729.213944525561, + 5282.962938116546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.213944525561, + "min_y": 5282.962938116546, + "max_x": 1729.895037130359, + "max_y": 5282.962938116546, + "center": [ + 1729.5544908279599, + 5282.962938116546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.213944525561, + 5282.962938116546 + ], + [ + 1729.895037130359, + 5282.962938116546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.666470867677, + "min_y": 5282.962938116546, + "max_x": 1729.895037130359, + "max_y": 5283.34468251361, + "center": [ + 1729.780753999018, + 5283.153810315078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.895037130359, + 5282.962938116546 + ], + [ + 1729.666470867677, + 5283.34468251361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.213944525561, + "min_y": 5283.718733803993, + "max_x": 1729.44251078824, + "max_y": 5284.100478201061, + "center": [ + 1729.3282276569005, + 5283.909606002528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.44251078824, + 5283.718733803993 + ], + [ + 1729.213944525561, + 5284.100478201061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.213944525561, + "min_y": 5284.100478201061, + "max_x": 1729.895037130359, + "max_y": 5284.100478201061, + "center": [ + 1729.5544908279599, + 5284.100478201061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.213944525561, + 5284.100478201061 + ], + [ + 1729.895037130359, + 5284.100478201061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.666470867677, + "min_y": 5283.718733803993, + "max_x": 1729.895037130359, + "max_y": 5284.100478201061, + "center": [ + 1729.780753999018, + 5283.909606002528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.895037130359, + 5284.100478201061 + ], + [ + 1729.666470867677, + 5283.718733803993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F28", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1731.3175313256, + "min_y": 5272.167899794535, + "max_x": 1736.0199866998114, + "max_y": 5273.4741373984825, + "center": [ + 1733.6687590127058, + 5272.821018596509 + ] + }, + "raw_value": "10101B", + "clean_value": "10101B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.694852644933, + "min_y": 5267.378550013763, + "max_x": 1722.58317490561, + "max_y": 5267.993562077, + "center": [ + 1721.6390137752715, + 5267.6860560453815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.58317490561, + 5267.993562077 + ], + [ + 1720.694852644933, + 5267.378550013763 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5263.967902868045, + "max_x": 1726.268659563827, + "max_y": 5266.806607467914, + "center": [ + 1726.268659563827, + 5265.38725516798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5266.806607467914 + ], + [ + 1726.268659563827, + 5263.967902868045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1725.404239449226, + "min_y": 5280.908454593394, + "max_x": 1727.4200258799342, + "max_y": 5282.028335943787, + "center": [ + 1726.41213266458, + 5281.46839526859 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F2D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1732.148788280812, + "min_y": 5274.019311141871, + "max_x": 1733.7162734055491, + "max_y": 5275.325548745819, + "center": [ + 1732.9325308431805, + 5274.672429943845 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.50727845811, + "min_y": 5268.456273537481, + "max_x": 1730.50727845811, + "max_y": 5269.137366142278, + "center": [ + 1730.50727845811, + 5268.796819839879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.50727845811, + 5268.456273537481 + ], + [ + 1730.50727845811, + 5269.137366142278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.50727845811, + "min_y": 5268.456273537481, + "max_x": 1730.50727845811, + "max_y": 5269.162549850043, + "center": [ + 1730.50727845811, + 5268.809411693763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.50727845811, + 5268.456273537481 + ], + [ + 1730.50727845811, + 5269.162549850043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F30", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1731.0607353979906, + "min_y": 5268.59142517754, + "max_x": 1731.4967084304333, + "max_y": 5269.027398209983, + "center": [ + 1731.278721914212, + 5268.809411693762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.278721914212, + 5268.809411693762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.50727845811, + "min_y": 5268.456273537481, + "max_x": 1730.50727845811, + "max_y": 5269.162549850043, + "center": [ + 1730.50727845811, + 5268.809411693763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.50727845811, + 5268.456273537481 + ], + [ + 1730.50727845811, + 5269.162549850043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.050165370314, + "min_y": 5268.456273537481, + "max_x": 1732.050165370314, + "max_y": 5269.162549850043, + "center": [ + 1732.050165370314, + 5268.809411693763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.050165370314, + 5268.456273537481 + ], + [ + 1732.050165370314, + 5269.162549850043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.709951871952, + "min_y": 5268.921391733481, + "max_x": 1731.09169626902, + "max_y": 5269.14995799616, + "center": [ + 1730.9008240704861, + 5269.035674864821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.09169626902, + 5268.921391733481 + ], + [ + 1730.709951871952, + 5269.14995799616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.709951871952, + "min_y": 5268.468865391362, + "max_x": 1730.709951871952, + "max_y": 5269.14995799616, + "center": [ + 1730.709951871952, + 5268.809411693761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.709951871952, + 5269.14995799616 + ], + [ + 1730.709951871952, + 5268.468865391362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.709951871952, + "min_y": 5268.468865391362, + "max_x": 1731.09169626902, + "max_y": 5268.69743165404, + "center": [ + 1730.9008240704861, + 5268.583148522701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.709951871952, + 5268.468865391362 + ], + [ + 1731.09169626902, + 5268.69743165404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.465747559399, + "min_y": 5268.921391733481, + "max_x": 1731.847491956471, + "max_y": 5269.14995799616, + "center": [ + 1731.656619757935, + 5269.035674864821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.465747559399, + 5268.921391733481 + ], + [ + 1731.847491956471, + 5269.14995799616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.847491956471, + "min_y": 5268.468865391362, + "max_x": 1731.847491956471, + "max_y": 5269.14995799616, + "center": [ + 1731.847491956471, + 5268.809411693761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.847491956471, + 5269.14995799616 + ], + [ + 1731.847491956471, + 5268.468865391362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.465747559399, + "min_y": 5268.468865391362, + "max_x": 1731.847491956471, + "max_y": 5268.69743165404, + "center": [ + 1731.656619757935, + 5268.583148522701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.847491956471, + 5268.468865391362 + ], + [ + 1731.465747559399, + 5268.69743165404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F39", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 1725.942418210363, + "min_y": 5282.937430463569, + "max_x": 1726.594900917291, + "max_y": 5282.937430463569, + "center": [ + 1726.268659563827, + 5282.937430463569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.942418210363, + 5282.937430463569 + ], + [ + 1726.594900917291, + 5282.937430463569 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F3A", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 1725.942418210363, + "min_y": 5283.16898780656, + "max_x": 1726.594900917291, + "max_y": 5283.16898780656, + "center": [ + 1726.268659563827, + 5283.16898780656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.942418210363, + 5283.16898780656 + ], + [ + 1726.594900917291, + 5283.16898780656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.954144222041, + "min_y": 5268.809411693761, + "max_x": 1730.50727845811, + "max_y": 5268.809411693761, + "center": [ + 1730.2307113400755, + 5268.809411693761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.954144222041, + 5268.809411693761 + ], + [ + 1730.50727845811, + 5268.809411693761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.888838569947, + "min_y": 5281.953920605233, + "max_x": 1722.888886989995, + "max_y": 5282.594205392716, + "center": [ + 1722.888862779971, + 5282.274062998975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5281.953920605233 + ], + [ + 1722.888838569947, + 5282.594205392716 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.888886989995, + "min_y": 5270.625511691251, + "max_x": 1722.888886989995, + "max_y": 5281.953920605233, + "center": [ + 1722.888886989995, + 5276.2897161482415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5281.953920605233 + ], + [ + 1722.888886989995, + 5270.625511691251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.827367255702, + "min_y": 5280.180664053649, + "max_x": 1721.827367255702, + "max_y": 5280.861756658446, + "center": [ + 1721.827367255702, + 5280.521210356048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.827367255702, + 5280.861756658446 + ], + [ + 1721.827367255702, + 5280.180664053649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669545, + "min_y": 5280.168072199766, + "max_x": 1722.030040669545, + "max_y": 5280.874348512328, + "center": [ + 1722.030040669545, + 5280.521210356047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.030040669545, + 5280.168072199766 + ], + [ + 1722.030040669545, + 5280.874348512328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669542, + "min_y": 5280.508618502167, + "max_x": 1722.58317490561, + "max_y": 5280.508618502167, + "center": [ + 1722.306607787576, + 5280.508618502167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.58317490561, + 5280.508618502167 + ], + [ + 1722.030040669542, + 5280.508618502167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F41", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1678.424358632831, + "min_y": 5274.798681980511, + "max_x": 1704.728409489607, + "max_y": 5274.798989588679, + "center": [ + 1691.576384061219, + 5274.798835784595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.424358632831, + 5274.798681980511 + ], + [ + 1704.728409489607, + 5274.798989588679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F42", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1689.860678527159, + "min_y": 5278.281314391019, + "max_x": 1701.2834683011718, + "max_y": 5279.401195741412, + "center": [ + 1695.5720734141655, + 5278.841255066216 + ] + }, + "raw_value": "P-10103-25A-F1A-n", + "clean_value": "P-10103-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F43", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1688.457999303302, + "min_y": 5280.52090274788, + "max_x": 1709.28893589013, + "max_y": 5280.521124133673, + "center": [ + 1698.873467596716, + 5280.521013440777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.457999303302, + 5280.52090274788 + ], + [ + 1709.28893589013, + 5280.521124133673 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F44", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1676.868258851765, + "min_y": 5280.52090274788, + "max_x": 1686.190389355698, + "max_y": 5280.521210356049, + "center": [ + 1681.5293241037316, + 5280.521056551965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1676.868258851765, + 5280.521210356049 + ], + [ + 1686.190389355698, + 5280.52090274788 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.179651725047, + "min_y": 5280.017136028352, + "max_x": 1688.179651725047, + "max_y": 5281.024669467409, + "center": [ + 1688.179651725047, + 5280.52090274788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.179651725047, + 5280.017136028352 + ], + [ + 1688.179651725047, + 5281.024669467409 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.614941078493, + "min_y": 5280.017136028352, + "max_x": 1688.179651725047, + "max_y": 5280.355251801552, + "center": [ + 1687.89729640177, + 5280.186193914952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.614941078493, + 5280.355251801552 + ], + [ + 1688.179651725047, + 5280.017136028352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.496900120731, + "min_y": 5280.017136028352, + "max_x": 1686.496900120731, + "max_y": 5281.024669467409, + "center": [ + 1686.496900120731, + 5280.52090274788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1686.496900120731, + 5280.017136028352 + ], + [ + 1686.496900120731, + 5281.024669467409 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.496900120731, + "min_y": 5280.017136028352, + "max_x": 1687.061610767283, + "max_y": 5280.355251801552, + "center": [ + 1686.779255444007, + 5280.186193914952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.061610767283, + 5280.355251801552 + ], + [ + 1686.496900120731, + 5280.017136028352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F49", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1687.0158106622084, + "min_y": 5280.198437487198, + "max_x": 1687.6607411835735, + "max_y": 5280.843368008563, + "center": [ + 1687.338275922891, + 5280.52090274788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.338275922891, + 5280.52090274788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.457999303302, + "min_y": 5280.017443636523, + "max_x": 1688.457999303302, + "max_y": 5281.024977075572, + "center": [ + 1688.457999303302, + 5280.521210356048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.457999303302, + 5281.024977075572 + ], + [ + 1688.457999303302, + 5280.017443636523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.190389355698, + "min_y": 5280.017443636523, + "max_x": 1686.190389355698, + "max_y": 5281.024977075572, + "center": [ + 1686.190389355698, + 5280.521210356048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1686.190389355698, + 5281.024977075572 + ], + [ + 1686.190389355698, + 5280.017443636523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.614941078493, + "min_y": 5280.686553694213, + "max_x": 1688.179651725047, + "max_y": 5281.024669467409, + "center": [ + 1687.89729640177, + 5280.8556115808115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.179651725047, + 5281.024669467409 + ], + [ + 1687.614941078493, + 5280.686553694213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.496900120731, + "min_y": 5280.686553694213, + "max_x": 1687.061610767283, + "max_y": 5281.024669467409, + "center": [ + 1686.779255444007, + 5280.8556115808115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1686.496900120731, + 5281.024669467409 + ], + [ + 1687.061610767283, + 5280.686553694213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F4E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1708.290080412288, + "min_y": 5280.521210356049, + "max_x": 1718.893629779106, + "max_y": 5280.521210356049, + "center": [ + 1713.5918550956972, + 5280.521210356049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.290080412288, + 5280.521210356049 + ], + [ + 1718.893629779106, + 5280.521210356049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F4F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1722.887909189257, + "min_y": 5283.837292698166, + "max_x": 1722.888886989995, + "max_y": 5291.631413255328, + "center": [ + 1722.888398089626, + 5287.734352976747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5291.631413255328 + ], + [ + 1722.887909189257, + 5283.837292698166 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F50", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1704.728409489607, + "min_y": 5260.143167693243, + "max_x": 1704.728409489607, + "max_y": 5274.798989588679, + "center": [ + 1704.728409489607, + 5267.471078640961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.728409489607, + 5274.798989588679 + ], + [ + 1704.728409489607, + 5260.143167693243 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F51", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1756.36162121469, + "min_y": 5300.11089184421, + "max_x": 1758.1534313753195, + "max_y": 5301.604066978068, + "center": [ + 1757.257526295005, + 5300.857479411139 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F52", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1752.197744129969, + "min_y": 5302.450225873056, + "max_x": 1763.24353935007, + "max_y": 5302.450225873056, + "center": [ + 1757.7206417400193, + 5302.450225873056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.24353935007, + 5302.450225873056 + ], + [ + 1752.197744129969, + 5302.450225873056 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F53", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1750.708592423272, + "min_y": 5300.961074166359, + "max_x": 1752.197744129969, + "max_y": 5302.450225873056, + "center": [ + 1751.4531682766205, + 5301.705650019708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.197744129969, + 5302.450225873056 + ], + [ + 1750.708592423272, + 5300.961074166359 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F54", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1750.708592423272, + "min_y": 5299.471922459662, + "max_x": 1752.197744129969, + "max_y": 5300.961074166359, + "center": [ + 1751.4531682766205, + 5300.216498313011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.708592423272, + 5300.961074166359 + ], + [ + 1752.197744129969, + 5299.471922459662 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F55", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1752.197744129969, + "min_y": 5299.471922459662, + "max_x": 1763.24353935007, + "max_y": 5299.471922459662, + "center": [ + 1757.7206417400193, + 5299.471922459662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.24353935007, + 5299.471922459662 + ], + [ + 1752.197744129969, + 5299.471922459662 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.24353935007, + "min_y": 5299.471922459662, + "max_x": 1763.24353935007, + "max_y": 5302.450225873056, + "center": [ + 1763.24353935007, + 5300.961074166359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.24353935007, + 5299.471922459662 + ], + [ + 1763.24353935007, + 5302.450225873056 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F57", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1728.807903261038, + "min_y": 5300.961074166359, + "max_x": 1750.708592423272, + "max_y": 5300.961074166359, + "center": [ + 1739.758247842155, + 5300.961074166359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.708592423272, + 5300.961074166359 + ], + [ + 1728.807903261038, + 5300.961074166359 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F58", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1734.686285000007, + "min_y": 5301.422869809747, + "max_x": 1746.7810035842558, + "max_y": 5302.54275116014, + "center": [ + 1740.7336442921314, + 5301.982810484944 + ] + }, + "raw_value": "N2-10712-15A-F1A-n", + "clean_value": "N2-10712-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F59", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1750.66914610793, + "min_y": 5309.059396593154, + "max_x": 1761.714941328031, + "max_y": 5309.059396593154, + "center": [ + 1756.1920437179806, + 5309.059396593154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.66914610793, + 5309.059396593154 + ], + [ + 1761.714941328031, + 5309.059396593154 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F5A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1761.714941328031, + "min_y": 5307.570244886456, + "max_x": 1763.204093034729, + "max_y": 5309.059396593154, + "center": [ + 1762.45951718138, + 5308.314820739804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.714941328031, + 5309.059396593154 + ], + [ + 1763.204093034729, + 5307.570244886456 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F5B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1761.714941328031, + "min_y": 5306.081093179759, + "max_x": 1763.204093034729, + "max_y": 5307.570244886456, + "center": [ + 1762.45951718138, + 5306.825669033107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.204093034729, + 5307.570244886456 + ], + [ + 1761.714941328031, + 5306.081093179759 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F5C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1750.66914610793, + "min_y": 5306.081093179759, + "max_x": 1761.714941328031, + "max_y": 5306.081093179759, + "center": [ + 1756.1920437179806, + 5306.081093179759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.66914610793, + 5306.081093179759 + ], + [ + 1761.714941328031, + 5306.081093179759 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554F5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.66914610793, + "min_y": 5306.081093179759, + "max_x": 1750.66914610793, + "max_y": 5309.059396593154, + "center": [ + 1750.66914610793, + 5307.570244886456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.66914610793, + 5306.081093179759 + ], + [ + 1750.66914610793, + 5309.059396593154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F5E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1724.760742411566, + "min_y": 5307.570244886456, + "max_x": 1750.66914610793, + "max_y": 5307.570244886456, + "center": [ + 1737.7149442597479, + 5307.570244886456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.66914610793, + 5307.570244886456 + ], + [ + 1724.760742411566, + 5307.570244886456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F5F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1734.499693988949, + "min_y": 5307.987677862339, + "max_x": 1746.5944125731978, + "max_y": 5309.107559212733, + "center": [ + 1740.5470532810734, + 5308.5476185375355 + ] + }, + "raw_value": "VG-10422-50A-F1A-n", + "clean_value": "VG-10422-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.116584692942, + "min_y": 5306.786009967806, + "max_x": 1759.2838253354598, + "max_y": 5308.279185101665, + "center": [ + 1755.700205014201, + 5307.532597534735 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F61", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1716.57092788069, + "min_y": 5274.388721069668, + "max_x": 1718.1384130054273, + "max_y": 5275.6949586736155, + "center": [ + 1717.3546704430587, + 5275.041839871641 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F62", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1715.2073799709774, + "min_y": 5271.685981834473, + "max_x": 1719.7206957338926, + "max_y": 5276.199297597388, + "center": [ + 1717.464037852435, + 5273.94263971593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.464037852435, + 5273.94263971593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F63", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1715.918649896709, + "min_y": 5272.329802060731, + "max_x": 1719.8373627085518, + "max_y": 5273.636039664679, + "center": [ + 1717.8780063026304, + 5272.982920862705 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F64", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1722.888886989995, + "min_y": 5291.631413255328, + "max_x": 1722.888886989995, + "max_y": 5323.252867762896, + "center": [ + 1722.888886989995, + 5307.4421405091125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5323.252867762896 + ], + [ + 1722.888886989995, + 5291.631413255328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F65", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1725.957156838267, + "min_y": 5307.570244886456, + "max_x": 1737.3799466122798, + "max_y": 5308.690126236849, + "center": [ + 1731.6685517252736, + 5308.130185561653 + ] + }, + "raw_value": "P-10135-25A-F2A-n", + "clean_value": "P-10135-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F66", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1718.589108825919, + "min_y": 5280.521210356049, + "max_x": 1720.295463515486, + "max_y": 5280.521210356049, + "center": [ + 1719.4422861707026, + 5280.521210356049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.589108825919, + 5280.521210356049 + ], + [ + 1720.295463515486, + 5280.521210356049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1750.487831984533, + "min_y": 5309.540756238454, + "max_x": 1761.2386929483096, + "max_y": 5310.660637588848, + "center": [ + 1755.8632624664212, + 5310.100696913651 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.016430006572, + "min_y": 5302.89023724566, + "max_x": 1764.7830774010567, + "max_y": 5304.010118596053, + "center": [ + 1758.3997537038144, + 5303.450177920857 + ] + }, + "raw_value": "SARF-UTILITY-UFD-N2", + "clean_value": "SARF-UTILITY-UFD-N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F69", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1733.741399799674, + "min_y": 5293.057297040035, + "max_x": 1741.601219864529, + "max_y": 5294.064966279119, + "center": [ + 1737.6713098321015, + 5293.561131659577 + ] + }, + "raw_value": "-200~400mmH2O", + "clean_value": "-200~400mmH2O", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1736.010746501284, + "min_y": 5294.712352081026, + "max_x": 1740.8475588488873, + "max_y": 5295.72002132011, + "center": [ + 1738.4291526750858, + 5295.216186700569 + ] + }, + "raw_value": "BV-10101", + "clean_value": "BV-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.519693869544, + "min_y": 5292.64915177517, + "max_x": 1744.757562153201, + "max_y": 5292.64915177517, + "center": [ + 1738.6386280113725, + 5292.64915177517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.519693869544, + 5292.64915177517 + ], + [ + 1744.757562153201, + 5292.64915177517 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.291213592183, + "min_y": 5288.624840593543, + "max_x": 1732.519693869544, + "max_y": 5292.64915177517, + "center": [ + 1729.4054537308634, + 5290.636996184357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.519693869544, + 5292.64915177517 + ], + [ + 1726.291213592183, + 5288.624840593543 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.291213592183, + "min_y": 5288.624840593543, + "max_x": 1727.043807992449, + "max_y": 5289.537523271721, + "center": [ + 1726.667510792316, + 5289.081181932632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.291213592183, + 5288.624840593543 + ], + [ + 1727.043807992449, + 5289.537523271721 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.043807992449, + "min_y": 5289.236689823274, + "max_x": 1727.238180834055, + "max_y": 5289.537523271721, + "center": [ + 1727.140994413252, + 5289.387106547498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.043807992449, + 5289.537523271721 + ], + [ + 1727.238180834055, + 5289.236689823274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.148060377659, + "min_y": 5282.184743842127, + "max_x": 1733.148060377659, + "max_y": 5282.760264702701, + "center": [ + 1733.148060377659, + 5282.472504272414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.148060377659, + 5282.184743842127 + ], + [ + 1733.148060377659, + 5282.760264702701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F70", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1732.9300738614377, + "min_y": 5283.313721642581, + "max_x": 1733.3660468938804, + "max_y": 5283.749694675024, + "center": [ + 1733.148060377659, + 5283.531708158803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.148060377659, + 5283.531708158803 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.794922221379, + "min_y": 5282.760264702701, + "max_x": 1733.501198533941, + "max_y": 5282.760264702701, + "center": [ + 1733.14806037766, + 5282.760264702701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.501198533941, + 5282.760264702701 + ], + [ + 1732.794922221379, + 5282.760264702701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.794922221379, + "min_y": 5284.303151614904, + "max_x": 1733.501198533941, + "max_y": 5284.303151614904, + "center": [ + 1733.14806037766, + 5284.303151614904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.501198533941, + 5284.303151614904 + ], + [ + 1732.794922221379, + 5284.303151614904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.807514075261, + "min_y": 5282.962938116546, + "max_x": 1733.03608033794, + "max_y": 5283.34468251361, + "center": [ + 1732.9217972066003, + 5283.153810315078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.03608033794, + 5283.34468251361 + ], + [ + 1732.807514075261, + 5282.962938116546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.807514075261, + "min_y": 5282.962938116546, + "max_x": 1733.488606680059, + "max_y": 5282.962938116546, + "center": [ + 1733.14806037766, + 5282.962938116546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.807514075261, + 5282.962938116546 + ], + [ + 1733.488606680059, + 5282.962938116546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.260040417378, + "min_y": 5282.962938116546, + "max_x": 1733.488606680059, + "max_y": 5283.34468251361, + "center": [ + 1733.3743235487186, + 5283.153810315078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.488606680059, + 5282.962938116546 + ], + [ + 1733.260040417378, + 5283.34468251361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.807514075261, + "min_y": 5283.718733803993, + "max_x": 1733.03608033794, + "max_y": 5284.100478201061, + "center": [ + 1732.9217972066003, + 5283.909606002528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.03608033794, + 5283.718733803993 + ], + [ + 1732.807514075261, + 5284.100478201061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.807514075261, + "min_y": 5284.100478201061, + "max_x": 1733.488606680059, + "max_y": 5284.100478201061, + "center": [ + 1733.14806037766, + 5284.100478201061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.807514075261, + 5284.100478201061 + ], + [ + 1733.488606680059, + 5284.100478201061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.260040417378, + "min_y": 5283.718733803993, + "max_x": 1733.488606680059, + "max_y": 5284.100478201061, + "center": [ + 1733.3743235487186, + 5283.909606002528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.488606680059, + 5284.100478201061 + ], + [ + 1733.260040417378, + 5283.718733803993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F79", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1733.14806037766, + "min_y": 5284.303151614904, + "max_x": 1733.14806037766, + "max_y": 5285.228581845411, + "center": [ + 1733.14806037766, + 5284.7658667301575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.14806037766, + 5284.303151614904 + ], + [ + 1733.14806037766, + 5285.228581845411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554F7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.148060377659, + "min_y": 5286.044882714813, + "max_x": 1733.148060377659, + "max_y": 5286.509955738872, + "center": [ + 1733.148060377659, + 5286.2774192268425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.148060377659, + 5286.044882714813 + ], + [ + 1733.148060377659, + 5286.509955738872 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F7B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1732.083835945783, + "min_y": 5289.472078368804, + "max_x": 1733.6513210705202, + "max_y": 5290.778315972752, + "center": [ + 1732.8675785081516, + 5290.125197170779 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F7C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1730.525282450634, + "min_y": 5286.509955738874, + "max_x": 1735.770838304684, + "max_y": 5291.7555115929235, + "center": [ + 1733.148060377659, + 5289.132733665899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.148060377659, + 5289.132733665899 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F7D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1730.997866885859, + "min_y": 5281.523185221963, + "max_x": 1735.2982538694591, + "max_y": 5285.823572205562, + "center": [ + 1733.148060377659, + 5283.673378713763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.148060377659, + 5283.673378713763 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.271376383466, + "min_y": 5286.044882714813, + "max_x": 1734.024744371855, + "max_y": 5286.044882714813, + "center": [ + 1733.1480603776604, + 5286.044882714813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.271376383466, + 5286.044882714813 + ], + [ + 1734.024744371855, + 5286.044882714813 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.271376383466, + "min_y": 5285.228581845411, + "max_x": 1732.271376383466, + "max_y": 5286.044882714813, + "center": [ + 1732.271376383466, + 5285.6367322801125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.271376383466, + 5286.044882714813 + ], + [ + 1732.271376383466, + 5285.228581845411 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.271376383466, + "min_y": 5285.228581845411, + "max_x": 1734.024744371855, + "max_y": 5285.228581845411, + "center": [ + 1733.1480603776604, + 5285.228581845411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.024744371855, + 5285.228581845411 + ], + [ + 1732.271376383466, + 5285.228581845411 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1734.024744371855, + "min_y": 5285.228581845411, + "max_x": 1734.024744371855, + "max_y": 5286.044882714813, + "center": [ + 1734.024744371855, + 5285.6367322801125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.024744371855, + 5285.228581845411 + ], + [ + 1734.024744371855, + 5286.044882714813 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F82", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1730.865640377659, + "min_y": 5287.663437507132, + "max_x": 1734.897640377659, + "max_y": 5288.783437507132, + "center": [ + 1732.881640377659, + 5288.223437507131 + ] + }, + "raw_value": "10101A", + "clean_value": "10101A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "554F83", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1721.0406106972237, + "min_y": 5269.5793236873205, + "max_x": 1721.4765837296663, + "max_y": 5270.015296719764, + "center": [ + 1721.258597213445, + 5269.797310203542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.258597213445, + 5269.797310203542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.487153757344, + "min_y": 5269.44417204726, + "max_x": 1720.487153757344, + "max_y": 5270.150448359821, + "center": [ + 1720.487153757344, + 5269.79731020354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.487153757344, + 5269.44417204726 + ], + [ + 1720.487153757344, + 5270.150448359821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.445622858638, + "min_y": 5269.90929024326, + "max_x": 1721.827367255705, + "max_y": 5270.13785650594, + "center": [ + 1721.6364950571715, + 5270.0235733746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.445622858638, + 5269.90929024326 + ], + [ + 1721.827367255705, + 5270.13785650594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.445622858638, + "min_y": 5269.456763901141, + "max_x": 1721.827367255705, + "max_y": 5269.685330163821, + "center": [ + 1721.6364950571715, + 5269.571047032481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.827367255705, + 5269.456763901141 + ], + [ + 1721.445622858638, + 5269.685330163821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5269.90929024326, + "max_x": 1721.071571568259, + "max_y": 5270.13785650594, + "center": [ + 1720.8806993697226, + 5270.0235733746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.071571568259, + 5269.90929024326 + ], + [ + 1720.689827171186, + 5270.13785650594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5269.456763901141, + "max_x": 1720.689827171186, + "max_y": 5270.13785650594, + "center": [ + 1720.689827171186, + 5269.797310203541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.689827171186, + 5270.13785650594 + ], + [ + 1720.689827171186, + 5269.456763901141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5269.456763901141, + "max_x": 1721.071571568259, + "max_y": 5269.685330163821, + "center": [ + 1720.8806993697226, + 5269.571047032481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.689827171186, + 5269.456763901141 + ], + [ + 1721.071571568259, + 5269.685330163821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669545, + "min_y": 5269.78471834966, + "max_x": 1722.583174905613, + "max_y": 5269.78471834966, + "center": [ + 1722.3066077875792, + 5269.78471834966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.583174905613, + 5269.78471834966 + ], + [ + 1722.030040669545, + 5269.78471834966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669547, + "min_y": 5269.44417204726, + "max_x": 1722.030040669547, + "max_y": 5270.150448359821, + "center": [ + 1722.030040669547, + 5269.79731020354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.030040669547, + 5269.44417204726 + ], + [ + 1722.030040669547, + 5270.150448359821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.827367255705, + "min_y": 5269.456763901141, + "max_x": 1721.827367255705, + "max_y": 5270.13785650594, + "center": [ + 1721.827367255705, + 5269.797310203541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.827367255705, + 5270.13785650594 + ], + [ + 1721.827367255705, + 5269.456763901141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5269.79731020354, + "max_x": 1720.487153757344, + "max_y": 5269.79731020354, + "center": [ + 1718.9755958048895, + 5269.79731020354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.464037852435, + 5269.79731020354 + ], + [ + 1720.487153757344, + 5269.79731020354 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5269.79731020354, + "max_x": 1717.464037852435, + "max_y": 5271.685981834473, + "center": [ + 1717.464037852435, + 5270.741646019007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.464037852435, + 5269.79731020354 + ], + [ + 1717.464037852435, + 5271.685981834473 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5276.199297597387, + "max_x": 1717.464037852435, + "max_y": 5279.063275884214, + "center": [ + 1717.464037852435, + 5277.6312867408005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.464037852435, + 5276.199297597387 + ], + [ + 1717.464037852435, + 5279.063275884214 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F90", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1721.0406106972237, + "min_y": 5278.845289367993, + "max_x": 1721.4765837296663, + "max_y": 5279.281262400436, + "center": [ + 1721.258597213445, + 5279.063275884215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.258597213445, + 5279.063275884215 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.487153757344, + "min_y": 5278.710137727934, + "max_x": 1720.487153757344, + "max_y": 5279.416414040494, + "center": [ + 1720.487153757344, + 5279.063275884214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.487153757344, + 5278.710137727934 + ], + [ + 1720.487153757344, + 5279.416414040494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.445622858638, + "min_y": 5279.175255923934, + "max_x": 1721.827367255705, + "max_y": 5279.403822186613, + "center": [ + 1721.6364950571715, + 5279.289539055273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.445622858638, + 5279.175255923934 + ], + [ + 1721.827367255705, + 5279.403822186613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.445622858638, + "min_y": 5278.722729581815, + "max_x": 1721.827367255705, + "max_y": 5278.951295844495, + "center": [ + 1721.6364950571715, + 5278.837012713155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.827367255705, + 5278.722729581815 + ], + [ + 1721.445622858638, + 5278.951295844495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5279.175255923934, + "max_x": 1721.071571568259, + "max_y": 5279.403822186613, + "center": [ + 1720.8806993697226, + 5279.289539055273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.071571568259, + 5279.175255923934 + ], + [ + 1720.689827171186, + 5279.403822186613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5278.722729581815, + "max_x": 1720.689827171186, + "max_y": 5279.403822186613, + "center": [ + 1720.689827171186, + 5279.063275884214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.689827171186, + 5279.403822186613 + ], + [ + 1720.689827171186, + 5278.722729581815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.689827171186, + "min_y": 5278.722729581815, + "max_x": 1721.071571568259, + "max_y": 5278.951295844495, + "center": [ + 1720.8806993697226, + 5278.837012713155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.689827171186, + 5278.722729581815 + ], + [ + 1721.071571568259, + 5278.951295844495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669545, + "min_y": 5279.050684030334, + "max_x": 1722.583174905613, + "max_y": 5279.050684030334, + "center": [ + 1722.3066077875792, + 5279.050684030334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.583174905613, + 5279.050684030334 + ], + [ + 1722.030040669545, + 5279.050684030334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.030040669547, + "min_y": 5278.710137727934, + "max_x": 1722.030040669547, + "max_y": 5279.416414040494, + "center": [ + 1722.030040669547, + 5279.063275884214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.030040669547, + 5278.710137727934 + ], + [ + 1722.030040669547, + 5279.416414040494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.827367255705, + "min_y": 5278.722729581815, + "max_x": 1721.827367255705, + "max_y": 5279.403822186613, + "center": [ + 1721.827367255705, + 5279.063275884214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.827367255705, + 5279.403822186613 + ], + [ + 1721.827367255705, + 5278.722729581815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554F9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.464037852435, + "min_y": 5279.063275884214, + "max_x": 1720.487153757344, + "max_y": 5279.063275884214, + "center": [ + 1718.9755958048895, + 5279.063275884214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.464037852435, + 5279.063275884214 + ], + [ + 1720.487153757344, + 5279.063275884214 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.294210836023, + "min_y": 5269.423604822062, + "max_x": 1720.041621598972, + "max_y": 5270.171015585006, + "center": [ + 1719.6679162174973, + 5269.797310203534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.294210836023, + 5270.171015585006 + ], + [ + 1720.041621598972, + 5269.423604822062 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.294210836023, + "min_y": 5269.423604822062, + "max_x": 1720.041621598972, + "max_y": 5270.171015585006, + "center": [ + 1719.6679162174973, + 5269.797310203534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.294210836023, + 5269.423604822062 + ], + [ + 1720.041621598972, + 5270.171015585006 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.294210836023, + "min_y": 5278.689570502735, + "max_x": 1720.041621598972, + "max_y": 5279.436981265679, + "center": [ + 1719.6679162174973, + 5279.063275884207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.294210836023, + 5279.436981265679 + ], + [ + 1720.041621598972, + 5278.689570502735 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.294210836023, + "min_y": 5278.689570502735, + "max_x": 1720.041621598972, + "max_y": 5279.436981265679, + "center": [ + 1719.6679162174973, + 5279.063275884207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.294210836023, + 5278.689570502735 + ], + [ + 1720.041621598972, + 5279.436981265679 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "554F9F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1725.281402807399, + "min_y": 5263.967902868045, + "max_x": 1727.127139094733, + "max_y": 5263.967902868045, + "center": [ + 1726.204270951066, + 5263.967902868045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.127139094733, + 5263.967902868045 + ], + [ + 1725.281402807399, + 5263.967902868045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.968309975227, + "min_y": 5342.792555229574, + "max_x": 1985.968309975227, + "max_y": 5343.268278183811, + "center": [ + 1985.968309975227, + 5343.030416706692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.968309975227, + 5343.268278183811 + ], + [ + 1985.968309975227, + 5342.792555229574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.670737212941, + "min_y": 5342.792555229574, + "max_x": 1986.670737212941, + "max_y": 5343.268278183811, + "center": [ + 1986.670737212941, + 5343.030416706692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.670737212941, + 5343.268278183811 + ], + [ + 1986.670737212941, + 5342.792555229574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1985.968309975227, + "min_y": 5342.792555229574, + "max_x": 1986.670737212941, + "max_y": 5342.792555229574, + "center": [ + 1986.3195235940839, + 5342.792555229574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1985.968309975227, + 5342.792555229574 + ], + [ + 1986.670737212941, + 5342.792555229574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1983.549895501586, + "min_y": 5342.410561686596, + "max_x": 1984.8937531220581, + "max_y": 5343.53044303699, + "center": [ + 1984.221824311822, + 5342.9705023617935 + ] + }, + "raw_value": "DR", + "clean_value": "DR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FA4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1919.450175243207, + "min_y": 5330.40587636921, + "max_x": 1919.450175243207, + "max_y": 5331.064886982039, + "center": [ + 1919.450175243207, + 5330.735381675624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.450175243207, + 5330.40587636921 + ], + [ + 1919.450175243207, + 5331.064886982039 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.047161867586, + "min_y": 5329.853559371949, + "max_x": 1919.047161867586, + "max_y": 5330.509177417635, + "center": [ + 1919.047161867586, + 5330.181368394792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.047161867586, + 5330.509177417635 + ], + [ + 1919.047161867586, + 5329.853559371949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.853188618828, + "min_y": 5329.853559371949, + "max_x": 1919.853188618828, + "max_y": 5330.509177417635, + "center": [ + 1919.853188618828, + 5330.181368394792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.853188618828, + 5330.509177417635 + ], + [ + 1919.853188618828, + 5329.853559371949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.047161867586, + "min_y": 5329.853559371949, + "max_x": 1919.853188618828, + "max_y": 5329.853559371949, + "center": [ + 1919.450175243207, + 5329.853559371949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.047161867586, + 5329.853559371949 + ], + [ + 1919.853188618828, + 5329.853559371949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FA8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1858.570899640251, + "min_y": 5274.215012857689, + "max_x": 1858.570899640251, + "max_y": 5274.874023470518, + "center": [ + 1858.570899640251, + 5274.5445181641035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.570899640251, + 5274.215012857689 + ], + [ + 1858.570899640251, + 5274.874023470518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.16788626463, + "min_y": 5273.662695860427, + "max_x": 1858.16788626463, + "max_y": 5274.318313906113, + "center": [ + 1858.16788626463, + 5273.99050488327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.16788626463, + 5274.318313906113 + ], + [ + 1858.16788626463, + 5273.662695860427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.973913015873, + "min_y": 5273.662695860427, + "max_x": 1858.973913015873, + "max_y": 5274.318313906113, + "center": [ + 1858.973913015873, + 5273.99050488327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.973913015873, + 5274.318313906113 + ], + [ + 1858.973913015873, + 5273.662695860427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1858.16788626463, + "min_y": 5273.662695860427, + "max_x": 1858.973913015873, + "max_y": 5273.662695860427, + "center": [ + 1858.5708996402514, + 5273.662695860427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.16788626463, + 5273.662695860427 + ], + [ + 1858.973913015873, + 5273.662695860427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FAC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5383.279093311521, + "max_x": 2008.779765873422, + "max_y": 5383.279093311521, + "center": [ + 2006.509364068497, + 5383.279093311521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5383.279093311521 + ], + [ + 2008.779765873422, + 5383.279093311521 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FAD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2012.275076076485, + "min_y": 5382.558190833542, + "max_x": 2019.4405249088422, + "max_y": 5384.050992673616, + "center": [ + 2015.8578004926635, + 5383.304591753578 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FAE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2008.779765873422, + "min_y": 5381.294054086493, + "max_x": 2023.148416816455, + "max_y": 5381.294054086493, + "center": [ + 2015.9640913449384, + 5381.294054086493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.779765873422, + 5381.294054086493 + ], + [ + 2023.148416816455, + 5381.294054086493 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FAF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2008.779765873422, + "min_y": 5385.26413253655, + "max_x": 2023.148416816466, + "max_y": 5385.26413253655, + "center": [ + 2015.9640913449439, + 5385.26413253655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.148416816466, + 5385.26413253655 + ], + [ + 2008.779765873422, + 5385.26413253655 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2008.779765873422, + "min_y": 5381.294054086493, + "max_x": 2008.779765873422, + "max_y": 5385.26413253655, + "center": [ + 2008.779765873422, + 5383.279093311521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.779765873422, + 5385.26413253655 + ], + [ + 2008.779765873422, + 5381.294054086493 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FB1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2023.148416816459, + "min_y": 5381.294054086498, + "max_x": 2025.133456041487, + "max_y": 5383.279093311525, + "center": [ + 2024.140936428973, + 5382.286573699012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.148416816459, + 5381.294054086498 + ], + [ + 2025.133456041487, + 5383.279093311525 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FB2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2023.148416816459, + "min_y": 5383.279093311525, + "max_x": 2025.133456041487, + "max_y": 5385.264132536553, + "center": [ + 2024.140936428973, + 5384.271612924039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2025.133456041487, + 5383.279093311525 + ], + [ + 2023.148416816459, + 5385.264132536553 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FB3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1981.011650569633, + "min_y": 5358.615177514737, + "max_x": 1993.1063691538818, + "max_y": 5359.735058865131, + "center": [ + 1987.0590098617574, + 5359.175118189934 + ] + }, + "raw_value": "P-10312-100A-F1A-n", + "clean_value": "P-10312-100A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FB4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2008.598451750025, + "min_y": 5385.775456594602, + "max_x": 2019.3493127138017, + "max_y": 5386.895337944995, + "center": [ + 2013.9738822319134, + 5386.335397269799 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FB5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1959.681783758454, + "min_y": 5402.884639879013, + "max_x": 1971.7765023427028, + "max_y": 5404.004521229406, + "center": [ + 1965.7291430505784, + 5403.444580554209 + ] + }, + "raw_value": "N2-10705-15A-F1A-n", + "clean_value": "N2-10705-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FB6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2040.53996574971, + "min_y": 5365.896555126121, + "max_x": 2040.53996574971, + "max_y": 5381.552606538112, + "center": [ + 2040.53996574971, + 5373.724580832117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.53996574971, + 5365.896555126121 + ], + [ + 2040.53996574971, + 5381.552606538112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FB7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5412.269279981513, + "max_x": 2027.834882731645, + "max_y": 5412.269279981513, + "center": [ + 2022.445291230132, + 5412.269279981513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.055699728619, + 5412.269279981513 + ], + [ + 2027.834882731645, + 5412.269279981513 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FB8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5415.247583394908, + "max_x": 2027.834882731653, + "max_y": 5415.247583394908, + "center": [ + 2022.4452912301358, + 5415.247583394908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.834882731653, + 5415.247583394908 + ], + [ + 2017.055699728619, + 5415.247583394908 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5412.315938003951, + "max_x": 2017.055699728619, + "max_y": 5415.294241417345, + "center": [ + 2017.055699728619, + 5413.805089710648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.055699728619, + 5415.294241417345 + ], + [ + 2017.055699728619, + 5412.315938003951 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FBA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.834882731648, + "min_y": 5412.269279981516, + "max_x": 2029.324034438345, + "max_y": 5413.758431688214, + "center": [ + 2028.5794585849965, + 5413.013855834864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.834882731648, + 5412.269279981516 + ], + [ + 2029.324034438345, + 5413.758431688214 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FBB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.834882731648, + "min_y": 5413.758431688214, + "max_x": 2029.324034438345, + "max_y": 5415.247583394911, + "center": [ + 2028.5794585849965, + 5414.5030075415625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2029.324034438345, + 5413.758431688214 + ], + [ + 2027.834882731648, + 5415.247583394911 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FBC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2016.874385605221, + "min_y": 5415.728943040208, + "max_x": 2027.6252465689977, + "max_y": 5416.848824390601, + "center": [ + 2022.2498160871094, + 5416.288883715404 + ] + }, + "raw_value": "SARF-#10-PID-001", + "clean_value": "SARF-#10-PID-001", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FBD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2017.186439595573, + "min_y": 5413.009775506621, + "max_x": 2026.14549039872, + "max_y": 5414.502950640479, + "center": [ + 2021.6659649971466, + 5413.756363073549 + ] + }, + "raw_value": "PSV-10119B", + "clean_value": "PSV-10119B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FBE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5406.733171030476, + "max_x": 2027.834882731645, + "max_y": 5406.733171030476, + "center": [ + 2022.445291230132, + 5406.733171030476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.055699728619, + 5406.733171030476 + ], + [ + 2027.834882731645, + 5406.733171030476 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FBF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5409.71147444387, + "max_x": 2027.834882731653, + "max_y": 5409.71147444387, + "center": [ + 2022.4452912301358, + 5409.71147444387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.834882731653, + 5409.71147444387 + ], + [ + 2017.055699728619, + 5409.71147444387 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.055699728619, + "min_y": 5406.779829052912, + "max_x": 2017.055699728619, + "max_y": 5409.758132466308, + "center": [ + 2017.055699728619, + 5408.26898075961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.055699728619, + 5409.758132466308 + ], + [ + 2017.055699728619, + 5406.779829052912 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FC1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.834882731648, + "min_y": 5406.733171030477, + "max_x": 2029.324034438345, + "max_y": 5408.222322737175, + "center": [ + 2028.5794585849965, + 5407.477746883826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.834882731648, + 5406.733171030477 + ], + [ + 2029.324034438345, + 5408.222322737175 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FC2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.834882731648, + "min_y": 5408.222322737175, + "max_x": 2029.324034438345, + "max_y": 5409.711474443874, + "center": [ + 2028.5794585849965, + 5408.966898590525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2029.324034438345, + 5408.222322737175 + ], + [ + 2027.834882731648, + 5409.711474443874 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FC3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2016.874385605221, + "min_y": 5410.192834089171, + "max_x": 2027.6252465689977, + "max_y": 5411.312715439564, + "center": [ + 2022.2498160871094, + 5410.752774764367 + ] + }, + "raw_value": "SARF-#10-PID-002", + "clean_value": "SARF-#10-PID-002", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FC4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2017.186439595573, + "min_y": 5407.473666555584, + "max_x": 2026.14549039872, + "max_y": 5408.966841689442, + "center": [ + 2021.6659649971466, + 5408.220254122512 + ] + }, + "raw_value": "PSV-10219B", + "clean_value": "PSV-10219B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FC5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2029.324034438345, + "min_y": 5413.758431688214, + "max_x": 2040.53996574971, + "max_y": 5413.758431688214, + "center": [ + 2034.9320000940274, + 5413.758431688214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2029.324034438345, + 5413.758431688214 + ], + [ + 2040.53996574971, + 5413.758431688214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FC6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2029.324034438345, + "min_y": 5408.222322737175, + "max_x": 2040.53996574971, + "max_y": 5408.222322737175, + "center": [ + 2034.9320000940274, + 5408.222322737175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2029.324034438345, + 5408.222322737175 + ], + [ + 2040.53996574971, + 5408.222322737175 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2048.067761270311, + "min_y": 5382.105380721847, + "max_x": 2054.337528998624, + "max_y": 5383.598182561921, + "center": [ + 2051.2026451344673, + 5382.851781641884 + ] + }, + "raw_value": "SC-9128", + "clean_value": "SC-9128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FC8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2044.572451067248, + "min_y": 5380.841243974799, + "max_x": 2058.941102010281, + "max_y": 5380.841243974799, + "center": [ + 2051.756776538765, + 5380.841243974799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.572451067248, + 5380.841243974799 + ], + [ + 2058.941102010281, + 5380.841243974799 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FC9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2044.572451067248, + "min_y": 5384.811322424855, + "max_x": 2058.941102010293, + "max_y": 5384.811322424855, + "center": [ + 2051.7567765387703, + 5384.811322424855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.941102010293, + 5384.811322424855 + ], + [ + 2044.572451067248, + 5384.811322424855 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.572451067248, + "min_y": 5380.903439118708, + "max_x": 2044.572451067248, + "max_y": 5384.873517568763, + "center": [ + 2044.572451067248, + 5382.888478343735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.572451067248, + 5384.873517568763 + ], + [ + 2044.572451067248, + 5380.903439118708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FCB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2058.941102010286, + "min_y": 5380.841243974803, + "max_x": 2060.926141235313, + "max_y": 5382.82628319983, + "center": [ + 2059.9336216227994, + 5381.833763587316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.941102010286, + 5380.841243974803 + ], + [ + 2060.926141235313, + 5382.82628319983 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FCC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2058.941102010286, + "min_y": 5382.82628319983, + "max_x": 2060.926141235313, + "max_y": 5384.811322424859, + "center": [ + 2059.9336216227994, + 5383.818802812344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.926141235313, + 5382.82628319983 + ], + [ + 2058.941102010286, + 5384.811322424859 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FCD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2044.39113694385, + "min_y": 5385.072858016172, + "max_x": 2054.4700690973905, + "max_y": 5386.192739366566, + "center": [ + 2049.4306030206203, + 5385.632798691369 + ] + }, + "raw_value": "SARF-#9-PID-003", + "clean_value": "SARF-#9-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FCE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2041.323860854856, + "min_y": 5411.508236606112, + "max_x": 2054.090508249341, + "max_y": 5412.628117956506, + "center": [ + 2047.7071845520986, + 5412.0681772813095 + ] + }, + "raw_value": "VG-10440-300A-F1A-N", + "clean_value": "VG-10440-300A-F1A-N", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FCF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2035.784248294814, + "min_y": 5368.832276331811, + "max_x": 2035.784248294814, + "max_y": 5382.888478343736, + "center": [ + 2035.784248294814, + 5375.860377337774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.784248294814, + 5368.832276331811 + ], + [ + 2035.784248294814, + 5382.888478343736 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2035.784248294814, + "min_y": 5382.888478343736, + "max_x": 2044.572451067248, + "max_y": 5382.888478343736, + "center": [ + 2040.178349681031, + 5382.888478343736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.784248294814, + 5382.888478343736 + ], + [ + 2044.572451067248, + 5382.888478343736 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2040.53996574971, + "min_y": 5384.22435014936, + "max_x": 2040.53996574971, + "max_y": 5413.758442627052, + "center": [ + 2040.53996574971, + 5398.991396388206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.53996574971, + 5384.22435014936 + ], + [ + 2040.53996574971, + 5413.758442627052 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5299.590221813221, + "max_x": 1680.327734956658, + "max_y": 5299.590221813221, + "center": [ + 1671.6323568084936, + 5299.590221813221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5299.590221813221 + ], + [ + 1680.327734956658, + 5299.590221813221 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5305.171376669342, + "max_x": 1683.165420790438, + "max_y": 5305.171376669342, + "center": [ + 1673.0511997253834, + 5305.171376669342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5305.171376669342 + ], + [ + 1683.165420790438, + 5305.171376669342 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5306.66052837604, + "max_x": 1661.447826953631, + "max_y": 5306.66052837604, + "center": [ + 1655.9249293435805, + 5306.66052837604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5306.66052837604 + ], + [ + 1661.447826953631, + 5306.66052837604 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FD5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5305.171376669342, + "max_x": 1662.936978660329, + "max_y": 5306.66052837604, + "center": [ + 1662.19240280698, + 5305.915952522691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.447826953631, + 5306.66052837604 + ], + [ + 1662.936978660329, + 5305.171376669342 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FD6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5303.682224962645, + "max_x": 1662.936978660329, + "max_y": 5305.171376669342, + "center": [ + 1662.19240280698, + 5304.426800815993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5305.171376669342 + ], + [ + 1661.447826953631, + 5303.682224962645 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FD7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5303.682224962645, + "max_x": 1661.447826953631, + "max_y": 5303.682224962645, + "center": [ + 1655.9249293435805, + 5303.682224962645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5303.682224962645 + ], + [ + 1661.447826953631, + 5303.682224962645 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5303.682224962645, + "max_x": 1650.40203173353, + "max_y": 5306.66052837604, + "center": [ + 1650.40203173353, + 5305.171376669343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5303.682224962645 + ], + [ + 1650.40203173353, + 5306.66052837604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FD9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1653.363217755096, + "min_y": 5304.387141750694, + "max_x": 1657.8427431566697, + "max_y": 5305.8803168845525, + "center": [ + 1655.602980455883, + 5305.133729317624 + ] + }, + "raw_value": "T-201", + "clean_value": "T-201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1650.220717610133, + "min_y": 5307.14188802134, + "max_x": 1660.2996497636736, + "max_y": 5308.261769371733, + "center": [ + 1655.2601836869035, + 5307.701828696536 + ] + }, + "raw_value": "SARF-#9-PID-004", + "clean_value": "SARF-#9-PID-004", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FDB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5301.079373519918, + "max_x": 1661.447826953631, + "max_y": 5301.079373519918, + "center": [ + 1655.9249293435805, + 5301.079373519918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5301.079373519918 + ], + [ + 1661.447826953631, + 5301.079373519918 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FDC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5299.590221813221, + "max_x": 1662.936978660329, + "max_y": 5301.079373519918, + "center": [ + 1662.19240280698, + 5300.33479766657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.447826953631, + 5301.079373519918 + ], + [ + 1662.936978660329, + 5299.590221813221 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FDD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5298.101070106524, + "max_x": 1662.936978660329, + "max_y": 5299.590221813221, + "center": [ + 1662.19240280698, + 5298.845645959873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5299.590221813221 + ], + [ + 1661.447826953631, + 5298.101070106524 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FDE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5298.101070106524, + "max_x": 1661.447826953631, + "max_y": 5298.101070106524, + "center": [ + 1655.9249293435805, + 5298.101070106524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5298.101070106524 + ], + [ + 1661.447826953631, + 5298.101070106524 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "554FDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5298.101070106524, + "max_x": 1650.40203173353, + "max_y": 5301.079373519918, + "center": [ + 1650.40203173353, + 5299.590221813221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5298.101070106524 + ], + [ + 1650.40203173353, + 5301.079373519918 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FE0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1652.908756886449, + "min_y": 5298.805986894572, + "max_x": 1658.2841873683374, + "max_y": 5300.29916202843, + "center": [ + 1655.596472127393, + 5299.552574461501 + ] + }, + "raw_value": "T-3101", + "clean_value": "T-3101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1650.220717610133, + "min_y": 5301.560733165218, + "max_x": 1660.2996497636736, + "max_y": 5302.6806145156115, + "center": [ + 1655.2601836869035, + 5302.120673840414 + ] + }, + "raw_value": "SARF-#9-PID-004", + "clean_value": "SARF-#9-PID-004", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1680.327734956658, + "min_y": 5283.305214841339, + "max_x": 1680.327734956658, + "max_y": 5299.590221813221, + "center": [ + 1680.327734956658, + 5291.44771832728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.327734956658, + 5299.590221813221 + ], + [ + 1680.327734956658, + 5283.305214841339 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FE3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1683.165420790438, + "min_y": 5283.305214841339, + "max_x": 1683.165420790438, + "max_y": 5305.171376669342, + "center": [ + 1683.165420790438, + 5294.23829575534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.165420790438, + 5305.171376669342 + ], + [ + 1683.165420790438, + 5283.305214841339 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.66165407091, + "min_y": 5281.315952471989, + "max_x": 1683.669187509966, + "max_y": 5281.315952471989, + "center": [ + 1683.165420790438, + 5281.315952471989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.66165407091, + 5281.315952471989 + ], + [ + 1683.669187509966, + 5281.315952471989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.66165407091, + "min_y": 5281.315952471989, + "max_x": 1682.99976984411, + "max_y": 5281.880663118545, + "center": [ + 1682.83071195751, + 5281.598307795267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.99976984411, + 5281.880663118545 + ], + [ + 1682.66165407091, + 5281.315952471989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.66165407091, + "min_y": 5282.998704076306, + "max_x": 1683.669187509966, + "max_y": 5282.998704076306, + "center": [ + 1683.165420790438, + 5282.998704076306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.66165407091, + 5282.998704076306 + ], + [ + 1683.669187509966, + 5282.998704076306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.66165407091, + "min_y": 5282.433993429755, + "max_x": 1682.99976984411, + "max_y": 5282.998704076306, + "center": [ + 1682.83071195751, + 5282.716348753031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.99976984411, + 5282.433993429755 + ], + [ + 1682.66165407091, + 5282.998704076306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1682.8429555297555, + "min_y": 5281.834863013466, + "max_x": 1683.4878860511205, + "max_y": 5282.479793534831, + "center": [ + 1683.165420790438, + 5282.157328274148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.165420790438, + 5282.157328274148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.661961679082, + "min_y": 5281.037604893735, + "max_x": 1683.669495118131, + "max_y": 5281.037604893735, + "center": [ + 1683.1657283986065, + 5281.037604893735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.669495118131, + 5281.037604893735 + ], + [ + 1682.661961679082, + 5281.037604893735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.661961679082, + "min_y": 5283.305214841339, + "max_x": 1683.669495118131, + "max_y": 5283.305214841339, + "center": [ + 1683.1657283986065, + 5283.305214841339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.669495118131, + 5283.305214841339 + ], + [ + 1682.661961679082, + 5283.305214841339 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.33107173677, + "min_y": 5281.315952471989, + "max_x": 1683.669187509966, + "max_y": 5281.880663118545, + "center": [ + 1683.500129623368, + 5281.598307795267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.669187509966, + 5281.315952471989 + ], + [ + 1683.33107173677, + 5281.880663118545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.33107173677, + "min_y": 5282.433993429755, + "max_x": 1683.669187509966, + "max_y": 5282.998704076306, + "center": [ + 1683.500129623368, + 5282.716348753031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.669187509966, + 5282.998704076306 + ], + [ + 1683.33107173677, + 5282.433993429755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.82396823713, + "min_y": 5281.315952471989, + "max_x": 1680.831501676186, + "max_y": 5281.315952471989, + "center": [ + 1680.3277349566579, + 5281.315952471989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.82396823713, + 5281.315952471989 + ], + [ + 1680.831501676186, + 5281.315952471989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.82396823713, + "min_y": 5281.315952471989, + "max_x": 1680.162084010329, + "max_y": 5281.880663118545, + "center": [ + 1679.9930261237296, + 5281.598307795267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.162084010329, + 5281.880663118545 + ], + [ + 1679.82396823713, + 5281.315952471989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.82396823713, + "min_y": 5282.998704076306, + "max_x": 1680.831501676186, + "max_y": 5282.998704076306, + "center": [ + 1680.3277349566579, + 5282.998704076306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.82396823713, + 5282.998704076306 + ], + [ + 1680.831501676186, + 5282.998704076306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.82396823713, + "min_y": 5282.433993429755, + "max_x": 1680.162084010329, + "max_y": 5282.998704076306, + "center": [ + 1679.9930261237296, + 5282.716348753031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.162084010329, + 5282.433993429755 + ], + [ + 1679.82396823713, + 5282.998704076306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1680.0052696959756, + "min_y": 5281.834863013466, + "max_x": 1680.6502002173406, + "max_y": 5282.479793534831, + "center": [ + 1680.327734956658, + 5282.157328274148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.327734956658, + 5282.157328274148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.824275845302, + "min_y": 5281.037604893735, + "max_x": 1680.83180928435, + "max_y": 5281.037604893735, + "center": [ + 1680.3280425648259, + 5281.037604893735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.83180928435, + 5281.037604893735 + ], + [ + 1679.824275845302, + 5281.037604893735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.824275845302, + "min_y": 5283.305214841339, + "max_x": 1680.83180928435, + "max_y": 5283.305214841339, + "center": [ + 1680.3280425648259, + 5283.305214841339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.83180928435, + 5283.305214841339 + ], + [ + 1679.824275845302, + 5283.305214841339 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.493385902989, + "min_y": 5281.315952471989, + "max_x": 1680.831501676186, + "max_y": 5281.880663118545, + "center": [ + 1680.6624437895875, + 5281.598307795267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.831501676186, + 5281.315952471989 + ], + [ + 1680.493385902989, + 5281.880663118545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.493385902989, + "min_y": 5282.433993429755, + "max_x": 1680.831501676186, + "max_y": 5282.998704076306, + "center": [ + 1680.6624437895875, + 5282.716348753031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.831501676186, + 5282.998704076306 + ], + [ + 1680.493385902989, + 5282.433993429755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1680.327734956658, + "min_y": 5280.521210356049, + "max_x": 1680.327734956658, + "max_y": 5281.037604893735, + "center": [ + 1680.327734956658, + 5280.779407624892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.327734956658, + 5281.037604893735 + ], + [ + 1680.327734956658, + 5280.521210356049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FF7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1683.165420790438, + "min_y": 5280.521210356049, + "max_x": 1683.165420790438, + "max_y": 5281.037604893735, + "center": [ + 1683.165420790438, + 5280.779407624892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.165420790438, + 5281.037604893735 + ], + [ + 1683.165420790438, + 5280.521210356049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.501103616812, + "min_y": 5279.725001341466, + "max_x": 1682.307130142781, + "max_y": 5279.725603958428, + "center": [ + 1681.9041168797967, + 5279.7253026499475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.307130142781, + 5279.725603958428 + ], + [ + 1681.501103616812, + 5279.725001341466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FF9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1681.904116879798, + "min_y": 5279.725302649945, + "max_x": 1681.904116879798, + "max_y": 5280.521210356049, + "center": [ + 1681.904116879798, + 5280.123256502997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.904116879798, + 5279.725302649945 + ], + [ + 1681.904116879798, + 5280.521210356049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "554FFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.502431303511, + "min_y": 5277.949162333682, + "max_x": 1682.308457829481, + "max_y": 5277.949764950641, + "center": [ + 1681.905444566496, + 5277.949463642161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.502431303511, + 5277.949162333682 + ], + [ + 1682.308457829481, + 5277.949764950641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FFB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1681.6448505177739, + "min_y": 5278.6076754573, + "max_x": 1682.160794934866, + "max_y": 5279.123619874391, + "center": [ + 1681.90282272632, + 5278.865647665845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.90282272632, + 5278.865647665845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.502251982174, + "min_y": 5278.189012460547, + "max_x": 1681.773331236166, + "max_y": 5278.642529727615, + "center": [ + 1681.63779160917, + 5278.415771094081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.773331236166, + 5278.642529727615 + ], + [ + 1681.502251982174, + 5278.189012460547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.502251982174, + "min_y": 5278.189012460547, + "max_x": 1682.308278508143, + "max_y": 5278.189615077502, + "center": [ + 1681.9052652451585, + 5278.189313769024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.502251982174, + 5278.189012460547 + ], + [ + 1682.308278508143, + 5278.189615077502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.035508922855, + "min_y": 5278.189615077502, + "max_x": 1682.308278508143, + "max_y": 5278.644414680891, + "center": [ + 1682.171893715499, + 5278.417014879196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.308278508143, + 5278.189615077502 + ], + [ + 1682.035508922855, + 5278.644414680891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "554FFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.501245509722, + "min_y": 5279.083647207591, + "max_x": 1681.7720758124, + "max_y": 5279.535213367758, + "center": [ + 1681.636660661061, + 5279.309430287674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.7720758124, + 5279.083647207591 + ], + [ + 1681.501245509722, + 5279.535213367758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555000", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.501245509722, + "min_y": 5279.535213367758, + "max_x": 1682.307272035691, + "max_y": 5279.535815984718, + "center": [ + 1681.9042587727065, + 5279.535514676238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.501245509722, + 5279.535213367758 + ], + [ + 1682.307272035691, + 5279.535815984718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555001", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.037117252453, + "min_y": 5279.083845362936, + "max_x": 1682.307272035691, + "max_y": 5279.535815984718, + "center": [ + 1682.172194644072, + 5279.309830673827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.307272035691, + 5279.535815984718 + ], + [ + 1682.037117252453, + 5279.083845362936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555002", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1681.902807195774, + "min_y": 5276.898659237201, + "max_x": 1681.902807195774, + "max_y": 5277.949463642162, + "center": [ + 1681.902807195774, + 5277.424061439682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.902807195774, + 5277.949463642162 + ], + [ + 1681.902807195774, + 5276.898659237201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555003", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.35403591631, + "min_y": 5276.244947632115, + "max_x": 1681.35403591631, + "max_y": 5276.988264748112, + "center": [ + 1681.35403591631, + 5276.616606190113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.35403591631, + 5276.988264748112 + ], + [ + 1681.35403591631, + 5276.244947632115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555004", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1682.45157847524, + "min_y": 5276.244947632115, + "max_x": 1682.45157847524, + "max_y": 5276.988264748112, + "center": [ + 1682.45157847524, + 5276.616606190113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.45157847524, + 5276.988264748112 + ], + [ + 1682.45157847524, + 5276.244947632115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555005", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.35403591631, + "min_y": 5276.244947632115, + "max_x": 1682.45157847524, + "max_y": 5276.244947632115, + "center": [ + 1681.902807195775, + 5276.244947632115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.35403591631, + 5276.244947632115 + ], + [ + 1682.45157847524, + 5276.244947632115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555006", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920284305135, + "min_y": 5277.817036420618, + "max_x": 1678.927817744191, + "max_y": 5277.817036420618, + "center": [ + 1678.4240510246632, + 5277.817036420618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.920284305135, + 5277.817036420618 + ], + [ + 1678.927817744191, + 5277.817036420618 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555007", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920284305135, + "min_y": 5277.817036420618, + "max_x": 1678.258400078334, + "max_y": 5278.381747067172, + "center": [ + 1678.0893421917344, + 5278.0993917438955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.258400078334, + 5278.381747067172 + ], + [ + 1677.920284305135, + 5277.817036420618 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555008", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920284305135, + "min_y": 5279.499788024933, + "max_x": 1678.927817744191, + "max_y": 5279.499788024933, + "center": [ + 1678.4240510246632, + 5279.499788024933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.920284305135, + 5279.499788024933 + ], + [ + 1678.927817744191, + 5279.499788024933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555009", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920284305135, + "min_y": 5278.935077378381, + "max_x": 1678.258400078334, + "max_y": 5279.499788024933, + "center": [ + 1678.0893421917344, + 5279.217432701656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.258400078334, + 5278.935077378381 + ], + [ + 1677.920284305135, + 5279.499788024933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1678.1015857639804, + "min_y": 5278.335946962093, + "max_x": 1678.7465162853455, + "max_y": 5278.980877483457, + "center": [ + 1678.424051024663, + 5278.658412222775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.424051024663, + 5278.658412222775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920591913307, + "min_y": 5277.538688842362, + "max_x": 1678.928125352355, + "max_y": 5277.538688842362, + "center": [ + 1678.424358632831, + 5277.538688842362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.928125352355, + 5277.538688842362 + ], + [ + 1677.920591913307, + 5277.538688842362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.920591913307, + "min_y": 5279.806298789965, + "max_x": 1678.928125352355, + "max_y": 5279.806298789965, + "center": [ + 1678.424358632831, + 5279.806298789965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.928125352355, + 5279.806298789965 + ], + [ + 1677.920591913307, + 5279.806298789965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.589701970994, + "min_y": 5277.817036420618, + "max_x": 1678.927817744191, + "max_y": 5278.381747067172, + "center": [ + 1678.7587598575924, + 5278.0993917438955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.927817744191, + 5277.817036420618 + ], + [ + 1678.589701970994, + 5278.381747067172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.589701970994, + "min_y": 5278.935077378381, + "max_x": 1678.927817744191, + "max_y": 5279.499788024933, + "center": [ + 1678.7587598575924, + 5279.217432701656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.927817744191, + 5279.499788024933 + ], + [ + 1678.589701970994, + 5278.935077378381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55500F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.424358632831, + "min_y": 5279.806298789965, + "max_x": 1678.424380197968, + "max_y": 5280.521190801345, + "center": [ + 1678.4243694153995, + 5280.163744795655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.424358632831, + 5279.806298789965 + ], + [ + 1678.424380197968, + 5280.521190801345 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555010", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1678.424358632831, + "min_y": 5274.798681980511, + "max_x": 1678.424358632831, + "max_y": 5277.538688842362, + "center": [ + 1678.424358632831, + 5276.168685411436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.424358632831, + 5274.798681980511 + ], + [ + 1678.424358632831, + 5277.538688842362 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555011", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220594989554, + "min_y": 5230.045606229459, + "max_x": 1705.22812842861, + "max_y": 5230.045606229459, + "center": [ + 1704.7243617090821, + 5230.045606229459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.220594989554, + 5230.045606229459 + ], + [ + 1705.22812842861, + 5230.045606229459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555012", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220594989554, + "min_y": 5230.045606229459, + "max_x": 1704.558710762753, + "max_y": 5230.610316876013, + "center": [ + 1704.3896528761534, + 5230.327961552735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.558710762753, + 5230.610316876013 + ], + [ + 1704.220594989554, + 5230.045606229459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555013", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220594989554, + "min_y": 5231.728357833775, + "max_x": 1705.22812842861, + "max_y": 5231.728357833775, + "center": [ + 1704.7243617090821, + 5231.728357833775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.220594989554, + 5231.728357833775 + ], + [ + 1705.22812842861, + 5231.728357833775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555014", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220594989554, + "min_y": 5231.163647187223, + "max_x": 1704.558710762753, + "max_y": 5231.728357833775, + "center": [ + 1704.3896528761534, + 5231.446002510499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.558710762753, + 5231.163647187223 + ], + [ + 1704.220594989554, + 5231.728357833775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555015", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1704.4018964483994, + "min_y": 5230.564516770933, + "max_x": 1705.0468269697644, + "max_y": 5231.209447292297, + "center": [ + 1704.724361709082, + 5230.886982031615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.724361709082, + 5230.886982031615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555016", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220902597726, + "min_y": 5229.767258651204, + "max_x": 1705.228436036774, + "max_y": 5229.767258651204, + "center": [ + 1704.7246693172501, + 5229.767258651204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.228436036774, + 5229.767258651204 + ], + [ + 1704.220902597726, + 5229.767258651204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555017", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.220902597726, + "min_y": 5232.034868598807, + "max_x": 1705.228436036774, + "max_y": 5232.034868598807, + "center": [ + 1704.7246693172501, + 5232.034868598807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.228436036774, + 5232.034868598807 + ], + [ + 1704.220902597726, + 5232.034868598807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555018", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.890012655413, + "min_y": 5230.045606229459, + "max_x": 1705.22812842861, + "max_y": 5230.610316876013, + "center": [ + 1705.0590705420116, + 5230.327961552735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.22812842861, + 5230.045606229459 + ], + [ + 1704.890012655413, + 5230.610316876013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.890012655413, + "min_y": 5231.163647187223, + "max_x": 1705.22812842861, + "max_y": 5231.728357833775, + "center": [ + 1705.0590705420116, + 5231.446002510499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.22812842861, + 5231.728357833775 + ], + [ + 1704.890012655413, + 5231.163647187223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55501A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1704.726810996184, + "min_y": 5229.036486640677, + "max_x": 1704.728409489607, + "max_y": 5229.767258651204, + "center": [ + 1704.7276102428955, + 5229.401872645941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.726810996184, + 5229.767258651204 + ], + [ + 1704.728409489607, + 5229.036486640677 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55501B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1676.868258851765, + "min_y": 5280.01744363652, + "max_x": 1676.868258851765, + "max_y": 5281.024977075578, + "center": [ + 1676.868258851765, + 5280.521210356049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1676.868258851765, + 5280.01744363652 + ], + [ + 1676.868258851765, + 5281.024977075578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55501C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1676.561748086732, + "min_y": 5280.017751244693, + "max_x": 1676.561748086732, + "max_y": 5281.02528468374, + "center": [ + 1676.561748086732, + 5280.521517964216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1676.561748086732, + 5281.02528468374 + ], + [ + 1676.561748086732, + 5280.017751244693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55501D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1704.72466931725, + "min_y": 5232.034868598807, + "max_x": 1704.72466931725, + "max_y": 5258.273880553073, + "center": [ + 1704.72466931725, + 5245.15437457594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.72466931725, + 5258.273880553073 + ], + [ + 1704.72466931725, + 5232.034868598807 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55501E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1712.598189529743, + "min_y": 5315.788191160732, + "max_x": 1712.598189529743, + "max_y": 5316.332158280669, + "center": [ + 1712.598189529743, + 5316.0601747207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529743, + 5315.788191160732 + ], + [ + 1712.598189529743, + 5316.332158280669 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55501F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1712.598189529743, + "min_y": 5322.000396093189, + "max_x": 1712.598189529743, + "max_y": 5323.252867762896, + "center": [ + 1712.598189529743, + 5322.626631928042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529743, + 5322.000396093189 + ], + [ + 1712.598189529743, + 5323.252867762896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555020", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1704.793371612264, + "min_y": 5311.437868874747, + "max_x": 1705.338169416518, + "max_y": 5311.437868874747, + "center": [ + 1705.065770514391, + 5311.437868874747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.793371612264, + 5311.437868874747 + ], + [ + 1705.338169416518, + 5311.437868874747 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555021", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1705.338169416518, + "min_y": 5310.81099640798, + "max_x": 1708.379432318645, + "max_y": 5312.541516175273, + "center": [ + 1706.8588008675815, + 5311.6762562916265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.379432318645, + 5312.541516175273 + ], + [ + 1707.275945048981, + 5312.541516175273 + ], + [ + 1706.441656686172, + 5312.541516175273 + ], + [ + 1705.338169416518, + 5312.541516175273 + ], + [ + 1705.338169416518, + 5310.81099640798 + ], + [ + 1706.441656686172, + 5310.81099640798 + ], + [ + 1707.275945048981, + 5310.81099640798 + ], + [ + 1708.379432318645, + 5310.81099640798 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.608663581644, + "min_y": 5310.190520703703, + "max_x": 1706.858800867579, + "max_y": 5310.190520703703, + "center": [ + 1705.7337322246115, + 5310.190520703703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.858800867579, + 5310.190520703703 + ], + [ + 1704.608663581644, + 5310.190520703703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.608663581644, + "min_y": 5308.467358766256, + "max_x": 1704.608663581644, + "max_y": 5310.190520703703, + "center": [ + 1704.608663581644, + 5309.32893973498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.608663581644, + 5310.190520703703 + ], + [ + 1704.608663581644, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555024", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.771729276957, + "min_y": 5308.467358766256, + "max_x": 1704.771729276957, + "max_y": 5310.027455008399, + "center": [ + 1704.771729276957, + 5309.247406887327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.771729276957, + 5310.027455008399 + ], + [ + 1704.771729276957, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555025", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.608663581644, + "min_y": 5310.027455008399, + "max_x": 1706.858800867579, + "max_y": 5310.027455008399, + "center": [ + 1705.7337322246115, + 5310.027455008399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.858800867579, + 5310.027455008399 + ], + [ + 1704.608663581644, + 5310.027455008399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555026", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.136128487617, + "min_y": 5308.467358766256, + "max_x": 1705.244264370979, + "max_y": 5308.467358766256, + "center": [ + 1704.6901964292979, + 5308.467358766256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.244264370979, + 5308.467358766256 + ], + [ + 1704.136128487617, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555027", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.136128487617, + "min_y": 5308.365413049949, + "max_x": 1705.244264370979, + "max_y": 5308.365413049949, + "center": [ + 1704.6901964292979, + 5308.365413049949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.136128487617, + 5308.365413049949 + ], + [ + 1705.244264370979, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555028", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.244264370979, + "min_y": 5308.365413049949, + "max_x": 1705.244264370979, + "max_y": 5308.467358766256, + "center": [ + 1705.244264370979, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.244264370979, + 5308.467358766256 + ], + [ + 1705.244264370979, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555029", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.858800867579, + "min_y": 5310.190520703703, + "max_x": 1709.108938153519, + "max_y": 5310.190520703703, + "center": [ + 1707.983869510549, + 5310.190520703703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.858800867579, + 5310.190520703703 + ], + [ + 1709.108938153519, + 5310.190520703703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.108938153519, + "min_y": 5308.467358766256, + "max_x": 1709.108938153519, + "max_y": 5310.190520703703, + "center": [ + 1709.108938153519, + 5309.32893973498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.108938153519, + 5310.190520703703 + ], + [ + 1709.108938153519, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.945872458206, + "min_y": 5308.467358766256, + "max_x": 1708.945872458206, + "max_y": 5310.027455008399, + "center": [ + 1708.945872458206, + 5309.247406887327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.945872458206, + 5310.027455008399 + ], + [ + 1708.945872458206, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.858800867579, + "min_y": 5310.027455008399, + "max_x": 1709.108938153519, + "max_y": 5310.027455008399, + "center": [ + 1707.983869510549, + 5310.027455008399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.858800867579, + 5310.027455008399 + ], + [ + 1709.108938153519, + 5310.027455008399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.473337364179, + "min_y": 5308.467358766256, + "max_x": 1709.581473247554, + "max_y": 5308.467358766256, + "center": [ + 1709.0274053058665, + 5308.467358766256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.473337364179, + 5308.467358766256 + ], + [ + 1709.581473247554, + 5308.467358766256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.581473247554, + "min_y": 5308.365413049949, + "max_x": 1709.581473247554, + "max_y": 5308.467358766256, + "center": [ + 1709.581473247554, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.581473247554, + 5308.467358766256 + ], + [ + 1709.581473247554, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55502F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.473337364179, + "min_y": 5308.365413049949, + "max_x": 1709.581473247554, + "max_y": 5308.365413049949, + "center": [ + 1709.0274053058665, + 5308.365413049949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.581473247554, + 5308.365413049949 + ], + [ + 1708.473337364179, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555030", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.473337364179, + "min_y": 5308.365413049949, + "max_x": 1708.473337364179, + "max_y": 5308.467358766256, + "center": [ + 1708.473337364179, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.473337364179, + 5308.467358766256 + ], + [ + 1708.473337364179, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555031", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.581473247554, + "min_y": 5308.365413049949, + "max_x": 1709.581473247554, + "max_y": 5308.467358766256, + "center": [ + 1709.581473247554, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.581473247554, + 5308.467358766256 + ], + [ + 1709.581473247554, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555032", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.136128487617, + "min_y": 5308.365413049949, + "max_x": 1704.136128487617, + "max_y": 5308.467358766256, + "center": [ + 1704.136128487617, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.136128487617, + 5308.467358766256 + ], + [ + 1704.136128487617, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555033", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.136128487617, + "min_y": 5308.365413049949, + "max_x": 1704.136128487617, + "max_y": 5308.467358766256, + "center": [ + 1704.136128487617, + 5308.416385908103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.136128487617, + 5308.467358766256 + ], + [ + 1704.136128487617, + 5308.365413049949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555034", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.338169416518, + "min_y": 5310.81099640798, + "max_x": 1705.338169416518, + "max_y": 5312.064741341525, + "center": [ + 1705.338169416518, + 5311.437868874753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.338169416518, + 5312.064741341525 + ], + [ + 1705.338169416518, + 5310.81099640798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555035", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1712.598189529743, + "min_y": 5318.732233767539, + "max_x": 1712.598189529749, + "max_y": 5319.640241675996, + "center": [ + 1712.598189529746, + 5319.186237721768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529743, + 5318.732233767539 + ], + [ + 1712.598189529749, + 5319.640241675996 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555036", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5316.332399771915, + "max_x": 1713.154946028371, + "max_y": 5316.332399771915, + "center": [ + 1712.5964138612076, + 5316.332399771915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.037881694044, + 5316.332399771915 + ], + [ + 1713.154946028371, + 5316.332399771915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55503B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5316.595425081477, + "max_x": 1713.154946028371, + "max_y": 5318.461111844677, + "center": [ + 1712.5964138612076, + 5317.5282684630765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.037881694044, + 5316.595425081477 + ], + [ + 1713.154946028371, + 5318.461111844677 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55503C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5316.595425081477, + "max_x": 1713.154946028371, + "max_y": 5316.595425081477, + "center": [ + 1712.5964138612076, + 5316.595425081477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.037881694044, + 5316.595425081477 + ], + [ + 1713.154946028371, + 5316.595425081477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55503D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5318.461111844677, + "max_x": 1713.154946028371, + "max_y": 5318.461111844677, + "center": [ + 1712.5964138612076, + 5318.461111844677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.154946028371, + 5318.461111844677 + ], + [ + 1712.037881694044, + 5318.461111844677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55503E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.476361811825, + "min_y": 5317.869953802656, + "max_x": 1713.154946028344, + "max_y": 5318.461111844639, + "center": [ + 1712.8156539200845, + 5318.1655328236475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.154946028344, + 5318.461111844639 + ], + [ + 1712.476361811825, + 5317.869953802656 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55503F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.476361811825, + "min_y": 5317.726874911397, + "max_x": 1712.715327809874, + "max_y": 5317.869953802656, + "center": [ + 1712.5958448108495, + 5317.798414357027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.476361811825, + 5317.869953802656 + ], + [ + 1712.715327809874, + 5317.726874911397 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555040", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.954293807892, + "min_y": 5317.583796020111, + "max_x": 1713.154946028382, + "max_y": 5318.461111844618, + "center": [ + 1713.0546199181372, + 5318.022453932364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.154946028382, + 5318.461111844618 + ], + [ + 1712.954293807892, + 5317.583796020111 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555041", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.715327809861, + "min_y": 5317.583796020111, + "max_x": 1712.954293807892, + "max_y": 5317.726874911403, + "center": [ + 1712.8348108088767, + 5317.655335465757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.954293807892, + 5317.583796020111 + ], + [ + 1712.715327809861, + 5317.726874911403 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555042", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.037881694044, + "min_y": 5318.724137154241, + "max_x": 1713.154946028371, + "max_y": 5318.724137154241, + "center": [ + 1712.5964138612076, + 5318.724137154241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.037881694044, + 5318.724137154241 + ], + [ + 1713.154946028371, + 5318.724137154241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555043", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094730418384, + "min_y": 5321.632784319232, + "max_x": 1713.10226385744, + "max_y": 5321.632784319232, + "center": [ + 1712.598497137912, + 5321.632784319232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.10226385744, + 5321.632784319232 + ], + [ + 1712.094730418384, + 5321.632784319232 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555044", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.76414808424, + "min_y": 5321.06807367268, + "max_x": 1713.10226385744, + "max_y": 5321.632784319232, + "center": [ + 1712.93320597084, + 5321.3504289959565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.76414808424, + 5321.06807367268 + ], + [ + 1713.10226385744, + 5321.632784319232 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555045", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094730418384, + "min_y": 5319.950032714917, + "max_x": 1713.10226385744, + "max_y": 5319.950032714917, + "center": [ + 1712.598497137912, + 5319.950032714917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.10226385744, + 5319.950032714917 + ], + [ + 1712.094730418384, + 5319.950032714917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555046", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.76414808424, + "min_y": 5319.950032714917, + "max_x": 1713.10226385744, + "max_y": 5320.514743361471, + "center": [ + 1712.93320597084, + 5320.232388038194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.76414808424, + 5320.514743361471 + ], + [ + 1713.10226385744, + 5319.950032714917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555047", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1712.2760318772284, + "min_y": 5320.468943256394, + "max_x": 1712.9209623985935, + "max_y": 5321.113873777758, + "center": [ + 1712.598497137911, + 5320.791408517076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598497137911, + 5320.791408517076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555048", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094422810219, + "min_y": 5321.91113189749, + "max_x": 1713.101956249267, + "max_y": 5321.91113189749, + "center": [ + 1712.598189529743, + 5321.91113189749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.094422810219, + 5321.91113189749 + ], + [ + 1713.101956249267, + 5321.91113189749 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555049", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094422810219, + "min_y": 5319.643521949884, + "max_x": 1713.101956249267, + "max_y": 5319.643521949884, + "center": [ + 1712.598189529743, + 5319.643521949884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.094422810219, + 5319.643521949884 + ], + [ + 1713.101956249267, + 5319.643521949884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094730418384, + "min_y": 5321.06807367268, + "max_x": 1712.43284619158, + "max_y": 5321.632784319232, + "center": [ + 1712.263788304982, + 5321.3504289959565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.094730418384, + 5321.632784319232 + ], + [ + 1712.43284619158, + 5321.06807367268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.094730418384, + "min_y": 5319.950032714917, + "max_x": 1712.43284619158, + "max_y": 5320.514743361471, + "center": [ + 1712.263788304982, + 5320.232388038194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.094730418384, + 5319.950032714917 + ], + [ + 1712.43284619158, + 5320.514743361471 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.723296159478, + "min_y": 5310.91714300707, + "max_x": 1701.723296159478, + "max_y": 5311.961930451682, + "center": [ + 1701.723296159478, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.723296159478, + 5311.961930451682 + ], + [ + 1701.723296159478, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.423483417108, + "min_y": 5310.91714300707, + "max_x": 1701.423483417108, + "max_y": 5311.961930451682, + "center": [ + 1701.423483417108, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.423483417108, + 5311.961930451682 + ], + [ + 1701.423483417108, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.493558869894, + "min_y": 5310.915475152435, + "max_x": 1704.493558869894, + "max_y": 5311.960262597055, + "center": [ + 1704.493558869894, + 5311.437868874745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.493558869894, + 5311.960262597055 + ], + [ + 1704.493558869894, + 5310.915475152435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55504F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.793371612264, + "min_y": 5310.915475152435, + "max_x": 1704.793371612264, + "max_y": 5311.960262597055, + "center": [ + 1704.793371612264, + 5311.437868874745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.793371612264, + 5311.960262597055 + ], + [ + 1704.793371612264, + 5310.915475152435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555050", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1701.7232891303684, + "min_y": 5311.239992464774, + "max_x": 1702.1190419503018, + "max_y": 5311.635745284708, + "center": [ + 1701.921165540335, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.921165540335, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555051", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.1190419503007, + "min_y": 5311.239992464776, + "max_x": 1702.5147947702314, + "max_y": 5311.635745284706, + "center": [ + 1702.316918360266, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.316918360266, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555052", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.5147947702317, + "min_y": 5311.239992464776, + "max_x": 1702.9105475901624, + "max_y": 5311.635745284706, + "center": [ + 1702.712671180197, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.712671180197, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555053", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.5147947702328, + "min_y": 5311.239992464774, + "max_x": 1702.9105475901672, + "max_y": 5311.635745284708, + "center": [ + 1702.7126711802, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.7126711802, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555054", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.9105475901656, + "min_y": 5311.239992464776, + "max_x": 1703.3063004100964, + "max_y": 5311.635745284706, + "center": [ + 1703.108424000131, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.108424000131, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555055", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1703.3063004100975, + "min_y": 5311.239992464773, + "max_x": 1703.7020532300323, + "max_y": 5311.635745284709, + "center": [ + 1703.504176820065, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.504176820065, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555056", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1703.7020532300337, + "min_y": 5311.239992464776, + "max_x": 1704.0978060499644, + "max_y": 5311.635745284706, + "center": [ + 1703.899929639999, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.899929639999, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555057", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1704.0978060499617, + "min_y": 5311.239992464776, + "max_x": 1704.4935588698925, + "max_y": 5311.635745284706, + "center": [ + 1704.295682459927, + 5311.437868874741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.295682459927, + 5311.437868874741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555058", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.147317831479, + "min_y": 5310.419030884332, + "max_x": 1700.166155821889, + "max_y": 5311.437868874742, + "center": [ + 1699.6567368266842, + 5310.928449879537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.147317831479, + 5311.437868874742 + ], + [ + 1700.166155821889, + 5310.419030884332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555059", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.911446324288, + "min_y": 5310.164321386729, + "max_x": 1700.434339939608, + "max_y": 5310.673740381935, + "center": [ + 1700.172893131948, + 5310.419030884332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.434339939608, + 5310.673740381935 + ], + [ + 1699.911446324288, + 5310.164321386729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55505A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.333118028282, + "min_y": 5310.91714300707, + "max_x": 1700.333118028282, + "max_y": 5311.961930451682, + "center": [ + 1700.333118028282, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.333118028282, + 5311.961930451682 + ], + [ + 1700.333118028282, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55505B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.611576196836, + "min_y": 5310.91714300707, + "max_x": 1700.611576196836, + "max_y": 5311.961930451682, + "center": [ + 1700.611576196836, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.611576196836, + 5311.961930451682 + ], + [ + 1700.611576196836, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55505C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.639856547602, + "min_y": 5310.91714300707, + "max_x": 1698.639856547602, + "max_y": 5311.961930451682, + "center": [ + 1698.639856547602, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.639856547602, + 5311.961930451682 + ], + [ + 1698.639856547602, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55505D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.361398379048, + "min_y": 5310.91714300707, + "max_x": 1698.361398379048, + "max_y": 5311.961930451682, + "center": [ + 1698.361398379048, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1698.361398379048, + 5311.961930451682 + ], + [ + 1698.361398379048, + 5310.91714300707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55505E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1700.611576196836, + "min_y": 5311.439536729377, + "max_x": 1701.423483417108, + "max_y": 5311.439536729377, + "center": [ + 1701.017529806972, + 5311.439536729377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.611576196836, + 5311.439536729377 + ], + [ + 1701.423483417108, + 5311.439536729377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55505F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.639856547605, + "min_y": 5311.439536729377, + "max_x": 1700.333118028282, + "max_y": 5311.439536729377, + "center": [ + 1699.4864872879434, + 5311.439536729377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.333118028282, + 5311.439536729377 + ], + [ + 1698.639856547605, + 5311.439536729377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555060", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1697.716150757242, + "min_y": 5311.439536729377, + "max_x": 1698.361398379048, + "max_y": 5311.439536729378, + "center": [ + 1698.038774568145, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.716150757242, + 5311.439536729378 + ], + [ + 1698.361398379048, + 5311.439536729377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555061", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1708.379432318645, + "min_y": 5311.650866863269, + "max_x": 1712.599857384374, + "max_y": 5311.650866863269, + "center": [ + 1710.4896448515096, + 5311.650866863269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.599857384374, + 5311.650866863269 + ], + [ + 1708.379432318645, + 5311.650866863269 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555062", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1712.598189529743, + "min_y": 5323.252867762896, + "max_x": 1722.888886989995, + "max_y": 5323.252867762896, + "center": [ + 1717.743538259869, + 5323.252867762896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529743, + 5323.252867762896 + ], + [ + 1722.888886989995, + 5323.252867762896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555063", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.077463662069, + "min_y": 5312.718115707946, + "max_x": 1713.12225110668, + "max_y": 5312.718115707946, + "center": [ + 1712.5998573843744, + 5312.718115707946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.12225110668, + 5312.718115707946 + ], + [ + 1712.077463662069, + 5312.718115707946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555064", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.077463662069, + "min_y": 5312.418302965575, + "max_x": 1713.12225110668, + "max_y": 5312.418302965575, + "center": [ + 1712.5998573843744, + 5312.418302965575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.12225110668, + 5312.418302965575 + ], + [ + 1712.077463662069, + 5312.418302965575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555065", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.075795807433, + "min_y": 5315.488378418365, + "max_x": 1713.120583252053, + "max_y": 5315.488378418365, + "center": [ + 1712.598189529743, + 5315.488378418365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.120583252053, + 5315.488378418365 + ], + [ + 1712.075795807433, + 5315.488378418365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555066", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1712.075795807433, + "min_y": 5315.788191160732, + "max_x": 1713.120583252053, + "max_y": 5315.788191160732, + "center": [ + 1712.598189529743, + 5315.788191160732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.120583252053, + 5315.788191160732 + ], + [ + 1712.075795807433, + 5315.788191160732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555067", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197724, + "min_y": 5312.718108678834, + "max_x": 1712.7960659397058, + "max_y": 5313.113861498768, + "center": [ + 1712.598189529739, + 5312.915985088801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5312.915985088801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555068", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197737, + "min_y": 5313.113861498772, + "max_x": 1712.7960659397045, + "max_y": 5313.509614318702, + "center": [ + 1712.598189529739, + 5313.311737908737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5313.311737908737 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555069", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197737, + "min_y": 5313.5096143187, + "max_x": 1712.7960659397045, + "max_y": 5313.90536713863, + "center": [ + 1712.598189529739, + 5313.707490728665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5313.707490728665 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.400313119772, + "min_y": 5313.5096143187, + "max_x": 1712.7960659397063, + "max_y": 5313.905367138634, + "center": [ + 1712.598189529739, + 5313.707490728667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5313.707490728667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197737, + "min_y": 5313.905367138636, + "max_x": 1712.7960659397045, + "max_y": 5314.301119958566, + "center": [ + 1712.598189529739, + 5314.103243548601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5314.103243548601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197717, + "min_y": 5314.301119958566, + "max_x": 1712.7960659397065, + "max_y": 5314.6968727785015, + "center": [ + 1712.598189529739, + 5314.498996368534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5314.498996368534 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197737, + "min_y": 5314.6968727785, + "max_x": 1712.7960659397045, + "max_y": 5315.09262559843, + "center": [ + 1712.598189529739, + 5314.894749188465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5314.894749188465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.4003131197737, + "min_y": 5315.092625598432, + "max_x": 1712.7960659397045, + "max_y": 5315.488378418362, + "center": [ + 1712.598189529739, + 5315.290502008397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.598189529739, + 5315.290502008397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55506F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1712.599857384374, + "min_y": 5311.650866863269, + "max_x": 1712.599857384374, + "max_y": 5312.418302965575, + "center": [ + 1712.599857384374, + 5312.034584914421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.599857384374, + 5312.418302965575 + ], + [ + 1712.599857384374, + 5311.650866863269 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555070", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1719.920151228974, + "min_y": 5348.257015616181, + "max_x": 1723.350265896232, + "max_y": 5348.257016055915, + "center": [ + 1721.635208562603, + 5348.257015836049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.920151228974, + 5348.257016055915 + ], + [ + 1723.350265896232, + 5348.257015616181 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555071", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1726.038635611681, + "min_y": 5348.257015616176, + "max_x": 1729.834188552236, + "max_y": 5348.257015616176, + "center": [ + 1727.9364120819585, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.038635611681, + 5348.257015616176 + ], + [ + 1729.834188552236, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555072", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1732.304038311409, + "min_y": 5348.257015616176, + "max_x": 1734.521913147226, + "max_y": 5348.257015616176, + "center": [ + 1733.4129757293176, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.304038311409, + 5348.257015616176 + ], + [ + 1734.521913147226, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555073", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1723.7768997976207, + "min_y": 5348.71867710235, + "max_x": 1725.6099818872715, + "max_y": 5350.551759192002, + "center": [ + 1724.693440842446, + 5349.635218147176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.693440842446, + 5349.635218147176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555074", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.77689979762, + "min_y": 5349.635218147176, + "max_x": 1725.609981887269, + "max_y": 5349.635218147176, + "center": [ + 1724.6934408424445, + 5349.635218147176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.609981887269, + 5349.635218147176 + ], + [ + 1723.77689979762, + 5349.635218147176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555075", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.693440842446, + "min_y": 5348.542795372786, + "max_x": 1724.693440842446, + "max_y": 5349.635218147176, + "center": [ + 1724.693440842446, + 5349.089006759981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.693440842446, + 5349.635218147176 + ], + [ + 1724.693440842446, + 5348.542795372786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555076", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.938630977549, + "min_y": 5347.708244336708, + "max_x": 1725.609981887269, + "max_y": 5348.110210074938, + "center": [ + 1725.274306432409, + 5347.909227205822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.609981887269, + 5347.708244336708 + ], + [ + 1724.938630977549, + 5348.110210074938 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555077", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.77689979762, + "min_y": 5348.403821157414, + "max_x": 1724.448250707342, + "max_y": 5348.805786895637, + "center": [ + 1724.1125752524808, + 5348.604804026525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.448250707342, + 5348.403821157414 + ], + [ + 1723.77689979762, + 5348.805786895637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555078", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.609981887269, + "min_y": 5347.708244336708, + "max_x": 1725.609981887269, + "max_y": 5348.805786895637, + "center": [ + 1725.609981887269, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.609981887269, + 5348.805786895637 + ], + [ + 1725.609981887269, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555079", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.77689979762, + "min_y": 5347.708244336708, + "max_x": 1723.77689979762, + "max_y": 5348.805786895637, + "center": [ + 1723.77689979762, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.77689979762, + 5348.805786895637 + ], + [ + 1723.77689979762, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55507A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.938630977547, + "min_y": 5348.403821157414, + "max_x": 1725.609981887269, + "max_y": 5348.805786895637, + "center": [ + 1725.2743064324081, + 5348.604804026525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.609981887269, + 5348.805786895637 + ], + [ + 1724.938630977547, + 5348.403821157414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55507B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.77689979762, + "min_y": 5347.708244336708, + "max_x": 1724.448250707339, + "max_y": 5348.110210074938, + "center": [ + 1724.1125752524795, + 5347.909227205822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.448250707339, + 5348.110210074938 + ], + [ + 1723.77689979762, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55507C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.348246073205, + "min_y": 5347.687953269925, + "max_x": 1723.348246073205, + "max_y": 5348.826077962426, + "center": [ + 1723.348246073205, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.348246073205, + 5348.826077962426 + ], + [ + 1723.348246073205, + 5347.687953269925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55507D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.038635611681, + "min_y": 5347.687953269925, + "max_x": 1726.038635611681, + "max_y": 5348.826077962426, + "center": [ + 1726.038635611681, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.038635611681, + 5348.826077962426 + ], + [ + 1726.038635611681, + 5347.687953269925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55507E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1725.942903610385, + "min_y": 5341.609558288837, + "max_x": 1732.013099650556, + "max_y": 5341.609558288843, + "center": [ + 1728.9780016304703, + 5341.60955828884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.013099650556, + 5341.609558288843 + ], + [ + 1725.942903610385, + 5341.609558288837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55507F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1716.258540348881, + "min_y": 5341.609558288843, + "max_x": 1723.456627826693, + "max_y": 5341.609558288848, + "center": [ + 1719.857584087787, + 5341.609558288846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.456627826693, + 5341.609558288843 + ], + [ + 1716.258540348881, + 5341.609558288848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555080", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1732.013099650556, + "min_y": 5341.609558288843, + "max_x": 1733.310374031442, + "max_y": 5341.609558288843, + "center": [ + 1732.6617368409989, + 5341.609558288843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.013099650556, + 5341.609558288843 + ], + [ + 1733.310374031442, + 5341.609558288843 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555081", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1733.310374031442, + "min_y": 5341.609558288843, + "max_x": 1733.310374031442, + "max_y": 5348.257015616176, + "center": [ + 1733.310374031442, + 5344.93328695251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.310374031442, + 5341.609558288843 + ], + [ + 1733.310374031442, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555082", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1716.258540348881, + "min_y": 5341.609558288848, + "max_x": 1716.258540348881, + "max_y": 5348.257015616176, + "center": [ + 1716.258540348881, + 5344.933286952512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.258540348881, + 5348.257015616176 + ], + [ + 1716.258540348881, + 5341.609558288848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555083", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1727.936412081959, + "min_y": 5346.796004502383, + "max_x": 1727.936412081959, + "max_y": 5348.257015616162, + "center": [ + 1727.936412081959, + 5347.526510059272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.936412081959, + 5346.796004502383 + ], + [ + 1727.936412081959, + 5348.257015616162 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555084", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1727.936412081959, + "min_y": 5343.537253352856, + "max_x": 1727.936412081959, + "max_y": 5344.37789687682, + "center": [ + 1727.936412081959, + 5343.957575114839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.936412081959, + 5344.37789687682 + ], + [ + 1727.936412081959, + 5343.537253352856 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555085", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.693440842446, + "min_y": 5350.551759192001, + "max_x": 1724.693440842446, + "max_y": 5353.392166375867, + "center": [ + 1724.693440842446, + 5351.971962783934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.693440842446, + 5350.551759192001 + ], + [ + 1724.693440842446, + 5353.392166375867 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555086", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.311791911284, + "min_y": 5351.737440787012, + "max_x": 1725.075089773605, + "max_y": 5352.17813101329, + "center": [ + 1724.6934408424445, + 5351.957785900151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.311791911284, + 5351.737440787012 + ], + [ + 1725.075089773605, + 5352.17813101329 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555087", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.311791911284, + "min_y": 5352.096697318727, + "max_x": 1725.075089773605, + "max_y": 5352.537387545013, + "center": [ + 1724.6934408424445, + 5352.3170424318705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.311791911284, + 5352.096697318727 + ], + [ + 1725.075089773605, + 5352.537387545013 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555088", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1724.257887025979, + "min_y": 5353.725968332154, + "max_x": 1725.7128759794539, + "max_y": 5354.534295528529, + "center": [ + 1724.9853815027163, + 5354.130131930341 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555089", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1718.952335940571, + "min_y": 5353.672045903721, + "max_x": 1721.3035636276766, + "max_y": 5354.9782835076685, + "center": [ + 1720.1279497841238, + 5354.325164705695 + ] + }, + "raw_value": "TCV", + "clean_value": "TCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55508A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.037129678003, + "min_y": 5354.951915896848, + "max_x": 1726.349752006888, + "max_y": 5354.951915896848, + "center": [ + 1724.6934408424454, + 5354.951915896848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.037129678003, + 5354.951915896848 + ], + [ + 1726.349752006888, + 5354.951915896848 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55508B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1726.349752006888, + "min_y": 5353.392166375867, + "max_x": 1726.349752006888, + "max_y": 5354.951915896848, + "center": [ + 1726.349752006888, + 5354.172041136358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.349752006888, + 5354.951915896848 + ], + [ + 1726.349752006888, + 5353.392166375867 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55508C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.037129678003, + "min_y": 5353.392166375867, + "max_x": 1726.349752006888, + "max_y": 5353.392166375867, + "center": [ + 1724.6934408424454, + 5353.392166375867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.349752006888, + 5353.392166375867 + ], + [ + 1723.037129678003, + 5353.392166375867 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55508D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.037129678003, + "min_y": 5353.392166375867, + "max_x": 1723.037129678003, + "max_y": 5354.951915896848, + "center": [ + 1723.037129678003, + 5354.172041136358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.037129678003, + 5353.392166375867 + ], + [ + 1723.037129678003, + 5354.951915896848 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55508E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1717.5174538234648, + "min_y": 5350.184771330698, + "max_x": 1723.2316272413711, + "max_y": 5355.898944748604, + "center": [ + 1720.374540532418, + 5353.041858039651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.374540532418, + 5353.041858039651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55508F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1722.341307611281, + "min_y": 5348.951494980407, + "max_x": 1724.227745203518, + "max_y": 5350.969474938009, + "center": [ + 1723.2845264073994, + 5349.960484959208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.341307611281, + 5350.969474938009 + ], + [ + 1724.227745203518, + 5348.951494980407 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555090", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1726.038635611681, + "min_y": 5348.257015616159, + "max_x": 1729.834188552236, + "max_y": 5348.257015616159, + "center": [ + 1727.9364120819585, + 5348.257015616159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.038635611681, + 5348.257015616159 + ], + [ + 1729.834188552236, + 5348.257015616159 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555091", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1718.215650587885, + "min_y": 5351.373587664646, + "max_x": 1722.1343633997278, + "max_y": 5352.679825268594, + "center": [ + 1720.1750069938064, + 5352.02670646662 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555092", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1714.090713911842, + "min_y": 5348.257015616176, + "max_x": 1717.450301469801, + "max_y": 5348.257015616176, + "center": [ + 1715.7705076908214, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.450301469801, + 5348.257015616176 + ], + [ + 1714.090713911842, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555093", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1708.988955054544, + "min_y": 5348.257015616176, + "max_x": 1712.264584725955, + "max_y": 5348.257015616176, + "center": [ + 1710.6267698902495, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1712.264584725955, + 5348.257015616176 + ], + [ + 1708.988955054544, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555094", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1703.8475896147972, + "min_y": 5346.460732957566, + "max_x": 1707.440154932019, + "max_y": 5350.053298274787, + "center": [ + 1705.643872273408, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643872273408, + 5348.257015616176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555095", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1702.767234302535, + "min_y": 5348.257015616176, + "max_x": 1703.847589614798, + "max_y": 5348.257015616176, + "center": [ + 1703.3074119586663, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.847589614798, + 5348.257015616176 + ], + [ + 1702.767234302535, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555096", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.373708624577, + "min_y": 5346.98685196734, + "max_x": 1706.914035922238, + "max_y": 5349.527179265006, + "center": [ + 1705.6438722734074, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.914035922238, + 5349.527179265006 + ], + [ + 1704.373708624577, + 5346.98685196734 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555097", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.373708624577, + "min_y": 5346.98685196734, + "max_x": 1706.914035922238, + "max_y": 5349.527179265006, + "center": [ + 1705.6438722734074, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.373708624577, + 5349.527179265006 + ], + [ + 1706.914035922238, + 5346.98685196734 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555098", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.786785564455, + "min_y": 5351.2385615083, + "max_x": 1708.5009589823612, + "max_y": 5356.952734926206, + "center": [ + 1705.643872273408, + 5354.095648217253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643872273408, + 5354.095648217253 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555099", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1705.643872273408, + "min_y": 5350.053298274791, + "max_x": 1705.643872273408, + "max_y": 5351.239392957634, + "center": [ + 1705.643872273408, + 5350.646345616213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643872273408, + 5350.053298274791 + ], + [ + 1705.643872273408, + 5351.239392957634 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55509A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1704.549114537539, + "min_y": 5354.523636233605, + "max_x": 1706.9003422246446, + "max_y": 5355.829873837553, + "center": [ + 1705.7247283810918, + 5355.17675503558 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55509B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.470456180139, + "min_y": 5352.338791918054, + "max_x": 1707.389168991982, + "max_y": 5353.645029522002, + "center": [ + 1705.4298125860605, + 5352.991910720028 + ] + }, + "raw_value": "10115", + "clean_value": "10115", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55509C", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1695.122827727607, + "min_y": 5348.257015616176, + "max_x": 1695.122827727607, + "max_y": 5350.954710125414, + "center": [ + 1695.122827727607, + 5349.605862870795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.122827727607, + 5350.954710125414 + ], + [ + 1695.122827727607, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55509D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.548698332095, + "min_y": 5347.708244336708, + "max_x": 1689.381780421746, + "max_y": 5348.805786895637, + "center": [ + 1688.4652393769206, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.381780421746, + 5347.708244336708 + ], + [ + 1687.548698332095, + 5348.805786895637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55509E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1689.381780421746, + "min_y": 5347.708244336708, + "max_x": 1689.381780421746, + "max_y": 5348.805786895637, + "center": [ + 1689.381780421746, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.381780421746, + 5348.805786895637 + ], + [ + 1689.381780421746, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55509F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.548698332095, + "min_y": 5347.708244336708, + "max_x": 1687.548698332095, + "max_y": 5348.805786895637, + "center": [ + 1687.548698332095, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.548698332095, + 5348.805786895637 + ], + [ + 1687.548698332095, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.548698332095, + "min_y": 5347.708244336708, + "max_x": 1689.381780421746, + "max_y": 5348.805786895637, + "center": [ + 1688.4652393769206, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.381780421746, + 5348.805786895637 + ], + [ + 1687.548698332095, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550A1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1687.5486983320957, + "min_y": 5348.71867710235, + "max_x": 1689.3817804217465, + "max_y": 5350.551759192002, + "center": [ + 1688.465239376921, + 5349.635218147176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5349.635218147176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.548698332095, + "min_y": 5349.635218147176, + "max_x": 1689.381780421746, + "max_y": 5349.635218147176, + "center": [ + 1688.4652393769206, + 5349.635218147176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.381780421746, + 5349.635218147176 + ], + [ + 1687.548698332095, + 5349.635218147176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5348.257015616176, + "max_x": 1688.465239376921, + "max_y": 5349.635218147176, + "center": [ + 1688.465239376921, + 5348.946116881676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5349.635218147176 + ], + [ + 1688.465239376921, + 5348.257015616176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5350.551759192001, + "max_x": 1688.465239376921, + "max_y": 5351.104407907433, + "center": [ + 1688.465239376921, + 5350.828083549717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5350.551759192001 + ], + [ + 1688.465239376921, + 5351.104407907433 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5351.104407907433, + "max_x": 1691.246173825688, + "max_y": 5351.104407907433, + "center": [ + 1689.8557066013045, + 5351.104407907433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5351.104407907433 + ], + [ + 1691.246173825688, + 5351.104407907433 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5348.257015616176, + "max_x": 1691.246173825688, + "max_y": 5351.104407907433, + "center": [ + 1689.8557066013045, + 5349.680711761805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.246173825688, + 5351.104407907433 + ], + [ + 1688.465239376921, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550A7", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1678.801125839413, + "min_y": 5348.257015616176, + "max_x": 1687.155197270521, + "max_y": 5348.257015616176, + "center": [ + 1682.978161554967, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.155197270521, + 5348.257015616176 + ], + [ + 1678.801125839413, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550A8", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1673.164065397939, + "min_y": 5348.257015616176, + "max_x": 1675.346074851136, + "max_y": 5348.257015616176, + "center": [ + 1674.2550701245377, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.346074851136, + 5348.257015616176 + ], + [ + 1673.164065397939, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550A9", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1668.897701175431, + "min_y": 5348.257015616176, + "max_x": 1670.694215638766, + "max_y": 5348.257015616176, + "center": [ + 1669.7959584070986, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.897701175431, + 5348.257015616176 + ], + [ + 1670.694215638766, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550AA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1660.023140223198, + "min_y": 5347.421008792959, + "max_x": 1664.501209779016, + "max_y": 5348.913698644898, + "center": [ + 1662.2621750011072, + 5348.167353718929 + ] + }, + "raw_value": "STEAM", + "clean_value": "STEAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.988955054544, + "min_y": 5347.708244336708, + "max_x": 1708.988955054544, + "max_y": 5348.805786895637, + "center": [ + 1708.988955054544, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.988955054544, + 5348.805786895637 + ], + [ + 1708.988955054544, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.560301330134, + "min_y": 5347.687953269925, + "max_x": 1708.560301330134, + "max_y": 5348.826077962426, + "center": [ + 1708.560301330134, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.560301330134, + 5348.826077962426 + ], + [ + 1708.560301330134, + 5347.687953269925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.33858057812, + "min_y": 5347.708244336708, + "max_x": 1702.33858057812, + "max_y": 5348.805786895637, + "center": [ + 1702.33858057812, + 5348.257015616173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.33858057812, + 5348.805786895637 + ], + [ + 1702.33858057812, + 5347.708244336708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.767234302535, + "min_y": 5347.687953269925, + "max_x": 1702.767234302535, + "max_y": 5348.826077962426, + "center": [ + 1702.767234302535, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.767234302535, + 5348.826077962426 + ], + [ + 1702.767234302535, + 5347.687953269925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550AF", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1707.440154932018, + "min_y": 5348.257015616176, + "max_x": 1708.560301330134, + "max_y": 5348.257015616176, + "center": [ + 1708.000228131076, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.560301330134, + 5348.257015616176 + ], + [ + 1707.440154932018, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550B0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1688.465239376921, + "min_y": 5351.104407907428, + "max_x": 1688.465239376921, + "max_y": 5352.204515981888, + "center": [ + 1688.465239376921, + 5351.654461944658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5351.104407907428 + ], + [ + 1688.465239376921, + 5352.204515981888 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5550B1", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1685.608152667968, + "min_y": 5352.203684532544, + "max_x": 1691.3223260858742, + "max_y": 5357.91785795045, + "center": [ + 1688.465239376921, + 5355.060771241497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.465239376921, + 5355.060771241497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5550B2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1686.291823283652, + "min_y": 5353.310384452707, + "max_x": 1690.210536095495, + "max_y": 5354.616622056655, + "center": [ + 1688.2511796895735, + 5353.963503254681 + ] + }, + "raw_value": "10115", + "clean_value": "10115", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5550B3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1687.02573288143, + "min_y": 5355.633113454749, + "max_x": 1689.3769605685357, + "max_y": 5356.939351058697, + "center": [ + 1688.2013467249828, + 5356.286232256723 + ] + }, + "raw_value": "PRV", + "clean_value": "PRV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5550B4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1658.065910746485, + "min_y": 5350.240376400987, + "max_x": 1666.914340390632, + "max_y": 5350.240376400987, + "center": [ + 1662.4901255685586, + 5350.240376400987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.065910746485, + 5350.240376400987 + ], + [ + 1666.914340390632, + 5350.240376400987 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5550B5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1658.065910746485, + "min_y": 5346.270595781263, + "max_x": 1666.914340390632, + "max_y": 5346.270595781263, + "center": [ + 1662.4901255685586, + 5346.270595781263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.914340390632, + 5346.270595781263 + ], + [ + 1658.065910746485, + 5346.270595781263 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5550B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1658.065910746485, + "min_y": 5346.270595781263, + "max_x": 1658.065910746485, + "max_y": 5350.240376400987, + "center": [ + 1658.065910746485, + 5348.255486091125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1658.065910746485, + 5346.270595781263 + ], + [ + 1658.065910746485, + 5350.240376400987 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550B7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1666.914340390632, + "min_y": 5348.255486091119, + "max_x": 1668.899230700487, + "max_y": 5350.240376400976, + "center": [ + 1667.9067855455596, + 5349.247931246047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1666.914340390632, + 5350.240376400976 + ], + [ + 1668.899230700487, + 5348.255486091119 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5550B8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1666.914340390632, + "min_y": 5346.270595781263, + "max_x": 1668.899230700487, + "max_y": 5348.255486091119, + "center": [ + 1667.9067855455596, + 5347.263040936191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1668.899230700487, + 5348.255486091119 + ], + [ + 1666.914340390632, + 5346.270595781263 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5550B9", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1724.693440842446, + "min_y": 5354.951915896848, + "max_x": 1724.693440842446, + "max_y": 5361.524895104221, + "center": [ + 1724.693440842446, + 5358.238405500535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.693440842446, + 5354.951915896848 + ], + [ + 1724.693440842446, + 5361.524895104221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5550BA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1724.4076610858315, + "min_y": 5347.971235859562, + "max_x": 1724.9792205990607, + "max_y": 5348.542795372791, + "center": [ + 1724.693440842446, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.693440842446, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.792978265141, + "min_y": 5348.257015616176, + "max_x": 1681.792978265141, + "max_y": 5350.954710125414, + "center": [ + 1681.792978265141, + 5349.605862870795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.792978265141, + 5350.954710125414 + ], + [ + 1681.792978265141, + 5348.257015616176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550BC", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1684.490084946157, + "min_y": 5347.206211211204, + "max_x": 1684.490084946157, + "max_y": 5348.257015616176, + "center": [ + 1684.490084946157, + 5347.731613413691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.490084946157, + 5347.206211211204 + ], + [ + 1684.490084946157, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550BD", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1684.492722316878, + "min_y": 5343.687995511203, + "max_x": 1684.492722316878, + "max_y": 5344.788103585648, + "center": [ + 1684.492722316878, + 5344.238049548425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.492722316878, + 5344.788103585648 + ], + [ + 1684.492722316878, + 5343.687995511203 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550BE", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1699.0231711698, + "min_y": 5348.257015616176, + "max_x": 1702.33858057812, + "max_y": 5348.257015616176, + "center": [ + 1700.6808758739598, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.33858057812, + 5348.257015616176 + ], + [ + 1699.0231711698, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550BF", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1689.775377515029, + "min_y": 5348.257015616176, + "max_x": 1699.051377890458, + "max_y": 5348.257015616176, + "center": [ + 1694.4133777027437, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.051377890458, + 5348.257015616176 + ], + [ + 1689.775377515029, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5550C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802495, + "min_y": 5342.88354174777, + "max_x": 1727.387640802495, + "max_y": 5343.626858863767, + "center": [ + 1727.387640802495, + 5343.255200305768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.387640802495, + 5343.626858863767 + ], + [ + 1727.387640802495, + 5342.88354174777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.485183361425, + "min_y": 5342.88354174777, + "max_x": 1728.485183361425, + "max_y": 5343.626858863767, + "center": [ + 1728.485183361425, + 5343.255200305768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.485183361425, + 5343.626858863767 + ], + [ + 1728.485183361425, + 5342.88354174777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802495, + "min_y": 5342.88354174777, + "max_x": 1728.485183361425, + "max_y": 5342.88354174777, + "center": [ + 1727.93641208196, + 5342.88354174777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.387640802495, + 5342.88354174777 + ], + [ + 1728.485183361425, + 5342.88354174777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.304037269795, + "min_y": 5347.734621893853, + "max_x": 1732.304039353023, + "max_y": 5348.779409338465, + "center": [ + 1732.304038311409, + 5348.257015616158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.304039353023, + 5348.779409338465 + ], + [ + 1732.304037269795, + 5347.734621893853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.834187510632, + "min_y": 5347.734626818545, + "max_x": 1729.83418959386, + "max_y": 5348.779414263166, + "center": [ + 1729.834188552246, + 5348.257020540856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.83418959386, + 5348.779414263166 + ], + [ + 1729.834187510632, + 5347.734626818545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.227689524083, + "min_y": 5348.422669576592, + "max_x": 1730.792399496454, + "max_y": 5348.760786475775, + "center": [ + 1730.5100445102685, + 5348.591728026184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.227689524083, + 5348.760786475775 + ], + [ + 1730.792399496454, + 5348.422669576592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.345729147076, + "min_y": 5347.753249681446, + "max_x": 1731.910439119447, + "max_y": 5348.091366580624, + "center": [ + 1731.6280841332614, + 5347.922308131035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.345729147076, + 5348.091366580624 + ], + [ + 1731.910439119447, + 5347.753249681446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.910439119447, + "min_y": 5347.753249681446, + "max_x": 1731.910441128394, + "max_y": 5348.760783120489, + "center": [ + 1731.9104401239206, + 5348.257016400967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.910441128394, + 5348.760783120489 + ], + [ + 1731.910439119447, + 5347.753249681446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.227687515134, + "min_y": 5347.753253036725, + "max_x": 1730.227689524083, + "max_y": 5348.760786475775, + "center": [ + 1730.2276885196084, + 5348.25701975625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.227689524083, + 5348.760786475775 + ], + [ + 1730.227687515134, + 5347.753253036725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.227687515134, + "min_y": 5347.753253036725, + "max_x": 1730.792398835863, + "max_y": 5348.09136768393, + "center": [ + 1730.5100431754986, + 5347.922310360327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.227687515134, + 5347.753253036725 + ], + [ + 1730.792398835863, + 5348.09136768393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1731.345729807667, + "min_y": 5348.422668473291, + "max_x": 1731.910441128394, + "max_y": 5348.760783120489, + "center": [ + 1731.6280854680306, + 5348.59172579689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.345729807667, + 5348.422668473291 + ], + [ + 1731.910441128394, + 5348.760783120489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1730.7465990610806, + "min_y": 5347.934552817926, + "max_x": 1731.3915295824456, + "max_y": 5348.57948333929, + "center": [ + 1731.069064321763, + 5348.257018078608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1731.069064321763, + 5348.257018078608 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.92015018736, + "min_y": 5347.734621893869, + "max_x": 1719.920152270588, + "max_y": 5348.779409338482, + "center": [ + 1719.920151228974, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.920152270588, + 5348.779409338482 + ], + [ + 1719.92015018736, + 5347.734621893869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.450300428196, + "min_y": 5347.734626818561, + "max_x": 1717.450302511425, + "max_y": 5348.779414263183, + "center": [ + 1717.4503014698105, + 5348.257020540872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.450302511425, + 5348.779414263183 + ], + [ + 1717.450300428196, + 5347.734626818561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.843802441648, + "min_y": 5348.422669576608, + "max_x": 1718.408512414019, + "max_y": 5348.760786475792, + "center": [ + 1718.1261574278335, + 5348.5917280262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.843802441648, + 5348.760786475792 + ], + [ + 1718.408512414019, + 5348.422669576608 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.961842064641, + "min_y": 5347.753249681462, + "max_x": 1719.526552037012, + "max_y": 5348.09136658064, + "center": [ + 1719.2441970508264, + 5347.922308131051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.961842064641, + 5348.09136658064 + ], + [ + 1719.526552037012, + 5347.753249681462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1719.526552037012, + "min_y": 5347.753249681462, + "max_x": 1719.526554045958, + "max_y": 5348.760783120506, + "center": [ + 1719.526553041485, + 5348.257016400984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1719.526554045958, + 5348.760783120506 + ], + [ + 1719.526552037012, + 5347.753249681462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.843800432698, + "min_y": 5347.753253036742, + "max_x": 1717.843802441648, + "max_y": 5348.760786475792, + "center": [ + 1717.843801437173, + 5348.257019756267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.843802441648, + 5348.760786475792 + ], + [ + 1717.843800432698, + 5347.753253036742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1717.843800432698, + "min_y": 5347.753253036742, + "max_x": 1718.408511753427, + "max_y": 5348.091367683946, + "center": [ + 1718.1261560930625, + 5347.9223103603435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1717.843800432698, + 5347.753253036742 + ], + [ + 1718.408511753427, + 5348.091367683946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.961842725232, + "min_y": 5348.422668473308, + "max_x": 1719.526554045958, + "max_y": 5348.760783120506, + "center": [ + 1719.244198385595, + 5348.591725796907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.961842725232, + 5348.422668473308 + ], + [ + 1719.526554045958, + 5348.760783120506 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1718.3627119786454, + "min_y": 5347.934552817942, + "max_x": 1719.0076425000104, + "max_y": 5348.5794833393065, + "center": [ + 1718.685177239328, + 5348.257018078624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.685177239328, + 5348.257018078624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.926476544251, + "min_y": 5341.087164566538, + "max_x": 1725.92647862748, + "max_y": 5342.131952011148, + "center": [ + 1725.9264775858655, + 5341.609558288843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.92647862748, + 5342.131952011148 + ], + [ + 1725.926476544251, + 5341.087164566538 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.456626785088, + "min_y": 5341.087169491228, + "max_x": 1723.456628868317, + "max_y": 5342.13195693585, + "center": [ + 1723.4566278267025, + 5341.609563213539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.456628868317, + 5342.13195693585 + ], + [ + 1723.456626785088, + 5341.087169491228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.850128798539, + "min_y": 5341.775212249276, + "max_x": 1724.414838770911, + "max_y": 5342.11332914846, + "center": [ + 1724.132483784725, + 5341.944270698868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.850128798539, + 5342.11332914846 + ], + [ + 1724.414838770911, + 5341.775212249276 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.968168421533, + "min_y": 5341.105792354128, + "max_x": 1725.532878393904, + "max_y": 5341.443909253308, + "center": [ + 1725.2505234077184, + 5341.274850803718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.968168421533, + 5341.443909253308 + ], + [ + 1725.532878393904, + 5341.105792354128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.532878393904, + "min_y": 5341.105792354128, + "max_x": 1725.53288040285, + "max_y": 5342.113325793174, + "center": [ + 1725.532879398377, + 5341.609559073651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.53288040285, + 5342.113325793174 + ], + [ + 1725.532878393904, + 5341.105792354128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.85012678959, + "min_y": 5341.10579570941, + "max_x": 1723.850128798539, + "max_y": 5342.11332914846, + "center": [ + 1723.8501277940645, + 5341.6095624289355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.850128798539, + 5342.11332914846 + ], + [ + 1723.85012678959, + 5341.10579570941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.85012678959, + "min_y": 5341.10579570941, + "max_x": 1724.414838110319, + "max_y": 5341.443910356613, + "center": [ + 1724.1324824499543, + 5341.274853033012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.85012678959, + 5341.10579570941 + ], + [ + 1724.414838110319, + 5341.443910356613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.968169082124, + "min_y": 5341.775211145976, + "max_x": 1725.53288040285, + "max_y": 5342.113325793174, + "center": [ + 1725.250524742487, + 5341.944268469575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.968169082124, + 5341.775211145976 + ], + [ + 1725.53288040285, + 5342.113325793174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1724.3690383355374, + "min_y": 5341.287095490608, + "max_x": 1725.0139688569025, + "max_y": 5341.932026011973, + "center": [ + 1724.69150359622, + 5341.609560751291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.69150359622, + 5341.609560751291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.164064356325, + "min_y": 5347.734621893869, + "max_x": 1673.164066439553, + "max_y": 5348.779409338482, + "center": [ + 1673.1640653979389, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.164066439553, + 5348.779409338482 + ], + [ + 1673.164064356325, + 5347.734621893869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1670.694214597161, + "min_y": 5347.734626818561, + "max_x": 1670.69421668039, + "max_y": 5348.779414263183, + "center": [ + 1670.6942156387754, + 5348.257020540872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1670.69421668039, + 5348.779414263183 + ], + [ + 1670.694214597161, + 5347.734626818561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.087716610613, + "min_y": 5348.422669576608, + "max_x": 1671.652426582984, + "max_y": 5348.760786475792, + "center": [ + 1671.3700715967984, + 5348.5917280262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.087716610613, + 5348.760786475792 + ], + [ + 1671.652426582984, + 5348.422669576608 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.205756233606, + "min_y": 5347.753249681462, + "max_x": 1672.770466205977, + "max_y": 5348.09136658064, + "center": [ + 1672.4881112197916, + 5347.922308131051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.205756233606, + 5348.09136658064 + ], + [ + 1672.770466205977, + 5347.753249681462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.770466205977, + "min_y": 5347.753249681462, + "max_x": 1672.770468214924, + "max_y": 5348.760783120506, + "center": [ + 1672.7704672104505, + 5348.257016400984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.770468214924, + 5348.760783120506 + ], + [ + 1672.770466205977, + 5347.753249681462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.087714601664, + "min_y": 5347.753253036742, + "max_x": 1671.087716610613, + "max_y": 5348.760786475792, + "center": [ + 1671.0877156061383, + 5348.257019756267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.087716610613, + 5348.760786475792 + ], + [ + 1671.087714601664, + 5347.753253036742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.087714601664, + "min_y": 5347.753253036742, + "max_x": 1671.652425922393, + "max_y": 5348.091367683946, + "center": [ + 1671.3700702620285, + 5347.9223103603435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.087714601664, + 5347.753253036742 + ], + [ + 1671.652425922393, + 5348.091367683946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.205756894197, + "min_y": 5348.422668473308, + "max_x": 1672.770468214924, + "max_y": 5348.760783120506, + "center": [ + 1672.4881125545605, + 5348.591725796907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.205756894197, + 5348.422668473308 + ], + [ + 1672.770468214924, + 5348.760783120506 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1671.6066261476105, + "min_y": 5347.934552817942, + "max_x": 1672.2515566689756, + "max_y": 5348.5794833393065, + "center": [ + 1671.929091408293, + 5348.257018078624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.929091408293, + 5348.257018078624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5346.796004502383, + "max_x": 1728.485183361424, + "max_y": 5346.796004502383, + "center": [ + 1727.9364120819591, + 5346.796004502383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.485183361424, + 5346.796004502383 + ], + [ + 1727.387640802494, + 5346.796004502383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5344.37789687682, + "max_x": 1728.485183361424, + "max_y": 5344.37789687682, + "center": [ + 1727.9364120819591, + 5344.37789687682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.387640802494, + 5344.37789687682 + ], + [ + 1728.485183361424, + 5344.37789687682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550EA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1727.5825016579975, + "min_y": 5345.274166571533, + "max_x": 1728.2850477644765, + "max_y": 5345.976712678012, + "center": [ + 1727.933774711237, + 5345.625439624772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.933774711237, + 5345.625439624772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5344.704493723838, + "max_x": 1727.757222922587, + "max_y": 5345.321758502767, + "center": [ + 1727.5724318625405, + 5345.013126113303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.757222922587, + 5345.321758502767 + ], + [ + 1727.387640802494, + 5344.704493723838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5344.704493723838, + "max_x": 1728.485183361424, + "max_y": 5344.704493723838, + "center": [ + 1727.9364120819591, + 5344.704493723838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.387640802494, + 5344.704493723838 + ], + [ + 1728.485183361424, + 5344.704493723838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.114224269015, + "min_y": 5344.704493723838, + "max_x": 1728.485183361424, + "max_y": 5345.324058279905, + "center": [ + 1728.2997038152196, + 5345.014276001872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.485183361424, + 5344.704493723838 + ], + [ + 1728.114224269015, + 5345.324058279905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.387640802494, + "min_y": 5346.537575813485, + "max_x": 1728.485183361424, + "max_y": 5346.537575813485, + "center": [ + 1727.9364120819591, + 5346.537575813485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.387640802494, + 5346.537575813485 + ], + [ + 1728.485183361424, + 5346.537575813485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.116861639738, + "min_y": 5345.922416113523, + "max_x": 1728.485183361424, + "max_y": 5346.537575813485, + "center": [ + 1728.301022500581, + 5346.229995963504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.485183361424, + 5346.537575813485 + ], + [ + 1728.116861639738, + 5345.922416113523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.382366061047, + "min_y": 5345.922416113523, + "max_x": 1727.750687782732, + "max_y": 5346.537575813485, + "center": [ + 1727.5665269218894, + 5346.229995963504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.382366061047, + 5346.537575813485 + ], + [ + 1727.750687782732, + 5345.922416113523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5353.372817750976, + "max_x": 1695.671599007073, + "max_y": 5353.372817750976, + "center": [ + 1695.122827727608, + 5353.372817750976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.671599007073, + 5353.372817750976 + ], + [ + 1694.574056448143, + 5353.372817750976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5350.954710125414, + "max_x": 1695.671599007073, + "max_y": 5350.954710125414, + "center": [ + 1695.122827727608, + 5350.954710125414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.574056448143, + 5350.954710125414 + ], + [ + 1695.671599007073, + 5350.954710125414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1694.7689173036454, + "min_y": 5351.850979820126, + "max_x": 1695.4714634101244, + "max_y": 5352.553525926604, + "center": [ + 1695.120190356885, + 5352.202252873365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.120190356885, + 5352.202252873365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5351.281306972432, + "max_x": 1694.943638568236, + "max_y": 5351.898571751361, + "center": [ + 1694.7588475081895, + 5351.5899393618965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.943638568236, + 5351.898571751361 + ], + [ + 1694.574056448143, + 5351.281306972432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5351.281306972432, + "max_x": 1695.671599007073, + "max_y": 5351.281306972432, + "center": [ + 1695.122827727608, + 5351.281306972432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.574056448143, + 5351.281306972432 + ], + [ + 1695.671599007073, + 5351.281306972432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.300639914664, + "min_y": 5351.281306972432, + "max_x": 1695.671599007073, + "max_y": 5351.900871528499, + "center": [ + 1695.4861194608684, + 5351.591089250465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.671599007073, + 5351.281306972432 + ], + [ + 1695.300639914664, + 5351.900871528499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.574056448143, + "min_y": 5353.11438906208, + "max_x": 1695.671599007073, + "max_y": 5353.11438906208, + "center": [ + 1695.122827727608, + 5353.11438906208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.574056448143, + 5353.11438906208 + ], + [ + 1695.671599007073, + 5353.11438906208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.303277285387, + "min_y": 5352.499229362116, + "max_x": 1695.671599007073, + "max_y": 5353.11438906208, + "center": [ + 1695.48743814623, + 5352.8068092120975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.671599007073, + 5353.11438906208 + ], + [ + 1695.303277285387, + 5352.499229362116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.568781706696, + "min_y": 5352.499229362116, + "max_x": 1694.937103428381, + "max_y": 5353.11438906208, + "center": [ + 1694.7529425675384, + 5352.8068092120975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.568781706696, + 5353.11438906208 + ], + [ + 1694.937103428381, + 5352.499229362116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5353.372817750976, + "max_x": 1682.341749544606, + "max_y": 5353.372817750976, + "center": [ + 1681.792978265141, + 5353.372817750976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.341749544606, + 5353.372817750976 + ], + [ + 1681.244206985676, + 5353.372817750976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5350.954710125414, + "max_x": 1682.341749544606, + "max_y": 5350.954710125414, + "center": [ + 1681.792978265141, + 5350.954710125414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.244206985676, + 5350.954710125414 + ], + [ + 1682.341749544606, + 5350.954710125414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1681.4390678411794, + "min_y": 5351.850979820126, + "max_x": 1682.1416139476585, + "max_y": 5352.553525926604, + "center": [ + 1681.790340894419, + 5352.202252873365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.790340894419, + 5352.202252873365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5351.281306972432, + "max_x": 1681.613789105769, + "max_y": 5351.898571751361, + "center": [ + 1681.4289980457224, + 5351.5899393618965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.613789105769, + 5351.898571751361 + ], + [ + 1681.244206985676, + 5351.281306972432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5351.281306972432, + "max_x": 1682.341749544606, + "max_y": 5351.281306972432, + "center": [ + 1681.792978265141, + 5351.281306972432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.244206985676, + 5351.281306972432 + ], + [ + 1682.341749544606, + 5351.281306972432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5550FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.970790452197, + "min_y": 5351.281306972432, + "max_x": 1682.341749544606, + "max_y": 5351.900871528499, + "center": [ + 1682.1562699984015, + 5351.591089250465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.341749544606, + 5351.281306972432 + ], + [ + 1681.970790452197, + 5351.900871528499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.244206985676, + "min_y": 5353.11438906208, + "max_x": 1682.341749544606, + "max_y": 5353.11438906208, + "center": [ + 1681.792978265141, + 5353.11438906208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.244206985676, + 5353.11438906208 + ], + [ + 1682.341749544606, + 5353.11438906208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.973427822921, + "min_y": 5352.499229362116, + "max_x": 1682.341749544606, + "max_y": 5353.11438906208, + "center": [ + 1682.1575886837636, + 5352.8068092120975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1682.341749544606, + 5353.11438906208 + ], + [ + 1681.973427822921, + 5352.499229362116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555102", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.238932244229, + "min_y": 5352.499229362116, + "max_x": 1681.607253965915, + "max_y": 5353.11438906208, + "center": [ + 1681.423093105072, + 5352.8068092120975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.238932244229, + 5353.11438906208 + ], + [ + 1681.607253965915, + 5352.499229362116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5347.20621121121, + "max_x": 1685.041493596343, + "max_y": 5347.20621121121, + "center": [ + 1684.492722316878, + 5347.20621121121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.041493596343, + 5347.20621121121 + ], + [ + 1683.943951037413, + 5347.20621121121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5344.788103585648, + "max_x": 1685.041493596343, + "max_y": 5344.788103585648, + "center": [ + 1684.492722316878, + 5344.788103585648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.943951037413, + 5344.788103585648 + ], + [ + 1685.041493596343, + 5344.788103585648 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555105", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1684.1388118929165, + "min_y": 5345.68437328036, + "max_x": 1684.8413579993955, + "max_y": 5346.386919386839, + "center": [ + 1684.490084946156, + 5346.035646333599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.490084946156, + 5346.035646333599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555106", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5345.114700432667, + "max_x": 1684.313533157506, + "max_y": 5345.731965211594, + "center": [ + 1684.1287420974595, + 5345.423332822131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.313533157506, + 5345.731965211594 + ], + [ + 1683.943951037413, + 5345.114700432667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555107", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5345.114700432667, + "max_x": 1685.041493596343, + "max_y": 5345.114700432667, + "center": [ + 1684.492722316878, + 5345.114700432667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.943951037413, + 5345.114700432667 + ], + [ + 1685.041493596343, + 5345.114700432667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555108", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.670534503934, + "min_y": 5345.114700432667, + "max_x": 1685.041493596343, + "max_y": 5345.734264988732, + "center": [ + 1684.8560140501386, + 5345.4244827106995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.041493596343, + 5345.114700432667 + ], + [ + 1684.670534503934, + 5345.734264988732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555109", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.943951037413, + "min_y": 5346.947782522313, + "max_x": 1685.041493596343, + "max_y": 5346.947782522313, + "center": [ + 1684.492722316878, + 5346.947782522313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.943951037413, + 5346.947782522313 + ], + [ + 1685.041493596343, + 5346.947782522313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55510A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.673171874657, + "min_y": 5346.332622822351, + "max_x": 1685.041493596343, + "max_y": 5346.947782522313, + "center": [ + 1684.8573327355, + 5346.640202672332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.041493596343, + 5346.947782522313 + ], + [ + 1684.673171874657, + 5346.332622822351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55510B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1683.938676295966, + "min_y": 5346.332622822351, + "max_x": 1684.306998017651, + "max_y": 5346.947782522313, + "center": [ + 1684.1228371568086, + 5346.640202672332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.938676295966, + 5346.947782522313 + ], + [ + 1684.306998017651, + 5346.332622822351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55510C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.021103000292, + "min_y": 5357.000558042341, + "max_x": 1708.266658854342, + "max_y": 5362.246113896391, + "center": [ + 1705.643880927317, + 5359.623335969366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643880927317, + 5359.623335969366 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55510D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.973285209146, + "min_y": 5362.293937012514, + "max_x": 1705.643886252295, + "max_y": 5362.293942337488, + "center": [ + 1704.3085857307206, + 5362.293939675001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643886252295, + 5362.293937012514 + ], + [ + 1702.973285209146, + 5362.293942337488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55510E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.973279884172, + "min_y": 5359.623341294348, + "max_x": 1702.973285209146, + "max_y": 5362.293942337488, + "center": [ + 1702.973282546659, + 5360.958641815918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.973279884172, + 5359.623341294348 + ], + [ + 1702.973285209146, + 5362.293942337488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55510F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1705.643886252295, + "min_y": 5362.293931687532, + "max_x": 1708.314487295442, + "max_y": 5362.293937012514, + "center": [ + 1706.9791867738686, + 5362.293934350023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643886252295, + 5362.293937012514 + ], + [ + 1708.314487295442, + 5362.293931687532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555110", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1708.314481970464, + "min_y": 5359.623330644392, + "max_x": 1708.314487295442, + "max_y": 5362.293931687532, + "center": [ + 1708.3144846329528, + 5360.958631165962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.314481970464, + 5359.623330644392 + ], + [ + 1708.314487295442, + 5362.293931687532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555111", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.973274559195, + "min_y": 5356.952734926204, + "max_x": 1705.643875602342, + "max_y": 5356.952740251191, + "center": [ + 1704.3085750807686, + 5356.952737588697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643875602342, + 5356.952734926204 + ], + [ + 1702.973274559195, + 5356.952740251191 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555112", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.973274559195, + "min_y": 5356.952740251191, + "max_x": 1702.973279884172, + "max_y": 5359.623341294341, + "center": [ + 1702.9732772216835, + 5358.288040772766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.973279884172, + 5359.623341294341 + ], + [ + 1702.973274559195, + 5356.952740251191 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555113", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1705.643875602342, + "min_y": 5356.952729601244, + "max_x": 1708.314476645491, + "max_y": 5356.952734926204, + "center": [ + 1706.9791761239164, + 5356.952732263724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.643875602342, + 5356.952734926204 + ], + [ + 1708.314476645491, + 5356.952729601244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555114", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1708.314476645491, + "min_y": 5356.952729601244, + "max_x": 1708.314481970464, + "max_y": 5359.623330644379, + "center": [ + 1708.3144793079773, + 5358.2880301228115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.314481970464, + 5359.623330644379 + ], + [ + 1708.314476645491, + 5356.952729601244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555115", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.861291872106, + "min_y": 5359.997952641924, + "max_x": 1706.9962621215802, + "max_y": 5361.304190245872, + "center": [ + 1705.4287769968432, + 5360.651071443897 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555116", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.021103000297, + "min_y": 5359.623330739752, + "max_x": 1708.266658854334, + "max_y": 5359.623341198991, + "center": [ + 1705.6438809273154, + 5359.6233359693715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.266658854334, + 5359.623330739752 + ], + [ + 1703.021103000297, + 5359.623341198991 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555117", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.469236569805, + "min_y": 5357.955215278363, + "max_x": 1707.3879493816478, + "max_y": 5359.261452882311, + "center": [ + 1705.4285929757264, + 5358.608334080336 + ] + }, + "raw_value": "10115", + "clean_value": "10115", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555118", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.0802086969, + "min_y": 5296.557801444321, + "max_x": 1800.0802086969, + "max_y": 5348.257015616176, + "center": [ + 1800.0802086969, + 5322.407408530249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5348.257015616176 + ], + [ + 1800.0802086969, + 5296.557801444321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555119", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1657.884596623087, + "min_y": 5350.838929886204, + "max_x": 1670.6512440175718, + "max_y": 5351.958811236597, + "center": [ + 1664.2679203203293, + 5351.398870561401 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55511A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1725.842336627884, + "min_y": 5350.565998070106, + "max_x": 1727.0515397147847, + "max_y": 5351.57366730919, + "center": [ + 1726.4469381713343, + 5351.069832689647 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55511B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1745.842473056357, + "min_y": 5358.486160853701, + "max_x": 1751.2838869474106, + "max_y": 5359.493830092785, + "center": [ + 1748.5631800018837, + 5358.989995473243 + ] + }, + "raw_value": "PSV-10115", + "clean_value": "PSV-10115", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55511C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1746.588072725117, + "min_y": 5356.854841545766, + "max_x": 1750.8202835292698, + "max_y": 5357.86251078485, + "center": [ + 1748.7041781271932, + 5357.358676165308 + ] + }, + "raw_value": "50Ax80A", + "clean_value": "50Ax80A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55511D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1745.776064855717, + "min_y": 5355.322142567105, + "max_x": 1751.822080290221, + "max_y": 5356.329811806189, + "center": [ + 1748.7990725729692, + 5355.825977186647 + ] + }, + "raw_value": "SP: 0.7MPa", + "clean_value": "SP: 0.7MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55511E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5352.753066663733, + "max_x": 1748.577787191693, + "max_y": 5354.29587459904, + "center": [ + 1748.577787191693, + 5353.524470631386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.577787191693, + 5352.753066663733 + ], + [ + 1748.577787191693, + 5354.29587459904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55511F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1749.687644206646, + "min_y": 5352.753066663733, + "max_x": 1752.159668568376, + "max_y": 5352.753066663733, + "center": [ + 1750.923656387511, + 5352.753066663733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.687644206646, + 5352.753066663733 + ], + [ + 1752.159668568376, + 5352.753066663733 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555120", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5349.313635421455, + "max_x": 1748.577787191693, + "max_y": 5351.643209648782, + "center": [ + 1748.577787191693, + 5350.478422535119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.577787191693, + 5351.643209648782 + ], + [ + 1748.577787191693, + 5349.313635421455 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555121", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1748.57778719169, + "min_y": 5348.257015616176, + "max_x": 1748.57778719169, + "max_y": 5351.643209648781, + "center": [ + 1748.57778719169, + 5349.9501126324785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.57778719169, + 5351.643209648781 + ], + [ + 1748.57778719169, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555122", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.300322937953, + "min_y": 5353.1890483146, + "max_x": 1748.855251445431, + "max_y": 5353.743976822072, + "center": [ + 1748.577787191692, + 5353.466512568336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.300322937953, + 5353.743976822072 + ], + [ + 1748.855251445431, + 5353.1890483146 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555123", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.300322937953, + "min_y": 5353.466512568333, + "max_x": 1748.855251445431, + "max_y": 5354.021441075811, + "center": [ + 1748.577787191692, + 5353.743976822072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.855251445431, + 5353.466512568333 + ], + [ + 1748.300322937953, + 5354.021441075811 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555124", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.300322937953, + "min_y": 5353.743976822072, + "max_x": 1748.855251445431, + "max_y": 5354.298905329545, + "center": [ + 1748.577787191692, + 5354.021441075809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.300322937953, + 5354.298905329545 + ], + [ + 1748.855251445431, + 5353.743976822072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555125", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5352.753066663733, + "max_x": 1748.577787191693, + "max_y": 5354.298905329545, + "center": [ + 1748.577787191693, + 5353.525985996639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.577787191693, + 5352.753066663733 + ], + [ + 1748.577787191693, + 5354.298905329545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555126", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.022858684217, + "min_y": 5351.643209648782, + "max_x": 1748.577787191693, + "max_y": 5352.753066663733, + "center": [ + 1748.3003229379551, + 5352.198138156258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.577787191693, + 5352.753066663733 + ], + [ + 1748.022858684217, + 5351.643209648782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555127", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.022858684217, + "min_y": 5351.643209648782, + "max_x": 1749.132715699171, + "max_y": 5351.643209648782, + "center": [ + 1748.577787191694, + 5351.643209648782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.022858684217, + 5351.643209648782 + ], + [ + 1749.132715699171, + 5351.643209648782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555128", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5351.643209648782, + "max_x": 1749.132715699171, + "max_y": 5352.753066663733, + "center": [ + 1748.855251445432, + 5352.198138156258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.132715699171, + 5351.643209648782 + ], + [ + 1748.577787191693, + 5352.753066663733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555129", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5352.753066663733, + "max_x": 1749.687644206646, + "max_y": 5353.307995171213, + "center": [ + 1749.1327156991695, + 5353.030530917473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.577787191693, + 5352.753066663733 + ], + [ + 1749.687644206646, + 5353.307995171213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55512A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.687644206646, + "min_y": 5352.198138156258, + "max_x": 1749.687644206646, + "max_y": 5353.307995171213, + "center": [ + 1749.687644206646, + 5352.753066663736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.687644206646, + 5353.307995171213 + ], + [ + 1749.687644206646, + 5352.198138156258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55512B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.577787191693, + "min_y": 5352.198138156258, + "max_x": 1749.687644206646, + "max_y": 5352.753066663733, + "center": [ + 1749.1327156991695, + 5352.475602409995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.687644206646, + 5352.198138156258 + ], + [ + 1748.577787191693, + 5352.753066663733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55512C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1746.936455283585, + "min_y": 5345.644734339186, + "max_x": 1761.046960298542, + "max_y": 5346.764615689579, + "center": [ + 1753.9917077910636, + 5346.204675014382 + ] + }, + "raw_value": "ST-10511-100A-S1A-H50", + "clean_value": "ST-10511-100A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555133", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1723.674604924542, + "min_y": 5346.395264867503, + "max_x": 1725.4884095548932, + "max_y": 5347.402934106587, + "center": [ + 1724.5815072397177, + 5346.8990994870455 + ] + }, + "raw_value": "80A", + "clean_value": "80A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555134", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1704.389184690198, + "min_y": 5344.940104309277, + "max_x": 1706.8075908639994, + "max_y": 5345.947773548361, + "center": [ + 1705.5983877770987, + 5345.443938928818 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555135", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.0802086969, + "min_y": 5267.291702046208, + "max_x": 1800.0802086969, + "max_y": 5275.96937069605, + "center": [ + 1800.0802086969, + 5271.630536371129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5275.96937069605 + ], + [ + 1800.0802086969, + 5267.291702046208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555136", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.0802086969, + "min_y": 5284.916444222359, + "max_x": 1800.0802086969, + "max_y": 5295.064626310463, + "center": [ + 1800.0802086969, + 5289.990535266411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5295.064626310463 + ], + [ + 1800.0802086969, + 5284.916444222359 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555137", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5291.043175764979, + "max_x": 1792.255828128739, + "max_y": 5291.043175764979, + "center": [ + 1782.386774509268, + 5291.043175764979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.517720889797, + 5291.043175764979 + ], + [ + 1792.255828128739, + 5291.043175764979 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555138", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5288.430119280728, + "max_x": 1792.255828128739, + "max_y": 5288.430119280728, + "center": [ + 1782.386774509268, + 5288.430119280728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.517720889797, + 5288.430119280728 + ], + [ + 1792.255828128739, + 5288.430119280728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555139", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1780.176391623229, + "min_y": 5291.789763331908, + "max_x": 1783.7600119444878, + "max_y": 5293.282938465766, + "center": [ + 1781.9682017838584, + 5292.536350898838 + ] + }, + "raw_value": "FEED", + "clean_value": "FEED", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55513A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1773.218979925876, + "min_y": 5289.176706847658, + "max_x": 1776.5786239770562, + "max_y": 5290.296588198052, + "center": [ + 1774.898801951466, + 5289.7366475228555 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55513B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1779.552600194317, + "min_y": 5289.176706847658, + "max_x": 1785.5999594864413, + "max_y": 5290.296588198052, + "center": [ + 1782.5762798403791, + 5289.7366475228555 + ] + }, + "raw_value": "50~90%%DC", + "clean_value": "50~90%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55513C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1773.082994333329, + "min_y": 5286.563650363405, + "max_x": 1777.1145671947452, + "max_y": 5287.683531713798, + "center": [ + 1775.0987807640372, + 5287.123591038602 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55513D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1779.416614601768, + "min_y": 5286.563650363405, + "max_x": 1788.1516891348367, + "max_y": 5287.683531713798, + "center": [ + 1783.7841518683024, + 5287.123591038602 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55513E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.657163040279, + "min_y": 5285.817062796477, + "max_x": 1778.657163040279, + "max_y": 5291.043175764979, + "center": [ + 1778.657163040279, + 5288.430119280729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.657163040279, + 5291.043175764979 + ], + [ + 1778.657163040279, + 5285.817062796477 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55513F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1772.517720889797, + "min_y": 5285.817062796477, + "max_x": 1792.255828128739, + "max_y": 5294.029526032694, + "center": [ + 1782.386774509268, + 5289.923294414586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.517720889797, + 5285.817062796477 + ], + [ + 1792.255828128739, + 5285.817062796477 + ], + [ + 1792.255828128739, + 5294.029526032694 + ], + [ + 1772.517720889797, + 5294.029526032694 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555140", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1698.5507221357484, + "min_y": 5204.229410580306, + "max_x": 1702.5188738270435, + "max_y": 5208.197562271601, + "center": [ + 1700.534797981396, + 5206.213486425953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.534797981396, + 5206.213486425953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555141", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.229318604534, + "min_y": 5202.686699297224, + "max_x": 1699.331087868813, + "max_y": 5204.636261354464, + "center": [ + 1698.7802032366735, + 5203.6614803258435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.331087868813, + 5204.636261354464 + ], + [ + 1698.229318604534, + 5202.686699297224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555142", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.738508093979, + "min_y": 5202.686699297224, + "max_x": 1702.840277358258, + "max_y": 5204.636261354464, + "center": [ + 1702.2893927261184, + 5203.6614803258435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.738508093979, + 5204.636261354464 + ], + [ + 1702.840277358258, + 5202.686699297224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555143", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1698.229318604534, + "min_y": 5202.686699297224, + "max_x": 1702.840277358258, + "max_y": 5202.686699297224, + "center": [ + 1700.534797981396, + 5202.686699297224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.840277358258, + 5202.686699297224 + ], + [ + 1698.229318604534, + 5202.686699297224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555144", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1700.0942684624208, + "min_y": 5205.772956906978, + "max_x": 1700.9753275003711, + "max_y": 5206.654015944929, + "center": [ + 1700.534797981396, + 5206.213486425953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.534797981396, + 5206.213486425953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555145", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1705.505860304745, + "min_y": 5220.595008669914, + "max_x": 1705.505860304745, + "max_y": 5221.169504836162, + "center": [ + 1705.505860304745, + 5220.882256753038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304745, + 5220.595008669914 + ], + [ + 1705.505860304745, + 5221.169504836162 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555146", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.505860304743, + "min_y": 5221.985805705566, + "max_x": 1705.505860304743, + "max_y": 5222.450878729624, + "center": [ + 1705.505860304743, + 5222.218342217595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5221.985805705566 + ], + [ + 1705.505860304743, + 5222.450878729624 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555147", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1705.1833950440625, + "min_y": 5219.131354864706, + "max_x": 1705.8283255654276, + "max_y": 5219.77628538607, + "center": [ + 1705.505860304745, + 5219.453820125388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304745, + 5219.453820125388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5220.595008669914, + "max_x": 1706.00962702427, + "max_y": 5220.595008669914, + "center": [ + 1705.5058603047435, + 5220.595008669914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585217, + 5220.595008669914 + ], + [ + 1706.00962702427, + 5220.595008669914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555149", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5218.312631580861, + "max_x": 1706.00962702427, + "max_y": 5218.312631580861, + "center": [ + 1705.5058603047435, + 5218.312631580861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585217, + 5218.312631580861 + ], + [ + 1706.00962702427, + 5218.312631580861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55514A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1704.441635872867, + "min_y": 5225.413001359558, + "max_x": 1706.0091209976042, + "max_y": 5226.719238963506, + "center": [ + 1705.2253784352356, + 5226.066120161531 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55514B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1702.883082377718, + "min_y": 5222.450878729625, + "max_x": 1708.128638231768, + "max_y": 5227.696434583675, + "center": [ + 1705.505860304743, + 5225.07365665665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5225.07365665665 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55514C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1703.355666812943, + "min_y": 5217.464108212716, + "max_x": 1707.6560537965431, + "max_y": 5221.764495196316, + "center": [ + 1705.505860304743, + 5219.614301704516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5219.614301704516 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55514D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.62917631055, + "min_y": 5221.985805705566, + "max_x": 1706.382544298939, + "max_y": 5221.985805705566, + "center": [ + 1705.5058603047446, + 5221.985805705566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.62917631055, + 5221.985805705566 + ], + [ + 1706.382544298939, + 5221.985805705566 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55514E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.62917631055, + "min_y": 5221.169504836162, + "max_x": 1706.382544298939, + "max_y": 5221.169504836162, + "center": [ + 1705.5058603047446, + 5221.169504836162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.382544298939, + 5221.169504836162 + ], + [ + 1704.62917631055, + 5221.169504836162 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55514F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.382544298939, + "min_y": 5221.169504836162, + "max_x": 1706.382544298939, + "max_y": 5221.985805705566, + "center": [ + 1706.382544298939, + 5221.577655270864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.382544298939, + 5221.169504836162 + ], + [ + 1706.382544298939, + 5221.985805705566 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555150", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5218.612444323229, + "max_x": 1705.340209358411, + "max_y": 5219.177154969783, + "center": [ + 1705.171151471814, + 5218.894799646507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.340209358411, + 5219.177154969783 + ], + [ + 1705.002093585217, + 5218.612444323229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555151", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5218.612444323229, + "max_x": 1706.00962702427, + "max_y": 5218.612444323229, + "center": [ + 1705.5058603047435, + 5218.612444323229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585217, + 5218.612444323229 + ], + [ + 1706.00962702427, + 5218.612444323229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555152", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.671511251073, + "min_y": 5218.612444323229, + "max_x": 1706.00962702427, + "max_y": 5219.177154969783, + "center": [ + 1705.8405691376715, + 5218.894799646507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.00962702427, + 5218.612444323229 + ], + [ + 1705.671511251073, + 5219.177154969783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555153", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5219.730485280998, + "max_x": 1705.340209358413, + "max_y": 5220.295195927548, + "center": [ + 1705.171151471815, + 5220.012840604273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.340209358413, + 5219.730485280998 + ], + [ + 1705.002093585217, + 5220.295195927548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555154", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5220.295195927548, + "max_x": 1706.00962702427, + "max_y": 5220.295195927548, + "center": [ + 1705.5058603047435, + 5220.295195927548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585217, + 5220.295195927548 + ], + [ + 1706.00962702427, + 5220.295195927548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555155", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.67151125107, + "min_y": 5219.730485280998, + "max_x": 1706.00962702427, + "max_y": 5220.295195927548, + "center": [ + 1705.84056913767, + 5220.012840604273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.00962702427, + 5220.295195927548 + ], + [ + 1705.67151125107, + 5219.730485280998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555156", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1703.313796304743, + "min_y": 5223.602680497885, + "max_x": 1707.3457963047429, + "max_y": 5224.7226804978845, + "center": [ + 1705.329796304743, + 5224.162680497884 + ] + }, + "raw_value": "10101C", + "clean_value": "10101C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555157", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585226, + "min_y": 5215.088744861215, + "max_x": 1705.340209358415, + "max_y": 5215.653455507766, + "center": [ + 1705.1711514718204, + 5215.37110018449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585226, + 5215.088744861215 + ], + [ + 1705.340209358415, + 5215.653455507766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555158", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585226, + "min_y": 5215.088744861215, + "max_x": 1706.009627024271, + "max_y": 5215.088744861215, + "center": [ + 1705.5058603047485, + 5215.088744861215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.009627024271, + 5215.088744861215 + ], + [ + 1705.002093585226, + 5215.088744861215 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555159", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.671511251077, + "min_y": 5215.088744861215, + "max_x": 1706.009627024271, + "max_y": 5215.653455507766, + "center": [ + 1705.8405691376738, + 5215.37110018449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.671511251077, + 5215.653455507766 + ], + [ + 1706.009627024271, + 5215.088744861215 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55515A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585226, + "min_y": 5216.206785818979, + "max_x": 1705.340209358415, + "max_y": 5216.771496465531, + "center": [ + 1705.1711514718204, + 5216.489141142255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585226, + 5216.771496465531 + ], + [ + 1705.340209358415, + 5216.206785818979 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55515B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585226, + "min_y": 5216.771496465531, + "max_x": 1706.009627024271, + "max_y": 5216.771496465531, + "center": [ + 1705.5058603047485, + 5216.771496465531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.009627024271, + 5216.771496465531 + ], + [ + 1705.002093585226, + 5216.771496465531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55515C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.671511251077, + "min_y": 5216.206785818979, + "max_x": 1706.009627024271, + "max_y": 5216.771496465531, + "center": [ + 1705.8405691376738, + 5216.489141142255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.671511251077, + 5216.206785818979 + ], + [ + 1706.009627024271, + 5216.771496465531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55515D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1705.1833950440605, + "min_y": 5215.607655402689, + "max_x": 1705.8283255654255, + "max_y": 5216.252585924053, + "center": [ + 1705.505860304743, + 5215.930120663371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5215.930120663371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55515E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1705.505860304743, + "min_y": 5217.063925637175, + "max_x": 1705.505860304743, + "max_y": 5218.312631580861, + "center": [ + 1705.505860304743, + 5217.688278609018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5218.312631580861 + ], + [ + 1705.505860304743, + 5217.063925637175 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55515F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585226, + "min_y": 5217.063925637175, + "max_x": 1706.009627024271, + "max_y": 5217.063925637175, + "center": [ + 1705.5058603047485, + 5217.063925637175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585226, + 5217.063925637175 + ], + [ + 1706.009627024271, + 5217.063925637175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555160", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.002093585217, + "min_y": 5214.788932118848, + "max_x": 1706.00962702427, + "max_y": 5214.788932118848, + "center": [ + 1705.5058603047435, + 5214.788932118848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.002093585217, + 5214.788932118848 + ], + [ + 1706.00962702427, + 5214.788932118848 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555161", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518981746586, + "min_y": 5217.68825945886, + "max_x": 1705.505860304743, + "max_y": 5217.688278609018, + "center": [ + 1704.0124210256645, + 5217.688269033939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5217.688278609018 + ], + [ + 1702.518981746586, + 5217.68825945886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555162", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5206.213486425953, + "max_x": 1702.518873827044, + "max_y": 5209.743013738694, + "center": [ + 1702.518873827044, + 5207.978250082324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827044, + 5206.213486425953 + ], + [ + 1702.518873827044, + 5209.743013738694 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555163", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5213.11290193385, + "max_x": 1703.079073848838, + "max_y": 5213.11290193385, + "center": [ + 1702.5205416816746, + 5213.11290193385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.962009514511, + 5213.11290193385 + ], + [ + 1703.079073848838, + 5213.11290193385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555164", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5213.375927243418, + "max_x": 1703.079073848838, + "max_y": 5215.241614006614, + "center": [ + 1702.5205416816746, + 5214.308770625016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.962009514511, + 5213.375927243418 + ], + [ + 1703.079073848838, + 5215.241614006614 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555165", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5213.375927243418, + "max_x": 1703.079073848838, + "max_y": 5213.375927243418, + "center": [ + 1702.5205416816746, + 5213.375927243418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.962009514511, + 5213.375927243418 + ], + [ + 1703.079073848838, + 5213.375927243418 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555166", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5215.241614006614, + "max_x": 1703.079073848838, + "max_y": 5215.241614006614, + "center": [ + 1702.5205416816746, + 5215.241614006614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.079073848838, + 5215.241614006614 + ], + [ + 1701.962009514511, + 5215.241614006614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55516B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.400489632292, + "min_y": 5214.650455964592, + "max_x": 1703.079073848811, + "max_y": 5215.241614006578, + "center": [ + 1702.7397817405515, + 5214.946034985585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.079073848811, + 5215.241614006578 + ], + [ + 1702.400489632292, + 5214.650455964592 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55516C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.400489632292, + "min_y": 5214.507377073337, + "max_x": 1702.639455630341, + "max_y": 5214.650455964592, + "center": [ + 1702.5199726313165, + 5214.578916518964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.400489632292, + 5214.650455964592 + ], + [ + 1702.639455630341, + 5214.507377073337 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55516D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.878421628359, + "min_y": 5214.364298182051, + "max_x": 1703.079073848849, + "max_y": 5215.241614006553, + "center": [ + 1702.978747738604, + 5214.802956094302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.079073848849, + 5215.241614006553 + ], + [ + 1702.878421628359, + 5214.364298182051 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55516E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.639455630328, + "min_y": 5214.364298182051, + "max_x": 1702.878421628359, + "max_y": 5214.507377073342, + "center": [ + 1702.7589386293434, + 5214.435837627696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.878421628359, + 5214.364298182051 + ], + [ + 1702.639455630328, + 5214.507377073342 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55516F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.962009514511, + "min_y": 5215.504639316179, + "max_x": 1703.079073848838, + "max_y": 5215.504639316179, + "center": [ + 1702.5205416816746, + 5215.504639316179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.962009514511, + 5215.504639316179 + ], + [ + 1703.079073848838, + 5215.504639316179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555170", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.998147959369, + "min_y": 5212.81308919148, + "max_x": 1703.04293540398, + "max_y": 5212.81308919148, + "center": [ + 1702.5205416816743, + 5212.81308919148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.04293540398, + 5212.81308919148 + ], + [ + 1701.998147959369, + 5212.81308919148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555171", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.998147959369, + "min_y": 5213.11290193385, + "max_x": 1703.04293540398, + "max_y": 5213.11290193385, + "center": [ + 1702.5205416816743, + 5213.11290193385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.04293540398, + 5213.11290193385 + ], + [ + 1701.998147959369, + 5213.11290193385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555172", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.996480104734, + "min_y": 5210.042826481064, + "max_x": 1703.041267549354, + "max_y": 5210.042826481064, + "center": [ + 1702.518873827044, + 5210.042826481064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.041267549354, + 5210.042826481064 + ], + [ + 1701.996480104734, + 5210.042826481064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555173", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.996480104734, + "min_y": 5209.743013738694, + "max_x": 1703.041267549354, + "max_y": 5209.743013738694, + "center": [ + 1702.518873827044, + 5209.743013738694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.041267549354, + 5209.743013738694 + ], + [ + 1701.996480104734, + 5209.743013738694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555174", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170732, + "min_y": 5212.417343400657, + "max_x": 1702.7167502370066, + "max_y": 5212.8130962205905, + "center": [ + 1702.51887382704, + 5212.615219810624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5212.615219810624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555175", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170745, + "min_y": 5212.021590580727, + "max_x": 1702.7167502370053, + "max_y": 5212.417343400657, + "center": [ + 1702.51887382704, + 5212.219466990692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5212.219466990692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555176", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170745, + "min_y": 5211.625837760795, + "max_x": 1702.7167502370053, + "max_y": 5212.0215905807245, + "center": [ + 1702.51887382704, + 5211.82371417076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5211.82371417076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555177", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170727, + "min_y": 5211.625837760791, + "max_x": 1702.716750237007, + "max_y": 5212.0215905807245, + "center": [ + 1702.51887382704, + 5211.823714170758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5211.823714170758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555178", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170745, + "min_y": 5211.230084940862, + "max_x": 1702.7167502370053, + "max_y": 5211.625837760792, + "center": [ + 1702.51887382704, + 5211.427961350827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5211.427961350827 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555179", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170725, + "min_y": 5210.834332120927, + "max_x": 1702.7167502370073, + "max_y": 5211.230084940862, + "center": [ + 1702.51887382704, + 5211.032208530894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5211.032208530894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55517A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170745, + "min_y": 5210.438579300994, + "max_x": 1702.7167502370053, + "max_y": 5210.834332120924, + "center": [ + 1702.51887382704, + 5210.636455710959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5210.636455710959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55517B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1702.3209974170745, + "min_y": 5210.042826481066, + "max_x": 1702.7167502370053, + "max_y": 5210.438579300996, + "center": [ + 1702.51887382704, + 5210.240702891031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.51887382704, + 5210.240702891031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55517C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5215.504639316179, + "max_x": 1702.518873827044, + "max_y": 5216.177020539635, + "center": [ + 1702.518873827044, + 5215.840829927907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827044, + 5215.504639316179 + ], + [ + 1702.518873827044, + 5216.177020539635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55517D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.647038408766, + "min_y": 5205.692760558278, + "max_x": 1693.647038408766, + "max_y": 5206.737548002891, + "center": [ + 1693.647038408766, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.647038408766, + 5206.737548002891 + ], + [ + 1693.647038408766, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55517E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.347225666396, + "min_y": 5205.692760558278, + "max_x": 1693.347225666396, + "max_y": 5206.737548002891, + "center": [ + 1693.347225666396, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.347225666396, + 5206.737548002891 + ], + [ + 1693.347225666396, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55517F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.417301119182, + "min_y": 5205.691092703643, + "max_x": 1696.417301119182, + "max_y": 5206.735880148263, + "center": [ + 1696.417301119182, + 5206.213486425953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.417301119182, + 5206.735880148263 + ], + [ + 1696.417301119182, + 5205.691092703643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555180", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.717113861552, + "min_y": 5205.691092703643, + "max_x": 1696.717113861552, + "max_y": 5206.735880148263, + "center": [ + 1696.717113861552, + 5206.213486425953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.717113861552, + 5206.735880148263 + ], + [ + 1696.717113861552, + 5205.691092703643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555181", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1693.6470313796563, + "min_y": 5206.015610015982, + "max_x": 1694.0427841995897, + "max_y": 5206.4113628359155, + "center": [ + 1693.844907789623, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.844907789623, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555182", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1694.0427841995886, + "min_y": 5206.015610015984, + "max_x": 1694.4385370195193, + "max_y": 5206.411362835914, + "center": [ + 1694.240660609554, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.240660609554, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555183", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1694.4385370195207, + "min_y": 5206.015610015984, + "max_x": 1694.8342898394515, + "max_y": 5206.411362835914, + "center": [ + 1694.636413429486, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.636413429486, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555184", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1694.4385370195207, + "min_y": 5206.015610015982, + "max_x": 1694.834289839455, + "max_y": 5206.4113628359155, + "center": [ + 1694.636413429488, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.636413429488, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555185", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1694.8342898394546, + "min_y": 5206.015610015984, + "max_x": 1695.2300426593854, + "max_y": 5206.411362835914, + "center": [ + 1695.03216624942, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.03216624942, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555186", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1695.2300426593856, + "min_y": 5206.015610015981, + "max_x": 1695.6257954793205, + "max_y": 5206.411362835916, + "center": [ + 1695.427919069353, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.427919069353, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555187", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1695.6257954793216, + "min_y": 5206.015610015984, + "max_x": 1696.0215482992523, + "max_y": 5206.411362835914, + "center": [ + 1695.823671889287, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.823671889287, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555188", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1696.0215482992496, + "min_y": 5206.015610015984, + "max_x": 1696.4173011191804, + "max_y": 5206.411362835914, + "center": [ + 1696.219424709215, + 5206.213486425949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.219424709215, + 5206.213486425949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555189", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.079540187719, + "min_y": 5205.19464843554, + "max_x": 1689.098378178129, + "max_y": 5206.213486425949, + "center": [ + 1688.588959182924, + 5205.7040674307445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.079540187719, + 5206.213486425949 + ], + [ + 1689.098378178129, + 5205.19464843554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1688.843668680528, + "min_y": 5204.939938937936, + "max_x": 1689.366562295848, + "max_y": 5205.449357933144, + "center": [ + 1689.105115488188, + 5205.194648435539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.366562295848, + 5205.449357933144 + ], + [ + 1688.843668680528, + 5204.939938937936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1689.265340384522, + "min_y": 5205.692760558278, + "max_x": 1689.265340384522, + "max_y": 5206.737548002891, + "center": [ + 1689.265340384522, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.265340384522, + 5206.737548002891 + ], + [ + 1689.265340384522, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1689.543798553076, + "min_y": 5205.692760558278, + "max_x": 1689.543798553076, + "max_y": 5206.737548002891, + "center": [ + 1689.543798553076, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.543798553076, + 5206.737548002891 + ], + [ + 1689.543798553076, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.572078903842, + "min_y": 5205.692760558278, + "max_x": 1687.572078903842, + "max_y": 5206.737548002891, + "center": [ + 1687.572078903842, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.572078903842, + 5206.737548002891 + ], + [ + 1687.572078903842, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.293620735288, + "min_y": 5205.692760558278, + "max_x": 1687.293620735288, + "max_y": 5206.737548002891, + "center": [ + 1687.293620735288, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.293620735288, + 5206.737548002891 + ], + [ + 1687.293620735288, + 5205.692760558278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55518F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1692.460805066358, + "min_y": 5206.215154280585, + "max_x": 1693.347225666396, + "max_y": 5206.215154280585, + "center": [ + 1692.904015366377, + 5206.215154280585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.460805066358, + 5206.215154280585 + ], + [ + 1693.347225666396, + 5206.215154280585 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555190", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.572078903845, + "min_y": 5206.215154280585, + "max_x": 1689.265340384522, + "max_y": 5206.215154280585, + "center": [ + 1688.4187096441835, + 5206.215154280585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.265340384522, + 5206.215154280585 + ], + [ + 1687.572078903845, + 5206.215154280585 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555191", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1690.523677265212, + "min_y": 5204.895465200291, + "max_x": 1690.523677265212, + "max_y": 5206.213486425949, + "center": [ + 1690.523677265212, + 5205.55447581312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.523677265212, + 5204.895465200291 + ], + [ + 1690.523677265212, + 5206.213486425949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555192", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1690.2657050566659, + "min_y": 5203.724542156124, + "max_x": 1690.781649473758, + "max_y": 5204.240486573215, + "center": [ + 1690.523677265212, + 5203.982514364669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.523677265212, + 5203.982514364669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5204.895465200291, + "max_x": 1690.926690640834, + "max_y": 5204.895465200291, + "center": [ + 1690.5236772652124, + 5204.895465200291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5204.895465200291 + ], + [ + 1690.926690640834, + 5204.895465200291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5203.069563529044, + "max_x": 1690.926690640834, + "max_y": 5203.069563529044, + "center": [ + 1690.5236772652124, + 5203.069563529044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5203.069563529044 + ], + [ + 1690.926690640834, + 5203.069563529044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5203.309413722942, + "max_x": 1690.391156508147, + "max_y": 5203.761182240175, + "center": [ + 1690.255910198869, + 5203.535297981558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.391156508147, + 5203.761182240175 + ], + [ + 1690.120663889591, + 5203.309413722942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555196", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5203.309413722942, + "max_x": 1690.926690640834, + "max_y": 5203.309413722942, + "center": [ + 1690.5236772652124, + 5203.309413722942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5203.309413722942 + ], + [ + 1690.926690640834, + 5203.309413722942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555197", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.656198022275, + "min_y": 5203.309413722942, + "max_x": 1690.926690640834, + "max_y": 5203.761182240175, + "center": [ + 1690.7914443315544, + 5203.535297981558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.926690640834, + 5203.309413722942 + ], + [ + 1690.656198022275, + 5203.761182240175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5204.203846489152, + "max_x": 1690.391156508147, + "max_y": 5204.655615006391, + "center": [ + 1690.255910198869, + 5204.429730747772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.391156508147, + 5204.203846489152 + ], + [ + 1690.120663889591, + 5204.655615006391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5204.655615006391, + "max_x": 1690.926690640834, + "max_y": 5204.655615006391, + "center": [ + 1690.5236772652124, + 5204.655615006391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5204.655615006391 + ], + [ + 1690.926690640834, + 5204.655615006391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55519A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.656198022275, + "min_y": 5204.203846489152, + "max_x": 1690.926690640834, + "max_y": 5204.655615006391, + "center": [ + 1690.7914443315544, + 5204.429730747772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.926690640834, + 5204.655615006391 + ], + [ + 1690.656198022275, + 5204.203846489152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55519B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1690.523677265212, + "min_y": 5202.410552916216, + "max_x": 1690.523677265212, + "max_y": 5203.069563529044, + "center": [ + 1690.523677265212, + 5202.74005822263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.523677265212, + 5202.410552916216 + ], + [ + 1690.523677265212, + 5203.069563529044 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55519C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5201.858235918955, + "max_x": 1690.120663889591, + "max_y": 5202.51385396464, + "center": [ + 1690.120663889591, + 5202.186044941797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5202.51385396464 + ], + [ + 1690.120663889591, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55519D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.926690640834, + "min_y": 5201.858235918955, + "max_x": 1690.926690640834, + "max_y": 5202.51385396464, + "center": [ + 1690.926690640834, + 5202.186044941797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.926690640834, + 5202.51385396464 + ], + [ + 1690.926690640834, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55519E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1690.120663889591, + "min_y": 5201.858235918955, + "max_x": 1690.926690640834, + "max_y": 5201.858235918955, + "center": [ + 1690.5236772652124, + 5201.858235918955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.120663889591, + 5201.858235918955 + ], + [ + 1690.926690640834, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55519F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1696.717113861552, + "min_y": 5206.213486425953, + "max_x": 1700.534797981396, + "max_y": 5206.213486425953, + "center": [ + 1698.625955921474, + 5206.213486425953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.534797981396, + 5206.213486425953 + ], + [ + 1696.717113861552, + 5206.213486425953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.015273157031, + "min_y": 5205.711079952888, + "max_x": 1687.015273157031, + "max_y": 5206.718613391944, + "center": [ + 1687.015273157031, + 5206.214846672416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.015273157031, + 5205.711079952888 + ], + [ + 1687.015273157031, + 5206.718613391944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.450562510479, + "min_y": 5205.711079952888, + "max_x": 1687.015273157031, + "max_y": 5206.049195726088, + "center": [ + 1686.732917833755, + 5205.880137839488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1686.450562510479, + 5206.049195726088 + ], + [ + 1687.015273157031, + 5205.711079952888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.332521552714, + "min_y": 5205.711079952888, + "max_x": 1685.332521552714, + "max_y": 5206.718613391944, + "center": [ + 1685.332521552714, + 5206.214846672416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.332521552714, + 5205.711079952888 + ], + [ + 1685.332521552714, + 5206.718613391944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.332521552714, + "min_y": 5205.711079952888, + "max_x": 1685.897232199269, + "max_y": 5206.049195726088, + "center": [ + 1685.6148768759915, + 5205.880137839488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.897232199269, + 5206.049195726088 + ], + [ + 1685.332521552714, + 5205.711079952888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1685.8514320941915, + "min_y": 5205.892381411733, + "max_x": 1686.4963626155566, + "max_y": 5206.537311933098, + "center": [ + 1686.173897354874, + 5206.214846672416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1686.173897354874, + 5206.214846672416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.293620735288, + "min_y": 5205.71138756106, + "max_x": 1687.293620735288, + "max_y": 5206.718921000108, + "center": [ + 1687.293620735288, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.293620735288, + 5206.718921000108 + ], + [ + 1687.293620735288, + 5205.71138756106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.026010787684, + "min_y": 5205.71138756106, + "max_x": 1685.026010787684, + "max_y": 5206.718921000108, + "center": [ + 1685.026010787684, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.026010787684, + 5206.718921000108 + ], + [ + 1685.026010787684, + 5205.71138756106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1686.450562510479, + "min_y": 5206.380497618748, + "max_x": 1687.015273157031, + "max_y": 5206.718613391944, + "center": [ + 1686.732917833755, + 5206.549555505346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.015273157031, + 5206.718613391944 + ], + [ + 1686.450562510479, + 5206.380497618748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1685.332521552714, + "min_y": 5206.380497618748, + "max_x": 1685.897232199269, + "max_y": 5206.718613391944, + "center": [ + 1685.6148768759915, + 5206.549555505346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.332521552714, + 5206.718613391944 + ], + [ + 1685.897232199269, + 5206.380497618748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551A9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1691.696686658384, + "min_y": 5206.527067085815, + "max_x": 1692.460856936769, + "max_y": 5206.683150572573, + "center": [ + 1692.0787717975763, + 5206.605108829194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.696686658384, + 5206.683150572573 + ], + [ + 1692.460856936769, + 5206.527067085815 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1691.696531047152, + "min_y": 5205.747412156882, + "max_x": 1692.460753195947, + "max_y": 5205.903241475354, + "center": [ + 1692.0786421215494, + 5205.825326816118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.696531047152, + 5205.747412156882 + ], + [ + 1692.460753195947, + 5205.903241475354 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1692.460753195947, + "min_y": 5205.903241475354, + "max_x": 1692.460856936769, + "max_y": 5206.527067085815, + "center": [ + 1692.460805066358, + 5206.215154280584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.460753195947, + 5205.903241475354 + ], + [ + 1692.460856936769, + 5206.527067085815 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1691.696531047152, + "min_y": 5205.747412156882, + "max_x": 1691.696686658384, + "max_y": 5206.683150572573, + "center": [ + 1691.696608852768, + 5206.215281364728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.696531047152, + 5205.747412156882 + ], + [ + 1691.696686658384, + 5206.683150572573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1691.696541284942, + "min_y": 5205.808975141885, + "max_x": 1691.696676420597, + "max_y": 5206.621587587574, + "center": [ + 1691.6966088527695, + 5206.21528136473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.696676420597, + 5206.621587587574 + ], + [ + 1691.696541284942, + 5205.808975141885 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1671.444339459196, + "min_y": 5206.215167966985, + "max_x": 1685.026010787684, + "max_y": 5206.215194212515, + "center": [ + 1678.23517512344, + 5206.21518108975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1685.026010787684, + 5206.215167966985 + ], + [ + 1671.444339459196, + 5206.215194212515 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.830786632274, + "min_y": 5216.176968669224, + "max_x": 1702.986870119032, + "max_y": 5216.941138947609, + "center": [ + 1702.908828375653, + 5216.559053808416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.986870119032, + 5216.941138947609 + ], + [ + 1702.830786632274, + 5216.176968669224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.051131703341, + "min_y": 5216.177072410046, + "max_x": 1702.206961021813, + "max_y": 5216.941294558842, + "center": [ + 1702.129046362577, + 5216.559183484444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.051131703341, + 5216.941294558842 + ], + [ + 1702.206961021813, + 5216.177072410046 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.206961021813, + "min_y": 5216.176968669224, + "max_x": 1702.830786632274, + "max_y": 5216.177072410046, + "center": [ + 1702.5188738270435, + 5216.177020539635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.206961021813, + 5216.177072410046 + ], + [ + 1702.830786632274, + 5216.176968669224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.051131703341, + "min_y": 5216.941138947609, + "max_x": 1702.986870119032, + "max_y": 5216.941294558842, + "center": [ + 1702.5190009111866, + 5216.9412167532255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.051131703341, + 5216.941294558842 + ], + [ + 1702.986870119032, + 5216.941138947609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.112694688345, + "min_y": 5216.941149185396, + "max_x": 1702.925307134034, + "max_y": 5216.941284321052, + "center": [ + 1702.5190009111896, + 5216.941216753225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.925307134034, + 5216.941149185396 + ], + [ + 1702.112694688345, + 5216.941284321052 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5216.941216753223, + "max_x": 1702.519000911189, + "max_y": 5221.894999639065, + "center": [ + 1702.5189373691164, + 5219.418108196143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.519000911189, + 5216.941216753223 + ], + [ + 1702.518873827044, + 5221.894999639065 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551B5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1702.518873827044, + "min_y": 5224.177376728118, + "max_x": 1702.518873827044, + "max_y": 5229.036486300548, + "center": [ + 1702.518873827044, + 5226.606931514333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827044, + 5224.177376728118 + ], + [ + 1702.518873827044, + 5229.036486300548 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551B6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1697.421304572019, + "min_y": 5220.646293695377, + "max_x": 1702.518873827044, + "max_y": 5220.646293695377, + "center": [ + 1699.9700891995315, + 5220.646293695377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827044, + 5220.646293695377 + ], + [ + 1697.421304572019, + 5220.646293695377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.142956993761, + "min_y": 5220.142219367682, + "max_x": 1697.142956993761, + "max_y": 5221.149752806738, + "center": [ + 1697.142956993761, + 5220.64598608721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.142956993761, + 5220.142219367682 + ], + [ + 1697.142956993761, + 5221.149752806738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.578246347209, + "min_y": 5220.142219367682, + "max_x": 1697.142956993761, + "max_y": 5220.480335140881, + "center": [ + 1696.8606016704848, + 5220.311277254281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.578246347209, + 5220.480335140881 + ], + [ + 1697.142956993761, + 5220.142219367682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.460205389444, + "min_y": 5220.142219367682, + "max_x": 1695.460205389444, + "max_y": 5221.149752806738, + "center": [ + 1695.460205389444, + 5220.64598608721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.460205389444, + 5220.142219367682 + ], + [ + 1695.460205389444, + 5221.149752806738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.460205389444, + "min_y": 5220.142219367682, + "max_x": 1696.024916035999, + "max_y": 5220.480335140881, + "center": [ + 1695.7425607127216, + 5220.311277254281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.024916035999, + 5220.480335140881 + ], + [ + 1695.460205389444, + 5220.142219367682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1695.9791159309216, + "min_y": 5220.323520826528, + "max_x": 1696.6240464522866, + "max_y": 5220.968451347892, + "center": [ + 1696.301581191604, + 5220.64598608721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.301581191604, + 5220.64598608721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.421304572019, + "min_y": 5220.142526975854, + "max_x": 1697.421304572019, + "max_y": 5221.150060414902, + "center": [ + 1697.421304572019, + 5220.646293695378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.421304572019, + 5221.150060414902 + ], + [ + 1697.421304572019, + 5220.142526975854 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.153694624415, + "min_y": 5220.142526975854, + "max_x": 1695.153694624415, + "max_y": 5221.150060414902, + "center": [ + 1695.153694624415, + 5220.646293695378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.153694624415, + 5221.150060414902 + ], + [ + 1695.153694624415, + 5220.142526975854 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.578246347209, + "min_y": 5220.81163703354, + "max_x": 1697.142956993761, + "max_y": 5221.149752806738, + "center": [ + 1696.8606016704848, + 5220.980694920139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.142956993761, + 5221.149752806738 + ], + [ + 1696.578246347209, + 5220.81163703354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.460205389444, + "min_y": 5220.81163703354, + "max_x": 1696.024916035999, + "max_y": 5221.149752806738, + "center": [ + 1695.7425607127216, + 5220.980694920139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.460205389444, + 5221.149752806738 + ], + [ + 1696.024916035999, + 5220.81163703354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551C0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1683.413107173497, + "min_y": 5220.646293695377, + "max_x": 1695.153694624415, + "max_y": 5220.646293695377, + "center": [ + 1689.2834008989562, + 5220.646293695377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.153694624415, + 5220.646293695377 + ], + [ + 1683.413107173497, + 5220.646293695377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551C1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1652.451933540239, + "min_y": 5220.445681149814, + "max_x": 1658.7232691024421, + "max_y": 5221.938856283672, + "center": [ + 1655.5876013213406, + 5221.192268716743 + ] + }, + "raw_value": "T-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551C2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5222.683998069387, + "max_x": 1661.447826953631, + "max_y": 5222.683998069387, + "center": [ + 1655.9249293435805, + 5222.683998069387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5222.683998069387 + ], + [ + 1661.447826953631, + 5222.683998069387 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5551C3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5221.194846362689, + "max_x": 1662.936978660329, + "max_y": 5222.683998069387, + "center": [ + 1662.19240280698, + 5221.939422216037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.447826953631, + 5222.683998069387 + ], + [ + 1662.936978660329, + 5221.194846362689 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5551C4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5219.705694655992, + "max_x": 1662.936978660329, + "max_y": 5221.194846362689, + "center": [ + 1662.19240280698, + 5220.45027050934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5221.194846362689 + ], + [ + 1661.447826953631, + 5219.705694655992 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5551C5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5219.705694655992, + "max_x": 1661.447826953631, + "max_y": 5219.705694655992, + "center": [ + 1655.9249293435805, + 5219.705694655992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5219.705694655992 + ], + [ + 1661.447826953631, + 5219.705694655992 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5551C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5219.705694655992, + "max_x": 1650.40203173353, + "max_y": 5222.683998069387, + "center": [ + 1650.40203173353, + 5221.1948463626895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5219.705694655992 + ], + [ + 1650.40203173353, + 5222.683998069387 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5221.194759210474, + "max_x": 1674.061757971565, + "max_y": 5221.194846362689, + "center": [ + 1668.4993683159469, + 5221.194802786582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.061757971565, + 5221.194759210474 + ], + [ + 1662.936978660329, + 5221.194846362689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218481389754, + "min_y": 5210.238794374465, + "max_x": 1679.226014828804, + "max_y": 5210.238794374465, + "center": [ + 1678.722248109279, + 5210.238794374465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.226014828804, + 5210.238794374465 + ], + [ + 1678.218481389754, + 5210.238794374465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.88789905561, + "min_y": 5209.674083727911, + "max_x": 1679.226014828804, + "max_y": 5210.238794374465, + "center": [ + 1679.0569569422069, + 5209.956439051188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.88789905561, + 5209.674083727911 + ], + [ + 1679.226014828804, + 5210.238794374465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218481389754, + "min_y": 5208.556042770147, + "max_x": 1679.226014828804, + "max_y": 5208.556042770147, + "center": [ + 1678.722248109279, + 5208.556042770147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.226014828804, + 5208.556042770147 + ], + [ + 1678.218481389754, + 5208.556042770147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.88789905561, + "min_y": 5208.556042770147, + "max_x": 1679.226014828804, + "max_y": 5209.1207534167, + "center": [ + 1679.0569569422069, + 5208.838398093423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.88789905561, + 5209.1207534167 + ], + [ + 1679.226014828804, + 5208.556042770147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1678.3997828485965, + "min_y": 5209.074953311624, + "max_x": 1679.0447133699615, + "max_y": 5209.719883832989, + "center": [ + 1678.722248109279, + 5209.397418572306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.722248109279, + 5209.397418572306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218173781587, + "min_y": 5210.517141952715, + "max_x": 1679.225707220638, + "max_y": 5210.517141952715, + "center": [ + 1678.7219405011124, + 5210.517141952715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.218173781587, + 5210.517141952715 + ], + [ + 1679.225707220638, + 5210.517141952715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218173781587, + "min_y": 5208.249532005115, + "max_x": 1679.225707220638, + "max_y": 5208.249532005115, + "center": [ + 1678.7219405011124, + 5208.249532005115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.218173781587, + 5208.249532005115 + ], + [ + 1679.225707220638, + 5208.249532005115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218481389754, + "min_y": 5209.674083727911, + "max_x": 1678.556597162951, + "max_y": 5210.238794374465, + "center": [ + 1678.3875392763525, + 5209.956439051188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.218481389754, + 5210.238794374465 + ], + [ + 1678.556597162951, + 5209.674083727911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.218481389754, + "min_y": 5208.556042770147, + "max_x": 1678.556597162948, + "max_y": 5209.1207534167, + "center": [ + 1678.3875392763512, + 5208.838398093423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.218481389754, + 5208.556042770147 + ], + [ + 1678.556597162948, + 5209.1207534167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.444339459196, + "min_y": 5205.71142749299, + "max_x": 1671.444339459196, + "max_y": 5206.71896093204, + "center": [ + 1671.444339459196, + 5206.215194212515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.444339459196, + 5206.71896093204 + ], + [ + 1671.444339459196, + 5205.71142749299 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.2833293663, + "min_y": 5205.71142749299, + "max_x": 1671.2833293663, + "max_y": 5206.71896093204, + "center": [ + 1671.2833293663, + 5206.215194212515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.2833293663, + 5206.71896093204 + ], + [ + 1671.2833293663, + 5205.71142749299 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.55799125204, + "min_y": 5210.238707222251, + "max_x": 1674.565524691091, + "max_y": 5210.238707222251, + "center": [ + 1674.0617579715654, + 5210.238707222251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.565524691091, + 5210.238707222251 + ], + [ + 1673.55799125204, + 5210.238707222251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1674.227408917897, + "min_y": 5209.673996575696, + "max_x": 1674.565524691091, + "max_y": 5210.238707222251, + "center": [ + 1674.3964668044941, + 5209.9563518989735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.227408917897, + 5209.673996575696 + ], + [ + 1674.565524691091, + 5210.238707222251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.55799125204, + "min_y": 5208.555955617931, + "max_x": 1674.565524691091, + "max_y": 5208.555955617931, + "center": [ + 1674.0617579715654, + 5208.555955617931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.565524691091, + 5208.555955617931 + ], + [ + 1673.55799125204, + 5208.555955617931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1674.227408917897, + "min_y": 5208.555955617931, + "max_x": 1674.565524691091, + "max_y": 5209.120666264486, + "center": [ + 1674.3964668044941, + 5208.838310941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.227408917897, + 5209.120666264486 + ], + [ + 1674.565524691091, + 5208.555955617931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1673.7392927108824, + "min_y": 5209.07486615941, + "max_x": 1674.3842232322475, + "max_y": 5209.719796680774, + "center": [ + 1674.061757971565, + 5209.397331420092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.061757971565, + 5209.397331420092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.557683643874, + "min_y": 5210.5170548005, + "max_x": 1674.565217082924, + "max_y": 5210.5170548005, + "center": [ + 1674.061450363399, + 5210.5170548005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.557683643874, + 5210.5170548005 + ], + [ + 1674.565217082924, + 5210.5170548005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.557683643874, + "min_y": 5208.249444852903, + "max_x": 1674.565217082924, + "max_y": 5208.249444852903, + "center": [ + 1674.061450363399, + 5208.249444852903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.557683643874, + 5208.249444852903 + ], + [ + 1674.565217082924, + 5208.249444852903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.55799125204, + "min_y": 5209.673996575696, + "max_x": 1673.896107025237, + "max_y": 5210.238707222251, + "center": [ + 1673.7270491386384, + 5209.9563518989735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.55799125204, + 5210.238707222251 + ], + [ + 1673.896107025237, + 5209.673996575696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.55799125204, + "min_y": 5208.555955617931, + "max_x": 1673.896107025235, + "max_y": 5209.120666264486, + "center": [ + 1673.7270491386375, + 5208.838310941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.55799125204, + 5208.555955617931 + ], + [ + 1673.896107025235, + 5209.120666264486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551DC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1678.721940501112, + "min_y": 5206.21528136473, + "max_x": 1678.721940501112, + "max_y": 5208.249532005115, + "center": [ + 1678.721940501112, + 5207.232406684922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.721940501112, + 5208.249532005115 + ], + [ + 1678.721940501112, + 5206.21528136473 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551DD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1674.061450363399, + "min_y": 5206.215194212515, + "max_x": 1674.061450363399, + "max_y": 5208.249444852903, + "center": [ + 1674.061450363399, + 5207.232319532709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.061450363399, + 5208.249444852903 + ], + [ + 1674.061450363399, + 5206.215194212515 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551DE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1681.466357749714, + "min_y": 5206.215194212515, + "max_x": 1681.466357749714, + "max_y": 5208.249444852903, + "center": [ + 1681.466357749714, + 5207.232319532709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5206.215194212515 + ], + [ + 1681.466357749714, + 5208.249444852903 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551DF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1681.466357749714, + "min_y": 5210.5170548005, + "max_x": 1681.466357749714, + "max_y": 5259.352315441632, + "center": [ + 1681.466357749714, + 5234.934685121066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5210.5170548005 + ], + [ + 1681.466357749714, + 5259.352315441632 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1704.263854439026, + "min_y": 5239.233184141444, + "max_x": 1715.6866442130388, + "max_y": 5240.353065491838, + "center": [ + 1709.9752493260326, + 5239.793124816641 + ] + }, + "raw_value": "P-10106-25A-F1A-n", + "clean_value": "P-10106-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1682.901209564374, + "min_y": 5257.06176835159, + "max_x": 1694.3239993383868, + "max_y": 5258.181649701984, + "center": [ + 1688.6126044513803, + 5257.621709026787 + ] + }, + "raw_value": "P-10109-40A-F1A-n", + "clean_value": "P-10109-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1708.505651485619, + "min_y": 5238.706196163125, + "max_x": 1709.419268617699, + "max_y": 5238.706196163125, + "center": [ + 1708.962460051659, + 5238.706196163125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.505651485619, + 5238.706196163125 + ], + [ + 1709.419268617699, + 5238.706196163125 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1685.350343605023, + "min_y": 5230.399547475816, + "max_x": 1696.7731333790357, + "max_y": 5231.519428826209, + "center": [ + 1691.0617384920292, + 5230.959488151013 + ] + }, + "raw_value": "P-10111-25A-F1A-n", + "clean_value": "P-10111-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.857828171099, + "min_y": 5199.804381343128, + "max_x": 1677.155676974985, + "max_y": 5199.804381343128, + "center": [ + 1676.506752573042, + 5199.804381343128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.155676974985, + 5199.804381343128 + ], + [ + 1675.857828171099, + 5199.804381343128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.857828171099, + "min_y": 5199.804381343128, + "max_x": 1676.862962892254, + "max_y": 5206.215183741445, + "center": [ + 1676.3603955316767, + 5203.009782542286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.857828171099, + 5199.804381343128 + ], + [ + 1676.862962892254, + 5206.215183741445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551E7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1677.503144396618, + "min_y": 5199.369531105626, + "max_x": 1688.9259341706306, + "max_y": 5200.48941245602, + "center": [ + 1683.2145392836242, + 5199.9294717808225 + ] + }, + "raw_value": "P-10110-40A-F1A-n", + "clean_value": "P-10110-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.00305522915, + "min_y": 5263.463828540352, + "max_x": 1725.00305522915, + "max_y": 5264.471361979403, + "center": [ + 1725.00305522915, + 5263.967595259877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.00305522915, + 5263.463828540352 + ], + [ + 1725.00305522915, + 5264.471361979403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.438344582596, + "min_y": 5263.463828540352, + "max_x": 1725.00305522915, + "max_y": 5263.801944313546, + "center": [ + 1724.720699905873, + 5263.632886426949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.438344582596, + 5263.801944313546 + ], + [ + 1725.00305522915, + 5263.463828540352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.320303624831, + "min_y": 5263.463828540352, + "max_x": 1723.320303624831, + "max_y": 5264.471361979403, + "center": [ + 1723.320303624831, + 5263.967595259877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.320303624831, + 5263.463828540352 + ], + [ + 1723.320303624831, + 5264.471361979403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.320303624831, + "min_y": 5263.463828540352, + "max_x": 1723.885014271385, + "max_y": 5263.801944313546, + "center": [ + 1723.602658948108, + 5263.632886426949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.885014271385, + 5263.801944313546 + ], + [ + 1723.320303624831, + 5263.463828540352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551EC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1723.8392141663076, + "min_y": 5263.645129999196, + "max_x": 1724.4841446876726, + "max_y": 5264.2900605205605, + "center": [ + 1724.16167942699, + 5263.967595259878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16167942699, + 5263.967595259878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1725.281402807399, + "min_y": 5263.464136148519, + "max_x": 1725.281402807399, + "max_y": 5264.471669587569, + "center": [ + 1725.281402807399, + 5263.967902868044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.281402807399, + 5264.471669587569 + ], + [ + 1725.281402807399, + 5263.464136148519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.013792859801, + "min_y": 5263.464136148519, + "max_x": 1723.013792859801, + "max_y": 5264.471669587569, + "center": [ + 1723.013792859801, + 5263.967902868044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.013792859801, + 5264.471669587569 + ], + [ + 1723.013792859801, + 5263.464136148519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.438344582596, + "min_y": 5264.133246206206, + "max_x": 1725.00305522915, + "max_y": 5264.471361979403, + "center": [ + 1724.720699905873, + 5264.302304092805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.00305522915, + 5264.471361979403 + ], + [ + 1724.438344582596, + 5264.133246206206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.320303624831, + "min_y": 5264.13324620621, + "max_x": 1723.885014271385, + "max_y": 5264.471361979403, + "center": [ + 1723.602658948108, + 5264.3023040928065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.320303624831, + 5264.471361979403 + ], + [ + 1723.885014271385, + 5264.13324620621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.116401464082, + "min_y": 5263.463828540352, + "max_x": 1729.116401464082, + "max_y": 5264.471361979403, + "center": [ + 1729.116401464082, + 5263.967595259877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.116401464082, + 5263.463828540352 + ], + [ + 1729.116401464082, + 5264.471361979403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.551690817528, + "min_y": 5263.463828540352, + "max_x": 1729.116401464082, + "max_y": 5263.801944313546, + "center": [ + 1728.834046140805, + 5263.632886426949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.551690817528, + 5263.801944313546 + ], + [ + 1729.116401464082, + 5263.463828540352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.433649859763, + "min_y": 5263.463828540352, + "max_x": 1727.433649859763, + "max_y": 5264.471361979403, + "center": [ + 1727.433649859763, + 5263.967595259877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.433649859763, + 5263.463828540352 + ], + [ + 1727.433649859763, + 5264.471361979403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.433649859763, + "min_y": 5263.463828540352, + "max_x": 1727.998360506317, + "max_y": 5263.801944313546, + "center": [ + 1727.7160051830401, + 5263.632886426949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.998360506317, + 5263.801944313546 + ], + [ + 1727.433649859763, + 5263.463828540352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1727.9525604012406, + "min_y": 5263.645129999196, + "max_x": 1728.5974909226056, + "max_y": 5264.2900605205605, + "center": [ + 1728.275025661923, + 5263.967595259878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1728.275025661923, + 5263.967595259878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.394749042332, + "min_y": 5263.464136148519, + "max_x": 1729.394749042332, + "max_y": 5264.471669587569, + "center": [ + 1729.394749042332, + 5263.967902868044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.394749042332, + 5264.471669587569 + ], + [ + 1729.394749042332, + 5263.464136148519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.127139094733, + "min_y": 5263.464136148519, + "max_x": 1727.127139094733, + "max_y": 5264.471669587569, + "center": [ + 1727.127139094733, + 5263.967902868044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.127139094733, + 5264.471669587569 + ], + [ + 1727.127139094733, + 5263.464136148519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1728.551690817528, + "min_y": 5264.133246206206, + "max_x": 1729.116401464082, + "max_y": 5264.471361979403, + "center": [ + 1728.834046140805, + 5264.302304092805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.116401464082, + 5264.471361979403 + ], + [ + 1728.551690817528, + 5264.133246206206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.433649859763, + "min_y": 5264.13324620621, + "max_x": 1727.998360506317, + "max_y": 5264.471361979403, + "center": [ + 1727.7160051830401, + 5264.3023040928065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.433649859763, + 5264.471361979403 + ], + [ + 1727.998360506317, + 5264.13324620621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551FA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1681.466357749714, + "min_y": 5259.352315441632, + "max_x": 1721.278225939452, + "max_y": 5259.352315441632, + "center": [ + 1701.372291844583, + 5259.352315441632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.278225939452, + 5259.352315441632 + ], + [ + 1681.466357749714, + 5259.352315441632 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551FB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1723.990929007959, + "min_y": 5229.042350481012, + "max_x": 1732.625581957055, + "max_y": 5229.042367646241, + "center": [ + 1728.3082554825069, + 5229.0423590636265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.625581957055, + 5229.042350481012 + ], + [ + 1723.990929007959, + 5229.042367646241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1757.797787823134, + "min_y": 5228.519966194205, + "max_x": 1757.797789906363, + "max_y": 5229.564753638818, + "center": [ + 1757.7977888647486, + 5229.0423599165115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.797789906363, + 5229.564753638818 + ], + [ + 1757.797787823134, + 5228.519966194205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1757.404189672786, + "min_y": 5228.538593981798, + "max_x": 1757.404191681733, + "max_y": 5229.546127420842, + "center": [ + 1757.4041906772595, + 5229.04236070132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.404191681733, + 5229.546127420842 + ], + [ + 1757.404189672786, + 5228.538593981798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5551FE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1754.141450003732, + "min_y": 5229.042360701321, + "max_x": 1757.40419067726, + "max_y": 5229.042362051359, + "center": [ + 1755.7728203404959, + 5229.04236137634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.141450003732, + 5229.042362051359 + ], + [ + 1757.40419067726, + 5229.042360701321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5551FF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1799.74103562815, + "min_y": 5304.330885427445, + "max_x": 1813.851540643107, + "max_y": 5305.450766777838, + "center": [ + 1806.7962881356284, + 5304.890826102641 + ] + }, + "raw_value": "ST-10511-100A-S1A-H50", + "clean_value": "ST-10511-100A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555200", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.261167135836, + "min_y": 5295.343344669549, + "max_x": 1812.025337414221, + "max_y": 5295.499428156308, + "center": [ + 1811.6432522750285, + 5295.421386412929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.025337414221, + 5295.343344669549 + ], + [ + 1811.261167135836, + 5295.499428156308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555201", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.261270876658, + "min_y": 5296.123253766769, + "max_x": 1812.025493025454, + "max_y": 5296.27908308524, + "center": [ + 1811.643381951056, + 5296.201168426005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.025493025454, + 5296.27908308524 + ], + [ + 1811.261270876658, + 5296.123253766769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555202", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.261167135836, + "min_y": 5295.499428156308, + "max_x": 1811.261270876658, + "max_y": 5296.123253766769, + "center": [ + 1811.261219006247, + 5295.811340961538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.261270876658, + 5296.123253766769 + ], + [ + 1811.261167135836, + 5295.499428156308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555203", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.025337414221, + "min_y": 5295.343344669549, + "max_x": 1812.025493025454, + "max_y": 5296.27908308524, + "center": [ + 1812.0254152198374, + 5295.811213877394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.025493025454, + 5296.27908308524 + ], + [ + 1812.025337414221, + 5295.343344669549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555204", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.025347652008, + "min_y": 5295.404907654548, + "max_x": 1812.025482787663, + "max_y": 5296.217520100237, + "center": [ + 1812.0254152198354, + 5295.811213877392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.025347652008, + 5295.404907654548 + ], + [ + 1812.025482787663, + 5296.217520100237 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555205", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1812.026623044372, + "min_y": 5295.811213877391, + "max_x": 1813.961931007905, + "max_y": 5295.811213877391, + "center": [ + 1812.9942770261384, + 5295.811213877391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.026623044372, + 5295.811213877391 + ], + [ + 1813.961931007905, + 5295.811213877391 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555206", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.429148465582, + "min_y": 5342.341362317752, + "max_x": 1907.722750631261, + "max_y": 5342.341362317752, + "center": [ + 1907.0759495484217, + 5342.341362317752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.722750631261, + 5342.341362317752 + ], + [ + 1906.429148465582, + 5342.341362317752 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555207", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.429148465582, + "min_y": 5342.712575060428, + "max_x": 1907.722750631261, + "max_y": 5342.712575060428, + "center": [ + 1907.0759495484217, + 5342.712575060428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.722750631261, + 5342.712575060428 + ], + [ + 1906.429148465582, + 5342.712575060428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555208", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.427083413619, + "min_y": 5338.911365278493, + "max_x": 1907.720685579295, + "max_y": 5338.911365278493, + "center": [ + 1907.073884496457, + 5338.911365278493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.720685579295, + 5338.911365278493 + ], + [ + 1906.427083413619, + 5338.911365278493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555209", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862888, + "min_y": 5341.851370200496, + "max_x": 1907.318884906625, + "max_y": 5342.341371020832, + "center": [ + 1907.073884496457, + 5342.096370610664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5342.096370610664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5341.361369380164, + "max_x": 1907.3188849066232, + "max_y": 5341.8513702004975, + "center": [ + 1907.073884496457, + 5341.606369790331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5341.606369790331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5340.871368559832, + "max_x": 1907.3188849066232, + "max_y": 5341.361369380165, + "center": [ + 1907.073884496457, + 5341.116368969999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5341.116368969999 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862883, + "min_y": 5340.8713685598295, + "max_x": 1907.3188849066255, + "max_y": 5341.361369380166, + "center": [ + 1907.073884496457, + 5341.116368969998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5341.116368969998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5340.381367739492, + "max_x": 1907.3188849066232, + "max_y": 5340.871368559825, + "center": [ + 1907.073884496457, + 5340.626368149658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5340.626368149658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862879, + "min_y": 5339.891366919156, + "max_x": 1907.318884906626, + "max_y": 5340.381367739495, + "center": [ + 1907.073884496457, + 5340.136367329325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5340.136367329325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55520F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5339.401366098823, + "max_x": 1907.3188849066232, + "max_y": 5339.891366919156, + "center": [ + 1907.073884496457, + 5339.64636650899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5339.64636650899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555210", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1906.8288840862906, + "min_y": 5338.911365278492, + "max_x": 1907.3188849066232, + "max_y": 5339.401366098825, + "center": [ + 1907.073884496457, + 5339.156365688658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496457, + 5339.156365688658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555211", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5348.448698178607, + "max_x": 1907.073884496455, + "max_y": 5348.448698178607, + "center": [ + 1904.522029274168, + 5348.448698178607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496455, + 5348.448698178607 + ], + [ + 1901.970174051881, + 5348.448698178607 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555212", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5343.762894362747, + "max_x": 1902.540227832376, + "max_y": 5343.762894362747, + "center": [ + 1901.970174051881, + 5343.762894362747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.400120271386, + 5343.762894362747 + ], + [ + 1902.540227832376, + 5343.762894362747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555213", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.540227832376, + "min_y": 5343.762894362747, + "max_x": 1902.540227832376, + "max_y": 5344.388967301768, + "center": [ + 1902.540227832376, + 5344.075930832258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.540227832376, + 5344.388967301768 + ], + [ + 1902.540227832376, + 5343.762894362747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555214", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5343.762894362747, + "max_x": 1901.400120271386, + "max_y": 5344.388967301768, + "center": [ + 1901.400120271386, + 5344.075930832258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.400120271386, + 5344.388967301768 + ], + [ + 1901.400120271386, + 5343.762894362747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555215", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5351.34670032991, + "max_x": 1901.970174051881, + "max_y": 5351.82445399038, + "center": [ + 1901.970174051881, + 5351.5855771601455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5351.34670032991 + ], + [ + 1901.970174051881, + 5351.82445399038 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555216", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5351.34670032991, + "max_x": 1901.970174051881, + "max_y": 5351.82445399038, + "center": [ + 1901.970174051881, + 5351.5855771601455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5351.34670032991 + ], + [ + 1901.970174051881, + 5351.82445399038 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555217", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.150937993263, + "min_y": 5349.183258748134, + "max_x": 1902.519901414002, + "max_y": 5349.799490194268, + "center": [ + 1902.3354197036324, + 5349.491374471201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5349.183258748134 + ], + [ + 1902.150937993263, + 5349.799490194268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555218", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5349.183258748134, + "max_x": 1902.519901414002, + "max_y": 5349.183258748134, + "center": [ + 1901.970174051881, + 5349.183258748134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.42044668976, + 5349.183258748134 + ], + [ + 1902.519901414002, + 5349.183258748134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555219", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5349.183258748134, + "max_x": 1901.789410110499, + "max_y": 5349.799490194268, + "center": [ + 1901.6049284001294, + 5349.491374471201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.789410110499, + 5349.799490194268 + ], + [ + 1901.42044668976, + 5349.183258748134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.150937993265, + "min_y": 5350.40330303179, + "max_x": 1902.519901414002, + "max_y": 5351.019534477932, + "center": [ + 1902.3354197036335, + 5350.711418754861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5351.019534477932 + ], + [ + 1902.150937993265, + 5350.40330303179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5351.019534477932, + "max_x": 1902.519901414002, + "max_y": 5351.019534477932, + "center": [ + 1901.970174051881, + 5351.019534477932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.42044668976, + 5351.019534477932 + ], + [ + 1902.519901414002, + 5351.019534477932 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5350.40330303179, + "max_x": 1901.789410110496, + "max_y": 5351.019534477932, + "center": [ + 1901.6049284001278, + 5350.711418754861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.789410110496, + 5350.40330303179 + ], + [ + 1901.42044668976, + 5351.019534477932 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.412458714828, + "min_y": 5351.34670032991, + "max_x": 1902.524249349636, + "max_y": 5351.34670032991, + "center": [ + 1901.9683540322321, + 5351.34670032991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.412458714828, + 5351.34670032991 + ], + [ + 1902.524249349636, + 5351.34670032991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.412458714828, + "min_y": 5351.34670032991, + "max_x": 1902.524249349636, + "max_y": 5351.34670032991, + "center": [ + 1901.9683540322321, + 5351.34670032991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.412458714828, + 5351.34670032991 + ], + [ + 1902.524249349636, + 5351.34670032991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55521F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.414278734478, + "min_y": 5348.856092896149, + "max_x": 1902.526069369284, + "max_y": 5348.856092896149, + "center": [ + 1901.970174051881, + 5348.856092896149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.414278734478, + 5348.856092896149 + ], + [ + 1902.526069369284, + 5348.856092896149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555220", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.414278734478, + "min_y": 5349.183258748134, + "max_x": 1902.526069369284, + "max_y": 5349.183258748134, + "center": [ + 1901.970174051881, + 5349.183258748134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.414278734478, + 5349.183258748134 + ], + [ + 1902.526069369284, + 5349.183258748134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555221", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5348.856092896149, + "max_x": 1902.519901414002, + "max_y": 5348.856092896149, + "center": [ + 1901.970174051881, + 5348.856092896149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5348.856092896149 + ], + [ + 1901.42044668976, + 5348.856092896149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555222", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5351.34670032991, + "max_x": 1902.519901414002, + "max_y": 5351.34670032991, + "center": [ + 1901.970174051881, + 5351.34670032991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5351.34670032991 + ], + [ + 1901.42044668976, + 5351.34670032991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555223", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1901.6182890021944, + "min_y": 5349.7495115633465, + "max_x": 1902.3220591015677, + "max_y": 5350.45328166272, + "center": [ + 1901.970174051881, + 5350.101396613033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5350.101396613033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5348.856092896149, + "max_x": 1902.540227832376, + "max_y": 5348.856092896149, + "center": [ + 1901.970174051881, + 5348.856092896149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.400120271386, + 5348.856092896149 + ], + [ + 1902.540227832376, + 5348.856092896149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555225", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.150937993263, + "min_y": 5345.87786187929, + "max_x": 1902.519901414002, + "max_y": 5346.494093325425, + "center": [ + 1902.3354197036324, + 5346.1859776023575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5345.87786187929 + ], + [ + 1902.150937993263, + 5346.494093325425 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555226", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5345.87786187929, + "max_x": 1902.519901414002, + "max_y": 5345.87786187929, + "center": [ + 1901.970174051881, + 5345.87786187929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.42044668976, + 5345.87786187929 + ], + [ + 1902.519901414002, + 5345.87786187929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5345.87786187929, + "max_x": 1901.789410110499, + "max_y": 5346.494093325425, + "center": [ + 1901.6049284001294, + 5346.1859776023575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.789410110499, + 5346.494093325425 + ], + [ + 1901.42044668976, + 5345.87786187929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.150937993265, + "min_y": 5347.097906162947, + "max_x": 1902.519901414002, + "max_y": 5347.714137609088, + "center": [ + 1902.3354197036335, + 5347.406021886018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5347.714137609088 + ], + [ + 1902.150937993265, + 5347.097906162947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555229", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5347.714137609088, + "max_x": 1902.519901414002, + "max_y": 5347.714137609088, + "center": [ + 1901.970174051881, + 5347.714137609088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.42044668976, + 5347.714137609088 + ], + [ + 1902.519901414002, + 5347.714137609088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5347.097906162947, + "max_x": 1901.789410110496, + "max_y": 5347.714137609088, + "center": [ + 1901.6049284001278, + 5347.406021886018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.789410110496, + 5347.097906162947 + ], + [ + 1901.42044668976, + 5347.714137609088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.412458714828, + "min_y": 5348.041303461066, + "max_x": 1902.524249349636, + "max_y": 5348.041303461066, + "center": [ + 1901.9683540322321, + 5348.041303461066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.412458714828, + 5348.041303461066 + ], + [ + 1902.524249349636, + 5348.041303461066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.412458714828, + "min_y": 5348.041303461066, + "max_x": 1902.524249349636, + "max_y": 5348.041303461066, + "center": [ + 1901.9683540322321, + 5348.041303461066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.412458714828, + 5348.041303461066 + ], + [ + 1902.524249349636, + 5348.041303461066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.414278734478, + "min_y": 5345.550696027306, + "max_x": 1902.526069369284, + "max_y": 5345.550696027306, + "center": [ + 1901.970174051881, + 5345.550696027306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.414278734478, + 5345.550696027306 + ], + [ + 1902.526069369284, + 5345.550696027306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.414278734478, + "min_y": 5345.87786187929, + "max_x": 1902.526069369284, + "max_y": 5345.87786187929, + "center": [ + 1901.970174051881, + 5345.87786187929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.414278734478, + 5345.87786187929 + ], + [ + 1902.526069369284, + 5345.87786187929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55522F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5345.550696027306, + "max_x": 1902.519901414002, + "max_y": 5345.550696027306, + "center": [ + 1901.970174051881, + 5345.550696027306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5345.550696027306 + ], + [ + 1901.42044668976, + 5345.550696027306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555230", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.42044668976, + "min_y": 5348.041303461066, + "max_x": 1902.519901414002, + "max_y": 5348.041303461066, + "center": [ + 1901.970174051881, + 5348.041303461066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.519901414002, + 5348.041303461066 + ], + [ + 1901.42044668976, + 5348.041303461066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555231", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1901.6182890021944, + "min_y": 5346.444114694503, + "max_x": 1902.3220591015677, + "max_y": 5347.147884793876, + "center": [ + 1901.970174051881, + 5346.795999744189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5346.795999744189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555232", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.400120271386, + "min_y": 5345.550696027306, + "max_x": 1902.540227832376, + "max_y": 5345.550696027306, + "center": [ + 1901.970174051881, + 5345.550696027306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.400120271386, + 5345.550696027306 + ], + [ + 1902.540227832376, + 5345.550696027306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555233", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5348.041303461066, + "max_x": 1901.970174051881, + "max_y": 5348.856092896149, + "center": [ + 1901.970174051881, + 5348.448698178607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5348.041303461066 + ], + [ + 1901.970174051881, + 5348.856092896149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555234", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5348.041303461066, + "max_x": 1901.970174051881, + "max_y": 5348.856092896149, + "center": [ + 1901.970174051881, + 5348.448698178607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5348.041303461066 + ], + [ + 1901.970174051881, + 5348.856092896149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555235", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1901.970174051881, + "min_y": 5344.386822417888, + "max_x": 1901.970174051881, + "max_y": 5345.550696027306, + "center": [ + 1901.970174051881, + 5344.968759222596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.970174051881, + 5344.386822417888 + ], + [ + 1901.970174051881, + 5345.550696027306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555236", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1899.796757958611, + "min_y": 5354.591599066673, + "max_x": 1903.7154707704537, + "max_y": 5355.897836670621, + "center": [ + 1901.7561143645323, + 5355.244717868647 + ] + }, + "raw_value": "10114", + "clean_value": "10114", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555237", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1900.905949620003, + "min_y": 5356.908064271113, + "max_x": 1902.4734347447402, + "max_y": 5358.214301875061, + "center": [ + 1901.6896921823716, + 5357.561183073087 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555238", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1899.1081096570522, + "min_y": 5353.410985348657, + "max_x": 1904.8322384467076, + "max_y": 5359.135114138313, + "center": [ + 1901.97017405188, + 5356.273049743485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.97017405188, + 5356.273049743485 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555239", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1896.757349117487, + "min_y": 5349.637901547764, + "max_x": 1904.1485660300834, + "max_y": 5350.7577828981575, + "center": [ + 1900.4529575737852, + 5350.19784222296 + ] + }, + "raw_value": "P10114BA-06", + "clean_value": "P10114BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55523A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1896.666692055789, + "min_y": 5346.436528823647, + "max_x": 1904.0579089683856, + "max_y": 5347.55641017404, + "center": [ + 1900.3623005120874, + 5346.996469498843 + ] + }, + "raw_value": "P10114BA-07", + "clean_value": "P10114BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55523B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.97017405188, + "min_y": 5352.83515581106, + "max_x": 1901.97017405188, + "max_y": 5353.410985348658, + "center": [ + 1901.97017405188, + 5353.123070579859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.97017405188, + 5352.83515581106 + ], + [ + 1901.97017405188, + 5353.410985348658 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55523C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1899.3079148794986, + "min_y": 5347.236622157702, + "max_x": 1904.6324332242611, + "max_y": 5352.561140502466, + "center": [ + 1901.97017405188, + 5349.898881330084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.97017405188, + 5349.898881330084 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55523D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1900.884708946659, + "min_y": 5352.83515581106, + "max_x": 1903.055639157103, + "max_y": 5352.83515581106, + "center": [ + 1901.970174051881, + 5352.83515581106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.884708946659, + 5352.83515581106 + ], + [ + 1903.055639157103, + 5352.83515581106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55523E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.055639157103, + "min_y": 5351.82445399038, + "max_x": 1903.055639157103, + "max_y": 5352.83515581106, + "center": [ + 1903.055639157103, + 5352.32980490072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.055639157103, + 5352.83515581106 + ], + [ + 1903.055639157103, + 5351.82445399038 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55523F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1900.884708946659, + "min_y": 5351.82445399038, + "max_x": 1903.055639157103, + "max_y": 5351.82445399038, + "center": [ + 1901.970174051881, + 5351.82445399038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.055639157103, + 5351.82445399038 + ], + [ + 1900.884708946659, + 5351.82445399038 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555240", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1900.884708946659, + "min_y": 5351.82445399038, + "max_x": 1900.884708946659, + "max_y": 5352.83515581106, + "center": [ + 1900.884708946659, + 5352.32980490072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.884708946659, + 5351.82445399038 + ], + [ + 1900.884708946659, + 5352.83515581106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555241", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.073884496455, + "min_y": 5345.597220051629, + "max_x": 1907.073884496455, + "max_y": 5346.372213194491, + "center": [ + 1907.073884496455, + 5345.98471662306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073884496455, + 5345.597220051629 + ], + [ + 1907.073884496455, + 5346.372213194491 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555242", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.511502881974, + "min_y": 5346.372179091229, + "max_x": 1907.730395628795, + "max_y": 5347.444340890874, + "center": [ + 1907.6209492553844, + 5346.908259991051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.730395628795, + 5347.444340890874 + ], + [ + 1907.511502881974, + 5346.372179091229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555243", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.417540472241, + "min_y": 5346.372247297754, + "max_x": 1906.636266110937, + "max_y": 5347.444443200659, + "center": [ + 1906.526903291589, + 5346.908345249207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.417540472241, + 5347.444443200659 + ], + [ + 1906.636266110937, + 5346.372247297754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555244", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.636266110937, + "min_y": 5346.372179091229, + "max_x": 1907.511502881974, + "max_y": 5346.372247297754, + "center": [ + 1907.0738844964553, + 5346.372213194491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.636266110937, + 5346.372247297754 + ], + [ + 1907.511502881974, + 5346.372179091229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555245", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.417540472241, + "min_y": 5347.444340890874, + "max_x": 1907.730395628795, + "max_y": 5347.444443200659, + "center": [ + 1907.073968050518, + 5347.444392045767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.417540472241, + 5347.444443200659 + ], + [ + 1907.730395628795, + 5347.444340890874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555246", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.503914271757, + "min_y": 5347.444347621916, + "max_x": 1907.644021829287, + "max_y": 5347.444436469615, + "center": [ + 1907.0739680505221, + 5347.444392045765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.644021829287, + 5347.444347621916 + ], + [ + 1906.503914271757, + 5347.444436469615 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555247", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1910.439701002516, + "min_y": 5362.674389206247, + "max_x": 1910.439701002516, + "max_y": 5365.368764311079, + "center": [ + 1910.439701002516, + 5364.021576758663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.439701002516, + 5362.674389206247 + ], + [ + 1910.439701002516, + 5365.368764311079 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555248", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1910.439701002516, + "min_y": 5367.859371744839, + "max_x": 1910.439701002516, + "max_y": 5377.001643694423, + "center": [ + 1910.439701002516, + 5372.430507719631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.439701002516, + 5367.859371744839 + ], + [ + 1910.439701002516, + 5377.001643694423 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555249", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.554429083395, + "min_y": 5335.687418716954, + "max_x": 1918.626590883041, + "max_y": 5335.906311463775, + "center": [ + 1918.090509983218, + 5335.796865090364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.626590883041, + 5335.687418716954 + ], + [ + 1917.554429083395, + 5335.906311463775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55524A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.554497289919, + "min_y": 5336.781548234813, + "max_x": 1918.626693192825, + "max_y": 5337.000273873508, + "center": [ + 1918.090595241372, + 5336.890911054161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.626693192825, + 5337.000273873508 + ], + [ + 1917.554497289919, + 5336.781548234813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55524B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.554429083395, + "min_y": 5335.906311463775, + "max_x": 1917.554497289919, + "max_y": 5336.781548234813, + "center": [ + 1917.554463186657, + 5336.343929849294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.554497289919, + 5336.781548234813 + ], + [ + 1917.554429083395, + 5335.906311463775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55524C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.626590883041, + "min_y": 5335.687418716954, + "max_x": 1918.626693192825, + "max_y": 5337.000273873508, + "center": [ + 1918.626642037933, + 5336.343846295231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.626693192825, + 5337.000273873508 + ], + [ + 1918.626590883041, + 5335.687418716954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55524D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.626597614081, + "min_y": 5335.773792516462, + "max_x": 1918.62668646178, + "max_y": 5336.913900073991, + "center": [ + 1918.6266420379307, + 5336.343846295226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.626597614081, + 5335.773792516462 + ], + [ + 1918.62668646178, + 5336.913900073991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55524E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1926.696942145299, + "min_y": 5336.47784602257, + "max_x": 1938.1197319193118, + "max_y": 5337.597727372963, + "center": [ + 1932.4083370323056, + 5337.037786697767 + ] + }, + "raw_value": "P-10140-40A-F2A-n", + "clean_value": "P-10140-40A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55524F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1865.667435419325, + "min_y": 5374.773635323133, + "max_x": 1867.4812400496762, + "max_y": 5375.781304562217, + "center": [ + 1866.5743377345007, + 5375.277469942675 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555250", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5390.341499602552, + "max_x": 1866.742992753628, + "max_y": 5390.341499602559, + "center": [ + 1865.285867451552, + 5390.341499602556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5390.341499602559 + ], + [ + 1863.828742149476, + 5390.341499602552 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555251", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.828742149476, + "min_y": 5387.427248998406, + "max_x": 1863.828742149476, + "max_y": 5390.341499602552, + "center": [ + 1863.828742149476, + 5388.884374300479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.828742149476, + 5387.427248998406 + ], + [ + 1863.828742149476, + 5390.341499602552 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555252", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1866.742992753628, + "min_y": 5390.341499602552, + "max_x": 1869.657243357782, + "max_y": 5390.341499602559, + "center": [ + 1868.200118055705, + 5390.341499602556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.742992753628, + 5390.341499602559 + ], + [ + 1869.657243357782, + 5390.341499602552 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555253", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1869.657243357782, + "min_y": 5387.427248998406, + "max_x": 1869.657243357782, + "max_y": 5390.341499602552, + "center": [ + 1869.657243357782, + 5388.884374300479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.657243357782, + 5387.427248998406 + ], + [ + 1869.657243357782, + 5390.341499602552 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555254", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1918.559578451232, + "min_y": 5333.032533222003, + "max_x": 1923.2630801228843, + "max_y": 5334.152414572396, + "center": [ + 1920.9113292870582, + 5333.592473897199 + ] + }, + "raw_value": "25Ax40A", + "clean_value": "25Ax40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555255", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1941.579611134834, + "min_y": 5328.006721486783, + "max_x": 1942.7888142217348, + "max_y": 5329.014390725867, + "center": [ + 1942.1842126782844, + 5328.510556106325 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555256", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1950.352305306116, + "min_y": 5317.935803306357, + "max_x": 1950.352305306116, + "max_y": 5325.021529684976, + "center": [ + 1950.352305306116, + 5321.478666495666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.352305306116, + 5317.935803306357 + ], + [ + 1950.352305306116, + 5325.021529684976 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555257", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1968.91309539008, + "min_y": 5279.22397775227, + "max_x": 1975.184430952283, + "max_y": 5280.717152886128, + "center": [ + 1972.0487631711815, + 5279.9705653191995 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555258", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5281.477792751466, + "max_x": 1977.413262867374, + "max_y": 5281.477792751466, + "center": [ + 1971.8903652573235, + 5281.477792751466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5281.477792751466 + ], + [ + 1977.413262867374, + 5281.477792751466 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555259", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5279.988641044768, + "max_x": 1978.902414574071, + "max_y": 5281.477792751466, + "center": [ + 1978.1578387207223, + 5280.7332168981175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5281.477792751466 + ], + [ + 1978.902414574071, + 5279.988641044768 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55525A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5278.499489338071, + "max_x": 1978.902414574071, + "max_y": 5279.988641044768, + "center": [ + 1978.1578387207223, + 5279.244065191419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5279.988641044768 + ], + [ + 1977.413262867374, + 5278.499489338071 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55525B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5278.499489338071, + "max_x": 1977.413262867374, + "max_y": 5278.499489338071, + "center": [ + 1971.8903652573235, + 5278.499489338071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5278.499489338071 + ], + [ + 1977.413262867374, + 5278.499489338071 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55525C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5278.499489338071, + "max_x": 1966.367467647273, + "max_y": 5281.477792751466, + "center": [ + 1966.367467647273, + 5279.988641044769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5278.499489338071 + ], + [ + 1966.367467647273, + 5281.477792751466 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55525D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1962.185546880188, + "min_y": 5320.546527369366, + "max_x": 1973.6083366542007, + "max_y": 5321.66640871976, + "center": [ + 1967.8969417671942, + 5321.106468044563 + ] + }, + "raw_value": "P-10147-25A-F1A-n", + "clean_value": "P-10147-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55525E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1962.184396929878, + "min_y": 5325.479398188774, + "max_x": 1973.6071867038906, + "max_y": 5326.599279539168, + "center": [ + 1967.8957918168844, + 5326.039338863971 + ] + }, + "raw_value": "P-10148-25A-F1A-n", + "clean_value": "P-10148-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55525F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.866713116518, + "min_y": 5307.358255775291, + "max_x": 2033.866713116518, + "max_y": 5307.933776635865, + "center": [ + 2033.866713116518, + 5307.646016205577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.866713116518, + 5307.358255775291 + ], + [ + 2033.866713116518, + 5307.933776635865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555260", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2033.6487266002966, + "min_y": 5308.487233575745, + "max_x": 2034.0846996327393, + "max_y": 5308.923206608189, + "center": [ + 2033.866713116518, + 5308.705220091967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.866713116518, + 5308.705220091967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555261", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.513574960239, + "min_y": 5307.933776635865, + "max_x": 2034.2198512728, + "max_y": 5307.933776635865, + "center": [ + 2033.8667131165196, + 5307.933776635865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.2198512728, + 5307.933776635865 + ], + [ + 2033.513574960239, + 5307.933776635865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555262", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.513574960239, + "min_y": 5309.476663548069, + "max_x": 2034.2198512728, + "max_y": 5309.476663548069, + "center": [ + 2033.8667131165196, + 5309.476663548069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.2198512728, + 5309.476663548069 + ], + [ + 2033.513574960239, + 5309.476663548069 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555263", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.526166814121, + "min_y": 5308.13645004971, + "max_x": 2033.7547330768, + "max_y": 5308.518194446775, + "center": [ + 2033.6404499454607, + 5308.327322248242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.7547330768, + 5308.518194446775 + ], + [ + 2033.526166814121, + 5308.13645004971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555264", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.526166814121, + "min_y": 5308.13645004971, + "max_x": 2034.207259418919, + "max_y": 5308.13645004971, + "center": [ + 2033.86671311652, + 5308.13645004971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.526166814121, + 5308.13645004971 + ], + [ + 2034.207259418919, + 5308.13645004971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.978693156237, + "min_y": 5308.13645004971, + "max_x": 2034.207259418919, + "max_y": 5308.518194446775, + "center": [ + 2034.092976287578, + 5308.327322248242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.207259418919, + 5308.13645004971 + ], + [ + 2033.978693156237, + 5308.518194446775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.526166814121, + "min_y": 5308.892245737159, + "max_x": 2033.7547330768, + "max_y": 5309.273990134227, + "center": [ + 2033.6404499454607, + 5309.083117935693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.7547330768, + 5308.892245737159 + ], + [ + 2033.526166814121, + 5309.273990134227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555267", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.526166814121, + "min_y": 5309.273990134227, + "max_x": 2034.207259418919, + "max_y": 5309.273990134227, + "center": [ + 2033.86671311652, + 5309.273990134227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.526166814121, + 5309.273990134227 + ], + [ + 2034.207259418919, + 5309.273990134227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555268", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.978693156237, + "min_y": 5308.892245737159, + "max_x": 2034.207259418919, + "max_y": 5309.273990134227, + "center": [ + 2034.092976287578, + 5309.083117935693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.207259418919, + 5309.273990134227 + ], + [ + 2033.978693156237, + 5308.892245737159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.866713116518, + "min_y": 5295.356040886541, + "max_x": 2033.866713116518, + "max_y": 5307.358255775291, + "center": [ + 2033.866713116518, + 5301.357148330916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.866713116518, + 5307.358255775291 + ], + [ + 2033.866713116518, + 5295.356040886541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.021063600122, + "min_y": 5307.041343284048, + "max_x": 2033.021063600122, + "max_y": 5307.616864144621, + "center": [ + 2033.021063600122, + 5307.329103714334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.021063600122, + 5307.041343284048 + ], + [ + 2033.021063600122, + 5307.616864144621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2032.8030770839007, + "min_y": 5308.170321084502, + "max_x": 2033.2390501163434, + "max_y": 5308.606294116945, + "center": [ + 2033.021063600122, + 5308.388307600723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.021063600122, + 5308.388307600723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.667925443842, + "min_y": 5307.616864144621, + "max_x": 2033.374201756404, + "max_y": 5307.616864144621, + "center": [ + 2033.021063600123, + 5307.616864144621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.374201756404, + 5307.616864144621 + ], + [ + 2032.667925443842, + 5307.616864144621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.667925443842, + "min_y": 5309.159751056824, + "max_x": 2033.374201756404, + "max_y": 5309.159751056824, + "center": [ + 2033.021063600123, + 5309.159751056824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.374201756404, + 5309.159751056824 + ], + [ + 2032.667925443842, + 5309.159751056824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.680517297725, + "min_y": 5307.819537558466, + "max_x": 2032.909083560404, + "max_y": 5308.20128195553, + "center": [ + 2032.7948004290645, + 5308.010409756998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.909083560404, + 5308.20128195553 + ], + [ + 2032.680517297725, + 5307.819537558466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55526F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.680517297725, + "min_y": 5307.819537558466, + "max_x": 2033.361609902522, + "max_y": 5307.819537558466, + "center": [ + 2033.0210636001234, + 5307.819537558466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.680517297725, + 5307.819537558466 + ], + [ + 2033.361609902522, + 5307.819537558466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555270", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.13304363984, + "min_y": 5307.819537558466, + "max_x": 2033.361609902522, + "max_y": 5308.20128195553, + "center": [ + 2033.2473267711812, + 5308.010409756998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.361609902522, + 5307.819537558466 + ], + [ + 2033.13304363984, + 5308.20128195553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555271", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.680517297725, + "min_y": 5308.575333245915, + "max_x": 2032.909083560404, + "max_y": 5308.957077642982, + "center": [ + 2032.7948004290645, + 5308.766205444448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.909083560404, + 5308.575333245915 + ], + [ + 2032.680517297725, + 5308.957077642982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555272", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.680517297725, + "min_y": 5308.957077642982, + "max_x": 2033.361609902522, + "max_y": 5308.957077642982, + "center": [ + 2033.0210636001234, + 5308.957077642982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.680517297725, + 5308.957077642982 + ], + [ + 2033.361609902522, + 5308.957077642982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555273", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.13304363984, + "min_y": 5308.575333245915, + "max_x": 2033.361609902522, + "max_y": 5308.957077642982, + "center": [ + 2033.2473267711812, + 5308.766205444448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.361609902522, + 5308.957077642982 + ], + [ + 2033.13304363984, + 5308.575333245915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555274", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2033.021063600122, + "min_y": 5295.356040886541, + "max_x": 2033.021063600122, + "max_y": 5307.041343284048, + "center": [ + 2033.021063600122, + 5301.198692085294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.021063600122, + 5307.041343284048 + ], + [ + 2033.021063600122, + 5295.356040886541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555275", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.176772552542, + "min_y": 5306.643273533845, + "max_x": 2032.176772552542, + "max_y": 5307.218794394419, + "center": [ + 2032.176772552542, + 5306.931033964132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.176772552542, + 5306.643273533845 + ], + [ + 2032.176772552542, + 5307.218794394419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555276", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2031.9587860363206, + "min_y": 5307.772251334298, + "max_x": 2032.3947590687633, + "max_y": 5308.208224366741, + "center": [ + 2032.176772552542, + 5307.990237850519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.176772552542, + 5307.990237850519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555277", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.823634396262, + "min_y": 5307.218794394419, + "max_x": 2032.529910708823, + "max_y": 5307.218794394419, + "center": [ + 2032.1767725525424, + 5307.218794394419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.529910708823, + 5307.218794394419 + ], + [ + 2031.823634396262, + 5307.218794394419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555278", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.823634396262, + "min_y": 5308.76168130662, + "max_x": 2032.529910708823, + "max_y": 5308.76168130662, + "center": [ + 2032.1767725525424, + 5308.76168130662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.529910708823, + 5308.76168130662 + ], + [ + 2031.823634396262, + 5308.76168130662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555279", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.836226250144, + "min_y": 5307.421467808262, + "max_x": 2032.064792512823, + "max_y": 5307.803212205327, + "center": [ + 2031.9505093814835, + 5307.6123400067945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.064792512823, + 5307.803212205327 + ], + [ + 2031.836226250144, + 5307.421467808262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.836226250144, + "min_y": 5307.421467808262, + "max_x": 2032.517318854942, + "max_y": 5307.421467808262, + "center": [ + 2032.1767725525428, + 5307.421467808262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.836226250144, + 5307.421467808262 + ], + [ + 2032.517318854942, + 5307.421467808262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.288752592259, + "min_y": 5307.421467808262, + "max_x": 2032.517318854942, + "max_y": 5307.803212205327, + "center": [ + 2032.4030357236006, + 5307.6123400067945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.517318854942, + 5307.421467808262 + ], + [ + 2032.288752592259, + 5307.803212205327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.836226250144, + "min_y": 5308.177263495712, + "max_x": 2032.064792512823, + "max_y": 5308.559007892779, + "center": [ + 2031.9505093814835, + 5308.368135694245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.064792512823, + 5308.177263495712 + ], + [ + 2031.836226250144, + 5308.559007892779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.836226250144, + "min_y": 5308.559007892779, + "max_x": 2032.517318854942, + "max_y": 5308.559007892779, + "center": [ + 2032.1767725525428, + 5308.559007892779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.836226250144, + 5308.559007892779 + ], + [ + 2032.517318854942, + 5308.559007892779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.288752592259, + "min_y": 5308.177263495712, + "max_x": 2032.517318854942, + "max_y": 5308.559007892779, + "center": [ + 2032.4030357236006, + 5308.368135694245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.517318854942, + 5308.559007892779 + ], + [ + 2032.288752592259, + 5308.177263495712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55527F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.176772552542, + "min_y": 5295.356040886541, + "max_x": 2032.176772552542, + "max_y": 5306.643273533845, + "center": [ + 2032.176772552542, + 5300.999657210194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.176772552542, + 5306.643273533845 + ], + [ + 2032.176772552542, + 5295.356040886541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555280", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2036.794295168393, + "min_y": 5289.257069867196, + "max_x": 2037.946940754895, + "max_y": 5289.257069867196, + "center": [ + 2037.370617961644, + 5289.257069867196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.794295168393, + 5289.257069867196 + ], + [ + 2037.946940754895, + 5289.257069867196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555281", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2039.936203124244, + "min_y": 5288.752995539505, + "max_x": 2039.936203124244, + "max_y": 5289.760528978555, + "center": [ + 2039.936203124244, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.936203124244, + 5288.752995539505 + ], + [ + 2039.936203124244, + 5289.760528978555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555282", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2039.37149247769, + "min_y": 5288.752995539505, + "max_x": 2039.936203124244, + "max_y": 5289.0911113127, + "center": [ + 2039.653847800967, + 5288.922053426102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.37149247769, + 5289.0911113127 + ], + [ + 2039.936203124244, + 5288.752995539505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555283", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.253451519925, + "min_y": 5288.752995539505, + "max_x": 2038.253451519925, + "max_y": 5289.760528978555, + "center": [ + 2038.253451519925, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.253451519925, + 5288.752995539505 + ], + [ + 2038.253451519925, + 5289.760528978555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555284", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.253451519925, + "min_y": 5288.752995539505, + "max_x": 2038.818162166479, + "max_y": 5289.0911113127, + "center": [ + 2038.535806843202, + 5288.922053426102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.818162166479, + 5289.0911113127 + ], + [ + 2038.253451519925, + 5288.752995539505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555285", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2038.7723620614024, + "min_y": 5288.934296998348, + "max_x": 2039.4172925827675, + "max_y": 5289.579227519713, + "center": [ + 2039.094827322085, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.094827322085, + 5289.25676225903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555286", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2040.214550702494, + "min_y": 5288.753303147672, + "max_x": 2040.214550702494, + "max_y": 5289.760836586722, + "center": [ + 2040.214550702494, + 5289.257069867197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.214550702494, + 5289.760836586722 + ], + [ + 2040.214550702494, + 5288.753303147672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555287", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2037.946940754895, + "min_y": 5288.753303147672, + "max_x": 2037.946940754895, + "max_y": 5289.760836586722, + "center": [ + 2037.946940754895, + 5289.257069867197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2037.946940754895, + 5289.760836586722 + ], + [ + 2037.946940754895, + 5288.753303147672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555288", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2039.37149247769, + "min_y": 5289.422413205358, + "max_x": 2039.936203124244, + "max_y": 5289.760528978555, + "center": [ + 2039.653847800967, + 5289.591471091957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.936203124244, + 5289.760528978555 + ], + [ + 2039.37149247769, + 5289.422413205358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555289", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.253451519925, + "min_y": 5289.422413205361, + "max_x": 2038.818162166479, + "max_y": 5289.760528978555, + "center": [ + 2038.535806843202, + 5289.591471091959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.253451519925, + 5289.760528978555 + ], + [ + 2038.818162166479, + 5289.422413205361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2036.515947590143, + "min_y": 5288.752995539505, + "max_x": 2036.515947590143, + "max_y": 5289.760528978555, + "center": [ + 2036.515947590143, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.515947590143, + 5288.752995539505 + ], + [ + 2036.515947590143, + 5289.760528978555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.951236943589, + "min_y": 5288.752995539505, + "max_x": 2036.515947590143, + "max_y": 5289.0911113127, + "center": [ + 2036.233592266866, + 5288.922053426102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.951236943589, + 5289.0911113127 + ], + [ + 2036.515947590143, + 5288.752995539505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.833195985824, + "min_y": 5288.752995539505, + "max_x": 2034.833195985824, + "max_y": 5289.760528978555, + "center": [ + 2034.833195985824, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.833195985824, + 5288.752995539505 + ], + [ + 2034.833195985824, + 5289.760528978555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.833195985824, + "min_y": 5288.752995539505, + "max_x": 2035.397906632378, + "max_y": 5289.0911113127, + "center": [ + 2035.115551309101, + 5288.922053426102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.397906632378, + 5289.0911113127 + ], + [ + 2034.833195985824, + 5288.752995539505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2035.3521065273014, + "min_y": 5288.934296998348, + "max_x": 2035.9970370486665, + "max_y": 5289.579227519713, + "center": [ + 2035.674571787984, + 5289.25676225903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.674571787984, + 5289.25676225903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55528F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2036.794295168393, + "min_y": 5288.753303147672, + "max_x": 2036.794295168393, + "max_y": 5289.760836586722, + "center": [ + 2036.794295168393, + 5289.257069867197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.794295168393, + 5289.760836586722 + ], + [ + 2036.794295168393, + 5288.753303147672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555290", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.526685220794, + "min_y": 5288.753303147672, + "max_x": 2034.526685220794, + "max_y": 5289.760836586722, + "center": [ + 2034.526685220794, + 5289.257069867197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.526685220794, + 5289.760836586722 + ], + [ + 2034.526685220794, + 5288.753303147672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555291", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.951236943589, + "min_y": 5289.422413205358, + "max_x": 2036.515947590143, + "max_y": 5289.760528978555, + "center": [ + 2036.233592266866, + 5289.591471091957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.515947590143, + 5289.760528978555 + ], + [ + 2035.951236943589, + 5289.422413205358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555292", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.833195985824, + "min_y": 5289.422413205361, + "max_x": 2035.397906632378, + "max_y": 5289.760528978555, + "center": [ + 2035.115551309101, + 5289.591471091959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.833195985824, + 5289.760528978555 + ], + [ + 2035.397906632378, + 5289.422413205361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555293", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2040.214550702494, + "min_y": 5289.257069867196, + "max_x": 2044.056155039711, + "max_y": 5289.257069867196, + "center": [ + 2042.1353528711024, + 5289.257069867196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.214550702494, + 5289.257069867196 + ], + [ + 2044.056155039711, + 5289.257069867196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555294", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2037.370617961643, + "min_y": 5289.257069867196, + "max_x": 2037.370617961643, + "max_y": 5291.196814752746, + "center": [ + 2037.370617961643, + 5290.2269423099715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2037.370617961643, + 5291.196814752746 + ], + [ + 2037.370617961643, + 5289.257069867196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555295", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2037.981244273856, + "min_y": 5285.888148657431, + "max_x": 2049.4040340478687, + "max_y": 5287.008030007824, + "center": [ + 2043.6926391608622, + 5286.448089332627 + ] + }, + "raw_value": "P-10149-40A-F1A-n", + "clean_value": "P-10149-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555296", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5334.444672942929, + "max_x": 1975.703724444132, + "max_y": 5334.444672942929, + "center": [ + 1965.8346708246609, + 5334.444672942929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.96561720519, + 5334.444672942929 + ], + [ + 1975.703724444132, + 5334.444672942929 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555297", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5331.831616458677, + "max_x": 1975.703724444132, + "max_y": 5331.831616458677, + "center": [ + 1965.8346708246609, + 5331.831616458677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.96561720519, + 5331.831616458677 + ], + [ + 1975.703724444132, + 5331.831616458677 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555298", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1960.736225924092, + "min_y": 5335.191260509857, + "max_x": 1969.6952767272392, + "max_y": 5336.684435643715, + "center": [ + 1965.2157513256657, + 5335.937848076786 + ] + }, + "raw_value": "LIGHT ENDS", + "clean_value": "LIGHT ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555299", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1956.666876241269, + "min_y": 5332.578204025606, + "max_x": 1960.026520292449, + "max_y": 5333.698085376, + "center": [ + 1958.346698266859, + 5333.1381447008025 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55529A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1963.00049650971, + "min_y": 5332.578204025606, + "max_x": 1969.0478558018344, + "max_y": 5333.698085376, + "center": [ + 1966.0241761557722, + 5333.1381447008025 + ] + }, + "raw_value": "20~40%%DC", + "clean_value": "20~40%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55529B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1956.530890648721, + "min_y": 5329.965147541354, + "max_x": 1960.5624635101371, + "max_y": 5331.085028891747, + "center": [ + 1958.5466770794292, + 5330.525088216551 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55529C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1962.864510917162, + "min_y": 5329.965147541354, + "max_x": 1971.5995854502307, + "max_y": 5331.085028891747, + "center": [ + 1967.2320481836964, + 5330.525088216551 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55529D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1962.105059355672, + "min_y": 5329.218559974425, + "max_x": 1962.105059355672, + "max_y": 5334.444672942929, + "center": [ + 1962.105059355672, + 5331.831616458678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.105059355672, + 5334.444672942929 + ], + [ + 1962.105059355672, + 5329.218559974425 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55529E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1955.96561720519, + "min_y": 5329.218559974425, + "max_x": 1975.703724444132, + "max_y": 5337.431023210644, + "center": [ + 1965.8346708246609, + 5333.324791592535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.96561720519, + 5329.218559974425 + ], + [ + 1975.703724444132, + 5329.218559974425 + ], + [ + 1975.703724444132, + 5337.431023210644 + ], + [ + 1955.96561720519, + 5337.431023210644 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55529F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.300936611441, + "min_y": 5306.055825893707, + "max_x": 1955.400391335681, + "max_y": 5306.055825893707, + "center": [ + 1954.850663973561, + 5306.055825893707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.400391335681, + 5306.055825893707 + ], + [ + 1954.300936611441, + 5306.055825893707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.300936611441, + "min_y": 5306.358225570731, + "max_x": 1955.400391335681, + "max_y": 5306.358225570731, + "center": [ + 1954.850663973561, + 5306.358225570731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.400391335681, + 5306.358225570731 + ], + [ + 1954.300936611441, + 5306.358225570731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.788555353033, + "min_y": 5279.120154147769, + "max_x": 1860.86073420756, + "max_y": 5279.338963341189, + "center": [ + 1860.3246447802965, + 5279.229558744479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.788555353033, + 5279.338963341189 + ], + [ + 1860.86073420756, + 5279.120154147769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.788555353033, + "min_y": 5278.026108180649, + "max_x": 1860.86073420756, + "max_y": 5278.244917374076, + "center": [ + 1860.3246447802965, + 5278.135512777362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.788555353033, + 5278.026108180649 + ], + [ + 1860.86073420756, + 5278.244917374076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.86073420756, + "min_y": 5278.244917374076, + "max_x": 1860.86073420756, + "max_y": 5279.120154147769, + "center": [ + 1860.86073420756, + 5278.682535760923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.86073420756, + 5278.244917374076 + ], + [ + 1860.86073420756, + 5279.120154147769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.788555353033, + "min_y": 5278.026108180649, + "max_x": 1859.788555353033, + "max_y": 5279.338963341189, + "center": [ + 1859.788555353033, + 5278.68253576092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.788555353033, + 5278.026108180649 + ], + [ + 1859.788555353033, + 5279.338963341189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350695, + "min_y": 5285.848561757454, + "max_x": 1871.208581517997, + "max_y": 5285.848561757454, + "center": [ + 1870.5733119343458, + 5285.848561757454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.208581517997, + 5285.848561757454 + ], + [ + 1869.938042350695, + 5285.848561757454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350698, + "min_y": 5287.932058387182, + "max_x": 1871.185518519615, + "max_y": 5287.932058387182, + "center": [ + 1870.5617804351564, + 5287.932058387182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.185518519615, + 5287.932058387182 + ], + [ + 1869.938042350698, + 5287.932058387182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350698, + "min_y": 5285.848561757454, + "max_x": 1871.18551851962, + "max_y": 5285.848561757454, + "center": [ + 1870.561780435159, + 5285.848561757454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.18551851962, + 5285.848561757454 + ], + [ + 1869.938042350698, + 5285.848561757454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350695, + "min_y": 5285.848561757454, + "max_x": 1871.185518519615, + "max_y": 5287.932058387182, + "center": [ + 1870.561780435155, + 5286.890310072318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.938042350695, + 5285.848561757454 + ], + [ + 1871.185518519615, + 5287.932058387182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350693, + "min_y": 5285.477349014772, + "max_x": 1871.208581517997, + "max_y": 5285.477349014772, + "center": [ + 1870.573311934345, + 5285.477349014772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.208581517997, + 5285.477349014772 + ], + [ + 1869.938042350693, + 5285.477349014772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350695, + "min_y": 5285.477349014772, + "max_x": 1871.185518519618, + "max_y": 5285.477349014772, + "center": [ + 1870.5617804351564, + 5285.477349014772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.185518519618, + 5285.477349014772 + ], + [ + 1869.938042350695, + 5285.477349014772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350693, + "min_y": 5288.361994005974, + "max_x": 1871.208581517997, + "max_y": 5288.361994005974, + "center": [ + 1870.573311934345, + 5288.361994005974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.208581517997, + 5288.361994005974 + ], + [ + 1869.938042350693, + 5288.361994005974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.938042350695, + "min_y": 5281.304926490162, + "max_x": 1871.208581517997, + "max_y": 5281.304926490162, + "center": [ + 1870.5733119343458, + 5281.304926490162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.208581517997, + 5281.304926490162 + ], + [ + 1869.938042350695, + 5281.304926490162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.928575903471, + "min_y": 5285.106136272097, + "max_x": 1871.22217806915, + "max_y": 5285.106136272097, + "center": [ + 1870.5753769863104, + 5285.106136272097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.22217806915, + 5285.106136272097 + ], + [ + 1869.928575903471, + 5285.106136272097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.928575903471, + "min_y": 5285.477349014772, + "max_x": 1871.22217806915, + "max_y": 5285.477349014772, + "center": [ + 1870.5753769863104, + 5285.477349014772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.22217806915, + 5285.477349014772 + ], + [ + 1869.928575903471, + 5285.477349014772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.926510851508, + "min_y": 5281.676139232837, + "max_x": 1871.220113017184, + "max_y": 5281.676139232837, + "center": [ + 1870.573311934346, + 5281.676139232837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.220113017184, + 5281.676139232837 + ], + [ + 1869.926510851508, + 5281.676139232837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.328311524178, + "min_y": 5284.616144154841, + "max_x": 1870.8183123445142, + "max_y": 5285.106144975178, + "center": [ + 1870.573311934346, + 5284.861144565009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5284.861144565009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5284.126143334508, + "max_x": 1870.8183123445124, + "max_y": 5284.616144154841, + "center": [ + 1870.573311934346, + 5284.371143744675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5284.371143744675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5283.636142514178, + "max_x": 1870.8183123445124, + "max_y": 5284.126143334511, + "center": [ + 1870.573311934346, + 5283.881142924344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5283.881142924344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241775, + "min_y": 5283.636142514172, + "max_x": 1870.8183123445147, + "max_y": 5284.126143334509, + "center": [ + 1870.573311934346, + 5283.881142924341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5283.881142924341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5283.146141693836, + "max_x": 1870.8183123445124, + "max_y": 5283.6361425141695, + "center": [ + 1870.573311934346, + 5283.391142104003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5283.391142104003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.328311524177, + "min_y": 5282.6561408735, + "max_x": 1870.818312344515, + "max_y": 5283.146141693838, + "center": [ + 1870.573311934346, + 5282.901141283669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5282.901141283669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5282.1661400531675, + "max_x": 1870.8183123445124, + "max_y": 5282.656140873501, + "center": [ + 1870.573311934346, + 5282.411140463334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5282.411140463334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1870.3283115241798, + "min_y": 5281.676139232836, + "max_x": 1870.8183123445124, + "max_y": 5282.166140053169, + "center": [ + 1870.573311934346, + 5281.921139643003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934346, + 5281.921139643003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552B9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.573311934344, + "min_y": 5288.361994005974, + "max_x": 1870.573311934344, + "max_y": 5289.136987148836, + "center": [ + 1870.573311934344, + 5288.749490577406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.573311934344, + 5288.361994005974 + ], + [ + 1870.573311934344, + 5289.136987148836 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.010930319863, + "min_y": 5289.136953045574, + "max_x": 1871.229823066684, + "max_y": 5290.209114845219, + "center": [ + 1871.1203766932736, + 5289.673033945397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.229823066684, + 5290.209114845219 + ], + [ + 1871.010930319863, + 5289.136953045574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.91696791013, + "min_y": 5289.137021252098, + "max_x": 1870.135693548826, + "max_y": 5290.209217155004, + "center": [ + 1870.026330729478, + 5289.673119203551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.91696791013, + 5290.209217155004 + ], + [ + 1870.135693548826, + 5289.137021252098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.135693548826, + "min_y": 5289.136953045574, + "max_x": 1871.010930319863, + "max_y": 5289.137021252098, + "center": [ + 1870.5733119343445, + 5289.136987148836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1870.135693548826, + 5289.137021252098 + ], + [ + 1871.010930319863, + 5289.136953045574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.91696791013, + "min_y": 5290.209114845219, + "max_x": 1871.229823066684, + "max_y": 5290.209217155004, + "center": [ + 1870.5733954884072, + 5290.2091660001115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.91696791013, + 5290.209217155004 + ], + [ + 1871.229823066684, + 5290.209114845219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.003341709647, + "min_y": 5290.20912157626, + "max_x": 1871.143449267176, + "max_y": 5290.209210423959, + "center": [ + 1870.5733954884115, + 5290.20916600011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.143449267176, + 5290.20912157626 + ], + [ + 1870.003341709647, + 5290.209210423959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5286.745881424168, + "max_x": 1874.872502973168, + "max_y": 5286.745881424168, + "center": [ + 1874.3024491926735, + 5286.745881424168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.732395412179, + 5286.745881424168 + ], + [ + 1874.872502973168, + 5286.745881424168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.872502973168, + "min_y": 5286.745881424168, + "max_x": 1874.872502973168, + "max_y": 5287.37195436319, + "center": [ + 1874.872502973168, + 5287.058917893679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.872502973168, + 5287.37195436319 + ], + [ + 1874.872502973168, + 5286.745881424168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5286.745881424168, + "max_x": 1873.732395412179, + "max_y": 5287.37195436319, + "center": [ + 1873.732395412179, + 5287.058917893679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.732395412179, + 5287.37195436319 + ], + [ + 1873.732395412179, + 5286.745881424168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1870.570705977275, + "min_y": 5291.431685240029, + "max_x": 1874.302449192673, + "max_y": 5291.431976051883, + "center": [ + 1872.4365775849742, + 5291.431830645955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5291.431685240029 + ], + [ + 1870.570705977275, + 5291.431976051883 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.302449192673, + "min_y": 5294.32968739133, + "max_x": 1874.302449192673, + "max_y": 5294.807441051801, + "center": [ + 1874.302449192673, + 5294.568564221565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5294.32968739133 + ], + [ + 1874.302449192673, + 5294.807441051801 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5552C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.302449192673, + "min_y": 5294.32968739133, + "max_x": 1874.302449192673, + "max_y": 5294.807441051801, + "center": [ + 1874.302449192673, + 5294.568564221565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5294.32968739133 + ], + [ + 1874.302449192673, + 5294.807441051801 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5552C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.483213134055, + "min_y": 5292.166245809553, + "max_x": 1874.852176554795, + "max_y": 5292.782477255689, + "center": [ + 1874.6676948444251, + 5292.474361532621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5292.166245809553 + ], + [ + 1874.483213134055, + 5292.782477255689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5292.166245809553, + "max_x": 1874.852176554795, + "max_y": 5292.166245809553, + "center": [ + 1874.302449192674, + 5292.166245809553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.752721830553, + 5292.166245809553 + ], + [ + 1874.852176554795, + 5292.166245809553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5292.166245809553, + "max_x": 1874.121685251292, + "max_y": 5292.782477255689, + "center": [ + 1873.9372035409224, + 5292.474361532621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.121685251292, + 5292.782477255689 + ], + [ + 1873.752721830553, + 5292.166245809553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.483213134058, + "min_y": 5293.386290093212, + "max_x": 1874.852176554795, + "max_y": 5294.002521539352, + "center": [ + 1874.6676948444265, + 5293.694405816282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5294.002521539352 + ], + [ + 1874.483213134058, + 5293.386290093212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5294.002521539352, + "max_x": 1874.852176554795, + "max_y": 5294.002521539352, + "center": [ + 1874.302449192674, + 5294.002521539352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.752721830553, + 5294.002521539352 + ], + [ + 1874.852176554795, + 5294.002521539352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5293.386290093212, + "max_x": 1874.121685251289, + "max_y": 5294.002521539352, + "center": [ + 1873.937203540921, + 5293.694405816282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.121685251289, + 5293.386290093212 + ], + [ + 1873.752721830553, + 5294.002521539352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.74473385562, + "min_y": 5294.32968739133, + "max_x": 1874.856524490429, + "max_y": 5294.32968739133, + "center": [ + 1874.3006291730244, + 5294.32968739133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.74473385562, + 5294.32968739133 + ], + [ + 1874.856524490429, + 5294.32968739133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.74473385562, + "min_y": 5294.32968739133, + "max_x": 1874.856524490429, + "max_y": 5294.32968739133, + "center": [ + 1874.3006291730244, + 5294.32968739133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.74473385562, + 5294.32968739133 + ], + [ + 1874.856524490429, + 5294.32968739133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.746553875271, + "min_y": 5291.83907995757, + "max_x": 1874.858344510076, + "max_y": 5291.83907995757, + "center": [ + 1874.3024491926735, + 5291.83907995757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.746553875271, + 5291.83907995757 + ], + [ + 1874.858344510076, + 5291.83907995757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.746553875271, + "min_y": 5292.166245809553, + "max_x": 1874.858344510076, + "max_y": 5292.166245809553, + "center": [ + 1874.3024491926735, + 5292.166245809553 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.746553875271, + 5292.166245809553 + ], + [ + 1874.858344510076, + 5292.166245809553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5291.83907995757, + "max_x": 1874.852176554795, + "max_y": 5291.83907995757, + "center": [ + 1874.302449192674, + 5291.83907995757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5291.83907995757 + ], + [ + 1873.752721830553, + 5291.83907995757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5294.32968739133, + "max_x": 1874.852176554795, + "max_y": 5294.32968739133, + "center": [ + 1874.302449192674, + 5294.32968739133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5294.32968739133 + ], + [ + 1873.752721830553, + 5294.32968739133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1873.9505641429864, + "min_y": 5292.732498624767, + "max_x": 1874.6543342423597, + "max_y": 5293.43626872414, + "center": [ + 1874.302449192673, + 5293.084383674453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5293.084383674453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5291.83907995757, + "max_x": 1874.872502973168, + "max_y": 5291.83907995757, + "center": [ + 1874.3024491926735, + 5291.83907995757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.732395412179, + 5291.83907995757 + ], + [ + 1874.872502973168, + 5291.83907995757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.483213134055, + "min_y": 5288.86084894071, + "max_x": 1874.852176554795, + "max_y": 5289.477080386846, + "center": [ + 1874.6676948444251, + 5289.168964663778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5288.86084894071 + ], + [ + 1874.483213134055, + 5289.477080386846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5288.86084894071, + "max_x": 1874.852176554795, + "max_y": 5288.86084894071, + "center": [ + 1874.302449192674, + 5288.86084894071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.752721830553, + 5288.86084894071 + ], + [ + 1874.852176554795, + 5288.86084894071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5288.86084894071, + "max_x": 1874.121685251292, + "max_y": 5289.477080386846, + "center": [ + 1873.9372035409224, + 5289.168964663778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.121685251292, + 5289.477080386846 + ], + [ + 1873.752721830553, + 5288.86084894071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.483213134058, + "min_y": 5290.080893224368, + "max_x": 1874.852176554795, + "max_y": 5290.697124670509, + "center": [ + 1874.6676948444265, + 5290.389008947439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5290.697124670509 + ], + [ + 1874.483213134058, + 5290.080893224368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5290.697124670509, + "max_x": 1874.852176554795, + "max_y": 5290.697124670509, + "center": [ + 1874.302449192674, + 5290.697124670509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.752721830553, + 5290.697124670509 + ], + [ + 1874.852176554795, + 5290.697124670509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5290.080893224368, + "max_x": 1874.121685251289, + "max_y": 5290.697124670509, + "center": [ + 1873.937203540921, + 5290.389008947439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.121685251289, + 5290.080893224368 + ], + [ + 1873.752721830553, + 5290.697124670509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.74473385562, + "min_y": 5291.024290522487, + "max_x": 1874.856524490429, + "max_y": 5291.024290522487, + "center": [ + 1874.3006291730244, + 5291.024290522487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.74473385562, + 5291.024290522487 + ], + [ + 1874.856524490429, + 5291.024290522487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.74473385562, + "min_y": 5291.024290522487, + "max_x": 1874.856524490429, + "max_y": 5291.024290522487, + "center": [ + 1874.3006291730244, + 5291.024290522487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.74473385562, + 5291.024290522487 + ], + [ + 1874.856524490429, + 5291.024290522487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.746553875271, + "min_y": 5288.533683088726, + "max_x": 1874.858344510076, + "max_y": 5288.533683088726, + "center": [ + 1874.3024491926735, + 5288.533683088726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.746553875271, + 5288.533683088726 + ], + [ + 1874.858344510076, + 5288.533683088726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.746553875271, + "min_y": 5288.86084894071, + "max_x": 1874.858344510076, + "max_y": 5288.86084894071, + "center": [ + 1874.3024491926735, + 5288.86084894071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.746553875271, + 5288.86084894071 + ], + [ + 1874.858344510076, + 5288.86084894071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5288.533683088726, + "max_x": 1874.852176554795, + "max_y": 5288.533683088726, + "center": [ + 1874.302449192674, + 5288.533683088726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5288.533683088726 + ], + [ + 1873.752721830553, + 5288.533683088726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.752721830553, + "min_y": 5291.024290522487, + "max_x": 1874.852176554795, + "max_y": 5291.024290522487, + "center": [ + 1874.302449192674, + 5291.024290522487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.852176554795, + 5291.024290522487 + ], + [ + 1873.752721830553, + 5291.024290522487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552DF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1873.9505641429864, + "min_y": 5289.427101755921, + "max_x": 1874.6543342423597, + "max_y": 5290.130871855295, + "center": [ + 1874.302449192673, + 5289.778986805608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5289.778986805608 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.732395412179, + "min_y": 5288.533683088726, + "max_x": 1874.872502973168, + "max_y": 5288.533683088726, + "center": [ + 1874.3024491926735, + 5288.533683088726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.732395412179, + 5288.533683088726 + ], + [ + 1874.872502973168, + 5288.533683088726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552E1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1874.302449192673, + "min_y": 5291.024290522487, + "max_x": 1874.302449192673, + "max_y": 5291.83907995757, + "center": [ + 1874.302449192673, + 5291.431685240028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5291.024290522487 + ], + [ + 1874.302449192673, + 5291.83907995757 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552E2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1874.302449192673, + "min_y": 5291.024290522487, + "max_x": 1874.302449192673, + "max_y": 5291.83907995757, + "center": [ + 1874.302449192673, + 5291.431685240028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5291.024290522487 + ], + [ + 1874.302449192673, + 5291.83907995757 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552E3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1874.302449192673, + "min_y": 5287.36980947931, + "max_x": 1874.302449192673, + "max_y": 5288.533683088726, + "center": [ + 1874.302449192673, + 5287.951746284018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5287.36980947931 + ], + [ + 1874.302449192673, + 5288.533683088726 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552E4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1872.129033099405, + "min_y": 5295.988054769817, + "max_x": 1876.0477459112478, + "max_y": 5297.294292373765, + "center": [ + 1874.0883895053264, + 5296.64117357179 + ] + }, + "raw_value": "10118", + "clean_value": "10118", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5552E5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1873.238224760797, + "min_y": 5298.304519974256, + "max_x": 1874.8057098855343, + "max_y": 5299.610757578204, + "center": [ + 1874.0219673231657, + 5298.95763877623 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5552E6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1871.4403847978454, + "min_y": 5294.8074410518, + "max_x": 1877.1645135875008, + "max_y": 5300.531569841456, + "center": [ + 1874.302449192673, + 5297.669505446628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.302449192673, + 5297.669505446628 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5552E7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1897.5901045365272, + "min_y": 5312.649295169098, + "max_x": 1903.3142333261826, + "max_y": 5318.373423958754, + "center": [ + 1900.452168931355, + 5315.511359563926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.452168931355, + 5315.511359563926 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5552E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1895.111482582823, + "min_y": 5308.61514995168, + "max_x": 1898.307110351366, + "max_y": 5313.616594066942, + "center": [ + 1896.7092964670946, + 5311.115872009311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.307110351366, + 5313.616594066942 + ], + [ + 1895.111482582823, + 5308.61514995168 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5552E9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1900.255941026802, + "min_y": 5300.660360145587, + "max_x": 1900.255941026802, + "max_y": 5306.568639705851, + "center": [ + 1900.255941026802, + 5303.614499925719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.255941026802, + 5306.568639705851 + ], + [ + 1900.255941026802, + 5300.660360145587 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552EA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1892.2387217623, + "min_y": 5309.087160503191, + "max_x": 1893.4479248492007, + "max_y": 5310.094829742275, + "center": [ + 1892.8433233057503, + 5309.590995122733 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552EB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1899.544130954421, + "min_y": 5306.582211967811, + "max_x": 1903.156206448756, + "max_y": 5306.582211967811, + "center": [ + 1901.3501687015885, + 5306.582211967811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.156206448756, + 5306.582211967811 + ], + [ + 1899.544130954421, + 5306.582211967811 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552EC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5291.309805745084, + "max_x": 1908.968601812059, + "max_y": 5291.309805745087, + "center": [ + 1908.1000686341658, + 5291.309805745086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.968601812059, + 5291.309805745087 + ], + [ + 1907.231535456273, + 5291.309805745084 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.727768736747, + "min_y": 5246.202003286356, + "max_x": 1907.735302175798, + "max_y": 5246.202003286356, + "center": [ + 1907.2315354562725, + 5246.202003286356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.735302175798, + 5246.202003286356 + ], + [ + 1906.727768736747, + 5246.202003286356 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.72746112858, + "min_y": 5245.895492521325, + "max_x": 1907.734994567631, + "max_y": 5245.895492521325, + "center": [ + 1907.2312278481054, + 5245.895492521325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.72746112858, + 5245.895492521325 + ], + [ + 1907.734994567631, + 5245.895492521325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.771211209676, + "min_y": 5293.026028653328, + "max_x": 2031.771211209676, + "max_y": 5306.091311074585, + "center": [ + 2031.771211209676, + 5299.558669863956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.771211209676, + 5306.091311074585 + ], + [ + 2031.771211209676, + 5293.026028653328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5293.026028653328, + "max_x": 2042.970024713611, + "max_y": 5306.091311074585, + "center": [ + 2042.970024713611, + 5299.558669863956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.970024713611, + 5306.091311074585 + ], + [ + 2042.970024713611, + 5293.026028653328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2031.7712112096763, + "min_y": 5305.531370399388, + "max_x": 2032.8910925600696, + "max_y": 5306.651251749782, + "center": [ + 2032.331151884873, + 5306.091311074585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.331151884873, + 5306.091311074585 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2041.8501433632164, + "min_y": 5305.531370399388, + "max_x": 2042.9700247136097, + "max_y": 5306.651251749782, + "center": [ + 2042.410084038413, + 5306.091311074585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.410084038413, + 5306.091311074585 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2026.171804457709, + "min_y": 5285.5228979673, + "max_x": 2048.569431465577, + "max_y": 5307.920524975168, + "center": [ + 2037.370617961643, + 5296.721711471234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2037.370617961643, + 5296.721711471234 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2031.7712112096763, + "min_y": 5292.46608797813, + "max_x": 2032.8910925600696, + "max_y": 5293.585969328525, + "center": [ + 2032.331151884873, + 5293.026028653328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.331151884873, + 5293.026028653328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2041.8501433632164, + "min_y": 5292.46608797813, + "max_x": 2042.9700247136097, + "max_y": 5293.585969328525, + "center": [ + 2042.410084038413, + 5293.026028653328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.410084038413, + 5293.026028653328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2026.171804457709, + "min_y": 5291.196814752748, + "max_x": 2048.569431465577, + "max_y": 5313.594441760615, + "center": [ + 2037.370617961643, + 5302.395628256681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2037.370617961643, + 5302.395628256681 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552F7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2054.770666256609, + "min_y": 5315.374380425666, + "max_x": 2061.9379068991266, + "max_y": 5316.867555559524, + "center": [ + 2058.3542865778677, + 5316.120967992594 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552F8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2053.671286850494, + "min_y": 5314.619073695839, + "max_x": 2063.952308246947, + "max_y": 5314.619073695839, + "center": [ + 2058.8117975487203, + 5314.619073695839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.671286850494, + 5314.619073695839 + ], + [ + 2063.952308246947, + 5314.619073695839 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5552F9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2053.671286850494, + "min_y": 5317.59663253338, + "max_x": 2063.952308246947, + "max_y": 5317.59663253338, + "center": [ + 2058.8117975487203, + 5317.59663253338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2063.952308246947, + 5317.59663253338 + ], + [ + 2053.671286850494, + 5317.59663253338 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5552FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2053.671286850494, + "min_y": 5314.619073695839, + "max_x": 2053.671286850494, + "max_y": 5317.59663253338, + "center": [ + 2053.671286850494, + 5316.1078531146095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.671286850494, + 5317.59663253338 + ], + [ + 2053.671286850494, + 5314.619073695839 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552FB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2050.263884104721, + "min_y": 5318.558703198959, + "max_x": 2061.0147450684976, + "max_y": 5319.678584549352, + "center": [ + 2055.6393145866095, + 5319.118643874155 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5552FC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2039.860347072579, + "min_y": 5311.403118530116, + "max_x": 2039.860347072579, + "max_y": 5316.107853114609, + "center": [ + 2039.860347072579, + 5313.755485822363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.860347072579, + 5311.403118530116 + ], + [ + 2039.860347072579, + 5316.107853114609 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552FD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2039.860347072579, + "min_y": 5316.107853114609, + "max_x": 2053.671286850494, + "max_y": 5316.107853114609, + "center": [ + 2046.7658169615365, + 5316.107853114609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.860347072579, + 5316.107853114609 + ], + [ + 2053.671286850494, + 5316.107853114609 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5552FE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2054.890086603307, + "min_y": 5314.316365680184, + "max_x": 2060.671949826184, + "max_y": 5314.316365680184, + "center": [ + 2057.7810182147455, + 5314.316365680184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.671949826184, + 5314.316365680184 + ], + [ + 2054.890086603307, + 5314.316365680184 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5552FF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2054.890086603299, + "min_y": 5311.635892608127, + "max_x": 2060.671949826184, + "max_y": 5311.635892608127, + "center": [ + 2057.7810182147414, + 5311.635892608127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.890086603299, + 5311.635892608127 + ], + [ + 2060.671949826184, + 5311.635892608127 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555300", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2060.671949826184, + "min_y": 5311.635892608127, + "max_x": 2060.671949826184, + "max_y": 5314.316365680184, + "center": [ + 2060.671949826184, + 5312.9761291441555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.671949826184, + 5311.635892608127 + ], + [ + 2060.671949826184, + 5314.316365680184 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555301", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2053.549850067275, + "min_y": 5312.976129144154, + "max_x": 2054.890086603302, + "max_y": 5314.316365680178, + "center": [ + 2054.2199683352883, + 5313.646247412165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.890086603302, + 5314.316365680178 + ], + [ + 2053.549850067275, + 5312.976129144154 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555302", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2053.549850067275, + "min_y": 5311.635892608125, + "max_x": 2054.890086603302, + "max_y": 5312.976129144154, + "center": [ + 2054.2199683352883, + 5312.306010876139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.549850067275, + 5312.976129144154 + ], + [ + 2054.890086603302, + 5311.635892608125 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555303", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2056.199392472938, + "min_y": 5312.213633422159, + "max_x": 2057.991202633568, + "max_y": 5313.706808556017, + "center": [ + 2057.0952975532527, + 5312.960220989087 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555304", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2053.117393072789, + "min_y": 5309.773791043558, + "max_x": 2058.4928235546777, + "max_y": 5310.893672393951, + "center": [ + 2055.8051083137334, + 5310.333731718754 + ] + }, + "raw_value": "UFD-9005", + "clean_value": "UFD-9005", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555305", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2032.176772552544, + "min_y": 5308.76168130662, + "max_x": 2032.176772552544, + "max_y": 5311.647073655265, + "center": [ + 2032.176772552544, + 5310.204377480943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.176772552544, + 5308.76168130662 + ], + [ + 2032.176772552544, + 5311.647073655265 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555306", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2033.021063600124, + "min_y": 5309.159751056824, + "max_x": 2033.021063600124, + "max_y": 5314.171783754581, + "center": [ + 2033.021063600124, + 5311.665767405702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.021063600124, + 5309.159751056824 + ], + [ + 2033.021063600124, + 5314.171783754581 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555307", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2033.867105477015, + "min_y": 5309.476663548069, + "max_x": 2033.867160234339, + "max_y": 5311.530826720424, + "center": [ + 2033.867132855677, + 5310.503745134247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.867160234339, + 5309.476663548069 + ], + [ + 2033.867105477015, + 5311.530826720424 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555308", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2029.339158655559, + "min_y": 5314.171783754581, + "max_x": 2033.021063600124, + "max_y": 5314.171783754581, + "center": [ + 2031.1801111278414, + 5314.171783754581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.021063600124, + 5314.171783754581 + ], + [ + 2029.339158655559, + 5314.171783754581 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555309", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2020.200500805774, + "min_y": 5313.437735736417, + "max_x": 2026.4718363679772, + "max_y": 5314.9309108702755, + "center": [ + 2023.3361685868756, + 5314.184323303347 + ] + }, + "raw_value": "E-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55530A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5312.682632047881, + "max_x": 2027.850006948858, + "max_y": 5312.682632047881, + "center": [ + 2023.7978788108694, + 5312.682632047881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2019.745750672881, + 5312.682632047881 + ], + [ + 2027.850006948858, + 5312.682632047881 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55530B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5315.660935461277, + "max_x": 2027.850006948867, + "max_y": 5315.660935461277, + "center": [ + 2023.797878810874, + 5315.660935461277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.850006948867, + 5315.660935461277 + ], + [ + 2019.745750672881, + 5315.660935461277 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55530C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2019.745750672881, + "min_y": 5312.682632047881, + "max_x": 2019.745750672881, + "max_y": 5315.660935461277, + "center": [ + 2019.745750672881, + 5314.171783754579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2019.745750672881, + 5315.660935461277 + ], + [ + 2019.745750672881, + 5312.682632047881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55530D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.850006948861, + "min_y": 5312.682632047884, + "max_x": 2029.339158655559, + "max_y": 5314.171783754581, + "center": [ + 2028.59458280221, + 5313.427207901233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.850006948861, + 5312.682632047884 + ], + [ + 2029.339158655559, + 5314.171783754581 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55530E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2027.850006948861, + "min_y": 5314.171783754581, + "max_x": 2029.339158655559, + "max_y": 5315.660935461278, + "center": [ + 2028.59458280221, + 5314.91635960793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2029.339158655559, + 5314.171783754581 + ], + [ + 2027.850006948861, + 5315.660935461278 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55530F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2034.643495841363, + "min_y": 5310.268437540472, + "max_x": 2034.643495841363, + "max_y": 5310.810398611516, + "center": [ + 2034.643495841363, + 5310.539418075994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2034.643495841363, + 5310.268437540472 + ], + [ + 2034.643495841363, + 5310.810398611516 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555310", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2039.853627784477, + "min_y": 5316.445206924079, + "max_x": 2051.9483463687257, + "max_y": 5317.565088274472, + "center": [ + 2045.9009870766013, + 5317.005147599275 + ] + }, + "raw_value": "VG-10421-50A-F1A-n", + "clean_value": "VG-10421-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555311", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2036.323071796497, + "min_y": 5313.262828181841, + "max_x": 2038.69382193121, + "max_y": 5319.825558379941, + "center": [ + 2037.5084468638536, + 5316.544193280891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.323071796497, + 5319.825558379941 + ], + [ + 2038.69382193121, + 5313.262828181841 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555312", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.69382193121, + "min_y": 5313.262828181841, + "max_x": 2038.69382193121, + "max_y": 5314.260779457637, + "center": [ + 2038.69382193121, + 5313.761803819739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.69382193121, + 5313.262828181841 + ], + [ + 2038.69382193121, + 5314.260779457637 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.374931907142, + "min_y": 5314.145582192979, + "max_x": 2038.69382193121, + "max_y": 5314.260779457637, + "center": [ + 2038.5343769191759, + 5314.203180825309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.69382193121, + 5314.260779457637 + ], + [ + 2038.374931907142, + 5314.145582192979 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555314", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2037.445116756513, + "min_y": 5320.06647600435, + "max_x": 2045.304936821368, + "max_y": 5321.074145243434, + "center": [ + 2041.3750267889404, + 5320.5703106238925 + ] + }, + "raw_value": "-200~400mmH2O", + "clean_value": "-200~400mmH2O", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555315", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2039.714463458123, + "min_y": 5321.721531045341, + "max_x": 2044.5512758057262, + "max_y": 5322.729200284425, + "center": [ + 2042.1328696319247, + 5322.225365664883 + ] + }, + "raw_value": "BV-10100", + "clean_value": "BV-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555316", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2036.323071796497, + "min_y": 5319.825558379941, + "max_x": 2048.56754472878, + "max_y": 5319.825558379941, + "center": [ + 2042.4453082626385, + 5319.825558379941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.56754472878, + 5319.825558379941 + ], + [ + 2036.323071796497, + 5319.825558379941 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555317", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1875.834328234822, + "min_y": 5214.595353543229, + "max_x": 1875.834328234822, + "max_y": 5220.573700096877, + "center": [ + 1875.834328234822, + 5217.584526820053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1875.834328234822, + 5214.595353543229 + ], + [ + 1875.834328234822, + 5220.573700096877 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5214.485185881433, + "max_x": 1835.608852233717, + "max_y": 5214.485185881433, + "center": [ + 1835.0387984532222, + 5214.485185881433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.468744672727, + 5214.485185881433 + ], + [ + 1835.608852233717, + 5214.485185881433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555319", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.608852233717, + "min_y": 5214.485185881433, + "max_x": 1835.608852233717, + "max_y": 5215.111258820456, + "center": [ + 1835.608852233717, + 5214.798222350944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.608852233717, + 5215.111258820456 + ], + [ + 1835.608852233717, + 5214.485185881433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55531A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5214.485185881433, + "max_x": 1834.468744672727, + "max_y": 5215.111258820456, + "center": [ + 1834.468744672727, + 5214.798222350944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.468744672727, + 5215.111258820456 + ], + [ + 1834.468744672727, + 5214.485185881433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55531B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5222.068991848597, + "max_x": 1835.038798453222, + "max_y": 5222.546745509067, + "center": [ + 1835.038798453222, + 5222.307868678832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5222.068991848597 + ], + [ + 1835.038798453222, + 5222.546745509067 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55531C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5222.068991848597, + "max_x": 1835.038798453222, + "max_y": 5222.546745509067, + "center": [ + 1835.038798453222, + 5222.307868678832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5222.068991848597 + ], + [ + 1835.038798453222, + 5222.546745509067 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55531D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.219562394604, + "min_y": 5219.90555026682, + "max_x": 1835.588525815343, + "max_y": 5220.521781712955, + "center": [ + 1835.4040441049735, + 5220.213665989888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5219.90555026682 + ], + [ + 1835.219562394604, + 5220.521781712955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55531E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5219.90555026682, + "max_x": 1835.588525815343, + "max_y": 5219.90555026682, + "center": [ + 1835.0387984532222, + 5219.90555026682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.489071091101, + 5219.90555026682 + ], + [ + 1835.588525815343, + 5219.90555026682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55531F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5219.90555026682, + "max_x": 1834.858034511841, + "max_y": 5220.521781712955, + "center": [ + 1834.673552801471, + 5220.213665989888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.858034511841, + 5220.521781712955 + ], + [ + 1834.489071091101, + 5219.90555026682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555320", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.219562394607, + "min_y": 5221.125594550477, + "max_x": 1835.588525815343, + "max_y": 5221.741825996619, + "center": [ + 1835.4040441049751, + 5221.433710273548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5221.741825996619 + ], + [ + 1835.219562394607, + 5221.125594550477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5221.741825996619, + "max_x": 1835.588525815343, + "max_y": 5221.741825996619, + "center": [ + 1835.0387984532222, + 5221.741825996619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.489071091101, + 5221.741825996619 + ], + [ + 1835.588525815343, + 5221.741825996619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555322", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5221.125594550477, + "max_x": 1834.858034511838, + "max_y": 5221.741825996619, + "center": [ + 1834.6735528014697, + 5221.433710273548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.858034511838, + 5221.125594550477 + ], + [ + 1834.489071091101, + 5221.741825996619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.481083116169, + "min_y": 5222.068991848597, + "max_x": 1835.592873750977, + "max_y": 5222.068991848597, + "center": [ + 1835.036978433573, + 5222.068991848597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.481083116169, + 5222.068991848597 + ], + [ + 1835.592873750977, + 5222.068991848597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.481083116169, + "min_y": 5222.068991848597, + "max_x": 1835.592873750977, + "max_y": 5222.068991848597, + "center": [ + 1835.036978433573, + 5222.068991848597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.481083116169, + 5222.068991848597 + ], + [ + 1835.592873750977, + 5222.068991848597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555325", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.48290313582, + "min_y": 5219.578384414837, + "max_x": 1835.594693770625, + "max_y": 5219.578384414837, + "center": [ + 1835.0387984532226, + 5219.578384414837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.48290313582, + 5219.578384414837 + ], + [ + 1835.594693770625, + 5219.578384414837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555326", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.48290313582, + "min_y": 5219.90555026682, + "max_x": 1835.594693770625, + "max_y": 5219.90555026682, + "center": [ + 1835.0387984532226, + 5219.90555026682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.48290313582, + 5219.90555026682 + ], + [ + 1835.594693770625, + 5219.90555026682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555327", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5219.578384414837, + "max_x": 1835.588525815343, + "max_y": 5219.578384414837, + "center": [ + 1835.0387984532222, + 5219.578384414837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5219.578384414837 + ], + [ + 1834.489071091101, + 5219.578384414837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555328", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5222.068991848597, + "max_x": 1835.588525815343, + "max_y": 5222.068991848597, + "center": [ + 1835.0387984532222, + 5222.068991848597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5222.068991848597 + ], + [ + 1834.489071091101, + 5222.068991848597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555329", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1834.6869134035353, + "min_y": 5220.471803082032, + "max_x": 1835.3906835029086, + "max_y": 5221.1755731814055, + "center": [ + 1835.038798453222, + 5220.823688131719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5220.823688131719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5219.578384414837, + "max_x": 1835.608852233717, + "max_y": 5219.578384414837, + "center": [ + 1835.0387984532222, + 5219.578384414837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.468744672727, + 5219.578384414837 + ], + [ + 1835.608852233717, + 5219.578384414837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.219562394604, + "min_y": 5216.600153397976, + "max_x": 1835.588525815343, + "max_y": 5217.216384844111, + "center": [ + 1835.4040441049735, + 5216.908269121044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5216.600153397976 + ], + [ + 1835.219562394604, + 5217.216384844111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5216.600153397976, + "max_x": 1835.588525815343, + "max_y": 5216.600153397976, + "center": [ + 1835.0387984532222, + 5216.600153397976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.489071091101, + 5216.600153397976 + ], + [ + 1835.588525815343, + 5216.600153397976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5216.600153397976, + "max_x": 1834.858034511841, + "max_y": 5217.216384844111, + "center": [ + 1834.673552801471, + 5216.908269121044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.858034511841, + 5217.216384844111 + ], + [ + 1834.489071091101, + 5216.600153397976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.219562394607, + "min_y": 5217.820197681634, + "max_x": 1835.588525815343, + "max_y": 5218.436429127775, + "center": [ + 1835.4040441049751, + 5218.128313404704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5218.436429127775 + ], + [ + 1835.219562394607, + 5217.820197681634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55532F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5218.436429127775, + "max_x": 1835.588525815343, + "max_y": 5218.436429127775, + "center": [ + 1835.0387984532222, + 5218.436429127775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.489071091101, + 5218.436429127775 + ], + [ + 1835.588525815343, + 5218.436429127775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5217.820197681634, + "max_x": 1834.858034511838, + "max_y": 5218.436429127775, + "center": [ + 1834.6735528014697, + 5218.128313404704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.858034511838, + 5217.820197681634 + ], + [ + 1834.489071091101, + 5218.436429127775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.481083116169, + "min_y": 5218.763594979753, + "max_x": 1835.592873750977, + "max_y": 5218.763594979753, + "center": [ + 1835.036978433573, + 5218.763594979753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.481083116169, + 5218.763594979753 + ], + [ + 1835.592873750977, + 5218.763594979753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555332", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.481083116169, + "min_y": 5218.763594979753, + "max_x": 1835.592873750977, + "max_y": 5218.763594979753, + "center": [ + 1835.036978433573, + 5218.763594979753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.481083116169, + 5218.763594979753 + ], + [ + 1835.592873750977, + 5218.763594979753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.48290313582, + "min_y": 5216.272987545993, + "max_x": 1835.594693770625, + "max_y": 5216.272987545993, + "center": [ + 1835.0387984532226, + 5216.272987545993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.48290313582, + 5216.272987545993 + ], + [ + 1835.594693770625, + 5216.272987545993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.48290313582, + "min_y": 5216.600153397976, + "max_x": 1835.594693770625, + "max_y": 5216.600153397976, + "center": [ + 1835.0387984532226, + 5216.600153397976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.48290313582, + 5216.600153397976 + ], + [ + 1835.594693770625, + 5216.600153397976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5216.272987545993, + "max_x": 1835.588525815343, + "max_y": 5216.272987545993, + "center": [ + 1835.0387984532222, + 5216.272987545993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5216.272987545993 + ], + [ + 1834.489071091101, + 5216.272987545993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.489071091101, + "min_y": 5218.763594979753, + "max_x": 1835.588525815343, + "max_y": 5218.763594979753, + "center": [ + 1835.0387984532222, + 5218.763594979753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.588525815343, + 5218.763594979753 + ], + [ + 1834.489071091101, + 5218.763594979753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555337", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1834.6869134035353, + "min_y": 5217.16640621319, + "max_x": 1835.3906835029086, + "max_y": 5217.870176312564, + "center": [ + 1835.038798453222, + 5217.518291262877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5217.518291262877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.468744672727, + "min_y": 5216.272987545993, + "max_x": 1835.608852233717, + "max_y": 5216.272987545993, + "center": [ + 1835.0387984532222, + 5216.272987545993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.468744672727, + 5216.272987545993 + ], + [ + 1835.608852233717, + 5216.272987545993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555339", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5218.763594979753, + "max_x": 1835.038798453222, + "max_y": 5219.578384414837, + "center": [ + 1835.038798453222, + 5219.170989697295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5218.763594979753 + ], + [ + 1835.038798453222, + 5219.578384414837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55533A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5218.763594979753, + "max_x": 1835.038798453222, + "max_y": 5219.578384414837, + "center": [ + 1835.038798453222, + 5219.170989697295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5218.763594979753 + ], + [ + 1835.038798453222, + 5219.578384414837 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55533B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5215.109113936575, + "max_x": 1835.038798453222, + "max_y": 5216.272987545993, + "center": [ + 1835.038798453222, + 5215.691050741284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453222, + 5215.109113936575 + ], + [ + 1835.038798453222, + 5216.272987545993 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55533C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1832.865382359955, + "min_y": 5223.727359227082, + "max_x": 1836.7840951717978, + "max_y": 5225.03359683103, + "center": [ + 1834.8247387658764, + 5224.380478029056 + ] + }, + "raw_value": "10116", + "clean_value": "10116", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55533D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.974574021348, + "min_y": 5226.043824431521, + "max_x": 1835.5420591460852, + "max_y": 5227.350062035469, + "center": [ + 1834.7583165837166, + 5226.696943233495 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55533E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1832.1767340583963, + "min_y": 5222.546745509066, + "max_x": 1837.9008628480517, + "max_y": 5228.2708742987215, + "center": [ + 1835.038798453224, + 5225.408809903894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.038798453224, + 5225.408809903894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55533F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5213.892794978847, + "max_x": 1840.003259999534, + "max_y": 5213.892794978847, + "center": [ + 1839.4447278323705, + 5213.892794978847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.886195665207, + 5213.892794978847 + ], + [ + 1840.003259999534, + 5213.892794978847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5214.155820288414, + "max_x": 1840.003259999534, + "max_y": 5216.02150705161, + "center": [ + 1839.4447278323705, + 5215.0886636700125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.886195665207, + 5214.155820288414 + ], + [ + 1840.003259999534, + 5216.02150705161 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5214.155820288414, + "max_x": 1840.003259999534, + "max_y": 5214.155820288414, + "center": [ + 1839.4447278323705, + 5214.155820288414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.886195665207, + 5214.155820288414 + ], + [ + 1840.003259999534, + 5214.155820288414 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555342", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5216.02150705161, + "max_x": 1840.003259999534, + "max_y": 5216.02150705161, + "center": [ + 1839.4447278323705, + 5216.02150705161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.003259999534, + 5216.02150705161 + ], + [ + 1838.886195665207, + 5216.02150705161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.324675782988, + "min_y": 5215.430349009589, + "max_x": 1840.003259999507, + "max_y": 5216.021507051576, + "center": [ + 1839.6639678912475, + 5215.7259280305825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.003259999507, + 5216.021507051576 + ], + [ + 1839.324675782988, + 5215.430349009589 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.324675782988, + "min_y": 5215.287270118334, + "max_x": 1839.563641781038, + "max_y": 5215.430349009589, + "center": [ + 1839.444158782013, + 5215.358809563962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.324675782988, + 5215.430349009589 + ], + [ + 1839.563641781038, + 5215.287270118334 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.802607779055, + "min_y": 5215.144191227048, + "max_x": 1840.003259999545, + "max_y": 5216.021507051551, + "center": [ + 1839.9029338893001, + 5215.5828491393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.003259999545, + 5216.021507051551 + ], + [ + 1839.802607779055, + 5215.144191227048 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55534A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.563641781025, + "min_y": 5215.144191227048, + "max_x": 1839.802607779055, + "max_y": 5215.28727011834, + "center": [ + 1839.68312478004, + 5215.215730672694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.802607779055, + 5215.144191227048 + ], + [ + 1839.563641781025, + 5215.28727011834 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55534B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.886195665207, + "min_y": 5216.284532361178, + "max_x": 1840.003259999534, + "max_y": 5216.284532361178, + "center": [ + 1839.4447278323705, + 5216.284532361178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.886195665207, + 5216.284532361178 + ], + [ + 1840.003259999534, + 5216.284532361178 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55534C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.922334110065, + "min_y": 5213.592982236479, + "max_x": 1839.967121554677, + "max_y": 5213.592982236479, + "center": [ + 1839.444727832371, + 5213.592982236479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.967121554677, + 5213.592982236479 + ], + [ + 1838.922334110065, + 5213.592982236479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55534D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.922334110065, + "min_y": 5213.892794978847, + "max_x": 1839.967121554677, + "max_y": 5213.892794978847, + "center": [ + 1839.444727832371, + 5213.892794978847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.967121554677, + 5213.892794978847 + ], + [ + 1838.922334110065, + 5213.892794978847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55534E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.92066625543, + "min_y": 5210.822719526062, + "max_x": 1839.96545370005, + "max_y": 5210.822719526062, + "center": [ + 1839.44305997774, + 5210.822719526062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.96545370005, + 5210.822719526062 + ], + [ + 1838.92066625543, + 5210.822719526062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55534F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677693, + "min_y": 5213.197236445654, + "max_x": 1839.6409363877028, + "max_y": 5213.592989265588, + "center": [ + 1839.443059977736, + 5213.395112855621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5213.395112855621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555350", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677707, + "min_y": 5212.801483625725, + "max_x": 1839.6409363877015, + "max_y": 5213.197236445655, + "center": [ + 1839.443059977736, + 5212.99936003569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5212.99936003569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555351", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677707, + "min_y": 5212.4057308057945, + "max_x": 1839.6409363877015, + "max_y": 5212.801483625724, + "center": [ + 1839.443059977736, + 5212.603607215759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5212.603607215759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555352", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.245183567769, + "min_y": 5212.405730805789, + "max_x": 1839.6409363877033, + "max_y": 5212.8014836257225, + "center": [ + 1839.443059977736, + 5212.603607215756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5212.603607215756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555353", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677707, + "min_y": 5212.009977985859, + "max_x": 1839.6409363877015, + "max_y": 5212.405730805789, + "center": [ + 1839.443059977736, + 5212.207854395824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5212.207854395824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555354", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677687, + "min_y": 5211.614225165922, + "max_x": 1839.6409363877035, + "max_y": 5212.009977985857, + "center": [ + 1839.443059977736, + 5211.81210157589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5211.81210157589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555355", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677707, + "min_y": 5211.218472345992, + "max_x": 1839.6409363877015, + "max_y": 5211.614225165922, + "center": [ + 1839.443059977736, + 5211.416348755957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5211.416348755957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555356", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1839.2451835677707, + "min_y": 5210.822719526064, + "max_x": 1839.6409363877015, + "max_y": 5211.218472345994, + "center": [ + 1839.443059977736, + 5211.020595936029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.443059977736, + 5211.020595936029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555357", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1835.038798453222, + "min_y": 5219.170989697294, + "max_x": 1839.444727832371, + "max_y": 5219.170989697294, + "center": [ + 1837.2417631427966, + 5219.170989697294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.444727832371, + 5219.170989697294 + ], + [ + 1835.038798453222, + 5219.170989697294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555358", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1838.237762451578, + "min_y": 5235.883588922439, + "max_x": 1845.6289793641745, + "max_y": 5237.003470272833, + "center": [ + 1841.9333709078762, + 5236.443529597636 + ] + }, + "raw_value": "P10116BA-05", + "clean_value": "P10116BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555359", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1841.164810953647, + "min_y": 5221.071141958358, + "max_x": 1853.9314583481319, + "max_y": 5222.191023308751, + "center": [ + 1847.5481346508896, + 5221.631082633554 + ] + }, + "raw_value": "P-10120-25A-F1A-H50", + "clean_value": "P-10120-25A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55535A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1906.590038543694, + "min_y": 5276.716911968851, + "max_x": 1918.0128283177066, + "max_y": 5277.836793319244, + "center": [ + 1912.3014334307004, + 5277.276852644047 + ] + }, + "raw_value": "P-10130-25A-F2A-n", + "clean_value": "P-10130-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55535B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.606729285857, + "min_y": 5282.593994476783, + "max_x": 1723.170947854037, + "max_y": 5282.594416308651, + "center": [ + 1722.888838569947, + 5282.594205392717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.606729285857, + 5282.593994476783 + ], + [ + 1723.170947854037, + 5282.594416308651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55535C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.605799905166, + "min_y": 5283.837081782226, + "max_x": 1723.170018473347, + "max_y": 5283.837503614103, + "center": [ + 1722.8879091892563, + 5283.837292698165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.170018473347, + 5283.837503614103 + ], + [ + 1722.605799905166, + 5283.837081782226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55535D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1722.7091639313978, + "min_y": 5283.015383335606, + "max_x": 1723.070325023362, + "max_y": 5283.376544427571, + "center": [ + 1722.88974447738, + 5283.195963881589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.88974447738, + 5283.195963881589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55535E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.980388520488, + "min_y": 5283.35214643835, + "max_x": 1723.170143998284, + "max_y": 5283.669608525298, + "center": [ + 1723.075266259386, + 5283.510877481824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.980388520488, + 5283.35214643835 + ], + [ + 1723.170143998284, + 5283.669608525298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55535F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.605925430103, + "min_y": 5283.669186693428, + "max_x": 1723.170143998284, + "max_y": 5283.669608525298, + "center": [ + 1722.8880347141935, + 5283.669397609363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.170143998284, + 5283.669608525298 + ], + [ + 1722.605925430103, + 5283.669186693428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555360", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.605925430103, + "min_y": 5283.350826971055, + "max_x": 1722.796864139807, + "max_y": 5283.669186693428, + "center": [ + 1722.701394784955, + 5283.510006832241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.605925430103, + 5283.669186693428 + ], + [ + 1722.796864139807, + 5283.350826971055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555361", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.981267317123, + "min_y": 5282.727267890244, + "max_x": 1723.170848528997, + "max_y": 5283.043364202367, + "center": [ + 1723.07605792306, + 5282.885316046306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.981267317123, + 5283.043364202367 + ], + [ + 1723.170848528997, + 5282.727267890244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555362", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.606629960819, + "min_y": 5282.726846058378, + "max_x": 1723.170848528997, + "max_y": 5282.727267890244, + "center": [ + 1722.888739244908, + 5282.7270569743105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.170848528997, + 5282.727267890244 + ], + [ + 1722.606629960819, + 5282.726846058378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1722.606629960819, + "min_y": 5282.726846058378, + "max_x": 1722.795738309087, + "max_y": 5283.043225493624, + "center": [ + 1722.701184134953, + 5282.885035776001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.606629960819, + 5282.726846058378 + ], + [ + 1722.795738309087, + 5283.043225493624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555364", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1692.502855146426, + "min_y": 5206.913029646761, + "max_x": 1697.2063568180783, + "max_y": 5208.032910997154, + "center": [ + 1694.8546059822522, + 5207.472970321958 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555365", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5240.608921574247, + "max_x": 1928.510156563927, + "max_y": 5240.608921574247, + "center": [ + 1918.641102944456, + 5240.608921574247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.772049324985, + 5240.608921574247 + ], + [ + 1928.510156563927, + 5240.608921574247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555366", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5237.995865089995, + "max_x": 1928.510156563927, + "max_y": 5237.995865089995, + "center": [ + 1918.641102944456, + 5237.995865089995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.772049324985, + 5237.995865089995 + ], + [ + 1928.510156563927, + 5237.995865089995 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555367", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1914.495826390585, + "min_y": 5241.355509141175, + "max_x": 1920.7671619527882, + "max_y": 5242.8486842750335, + "center": [ + 1917.6314941716867, + 5242.102096708104 + ] + }, + "raw_value": "PRODUCT", + "clean_value": "PRODUCT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555368", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1909.473308361065, + "min_y": 5238.742452656924, + "max_x": 1912.832952412245, + "max_y": 5239.862334007317, + "center": [ + 1911.153130386655, + 5239.30239333212 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555369", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1915.806928629504, + "min_y": 5238.742452656924, + "max_x": 1921.8542879216284, + "max_y": 5239.862334007317, + "center": [ + 1918.8306082755662, + 5239.30239333212 + ] + }, + "raw_value": "15~38%%DC", + "clean_value": "15~38%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55536A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1909.337322768516, + "min_y": 5236.129396172672, + "max_x": 1913.3688956299322, + "max_y": 5237.249277523066, + "center": [ + 1911.353109199224, + 5236.689336847869 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55536B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1915.670943036958, + "min_y": 5236.129396172672, + "max_x": 1924.4060175700267, + "max_y": 5237.249277523066, + "center": [ + 1920.0384803034924, + 5236.689336847869 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55536C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.911491475468, + "min_y": 5235.382808605744, + "max_x": 1914.911491475468, + "max_y": 5240.608921574247, + "center": [ + 1914.911491475468, + 5237.995865089995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.911491475468, + 5240.608921574247 + ], + [ + 1914.911491475468, + 5235.382808605744 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55536D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1908.772049324985, + "min_y": 5235.382808605744, + "max_x": 1928.510156563927, + "max_y": 5243.595271841962, + "center": [ + 1918.641102944456, + 5239.4890402238525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.772049324985, + 5235.382808605744 + ], + [ + 1928.510156563927, + 5235.382808605744 + ], + [ + 1928.510156563927, + 5243.595271841962 + ], + [ + 1908.772049324985, + 5243.595271841962 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55536E", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1680.113156239552, + "min_y": 5353.32101004191, + "max_x": 1681.792978265142, + "max_y": 5355.0008320675, + "center": [ + 1680.953067252347, + 5354.160921054705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.953067252347, + 5354.160921054705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55536F", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1680.113156239552, + "min_y": 5354.160921054705, + "max_x": 1681.792978265142, + "max_y": 5355.8407430802945, + "center": [ + 1680.953067252347, + 5355.0008320675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.953067252347, + 5355.0008320675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555370", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1680.5331117459493, + "min_y": 5354.160921054704, + "max_x": 1681.3730227587446, + "max_y": 5355.0008320675, + "center": [ + 1680.953067252347, + 5354.580876561102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.953067252347, + 5354.580876561102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555371", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1678.9358915561888, + "min_y": 5355.788935371229, + "max_x": 1684.6500649740951, + "max_y": 5361.503108789135, + "center": [ + 1681.792978265142, + 5358.646022080182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.792978265142, + 5358.646022080182 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555372", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1680.728753833266, + "min_y": 5359.219670531038, + "max_x": 1682.2962389580032, + "max_y": 5360.525908134986, + "center": [ + 1681.5124963956346, + 5359.872789333012 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555373", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1679.131029307998, + "min_y": 5356.897594647797, + "max_x": 1683.8334846822095, + "max_y": 5358.203832251745, + "center": [ + 1681.4822569951039, + 5357.550713449771 + ] + }, + "raw_value": "10115A", + "clean_value": "10115A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555374", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1692.265741018654, + "min_y": 5355.788935371229, + "max_x": 1697.9799144365602, + "max_y": 5361.503108789135, + "center": [ + 1695.122827727607, + 5358.646022080182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.122827727607, + 5358.646022080182 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555375", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1694.058603295731, + "min_y": 5359.219670531038, + "max_x": 1695.6260884204682, + "max_y": 5360.525908134986, + "center": [ + 1694.8423458580996, + 5359.872789333012 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555376", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1692.437562429232, + "min_y": 5356.895635291392, + "max_x": 1697.1400178034435, + "max_y": 5358.20187289534, + "center": [ + 1694.7887901163376, + 5357.548754093366 + ] + }, + "raw_value": "10115B", + "clean_value": "10115B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555377", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1681.792978265142, + "min_y": 5355.0008320675, + "max_x": 1681.792978265142, + "max_y": 5355.788935371229, + "center": [ + 1681.792978265142, + 5355.394883719364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.792978265142, + 5355.788935371229 + ], + [ + 1681.792978265142, + 5355.0008320675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555378", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1681.792978265142, + "min_y": 5353.372817750976, + "max_x": 1681.792978265142, + "max_y": 5354.160921054705, + "center": [ + 1681.792978265142, + 5353.76686940284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.792978265142, + 5354.160921054705 + ], + [ + 1681.792978265142, + 5353.372817750976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555379", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1693.443005702017, + "min_y": 5353.32101004191, + "max_x": 1695.122827727607, + "max_y": 5355.0008320675, + "center": [ + 1694.282916714812, + 5354.160921054705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.282916714812, + 5354.160921054705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55537A", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1693.443005702017, + "min_y": 5354.160921054705, + "max_x": 1695.122827727607, + "max_y": 5355.8407430802945, + "center": [ + 1694.282916714812, + 5355.0008320675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.282916714812, + 5355.0008320675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55537B", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1693.8629612084144, + "min_y": 5354.160921054704, + "max_x": 1694.7028722212096, + "max_y": 5355.0008320675, + "center": [ + 1694.282916714812, + 5354.580876561102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.282916714812, + 5354.580876561102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55537C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1695.122827727607, + "min_y": 5355.0008320675, + "max_x": 1695.122827727607, + "max_y": 5355.788935371229, + "center": [ + 1695.122827727607, + 5355.394883719364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.122827727607, + 5355.788935371229 + ], + [ + 1695.122827727607, + 5355.0008320675 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55537D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1695.122827727607, + "min_y": 5353.372817750976, + "max_x": 1695.122827727607, + "max_y": 5354.160921054705, + "center": [ + 1695.122827727607, + 5353.76686940284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.122827727607, + 5354.160921054705 + ], + [ + 1695.122827727607, + 5353.372817750976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55537E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1895.434114051164, + "min_y": 5325.02112598733, + "max_x": 1895.434114051164, + "max_y": 5374.316097823665, + "center": [ + 1895.434114051164, + 5349.6686119054975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.434114051164, + 5374.316097823665 + ], + [ + 1895.434114051164, + 5325.02112598733 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55537F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1860.99276932999, + "min_y": 5279.583459822177, + "max_x": 1865.6962710016423, + "max_y": 5280.703341172571, + "center": [ + 1863.3445201658162, + 5280.143400497374 + ] + }, + "raw_value": "50Ax25A", + "clean_value": "50Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555380", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.04041794971, + "min_y": 5287.573500869861, + "max_x": 1935.4632077237227, + "max_y": 5288.6933822202545, + "center": [ + 1929.7518128367165, + 5288.133441545058 + ] + }, + "raw_value": "P-10137-25A-F1A-n", + "clean_value": "P-10137-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555381", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5382.870073910458, + "max_x": 1935.272000656637, + "max_y": 5382.870073910458, + "center": [ + 1934.785484950756, + 5382.870073910458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.272000656637, + 5382.870073910458 + ], + [ + 1934.298969244875, + 5382.870073910458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555382", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1934.785484950757, + "min_y": 5382.870073910458, + "max_x": 1934.785484950757, + "max_y": 5383.35772685114, + "center": [ + 1934.785484950757, + 5383.113900380798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.785484950757, + 5382.870073910458 + ], + [ + 1934.785484950757, + 5383.35772685114 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555383", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5380.726289455324, + "max_x": 1935.272000656637, + "max_y": 5380.726289455324, + "center": [ + 1934.785484950756, + 5380.726289455324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.298969244875, + 5380.726289455324 + ], + [ + 1935.272000656637, + 5380.726289455324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555384", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1934.4717240340044, + "min_y": 5381.520881482088, + "max_x": 1935.0945695211797, + "max_y": 5382.143726969262, + "center": [ + 1934.783146777592, + 5381.832304225675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.783146777592, + 5381.832304225675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555385", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5381.015835394613, + "max_x": 1934.626623976031, + "max_y": 5381.563074327969, + "center": [ + 1934.462796610453, + 5381.289454861291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.626623976031, + 5381.563074327969 + ], + [ + 1934.298969244875, + 5381.015835394613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555386", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5381.015835394613, + "max_x": 1935.272000656637, + "max_y": 5381.015835394613, + "center": [ + 1934.785484950756, + 5381.015835394613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.298969244875, + 5381.015835394613 + ], + [ + 1935.272000656637, + 5381.015835394613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555387", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.943125164333, + "min_y": 5381.015835394613, + "max_x": 1935.272000656637, + "max_y": 5381.565113205986, + "center": [ + 1935.1075629104848, + 5381.290474300299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.272000656637, + 5381.015835394613 + ], + [ + 1934.943125164333, + 5381.565113205986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555388", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5382.09559009989, + "max_x": 1934.625506564016, + "max_y": 5382.640962765797, + "center": [ + 1934.4622379044454, + 5382.368276432843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.625506564016, + 5382.09559009989 + ], + [ + 1934.298969244875, + 5382.640962765797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555389", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.298969244875, + "min_y": 5382.640962765797, + "max_x": 1935.272000656637, + "max_y": 5382.640962765797, + "center": [ + 1934.785484950756, + 5382.640962765797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.298969244875, + 5382.640962765797 + ], + [ + 1935.272000656637, + 5382.640962765797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55538A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.945463337498, + "min_y": 5382.09559009989, + "max_x": 1935.272000656637, + "max_y": 5382.640962765797, + "center": [ + 1935.1087319970675, + 5382.368276432843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.272000656637, + 5382.640962765797 + ], + [ + 1934.945463337498, + 5382.09559009989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55538B", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1934.785484950757, + "min_y": 5380.238636514643, + "max_x": 1934.785484950757, + "max_y": 5380.726289455324, + "center": [ + 1934.785484950757, + 5380.482462984984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.785484950757, + 5380.726289455324 + ], + [ + 1934.785484950757, + 5380.238636514643 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55538C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.399498895627, + "min_y": 5379.728189424564, + "max_x": 1934.399498895627, + "max_y": 5380.248511405761, + "center": [ + 1934.399498895627, + 5379.988350415162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.399498895627, + 5380.248511405761 + ], + [ + 1934.399498895627, + 5379.728189424564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55538D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.167778686878, + "min_y": 5379.728189424564, + "max_x": 1935.167778686878, + "max_y": 5380.248511405761, + "center": [ + 1935.167778686878, + 5379.988350415162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.167778686878, + 5380.248511405761 + ], + [ + 1935.167778686878, + 5379.728189424564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55538E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.399498895627, + "min_y": 5379.728189424564, + "max_x": 1935.167778686878, + "max_y": 5379.728189424564, + "center": [ + 1934.7836387912525, + 5379.728189424564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.399498895627, + 5379.728189424564 + ], + [ + 1935.167778686878, + 5379.728189424564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55538F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1663.181676017946, + "min_y": 5221.71969230284, + "max_x": 1674.6044657919588, + "max_y": 5222.839573653233, + "center": [ + 1668.8930709049523, + 5222.279632978036 + ] + }, + "raw_value": "P-10149-40A-F1A-n", + "clean_value": "P-10149-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555390", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1664.400147628213, + "min_y": 5253.436643552589, + "max_x": 1678.722248109279, + "max_y": 5253.436674575083, + "center": [ + 1671.5611978687461, + 5253.4366590638365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.722248109279, + 5253.436643552589 + ], + [ + 1664.400147628213, + 5253.436674575083 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555391", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1654.054695447133, + "min_y": 5252.689395793659, + "max_x": 1659.4301259290214, + "max_y": 5254.182570927517, + "center": [ + 1656.7424106880771, + 5253.435983360589 + ] + }, + "raw_value": "T-9124", + "clean_value": "T-9124", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555392", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5254.92582628178, + "max_x": 1662.910995921515, + "max_y": 5254.92582628178, + "center": [ + 1656.6565138275225, + 5254.92582628178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5254.92582628178 + ], + [ + 1662.910995921515, + 5254.92582628178 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555393", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1662.910995921515, + "min_y": 5253.436674575083, + "max_x": 1664.400147628213, + "max_y": 5254.92582628178, + "center": [ + 1663.655571774864, + 5254.181250428432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.910995921515, + 5254.92582628178 + ], + [ + 1664.400147628213, + 5253.436674575083 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555394", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1662.910995921515, + "min_y": 5251.947522868385, + "max_x": 1664.400147628213, + "max_y": 5253.436674575083, + "center": [ + 1663.655571774864, + 5252.6920987217345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1664.400147628213, + 5253.436674575083 + ], + [ + 1662.910995921515, + 5251.947522868385 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555395", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5251.947522868385, + "max_x": 1662.910995921515, + "max_y": 5251.947522868385, + "center": [ + 1656.6565138275225, + 5251.947522868385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5251.947522868385 + ], + [ + 1662.910995921515, + 5251.947522868385 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5251.947522868385, + "max_x": 1650.40203173353, + "max_y": 5254.92582628178, + "center": [ + 1650.40203173353, + 5253.436674575083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5251.947522868385 + ], + [ + 1650.40203173353, + 5254.92582628178 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555397", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1665.108633349565, + "min_y": 5253.961520515233, + "max_x": 1676.5314231235777, + "max_y": 5255.0814018656265, + "center": [ + 1670.8200282365715, + 5254.52146119043 + ] + }, + "raw_value": "P-10107-40A-F1A-n", + "clean_value": "P-10107-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555398", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1689.543798553076, + "min_y": 5206.215154280585, + "max_x": 1691.696608852769, + "max_y": 5206.21528136473, + "center": [ + 1690.6202037029225, + 5206.215217822657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.696608852769, + 5206.21528136473 + ], + [ + 1689.543798553076, + 5206.215154280585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555399", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1680.77393782425, + "min_y": 5207.147051833222, + "max_x": 1688.1651547368465, + "max_y": 5208.266933183615, + "center": [ + 1684.4695462805482, + 5207.706992508418 + ] + }, + "raw_value": "P10101BA-01", + "clean_value": "P10101BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55539A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1678.0101419912, + "min_y": 5207.324942074117, + "max_x": 1685.4013589037966, + "max_y": 5208.44482342451, + "center": [ + 1681.7057504474983, + 5207.884882749313 + ] + }, + "raw_value": "P10101BA-02", + "clean_value": "P10101BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55539B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1673.375835811355, + "min_y": 5207.116663403462, + "max_x": 1680.7670527239516, + "max_y": 5208.236544753855, + "center": [ + 1677.0714442676533, + 5207.676604078659 + ] + }, + "raw_value": "P10101BA-03", + "clean_value": "P10101BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55539C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1686.622564927636, + "min_y": 5207.010295562521, + "max_x": 1694.0137818402325, + "max_y": 5208.130176912914, + "center": [ + 1690.3181733839342, + 5207.570236237718 + ] + }, + "raw_value": "P10101BA-07", + "clean_value": "P10101BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55539D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1702.1964085663624, + "min_y": 5222.713722922908, + "max_x": 1702.8413390877274, + "max_y": 5223.358653444273, + "center": [ + 1702.518873827045, + 5223.036188183591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.518873827045, + 5223.036188183591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55539E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5224.177376728118, + "max_x": 1703.02264054657, + "max_y": 5224.177376728118, + "center": [ + 1702.5188738270435, + 5224.177376728118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.015107107517, + 5224.177376728118 + ], + [ + 1703.02264054657, + 5224.177376728118 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55539F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5221.894999639065, + "max_x": 1703.02264054657, + "max_y": 5221.894999639065, + "center": [ + 1702.5188738270435, + 5221.894999639065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.015107107517, + 5221.894999639065 + ], + [ + 1703.02264054657, + 5221.894999639065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5222.194812381432, + "max_x": 1702.353222880711, + "max_y": 5222.759523027986, + "center": [ + 1702.1841649941139, + 5222.477167704708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.353222880711, + 5222.759523027986 + ], + [ + 1702.015107107517, + 5222.194812381432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5222.194812381432, + "max_x": 1703.02264054657, + "max_y": 5222.194812381432, + "center": [ + 1702.5188738270435, + 5222.194812381432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.015107107517, + 5222.194812381432 + ], + [ + 1703.02264054657, + 5222.194812381432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.684524773373, + "min_y": 5222.194812381432, + "max_x": 1703.02264054657, + "max_y": 5222.759523027986, + "center": [ + 1702.8535826599714, + 5222.477167704708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.02264054657, + 5222.194812381432 + ], + [ + 1702.684524773373, + 5222.759523027986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5223.312853339201, + "max_x": 1702.353222880714, + "max_y": 5223.877563985751, + "center": [ + 1702.1841649941155, + 5223.595208662477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.353222880714, + 5223.312853339201 + ], + [ + 1702.015107107517, + 5223.877563985751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.015107107517, + "min_y": 5223.877563985751, + "max_x": 1703.02264054657, + "max_y": 5223.877563985751, + "center": [ + 1702.5188738270435, + 5223.877563985751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.015107107517, + 5223.877563985751 + ], + [ + 1703.02264054657, + 5223.877563985751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.684524773371, + "min_y": 5223.312853339201, + "max_x": 1703.02264054657, + "max_y": 5223.877563985751, + "center": [ + 1702.8535826599705, + 5223.595208662477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1703.02264054657, + 5223.877563985751 + ], + [ + 1702.684524773371, + 5223.312853339201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1705.505860304743, + "min_y": 5213.738127713888, + "max_x": 1705.505860304743, + "max_y": 5214.788932118848, + "center": [ + 1705.505860304743, + 5214.2635299163685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.505860304743, + 5214.788932118848 + ], + [ + 1705.505860304743, + 5213.738127713888 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.121720409119, + "min_y": 5213.438150251071, + "max_x": 1705.121720409119, + "max_y": 5213.958472232268, + "center": [ + 1705.121720409119, + 5213.698311241669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.121720409119, + 5213.958472232268 + ], + [ + 1705.121720409119, + 5213.438150251071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.89000020037, + "min_y": 5213.438150251071, + "max_x": 1705.89000020037, + "max_y": 5213.958472232268, + "center": [ + 1705.89000020037, + 5213.698311241669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.89000020037, + 5213.958472232268 + ], + [ + 1705.89000020037, + 5213.438150251071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1705.121720409119, + "min_y": 5213.438150251071, + "max_x": 1705.89000020037, + "max_y": 5213.438150251071, + "center": [ + 1705.5058603047446, + 5213.438150251071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1705.121720409119, + 5213.438150251071 + ], + [ + 1705.89000020037, + 5213.438150251071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5219.384397288742, + "max_x": 1713.974554935083, + "max_y": 5221.166938684731, + "center": [ + 1713.974554935083, + 5220.275667986736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5219.384397288742 + ], + [ + 1713.974554935083, + 5221.166938684731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5223.451598150877, + "max_x": 1713.974554935085, + "max_y": 5224.22028658776, + "center": [ + 1713.9745549350841, + 5223.835942369318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935085, + 5223.451598150877 + ], + [ + 1713.974554935083, + 5224.22028658776 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.974554935083, + "min_y": 5224.791697196335, + "max_x": 1713.974554935083, + "max_y": 5225.541427024563, + "center": [ + 1713.974554935083, + 5225.166562110449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5224.791697196335 + ], + [ + 1713.974554935083, + 5225.541427024563 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553AE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1713.6517672091397, + "min_y": 5221.986480691854, + "max_x": 1714.2973426610263, + "max_y": 5222.632056143741, + "center": [ + 1713.974554935083, + 5222.309268417797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5222.309268417797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5223.451598150877, + "max_x": 1714.478825421332, + "max_y": 5223.451598150877, + "center": [ + 1713.974554935085, + 5223.451598150877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5223.451598150877 + ], + [ + 1714.478825421332, + 5223.451598150877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5221.166938684731, + "max_x": 1714.478825421332, + "max_y": 5221.166938684731, + "center": [ + 1713.974554935085, + 5221.166938684731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5221.166938684731 + ], + [ + 1714.478825421332, + 5221.166938684731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553B1", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1711.0735986743086, + "min_y": 5225.541405529372, + "max_x": 1716.8861991161814, + "max_y": 5231.354005971244, + "center": [ + 1713.979898895245, + 5228.447705750308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.979898895245, + 5228.447705750308 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5553B2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1712.469419490823, + "min_y": 5221.62650895134, + "max_x": 1715.479690379343, + "max_y": 5224.6367798398605, + "center": [ + 1713.974554935083, + 5223.1316443956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.974554935083, + 5223.1316443956 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5224.791697196335, + "max_x": 1714.588233731022, + "max_y": 5224.791697196335, + "center": [ + 1713.9745549350855, + 5224.791697196335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.360876139149, + 5224.791697196335 + ], + [ + 1714.588233731022, + 5224.791697196335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.588233731022, + "min_y": 5224.22028658776, + "max_x": 1714.588233731022, + "max_y": 5224.791697196335, + "center": [ + 1714.588233731022, + 5224.505991892047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.588233731022, + 5224.791697196335 + ], + [ + 1714.588233731022, + 5224.22028658776 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5224.22028658776, + "max_x": 1714.588233731022, + "max_y": 5224.22028658776, + "center": [ + 1713.9745549350855, + 5224.22028658776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.588233731022, + 5224.22028658776 + ], + [ + 1713.360876139149, + 5224.22028658776 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.360876139149, + "min_y": 5224.22028658776, + "max_x": 1713.360876139149, + "max_y": 5224.791697196335, + "center": [ + 1713.360876139149, + 5224.505991892047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.360876139149, + 5224.22028658776 + ], + [ + 1713.360876139149, + 5224.791697196335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5221.467051239836, + "max_x": 1713.808738337804, + "max_y": 5222.032326597038, + "center": [ + 1713.6395113933208, + 5221.749688918437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.808738337804, + 5222.032326597038 + ], + [ + 1713.470284448838, + 5221.467051239836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5221.467051239836, + "max_x": 1714.478825421332, + "max_y": 5221.467051239836, + "center": [ + 1713.974554935085, + 5221.467051239836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5221.467051239836 + ], + [ + 1714.478825421332, + 5221.467051239836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.140371532361, + "min_y": 5221.467051239836, + "max_x": 1714.478825421332, + "max_y": 5222.032326597038, + "center": [ + 1714.3095984768465, + 5221.749688918437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.478825421332, + 5221.467051239836 + ], + [ + 1714.140371532361, + 5222.032326597038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5222.586210238564, + "max_x": 1713.808738337808, + "max_y": 5223.151485595758, + "center": [ + 1713.6395113933231, + 5222.868847917161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.808738337808, + 5222.586210238564 + ], + [ + 1713.470284448838, + 5223.151485595758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.470284448838, + "min_y": 5223.151485595758, + "max_x": 1714.478825421332, + "max_y": 5223.151485595758, + "center": [ + 1713.974554935085, + 5223.151485595758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.470284448838, + 5223.151485595758 + ], + [ + 1714.478825421332, + 5223.151485595758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.140371532361, + "min_y": 5222.586210238564, + "max_x": 1714.478825421332, + "max_y": 5223.151485595758, + "center": [ + 1714.3095984768465, + 5222.868847917161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.478825421332, + 5223.151485595758 + ], + [ + 1714.140371532361, + 5222.586210238564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.378633516434, + "min_y": 5228.538587646532, + "max_x": 1733.37863552538, + "max_y": 5229.546121085578, + "center": [ + 1733.378634520907, + 5229.0423543660545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.37863552538, + 5229.546121085578 + ], + [ + 1733.378633516434, + 5228.538587646532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.985035291804, + "min_y": 5228.519961428553, + "max_x": 1732.985037375029, + "max_y": 5229.564748873169, + "center": [ + 1732.9850363334165, + 5229.042355150861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.985037375029, + 5229.564748873169 + ], + [ + 1732.985035291804, + 5228.519961428553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1756.296052102263, + "min_y": 5232.409213397842, + "max_x": 1756.634167875455, + "max_y": 5232.973924044387, + "center": [ + 1756.465109988859, + 5232.691568721115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.634167875455, + 5232.973924044387 + ], + [ + 1756.296052102263, + 5232.409213397842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.626634436406, + "min_y": 5231.291172440072, + "max_x": 1755.9647502096, + "max_y": 5231.855883086627, + "center": [ + 1755.795692323003, + 5231.573527763349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.9647502096, + 5231.855883086627 + ], + [ + 1755.626634436406, + 5231.291172440072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.626634436406, + "min_y": 5232.973924044387, + "max_x": 1756.634167875455, + "max_y": 5232.973924044387, + "center": [ + 1756.1304011559305, + 5232.973924044387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.626634436406, + 5232.973924044387 + ], + [ + 1756.634167875455, + 5232.973924044387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.626634436406, + "min_y": 5231.291172440072, + "max_x": 1756.634167875455, + "max_y": 5231.291172440072, + "center": [ + 1756.1304011559305, + 5231.291172440072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.626634436406, + 5231.291172440072 + ], + [ + 1756.634167875455, + 5231.291172440072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.626634436406, + "min_y": 5232.409213397842, + "max_x": 1755.9647502096, + "max_y": 5232.973924044387, + "center": [ + 1755.795692323003, + 5232.691568721115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.626634436406, + 5232.973924044387 + ], + [ + 1755.9647502096, + 5232.409213397842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1756.29605210226, + "min_y": 5231.291172440072, + "max_x": 1756.634167875455, + "max_y": 5231.855883086627, + "center": [ + 1756.4651099888574, + 5231.573527763349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.29605210226, + 5231.855883086627 + ], + [ + 1756.634167875455, + 5231.291172440072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.608007433621, + "min_y": 5230.89767247271, + "max_x": 1756.652794878237, + "max_y": 5230.89767247271, + "center": [ + 1756.1304011559291, + 5230.89767247271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.608007433621, + 5230.89767247271 + ], + [ + 1756.652794878237, + 5230.89767247271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1755.608007433621, + "min_y": 5233.367424011752, + "max_x": 1756.652794878237, + "max_y": 5233.367424011752, + "center": [ + 1756.1304011559291, + 5233.367424011752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1755.608007433621, + 5233.367424011752 + ], + [ + 1756.652794878237, + 5233.367424011752 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1755.8079358952464, + "min_y": 5231.810082981547, + "max_x": 1756.4528664166114, + "max_y": 5232.455013502911, + "center": [ + 1756.130401155929, + 5232.132548242229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.130401155929, + 5232.132548242229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962898638355, + "min_y": 5210.238707222251, + "max_x": 1681.970432077406, + "max_y": 5210.238707222251, + "center": [ + 1681.4666653578806, + 5210.238707222251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.970432077406, + 5210.238707222251 + ], + [ + 1680.962898638355, + 5210.238707222251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.632316304211, + "min_y": 5209.673996575696, + "max_x": 1681.970432077406, + "max_y": 5210.238707222251, + "center": [ + 1681.8013741908085, + 5209.9563518989735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.632316304211, + 5209.673996575696 + ], + [ + 1681.970432077406, + 5210.238707222251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962898638355, + "min_y": 5208.555955617931, + "max_x": 1681.970432077406, + "max_y": 5208.555955617931, + "center": [ + 1681.4666653578806, + 5208.555955617931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.970432077406, + 5208.555955617931 + ], + [ + 1680.962898638355, + 5208.555955617931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1681.632316304211, + "min_y": 5208.555955617931, + "max_x": 1681.970432077406, + "max_y": 5209.120666264486, + "center": [ + 1681.8013741908085, + 5208.838310941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.632316304211, + 5209.120666264486 + ], + [ + 1681.970432077406, + 5208.555955617931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1681.1442000971986, + "min_y": 5209.07486615941, + "max_x": 1681.7891306185636, + "max_y": 5209.719796680774, + "center": [ + 1681.466665357881, + 5209.397331420092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466665357881, + 5209.397331420092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962591030188, + "min_y": 5210.5170548005, + "max_x": 1681.970124469239, + "max_y": 5210.5170548005, + "center": [ + 1681.4663577497136, + 5210.5170548005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.962591030188, + 5210.5170548005 + ], + [ + 1681.970124469239, + 5210.5170548005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962591030188, + "min_y": 5208.249444852903, + "max_x": 1681.970124469239, + "max_y": 5208.249444852903, + "center": [ + 1681.4663577497136, + 5208.249444852903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.962591030188, + 5208.249444852903 + ], + [ + 1681.970124469239, + 5208.249444852903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962898638355, + "min_y": 5209.673996575696, + "max_x": 1681.301014411552, + "max_y": 5210.238707222251, + "center": [ + 1681.1319565249535, + 5209.9563518989735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.962898638355, + 5210.238707222251 + ], + [ + 1681.301014411552, + 5209.673996575696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1680.962898638355, + "min_y": 5208.555955617931, + "max_x": 1681.301014411549, + "max_y": 5209.120666264486, + "center": [ + 1681.1319565249519, + 5208.838310941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1680.962898638355, + 5208.555955617931 + ], + [ + 1681.301014411549, + 5209.120666264486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1688.62765012324, + "min_y": 5207.010295562521, + "max_x": 1696.0188670358366, + "max_y": 5208.130176912914, + "center": [ + 1692.3232585795383, + 5207.570236237718 + ] + }, + "raw_value": "P10101ST-01", + "clean_value": "P10101ST-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5553D2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1697.222204701843, + "min_y": 5213.867889824957, + "max_x": 1700.9178131581414, + "max_y": 5214.427830500154, + "center": [ + 1699.0700089299921, + 5214.147860162556 + ] + }, + "raw_value": "P10101CV-01", + "clean_value": "P10101CV-01", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.15957862709, + "min_y": 5283.015270781453, + "max_x": 1727.72379719527, + "max_y": 5283.015692613322, + "center": [ + 1727.44168791118, + 5283.015481697388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.15957862709, + 5283.015270781453 + ], + [ + 1727.72379719527, + 5283.015692613322 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.44168791118, + "min_y": 5282.449944263277, + "max_x": 1727.442110729086, + "max_y": 5283.015481697387, + "center": [ + 1727.441899320133, + 5282.7327129803325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.44168791118, + 5283.015481697387 + ], + [ + 1727.442110729086, + 5282.449944263277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.158649246399, + "min_y": 5284.258358086899, + "max_x": 1727.72286781458, + "max_y": 5284.258779918776, + "center": [ + 1727.4407585304893, + 5284.258569002837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.72286781458, + 5284.258779918776 + ], + [ + 1727.158649246399, + 5284.258358086899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1727.2620132726308, + "min_y": 5283.436659640279, + "max_x": 1727.6231743645951, + "max_y": 5283.797820732244, + "center": [ + 1727.442593818613, + 5283.617240186261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.442593818613, + 5283.617240186261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.53323786172, + "min_y": 5283.773422743021, + "max_x": 1727.722993339517, + "max_y": 5284.090884829969, + "center": [ + 1727.6281156006185, + 5283.932153786494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.53323786172, + 5283.773422743021 + ], + [ + 1727.722993339517, + 5284.090884829969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.158774771336, + "min_y": 5284.090462998101, + "max_x": 1727.722993339517, + "max_y": 5284.090884829969, + "center": [ + 1727.4408840554265, + 5284.0906739140355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.722993339517, + 5284.090884829969 + ], + [ + 1727.158774771336, + 5284.090462998101 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.158774771336, + "min_y": 5283.772103275727, + "max_x": 1727.34971348104, + "max_y": 5284.090462998101, + "center": [ + 1727.254244126188, + 5283.931283136914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.158774771336, + 5284.090462998101 + ], + [ + 1727.34971348104, + 5283.772103275727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.534116658355, + "min_y": 5283.148544194916, + "max_x": 1727.723697870229, + "max_y": 5283.464640507038, + "center": [ + 1727.6289072642921, + 5283.306592350977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.534116658355, + 5283.464640507038 + ], + [ + 1727.723697870229, + 5283.148544194916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.159479302052, + "min_y": 5283.14812236305, + "max_x": 1727.723697870229, + "max_y": 5283.148544194916, + "center": [ + 1727.4415885861404, + 5283.148333278983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.723697870229, + 5283.148544194916 + ], + [ + 1727.159479302052, + 5283.14812236305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1727.159479302052, + "min_y": 5283.14812236305, + "max_x": 1727.34858765032, + "max_y": 5283.464501798296, + "center": [ + 1727.2540334761861, + 5283.306312080673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.159479302052, + 5283.14812236305 + ], + [ + 1727.34858765032, + 5283.464501798296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553DD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1727.440758530489, + "min_y": 5284.258569002837, + "max_x": 1727.440758530495, + "max_y": 5300.961074166359, + "center": [ + 1727.440758530492, + 5292.609821584598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.440758530489, + 5284.258569002837 + ], + [ + 1727.440758530495, + 5300.961074166359 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553DE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1727.440758530495, + "min_y": 5300.961074166359, + "max_x": 1728.807903261038, + "max_y": 5300.961074166359, + "center": [ + 1728.1243308957664, + 5300.961074166359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1727.440758530495, + 5300.961074166359 + ], + [ + 1728.807903261038, + 5300.961074166359 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553DF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.450671002283, + "min_y": 5234.795906144385, + "max_x": 1841.606006065156, + "max_y": 5234.795906144385, + "center": [ + 1840.5283385337193, + 5234.795906144385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450671002283, + 5234.795906144385 + ], + [ + 1841.606006065156, + 5234.795906144385 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553E0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1842.4978709037605, + "min_y": 5234.444633091148, + "max_x": 1843.2004170102396, + "max_y": 5235.147179197626, + "center": [ + 1842.849143957, + 5234.795906144387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.849143957, + 5234.795906144387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.606006065156, + "min_y": 5234.24713486492, + "max_x": 1841.606006065156, + "max_y": 5235.344677423849, + "center": [ + 1841.606006065156, + 5234.795906144384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.606006065156, + 5234.24713486492 + ], + [ + 1841.606006065156, + 5235.344677423849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1844.092281848848, + "min_y": 5234.24713486492, + "max_x": 1844.092281848848, + "max_y": 5235.344677423849, + "center": [ + 1844.092281848848, + 5234.795906144384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.092281848848, + 5234.24713486492 + ], + [ + 1844.092281848848, + 5235.344677423849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.932602912174, + "min_y": 5234.24713486492, + "max_x": 1842.54776261214, + "max_y": 5234.615456586602, + "center": [ + 1842.240182762157, + 5234.431295725761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1842.54776261214, + 5234.615456586602 + ], + [ + 1841.932602912174, + 5234.24713486492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.932602912174, + "min_y": 5234.24713486492, + "max_x": 1841.932602912174, + "max_y": 5235.344677423849, + "center": [ + 1841.932602912174, + 5234.795906144384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.932602912174, + 5234.24713486492 + ], + [ + 1841.932602912174, + 5235.344677423849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1841.932602912174, + "min_y": 5234.976355702169, + "max_x": 1842.54776261214, + "max_y": 5235.344677423849, + "center": [ + 1842.240182762157, + 5235.160516563009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1841.932602912174, + 5235.344677423849 + ], + [ + 1842.54776261214, + 5234.976355702169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.150525301858, + "min_y": 5234.24713486492, + "max_x": 1843.765685001829, + "max_y": 5234.615456586608, + "center": [ + 1843.4581051518435, + 5234.431295725764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.150525301858, + 5234.615456586608 + ], + [ + 1843.765685001829, + 5234.24713486492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.765685001829, + "min_y": 5234.24713486492, + "max_x": 1843.765685001829, + "max_y": 5235.344677423849, + "center": [ + 1843.765685001829, + 5234.795906144384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.765685001829, + 5234.24713486492 + ], + [ + 1843.765685001829, + 5235.344677423849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1843.150525301858, + "min_y": 5234.976355702162, + "max_x": 1843.765685001829, + "max_y": 5235.344677423849, + "center": [ + 1843.4581051518435, + 5235.160516563006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.765685001829, + 5235.344677423849 + ], + [ + 1843.150525301858, + 5234.976355702162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553E9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1844.092281848848, + "min_y": 5234.795906144385, + "max_x": 1847.273847922835, + "max_y": 5234.795906144385, + "center": [ + 1845.6830648858415, + 5234.795906144385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.092281848848, + 5234.795906144385 + ], + [ + 1847.273847922835, + 5234.795906144385 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553EA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1847.273847922835, + "min_y": 5220.575516951146, + "max_x": 1847.273847922835, + "max_y": 5234.795906144385, + "center": [ + 1847.273847922835, + 5227.685711547765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.273847922835, + 5234.795906144385 + ], + [ + 1847.273847922835, + 5220.575516951146 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553EB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1840.429886717544, + "min_y": 5215.042298971774, + "max_x": 1844.46145957896, + "max_y": 5215.602239646971, + "center": [ + 1842.445673148252, + 5215.322269309372 + ] + }, + "raw_value": "PG10116CV-01", + "clean_value": "PG10116CV-01", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.672671698154, + "min_y": 5348.257015616176, + "max_x": 1678.474528992394, + "max_y": 5348.257015616176, + "center": [ + 1677.073600345274, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.474528992394, + 5348.257015616176 + ], + [ + 1675.672671698154, + 5348.257015616176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.474528992394, + "min_y": 5347.686136415645, + "max_x": 1678.474528992394, + "max_y": 5348.824261108146, + "center": [ + 1678.474528992394, + 5348.255198761895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.474528992394, + 5348.824261108146 + ], + [ + 1678.474528992394, + 5347.686136415645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1678.801125839413, + "min_y": 5347.686136415645, + "max_x": 1678.801125839413, + "max_y": 5348.824261108146, + "center": [ + 1678.801125839413, + 5348.255198761895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.801125839413, + 5348.824261108146 + ], + [ + 1678.801125839413, + 5347.686136415645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.672671698154, + "min_y": 5348.257015616176, + "max_x": 1678.474528992394, + "max_y": 5348.257015616176, + "center": [ + 1677.073600345274, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.474528992394, + 5348.257015616176 + ], + [ + 1675.672671698154, + 5348.257015616176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.346074851136, + "min_y": 5347.7020871087, + "max_x": 1675.346074851136, + "max_y": 5348.811944123651, + "center": [ + 1675.346074851136, + 5348.2570156161755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.346074851136, + 5348.811944123651 + ], + [ + 1675.346074851136, + 5347.7020871087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1676.809743469965, + "min_y": 5347.147158601225, + "max_x": 1677.919600484918, + "max_y": 5348.257015616176, + "center": [ + 1677.3646719774415, + 5347.702087108701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1676.809743469965, + 5348.257015616176 + ], + [ + 1677.919600484918, + 5347.147158601225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.642136231176, + "min_y": 5346.869694347482, + "max_x": 1678.197064738657, + "max_y": 5347.424622854966, + "center": [ + 1677.9196004849164, + 5347.147158601225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.197064738657, + 5347.424622854966 + ], + [ + 1677.642136231176, + 5346.869694347482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.672671698154, + "min_y": 5347.686136415645, + "max_x": 1675.672671698154, + "max_y": 5348.824261108146, + "center": [ + 1675.672671698154, + 5348.255198761895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.672671698154, + 5348.824261108146 + ], + [ + 1675.672671698154, + 5347.686136415645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.776786716578, + "min_y": 5220.012175001541, + "max_x": 1877.877885958226, + "max_y": 5220.27464992459, + "center": [ + 1877.327336337402, + 5220.143412463066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.776786716578, + 5220.27464992459 + ], + [ + 1877.877885958226, + 5220.012175001541 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.776789116299, + "min_y": 5220.876408413122, + "max_x": 1877.87789045132, + "max_y": 5221.138871746029, + "center": [ + 1877.3273397838093, + 5221.007640079575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.776789116299, + 5220.876408413122 + ], + [ + 1877.87789045132, + 5221.138871746029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.776786716578, + "min_y": 5220.27464992459, + "max_x": 1876.776789116299, + "max_y": 5220.876408413122, + "center": [ + 1876.7767879164385, + 5220.5755291688565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.776789116299, + 5220.876408413122 + ], + [ + 1876.776786716578, + 5220.27464992459 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1877.877885958226, + "min_y": 5220.012175001541, + "max_x": 1877.87789045132, + "max_y": 5221.138871746029, + "center": [ + 1877.877888204773, + 5220.5755233737855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.87789045132, + 5221.138871746029 + ], + [ + 1877.877885958226, + 5220.012175001541 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5553F8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1877.858176343004, + "min_y": 5217.174482963809, + "max_x": 1882.5616780146563, + "max_y": 5218.2943643142025, + "center": [ + 1880.2099271788302, + 5217.734423639005 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5553F9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1821.051500671646, + "min_y": 5271.177025302755, + "max_x": 1828.4427175842425, + "max_y": 5272.296906653149, + "center": [ + 1824.7471091279442, + 5271.736965977952 + ] + }, + "raw_value": "C10111BA-03", + "clean_value": "C10111BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5553FA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1815.839859703013, + "min_y": 5261.950863674275, + "max_x": 1823.2310766156095, + "max_y": 5263.070745024668, + "center": [ + 1819.5354681593112, + 5262.510804349471 + ] + }, + "raw_value": "C10111BA-02", + "clean_value": "C10111BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5553FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.706300938969, + "min_y": 5276.679149499321, + "max_x": 1836.706300938969, + "max_y": 5277.659583830835, + "center": [ + 1836.706300938969, + 5277.169366665078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5276.679149499321 + ], + [ + 1836.706300938969, + 5277.659583830835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.706300938969, + "min_y": 5280.14585961453, + "max_x": 1836.706300938969, + "max_y": 5281.940569760951, + "center": [ + 1836.706300938969, + 5281.043214687741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5280.14585961453 + ], + [ + 1836.706300938969, + 5281.940569760951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.706300938969, + "min_y": 5282.829795776021, + "max_x": 1836.706300938969, + "max_y": 5283.336416615721, + "center": [ + 1836.706300938969, + 5283.083106195871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5282.829795776021 + ], + [ + 1836.706300938969, + 5283.336416615721 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5553FE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1836.3550278857294, + "min_y": 5278.551448669444, + "max_x": 1837.0575739922085, + "max_y": 5279.253994775922, + "center": [ + 1836.706300938969, + 5278.902721722683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5278.902721722683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5553FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5280.14585961453, + "max_x": 1837.255072218435, + "max_y": 5280.14585961453, + "center": [ + 1836.7063009389672, + 5280.14585961453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.157529659499, + 5280.14585961453 + ], + [ + 1837.255072218435, + 5280.14585961453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555400", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5277.659583830835, + "max_x": 1837.255072218435, + "max_y": 5277.659583830835, + "center": [ + 1836.7063009389672, + 5277.659583830835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.157529659499, + 5277.659583830835 + ], + [ + 1837.255072218435, + 5277.659583830835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555401", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1834.3640175211472, + "min_y": 5277.904147410748, + "max_x": 1839.0485843567908, + "max_y": 5282.588714246392, + "center": [ + 1836.706300938969, + 5280.24643082857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5280.24643082857 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555402", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.706300938969, + "min_y": 5281.065485361766, + "max_x": 1838.088049609485, + "max_y": 5281.065485361772, + "center": [ + 1837.397175274227, + 5281.065485361769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.706300938969, + 5281.065485361772 + ], + [ + 1838.088049609485, + 5281.065485361766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555403", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1834.292091887621, + "min_y": 5276.679149499321, + "max_x": 1836.706300938969, + "max_y": 5276.679149499321, + "center": [ + 1835.499196413295, + 5276.679149499321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.292091887621, + 5276.679149499321 + ], + [ + 1836.706300938969, + 5276.679149499321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555404", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.75129740552, + "min_y": 5282.829795776021, + "max_x": 1837.661304472417, + "max_y": 5282.829795776021, + "center": [ + 1836.7063009389685, + 5282.829795776021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.75129740552, + 5282.829795776021 + ], + [ + 1837.661304472417, + 5282.829795776021 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555405", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.661304472417, + "min_y": 5281.940569760951, + "max_x": 1837.661304472417, + "max_y": 5282.829795776021, + "center": [ + 1837.661304472417, + 5282.385182768486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.661304472417, + 5282.829795776021 + ], + [ + 1837.661304472417, + 5281.940569760951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555406", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.75129740552, + "min_y": 5281.940569760951, + "max_x": 1837.661304472417, + "max_y": 5281.940569760951, + "center": [ + 1836.7063009389685, + 5281.940569760951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.661304472417, + 5281.940569760951 + ], + [ + 1835.75129740552, + 5281.940569760951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555407", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.75129740552, + "min_y": 5281.940569760951, + "max_x": 1835.75129740552, + "max_y": 5282.829795776021, + "center": [ + 1835.75129740552, + 5282.385182768486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.75129740552, + 5281.940569760951 + ], + [ + 1835.75129740552, + 5282.829795776021 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555408", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5277.98618067786, + "max_x": 1836.525851381188, + "max_y": 5278.601340377822, + "center": [ + 1836.3416905203435, + 5278.293760527841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.525851381188, + 5278.601340377822 + ], + [ + 1836.157529659499, + 5277.98618067786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555409", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5277.98618067786, + "max_x": 1837.255072218435, + "max_y": 5277.98618067786, + "center": [ + 1836.7063009389672, + 5277.98618067786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.157529659499, + 5277.98618067786 + ], + [ + 1837.255072218435, + 5277.98618067786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.88675049675, + "min_y": 5277.98618067786, + "max_x": 1837.255072218435, + "max_y": 5278.601340377822, + "center": [ + 1837.0709113575926, + 5278.293760527841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.255072218435, + 5277.98618067786 + ], + [ + 1836.88675049675, + 5278.601340377822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5279.204103067543, + "max_x": 1836.525851381188, + "max_y": 5279.819262767507, + "center": [ + 1836.3416905203435, + 5279.511682917525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.525851381188, + 5279.204103067543 + ], + [ + 1836.157529659499, + 5279.819262767507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.157529659499, + "min_y": 5279.819262767507, + "max_x": 1837.255072218435, + "max_y": 5279.819262767507, + "center": [ + 1836.7063009389672, + 5279.819262767507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.157529659499, + 5279.819262767507 + ], + [ + 1837.255072218435, + 5279.819262767507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.886750496747, + "min_y": 5279.204103067543, + "max_x": 1837.255072218435, + "max_y": 5279.819262767507, + "center": [ + 1837.070911357591, + 5279.511682917525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.255072218435, + 5279.819262767507 + ], + [ + 1836.886750496747, + 5279.204103067543 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.088049609485, + "min_y": 5280.418684278924, + "max_x": 1838.088049609485, + "max_y": 5281.712286444605, + "center": [ + 1838.088049609485, + 5281.065485361764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.088049609485, + 5281.712286444605 + ], + [ + 1838.088049609485, + 5280.418684278924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55540F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.913971724563, + "min_y": 5280.441747277304, + "max_x": 1840.913971724563, + "max_y": 5281.689223446227, + "center": [ + 1840.913971724563, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.913971724563, + 5280.441747277304 + ], + [ + 1840.913971724563, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555410", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.088049609485, + "min_y": 5280.441747277304, + "max_x": 1838.088049609485, + "max_y": 5281.689223446227, + "center": [ + 1838.088049609485, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.088049609485, + 5280.441747277304 + ], + [ + 1838.088049609485, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555411", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1839.1051997261357, + "min_y": 5280.6682904860645, + "max_x": 1839.9037195814885, + "max_y": 5281.466810341417, + "center": [ + 1839.504459653812, + 5281.067550413741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.504459653812, + 5281.067550413741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555412", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.459262352158, + "min_y": 5280.434748919798, + "max_x": 1838.459262352158, + "max_y": 5281.696221803735, + "center": [ + 1838.459262352158, + 5281.065485361767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.459262352158, + 5281.696221803735 + ], + [ + 1838.459262352158, + 5280.434748919798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555413", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.088049609485, + "min_y": 5280.434748919798, + "max_x": 1838.088049609485, + "max_y": 5281.696221803735, + "center": [ + 1838.088049609485, + 5281.065485361767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.088049609485, + 5281.696221803735 + ], + [ + 1838.088049609485, + 5280.434748919798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555414", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.913971724563, + "min_y": 5280.436813971761, + "max_x": 1840.913971724563, + "max_y": 5281.698286855704, + "center": [ + 1840.913971724563, + 5281.0675504137325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.913971724563, + 5281.698286855704 + ], + [ + 1840.913971724563, + 5280.436813971761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555415", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.913971724563, + "min_y": 5280.436813971761, + "max_x": 1840.913971724563, + "max_y": 5281.698286855704, + "center": [ + 1840.913971724563, + 5281.0675504137325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.913971724563, + 5281.698286855704 + ], + [ + 1840.913971724563, + 5280.436813971761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555416", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.843563256364, + "min_y": 5281.270585857591, + "max_x": 1840.542758981885, + "max_y": 5281.689223446227, + "center": [ + 1840.1931611191244, + 5281.479904651909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.843563256364, + 5281.270585857591 + ], + [ + 1840.542758981885, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555417", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.542758981885, + "min_y": 5280.441747277304, + "max_x": 1840.542758981885, + "max_y": 5281.689223446227, + "center": [ + 1840.542758981885, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.542758981885, + 5281.689223446227 + ], + [ + 1840.542758981885, + 5280.441747277304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555418", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.843563256364, + "min_y": 5280.441747277304, + "max_x": 1840.542758981885, + "max_y": 5280.860384865943, + "center": [ + 1840.1931611191244, + 5280.651066071623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.542758981885, + 5280.441747277304 + ], + [ + 1839.843563256364, + 5280.860384865943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555419", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.459262352158, + "min_y": 5281.269602618428, + "max_x": 1839.160100253724, + "max_y": 5281.689223446227, + "center": [ + 1838.809681302941, + 5281.479413032327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.160100253724, + 5281.269602618428 + ], + [ + 1838.459262352158, + 5281.689223446227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55541A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.459262352158, + "min_y": 5280.441747277304, + "max_x": 1838.459262352158, + "max_y": 5281.689223446227, + "center": [ + 1838.459262352158, + 5281.065485361765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.459262352158, + 5281.689223446227 + ], + [ + 1838.459262352158, + 5280.441747277304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55541B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.459262352158, + "min_y": 5280.441747277304, + "max_x": 1839.161907064475, + "max_y": 5280.862449917919, + "center": [ + 1838.8105847083166, + 5280.652098597611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.459262352158, + 5280.441747277304 + ], + [ + 1839.161907064475, + 5280.862449917919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55541C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1837.35113371985, + "min_y": 5278.278344764879, + "max_x": 1844.7423506324465, + "max_y": 5279.398226115272, + "center": [ + 1841.0467421761482, + 5278.838285440075 + ] + }, + "raw_value": "C10111BA-07", + "clean_value": "C10111BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55541D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1838.271550825862, + "min_y": 5282.0443445914, + "max_x": 1845.6627677384586, + "max_y": 5283.164225941793, + "center": [ + 1841.9671592821603, + 5282.604285266596 + ] + }, + "raw_value": "C10111BA-08", + "clean_value": "C10111BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55541E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5378.720126280833, + "max_x": 1828.900148687521, + "max_y": 5379.700560612349, + "center": [ + 1828.900148687521, + 5379.210343446592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5378.720126280833 + ], + [ + 1828.900148687521, + 5379.700560612349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55541F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5382.186836396043, + "max_x": 1828.900148687521, + "max_y": 5383.981546542464, + "center": [ + 1828.900148687521, + 5383.084191469254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5382.186836396043 + ], + [ + 1828.900148687521, + 5383.981546542464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555420", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5384.870772557534, + "max_x": 1828.900148687521, + "max_y": 5385.377393397234, + "center": [ + 1828.900148687521, + 5385.124082977384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5384.870772557534 + ], + [ + 1828.900148687521, + 5385.377393397234 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555421", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1828.5488756342816, + "min_y": 5380.592425450956, + "max_x": 1829.2514217407606, + "max_y": 5381.294971557435, + "center": [ + 1828.900148687521, + 5380.943698504196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5380.943698504196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555422", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5382.186836396043, + "max_x": 1829.448919966987, + "max_y": 5382.186836396043, + "center": [ + 1828.9001486875195, + 5382.186836396043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5382.186836396043 + ], + [ + 1829.448919966987, + 5382.186836396043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555423", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5379.700560612349, + "max_x": 1829.448919966987, + "max_y": 5379.700560612349, + "center": [ + 1828.9001486875195, + 5379.700560612349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5379.700560612349 + ], + [ + 1829.448919966987, + 5379.700560612349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555424", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.835924255644, + "min_y": 5388.661145656484, + "max_x": 1829.4034093803812, + "max_y": 5389.967383260432, + "center": [ + 1828.6196668180125, + 5389.314264458459 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555425", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1826.043061978568, + "min_y": 5385.377393397239, + "max_x": 1831.7572353964742, + "max_y": 5391.091566815145, + "center": [ + 1828.900148687521, + 5388.234480106192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5388.234480106192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555426", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1826.5578652696993, + "min_y": 5379.94512419226, + "max_x": 1831.242432105343, + "max_y": 5384.629691027903, + "center": [ + 1828.900148687521, + 5382.287407610082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5382.287407610082 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555427", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.900148687521, + "min_y": 5383.106462143278, + "max_x": 1830.281897358037, + "max_y": 5383.106462143285, + "center": [ + 1829.5910230227792, + 5383.1064621432815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.900148687521, + 5383.106462143285 + ], + [ + 1830.281897358037, + 5383.106462143278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555428", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1825.24024063888, + "min_y": 5378.720126280833, + "max_x": 1826.057285911761, + "max_y": 5378.720126280833, + "center": [ + 1825.6487632753206, + 5378.720126280833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1825.24024063888, + 5378.720126280833 + ], + [ + 1826.057285911761, + 5378.720126280833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555429", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5378.720126280833, + "max_x": 1828.900148687521, + "max_y": 5378.720126280833, + "center": [ + 1827.693044161847, + 5378.720126280833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636173, + 5378.720126280833 + ], + [ + 1828.900148687521, + 5378.720126280833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55542A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5384.870772557534, + "max_x": 1829.855152220969, + "max_y": 5384.870772557534, + "center": [ + 1828.9001486875204, + 5384.870772557534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.945145154072, + 5384.870772557534 + ], + [ + 1829.855152220969, + 5384.870772557534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55542B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.855152220969, + "min_y": 5383.981546542464, + "max_x": 1829.855152220969, + "max_y": 5384.870772557534, + "center": [ + 1829.855152220969, + 5384.426159549999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.855152220969, + 5384.870772557534 + ], + [ + 1829.855152220969, + 5383.981546542464 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55542C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5383.981546542464, + "max_x": 1829.855152220969, + "max_y": 5383.981546542464, + "center": [ + 1828.9001486875204, + 5383.981546542464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.855152220969, + 5383.981546542464 + ], + [ + 1827.945145154072, + 5383.981546542464 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55542D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1827.945145154072, + "min_y": 5383.981546542464, + "max_x": 1827.945145154072, + "max_y": 5384.870772557534, + "center": [ + 1827.945145154072, + 5384.426159549999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.945145154072, + 5383.981546542464 + ], + [ + 1827.945145154072, + 5384.870772557534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55542E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5380.027157459373, + "max_x": 1828.71969912974, + "max_y": 5380.642317159335, + "center": [ + 1828.535538268896, + 5380.334737309354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.71969912974, + 5380.642317159335 + ], + [ + 1828.351377408052, + 5380.027157459373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55542F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5380.027157459373, + "max_x": 1829.448919966987, + "max_y": 5380.027157459373, + "center": [ + 1828.9001486875195, + 5380.027157459373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5380.027157459373 + ], + [ + 1829.448919966987, + 5380.027157459373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555430", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.080598245302, + "min_y": 5380.027157459373, + "max_x": 1829.448919966987, + "max_y": 5380.642317159335, + "center": [ + 1829.2647591061445, + 5380.334737309354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.448919966987, + 5380.027157459373 + ], + [ + 1829.080598245302, + 5380.642317159335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555431", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5381.245079849056, + "max_x": 1828.71969912974, + "max_y": 5381.860239549019, + "center": [ + 1828.535538268896, + 5381.552659699038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.71969912974, + 5381.245079849056 + ], + [ + 1828.351377408052, + 5381.860239549019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555432", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1828.351377408052, + "min_y": 5381.860239549019, + "max_x": 1829.448919966987, + "max_y": 5381.860239549019, + "center": [ + 1828.9001486875195, + 5381.860239549019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1828.351377408052, + 5381.860239549019 + ], + [ + 1829.448919966987, + 5381.860239549019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555433", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1829.080598245299, + "min_y": 5381.245079849056, + "max_x": 1829.448919966987, + "max_y": 5381.860239549019, + "center": [ + 1829.264759106143, + 5381.552659699038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.448919966987, + 5381.860239549019 + ], + [ + 1829.080598245299, + 5381.245079849056 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555434", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1826.23819973038, + "min_y": 5386.309935155079, + "max_x": 1830.9406551045915, + "max_y": 5387.616172759027, + "center": [ + 1828.5894274174857, + 5386.9630539570535 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555435", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.485939636173, + "min_y": 5378.171355001367, + "max_x": 1826.485939636173, + "max_y": 5379.268897560298, + "center": [ + 1826.485939636173, + 5378.720126280832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.485939636173, + 5379.268897560298 + ], + [ + 1826.485939636173, + 5378.171355001367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555436", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1826.057285911761, + "min_y": 5378.151063934585, + "max_x": 1826.057285911761, + "max_y": 5379.289188627087, + "center": [ + 1826.057285911761, + 5378.720126280836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1826.057285911761, + 5379.289188627087 + ], + [ + 1826.057285911761, + 5378.151063934585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555437", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5382.459661060436, + "max_x": 1830.281897358037, + "max_y": 5383.753263226118, + "center": [ + 1830.281897358037, + 5383.106462143277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5383.753263226118 + ], + [ + 1830.281897358037, + 5382.459661060436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555438", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5382.482724058818, + "max_x": 1830.281897358037, + "max_y": 5383.73020022774, + "center": [ + 1830.281897358037, + 5383.10646214328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5382.482724058818 + ], + [ + 1830.281897358037, + 5383.73020022774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555439", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1831.2990474746885, + "min_y": 5382.709267267577, + "max_x": 1832.0975673300413, + "max_y": 5383.50778712293, + "center": [ + 1831.698307402365, + 5383.108527195253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.698307402365, + 5383.108527195253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5382.475725701311, + "max_x": 1830.65311010071, + "max_y": 5383.737198585247, + "center": [ + 1830.65311010071, + 5383.106462143279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5383.737198585247 + ], + [ + 1830.65311010071, + 5382.475725701311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.281897358037, + "min_y": 5382.475725701311, + "max_x": 1830.281897358037, + "max_y": 5383.737198585247, + "center": [ + 1830.281897358037, + 5383.106462143279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.281897358037, + 5383.737198585247 + ], + [ + 1830.281897358037, + 5382.475725701311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5383.310579399942, + "max_x": 1831.353948002276, + "max_y": 5383.73020022774, + "center": [ + 1831.003529051493, + 5383.520389813841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.353948002276, + 5383.310579399942 + ], + [ + 1830.65311010071, + 5383.73020022774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5382.482724058818, + "max_x": 1830.65311010071, + "max_y": 5383.73020022774, + "center": [ + 1830.65311010071, + 5383.10646214328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5383.73020022774 + ], + [ + 1830.65311010071, + 5382.482724058818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.65311010071, + "min_y": 5382.482724058818, + "max_x": 1831.355754813028, + "max_y": 5382.903426699432, + "center": [ + 1831.004432456869, + 5382.693075379126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.65311010071, + 5382.482724058818 + ], + [ + 1831.355754813028, + 5382.903426699432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55543F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1829.544981468402, + "min_y": 5380.319321546392, + "max_x": 1833.2405899247003, + "max_y": 5380.879262221589, + "center": [ + 1831.392785696551, + 5380.59929188399 + ] + }, + "raw_value": "C10111BA-12", + "clean_value": "C10111BA-12", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555440", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1830.465398574414, + "min_y": 5384.085321372913, + "max_x": 1834.1610070307122, + "max_y": 5384.64526204811, + "center": [ + 1832.313202802563, + 5384.365291710512 + ] + }, + "raw_value": "C10111BA-13", + "clean_value": "C10111BA-13", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555441", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5382.482724058818, + "max_x": 1833.107819473115, + "max_y": 5383.73020022774, + "center": [ + 1833.107819473115, + 5383.10646214328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5382.482724058818 + ], + [ + 1833.107819473115, + 5383.73020022774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555442", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5382.477790753274, + "max_x": 1833.107819473115, + "max_y": 5383.739263637216, + "center": [ + 1833.107819473115, + 5383.108527195245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5383.739263637216 + ], + [ + 1833.107819473115, + 5382.477790753274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555443", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.107819473115, + "min_y": 5382.477790753274, + "max_x": 1833.107819473115, + "max_y": 5383.739263637216, + "center": [ + 1833.107819473115, + 5383.108527195245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.107819473115, + 5383.739263637216 + ], + [ + 1833.107819473115, + 5382.477790753274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555444", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5383.311562639104, + "max_x": 1832.736606730438, + "max_y": 5383.73020022774, + "center": [ + 1832.3870088676772, + 5383.520881433422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.037411004916, + 5383.311562639104 + ], + [ + 1832.736606730438, + 5383.73020022774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555445", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.736606730438, + "min_y": 5382.482724058818, + "max_x": 1832.736606730438, + "max_y": 5383.73020022774, + "center": [ + 1832.736606730438, + 5383.10646214328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.736606730438, + 5383.73020022774 + ], + [ + 1832.736606730438, + 5382.482724058818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555446", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1832.037411004916, + "min_y": 5382.482724058818, + "max_x": 1832.736606730438, + "max_y": 5382.901361647456, + "center": [ + 1832.3870088676772, + 5382.6920428531375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1832.736606730438, + 5382.482724058818 + ], + [ + 1832.037411004916, + 5382.901361647456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555447", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5378.716286350858, + "max_x": 1836.2779962639, + "max_y": 5379.696720682373, + "center": [ + 1836.2779962639, + 5379.206503516616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5378.716286350858 + ], + [ + 1836.2779962639, + 5379.696720682373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555448", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5382.182996466067, + "max_x": 1836.2779962639, + "max_y": 5383.977706612489, + "center": [ + 1836.2779962639, + 5383.080351539278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5382.182996466067 + ], + [ + 1836.2779962639, + 5383.977706612489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555449", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5384.866932627558, + "max_x": 1836.2779962639, + "max_y": 5385.373553467259, + "center": [ + 1836.2779962639, + 5385.120243047408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5384.866932627558 + ], + [ + 1836.2779962639, + 5385.373553467259 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55544A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1835.9267232106604, + "min_y": 5380.58858552098, + "max_x": 1836.6292693171395, + "max_y": 5381.2911316274585, + "center": [ + 1836.2779962639, + 5380.939858574219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5380.939858574219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55544B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5382.182996466067, + "max_x": 1836.826767543367, + "max_y": 5382.182996466067, + "center": [ + 1836.277996263899, + 5382.182996466067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.729224984431, + 5382.182996466067 + ], + [ + 1836.826767543367, + 5382.182996466067 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55544C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5379.696720682373, + "max_x": 1836.826767543367, + "max_y": 5379.696720682373, + "center": [ + 1836.277996263899, + 5379.696720682373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.729224984431, + 5379.696720682373 + ], + [ + 1836.826767543367, + 5379.696720682373 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55544D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1833.935712846078, + "min_y": 5379.941284262285, + "max_x": 1838.6202796817217, + "max_y": 5384.625851097929, + "center": [ + 1836.2779962639, + 5382.283567680107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5382.283567680107 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55544E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5383.102622213304, + "max_x": 1837.659744934417, + "max_y": 5383.102622213309, + "center": [ + 1836.9688705991584, + 5383.102622213306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5383.102622213309 + ], + [ + 1837.659744934417, + 5383.102622213304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55544F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1833.863787212553, + "min_y": 5378.716286350858, + "max_x": 1836.2779962639, + "max_y": 5378.716286350858, + "center": [ + 1835.0708917382265, + 5378.716286350858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.863787212553, + 5378.716286350858 + ], + [ + 1836.2779962639, + 5378.716286350858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555450", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.322992730452, + "min_y": 5384.866932627558, + "max_x": 1837.232999797349, + "max_y": 5384.866932627558, + "center": [ + 1836.2779962639006, + 5384.866932627558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.322992730452, + 5384.866932627558 + ], + [ + 1837.232999797349, + 5384.866932627558 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555451", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.232999797349, + "min_y": 5383.977706612489, + "max_x": 1837.232999797349, + "max_y": 5384.866932627558, + "center": [ + 1837.232999797349, + 5384.422319620024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.232999797349, + 5384.866932627558 + ], + [ + 1837.232999797349, + 5383.977706612489 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555452", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.322992730452, + "min_y": 5383.977706612489, + "max_x": 1837.232999797349, + "max_y": 5383.977706612489, + "center": [ + 1836.2779962639006, + 5383.977706612489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.232999797349, + 5383.977706612489 + ], + [ + 1835.322992730452, + 5383.977706612489 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555453", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.322992730452, + "min_y": 5383.977706612489, + "max_x": 1835.322992730452, + "max_y": 5384.866932627558, + "center": [ + 1835.322992730452, + 5384.422319620024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.322992730452, + 5383.977706612489 + ], + [ + 1835.322992730452, + 5384.866932627558 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555454", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5380.023317529396, + "max_x": 1836.097546706119, + "max_y": 5380.63847722936, + "center": [ + 1835.9133858452751, + 5380.330897379378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.097546706119, + 5380.63847722936 + ], + [ + 1835.729224984431, + 5380.023317529396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555455", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5380.023317529396, + "max_x": 1836.826767543367, + "max_y": 5380.023317529396, + "center": [ + 1836.277996263899, + 5380.023317529396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.729224984431, + 5380.023317529396 + ], + [ + 1836.826767543367, + 5380.023317529396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555456", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.458445821681, + "min_y": 5380.023317529396, + "max_x": 1836.826767543367, + "max_y": 5380.63847722936, + "center": [ + 1836.6426066825238, + 5380.330897379378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.826767543367, + 5380.023317529396 + ], + [ + 1836.458445821681, + 5380.63847722936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555457", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5381.241239919081, + "max_x": 1836.097546706119, + "max_y": 5381.856399619043, + "center": [ + 1835.9133858452751, + 5381.548819769062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.097546706119, + 5381.241239919081 + ], + [ + 1835.729224984431, + 5381.856399619043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555458", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.729224984431, + "min_y": 5381.856399619043, + "max_x": 1836.826767543367, + "max_y": 5381.856399619043, + "center": [ + 1836.277996263899, + 5381.856399619043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.729224984431, + 5381.856399619043 + ], + [ + 1836.826767543367, + 5381.856399619043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555459", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.458445821678, + "min_y": 5381.241239919081, + "max_x": 1836.826767543367, + "max_y": 5381.856399619043, + "center": [ + 1836.6426066825225, + 5381.548819769062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.826767543367, + 5381.856399619043 + ], + [ + 1836.458445821678, + 5381.241239919081 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.659744934417, + "min_y": 5382.45582113046, + "max_x": 1837.659744934417, + "max_y": 5383.749423296142, + "center": [ + 1837.659744934417, + 5383.1026222133005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.659744934417, + 5383.749423296142 + ], + [ + 1837.659744934417, + 5382.45582113046 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.659744934417, + "min_y": 5382.478884128842, + "max_x": 1837.659744934417, + "max_y": 5383.726360297765, + "center": [ + 1837.659744934417, + 5383.102622213303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.659744934417, + 5382.478884128842 + ], + [ + 1837.659744934417, + 5383.726360297765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1838.6768950510675, + "min_y": 5382.705427337601, + "max_x": 1839.4754149064204, + "max_y": 5383.503947192953, + "center": [ + 1839.076154978744, + 5383.104687265277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.076154978744, + 5383.104687265277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.030957677089, + "min_y": 5382.471885771335, + "max_x": 1838.030957677089, + "max_y": 5383.733358655272, + "center": [ + 1838.030957677089, + 5383.102622213304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.030957677089, + 5383.733358655272 + ], + [ + 1838.030957677089, + 5382.471885771335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1837.659744934417, + "min_y": 5382.471885771335, + "max_x": 1837.659744934417, + "max_y": 5383.733358655272, + "center": [ + 1837.659744934417, + 5383.102622213304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1837.659744934417, + 5383.733358655272 + ], + [ + 1837.659744934417, + 5382.471885771335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55545F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.030957677089, + "min_y": 5383.306739469965, + "max_x": 1838.731795578656, + "max_y": 5383.726360297765, + "center": [ + 1838.3813766278724, + 5383.516549883865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.731795578656, + 5383.306739469965 + ], + [ + 1838.030957677089, + 5383.726360297765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555460", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.030957677089, + "min_y": 5382.478884128842, + "max_x": 1838.030957677089, + "max_y": 5383.726360297765, + "center": [ + 1838.030957677089, + 5383.102622213303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.030957677089, + 5383.726360297765 + ], + [ + 1838.030957677089, + 5382.478884128842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555461", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1838.030957677089, + "min_y": 5382.478884128842, + "max_x": 1838.733602389407, + "max_y": 5382.899586769457, + "center": [ + 1838.382280033248, + 5382.689235449149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.030957677089, + 5382.478884128842 + ], + [ + 1838.733602389407, + 5382.899586769457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555462", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1836.92282904478, + "min_y": 5380.315481616416, + "max_x": 1840.6184375010782, + "max_y": 5380.875422291613, + "center": [ + 1838.770633272929, + 5380.595451954015 + ] + }, + "raw_value": "C10111BA-14", + "clean_value": "C10111BA-14", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555463", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1837.843246150794, + "min_y": 5384.081481442937, + "max_x": 1841.5388546070922, + "max_y": 5384.641422118134, + "center": [ + 1839.6910503789431, + 5384.361451780535 + ] + }, + "raw_value": "C10111BA-15", + "clean_value": "C10111BA-15", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555464", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.485667049495, + "min_y": 5382.478884128842, + "max_x": 1840.485667049495, + "max_y": 5383.726360297765, + "center": [ + 1840.485667049495, + 5383.102622213303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.485667049495, + 5382.478884128842 + ], + [ + 1840.485667049495, + 5383.726360297765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555465", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.485667049495, + "min_y": 5382.473950823298, + "max_x": 1840.485667049495, + "max_y": 5383.73542370724, + "center": [ + 1840.485667049495, + 5383.10468726527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.485667049495, + 5383.73542370724 + ], + [ + 1840.485667049495, + 5382.473950823298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555466", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.485667049495, + "min_y": 5382.473950823298, + "max_x": 1840.485667049495, + "max_y": 5383.73542370724, + "center": [ + 1840.485667049495, + 5383.10468726527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.485667049495, + 5383.73542370724 + ], + [ + 1840.485667049495, + 5382.473950823298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555467", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.415258581295, + "min_y": 5383.307722709127, + "max_x": 1840.114454306817, + "max_y": 5383.726360297765, + "center": [ + 1839.764856444056, + 5383.517041503446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.415258581295, + 5383.307722709127 + ], + [ + 1840.114454306817, + 5383.726360297765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555468", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.114454306817, + "min_y": 5382.478884128842, + "max_x": 1840.114454306817, + "max_y": 5383.726360297765, + "center": [ + 1840.114454306817, + 5383.102622213303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.114454306817, + 5383.726360297765 + ], + [ + 1840.114454306817, + 5382.478884128842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555469", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.415258581295, + "min_y": 5382.478884128842, + "max_x": 1840.114454306817, + "max_y": 5382.89752171748, + "center": [ + 1839.764856444056, + 5382.688202923161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.114454306817, + 5382.478884128842 + ], + [ + 1839.415258581295, + 5382.89752171748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.197443912977, + "min_y": 5257.78552594275, + "max_x": 1868.812603612946, + "max_y": 5258.153847664435, + "center": [ + 1868.5050237629616, + 5257.969686803592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.812603612946, + 5258.153847664435 + ], + [ + 1868.197443912977, + 5257.78552594275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.979521523294, + "min_y": 5257.0563051055, + "max_x": 1867.594681223259, + "max_y": 5257.424626827189, + "center": [ + 1867.2871013732765, + 5257.240465966344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.594681223259, + 5257.424626827189 + ], + [ + 1866.979521523294, + 5257.0563051055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.812603612946, + "min_y": 5257.0563051055, + "max_x": 1868.812603612946, + "max_y": 5258.153847664435, + "center": [ + 1868.812603612946, + 5257.605076384967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.812603612946, + 5257.0563051055 + ], + [ + 1868.812603612946, + 5258.153847664435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.979521523294, + "min_y": 5257.0563051055, + "max_x": 1866.979521523294, + "max_y": 5258.153847664435, + "center": [ + 1866.979521523294, + 5257.605076384967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.979521523294, + 5257.0563051055 + ], + [ + 1866.979521523294, + 5258.153847664435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1868.197443912977, + "min_y": 5257.0563051055, + "max_x": 1868.812603612946, + "max_y": 5257.424626827189, + "center": [ + 1868.5050237629616, + 5257.240465966344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.812603612946, + 5257.0563051055 + ], + [ + 1868.197443912977, + 5257.424626827189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55546F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.979521523294, + "min_y": 5257.785525942748, + "max_x": 1867.594681223259, + "max_y": 5258.153847664435, + "center": [ + 1867.2871013732765, + 5257.969686803592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.594681223259, + 5257.785525942748 + ], + [ + 1866.979521523294, + 5258.153847664435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555470", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1866.550867798881, + "min_y": 5257.036014038722, + "max_x": 1866.550867798881, + "max_y": 5258.174138731224, + "center": [ + 1866.550867798881, + 5257.605076384973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1866.550867798881, + 5257.036014038722 + ], + [ + 1866.550867798881, + 5258.174138731224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555471", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1869.241257337358, + "min_y": 5257.036014038722, + "max_x": 1869.241257337358, + "max_y": 5258.174138731224, + "center": [ + 1869.241257337358, + 5257.605076384973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.241257337358, + 5257.036014038722 + ], + [ + 1869.241257337358, + 5258.174138731224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555472", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1867.5447895148795, + "min_y": 5257.253803331728, + "max_x": 1868.2473356213586, + "max_y": 5257.956349438206, + "center": [ + 1867.896062568119, + 5257.605076384967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1867.896062568119, + 5257.605076384967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555473", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1858.9955035787, + "min_y": 5332.023147836188, + "max_x": 1866.3867204912965, + "max_y": 5333.143029186582, + "center": [ + 1862.6911120349982, + 5332.583088511385 + ] + }, + "raw_value": "E10117BA-07", + "clean_value": "E10117BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555474", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1867.206385182458, + "min_y": 5289.097894765706, + "max_x": 1871.9098868541103, + "max_y": 5290.217776116099, + "center": [ + 1869.5581360182841, + 5289.657835440903 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555475", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.671774113551, + "min_y": 5322.423694709702, + "max_x": 1873.671774113551, + "max_y": 5323.944127422865, + "center": [ + 1873.671774113551, + 5323.183911066284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.671774113551, + 5323.944127422865 + ], + [ + 1873.671774113551, + 5322.423694709702 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555476", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.165940916881, + "min_y": 5322.423694709702, + "max_x": 1874.177607310218, + "max_y": 5322.423694709702, + "center": [ + 1873.6717741135494, + 5322.423694709702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.165940916881, + 5322.423694709702 + ], + [ + 1874.177607310218, + 5322.423694709702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555477", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5320.213671790865, + "max_x": 1874.15957080641, + "max_y": 5320.213671790865, + "center": [ + 1873.6717741135517, + 5320.213671790865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.15957080641, + 5320.213671790865 + ], + [ + 1873.183977420693, + 5320.213671790865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555478", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5322.423694709702, + "max_x": 1874.15957080641, + "max_y": 5322.423694709702, + "center": [ + 1873.6717741135517, + 5322.423694709702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.15957080641, + 5322.423694709702 + ], + [ + 1873.183977420693, + 5322.423694709702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555479", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1873.3595313995604, + "min_y": 5321.006440536294, + "max_x": 1873.9840168275416, + "max_y": 5321.630925964275, + "center": [ + 1873.671774113551, + 5321.318683250284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.671774113551, + 5321.318683250284 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.178504329129, + "min_y": 5322.13338640124, + "max_x": 1874.165043897973, + "max_y": 5322.13338640124, + "center": [ + 1873.671774113551, + 5322.13338640124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.178504329129, + 5322.13338640124 + ], + [ + 1874.165043897973, + 5322.13338640124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.176889347542, + "min_y": 5320.213671790865, + "max_x": 1874.163428916389, + "max_y": 5320.213671790865, + "center": [ + 1873.6701591319656, + 5320.213671790865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.176889347542, + 5320.213671790865 + ], + [ + 1874.163428916389, + 5320.213671790865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.176889347542, + "min_y": 5320.213671790865, + "max_x": 1874.163428916389, + "max_y": 5320.213671790865, + "center": [ + 1873.6701591319656, + 5320.213671790865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.176889347542, + 5320.213671790865 + ], + [ + 1874.163428916389, + 5320.213671790865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5320.50398009933, + "max_x": 1873.511374506638, + "max_y": 5321.050788721521, + "center": [ + 1873.3476759636656, + 5320.777384410425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.511374506638, + 5321.050788721521 + ], + [ + 1873.183977420693, + 5320.50398009933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5320.50398009933, + "max_x": 1874.15957080641, + "max_y": 5320.50398009933, + "center": [ + 1873.6717741135517, + 5320.50398009933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.183977420693, + 5320.50398009933 + ], + [ + 1874.15957080641, + 5320.50398009933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55547F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.832173720467, + "min_y": 5320.50398009933, + "max_x": 1874.15957080641, + "max_y": 5321.050788721521, + "center": [ + 1873.9958722634385, + 5320.777384410425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.15957080641, + 5320.50398009933 + ], + [ + 1873.832173720467, + 5321.050788721521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555480", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5321.586577779047, + "max_x": 1873.511374506638, + "max_y": 5322.13338640124, + "center": [ + 1873.3476759636656, + 5321.859982090144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.511374506638, + 5321.586577779047 + ], + [ + 1873.183977420693, + 5322.13338640124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555481", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.183977420693, + "min_y": 5322.13338640124, + "max_x": 1874.15957080641, + "max_y": 5322.13338640124, + "center": [ + 1873.6717741135517, + 5322.13338640124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.183977420693, + 5322.13338640124 + ], + [ + 1874.15957080641, + 5322.13338640124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555482", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.832173720467, + "min_y": 5321.586577779047, + "max_x": 1874.15957080641, + "max_y": 5322.13338640124, + "center": [ + 1873.9958722634385, + 5321.859982090144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.15957080641, + 5322.13338640124 + ], + [ + 1873.832173720467, + 5321.586577779047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555483", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1872.655436186285, + "min_y": 5318.908067257716, + "max_x": 1880.0466530988815, + "max_y": 5320.027948608109, + "center": [ + 1876.3510446425832, + 5319.468007932912 + ] + }, + "raw_value": "E10117BA-08", + "clean_value": "E10117BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555484", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1873.669136742829, + "min_y": 5319.162867385904, + "max_x": 1873.669136742829, + "max_y": 5320.213671790865, + "center": [ + 1873.669136742829, + 5319.688269588385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.669136742829, + 5320.213671790865 + ], + [ + 1873.669136742829, + 5319.162867385904 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555485", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.284996847204, + "min_y": 5318.705269262345, + "max_x": 1873.284996847204, + "max_y": 5319.225591243542, + "center": [ + 1873.284996847204, + 5318.965430252943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.284996847204, + 5319.225591243542 + ], + [ + 1873.284996847204, + 5318.705269262345 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555486", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1874.053276638454, + "min_y": 5318.705269262345, + "max_x": 1874.053276638454, + "max_y": 5319.225591243542, + "center": [ + 1874.053276638454, + 5318.965430252943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1874.053276638454, + 5319.225591243542 + ], + [ + 1874.053276638454, + 5318.705269262345 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555487", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.284996847204, + "min_y": 5318.705269262345, + "max_x": 1874.053276638454, + "max_y": 5318.705269262345, + "center": [ + 1873.6691367428289, + 5318.705269262345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.284996847204, + 5318.705269262345 + ], + [ + 1874.053276638454, + 5318.705269262345 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555488", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.818200019965, + "min_y": 5376.345558781622, + "max_x": 1877.890361819611, + "max_y": 5376.564451528443, + "center": [ + 1877.354280919788, + 5376.455005155032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.890361819611, + 5376.345558781622 + ], + [ + 1876.818200019965, + 5376.564451528443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555489", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.818268226489, + "min_y": 5377.43968829948, + "max_x": 1877.890464129395, + "max_y": 5377.658413938176, + "center": [ + 1877.354366177942, + 5377.549051118827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.890464129395, + 5377.658413938176 + ], + [ + 1876.818268226489, + 5377.43968829948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1876.818200019965, + "min_y": 5376.564451528443, + "max_x": 1876.818268226489, + "max_y": 5377.43968829948, + "center": [ + 1876.8182341232268, + 5377.002069913961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1876.818268226489, + 5377.43968829948 + ], + [ + 1876.818200019965, + 5376.564451528443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1877.890361819611, + "min_y": 5376.345558781622, + "max_x": 1877.890464129395, + "max_y": 5377.658413938176, + "center": [ + 1877.8904129745029, + 5377.001986359899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.890464129395, + 5377.658413938176 + ], + [ + 1877.890361819611, + 5376.345558781622 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.861577809946, + "min_y": 5376.345558781622, + "max_x": 1836.933739609592, + "max_y": 5376.564451528443, + "center": [ + 1836.397658709769, + 5376.455005155032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.861577809946, + 5376.345558781622 + ], + [ + 1836.933739609592, + 5376.564451528443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.861475500162, + "min_y": 5377.43968829948, + "max_x": 1836.933671403068, + "max_y": 5377.658413938176, + "center": [ + 1836.397573451615, + 5377.549051118827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.861475500162, + 5377.658413938176 + ], + [ + 1836.933671403068, + 5377.43968829948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1836.933671403068, + "min_y": 5376.564451528443, + "max_x": 1836.933739609592, + "max_y": 5377.43968829948, + "center": [ + 1836.9337055063302, + 5377.002069913961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.933671403068, + 5377.43968829948 + ], + [ + 1836.933739609592, + 5376.564451528443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55548F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1835.861475500162, + "min_y": 5376.345558781622, + "max_x": 1835.861577809946, + "max_y": 5377.658413938176, + "center": [ + 1835.8615266550541, + 5377.001986359899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.861475500162, + 5377.658413938176 + ], + [ + 1835.861577809946, + 5376.345558781622 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555490", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1877.938373173889, + "min_y": 5373.718640129443, + "max_x": 1882.6418748455412, + "max_y": 5374.838521479836, + "center": [ + 1880.290124009715, + 5374.278580804639 + ] + }, + "raw_value": "25Ax32A", + "clean_value": "25Ax32A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555491", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1836.855635508385, + "min_y": 5373.708167010448, + "max_x": 1841.5591371800372, + "max_y": 5374.828048360841, + "center": [ + 1839.207386344211, + 5374.268107685644 + ] + }, + "raw_value": "32Ax25A", + "clean_value": "32Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555492", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1916.788396803454, + "min_y": 5336.341781243268, + "max_x": 1917.554463186657, + "max_y": 5336.343929849293, + "center": [ + 1917.1714299950554, + 5336.342855546281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.554463186657, + 5336.343929849293 + ], + [ + 1916.788396803454, + 5336.341781243268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555493", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.674389206247, + "max_x": 1913.805433954513, + "max_y": 5362.674389206247, + "center": [ + 1909.005937609818, + 5362.674389206247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.805433954513, + 5362.674389206247 + ], + [ + 1904.206441265123, + 5362.674389206247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555494", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1913.805223983951, + "min_y": 5362.674389206247, + "max_x": 1913.805433954513, + "max_y": 5365.368764311079, + "center": [ + 1913.805328969232, + 5364.021576758663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.805223983951, + 5362.674389206247 + ], + [ + 1913.805433954513, + 5365.368764311079 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555495", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.073968050518, + "min_y": 5347.444392045765, + "max_x": 1907.073968050518, + "max_y": 5365.36876431108, + "center": [ + 1907.073968050518, + 5356.406578178423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073968050518, + 5347.444392045765 + ], + [ + 1907.073968050518, + 5365.36876431108 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555496", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.986197895894, + "min_y": 5365.695930163062, + "max_x": 1914.355161316634, + "max_y": 5366.312161609198, + "center": [ + 1914.170679606264, + 5366.0040458861295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.355161316634, + 5365.695930163062 + ], + [ + 1913.986197895894, + 5366.312161609198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555497", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.255706592391, + "min_y": 5365.695930163062, + "max_x": 1914.355161316634, + "max_y": 5365.695930163062, + "center": [ + 1913.8054339545124, + 5365.695930163062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.255706592391, + 5365.695930163062 + ], + [ + 1914.355161316634, + 5365.695930163062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555498", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.255706592391, + "min_y": 5365.695930163062, + "max_x": 1913.624670013131, + "max_y": 5366.312161609198, + "center": [ + 1913.440188302761, + 5366.0040458861295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.624670013131, + 5366.312161609198 + ], + [ + 1913.255706592391, + 5365.695930163062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555499", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.986197895897, + "min_y": 5366.915974446721, + "max_x": 1914.355161316634, + "max_y": 5367.53220589286, + "center": [ + 1914.1706796062654, + 5367.22409016979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.355161316634, + 5367.53220589286 + ], + [ + 1913.986197895897, + 5366.915974446721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.255706592391, + "min_y": 5367.53220589286, + "max_x": 1914.355161316634, + "max_y": 5367.53220589286, + "center": [ + 1913.8054339545124, + 5367.53220589286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.255706592391, + 5367.53220589286 + ], + [ + 1914.355161316634, + 5367.53220589286 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.255706592391, + "min_y": 5366.915974446721, + "max_x": 1913.624670013128, + "max_y": 5367.53220589286, + "center": [ + 1913.4401883027595, + 5367.22409016979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.624670013128, + 5366.915974446721 + ], + [ + 1913.255706592391, + 5367.53220589286 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.24771861746, + "min_y": 5367.859371744839, + "max_x": 1914.359509252268, + "max_y": 5367.859371744839, + "center": [ + 1913.803613934864, + 5367.859371744839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.24771861746, + 5367.859371744839 + ], + [ + 1914.359509252268, + 5367.859371744839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.24953863711, + "min_y": 5365.368764311079, + "max_x": 1914.361329271915, + "max_y": 5365.368764311079, + "center": [ + 1913.8054339545124, + 5365.368764311079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.24953863711, + 5365.368764311079 + ], + [ + 1914.361329271915, + 5365.368764311079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1913.4535489048264, + "min_y": 5366.262182978276, + "max_x": 1914.1573190041997, + "max_y": 5366.965953077649, + "center": [ + 1913.805433954513, + 5366.614068027962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.805433954513, + 5366.614068027962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55549F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.620464943898, + "min_y": 5365.695930163062, + "max_x": 1910.989428364637, + "max_y": 5366.312161609198, + "center": [ + 1910.8049466542675, + 5366.0040458861295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.989428364637, + 5365.695930163062 + ], + [ + 1910.620464943898, + 5366.312161609198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.889973640394, + "min_y": 5365.695930163062, + "max_x": 1910.989428364637, + "max_y": 5365.695930163062, + "center": [ + 1910.4397010025154, + 5365.695930163062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.889973640394, + 5365.695930163062 + ], + [ + 1910.989428364637, + 5365.695930163062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.889973640394, + "min_y": 5365.695930163062, + "max_x": 1910.258937061134, + "max_y": 5366.312161609198, + "center": [ + 1910.0744553507639, + 5366.0040458861295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.258937061134, + 5366.312161609198 + ], + [ + 1909.889973640394, + 5365.695930163062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.6204649439, + "min_y": 5366.915974446721, + "max_x": 1910.989428364637, + "max_y": 5367.53220589286, + "center": [ + 1910.8049466542684, + 5367.22409016979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.989428364637, + 5367.53220589286 + ], + [ + 1910.6204649439, + 5366.915974446721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.889973640394, + "min_y": 5367.53220589286, + "max_x": 1910.989428364637, + "max_y": 5367.53220589286, + "center": [ + 1910.4397010025154, + 5367.53220589286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.889973640394, + 5367.53220589286 + ], + [ + 1910.989428364637, + 5367.53220589286 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.889973640394, + "min_y": 5366.915974446721, + "max_x": 1910.258937061131, + "max_y": 5367.53220589286, + "center": [ + 1910.0744553507625, + 5367.22409016979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.258937061131, + 5366.915974446721 + ], + [ + 1909.889973640394, + 5367.53220589286 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.881985665463, + "min_y": 5367.859371744839, + "max_x": 1910.993776300271, + "max_y": 5367.859371744839, + "center": [ + 1910.437880982867, + 5367.859371744839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.881985665463, + 5367.859371744839 + ], + [ + 1910.993776300271, + 5367.859371744839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.883805685113, + "min_y": 5365.368764311079, + "max_x": 1910.995596319919, + "max_y": 5365.368764311079, + "center": [ + 1910.439701002516, + 5365.368764311079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.883805685113, + 5365.368764311079 + ], + [ + 1910.995596319919, + 5365.368764311079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1910.0878159528293, + "min_y": 5366.262182978276, + "max_x": 1910.7915860522025, + "max_y": 5366.965953077649, + "center": [ + 1910.439701002516, + 5366.614068027962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.439701002516, + 5366.614068027962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.2547319919, + "min_y": 5365.695930163063, + "max_x": 1907.623695412639, + "max_y": 5366.312161609198, + "center": [ + 1907.4392137022696, + 5366.00404588613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.623695412639, + 5365.695930163063 + ], + [ + 1907.2547319919, + 5366.312161609198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.524240688397, + "min_y": 5365.695930163063, + "max_x": 1907.623695412639, + "max_y": 5365.695930163063, + "center": [ + 1907.073968050518, + 5365.695930163063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.524240688397, + 5365.695930163063 + ], + [ + 1907.623695412639, + 5365.695930163063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.524240688397, + "min_y": 5365.695930163063, + "max_x": 1906.893204109136, + "max_y": 5366.312161609198, + "center": [ + 1906.7087223987664, + 5366.00404588613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.893204109136, + 5366.312161609198 + ], + [ + 1906.524240688397, + 5365.695930163063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.254731991903, + "min_y": 5366.915974446721, + "max_x": 1907.623695412639, + "max_y": 5367.532205892861, + "center": [ + 1907.439213702271, + 5367.224090169791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.623695412639, + 5367.532205892861 + ], + [ + 1907.254731991903, + 5366.915974446721 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.524240688397, + "min_y": 5367.532205892861, + "max_x": 1907.623695412639, + "max_y": 5367.532205892861, + "center": [ + 1907.073968050518, + 5367.532205892861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.524240688397, + 5367.532205892861 + ], + [ + 1907.623695412639, + 5367.532205892861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.524240688397, + "min_y": 5366.915974446721, + "max_x": 1906.893204109133, + "max_y": 5367.532205892861, + "center": [ + 1906.708722398765, + 5367.224090169791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.893204109133, + 5366.915974446721 + ], + [ + 1906.524240688397, + 5367.532205892861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.516252713465, + "min_y": 5367.859371744839, + "max_x": 1907.628043348273, + "max_y": 5367.859371744839, + "center": [ + 1907.072148030869, + 5367.859371744839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.516252713465, + 5367.859371744839 + ], + [ + 1907.628043348273, + 5367.859371744839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.518072733115, + "min_y": 5365.36876431108, + "max_x": 1907.629863367921, + "max_y": 5365.36876431108, + "center": [ + 1907.073968050518, + 5365.36876431108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.518072733115, + 5365.36876431108 + ], + [ + 1907.629863367921, + 5365.36876431108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1906.7220830008314, + "min_y": 5366.2621829782765, + "max_x": 1907.4258531002047, + "max_y": 5366.96595307765, + "center": [ + 1907.073968050518, + 5366.614068027963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.073968050518, + 5366.614068027963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1913.803613934863, + "min_y": 5367.859371744839, + "max_x": 1913.803613934863, + "max_y": 5374.380101961598, + "center": [ + 1913.803613934863, + 5371.1197368532185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.803613934863, + 5367.859371744839 + ], + [ + 1913.803613934863, + 5374.380101961598 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554B2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.072148030869, + "min_y": 5367.859371744839, + "max_x": 1907.072148030869, + "max_y": 5374.316097823665, + "center": [ + 1907.072148030869, + 5371.0877347842525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.072148030869, + 5367.859371744839 + ], + [ + 1907.072148030869, + 5374.316097823665 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554B3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1895.444419107634, + "min_y": 5374.316097823665, + "max_x": 1907.072148030869, + "max_y": 5374.316097823665, + "center": [ + 1901.2582835692515, + 5374.316097823665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.072148030869, + 5374.316097823665 + ], + [ + 1895.444419107634, + 5374.316097823665 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.490669931767, + "min_y": 5307.281979681864, + "max_x": 2043.490669931767, + "max_y": 5307.628516123068, + "center": [ + 2043.490669931767, + 5307.455247902466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.490669931767, + 5307.281979681864 + ], + [ + 2043.490669931767, + 5307.628516123068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2043.2726834155455, + "min_y": 5308.181973062949, + "max_x": 2043.7086564479882, + "max_y": 5308.617946095392, + "center": [ + 2043.490669931767, + 5308.39995957917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.490669931767, + 5308.39995957917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.137531775488, + "min_y": 5307.628516123068, + "max_x": 2043.84380808805, + "max_y": 5307.628516123068, + "center": [ + 2043.490669931769, + 5307.628516123068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.84380808805, + 5307.628516123068 + ], + [ + 2043.137531775488, + 5307.628516123068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.137531775488, + "min_y": 5309.171403035271, + "max_x": 2043.84380808805, + "max_y": 5309.171403035271, + "center": [ + 2043.490669931769, + 5309.171403035271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.84380808805, + 5309.171403035271 + ], + [ + 2043.137531775488, + 5309.171403035271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.15012362937, + "min_y": 5307.831189536913, + "max_x": 2043.378689892049, + "max_y": 5308.212933933978, + "center": [ + 2043.2644067607093, + 5308.022061735446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.378689892049, + 5308.212933933978 + ], + [ + 2043.15012362937, + 5307.831189536913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.15012362937, + "min_y": 5307.831189536913, + "max_x": 2043.831216234167, + "max_y": 5307.831189536913, + "center": [ + 2043.4906699317685, + 5307.831189536913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.15012362937, + 5307.831189536913 + ], + [ + 2043.831216234167, + 5307.831189536913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.602649971486, + "min_y": 5307.831189536913, + "max_x": 2043.831216234167, + "max_y": 5308.212933933978, + "center": [ + 2043.7169331028265, + 5308.022061735446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.831216234167, + 5307.831189536913 + ], + [ + 2043.602649971486, + 5308.212933933978 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.15012362937, + "min_y": 5308.586985224362, + "max_x": 2043.378689892049, + "max_y": 5308.96872962143, + "center": [ + 2043.2644067607093, + 5308.777857422896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.378689892049, + 5308.586985224362 + ], + [ + 2043.15012362937, + 5308.96872962143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.15012362937, + "min_y": 5308.96872962143, + "max_x": 2043.831216234167, + "max_y": 5308.96872962143, + "center": [ + 2043.4906699317685, + 5308.96872962143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.15012362937, + 5308.96872962143 + ], + [ + 2043.831216234167, + 5308.96872962143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.602649971486, + "min_y": 5308.586985224362, + "max_x": 2043.831216234167, + "max_y": 5308.96872962143, + "center": [ + 2043.7169331028265, + 5308.777857422896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.831216234167, + 5308.96872962143 + ], + [ + 2043.602649971486, + 5308.586985224362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.427795937368, + "min_y": 5307.577463400002, + "max_x": 2041.427795937368, + "max_y": 5307.923999841205, + "center": [ + 2041.427795937368, + 5307.750731620603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.427795937368, + 5307.577463400002 + ], + [ + 2041.427795937368, + 5307.923999841205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554BF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2041.2098094211467, + "min_y": 5308.4774567810855, + "max_x": 2041.6457824535894, + "max_y": 5308.913429813529, + "center": [ + 2041.427795937368, + 5308.695443297307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.427795937368, + 5308.695443297307 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.074657781088, + "min_y": 5307.923999841205, + "max_x": 2041.78093409365, + "max_y": 5307.923999841205, + "center": [ + 2041.427795937369, + 5307.923999841205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.78093409365, + 5307.923999841205 + ], + [ + 2041.074657781088, + 5307.923999841205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.074657781088, + "min_y": 5309.466886753408, + "max_x": 2041.78093409365, + "max_y": 5309.466886753408, + "center": [ + 2041.427795937369, + 5309.466886753408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.78093409365, + 5309.466886753408 + ], + [ + 2041.074657781088, + 5309.466886753408 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.087249634971, + "min_y": 5308.12667325505, + "max_x": 2041.315815897649, + "max_y": 5308.508417652115, + "center": [ + 2041.2015327663098, + 5308.317545453583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.315815897649, + 5308.508417652115 + ], + [ + 2041.087249634971, + 5308.12667325505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.087249634971, + "min_y": 5308.12667325505, + "max_x": 2041.768342239768, + "max_y": 5308.12667325505, + "center": [ + 2041.4277959373694, + 5308.12667325505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.087249634971, + 5308.12667325505 + ], + [ + 2041.768342239768, + 5308.12667325505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.539775977086, + "min_y": 5308.12667325505, + "max_x": 2041.768342239768, + "max_y": 5308.508417652115, + "center": [ + 2041.654059108427, + 5308.317545453583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.768342239768, + 5308.12667325505 + ], + [ + 2041.539775977086, + 5308.508417652115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.087249634971, + "min_y": 5308.882468942499, + "max_x": 2041.315815897649, + "max_y": 5309.264213339567, + "center": [ + 2041.2015327663098, + 5309.073341141033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.315815897649, + 5308.882468942499 + ], + [ + 2041.087249634971, + 5309.264213339567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.087249634971, + "min_y": 5309.264213339567, + "max_x": 2041.768342239768, + "max_y": 5309.264213339567, + "center": [ + 2041.4277959373694, + 5309.264213339567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.087249634971, + 5309.264213339567 + ], + [ + 2041.768342239768, + 5309.264213339567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.539775977086, + "min_y": 5308.882468942499, + "max_x": 2041.768342239768, + "max_y": 5309.264213339567, + "center": [ + 2041.654059108427, + 5309.073341141033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.768342239768, + 5309.264213339567 + ], + [ + 2041.539775977086, + 5308.882468942499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554C8", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2041.42779593737, + "min_y": 5309.466886753408, + "max_x": 2041.42779593737, + "max_y": 5312.976129144154, + "center": [ + 2041.42779593737, + 5311.221507948781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.42779593737, + 5309.466886753408 + ], + [ + 2041.42779593737, + 5312.976129144154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554C9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2045.447255165186, + "min_y": 5293.802536817517, + "max_x": 2047.0150889661463, + "max_y": 5295.109064984984, + "center": [ + 2046.2311720656662, + 5294.455800901251 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554CA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2044.986211970489, + "min_y": 5291.956509683182, + "max_x": 2048.9049254541114, + "max_y": 5293.262747511056, + "center": [ + 2046.9455687123002, + 5292.609628597119 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554CB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2044.3036479621005, + "min_y": 5291.316845138181, + "max_x": 2048.7371286365533, + "max_y": 5295.750325812634, + "center": [ + 2046.520388299327, + 5293.533585475408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.520388299327, + 5293.533585475408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.970024713611, + "min_y": 5293.533585475408, + "max_x": 2044.303647962101, + "max_y": 5293.533585475408, + "center": [ + 2043.636836337856, + 5293.533585475408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.303647962101, + 5293.533585475408 + ], + [ + 2042.970024713611, + 5293.533585475408 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554CF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2024.431581901902, + "min_y": 5305.179082228391, + "max_x": 2031.8227988144986, + "max_y": 5306.298963578784, + "center": [ + 2028.1271903582003, + 5305.739022903588 + ] + }, + "raw_value": "T10100BA-02", + "clean_value": "T10100BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5554D0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2023.542199577625, + "min_y": 5306.443822688041, + "max_x": 2030.9334164902216, + "max_y": 5307.5637040384345, + "center": [ + 2027.2378080339233, + 5307.003763363238 + ] + }, + "raw_value": "T10100BA-01", + "clean_value": "T10100BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5554D2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2023.246491615839, + "min_y": 5307.972220498509, + "max_x": 2030.6377085284355, + "max_y": 5309.0921018489025, + "center": [ + 2026.9421000721372, + 5308.532161173705 + ] + }, + "raw_value": "T10100BA-03", + "clean_value": "T10100BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5554D3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1730.9002013119782, + "min_y": 5271.507241524458, + "max_x": 1735.583025391288, + "max_y": 5276.190065603767, + "center": [ + 1733.241613351633, + 5273.848653564112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5273.848653564112 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.050165370314, + "min_y": 5268.809411693761, + "max_x": 1733.241613351633, + "max_y": 5268.809411693761, + "center": [ + 1732.6458893609736, + 5268.809411693761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.050165370314, + 5268.809411693761 + ], + [ + 1733.241613351633, + 5268.809411693761 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.241613351633, + "min_y": 5267.469354164398, + "max_x": 1733.241613351633, + "max_y": 5269.946795809282, + "center": [ + 1733.241613351633, + 5268.70807498684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5269.946795809282 + ], + [ + 1733.241613351633, + 5267.469354164398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5554D6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1733.0236268354106, + "min_y": 5266.479924192075, + "max_x": 1733.4595998678533, + "max_y": 5266.915897224518, + "center": [ + 1733.241613351632, + 5266.697910708296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351632, + 5266.697910708296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.888475195352, + "min_y": 5265.926467252195, + "max_x": 1733.594751507914, + "max_y": 5265.926467252195, + "center": [ + 1733.241613351633, + 5265.926467252195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.594751507914, + 5265.926467252195 + ], + [ + 1732.888475195352, + 5265.926467252195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.888475195352, + "min_y": 5267.469354164398, + "max_x": 1733.594751507914, + "max_y": 5267.469354164398, + "center": [ + 1733.241613351633, + 5267.469354164398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.594751507914, + 5267.469354164398 + ], + [ + 1732.888475195352, + 5267.469354164398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.901067049234, + "min_y": 5266.129140666039, + "max_x": 1733.129633311913, + "max_y": 5266.510885063105, + "center": [ + 1733.0153501805735, + 5266.320012864572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.129633311913, + 5266.510885063105 + ], + [ + 1732.901067049234, + 5266.129140666039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.901067049234, + "min_y": 5266.129140666039, + "max_x": 1733.582159654032, + "max_y": 5266.129140666039, + "center": [ + 1733.241613351633, + 5266.129140666039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.901067049234, + 5266.129140666039 + ], + [ + 1733.582159654032, + 5266.129140666039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.35359339135, + "min_y": 5266.129140666039, + "max_x": 1733.582159654032, + "max_y": 5266.510885063105, + "center": [ + 1733.4678765226909, + 5266.320012864572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.582159654032, + 5266.129140666039 + ], + [ + 1733.35359339135, + 5266.510885063105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.901067049234, + "min_y": 5266.884936353489, + "max_x": 1733.129633311913, + "max_y": 5267.266680750556, + "center": [ + 1733.0153501805735, + 5267.075808552023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.129633311913, + 5266.884936353489 + ], + [ + 1732.901067049234, + 5267.266680750556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.901067049234, + "min_y": 5267.266680750556, + "max_x": 1733.582159654032, + "max_y": 5267.266680750556, + "center": [ + 1733.241613351633, + 5267.266680750556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.901067049234, + 5267.266680750556 + ], + [ + 1733.582159654032, + 5267.266680750556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.35359339135, + "min_y": 5266.884936353489, + "max_x": 1733.582159654032, + "max_y": 5267.266680750556, + "center": [ + 1733.4678765226909, + 5267.075808552023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.582159654032, + 5267.266680750556 + ], + [ + 1733.35359339135, + 5266.884936353489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.241613351633, + "min_y": 5270.149469223124, + "max_x": 1733.241613351633, + "max_y": 5270.58633206344, + "center": [ + 1733.241613351633, + 5270.367900643281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5270.149469223124 + ], + [ + 1733.241613351633, + 5270.58633206344 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.241613351633, + "min_y": 5271.128293134484, + "max_x": 1733.241613351633, + "max_y": 5271.507241524457, + "center": [ + 1733.241613351633, + 5271.31776732947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5271.128293134484 + ], + [ + 1733.241613351633, + 5271.507241524457 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1731.8140500456918, + "min_y": 5268.126233344991, + "max_x": 1734.6691766575743, + "max_y": 5270.981359956874, + "center": [ + 1733.241613351633, + 5269.553796650933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5269.553796650933 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.659562524212, + "min_y": 5271.128293134484, + "max_x": 1733.823664179054, + "max_y": 5271.128293134484, + "center": [ + 1733.241613351633, + 5271.128293134484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.659562524212, + 5271.128293134484 + ], + [ + 1733.823664179054, + 5271.128293134484 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.659562524212, + "min_y": 5270.58633206344, + "max_x": 1733.823664179054, + "max_y": 5270.58633206344, + "center": [ + 1733.241613351633, + 5270.58633206344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.823664179054, + 5270.58633206344 + ], + [ + 1732.659562524212, + 5270.58633206344 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.659562524212, + "min_y": 5270.58633206344, + "max_x": 1732.659562524212, + "max_y": 5271.128293134484, + "center": [ + 1732.659562524212, + 5270.857312598962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.659562524212, + 5270.58633206344 + ], + [ + 1732.659562524212, + 5271.128293134484 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5554E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.888475195352, + "min_y": 5270.149469223124, + "max_x": 1733.594751507914, + "max_y": 5270.149469223124, + "center": [ + 1733.241613351633, + 5270.149469223124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.594751507914, + 5270.149469223124 + ], + [ + 1732.888475195352, + 5270.149469223124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.901067049234, + "min_y": 5269.946795809282, + "max_x": 1733.582159654032, + "max_y": 5269.946795809282, + "center": [ + 1733.241613351633, + 5269.946795809282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.901067049234, + 5269.946795809282 + ], + [ + 1733.582159654032, + 5269.946795809282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554E7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1733.241613351633, + "min_y": 5265.267456639366, + "max_x": 1733.241613351633, + "max_y": 5265.926467252195, + "center": [ + 1733.241613351633, + 5265.596961945781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.241613351633, + 5265.267456639366 + ], + [ + 1733.241613351633, + 5265.926467252195 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.838599976012, + "min_y": 5264.715139642104, + "max_x": 1732.838599976012, + "max_y": 5265.37075768779, + "center": [ + 1732.838599976012, + 5265.042948664946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.838599976012, + 5265.37075768779 + ], + [ + 1732.838599976012, + 5264.715139642104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.644626727254, + "min_y": 5264.715139642104, + "max_x": 1733.644626727254, + "max_y": 5265.37075768779, + "center": [ + 1733.644626727254, + 5265.042948664946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.644626727254, + 5265.37075768779 + ], + [ + 1733.644626727254, + 5264.715139642104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1732.838599976012, + "min_y": 5264.715139642104, + "max_x": 1733.644626727254, + "max_y": 5264.715139642104, + "center": [ + 1733.241613351633, + 5264.715139642104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.838599976012, + 5264.715139642104 + ], + [ + 1733.644626727254, + 5264.715139642104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554EB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1672.410752704909, + "min_y": 5204.895465200291, + "max_x": 1672.410752704909, + "max_y": 5206.213486425949, + "center": [ + 1672.410752704909, + 5205.55447581312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.410752704909, + 5204.895465200291 + ], + [ + 1672.410752704909, + 5206.213486425949 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554EC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1672.152780496363, + "min_y": 5203.724542156124, + "max_x": 1672.6687249134552, + "max_y": 5204.240486573215, + "center": [ + 1672.410752704909, + 5203.982514364669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.410752704909, + 5203.982514364669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5204.895465200291, + "max_x": 1672.81376608053, + "max_y": 5204.895465200291, + "center": [ + 1672.4107527049086, + 5204.895465200291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5204.895465200291 + ], + [ + 1672.81376608053, + 5204.895465200291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5203.069563529044, + "max_x": 1672.81376608053, + "max_y": 5203.069563529044, + "center": [ + 1672.4107527049086, + 5203.069563529044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5203.069563529044 + ], + [ + 1672.81376608053, + 5203.069563529044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5203.309413722942, + "max_x": 1672.278231947843, + "max_y": 5203.761182240175, + "center": [ + 1672.142985638565, + 5203.535297981558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.278231947843, + 5203.761182240175 + ], + [ + 1672.007739329287, + 5203.309413722942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5203.309413722942, + "max_x": 1672.81376608053, + "max_y": 5203.309413722942, + "center": [ + 1672.4107527049086, + 5203.309413722942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5203.309413722942 + ], + [ + 1672.81376608053, + 5203.309413722942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.543273461971, + "min_y": 5203.309413722942, + "max_x": 1672.81376608053, + "max_y": 5203.761182240175, + "center": [ + 1672.6785197712506, + 5203.535297981558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.81376608053, + 5203.309413722942 + ], + [ + 1672.543273461971, + 5203.761182240175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5204.203846489152, + "max_x": 1672.278231947843, + "max_y": 5204.655615006391, + "center": [ + 1672.142985638565, + 5204.429730747772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.278231947843, + 5204.203846489152 + ], + [ + 1672.007739329287, + 5204.655615006391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5204.655615006391, + "max_x": 1672.81376608053, + "max_y": 5204.655615006391, + "center": [ + 1672.4107527049086, + 5204.655615006391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5204.655615006391 + ], + [ + 1672.81376608053, + 5204.655615006391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.543273461971, + "min_y": 5204.203846489152, + "max_x": 1672.81376608053, + "max_y": 5204.655615006391, + "center": [ + 1672.6785197712506, + 5204.429730747772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.81376608053, + 5204.655615006391 + ], + [ + 1672.543273461971, + 5204.203846489152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1672.410752704909, + "min_y": 5202.410552916216, + "max_x": 1672.410752704909, + "max_y": 5203.069563529044, + "center": [ + 1672.410752704909, + 5202.74005822263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.410752704909, + 5202.410552916216 + ], + [ + 1672.410752704909, + 5203.069563529044 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5554F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5201.858235918955, + "max_x": 1672.007739329287, + "max_y": 5202.51385396464, + "center": [ + 1672.007739329287, + 5202.186044941797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5202.51385396464 + ], + [ + 1672.007739329287, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.81376608053, + "min_y": 5201.858235918955, + "max_x": 1672.81376608053, + "max_y": 5202.51385396464, + "center": [ + 1672.81376608053, + 5202.186044941797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.81376608053, + 5202.51385396464 + ], + [ + 1672.81376608053, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.007739329287, + "min_y": 5201.858235918955, + "max_x": 1672.81376608053, + "max_y": 5201.858235918955, + "center": [ + 1672.4107527049086, + 5201.858235918955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.007739329287, + 5201.858235918955 + ], + [ + 1672.81376608053, + 5201.858235918955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5387.841258848222, + "max_x": 1924.846322196663, + "max_y": 5393.678183723049, + "center": [ + 1924.846322196663, + 5390.759721285636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5393.678183723049 + ], + [ + 1924.846322196663, + 5387.841258848222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5392.20733547989, + "max_x": 1925.826887692103, + "max_y": 5393.18790097533, + "center": [ + 1925.336604944383, + 5392.69761822761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5392.20733547989 + ], + [ + 1925.826887692103, + 5393.18790097533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5391.513970968667, + "max_x": 1925.826887692103, + "max_y": 5392.494536464107, + "center": [ + 1925.336604944383, + 5392.004253716387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5391.513970968667 + ], + [ + 1925.826887692103, + 5392.494536464107 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5390.820606457445, + "max_x": 1925.826887692103, + "max_y": 5391.801171952884, + "center": [ + 1925.336604944383, + 5391.310889205164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5390.820606457445 + ], + [ + 1925.826887692103, + 5391.801171952884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5390.127241946222, + "max_x": 1925.826887692103, + "max_y": 5391.10780744166, + "center": [ + 1925.336604944383, + 5390.617524693941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5390.127241946222 + ], + [ + 1925.826887692103, + 5391.10780744166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5389.433877434999, + "max_x": 1925.826887692103, + "max_y": 5390.414442930438, + "center": [ + 1925.336604944383, + 5389.924160182718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5389.433877434999 + ], + [ + 1925.826887692103, + 5390.414442930438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5554FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.846322196663, + "min_y": 5388.740512923777, + "max_x": 1925.826887692103, + "max_y": 5389.721078419216, + "center": [ + 1925.336604944383, + 5389.230795671496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.846322196663, + 5388.740512923777 + ], + [ + 1925.826887692103, + 5389.721078419216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555500", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1924.262543031136, + "min_y": 5388.160836407334, + "max_x": 1926.9502582720802, + "max_y": 5389.654011541192, + "center": [ + 1925.606400651608, + 5388.907423974262 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555501", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2025.356545170681, + "min_y": 5361.443491483719, + "max_x": 2035.781516906082, + "max_y": 5366.596956553872, + "center": [ + 2030.5690310383816, + 5364.0202240187955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.781516906082, + 5366.596956553872 + ], + [ + 2025.356545170681, + 5361.443491483719 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555502", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2025.356545170681, + "min_y": 5346.083940125693, + "max_x": 2025.356545170681, + "max_y": 5361.443491483719, + "center": [ + 2025.356545170681, + 5353.7637158047055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2025.356545170681, + 5361.443491483719 + ], + [ + 2025.356545170681, + 5346.083940125693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555503", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.781516906082, + "min_y": 5361.443491483719, + "max_x": 2046.012581319112, + "max_y": 5366.596956553872, + "center": [ + 2040.897049112597, + 5364.0202240187955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.781516906082, + 5366.596956553872 + ], + [ + 2046.012581319112, + 5361.443491483719 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555504", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.012581319112, + "min_y": 5346.083940125693, + "max_x": 2046.012581319112, + "max_y": 5361.443491483719, + "center": [ + 2046.012581319112, + 5353.7637158047055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5361.443491483719 + ], + [ + 2046.012581319112, + 5346.083940125693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555505", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2025.356545170681, + "min_y": 5346.083940125693, + "max_x": 2046.012581319112, + "max_y": 5346.083940125693, + "center": [ + 2035.6845632448967, + 5346.083940125693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5346.083940125693 + ], + [ + 2025.356545170681, + 5346.083940125693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555506", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.784248294814, + "min_y": 5366.595580732571, + "max_x": 2035.784248294814, + "max_y": 5368.832276331811, + "center": [ + 2035.784248294814, + 5367.713928532191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.784248294814, + 5366.595580732571 + ], + [ + 2035.784248294814, + 5368.832276331811 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555507", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2035.284804809656, + "min_y": 5367.487300144381, + "max_x": 2036.283691779907, + "max_y": 5367.487300144381, + "center": [ + 2035.7842482947815, + 5367.487300144381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2036.283691779907, + 5367.487300144381 + ], + [ + 2035.284804809656, + 5367.487300144381 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555508", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2035.126726168071, + "min_y": 5350.327089990933, + "max_x": 2036.0095283857327, + "max_y": 5351.062758505651, + "center": [ + 2035.5681272769018, + 5350.6949242482915 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555509", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2034.1494293732183, + "min_y": 5348.881158584943, + "max_x": 2037.4190672164098, + "max_y": 5352.1507964281345, + "center": [ + 2035.784248294814, + 5350.515977506539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2035.784248294814, + 5350.515977506539 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2026.775240910394, + "min_y": 5363.28342099588, + "max_x": 2027.774127880696, + "max_y": 5363.28342099588, + "center": [ + 2027.274684395545, + 5363.28342099588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.774127880696, + 5363.28342099588 + ], + [ + 2026.775240910394, + 5363.28342099588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.274684395542, + "min_y": 5347.744285943789, + "max_x": 2027.274684395542, + "max_y": 5363.28342099588, + "center": [ + 2027.274684395542, + 5355.513853469834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.274684395542, + 5363.28342099588 + ], + [ + 2027.274684395542, + 5347.744285943789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.274684395542, + "min_y": 5363.28342099588, + "max_x": 2027.274684395542, + "max_y": 5365.190026229249, + "center": [ + 2027.274684395542, + 5364.236723612565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.274684395542, + 5363.28342099588 + ], + [ + 2027.274684395542, + 5365.190026229249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2029.166473008885, + "min_y": 5368.620320816592, + "max_x": 2033.1390829883628, + "max_y": 5369.3559893313095, + "center": [ + 2031.152777998624, + 5368.98815507395 + ] + }, + "raw_value": "EMERGENCY", + "clean_value": "EMERGENCY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.359649052575, + "min_y": 5364.398411904084, + "max_x": 2031.359649052575, + "max_y": 5365.99036737493, + "center": [ + 2031.359649052575, + 5365.194389639508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.359649052575, + 5365.99036737493 + ], + [ + 2031.359649052575, + 5364.398411904084 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55550F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2032.709304040574, + "min_y": 5365.078243401249, + "max_x": 2032.709304040574, + "max_y": 5365.99036737493, + "center": [ + 2032.709304040574, + 5365.53430538809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2032.709304040574, + 5365.99036737493 + ], + [ + 2032.709304040574, + 5365.078243401249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555510", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.099074194393, + "min_y": 5365.99036737493, + "max_x": 2032.969878898756, + "max_y": 5365.990367375048, + "center": [ + 2032.0344765465745, + 5365.990367374989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.099074194393, + 5365.990367375048 + ], + [ + 2032.969878898756, + 5365.99036737493 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555511", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2031.099074194393, + "min_y": 5366.436227080891, + "max_x": 2032.969878898756, + "max_y": 5366.436227080891, + "center": [ + 2032.0344765465745, + 5366.436227080891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2031.099074194393, + 5366.436227080891 + ], + [ + 2032.969878898756, + 5366.436227080891 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555512", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2030.530773014164, + "min_y": 5367.559940803648, + "max_x": 2032.7377785583183, + "max_y": 5368.295609318366, + "center": [ + 2031.6342757862412, + 5367.927775061007 + ] + }, + "raw_value": "HATCH", + "clean_value": "HATCH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555513", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2034.774672000353, + "min_y": 5347.70342733109, + "max_x": 2036.5402764356763, + "max_y": 5348.439095845808, + "center": [ + 2035.6574742180146, + 5348.0712615884495 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555514", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.791992159055, + "min_y": 5363.286016515115, + "max_x": 2044.79087912936, + "max_y": 5363.286016515115, + "center": [ + 2044.2914356442075, + 5363.286016515115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.79087912936, + 5363.286016515115 + ], + [ + 2043.791992159055, + 5363.286016515115 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555515", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.29143564421, + "min_y": 5347.746881463029, + "max_x": 2044.29143564421, + "max_y": 5363.286016515115, + "center": [ + 2044.29143564421, + 5355.516448989072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.29143564421, + 5363.286016515115 + ], + [ + 2044.29143564421, + 5347.746881463029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555516", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.29143564421, + "min_y": 5363.286016515115, + "max_x": 2044.29143564421, + "max_y": 5366.644780026479, + "center": [ + 2044.29143564421, + 5364.965398270797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.29143564421, + 5363.286016515115 + ], + [ + 2044.29143564421, + 5366.644780026479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555517", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2019.624549402866, + "min_y": 5348.419814282914, + "max_x": 2020.5073516205277, + "max_y": 5349.1554827976315, + "center": [ + 2020.0659505116969, + 5348.787648540272 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555518", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2018.5890980119232, + "min_y": 5346.41716464383, + "max_x": 2021.8587358551147, + "max_y": 5349.686802487022, + "center": [ + 2020.223916933519, + 5348.051983565426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2020.223916933519, + 5348.051983565426 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555519", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2021.858735855078, + "min_y": 5348.051983565426, + "max_x": 2025.356545170681, + "max_y": 5348.051983565426, + "center": [ + 2023.6076405128797, + 5348.051983565426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.858735855078, + 5348.051983565426 + ], + [ + 2025.356545170681, + 5348.051983565426 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2024.34244192565, + "min_y": 5347.552540080335, + "max_x": 2024.34244192565, + "max_y": 5348.551427050511, + "center": [ + 2024.34244192565, + 5348.051983565423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2024.34244192565, + 5347.552540080335 + ], + [ + 2024.34244192565, + 5348.551427050511 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2019.207340981901, + "min_y": 5346.971460361127, + "max_x": 2020.9729454172245, + "max_y": 5347.707128875845, + "center": [ + 2020.0901431995628, + 5347.339294618487 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2031.003459465011, + "min_y": 5363.139117797063, + "max_x": 2032.7690639003345, + "max_y": 5363.874786311781, + "center": [ + 2031.8862616826727, + 5363.506952054422 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2041.961965695108, + "min_y": 5364.663309914252, + "max_x": 2042.960852665411, + "max_y": 5364.663309914252, + "center": [ + 2042.4614091802596, + 5364.663309914252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.960852665411, + 5364.663309914252 + ], + [ + 2041.961965695108, + 5364.663309914252 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.461409180261, + "min_y": 5347.746881463029, + "max_x": 2042.461409180261, + "max_y": 5364.663309914252, + "center": [ + 2042.461409180261, + 5356.2050956886405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.461409180261, + 5364.663309914252 + ], + [ + 2042.461409180261, + 5347.746881463029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55551F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.461409180261, + "min_y": 5364.663309914252, + "max_x": 2042.461409180261, + "max_y": 5371.610829537692, + "center": [ + 2042.461409180261, + 5368.137069725972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.461409180261, + 5364.663309914252 + ], + [ + 2042.461409180261, + 5371.610829537692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555520", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.698970618263, + "min_y": 5344.289043564939, + "max_x": 2045.492147091097, + "max_y": 5344.289043564939, + "center": [ + 2045.09555885468, + 5344.289043564939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.698970618263, + 5344.289043564939 + ], + [ + 2045.492147091097, + 5344.289043564939 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555521", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.088403839145, + "min_y": 5343.75704273577, + "max_x": 2047.684764258683, + "max_y": 5344.114108545642, + "center": [ + 2047.3865840489138, + 5343.935575640706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.684764258683, + 5343.75704273577 + ], + [ + 2047.088403839145, + 5344.114108545642 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555522", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.90770115769, + "min_y": 5344.463978584228, + "max_x": 2046.504061577224, + "max_y": 5344.821044394102, + "center": [ + 2046.205881367457, + 5344.6425114891645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.504061577224, + 5344.463978584228 + ], + [ + 2045.90770115769, + 5344.821044394102 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555523", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.684764258683, + "min_y": 5343.75704273577, + "max_x": 2047.684764258683, + "max_y": 5344.821044394102, + "center": [ + 2047.684764258683, + 5344.289043564935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.684764258683, + 5344.821044394102 + ], + [ + 2047.684764258683, + 5343.75704273577 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555524", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.90770115769, + "min_y": 5343.75704273577, + "max_x": 2045.90770115769, + "max_y": 5344.821044394102, + "center": [ + 2045.90770115769, + 5344.289043564935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.90770115769, + 5344.821044394102 + ], + [ + 2045.90770115769, + 5343.75704273577 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555525", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.088403839145, + "min_y": 5344.463978584228, + "max_x": 2047.684764258683, + "max_y": 5344.821044394102, + "center": [ + 2047.3865840489138, + 5344.6425114891645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.684764258683, + 5344.821044394102 + ], + [ + 2047.088403839145, + 5344.463978584228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555526", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.90770115769, + "min_y": 5343.75704273577, + "max_x": 2046.504061577224, + "max_y": 5344.114108545642, + "center": [ + 2046.205881367457, + 5343.935575640706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.504061577224, + 5344.114108545642 + ], + [ + 2045.90770115769, + 5343.75704273577 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555527", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.492147091097, + "min_y": 5343.737371763989, + "max_x": 2045.492147091097, + "max_y": 5344.840715365887, + "center": [ + 2045.492147091097, + 5344.289043564939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.492147091097, + 5344.840715365887 + ], + [ + 2045.492147091097, + 5343.737371763989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555528", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.100318325277, + "min_y": 5343.737371763989, + "max_x": 2048.100318325277, + "max_y": 5344.840715365887, + "center": [ + 2048.100318325277, + 5344.289043564939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.100318325277, + 5344.840715365887 + ], + [ + 2048.100318325277, + 5343.737371763989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555529", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2046.4556945594545, + "min_y": 5343.948505416203, + "max_x": 2047.1367708569196, + "max_y": 5344.629581713669, + "center": [ + 2046.796232708187, + 5344.289043564936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.796232708187, + 5344.289043564936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55552A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.698970618263, + "min_y": 5344.289043564939, + "max_x": 2044.698970618263, + "max_y": 5346.083940125693, + "center": [ + 2044.698970618263, + 5345.186491845316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.698970618263, + 5344.289043564939 + ], + [ + 2044.698970618263, + 5346.083940125693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55552B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2046.882971497204, + "min_y": 5345.354289365173, + "max_x": 2048.295455045463, + "max_y": 5346.139002447539, + "center": [ + 2047.5892132713334, + 5345.746645906356 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55552C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.528331519252, + "min_y": 5368.107157610257, + "max_x": 2060.485821892239, + "max_y": 5368.107157610257, + "center": [ + 2054.5070767057455, + 5368.107157610257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.485821892239, + 5368.107157610257 + ], + [ + 2048.528331519252, + 5368.107157610257 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55552D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.528331519252, + "min_y": 5365.182402442702, + "max_x": 2060.485821892239, + "max_y": 5365.182402442702, + "center": [ + 2054.5070767057455, + 5365.182402442702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5365.182402442702 + ], + [ + 2060.485821892239, + 5365.182402442702 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55552E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5366.644780026479, + "max_x": 2048.528331519252, + "max_y": 5368.107157610257, + "center": [ + 2047.7971427273624, + 5367.375968818367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5368.107157610257 + ], + [ + 2047.065953935473, + 5366.644780026479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55552F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5365.182402442702, + "max_x": 2048.528331519252, + "max_y": 5366.644780026479, + "center": [ + 2047.7971427273624, + 5365.91359123459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5365.182402442702 + ], + [ + 2047.065953935473, + 5366.644780026479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555530", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2060.485821892239, + "min_y": 5365.182402442704, + "max_x": 2060.485821892239, + "max_y": 5368.107157610257, + "center": [ + 2060.485821892239, + 5366.6447800264805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.485821892239, + 5368.107157610257 + ], + [ + 2060.485821892239, + 5365.182402442704 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555531", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.29143564421, + "min_y": 5366.644780026479, + "max_x": 2047.065953935473, + "max_y": 5366.644780026479, + "center": [ + 2045.6786947898415, + 5366.644780026479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.29143564421, + 5366.644780026479 + ], + [ + 2047.065953935473, + 5366.644780026479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555532", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.528331519252, + "min_y": 5373.073207121471, + "max_x": 2060.485821892239, + "max_y": 5373.073207121471, + "center": [ + 2054.5070767057455, + 5373.073207121471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.485821892239, + 5373.073207121471 + ], + [ + 2048.528331519252, + 5373.073207121471 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555533", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.528331519252, + "min_y": 5370.148451953914, + "max_x": 2060.485821892239, + "max_y": 5370.148451953914, + "center": [ + 2054.5070767057455, + 5370.148451953914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5370.148451953914 + ], + [ + 2060.485821892239, + 5370.148451953914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555534", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5371.610829537692, + "max_x": 2048.528331519252, + "max_y": 5373.073207121471, + "center": [ + 2047.7971427273624, + 5372.342018329581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5373.073207121471 + ], + [ + 2047.065953935473, + 5371.610829537692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555535", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.065953935473, + "min_y": 5370.148451953914, + "max_x": 2048.528331519252, + "max_y": 5371.610829537692, + "center": [ + 2047.7971427273624, + 5370.879640745803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.528331519252, + 5370.148451953914 + ], + [ + 2047.065953935473, + 5371.610829537692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555536", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2060.485821892239, + "min_y": 5370.148451953917, + "max_x": 2060.485821892239, + "max_y": 5373.073207121471, + "center": [ + 2060.485821892239, + 5371.610829537694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2060.485821892239, + 5373.073207121471 + ], + [ + 2060.485821892239, + 5370.148451953917 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555537", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2042.461409180261, + "min_y": 5371.610829537692, + "max_x": 2047.065953935473, + "max_y": 5371.610829537692, + "center": [ + 2044.7636815578671, + 5371.610829537692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2042.461409180261, + 5371.610829537692 + ], + [ + 2047.065953935473, + 5371.610829537692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555538", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2049.554019072599, + "min_y": 5366.032591289042, + "max_x": 2057.122625191098, + "max_y": 5367.179349791845, + "center": [ + 2053.3383221318486, + 5366.605970540444 + ] + }, + "raw_value": "WASTE WATER", + "clean_value": "WASTE WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555539", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2049.554019072599, + "min_y": 5370.998640800255, + "max_x": 2057.122625191098, + "max_y": 5372.145399303058, + "center": [ + 2053.3383221318486, + 5371.572020051657 + ] + }, + "raw_value": "WASTE WATER", + "clean_value": "WASTE WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55553A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2040.040522264558, + "min_y": 5365.896555126121, + "max_x": 2041.03940923486, + "max_y": 5365.896555126121, + "center": [ + 2040.539965749709, + 5365.896555126121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2041.03940923486, + 5365.896555126121 + ], + [ + 2040.040522264558, + 5365.896555126121 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55553B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2040.53996574971, + "min_y": 5364.200089628422, + "max_x": 2040.53996574971, + "max_y": 5365.896555126121, + "center": [ + 2040.53996574971, + 5365.048322377272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2040.53996574971, + 5365.896555126121 + ], + [ + 2040.53996574971, + 5364.200089628422 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55553C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2013.918269230253, + "min_y": 5368.239076447742, + "max_x": 2019.6506282961386, + "max_y": 5369.433317919802, + "center": [ + 2016.7844487631958, + 5368.836197183772 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55553D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2011.122021067803, + "min_y": 5367.227767050103, + "max_x": 2022.616941822231, + "max_y": 5367.227767050103, + "center": [ + 2016.8694814450168, + 5367.227767050103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.122021067803, + 5367.227767050103 + ], + [ + 2022.616941822231, + 5367.227767050103 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55553E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2011.122021067803, + "min_y": 5370.403829810147, + "max_x": 2022.616941822239, + "max_y": 5370.403829810147, + "center": [ + 2016.869481445021, + 5370.403829810147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2022.616941822239, + 5370.403829810147 + ], + [ + 2011.122021067803, + 5370.403829810147 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55553F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2011.122021067803, + "min_y": 5367.227767050103, + "max_x": 2011.122021067803, + "max_y": 5370.403829810147, + "center": [ + 2011.122021067803, + 5368.815798430125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.122021067803, + 5370.403829810147 + ], + [ + 2011.122021067803, + 5367.227767050103 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555540", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2022.616941822233, + "min_y": 5367.227767050105, + "max_x": 2024.204973202256, + "max_y": 5368.815798430127, + "center": [ + 2023.4109575122445, + 5368.021782740116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2022.616941822233, + 5367.227767050105 + ], + [ + 2024.204973202256, + 5368.815798430127 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555541", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2022.616941822233, + "min_y": 5368.815798430127, + "max_x": 2024.204973202256, + "max_y": 5370.40382981015, + "center": [ + 2023.4109575122445, + 5369.609814120138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2024.204973202256, + 5368.815798430127 + ], + [ + 2022.616941822233, + 5370.40382981015 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555542", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2010.976969769086, + "min_y": 5370.675166854127, + "max_x": 2019.5776585401074, + "max_y": 5371.571071934442, + "center": [ + 2015.2773141545968, + 5371.123119394285 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555543", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2024.204973202256, + "min_y": 5368.815798430127, + "max_x": 2027.274684395542, + "max_y": 5368.815798430127, + "center": [ + 2025.739828798899, + 5368.815798430127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2024.204973202256, + 5368.815798430127 + ], + [ + 2027.274684395542, + 5368.815798430127 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555544", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.274684395542, + "min_y": 5365.190026229249, + "max_x": 2027.274684395542, + "max_y": 5368.815798430127, + "center": [ + 2027.274684395542, + 5367.002912329688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.274684395542, + 5368.815798430127 + ], + [ + 2027.274684395542, + 5365.190026229249 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555545", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2023.350954157667, + "min_y": 5367.961779385538, + "max_x": 2027.91242896945, + "max_y": 5367.961779385538, + "center": [ + 2025.6316915635584, + 5367.961779385538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2023.350954157667, + 5367.961779385538 + ], + [ + 2027.91242896945, + 5367.961779385538 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555546", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2027.91242896945, + "min_y": 5362.706963291092, + "max_x": 2027.91242896945, + "max_y": 5367.961779385538, + "center": [ + 2027.91242896945, + 5365.334371338315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2027.91242896945, + 5367.961779385538 + ], + [ + 2027.91242896945, + 5362.706963291092 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555547", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.058492787378, + "min_y": 5361.924073144008, + "max_x": 2045.058492787378, + "max_y": 5365.983757928066, + "center": [ + 2045.058492787378, + 5363.953915536036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.058492787378, + 5365.983757928066 + ], + [ + 2045.058492787378, + 5361.924073144008 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555548", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.058492787378, + "min_y": 5365.983757928066, + "max_x": 2047.726976033887, + "max_y": 5365.983757928066, + "center": [ + 2046.3927344106326, + 5365.983757928066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.058492787378, + 5365.983757928066 + ], + [ + 2047.726976033887, + 5365.983757928066 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555549", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.09634675479, + "min_y": 5362.912421045386, + "max_x": 2043.09634675479, + "max_y": 5370.870228009813, + "center": [ + 2043.09634675479, + 5366.8913245276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.09634675479, + 5370.870228009813 + ], + [ + 2043.09634675479, + 5362.912421045386 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55554A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2043.09634675479, + "min_y": 5370.870228009813, + "max_x": 2047.806555463353, + "max_y": 5370.870228009813, + "center": [ + 2045.4514511090715, + 5370.870228009813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2043.09634675479, + 5370.870228009813 + ], + [ + 2047.806555463353, + 5370.870228009813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55554B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.012581319112, + "min_y": 5350.36240160784, + "max_x": 2046.805757791945, + "max_y": 5350.36240160784, + "center": [ + 2046.4091695555285, + 5350.36240160784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5350.36240160784 + ], + [ + 2046.805757791945, + 5350.36240160784 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55554C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2049.413929026127, + "min_y": 5350.385147973176, + "max_x": 2050.479071152471, + "max_y": 5350.385147973176, + "center": [ + 2049.9465000892988, + 5350.385147973176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2049.413929026127, + 5350.385147973176 + ], + [ + 2050.479071152471, + 5350.385147973176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55554D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2050.479071152471, + "min_y": 5349.458043491594, + "max_x": 2051.342319711134, + "max_y": 5351.312252454882, + "center": [ + 2050.9106954318027, + 5350.385147973238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.342319711134, + 5351.312252454882 + ], + [ + 2051.342319711134, + 5349.458043491594 + ], + [ + 2050.479071152471, + 5349.458043491594 + ], + [ + 2050.479071152471, + 5351.312252454882 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55554E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2046.5605670635975, + "min_y": 5348.111290989498, + "max_x": 2051.1082810309526, + "max_y": 5352.659004956853, + "center": [ + 2048.834424047275, + 5350.385147973176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.834424047275, + 5350.385147973176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55554F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2047.295906150049, + "min_y": 5351.334776897491, + "max_x": 2048.7083896983077, + "max_y": 5352.119489979857, + "center": [ + 2048.002147924178, + 5351.727133438673 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555550", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2053.640008496191, + "min_y": 5350.777500738552, + "max_x": 2054.58166419503, + "max_y": 5351.562213820917, + "center": [ + 2054.1108363456106, + 5351.169857279734 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555551", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2052.407461837478, + "min_y": 5348.641341123536, + "max_x": 2055.8950755368824, + "max_y": 5352.128954822941, + "center": [ + 2054.15126868718, + 5350.385147973238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.15126868718, + 5350.385147973238 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555552", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2053.106737103243, + "min_y": 5349.216782778209, + "max_x": 2054.9900485009216, + "max_y": 5350.001495860574, + "center": [ + 2054.048392802082, + 5349.609139319391 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555553", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.342319711134, + "min_y": 5350.385147973238, + "max_x": 2052.407461837478, + "max_y": 5350.385147973238, + "center": [ + 2051.874890774306, + 5350.385147973238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.342319711134, + 5350.385147973238 + ], + [ + 2052.407461837478, + 5350.385147973238 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555554", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.402014539996, + "min_y": 5349.830400778671, + "max_x": 2048.998374959531, + "max_y": 5350.187466588542, + "center": [ + 2048.7001947497633, + 5350.008933683606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.998374959531, + 5349.830400778671 + ], + [ + 2048.402014539996, + 5350.187466588542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555555", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.22131185854, + "min_y": 5350.53733662713, + "max_x": 2047.817672278075, + "max_y": 5350.894402437003, + "center": [ + 2047.5194920683075, + 5350.715869532067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.817672278075, + 5350.53733662713 + ], + [ + 2047.22131185854, + 5350.894402437003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555556", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.998374959531, + "min_y": 5349.830400778671, + "max_x": 2048.998374959531, + "max_y": 5350.894402437003, + "center": [ + 2048.998374959531, + 5350.3624016078375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.998374959531, + 5350.894402437003 + ], + [ + 2048.998374959531, + 5349.830400778671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555557", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.22131185854, + "min_y": 5349.830400778671, + "max_x": 2047.22131185854, + "max_y": 5350.894402437003, + "center": [ + 2047.22131185854, + 5350.3624016078375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.22131185854, + 5350.894402437003 + ], + [ + 2047.22131185854, + 5349.830400778671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555558", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.402014539996, + "min_y": 5350.53733662713, + "max_x": 2048.998374959531, + "max_y": 5350.894402437003, + "center": [ + 2048.7001947497633, + 5350.715869532067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.998374959531, + 5350.894402437003 + ], + [ + 2048.402014539996, + 5350.53733662713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555559", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2047.22131185854, + "min_y": 5349.830400778671, + "max_x": 2047.817672278075, + "max_y": 5350.187466588545, + "center": [ + 2047.5194920683075, + 5350.008933683608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2047.817672278075, + 5350.187466588545 + ], + [ + 2047.22131185854, + 5349.830400778671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55555A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.805757791945, + "min_y": 5349.810729806891, + "max_x": 2046.805757791945, + "max_y": 5350.914073408788, + "center": [ + 2046.805757791945, + 5350.362401607839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.805757791945, + 5350.914073408788 + ], + [ + 2046.805757791945, + 5349.810729806891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55555B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2049.413929026127, + "min_y": 5349.810729806891, + "max_x": 2049.413929026127, + "max_y": 5350.914073408788, + "center": [ + 2049.413929026127, + 5350.362401607839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2049.413929026127, + 5350.914073408788 + ], + [ + 2049.413929026127, + 5349.810729806891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55555C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2047.7693052603033, + "min_y": 5350.021863459104, + "max_x": 2048.450381557768, + "max_y": 5350.702939756569, + "center": [ + 2048.109843409036, + 5350.362401607837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.109843409036, + 5350.362401607837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55555D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.012581319112, + "min_y": 5347.39789079159, + "max_x": 2053.627471190637, + "max_y": 5347.39789079159, + "center": [ + 2049.8200262548744, + 5347.39789079159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5347.39789079159 + ], + [ + 2053.627471190637, + 5347.39789079159 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55555E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2055.223727938686, + "min_y": 5346.865889962422, + "max_x": 2055.820088358224, + "max_y": 5347.222955772292, + "center": [ + 2055.5219081484547, + 5347.044422867357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.820088358224, + 5346.865889962422 + ], + [ + 2055.223727938686, + 5347.222955772292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55555F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2054.043025257231, + "min_y": 5347.572825810879, + "max_x": 2054.639385676765, + "max_y": 5347.929891620752, + "center": [ + 2054.341205466998, + 5347.7513587158155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.639385676765, + 5347.572825810879 + ], + [ + 2054.043025257231, + 5347.929891620752 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555560", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2055.820088358224, + "min_y": 5346.865889962422, + "max_x": 2055.820088358224, + "max_y": 5347.929891620752, + "center": [ + 2055.820088358224, + 5347.397890791587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.820088358224, + 5347.929891620752 + ], + [ + 2055.820088358224, + 5346.865889962422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555561", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2054.043025257231, + "min_y": 5346.865889962422, + "max_x": 2054.043025257231, + "max_y": 5347.929891620752, + "center": [ + 2054.043025257231, + 5347.397890791587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.043025257231, + 5347.929891620752 + ], + [ + 2054.043025257231, + 5346.865889962422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555562", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2055.223727938686, + "min_y": 5347.572825810879, + "max_x": 2055.820088358224, + "max_y": 5347.929891620752, + "center": [ + 2055.5219081484547, + 5347.7513587158155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.820088358224, + 5347.929891620752 + ], + [ + 2055.223727938686, + 5347.572825810879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555563", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2054.043025257231, + "min_y": 5346.865889962422, + "max_x": 2054.639385676765, + "max_y": 5347.222955772294, + "center": [ + 2054.341205466998, + 5347.044422867359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.639385676765, + 5347.222955772294 + ], + [ + 2054.043025257231, + 5346.865889962422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555564", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2053.627471190637, + "min_y": 5346.84621899064, + "max_x": 2053.627471190637, + "max_y": 5347.949562592538, + "center": [ + 2053.627471190637, + 5347.39789079159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.627471190637, + 5347.949562592538 + ], + [ + 2053.627471190637, + 5346.84621899064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555565", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2056.235642424818, + "min_y": 5346.84621899064, + "max_x": 2056.235642424818, + "max_y": 5347.949562592538, + "center": [ + 2056.235642424818, + 5347.39789079159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2056.235642424818, + 5347.949562592538 + ], + [ + 2056.235642424818, + 5346.84621899064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555566", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2054.591018658996, + "min_y": 5347.057352642854, + "max_x": 2055.2720949564605, + "max_y": 5347.73842894032, + "center": [ + 2054.931556807728, + 5347.397890791587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2054.931556807728, + 5347.397890791587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555567", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.012581319112, + "min_y": 5346.900664068096, + "max_x": 2053.627471190637, + "max_y": 5346.900664068096, + "center": [ + 2049.8200262548744, + 5346.900664068096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5346.900664068096 + ], + [ + 2053.627471190637, + 5346.900664068096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555568", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.012581319112, + "min_y": 5349.833947972021, + "max_x": 2050.479071152471, + "max_y": 5349.833947972021, + "center": [ + 2048.2458262357914, + 5349.833947972021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.012581319112, + 5349.833947972021 + ], + [ + 2050.479071152471, + 5349.833947972021 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555569", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.150617631953, + "min_y": 5343.791307085407, + "max_x": 2044.150617631953, + "max_y": 5346.083940125693, + "center": [ + 2044.150617631953, + 5344.9376236055505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.150617631953, + 5346.083940125693 + ], + [ + 2044.150617631953, + 5343.791307085407 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55556A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2021.77894800846, + "min_y": 5347.547492472961, + "max_x": 2025.356545170681, + "max_y": 5347.547492472961, + "center": [ + 2023.5677465895706, + 5347.547492472961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2021.77894800846, + 5347.547492472961 + ], + [ + 2025.356545170681, + 5347.547492472961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55556B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.150617631953, + "min_y": 5343.791307085407, + "max_x": 2045.492147091097, + "max_y": 5343.791307085407, + "center": [ + 2044.8213823615251, + 5343.791307085407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.150617631953, + 5343.791307085407 + ], + [ + 2045.492147091097, + 5343.791307085407 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55556C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.122431528722, + "min_y": 5194.990125639522, + "max_x": 1929.122431528722, + "max_y": 5199.095935150649, + "center": [ + 1929.122431528722, + 5197.043030395085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.122431528722, + 5194.990125639522 + ], + [ + 1929.122431528722, + 5199.095935150649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55556D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5198.550147695313, + "max_x": 1929.122431528722, + "max_y": 5198.550147695313, + "center": [ + 1923.5894639801625, + 5198.550147695313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.122431528722, + 5198.550147695313 + ], + [ + 1918.056496431603, + 5198.550147695313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55556E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5195.535913094856, + "max_x": 1929.122431528722, + "max_y": 5195.535913094856, + "center": [ + 1923.5894639801625, + 5195.535913094856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.122431528722, + 5195.535913094856 + ], + [ + 1918.056496431603, + 5195.535913094856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55556F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5194.990125639522, + "max_x": 1918.056496431603, + "max_y": 5199.095935150649, + "center": [ + 1918.056496431603, + 5197.043030395085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5194.990125639522 + ], + [ + 1918.056496431603, + 5199.095935150649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555570", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.122431528725, + "min_y": 5198.550147695313, + "max_x": 1930.148864849775, + "max_y": 5198.550147695313, + "center": [ + 1929.6356481892499, + 5198.550147695313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.122431528725, + 5198.550147695313 + ], + [ + 1930.148864849775, + 5198.550147695313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555571", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.122431528722, + "min_y": 5195.535913094856, + "max_x": 1930.180061624011, + "max_y": 5195.535913094856, + "center": [ + 1929.6512465763665, + 5195.535913094856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.122431528722, + 5195.535913094856 + ], + [ + 1930.180061624011, + 5195.535913094856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555573", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5197.947300775223, + "max_x": 1929.122431528722, + "max_y": 5197.947300775223, + "center": [ + 1923.5894639801625, + 5197.947300775223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5197.947300775223 + ], + [ + 1929.122431528722, + 5197.947300775223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555574", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5197.344453855129, + "max_x": 1929.122431528722, + "max_y": 5197.344453855129, + "center": [ + 1923.5894639801625, + 5197.344453855129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5197.344453855129 + ], + [ + 1929.122431528722, + 5197.344453855129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555575", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5196.741606935042, + "max_x": 1929.122431528722, + "max_y": 5196.741606935042, + "center": [ + 1923.5894639801625, + 5196.741606935042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5196.741606935042 + ], + [ + 1929.122431528722, + 5196.741606935042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555576", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.056496431603, + "min_y": 5196.138760014946, + "max_x": 1929.122431528722, + "max_y": 5196.138760014946, + "center": [ + 1923.5894639801625, + 5196.138760014946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5196.138760014946 + ], + [ + 1929.122431528722, + 5196.138760014946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555577", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.030063110549, + "min_y": 5198.550147695313, + "max_x": 1918.056496431603, + "max_y": 5198.550147695313, + "center": [ + 1917.543279771076, + 5198.550147695313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5198.550147695313 + ], + [ + 1917.030063110549, + 5198.550147695313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555578", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.998866336313, + "min_y": 5195.535913094856, + "max_x": 1918.056496431603, + "max_y": 5195.535913094856, + "center": [ + 1917.527681383958, + 5195.535913094856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.056496431603, + 5195.535913094856 + ], + [ + 1916.998866336313, + 5195.535913094856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.408462425195, + "min_y": 5198.550147695313, + "max_x": 1920.408462425195, + "max_y": 5199.36494677698, + "center": [ + 1920.408462425195, + 5198.957547236147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.408462425195, + 5198.550147695313 + ], + [ + 1920.408462425195, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.755733900837, + "min_y": 5199.754703342061, + "max_x": 1921.065527371602, + "max_y": 5199.754703342061, + "center": [ + 1920.4106306362196, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.065527371602, + 5199.754703342061 + ], + [ + 1919.755733900837, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.755733900837, + "min_y": 5199.36494677698, + "max_x": 1921.065527371602, + "max_y": 5199.36494677698, + "center": [ + 1920.4106306362196, + 5199.36494677698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.065527371602, + 5199.36494677698 + ], + [ + 1919.755733900837, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.74621773143, + "min_y": 5199.754703342061, + "max_x": 1921.070707118961, + "max_y": 5199.754703342061, + "center": [ + 1920.4084624251955, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.74621773143, + 5199.754703342061 + ], + [ + 1921.070707118961, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.74621773143, + "min_y": 5199.754703342061, + "max_x": 1921.070707118961, + "max_y": 5199.754703342061, + "center": [ + 1920.4084624251955, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.74621773143, + 5199.754703342061 + ], + [ + 1921.070707118961, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55557F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1925.859816730903, + "min_y": 5220.000065249926, + "max_x": 1927.4273018556403, + "max_y": 5221.306302853874, + "center": [ + 1926.6435592932717, + 5220.6531840519 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555580", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1924.259626912129, + "min_y": 5216.848712880174, + "max_x": 1929.5051827661791, + "max_y": 5222.094268734224, + "center": [ + 1926.882404839154, + 5219.471490807199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1926.882404839154, + 5219.471490807199 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555581", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1924.708988745885, + "min_y": 5217.722423571443, + "max_x": 1928.627701557728, + "max_y": 5219.028661175391, + "center": [ + 1926.6683451518065, + 5218.3755423734165 + ] + }, + "raw_value": "10119", + "clean_value": "10119", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555582", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1920.408462425195, + "min_y": 5199.754703342061, + "max_x": 1920.408462425195, + "max_y": 5214.658689036908, + "center": [ + 1920.408462425195, + 5207.206696189484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.408462425195, + 5199.754703342061 + ], + [ + 1920.408462425195, + 5214.658689036908 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555583", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.51965701787, + "min_y": 5193.871896450218, + "max_x": 1924.814314395219, + "max_y": 5194.364024210194, + "center": [ + 1924.6669857065444, + 5194.117960330206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.814314395219, + 5194.364024210194 + ], + [ + 1924.51965701787, + 5193.871896450218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555584", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.936280348071, + "min_y": 5192.897558538474, + "max_x": 1924.23093772542, + "max_y": 5193.389686298443, + "center": [ + 1924.0836090367457, + 5193.143622418458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.23093772542, + 5193.389686298443 + ], + [ + 1923.936280348071, + 5192.897558538474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555585", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.936280348071, + "min_y": 5194.364024210194, + "max_x": 1924.814314395219, + "max_y": 5194.364024210194, + "center": [ + 1924.375297371645, + 5194.364024210194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.936280348071, + 5194.364024210194 + ], + [ + 1924.814314395219, + 5194.364024210194 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555586", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.936280348071, + "min_y": 5192.897558538474, + "max_x": 1924.814314395219, + "max_y": 5192.897558538474, + "center": [ + 1924.375297371645, + 5192.897558538474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.936280348071, + 5192.897558538474 + ], + [ + 1924.814314395219, + 5192.897558538474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555587", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.936280348071, + "min_y": 5193.871896450218, + "max_x": 1924.23093772542, + "max_y": 5194.364024210194, + "center": [ + 1924.0836090367457, + 5194.117960330206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.936280348071, + 5194.364024210194 + ], + [ + 1924.23093772542, + 5193.871896450218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555588", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.51965701787, + "min_y": 5192.897558538474, + "max_x": 1924.814314395219, + "max_y": 5193.389686298443, + "center": [ + 1924.6669857065444, + 5193.143622418458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.51965701787, + 5193.389686298443 + ], + [ + 1924.814314395219, + 5192.897558538474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555589", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.920047494641, + "min_y": 5192.554635558942, + "max_x": 1924.830547248647, + "max_y": 5192.554635558942, + "center": [ + 1924.3752973716441, + 5192.554635558942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.920047494641, + 5192.554635558942 + ], + [ + 1924.830547248647, + 5192.554635558942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.920047494641, + "min_y": 5194.706947189719, + "max_x": 1924.830547248647, + "max_y": 5194.706947189719, + "center": [ + 1924.3752973716441, + 5194.706947189719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.920047494641, + 5194.706947189719 + ], + [ + 1924.830547248647, + 5194.706947189719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1924.0942789290564, + "min_y": 5193.349772931742, + "max_x": 1924.6563158142396, + "max_y": 5193.911809816926, + "center": [ + 1924.375297371648, + 5193.630791374334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.375297371648, + 5193.630791374334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.375297371645, + "min_y": 5194.706947189719, + "max_x": 1924.375297371645, + "max_y": 5195.548386640751, + "center": [ + 1924.375297371645, + 5195.127666915236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.375297371645, + 5194.706947189719 + ], + [ + 1924.375297371645, + 5195.548386640751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.989213581851, + "min_y": 5199.734510125871, + "max_x": 1930.283870959203, + "max_y": 5200.226637885847, + "center": [ + 1930.1365422705271, + 5199.980574005858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.283870959203, + 5199.734510125871 + ], + [ + 1929.989213581851, + 5200.226637885847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912055, + "min_y": 5200.708848037622, + "max_x": 1929.700494289404, + "max_y": 5201.200975797591, + "center": [ + 1929.5531656007297, + 5200.954911917606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.700494289404, + 5200.708848037622 + ], + [ + 1929.405836912055, + 5201.200975797591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55558F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912055, + "min_y": 5199.734510125871, + "max_x": 1930.283870959203, + "max_y": 5199.734510125871, + "center": [ + 1929.844853935629, + 5199.734510125871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912055, + 5199.734510125871 + ], + [ + 1930.283870959203, + 5199.734510125871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555590", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912055, + "min_y": 5201.200975797591, + "max_x": 1930.283870959203, + "max_y": 5201.200975797591, + "center": [ + 1929.844853935629, + 5201.200975797591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912055, + 5201.200975797591 + ], + [ + 1930.283870959203, + 5201.200975797591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555591", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912055, + "min_y": 5199.734510125871, + "max_x": 1929.700494289404, + "max_y": 5200.226637885847, + "center": [ + 1929.5531656007297, + 5199.980574005858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912055, + 5199.734510125871 + ], + [ + 1929.700494289404, + 5200.226637885847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555592", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.989213581851, + "min_y": 5200.708848037622, + "max_x": 1930.283870959203, + "max_y": 5201.200975797591, + "center": [ + 1930.1365422705271, + 5200.954911917606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.989213581851, + 5200.708848037622 + ], + [ + 1930.283870959203, + 5201.200975797591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555593", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.389604058625, + "min_y": 5201.543898777124, + "max_x": 1930.300103812631, + "max_y": 5201.543898777124, + "center": [ + 1929.8448539356282, + 5201.543898777124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.389604058625, + 5201.543898777124 + ], + [ + 1930.300103812631, + 5201.543898777124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555594", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.389604058625, + "min_y": 5199.391587146346, + "max_x": 1930.300103812631, + "max_y": 5199.391587146346, + "center": [ + 1929.8448539356282, + 5199.391587146346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.389604058625, + 5199.391587146346 + ], + [ + 1930.300103812631, + 5199.391587146346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555595", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1929.5638354930375, + "min_y": 5200.186724519141, + "max_x": 1930.1258723782207, + "max_y": 5200.748761404324, + "center": [ + 1929.844853935629, + 5200.467742961732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935629, + 5200.467742961732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555596", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.844853935626, + "min_y": 5198.550147695313, + "max_x": 1929.844853935626, + "max_y": 5199.391587146346, + "center": [ + 1929.844853935626, + 5198.97086742083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935626, + 5199.391587146346 + ], + [ + 1929.844853935626, + 5198.550147695313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555597", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.844853935626, + "min_y": 5201.543898777124, + "max_x": 1929.844853935626, + "max_y": 5202.939756629173, + "center": [ + 1929.844853935626, + 5202.241827703148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935626, + 5201.543898777124 + ], + [ + 1929.844853935626, + 5202.939756629173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555598", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.844853935626, + "min_y": 5202.939756629173, + "max_x": 1930.928386785527, + "max_y": 5202.939756629173, + "center": [ + 1930.3866203605764, + 5202.939756629173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935626, + 5202.939756629173 + ], + [ + 1930.928386785527, + 5202.939756629173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555599", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.928386785527, + "min_y": 5202.13191755619, + "max_x": 1930.928386785527, + "max_y": 5202.939756629173, + "center": [ + 1930.928386785527, + 5202.5358370926815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.928386785527, + 5202.939756629173 + ], + [ + 1930.928386785527, + 5202.13191755619 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.768259981587, + "min_y": 5214.109917757438, + "max_x": 1937.383419681552, + "max_y": 5214.478239479126, + "center": [ + 1937.0758398315695, + 5214.294078618283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.383419681552, + 5214.109917757438 + ], + [ + 1936.768259981587, + 5214.478239479126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.550337591903, + "min_y": 5214.839138594688, + "max_x": 1936.165497291868, + "max_y": 5215.207460316374, + "center": [ + 1935.8579174418855, + 5215.023299455531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.165497291868, + 5214.839138594688 + ], + [ + 1935.550337591903, + 5215.207460316374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.383419681552, + "min_y": 5214.109917757438, + "max_x": 1937.383419681552, + "max_y": 5215.207460316374, + "center": [ + 1937.383419681552, + 5214.658689036905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.383419681552, + 5215.207460316374 + ], + [ + 1937.383419681552, + 5214.109917757438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.550337591903, + "min_y": 5214.109917757438, + "max_x": 1935.550337591903, + "max_y": 5215.207460316374, + "center": [ + 1935.550337591903, + 5214.658689036905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.550337591903, + 5215.207460316374 + ], + [ + 1935.550337591903, + 5214.109917757438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.768259981589, + "min_y": 5214.839138594688, + "max_x": 1937.383419681552, + "max_y": 5215.207460316374, + "center": [ + 1937.0758398315704, + 5215.023299455531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.383419681552, + 5215.207460316374 + ], + [ + 1936.768259981589, + 5214.839138594688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55559F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.550337591903, + "min_y": 5214.109917757438, + "max_x": 1936.165497291868, + "max_y": 5214.478239479126, + "center": [ + 1935.8579174418855, + 5214.294078618283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.165497291868, + 5214.478239479126 + ], + [ + 1935.550337591903, + 5214.109917757438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.121683867491, + "min_y": 5214.089626690654, + "max_x": 1935.121683867491, + "max_y": 5215.22775138316, + "center": [ + 1935.121683867491, + 5214.658689036907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.121683867491, + 5215.22775138316 + ], + [ + 1935.121683867491, + 5214.089626690654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.812073405964, + "min_y": 5214.089626690654, + "max_x": 1937.812073405964, + "max_y": 5215.22775138316, + "center": [ + 1937.812073405964, + 5214.658689036907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.812073405964, + 5215.22775138316 + ], + [ + 1937.812073405964, + 5214.089626690654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555A2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1936.1156055834895, + "min_y": 5214.307415983665, + "max_x": 1936.8181516899685, + "max_y": 5215.009962090144, + "center": [ + 1936.466878636729, + 5214.658689036904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.466878636729, + 5214.658689036904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1926.882404839154, + "min_y": 5214.658689036908, + "max_x": 1926.882404839156, + "max_y": 5216.848712880173, + "center": [ + 1926.882404839155, + 5215.75370095854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1926.882404839154, + 5216.848712880173 + ], + [ + 1926.882404839156, + 5214.658689036908 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5555A4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5215.998925572932, + "max_x": 1954.373468853471, + "max_y": 5215.998925572932, + "center": [ + 1949.522836502108, + 5215.998925572932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.672204150745, + 5215.998925572932 + ], + [ + 1954.373468853471, + 5215.998925572932 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555A5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5213.318452500875, + "max_x": 1954.373468853479, + "max_y": 5213.318452500875, + "center": [ + 1949.522836502112, + 5213.318452500875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.373468853479, + 5213.318452500875 + ], + [ + 1944.672204150745, + 5213.318452500875 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5213.318452500875, + "max_x": 1944.672204150745, + "max_y": 5215.998925572932, + "center": [ + 1944.672204150745, + 5214.6586890369035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.672204150745, + 5213.318452500875 + ], + [ + 1944.672204150745, + 5215.998925572932 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555A7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1954.373468853477, + "min_y": 5214.658689036903, + "max_x": 1955.713705389504, + "max_y": 5215.99892557293, + "center": [ + 1955.0435871214904, + 5215.328807304916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.373468853477, + 5215.99892557293 + ], + [ + 1955.713705389504, + 5214.658689036903 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555A8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1954.373468853477, + "min_y": 5213.318452500874, + "max_x": 1955.713705389504, + "max_y": 5214.658689036903, + "center": [ + 1955.0435871214904, + 5213.988570768888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.713705389504, + 5214.658689036903 + ], + [ + 1954.373468853477, + 5213.318452500874 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555A9", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1920.408462425195, + "min_y": 5214.658689036907, + "max_x": 1935.121683867491, + "max_y": 5214.658689036908, + "center": [ + 1927.765073146343, + 5214.658689036907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.408462425195, + 5214.658689036908 + ], + [ + 1935.121683867491, + 5214.658689036907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555AA", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1937.812073405964, + "min_y": 5214.658689036906, + "max_x": 1944.672204150745, + "max_y": 5214.658689036907, + "center": [ + 1941.2421387783545, + 5214.658689036907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.812073405964, + 5214.658689036907 + ], + [ + 1944.672204150745, + 5214.658689036906 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555AB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1947.535246986592, + "min_y": 5214.004052729221, + "max_x": 1950.2229622275363, + "max_y": 5215.497227863079, + "center": [ + 1948.8791046070642, + 5214.75064029615 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555AC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.649812439983, + "min_y": 5216.510190014526, + "max_x": 1955.7287445935235, + "max_y": 5217.63007136492, + "center": [ + 1950.6892785167533, + 5217.070130689723 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555AD", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1934.631578817687, + "min_y": 5212.646190269064, + "max_x": 1942.0227957302834, + "max_y": 5213.766071619458, + "center": [ + 1938.3271872739851, + 5213.2061309442615 + ] + }, + "raw_value": "E10119BA-02", + "clean_value": "E10119BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5555AE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1930.582572221856, + "min_y": 5200.061255316235, + "max_x": 1937.9737891344525, + "max_y": 5201.181136666628, + "center": [ + 1934.2781806781543, + 5200.621195991431 + ] + }, + "raw_value": "E10119BA-05", + "clean_value": "E10119BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5555AF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1924.873305277967, + "min_y": 5193.365606455991, + "max_x": 1932.2645221905634, + "max_y": 5194.485487806384, + "center": [ + 1928.5689137342652, + 5193.925547131188 + ] + }, + "raw_value": "E10119BA-06", + "clean_value": "E10119BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5555B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.805208876215, + "min_y": 5218.710791452625, + "max_x": 1922.805208876215, + "max_y": 5220.215989219597, + "center": [ + 1922.805208876215, + 5219.463390336111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.805208876215, + 5218.710791452625 + ], + [ + 1922.805208876215, + 5220.215989219597 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5555B1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1920.631792782947, + "min_y": 5221.396602937613, + "max_x": 1924.55050559479, + "max_y": 5222.702840541561, + "center": [ + 1922.5911491888685, + 5222.049721739588 + ] + }, + "raw_value": "10119", + "clean_value": "10119", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5555B2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1921.740984444339, + "min_y": 5223.713068142052, + "max_x": 1923.3084695690761, + "max_y": 5225.019305746, + "center": [ + 1922.5247270067075, + 5224.366186944026 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5555B3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1919.9431444813872, + "min_y": 5220.215989219596, + "max_x": 1925.6672732710426, + "max_y": 5225.940118009252, + "center": [ + 1922.805208876215, + 5223.078053614424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.805208876215, + 5223.078053614424 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5555B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.236146529962, + "min_y": 5218.710791452625, + "max_x": 1923.374271222466, + "max_y": 5218.710791452625, + "center": [ + 1922.805208876214, + 5218.710791452625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.236146529962, + 5218.710791452625 + ], + [ + 1923.374271222466, + 5218.710791452625 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555B5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1922.4539358229754, + "min_y": 5217.116380507542, + "max_x": 1923.1564819294545, + "max_y": 5217.818926614021, + "center": [ + 1922.805208876215, + 5217.467653560781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.805208876215, + 5217.467653560781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.256437596746, + "min_y": 5216.224515668936, + "max_x": 1923.353980155685, + "max_y": 5216.224515668936, + "center": [ + 1922.8052088762156, + 5216.224515668936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.353980155685, + 5216.224515668936 + ], + [ + 1922.256437596746, + 5216.224515668936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.250280368739, + "min_y": 5218.384194605603, + "max_x": 1923.360137383691, + "max_y": 5218.384194605603, + "center": [ + 1922.805208876215, + 5218.384194605603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.250280368739, + 5218.384194605603 + ], + [ + 1923.360137383691, + 5218.384194605603 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.256437596746, + "min_y": 5216.551112515954, + "max_x": 1922.624759318435, + "max_y": 5217.166272215919, + "center": [ + 1922.4405984575906, + 5216.858692365937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.624759318435, + 5217.166272215919 + ], + [ + 1922.256437596746, + 5216.551112515954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.256437596746, + "min_y": 5216.551112515954, + "max_x": 1923.353980155685, + "max_y": 5216.551112515954, + "center": [ + 1922.8052088762156, + 5216.551112515954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.256437596746, + 5216.551112515954 + ], + [ + 1923.353980155685, + 5216.551112515954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.985658433996, + "min_y": 5216.551112515954, + "max_x": 1923.353980155685, + "max_y": 5217.166272215919, + "center": [ + 1923.1698192948404, + 5216.858692365937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.353980155685, + 5216.551112515954 + ], + [ + 1922.985658433996, + 5217.166272215919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.256437596746, + "min_y": 5217.769034905638, + "max_x": 1922.624759318435, + "max_y": 5218.384194605603, + "center": [ + 1922.4405984575906, + 5218.0766147556205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.624759318435, + 5217.769034905638 + ], + [ + 1922.256437596746, + 5218.384194605603 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.985658433996, + "min_y": 5217.769034905638, + "max_x": 1923.353980155685, + "max_y": 5218.384194605603, + "center": [ + 1923.1698192948404, + 5218.0766147556205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.353980155685, + 5218.384194605603 + ], + [ + 1922.985658433996, + 5217.769034905638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555BD", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1922.805208876215, + "min_y": 5214.658689036908, + "max_x": 1922.805208876215, + "max_y": 5216.224515668936, + "center": [ + 1922.805208876215, + 5215.441602352922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.805208876215, + 5216.224515668936 + ], + [ + 1922.805208876215, + 5214.658689036908 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.855221133275, + "min_y": 5215.843051467466, + "max_x": 1930.149878510627, + "max_y": 5216.335179227442, + "center": [ + 1930.002549821951, + 5216.089115347453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.149878510627, + 5215.843051467466 + ], + [ + 1929.855221133275, + 5216.335179227442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.271844463478, + "min_y": 5216.817389379217, + "max_x": 1929.566501840827, + "max_y": 5217.309517139186, + "center": [ + 1929.4191731521523, + 5217.063453259201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.566501840827, + 5216.817389379217 + ], + [ + 1929.271844463478, + 5217.309517139186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.271844463478, + "min_y": 5215.843051467466, + "max_x": 1930.149878510627, + "max_y": 5215.843051467466, + "center": [ + 1929.7108614870526, + 5215.843051467466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.271844463478, + 5215.843051467466 + ], + [ + 1930.149878510627, + 5215.843051467466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.271844463478, + "min_y": 5217.309517139186, + "max_x": 1930.149878510627, + "max_y": 5217.309517139186, + "center": [ + 1929.7108614870526, + 5217.309517139186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.271844463478, + 5217.309517139186 + ], + [ + 1930.149878510627, + 5217.309517139186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.271844463478, + "min_y": 5215.843051467466, + "max_x": 1929.566501840827, + "max_y": 5216.335179227442, + "center": [ + 1929.4191731521523, + 5216.089115347453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.271844463478, + 5215.843051467466 + ], + [ + 1929.566501840827, + 5216.335179227442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.855221133275, + "min_y": 5216.817389379217, + "max_x": 1930.149878510627, + "max_y": 5217.309517139186, + "center": [ + 1930.002549821951, + 5217.063453259201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.855221133275, + 5216.817389379217 + ], + [ + 1930.149878510627, + 5217.309517139186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.255611610048, + "min_y": 5217.652440118718, + "max_x": 1930.166111364054, + "max_y": 5217.652440118718, + "center": [ + 1929.7108614870508, + 5217.652440118718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.255611610048, + 5217.652440118718 + ], + [ + 1930.166111364054, + 5217.652440118718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.255611610048, + "min_y": 5215.500128487941, + "max_x": 1930.166111364054, + "max_y": 5215.500128487941, + "center": [ + 1929.7108614870508, + 5215.500128487941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.255611610048, + 5215.500128487941 + ], + [ + 1930.166111364054, + 5215.500128487941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1929.4298430444614, + "min_y": 5216.2952658607355, + "max_x": 1929.9918799296447, + "max_y": 5216.857302745919, + "center": [ + 1929.710861487053, + 5216.576284303327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.710861487053, + 5216.576284303327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.71086148705, + "min_y": 5214.658689036908, + "max_x": 1929.71086148705, + "max_y": 5215.500128487941, + "center": [ + 1929.71086148705, + 5215.0794087624245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.71086148705, + 5215.500128487941 + ], + [ + 1929.71086148705, + 5214.658689036908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.71086148705, + "min_y": 5217.652440118718, + "max_x": 1929.71086148705, + "max_y": 5219.048297970767, + "center": [ + 1929.71086148705, + 5218.350369044742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.71086148705, + 5217.652440118718 + ], + [ + 1929.71086148705, + 5219.048297970767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.71086148705, + "min_y": 5219.048297970767, + "max_x": 1930.794394336951, + "max_y": 5219.048297970767, + "center": [ + 1930.2526279120004, + 5219.048297970767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.71086148705, + 5219.048297970767 + ], + [ + 1930.794394336951, + 5219.048297970767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.794394336951, + "min_y": 5218.240458897785, + "max_x": 1930.794394336951, + "max_y": 5219.048297970767, + "center": [ + 1930.794394336951, + 5218.6443784342755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.794394336951, + 5219.048297970767 + ], + [ + 1930.794394336951, + 5218.240458897785 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.746046228726, + "min_y": 5218.350370396692, + "max_x": 1932.746046228726, + "max_y": 5220.102083294389, + "center": [ + 1932.746046228726, + 5219.22622684554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.746046228726, + 5218.350370396692 + ], + [ + 1932.746046228726, + 5220.102083294389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555CC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1932.746046228729, + "min_y": 5214.658689036907, + "max_x": 1932.746046228729, + "max_y": 5216.654265793221, + "center": [ + 1932.746046228729, + 5215.656477415065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.746046228729, + 5216.654265793221 + ], + [ + 1932.746046228729, + 5214.658689036907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.431011738172, + "min_y": 5218.845386440816, + "max_x": 1933.061080719279, + "max_y": 5219.475455421928, + "center": [ + 1932.7460462287254, + 5219.160420931372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.431011738172, + 5219.475455421928 + ], + [ + 1933.061080719279, + 5218.845386440816 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.431011738172, + "min_y": 5219.16042093137, + "max_x": 1933.061080719279, + "max_y": 5219.790489912481, + "center": [ + 1932.7460462287254, + 5219.475455421925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.061080719279, + 5219.16042093137 + ], + [ + 1932.431011738172, + 5219.790489912481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.431011738172, + "min_y": 5219.475455421928, + "max_x": 1933.061080719279, + "max_y": 5220.105524403038, + "center": [ + 1932.7460462287254, + 5219.790489912482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.431011738172, + 5220.105524403038 + ], + [ + 1933.061080719279, + 5219.475455421928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.746046228726, + "min_y": 5218.350370396692, + "max_x": 1932.746046228726, + "max_y": 5220.105524403038, + "center": [ + 1932.746046228726, + 5219.227947399864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.746046228726, + 5218.350370396692 + ], + [ + 1932.746046228726, + 5220.105524403038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.11597724761, + "min_y": 5217.090232434472, + "max_x": 1932.746046228726, + "max_y": 5218.350370396692, + "center": [ + 1932.431011738168, + 5217.720301415582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.746046228726, + 5218.350370396692 + ], + [ + 1932.11597724761, + 5217.090232434472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.11597724761, + "min_y": 5217.090232434472, + "max_x": 1933.376115209838, + "max_y": 5217.090232434472, + "center": [ + 1932.746046228724, + 5217.090232434472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.11597724761, + 5217.090232434472 + ], + [ + 1933.376115209838, + 5217.090232434472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.746046228726, + "min_y": 5217.090232434472, + "max_x": 1933.376115209838, + "max_y": 5218.350370396692, + "center": [ + 1933.061080719282, + 5217.720301415582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.376115209838, + 5217.090232434472 + ], + [ + 1932.746046228726, + 5218.350370396692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.746046228726, + "min_y": 5218.350370396692, + "max_x": 1934.006184190948, + "max_y": 5218.980439377807, + "center": [ + 1933.376115209837, + 5218.66540488725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.746046228726, + 5218.350370396692 + ], + [ + 1934.006184190948, + 5218.980439377807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.006184190948, + "min_y": 5217.720301415586, + "max_x": 1934.006184190948, + "max_y": 5218.980439377807, + "center": [ + 1934.006184190948, + 5218.350370396696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.006184190948, + 5218.980439377807 + ], + [ + 1934.006184190948, + 5217.720301415586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.746046228726, + "min_y": 5217.720301415586, + "max_x": 1934.006184190948, + "max_y": 5218.350370396692, + "center": [ + 1933.376115209837, + 5218.035335906139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.006184190948, + 5217.720301415586 + ], + [ + 1932.746046228726, + 5218.350370396692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.11597724761, + "min_y": 5216.654265793221, + "max_x": 1933.376115209838, + "max_y": 5216.654265793221, + "center": [ + 1932.746046228724, + 5216.654265793221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.11597724761, + 5216.654265793221 + ], + [ + 1933.376115209838, + 5216.654265793221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.432982398188, + "min_y": 5217.720301415586, + "max_x": 1934.432982398188, + "max_y": 5218.980439377807, + "center": [ + 1934.432982398188, + 5218.350370396696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.432982398188, + 5218.980439377807 + ], + [ + 1934.432982398188, + 5217.720301415586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555D9", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1934.432982398188, + "min_y": 5218.350370396697, + "max_x": 1940.496553627486, + "max_y": 5218.350370396697, + "center": [ + 1937.4647680128369, + 5218.350370396697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.432982398188, + 5218.350370396697 + ], + [ + 1940.496553627486, + 5218.350370396697 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555DA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1930.034607099621, + "min_y": 5224.095234314901, + "max_x": 1936.080622534125, + "max_y": 5225.102903553985, + "center": [ + 1933.057614816873, + 5224.5990689344435 + ] + }, + "raw_value": "PSV-10119A", + "clean_value": "PSV-10119A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5555DB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1931.15707505978, + "min_y": 5222.461898917043, + "max_x": 1935.3892858639329, + "max_y": 5223.469568156127, + "center": [ + 1933.2731804618566, + 5222.965733536585 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5555DC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1930.345067190379, + "min_y": 5220.929199938382, + "max_x": 1936.391082624883, + "max_y": 5221.936869177466, + "center": [ + 1933.3680749076311, + 5221.433034557924 + ] + }, + "raw_value": "SP: 0.5MPa", + "clean_value": "SP: 0.5MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5555DD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1924.375297371644, + "min_y": 5191.895624946113, + "max_x": 1924.375297371644, + "max_y": 5192.554635558942, + "center": [ + 1924.375297371644, + 5192.225130252527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.375297371644, + 5191.895624946113 + ], + [ + 1924.375297371644, + 5192.554635558942 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.972283996022, + "min_y": 5191.343307948852, + "max_x": 1923.972283996022, + "max_y": 5191.998925994538, + "center": [ + 1923.972283996022, + 5191.671116971695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.972283996022, + 5191.998925994538 + ], + [ + 1923.972283996022, + 5191.343307948852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1924.778310747265, + "min_y": 5191.343307948852, + "max_x": 1924.778310747265, + "max_y": 5191.998925994538, + "center": [ + 1924.778310747265, + 5191.671116971695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1924.778310747265, + 5191.998925994538 + ], + [ + 1924.778310747265, + 5191.343307948852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1923.972283996022, + "min_y": 5191.343307948852, + "max_x": 1924.778310747265, + "max_y": 5191.343307948852, + "center": [ + 1924.3752973716437, + 5191.343307948852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.972283996022, + 5191.343307948852 + ], + [ + 1924.778310747265, + 5191.343307948852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555E1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1916.118197480498, + "min_y": 5202.686133711082, + "max_x": 1927.5409872545108, + "max_y": 5203.806015061476, + "center": [ + 1921.8295923675046, + 5203.246074386279 + ] + }, + "raw_value": "P-10122-20A-F1A-n", + "clean_value": "P-10122-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.713705389504, + "min_y": 5208.016325201826, + "max_x": 1955.713705389504, + "max_y": 5210.024837780357, + "center": [ + 1955.713705389504, + 5209.020581491091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.713705389504, + 5210.024837780357 + ], + [ + 1955.713705389504, + 5208.016325201826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555E3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1946.012440686778, + "min_y": 5210.360818027123, + "max_x": 1955.713705389504, + "max_y": 5210.360818027123, + "center": [ + 1950.863073038141, + 5210.360818027123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.713705389504, + 5210.360818027123 + ], + [ + 1946.012440686778, + 5210.360818027123 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555E4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1946.012440686769, + "min_y": 5207.680344955067, + "max_x": 1955.713705389504, + "max_y": 5207.680344955067, + "center": [ + 1950.8630730381365, + 5207.680344955067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.012440686769, + 5207.680344955067 + ], + [ + 1955.713705389504, + 5207.680344955067 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.713705389504, + "min_y": 5207.680344955067, + "max_x": 1955.713705389504, + "max_y": 5210.360818027123, + "center": [ + 1955.713705389504, + 5209.020581491095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.713705389504, + 5207.680344955067 + ], + [ + 1955.713705389504, + 5210.360818027123 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555E6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5209.020581491095, + "max_x": 1946.012440686772, + "max_y": 5210.360818027118, + "center": [ + 1945.3423224187586, + 5209.690699759107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.012440686772, + 5210.360818027118 + ], + [ + 1944.672204150745, + 5209.020581491095 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555E7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1944.672204150745, + "min_y": 5207.680344955064, + "max_x": 1946.012440686772, + "max_y": 5209.020581491095, + "center": [ + 1945.3423224187586, + 5208.35046322308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.672204150745, + 5209.020581491095 + ], + [ + 1946.012440686772, + 5207.680344955064 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5555E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.944394232351, + "min_y": 5200.682207668258, + "max_x": 1928.2390516097, + "max_y": 5201.174335428231, + "center": [ + 1928.0917229210254, + 5200.928271548244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.2390516097, + 5201.174335428231 + ], + [ + 1927.944394232351, + 5200.682207668258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.361017562552, + "min_y": 5199.707869756512, + "max_x": 1927.655674939901, + "max_y": 5200.199997516481, + "center": [ + 1927.5083462512266, + 5199.953933636496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.655674939901, + 5200.199997516481 + ], + [ + 1927.361017562552, + 5199.707869756512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.361017562552, + "min_y": 5201.174335428231, + "max_x": 1928.2390516097, + "max_y": 5201.174335428231, + "center": [ + 1927.800034586126, + 5201.174335428231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.361017562552, + 5201.174335428231 + ], + [ + 1928.2390516097, + 5201.174335428231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.361017562552, + "min_y": 5199.707869756512, + "max_x": 1928.2390516097, + "max_y": 5199.707869756512, + "center": [ + 1927.800034586126, + 5199.707869756512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.361017562552, + 5199.707869756512 + ], + [ + 1928.2390516097, + 5199.707869756512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.361017562552, + "min_y": 5200.682207668258, + "max_x": 1927.655674939901, + "max_y": 5201.174335428231, + "center": [ + 1927.5083462512266, + 5200.928271548244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.361017562552, + 5201.174335428231 + ], + [ + 1927.655674939901, + 5200.682207668258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.944394232351, + "min_y": 5199.707869756512, + "max_x": 1928.2390516097, + "max_y": 5200.199997516481, + "center": [ + 1928.0917229210254, + 5199.953933636496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.944394232351, + 5200.199997516481 + ], + [ + 1928.2390516097, + 5199.707869756512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.344784709122, + "min_y": 5199.36494677698, + "max_x": 1928.255284463127, + "max_y": 5199.36494677698, + "center": [ + 1927.8000345861246, + 5199.36494677698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.344784709122, + 5199.36494677698 + ], + [ + 1928.255284463127, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.344784709122, + "min_y": 5201.517258407758, + "max_x": 1928.255284463127, + "max_y": 5201.517258407758, + "center": [ + 1927.8000345861246, + 5201.517258407758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.344784709122, + 5201.517258407758 + ], + [ + 1928.255284463127, + 5201.517258407758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1927.5190161435373, + "min_y": 5200.16008414978, + "max_x": 1928.0810530287206, + "max_y": 5200.7221210349635, + "center": [ + 1927.800034586129, + 5200.441102592372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.800034586129, + 5200.441102592372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1949.27242685359, + "min_y": 5208.532808802885, + "max_x": 1951.2882132842983, + "max_y": 5209.652690153278, + "center": [ + 1950.280320068944, + 5209.092749478081 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1945.569093276168, + "min_y": 5210.614110887047, + "max_x": 1955.6480254297085, + "max_y": 5211.73399223744, + "center": [ + 1950.6085593529383, + 5211.174051562244 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.800034586125, + "min_y": 5198.550147695313, + "max_x": 1927.800034586125, + "max_y": 5199.36494677698, + "center": [ + 1927.800034586125, + 5198.957547236147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.800034586125, + 5198.550147695313 + ], + [ + 1927.800034586125, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F4", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1927.802202797149, + "min_y": 5201.517258407758, + "max_x": 1927.802202797149, + "max_y": 5209.020581491095, + "center": [ + 1927.802202797149, + 5205.268919949427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.802202797149, + 5201.517258407758 + ], + [ + 1927.802202797149, + 5209.020581491095 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5555F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.415831198631, + "min_y": 5198.550147695313, + "max_x": 1917.415831198631, + "max_y": 5199.36494677698, + "center": [ + 1917.415831198631, + 5198.957547236147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5198.550147695313 + ], + [ + 1917.415831198631, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.763102674272, + "min_y": 5199.754703342061, + "max_x": 1918.072896145037, + "max_y": 5199.754703342061, + "center": [ + 1917.4179994096544, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.072896145037, + 5199.754703342061 + ], + [ + 1916.763102674272, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.763102674272, + "min_y": 5199.36494677698, + "max_x": 1918.072896145037, + "max_y": 5199.36494677698, + "center": [ + 1917.4179994096544, + 5199.36494677698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.072896145037, + 5199.36494677698 + ], + [ + 1916.763102674272, + 5199.36494677698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.753586504865, + "min_y": 5199.754703342061, + "max_x": 1918.078075892396, + "max_y": 5199.754703342061, + "center": [ + 1917.4158311986307, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.753586504865, + 5199.754703342061 + ], + [ + 1918.078075892396, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.753586504865, + "min_y": 5199.754703342061, + "max_x": 1918.078075892396, + "max_y": 5199.754703342061, + "center": [ + 1917.4158311986307, + 5199.754703342061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.753586504865, + 5199.754703342061 + ], + [ + 1918.078075892396, + 5199.754703342061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.415831198631, + "min_y": 5194.721114013188, + "max_x": 1917.415831198631, + "max_y": 5195.535913094856, + "center": [ + 1917.415831198631, + 5195.128513554022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5195.535913094856 + ], + [ + 1917.415831198631, + 5194.721114013188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.758766252224, + "min_y": 5194.331357448108, + "max_x": 1918.068559722989, + "max_y": 5194.331357448108, + "center": [ + 1917.4136629876066, + 5194.331357448108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.758766252224, + 5194.331357448108 + ], + [ + 1918.068559722989, + 5194.331357448108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.758766252224, + "min_y": 5194.721114013188, + "max_x": 1918.068559722989, + "max_y": 5194.721114013188, + "center": [ + 1917.4136629876066, + 5194.721114013188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.758766252224, + 5194.721114013188 + ], + [ + 1918.068559722989, + 5194.721114013188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.753586504865, + "min_y": 5194.331357448108, + "max_x": 1918.078075892396, + "max_y": 5194.331357448108, + "center": [ + 1917.4158311986307, + 5194.331357448108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.078075892396, + 5194.331357448108 + ], + [ + 1916.753586504865, + 5194.331357448108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.753586504865, + "min_y": 5194.331357448108, + "max_x": 1918.078075892396, + "max_y": 5194.331357448108, + "center": [ + 1917.4158311986307, + 5194.331357448108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.078075892396, + 5194.331357448108 + ], + [ + 1916.753586504865, + 5194.331357448108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5555FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.844853935626, + "min_y": 5194.721114013188, + "max_x": 1929.844853935626, + "max_y": 5195.535913094856, + "center": [ + 1929.844853935626, + 5195.128513554022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935626, + 5195.535913094856 + ], + [ + 1929.844853935626, + 5194.721114013188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555600", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1920.126944897179, + "min_y": 5203.616829835225, + "max_x": 1932.893592291664, + "max_y": 5204.736711185618, + "center": [ + 1926.5102685944216, + 5204.176770510421 + ] + }, + "raw_value": "CWR-10626-25A-F1A-n", + "clean_value": "CWR-10626-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555601", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1927.802202797149, + "min_y": 5209.020581491095, + "max_x": 1944.672204150745, + "max_y": 5209.020581491095, + "center": [ + 1936.237203473947, + 5209.020581491095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.672204150745, + 5209.020581491095 + ], + [ + 1927.802202797149, + 5209.020581491095 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555602", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1928.135152202242, + "min_y": 5209.801819132563, + "max_x": 1940.9017995967267, + "max_y": 5210.921700482956, + "center": [ + 1934.5184758994842, + 5210.36175980776 + ] + }, + "raw_value": "CWS-10616-25A-F1A-n", + "clean_value": "CWS-10616-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555603", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1917.41583119863, + "min_y": 5199.754703342061, + "max_x": 1917.415831198631, + "max_y": 5215.227378343326, + "center": [ + 1917.4158311986305, + 5207.491040842693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5199.754703342061 + ], + [ + 1917.41583119863, + 5215.227378343326 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555604", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1917.413662987607, + "min_y": 5190.62089988087, + "max_x": 1917.413662987607, + "max_y": 5194.331357448108, + "center": [ + 1917.413662987607, + 5192.476128664489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.413662987607, + 5194.331357448108 + ], + [ + 1917.413662987607, + 5190.62089988087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555605", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1914.967826188833, + "min_y": 5190.62089988087, + "max_x": 1976.511172395021, + "max_y": 5190.62089988087, + "center": [ + 1945.7394992919271, + 5190.62089988087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.967826188833, + 5190.62089988087 + ], + [ + 1976.511172395021, + 5190.62089988087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555606", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1974.081778531061, + "min_y": 5194.505866097286, + "max_x": 1985.5045683050737, + "max_y": 5195.62574744768, + "center": [ + 1979.7931734180675, + 5195.0658067724835 + ] + }, + "raw_value": "P-10125-20A-F1A-n", + "clean_value": "P-10125-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555607", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.658889391466, + "min_y": 5190.620899880872, + "max_x": 1950.658889391466, + "max_y": 5192.88309905481, + "center": [ + 1950.658889391466, + 5191.7519994678405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.658889391466, + 5192.88309905481 + ], + [ + 1950.658889391466, + 5190.620899880872 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555608", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1947.7981850703882, + "min_y": 5192.8830990548095, + "max_x": 1953.5195937125436, + "max_y": 5198.604507696965, + "center": [ + 1950.658889391466, + 5195.743803375887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.658889391466, + 5195.743803375887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555609", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1949.636301283215, + "min_y": 5196.277216413408, + "max_x": 1951.2037864079523, + "max_y": 5197.5834540173555, + "center": [ + 1950.4200438455837, + 5196.930335215382 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55560A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1948.485473298197, + "min_y": 5194.179532894987, + "max_x": 1952.4041861100397, + "max_y": 5195.4857704989345, + "center": [ + 1950.4448297041183, + 5194.832651696961 + ] + }, + "raw_value": "10120", + "clean_value": "10120", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55560B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1935.128860400269, + "min_y": 5188.622041646261, + "max_x": 1946.5516501742818, + "max_y": 5189.7419229966545, + "center": [ + 1940.8402552872753, + 5189.181982321457 + ] + }, + "raw_value": "P-10123-20A-F1A-n", + "clean_value": "P-10123-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55560C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1962.102534103794, + "min_y": 5212.618985168649, + "max_x": 1982.147285665925, + "max_y": 5212.619648934709, + "center": [ + 1972.1249098848593, + 5212.619317051679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.102534103794, + 5212.618985168649 + ], + [ + 1982.147285665925, + 5212.619648934709 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55560D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5213.166623252792, + "max_x": 1982.8246504522438, + "max_y": 5214.286504603186, + "center": [ + 1977.1132555652375, + 5213.7265639279885 + ] + }, + "raw_value": "P-10126-20A-F1A-n", + "clean_value": "P-10126-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55560E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1986.20541868802, + "min_y": 5211.780950663069, + "max_x": 1992.4767542502232, + "max_y": 5213.274125796927, + "center": [ + 1989.3410864691216, + 5212.527538229999 + ] + }, + "raw_value": "T-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55560F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5211.083175439521, + "max_x": 1994.876146391766, + "max_y": 5211.083175439521, + "center": [ + 1989.486554890253, + 5211.083175439521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5211.083175439521 + ], + [ + 1994.876146391766, + 5211.083175439521 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555610", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5214.061478852915, + "max_x": 1994.876146391774, + "max_y": 5214.061478852915, + "center": [ + 1989.4865548902571, + 5214.061478852915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391774, + 5214.061478852915 + ], + [ + 1984.09696338874, + 5214.061478852915 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555611", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5211.083175439521, + "max_x": 1984.09696338874, + "max_y": 5214.061478852915, + "center": [ + 1984.09696338874, + 5212.5723271462175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5214.061478852915 + ], + [ + 1984.09696338874, + 5211.083175439521 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555612", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5211.083175439523, + "max_x": 1996.365298098467, + "max_y": 5212.57232714622, + "center": [ + 1995.620722245118, + 5211.827751292872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391769, + 5211.083175439523 + ], + [ + 1996.365298098467, + 5212.57232714622 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555613", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5212.57232714622, + "max_x": 1996.365298098467, + "max_y": 5214.061478852919, + "center": [ + 1995.620722245118, + 5213.31690299957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.365298098467, + 5212.57232714622 + ], + [ + 1994.876146391769, + 5214.061478852919 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555614", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1986.20541868802, + "min_y": 5207.682765899281, + "max_x": 1991.5808491699083, + "max_y": 5209.175941033139, + "center": [ + 1988.8931339289643, + 5208.42935346621 + ] + }, + "raw_value": "T-9124", + "clean_value": "T-9124", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555615", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5206.984990675731, + "max_x": 1994.876146391766, + "max_y": 5206.984990675731, + "center": [ + 1989.486554890253, + 5206.984990675731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5206.984990675731 + ], + [ + 1994.876146391766, + 5206.984990675731 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555616", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5209.963294089127, + "max_x": 1994.876146391774, + "max_y": 5209.963294089127, + "center": [ + 1989.4865548902571, + 5209.963294089127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391774, + 5209.963294089127 + ], + [ + 1984.09696338874, + 5209.963294089127 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555617", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5206.984990675731, + "max_x": 1984.09696338874, + "max_y": 5209.963294089127, + "center": [ + 1984.09696338874, + 5208.474142382429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5209.963294089127 + ], + [ + 1984.09696338874, + 5206.984990675731 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555618", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5206.984990675735, + "max_x": 1996.365298098467, + "max_y": 5208.474142382432, + "center": [ + 1995.620722245118, + 5207.729566529084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391769, + 5206.984990675735 + ], + [ + 1996.365298098467, + 5208.474142382432 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555619", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5208.474142382432, + "max_x": 1996.365298098467, + "max_y": 5209.96329408913, + "center": [ + 1995.620722245118, + 5209.218718235781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.365298098467, + 5208.474142382432 + ], + [ + 1994.876146391769, + 5209.96329408913 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55561A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1965.087064351861, + "min_y": 5208.520800404867, + "max_x": 1984.09696338874, + "max_y": 5208.520800404867, + "center": [ + 1974.5920138703004, + 5208.520800404867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.087064351861, + 5208.520800404867 + ], + [ + 1984.09696338874, + 5208.520800404867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55561B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5209.068438489009, + "max_x": 1982.8246504522438, + "max_y": 5210.1883198394025, + "center": [ + 1977.1132555652375, + 5209.628379164205 + ] + }, + "raw_value": "P-10124-20A-F1A-n", + "clean_value": "P-10124-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55561C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1968.075234639226, + "min_y": 5204.233395883878, + "max_x": 1984.09696338874, + "max_y": 5204.233395883878, + "center": [ + 1976.0860990139831, + 5204.233395883878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.075234639226, + 5204.233395883878 + ], + [ + 1984.09696338874, + 5204.233395883878 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55561D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.486801771152, + "min_y": 5204.233395883885, + "max_x": 1994.152841373391, + "max_y": 5205.86510932534, + "center": [ + 1993.3198215722714, + 5205.049252604613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.486801771152, + 5205.86510932534 + ], + [ + 1994.152841373391, + 5204.233395883885 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55561E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1992.486801771152, + "min_y": 5202.60168244242, + "max_x": 1994.152841373391, + "max_y": 5204.233395883885, + "center": [ + 1993.3198215722714, + 5203.4175391631525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.486801771152, + 5202.60168244242 + ], + [ + 1994.152841373391, + 5204.233395883885 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55561F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5202.60168244242, + "max_x": 1984.09696338874, + "max_y": 5205.86510932534, + "center": [ + 1984.09696338874, + 5204.23339588388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5205.86510932534 + ], + [ + 1984.09696338874, + 5202.60168244242 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555620", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5205.86510932534, + "max_x": 1992.486801771152, + "max_y": 5205.86510932534, + "center": [ + 1988.291882579946, + 5205.86510932534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5205.86510932534 + ], + [ + 1992.486801771152, + 5205.86510932534 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5202.60168244242, + "max_x": 1992.486801771152, + "max_y": 5202.60168244242, + "center": [ + 1988.291882579946, + 5202.60168244242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.486801771152, + 5202.60168244242 + ], + [ + 1984.09696338874, + 5202.60168244242 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555622", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1985.337462123305, + "min_y": 5203.390454941034, + "max_x": 1990.7128926051932, + "max_y": 5204.883630074892, + "center": [ + 1988.025177364249, + 5204.137042507962 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555623", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5204.528130186638, + "max_x": 1984.168508072716, + "max_y": 5205.648011537031, + "center": [ + 1977.7851843754734, + 5205.088070861835 + ] + }, + "raw_value": "SAM-10954-10A-F2A-n", + "clean_value": "SAM-10954-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555624", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.365621484564, + "min_y": 5194.312581240655, + "max_x": 1955.365621484564, + "max_y": 5196.064294138353, + "center": [ + 1955.365621484564, + 5195.188437689504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.365621484564, + 5194.312581240655 + ], + [ + 1955.365621484564, + 5196.064294138353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555625", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1955.365621484567, + "min_y": 5190.620899880872, + "max_x": 1955.365621484567, + "max_y": 5192.616476637184, + "center": [ + 1955.365621484567, + 5191.618688259028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.365621484567, + 5192.616476637184 + ], + [ + 1955.365621484567, + 5190.620899880872 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555626", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.05058699401, + "min_y": 5194.807597284778, + "max_x": 1955.680655975118, + "max_y": 5195.437666265892, + "center": [ + 1955.3656214845641, + 5195.122631775335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.05058699401, + 5195.437666265892 + ], + [ + 1955.680655975118, + 5194.807597284778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555627", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.05058699401, + "min_y": 5195.122631775333, + "max_x": 1955.680655975118, + "max_y": 5195.752700756446, + "center": [ + 1955.3656214845641, + 5195.437666265889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.680655975118, + 5195.122631775333 + ], + [ + 1955.05058699401, + 5195.752700756446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555628", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.05058699401, + "min_y": 5195.437666265892, + "max_x": 1955.680655975118, + "max_y": 5196.067735247002, + "center": [ + 1955.3656214845641, + 5195.752700756448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.05058699401, + 5196.067735247002 + ], + [ + 1955.680655975118, + 5195.437666265892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555629", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.365621484564, + "min_y": 5194.312581240655, + "max_x": 1955.365621484564, + "max_y": 5196.067735247002, + "center": [ + 1955.365621484564, + 5195.190158243829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.365621484564, + 5194.312581240655 + ], + [ + 1955.365621484564, + 5196.067735247002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.735552503449, + "min_y": 5193.052443278435, + "max_x": 1955.365621484564, + "max_y": 5194.312581240655, + "center": [ + 1955.0505869940066, + 5193.682512259546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.365621484564, + 5194.312581240655 + ], + [ + 1954.735552503449, + 5193.052443278435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.735552503449, + "min_y": 5193.052443278435, + "max_x": 1955.995690465677, + "max_y": 5193.052443278435, + "center": [ + 1955.365621484563, + 5193.052443278435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.735552503449, + 5193.052443278435 + ], + [ + 1955.995690465677, + 5193.052443278435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.365621484564, + "min_y": 5193.052443278435, + "max_x": 1955.995690465677, + "max_y": 5194.312581240655, + "center": [ + 1955.6806559751203, + 5193.682512259546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.995690465677, + 5193.052443278435 + ], + [ + 1955.365621484564, + 5194.312581240655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.365621484564, + "min_y": 5194.312581240655, + "max_x": 1956.625759446787, + "max_y": 5194.94265022177, + "center": [ + 1955.9956904656756, + 5194.627615731213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.365621484564, + 5194.312581240655 + ], + [ + 1956.625759446787, + 5194.94265022177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.625759446787, + "min_y": 5193.68251225955, + "max_x": 1956.625759446787, + "max_y": 5194.94265022177, + "center": [ + 1956.625759446787, + 5194.31258124066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.625759446787, + 5194.94265022177 + ], + [ + 1956.625759446787, + 5193.68251225955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55562F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.365621484564, + "min_y": 5193.68251225955, + "max_x": 1956.625759446787, + "max_y": 5194.312581240655, + "center": [ + 1955.9956904656756, + 5193.997546750103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.625759446787, + 5193.68251225955 + ], + [ + 1955.365621484564, + 5194.312581240655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.735552503449, + "min_y": 5192.616476637184, + "max_x": 1955.995690465677, + "max_y": 5192.616476637184, + "center": [ + 1955.365621484563, + 5192.616476637184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.735552503449, + 5192.616476637184 + ], + [ + 1955.995690465677, + 5192.616476637184 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555631", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.052557654027, + "min_y": 5193.68251225955, + "max_x": 1957.052557654027, + "max_y": 5194.94265022177, + "center": [ + 1957.052557654027, + 5194.31258124066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.052557654027, + 5194.94265022177 + ], + [ + 1957.052557654027, + 5193.68251225955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555632", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1957.052557654027, + "min_y": 5194.31258124066, + "max_x": 1959.3568963846, + "max_y": 5194.31258124066, + "center": [ + 1958.2047270193134, + 5194.31258124066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.052557654027, + 5194.31258124066 + ], + [ + 1959.3568963846, + 5194.31258124066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555633", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1959.3568963846, + "min_y": 5194.31258124066, + "max_x": 1959.3568963846, + "max_y": 5216.670511910006, + "center": [ + 1959.3568963846, + 5205.491546575333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.3568963846, + 5194.31258124066 + ], + [ + 1959.3568963846, + 5216.670511910006 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555634", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1962.283298045176, + "min_y": 5192.111939342272, + "max_x": 1962.652261465916, + "max_y": 5192.728170788406, + "center": [ + 1962.467779755546, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.652261465916, + 5192.111939342272 + ], + [ + 1962.283298045176, + 5192.728170788406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555635", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5192.111939342272, + "max_x": 1962.652261465916, + "max_y": 5192.111939342272, + "center": [ + 1962.1025341037944, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.552806741673, + 5192.111939342272 + ], + [ + 1962.652261465916, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555636", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5192.111939342272, + "max_x": 1961.921770162413, + "max_y": 5192.728170788406, + "center": [ + 1961.737288452043, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.921770162413, + 5192.728170788406 + ], + [ + 1961.552806741673, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555637", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1962.283298045179, + "min_y": 5193.331983625928, + "max_x": 1962.652261465916, + "max_y": 5193.94821507207, + "center": [ + 1962.4677797555473, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.652261465916, + 5193.94821507207 + ], + [ + 1962.283298045179, + 5193.331983625928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555638", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5193.94821507207, + "max_x": 1962.652261465916, + "max_y": 5193.94821507207, + "center": [ + 1962.1025341037944, + 5193.94821507207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.552806741673, + 5193.94821507207 + ], + [ + 1962.652261465916, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555639", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5193.331983625928, + "max_x": 1961.92177016241, + "max_y": 5193.94821507207, + "center": [ + 1961.7372884520414, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.92177016241, + 5193.331983625928 + ], + [ + 1961.552806741673, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.544818766741, + "min_y": 5194.275380924048, + "max_x": 1962.656609401549, + "max_y": 5194.275380924048, + "center": [ + 1962.100714084145, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.544818766741, + 5194.275380924048 + ], + [ + 1962.656609401549, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.544818766741, + "min_y": 5194.275380924048, + "max_x": 1962.656609401549, + "max_y": 5194.275380924048, + "center": [ + 1962.100714084145, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.544818766741, + 5194.275380924048 + ], + [ + 1962.656609401549, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.546638786392, + "min_y": 5191.784773490287, + "max_x": 1962.658429421197, + "max_y": 5191.784773490287, + "center": [ + 1962.1025341037944, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.546638786392, + 5191.784773490287 + ], + [ + 1962.658429421197, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.546638786392, + "min_y": 5192.111939342272, + "max_x": 1962.658429421197, + "max_y": 5192.111939342272, + "center": [ + 1962.1025341037944, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.546638786392, + 5192.111939342272 + ], + [ + 1962.658429421197, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5191.784773490287, + "max_x": 1962.652261465916, + "max_y": 5191.784773490287, + "center": [ + 1962.1025341037944, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.652261465916, + 5191.784773490287 + ], + [ + 1961.552806741673, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55563F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.552806741673, + "min_y": 5194.275380924048, + "max_x": 1962.652261465916, + "max_y": 5194.275380924048, + "center": [ + 1962.1025341037944, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.652261465916, + 5194.275380924048 + ], + [ + 1961.552806741673, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555640", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1961.7506490541073, + "min_y": 5192.678192157483, + "max_x": 1962.4544191534806, + "max_y": 5193.381962256856, + "center": [ + 1962.102534103794, + 5193.03007720717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.102534103794, + 5193.03007720717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1961.532480323299, + "min_y": 5191.784773490287, + "max_x": 1962.672587884289, + "max_y": 5191.784773490287, + "center": [ + 1962.102534103794, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.532480323299, + 5191.784773490287 + ], + [ + 1962.672587884289, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555642", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1962.102534103794, + "min_y": 5190.62089988087, + "max_x": 1962.102534103794, + "max_y": 5191.784773490287, + "center": [ + 1962.102534103794, + 5191.202836685578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.102534103794, + 5190.62089988087 + ], + [ + 1962.102534103794, + 5191.784773490287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555643", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.269648312892, + "min_y": 5192.111939342272, + "max_x": 1965.638611733631, + "max_y": 5192.728170788406, + "center": [ + 1965.4541300232615, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.638611733631, + 5192.111939342272 + ], + [ + 1965.269648312892, + 5192.728170788406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555644", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5192.111939342272, + "max_x": 1965.638611733631, + "max_y": 5192.111939342272, + "center": [ + 1965.0888843715102, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.539157009389, + 5192.111939342272 + ], + [ + 1965.638611733631, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555645", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5192.111939342272, + "max_x": 1964.908120430128, + "max_y": 5192.728170788406, + "center": [ + 1964.7236387197586, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.908120430128, + 5192.728170788406 + ], + [ + 1964.539157009389, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555646", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.269648312895, + "min_y": 5193.331983625928, + "max_x": 1965.638611733631, + "max_y": 5193.94821507207, + "center": [ + 1965.4541300232631, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.638611733631, + 5193.94821507207 + ], + [ + 1965.269648312895, + 5193.331983625928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555647", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5193.94821507207, + "max_x": 1965.638611733631, + "max_y": 5193.94821507207, + "center": [ + 1965.0888843715102, + 5193.94821507207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.539157009389, + 5193.94821507207 + ], + [ + 1965.638611733631, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555648", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5193.331983625928, + "max_x": 1964.908120430125, + "max_y": 5193.94821507207, + "center": [ + 1964.7236387197572, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.908120430125, + 5193.331983625928 + ], + [ + 1964.539157009389, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555649", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.531169034457, + "min_y": 5194.275380924048, + "max_x": 1965.642959669265, + "max_y": 5194.275380924048, + "center": [ + 1965.087064351861, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.531169034457, + 5194.275380924048 + ], + [ + 1965.642959669265, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.531169034457, + "min_y": 5194.275380924048, + "max_x": 1965.642959669265, + "max_y": 5194.275380924048, + "center": [ + 1965.087064351861, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.531169034457, + 5194.275380924048 + ], + [ + 1965.642959669265, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.532989054107, + "min_y": 5191.784773490287, + "max_x": 1965.644779688913, + "max_y": 5191.784773490287, + "center": [ + 1965.0888843715102, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.532989054107, + 5191.784773490287 + ], + [ + 1965.644779688913, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.532989054107, + "min_y": 5192.111939342272, + "max_x": 1965.644779688913, + "max_y": 5192.111939342272, + "center": [ + 1965.0888843715102, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.532989054107, + 5192.111939342272 + ], + [ + 1965.644779688913, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5191.784773490287, + "max_x": 1965.638611733631, + "max_y": 5191.784773490287, + "center": [ + 1965.0888843715102, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.638611733631, + 5191.784773490287 + ], + [ + 1964.539157009389, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.539157009389, + "min_y": 5194.275380924048, + "max_x": 1965.638611733631, + "max_y": 5194.275380924048, + "center": [ + 1965.0888843715102, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.638611733631, + 5194.275380924048 + ], + [ + 1964.539157009389, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55564F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1964.7369993218233, + "min_y": 5192.678192157483, + "max_x": 1965.4407694211966, + "max_y": 5193.381962256856, + "center": [ + 1965.08888437151, + 5193.03007720717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.08888437151, + 5193.03007720717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555650", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1964.518830591015, + "min_y": 5191.784773490287, + "max_x": 1965.658938152005, + "max_y": 5191.784773490287, + "center": [ + 1965.0888843715102, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.518830591015, + 5191.784773490287 + ], + [ + 1965.658938152005, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555651", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1965.08888437151, + "min_y": 5190.62089988087, + "max_x": 1965.08888437151, + "max_y": 5191.784773490287, + "center": [ + 1965.08888437151, + 5191.202836685578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.08888437151, + 5190.62089988087 + ], + [ + 1965.08888437151, + 5191.784773490287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555652", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.255998580608, + "min_y": 5192.111939342272, + "max_x": 1968.624962001347, + "max_y": 5192.728170788406, + "center": [ + 1968.4404802909776, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.624962001347, + 5192.111939342272 + ], + [ + 1968.255998580608, + 5192.728170788406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555653", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5192.111939342272, + "max_x": 1968.624962001347, + "max_y": 5192.111939342272, + "center": [ + 1968.075234639226, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.525507277105, + 5192.111939342272 + ], + [ + 1968.624962001347, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555654", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5192.111939342272, + "max_x": 1967.894470697844, + "max_y": 5192.728170788406, + "center": [ + 1967.7099889874744, + 5192.420055065339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.894470697844, + 5192.728170788406 + ], + [ + 1967.525507277105, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555655", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1968.25599858061, + "min_y": 5193.331983625928, + "max_x": 1968.624962001347, + "max_y": 5193.94821507207, + "center": [ + 1968.4404802909785, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.624962001347, + 5193.94821507207 + ], + [ + 1968.25599858061, + 5193.331983625928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555656", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5193.94821507207, + "max_x": 1968.624962001347, + "max_y": 5193.94821507207, + "center": [ + 1968.075234639226, + 5193.94821507207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.525507277105, + 5193.94821507207 + ], + [ + 1968.624962001347, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555657", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5193.331983625928, + "max_x": 1967.894470697841, + "max_y": 5193.94821507207, + "center": [ + 1967.709988987473, + 5193.640099348999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.894470697841, + 5193.331983625928 + ], + [ + 1967.525507277105, + 5193.94821507207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555658", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.517519302173, + "min_y": 5194.275380924048, + "max_x": 1968.629309936981, + "max_y": 5194.275380924048, + "center": [ + 1968.0734146195769, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.517519302173, + 5194.275380924048 + ], + [ + 1968.629309936981, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555659", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.517519302173, + "min_y": 5194.275380924048, + "max_x": 1968.629309936981, + "max_y": 5194.275380924048, + "center": [ + 1968.0734146195769, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.517519302173, + 5194.275380924048 + ], + [ + 1968.629309936981, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.519339321823, + "min_y": 5191.784773490287, + "max_x": 1968.631129956628, + "max_y": 5191.784773490287, + "center": [ + 1968.0752346392255, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.519339321823, + 5191.784773490287 + ], + [ + 1968.631129956628, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.519339321823, + "min_y": 5192.111939342272, + "max_x": 1968.631129956628, + "max_y": 5192.111939342272, + "center": [ + 1968.0752346392255, + 5192.111939342272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.519339321823, + 5192.111939342272 + ], + [ + 1968.631129956628, + 5192.111939342272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5191.784773490287, + "max_x": 1968.624962001347, + "max_y": 5191.784773490287, + "center": [ + 1968.075234639226, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.624962001347, + 5191.784773490287 + ], + [ + 1967.525507277105, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.525507277105, + "min_y": 5194.275380924048, + "max_x": 1968.624962001347, + "max_y": 5194.275380924048, + "center": [ + 1968.075234639226, + 5194.275380924048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.624962001347, + 5194.275380924048 + ], + [ + 1967.525507277105, + 5194.275380924048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1967.7233495895393, + "min_y": 5192.678192157483, + "max_x": 1968.4271196889126, + "max_y": 5193.381962256856, + "center": [ + 1968.075234639226, + 5193.03007720717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.075234639226, + 5193.03007720717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55565F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1967.505180858731, + "min_y": 5191.784773490287, + "max_x": 1968.645288419721, + "max_y": 5191.784773490287, + "center": [ + 1968.075234639226, + 5191.784773490287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.505180858731, + 5191.784773490287 + ], + [ + 1968.645288419721, + 5191.784773490287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555660", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1968.075234639226, + "min_y": 5190.62089988087, + "max_x": 1968.075234639226, + "max_y": 5191.784773490287, + "center": [ + 1968.075234639226, + 5191.202836685578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.075234639226, + 5190.62089988087 + ], + [ + 1968.075234639226, + 5191.784773490287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555661", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.939826119431, + "min_y": 5190.0721286014, + "max_x": 1976.939826119431, + "max_y": 5191.169671160336, + "center": [ + 1976.939826119431, + 5190.620899880869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.939826119431, + 5191.169671160336 + ], + [ + 1976.939826119431, + 5190.0721286014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555662", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1976.511172395021, + "min_y": 5190.051837534617, + "max_x": 1976.511172395021, + "max_y": 5191.189962227123, + "center": [ + 1976.511172395021, + 5190.620899880871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1976.511172395021, + 5191.189962227123 + ], + [ + 1976.511172395021, + 5190.051837534617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555663", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1959.3568963846, + "min_y": 5216.670511910006, + "max_x": 1984.09696338874, + "max_y": 5216.670511910006, + "center": [ + 1971.72692988667, + 5216.670511910006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.3568963846, + 5216.670511910006 + ], + [ + 1984.09696338874, + 5216.670511910006 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555664", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1985.60753742659, + "min_y": 5215.876336641906, + "max_x": 1990.9829679084783, + "max_y": 5217.369511775764, + "center": [ + 1988.295252667534, + 5216.622924208836 + ] + }, + "raw_value": "T-3210", + "clean_value": "T-3210", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555665", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5215.181360203309, + "max_x": 1994.876146391766, + "max_y": 5215.181360203309, + "center": [ + 1989.486554890253, + 5215.181360203309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5215.181360203309 + ], + [ + 1994.876146391766, + 5215.181360203309 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555666", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5218.159663616703, + "max_x": 1994.876146391774, + "max_y": 5218.159663616703, + "center": [ + 1989.4865548902571, + 5218.159663616703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391774, + 5218.159663616703 + ], + [ + 1984.09696338874, + 5218.159663616703 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555667", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.09696338874, + "min_y": 5215.228018225745, + "max_x": 1984.09696338874, + "max_y": 5218.20632163914, + "center": [ + 1984.09696338874, + 5216.717169932443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.09696338874, + 5218.20632163914 + ], + [ + 1984.09696338874, + 5215.228018225745 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555668", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5215.181360203311, + "max_x": 1996.365298098467, + "max_y": 5216.670511910008, + "center": [ + 1995.620722245118, + 5215.925936056659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.876146391769, + 5215.181360203311 + ], + [ + 1996.365298098467, + 5216.670511910008 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555669", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.876146391769, + "min_y": 5216.670511910008, + "max_x": 1996.365298098467, + "max_y": 5218.159663616706, + "center": [ + 1995.620722245118, + 5217.4150877633565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.365298098467, + 5216.670511910008 + ], + [ + 1994.876146391769, + 5218.159663616706 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55566A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1983.915649265343, + "min_y": 5218.641023262004, + "max_x": 1990.6349373677035, + "max_y": 5219.760904612397, + "center": [ + 1987.2752933165234, + 5219.200963937201 + ] + }, + "raw_value": "P&ID-10100", + "clean_value": "P&ID-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55566B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1971.401860678231, + "min_y": 5217.09085393239, + "max_x": 1983.4965792624798, + "max_y": 5218.210735282783, + "center": [ + 1977.4492199703554, + 5217.650794607587 + ] + }, + "raw_value": "VG-10443-25A-F1A-n", + "clean_value": "VG-10443-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55566C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1961.167876544661, + "min_y": 5190.923003982844, + "max_x": 1969.2310222674937, + "max_y": 5192.042885333238, + "center": [ + 1965.1994494060773, + 5191.482944658041 + ] + }, + "raw_value": "HD10119BA-01", + "clean_value": "HD10119BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55566D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1968.075234639226, + "min_y": 5194.275380924048, + "max_x": 1968.075234639226, + "max_y": 5204.233395883878, + "center": [ + 1968.075234639226, + 5199.254388403962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1968.075234639226, + 5194.275380924048 + ], + [ + 1968.075234639226, + 5204.233395883878 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55566E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1965.087064351861, + "min_y": 5194.275380924048, + "max_x": 1965.087064351861, + "max_y": 5208.520800404867, + "center": [ + 1965.087064351861, + 5201.398090664457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.087064351861, + 5194.275380924048 + ], + [ + 1965.087064351861, + 5208.520800404867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55566F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1962.102534103794, + "min_y": 5194.275380924048, + "max_x": 1962.102534103794, + "max_y": 5212.618985168649, + "center": [ + 1962.102534103794, + 5203.447183046348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1962.102534103794, + 5194.275380924048 + ], + [ + 1962.102534103794, + 5212.618985168649 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555670", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.132775449332, + "min_y": 5190.181882857294, + "max_x": 1914.624903209307, + "max_y": 5190.476540234643, + "center": [ + 1914.3788393293194, + 5190.329211545968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.624903209307, + 5190.181882857294 + ], + [ + 1914.132775449332, + 5190.476540234643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555671", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.158437537587, + "min_y": 5190.765259527093, + "max_x": 1913.650565297556, + "max_y": 5191.059916904443, + "center": [ + 1913.4045014175715, + 5190.912588215768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.650565297556, + 5190.765259527093 + ], + [ + 1913.158437537587, + 5191.059916904443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555672", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.624903209307, + "min_y": 5190.181882857294, + "max_x": 1914.624903209307, + "max_y": 5191.059916904443, + "center": [ + 1914.624903209307, + 5190.620899880869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.624903209307, + 5191.059916904443 + ], + [ + 1914.624903209307, + 5190.181882857294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555673", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.158437537587, + "min_y": 5190.181882857294, + "max_x": 1913.158437537587, + "max_y": 5191.059916904443, + "center": [ + 1913.158437537587, + 5190.620899880869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.158437537587, + 5191.059916904443 + ], + [ + 1913.158437537587, + 5190.181882857294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555674", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.132775449332, + "min_y": 5190.765259527093, + "max_x": 1914.624903209307, + "max_y": 5191.059916904443, + "center": [ + 1914.3788393293194, + 5190.912588215768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.624903209307, + 5191.059916904443 + ], + [ + 1914.132775449332, + 5190.765259527093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555675", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.158437537587, + "min_y": 5190.181882857294, + "max_x": 1913.650565297556, + "max_y": 5190.476540234643, + "center": [ + 1913.4045014175715, + 5190.329211545968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.650565297556, + 5190.476540234643 + ], + [ + 1913.158437537587, + 5190.181882857294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555676", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1912.815514558056, + "min_y": 5190.165650003867, + "max_x": 1912.815514558056, + "max_y": 5191.076149757872, + "center": [ + 1912.815514558056, + 5190.62089988087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.815514558056, + 5191.076149757872 + ], + [ + 1912.815514558056, + 5190.165650003867 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555677", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.967826188833, + "min_y": 5190.165650003867, + "max_x": 1914.967826188833, + "max_y": 5191.076149757872, + "center": [ + 1914.967826188833, + 5190.62089988087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.967826188833, + 5191.076149757872 + ], + [ + 1914.967826188833, + 5190.165650003867 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555678", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1913.6106519308553, + "min_y": 5190.3398814382745, + "max_x": 1914.1726888160385, + "max_y": 5190.901918323458, + "center": [ + 1913.891670373447, + 5190.620899880866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.891670373447, + 5190.620899880866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555679", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1912.156503945227, + "min_y": 5190.62089988087, + "max_x": 1912.815514558056, + "max_y": 5190.62089988087, + "center": [ + 1912.4860092516415, + 5190.62089988087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.156503945227, + 5190.62089988087 + ], + [ + 1912.815514558056, + 5190.62089988087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55567A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.604186947965, + "min_y": 5191.023913256491, + "max_x": 1912.259804993651, + "max_y": 5191.023913256491, + "center": [ + 1911.931995970808, + 5191.023913256491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.259804993651, + 5191.023913256491 + ], + [ + 1911.604186947965, + 5191.023913256491 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55567B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.604186947965, + "min_y": 5190.217886505248, + "max_x": 1912.259804993651, + "max_y": 5190.217886505248, + "center": [ + 1911.931995970808, + 5190.217886505248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.259804993651, + 5190.217886505248 + ], + [ + 1911.604186947965, + 5190.217886505248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55567C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.604186947965, + "min_y": 5190.217886505248, + "max_x": 1911.604186947965, + "max_y": 5191.023913256491, + "center": [ + 1911.604186947965, + 5190.62089988087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.604186947965, + 5191.023913256491 + ], + [ + 1911.604186947965, + 5190.217886505248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55567D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.989213581853, + "min_y": 5193.886063273687, + "max_x": 1930.283870959202, + "max_y": 5194.378191033663, + "center": [ + 1930.1365422705276, + 5194.132127153674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.283870959202, + 5194.378191033663 + ], + [ + 1929.989213581853, + 5193.886063273687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55567E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912054, + "min_y": 5192.911725361944, + "max_x": 1929.700494289403, + "max_y": 5193.403853121912, + "center": [ + 1929.5531656007283, + 5193.157789241928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.700494289403, + 5193.403853121912 + ], + [ + 1929.405836912054, + 5192.911725361944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55567F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912054, + "min_y": 5194.378191033663, + "max_x": 1930.283870959202, + "max_y": 5194.378191033663, + "center": [ + 1929.844853935628, + 5194.378191033663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912054, + 5194.378191033663 + ], + [ + 1930.283870959202, + 5194.378191033663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555680", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912054, + "min_y": 5192.911725361944, + "max_x": 1930.283870959202, + "max_y": 5192.911725361944, + "center": [ + 1929.844853935628, + 5192.911725361944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912054, + 5192.911725361944 + ], + [ + 1930.283870959202, + 5192.911725361944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555681", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.405836912054, + "min_y": 5193.886063273687, + "max_x": 1929.700494289403, + "max_y": 5194.378191033663, + "center": [ + 1929.5531656007283, + 5194.132127153674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.405836912054, + 5194.378191033663 + ], + [ + 1929.700494289403, + 5193.886063273687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555682", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.989213581853, + "min_y": 5192.911725361944, + "max_x": 1930.283870959202, + "max_y": 5193.403853121912, + "center": [ + 1930.1365422705276, + 5193.157789241928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.989213581853, + 5193.403853121912 + ], + [ + 1930.283870959202, + 5192.911725361944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555683", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.389604058624, + "min_y": 5192.56880238241, + "max_x": 1930.300103812629, + "max_y": 5192.56880238241, + "center": [ + 1929.8448539356264, + 5192.56880238241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.389604058624, + 5192.56880238241 + ], + [ + 1930.300103812629, + 5192.56880238241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555684", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.389604058624, + "min_y": 5194.721114013188, + "max_x": 1930.300103812629, + "max_y": 5194.721114013188, + "center": [ + 1929.8448539356264, + 5194.721114013188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.389604058624, + 5194.721114013188 + ], + [ + 1930.300103812629, + 5194.721114013188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555685", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1929.5638354930384, + "min_y": 5193.363939755211, + "max_x": 1930.1258723782216, + "max_y": 5193.925976640394, + "center": [ + 1929.84485393563, + 5193.644958197802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.84485393563, + 5193.644958197802 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555686", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1930.537541004125, + "min_y": 5193.37977327946, + "max_x": 1937.9287579167215, + "max_y": 5194.4996546298535, + "center": [ + 1934.2331494604232, + 5193.939713954656 + ] + }, + "raw_value": "E10119BA-07", + "clean_value": "E10119BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555687", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1929.844853935626, + "min_y": 5191.909791769583, + "max_x": 1929.844853935626, + "max_y": 5192.56880238241, + "center": [ + 1929.844853935626, + 5192.239297075996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.844853935626, + 5191.909791769583 + ], + [ + 1929.844853935626, + 5192.56880238241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555688", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.441840560005, + "min_y": 5191.357474772321, + "max_x": 1929.441840560005, + "max_y": 5192.013092818007, + "center": [ + 1929.441840560005, + 5191.685283795165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.441840560005, + 5192.013092818007 + ], + [ + 1929.441840560005, + 5191.357474772321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555689", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.247867311248, + "min_y": 5191.357474772321, + "max_x": 1930.247867311248, + "max_y": 5192.013092818007, + "center": [ + 1930.247867311248, + 5191.685283795165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.247867311248, + 5192.013092818007 + ], + [ + 1930.247867311248, + 5191.357474772321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55568A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1929.441840560005, + "min_y": 5191.357474772321, + "max_x": 1930.247867311248, + "max_y": 5191.357474772321, + "center": [ + 1929.8448539356264, + 5191.357474772321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1929.441840560005, + 5191.357474772321 + ], + [ + 1930.247867311248, + 5191.357474772321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55568B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1973.638006326029, + "min_y": 5190.62089988087, + "max_x": 1973.638006326029, + "max_y": 5193.970544364018, + "center": [ + 1973.638006326029, + 5192.295722122444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1973.638006326029, + 5190.62089988087 + ], + [ + 1973.638006326029, + 5193.970544364018 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55568C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1923.110744858074, + "min_y": 5200.061255316235, + "max_x": 1930.5019617706705, + "max_y": 5201.181136666628, + "center": [ + 1926.8063533143722, + 5200.621195991431 + ] + }, + "raw_value": "E10119BA-01", + "clean_value": "E10119BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55568D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1911.652938474622, + "min_y": 5189.17224705493, + "max_x": 1919.0441553872186, + "max_y": 5190.292128405324, + "center": [ + 1915.3485469309203, + 5189.732187730127 + ] + }, + "raw_value": "E10119BA-08", + "clean_value": "E10119BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55568E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1964.154226812377, + "min_y": 5190.923003982844, + "max_x": 1972.2173725352095, + "max_y": 5192.042885333238, + "center": [ + 1968.185799673793, + 5191.482944658041 + ] + }, + "raw_value": "HD10119BA-02", + "clean_value": "HD10119BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55568F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1967.140577080092, + "min_y": 5190.923003982844, + "max_x": 1975.2037228029246, + "max_y": 5192.042885333238, + "center": [ + 1971.1721499415085, + 5191.482944658041 + ] + }, + "raw_value": "HD10119BA-03", + "clean_value": "HD10119BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555690", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.017530978934, + "min_y": 5197.06157238437, + "max_x": 1918.056496431603, + "max_y": 5197.06157238437, + "center": [ + 1917.0370137052685, + 5197.06157238437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.017530978934, + 5197.06157238437 + ], + [ + 1918.056496431603, + 5197.06157238437 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555691", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.988641044768, + "max_x": 1966.42686520761, + "max_y": 5280.3480452746, + "center": [ + 1965.407723870336, + 5280.168343159684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5279.988641044768 + ], + [ + 1964.388582533062, + 5280.3480452746 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555692", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.629236814933, + "max_x": 1966.42686520761, + "max_y": 5279.988641044768, + "center": [ + 1965.407723870336, + 5279.808938929851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5279.988641044768 + ], + [ + 1964.388582533062, + 5279.629236814933 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555693", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.629236814933, + "max_x": 1964.388582533062, + "max_y": 5280.3480452746, + "center": [ + 1964.388582533062, + 5279.988641044767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5279.629236814933 + ], + [ + 1964.388582533062, + 5280.3480452746 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555694", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.988641044768, + "max_x": 1966.42686520761, + "max_y": 5280.166967671852, + "center": [ + 1965.407723870336, + 5280.0778043583105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5279.988641044768 + ], + [ + 1964.388582533062, + 5280.166967671852 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555695", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5279.810314417684, + "max_x": 1966.42686520761, + "max_y": 5279.988641044768, + "center": [ + 1965.407723870336, + 5279.8994777312255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5279.988641044768 + ], + [ + 1964.388582533062, + 5279.810314417684 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555696", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830125, + "min_y": 5287.200207086396, + "max_x": 1948.929748504673, + "max_y": 5287.559611316229, + "center": [ + 1947.9106071673991, + 5287.379909201312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504673, + 5287.200207086396 + ], + [ + 1946.891465830125, + 5287.559611316229 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555697", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830125, + "min_y": 5286.840802856563, + "max_x": 1948.929748504673, + "max_y": 5287.200207086396, + "center": [ + 1947.9106071673991, + 5287.02050497148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504673, + 5287.200207086396 + ], + [ + 1946.891465830125, + 5286.840802856563 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555698", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830125, + "min_y": 5286.840802856563, + "max_x": 1946.891465830125, + "max_y": 5287.559611316229, + "center": [ + 1946.891465830125, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.891465830125, + 5286.840802856563 + ], + [ + 1946.891465830125, + 5287.559611316229 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555699", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830125, + "min_y": 5287.200207086396, + "max_x": 1948.929748504673, + "max_y": 5287.378533713479, + "center": [ + 1947.9106071673991, + 5287.289370399938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504673, + 5287.200207086396 + ], + [ + 1946.891465830125, + 5287.378533713479 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569A", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830125, + "min_y": 5287.021880459311, + "max_x": 1948.929748504673, + "max_y": 5287.200207086396, + "center": [ + 1947.9106071673991, + 5287.111043772854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504673, + 5287.200207086396 + ], + [ + 1946.891465830125, + 5287.021880459311 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569B", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1779.339300366013, + "min_y": 5295.811213877391, + "max_x": 1781.377583040561, + "max_y": 5296.170618107225, + "center": [ + 1780.358441703287, + 5295.990915992308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.377583040561, + 5295.811213877391 + ], + [ + 1779.339300366013, + 5296.170618107225 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569C", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1779.339300366013, + "min_y": 5295.451809647557, + "max_x": 1781.377583040561, + "max_y": 5295.811213877391, + "center": [ + 1780.358441703287, + 5295.6315117624745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.377583040561, + 5295.811213877391 + ], + [ + 1779.339300366013, + 5295.451809647557 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569D", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1779.339300366013, + "min_y": 5295.451809647557, + "max_x": 1779.339300366013, + "max_y": 5296.170618107225, + "center": [ + 1779.339300366013, + 5295.81121387739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.339300366013, + 5295.451809647557 + ], + [ + 1779.339300366013, + 5296.170618107225 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1779.339300366013, + "min_y": 5295.811213877391, + "max_x": 1781.377583040561, + "max_y": 5295.989540504476, + "center": [ + 1780.358441703287, + 5295.900377190934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.377583040561, + 5295.811213877391 + ], + [ + 1779.339300366013, + 5295.989540504476 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55569F", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1779.339300366013, + "min_y": 5295.632887250307, + "max_x": 1781.377583040561, + "max_y": 5295.811213877391, + "center": [ + 1780.358441703287, + 5295.722050563849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.377583040561, + 5295.811213877391 + ], + [ + 1779.339300366013, + 5295.632887250307 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2004.402128689006, + "min_y": 5287.200207086396, + "max_x": 2006.440411363554, + "max_y": 5287.559611316229, + "center": [ + 2005.4212700262801, + 5287.379909201312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.440411363554, + 5287.200207086396 + ], + [ + 2004.402128689006, + 5287.559611316229 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2004.402128689006, + "min_y": 5286.840802856563, + "max_x": 2006.440411363554, + "max_y": 5287.200207086396, + "center": [ + 2005.4212700262801, + 5287.02050497148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.440411363554, + 5287.200207086396 + ], + [ + 2004.402128689006, + 5286.840802856563 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2004.402128689006, + "min_y": 5286.840802856563, + "max_x": 2004.402128689006, + "max_y": 5287.559611316229, + "center": [ + 2004.402128689006, + 5287.200207086396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.402128689006, + 5286.840802856563 + ], + [ + 2004.402128689006, + 5287.559611316229 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2004.402128689006, + "min_y": 5287.200207086396, + "max_x": 2006.440411363554, + "max_y": 5287.378533713479, + "center": [ + 2005.4212700262801, + 5287.289370399938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.440411363554, + 5287.200207086396 + ], + [ + 2004.402128689006, + 5287.378533713479 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2004.402128689006, + "min_y": 5287.021880459311, + "max_x": 2006.440411363554, + "max_y": 5287.200207086396, + "center": [ + 2005.4212700262801, + 5287.111043772854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.440411363554, + 5287.200207086396 + ], + [ + 2004.402128689006, + 5287.021880459311 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1917.415831198631, + "min_y": 5199.754703342061, + "max_x": 1917.775235428464, + "max_y": 5201.792986016608, + "center": [ + 1917.5955333135475, + 5200.773844679334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5199.754703342061 + ], + [ + 1917.775235428464, + 5201.792986016608 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1917.056426968798, + "min_y": 5199.754703342061, + "max_x": 1917.415831198631, + "max_y": 5201.792986016608, + "center": [ + 1917.2361290837143, + 5200.773844679334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5199.754703342061 + ], + [ + 1917.056426968798, + 5201.792986016608 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1917.056426968798, + "min_y": 5201.792986016608, + "max_x": 1917.775235428464, + "max_y": 5201.792986016608, + "center": [ + 1917.415831198631, + 5201.792986016608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.056426968798, + 5201.792986016608 + ], + [ + 1917.775235428464, + 5201.792986016608 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1917.415831198631, + "min_y": 5199.754703342061, + "max_x": 1917.594157825715, + "max_y": 5201.792986016608, + "center": [ + 1917.504994512173, + 5200.773844679334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5199.754703342061 + ], + [ + 1917.594157825715, + 5201.792986016608 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556A9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1917.237504571546, + "min_y": 5199.754703342061, + "max_x": 1917.415831198631, + "max_y": 5201.792986016608, + "center": [ + 1917.3266678850885, + 5200.773844679334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198631, + 5199.754703342061 + ], + [ + 1917.237504571546, + 5201.792986016608 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1834.099173226263, + "min_y": 5262.742775973602, + "max_x": 1836.137455900811, + "max_y": 5263.102180203437, + "center": [ + 1835.1183145635368, + 5262.92247808852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.099173226263, + 5263.102180203437 + ], + [ + 1836.137455900811, + 5262.742775973602 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1834.099173226263, + "min_y": 5263.102180203437, + "max_x": 1836.137455900811, + "max_y": 5263.461584433269, + "center": [ + 1835.1183145635368, + 5263.281882318353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.099173226263, + 5263.102180203437 + ], + [ + 1836.137455900811, + 5263.461584433269 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1836.137455900811, + "min_y": 5262.742775973602, + "max_x": 1836.137455900811, + "max_y": 5263.461584433269, + "center": [ + 1836.137455900811, + 5263.102180203436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.137455900811, + 5263.461584433269 + ], + [ + 1836.137455900811, + 5262.742775973602 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AD", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1834.099173226263, + "min_y": 5262.923853576352, + "max_x": 1836.137455900811, + "max_y": 5263.102180203437, + "center": [ + 1835.1183145635368, + 5263.013016889894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.099173226263, + 5263.102180203437 + ], + [ + 1836.137455900811, + 5262.923853576352 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1834.099173226263, + "min_y": 5263.102180203437, + "max_x": 1836.137455900811, + "max_y": 5263.280506830519, + "center": [ + 1835.1183145635368, + 5263.191343516977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1834.099173226263, + 5263.102180203437 + ], + [ + 1836.137455900811, + 5263.280506830519 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556AF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1681.466357749714, + "min_y": 5255.023485677043, + "max_x": 1681.825761979547, + "max_y": 5257.06176835159, + "center": [ + 1681.6460598646304, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5255.023485677043 + ], + [ + 1681.825761979547, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1681.106953519879, + "min_y": 5255.023485677043, + "max_x": 1681.466357749714, + "max_y": 5257.06176835159, + "center": [ + 1681.2866556347965, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5255.023485677043 + ], + [ + 1681.106953519879, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1681.106953519879, + "min_y": 5257.06176835159, + "max_x": 1681.825761979547, + "max_y": 5257.06176835159, + "center": [ + 1681.466357749713, + 5257.06176835159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.106953519879, + 5257.06176835159 + ], + [ + 1681.825761979547, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1681.466357749714, + "min_y": 5255.023485677043, + "max_x": 1681.644684376797, + "max_y": 5257.06176835159, + "center": [ + 1681.5555210632556, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5255.023485677043 + ], + [ + 1681.644684376797, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1681.288031122629, + "min_y": 5255.023485677043, + "max_x": 1681.466357749714, + "max_y": 5257.06176835159, + "center": [ + 1681.3771944361715, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1681.466357749714, + 5255.023485677043 + ], + [ + 1681.288031122629, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1704.72466931725, + "min_y": 5255.023485677043, + "max_x": 1705.084073547084, + "max_y": 5257.06176835159, + "center": [ + 1704.904371432167, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.72466931725, + 5255.023485677043 + ], + [ + 1705.084073547084, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1704.365265087417, + "min_y": 5255.023485677043, + "max_x": 1704.72466931725, + "max_y": 5257.06176835159, + "center": [ + 1704.5449672023333, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.72466931725, + 5255.023485677043 + ], + [ + 1704.365265087417, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1704.365265087417, + "min_y": 5257.06176835159, + "max_x": 1705.084073547084, + "max_y": 5257.06176835159, + "center": [ + 1704.7246693172506, + 5257.06176835159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.365265087417, + 5257.06176835159 + ], + [ + 1705.084073547084, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1704.72466931725, + "min_y": 5255.023485677043, + "max_x": 1704.902995944334, + "max_y": 5257.06176835159, + "center": [ + 1704.813832630792, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.72466931725, + 5255.023485677043 + ], + [ + 1704.902995944334, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1704.546342690167, + "min_y": 5255.023485677043, + "max_x": 1704.72466931725, + "max_y": 5257.06176835159, + "center": [ + 1704.6355060037085, + 5256.042627014316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.72466931725, + 5255.023485677043 + ], + [ + 1704.546342690167, + 5257.06176835159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556B9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5244.740935580048, + "max_x": 1796.244196743489, + "max_y": 5245.100339809882, + "center": [ + 1795.225055406215, + 5244.920637694965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5245.100339809882 + ], + [ + 1796.244196743489, + 5244.740935580048 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5245.100339809882, + "max_x": 1796.244196743489, + "max_y": 5245.459744039716, + "center": [ + 1795.225055406215, + 5245.280041924799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5245.100339809882 + ], + [ + 1796.244196743489, + 5245.459744039716 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1796.244196743489, + "min_y": 5244.740935580048, + "max_x": 1796.244196743489, + "max_y": 5245.459744039716, + "center": [ + 1796.244196743489, + 5245.100339809882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.244196743489, + 5245.459744039716 + ], + [ + 1796.244196743489, + 5244.740935580048 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5244.922013182797, + "max_x": 1796.244196743489, + "max_y": 5245.100339809882, + "center": [ + 1795.225055406215, + 5245.011176496339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5245.100339809882 + ], + [ + 1796.244196743489, + 5244.922013182797 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BD", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1794.205914068941, + "min_y": 5245.100339809882, + "max_x": 1796.244196743489, + "max_y": 5245.278666436966, + "center": [ + 1795.225055406215, + 5245.1895031234235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.205914068941, + 5245.100339809882 + ], + [ + 1796.244196743489, + 5245.278666436966 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1722.888886989995, + "min_y": 5314.689662755679, + "max_x": 1723.248291219828, + "max_y": 5316.727945430227, + "center": [ + 1723.0685891049116, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5314.689662755679 + ], + [ + 1723.248291219828, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556BF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1722.529482760162, + "min_y": 5314.689662755679, + "max_x": 1722.888886989995, + "max_y": 5316.727945430227, + "center": [ + 1722.7091848750783, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5314.689662755679 + ], + [ + 1722.529482760162, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1722.529482760162, + "min_y": 5316.727945430227, + "max_x": 1723.248291219828, + "max_y": 5316.727945430227, + "center": [ + 1722.888886989995, + 5316.727945430227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.529482760162, + 5316.727945430227 + ], + [ + 1723.248291219828, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1722.888886989995, + "min_y": 5314.689662755679, + "max_x": 1723.067213617079, + "max_y": 5316.727945430227, + "center": [ + 1722.978050303537, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5314.689662755679 + ], + [ + 1723.067213617079, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1722.71056036291, + "min_y": 5314.689662755679, + "max_x": 1722.888886989995, + "max_y": 5316.727945430227, + "center": [ + 1722.7997236764525, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1722.888886989995, + 5314.689662755679 + ], + [ + 1722.71056036291, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1690.969031877184, + "min_y": 5280.521056551965, + "max_x": 1693.007314551732, + "max_y": 5280.880460781798, + "center": [ + 1691.9881732144581, + 5280.7007586668815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.007314551732, + 5280.521056551965 + ], + [ + 1690.969031877184, + 5280.880460781798 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1690.969031877184, + "min_y": 5280.161652322131, + "max_x": 1693.007314551732, + "max_y": 5280.521056551965, + "center": [ + 1691.9881732144581, + 5280.341354437048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.007314551732, + 5280.521056551965 + ], + [ + 1690.969031877184, + 5280.161652322131 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1690.969031877184, + "min_y": 5280.161652322131, + "max_x": 1690.969031877184, + "max_y": 5280.880460781798, + "center": [ + 1690.969031877184, + 5280.521056551965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.969031877184, + 5280.161652322131 + ], + [ + 1690.969031877184, + 5280.880460781798 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1690.969031877184, + "min_y": 5280.521056551965, + "max_x": 1693.007314551732, + "max_y": 5280.699383179048, + "center": [ + 1691.9881732144581, + 5280.610219865506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.007314551732, + 5280.521056551965 + ], + [ + 1690.969031877184, + 5280.699383179048 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1690.969031877184, + "min_y": 5280.342729924881, + "max_x": 1693.007314551732, + "max_y": 5280.521056551965, + "center": [ + 1691.9881732144581, + 5280.431893238423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.007314551732, + 5280.521056551965 + ], + [ + 1690.969031877184, + 5280.342729924881 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1847.860626984884, + "min_y": 5305.144963027552, + "max_x": 1848.220031214717, + "max_y": 5307.1832457021, + "center": [ + 1848.0403290998006, + 5306.164104364826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984884, + 5305.144963027552 + ], + [ + 1848.220031214717, + 5307.1832457021 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556C9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1847.501222755051, + "min_y": 5305.144963027552, + "max_x": 1847.860626984884, + "max_y": 5307.1832457021, + "center": [ + 1847.6809248699674, + 5306.164104364826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984884, + 5305.144963027552 + ], + [ + 1847.501222755051, + 5307.1832457021 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1847.501222755051, + "min_y": 5307.1832457021, + "max_x": 1848.220031214717, + "max_y": 5307.1832457021, + "center": [ + 1847.860626984884, + 5307.1832457021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.501222755051, + 5307.1832457021 + ], + [ + 1848.220031214717, + 5307.1832457021 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1847.860626984884, + "min_y": 5305.144963027552, + "max_x": 1848.038953611968, + "max_y": 5307.1832457021, + "center": [ + 1847.949790298426, + 5306.164104364826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984884, + 5305.144963027552 + ], + [ + 1848.038953611968, + 5307.1832457021 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1847.682300357799, + "min_y": 5305.144963027552, + "max_x": 1847.860626984884, + "max_y": 5307.1832457021, + "center": [ + 1847.7714636713415, + 5306.164104364826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.860626984884, + 5305.144963027552 + ], + [ + 1847.682300357799, + 5307.1832457021 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CD", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5298.787780409881, + "max_x": 1907.590939686106, + "max_y": 5300.826063084429, + "center": [ + 1907.4112375711893, + 5299.806921747155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5298.787780409881 + ], + [ + 1907.590939686106, + 5300.826063084429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1906.87213122644, + "min_y": 5298.787780409881, + "max_x": 1907.231535456273, + "max_y": 5300.826063084429, + "center": [ + 1907.0518333413565, + 5299.806921747155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5298.787780409881 + ], + [ + 1906.87213122644, + 5300.826063084429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556CF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1906.87213122644, + "min_y": 5300.826063084429, + "max_x": 1907.590939686106, + "max_y": 5300.826063084429, + "center": [ + 1907.231535456273, + 5300.826063084429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.87213122644, + 5300.826063084429 + ], + [ + 1907.590939686106, + 5300.826063084429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5298.787780409881, + "max_x": 1907.409862083357, + "max_y": 5300.826063084429, + "center": [ + 1907.320698769815, + 5299.806921747155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5298.787780409881 + ], + [ + 1907.409862083357, + 5300.826063084429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1907.053208829188, + "min_y": 5298.787780409881, + "max_x": 1907.231535456273, + "max_y": 5300.826063084429, + "center": [ + 1907.1423721427304, + 5299.806921747155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5298.787780409881 + ], + [ + 1907.053208829188, + 5300.826063084429 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1898.152337620483, + "min_y": 5376.64245625239, + "max_x": 1900.190620295032, + "max_y": 5377.001860482224, + "center": [ + 1899.1714789577575, + 5376.822158367308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.152337620483, + 5377.001860482224 + ], + [ + 1900.190620295032, + 5376.64245625239 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1898.152337620483, + "min_y": 5377.001860482224, + "max_x": 1900.190620295032, + "max_y": 5377.361264712058, + "center": [ + 1899.1714789577575, + 5377.181562597141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.152337620483, + 5377.001860482224 + ], + [ + 1900.190620295032, + 5377.361264712058 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1900.190620295032, + "min_y": 5376.64245625239, + "max_x": 1900.190620295032, + "max_y": 5377.361264712058, + "center": [ + 1900.190620295032, + 5377.0018604822235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1900.190620295032, + 5377.361264712058 + ], + [ + 1900.190620295032, + 5376.64245625239 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1898.152337620483, + "min_y": 5376.823533855139, + "max_x": 1900.190620295032, + "max_y": 5377.001860482224, + "center": [ + 1899.1714789577575, + 5376.912697168682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.152337620483, + 5377.001860482224 + ], + [ + 1900.190620295032, + 5376.823533855139 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1898.152337620483, + "min_y": 5377.001860482224, + "max_x": 1900.190620295032, + "max_y": 5377.180187109309, + "center": [ + 1899.1714789577575, + 5377.091023795767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1898.152337620483, + 5377.001860482224 + ], + [ + 1900.190620295032, + 5377.180187109309 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.923397263726, + "max_x": 1948.929748504613, + "max_y": 5379.282801493558, + "center": [ + 1947.910607167339, + 5379.103099378642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504613, + 5378.923397263726 + ], + [ + 1946.891465830065, + 5379.282801493558 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.563993033893, + "max_x": 1948.929748504613, + "max_y": 5378.923397263726, + "center": [ + 1947.910607167339, + 5378.743695148809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504613, + 5378.923397263726 + ], + [ + 1946.891465830065, + 5378.563993033893 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556D9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.563993033893, + "max_x": 1946.891465830065, + "max_y": 5379.282801493558, + "center": [ + 1946.891465830065, + 5378.923397263725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1946.891465830065, + 5378.563993033893 + ], + [ + 1946.891465830065, + 5379.282801493558 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.923397263726, + "max_x": 1948.929748504613, + "max_y": 5379.101723890808, + "center": [ + 1947.910607167339, + 5379.012560577266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504613, + 5378.923397263726 + ], + [ + 1946.891465830065, + 5379.101723890808 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1946.891465830065, + "min_y": 5378.74507063664, + "max_x": 1948.929748504613, + "max_y": 5378.923397263726, + "center": [ + 1947.910607167339, + 5378.834233950183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1948.929748504613, + 5378.923397263726 + ], + [ + 1946.891465830065, + 5378.74507063664 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1895.442569110683, + "min_y": 5363.385565473106, + "max_x": 1895.801973340516, + "max_y": 5365.423848147654, + "center": [ + 1895.6222712255994, + 5364.40470681038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.442569110683, + 5363.385565473106 + ], + [ + 1895.801973340516, + 5365.423848147654 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DD", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1895.08316488085, + "min_y": 5363.385565473106, + "max_x": 1895.442569110683, + "max_y": 5365.423848147654, + "center": [ + 1895.2628669957667, + 5364.40470681038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.442569110683, + 5363.385565473106 + ], + [ + 1895.08316488085, + 5365.423848147654 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1895.08316488085, + "min_y": 5365.423848147654, + "max_x": 1895.801973340516, + "max_y": 5365.423848147654, + "center": [ + 1895.442569110683, + 5365.423848147654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.08316488085, + 5365.423848147654 + ], + [ + 1895.801973340516, + 5365.423848147654 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556DF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1895.442569110683, + "min_y": 5363.385565473106, + "max_x": 1895.620895737767, + "max_y": 5365.423848147654, + "center": [ + 1895.531732424225, + 5364.40470681038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.442569110683, + 5363.385565473106 + ], + [ + 1895.620895737767, + 5365.423848147654 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556E0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1895.264242483598, + "min_y": 5363.385565473106, + "max_x": 1895.442569110683, + "max_y": 5365.423848147654, + "center": [ + 1895.3534057971406, + 5364.40470681038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1895.442569110683, + 5363.385565473106 + ], + [ + 1895.264242483598, + 5365.423848147654 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5556E1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5163.700820524772, + "max_x": 2065.618958545478, + "max_y": 5163.700820524772, + "center": [ + 2033.9914111696262, + 5163.700820524772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5163.700820524772 + ], + [ + 2002.363863793774, + 5163.700820524772 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5174.385627940915, + "max_x": 2065.618958545478, + "max_y": 5174.385627940915, + "center": [ + 2033.9914111696262, + 5174.385627940915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5174.385627940915 + ], + [ + 2002.363863793774, + 5174.385627940915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5153.016013108634, + "max_x": 2065.618958545478, + "max_y": 5153.016013108634, + "center": [ + 2033.9914111696262, + 5153.016013108634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5153.016013108634 + ], + [ + 2002.363863793774, + 5153.016013108634 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5153.016013108634, + "max_x": 2065.618958545478, + "max_y": 5153.016013108634, + "center": [ + 2033.9914111696262, + 5153.016013108634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5153.016013108634 + ], + [ + 2002.363863793774, + 5153.016013108634 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5163.700820524772, + "max_x": 2065.618958545478, + "max_y": 5163.700820524772, + "center": [ + 2033.9914111696262, + 5163.700820524772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5163.700820524772 + ], + [ + 2002.363863793774, + 5163.700820524772 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E6", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5174.385627940915, + "max_x": 2065.618958545478, + "max_y": 5174.385627940915, + "center": [ + 2033.9914111696262, + 5174.385627940915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5174.385627940915 + ], + [ + 2002.363863793774, + 5174.385627940915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5142.331205692503, + "max_x": 2065.618958545478, + "max_y": 5142.331205692503, + "center": [ + 2033.9914111696262, + 5142.331205692503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5142.331205692503 + ], + [ + 2002.363863793774, + 5142.331205692503 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2032.759815095675, + "min_y": 5137.550813194252, + "max_x": 2050.1452644507453, + "max_y": 5139.3617975020725, + "center": [ + 2041.4525397732102, + 5138.4563053481625 + ] + }, + "raw_value": "SARF-#10-PID-001", + "clean_value": "SARF-#10-PID-001", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556E9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5142.331205692503, + "max_x": 2065.618958545478, + "max_y": 5142.331205692503, + "center": [ + 2033.9914111696262, + 5142.331205692503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5142.331205692503 + ], + [ + 2002.363863793774, + 5142.331205692503 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556EA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5139.12964414832, + "max_x": 2024.755391199748, + "max_y": 5139.12964414832, + "center": [ + 2013.559627496761, + 5139.12964414832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.363863793774, + 5139.12964414832 + ], + [ + 2024.755391199748, + 5139.12964414832 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556EB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2015.602853244085, + "min_y": 5136.971395691128, + "max_x": 2018.5236087357368, + "max_y": 5138.188377145983, + "center": [ + 2017.063230989911, + 5137.579886418556 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556EC", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2015.602853244085, + "min_y": 5136.971395691128, + "max_x": 2018.5236087357368, + "max_y": 5138.188377145983, + "center": [ + 2017.063230989911, + 5137.579886418556 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556ED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2017.670501377594, + "min_y": 5139.886476723041, + "max_x": 2018.6721361012858, + "max_y": 5141.5558679291935, + "center": [ + 2018.1713187394398, + 5140.721172326117 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556EE", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.811500807453, + "min_y": 5139.940040702246, + "max_x": 2008.9228229178436, + "max_y": 5141.157022157101, + "center": [ + 2006.3671618626483, + 5140.548531429673 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556EF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.811500807453, + "min_y": 5139.940040702246, + "max_x": 2008.9228229178436, + "max_y": 5141.157022157101, + "center": [ + 2006.3671618626483, + 5140.548531429673 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2004.337279271238, + "min_y": 5136.997399156689, + "max_x": 2007.9882236358028, + "max_y": 5138.214380611545, + "center": [ + 2006.1627514535203, + 5137.605889884117 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F1", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2004.337279271238, + "min_y": 5136.997399156689, + "max_x": 2007.9882236358028, + "max_y": 5138.214380611545, + "center": [ + 2006.1627514535203, + 5137.605889884117 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2011.250622504293, + "min_y": 5135.934550405232, + "max_x": 2011.250622504293, + "max_y": 5142.331205692503, + "center": [ + 2011.250622504293, + 5139.1328780488675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.250622504293, + 5142.331205692503 + ], + [ + 2011.250622504293, + 5135.934550405232 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556F3", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2026.203242227648, + "min_y": 5140.302237563809, + "max_x": 2031.3145643380385, + "max_y": 5141.519219018664, + "center": [ + 2028.7589032828432, + 5140.910728291237 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2026.203242227648, + "min_y": 5140.302237563809, + "max_x": 2031.3145643380385, + "max_y": 5141.519219018664, + "center": [ + 2028.7589032828432, + 5140.910728291237 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2024.755391199748, + "min_y": 5135.934550405232, + "max_x": 2024.755391199748, + "max_y": 5142.331205692503, + "center": [ + 2024.755391199748, + 5139.1328780488675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2024.755391199748, + 5142.331205692503 + ], + [ + 2024.755391199748, + 5135.934550405232 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556F6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5150.785254391439, + "max_x": 2008.5530514251716, + "max_y": 5152.002235846294, + "center": [ + 2005.9973903699763, + 5151.393745118867 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F7", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5172.154869223718, + "max_x": 2008.5530514251716, + "max_y": 5173.3718506785735, + "center": [ + 2005.9973903699763, + 5172.763359951146 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5182.146471836045, + "max_x": 2012.2039957897364, + "max_y": 5183.3634532909, + "center": [ + 2007.8228625522588, + 5182.754962563473 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5556F9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2059.597435721981, + "min_y": 5137.331595442703, + "max_x": 2064.566856386593, + "max_y": 5137.331595442703, + "center": [ + 2062.082146054287, + 5137.331595442703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2059.597435721981, + 5137.331595442703 + ], + [ + 2064.566856386593, + 5137.331595442703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2059.597435721981, + "min_y": 5137.331595442703, + "max_x": 2062.055200139738, + "max_y": 5141.639150974874, + "center": [ + 2060.8263179308597, + 5139.485373208789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2059.597435721981, + 5137.331595442703 + ], + [ + 2062.055200139738, + 5141.639150974874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FB", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2059.597435721981, + "min_y": 5137.331595442703, + "max_x": 2062.055200139738, + "max_y": 5141.639150974874, + "center": [ + 2060.8263179308597, + 5139.485373208789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2059.597435721981, + 5137.331595442703 + ], + [ + 2062.055200139738, + 5141.639150974874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2058.866574197756, + "min_y": 5135.934550405232, + "max_x": 2058.866574197756, + "max_y": 5142.331205692503, + "center": [ + 2058.866574197756, + 5139.1328780488675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.866574197756, + 5142.331205692503 + ], + [ + 2058.866574197756, + 5135.934550405232 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FD", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2062.055200139738, + "min_y": 5137.331595442703, + "max_x": 2064.566856386593, + "max_y": 5141.639150974874, + "center": [ + 2063.3110282631656, + 5139.485373208789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2062.055200139738, + 5141.639150974874 + ], + [ + 2064.566856386593, + 5137.331595442703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5184.177878805336, + "max_x": 2065.618958545478, + "max_y": 5184.177878805336, + "center": [ + 2033.9914111696262, + 5184.177878805336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5184.177878805336 + ], + [ + 2002.363863793774, + 5184.177878805336 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5556FF", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5184.177878805336, + "max_x": 2065.618958545478, + "max_y": 5184.177878805336, + "center": [ + 2033.9914111696262, + 5184.177878805336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545478, + 5184.177878805336 + ], + [ + 2002.363863793774, + 5184.177878805336 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555700", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2061.457130402988, + "min_y": 5138.140473025035, + "max_x": 2062.621334600872, + "max_y": 5140.080813354842, + "center": [ + 2062.03923250193, + 5139.110643189939 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555701", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5135.934550405232, + "max_x": 2002.363863793774, + "max_y": 5184.177878805336, + "center": [ + 2002.363863793774, + 5160.0562146052835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.363863793774, + 5184.177878805336 + ], + [ + 2002.363863793774, + 5135.934550405232 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555702", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2020.953903683634, + "min_y": 5177.983481611517, + "max_x": 2044.4714120418955, + "max_y": 5180.596538095769, + "center": [ + 2032.712657862765, + 5179.290009853643 + ] + }, + "raw_value": "10th PLANT 증설공사", + "clean_value": "10th PLANT 증설공사", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "555703", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2021.297901124275, + "min_y": 5167.707700792951, + "max_x": 2066.765083950247, + "max_y": 5170.320757277203, + "center": [ + 2044.031492537261, + 5169.014229035077 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55570C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2015.754325839225, + "min_y": 5170.507629388604, + "max_x": 2016.103985690584, + "max_y": 5170.507629388604, + "center": [ + 2015.9291557649044, + 5170.507629388604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2015.754325839225, + 5170.507629388604 + ], + [ + 2016.103985690584, + 5170.507629388604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55570D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2015.804251177046, + "min_y": 5169.32752945803, + "max_x": 2016.103985690584, + "max_y": 5169.32752945803, + "center": [ + 2015.954118433815, + 5169.32752945803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5169.32752945803 + ], + [ + 2015.804251177046, + 5169.32752945803 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55570E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.001537949196, + "min_y": 5169.624216574953, + "max_x": 2016.103985690584, + "max_y": 5169.624216574953, + "center": [ + 2016.05276181989, + 5169.624216574953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5169.624216574953 + ], + [ + 2016.001537949196, + 5169.624216574953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55570F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2015.407519072244, + "min_y": 5169.120402320693, + "max_x": 2015.764999305231, + "max_y": 5169.120402320693, + "center": [ + 2015.5862591887376, + 5169.120402320693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2015.764999305231, + 5169.120402320693 + ], + [ + 2015.407519072244, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555710", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2015.407519072244, + "min_y": 5169.120402320693, + "max_x": 2015.754325839225, + "max_y": 5170.507629388604, + "center": [ + 2015.5809224557345, + 5169.8140158546485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2015.754325839225, + 5170.507629388604 + ], + [ + 2015.407519072244, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555711", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.001537949196, + "min_y": 5169.624216574953, + "max_x": 2016.103985690584, + "max_y": 5170.03400754051, + "center": [ + 2016.05276181989, + 5169.829112057731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5170.03400754051 + ], + [ + 2016.001537949196, + 5169.624216574953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555712", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2015.764999305231, + "min_y": 5169.120402320693, + "max_x": 2015.804251177046, + "max_y": 5169.32752945803, + "center": [ + 2015.7846252411384, + 5169.223965889361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2015.804251177046, + 5169.32752945803 + ], + [ + 2015.764999305231, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555713", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.103985690584, + "min_y": 5170.507629388604, + "max_x": 2016.453645541943, + "max_y": 5170.507629388604, + "center": [ + 2016.2788156162635, + 5170.507629388604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.453645541943, + 5170.507629388604 + ], + [ + 2016.103985690584, + 5170.507629388604 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555714", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.103985690584, + "min_y": 5169.32752945803, + "max_x": 2016.403720204125, + "max_y": 5169.32752945803, + "center": [ + 2016.2538529473545, + 5169.32752945803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5169.32752945803 + ], + [ + 2016.403720204125, + 5169.32752945803 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555715", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.103985690584, + "min_y": 5169.624216574953, + "max_x": 2016.206433431974, + "max_y": 5169.624216574953, + "center": [ + 2016.155209561279, + 5169.624216574953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5169.624216574953 + ], + [ + 2016.206433431974, + 5169.624216574953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555716", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.442972075938, + "min_y": 5169.120402320693, + "max_x": 2016.80045230892, + "max_y": 5169.120402320693, + "center": [ + 2016.6217121924292, + 5169.120402320693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.442972075938, + 5169.120402320693 + ], + [ + 2016.80045230892, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555717", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.453645541943, + "min_y": 5169.120402320693, + "max_x": 2016.80045230892, + "max_y": 5170.507629388604, + "center": [ + 2016.6270489254316, + 5169.8140158546485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.453645541943, + 5170.507629388604 + ], + [ + 2016.80045230892, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555718", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.103985690584, + "min_y": 5169.624216574953, + "max_x": 2016.206433431974, + "max_y": 5170.03400754051, + "center": [ + 2016.155209561279, + 5169.829112057731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.103985690584, + 5170.03400754051 + ], + [ + 2016.206433431974, + 5169.624216574953 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555719", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2016.403720204125, + "min_y": 5169.120402320693, + "max_x": 2016.442972075938, + "max_y": 5169.32752945803, + "center": [ + 2016.4233461400315, + 5169.223965889361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.403720204125, + 5169.32752945803 + ], + [ + 2016.442972075938, + 5169.120402320693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55571A", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2016.254430963111, + "min_y": 5166.6339712742, + "max_x": 2023.1796836788776, + "max_y": 5167.743752928526, + "center": [ + 2019.7170573209942, + 5167.188862101363 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55571B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1648.575143658974, + "min_y": 5135.934550405232, + "max_x": 2065.618958545478, + "max_y": 5432.935976887679, + "center": [ + 1857.097051102226, + 5284.4352636464555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1648.575143658974, + 5432.935976887679 + ], + [ + 2065.618958545478, + 5432.935976887679 + ], + [ + 2065.618958545478, + 5135.934550405232 + ], + [ + 1648.575143658974, + 5135.934550405232 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55571C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2003.441729314781, + "min_y": 5161.470061807578, + "max_x": 2012.2039957897364, + "max_y": 5162.687043262433, + "center": [ + 2007.8228625522588, + 5162.078552535006 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55571D", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2030.893828993726, + "min_y": 5156.568614522566, + "max_x": 2041.7597348406448, + "max_y": 5159.155734962309, + "center": [ + 2036.3267819171854, + 5157.862174742438 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "555720", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2018.342319660513, + "min_y": 5160.96256024721, + "max_x": 2018.961861301738, + "max_y": 5160.96256024721, + "center": [ + 2018.6520904811255, + 5160.96256024721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2018.961861301738, + 5160.96256024721 + ], + [ + 2018.342319660513, + 5160.96256024721 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555721", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2016.041164993094, + "min_y": 5160.96256024721, + "max_x": 2016.660706634322, + "max_y": 5160.96256024721, + "center": [ + 2016.350935813708, + 5160.96256024721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.660706634322, + 5160.96256024721 + ], + [ + 2016.041164993094, + 5160.96256024721 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555722", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2016.041164993094, + "min_y": 5160.077500759741, + "max_x": 2018.961861301738, + "max_y": 5160.077500759741, + "center": [ + 2017.501513147416, + 5160.077500759741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2018.961861301738, + 5160.077500759741 + ], + [ + 2016.041164993094, + 5160.077500759741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555723", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2016.660706634322, + "min_y": 5160.96256024721, + "max_x": 2016.660706634322, + "max_y": 5161.493595939702, + "center": [ + 2016.660706634322, + 5161.228078093456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.660706634322, + 5161.493595939702 + ], + [ + 2016.660706634322, + 5160.96256024721 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555724", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2016.041164993094, + "min_y": 5160.077500759741, + "max_x": 2016.041164993094, + "max_y": 5160.96256024721, + "center": [ + 2016.041164993094, + 5160.520030503476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.041164993094, + 5160.96256024721 + ], + [ + 2016.041164993094, + 5160.077500759741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555725", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2018.342319660513, + "min_y": 5160.96256024721, + "max_x": 2018.342319660513, + "max_y": 5161.493595939702, + "center": [ + 2018.342319660513, + 5161.228078093456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2018.342319660513, + 5161.493595939702 + ], + [ + 2018.342319660513, + 5160.96256024721 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555726", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2018.961861301738, + "min_y": 5160.077500759741, + "max_x": 2018.961861301738, + "max_y": 5160.96256024721, + "center": [ + 2018.961861301738, + 5160.520030503476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2018.961861301738, + 5160.96256024721 + ], + [ + 2018.961861301738, + 5160.077500759741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "555729", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2016.8819715061875, + "min_y": 5157.389367591922, + "max_x": 2018.1210547886405, + "max_y": 5158.628450874375, + "center": [ + 2017.501513147414, + 5158.008909233148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.501513147414, + 5158.008909233148 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55572B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2019.7367875346686, + "min_y": 5157.360883429193, + "max_x": 2020.9758708171216, + "max_y": 5158.599966711646, + "center": [ + 2020.356329175895, + 5157.980425070419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2020.356329175895, + 5157.980425070419 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55572C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2019.688791856176, + "min_y": 5158.436184260919, + "max_x": 2020.188508478128, + "max_y": 5158.576804193642, + "center": [ + 2019.938650167152, + 5158.50649422728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2020.188508478128, + 5158.576804193642 + ], + [ + 2019.688791856176, + 5158.436184260919 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55572D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2018.120898182488, + "min_y": 5157.994979999913, + "max_x": 2019.688791856176, + "max_y": 5158.436184260919, + "center": [ + 2018.904845019332, + 5158.215582130416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2019.688791856176, + 5158.436184260919 + ], + [ + 2018.120898182488, + 5157.994979999913 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55572E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.66933384518, + "min_y": 5157.412530109931, + "max_x": 2018.169050467135, + "max_y": 5157.553150042647, + "center": [ + 2017.9191921561576, + 5157.482840076289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.66933384518, + 5157.412530109931 + ], + [ + 2018.169050467135, + 5157.553150042647 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55572F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2018.169050467135, + "min_y": 5157.553150042647, + "max_x": 2019.736944140817, + "max_y": 5157.994354303662, + "center": [ + 2018.9529973039762, + 5157.773752173154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2018.169050467135, + 5157.553150042647 + ], + [ + 2019.736944140817, + 5157.994354303662 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555730", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1846.382987268679, + "min_y": 5195.216511204847, + "max_x": 1879.979427780481, + "max_y": 5197.016511204847, + "center": [ + 1863.18120752458, + 5196.1165112048475 + ] + }, + "raw_value": "\\pi12.40092;{\\W0.9;\\LC-10111\\P\\pi12.20639;\\lCOLUMN}", + "clean_value": "\\pi12.40092; .9; C-10111 \\pi12.20639;\\lCOLUMN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555734", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1847.467023388012, + "min_y": 5188.393433650109, + "max_x": 1888.93451529458, + "max_y": 5190.193433650109, + "center": [ + 1868.200769341296, + 5189.293433650109 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,300 x 36,871H (49.5m3)\\PDP : 0.19 MPa / OP : 0.009 MPa\\PDT : 200 %%DC / OT : 98 %%DC \\PMATERIAL : STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C1,300 x 36,871H (49.5m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555738", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1826.138222415494, + "min_y": 5167.495652045844, + "max_x": 1859.734662927296, + "max_y": 5169.295652045844, + "center": [ + 1842.936442671395, + 5168.395652045843 + ] + }, + "raw_value": "\\pi12.32838;{\\W0.9;\\LE-10112\\P\\pi7.36178;\\lTOP CONDENSER}", + "clean_value": "\\pi12.32838; .9; E-10112 \\pi7.36178;\\lTOP CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55573C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1945.031791555446, + "min_y": 5168.708606206538, + "max_x": 1978.628232067248, + "max_y": 5170.508606206538, + "center": [ + 1961.830011811347, + 5169.608606206539 + ] + }, + "raw_value": "\\pi12.32289;{\\W0.9;\\LE-10117\\P\\pi7.0969;SIDE CONDENSER}", + "clean_value": "\\pi12.32289; .9; E-10117 \\pi7.0969;SIDE CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555740", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1946.348652008367, + "min_y": 5161.736861406841, + "max_x": 1985.3473854022654, + "max_y": 5163.536861406841, + "center": [ + 1965.8480187053162, + 5162.6368614068415 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 2,982H (1.87m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.1 MPa\\PDT(S/T) : 180 %%DC / 180 %%DC\\POT(S/T) : 15 %%DC / 86 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C800 x 2,982H (1.87m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555744", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1905.657072317515, + "min_y": 5168.848065082132, + "max_x": 1939.253512829317, + "max_y": 5170.648065082132, + "center": [ + 1922.455292573416, + 5169.748065082133 + ] + }, + "raw_value": "\\pi12.32289;{\\W0.9;\\LE-10119\\P\\pi7.34639;BOTTOM COOLER}", + "clean_value": "\\pi12.32289; .9; E-10119 \\pi7.34639;BOTTOM COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555748", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1905.587160633451, + "min_y": 5162.617906419882, + "max_x": 1943.5054354509305, + "max_y": 5164.4179064198825, + "center": [ + 1924.5462980421908, + 5163.517906419882 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 982H (0.076m3)\\PDP(S/T) : 0.5 MPa / 0.5 MPa\\POP(S/T) : 0.3 MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 35 %%DC / 109 %%DC \\PMATERIAL(S/T) : STS304 / STS304\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C259.4 x 982H (0.076m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 109 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55574C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1882.305294959467, + "min_y": 5195.495192185733, + "max_x": 1915.901735471269, + "max_y": 5197.295192185733, + "center": [ + 1899.103515215368, + 5196.395192185733 + ] + }, + "raw_value": "\\pi12.22287;{\\W0.9;\\LD-10113\\P\\pi9.10157;\\lREFLUX DRUM}", + "clean_value": "\\pi12.22287; .9; D-10113 \\pi9.10157;\\lREFLUX DRUM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555750", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1887.58841599188, + "min_y": 5188.349869355755, + "max_x": 1929.1307492837714, + "max_y": 5190.149869355755, + "center": [ + 1908.3595826378257, + 5189.249869355755 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 4,180H (3.4m3)\\PDP : 0.3 MPa / OP : 0.01 MPa\\PDT : 180 %%DC / OT : 45 %%DC \\PMATERIAL : STS316L\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C1,000 x 4,180H (3.4m3) DP : 0.3 MPa / OP : 0.01 MPa DT : 180 %%DC / OT : 45 %%DC MATERIAL : STS316L INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555754", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1823.312845750116, + "min_y": 5161.040175771482, + "max_x": 1863.2178778714092, + "max_y": 5162.840175771482, + "center": [ + 1843.2653618107624, + 5161.940175771482 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 2,982H (2.4m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.01 MPa\\PDT(S/T) : 120 %%DC / 180 %%DC\\POT(S/T) : 25 %%DC / 85 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C1,000 x 2,982H (2.4m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.01 MPa DT(S/T) : 120 %%DC / 180 %%DC OT(S/T) : 25 %%DC / 85 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555758", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1859.957372012977, + "min_y": 5167.774157316288, + "max_x": 1893.553812524779, + "max_y": 5169.574157316289, + "center": [ + 1876.755592268878, + 5168.674157316289 + ] + }, + "raw_value": "\\pi9.95883;{\\W0.9;\\LE-10115 A/B\\P\\pi11.53817;\\lREBOILER}", + "clean_value": "\\pi9.95883; .9; E-10115 A/B \\pi11.53817;\\lREBOILER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55575C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1862.659022148705, + "min_y": 5161.372706358587, + "max_x": 1902.6672190003487, + "max_y": 5163.172706358587, + "center": [ + 1882.6631205745268, + 5162.272706358586 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C645 x 2,482H (1.2m3)\\PDP(S/T) : 1.0 MPa / 0.3 MPa\\POP(S/T) : 0.45MPa / 0.01 MPa\\PDT(S/T) : 220 %%DC / 220 %%DC\\POT(S/T) : 147 %%DC / 98 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C645 x 2,482H (1.2m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555760", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1807.199138323122, + "min_y": 5194.705741790492, + "max_x": 1840.795578834924, + "max_y": 5196.505741790492, + "center": [ + 1823.997358579023, + 5195.605741790492 + ] + }, + "raw_value": "\\pi12.33058;{\\W0.9;\\LE-10103\\P\\pi10.39515;\\lPREHEATER}", + "clean_value": "\\pi12.33058; .9; E-10103 \\pi10.39515;\\lPREHEATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555764", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1809.134060098253, + "min_y": 5188.541259672852, + "max_x": 1855.1481132641572, + "max_y": 5190.341259672852, + "center": [ + 1832.1410866812053, + 5189.4412596728525 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 1,482H (0.1m3)\\PDP(S/T) : 1.0 MPa / 0.5 MPa\\POP(S/T) : 0.3 MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 140 %%DC / 60 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C259.4 x 1,482H (0.1m3) DP(S/T) : 1.0 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 140 %%DC / 60 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555768", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5224.825891022859, + "max_x": 1972.058827528247, + "max_y": 5224.825891022859, + "center": [ + 1962.189773908776, + 5224.825891022859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.320720289305, + 5224.825891022859 + ], + [ + 1972.058827528247, + 5224.825891022859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5222.212834538607, + "max_x": 1972.058827528247, + "max_y": 5222.212834538607, + "center": [ + 1962.189773908776, + 5222.212834538607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.320720289305, + 5222.212834538607 + ], + [ + 1972.058827528247, + 5222.212834538607 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55576A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1956.804490064993, + "min_y": 5225.572478589787, + "max_x": 1965.7635408681401, + "max_y": 5227.0656537236455, + "center": [ + 1961.2840154665664, + 5226.319066156717 + ] + }, + "raw_value": "HEAVY ENDS", + "clean_value": "HEAVY ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55576B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.021979325384, + "min_y": 5222.959422105537, + "max_x": 1956.3816233765642, + "max_y": 5224.07930345593, + "center": [ + 1954.7018013509742, + 5223.519362780733 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55576C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1959.355599593824, + "min_y": 5222.959422105537, + "max_x": 1965.4029588859485, + "max_y": 5224.07930345593, + "center": [ + 1962.3792792398863, + 5223.519362780733 + ] + }, + "raw_value": "20~45%%DC", + "clean_value": "20~45%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55576D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1952.885993732836, + "min_y": 5220.346365621285, + "max_x": 1956.917566594252, + "max_y": 5221.466246971679, + "center": [ + 1954.9017801635441, + 5220.9063062964815 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55576E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1959.219614001277, + "min_y": 5220.346365621285, + "max_x": 1967.9546885343457, + "max_y": 5221.466246971679, + "center": [ + 1963.5871512678114, + 5220.9063062964815 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55576F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.460162439787, + "min_y": 5219.599778054355, + "max_x": 1958.460162439787, + "max_y": 5224.825891022859, + "center": [ + 1958.460162439787, + 5222.212834538606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.460162439787, + 5224.825891022859 + ], + [ + 1958.460162439787, + 5219.599778054355 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555770", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1952.320720289305, + "min_y": 5219.599778054355, + "max_x": 1972.058827528247, + "max_y": 5227.812241290575, + "center": [ + 1962.189773908776, + 5223.706009672465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.320720289305, + 5219.599778054355 + ], + [ + 1972.058827528247, + 5219.599778054355 + ], + [ + 1972.058827528247, + 5227.812241290575 + ], + [ + 1952.320720289305, + 5227.812241290575 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555771", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1732.531037670812, + "min_y": 5191.433785331277, + "max_x": 1754.9286646786802, + "max_y": 5193.233785331277, + "center": [ + 1743.7298511747463, + 5192.333785331277 + ] + }, + "raw_value": "\\pi4.76827;{\\W0.9;\\LF-10102A/B\\P\\pi2.22617;FILTER HOUSING}", + "clean_value": "\\pi4.76827; .9; F-10102A/B \\pi2.22617;FILTER HOUSING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555775", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1733.747716777505, + "min_y": 5184.372191494611, + "max_x": 1763.7029759316238, + "max_y": 5186.172191494611, + "center": [ + 1748.7253463545644, + 5185.2721914946105 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C89.1 x 366H\\PVOLUME : 0.002M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.99MPa / 0.5MPa\\PDT/ OT : 40}%%DC{\\H0.999999x;\\A0; / AMB\\PMATERIAL : }STS304", + "clean_value": ".9; SIZE : %%C89.1 x 366H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 %%DC .999999x; / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555779", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1762.71747835037, + "min_y": 5191.269123762023, + "max_x": 1785.115105358238, + "max_y": 5193.069123762023, + "center": [ + 1773.9162918543038, + 5192.169123762023 + ] + }, + "raw_value": "\\pi6.16516;{\\W0.9;\\LSP-10601\\P\\pi4.85619;SEPERATER}", + "clean_value": "\\pi6.16516; .9; SP-10601 \\pi4.85619;SEPERATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55577D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1764.942203403656, + "min_y": 5184.118166515938, + "max_x": 1814.1493851022954, + "max_y": 5185.9181665159385, + "center": [ + 1789.5457942529756, + 5185.018166515938 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C 396.4 x 500H\\PVOLUME : 0.098M\\H0.7x;\\S3^ ;}{\\H0.999999x;\\PDP /OP : 0.18 MPa / 0.009 MPa\\PDT/ OT : 200%%DC / 98%%DC \\PMATERIAL : }STS304", + "clean_value": ".9; SIZE : %%C 396.4 x 500H VOLUME : 0.098M .7x; ^ ; .999999x; DP /OP : 0.18 MPa / 0.009 MPa DT/ OT : 200%%DC / 98%%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555781", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1704.316961180723, + "min_y": 5190.632305623219, + "max_x": 1730.4475260232357, + "max_y": 5192.432305623219, + "center": [ + 1717.3822436019793, + 5191.532305623219 + ] + }, + "raw_value": "\\pi3.54531;{\\W0.9;\\LT-3210 (기존설비)\\P\\pi1.71099;\\lWASTE WATER TANK}", + "clean_value": "\\pi3.54531; .9; T-3210 (기존설비) \\pi1.71099;\\lWASTE WATER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555785", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1704.792648263734, + "min_y": 5184.187394105149, + "max_x": 1741.9922708805323, + "max_y": 5185.987394105149, + "center": [ + 1723.3924595721332, + 5185.087394105149 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C3,800 x 4,000H \\PVOLUME : 45.36{\\A1;M\\H0.7x;\\S3^ ;}\\PDP/OP : F.W / ATM\\PDT/OT : 80 %%DC / 40 %%DC \\PMATERIAL : STS304", + "clean_value": ".9;SIZE : %%C3,800 x 4,000H VOLUME : 45.36 M .7x; ^ ; DP/OP : F.W / ATM DT/OT : 80 %%DC / 40 %%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555789", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2002.896221930941, + "min_y": 5184.94290212585, + "max_x": 2005.0737317603666, + "max_y": 5185.850197888111, + "center": [ + 2003.9849768456538, + 5185.396550006981 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2005.90235963095, + "min_y": 5184.177878805336, + "max_x": 2005.902359631099, + "max_y": 5207.543688726264, + "center": [ + 2005.9023596310244, + 5195.8607837658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.90235963095, + 5184.177878805336 + ], + [ + 2005.902359631099, + 5207.543688726264 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793828, + "min_y": 5187.129534074325, + "max_x": 2065.618958545482, + "max_y": 5187.129534074325, + "center": [ + 2033.991411169655, + 5187.129534074325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5187.129534074325 + ], + [ + 2002.363863793828, + 5187.129534074325 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5187.129534074366, + "max_x": 2005.902359631034, + "max_y": 5190.531893182836, + "center": [ + 2004.2011800768196, + 5188.830713628601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631034, + 5188.830713628581 + ], + [ + 2004.201180076778, + 5190.531893182836 + ], + [ + 2002.500000522605, + 5188.830713628581 + ], + [ + 2004.201180076778, + 5187.129534074366 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5190.531893182836, + "max_x": 2005.902359631034, + "max_y": 5193.934252291306, + "center": [ + 2004.2011800768196, + 5192.233072737071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631034, + 5192.233072737091 + ], + [ + 2004.201180076778, + 5193.934252291306 + ], + [ + 2002.500000522605, + 5192.233072737091 + ], + [ + 2004.201180076778, + 5190.531893182836 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5193.934252291306, + "max_x": 2005.902359631034, + "max_y": 5197.336611399776, + "center": [ + 2004.2011800768196, + 5195.6354318455415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631034, + 5195.635431845561 + ], + [ + 2004.201180076778, + 5197.336611399776 + ], + [ + 2002.500000522605, + 5195.635431845561 + ], + [ + 2004.201180076778, + 5193.934252291306 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55578F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522605, + "min_y": 5197.336611399776, + "max_x": 2005.902359631034, + "max_y": 5200.738970508285, + "center": [ + 2004.2011800768196, + 5199.037790954031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631034, + 5199.03779095403 + ], + [ + 2004.201180076778, + 5200.738970508285 + ], + [ + 2002.500000522605, + 5199.03779095403 + ], + [ + 2004.201180076778, + 5197.336611399776 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555790", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2009.958012141395, + "min_y": 5184.94290212585, + "max_x": 2012.5905748421983, + "max_y": 5186.039803251185, + "center": [ + 2011.2742934917967, + 5185.4913526885175 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555791", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2055.170186215233, + "min_y": 5184.177878805375, + "max_x": 2055.170186215381, + "max_y": 5207.54368872483, + "center": [ + 2055.170186215307, + 5195.8607837651025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.170186215233, + 5184.177878805375 + ], + [ + 2055.170186215381, + 5207.54368872483 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555792", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.137532013883, + "min_y": 5184.177878805336, + "max_x": 2050.137532013939, + "max_y": 5207.543688724976, + "center": [ + 2050.1375320139114, + 5195.860783765156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.137532013883, + 5184.177878805336 + ], + [ + 2050.137532013939, + 5207.543688724976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555793", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2050.815354383408, + "min_y": 5184.94290212585, + "max_x": 2053.447917084211, + "max_y": 5186.039803251185, + "center": [ + 2052.131635733809, + 5185.4913526885175 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555794", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2044.466933499753, + "min_y": 5184.177878805336, + "max_x": 2044.466933499812, + "max_y": 5207.543688725142, + "center": [ + 2044.4669334997825, + 5195.860783765239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2044.466933499753, + 5184.177878805336 + ], + [ + 2044.466933499812, + 5207.543688725142 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555795", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2045.468840875969, + "min_y": 5184.94290212585, + "max_x": 2048.101403576772, + "max_y": 5186.039803251185, + "center": [ + 2046.7851222263705, + 5185.4913526885175 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555796", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2038.796334985624, + "min_y": 5184.177878805336, + "max_x": 2038.796334985772, + "max_y": 5207.543688725306, + "center": [ + 2038.7963349856982, + 5195.860783765322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.796334985624, + 5184.177878805336 + ], + [ + 2038.796334985772, + 5207.543688725306 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555797", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2039.751232313665, + "min_y": 5184.94290212585, + "max_x": 2042.3837950144682, + "max_y": 5186.039803251185, + "center": [ + 2041.0675136640666, + 5185.4913526885175 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555798", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2023.607901949131, + "min_y": 5184.94290212585, + "max_x": 2030.8474493763401, + "max_y": 5186.039803251185, + "center": [ + 2027.2276756627357, + 5185.4913526885175 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555799", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2017.492408220517, + "min_y": 5184.177878805375, + "max_x": 2017.492408220576, + "max_y": 5207.543688725927, + "center": [ + 2017.4924082205466, + 5195.860783765651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2017.492408220576, + 5207.543688725927 + ], + [ + 2017.492408220517, + 5184.177878805375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2057.866476453484, + "min_y": 5184.890662039615, + "max_x": 2061.815320504689, + "max_y": 5185.987563164949, + "center": [ + 2059.8408984790867, + 5185.439112602282 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522608, + "min_y": 5200.738970508285, + "max_x": 2005.902359631037, + "max_y": 5204.141329616796, + "center": [ + 2004.2011800768223, + 5202.440150062541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631037, + 5202.440150062541 + ], + [ + 2004.20118007678, + 5204.141329616796 + ], + [ + 2002.500000522608, + 5202.440150062541 + ], + [ + 2004.20118007678, + 5200.738970508285 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2002.500000522656, + "min_y": 5204.141329617275, + "max_x": 2005.902359631086, + "max_y": 5207.543688725785, + "center": [ + 2004.201180076871, + 5205.84250917153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.902359631086, + 5205.84250917153 + ], + [ + 2004.201180076829, + 5207.543688725785 + ], + [ + 2002.500000522656, + 5205.84250917153 + ], + [ + 2004.201180076829, + 5204.141329617275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793778, + "min_y": 5184.177878805437, + "max_x": 2002.363863793927, + "max_y": 5207.543688726367, + "center": [ + 2002.3638637938525, + 5195.860783765902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.363863793778, + 5184.177878805437 + ], + [ + 2002.363863793927, + 5207.543688726367 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793819, + "min_y": 5190.531893182836, + "max_x": 2065.618958545482, + "max_y": 5190.531893182836, + "center": [ + 2033.9914111696507, + 5190.531893182836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5190.531893182836 + ], + [ + 2002.363863793819, + 5190.531893182836 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55579F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793811, + "min_y": 5193.934252291347, + "max_x": 2065.618958545482, + "max_y": 5193.934252291347, + "center": [ + 2033.9914111696467, + 5193.934252291347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5193.934252291347 + ], + [ + 2002.363863793811, + 5193.934252291347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793801, + "min_y": 5197.336611399857, + "max_x": 2065.618958545482, + "max_y": 5197.336611399857, + "center": [ + 2033.9914111696417, + 5197.336611399857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5197.336611399857 + ], + [ + 2002.363863793801, + 5197.336611399857 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793792, + "min_y": 5200.738970508369, + "max_x": 2065.618958545482, + "max_y": 5200.738970508369, + "center": [ + 2033.991411169637, + 5200.738970508369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5200.738970508369 + ], + [ + 2002.363863793792, + 5200.738970508369 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793783, + "min_y": 5204.14132961688, + "max_x": 2065.618958545482, + "max_y": 5204.14132961688, + "center": [ + 2033.9914111696326, + 5204.14132961688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5204.14132961688 + ], + [ + 2002.363863793783, + 5204.14132961688 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2002.363863793774, + "min_y": 5207.54368872539, + "max_x": 2065.618958545482, + "max_y": 5207.54368872539, + "center": [ + 2033.991411169628, + 5207.54368872539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.618958545482, + 5207.54368872539 + ], + [ + 2002.363863793774, + 5207.54368872539 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.155196318643, + "min_y": 5347.779627238405, + "max_x": 1687.155198401871, + "max_y": 5348.824414683027, + "center": [ + 1687.155197360257, + 5348.302020960716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.155198401871, + 5348.824414683027 + ], + [ + 1687.155196318643, + 5347.779627238405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5557A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1689.775376563148, + "min_y": 5347.779625669, + "max_x": 1689.775378646376, + "max_y": 5348.824413113611, + "center": [ + 1689.775377604762, + 5348.302019391305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.775378646376, + 5348.824413113611 + ], + [ + 1689.775376563148, + 5347.779625669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5557A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1808.992426751319, + "min_y": 5253.288226429646, + "max_x": 1813.953656662065, + "max_y": 5253.288226429646, + "center": [ + 1811.4730417066921, + 5253.288226429646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.953656662065, + 5253.288226429646 + ], + [ + 1808.992426751319, + 5253.288226429646 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5557A7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1845.855508124695, + "min_y": 5274.632090628273, + "max_x": 1845.855508124697, + "max_y": 5289.813677092011, + "center": [ + 1845.855508124696, + 5282.222883860142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855508124695, + 5289.813677092011 + ], + [ + 1845.855508124697, + 5274.632090628273 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5557A8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1855.490135919379, + "min_y": 5254.618726117256, + "max_x": 1861.4628364548107, + "max_y": 5260.591426652687, + "center": [ + 1858.476486187095, + 5257.605076384972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.476486187095, + 5257.605076384972 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557A9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.875523999945, + "min_y": 5258.128853211243, + "max_x": 1859.4869705498054, + "max_y": 5259.471725336127, + "center": [ + 1858.6812472748752, + 5258.800289273685 + ] + }, + "raw_value": "FI", + "clean_value": "FI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557AA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.432911999052, + "min_y": 5255.73977299707, + "max_x": 1860.4615283737032, + "max_y": 5257.082645121954, + "center": [ + 1858.4472201863778, + 5256.411209059512 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557AB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.173613688135, + "min_y": 5257.605076384976, + "max_x": 1863.731417190226, + "max_y": 5260.062319996563, + "center": [ + 1861.9525154391804, + 5258.83369819077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.731417190226, + 5257.605076384976 + ], + [ + 1860.173613688135, + 5260.062319996563 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557AC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.173613688135, + "min_y": 5255.147832773388, + "max_x": 1863.731417190226, + "max_y": 5257.605076384976, + "center": [ + 1861.9525154391804, + 5256.376454579182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.731417190226, + 5257.605076384976 + ], + [ + 1860.173613688135, + 5255.147832773388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557AD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1869.241257337358, + "min_y": 5257.605076384972, + "max_x": 1887.609100714373, + "max_y": 5257.605076384974, + "center": [ + 1878.4251790258654, + 5257.605076384973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1869.241257337358, + 5257.605076384974 + ], + [ + 1887.609100714373, + 5257.605076384972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5557AE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1855.537514615887, + "min_y": 5252.746853956975, + "max_x": 1865.6164467694275, + "max_y": 5253.866735307369, + "center": [ + 1860.5769806926573, + 5253.306794632172 + ] + }, + "raw_value": "BALL FLOW METER", + "clean_value": "BALL FLOW METER", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5557AF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1889.358980837785, + "min_y": 5391.478991292749, + "max_x": 1892.4939510872593, + "max_y": 5392.785228896697, + "center": [ + 1890.9264659625223, + 5392.1321100947225 + ] + }, + "raw_value": "PICA", + "clean_value": "PICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B0", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.2139984292862, + "min_y": 5387.979299895091, + "max_x": 1893.9381272189416, + "max_y": 5393.7034286847465, + "center": [ + 1891.076062824114, + 5390.841364289919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5390.841364289919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5393.755614894072, + "max_x": 1891.076062824114, + "max_y": 5393.755614894072, + "center": [ + 1889.6189375220383, + 5393.755614894072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5393.755614894072 + ], + [ + 1888.161812219963, + 5393.755614894072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5390.841364289919, + "max_x": 1888.161812219963, + "max_y": 5393.755614894072, + "center": [ + 1888.161812219963, + 5392.298489591995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.161812219963, + 5390.841364289919 + ], + [ + 1888.161812219963, + 5393.755614894072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1891.076062824114, + "min_y": 5393.755614894072, + "max_x": 1893.990313428268, + "max_y": 5393.755614894072, + "center": [ + 1892.533188126191, + 5393.755614894072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5393.755614894072 + ], + [ + 1893.990313428268, + 5393.755614894072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1893.990313428268, + "min_y": 5390.841364289919, + "max_x": 1893.990313428268, + "max_y": 5393.755614894072, + "center": [ + 1893.990313428268, + 5392.298489591995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.990313428268, + 5390.841364289919 + ], + [ + 1893.990313428268, + 5393.755614894072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5387.927113685754, + "max_x": 1891.076062824114, + "max_y": 5387.927113685758, + "center": [ + 1889.6189375220383, + 5387.927113685756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5387.927113685754 + ], + [ + 1888.161812219963, + 5387.927113685758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5387.927113685758, + "max_x": 1888.161812219963, + "max_y": 5390.84136428991, + "center": [ + 1888.161812219963, + 5389.384238987834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1888.161812219963, + 5390.84136428991 + ], + [ + 1888.161812219963, + 5387.927113685758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1891.076062824114, + "min_y": 5387.927113685754, + "max_x": 1893.990313428268, + "max_y": 5387.927113685758, + "center": [ + 1892.533188126191, + 5387.927113685756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5387.927113685754 + ], + [ + 1893.990313428268, + 5387.927113685758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1893.990313428268, + "min_y": 5387.927113685758, + "max_x": 1893.990313428268, + "max_y": 5390.84136428991, + "center": [ + 1893.990313428268, + 5389.384238987834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.990313428268, + 5390.84136428991 + ], + [ + 1893.990313428268, + 5387.927113685758 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557B9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.41411386697, + "min_y": 5389.159554694839, + "max_x": 1893.1165692411814, + "max_y": 5390.465792298787, + "center": [ + 1890.7653415540758, + 5389.812673496814 + ] + }, + "raw_value": "10111A", + "clean_value": "10111A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1888.161812219963, + "min_y": 5390.84136428991, + "max_x": 1893.990313428268, + "max_y": 5390.841364289919, + "center": [ + 1891.0760628241155, + 5390.841364289914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1893.990313428268, + 5390.84136428991 + ], + [ + 1888.161812219963, + 5390.841364289919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BB", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5391.097682256914, + "max_x": 1836.2779962639, + "max_y": 5395.799285396754, + "center": [ + 1836.2779962639, + 5393.4484838268345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5391.097682256914 + ], + [ + 1836.2779962639, + 5395.799285396754 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BC", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1891.076062824114, + "min_y": 5393.703428684745, + "max_x": 1891.076062824114, + "max_y": 5395.799285396754, + "center": [ + 1891.076062824114, + 5394.75135704075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.076062824114, + 5393.703428684745 + ], + [ + 1891.076062824114, + 5395.799285396754 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BD", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1836.2779962639, + "min_y": 5395.799285396754, + "max_x": 1891.076062824114, + "max_y": 5395.799285396754, + "center": [ + 1863.677029544007, + 5395.799285396754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1836.2779962639, + 5395.799285396754 + ], + [ + 1891.076062824114, + 5395.799285396754 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1964.440782281909, + "min_y": 5370.1034684121, + "max_x": 1969.1432376561204, + "max_y": 5371.4097060160475, + "center": [ + 1966.7920099690145, + 5370.756587214073 + ] + }, + "raw_value": "10117A", + "clean_value": "10117A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557BF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1966.038506807178, + "min_y": 5372.417974260134, + "max_x": 1967.6059919319152, + "max_y": 5373.724211864082, + "center": [ + 1966.8222493695466, + 5373.071093062108 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C0", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1964.2406668442263, + "min_y": 5368.920895337678, + "max_x": 1969.9647956338817, + "max_y": 5374.645024127334, + "center": [ + 1967.102731239054, + 5371.782959732506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1967.102731239054, + 5371.782959732506 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1913.538663995938, + "min_y": 5368.051054782546, + "max_x": 1920.9298809085344, + "max_y": 5369.1709361329395, + "center": [ + 1917.2342724522362, + 5368.610995457742 + ] + }, + "raw_value": "P10114BA-05", + "clean_value": "P10114BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5557C2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1910.305151271719, + "min_y": 5368.023652132341, + "max_x": 1917.6963681843156, + "max_y": 5369.143533482735, + "center": [ + 1914.0007597280173, + 5368.583592807538 + ] + }, + "raw_value": "P10114BA-03", + "clean_value": "P10114BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5557C3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1906.879819996066, + "min_y": 5367.996249482135, + "max_x": 1914.2710369086626, + "max_y": 5369.116130832528, + "center": [ + 1910.5754284523643, + 5368.556190157331 + ] + }, + "raw_value": "P10114BA-04", + "clean_value": "P10114BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5557C4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1940.019505706566, + "min_y": 5355.134057044988, + "max_x": 1943.1544759560402, + "max_y": 5356.440294648936, + "center": [ + 1941.586990831303, + 5355.787175846963 + ] + }, + "raw_value": "LICA", + "clean_value": "LICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.8034639724133, + "min_y": 5351.634365647329, + "max_x": 1944.5275927620687, + "max_y": 5357.358494436985, + "center": [ + 1941.665528367241, + 5354.496430042157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5354.496430042157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5357.410680646311, + "max_x": 1941.665528367241, + "max_y": 5357.410680646311, + "center": [ + 1940.2084030651658, + 5357.410680646311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5357.410680646311 + ], + [ + 1938.751277763091, + 5357.410680646311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5354.496430042157, + "max_x": 1938.751277763091, + "max_y": 5357.410680646311, + "center": [ + 1938.751277763091, + 5355.953555344235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.751277763091, + 5354.496430042157 + ], + [ + 1938.751277763091, + 5357.410680646311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1941.665528367241, + "min_y": 5357.410680646311, + "max_x": 1944.579778971395, + "max_y": 5357.410680646311, + "center": [ + 1943.122653669318, + 5357.410680646311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5357.410680646311 + ], + [ + 1944.579778971395, + 5357.410680646311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557C9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1944.579778971395, + "min_y": 5354.496430042157, + "max_x": 1944.579778971395, + "max_y": 5357.410680646311, + "center": [ + 1944.579778971395, + 5355.953555344235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.579778971395, + 5354.496430042157 + ], + [ + 1944.579778971395, + 5357.410680646311 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5351.582179437992, + "max_x": 1941.665528367241, + "max_y": 5351.582179437998, + "center": [ + 1940.2084030651658, + 5351.582179437995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5351.582179437992 + ], + [ + 1938.751277763091, + 5351.582179437998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5351.582179437998, + "max_x": 1938.751277763091, + "max_y": 5354.496430042148, + "center": [ + 1938.751277763091, + 5353.039304740073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.751277763091, + 5354.496430042148 + ], + [ + 1938.751277763091, + 5351.582179437998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1941.665528367241, + "min_y": 5351.582179437992, + "max_x": 1944.579778971395, + "max_y": 5351.582179437998, + "center": [ + 1943.122653669318, + 5351.582179437995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5351.582179437992 + ], + [ + 1944.579778971395, + 5351.582179437998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1944.579778971395, + "min_y": 5351.582179437998, + "max_x": 1944.579778971395, + "max_y": 5354.496430042148, + "center": [ + 1944.579778971395, + 5353.039304740073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.579778971395, + 5354.496430042148 + ], + [ + 1944.579778971395, + 5351.582179437998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1939.492112273972, + "min_y": 5352.812661090673, + "max_x": 1943.4108250858148, + "max_y": 5354.118898694621, + "center": [ + 1941.4514686798934, + 5353.465779892647 + ] + }, + "raw_value": "10113", + "clean_value": "10113", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557CF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1944.527592762069, + "min_y": 5354.496430042148, + "max_x": 1944.579778971395, + "max_y": 5354.496430042148, + "center": [ + 1944.553685866732, + 5354.496430042148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1944.579778971395, + 5354.496430042148 + ], + [ + 1944.527592762069, + 5354.496430042148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.751277763091, + "min_y": 5354.496430042157, + "max_x": 1938.803463972413, + "max_y": 5354.496430042157, + "center": [ + 1938.7773708677519, + 5354.496430042157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.803463972413, + 5354.496430042157 + ], + [ + 1938.751277763091, + 5354.496430042157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1938.803463972413, + "min_y": 5354.496430042148, + "max_x": 1944.527592762069, + "max_y": 5354.496430042157, + "center": [ + 1941.665528367241, + 5354.4964300421525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1938.803463972413, + 5354.496430042157 + ], + [ + 1944.527592762069, + 5354.496430042148 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D2", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1939.204501177788, + "min_y": 5336.21488541475, + "max_x": 1943.91967346664, + "max_y": 5336.214885414753, + "center": [ + 1941.562087322214, + 5336.214885414751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1943.91967346664, + 5336.21488541475 + ], + [ + 1939.204501177788, + 5336.214885414753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D3", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1931.220526849175, + "min_y": 5340.712553159671, + "max_x": 1932.306799336935, + "max_y": 5340.712553159671, + "center": [ + 1931.7636630930551, + 5340.712553159671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.306799336935, + 5340.712553159671 + ], + [ + 1931.220526849175, + 5340.712553159671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D4", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1941.665528367241, + "min_y": 5357.410680646311, + "max_x": 1941.665528367244, + "max_y": 5366.303355704057, + "center": [ + 1941.6655283672426, + 5361.857018175184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.665528367241, + 5357.410680646311 + ], + [ + 1941.665528367244, + 5366.303355704057 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D5", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1886.771005802646, + "min_y": 5316.943591733486, + "max_x": 1894.467231664702, + "max_y": 5316.943591733486, + "center": [ + 1890.619118733674, + 5316.943591733486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1886.771005802646, + 5316.943591733486 + ], + [ + 1894.467231664702, + 5316.943591733486 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D6", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1865.42399133404, + "min_y": 5231.194258871269, + "max_x": 1868.722722797391, + "max_y": 5231.194258871269, + "center": [ + 1867.0733570657155, + 5231.194258871269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.42399133404, + 5231.194258871269 + ], + [ + 1868.722722797391, + 5231.194258871269 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557D7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1666.414779269184, + "min_y": 5305.822882071932, + "max_x": 1677.8375690431967, + "max_y": 5306.942763422326, + "center": [ + 1672.1261741561902, + 5306.3828227471295 + ] + }, + "raw_value": "P-10101-25A-F1A-n", + "clean_value": "P-10101-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5557D8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1666.364456341964, + "min_y": 5300.572188904467, + "max_x": 1677.7872461159766, + "max_y": 5301.6920702548605, + "center": [ + 1672.0758512289704, + 5301.132129579664 + ] + }, + "raw_value": "P-10102-25A-F1A-n", + "clean_value": "P-10102-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5557D9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1717.514660703308, + "min_y": 5266.961110936505, + "max_x": 1719.0821458280452, + "max_y": 5268.267348540453, + "center": [ + 1718.2984032656766, + 5267.6142297384795 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557DA", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1716.3713078311584, + "min_y": 5264.47597205912, + "max_x": 1720.8038025278274, + "max_y": 5268.908466755788, + "center": [ + 1718.587555179493, + 5266.692219407454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.587555179493, + 5266.692219407454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557DB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1717.053379113657, + "min_y": 5265.115352547464, + "max_x": 1720.9720919254999, + "max_y": 5266.421590151412, + "center": [ + 1719.0127355195784, + 5265.768471349438 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557DC", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1730.487530263819, + "min_y": 5280.229160749347, + "max_x": 1742.3520870588752, + "max_y": 5281.768997606138, + "center": [ + 1736.4198086613471, + 5280.999079177743 + ] + }, + "raw_value": "\\pi0.82833;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10101}", + "clean_value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5557E0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1829.206426746582, + "min_y": 5243.242641593312, + "max_x": 1831.5576544336877, + "max_y": 5244.54887919726, + "center": [ + 1830.382040590135, + 5243.895760395286 + ] + }, + "raw_value": "LIA", + "clean_value": "LIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5245.870867741096, + "max_x": 1830.363738147026, + "max_y": 5245.870867741102, + "center": [ + 1828.9091470688625, + 5245.8708677411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.363738147026, + 5245.870867741102 + ], + [ + 1827.454555990699, + 5245.870867741096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5242.961685584779, + "max_x": 1827.454555990699, + "max_y": 5245.870867741096, + "center": [ + 1827.454555990699, + 5244.416276662938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.454555990699, + 5242.961685584779 + ], + [ + 1827.454555990699, + 5245.870867741096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1830.363738147026, + "min_y": 5245.870867741096, + "max_x": 1833.272920303355, + "max_y": 5245.870867741102, + "center": [ + 1831.8183292251906, + 5245.8708677411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.363738147026, + 5245.870867741102 + ], + [ + 1833.272920303355, + 5245.870867741096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5240.052503428443, + "max_x": 1830.363738147026, + "max_y": 5240.052503428446, + "center": [ + 1828.9091470688625, + 5240.052503428444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.363738147026, + 5240.052503428443 + ], + [ + 1827.454555990699, + 5240.052503428446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.454555990699, + "min_y": 5240.052503428446, + "max_x": 1827.454555990699, + "max_y": 5242.96168558477, + "center": [ + 1827.454555990699, + 5241.507094506607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.454555990699, + 5242.96168558477 + ], + [ + 1827.454555990699, + 5240.052503428446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1830.363738147026, + "min_y": 5240.052503428443, + "max_x": 1833.272920303355, + "max_y": 5240.052503428446, + "center": [ + 1831.8183292251906, + 5240.052503428444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.363738147026, + 5240.052503428443 + ], + [ + 1833.272920303355, + 5240.052503428446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.4545559907056, + "min_y": 5240.052503428458, + "max_x": 1833.2729203033464, + "max_y": 5245.8708677411, + "center": [ + 1830.363738147026, + 5242.961685584779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.363738147026, + 5242.961685584779 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1828.190322053763, + "min_y": 5241.066960751556, + "max_x": 1832.109034865606, + "max_y": 5242.3731983555035, + "center": [ + 1830.1496784596845, + 5241.72007955353 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557E9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.272920303355, + "min_y": 5242.961685584779, + "max_x": 1833.272920303355, + "max_y": 5245.870867741096, + "center": [ + 1833.272920303355, + 5244.416276662938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.272920303355, + 5242.961685584779 + ], + [ + 1833.272920303355, + 5245.870867741096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557EA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1833.272920303355, + "min_y": 5240.052503428446, + "max_x": 1833.272920303355, + "max_y": 5242.96168558477, + "center": [ + 1833.272920303355, + 5241.507094506607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.272920303355, + 5242.96168558477 + ], + [ + 1833.272920303355, + 5240.052503428446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557EB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1827.454555990706, + "min_y": 5242.96168558477, + "max_x": 1833.272920303355, + "max_y": 5242.961685584779, + "center": [ + 1830.3637381470305, + 5242.961685584774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1827.454555990706, + 5242.961685584779 + ], + [ + 1833.272920303355, + 5242.96168558477 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557EC", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1833.272920303348, + "min_y": 5242.961685584779, + "max_x": 1835.439543012842, + "max_y": 5242.961685584779, + "center": [ + 1834.356231658095, + 5242.961685584779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.272920303348, + 5242.961685584779 + ], + [ + 1835.439543012842, + 5242.961685584779 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557ED", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1835.439543012842, + "min_y": 5242.961685584779, + "max_x": 1835.439543012842, + "max_y": 5254.820847297049, + "center": [ + 1835.439543012842, + 5248.8912664409145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1835.439543012842, + 5242.961685584779 + ], + [ + 1835.439543012842, + 5254.820847297049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557EE", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1833.609354906809, + "min_y": 5254.820847297049, + "max_x": 1835.439543012842, + "max_y": 5254.820847297049, + "center": [ + 1834.5244489598253, + 5254.820847297049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1833.609354906809, + 5254.820847297049 + ], + [ + 1835.439543012842, + 5254.820847297049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557EF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1952.449443044188, + "min_y": 5188.901015641132, + "max_x": 1958.495458478692, + "max_y": 5189.908684880216, + "center": [ + 1955.47245076144, + 5189.404850260675 + ] + }, + "raw_value": "PSV-10119B", + "clean_value": "PSV-10119B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5557F0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.589897903278, + "min_y": 5187.269191711266, + "max_x": 1957.8221087074307, + "max_y": 5188.27686095035, + "center": [ + 1955.7060033053544, + 5187.773026330808 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5557F1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1952.777890033878, + "min_y": 5185.736492732605, + "max_x": 1958.823905468382, + "max_y": 5186.744161971689, + "center": [ + 1955.80089775113, + 5186.240327352147 + ] + }, + "raw_value": "SP: 0.4MPa", + "clean_value": "SP: 0.4MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5557F2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2032.482209226082, + "min_y": 5287.38476827668, + "max_x": 2039.8734261386785, + "max_y": 5288.504649627073, + "center": [ + 2036.1778176823802, + 5287.944708951876 + ] + }, + "raw_value": "T10100BA-05", + "clean_value": "T10100BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5557F3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2038.200629411918, + "min_y": 5287.33157627456, + "max_x": 2045.5918463245146, + "max_y": 5288.451457624953, + "center": [ + 2041.8962378682163, + 5287.891516949756 + ] + }, + "raw_value": "T10100BA-04", + "clean_value": "T10100BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5557F4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2055.360801554217, + "min_y": 5300.410677576604, + "max_x": 2056.928635355177, + "max_y": 5301.717205744071, + "center": [ + 2056.144718454697, + 5301.063941660337 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557F5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5302.595033674639, + "max_x": 2056.017563267382, + "max_y": 5302.595033674639, + "center": [ + 2054.8889833376816, + 5302.595033674639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2056.017563267382, + 5302.595033674639 + ], + [ + 2053.760403407981, + 5302.595033674639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557F6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5300.337873815238, + "max_x": 2053.760403407981, + "max_y": 5302.595033674639, + "center": [ + 2053.760403407981, + 5301.466453744939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.760403407981, + 5300.337873815238 + ], + [ + 2053.760403407981, + 5302.595033674639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557F7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2056.017563267382, + "min_y": 5302.595033674639, + "max_x": 2058.274723126778, + "max_y": 5302.595033674639, + "center": [ + 2057.14614319708, + 5302.595033674639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2056.017563267382, + 5302.595033674639 + ], + [ + 2058.274723126778, + 5302.595033674639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557F8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2058.274723126778, + "min_y": 5300.337873815238, + "max_x": 2058.274723126778, + "max_y": 5302.595033674639, + "center": [ + 2058.274723126778, + 5301.466453744939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.274723126778, + 5300.337873815238 + ], + [ + 2058.274723126778, + 5302.595033674639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557F9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5298.080713955839, + "max_x": 2053.760403407981, + "max_y": 5300.337873815234, + "center": [ + 2053.760403407981, + 5299.209293885537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.760403407981, + 5300.337873815234 + ], + [ + 2053.760403407981, + 5298.080713955839 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5298.080713955839, + "max_x": 2058.274723126778, + "max_y": 5298.080713955839, + "center": [ + 2056.0175632673795, + 5298.080713955839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2053.760403407981, + 5298.080713955839 + ], + [ + 2058.274723126778, + 5298.080713955839 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2058.274723126778, + "min_y": 5298.080713955839, + "max_x": 2058.274723126778, + "max_y": 5300.337873815234, + "center": [ + 2058.274723126778, + 5299.209293885537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.274723126778, + 5300.337873815234 + ], + [ + 2058.274723126778, + 5298.080713955839 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.760403407981, + "min_y": 5300.337873815234, + "max_x": 2058.274723126778, + "max_y": 5300.337873815238, + "center": [ + 2056.0175632673795, + 5300.337873815236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2058.274723126778, + 5300.337873815238 + ], + [ + 2053.760403407981, + 5300.337873815234 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2053.7604034079886, + "min_y": 5298.080713955845, + "max_x": 2058.274723126775, + "max_y": 5302.595033674631, + "center": [ + 2056.017563267382, + 5300.337873815238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2056.017563267382, + 5300.337873815238 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2054.472172554643, + "min_y": 5298.724819226351, + "max_x": 2058.3908860382653, + "max_y": 5300.031057054225, + "center": [ + 2056.431529296454, + 5299.377938140288 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5557FF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2050.609934910705, + "min_y": 5300.410677576604, + "max_x": 2052.177768711665, + "max_y": 5301.717205744071, + "center": [ + 2051.393851811185, + 5301.063941660337 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555800", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2049.246083689193, + "min_y": 5298.080713955845, + "max_x": 2053.760403407979, + "max_y": 5302.595033674631, + "center": [ + 2051.503243548586, + 5300.337873815238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.503243548586, + 5300.337873815238 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555801", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2049.957852835851, + "min_y": 5298.724819226351, + "max_x": 2053.8765663194736, + "max_y": 5300.031057054225, + "center": [ + 2051.917209577662, + 5299.377938140288 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555802", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.503243548586, + "min_y": 5302.595033674633, + "max_x": 2051.503243548586, + "max_y": 5303.800595271614, + "center": [ + 2051.503243548586, + 5303.197814473124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.503243548586, + 5303.800595271614 + ], + [ + 2051.503243548586, + 5302.595033674633 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555803", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.522118706426, + "min_y": 5303.800595271614, + "max_x": 2051.503243548586, + "max_y": 5303.800595271614, + "center": [ + 2048.512681127506, + 5303.800595271614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.522118706426, + 5303.800595271614 + ], + [ + 2051.503243548586, + 5303.800595271614 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555804", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5303.426889890134, + "max_x": 2047.039217597419, + "max_y": 5304.174300653079, + "center": [ + 2046.665512215944, + 5303.800595271607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.291806834469, + 5304.174300653079 + ], + [ + 2047.039217597419, + 5303.426889890134 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5303.426889890134, + "max_x": 2047.039217597419, + "max_y": 5304.174300653079, + "center": [ + 2046.665512215944, + 5303.800595271607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.291806834469, + 5303.426889890134 + ], + [ + 2047.039217597419, + 5304.174300653079 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.382757916185, + "min_y": 5303.426889890141, + "max_x": 2049.130168679134, + "max_y": 5304.174300653086, + "center": [ + 2048.756463297659, + 5303.800595271614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.382757916185, + 5304.174300653086 + ], + [ + 2049.130168679134, + 5303.426889890141 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555807", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.382757916185, + "min_y": 5303.426889890141, + "max_x": 2049.130168679134, + "max_y": 5304.174300653086, + "center": [ + 2048.756463297659, + 5303.800595271614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.382757916185, + 5303.426889890141 + ], + [ + 2049.130168679134, + 5304.174300653086 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555808", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5303.426889890141, + "max_x": 2051.162829084088, + "max_y": 5304.174300653086, + "center": [ + 2050.7891237026133, + 5303.800595271614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.415418321139, + 5304.174300653086 + ], + [ + 2051.162829084088, + 5303.426889890141 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555809", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5303.426889890141, + "max_x": 2051.162829084088, + "max_y": 5304.174300653086, + "center": [ + 2050.7891237026133, + 5303.800595271614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.415418321139, + 5303.426889890141 + ], + [ + 2051.162829084088, + 5304.174300653086 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2051.503243548586, + "min_y": 5296.875152358865, + "max_x": 2051.503243548586, + "max_y": 5298.080713955846, + "center": [ + 2051.503243548586, + 5297.477933157355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2051.503243548586, + 5296.875152358865 + ], + [ + 2051.503243548586, + 5298.080713955846 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2045.522118706426, + "min_y": 5296.875152358865, + "max_x": 2051.503243548586, + "max_y": 5296.875152358865, + "center": [ + 2048.512681127506, + 5296.875152358865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2045.522118706426, + 5296.875152358865 + ], + [ + 2051.503243548586, + 5296.875152358865 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5296.501446977399, + "max_x": 2047.039217597419, + "max_y": 5297.248857740343, + "center": [ + 2046.665512215944, + 5296.875152358871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.291806834469, + 5296.501446977399 + ], + [ + 2047.039217597419, + 5297.248857740343 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2046.291806834469, + "min_y": 5296.501446977399, + "max_x": 2047.039217597419, + "max_y": 5297.248857740343, + "center": [ + 2046.665512215944, + 5296.875152358871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2046.291806834469, + 5297.248857740343 + ], + [ + 2047.039217597419, + 5296.501446977399 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.382757916185, + "min_y": 5296.501446977393, + "max_x": 2049.130168679134, + "max_y": 5297.248857740335, + "center": [ + 2048.756463297659, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.382757916185, + 5296.501446977393 + ], + [ + 2049.130168679134, + 5297.248857740335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55580F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2048.382757916185, + "min_y": 5296.501446977393, + "max_x": 2049.130168679134, + "max_y": 5297.248857740335, + "center": [ + 2048.756463297659, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2048.382757916185, + 5297.248857740335 + ], + [ + 2049.130168679134, + 5296.501446977393 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555810", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5296.501446977393, + "max_x": 2051.162829084088, + "max_y": 5297.248857740335, + "center": [ + 2050.7891237026133, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.415418321139, + 5296.501446977393 + ], + [ + 2051.162829084088, + 5297.248857740335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2050.415418321139, + "min_y": 5296.501446977393, + "max_x": 2051.162829084088, + "max_y": 5297.248857740335, + "center": [ + 2050.7891237026133, + 5296.8751523588635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2050.415418321139, + 5297.248857740335 + ], + [ + 2051.162829084088, + 5296.501446977393 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555812", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2043.577109374536, + "min_y": 5297.312224586697, + "max_x": 2050.968326287132, + "max_y": 5298.4321059370905, + "center": [ + 2047.2727178308342, + 5297.872165261893 + ] + }, + "raw_value": "T10100BA-06", + "clean_value": "T10100BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555813", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2045.032094744549, + "min_y": 5307.440520723942, + "max_x": 2052.4233116571454, + "max_y": 5308.560402074336, + "center": [ + 2048.7277032008474, + 5308.000461399139 + ] + }, + "raw_value": "T10100BA-12", + "clean_value": "T10100BA-12", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555814", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2042.969220750149, + "min_y": 5307.736004442079, + "max_x": 2050.3604376627454, + "max_y": 5308.855885792473, + "center": [ + 2046.6648292064472, + 5308.295945117276 + ] + }, + "raw_value": "T10100BA-11", + "clean_value": "T10100BA-11", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555815", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2036.194971157877, + "min_y": 5303.078047436012, + "max_x": 2043.5861880704736, + "max_y": 5304.197928786405, + "center": [ + 2039.8905796141753, + 5303.637988111208 + ] + }, + "raw_value": "T10100BA-08", + "clean_value": "T10100BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555816", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1942.306736169776, + "min_y": 5376.711444917726, + "max_x": 1954.4014547540248, + "max_y": 5377.8313262681195, + "center": [ + 1948.3540954619004, + 5377.271385592923 + ] + }, + "raw_value": "P-10311-125A-F1A-n", + "clean_value": "P-10311-125A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555817", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1897.052173449534, + "min_y": 5331.654760300751, + "max_x": 1908.91673024459, + "max_y": 5333.194597157542, + "center": [ + 1902.984451847062, + 5332.424678729147 + ] + }, + "raw_value": "\\pi0.56294;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10114}", + "clean_value": "\\pi0.56294; \\fArial|b1|i1|c238|p34; .3333x; P-10114", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55581B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1695.189106154921, + "min_y": 5201.734090653488, + "max_x": 1707.0536629499773, + "max_y": 5203.2739275102795, + "center": [ + 1701.1213845524492, + 5202.504009081884 + ] + }, + "raw_value": "\\pi0.63366;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10101}", + "clean_value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55581F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1712.427617847074, + "min_y": 5210.818634686821, + "max_x": 1724.2921746421302, + "max_y": 5212.358471543612, + "center": [ + 1718.3598962446022, + 5211.588553115216 + ] + }, + "raw_value": "\\pi-1.80523;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-10102A/B}", + "clean_value": "\\pi-1.80523; \\fArial|b1|i1|c238|p34; .3333x; F-10102A/B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1704.62917631055, + "min_y": 5221.169504836162, + "max_x": 1704.62917631055, + "max_y": 5221.985805705566, + "center": [ + 1704.62917631055, + 5221.577655270864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1704.62917631055, + 5221.985805705566 + ], + [ + 1704.62917631055, + 5221.169504836162 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555824", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1674.061757971565, + "min_y": 5210.5170548005, + "max_x": 1674.061757971565, + "max_y": 5221.194759210474, + "center": [ + 1674.061757971565, + 5215.855907005487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1674.061757971565, + 5210.5170548005 + ], + [ + 1674.061757971565, + 5221.194759210474 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555825", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1683.413107173497, + "min_y": 5206.215171083798, + "max_x": 1683.413107173497, + "max_y": 5220.646293695377, + "center": [ + 1683.413107173497, + 5213.430732389587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1683.413107173497, + 5206.215171083798 + ], + [ + 1683.413107173497, + 5220.646293695377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555826", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1674.104475274797, + "min_y": 5200.253013560411, + "max_x": 1681.4956921873936, + "max_y": 5201.3728949108045, + "center": [ + 1677.8000837310954, + 5200.812954235607 + ] + }, + "raw_value": "P10101BA-05", + "clean_value": "P10101BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555827", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1738.763604998717, + "min_y": 5238.849986850969, + "max_x": 1747.299242721596, + "max_y": 5238.849988683468, + "center": [ + 1743.0314238601566, + 5238.849987767218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1738.763604998717, + 5238.849986850969 + ], + [ + 1747.299242721596, + 5238.849988683468 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555828", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1832.446505979969, + "min_y": 5204.003163160265, + "max_x": 1844.3110627750252, + "max_y": 5205.543000017056, + "center": [ + 1838.3787843774971, + 5204.773081588661 + ] + }, + "raw_value": "\\pi0.54053;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10116}", + "clean_value": "\\pi0.54053; \\fArial|b1|i1|c238|p34; .3333x; P-10116", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55582C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1774.884479611345, + "min_y": 5278.633584305755, + "max_x": 1786.749036406401, + "max_y": 5280.173421162546, + "center": [ + 1780.816758008873, + 5279.403502734151 + ] + }, + "raw_value": "\\pi-0.44889;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10115B}", + "clean_value": "\\pi-0.44889; \\fArial|b1|i1|c238|p34; .3333x; E-10115B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555830", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1801.076958673355, + "min_y": 5360.475973068592, + "max_x": 1812.9415154684111, + "max_y": 5362.015809925383, + "center": [ + 1807.009237070883, + 5361.2458914969875 + ] + }, + "raw_value": "\\pi0.63226;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LC-10111}", + "clean_value": "\\pi0.63226; \\fArial|b1|i1|c238|p34; .3333x; C-10111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555834", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1833.519397949487, + "min_y": 5339.830128704213, + "max_x": 1845.3839547445432, + "max_y": 5341.369965561004, + "center": [ + 1839.451676347015, + 5340.600047132609 + ] + }, + "raw_value": "\\pi0.50272;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10117}", + "clean_value": "\\pi0.50272; \\fArial|b1|i1|c238|p34; .3333x; E-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555838", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1932.833924642855, + "min_y": 5198.344277679337, + "max_x": 1944.6984814379111, + "max_y": 5199.884114536128, + "center": [ + 1938.766203040383, + 5199.114196107733 + ] + }, + "raw_value": "\\pi0.56644;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10119}", + "clean_value": "\\pi0.56644; \\fArial|b1|i1|c238|p34; .3333x; E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55583C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2031.787233376009, + "min_y": 5295.563889369724, + "max_x": 2043.6517901710652, + "max_y": 5297.103726226515, + "center": [ + 2037.719511773537, + 5296.33380779812 + ] + }, + "raw_value": "\\pi0.7415;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10100}", + "clean_value": "\\pi0.7415; \\fArial|b1|i1|c238|p34; .3333x; T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555840", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2029.945778438314, + "min_y": 5345.039934683783, + "max_x": 2041.81033523337, + "max_y": 5346.579771540574, + "center": [ + 2035.878056835842, + 5345.809853112179 + ] + }, + "raw_value": "\\pi1.53906;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-3210}", + "clean_value": "\\pi1.53906; \\fArial|b1|i1|c238|p34; .3333x; T-3210", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555844", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2001.613741977652, + "min_y": 5356.010853454417, + "max_x": 2013.478298772708, + "max_y": 5357.550690311208, + "center": [ + 2007.54602037518, + 5356.780771882813 + ] + }, + "raw_value": "\\pi-0.35015;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LVP-10117}", + "clean_value": "\\pi-0.35015; \\fArial|b1|i1|c238|p34; .3333x; VP-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555848", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1963.897917638695, + "min_y": 5353.665134999359, + "max_x": 1975.762474433751, + "max_y": 5355.20497185615, + "center": [ + 1969.830196036223, + 5354.435053427755 + ] + }, + "raw_value": "\\pi-0.29274;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LSP-10601}", + "clean_value": "\\pi-0.29274; \\fArial|b1|i1|c238|p34; .3333x; SP-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55584C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1910.848197027406, + "min_y": 5384.325580423471, + "max_x": 1922.7127538224622, + "max_y": 5385.865417280263, + "center": [ + 1916.7804754249341, + 5385.095498851867 + ] + }, + "raw_value": "\\pi0.48802;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LD-10113}", + "clean_value": "\\pi0.48802; \\fArial|b1|i1|c238|p34; .3333x; D-10113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555850", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1910.848197027406, + "min_y": 5388.163441301037, + "max_x": 1922.7127538224622, + "max_y": 5389.703278157828, + "center": [ + 1916.7804754249341, + 5388.933359729433 + ] + }, + "raw_value": "\\pi0.54824;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10112}", + "clean_value": "\\pi0.54824; \\fArial|b1|i1|c238|p34; .3333x; E-10112", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555854", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1911.980554006072, + "min_y": 5375.612495550714, + "max_x": 1923.4033437800847, + "max_y": 5376.732376901107, + "center": [ + 1917.6919488930785, + 5376.17243622591 + ] + }, + "raw_value": "P-10142-25A-F2A-n", + "clean_value": "P-10142-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555855", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1863.527792600412, + "min_y": 5273.702677545422, + "max_x": 1875.3923493954683, + "max_y": 5275.242514402214, + "center": [ + 1869.4600709979402, + 5274.472595973818 + ] + }, + "raw_value": "\\pi0.55314;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10118}", + "clean_value": "\\pi0.55314; \\fArial|b1|i1|c238|p34; .3333x; P-10118", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555859", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1687.397759873107, + "min_y": 5344.820353276528, + "max_x": 1701.5082648880639, + "max_y": 5345.940234626922, + "center": [ + 1694.4530123805853, + 5345.3802939517245 + ] + }, + "raw_value": "ST-10511-100A-S1A-H50", + "clean_value": "ST-10511-100A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55585A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1840.930531911545, + "min_y": 5243.969402883109, + "max_x": 1853.6971793060297, + "max_y": 5245.089284233502, + "center": [ + 1847.3138556087874, + 5244.529343558306 + ] + }, + "raw_value": "P-10121-25A-F1A-H50", + "clean_value": "P-10121-25A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55585B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2063.952308246947, + "min_y": 5314.619073695839, + "max_x": 2065.441087665718, + "max_y": 5316.107853114609, + "center": [ + 2064.696697956332, + 5315.363463405223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2063.952308246947, + 5314.619073695839 + ], + [ + 2065.441087665718, + 5316.107853114609 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55585C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2063.952308246947, + "min_y": 5316.107853114609, + "max_x": 2065.441087665718, + "max_y": 5317.59663253338, + "center": [ + 2064.696697956332, + 5316.852242823994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2065.441087665718, + 5316.107853114609 + ], + [ + 2063.952308246947, + 5317.59663253338 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55585D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2033.866745791552, + "min_y": 5316.593292351285, + "max_x": 2033.866970528111, + "max_y": 5325.024046996518, + "center": [ + 2033.8668581598315, + 5320.808669673901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2033.866970528111, + 5316.593292351285 + ], + [ + 2033.866745791552, + 5325.024046996518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55585E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1702.113164780369, + "min_y": 5306.792338133774, + "max_x": 1713.9777215754252, + "max_y": 5308.332174990565, + "center": [ + 1708.0454431778971, + 5307.56225656217 + ] + }, + "raw_value": "\\pi-0.39777;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LDP-10101}", + "clean_value": "\\pi-0.39777; \\fArial|b1|i1|c238|p34; .3333x; DP-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555862", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 1689.496714497113, + "min_y": 5359.348268209593, + "max_x": 1701.1434805412046, + "max_y": 5360.841443343451, + "center": [ + 1695.320097519159, + 5360.094855776522 + ] + }, + "raw_value": "0.65->0.35MPa", + "clean_value": "0.65->0.35MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555863", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5407.912976511994, + "max_x": 1834.358855094082, + "max_y": 5407.912976511994, + "center": [ + 1822.973394698416, + 5407.912976511994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.58793430275, + 5407.912976511994 + ], + [ + 1834.358855094082, + 5407.912976511994 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555864", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1811.58793430275, + "min_y": 5405.299920027742, + "max_x": 1834.358855094082, + "max_y": 5405.299920027742, + "center": [ + 1822.973394698416, + 5405.299920027742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1811.58793430275, + 5405.299920027742 + ], + [ + 1834.358855094082, + 5405.299920027742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555865", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.380253541972, + "min_y": 5239.817647704501, + "max_x": 1790.425040986584, + "max_y": 5239.817647704501, + "center": [ + 1789.9026472642781, + 5239.817647704501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.425040986584, + 5239.817647704501 + ], + [ + 1789.380253541972, + 5239.817647704501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555866", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1651.764277121018, + "min_y": 5406.004194409817, + "max_x": 1684.325051759494, + "max_y": 5430.128936785912, + "center": [ + 1668.044664440256, + 5418.066565597865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1651.764277121018, + 5430.128936785912 + ], + [ + 1684.325051759494, + 5430.128936785912 + ], + [ + 1684.325051759494, + 5406.004194409817 + ], + [ + 1651.764277121018, + 5406.004194409817 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555867", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5427.999305196113, + "max_x": 1688.899384580426, + "max_y": 5427.999305196113, + "center": [ + 1686.61221816996, + 5427.999305196113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5427.999305196113 + ], + [ + 1688.899384580426, + 5427.999305196113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555868", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1660.259558430345, + "min_y": 5424.038690993786, + "max_x": 1677.057778686246, + "max_y": 5428.238246057761, + "center": [ + 1668.6586685582954, + 5426.1384685257735 + ] + }, + "raw_value": "\\pi-5.02801;{\\fArial|b0|i1|c0|p34;\\W0.9;\\LSAMPLING\\P\\pi-0.95707;BOOTH}", + "clean_value": "\\pi-5.02801; \\fArial|b0|i1|c0|p34; .9; SAMPLING \\pi-0.95707;BOOTH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55586C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5425.199601820131, + "max_x": 1688.899384580426, + "max_y": 5425.199601820131, + "center": [ + 1686.61221816996, + 5425.199601820131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5425.199601820131 + ], + [ + 1688.899384580426, + 5425.199601820131 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55586D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5422.399898444147, + "max_x": 1688.899384580426, + "max_y": 5422.399898444147, + "center": [ + 1686.61221816996, + 5422.399898444147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5422.399898444147 + ], + [ + 1688.899384580426, + 5422.399898444147 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55586E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5419.600195068163, + "max_x": 1688.899384580426, + "max_y": 5419.600195068163, + "center": [ + 1686.61221816996, + 5419.600195068163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5419.600195068163 + ], + [ + 1688.899384580426, + 5419.600195068163 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55586F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5416.80049169218, + "max_x": 1688.899384580426, + "max_y": 5416.80049169218, + "center": [ + 1686.61221816996, + 5416.80049169218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5416.80049169218 + ], + [ + 1688.899384580426, + 5416.80049169218 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555870", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5414.000788316197, + "max_x": 1688.899384580426, + "max_y": 5414.000788316197, + "center": [ + 1686.61221816996, + 5414.000788316197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5414.000788316197 + ], + [ + 1688.899384580426, + 5414.000788316197 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555871", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5411.201084940213, + "max_x": 1688.899384580426, + "max_y": 5411.201084940213, + "center": [ + 1686.61221816996, + 5411.201084940213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5411.201084940213 + ], + [ + 1688.899384580426, + 5411.201084940213 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555872", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.325051759494, + "min_y": 5408.401381564229, + "max_x": 1688.899384580426, + "max_y": 5408.401381564229, + "center": [ + 1686.61221816996, + 5408.401381564229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.325051759494, + 5408.401381564229 + ], + [ + 1688.899384580426, + 5408.401381564229 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555873", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5410.641144265016, + "max_x": 1696.6706428820635, + "max_y": 5411.761025615409, + "center": [ + 1693.6469632360013, + 5411.201084940212 + ] + }, + "raw_value": "10216 btm", + "clean_value": "10216 btm", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555874", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5407.841440889033, + "max_x": 1696.6706428820635, + "max_y": 5408.961322239426, + "center": [ + 1693.6469632360013, + 5408.40138156423 + ] + }, + "raw_value": "10116 btm", + "clean_value": "10116 btm", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555875", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5427.439364520917, + "max_x": 1697.3425716922995, + "max_y": 5428.55924587131, + "center": [ + 1693.9829276411192, + 5427.999305196114 + ] + }, + "raw_value": "10201 feed", + "clean_value": "10201 feed", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555876", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5424.639661144933, + "max_x": 1697.3425716922995, + "max_y": 5425.759542495326, + "center": [ + 1693.9829276411192, + 5425.19960182013 + ] + }, + "raw_value": "10101 feed", + "clean_value": "10101 feed", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555877", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5421.839957768949, + "max_x": 1697.3425716922995, + "max_y": 5422.959839119342, + "center": [ + 1693.9829276411192, + 5422.399898444146 + ] + }, + "raw_value": "10218 side", + "clean_value": "10218 side", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555878", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5419.040254392966, + "max_x": 1696.6706428820635, + "max_y": 5420.160135743359, + "center": [ + 1693.6469632360013, + 5419.600195068162 + ] + }, + "raw_value": "10214 top", + "clean_value": "10214 top", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555879", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5416.240551016983, + "max_x": 1696.6706428820635, + "max_y": 5417.360432367376, + "center": [ + 1693.6469632360013, + 5416.80049169218 + ] + }, + "raw_value": "10114 top", + "clean_value": "10114 top", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55587A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1690.623283589939, + "min_y": 5413.440847641, + "max_x": 1697.3425716922995, + "max_y": 5414.560728991393, + "center": [ + 1693.9829276411192, + 5414.000788316196 + ] + }, + "raw_value": "10118 side", + "clean_value": "10118 side", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555883", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5427.391665969998, + "max_x": 1712.704744450085, + "max_y": 5428.511547320391, + "center": [ + 1706.3214207528426, + 5427.951606645194 + ] + }, + "raw_value": "SAM-10955-10A-F2A-n", + "clean_value": "SAM-10955-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555884", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5424.591962594014, + "max_x": 1712.704744450085, + "max_y": 5425.7118439444075, + "center": [ + 1706.3214207528426, + 5425.15190326921 + ] + }, + "raw_value": "SAM-10951-10A-F2A-n", + "clean_value": "SAM-10951-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555885", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5421.79225921803, + "max_x": 1712.704744450085, + "max_y": 5422.912140568424, + "center": [ + 1706.3214207528426, + 5422.3521998932265 + ] + }, + "raw_value": "SAM-10957-10A-F2A-n", + "clean_value": "SAM-10957-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555886", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5418.992555842046, + "max_x": 1712.704744450085, + "max_y": 5420.11243719244, + "center": [ + 1706.3214207528426, + 5419.552496517243 + ] + }, + "raw_value": "SAM-10956-10A-F2A-n", + "clean_value": "SAM-10956-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555887", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5416.192852466064, + "max_x": 1712.704744450085, + "max_y": 5417.312733816458, + "center": [ + 1706.3214207528426, + 5416.752793141261 + ] + }, + "raw_value": "SAM-10952-10A-F2A-n", + "clean_value": "SAM-10952-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555888", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5413.39314909008, + "max_x": 1712.704744450085, + "max_y": 5414.513030440474, + "center": [ + 1706.3214207528426, + 5413.953089765277 + ] + }, + "raw_value": "SAM-10953-10A-F2A-n", + "clean_value": "SAM-10953-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555889", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5410.593445714097, + "max_x": 1712.704744450085, + "max_y": 5411.71332706449, + "center": [ + 1706.3214207528426, + 5411.153386389293 + ] + }, + "raw_value": "SAM-10958-10A-F2A-n", + "clean_value": "SAM-10958-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1699.9380970556, + "min_y": 5407.793742338113, + "max_x": 1712.704744450085, + "max_y": 5408.913623688506, + "center": [ + 1706.3214207528426, + 5408.353683013309 + ] + }, + "raw_value": "SAM-10954-10A-F2A-n", + "clean_value": "SAM-10954-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.98695078467, + "min_y": 5218.8097638332, + "max_x": 1743.652990386909, + "max_y": 5220.441477274654, + "center": [ + 1742.8199705857896, + 5219.625620553927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.98695078467, + 5220.441477274654 + ], + [ + 1743.652990386909, + 5218.8097638332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1741.98695078467, + "min_y": 5217.178050391735, + "max_x": 1743.652990386909, + "max_y": 5218.8097638332, + "center": [ + 1742.8199705857896, + 5217.993907112468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.98695078467, + 5217.178050391735 + ], + [ + 1743.652990386909, + 5218.8097638332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.597112402258, + "min_y": 5217.178050391735, + "max_x": 1733.597112402258, + "max_y": 5220.441477274654, + "center": [ + 1733.597112402258, + 5218.809763833195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.597112402258, + 5220.441477274654 + ], + [ + 1733.597112402258, + 5217.178050391735 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.597112402258, + "min_y": 5220.441477274654, + "max_x": 1741.98695078467, + "max_y": 5220.441477274654, + "center": [ + 1737.792031593464, + 5220.441477274654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1733.597112402258, + 5220.441477274654 + ], + [ + 1741.98695078467, + 5220.441477274654 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55588F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1733.597112402258, + "min_y": 5217.178050391735, + "max_x": 1741.98695078467, + "max_y": 5217.178050391735, + "center": [ + 1737.792031593464, + 5217.178050391735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1741.98695078467, + 5217.178050391735 + ], + [ + 1733.597112402258, + 5217.178050391735 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555890", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1735.13917460273, + "min_y": 5218.117946236904, + "max_x": 1740.5146050846183, + "max_y": 5219.611121370762, + "center": [ + 1737.826889843674, + 5218.864533803833 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555891", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1730.279183927122, + "min_y": 5218.809763833195, + "max_x": 1733.597112402258, + "max_y": 5218.809763833195, + "center": [ + 1731.9381481646901, + 5218.809763833195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.279183927122, + 5218.809763833195 + ], + [ + 1733.597112402258, + 5218.809763833195 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555892", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1731.656754271574, + "min_y": 5215.22109486822, + "max_x": 1744.423401666059, + "max_y": 5216.340976218613, + "center": [ + 1738.0400779688166, + 5215.781035543416 + ] + }, + "raw_value": "SAM-10951-10A-F2A-n", + "clean_value": "SAM-10951-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555893", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1845.855508124698, + "min_y": 5257.605076384972, + "max_x": 1845.855508124698, + "max_y": 5264.818185561961, + "center": [ + 1845.855508124698, + 5261.2116309734665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855508124698, + 5264.818185561961 + ], + [ + 1845.855508124698, + 5257.605076384972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555894", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1829.512366582455, + "min_y": 5267.68201770348, + "max_x": 1831.528153013163, + "max_y": 5269.36183972907, + "center": [ + 1830.520259797809, + 5268.5219287162745 + ] + }, + "raw_value": "EA", + "clean_value": "EA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555895", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1818.570461516898, + "min_y": 5298.469940586269, + "max_x": 1823.6099275936683, + "max_y": 5300.14976261186, + "center": [ + 1821.0901945552832, + 5299.309851599064 + ] + }, + "raw_value": "PGMEA", + "clean_value": "PGMEA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555896", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1775.18367657908, + "min_y": 5359.677185144585, + "max_x": 1778.879096498354, + "max_y": 5363.372605063858, + "center": [ + 1777.031386538717, + 5361.524895104221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.18367657908, + 5361.524895104221 + ], + [ + 1777.031386538717, + 5363.372605063858 + ], + [ + 1778.879096498354, + 5361.524895104221 + ], + [ + 1777.031386538717, + 5359.677185144585 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555897", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1778.37073023862, + "min_y": 5359.677185144585, + "max_x": 1778.9978637948402, + "max_y": 5360.722407738285, + "center": [ + 1778.68429701673, + 5360.199796441435 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555898", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1779.490611589013, + "min_y": 5359.677185144585, + "max_x": 1781.372012257674, + "max_y": 5360.722407738285, + "center": [ + 1780.4313119233434, + 5360.199796441435 + ] + }, + "raw_value": "150", + "clean_value": "150", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555899", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1724.693440842446, + "min_y": 5361.524895104221, + "max_x": 1775.18367657908, + "max_y": 5361.524895104221, + "center": [ + 1749.9385587107631, + 5361.524895104221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.18367657908, + 5361.524895104221 + ], + [ + 1724.693440842446, + 5361.524895104221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589A", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1977.033011944327, + "min_y": 5388.993654330274, + "max_x": 1980.728431863601, + "max_y": 5392.689074249548, + "center": [ + 1978.880721903964, + 5390.84136428991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.033011944327, + 5390.841364289912 + ], + [ + 1978.880721903965, + 5392.689074249548 + ], + [ + 1980.728431863601, + 5390.841364289912 + ], + [ + 1978.880721903965, + 5388.993654330274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1980.220065603867, + "min_y": 5388.993654330274, + "max_x": 1980.8471991600873, + "max_y": 5390.038876923974, + "center": [ + 1980.533632381977, + 5389.516265627124 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1981.33994695426, + "min_y": 5388.993654330274, + "max_x": 1982.5942140667007, + "max_y": 5390.038876923974, + "center": [ + 1981.9670805104804, + 5389.516265627124 + ] + }, + "raw_value": "50", + "clean_value": "50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589D", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2001.983844851825, + "min_y": 5363.192115898407, + "max_x": 2001.983844851825, + "max_y": 5390.841364289912, + "center": [ + 2001.983844851825, + 5377.016740094159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.983844851825, + 5363.192115898407 + ], + [ + 2001.983844851825, + 5390.841364289912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589E", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1980.728431863601, + "min_y": 5390.841364289912, + "max_x": 2001.983844851825, + "max_y": 5390.841364289912, + "center": [ + 1991.356138357713, + 5390.841364289912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.983844851825, + 5390.841364289912 + ], + [ + 1980.728431863601, + 5390.841364289912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55589F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2007.010799783049, + "min_y": 5368.222670168512, + "max_x": 2019.1055183672977, + "max_y": 5369.342551518906, + "center": [ + 2013.0581590751733, + 5368.782610843709 + ] + }, + "raw_value": "VG-10411-65A-F1A-n", + "clean_value": "VG-10411-65A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558A0", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1930.459089377298, + "min_y": 5341.22148066201, + "max_x": 1934.154509296572, + "max_y": 5344.916900581282, + "center": [ + 1932.306799336935, + 5343.069190621646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.459089377298, + 5343.069190621646 + ], + [ + 1932.306799336935, + 5344.916900581282 + ], + [ + 1934.154509296572, + 5343.069190621646 + ], + [ + 1932.306799336935, + 5341.22148066201 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1933.646143036838, + "min_y": 5341.22148066201, + "max_x": 1934.2732765930584, + "max_y": 5342.266703255711, + "center": [ + 1933.9597098149484, + 5341.744091958861 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1934.766024387231, + "min_y": 5341.22148066201, + "max_x": 1935.3931579434513, + "max_y": 5342.266703255711, + "center": [ + 1935.0795911653413, + 5341.744091958861 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A3", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1909.329001908206, + "min_y": 5343.03992624386, + "max_x": 1925.463781484733, + "max_y": 5343.03992624386, + "center": [ + 1917.3963916964694, + 5343.03992624386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.329001908206, + 5343.03992624386 + ], + [ + 1925.463781484733, + 5343.03992624386 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A4", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1932.306799336935, + "min_y": 5340.712553159671, + "max_x": 1932.306799336935, + "max_y": 5342.285888512061, + "center": [ + 1932.306799336935, + 5341.499220835866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.306799336935, + 5342.285888512061 + ], + [ + 1932.306799336935, + 5340.712553159671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A5", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1934.154509296572, + "min_y": 5343.03992624386, + "max_x": 1941.665528367244, + "max_y": 5343.03992624386, + "center": [ + 1937.910018831908, + 5343.03992624386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.154509296572, + 5343.03992624386 + ], + [ + 1941.665528367244, + 5343.03992624386 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A6", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1928.426795263864, + "min_y": 5343.03992624386, + "max_x": 1930.459089377298, + "max_y": 5343.03992624386, + "center": [ + 1929.442942320581, + 5343.03992624386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1928.426795263864, + 5343.03992624386 + ], + [ + 1930.459089377298, + 5343.03992624386 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.728595265337, + "min_y": 5284.79437411649, + "max_x": 1726.268659563829, + "max_y": 5285.334438414976, + "center": [ + 1725.998627414583, + 5285.064406265733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563829, + 5285.334438414976 + ], + [ + 1725.728595265337, + 5284.79437411649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.728595265337, + "min_y": 5284.254309818004, + "max_x": 1726.268659563829, + "max_y": 5284.79437411649, + "center": [ + 1725.998627414583, + 5284.524341967247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.728595265337, + 5284.79437411649 + ], + [ + 1726.268659563829, + 5284.254309818004 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558A9", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.088638131, + "min_y": 5284.614352683661, + "max_x": 1726.3046638503943, + "max_y": 5284.974395549319, + "center": [ + 1726.196650990697, + 5284.79437411649 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563829, + "min_y": 5284.254309818004, + "max_x": 1726.80872386231, + "max_y": 5284.79437411649, + "center": [ + 1726.5386917130695, + 5284.524341967247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563829, + 5284.254309818004 + ], + [ + 1726.80872386231, + 5284.79437411649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563829, + "min_y": 5284.79437411649, + "max_x": 1726.80872386231, + "max_y": 5285.334438414976, + "center": [ + 1726.5386917130695, + 5285.064406265733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.80872386231, + 5284.79437411649 + ], + [ + 1726.268659563829, + 5285.334438414976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.928622861703, + "min_y": 5285.334438414976, + "max_x": 1726.608696265953, + "max_y": 5285.334438414976, + "center": [ + 1726.268659563828, + 5285.334438414976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.928622861703, + 5285.334438414976 + ], + [ + 1726.608696265953, + 5285.334438414976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.928622861703, + "min_y": 5284.254309818004, + "max_x": 1726.608696265953, + "max_y": 5284.254309818004, + "center": [ + 1726.268659563828, + 5284.254309818004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.928622861703, + 5284.254309818004 + ], + [ + 1726.608696265953, + 5284.254309818004 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.675485477159, + "min_y": 5286.126778414831, + "max_x": 1726.861833650497, + "max_y": 5286.838587318835, + "center": [ + 1726.268659563828, + 5286.482682866834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.861833650497, + 5286.838587318835 + ], + [ + 1725.675485477159, + 5286.126778414831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558AF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.675485477159, + "min_y": 5286.126778414831, + "max_x": 1726.861833650497, + "max_y": 5286.838587318835, + "center": [ + 1726.268659563828, + 5286.482682866834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.675485477159, + 5286.838587318835 + ], + [ + 1726.861833650497, + 5286.126778414831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.675485477159, + "min_y": 5286.126778414831, + "max_x": 1725.675485477159, + "max_y": 5286.838587318835, + "center": [ + 1725.675485477159, + 5286.482682866834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.675485477159, + 5286.838587318835 + ], + [ + 1725.675485477159, + 5286.126778414831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.675485477159, + "min_y": 5286.131796095659, + "max_x": 1725.675485477159, + "max_y": 5286.833569638006, + "center": [ + 1725.675485477159, + 5286.482682866833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.675485477159, + 5286.131796095659 + ], + [ + 1725.675485477159, + 5286.833569638006 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.861833650497, + "min_y": 5286.126778414831, + "max_x": 1726.861833650497, + "max_y": 5286.838587318835, + "center": [ + 1726.861833650497, + 5286.482682866834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.861833650497, + 5286.838587318835 + ], + [ + 1726.861833650497, + 5286.126778414831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.912755111826, + "min_y": 5285.889508780164, + "max_x": 1726.62456401583, + "max_y": 5285.889508780164, + "center": [ + 1726.268659563828, + 5285.889508780164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.912755111826, + 5285.889508780164 + ], + [ + 1726.62456401583, + 5285.889508780164 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5285.889508780164, + "max_x": 1726.268659563827, + "max_y": 5285.889508780164, + "center": [ + 1726.268659563827, + 5285.889508780164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5285.889508780164 + ], + [ + 1726.268659563827, + 5285.889508780164 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1725.912755111826, + "min_y": 5285.889508780164, + "max_x": 1726.268659563827, + "max_y": 5286.482682866832, + "center": [ + 1726.0907073378266, + 5286.186095823497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.912755111826, + 5285.889508780164 + ], + [ + 1726.268659563827, + 5286.482682866832 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5285.889508780164, + "max_x": 1726.62456401583, + "max_y": 5286.482682866832, + "center": [ + 1726.4466117898285, + 5286.186095823497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5286.482682866832 + ], + [ + 1726.62456401583, + 5285.889508780164 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5286.482682866832, + "max_x": 1726.268659563827, + "max_y": 5287.273754398267, + "center": [ + 1726.268659563827, + 5286.87821863255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5286.482682866832 + ], + [ + 1726.268659563827, + 5287.273754398267 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.861833650497, + "min_y": 5286.482682866832, + "max_x": 1727.491766910093, + "max_y": 5286.482682866832, + "center": [ + 1727.176800280295, + 5286.482682866832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.861833650497, + 5286.482682866832 + ], + [ + 1727.491766910093, + 5286.482682866832 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558B9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1726.268659563827, + "min_y": 5285.334438414976, + "max_x": 1726.268659563827, + "max_y": 5285.868572591204, + "center": [ + 1726.268659563827, + 5285.601505503089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1726.268659563827, + 5285.868572591204 + ], + [ + 1726.268659563827, + 5285.334438414976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558BA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1724.760742411566, + "min_y": 5286.482682866832, + "max_x": 1725.675485477159, + "max_y": 5286.482682866832, + "center": [ + 1725.2181139443626, + 5286.482682866832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1725.675485477159, + 5286.482682866832 + ], + [ + 1724.760742411566, + 5286.482682866832 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558BB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1724.760742411566, + "min_y": 5286.482682866832, + "max_x": 1724.760742411566, + "max_y": 5307.570244886456, + "center": [ + 1724.760742411566, + 5297.026463876644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.760742411566, + 5286.482682866832 + ], + [ + 1724.760742411566, + 5307.570244886456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558BC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.131203604342, + "min_y": 5309.714809779773, + "max_x": 2038.671267902833, + "max_y": 5310.254874078259, + "center": [ + 2038.4012357535876, + 5309.984841929016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5310.254874078259 + ], + [ + 2038.131203604342, + 5309.714809779773 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558BD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.131203604342, + "min_y": 5309.174745481287, + "max_x": 2038.671267902833, + "max_y": 5309.714809779773, + "center": [ + 2038.4012357535876, + 5309.44477763053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.131203604342, + 5309.714809779773 + ], + [ + 2038.671267902833, + 5309.174745481287 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558BE", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.491246470004, + "min_y": 5309.534788346945, + "max_x": 2038.7072721893983, + "max_y": 5309.894831212602, + "center": [ + 2038.599259329701, + 5309.7148097797735 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558BF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5309.174745481287, + "max_x": 2039.211332201316, + "max_y": 5309.714809779773, + "center": [ + 2038.9413000520744, + 5309.44477763053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5309.174745481287 + ], + [ + 2039.211332201316, + 5309.714809779773 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C0", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5309.714809779773, + "max_x": 2039.211332201316, + "max_y": 5310.254874078259, + "center": [ + 2038.9413000520744, + 5309.984841929016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.211332201316, + 5309.714809779773 + ], + [ + 2038.671267902833, + 5310.254874078259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C1", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.331231200709, + "min_y": 5310.254874078259, + "max_x": 2039.011304604957, + "max_y": 5310.254874078259, + "center": [ + 2038.671267902833, + 5310.254874078259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.331231200709, + 5310.254874078259 + ], + [ + 2039.011304604957, + 5310.254874078259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C2", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.331231200709, + "min_y": 5309.174745481287, + "max_x": 2039.011304604957, + "max_y": 5309.174745481287, + "center": [ + 2038.671267902833, + 5309.174745481287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.331231200709, + 5309.174745481287 + ], + [ + 2039.011304604957, + 5309.174745481287 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C3", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.078093816164, + "min_y": 5311.047214078115, + "max_x": 2039.264441989502, + "max_y": 5311.759022982118, + "center": [ + 2038.671267902833, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.264441989502, + 5311.759022982118 + ], + [ + 2038.078093816164, + 5311.047214078115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C4", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.078093816164, + "min_y": 5311.047214078115, + "max_x": 2039.264441989502, + "max_y": 5311.759022982118, + "center": [ + 2038.671267902833, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.078093816164, + 5311.759022982118 + ], + [ + 2039.264441989502, + 5311.047214078115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.078093816164, + "min_y": 5311.047214078115, + "max_x": 2038.078093816164, + "max_y": 5311.759022982118, + "center": [ + 2038.078093816164, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.078093816164, + 5311.759022982118 + ], + [ + 2038.078093816164, + 5311.047214078115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.078093816164, + "min_y": 5311.052231758942, + "max_x": 2038.078093816164, + "max_y": 5311.75400530129, + "center": [ + 2038.078093816164, + 5311.4031185301155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.078093816164, + 5311.052231758942 + ], + [ + 2038.078093816164, + 5311.75400530129 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2039.264441989502, + "min_y": 5311.047214078115, + "max_x": 2039.264441989502, + "max_y": 5311.759022982118, + "center": [ + 2039.264441989502, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.264441989502, + 5311.759022982118 + ], + [ + 2039.264441989502, + 5311.047214078115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.31536345083, + "min_y": 5310.809944443447, + "max_x": 2039.027172354835, + "max_y": 5310.809944443447, + "center": [ + 2038.6712679028326, + 5310.809944443447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.31536345083, + 5310.809944443447 + ], + [ + 2039.027172354835, + 5310.809944443447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558C9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5310.809944443447, + "max_x": 2038.671267902833, + "max_y": 5310.809944443447, + "center": [ + 2038.671267902833, + 5310.809944443447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5310.809944443447 + ], + [ + 2038.671267902833, + 5310.809944443447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.31536345083, + "min_y": 5310.809944443447, + "max_x": 2038.671267902833, + "max_y": 5311.403118530116, + "center": [ + 2038.4933156768316, + 5311.106531486782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.31536345083, + 5310.809944443447 + ], + [ + 2038.671267902833, + 5311.403118530116 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5310.809944443447, + "max_x": 2039.027172354835, + "max_y": 5311.403118530116, + "center": [ + 2038.849220128834, + 5311.106531486782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5311.403118530116 + ], + [ + 2039.027172354835, + 5310.809944443447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5311.403118530116, + "max_x": 2038.671267902833, + "max_y": 5312.19419006155, + "center": [ + 2038.671267902833, + 5311.798654295833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5311.403118530116 + ], + [ + 2038.671267902833, + 5312.19419006155 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2039.264441989502, + "min_y": 5311.403118530116, + "max_x": 2039.860347072579, + "max_y": 5311.403118530116, + "center": [ + 2039.5623945310406, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2039.264441989502, + 5311.403118530116 + ], + [ + 2039.860347072579, + 5311.403118530116 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2038.671267902833, + "min_y": 5310.25487407826, + "max_x": 2038.671267902833, + "max_y": 5310.789008254486, + "center": [ + 2038.671267902833, + 5310.521941166373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.671267902833, + 5310.789008254486 + ], + [ + 2038.671267902833, + 5310.25487407826 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558CF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2037.16335075057, + "min_y": 5311.403118530116, + "max_x": 2038.078093816164, + "max_y": 5311.403118530116, + "center": [ + 2037.620722283367, + 5311.403118530116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2038.078093816164, + 5311.403118530116 + ], + [ + 2037.16335075057, + 5311.403118530116 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.437803178987, + "min_y": 5310.935462401682, + "max_x": 1697.437803178987, + "max_y": 5311.942995840738, + "center": [ + 1697.437803178987, + 5311.43922912121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.437803178987, + 5310.935462401682 + ], + [ + 1697.437803178987, + 5311.942995840738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.873092532435, + "min_y": 5310.935462401682, + "max_x": 1697.437803178987, + "max_y": 5311.273578174882, + "center": [ + 1697.155447855711, + 5311.1045202882815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.873092532435, + 5311.273578174882 + ], + [ + 1697.437803178987, + 5310.935462401682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.755051574671, + "min_y": 5310.935462401682, + "max_x": 1695.755051574671, + "max_y": 5311.942995840738, + "center": [ + 1695.755051574671, + 5311.43922912121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.755051574671, + 5310.935462401682 + ], + [ + 1695.755051574671, + 5311.942995840738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.755051574671, + "min_y": 5310.935462401682, + "max_x": 1696.319762221222, + "max_y": 5311.273578174882, + "center": [ + 1696.0374068979463, + 5311.1045202882815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.319762221222, + 5311.273578174882 + ], + [ + 1695.755051574671, + 5310.935462401682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1696.2739621161475, + "min_y": 5311.1167638605275, + "max_x": 1696.9188926375125, + "max_y": 5311.761694381892, + "center": [ + 1696.59642737683, + 5311.43922912121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.59642737683, + 5311.43922912121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.716150757242, + "min_y": 5310.935770009853, + "max_x": 1697.716150757242, + "max_y": 5311.943303448901, + "center": [ + 1697.716150757242, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.716150757242, + 5311.943303448901 + ], + [ + 1697.716150757242, + 5310.935770009853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.448540809638, + "min_y": 5310.935770009853, + "max_x": 1695.448540809638, + "max_y": 5311.943303448901, + "center": [ + 1695.448540809638, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.448540809638, + 5311.943303448901 + ], + [ + 1695.448540809638, + 5310.935770009853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.873092532435, + "min_y": 5311.604880067541, + "max_x": 1697.437803178987, + "max_y": 5311.942995840738, + "center": [ + 1697.155447855711, + 5311.77393795414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.437803178987, + 5311.942995840738 + ], + [ + 1696.873092532435, + 5311.604880067541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1695.755051574671, + "min_y": 5311.604880067541, + "max_x": 1696.319762221222, + "max_y": 5311.942995840738, + "center": [ + 1696.0374068979463, + 5311.77393795414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.755051574671, + 5311.942995840738 + ], + [ + 1696.319762221222, + 5311.604880067541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.754346474129, + "min_y": 5308.576990518448, + "max_x": 1694.761879913185, + "max_y": 5308.576990518448, + "center": [ + 1694.2581131936572, + 5308.576990518448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.754346474129, + 5308.576990518448 + ], + [ + 1694.761879913185, + 5308.576990518448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.754346474129, + "min_y": 5308.576990518448, + "max_x": 1694.092462247328, + "max_y": 5309.141701165, + "center": [ + 1693.9234043607285, + 5308.859345841724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.092462247328, + 5309.141701165 + ], + [ + 1693.754346474129, + 5308.576990518448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.754346474129, + "min_y": 5310.259742122764, + "max_x": 1694.761879913185, + "max_y": 5310.259742122764, + "center": [ + 1694.2581131936572, + 5310.259742122764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.754346474129, + 5310.259742122764 + ], + [ + 1694.761879913185, + 5310.259742122764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.754346474129, + "min_y": 5309.695031476213, + "max_x": 1694.092462247328, + "max_y": 5310.259742122764, + "center": [ + 1693.9234043607285, + 5309.977386799488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.092462247328, + 5309.695031476213 + ], + [ + 1693.754346474129, + 5310.259742122764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1693.9356479329745, + "min_y": 5309.095901059922, + "max_x": 1694.5805784543395, + "max_y": 5309.740831581286, + "center": [ + 1694.258113193657, + 5309.418366320604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.258113193657, + 5309.418366320604 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.423764139989, + "min_y": 5308.576990518448, + "max_x": 1694.761879913185, + "max_y": 5309.141701165, + "center": [ + 1694.592822026587, + 5308.859345841724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.761879913185, + 5308.576990518448 + ], + [ + 1694.423764139989, + 5309.141701165 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.423764139989, + "min_y": 5309.695031476213, + "max_x": 1694.761879913185, + "max_y": 5310.259742122764, + "center": [ + 1694.592822026587, + 5309.977386799488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.761879913185, + 5310.259742122764 + ], + [ + 1694.423764139989, + 5309.695031476213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558E0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1694.1190931236283, + "min_y": 5308.298642855206, + "max_x": 1694.397440871856, + "max_y": 5308.576990603434, + "center": [ + 1694.258266997742, + 5308.43781672932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.258266997742, + 5308.43781672932 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558E1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1694.1190931236283, + "min_y": 5310.259742122763, + "max_x": 1694.397440871856, + "max_y": 5310.538089870991, + "center": [ + 1694.258266997742, + 5310.398915996877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.258266997742, + 5310.398915996877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5558E2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1693.067993185844, + "min_y": 5311.439536729378, + "max_x": 1695.448540809638, + "max_y": 5311.439536729378, + "center": [ + 1694.258266997741, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1695.448540809638, + 5311.439536729378 + ], + [ + 1693.067993185844, + 5311.439536729378 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558E3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1694.258266997742, + "min_y": 5310.538089870991, + "max_x": 1694.258266997742, + "max_y": 5311.439536729378, + "center": [ + 1694.258266997742, + 5310.988813300184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.258266997742, + 5311.439536729378 + ], + [ + 1694.258266997742, + 5310.538089870991 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558E4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1694.258266997742, + "min_y": 5307.247838450247, + "max_x": 1694.258266997742, + "max_y": 5308.298642855207, + "center": [ + 1694.258266997742, + 5307.773240652727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.258266997742, + 5308.298642855207 + ], + [ + 1694.258266997742, + 5307.247838450247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.709495718279, + "min_y": 5306.594126845161, + "max_x": 1693.709495718279, + "max_y": 5307.337443961156, + "center": [ + 1693.709495718279, + 5306.965785403158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.709495718279, + 5307.337443961156 + ], + [ + 1693.709495718279, + 5306.594126845161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1694.807038277208, + "min_y": 5306.594126845161, + "max_x": 1694.807038277208, + "max_y": 5307.337443961156, + "center": [ + 1694.807038277208, + 5306.965785403158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1694.807038277208, + 5307.337443961156 + ], + [ + 1694.807038277208, + 5306.594126845161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1693.709495718279, + "min_y": 5306.594126845161, + "max_x": 1694.807038277208, + "max_y": 5306.594126845161, + "center": [ + 1694.2582669977435, + 5306.594126845161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.709495718279, + 5306.594126845161 + ], + [ + 1694.807038277208, + 5306.594126845161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1691.645530222886, + "min_y": 5311.439536729378, + "max_x": 1692.696334627846, + "max_y": 5311.439536729378, + "center": [ + 1692.1709324253661, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.645530222886, + 5311.439536729378 + ], + [ + 1692.696334627846, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1692.696334627846, + "min_y": 5311.988308008842, + "max_x": 1693.439651743842, + "max_y": 5311.988308008842, + "center": [ + 1693.067993185844, + 5311.988308008842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.439651743842, + 5311.988308008842 + ], + [ + 1692.696334627846, + 5311.988308008842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1692.696334627846, + "min_y": 5310.890765449912, + "max_x": 1693.439651743842, + "max_y": 5310.890765449912, + "center": [ + 1693.067993185844, + 5310.890765449912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1693.439651743842, + 5310.890765449912 + ], + [ + 1692.696334627846, + 5310.890765449912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1692.696334627846, + "min_y": 5310.890765449912, + "max_x": 1692.696334627846, + "max_y": 5311.988308008842, + "center": [ + 1692.696334627846, + 5311.439536729376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.696334627846, + 5311.988308008842 + ], + [ + 1692.696334627846, + 5310.890765449912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1688.8752604833612, + "min_y": 5311.2416603194115, + "max_x": 1689.2710133032947, + "max_y": 5311.637413139345, + "center": [ + 1689.073136893328, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.073136893328, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558ED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1689.2710133032936, + "min_y": 5311.241660319413, + "max_x": 1689.6667661232243, + "max_y": 5311.637413139343, + "center": [ + 1689.468889713259, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.468889713259, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558EE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1689.6667661232257, + "min_y": 5311.241660319413, + "max_x": 1690.0625189431564, + "max_y": 5311.637413139343, + "center": [ + 1689.864642533191, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.864642533191, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558EF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1689.666766123226, + "min_y": 5311.2416603194115, + "max_x": 1690.0625189431603, + "max_y": 5311.637413139345, + "center": [ + 1689.864642533193, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1689.864642533193, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1690.0625189431587, + "min_y": 5311.241660319413, + "max_x": 1690.4582717630894, + "max_y": 5311.637413139343, + "center": [ + 1690.260395353124, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.260395353124, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1690.4582717630906, + "min_y": 5311.241660319411, + "max_x": 1690.8540245830254, + "max_y": 5311.637413139346, + "center": [ + 1690.656148173058, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.656148173058, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1690.8540245830266, + "min_y": 5311.241660319413, + "max_x": 1691.2497774029573, + "max_y": 5311.637413139343, + "center": [ + 1691.051900992992, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.051900992992, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1691.2497774029557, + "min_y": 5311.241660319413, + "max_x": 1691.6455302228865, + "max_y": 5311.637413139343, + "center": [ + 1691.447653812921, + 5311.439536729378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1691.447653812921, + 5311.439536729378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.824463107511, + "min_y": 5311.441204584529, + "max_x": 1688.875267512471, + "max_y": 5311.441204584529, + "center": [ + 1688.349865309991, + 5311.441204584529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1688.875267512471, + 5311.441204584529 + ], + [ + 1687.824463107511, + 5311.441204584529 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.081145991515, + "min_y": 5310.892433305063, + "max_x": 1687.824463107511, + "max_y": 5310.892433305063, + "center": [ + 1687.452804549513, + 5310.892433305063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.081145991515, + 5310.892433305063 + ], + [ + 1687.824463107511, + 5310.892433305063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.081145991515, + "min_y": 5311.989975863993, + "max_x": 1687.824463107511, + "max_y": 5311.989975863993, + "center": [ + 1687.452804549513, + 5311.989975863993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.081145991515, + 5311.989975863993 + ], + [ + 1687.824463107511, + 5311.989975863993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1687.824463107511, + "min_y": 5310.892433305063, + "max_x": 1687.824463107511, + "max_y": 5311.989975863993, + "center": [ + 1687.824463107511, + 5311.441204584527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1687.824463107511, + 5310.892433305063 + ], + [ + 1687.824463107511, + 5311.989975863993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558F8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1693.465654487069, + "min_y": 5312.252316212084, + "max_x": 1694.8095121075412, + "max_y": 5313.372197562478, + "center": [ + 1694.1375832973051, + 5312.8122568872805 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5558F9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1688.177305454392, + "min_y": 5312.306091144523, + "max_x": 1689.521163074864, + "max_y": 5313.425972494916, + "center": [ + 1688.849234264628, + 5312.86603181972 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5558FA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1973.638006326029, + "min_y": 5193.970544364018, + "max_x": 1986.493715301386, + "max_y": 5193.970544364018, + "center": [ + 1980.0658608137073, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1973.638006326029, + 5193.970544364018 + ], + [ + 1986.493715301386, + 5193.970544364018 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5558FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.672965059424, + "min_y": 5309.013726115892, + "max_x": 1998.68049849848, + "max_y": 5309.013726115892, + "center": [ + 1998.176731778952, + 5309.013726115892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.68049849848, + 5309.013726115892 + ], + [ + 1997.672965059424, + 5309.013726115892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.342382725281, + "min_y": 5309.013726115892, + "max_x": 1998.68049849848, + "max_y": 5309.578436762444, + "center": [ + 1998.5114406118805, + 5309.296081439168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.342382725281, + 5309.578436762444 + ], + [ + 1998.68049849848, + 5309.013726115892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.672965059424, + "min_y": 5310.696477720209, + "max_x": 1998.68049849848, + "max_y": 5310.696477720209, + "center": [ + 1998.176731778952, + 5310.696477720209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.68049849848, + 5310.696477720209 + ], + [ + 1997.672965059424, + 5310.696477720209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.342382725281, + "min_y": 5310.131767073657, + "max_x": 1998.68049849848, + "max_y": 5310.696477720209, + "center": [ + 1998.5114406118805, + 5310.414122396933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.342382725281, + 5310.131767073657 + ], + [ + 1998.68049849848, + 5310.696477720209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5558FF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1997.8542665182695, + "min_y": 5309.532636657366, + "max_x": 1998.4991970396345, + "max_y": 5310.177567178731, + "center": [ + 1998.176731778952, + 5309.855101918049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.176731778952, + 5309.855101918049 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555900", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.672965059424, + "min_y": 5309.013726115892, + "max_x": 1998.011080832621, + "max_y": 5309.578436762444, + "center": [ + 1997.8420229460226, + 5309.296081439168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.672965059424, + 5309.013726115892 + ], + [ + 1998.011080832621, + 5309.578436762444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555901", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.672965059424, + "min_y": 5310.131767073657, + "max_x": 1998.011080832621, + "max_y": 5310.696477720209, + "center": [ + 1997.8420229460226, + 5310.414122396933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.672965059424, + 5310.696477720209 + ], + [ + 1998.011080832621, + 5310.131767073657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555902", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1998.0374041007542, + "min_y": 5308.735378452651, + "max_x": 1998.3157518489818, + "max_y": 5309.013726200879, + "center": [ + 1998.176577974868, + 5308.874552326765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.176577974868, + 5308.874552326765 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555903", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1998.0374041007542, + "min_y": 5310.696477720209, + "max_x": 1998.3157518489818, + "max_y": 5310.974825468437, + "center": [ + 1998.176577974868, + 5310.835651594323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.176577974868, + 5310.835651594323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555904", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1998.176577974868, + "min_y": 5310.974825468435, + "max_x": 1998.176577974868, + "max_y": 5311.876272326823, + "center": [ + 1998.176577974868, + 5311.425548897629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.176577974868, + 5311.876272326823 + ], + [ + 1998.176577974868, + 5310.974825468435 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555905", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1998.176577974868, + "min_y": 5307.684574047691, + "max_x": 1998.176577974868, + "max_y": 5308.735378452651, + "center": [ + 1998.176577974868, + 5308.209976250171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.176577974868, + 5308.735378452651 + ], + [ + 1998.176577974868, + 5307.684574047691 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555906", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.725349254331, + "min_y": 5307.030862442605, + "max_x": 1998.725349254331, + "max_y": 5307.774179558601, + "center": [ + 1998.725349254331, + 5307.402521000603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.725349254331, + 5307.774179558601 + ], + [ + 1998.725349254331, + 5307.030862442605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555907", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.627806695401, + "min_y": 5307.030862442605, + "max_x": 1997.627806695401, + "max_y": 5307.774179558601, + "center": [ + 1997.627806695401, + 5307.402521000603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.627806695401, + 5307.774179558601 + ], + [ + 1997.627806695401, + 5307.030862442605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555908", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1997.627806695401, + "min_y": 5307.030862442605, + "max_x": 1998.725349254331, + "max_y": 5307.030862442605, + "center": [ + 1998.176577974866, + 5307.030862442605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.725349254331, + 5307.030862442605 + ], + [ + 1997.627806695401, + 5307.030862442605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555909", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1999.738510344762, + "min_y": 5311.876272326823, + "max_x": 2000.789314749723, + "max_y": 5311.876272326823, + "center": [ + 2000.2639125472424, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2000.789314749723, + 5311.876272326823 + ], + [ + 1999.738510344762, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.995193228767, + "min_y": 5312.425043606286, + "max_x": 1999.738510344762, + "max_y": 5312.425043606286, + "center": [ + 1999.3668517867645, + 5312.425043606286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.995193228767, + 5312.425043606286 + ], + [ + 1999.738510344762, + 5312.425043606286 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.995193228767, + "min_y": 5311.327501047357, + "max_x": 1999.738510344762, + "max_y": 5311.327501047357, + "center": [ + 1999.3668517867645, + 5311.327501047357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.995193228767, + 5311.327501047357 + ], + [ + 1999.738510344762, + 5311.327501047357 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1999.738510344762, + "min_y": 5311.327501047357, + "max_x": 1999.738510344762, + "max_y": 5312.425043606286, + "center": [ + 1999.738510344762, + 5311.876272326821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1999.738510344762, + 5312.425043606286 + ], + [ + 1999.738510344762, + 5311.327501047357 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2003.1638316693143, + "min_y": 5311.678395916856, + "max_x": 2003.5595844892478, + "max_y": 5312.0741487367895, + "center": [ + 2003.361708079281, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.361708079281, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2002.7680788493847, + "min_y": 5311.678395916858, + "max_x": 2003.1638316693154, + "max_y": 5312.074148736788, + "center": [ + 2002.96595525935, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.96595525935, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55590F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2002.3723260294537, + "min_y": 5311.678395916858, + "max_x": 2002.7680788493844, + "max_y": 5312.074148736788, + "center": [ + 2002.570202439419, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.570202439419, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555910", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2002.372326029449, + "min_y": 5311.678395916856, + "max_x": 2002.7680788493833, + "max_y": 5312.0741487367895, + "center": [ + 2002.570202439416, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.570202439416, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555911", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2001.9765732095195, + "min_y": 5311.678395916858, + "max_x": 2002.3723260294503, + "max_y": 5312.074148736788, + "center": [ + 2002.174449619485, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2002.174449619485, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555912", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2001.5808203895836, + "min_y": 5311.678395916855, + "max_x": 2001.9765732095184, + "max_y": 5312.07414873679, + "center": [ + 2001.778696799551, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.778696799551, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555913", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2001.1850675696517, + "min_y": 5311.678395916858, + "max_x": 2001.5808203895824, + "max_y": 5312.074148736788, + "center": [ + 2001.382943979617, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2001.382943979617, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555914", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2000.7893147497236, + "min_y": 5311.678395916858, + "max_x": 2001.1850675696544, + "max_y": 5312.074148736788, + "center": [ + 2000.987191159689, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2000.987191159689, + 5311.876272326823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555915", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.559577460138, + "min_y": 5311.877940181973, + "max_x": 2004.610381865099, + "max_y": 5311.877940181973, + "center": [ + 2004.0849796626185, + 5311.877940181973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.559577460138, + 5311.877940181973 + ], + [ + 2004.610381865099, + 5311.877940181973 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555916", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.610381865099, + "min_y": 5311.329168902508, + "max_x": 2005.353698981095, + "max_y": 5311.329168902508, + "center": [ + 2004.982040423097, + 5311.329168902508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.353698981095, + 5311.329168902508 + ], + [ + 2004.610381865099, + 5311.329168902508 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555917", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.610381865099, + "min_y": 5312.426711461437, + "max_x": 2005.353698981095, + "max_y": 5312.426711461437, + "center": [ + 2004.982040423097, + 5312.426711461437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.353698981095, + 5312.426711461437 + ], + [ + 2004.610381865099, + 5312.426711461437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555918", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.610381865099, + "min_y": 5311.329168902508, + "max_x": 2004.610381865099, + "max_y": 5312.426711461437, + "center": [ + 2004.610381865099, + 5311.877940181972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.610381865099, + 5311.329168902508 + ], + [ + 2004.610381865099, + 5312.426711461437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555919", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1999.260385622613, + "min_y": 5311.171527427801, + "max_x": 2000.6042432430852, + "max_y": 5312.291408778195, + "center": [ + 1999.9323144328491, + 5311.731468102998 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55591A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2004.548734655291, + "min_y": 5311.225302360237, + "max_x": 2005.892592275763, + "max_y": 5312.34518371063, + "center": [ + 2005.220663465527, + 5311.785243035434 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55591B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2006.526345226508, + "min_y": 5311.216488221158, + "max_x": 2010.5579180879242, + "max_y": 5312.336369571552, + "center": [ + 2008.542131657216, + 5311.776428896355 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55591C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1996.638717085536, + "min_y": 5311.876272326823, + "max_x": 1999.366851786765, + "max_y": 5311.876272326823, + "center": [ + 1998.0027844361505, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1999.366851786765, + 5311.876272326823 + ], + [ + 1996.638717085536, + 5311.876272326823 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55591D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.360369507286, + "min_y": 5311.37219799913, + "max_x": 1996.360369507286, + "max_y": 5312.379731438181, + "center": [ + 1996.360369507286, + 5311.875964718655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.360369507286, + 5311.37219799913 + ], + [ + 1996.360369507286, + 5312.379731438181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55591E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.795658860732, + "min_y": 5311.37219799913, + "max_x": 1996.360369507286, + "max_y": 5311.710313772324, + "center": [ + 1996.078014184009, + 5311.541255885727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.795658860732, + 5311.710313772324 + ], + [ + 1996.360369507286, + 5311.37219799913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55591F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.677617902968, + "min_y": 5311.37219799913, + "max_x": 1994.677617902968, + "max_y": 5312.379731438181, + "center": [ + 1994.677617902968, + 5311.875964718655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.677617902968, + 5311.37219799913 + ], + [ + 1994.677617902968, + 5312.379731438181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555920", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.677617902968, + "min_y": 5311.37219799913, + "max_x": 1995.242328549522, + "max_y": 5311.710313772324, + "center": [ + 1994.959973226245, + 5311.541255885727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.242328549522, + 5311.710313772324 + ], + [ + 1994.677617902968, + 5311.37219799913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555921", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1995.1965284444445, + "min_y": 5311.553499457973, + "max_x": 1995.8414589658096, + "max_y": 5312.198429979338, + "center": [ + 1995.518993705127, + 5311.875964718655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.518993705127, + 5311.875964718655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555922", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.638717085536, + "min_y": 5311.372505607296, + "max_x": 1996.638717085536, + "max_y": 5312.380039046348, + "center": [ + 1996.638717085536, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.638717085536, + 5312.380039046348 + ], + [ + 1996.638717085536, + 5311.372505607296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555923", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.371107137937, + "min_y": 5311.372505607296, + "max_x": 1994.371107137937, + "max_y": 5312.380039046348, + "center": [ + 1994.371107137937, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.371107137937, + 5312.380039046348 + ], + [ + 1994.371107137937, + 5311.372505607296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555924", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.795658860732, + "min_y": 5312.041615664984, + "max_x": 1996.360369507286, + "max_y": 5312.379731438181, + "center": [ + 1996.078014184009, + 5312.210673551583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.360369507286, + 5312.379731438181 + ], + [ + 1995.795658860732, + 5312.041615664984 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555925", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1994.677617902968, + "min_y": 5312.041615664987, + "max_x": 1995.242328549522, + "max_y": 5312.379731438181, + "center": [ + 1994.959973226245, + 5312.2106735515845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.677617902968, + 5312.379731438181 + ], + [ + 1995.242328549522, + 5312.041615664987 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555926", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1980.425369724527, + "min_y": 5325.021168768122, + "max_x": 2033.866745791552, + "max_y": 5325.024046996518, + "center": [ + 2007.1460577580394, + 5325.02260788232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1980.425369724527, + 5325.021168768122 + ], + [ + 2033.866745791552, + 5325.024046996518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555927", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1979.845460880497, + "min_y": 5311.876272326823, + "max_x": 1994.371107137937, + "max_y": 5311.876272326823, + "center": [ + 1987.1082840092172, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.371107137937, + 5311.876272326823 + ], + [ + 1979.845460880497, + 5311.876272326823 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2008.592085840291, + "min_y": 5281.35131060775, + "max_x": 2009.599619279347, + "max_y": 5281.35131060775, + "center": [ + 2009.095852559819, + 5281.35131060775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.599619279347, + 5281.35131060775 + ], + [ + 2008.592085840291, + 5281.35131060775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555929", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2009.261503506148, + "min_y": 5281.35131060775, + "max_x": 2009.599619279347, + "max_y": 5281.916021254301, + "center": [ + 2009.4305613927477, + 5281.6336659310255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.261503506148, + 5281.916021254301 + ], + [ + 2009.599619279347, + 5281.35131060775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2008.592085840291, + "min_y": 5283.034062212067, + "max_x": 2009.599619279347, + "max_y": 5283.034062212067, + "center": [ + 2009.095852559819, + 5283.034062212067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.599619279347, + 5283.034062212067 + ], + [ + 2008.592085840291, + 5283.034062212067 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2009.261503506148, + "min_y": 5282.469351565515, + "max_x": 2009.599619279347, + "max_y": 5283.034062212067, + "center": [ + 2009.4305613927477, + 5282.751706888791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.261503506148, + 5282.469351565515 + ], + [ + 2009.599619279347, + 5283.034062212067 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2008.7733872991364, + "min_y": 5281.870221149224, + "max_x": 2009.4183178205014, + "max_y": 5282.515151670588, + "center": [ + 2009.095852559819, + 5282.192686409906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.095852559819, + 5282.192686409906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2008.592085840291, + "min_y": 5281.35131060775, + "max_x": 2008.930201613488, + "max_y": 5281.916021254301, + "center": [ + 2008.7611437268895, + 5281.6336659310255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.592085840291, + 5281.35131060775 + ], + [ + 2008.930201613488, + 5281.916021254301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2008.592085840291, + "min_y": 5282.469351565515, + "max_x": 2008.930201613488, + "max_y": 5283.034062212067, + "center": [ + 2008.7611437268895, + 5282.751706888791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.592085840291, + 5283.034062212067 + ], + [ + 2008.930201613488, + 5282.469351565515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55592F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2008.9565248816202, + "min_y": 5281.072962944509, + "max_x": 2009.2348726298478, + "max_y": 5281.351310692737, + "center": [ + 2009.095698755734, + 5281.212136818623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.095698755734, + 5281.212136818623 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555930", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2008.9565248816202, + "min_y": 5283.034062212067, + "max_x": 2009.2348726298478, + "max_y": 5283.312409960295, + "center": [ + 2009.095698755734, + 5283.173236086181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.095698755734, + 5283.173236086181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555931", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2009.095698755734, + "min_y": 5283.312409960294, + "max_x": 2009.095698755734, + "max_y": 5284.213856818681, + "center": [ + 2009.095698755734, + 5283.763133389488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.095698755734, + 5284.213856818681 + ], + [ + 2009.095698755734, + 5283.312409960294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555932", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2010.65763112563, + "min_y": 5284.213856818681, + "max_x": 2011.70843553059, + "max_y": 5284.213856818681, + "center": [ + 2011.18303332811, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.70843553059, + 5284.213856818681 + ], + [ + 2010.65763112563, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555933", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2009.914314009634, + "min_y": 5284.762628098146, + "max_x": 2010.65763112563, + "max_y": 5284.762628098146, + "center": [ + 2010.285972567632, + 5284.762628098146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.914314009634, + 5284.762628098146 + ], + [ + 2010.65763112563, + 5284.762628098146 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555934", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2009.914314009634, + "min_y": 5283.665085539214, + "max_x": 2010.65763112563, + "max_y": 5283.665085539214, + "center": [ + 2010.285972567632, + 5283.665085539214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.914314009634, + 5283.665085539214 + ], + [ + 2010.65763112563, + 5283.665085539214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555935", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2010.65763112563, + "min_y": 5283.665085539214, + "max_x": 2010.65763112563, + "max_y": 5284.762628098146, + "center": [ + 2010.65763112563, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2010.65763112563, + 5284.762628098146 + ], + [ + 2010.65763112563, + 5283.665085539214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555936", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2014.0829524501812, + "min_y": 5284.015980408714, + "max_x": 2014.4787052701147, + "max_y": 5284.411733228648, + "center": [ + 2014.280828860148, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2014.280828860148, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555937", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2013.6871996302507, + "min_y": 5284.015980408716, + "max_x": 2014.0829524501814, + "max_y": 5284.411733228646, + "center": [ + 2013.885076040216, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.885076040216, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555938", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2013.2914468103206, + "min_y": 5284.015980408716, + "max_x": 2013.6871996302514, + "max_y": 5284.411733228646, + "center": [ + 2013.489323220286, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.489323220286, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555939", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2013.2914468103158, + "min_y": 5284.015980408714, + "max_x": 2013.6871996302502, + "max_y": 5284.411733228648, + "center": [ + 2013.489323220283, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.489323220283, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2012.8956939903867, + "min_y": 5284.015980408716, + "max_x": 2013.2914468103174, + "max_y": 5284.411733228646, + "center": [ + 2013.093570400352, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2013.093570400352, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2012.4999411704505, + "min_y": 5284.015980408713, + "max_x": 2012.8956939903853, + "max_y": 5284.411733228649, + "center": [ + 2012.697817580418, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.697817580418, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2012.1041883505197, + "min_y": 5284.015980408716, + "max_x": 2012.4999411704505, + "max_y": 5284.411733228646, + "center": [ + 2012.302064760485, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2012.302064760485, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2011.7084355305906, + "min_y": 5284.015980408716, + "max_x": 2012.1041883505213, + "max_y": 5284.411733228646, + "center": [ + 2011.906311940556, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2011.906311940556, + 5284.213856818681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2014.478698241005, + "min_y": 5284.215524673832, + "max_x": 2015.529502645966, + "max_y": 5284.215524673832, + "center": [ + 2015.0041004434856, + 5284.215524673832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2014.478698241005, + 5284.215524673832 + ], + [ + 2015.529502645966, + 5284.215524673832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55593F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2015.529502645966, + "min_y": 5283.666753394365, + "max_x": 2016.272819761962, + "max_y": 5283.666753394365, + "center": [ + 2015.901161203964, + 5283.666753394365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.272819761962, + 5283.666753394365 + ], + [ + 2015.529502645966, + 5283.666753394365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2015.529502645966, + "min_y": 5284.764295953296, + "max_x": 2016.272819761962, + "max_y": 5284.764295953296, + "center": [ + 2015.901161203964, + 5284.764295953296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2016.272819761962, + 5284.764295953296 + ], + [ + 2015.529502645966, + 5284.764295953296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555941", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2015.529502645966, + "min_y": 5283.666753394365, + "max_x": 2015.529502645966, + "max_y": 5284.764295953296, + "center": [ + 2015.529502645966, + 5284.21552467383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2015.529502645966, + 5283.666753394365 + ], + [ + 2015.529502645966, + 5284.764295953296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555942", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2010.17950640348, + "min_y": 5283.509111919659, + "max_x": 2011.5233640239521, + "max_y": 5284.628993270052, + "center": [ + 2010.851435213716, + 5284.069052594856 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555943", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2015.467855436158, + "min_y": 5283.562886852096, + "max_x": 2016.8117130566302, + "max_y": 5284.68276820249, + "center": [ + 2016.1397842463941, + 5284.122827527293 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555944", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2017.445466007375, + "min_y": 5283.554072713016, + "max_x": 2021.4770388687912, + "max_y": 5284.673954063409, + "center": [ + 2019.4612524380832, + 5284.114013388213 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555945", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2007.557837866403, + "min_y": 5284.213856818681, + "max_x": 2010.285972567632, + "max_y": 5284.213856818681, + "center": [ + 2008.9219052170174, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2010.285972567632, + 5284.213856818681 + ], + [ + 2007.557837866403, + 5284.213856818681 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555946", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2007.279490288154, + "min_y": 5283.709782490988, + "max_x": 2007.279490288154, + "max_y": 5284.717315930038, + "center": [ + 2007.279490288154, + 5284.2135492105135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2007.279490288154, + 5283.709782490988 + ], + [ + 2007.279490288154, + 5284.717315930038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555947", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2006.714779641599, + "min_y": 5283.709782490988, + "max_x": 2007.279490288154, + "max_y": 5284.047898264182, + "center": [ + 2006.9971349648765, + 5283.878840377585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.714779641599, + 5284.047898264182 + ], + [ + 2007.279490288154, + 5283.709782490988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555948", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2005.596738683835, + "min_y": 5283.709782490988, + "max_x": 2005.596738683835, + "max_y": 5284.717315930038, + "center": [ + 2005.596738683835, + 5284.2135492105135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.596738683835, + 5283.709782490988 + ], + [ + 2005.596738683835, + 5284.717315930038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555949", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2005.596738683835, + "min_y": 5283.709782490988, + "max_x": 2006.161449330389, + "max_y": 5284.047898264182, + "center": [ + 2005.879094007112, + 5283.878840377585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.161449330389, + 5284.047898264182 + ], + [ + 2005.596738683835, + 5283.709782490988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2006.1156492253115, + "min_y": 5283.89108394983, + "max_x": 2006.7605797466765, + "max_y": 5284.536014471195, + "center": [ + 2006.438114485994, + 5284.213549210513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2006.438114485994, + 5284.213549210513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2007.557837866403, + "min_y": 5283.710090099155, + "max_x": 2007.557837866403, + "max_y": 5284.717623538205, + "center": [ + 2007.557837866403, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2007.557837866403, + 5284.717623538205 + ], + [ + 2007.557837866403, + 5283.710090099155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2005.290227918805, + "min_y": 5283.710090099155, + "max_x": 2005.290227918805, + "max_y": 5284.717623538205, + "center": [ + 2005.290227918805, + 5284.21385681868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.290227918805, + 5284.717623538205 + ], + [ + 2005.290227918805, + 5283.710090099155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2006.714779641599, + "min_y": 5284.379200156841, + "max_x": 2007.279490288154, + "max_y": 5284.717315930038, + "center": [ + 2006.9971349648765, + 5284.54825804344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2007.279490288154, + 5284.717315930038 + ], + [ + 2006.714779641599, + 5284.379200156841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2005.596738683835, + "min_y": 5284.379200156845, + "max_x": 2006.161449330389, + "max_y": 5284.717315930038, + "center": [ + 2005.879094007112, + 5284.548258043442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2005.596738683835, + 5284.717315930038 + ], + [ + 2006.161449330389, + 5284.379200156845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55594F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5284.213856818681, + "max_x": 2005.290227918805, + "max_y": 5284.213856818681, + "center": [ + 1958.2319302104133, + 5284.213856818681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5284.213856818681 + ], + [ + 2005.290227918805, + 5284.213856818681 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555950", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5284.634638118209, + "max_x": 1935.4797548158026, + "max_y": 5285.754519468603, + "center": [ + 1929.7683599287961, + 5285.1945787934055 + ] + }, + "raw_value": "P-10136-25A-F2A-n", + "clean_value": "P-10136-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555951", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.795573222873, + "min_y": 5191.107998153088, + "max_x": 1990.803106661929, + "max_y": 5191.107998153088, + "center": [ + 1990.2993399424008, + 5191.107998153088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.803106661929, + 5191.107998153088 + ], + [ + 1989.795573222873, + 5191.107998153088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555952", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.464990888729, + "min_y": 5191.107998153088, + "max_x": 1990.803106661929, + "max_y": 5191.672708799639, + "center": [ + 1990.6340487753291, + 5191.390353476363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.464990888729, + 5191.672708799639 + ], + [ + 1990.803106661929, + 5191.107998153088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555953", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.795573222873, + "min_y": 5192.790749757404, + "max_x": 1990.803106661929, + "max_y": 5192.790749757404, + "center": [ + 1990.2993399424008, + 5192.790749757404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.803106661929, + 5192.790749757404 + ], + [ + 1989.795573222873, + 5192.790749757404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555954", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.464990888729, + "min_y": 5192.226039110853, + "max_x": 1990.803106661929, + "max_y": 5192.790749757404, + "center": [ + 1990.6340487753291, + 5192.508394434129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.464990888729, + 5192.226039110853 + ], + [ + 1990.803106661929, + 5192.790749757404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555955", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1989.9768746817185, + "min_y": 5191.626908694564, + "max_x": 1990.6218052030836, + "max_y": 5192.271839215929, + "center": [ + 1990.299339942401, + 5191.949373955246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.299339942401, + 5191.949373955246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555956", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.795573222873, + "min_y": 5191.107998153088, + "max_x": 1990.133688996069, + "max_y": 5191.672708799639, + "center": [ + 1989.964631109471, + 5191.390353476363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1989.795573222873, + 5191.107998153088 + ], + [ + 1990.133688996069, + 5191.672708799639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555957", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.795573222873, + "min_y": 5192.226039110853, + "max_x": 1990.133688996069, + "max_y": 5192.790749757404, + "center": [ + 1989.964631109471, + 5192.508394434129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1989.795573222873, + 5192.790749757404 + ], + [ + 1990.133688996069, + 5192.226039110853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555958", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1990.1600122642021, + "min_y": 5190.829650489847, + "max_x": 1990.4383600124297, + "max_y": 5191.107998238075, + "center": [ + 1990.299186138316, + 5190.968824363961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.299186138316, + 5190.968824363961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555959", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1990.1600122642021, + "min_y": 5192.790749757404, + "max_x": 1990.4383600124297, + "max_y": 5193.069097505632, + "center": [ + 1990.299186138316, + 5192.929923631518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.299186138316, + 5192.929923631518 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55595A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1990.299186138316, + "min_y": 5193.069097505631, + "max_x": 1990.299186138316, + "max_y": 5193.970544364018, + "center": [ + 1990.299186138316, + 5193.519820934825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.299186138316, + 5193.970544364018 + ], + [ + 1990.299186138316, + 5193.069097505631 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55595B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1990.299186138316, + "min_y": 5189.778846084886, + "max_x": 1990.299186138316, + "max_y": 5190.829650489846, + "center": [ + 1990.299186138316, + 5190.304248287366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.299186138316, + 5190.829650489846 + ], + [ + 1990.299186138316, + 5189.778846084886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55595C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1990.84795741778, + "min_y": 5189.1251344798, + "max_x": 1990.84795741778, + "max_y": 5189.868451595796, + "center": [ + 1990.84795741778, + 5189.496793037798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.84795741778, + 5189.868451595796 + ], + [ + 1990.84795741778, + 5189.1251344798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55595D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.75041485885, + "min_y": 5189.1251344798, + "max_x": 1989.75041485885, + "max_y": 5189.868451595796, + "center": [ + 1989.75041485885, + 5189.496793037798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1989.75041485885, + 5189.868451595796 + ], + [ + 1989.75041485885, + 5189.1251344798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55595E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1989.75041485885, + "min_y": 5189.1251344798, + "max_x": 1990.84795741778, + "max_y": 5189.1251344798, + "center": [ + 1990.299186138315, + 5189.1251344798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1990.84795741778, + 5189.1251344798 + ], + [ + 1989.75041485885, + 5189.1251344798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55595F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.861118508211, + "min_y": 5193.970544364018, + "max_x": 1992.911922913172, + "max_y": 5193.970544364018, + "center": [ + 1992.3865207106915, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1992.911922913172, + 5193.970544364018 + ], + [ + 1991.861118508211, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555960", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.117801392215, + "min_y": 5194.519315643483, + "max_x": 1991.861118508211, + "max_y": 5194.519315643483, + "center": [ + 1991.489459950213, + 5194.519315643483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.117801392215, + 5194.519315643483 + ], + [ + 1991.861118508211, + 5194.519315643483 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555961", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.117801392215, + "min_y": 5193.421773084552, + "max_x": 1991.861118508211, + "max_y": 5193.421773084552, + "center": [ + 1991.489459950213, + 5193.421773084552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.117801392215, + 5193.421773084552 + ], + [ + 1991.861118508211, + 5193.421773084552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555962", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1991.861118508211, + "min_y": 5193.421773084552, + "max_x": 1991.861118508211, + "max_y": 5194.519315643483, + "center": [ + 1991.861118508211, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.861118508211, + 5194.519315643483 + ], + [ + 1991.861118508211, + 5193.421773084552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555963", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1995.2864398327622, + "min_y": 5193.772667954051, + "max_x": 1995.6821926526957, + "max_y": 5194.1684207739845, + "center": [ + 1995.484316242729, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.484316242729, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555964", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1994.8906870128337, + "min_y": 5193.772667954053, + "max_x": 1995.2864398327645, + "max_y": 5194.168420773983, + "center": [ + 1995.088563422799, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.088563422799, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555965", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1994.4949341929016, + "min_y": 5193.772667954053, + "max_x": 1994.8906870128324, + "max_y": 5194.168420773983, + "center": [ + 1994.692810602867, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.692810602867, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555966", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1994.4949341928977, + "min_y": 5193.772667954051, + "max_x": 1994.8906870128321, + "max_y": 5194.1684207739845, + "center": [ + 1994.692810602865, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.692810602865, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555967", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1994.0991813729677, + "min_y": 5193.772667954053, + "max_x": 1994.4949341928984, + "max_y": 5194.168420773983, + "center": [ + 1994.297057782933, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.297057782933, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555968", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1993.7034285530326, + "min_y": 5193.77266795405, + "max_x": 1994.0991813729675, + "max_y": 5194.168420773985, + "center": [ + 1993.901304963, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.901304963, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555969", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1993.3076757331007, + "min_y": 5193.772667954053, + "max_x": 1993.7034285530315, + "max_y": 5194.168420773983, + "center": [ + 1993.505552143066, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.505552143066, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1992.9119229131716, + "min_y": 5193.772667954053, + "max_x": 1993.3076757331023, + "max_y": 5194.168420773983, + "center": [ + 1993.109799323137, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1993.109799323137, + 5193.970544364018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.682185623587, + "min_y": 5193.972212219168, + "max_x": 1996.732990028547, + "max_y": 5193.972212219168, + "center": [ + 1996.207587826067, + 5193.972212219168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.682185623587, + 5193.972212219168 + ], + [ + 1996.732990028547, + 5193.972212219168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.732990028547, + "min_y": 5193.423440939703, + "max_x": 1997.476307144543, + "max_y": 5193.423440939703, + "center": [ + 1997.104648586545, + 5193.423440939703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.476307144543, + 5193.423440939703 + ], + [ + 1996.732990028547, + 5193.423440939703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.732990028547, + "min_y": 5194.520983498634, + "max_x": 1997.476307144543, + "max_y": 5194.520983498634, + "center": [ + 1997.104648586545, + 5194.520983498634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.476307144543, + 5194.520983498634 + ], + [ + 1996.732990028547, + 5194.520983498634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1996.732990028547, + "min_y": 5193.423440939703, + "max_x": 1996.732990028547, + "max_y": 5194.520983498634, + "center": [ + 1996.732990028547, + 5193.972212219169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.732990028547, + 5193.423440939703 + ], + [ + 1996.732990028547, + 5194.520983498634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55596F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1991.382993786062, + "min_y": 5193.265799464996, + "max_x": 1992.726851406534, + "max_y": 5194.38568081539, + "center": [ + 1992.054922596298, + 5193.825740140193 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555970", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1996.671342818739, + "min_y": 5193.319574397434, + "max_x": 1998.0152004392112, + "max_y": 5194.439455747827, + "center": [ + 1997.3432716289751, + 5193.879515072631 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555971", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1998.648953389957, + "min_y": 5193.310760258356, + "max_x": 2002.680526251373, + "max_y": 5194.430641608749, + "center": [ + 2000.664739820665, + 5193.870700933552 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555972", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1988.761325248985, + "min_y": 5193.970544364018, + "max_x": 1991.489459950213, + "max_y": 5193.970544364018, + "center": [ + 1990.1253925995989, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1991.489459950213, + 5193.970544364018 + ], + [ + 1988.761325248985, + 5193.970544364018 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555973", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.482977670735, + "min_y": 5193.466470036326, + "max_x": 1988.482977670735, + "max_y": 5194.474003475376, + "center": [ + 1988.482977670735, + 5193.970236755851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.482977670735, + 5193.466470036326 + ], + [ + 1988.482977670735, + 5194.474003475376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555974", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1987.918267024181, + "min_y": 5193.466470036326, + "max_x": 1988.482977670735, + "max_y": 5193.80458580952, + "center": [ + 1988.200622347458, + 5193.635527922923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.918267024181, + 5193.80458580952 + ], + [ + 1988.482977670735, + 5193.466470036326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555975", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.800226066416, + "min_y": 5193.466470036326, + "max_x": 1986.800226066416, + "max_y": 5194.474003475376, + "center": [ + 1986.800226066416, + 5193.970236755851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.800226066416, + 5193.466470036326 + ], + [ + 1986.800226066416, + 5194.474003475376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555976", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.800226066416, + "min_y": 5193.466470036326, + "max_x": 1987.36493671297, + "max_y": 5193.80458580952, + "center": [ + 1987.082581389693, + 5193.635527922923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.36493671297, + 5193.80458580952 + ], + [ + 1986.800226066416, + 5193.466470036326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555977", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1987.3191366078934, + "min_y": 5193.647771495169, + "max_x": 1987.9640671292584, + "max_y": 5194.292702016533, + "center": [ + 1987.641601868576, + 5193.970236755851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1987.641601868576, + 5193.970236755851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555978", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1988.761325248985, + "min_y": 5193.466777644493, + "max_x": 1988.761325248985, + "max_y": 5194.474311083542, + "center": [ + 1988.761325248985, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.761325248985, + 5194.474311083542 + ], + [ + 1988.761325248985, + 5193.466777644493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555979", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.493715301386, + "min_y": 5193.466777644493, + "max_x": 1986.493715301386, + "max_y": 5194.474311083542, + "center": [ + 1986.493715301386, + 5193.970544364018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.493715301386, + 5194.474311083542 + ], + [ + 1986.493715301386, + 5193.466777644493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55597A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1987.918267024181, + "min_y": 5194.13588770218, + "max_x": 1988.482977670735, + "max_y": 5194.474003475376, + "center": [ + 1988.200622347458, + 5194.304945588778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1988.482977670735, + 5194.474003475376 + ], + [ + 1987.918267024181, + 5194.13588770218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55597B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1986.800226066416, + "min_y": 5194.135887702182, + "max_x": 1987.36493671297, + "max_y": 5194.474003475376, + "center": [ + 1987.082581389693, + 5194.304945588779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1986.800226066416, + 5194.474003475376 + ], + [ + 1987.36493671297, + 5194.135887702182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55597C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1985.802005222385, + "min_y": 5194.79590789679, + "max_x": 1993.8651509452177, + "max_y": 5195.915789247183, + "center": [ + 1989.8335780838015, + 5195.355848571986 + ] + }, + "raw_value": "HD10119BA-04", + "clean_value": "HD10119BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55597D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.57947531391, + "min_y": 5352.269330269167, + "max_x": 1765.329324488139, + "max_y": 5353.449871859373, + "center": [ + 1758.9543999010245, + 5352.8596010642705 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55597E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.822462686267, + "min_y": 5188.35147248671, + "max_x": 2004.3824033614637, + "max_y": 5189.284706945371, + "center": [ + 2004.1024330238654, + 5188.81808971604 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55597F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2008.180455269493, + "min_y": 5188.364563952062, + "max_x": 2013.77986202146, + "max_y": 5189.297798410723, + "center": [ + 2010.9801586454764, + 5188.831181181393 + ] + }, + "raw_value": "2024.04.04", + "clean_value": "2024.04.04", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555980", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2039.912444310675, + "min_y": 5188.397638741117, + "max_x": 2042.7121476866585, + "max_y": 5189.330873199778, + "center": [ + 2041.3122959986667, + 5188.864255970448 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555981", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2045.622317220807, + "min_y": 5188.397638741111, + "max_x": 2048.4220205967904, + "max_y": 5189.330873199772, + "center": [ + 2047.0221689087987, + 5188.864255970442 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555982", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2051.210087732588, + "min_y": 5188.409795101781, + "max_x": 2054.0097911085713, + "max_y": 5189.343029560442, + "center": [ + 2052.6099394205794, + 5188.876412331112 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555983", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.270794958414, + "min_y": 5188.465694216189, + "max_x": 2029.7503203599877, + "max_y": 5189.39892867485, + "center": [ + 2027.510557659201, + 5188.93231144552 + ] + }, + "raw_value": "AS BUILT", + "clean_value": "AS BUILT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555984", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.822462686258, + "min_y": 5191.753831595221, + "max_x": 2004.3824033614546, + "max_y": 5192.687066053882, + "center": [ + 2004.1024330238563, + 5192.220448824552 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555985", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.822462686249, + "min_y": 5195.169282169084, + "max_x": 2004.3824033614458, + "max_y": 5196.102516627745, + "center": [ + 2004.1024330238474, + 5195.635899398414 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555986", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.248708881225, + "min_y": 5195.200954301136, + "max_x": 2041.8086495564216, + "max_y": 5196.134188759797, + "center": [ + 2041.5286792188233, + 5195.667571530466 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555987", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.9193073953, + "min_y": 5195.200954301131, + "max_x": 2047.4792480704966, + "max_y": 5196.134188759792, + "center": [ + 2047.1992777328983, + 5195.667571530461 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555988", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2052.265820902739, + "min_y": 5195.200954301117, + "max_x": 2052.8257615779357, + "max_y": 5196.134188759778, + "center": [ + 2052.545791240337, + 5195.667571530448 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555989", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.82246268624, + "min_y": 5198.571641277593, + "max_x": 2004.3824033614367, + "max_y": 5199.504875736254, + "center": [ + 2004.1024330238383, + 5199.038258506924 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.248708881216, + "min_y": 5198.603313409646, + "max_x": 2041.8086495564128, + "max_y": 5199.536547868307, + "center": [ + 2041.5286792188144, + 5199.069930638976 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.919307395291, + "min_y": 5198.603313409641, + "max_x": 2047.4792480704878, + "max_y": 5199.536547868302, + "center": [ + 2047.1992777328894, + 5199.069930638971 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2052.26582090273, + "min_y": 5198.603313409628, + "max_x": 2052.8257615779266, + "max_y": 5199.536547868289, + "center": [ + 2052.545791240328, + 5199.069930638958 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.82246268623, + "min_y": 5201.987091851457, + "max_x": 2004.3824033614267, + "max_y": 5202.920326310118, + "center": [ + 2004.1024330238283, + 5202.453709080788 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.248708881206, + "min_y": 5202.005672518158, + "max_x": 2041.8086495564028, + "max_y": 5202.9389069768185, + "center": [ + 2041.5286792188044, + 5202.472289747488 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55598F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.919307395281, + "min_y": 5202.005672518152, + "max_x": 2047.4792480704778, + "max_y": 5202.938906976813, + "center": [ + 2047.1992777328794, + 5202.472289747482 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555990", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2052.265820902721, + "min_y": 5202.005672518137, + "max_x": 2052.8257615779175, + "max_y": 5202.938906976798, + "center": [ + 2052.545791240319, + 5202.472289747468 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555991", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2003.822462686222, + "min_y": 5205.377294599283, + "max_x": 2004.3824033614187, + "max_y": 5206.310529057944, + "center": [ + 2004.1024330238204, + 5205.843911828613 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555992", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.248708881198, + "min_y": 5205.408031626668, + "max_x": 2041.8086495563946, + "max_y": 5206.341266085329, + "center": [ + 2041.5286792187962, + 5205.874648855999 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555993", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.919307395274, + "min_y": 5205.408031626663, + "max_x": 2047.4792480704707, + "max_y": 5206.341266085324, + "center": [ + 2047.1992777328724, + 5205.874648855994 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555994", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2052.265820902713, + "min_y": 5205.40803162665, + "max_x": 2052.82576157791, + "max_y": 5206.341266085311, + "center": [ + 2052.5457912403117, + 5205.874648855981 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555995", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1708.314476645491, + "min_y": 5356.952729601244, + "max_x": 1713.167295830529, + "max_y": 5357.773975924865, + "center": [ + 1710.7408862380098, + 5357.3633527630545 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 2000\\P H 1800\\P L 200\\P LL 100", + "clean_value": "\\Fmonotxt.shx; .6; HH 2000 H 1800 L 200 LL 100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555999", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1738.811422789873, + "min_y": 5236.179385712459, + "max_x": 1743.664241974911, + "max_y": 5237.000632036081, + "center": [ + 1741.2378323823918, + 5236.59000887427 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 3000\\P H 2700\\P L 1650\\P LL 1250", + "clean_value": "\\Fmonotxt.shx; .6; HH 3000 H 2700 L 1650 LL 1250", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55599D", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1809.614452789027, + "min_y": 5264.210919643591, + "max_x": 1812.5228191832753, + "max_y": 5265.032165967213, + "center": [ + 1811.068635986151, + 5264.621542805402 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6;HH 102\\P H 90\\P L 85\\P LL 83", + "clean_value": "\\Fmonotxt.shx; .6;HH 102 H 90 L 85 LL 83", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A1", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1802.099453823103, + "min_y": 5310.990558833855, + "max_x": 1806.952273008141, + "max_y": 5311.811805157477, + "center": [ + 1804.525863415622, + 5311.401181995666 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 101\\P H 89\\P L 85\\P LL 83", + "clean_value": "\\Fmonotxt.shx; .6; HH 101 H 89 L 85 LL 83", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A5", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5266.076036869288, + "max_x": 1803.226176469738, + "max_y": 5266.076036869288, + "center": [ + 1798.6613937509273, + 5266.076036869288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1803.226176469738, + 5266.076036869288 + ], + [ + 1794.096611032117, + 5266.076036869288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A6", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5266.076036869288, + "max_x": 1794.096611032117, + "max_y": 5269.266343739245, + "center": [ + 1794.096611032117, + 5267.671190304267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.096611032117, + 5266.076036869288 + ], + [ + 1794.096611032117, + 5269.266343739245 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A7", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1778.879096498354, + "min_y": 5361.52500939783, + "max_x": 1794.096611032117, + "max_y": 5361.52500939783, + "center": [ + 1786.4878537652355, + 5361.52500939783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.879096498354, + 5361.52500939783 + ], + [ + 1794.096611032117, + 5361.52500939783 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A8", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5281.239630231311, + "max_x": 1794.096611032117, + "max_y": 5294.349833045603, + "center": [ + 1794.096611032117, + 5287.794731638457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.096611032117, + 5281.239630231311 + ], + [ + 1794.096611032117, + 5294.349833045603 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559A9", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5299.153704829654, + "max_x": 1794.096611032117, + "max_y": 5336.048147194544, + "center": [ + 1794.096611032117, + 5317.600926012099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.096611032117, + 5299.153704829654 + ], + [ + 1794.096611032117, + 5336.048147194544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559AA", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 1794.096611032117, + "min_y": 5337.243916145119, + "max_x": 1794.096611032117, + "max_y": 5361.52500939783, + "center": [ + 1794.096611032117, + 5349.384462771475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.096611032117, + 5337.243916145119 + ], + [ + 1794.096611032117, + 5361.52500939783 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559AB", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1802.082648793921, + "min_y": 5348.442821457616, + "max_x": 1806.935467978959, + "max_y": 5349.264067781238, + "center": [ + 1804.5090583864398, + 5348.853444619427 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 89\\P H 88\\P L 85\\P LL 83", + "clean_value": "\\Fmonotxt.shx; .6; HH 89 H 88 L 85 LL 83", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559AF", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1802.0994538232, + "min_y": 5375.183186741665, + "max_x": 1806.952273008238, + "max_y": 5376.004433065286, + "center": [ + 1804.525863415719, + 5375.593809903476 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 88\\P H 87\\P L 83\\P LL 82", + "clean_value": "\\Fmonotxt.shx; .6; HH 88 H 87 L 83 LL 82", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559B3", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1869.657243357782, + "min_y": 5384.512998394241, + "max_x": 1874.51006254282, + "max_y": 5385.4835622312485, + "center": [ + 1872.0836529503008, + 5384.998280312744 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 5000\\P H 4900\\P L 1200\\P LL 1000", + "clean_value": "\\Fmonotxt.shx; .6; HH 5000 H 4900 L 1200 LL 1000", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559B7", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1893.990313428268, + "min_y": 5387.927113685758, + "max_x": 1898.8431326133061, + "max_y": 5388.897677522766, + "center": [ + 1896.4167230207872, + 5388.412395604262 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 130\\P H 125\\P L 70\\P LL 50", + "clean_value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 70 LL 50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559BB", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1845.381751960575, + "min_y": 5283.284321168343, + "max_x": 1850.234571145613, + "max_y": 5284.254885005351, + "center": [ + 1847.8081615530941, + 5283.7696030868465 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 130\\P H 125\\P L 80\\P LL 60", + "clean_value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 80 LL 60", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559BF", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1863.247129041855, + "min_y": 5314.994876242114, + "max_x": 1868.099948226893, + "max_y": 5315.965440079121, + "center": [ + 1865.673538634374, + 5315.480158160617 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 45\\P H 35\\P L 2\\P LL 1", + "clean_value": "\\Fmonotxt.shx; .6; HH 45 H 35 L 2 LL 1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559C3", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1881.625345792286, + "min_y": 5314.046331892274, + "max_x": 1886.478164977324, + "max_y": 5315.016895729282, + "center": [ + 1884.051755384805, + 5314.531613810777 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 3000\\P H 2900\\P L 500\\P LL 350", + "clean_value": "\\Fmonotxt.shx; .6; HH 3000 H 2900 L 500 LL 350", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559C7", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1944.579778971395, + "min_y": 5351.582179437998, + "max_x": 1949.432598156433, + "max_y": 5352.552743275006, + "center": [ + 1947.0061885639138, + 5352.0674613565025 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 60\\P H 50\\P L 20\\P LL 5\\P", + "clean_value": "\\Fmonotxt.shx; .6; HH 60 H 50 L 20 LL 5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559CB", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1933.915393255282, + "min_y": 5333.520019008606, + "max_x": 1938.76821244032, + "max_y": 5334.490582845614, + "center": [ + 1936.3418028478009, + 5334.0053009271105 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 600\\P H 550\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 600 H 550 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559CF", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2058.274723126778, + "min_y": 5298.080713955839, + "max_x": 2062.1569784748085, + "max_y": 5298.857165025445, + "center": [ + 2060.2158508007933, + 5298.468939490642 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 64\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559D3", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1860.135030899625, + "min_y": 5228.350116698163, + "max_x": 1864.987850084663, + "max_y": 5229.320680535171, + "center": [ + 1862.561440492144, + 5228.835398616668 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 100\\P H 75\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 100 H 75 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559D7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2055.895075536883, + "min_y": 5348.641341123536, + "max_x": 2059.626174079099, + "max_y": 5352.372439665752, + "center": [ + 2057.760624807991, + 5350.506890394644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2057.760624807991, + 5350.506890394644 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559D8", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2055.895075536882, + "min_y": 5348.641341123538, + "max_x": 2059.6261740791, + "max_y": 5352.372439665752, + "center": [ + 2057.760624807991, + 5350.506890394645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2057.760624807991, + 5352.372439665752 + ], + [ + 2055.895075536882, + 5352.372439665749 + ], + [ + 2055.895075536888, + 5348.641341123538 + ], + [ + 2059.6261740791, + 5348.641341123538 + ], + [ + 2059.626174079099, + 5352.372439665752 + ], + [ + 2057.760624807991, + 5352.372439665752 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559D9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2055.895075536887, + "min_y": 5350.506890394644, + "max_x": 2059.626174079099, + "max_y": 5350.506890394644, + "center": [ + 2057.760624807993, + 5350.506890394644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2055.895075536887, + 5350.506890394644 + ], + [ + 2059.626174079099, + 5350.506890394644 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559DA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2057.269257524031, + "min_y": 5350.834250911063, + "max_x": 2058.276411617694, + "max_y": 5351.673545989115, + "center": [ + 2057.772834570863, + 5351.253898450089 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559DB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2056.739757360185, + "min_y": 5349.341075777204, + "max_x": 2058.754065547511, + "max_y": 5350.180370855257, + "center": [ + 2057.746911453848, + 5349.760723316231 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559DC", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2059.6261740791, + "min_y": 5348.641341123538, + "max_x": 2062.0525836716192, + "max_y": 5349.238611177081, + "center": [ + 2060.8393788753597, + 5348.93997615031 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 90\\P H 80\\P L 10\\P LL 5", + "clean_value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5559E0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2051.649562115913, + "min_y": 5368.468367872992, + "max_x": 2058.100078694179, + "max_y": 5369.185091937244, + "center": [ + 2054.874820405046, + 5368.826729905118 + ] + }, + "raw_value": "SARF-#8-PID-002", + "clean_value": "SARF-#8-PID-002", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2051.673255720611, + "min_y": 5373.474118461057, + "max_x": 2058.123772298877, + "max_y": 5374.190842525309, + "center": [ + 2054.898514009744, + 5373.832480493183 + ] + }, + "raw_value": "SARF-#6-PID-003", + "clean_value": "SARF-#6-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.441232551613, + "min_y": 5206.075977842504, + "max_x": 1796.056392251576, + "max_y": 5206.444299564192, + "center": [ + 1795.7488124015945, + 5206.260138703348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.056392251576, + 5206.075977842504 + ], + [ + 1795.441232551613, + 5206.444299564192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.223310161927, + "min_y": 5206.805198679749, + "max_x": 1794.838469861892, + "max_y": 5207.173520401436, + "center": [ + 1794.5308900119094, + 5206.989359540592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.838469861892, + 5206.805198679749 + ], + [ + 1794.223310161927, + 5207.173520401436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.056392251576, + "min_y": 5206.075977842504, + "max_x": 1796.056392251576, + "max_y": 5207.173520401436, + "center": [ + 1796.056392251576, + 5206.624749121969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.056392251576, + 5207.173520401436 + ], + [ + 1796.056392251576, + 5206.075977842504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.223310161927, + "min_y": 5206.075977842504, + "max_x": 1794.223310161927, + "max_y": 5207.173520401436, + "center": [ + 1794.223310161927, + 5206.624749121969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.223310161927, + 5207.173520401436 + ], + [ + 1794.223310161927, + 5206.075977842504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.441232551611, + "min_y": 5206.805198679749, + "max_x": 1796.056392251576, + "max_y": 5207.173520401436, + "center": [ + 1795.7488124015936, + 5206.989359540592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.056392251576, + 5207.173520401436 + ], + [ + 1795.441232551611, + 5206.805198679749 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.223310161927, + "min_y": 5206.075977842504, + "max_x": 1794.838469861895, + "max_y": 5206.444299564187, + "center": [ + 1794.530890011911, + 5206.260138703345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.838469861895, + 5206.444299564187 + ], + [ + 1794.223310161927, + 5206.075977842504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.485045975991, + "min_y": 5206.055686775715, + "max_x": 1796.485045975991, + "max_y": 5207.193811468221, + "center": [ + 1796.485045975991, + 5206.624749121967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.485045975991, + 5207.193811468221 + ], + [ + 1796.485045975991, + 5206.055686775715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559E9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1794.7885781535135, + "min_y": 5206.273476068732, + "max_x": 1795.4911242599926, + "max_y": 5206.97602217521, + "center": [ + 1795.139851206753, + 5206.624749121971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.139851206753, + 5206.624749121971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794568, + "min_y": 5208.723626397887, + "max_x": 1792.73856879457, + "max_y": 5227.948745506836, + "center": [ + 1792.738568794569, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.73856879457, + 5227.948745506836 + ], + [ + 1792.738568794568, + 5208.723626397887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5200.518678776345, + "max_x": 1792.738568794568, + "max_y": 5207.957699250301, + "center": [ + 1792.7385687945666, + 5204.238189013323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.738568794568, + 5207.957699250301 + ], + [ + 1792.738568794565, + 5200.518678776345 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.09616328679, + "min_y": 5208.723626397887, + "max_x": 1787.09616328679, + "max_y": 5227.948745506836, + "center": [ + 1787.09616328679, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.09616328679, + 5227.948745506836 + ], + [ + 1787.09616328679, + 5208.723626397887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.09616328679, + "min_y": 5200.479587383323, + "max_x": 1787.09616328679, + "max_y": 5207.957699250301, + "center": [ + 1787.09616328679, + 5204.218643316812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.09616328679, + 5207.957699250301 + ], + [ + 1787.09616328679, + 5200.479587383323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.902221216474, + "min_y": 5208.723626397887, + "max_x": 1787.902221216474, + "max_y": 5227.948745506836, + "center": [ + 1787.902221216474, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.902221216474, + 5208.723626397887 + ], + [ + 1787.902221216474, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.708279146155, + "min_y": 5208.723626397887, + "max_x": 1788.708279146155, + "max_y": 5227.948745506836, + "center": [ + 1788.708279146155, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.708279146155, + 5208.723626397887 + ], + [ + 1788.708279146155, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.514337075836, + "min_y": 5208.723626397887, + "max_x": 1789.514337075836, + "max_y": 5227.948745506836, + "center": [ + 1789.514337075836, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.514337075836, + 5208.723626397887 + ], + [ + 1789.514337075836, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.320395005522, + "min_y": 5208.723626397887, + "max_x": 1790.320395005522, + "max_y": 5227.948745506836, + "center": [ + 1790.320395005522, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.320395005522, + 5208.723626397887 + ], + [ + 1790.320395005522, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1791.126452935203, + "min_y": 5208.723626397887, + "max_x": 1791.126452935203, + "max_y": 5227.948745506836, + "center": [ + 1791.126452935203, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1791.126452935203, + 5208.723626397887 + ], + [ + 1791.126452935203, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1791.932510864884, + "min_y": 5208.723626397887, + "max_x": 1791.932510864884, + "max_y": 5227.948745506836, + "center": [ + 1791.932510864884, + 5218.336185952361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1791.932510864884, + 5208.723626397887 + ], + [ + 1791.932510864884, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.166430502856, + "min_y": 5209.930041311313, + "max_x": 1787.09616328679, + "max_y": 5209.930041311313, + "center": [ + 1786.131296894823, + 5209.930041311313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.09616328679, + 5209.930041311313 + ], + [ + 1785.166430502856, + 5209.930041311313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.930794098784, + "min_y": 5197.805094323884, + "max_x": 1789.930794098784, + "max_y": 5199.249757365773, + "center": [ + 1789.930794098784, + 5198.527425844828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.930794098784, + 5199.249757365773 + ], + [ + 1789.930794098784, + 5197.805094323884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1789.5687703040255, + "min_y": 5196.210683378795, + "max_x": 1790.2713164105046, + "max_y": 5196.913229485273, + "center": [ + 1789.920043357265, + 5196.561956432034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.920043357265, + 5196.561956432034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5197.805094323884, + "max_x": 1790.468814636729, + "max_y": 5197.805094323884, + "center": [ + 1789.920043357264, + 5197.805094323884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.371272077799, + 5197.805094323884 + ], + [ + 1790.468814636729, + 5197.805094323884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.830056471309, + "min_y": 5207.957699250301, + "max_x": 1794.01003024324, + "max_y": 5207.957699250301, + "center": [ + 1789.9200433572746, + 5207.957699250301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.01003024324, + 5207.957699250301 + ], + [ + 1785.830056471309, + 5207.957699250301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.830056471306, + "min_y": 5208.723626397887, + "max_x": 1794.010030243237, + "max_y": 5208.723626397887, + "center": [ + 1789.9200433572714, + 5208.723626397887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.010030243237, + 5208.723626397887 + ], + [ + 1785.830056471306, + 5208.723626397887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.166430502856, + "min_y": 5209.381270031847, + "max_x": 1785.166430502856, + "max_y": 5210.478812590776, + "center": [ + 1785.166430502856, + 5209.9300413113115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.166430502856, + 5209.381270031847 + ], + [ + 1785.166430502856, + 5210.478812590776 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.166430502856, + "min_y": 5209.381270031847, + "max_x": 1785.166430502856, + "max_y": 5210.478812590776, + "center": [ + 1785.166430502856, + 5209.9300413113115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1785.166430502856, + 5209.381270031847 + ], + [ + 1785.166430502856, + 5210.478812590776 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.743923427758, + "min_y": 5226.295760538317, + "max_x": 1794.673656211696, + "max_y": 5226.295760538317, + "center": [ + 1793.708789819727, + 5226.295760538317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.743923427758, + 5226.295760538317 + ], + [ + 1794.673656211696, + 5226.295760538317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.673656211696, + "min_y": 5225.746989258851, + "max_x": 1794.673656211696, + "max_y": 5226.844531817783, + "center": [ + 1794.673656211696, + 5226.295760538316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.673656211696, + 5225.746989258851 + ], + [ + 1794.673656211696, + 5226.844531817783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5559FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5206.624749121971, + "max_x": 1793.896713314908, + "max_y": 5206.624749121971, + "center": [ + 1793.3176410547367, + 5206.624749121971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.738568794565, + 5206.624749121971 + ], + [ + 1793.896713314908, + 5206.624749121971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.830056471309, + "min_y": 5227.948745506836, + "max_x": 1794.01003024324, + "max_y": 5227.948745506836, + "center": [ + 1789.9200433572746, + 5227.948745506836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.01003024324, + 5227.948745506836 + ], + [ + 1785.830056471309, + 5227.948745506836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1785.830056471306, + "min_y": 5228.714672654416, + "max_x": 1794.010030243237, + "max_y": 5228.714672654416, + "center": [ + 1789.9200433572714, + 5228.714672654416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.010030243237, + 5228.714672654416 + ], + [ + 1785.830056471306, + 5228.714672654416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.000253058717, + "min_y": 5225.746989258851, + "max_x": 1795.000253058717, + "max_y": 5226.844531817783, + "center": [ + 1795.000253058717, + 5226.295760538316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.000253058717, + 5225.746989258851 + ], + [ + 1795.000253058717, + 5226.844531817783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.673656211696, + "min_y": 5225.746989258851, + "max_x": 1794.673656211696, + "max_y": 5226.844531817783, + "center": [ + 1794.673656211696, + 5226.295760538316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.673656211696, + 5225.746989258851 + ], + [ + 1794.673656211696, + 5226.844531817783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5195.645415387203, + "max_x": 1789.739593799484, + "max_y": 5196.260575087171, + "center": [ + 1789.5554329386414, + 5195.952995237187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.739593799484, + 5196.260575087171 + ], + [ + 1789.371272077799, + 5195.645415387203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5195.645415387203, + "max_x": 1790.468814636729, + "max_y": 5195.645415387203, + "center": [ + 1789.920043357264, + 5195.645415387203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.371272077799, + 5195.645415387203 + ], + [ + 1790.468814636729, + 5195.645415387203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.100492915046, + "min_y": 5195.645415387203, + "max_x": 1790.468814636729, + "max_y": 5196.260575087171, + "center": [ + 1790.2846537758874, + 5195.952995237187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.468814636729, + 5195.645415387203 + ], + [ + 1790.100492915046, + 5196.260575087171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5196.863337776893, + "max_x": 1789.739593799487, + "max_y": 5197.47849747686, + "center": [ + 1789.555432938643, + 5197.170917626876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.739593799487, + 5196.863337776893 + ], + [ + 1789.371272077799, + 5197.47849747686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.371272077799, + "min_y": 5197.47849747686, + "max_x": 1790.468814636729, + "max_y": 5197.47849747686, + "center": [ + 1789.920043357264, + 5197.47849747686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1789.371272077799, + 5197.47849747686 + ], + [ + 1790.468814636729, + 5197.47849747686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1790.100492915043, + "min_y": 5196.863337776893, + "max_x": 1790.468814636729, + "max_y": 5197.47849747686, + "center": [ + 1790.284653775886, + 5197.170917626876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.468814636729, + 5197.47849747686 + ], + [ + 1790.100492915043, + 5196.863337776893 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5206.075977842504, + "max_x": 1793.896713314908, + "max_y": 5207.173520401433, + "center": [ + 1793.896713314908, + 5206.624749121968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5206.075977842504 + ], + [ + 1793.896713314908, + 5207.173520401433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5200.564980098719, + "max_x": 1793.896713314908, + "max_y": 5200.564980098719, + "center": [ + 1793.3176410547367, + 5200.564980098719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1792.738568794565, + 5200.564980098719 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5228.714672654416, + "max_x": 1792.738568794568, + "max_y": 5233.488000161836, + "center": [ + 1792.7385687945666, + 5231.101336408126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.738568794568, + 5228.714672654416 + ], + [ + 1792.738568794565, + 5233.488000161836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1787.09616328679, + "min_y": 5228.714672654416, + "max_x": 1787.09616328679, + "max_y": 5233.527091554857, + "center": [ + 1787.09616328679, + 5231.120882104637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1787.09616328679, + 5228.714672654416 + ], + [ + 1787.09616328679, + 5233.527091554857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794565, + "min_y": 5231.331350199765, + "max_x": 1794.668301578502, + "max_y": 5231.331350199765, + "center": [ + 1793.7034351865336, + 5231.331350199765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1792.738568794565, + 5231.331350199765 + ], + [ + 1794.668301578502, + 5231.331350199765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.668301578502, + "min_y": 5230.782578920297, + "max_x": 1794.668301578502, + "max_y": 5231.880121479231, + "center": [ + 1794.668301578502, + 5231.331350199764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.668301578502, + 5230.782578920297 + ], + [ + 1794.668301578502, + 5231.880121479231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.000253058717, + "min_y": 5225.746989258849, + "max_x": 1795.000253058717, + "max_y": 5226.844531817783, + "center": [ + 1795.000253058717, + 5226.295760538316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.000253058717, + 5225.746989258849 + ], + [ + 1795.000253058717, + 5226.844531817783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.668301578502, + "min_y": 5230.782578920297, + "max_x": 1794.668301578502, + "max_y": 5231.880121479231, + "center": [ + 1794.668301578502, + 5231.331350199764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.668301578502, + 5230.782578920297 + ], + [ + 1794.668301578502, + 5231.880121479231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.760403997811, + "min_y": 5209.381270031847, + "max_x": 1784.760403997811, + "max_y": 5210.478812590776, + "center": [ + 1784.760403997811, + 5209.9300413113115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.760403997811, + 5209.381270031847 + ], + [ + 1784.760403997811, + 5210.478812590776 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A14", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1790.945519021607, + "min_y": 5195.869988513212, + "max_x": 1792.9613054523152, + "max_y": 5196.989869863605, + "center": [ + 1791.953412236961, + 5196.429929188409 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1793.719134290007, + "min_y": 5213.163731659875, + "max_x": 1793.719134290007, + "max_y": 5219.000656534701, + "center": [ + 1793.719134290007, + 5216.082194097288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5219.000656534701 + ], + [ + 1793.719134290007, + 5213.163731659875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5217.529808291543, + "max_x": 1793.719134290007, + "max_y": 5218.510373786982, + "center": [ + 1793.2288515422879, + 5218.020091039263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5217.529808291543 + ], + [ + 1792.738568794569, + 5218.510373786982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5216.83644378032, + "max_x": 1793.719134290007, + "max_y": 5217.817009275758, + "center": [ + 1793.2288515422879, + 5217.326726528039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5216.83644378032 + ], + [ + 1792.738568794569, + 5217.817009275758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5216.143079269097, + "max_x": 1793.719134290007, + "max_y": 5217.123644764537, + "center": [ + 1793.2288515422879, + 5216.633362016817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5216.143079269097 + ], + [ + 1792.738568794569, + 5217.123644764537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5215.449714757875, + "max_x": 1793.719134290007, + "max_y": 5216.430280253314, + "center": [ + 1793.2288515422879, + 5215.939997505595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5215.449714757875 + ], + [ + 1792.738568794569, + 5216.430280253314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5214.756350246651, + "max_x": 1793.719134290007, + "max_y": 5215.736915742091, + "center": [ + 1793.2288515422879, + 5215.246632994371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5214.756350246651 + ], + [ + 1792.738568794569, + 5215.736915742091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1792.738568794569, + "min_y": 5214.062985735429, + "max_x": 1793.719134290007, + "max_y": 5215.043551230869, + "center": [ + 1793.2288515422879, + 5214.553268483149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.719134290007, + 5214.062985735429 + ], + [ + 1792.738568794569, + 5215.043551230869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A1C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1795.819821830956, + "min_y": 5213.586669310251, + "max_x": 1799.403442152215, + "max_y": 5215.079844444109, + "center": [ + 1797.6116319915855, + 5214.33325687718 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A1D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1794.412831390595, + "min_y": 5207.478694293304, + "max_x": 1801.8040483031916, + "max_y": 5208.598575643698, + "center": [ + 1798.1084398468934, + 5208.038634968501 + ] + }, + "raw_value": "E10115BA-01", + "clean_value": "E10115BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1789.397649634957, + "min_y": 5195.31881854019, + "max_x": 1790.442437079569, + "max_y": 5195.31881854019, + "center": [ + 1789.9200433572628, + 5195.31881854019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1790.442437079569, + 5195.31881854019 + ], + [ + 1789.397649634957, + 5195.31881854019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.752268197857, + "min_y": 5251.124404845335, + "max_x": 1830.752268197857, + "max_y": 5251.963760588095, + "center": [ + 1830.752268197857, + 5251.544082716715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.752268197857, + 5251.124404845335 + ], + [ + 1830.752268197857, + 5251.963760588095 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A20", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1782.441122880981, + "min_y": 5248.396366893504, + "max_x": 1784.028953207774, + "max_y": 5248.396366893504, + "center": [ + 1783.2350380443777, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5248.396366893504 + ], + [ + 1782.441122880981, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.701905375508, + "min_y": 5247.774718363963, + "max_x": 1778.701907854546, + "max_y": 5249.018015423045, + "center": [ + 1778.701906615027, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.701907854546, + 5249.018015423045 + ], + [ + 1778.701905375508, + 5247.774718363963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.762784162104, + "min_y": 5247.774724224338, + "max_x": 1775.762786641145, + "max_y": 5249.01802128344, + "center": [ + 1775.7627854016246, + 5248.3963727538885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.762786641145, + 5249.01802128344 + ], + [ + 1775.762784162104, + 5247.774724224338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.233523576594, + "min_y": 5247.489569246588, + "max_x": 1778.233525967241, + "max_y": 5249.287804315925, + "center": [ + 1778.2335247719175, + 5248.388686781256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.233525967241, + 5249.287804315925 + ], + [ + 1778.233523576594, + 5247.489569246588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167461, + "min_y": 5247.489573239372, + "max_x": 1776.231051578519, + "max_y": 5249.303162106009, + "center": [ + 1776.23105037299, + 5248.396367672691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231051578519, + 5249.303162106009 + ], + [ + 1776.231049167461, + 5247.489573239372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5247.489569246588, + "max_x": 1778.233523576594, + "max_y": 5247.489573239372, + "center": [ + 1777.2322863720296, + 5247.48957124298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231049167465, + 5247.489573239372 + ], + [ + 1778.233523576594, + 5247.489569246588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5249.303162105997, + "max_x": 1778.233523576594, + "max_y": 5249.303166098781, + "center": [ + 1777.2322863720296, + 5249.303164102389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231049167465, + 5249.303162105997 + ], + [ + 1778.233523576594, + 5249.303166098781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A27", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1768.518466609257, + "min_y": 5222.763167853447, + "max_x": 1768.518466609257, + "max_y": 5249.128682192442, + "center": [ + 1768.518466609257, + 5235.945925022945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.518466609257, + 5249.128682192442 + ], + [ + 1768.518466609257, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A28", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1781.054382184225, + "min_y": 5241.635199480684, + "max_x": 1781.054382184225, + "max_y": 5242.73530755514, + "center": [ + 1781.054382184225, + 5242.185253517911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.054382184225, + 5241.635199480684 + ], + [ + 1781.054382184225, + 5242.73530755514 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5241.635199480684, + "max_x": 1781.600516092969, + "max_y": 5241.635199480684, + "center": [ + 1781.051744813504, + 5241.635199480684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.600516092969, + 5241.635199480684 + ], + [ + 1780.502973534039, + 5241.635199480684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5239.21709185512, + "max_x": 1781.600516092969, + "max_y": 5239.21709185512, + "center": [ + 1781.051744813504, + 5239.21709185512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.502973534039, + 5239.21709185512 + ], + [ + 1781.600516092969, + 5239.21709185512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1780.6978343895425, + "min_y": 5240.113361549833, + "max_x": 1781.4003804960216, + "max_y": 5240.8159076563115, + "center": [ + 1781.049107442782, + 5240.464634603072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.049107442782, + 5240.464634603072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5239.54368870214, + "max_x": 1780.872555654132, + "max_y": 5240.160953481068, + "center": [ + 1780.6877645940854, + 5239.852321091604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.872555654132, + 5240.160953481068 + ], + [ + 1780.502973534039, + 5239.54368870214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5239.54368870214, + "max_x": 1781.600516092969, + "max_y": 5239.54368870214, + "center": [ + 1781.051744813504, + 5239.54368870214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.502973534039, + 5239.54368870214 + ], + [ + 1781.600516092969, + 5239.54368870214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.22955700056, + "min_y": 5239.54368870214, + "max_x": 1781.600516092969, + "max_y": 5240.163253258207, + "center": [ + 1781.4150365467644, + 5239.853470980173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.600516092969, + 5239.54368870214 + ], + [ + 1781.22955700056, + 5240.163253258207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.502973534039, + "min_y": 5241.376770791786, + "max_x": 1781.600516092969, + "max_y": 5241.376770791786, + "center": [ + 1781.051744813504, + 5241.376770791786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.502973534039, + 5241.376770791786 + ], + [ + 1781.600516092969, + 5241.376770791786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.232194371283, + "min_y": 5240.761611091823, + "max_x": 1781.600516092969, + "max_y": 5241.376770791786, + "center": [ + 1781.416355232126, + 5241.069190941805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.600516092969, + 5241.376770791786 + ], + [ + 1781.232194371283, + 5240.761611091823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.497698792592, + "min_y": 5240.761611091823, + "max_x": 1780.866020514277, + "max_y": 5241.376770791786, + "center": [ + 1780.6818596534345, + 5241.069190941805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.497698792592, + 5241.376770791786 + ], + [ + 1780.866020514277, + 5240.761611091823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A32", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1783.256917219862, + "min_y": 5242.735307555132, + "max_x": 1783.256917219862, + "max_y": 5248.396366893504, + "center": [ + 1783.256917219862, + 5245.565837224318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.256917219862, + 5242.735307555132 + ], + [ + 1783.256917219862, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A33", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1769.637859762922, + "min_y": 5242.735307555136, + "max_x": 1769.637859762922, + "max_y": 5248.396366893504, + "center": [ + 1769.637859762922, + 5245.56583722432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.637859762922, + 5248.396366893504 + ], + [ + 1769.637859762922, + 5242.735307555136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A34", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5248.396366893504, + "max_x": 1775.762785401613, + "max_y": 5248.396366893504, + "center": [ + 1774.3550324150724, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.762785401613, + 5248.396366893504 + ], + [ + 1772.947279428532, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A35", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1776.73520262495, + "min_y": 5247.843679093211, + "max_x": 1777.4058478338263, + "max_y": 5248.961421108005, + "center": [ + 1777.0705252293883, + 5248.402550100608 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5247.847595614039, + "max_x": 1772.947279428532, + "max_y": 5248.945138172969, + "center": [ + 1772.947279428532, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.947279428532, + 5247.847595614039 + ], + [ + 1772.947279428532, + 5248.945138172969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.52917180297, + "min_y": 5247.847595614039, + "max_x": 1770.52917180297, + "max_y": 5248.945138172969, + "center": [ + 1770.52917180297, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.52917180297, + 5248.945138172969 + ], + [ + 1770.52917180297, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A38", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1771.4254414976815, + "min_y": 5248.047731210987, + "max_x": 1772.1279876041606, + "max_y": 5248.750277317466, + "center": [ + 1771.776714550921, + 5248.399004264226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1771.776714550921, + 5248.399004264226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5248.575556052876, + "max_x": 1771.473033428916, + "max_y": 5248.945138172969, + "center": [ + 1771.1644010394525, + 5248.760347112922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1771.473033428916, + 5248.575556052876 + ], + [ + 1770.855768649989, + 5248.945138172969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5247.847595614039, + "max_x": 1770.855768649989, + "max_y": 5248.945138172969, + "center": [ + 1770.855768649989, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.855768649989, + 5248.945138172969 + ], + [ + 1770.855768649989, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5247.847595614039, + "max_x": 1771.475333206055, + "max_y": 5248.218554706448, + "center": [ + 1771.165550928022, + 5248.033075160243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.855768649989, + 5247.847595614039 + ], + [ + 1771.475333206055, + 5248.218554706448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.688850739635, + "min_y": 5247.847595614039, + "max_x": 1772.688850739635, + "max_y": 5248.945138172969, + "center": [ + 1772.688850739635, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5248.945138172969 + ], + [ + 1772.688850739635, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.073691039673, + "min_y": 5247.847595614039, + "max_x": 1772.688850739635, + "max_y": 5248.215917335723, + "center": [ + 1772.381270889654, + 5248.031756474881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5247.847595614039 + ], + [ + 1772.073691039673, + 5248.215917335723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.073691039673, + "min_y": 5248.58209119273, + "max_x": 1772.688850739635, + "max_y": 5248.950412914417, + "center": [ + 1772.381270889654, + 5248.766252053574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5248.950412914417 + ], + [ + 1772.073691039673, + 5248.58209119273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1782.441122880981, + "min_y": 5247.847595614039, + "max_x": 1782.441122880981, + "max_y": 5248.945138172969, + "center": [ + 1782.441122880981, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.441122880981, + 5247.847595614039 + ], + [ + 1782.441122880981, + 5248.945138172969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.023015255419, + "min_y": 5247.847595614039, + "max_x": 1780.023015255419, + "max_y": 5248.945138172969, + "center": [ + 1780.023015255419, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.023015255419, + 5248.945138172969 + ], + [ + 1780.023015255419, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A41", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1780.9192849501305, + "min_y": 5248.047731210987, + "max_x": 1781.6218310566096, + "max_y": 5248.750277317466, + "center": [ + 1781.27055800337, + 5248.399004264226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.27055800337, + 5248.399004264226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5248.575556052876, + "max_x": 1780.966876881366, + "max_y": 5248.945138172969, + "center": [ + 1780.658244491902, + 5248.760347112922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.966876881366, + 5248.575556052876 + ], + [ + 1780.349612102438, + 5248.945138172969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5247.847595614039, + "max_x": 1780.349612102438, + "max_y": 5248.945138172969, + "center": [ + 1780.349612102438, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.349612102438, + 5248.945138172969 + ], + [ + 1780.349612102438, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5247.847595614039, + "max_x": 1780.969176658504, + "max_y": 5248.218554706448, + "center": [ + 1780.659394380471, + 5248.033075160243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.349612102438, + 5247.847595614039 + ], + [ + 1780.969176658504, + 5248.218554706448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1782.182694192085, + "min_y": 5247.847595614039, + "max_x": 1782.182694192085, + "max_y": 5248.945138172969, + "center": [ + 1782.182694192085, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5248.945138172969 + ], + [ + 1782.182694192085, + 5247.847595614039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.567534492122, + "min_y": 5247.847595614039, + "max_x": 1782.182694192085, + "max_y": 5248.215917335723, + "center": [ + 1781.8751143421034, + 5248.031756474881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5247.847595614039 + ], + [ + 1781.567534492122, + 5248.215917335723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.567534492122, + "min_y": 5248.58209119273, + "max_x": 1782.182694192085, + "max_y": 5248.950412914417, + "center": [ + 1781.8751143421034, + 5248.766252053574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5248.950412914417 + ], + [ + 1781.567534492122, + 5248.58209119273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.231238570021, + "min_y": 5242.212913832828, + "max_x": 1778.23124065325, + "max_y": 5243.257701277439, + "center": [ + 1778.2312396116356, + 5242.735307555134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.23124065325, + 5243.257701277439 + ], + [ + 1778.231238570021, + 5242.212913832828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.761388810858, + "min_y": 5242.212918757519, + "max_x": 1775.761390894086, + "max_y": 5243.257706202141, + "center": [ + 1775.761389852472, + 5242.73531247983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.761390894086, + 5243.257706202141 + ], + [ + 1775.761388810858, + 5242.212918757519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.154890824309, + "min_y": 5242.900961515566, + "max_x": 1776.71960079668, + "max_y": 5243.239078414752, + "center": [ + 1776.4372458104945, + 5243.070019965159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.154890824309, + 5243.239078414752 + ], + [ + 1776.71960079668, + 5242.900961515566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.272930447302, + "min_y": 5242.231541620419, + "max_x": 1777.837640419673, + "max_y": 5242.569658519599, + "center": [ + 1777.5552854334876, + 5242.400600070009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.272930447302, + 5242.569658519599 + ], + [ + 1777.837640419673, + 5242.231541620419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.837640419673, + "min_y": 5242.231541620419, + "max_x": 1777.83764242862, + "max_y": 5243.239075059465, + "center": [ + 1777.8376414241466, + 5242.735308339942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.83764242862, + 5243.239075059465 + ], + [ + 1777.837640419673, + 5242.231541620419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.15488881536, + "min_y": 5242.2315449757, + "max_x": 1776.154890824309, + "max_y": 5243.239078414752, + "center": [ + 1776.1548898198344, + 5242.735311695225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.154890824309, + 5243.239078414752 + ], + [ + 1776.15488881536, + 5242.2315449757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.15488881536, + "min_y": 5242.2315449757, + "max_x": 1776.719600136089, + "max_y": 5242.569659622904, + "center": [ + 1776.4372444757246, + 5242.400602299302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.15488881536, + 5242.2315449757 + ], + [ + 1776.719600136089, + 5242.569659622904 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.272931107894, + "min_y": 5242.900960412267, + "max_x": 1777.83764242862, + "max_y": 5243.239075059465, + "center": [ + 1777.555286768257, + 5243.070017735866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.272931107894, + 5242.900960412267 + ], + [ + 1777.83764242862, + 5243.239075059465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A50", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1776.6738003613075, + "min_y": 5242.4128447569, + "max_x": 1777.3187308826725, + "max_y": 5243.057775278265, + "center": [ + 1776.99626562199, + 5242.735310017582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.99626562199, + 5242.735310017582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A51", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1774.355032415073, + "min_y": 5247.296258819048, + "max_x": 1774.355032415073, + "max_y": 5248.396366893504, + "center": [ + 1774.355032415073, + 5247.846312856276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.355032415073, + 5247.296258819048 + ], + [ + 1774.355032415073, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A52", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1778.231239611636, + "min_y": 5242.735307555132, + "max_x": 1783.256917219862, + "max_y": 5242.735307555133, + "center": [ + 1780.744078415749, + 5242.735307555133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.256917219862, + 5242.735307555132 + ], + [ + 1778.231239611636, + 5242.735307555133 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5247.296258819048, + "max_x": 1774.901166323817, + "max_y": 5247.296258819048, + "center": [ + 1774.352395044352, + 5247.296258819048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5247.296258819048 + ], + [ + 1773.803623764887, + 5247.296258819048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5244.878151193486, + "max_x": 1774.901166323817, + "max_y": 5244.878151193486, + "center": [ + 1774.352395044352, + 5244.878151193486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5244.878151193486 + ], + [ + 1774.901166323817, + 5244.878151193486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A55", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1773.9984846203904, + "min_y": 5245.774420888197, + "max_x": 1774.7010307268695, + "max_y": 5246.476966994675, + "center": [ + 1774.34975767363, + 5246.125693941436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.34975767363, + 5246.125693941436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5245.204748040504, + "max_x": 1774.17320588498, + "max_y": 5245.822012819433, + "center": [ + 1773.9884148249334, + 5245.5133804299685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.17320588498, + 5245.822012819433 + ], + [ + 1773.803623764887, + 5245.204748040504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5245.204748040504, + "max_x": 1774.901166323817, + "max_y": 5245.204748040504, + "center": [ + 1774.352395044352, + 5245.204748040504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5245.204748040504 + ], + [ + 1774.901166323817, + 5245.204748040504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.530207231408, + "min_y": 5245.204748040504, + "max_x": 1774.901166323817, + "max_y": 5245.824312596571, + "center": [ + 1774.7156867776125, + 5245.514530318537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5245.204748040504 + ], + [ + 1774.530207231408, + 5245.824312596571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5247.037830130151, + "max_x": 1774.901166323817, + "max_y": 5247.037830130151, + "center": [ + 1774.352395044352, + 5247.037830130151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5247.037830130151 + ], + [ + 1774.901166323817, + 5247.037830130151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.532844602132, + "min_y": 5246.422670430188, + "max_x": 1774.901166323817, + "max_y": 5247.037830130151, + "center": [ + 1774.7170054629746, + 5246.7302502801695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5247.037830130151 + ], + [ + 1774.532844602132, + 5246.422670430188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.79834902344, + "min_y": 5246.422670430188, + "max_x": 1774.166670745126, + "max_y": 5247.037830130151, + "center": [ + 1773.982509884283, + 5246.7302502801695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.79834902344, + 5247.037830130151 + ], + [ + 1774.166670745126, + 5246.422670430188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A5C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1776.103433341834, + "min_y": 5245.833459729389, + "max_x": 1778.1192197725422, + "max_y": 5246.953341079782, + "center": [ + 1777.111326557188, + 5246.393400404586 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A5D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1778.701909723279, + "min_y": 5248.396366893504, + "max_x": 1780.023015255419, + "max_y": 5248.396366893504, + "center": [ + 1779.3624624893491, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.023015255419, + 5248.396366893504 + ], + [ + 1778.701909723279, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A5E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1768.518466609257, + "min_y": 5248.396366893504, + "max_x": 1770.52917180297, + "max_y": 5248.396366893504, + "center": [ + 1769.5238192061136, + 5248.396366893504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.52917180297, + 5248.396366893504 + ], + [ + 1768.518466609257, + 5248.396366893504 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A5F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1774.976703723026, + "min_y": 5242.735307555134, + "max_x": 1775.761389852461, + "max_y": 5242.735307555134, + "center": [ + 1775.3690467877436, + 5242.735307555134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.761389852461, + 5242.735307555134 + ], + [ + 1774.976703723026, + 5242.735307555134 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1776.410788558105, + "min_y": 5241.057551016926, + "max_x": 1777.3800834948838, + "max_y": 5241.865296797575, + "center": [ + 1776.8954360264943, + 5241.461423907251 + ] + }, + "raw_value": "NC", + "clean_value": "NC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A61", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1775.711097188003, + "min_y": 5249.827070921057, + "max_x": 1781.7584564801273, + "max_y": 5250.946952271451, + "center": [ + 1778.734776834065, + 5250.3870115962545 + ] + }, + "raw_value": "TR-10115A", + "clean_value": "TR-10115A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.050076958873, + "min_y": 5234.796399255004, + "max_x": 1781.050076958873, + "max_y": 5235.847203659965, + "center": [ + 1781.050076958873, + 5235.321801457485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958873, + 5235.847203659965 + ], + [ + 1781.050076958873, + 5234.796399255004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.501305679409, + "min_y": 5234.142687649918, + "max_x": 1780.501305679409, + "max_y": 5234.886004765915, + "center": [ + 1780.501305679409, + 5234.514346207916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.501305679409, + 5234.886004765915 + ], + [ + 1780.501305679409, + 5234.142687649918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.598848238339, + "min_y": 5234.142687649918, + "max_x": 1781.598848238339, + "max_y": 5234.886004765915, + "center": [ + 1781.598848238339, + 5234.514346207916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.598848238339, + 5234.886004765915 + ], + [ + 1781.598848238339, + 5234.142687649918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.501305679409, + "min_y": 5234.142687649918, + "max_x": 1781.598848238339, + "max_y": 5234.142687649918, + "center": [ + 1781.050076958874, + 5234.142687649918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.501305679409, + 5234.142687649918 + ], + [ + 1781.598848238339, + 5234.142687649918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.529351091198, + "min_y": 5238.917279112751, + "max_x": 1781.57413853581, + "max_y": 5238.917279112751, + "center": [ + 1781.051744813504, + 5238.917279112751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.57413853581, + 5238.917279112751 + ], + [ + 1780.529351091198, + 5238.917279112751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.529351091198, + "min_y": 5239.21709185512, + "max_x": 1781.57413853581, + "max_y": 5239.21709185512, + "center": [ + 1781.051744813504, + 5239.21709185512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.57413853581, + 5239.21709185512 + ], + [ + 1780.529351091198, + 5239.21709185512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.527683236563, + "min_y": 5236.147016402335, + "max_x": 1781.572470681183, + "max_y": 5236.147016402335, + "center": [ + 1781.050076958873, + 5236.147016402335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.572470681183, + 5236.147016402335 + ], + [ + 1780.527683236563, + 5236.147016402335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.527683236563, + "min_y": 5235.847203659965, + "max_x": 1781.572470681183, + "max_y": 5235.847203659965, + "center": [ + 1781.050076958873, + 5235.847203659965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.572470681183, + 5235.847203659965 + ], + [ + 1780.527683236563, + 5235.847203659965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A6F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489024, + "min_y": 5238.5215333219285, + "max_x": 1781.2479533688359, + "max_y": 5238.917286141862, + "center": [ + 1781.050076958869, + 5238.719409731895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5238.719409731895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A70", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489037, + "min_y": 5238.125780501997, + "max_x": 1781.2479533688345, + "max_y": 5238.521533321927, + "center": [ + 1781.050076958869, + 5238.323656911962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5238.323656911962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A71", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489037, + "min_y": 5237.730027682067, + "max_x": 1781.2479533688345, + "max_y": 5238.125780501997, + "center": [ + 1781.050076958869, + 5237.927904092032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5237.927904092032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A72", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.852200548902, + "min_y": 5237.730027682062, + "max_x": 1781.2479533688363, + "max_y": 5238.125780501996, + "center": [ + 1781.050076958869, + 5237.927904092029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5237.927904092029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A73", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489037, + "min_y": 5237.334274862132, + "max_x": 1781.2479533688345, + "max_y": 5237.7300276820615, + "center": [ + 1781.050076958869, + 5237.532151272097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5237.532151272097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A74", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489017, + "min_y": 5236.938522042197, + "max_x": 1781.2479533688365, + "max_y": 5237.334274862133, + "center": [ + 1781.050076958869, + 5237.136398452165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5237.136398452165 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A75", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489037, + "min_y": 5236.542769222266, + "max_x": 1781.2479533688345, + "max_y": 5236.9385220421955, + "center": [ + 1781.050076958869, + 5236.740645632231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5236.740645632231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A76", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1780.8522005489037, + "min_y": 5236.1470164023385, + "max_x": 1781.2479533688345, + "max_y": 5236.542769222268, + "center": [ + 1781.050076958869, + 5236.344892812303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.050076958869, + 5236.344892812303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A77", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1776.830966696294, + "min_y": 5232.514312011156, + "max_x": 1782.8783259884183, + "max_y": 5233.6341933615495, + "center": [ + 1779.854646342356, + 5233.074252686352 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.350727189721, + "min_y": 5240.457458593368, + "max_x": 1774.350727189721, + "max_y": 5241.508262998329, + "center": [ + 1774.350727189721, + 5240.982860795848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189721, + 5241.508262998329 + ], + [ + 1774.350727189721, + 5240.457458593368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5239.803746988282, + "max_x": 1773.801955910258, + "max_y": 5240.54706410428, + "center": [ + 1773.801955910258, + 5240.175405546281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.801955910258, + 5240.54706410428 + ], + [ + 1773.801955910258, + 5239.803746988282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.899498469188, + "min_y": 5239.803746988282, + "max_x": 1774.899498469188, + "max_y": 5240.54706410428, + "center": [ + 1774.899498469188, + 5240.175405546281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.899498469188, + 5240.54706410428 + ], + [ + 1774.899498469188, + 5239.803746988282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5239.803746988282, + "max_x": 1774.899498469188, + "max_y": 5239.803746988282, + "center": [ + 1774.3507271897229, + 5239.803746988282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.801955910258, + 5239.803746988282 + ], + [ + 1774.899498469188, + 5239.803746988282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.830001322046, + "min_y": 5244.578338451116, + "max_x": 1774.874788766658, + "max_y": 5244.578338451116, + "center": [ + 1774.3523950443519, + 5244.578338451116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.874788766658, + 5244.578338451116 + ], + [ + 1773.830001322046, + 5244.578338451116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.830001322046, + "min_y": 5244.878151193486, + "max_x": 1774.874788766658, + "max_y": 5244.878151193486, + "center": [ + 1774.3523950443519, + 5244.878151193486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.874788766658, + 5244.878151193486 + ], + [ + 1773.830001322046, + 5244.878151193486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.828333467411, + "min_y": 5241.808075740699, + "max_x": 1774.873120912031, + "max_y": 5241.808075740699, + "center": [ + 1774.350727189721, + 5241.808075740699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.873120912031, + 5241.808075740699 + ], + [ + 1773.828333467411, + 5241.808075740699 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.828333467411, + "min_y": 5241.508262998329, + "max_x": 1774.873120912031, + "max_y": 5241.508262998329, + "center": [ + 1774.350727189721, + 5241.508262998329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.873120912031, + 5241.508262998329 + ], + [ + 1773.828333467411, + 5241.508262998329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A80", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797502, + "min_y": 5244.182592660292, + "max_x": 1774.5486035996837, + "max_y": 5244.578345480226, + "center": [ + 1774.350727189717, + 5244.380469070259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5244.380469070259 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A81", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5243.7868398403625, + "max_x": 1774.5486035996823, + "max_y": 5244.182592660292, + "center": [ + 1774.350727189717, + 5243.984716250327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5243.984716250327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A82", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5243.391087020432, + "max_x": 1774.5486035996823, + "max_y": 5243.786839840362, + "center": [ + 1774.350727189717, + 5243.588963430397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5243.588963430397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A83", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797498, + "min_y": 5243.391087020427, + "max_x": 1774.5486035996842, + "max_y": 5243.786839840361, + "center": [ + 1774.350727189717, + 5243.588963430394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5243.588963430394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A84", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5242.995334200498, + "max_x": 1774.5486035996823, + "max_y": 5243.391087020428, + "center": [ + 1774.350727189717, + 5243.193210610463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5243.193210610463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A85", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797495, + "min_y": 5242.599581380561, + "max_x": 1774.5486035996844, + "max_y": 5242.9953342004965, + "center": [ + 1774.350727189717, + 5242.797457790529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5242.797457790529 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A86", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5242.20382856063, + "max_x": 1774.5486035996823, + "max_y": 5242.59958138056, + "center": [ + 1774.350727189717, + 5242.401704970595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5242.401704970595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A87", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5241.8080757407015, + "max_x": 1774.5486035996823, + "max_y": 5242.203828560631, + "center": [ + 1774.350727189717, + 5242.005952150666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5242.005952150666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A88", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1769.72879366189, + "min_y": 5238.419320741646, + "max_x": 1775.7761529540144, + "max_y": 5239.539202092039, + "center": [ + 1772.7524733079522, + 5238.979261416842 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A89", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1769.637859762922, + "min_y": 5242.735307555136, + "max_x": 1773.607603088098, + "max_y": 5242.735307555136, + "center": [ + 1771.62273142551, + 5242.735307555136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.607603088098, + 5242.735307555136 + ], + [ + 1769.637859762922, + 5242.735307555136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5213.010606786657, + "max_x": 1784.028953207774, + "max_y": 5222.763167853447, + "center": [ + 1784.028953207774, + 5217.886887320052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5222.763167853447 + ], + [ + 1784.028953207774, + 5213.010606786657 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5209.930041311313, + "max_x": 1784.760403997811, + "max_y": 5209.930041311313, + "center": [ + 1784.3946786027925, + 5209.930041311313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5209.930041311313 + ], + [ + 1784.760403997811, + 5209.930041311313 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A8C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5200.564980098719, + "max_x": 1812.016738426569, + "max_y": 5200.565166486907, + "center": [ + 1802.9567258707384, + 5200.565073292813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1812.016738426569, + 5200.565166486907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A8D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1796.160343582197, + "min_y": 5200.916820152684, + "max_x": 1809.5989197869178, + "max_y": 5202.036701503077, + "center": [ + 1802.8796316845574, + 5201.47676082788 + ] + }, + "raw_value": "P-10116-200A-F2A-H50", + "clean_value": "P-10116-200A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.000654109004, + "min_y": 5200.56498009875, + "max_x": 1816.000654109004, + "max_y": 5238.229322185361, + "center": [ + 1816.000654109004, + 5219.397151142055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.000654109004, + 5200.56498009875 + ], + [ + 1816.000654109004, + 5238.229322185361 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.000654109004, + "min_y": 5238.229322185361, + "max_x": 1820.690081472285, + "max_y": 5238.229322185361, + "center": [ + 1818.3453677906446, + 5238.229322185361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.000654109004, + 5238.229322185361 + ], + [ + 1820.690081472285, + 5238.229322185361 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555A90", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5200.205575868886, + "max_x": 1795.934995989456, + "max_y": 5200.564980098719, + "center": [ + 1794.9158546521821, + 5200.385277983803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1795.934995989456, + 5200.205575868886 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A91", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5200.564980098719, + "max_x": 1795.934995989456, + "max_y": 5200.924384328553, + "center": [ + 1794.9158546521821, + 5200.744682213636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1795.934995989456, + 5200.924384328553 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A92", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1795.934995989456, + "min_y": 5200.205575868886, + "max_x": 1795.934995989456, + "max_y": 5200.924384328553, + "center": [ + 1795.934995989456, + 5200.564980098719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.934995989456, + 5200.924384328553 + ], + [ + 1795.934995989456, + 5200.205575868886 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A93", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5200.386653471635, + "max_x": 1795.934995989456, + "max_y": 5200.564980098719, + "center": [ + 1794.9158546521821, + 5200.475816785178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1795.934995989456, + 5200.386653471635 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A94", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1793.896713314908, + "min_y": 5200.564980098719, + "max_x": 1795.934995989456, + "max_y": 5200.743306725804, + "center": [ + 1794.9158546521821, + 5200.654143412262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1793.896713314908, + 5200.564980098719 + ], + [ + 1795.934995989456, + 5200.743306725804 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555A95", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.0802086969, + "min_y": 5252.485045469663, + "max_x": 1800.0802086969, + "max_y": 5264.186186060115, + "center": [ + 1800.0802086969, + 5258.335615764889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5264.186186060115 + ], + [ + 1800.0802086969, + 5252.485045469663 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A96", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.0802086969, + "min_y": 5247.092553935177, + "max_x": 1800.0802086969, + "max_y": 5249.78101318327, + "center": [ + 1800.0802086969, + 5248.436783559224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.0802086969, + 5249.78101318327 + ], + [ + 1800.0802086969, + 5247.092553935177 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A97", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1799.431027167923, + "min_y": 5226.295760538317, + "max_x": 1800.097604789885, + "max_y": 5226.298397909038, + "center": [ + 1799.764315978904, + 5226.297079223677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.097604789885, + 5226.295760538317 + ], + [ + 1799.431027167923, + 5226.298397909038 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A98", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.092250156692, + "min_y": 5232.022129205428, + "max_x": 1800.097604789885, + "max_y": 5243.810118585958, + "center": [ + 1800.0949274732884, + 5237.916123895693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.092250156692, + 5243.810118585958 + ], + [ + 1800.097604789885, + 5232.022129205428 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A99", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1795.062344642235, + "min_y": 5269.85566144043, + "max_x": 1796.8761492725862, + "max_y": 5270.863330679514, + "center": [ + 1795.9692469574106, + 5270.359496059971 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A9A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1794.920450608243, + "min_y": 5224.332935416556, + "max_x": 1796.7342552385942, + "max_y": 5225.34060465564, + "center": [ + 1795.8273529234186, + 5224.836770036098 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A9B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.86464144013, + "min_y": 5284.718501212824, + "max_x": 1916.9277871629627, + "max_y": 5285.838382563217, + "center": [ + 1912.8962143015465, + 5285.27844188802 + ] + }, + "raw_value": "HD10118BA-03", + "clean_value": "HD10118BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A9C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.864641440127, + "min_y": 5280.495710737759, + "max_x": 1916.9277871629595, + "max_y": 5281.615592088152, + "center": [ + 1912.8962143015433, + 5281.055651412955 + ] + }, + "raw_value": "HD10118BA-04", + "clean_value": "HD10118BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555A9D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5279.988596556545, + "max_x": 1966.42686520761, + "max_y": 5279.988641044768, + "center": [ + 1938.800248854816, + 5279.988618800657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5279.988596556545 + ], + [ + 1966.42686520761, + 5279.988641044768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555A9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5274.657825560785, + "max_x": 1974.7429867406142, + "max_y": 5276.151000694643, + "center": [ + 1972.0552714996702, + 5275.404413127713 + ] + }, + "raw_value": "T-6121", + "clean_value": "T-6121", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555A9F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5276.911640559981, + "max_x": 1977.413262867374, + "max_y": 5276.911640559981, + "center": [ + 1971.8903652573235, + 5276.911640559981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5276.911640559981 + ], + [ + 1977.413262867374, + 5276.911640559981 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AA0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5275.422488853283, + "max_x": 1978.902414574071, + "max_y": 5276.911640559981, + "center": [ + 1978.1578387207223, + 5276.167064706631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5276.911640559981 + ], + [ + 1978.902414574071, + 5275.422488853283 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AA1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5273.933337146587, + "max_x": 1978.902414574071, + "max_y": 5275.422488853283, + "center": [ + 1978.1578387207223, + 5274.677912999935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5275.422488853283 + ], + [ + 1977.413262867374, + 5273.933337146587 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AA2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5273.933337146587, + "max_x": 1977.413262867374, + "max_y": 5273.933337146587, + "center": [ + 1971.8903652573235, + 5273.933337146587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5273.933337146587 + ], + [ + 1977.413262867374, + 5273.933337146587 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5273.933337146587, + "max_x": 1966.367467647273, + "max_y": 5276.911640559981, + "center": [ + 1966.367467647273, + 5275.422488853284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5273.933337146587 + ], + [ + 1966.367467647273, + 5276.911640559981 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AA4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5275.422488853283, + "max_x": 1966.42686520761, + "max_y": 5275.781893083117, + "center": [ + 1965.407723870336, + 5275.6021909682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5275.422488853283 + ], + [ + 1964.388582533062, + 5275.781893083117 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AA5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5275.063084623449, + "max_x": 1966.42686520761, + "max_y": 5275.422488853283, + "center": [ + 1965.407723870336, + 5275.242786738366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5275.422488853283 + ], + [ + 1964.388582533062, + 5275.063084623449 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AA6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5275.063084623449, + "max_x": 1964.388582533062, + "max_y": 5275.781893083117, + "center": [ + 1964.388582533062, + 5275.422488853283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5275.063084623449 + ], + [ + 1964.388582533062, + 5275.781893083117 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AA7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5275.422488853283, + "max_x": 1966.42686520761, + "max_y": 5275.600815480368, + "center": [ + 1965.407723870336, + 5275.511652166825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5275.422488853283 + ], + [ + 1964.388582533062, + 5275.600815480368 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AA8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5275.2441622262, + "max_x": 1966.42686520761, + "max_y": 5275.422488853283, + "center": [ + 1965.407723870336, + 5275.333325539741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5275.422488853283 + ], + [ + 1964.388582533062, + 5275.2441622262 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AA9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5275.422488853283, + "max_x": 1955.403073995256, + "max_y": 5275.422488853283, + "center": [ + 1933.288353248639, + 5275.422488853283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5275.422488853283 + ], + [ + 1955.403073995256, + 5275.422488853283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AAA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1801.612201161967, + "min_y": 5231.331350199908, + "max_x": 1802.361798743963, + "max_y": 5231.331350199924, + "center": [ + 1801.986999952965, + 5231.331350199916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.361798743963, + 5231.331350199924 + ], + [ + 1801.612201161967, + 5231.331350199908 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AAB", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1804.013599851784, + "min_y": 5229.931502900262, + "max_x": 1817.4521760565049, + "max_y": 5231.051384250655, + "center": [ + 1810.7328879541444, + 5230.491443575458 + ] + }, + "raw_value": "P-10118-300A-F2A-H50", + "clean_value": "P-10118-300A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AAC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1817.261349275122, + "min_y": 5235.725318778531, + "max_x": 1830.699925479843, + "max_y": 5236.845200128924, + "center": [ + 1823.9806373774825, + 5236.285259453727 + ] + }, + "raw_value": "P-10114-250A-F2A-H50", + "clean_value": "P-10114-250A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.500938105722, + "min_y": 5276.265890134204, + "max_x": 1801.265108384107, + "max_y": 5276.421973620963, + "center": [ + 1800.8830232449145, + 5276.343931877584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.265108384107, + 5276.265890134204 + ], + [ + 1800.500938105722, + 5276.421973620963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.501041846544, + "min_y": 5277.045799231424, + "max_x": 1801.26526399534, + "max_y": 5277.201628549896, + "center": [ + 1800.883152920942, + 5277.12371389066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.26526399534, + 5277.201628549896 + ], + [ + 1800.501041846544, + 5277.045799231424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.500938105722, + "min_y": 5276.421973620963, + "max_x": 1800.501041846544, + "max_y": 5277.045799231424, + "center": [ + 1800.500989976133, + 5276.733886426194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.501041846544, + 5277.045799231424 + ], + [ + 1800.500938105722, + 5276.421973620963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1801.271261152315, + "min_y": 5276.265890134204, + "max_x": 1801.271416763547, + "max_y": 5277.201628549896, + "center": [ + 1801.271338957931, + 5276.73375934205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.271416763547, + 5277.201628549896 + ], + [ + 1801.271261152315, + 5276.265890134204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1802.637088469477, + "min_y": 5276.70920421494, + "max_x": 1814.048409234812, + "max_y": 5276.715958263006, + "center": [ + 1808.3427488521445, + 5276.712581238973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.048409234812, + 5276.715958263006 + ], + [ + 1802.637088469477, + 5276.70920421494 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1951.324871005991, + "min_y": 5325.47181931681, + "max_x": 1952.397049860521, + "max_y": 5325.690628510229, + "center": [ + 1951.860960433256, + 5325.581223913519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.397049860521, + 5325.690628510229 + ], + [ + 1951.324871005991, + 5325.47181931681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1951.324871005991, + "min_y": 5324.37777334969, + "max_x": 1952.397049860521, + "max_y": 5324.596582543115, + "center": [ + 1951.860960433256, + 5324.487177946403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.397049860521, + 5324.37777334969 + ], + [ + 1951.324871005991, + 5324.596582543115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1951.324871005991, + "min_y": 5324.596582543115, + "max_x": 1951.324871005991, + "max_y": 5325.47181931681, + "center": [ + 1951.324871005991, + 5325.034200929962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.324871005991, + 5324.596582543115 + ], + [ + 1951.324871005991, + 5325.47181931681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.397049860521, + "min_y": 5324.37777334969, + "max_x": 1952.397049860521, + "max_y": 5325.690628510229, + "center": [ + 1952.397049860521, + 5325.034200929959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.397049860521, + 5324.37777334969 + ], + [ + 1952.397049860521, + 5325.690628510229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1950.922620073323, + "min_y": 5323.156351455047, + "max_x": 1955.6261217449753, + "max_y": 5324.2762328054405, + "center": [ + 1953.2743709091492, + 5323.716292130244 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555AB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.397049860521, + "min_y": 5325.021384723296, + "max_x": 1957.683152087527, + "max_y": 5325.021384723296, + "center": [ + 1955.040100974024, + 5325.021384723296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.397049860521, + 5325.021384723296 + ], + [ + 1957.683152087527, + 5325.021384723296 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555AB8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2000.316743522348, + "min_y": 5319.373688184896, + "max_x": 2005.6921740042362, + "max_y": 5320.866863318754, + "center": [ + 2003.004458763292, + 5320.120275751826 + ] + }, + "raw_value": "T-9124", + "clean_value": "T-9124", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AB9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1998.208288223069, + "min_y": 5318.675912961346, + "max_x": 2008.987471226095, + "max_y": 5318.675912961346, + "center": [ + 2003.597879724582, + 5318.675912961346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.208288223069, + 5318.675912961346 + ], + [ + 2008.987471226095, + 5318.675912961346 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555ABA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1998.208288223069, + "min_y": 5321.654216374742, + "max_x": 2008.987471226104, + "max_y": 5321.654216374742, + "center": [ + 2003.5978797245866, + 5321.654216374742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.987471226104, + 5321.654216374742 + ], + [ + 1998.208288223069, + 5321.654216374742 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555ABB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.208288223069, + "min_y": 5318.675912961346, + "max_x": 1998.208288223069, + "max_y": 5321.654216374742, + "center": [ + 1998.208288223069, + 5320.165064668044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.208288223069, + 5321.654216374742 + ], + [ + 1998.208288223069, + 5318.675912961346 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555ABC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2008.987471226104, + "min_y": 5318.675912961348, + "max_x": 2010.476622932801, + "max_y": 5320.165064668045, + "center": [ + 2009.7320470794525, + 5319.420488814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2008.987471226104, + 5318.675912961348 + ], + [ + 2010.476622932801, + 5320.165064668045 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555ABD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2008.987471226104, + "min_y": 5320.165064668045, + "max_x": 2010.476622932801, + "max_y": 5321.654216374742, + "center": [ + 2009.7320470794525, + 5320.909640521393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2010.476622932801, + 5320.165064668045 + ], + [ + 2008.987471226104, + 5321.654216374742 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555ABE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1979.19838918619, + "min_y": 5320.211722690482, + "max_x": 1998.208288223069, + "max_y": 5320.211722690482, + "center": [ + 1988.7033387046295, + 5320.211722690482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1979.19838918619, + 5320.211722690482 + ], + [ + 1998.208288223069, + 5320.211722690482 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555ABF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5306.358225570731, + "max_x": 1954.872266266433, + "max_y": 5325.021384723296, + "center": [ + 1954.872266266433, + 5315.689805147013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5325.021384723296 + ], + [ + 1954.872266266433, + 5306.358225570731 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555AC0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5311.876272326823, + "max_x": 1957.682854410245, + "max_y": 5311.876272326823, + "center": [ + 1956.2775603383388, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5311.876272326823 + ], + [ + 1957.682854410245, + 5311.876272326823 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5311.227406192013, + "max_x": 1957.682854410245, + "max_y": 5312.521008357695, + "center": [ + 1957.682854410245, + 5311.874207274854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5312.521008357695 + ], + [ + 1957.682854410245, + 5311.227406192013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5311.250469190396, + "max_x": 1960.508776525322, + "max_y": 5312.497945359319, + "center": [ + 1960.508776525322, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5311.250469190396 + ], + [ + 1960.508776525322, + 5312.497945359319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5311.250469190396, + "max_x": 1957.682854410245, + "max_y": 5312.497945359319, + "center": [ + 1957.682854410245, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5311.250469190396 + ], + [ + 1957.682854410245, + 5312.497945359319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1958.7000045268946, + "min_y": 5311.477012399155, + "max_x": 1959.4985243822475, + "max_y": 5312.275532254507, + "center": [ + 1959.099264454571, + 5311.876272326831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.099264454571, + 5311.876272326831 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5311.243470832889, + "max_x": 1958.054067152917, + "max_y": 5312.504943716826, + "center": [ + 1958.054067152917, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5312.504943716826 + ], + [ + 1958.054067152917, + 5311.243470832889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.682854410245, + "min_y": 5311.243470832889, + "max_x": 1957.682854410245, + "max_y": 5312.504943716826, + "center": [ + 1957.682854410245, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.682854410245, + 5312.504943716826 + ], + [ + 1957.682854410245, + 5311.243470832889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5311.245535884851, + "max_x": 1960.508776525322, + "max_y": 5312.507008768794, + "center": [ + 1960.508776525322, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5312.507008768794 + ], + [ + 1960.508776525322, + 5311.245535884851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5311.245535884851, + "max_x": 1960.508776525322, + "max_y": 5312.507008768794, + "center": [ + 1960.508776525322, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5312.507008768794 + ], + [ + 1960.508776525322, + 5311.245535884851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438368057123, + "min_y": 5312.07930777068, + "max_x": 1960.137563782644, + "max_y": 5312.497945359319, + "center": [ + 1959.7879659198834, + 5312.2886265649995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1959.438368057123, + 5312.07930777068 + ], + [ + 1960.137563782644, + 5312.497945359319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.137563782644, + "min_y": 5311.250469190396, + "max_x": 1960.137563782644, + "max_y": 5312.497945359319, + "center": [ + 1960.137563782644, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137563782644, + 5312.497945359319 + ], + [ + 1960.137563782644, + 5311.250469190396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1959.438368057123, + "min_y": 5311.250469190396, + "max_x": 1960.137563782644, + "max_y": 5311.669106779033, + "center": [ + 1959.7879659198834, + 5311.459787984715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.137563782644, + 5311.250469190396 + ], + [ + 1959.438368057123, + 5311.669106779033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5312.078324531519, + "max_x": 1958.754905054483, + "max_y": 5312.497945359319, + "center": [ + 1958.4044861037, + 5312.288134945418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.754905054483, + 5312.078324531519 + ], + [ + 1958.054067152917, + 5312.497945359319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5311.250469190396, + "max_x": 1958.054067152917, + "max_y": 5312.497945359319, + "center": [ + 1958.054067152917, + 5311.874207274857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5312.497945359319 + ], + [ + 1958.054067152917, + 5311.250469190396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.054067152917, + "min_y": 5311.250469190396, + "max_x": 1958.756711865235, + "max_y": 5311.671171831011, + "center": [ + 1958.405389509076, + 5311.460820510703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.054067152917, + 5311.250469190396 + ], + [ + 1958.756711865235, + 5311.671171831011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ACF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1955.837344104521, + "min_y": 5312.728876049277, + "max_x": 1963.9004898273536, + "max_y": 5313.84875739967, + "center": [ + 1959.8689169659374, + 5313.288816724473 + ] + }, + "raw_value": "HD10114BA-04", + "clean_value": "HD10114BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555AD0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1954.872266266433, + "min_y": 5307.968999988172, + "max_x": 1957.682854410245, + "max_y": 5307.968999988172, + "center": [ + 1956.2775603383388, + 5307.968999988172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5307.968999988172 + ], + [ + 1957.682854410245, + 5307.968999988172 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AD1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1962.305344115721, + "min_y": 5312.355981214786, + "max_x": 1973.7281338897337, + "max_y": 5313.475862565179, + "center": [ + 1968.0167390027273, + 5312.915921889982 + ] + }, + "raw_value": "P-10146-20A-F1A-n", + "clean_value": "P-10146-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AD2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5311.876272326823, + "max_x": 1979.845460880497, + "max_y": 5311.876272326823, + "center": [ + 1970.1771187029094, + 5311.876272326823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5311.876272326823 + ], + [ + 1979.845460880497, + 5311.876272326823 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AD3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5266.119644617735, + "max_x": 1908.949965733491, + "max_y": 5266.119644617735, + "center": [ + 1908.090750594882, + 5266.119644617735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5266.119644617735 + ], + [ + 1907.231535456273, + 5266.119644617735 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5265.617473184719, + "max_x": 1911.173632502022, + "max_y": 5266.626761973005, + "center": [ + 1911.173632502022, + 5266.122117578861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5265.617473184719 + ], + [ + 1911.173632502022, + 5266.626761973005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AD5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5265.79666521252, + "max_x": 1910.3494321584587, + "max_y": 5266.442719347508, + "center": [ + 1910.026405090965, + 5266.119692280014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5266.119692280014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5265.617473184719, + "max_x": 1910.873297418609, + "max_y": 5265.957337080767, + "center": [ + 1910.5894822646064, + 5265.787405132743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5265.957337080767 + ], + [ + 1910.873297418609, + 5265.617473184719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5265.617473184719, + "max_x": 1910.873297418609, + "max_y": 5266.626761973005, + "center": [ + 1910.873297418609, + 5266.122117578861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5265.617473184719 + ], + [ + 1910.873297418609, + 5266.626761973005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5266.285631827449, + "max_x": 1910.873297418609, + "max_y": 5266.626761973005, + "center": [ + 1910.5884248389675, + 5266.456196900227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5266.626761973005 + ], + [ + 1910.303552259326, + 5266.285631827449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5265.617473184719, + "max_x": 1909.753308582727, + "max_y": 5265.956178031427, + "center": [ + 1909.470461333146, + 5265.786825608073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5265.956178031427 + ], + [ + 1909.187614083565, + 5265.617473184719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5265.617473184719, + "max_x": 1909.187614083565, + "max_y": 5266.626761973005, + "center": [ + 1909.187614083565, + 5266.122117578861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5265.617473184719 + ], + [ + 1909.187614083565, + 5266.626761973005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5266.288057126295, + "max_x": 1909.753308582727, + "max_y": 5266.626761973005, + "center": [ + 1909.470461333146, + 5266.45740954965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5266.626761973005 + ], + [ + 1909.753308582727, + 5266.288057126295 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ADC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5265.617473184719, + "max_x": 1908.949965733491, + "max_y": 5266.626761973005, + "center": [ + 1908.949965733491, + 5266.122117578861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5266.626761973005 + ], + [ + 1908.949965733491, + 5265.617473184719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ADD", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5266.849668316754, + "max_x": 1916.8945700508225, + "max_y": 5267.9695496671475, + "center": [ + 1912.862997189406, + 5267.409608991951 + ] + }, + "raw_value": "HD10118BA-07", + "clean_value": "HD10118BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555ADE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5269.892788952522, + "max_x": 1974.7429867406142, + "max_y": 5271.38596408638, + "center": [ + 1972.0552714996702, + 5270.639376519452 + ] + }, + "raw_value": "T-6125", + "clean_value": "T-6125", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ADF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5272.146603951718, + "max_x": 1977.413262867374, + "max_y": 5272.146603951718, + "center": [ + 1971.8903652573235, + 5272.146603951718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5272.146603951718 + ], + [ + 1977.413262867374, + 5272.146603951718 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AE0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5270.657452245021, + "max_x": 1978.902414574071, + "max_y": 5272.146603951718, + "center": [ + 1978.1578387207223, + 5271.40202809837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5272.146603951718 + ], + [ + 1978.902414574071, + 5270.657452245021 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AE1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5269.168300538324, + "max_x": 1978.902414574071, + "max_y": 5270.657452245021, + "center": [ + 1978.1578387207223, + 5269.912876391672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5270.657452245021 + ], + [ + 1977.413262867374, + 5269.168300538324 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AE2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5269.168300538324, + "max_x": 1977.413262867374, + "max_y": 5269.168300538324, + "center": [ + 1971.8903652573235, + 5269.168300538324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5269.168300538324 + ], + [ + 1977.413262867374, + 5269.168300538324 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5269.168300538324, + "max_x": 1966.367467647273, + "max_y": 5272.146603951718, + "center": [ + 1966.367467647273, + 5270.657452245021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5269.168300538324 + ], + [ + 1966.367467647273, + 5272.146603951718 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AE4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5270.657452245021, + "max_x": 1966.42686520761, + "max_y": 5271.016856474854, + "center": [ + 1965.407723870336, + 5270.837154359937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5270.657452245021 + ], + [ + 1964.388582533062, + 5271.016856474854 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AE5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5270.298048015186, + "max_x": 1966.42686520761, + "max_y": 5270.657452245021, + "center": [ + 1965.407723870336, + 5270.477750130103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5270.657452245021 + ], + [ + 1964.388582533062, + 5270.298048015186 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AE6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5270.298048015186, + "max_x": 1964.388582533062, + "max_y": 5271.016856474854, + "center": [ + 1964.388582533062, + 5270.65745224502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5270.298048015186 + ], + [ + 1964.388582533062, + 5271.016856474854 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AE7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5270.657452245021, + "max_x": 1966.42686520761, + "max_y": 5270.835778872105, + "center": [ + 1965.407723870336, + 5270.746615558563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5270.657452245021 + ], + [ + 1964.388582533062, + 5270.835778872105 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AE8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5270.479125617937, + "max_x": 1966.42686520761, + "max_y": 5270.657452245021, + "center": [ + 1965.407723870336, + 5270.568288931479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5270.657452245021 + ], + [ + 1964.388582533062, + 5270.479125617937 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5265.355028987515, + "max_x": 1974.7429867406142, + "max_y": 5266.848204121373, + "center": [ + 1972.0552714996702, + 5266.101616554444 + ] + }, + "raw_value": "T-6122", + "clean_value": "T-6122", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AEA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5267.608843986711, + "max_x": 1977.413262867374, + "max_y": 5267.608843986711, + "center": [ + 1971.8903652573235, + 5267.608843986711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5267.608843986711 + ], + [ + 1977.413262867374, + 5267.608843986711 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AEB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5266.119692280014, + "max_x": 1978.902414574071, + "max_y": 5267.608843986711, + "center": [ + 1978.1578387207223, + 5266.864268133362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5267.608843986711 + ], + [ + 1978.902414574071, + 5266.119692280014 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AEC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5264.630540573318, + "max_x": 1978.902414574071, + "max_y": 5266.119692280014, + "center": [ + 1978.1578387207223, + 5265.375116426666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5266.119692280014 + ], + [ + 1977.413262867374, + 5264.630540573318 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AED", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5264.630540573318, + "max_x": 1977.413262867374, + "max_y": 5264.630540573318, + "center": [ + 1971.8903652573235, + 5264.630540573318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5264.630540573318 + ], + [ + 1977.413262867374, + 5264.630540573318 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555AEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5264.630540573318, + "max_x": 1966.367467647273, + "max_y": 5267.608843986711, + "center": [ + 1966.367467647273, + 5266.1196922800145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5264.630540573318 + ], + [ + 1966.367467647273, + 5267.608843986711 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AEF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5266.119692280014, + "max_x": 1966.42686520761, + "max_y": 5266.479096509847, + "center": [ + 1965.407723870336, + 5266.2993943949305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5266.119692280014 + ], + [ + 1964.388582533062, + 5266.479096509847 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AF0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5265.76028805018, + "max_x": 1966.42686520761, + "max_y": 5266.119692280014, + "center": [ + 1965.407723870336, + 5265.939990165097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5266.119692280014 + ], + [ + 1964.388582533062, + 5265.76028805018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AF1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5265.76028805018, + "max_x": 1964.388582533062, + "max_y": 5266.479096509847, + "center": [ + 1964.388582533062, + 5266.119692280014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5265.76028805018 + ], + [ + 1964.388582533062, + 5266.479096509847 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AF2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5266.119692280014, + "max_x": 1966.42686520761, + "max_y": 5266.298018907098, + "center": [ + 1965.407723870336, + 5266.208855593555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5266.119692280014 + ], + [ + 1964.388582533062, + 5266.298018907098 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AF3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5265.94136565293, + "max_x": 1966.42686520761, + "max_y": 5266.119692280014, + "center": [ + 1965.407723870336, + 5266.030528966472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5266.119692280014 + ], + [ + 1964.388582533062, + 5265.94136565293 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555AF4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5266.119692280014, + "max_x": 1955.403073995256, + "max_y": 5266.119692280014, + "center": [ + 1933.288353248639, + 5266.119692280014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5266.119692280014 + ], + [ + 1955.403073995256, + 5266.119692280014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AF5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5280.645647563726, + "max_x": 1935.4797548158026, + "max_y": 5281.765528914119, + "center": [ + 1929.7683599287961, + 5281.205588238923 + ] + }, + "raw_value": "P-10135-25A-F2A-n", + "clean_value": "P-10135-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AF6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5275.991825250168, + "max_x": 1935.4797548158026, + "max_y": 5277.111706600562, + "center": [ + 1929.7683599287961, + 5276.5517659253655 + ] + }, + "raw_value": "P-10134-25A-F2A-n", + "clean_value": "P-10134-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AF7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5266.479617004867, + "max_x": 1935.4797548158026, + "max_y": 5267.59949835526, + "center": [ + 1929.7683599287961, + 5267.039557680064 + ] + }, + "raw_value": "P-10133-25A-F2A-n", + "clean_value": "P-10133-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.957161060647, + "min_y": 5324.377942298442, + "max_x": 1927.029339915177, + "max_y": 5324.59675149186, + "center": [ + 1926.493250487912, + 5324.487346895151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.957161060647, + 5324.377942298442 + ], + [ + 1927.029339915177, + 5324.59675149186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.957161060647, + "min_y": 5325.471988265555, + "max_x": 1927.029339915177, + "max_y": 5325.690797458981, + "center": [ + 1926.493250487912, + 5325.581392862268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.957161060647, + 5325.690797458981 + ], + [ + 1927.029339915177, + 5325.471988265555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.029339915177, + "min_y": 5324.59675149186, + "max_x": 1927.029339915177, + "max_y": 5325.471988265555, + "center": [ + 1927.029339915177, + 5325.034369878707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.029339915177, + 5325.471988265555 + ], + [ + 1927.029339915177, + 5324.59675149186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.957161060647, + "min_y": 5324.377942298442, + "max_x": 1925.957161060647, + "max_y": 5325.690797458981, + "center": [ + 1925.957161060647, + 5325.034369878711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.957161060647, + 5325.690797458981 + ], + [ + 1925.957161060647, + 5324.377942298442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AFC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1925.352184690369, + "min_y": 5322.735414374193, + "max_x": 1930.0556863620213, + "max_y": 5323.8552957245865, + "center": [ + 1927.7039355261952, + 5323.295355049389 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1927.029339915177, + "min_y": 5325.02112598733, + "max_x": 1927.344589120314, + "max_y": 5325.02112598733, + "center": [ + 1927.1869645177453, + 5325.02112598733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1927.029339915177, + 5325.02112598733 + ], + [ + 1927.344589120314, + 5325.02112598733 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555AFE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5261.350536055786, + "max_x": 1974.7429867406142, + "max_y": 5262.843711189644, + "center": [ + 1972.0552714996702, + 5262.097123622714 + ] + }, + "raw_value": "T-6126", + "clean_value": "T-6126", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555AFF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5263.604351054983, + "max_x": 1977.413262867374, + "max_y": 5263.604351054983, + "center": [ + 1971.8903652573235, + 5263.604351054983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5263.604351054983 + ], + [ + 1977.413262867374, + 5263.604351054983 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B00", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5262.115199348285, + "max_x": 1978.902414574071, + "max_y": 5263.604351054983, + "center": [ + 1978.1578387207223, + 5262.859775201634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5263.604351054983 + ], + [ + 1978.902414574071, + 5262.115199348285 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B01", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5260.626047641588, + "max_x": 1978.902414574071, + "max_y": 5262.115199348285, + "center": [ + 1978.1578387207223, + 5261.370623494937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5262.115199348285 + ], + [ + 1977.413262867374, + 5260.626047641588 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B02", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5260.626047641588, + "max_x": 1977.413262867374, + "max_y": 5260.626047641588, + "center": [ + 1971.8903652573235, + 5260.626047641588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5260.626047641588 + ], + [ + 1977.413262867374, + 5260.626047641588 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5260.626047641588, + "max_x": 1966.367467647273, + "max_y": 5263.604351054983, + "center": [ + 1966.367467647273, + 5262.115199348285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5260.626047641588 + ], + [ + 1966.367467647273, + 5263.604351054983 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B04", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5262.115199348285, + "max_x": 1966.42686520761, + "max_y": 5262.474603578119, + "center": [ + 1965.407723870336, + 5262.294901463202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5262.115199348285 + ], + [ + 1964.388582533062, + 5262.474603578119 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B05", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5261.755795118451, + "max_x": 1966.42686520761, + "max_y": 5262.115199348285, + "center": [ + 1965.407723870336, + 5261.935497233368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5262.115199348285 + ], + [ + 1964.388582533062, + 5261.755795118451 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B06", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5261.755795118451, + "max_x": 1964.388582533062, + "max_y": 5262.474603578119, + "center": [ + 1964.388582533062, + 5262.115199348285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5261.755795118451 + ], + [ + 1964.388582533062, + 5262.474603578119 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B07", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5262.115199348285, + "max_x": 1966.42686520761, + "max_y": 5262.293525975369, + "center": [ + 1965.407723870336, + 5262.204362661827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5262.115199348285 + ], + [ + 1964.388582533062, + 5262.293525975369 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B08", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5261.936872721201, + "max_x": 1966.42686520761, + "max_y": 5262.115199348285, + "center": [ + 1965.407723870336, + 5262.026036034744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5262.115199348285 + ], + [ + 1964.388582533062, + 5261.936872721201 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.846768852376, + "min_y": 5217.712968726403, + "max_x": 1917.98489354488, + "max_y": 5217.712968726403, + "center": [ + 1917.415831198628, + 5217.712968726403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.846768852376, + 5217.712968726403 + ], + [ + 1917.98489354488, + 5217.712968726403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1917.0645581453894, + "min_y": 5216.1185577813185, + "max_x": 1917.7671042518684, + "max_y": 5216.821103887797, + "center": [ + 1917.415831198629, + 5216.469830834558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.415831198629, + 5216.469830834558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.86705991916, + "min_y": 5215.226692942714, + "max_x": 1917.964602478098, + "max_y": 5215.226692942714, + "center": [ + 1917.415831198629, + 5215.226692942714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.964602478098, + 5215.226692942714 + ], + [ + 1916.86705991916, + 5215.226692942714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.860902691153, + "min_y": 5217.386371879381, + "max_x": 1917.970759706105, + "max_y": 5217.386371879381, + "center": [ + 1917.415831198629, + 5217.386371879381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.860902691153, + 5217.386371879381 + ], + [ + 1917.970759706105, + 5217.386371879381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.86705991916, + "min_y": 5215.553289789733, + "max_x": 1917.235381640848, + "max_y": 5216.168449489698, + "center": [ + 1917.0512207800039, + 5215.860869639715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.235381640848, + 5216.168449489698 + ], + [ + 1916.86705991916, + 5215.553289789733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.86705991916, + "min_y": 5215.553289789733, + "max_x": 1917.964602478098, + "max_y": 5215.553289789733, + "center": [ + 1917.415831198629, + 5215.553289789733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.86705991916, + 5215.553289789733 + ], + [ + 1917.964602478098, + 5215.553289789733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.59628075641, + "min_y": 5215.553289789733, + "max_x": 1917.964602478098, + "max_y": 5216.168449489698, + "center": [ + 1917.780441617254, + 5215.860869639715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.964602478098, + 5215.553289789733 + ], + [ + 1917.59628075641, + 5216.168449489698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.86705991916, + "min_y": 5216.771212179416, + "max_x": 1917.235381640848, + "max_y": 5217.386371879381, + "center": [ + 1917.0512207800039, + 5217.078792029399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.235381640848, + 5216.771212179416 + ], + [ + 1916.86705991916, + 5217.386371879381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.59628075641, + "min_y": 5216.771212179416, + "max_x": 1917.964602478098, + "max_y": 5217.386371879381, + "center": [ + 1917.780441617254, + 5217.078792029399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.964602478098, + 5217.386371879381 + ], + [ + 1917.59628075641, + 5216.771212179416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B12", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5257.109111796797, + "max_x": 1908.949965733491, + "max_y": 5257.109111796797, + "center": [ + 1908.090750594882, + 5257.109111796797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5257.109111796797 + ], + [ + 1907.231535456273, + 5257.109111796797 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5256.606940363781, + "max_x": 1911.173632502022, + "max_y": 5257.616229152066, + "center": [ + 1911.173632502022, + 5257.111584757924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5256.606940363781 + ], + [ + 1911.173632502022, + 5257.616229152066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B14", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5256.786132391581, + "max_x": 1910.3494321584587, + "max_y": 5257.432186526569, + "center": [ + 1910.026405090965, + 5257.109159459075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5257.109159459075 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5256.606940363781, + "max_x": 1910.873297418609, + "max_y": 5256.946804259828, + "center": [ + 1910.5894822646064, + 5256.776872311804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5256.946804259828 + ], + [ + 1910.873297418609, + 5256.606940363781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5256.606940363781, + "max_x": 1910.873297418609, + "max_y": 5257.616229152066, + "center": [ + 1910.873297418609, + 5257.111584757924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5256.606940363781 + ], + [ + 1910.873297418609, + 5257.616229152066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5257.275099006509, + "max_x": 1910.873297418609, + "max_y": 5257.616229152066, + "center": [ + 1910.5884248389675, + 5257.445664079287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5257.616229152066 + ], + [ + 1910.303552259326, + 5257.275099006509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5256.606940363781, + "max_x": 1909.753308582727, + "max_y": 5256.945645210488, + "center": [ + 1909.470461333146, + 5256.7762927871345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5256.945645210488 + ], + [ + 1909.187614083565, + 5256.606940363781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5256.606940363781, + "max_x": 1909.187614083565, + "max_y": 5257.616229152066, + "center": [ + 1909.187614083565, + 5257.111584757924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5256.606940363781 + ], + [ + 1909.187614083565, + 5257.616229152066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5257.277524305355, + "max_x": 1909.753308582727, + "max_y": 5257.616229152066, + "center": [ + 1909.470461333146, + 5257.446876728711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5257.616229152066 + ], + [ + 1909.753308582727, + 5257.277524305355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5256.606940363781, + "max_x": 1908.949965733491, + "max_y": 5257.616229152066, + "center": [ + 1908.949965733491, + 5257.111584757924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5257.616229152066 + ], + [ + 1908.949965733491, + 5256.606940363781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B1C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5257.839135495815, + "max_x": 1916.8945700508225, + "max_y": 5258.959016846208, + "center": [ + 1912.862997189406, + 5258.399076171012 + ] + }, + "raw_value": "HD10118BA-09", + "clean_value": "HD10118BA-09", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555B1D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1969.367556258726, + "min_y": 5256.344496166576, + "max_x": 1974.7429867406142, + "max_y": 5257.8376713004345, + "center": [ + 1972.0552714996702, + 5257.091083733505 + ] + }, + "raw_value": "T-9125", + "clean_value": "T-9125", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B1E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5258.598311165773, + "max_x": 1977.413262867374, + "max_y": 5258.598311165773, + "center": [ + 1971.8903652573235, + 5258.598311165773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5258.598311165773 + ], + [ + 1977.413262867374, + 5258.598311165773 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B1F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5257.109159459075, + "max_x": 1978.902414574071, + "max_y": 5258.598311165773, + "center": [ + 1978.1578387207223, + 5257.853735312425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.413262867374, + 5258.598311165773 + ], + [ + 1978.902414574071, + 5257.109159459075 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B20", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1977.413262867374, + "min_y": 5255.620007752378, + "max_x": 1978.902414574071, + "max_y": 5257.109159459075, + "center": [ + 1978.1578387207223, + 5256.364583605727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1978.902414574071, + 5257.109159459075 + ], + [ + 1977.413262867374, + 5255.620007752378 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B21", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5255.620007752378, + "max_x": 1977.413262867374, + "max_y": 5255.620007752378, + "center": [ + 1971.8903652573235, + 5255.620007752378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5255.620007752378 + ], + [ + 1977.413262867374, + 5255.620007752378 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555B22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.367467647273, + "min_y": 5255.620007752378, + "max_x": 1966.367467647273, + "max_y": 5258.598311165773, + "center": [ + 1966.367467647273, + 5257.109159459076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.367467647273, + 5255.620007752378 + ], + [ + 1966.367467647273, + 5258.598311165773 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B23", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5257.109159459075, + "max_x": 1966.42686520761, + "max_y": 5257.468563688908, + "center": [ + 1965.407723870336, + 5257.288861573992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5257.109159459075 + ], + [ + 1964.388582533062, + 5257.468563688908 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B24", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5256.749755229241, + "max_x": 1966.42686520761, + "max_y": 5257.109159459075, + "center": [ + 1965.407723870336, + 5256.929457344158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5257.109159459075 + ], + [ + 1964.388582533062, + 5256.749755229241 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B25", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5256.749755229241, + "max_x": 1964.388582533062, + "max_y": 5257.468563688908, + "center": [ + 1964.388582533062, + 5257.109159459074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1964.388582533062, + 5256.749755229241 + ], + [ + 1964.388582533062, + 5257.468563688908 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B26", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5257.109159459075, + "max_x": 1966.42686520761, + "max_y": 5257.287486086159, + "center": [ + 1965.407723870336, + 5257.198322772618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5257.109159459075 + ], + [ + 1964.388582533062, + 5257.287486086159 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B27", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1964.388582533062, + "min_y": 5256.930832831991, + "max_x": 1966.42686520761, + "max_y": 5257.109159459075, + "center": [ + 1965.407723870336, + 5257.019996145533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.42686520761, + 5257.109159459075 + ], + [ + 1964.388582533062, + 5256.930832831991 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B28", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5257.109159459075, + "max_x": 1955.403073995256, + "max_y": 5257.109159459075, + "center": [ + 1933.288353248639, + 5257.109159459075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5257.109159459075 + ], + [ + 1955.403073995256, + 5257.109159459075 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B29", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1924.05696504179, + "min_y": 5257.469084183928, + "max_x": 1935.4797548158026, + "max_y": 5258.588965534322, + "center": [ + 1929.7683599287961, + 5258.029024859125 + ] + }, + "raw_value": "P-10132-25A-F2A-n", + "clean_value": "P-10132-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B2A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5252.694760241293, + "max_x": 1908.949965733491, + "max_y": 5252.694760241293, + "center": [ + 1908.090750594882, + 5252.694760241293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5252.694760241293 + ], + [ + 1907.231535456273, + 5252.694760241293 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5252.192588808277, + "max_x": 1911.173632502022, + "max_y": 5253.201877596564, + "center": [ + 1911.173632502022, + 5252.697233202421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5252.192588808277 + ], + [ + 1911.173632502022, + 5253.201877596564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B2C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5252.371780836079, + "max_x": 1910.3494321584587, + "max_y": 5253.017834971067, + "center": [ + 1910.026405090965, + 5252.694807903573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5252.694807903573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5252.192588808277, + "max_x": 1910.873297418609, + "max_y": 5252.532452704326, + "center": [ + 1910.5894822646064, + 5252.362520756302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5252.532452704326 + ], + [ + 1910.873297418609, + 5252.192588808277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5252.192588808277, + "max_x": 1910.873297418609, + "max_y": 5253.201877596564, + "center": [ + 1910.873297418609, + 5252.697233202421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5252.192588808277 + ], + [ + 1910.873297418609, + 5253.201877596564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5252.860747451007, + "max_x": 1910.873297418609, + "max_y": 5253.201877596564, + "center": [ + 1910.5884248389675, + 5253.031312523786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5253.201877596564 + ], + [ + 1910.303552259326, + 5252.860747451007 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5252.192588808277, + "max_x": 1909.753308582727, + "max_y": 5252.531293654985, + "center": [ + 1909.470461333146, + 5252.361941231631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5252.531293654985 + ], + [ + 1909.187614083565, + 5252.192588808277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5252.192588808277, + "max_x": 1909.187614083565, + "max_y": 5253.201877596564, + "center": [ + 1909.187614083565, + 5252.697233202421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5252.192588808277 + ], + [ + 1909.187614083565, + 5253.201877596564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5252.863172749854, + "max_x": 1909.753308582727, + "max_y": 5253.201877596564, + "center": [ + 1909.470461333146, + 5253.032525173209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5253.201877596564 + ], + [ + 1909.753308582727, + 5252.863172749854 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5252.192588808277, + "max_x": 1908.949965733491, + "max_y": 5253.201877596564, + "center": [ + 1908.949965733491, + 5252.697233202421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5253.201877596564 + ], + [ + 1908.949965733491, + 5252.192588808277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B34", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5253.424783940312, + "max_x": 1916.8945700508225, + "max_y": 5254.544665290706, + "center": [ + 1912.862997189406, + 5253.98472461551 + ] + }, + "raw_value": "HD10118BA-10", + "clean_value": "HD10118BA-10", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555B42", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5248.535082813996, + "max_x": 1908.949965733491, + "max_y": 5248.535082813996, + "center": [ + 1908.090750594882, + 5248.535082813996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5248.535082813996 + ], + [ + 1907.231535456273, + 5248.535082813996 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1911.173632502022, + "min_y": 5248.03291138098, + "max_x": 1911.173632502022, + "max_y": 5249.042200169266, + "center": [ + 1911.173632502022, + 5248.537555775123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1911.173632502022, + 5248.03291138098 + ], + [ + 1911.173632502022, + 5249.042200169266 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B44", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1909.7033780234713, + "min_y": 5248.212103408781, + "max_x": 1910.3494321584587, + "max_y": 5248.858157543769, + "center": [ + 1910.026405090965, + 5248.535130476275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.026405090965, + 5248.535130476275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.305667110604, + "min_y": 5248.03291138098, + "max_x": 1910.873297418609, + "max_y": 5248.372775277029, + "center": [ + 1910.5894822646064, + 5248.202843329005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.305667110604, + 5248.372775277029 + ], + [ + 1910.873297418609, + 5248.03291138098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.873297418609, + "min_y": 5248.03291138098, + "max_x": 1910.873297418609, + "max_y": 5249.042200169266, + "center": [ + 1910.873297418609, + 5248.537555775123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5248.03291138098 + ], + [ + 1910.873297418609, + 5249.042200169266 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1910.303552259326, + "min_y": 5248.70107002371, + "max_x": 1910.873297418609, + "max_y": 5249.042200169266, + "center": [ + 1910.5884248389675, + 5248.871635096488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1910.873297418609, + 5249.042200169266 + ], + [ + 1910.303552259326, + 5248.70107002371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5248.03291138098, + "max_x": 1909.753308582727, + "max_y": 5248.371616227688, + "center": [ + 1909.470461333146, + 5248.2022638043345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.753308582727, + 5248.371616227688 + ], + [ + 1909.187614083565, + 5248.03291138098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5248.03291138098, + "max_x": 1909.187614083565, + "max_y": 5249.042200169266, + "center": [ + 1909.187614083565, + 5248.537555775123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5248.03291138098 + ], + [ + 1909.187614083565, + 5249.042200169266 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.187614083565, + "min_y": 5248.703495322556, + "max_x": 1909.753308582727, + "max_y": 5249.042200169266, + "center": [ + 1909.470461333146, + 5248.872847745911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.187614083565, + 5249.042200169266 + ], + [ + 1909.753308582727, + 5248.703495322556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.949965733491, + "min_y": 5248.03291138098, + "max_x": 1908.949965733491, + "max_y": 5249.042200169266, + "center": [ + 1908.949965733491, + 5248.537555775123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.949965733491, + 5249.042200169266 + ], + [ + 1908.949965733491, + 5248.03291138098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B4C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1908.83142432799, + "min_y": 5249.265106513014, + "max_x": 1916.8945700508225, + "max_y": 5250.384987863407, + "center": [ + 1912.862997189406, + 5249.825047188211 + ] + }, + "raw_value": "HD10118BA-11", + "clean_value": "HD10118BA-11", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555B4D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1649.890653749454, + "min_y": 5256.319900690504, + "max_x": 1659.9695859029946, + "max_y": 5257.439782040898, + "center": [ + 1654.9301198262242, + 5256.8798413657005 + ] + }, + "raw_value": "SARF-#6-PID-005", + "clean_value": "SARF-#6-PID-005", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5254.428870475624, + "max_x": 1784.743007904825, + "max_y": 5254.428870475624, + "center": [ + 1784.3859805562995, + 5254.428870475624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.743007904825, + 5254.428870475624 + ], + [ + 1784.028953207774, + 5254.428870475624 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5252.764676261394, + "max_x": 1784.028953207774, + "max_y": 5254.428870475624, + "center": [ + 1784.028953207774, + 5253.596773368508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5254.428870475624 + ], + [ + 1784.028953207774, + 5252.764676261394 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5209.930041311313, + "max_x": 1784.028953207774, + "max_y": 5212.241637037387, + "center": [ + 1784.028953207774, + 5211.0858391743495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5209.930041311313 + ], + [ + 1784.028953207774, + 5212.241637037387 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.074367744272, + "min_y": 5271.131597321967, + "max_x": 1797.074367744272, + "max_y": 5272.229139880898, + "center": [ + 1797.074367744272, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1797.074367744272, + 5271.131597321967 + ], + [ + 1797.074367744272, + 5272.229139880898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.65626011871, + "min_y": 5271.131597321967, + "max_x": 1794.65626011871, + "max_y": 5272.229139880898, + "center": [ + 1794.65626011871, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.65626011871, + 5272.229139880898 + ], + [ + 1794.65626011871, + 5271.131597321967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B53", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1795.5525298134214, + "min_y": 5271.331732918916, + "max_x": 1796.2550759199005, + "max_y": 5272.034279025394, + "center": [ + 1795.903802866661, + 5271.683005972155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.903802866661, + 5271.683005972155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.982856965729, + "min_y": 5271.859557760805, + "max_x": 1795.600121744657, + "max_y": 5272.229139880898, + "center": [ + 1795.2914893551929, + 5272.044348820851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.600121744657, + 5271.859557760805 + ], + [ + 1794.982856965729, + 5272.229139880898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.982856965729, + "min_y": 5271.131597321967, + "max_x": 1794.982856965729, + "max_y": 5272.229139880898, + "center": [ + 1794.982856965729, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.982856965729, + 5272.229139880898 + ], + [ + 1794.982856965729, + 5271.131597321967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.982856965729, + "min_y": 5271.131597321967, + "max_x": 1795.602421521795, + "max_y": 5271.502556414377, + "center": [ + 1795.292639243762, + 5271.317076868172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.982856965729, + 5271.131597321967 + ], + [ + 1795.602421521795, + 5271.502556414377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.815939055375, + "min_y": 5271.131597321967, + "max_x": 1796.815939055375, + "max_y": 5272.229139880898, + "center": [ + 1796.815939055375, + 5271.680368601433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.815939055375, + 5272.229139880898 + ], + [ + 1796.815939055375, + 5271.131597321967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.200779355413, + "min_y": 5271.131597321967, + "max_x": 1796.815939055375, + "max_y": 5271.499919043653, + "center": [ + 1796.508359205394, + 5271.31575818281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.815939055375, + 5271.131597321967 + ], + [ + 1796.200779355413, + 5271.499919043653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.200779355413, + "min_y": 5271.866092900659, + "max_x": 1796.815939055375, + "max_y": 5272.234414622345, + "center": [ + 1796.508359205394, + 5272.050253761502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.815939055375, + 5272.234414622345 + ], + [ + 1796.200779355413, + 5271.866092900659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.091763837258, + "min_y": 5225.746989258849, + "max_x": 1797.091763837258, + "max_y": 5226.84453181778, + "center": [ + 1797.091763837258, + 5226.295760538314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1797.091763837258, + 5225.746989258849 + ], + [ + 1797.091763837258, + 5226.84453181778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1794.668301578502, + "min_y": 5230.782578920297, + "max_x": 1794.668301578502, + "max_y": 5231.880121479228, + "center": [ + 1794.668301578502, + 5231.331350199763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1794.668301578502, + 5231.880121479228 + ], + [ + 1794.668301578502, + 5230.782578920297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B5D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1795.5699259064074, + "min_y": 5225.947124855798, + "max_x": 1796.2724720128865, + "max_y": 5226.649670962277, + "center": [ + 1795.921198959647, + 5226.298397909038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.921198959647, + 5226.298397909038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.000253058714, + "min_y": 5226.474949697688, + "max_x": 1795.617517837642, + "max_y": 5226.84453181778, + "center": [ + 1795.308885448178, + 5226.659740757734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.617517837642, + 5226.474949697688 + ], + [ + 1795.000253058714, + 5226.84453181778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.000253058717, + "min_y": 5230.782578920298, + "max_x": 1795.000253058717, + "max_y": 5231.880121479229, + "center": [ + 1795.000253058717, + 5231.331350199764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.000253058717, + 5231.880121479229 + ], + [ + 1795.000253058717, + 5230.782578920298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.000253058714, + "min_y": 5225.746989258849, + "max_x": 1795.619817614781, + "max_y": 5226.11794835126, + "center": [ + 1795.3100353367474, + 5225.932468805055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.000253058714, + 5225.746989258849 + ], + [ + 1795.619817614781, + 5226.11794835126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.833335148361, + "min_y": 5225.746989258849, + "max_x": 1796.833335148361, + "max_y": 5226.84453181778, + "center": [ + 1796.833335148361, + 5226.295760538314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.833335148361, + 5226.84453181778 + ], + [ + 1796.833335148361, + 5225.746989258849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.218175448398, + "min_y": 5225.746989258849, + "max_x": 1796.833335148361, + "max_y": 5226.115310980535, + "center": [ + 1796.5257552983794, + 5225.931150119692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.833335148361, + 5225.746989258849 + ], + [ + 1796.218175448398, + 5226.115310980535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1796.218175448398, + "min_y": 5226.481484837542, + "max_x": 1796.833335148361, + "max_y": 5226.849806559227, + "center": [ + 1796.5257552983794, + 5226.665645698384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1796.833335148361, + 5226.849806559227 + ], + [ + 1796.218175448398, + 5226.481484837542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666779073661, + "min_y": 5271.213825460744, + "max_x": 1799.430949352046, + "max_y": 5271.369908947503, + "center": [ + 1799.0488642128535, + 5271.291867204123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.430949352046, + 5271.213825460744 + ], + [ + 1798.666779073661, + 5271.369908947503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666882814483, + "min_y": 5271.993734557963, + "max_x": 1799.431104963279, + "max_y": 5272.149563876435, + "center": [ + 1799.048993888881, + 5272.0716492172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.431104963279, + 5272.149563876435 + ], + [ + 1798.666882814483, + 5271.993734557963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666779073661, + "min_y": 5271.369908947503, + "max_x": 1798.666882814483, + "max_y": 5271.993734557963, + "center": [ + 1798.666830944072, + 5271.6818217527325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1798.666882814483, + 5271.993734557963 + ], + [ + 1798.666779073661, + 5271.369908947503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.430949352046, + "min_y": 5271.213825460744, + "max_x": 1799.431104963279, + "max_y": 5272.149563876435, + "center": [ + 1799.4310271576624, + 5271.68169466859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.431104963279, + 5272.149563876435 + ], + [ + 1799.430949352046, + 5271.213825460744 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.430959589833, + "min_y": 5271.275388445744, + "max_x": 1799.431094725488, + "max_y": 5272.088000891432, + "center": [ + 1799.4310271576605, + 5271.6816946685885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.430959589833, + 5271.275388445744 + ], + [ + 1799.431094725488, + 5272.088000891432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.091763837258, + "min_y": 5226.298397909038, + "max_x": 1798.690747111834, + "max_y": 5226.298397909038, + "center": [ + 1797.8912554745461, + 5226.298397909038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1798.690747111834, + 5226.298397909038 + ], + [ + 1797.091763837258, + 5226.298397909038 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1797.074367744272, + "min_y": 5271.683005972155, + "max_x": 1798.666831141005, + "max_y": 5271.683005972155, + "center": [ + 1797.8705994426386, + 5271.683005972155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1798.666831141005, + 5271.683005972155 + ], + [ + 1797.074367744272, + 5271.683005972155 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.161829960422, + "min_y": 5281.953920605233, + "max_x": 1724.16187838047, + "max_y": 5282.594205392716, + "center": [ + 1724.161854170446, + 5282.274062998975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5281.953920605233 + ], + [ + 1724.161829960422, + 5282.594205392716 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5270.625511691251, + "max_x": 1724.16187838047, + "max_y": 5281.953920605233, + "center": [ + 1724.16187838047, + 5276.2897161482415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5281.953920605233 + ], + [ + 1724.16187838047, + 5270.625511691251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B6E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1724.160900579732, + "min_y": 5283.837292698166, + "max_x": 1724.16187838047, + "max_y": 5291.631413255328, + "center": [ + 1724.161389480101, + 5287.734352976747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5291.631413255328 + ], + [ + 1724.160900579732, + 5283.837292698166 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B6F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5291.631413255328, + "max_x": 1724.16187838047, + "max_y": 5323.252867762896, + "center": [ + 1724.16187838047, + 5307.4421405091125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5323.252867762896 + ], + [ + 1724.16187838047, + 5291.631413255328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B70", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1722.106869699191, + "min_y": 5307.776737385591, + "max_x": 1733.5296594732038, + "max_y": 5308.896618735985, + "center": [ + 1727.8182645861975, + 5308.3366780607885 + ] + }, + "raw_value": "P-10104-25A-F1A-n", + "clean_value": "P-10104-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.879720676332, + "min_y": 5282.593994476783, + "max_x": 1724.443939244513, + "max_y": 5282.594416308651, + "center": [ + 1724.1618299604224, + 5282.594205392717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.879720676332, + 5282.593994476783 + ], + [ + 1724.443939244513, + 5282.594416308651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.878791295642, + "min_y": 5283.837081782226, + "max_x": 1724.443009863822, + "max_y": 5283.837503614103, + "center": [ + 1724.160900579732, + 5283.837292698165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.443009863822, + 5283.837503614103 + ], + [ + 1723.878791295642, + 5283.837081782226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B73", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1723.9821553218728, + "min_y": 5283.015383335606, + "max_x": 1724.343316413837, + "max_y": 5283.376544427571, + "center": [ + 1724.162735867855, + 5283.195963881589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.162735867855, + 5283.195963881589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.253379910963, + "min_y": 5283.35214643835, + "max_x": 1724.443135388758, + "max_y": 5283.669608525298, + "center": [ + 1724.3482576498604, + 5283.510877481824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.253379910963, + 5283.35214643835 + ], + [ + 1724.443135388758, + 5283.669608525298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.878916820579, + "min_y": 5283.669186693428, + "max_x": 1724.443135388758, + "max_y": 5283.669608525298, + "center": [ + 1724.1610261046685, + 5283.669397609363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.443135388758, + 5283.669608525298 + ], + [ + 1723.878916820579, + 5283.669186693428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.878916820579, + "min_y": 5283.350826971055, + "max_x": 1724.069855530283, + "max_y": 5283.669186693428, + "center": [ + 1723.974386175431, + 5283.510006832241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.878916820579, + 5283.669186693428 + ], + [ + 1724.069855530283, + 5283.350826971055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.254258707598, + "min_y": 5282.727267890244, + "max_x": 1724.443839919472, + "max_y": 5283.043364202367, + "center": [ + 1724.349049313535, + 5282.885316046306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.254258707598, + 5283.043364202367 + ], + [ + 1724.443839919472, + 5282.727267890244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.879621351294, + "min_y": 5282.726846058378, + "max_x": 1724.443839919472, + "max_y": 5282.727267890244, + "center": [ + 1724.161730635383, + 5282.7270569743105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.443839919472, + 5282.727267890244 + ], + [ + 1723.879621351294, + 5282.726846058378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1723.879621351294, + "min_y": 5282.726846058378, + "max_x": 1724.068729699562, + "max_y": 5283.043225493624, + "center": [ + 1723.974175525428, + 5282.885035776001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.879621351294, + 5282.726846058378 + ], + [ + 1724.068729699562, + 5283.043225493624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B7A", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5314.689662755679, + "max_x": 1724.521282610303, + "max_y": 5316.727945430227, + "center": [ + 1724.3415804953866, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5314.689662755679 + ], + [ + 1724.521282610303, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B7B", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1723.802474150637, + "min_y": 5314.689662755679, + "max_x": 1724.16187838047, + "max_y": 5316.727945430227, + "center": [ + 1723.9821762655533, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5314.689662755679 + ], + [ + 1723.802474150637, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B7C", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1723.802474150637, + "min_y": 5316.727945430227, + "max_x": 1724.521282610303, + "max_y": 5316.727945430227, + "center": [ + 1724.16187838047, + 5316.727945430227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.802474150637, + 5316.727945430227 + ], + [ + 1724.521282610303, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B7D", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5314.689662755679, + "max_x": 1724.340205007555, + "max_y": 5316.727945430227, + "center": [ + 1724.2510416940124, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5314.689662755679 + ], + [ + 1724.340205007555, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B7E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 1723.983551753386, + "min_y": 5314.689662755679, + "max_x": 1724.16187838047, + "max_y": 5316.727945430227, + "center": [ + 1724.0727150669281, + 5315.708804092953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5314.689662755679 + ], + [ + 1723.983551753386, + 5316.727945430227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555B7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1724.16187838047, + "min_y": 5323.252867762896, + "max_x": 1750.120830961738, + "max_y": 5323.252867762896, + "center": [ + 1737.141354671104, + 5323.252867762896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1724.16187838047, + 5323.252867762896 + ], + [ + 1750.120830961738, + 5323.252867762896 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.583208545517, + "min_y": 5324.715245346674, + "max_x": 1763.540698918505, + "max_y": 5324.715245346674, + "center": [ + 1757.561953732011, + 5324.715245346674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.540698918505, + 5324.715245346674 + ], + [ + 1751.583208545517, + 5324.715245346674 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.583208545517, + "min_y": 5321.790490179118, + "max_x": 1763.540698918505, + "max_y": 5321.790490179118, + "center": [ + 1757.561953732011, + 5321.790490179118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.583208545517, + 5321.790490179118 + ], + [ + 1763.540698918505, + 5321.790490179118 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.120830961738, + "min_y": 5323.252867762896, + "max_x": 1751.583208545517, + "max_y": 5324.715245346674, + "center": [ + 1750.8520197536275, + 5323.984056554786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.583208545517, + 5324.715245346674 + ], + [ + 1750.120830961738, + 5323.252867762896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.120830961738, + "min_y": 5321.790490179118, + "max_x": 1751.583208545517, + "max_y": 5323.252867762896, + "center": [ + 1750.8520197536275, + 5322.521678971007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.583208545517, + 5321.790490179118 + ], + [ + 1750.120830961738, + 5323.252867762896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.540698918505, + "min_y": 5321.790490179121, + "max_x": 1763.540698918505, + "max_y": 5324.715245346674, + "center": [ + 1763.540698918505, + 5323.252867762898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.540698918505, + 5324.715245346674 + ], + [ + 1763.540698918505, + 5321.790490179121 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B85", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1752.608896098864, + "min_y": 5322.640679025458, + "max_x": 1757.425281810636, + "max_y": 5323.787437528261, + "center": [ + 1755.01708895475, + 5323.214058276859 + ] + }, + "raw_value": "P-10118", + "clean_value": "P-10118", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.278225939452, + "min_y": 5263.967595259878, + "max_x": 1723.013792859801, + "max_y": 5263.967595259878, + "center": [ + 1722.1460093996266, + 5263.967595259878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1723.013792859801, + 5263.967595259878 + ], + [ + 1721.278225939452, + 5263.967595259878 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.278225939452, + "min_y": 5259.352315441632, + "max_x": 1721.278225939452, + "max_y": 5263.967595259878, + "center": [ + 1721.278225939452, + 5261.659955350755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.278225939452, + 5263.967595259878 + ], + [ + 1721.278225939452, + 5259.352315441632 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555B88", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1782.441122880981, + "min_y": 5222.763167853447, + "max_x": 1784.028953207774, + "max_y": 5222.763167853447, + "center": [ + 1783.2350380443777, + 5222.763167853447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5222.763167853447 + ], + [ + 1782.441122880981, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.701905375508, + "min_y": 5222.141519323905, + "max_x": 1778.701907854546, + "max_y": 5223.384816382987, + "center": [ + 1778.701906615027, + 5222.763167853446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.701907854546, + 5223.384816382987 + ], + [ + 1778.701905375508, + 5222.141519323905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.762784162104, + "min_y": 5222.141525184281, + "max_x": 1775.762786641145, + "max_y": 5223.384822243382, + "center": [ + 1775.7627854016246, + 5222.763173713831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.762786641145, + 5223.384822243382 + ], + [ + 1775.762784162104, + 5222.141525184281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.233523576594, + "min_y": 5221.856370206531, + "max_x": 1778.233525967241, + "max_y": 5223.654605275868, + "center": [ + 1778.2335247719175, + 5222.755487741199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.233525967241, + 5223.654605275868 + ], + [ + 1778.233523576594, + 5221.856370206531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167461, + "min_y": 5221.856374199314, + "max_x": 1776.231051578519, + "max_y": 5223.669963065952, + "center": [ + 1776.23105037299, + 5222.763168632633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231051578519, + 5223.669963065952 + ], + [ + 1776.231049167461, + 5221.856374199314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5221.856370206531, + "max_x": 1778.233523576594, + "max_y": 5221.856374199314, + "center": [ + 1777.2322863720296, + 5221.856372202923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231049167465, + 5221.856374199314 + ], + [ + 1778.233523576594, + 5221.856370206531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.231049167465, + "min_y": 5223.66996306594, + "max_x": 1778.233523576594, + "max_y": 5223.669967058723, + "center": [ + 1777.2322863720296, + 5223.669965062331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.231049167465, + 5223.66996306594 + ], + [ + 1778.233523576594, + 5223.669967058723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B8F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1779.910347511219, + "min_y": 5216.002000440626, + "max_x": 1779.910347511219, + "max_y": 5217.102108515081, + "center": [ + 1779.910347511219, + 5216.552054477854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.910347511219, + 5216.002000440626 + ], + [ + 1779.910347511219, + 5217.102108515081 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5216.002000440626, + "max_x": 1780.456481419963, + "max_y": 5216.002000440626, + "center": [ + 1779.907710140498, + 5216.002000440626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.456481419963, + 5216.002000440626 + ], + [ + 1779.358938861033, + 5216.002000440626 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5213.583892815063, + "max_x": 1780.456481419963, + "max_y": 5213.583892815063, + "center": [ + 1779.907710140498, + 5213.583892815063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.358938861033, + 5213.583892815063 + ], + [ + 1780.456481419963, + 5213.583892815063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B92", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1779.5537997165366, + "min_y": 5214.480162509775, + "max_x": 1780.2563458230156, + "max_y": 5215.182708616254, + "center": [ + 1779.905072769776, + 5214.831435563015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.905072769776, + 5214.831435563015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5213.910489662082, + "max_x": 1779.728520981126, + "max_y": 5214.52775444101, + "center": [ + 1779.5437299210794, + 5214.219122051546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.728520981126, + 5214.52775444101 + ], + [ + 1779.358938861033, + 5213.910489662082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5213.910489662082, + "max_x": 1780.456481419963, + "max_y": 5213.910489662082, + "center": [ + 1779.907710140498, + 5213.910489662082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.358938861033, + 5213.910489662082 + ], + [ + 1780.456481419963, + 5213.910489662082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.085522327554, + "min_y": 5213.910489662082, + "max_x": 1780.456481419963, + "max_y": 5214.530054218149, + "center": [ + 1780.2710018737585, + 5214.220271940116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.456481419963, + 5213.910489662082 + ], + [ + 1780.085522327554, + 5214.530054218149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.358938861033, + "min_y": 5215.743571751728, + "max_x": 1780.456481419963, + "max_y": 5215.743571751728, + "center": [ + 1779.907710140498, + 5215.743571751728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.358938861033, + 5215.743571751728 + ], + [ + 1780.456481419963, + 5215.743571751728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.088159698278, + "min_y": 5215.128412051766, + "max_x": 1780.456481419963, + "max_y": 5215.743571751728, + "center": [ + 1780.2723205591205, + 5215.435991901747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.456481419963, + 5215.743571751728 + ], + [ + 1780.088159698278, + 5215.128412051766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.353664119586, + "min_y": 5215.128412051766, + "max_x": 1779.721985841272, + "max_y": 5215.743571751728, + "center": [ + 1779.537824980429, + 5215.435991901747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.353664119586, + 5215.743571751728 + ], + [ + 1779.721985841272, + 5215.128412051766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B99", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1783.256917219862, + "min_y": 5217.102108515074, + "max_x": 1783.256917219862, + "max_y": 5222.763167853447, + "center": [ + 1783.256917219862, + 5219.93263818426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.256917219862, + 5217.102108515074 + ], + [ + 1783.256917219862, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B9A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1769.637859762922, + "min_y": 5217.102108515079, + "max_x": 1769.637859762922, + "max_y": 5222.763167853447, + "center": [ + 1769.637859762922, + 5219.932638184263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.637859762922, + 5222.763167853447 + ], + [ + 1769.637859762922, + 5217.102108515079 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B9B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5222.763167853447, + "max_x": 1775.762785401613, + "max_y": 5222.763167853447, + "center": [ + 1774.3550324150724, + 5222.763167853447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.762785401613, + 5222.763167853447 + ], + [ + 1772.947279428532, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555B9C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1776.73520262495, + "min_y": 5222.210480053153, + "max_x": 1777.4058478338263, + "max_y": 5223.3282220679475, + "center": [ + 1777.0705252293883, + 5222.76935106055 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.947279428532, + "min_y": 5222.21439657398, + "max_x": 1772.947279428532, + "max_y": 5223.311939132911, + "center": [ + 1772.947279428532, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.947279428532, + 5222.21439657398 + ], + [ + 1772.947279428532, + 5223.311939132911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.52917180297, + "min_y": 5222.21439657398, + "max_x": 1770.52917180297, + "max_y": 5223.311939132911, + "center": [ + 1770.52917180297, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.52917180297, + 5223.311939132911 + ], + [ + 1770.52917180297, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555B9F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1771.4254414976815, + "min_y": 5222.414532170929, + "max_x": 1772.1279876041606, + "max_y": 5223.117078277408, + "center": [ + 1771.776714550921, + 5222.765805224169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1771.776714550921, + 5222.765805224169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5222.942357012819, + "max_x": 1771.473033428916, + "max_y": 5223.311939132911, + "center": [ + 1771.1644010394525, + 5223.127148072865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1771.473033428916, + 5222.942357012819 + ], + [ + 1770.855768649989, + 5223.311939132911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5222.21439657398, + "max_x": 1770.855768649989, + "max_y": 5223.311939132911, + "center": [ + 1770.855768649989, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.855768649989, + 5223.311939132911 + ], + [ + 1770.855768649989, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.855768649989, + "min_y": 5222.21439657398, + "max_x": 1771.475333206055, + "max_y": 5222.585355666391, + "center": [ + 1771.165550928022, + 5222.399876120186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.855768649989, + 5222.21439657398 + ], + [ + 1771.475333206055, + 5222.585355666391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.688850739635, + "min_y": 5222.21439657398, + "max_x": 1772.688850739635, + "max_y": 5223.311939132911, + "center": [ + 1772.688850739635, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5223.311939132911 + ], + [ + 1772.688850739635, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.073691039673, + "min_y": 5222.21439657398, + "max_x": 1772.688850739635, + "max_y": 5222.582718295666, + "center": [ + 1772.381270889654, + 5222.398557434823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5222.21439657398 + ], + [ + 1772.073691039673, + 5222.582718295666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1772.073691039673, + "min_y": 5222.948892152673, + "max_x": 1772.688850739635, + "max_y": 5223.317213874358, + "center": [ + 1772.381270889654, + 5223.133053013515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1772.688850739635, + 5223.317213874358 + ], + [ + 1772.073691039673, + 5222.948892152673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1782.441122880981, + "min_y": 5222.21439657398, + "max_x": 1782.441122880981, + "max_y": 5223.311939132911, + "center": [ + 1782.441122880981, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.441122880981, + 5222.21439657398 + ], + [ + 1782.441122880981, + 5223.311939132911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.023015255419, + "min_y": 5222.21439657398, + "max_x": 1780.023015255419, + "max_y": 5223.311939132911, + "center": [ + 1780.023015255419, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.023015255419, + 5223.311939132911 + ], + [ + 1780.023015255419, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1780.9192849501305, + "min_y": 5222.414532170929, + "max_x": 1781.6218310566096, + "max_y": 5223.117078277408, + "center": [ + 1781.27055800337, + 5222.765805224169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1781.27055800337, + 5222.765805224169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5222.942357012819, + "max_x": 1780.966876881366, + "max_y": 5223.311939132911, + "center": [ + 1780.658244491902, + 5223.127148072865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.966876881366, + 5222.942357012819 + ], + [ + 1780.349612102438, + 5223.311939132911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5222.21439657398, + "max_x": 1780.349612102438, + "max_y": 5223.311939132911, + "center": [ + 1780.349612102438, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.349612102438, + 5223.311939132911 + ], + [ + 1780.349612102438, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.349612102438, + "min_y": 5222.21439657398, + "max_x": 1780.969176658504, + "max_y": 5222.585355666391, + "center": [ + 1780.659394380471, + 5222.399876120186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.349612102438, + 5222.21439657398 + ], + [ + 1780.969176658504, + 5222.585355666391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1782.182694192085, + "min_y": 5222.21439657398, + "max_x": 1782.182694192085, + "max_y": 5223.311939132911, + "center": [ + 1782.182694192085, + 5222.763167853445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5223.311939132911 + ], + [ + 1782.182694192085, + 5222.21439657398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.567534492122, + "min_y": 5222.21439657398, + "max_x": 1782.182694192085, + "max_y": 5222.582718295666, + "center": [ + 1781.8751143421034, + 5222.398557434823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5222.21439657398 + ], + [ + 1781.567534492122, + 5222.582718295666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1781.567534492122, + "min_y": 5222.948892152673, + "max_x": 1782.182694192085, + "max_y": 5223.317213874358, + "center": [ + 1781.8751143421034, + 5223.133053013515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1782.182694192085, + 5223.317213874358 + ], + [ + 1781.567534492122, + 5222.948892152673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1778.231238570021, + "min_y": 5216.579714792771, + "max_x": 1778.23124065325, + "max_y": 5217.624502237381, + "center": [ + 1778.2312396116356, + 5217.102108515076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1778.23124065325, + 5217.624502237381 + ], + [ + 1778.231238570021, + 5216.579714792771 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.761388810858, + "min_y": 5216.579719717461, + "max_x": 1775.761390894086, + "max_y": 5217.624507162083, + "center": [ + 1775.761389852472, + 5217.102113439772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.761390894086, + 5217.624507162083 + ], + [ + 1775.761388810858, + 5216.579719717461 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.154890824309, + "min_y": 5217.267762475509, + "max_x": 1776.71960079668, + "max_y": 5217.605879374693, + "center": [ + 1776.4372458104945, + 5217.436820925101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.154890824309, + 5217.605879374693 + ], + [ + 1776.71960079668, + 5217.267762475509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.272930447302, + "min_y": 5216.598342580361, + "max_x": 1777.837640419673, + "max_y": 5216.936459479541, + "center": [ + 1777.5552854334876, + 5216.767401029951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.272930447302, + 5216.936459479541 + ], + [ + 1777.837640419673, + 5216.598342580361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.837640419673, + "min_y": 5216.598342580361, + "max_x": 1777.83764242862, + "max_y": 5217.605876019407, + "center": [ + 1777.8376414241466, + 5217.1021092998835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.83764242862, + 5217.605876019407 + ], + [ + 1777.837640419673, + 5216.598342580361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.15488881536, + "min_y": 5216.598345935643, + "max_x": 1776.154890824309, + "max_y": 5217.605879374693, + "center": [ + 1776.1548898198344, + 5217.102112655168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.154890824309, + 5217.605879374693 + ], + [ + 1776.15488881536, + 5216.598345935643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1776.15488881536, + "min_y": 5216.598345935643, + "max_x": 1776.719600136089, + "max_y": 5216.936460582846, + "center": [ + 1776.4372444757246, + 5216.767403259244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.15488881536, + 5216.598345935643 + ], + [ + 1776.719600136089, + 5216.936460582846 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1777.272931107894, + "min_y": 5217.267761372209, + "max_x": 1777.83764242862, + "max_y": 5217.605876019407, + "center": [ + 1777.555286768257, + 5217.436818695808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1777.272931107894, + 5217.267761372209 + ], + [ + 1777.83764242862, + 5217.605876019407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1776.6738003613075, + "min_y": 5216.7796457168415, + "max_x": 1777.3187308826725, + "max_y": 5217.424576238206, + "center": [ + 1776.99626562199, + 5217.102110977524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1776.99626562199, + 5217.102110977524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BB8", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1774.355032415073, + "min_y": 5221.663059778991, + "max_x": 1774.355032415073, + "max_y": 5222.763167853447, + "center": [ + 1774.355032415073, + 5222.2131138162185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.355032415073, + 5221.663059778991 + ], + [ + 1774.355032415073, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BB9", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1778.231239611636, + "min_y": 5217.102108515074, + "max_x": 1783.256917219862, + "max_y": 5217.102108515076, + "center": [ + 1780.744078415749, + 5217.102108515075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.256917219862, + 5217.102108515074 + ], + [ + 1778.231239611636, + 5217.102108515076 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5221.663059778991, + "max_x": 1774.901166323817, + "max_y": 5221.663059778991, + "center": [ + 1774.352395044352, + 5221.663059778991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5221.663059778991 + ], + [ + 1773.803623764887, + 5221.663059778991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5219.244952153428, + "max_x": 1774.901166323817, + "max_y": 5219.244952153428, + "center": [ + 1774.352395044352, + 5219.244952153428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5219.244952153428 + ], + [ + 1774.901166323817, + 5219.244952153428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BBC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1773.9984846203904, + "min_y": 5220.14122184814, + "max_x": 1774.7010307268695, + "max_y": 5220.843767954619, + "center": [ + 1774.34975767363, + 5220.492494901379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.34975767363, + 5220.492494901379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5219.571549000447, + "max_x": 1774.17320588498, + "max_y": 5220.188813779375, + "center": [ + 1773.9884148249334, + 5219.880181389911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.17320588498, + 5220.188813779375 + ], + [ + 1773.803623764887, + 5219.571549000447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5219.571549000447, + "max_x": 1774.901166323817, + "max_y": 5219.571549000447, + "center": [ + 1774.352395044352, + 5219.571549000447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5219.571549000447 + ], + [ + 1774.901166323817, + 5219.571549000447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.530207231408, + "min_y": 5219.571549000447, + "max_x": 1774.901166323817, + "max_y": 5220.191113556513, + "center": [ + 1774.7156867776125, + 5219.8813312784805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5219.571549000447 + ], + [ + 1774.530207231408, + 5220.191113556513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.803623764887, + "min_y": 5221.404631090093, + "max_x": 1774.901166323817, + "max_y": 5221.404631090093, + "center": [ + 1774.352395044352, + 5221.404631090093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.803623764887, + 5221.404631090093 + ], + [ + 1774.901166323817, + 5221.404631090093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.532844602132, + "min_y": 5220.78947139013, + "max_x": 1774.901166323817, + "max_y": 5221.404631090093, + "center": [ + 1774.7170054629746, + 5221.097051240111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.901166323817, + 5221.404631090093 + ], + [ + 1774.532844602132, + 5220.78947139013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.79834902344, + "min_y": 5220.78947139013, + "max_x": 1774.166670745126, + "max_y": 5221.404631090093, + "center": [ + 1773.982509884283, + 5221.097051240111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.79834902344, + 5221.404631090093 + ], + [ + 1774.166670745126, + 5220.78947139013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BC3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1776.103433341834, + "min_y": 5220.200260689331, + "max_x": 1778.1192197725422, + "max_y": 5221.3201420397245, + "center": [ + 1777.111326557188, + 5220.760201364528 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BC4", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1778.701909723279, + "min_y": 5222.763167853447, + "max_x": 1780.023015255419, + "max_y": 5222.763167853447, + "center": [ + 1779.3624624893491, + 5222.763167853447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.023015255419, + 5222.763167853447 + ], + [ + 1778.701909723279, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BC5", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1768.518466609257, + "min_y": 5222.763167853447, + "max_x": 1770.52917180297, + "max_y": 5222.763167853447, + "center": [ + 1769.5238192061136, + 5222.763167853447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.52917180297, + 5222.763167853447 + ], + [ + 1768.518466609257, + 5222.763167853447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BC6", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1774.976703723026, + "min_y": 5217.102108515077, + "max_x": 1775.761389852461, + "max_y": 5217.102108515077, + "center": [ + 1775.3690467877436, + 5217.102108515077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.761389852461, + 5217.102108515077 + ], + [ + 1774.976703723026, + 5217.102108515077 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1776.410788558105, + "min_y": 5215.424351976869, + "max_x": 1777.3800834948838, + "max_y": 5216.232097757518, + "center": [ + 1776.8954360264943, + 5215.828224867193 + ] + }, + "raw_value": "NC", + "clean_value": "NC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BC8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1775.711097188003, + "min_y": 5224.193871880999, + "max_x": 1781.7584564801273, + "max_y": 5225.313753231392, + "center": [ + 1778.734776834065, + 5224.753812556195 + ] + }, + "raw_value": "TR-10115B", + "clean_value": "TR-10115B", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555BCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.906042285867, + "min_y": 5209.163200214947, + "max_x": 1779.906042285867, + "max_y": 5210.214004619906, + "center": [ + 1779.906042285867, + 5209.688602417426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285867, + 5210.214004619906 + ], + [ + 1779.906042285867, + 5209.163200214947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.357271006404, + "min_y": 5208.50948860986, + "max_x": 1779.357271006404, + "max_y": 5209.252805725856, + "center": [ + 1779.357271006404, + 5208.881147167858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.357271006404, + 5209.252805725856 + ], + [ + 1779.357271006404, + 5208.50948860986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1780.454813565334, + "min_y": 5208.50948860986, + "max_x": 1780.454813565334, + "max_y": 5209.252805725856, + "center": [ + 1780.454813565334, + 5208.881147167858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.454813565334, + 5209.252805725856 + ], + [ + 1780.454813565334, + 5208.50948860986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.357271006404, + "min_y": 5208.50948860986, + "max_x": 1780.454813565334, + "max_y": 5208.50948860986, + "center": [ + 1779.906042285869, + 5208.50948860986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.357271006404, + 5208.50948860986 + ], + [ + 1780.454813565334, + 5208.50948860986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.385316418193, + "min_y": 5213.284080072694, + "max_x": 1780.430103862804, + "max_y": 5213.284080072694, + "center": [ + 1779.9077101404985, + 5213.284080072694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.430103862804, + 5213.284080072694 + ], + [ + 1779.385316418193, + 5213.284080072694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.385316418193, + "min_y": 5213.583892815063, + "max_x": 1780.430103862804, + "max_y": 5213.583892815063, + "center": [ + 1779.9077101404985, + 5213.583892815063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.430103862804, + 5213.583892815063 + ], + [ + 1779.385316418193, + 5213.583892815063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.383648563558, + "min_y": 5210.513817362278, + "max_x": 1780.428436008177, + "max_y": 5210.513817362278, + "center": [ + 1779.9060422858674, + 5210.513817362278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.428436008177, + 5210.513817362278 + ], + [ + 1779.383648563558, + 5210.513817362278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1779.383648563558, + "min_y": 5210.214004619906, + "max_x": 1780.428436008177, + "max_y": 5210.214004619906, + "center": [ + 1779.9060422858674, + 5210.214004619906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1780.428436008177, + 5210.214004619906 + ], + [ + 1779.383648563558, + 5210.214004619906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758973, + "min_y": 5212.888334281869, + "max_x": 1780.1039186958308, + "max_y": 5213.2840871018025, + "center": [ + 1779.906042285864, + 5213.086210691836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5213.086210691836 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758987, + "min_y": 5212.49258146194, + "max_x": 1780.1039186958294, + "max_y": 5212.88833428187, + "center": [ + 1779.906042285864, + 5212.690457871905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5212.690457871905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758987, + "min_y": 5212.096828642009, + "max_x": 1780.1039186958294, + "max_y": 5212.492581461939, + "center": [ + 1779.906042285864, + 5212.294705051974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5212.294705051974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BD9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758968, + "min_y": 5212.096828642004, + "max_x": 1780.1039186958312, + "max_y": 5212.492581461937, + "center": [ + 1779.906042285864, + 5212.294705051971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5212.294705051971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BDA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758987, + "min_y": 5211.701075822075, + "max_x": 1780.1039186958294, + "max_y": 5212.096828642005, + "center": [ + 1779.906042285864, + 5211.89895223204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5211.89895223204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BDB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758966, + "min_y": 5211.305323002139, + "max_x": 1780.1039186958315, + "max_y": 5211.701075822074, + "center": [ + 1779.906042285864, + 5211.503199412106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5211.503199412106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BDC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758987, + "min_y": 5210.909570182208, + "max_x": 1780.1039186958294, + "max_y": 5211.305323002138, + "center": [ + 1779.906042285864, + 5211.107446592173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5211.107446592173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BDD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1779.7081658758987, + "min_y": 5210.51381736228, + "max_x": 1780.1039186958294, + "max_y": 5210.90957018221, + "center": [ + 1779.906042285864, + 5210.711693772245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1779.906042285864, + 5210.711693772245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BDE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1775.686932023288, + "min_y": 5206.881112971099, + "max_x": 1781.7342913154123, + "max_y": 5208.000994321493, + "center": [ + 1778.71061166935, + 5207.4410536462965 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.350727189721, + "min_y": 5214.824259553311, + "max_x": 1774.350727189721, + "max_y": 5215.875063958272, + "center": [ + 1774.350727189721, + 5215.349661755792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189721, + 5215.875063958272 + ], + [ + 1774.350727189721, + 5214.824259553311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5214.170547948225, + "max_x": 1773.801955910258, + "max_y": 5214.913865064222, + "center": [ + 1773.801955910258, + 5214.542206506223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.801955910258, + 5214.913865064222 + ], + [ + 1773.801955910258, + 5214.170547948225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1774.899498469188, + "min_y": 5214.170547948225, + "max_x": 1774.899498469188, + "max_y": 5214.913865064222, + "center": [ + 1774.899498469188, + 5214.542206506223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.899498469188, + 5214.913865064222 + ], + [ + 1774.899498469188, + 5214.170547948225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.801955910258, + "min_y": 5214.170547948225, + "max_x": 1774.899498469188, + "max_y": 5214.170547948225, + "center": [ + 1774.3507271897229, + 5214.170547948225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.801955910258, + 5214.170547948225 + ], + [ + 1774.899498469188, + 5214.170547948225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.830001322046, + "min_y": 5218.945139411058, + "max_x": 1774.874788766658, + "max_y": 5218.945139411058, + "center": [ + 1774.3523950443519, + 5218.945139411058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.874788766658, + 5218.945139411058 + ], + [ + 1773.830001322046, + 5218.945139411058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.830001322046, + "min_y": 5219.244952153428, + "max_x": 1774.874788766658, + "max_y": 5219.244952153428, + "center": [ + 1774.3523950443519, + 5219.244952153428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.874788766658, + 5219.244952153428 + ], + [ + 1773.830001322046, + 5219.244952153428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.828333467411, + "min_y": 5216.174876700642, + "max_x": 1774.873120912031, + "max_y": 5216.174876700642, + "center": [ + 1774.350727189721, + 5216.174876700642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.873120912031, + 5216.174876700642 + ], + [ + 1773.828333467411, + 5216.174876700642 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1773.828333467411, + "min_y": 5215.875063958272, + "max_x": 1774.873120912031, + "max_y": 5215.875063958272, + "center": [ + 1774.350727189721, + 5215.875063958272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.873120912031, + 5215.875063958272 + ], + [ + 1773.828333467411, + 5215.875063958272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797502, + "min_y": 5218.549393620236, + "max_x": 1774.5486035996837, + "max_y": 5218.945146440169, + "center": [ + 1774.350727189717, + 5218.747270030202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5218.747270030202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5218.153640800305, + "max_x": 1774.5486035996823, + "max_y": 5218.549393620235, + "center": [ + 1774.350727189717, + 5218.35151721027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5218.35151721027 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BE9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5217.757887980374, + "max_x": 1774.5486035996823, + "max_y": 5218.153640800304, + "center": [ + 1774.350727189717, + 5217.955764390339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5217.955764390339 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BEA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797498, + "min_y": 5217.75788798037, + "max_x": 1774.5486035996842, + "max_y": 5218.153640800303, + "center": [ + 1774.350727189717, + 5217.955764390336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5217.955764390336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BEB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5217.36213516044, + "max_x": 1774.5486035996823, + "max_y": 5217.75788798037, + "center": [ + 1774.350727189717, + 5217.560011570405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5217.560011570405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BEC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797495, + "min_y": 5216.966382340504, + "max_x": 1774.5486035996844, + "max_y": 5217.36213516044, + "center": [ + 1774.350727189717, + 5217.164258750472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5217.164258750472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5216.570629520573, + "max_x": 1774.5486035996823, + "max_y": 5216.966382340503, + "center": [ + 1774.350727189717, + 5216.768505930538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5216.768505930538 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BEE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1774.1528507797516, + "min_y": 5216.174876700644, + "max_x": 1774.5486035996823, + "max_y": 5216.570629520574, + "center": [ + 1774.350727189717, + 5216.372753110609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1774.350727189717, + 5216.372753110609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BEF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1769.72879366189, + "min_y": 5212.786121701588, + "max_x": 1775.7761529540144, + "max_y": 5213.906003051981, + "center": [ + 1772.7524733079522, + 5213.346062376784 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555BF0", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1769.637859762922, + "min_y": 5217.102108515078, + "max_x": 1773.607603088098, + "max_y": 5217.102108515079, + "center": [ + 1771.62273142551, + 5217.102108515079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1773.607603088098, + 5217.102108515078 + ], + [ + 1769.637859762922, + 5217.102108515079 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.028953207774, + "min_y": 5248.396366893504, + "max_x": 1784.028953207774, + "max_y": 5251.998912333434, + "center": [ + 1784.028953207774, + 5250.197639613469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.028953207774, + 5248.396366893504 + ], + [ + 1784.028953207774, + 5251.998912333434 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555BF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.826224656066, + "min_y": 5249.128578451621, + "max_x": 1768.982308142824, + "max_y": 5249.892748730005, + "center": [ + 1768.904266399445, + 5249.510663590813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.982308142824, + 5249.892748730005 + ], + [ + 1768.826224656066, + 5249.128578451621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.046569727133, + "min_y": 5249.128682192442, + "max_x": 1768.202399045605, + "max_y": 5249.892904341238, + "center": [ + 1768.124484386369, + 5249.51079326684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.046569727133, + 5249.892904341238 + ], + [ + 1768.202399045605, + 5249.128682192442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.202399045605, + "min_y": 5249.128578451621, + "max_x": 1768.826224656066, + "max_y": 5249.128682192442, + "center": [ + 1768.5143118508354, + 5249.128630322031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.202399045605, + 5249.128682192442 + ], + [ + 1768.826224656066, + 5249.128578451621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.046569727133, + "min_y": 5249.892748730005, + "max_x": 1768.982308142824, + "max_y": 5249.892904341238, + "center": [ + 1768.5144389349784, + 5249.892826535622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.046569727133, + 5249.892904341238 + ], + [ + 1768.982308142824, + 5249.892748730005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.108132712137, + "min_y": 5249.892758967793, + "max_x": 1768.920745157825, + "max_y": 5249.892894103449, + "center": [ + 1768.514438934981, + 5249.892826535621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.920745157825, + 5249.892758967793 + ], + [ + 1768.108132712137, + 5249.892894103449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1953.855142266071, + "min_y": 5304.270115367831, + "max_x": 1955.668946896422, + "max_y": 5305.277784606915, + "center": [ + 1954.7620445812465, + 5304.773949987373 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1893.505065901147, + "min_y": 5304.725100850479, + "max_x": 1895.318870531498, + "max_y": 5305.732770089563, + "center": [ + 1894.4119682163225, + 5305.228935470021 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.353306887861, + "min_y": 5246.660212748668, + "max_x": 1906.353306887861, + "max_y": 5247.669501536954, + "center": [ + 1906.353306887861, + 5247.16485714281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.353306887861, + 5246.660212748668 + ], + [ + 1906.353306887861, + 5247.669501536954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1904.8830524093103, + "min_y": 5246.8394047764705, + "max_x": 1905.5291065442977, + "max_y": 5247.485458911458, + "center": [ + 1905.206079476804, + 5247.162431843964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1905.206079476804, + 5247.162431843964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1905.485341496443, + "min_y": 5246.660212748668, + "max_x": 1906.052971804448, + "max_y": 5247.000076644717, + "center": [ + 1905.7691566504454, + 5246.8301446966925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1905.485341496443, + 5247.000076644717 + ], + [ + 1906.052971804448, + 5246.660212748668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.052971804448, + "min_y": 5246.660212748668, + "max_x": 1906.052971804448, + "max_y": 5247.669501536954, + "center": [ + 1906.052971804448, + 5247.16485714281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.052971804448, + 5246.660212748668 + ], + [ + 1906.052971804448, + 5247.669501536954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1905.483226645165, + "min_y": 5247.328371391398, + "max_x": 1906.052971804448, + "max_y": 5247.669501536954, + "center": [ + 1905.7680992248065, + 5247.498936464176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.052971804448, + 5247.669501536954 + ], + [ + 1905.483226645165, + 5247.328371391398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.367288469405, + "min_y": 5246.660212748668, + "max_x": 1904.932982968566, + "max_y": 5246.998917595377, + "center": [ + 1904.6501357189854, + 5246.829565172022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.932982968566, + 5246.998917595377 + ], + [ + 1904.367288469405, + 5246.660212748668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555BFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.367288469405, + "min_y": 5246.660212748668, + "max_x": 1904.367288469405, + "max_y": 5247.669501536954, + "center": [ + 1904.367288469405, + 5247.16485714281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.367288469405, + 5246.660212748668 + ], + [ + 1904.367288469405, + 5247.669501536954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.367288469405, + "min_y": 5247.330796690244, + "max_x": 1904.932982968566, + "max_y": 5247.669501536954, + "center": [ + 1904.6501357189854, + 5247.500149113599 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.367288469405, + 5247.669501536954 + ], + [ + 1904.932982968566, + 5247.330796690244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.12964011933, + "min_y": 5246.660212748668, + "max_x": 1904.12964011933, + "max_y": 5247.669501536954, + "center": [ + 1904.12964011933, + 5247.16485714281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.12964011933, + 5247.669501536954 + ], + [ + 1904.12964011933, + 5246.660212748668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C02", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1906.353306887861, + "min_y": 5247.117262664708, + "max_x": 1907.231535456273, + "max_y": 5247.117262664708, + "center": [ + 1906.792421172067, + 5247.117262664708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5247.117262664708 + ], + [ + 1906.353306887861, + 5247.117262664708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C03", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1903.247487094509, + "min_y": 5247.139817264442, + "max_x": 1904.12571566292, + "max_y": 5247.139817264442, + "center": [ + 1903.6866013787144, + 5247.139817264442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.12571566292, + 5247.139817264442 + ], + [ + 1903.247487094509, + 5247.139817264442 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.958075612853, + "min_y": 5247.485911031945, + "max_x": 1903.47839759405, + "max_y": 5247.485911031945, + "center": [ + 1903.2182366034515, + 5247.485911031945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.47839759405, + 5247.485911031945 + ], + [ + 1902.958075612853, + 5247.485911031945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.958075612853, + "min_y": 5246.717631240695, + "max_x": 1903.47839759405, + "max_y": 5246.717631240695, + "center": [ + 1903.2182366034515, + 5246.717631240695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.47839759405, + 5246.717631240695 + ], + [ + 1902.958075612853, + 5246.717631240695 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1902.958075612853, + "min_y": 5246.717631240695, + "max_x": 1902.958075612853, + "max_y": 5247.485911031945, + "center": [ + 1902.958075612853, + 5247.10177113632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.958075612853, + 5247.485911031945 + ], + [ + 1902.958075612853, + 5246.717631240695 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.994037698021, + "min_y": 5306.666973346676, + "max_x": 1953.994037698021, + "max_y": 5307.676262134961, + "center": [ + 1953.994037698021, + 5307.171617740818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.994037698021, + 5306.666973346676 + ], + [ + 1953.994037698021, + 5307.676262134961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C08", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1952.5237832194712, + "min_y": 5306.846165374477, + "max_x": 1953.1698373544587, + "max_y": 5307.492219509465, + "center": [ + 1952.846810286965, + 5307.169192441971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.846810286965, + 5307.169192441971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.126072306603, + "min_y": 5306.666973346676, + "max_x": 1953.693702614608, + "max_y": 5307.006837242724, + "center": [ + 1953.4098874606054, + 5306.8369052947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.126072306603, + 5307.006837242724 + ], + [ + 1953.693702614608, + 5306.666973346676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.693702614608, + "min_y": 5306.666973346676, + "max_x": 1953.693702614608, + "max_y": 5307.676262134961, + "center": [ + 1953.693702614608, + 5307.171617740818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.693702614608, + 5306.666973346676 + ], + [ + 1953.693702614608, + 5307.676262134961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1953.123957455325, + "min_y": 5307.335131989406, + "max_x": 1953.693702614608, + "max_y": 5307.676262134961, + "center": [ + 1953.4088300349663, + 5307.505697062184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1953.693702614608, + 5307.676262134961 + ], + [ + 1953.123957455325, + 5307.335131989406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.008019279564, + "min_y": 5306.666973346676, + "max_x": 1952.573713778726, + "max_y": 5307.005678193384, + "center": [ + 1952.290866529145, + 5306.836325770029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.573713778726, + 5307.005678193384 + ], + [ + 1952.008019279564, + 5306.666973346676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.008019279564, + "min_y": 5306.666973346676, + "max_x": 1952.008019279564, + "max_y": 5307.676262134961, + "center": [ + 1952.008019279564, + 5307.171617740818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.008019279564, + 5306.666973346676 + ], + [ + 1952.008019279564, + 5307.676262134961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1952.008019279564, + "min_y": 5307.337557288252, + "max_x": 1952.573713778726, + "max_y": 5307.676262134961, + "center": [ + 1952.290866529145, + 5307.506909711607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1952.008019279564, + 5307.676262134961 + ], + [ + 1952.573713778726, + 5307.337557288252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1951.77037092949, + "min_y": 5306.666973346676, + "max_x": 1951.77037092949, + "max_y": 5307.676262134961, + "center": [ + 1951.77037092949, + 5307.171617740818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.77037092949, + 5307.676262134961 + ], + [ + 1951.77037092949, + 5306.666973346676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C10", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1953.994037698021, + "min_y": 5307.124023262716, + "max_x": 1954.872266266433, + "max_y": 5307.124023262716, + "center": [ + 1954.433151982227, + 5307.124023262716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.872266266433, + 5307.124023262716 + ], + [ + 1953.994037698021, + 5307.124023262716 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C11", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1950.888217904669, + "min_y": 5307.14657786245, + "max_x": 1951.76644647308, + "max_y": 5307.14657786245, + "center": [ + 1951.3273321888746, + 5307.14657786245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.76644647308, + 5307.14657786245 + ], + [ + 1950.888217904669, + 5307.14657786245 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.598806423013, + "min_y": 5307.492671629952, + "max_x": 1951.11912840421, + "max_y": 5307.492671629952, + "center": [ + 1950.8589674136115, + 5307.492671629952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.11912840421, + 5307.492671629952 + ], + [ + 1950.598806423013, + 5307.492671629952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.598806423013, + "min_y": 5306.724391838702, + "max_x": 1951.11912840421, + "max_y": 5306.724391838702, + "center": [ + 1950.8589674136115, + 5306.724391838702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1951.11912840421, + 5306.724391838702 + ], + [ + 1950.598806423013, + 5306.724391838702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1950.598806423013, + "min_y": 5306.724391838702, + "max_x": 1950.598806423013, + "max_y": 5307.492671629952, + "center": [ + 1950.598806423013, + 5307.108531734328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1950.598806423013, + 5307.492671629952 + ], + [ + 1950.598806423013, + 5306.724391838702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C15", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1844.61193645362, + "min_y": 5268.593448067332, + "max_x": 1844.61193645362, + "max_y": 5270.646436339072, + "center": [ + 1844.61193645362, + 5269.619942203202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.61193645362, + 5268.593448067332 + ], + [ + 1844.61193645362, + 5270.646436339072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C16", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5268.525602598117, + "center": [ + 1845.834952423042, + 5268.525602598117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5268.525602598117 + ], + [ + 1846.517468508653, + 5268.525602598117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C17", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1844.61193645362, + "min_y": 5269.619942203203, + "max_x": 1845.834952423045, + "max_y": 5269.619942203203, + "center": [ + 1845.2234444383325, + 5269.619942203203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.834952423045, + 5269.619942203203 + ], + [ + 1844.61193645362, + 5269.619942203203 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C18", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5270.714281808288, + "max_x": 1846.517468508653, + "max_y": 5270.714281808288, + "center": [ + 1845.834952423042, + 5270.714281808288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5270.714281808288 + ], + [ + 1846.517468508653, + 5270.714281808288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C19", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5270.714281808288, + "center": [ + 1845.834952423042, + 5269.619942203202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.517468508653, + 5268.525602598117 + ], + [ + 1845.152436337431, + 5270.714281808288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5270.714281808288, + "center": [ + 1845.834952423042, + 5269.619942203202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5268.525602598117 + ], + [ + 1846.517468508653, + 5270.714281808288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5268.525602598117, + "center": [ + 1845.834952423042, + 5268.525602598117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5268.525602598117 + ], + [ + 1846.517468508653, + 5268.525602598117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5268.525602598117, + "center": [ + 1845.834952423042, + 5268.525602598117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5268.525602598117 + ], + [ + 1846.517468508653, + 5268.525602598117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.152436337431, + "min_y": 5268.525602598117, + "max_x": 1846.517468508653, + "max_y": 5268.525602598117, + "center": [ + 1845.834952423042, + 5268.525602598117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.152436337431, + 5268.525602598117 + ], + [ + 1846.517468508653, + 5268.525602598117 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1844.162675855562, + "min_y": 5268.593448067332, + "max_x": 1844.162675855562, + "max_y": 5270.646436339072, + "center": [ + 1844.162675855562, + 5269.619942203202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1844.162675855562, + 5268.593448067332 + ], + [ + 1844.162675855562, + 5270.646436339072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C1F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1843.713415257506, + "min_y": 5268.593448067332, + "max_x": 1843.713415257506, + "max_y": 5270.646436339072, + "center": [ + 1843.713415257506, + 5269.619942203202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.713415257506, + 5268.593448067332 + ], + [ + 1843.713415257506, + 5270.646436339072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C20", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1843.713415257506, + "min_y": 5268.593448067332, + "max_x": 1844.61193645362, + "max_y": 5268.593448067332, + "center": [ + 1844.162675855563, + 5268.593448067332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.713415257506, + 5268.593448067332 + ], + [ + 1844.61193645362, + 5268.593448067332 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C21", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1843.713415257506, + "min_y": 5270.646436339072, + "max_x": 1844.61193645362, + "max_y": 5270.646436339072, + "center": [ + 1844.162675855563, + 5270.646436339072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1843.713415257506, + 5270.646436339072 + ], + [ + 1844.61193645362, + 5270.646436339072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C22", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.6103221240123, + "min_y": 5268.0763420000485, + "max_x": 1846.0595827220695, + "max_y": 5268.525602598106, + "center": [ + 1845.834952423041, + 5268.300972299077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.834952423041, + 5268.300972299077 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C23", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1845.6103221240123, + "min_y": 5270.714281808288, + "max_x": 1846.0595827220695, + "max_y": 5271.163542406346, + "center": [ + 1845.834952423041, + 5270.938912107317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.834952423041, + 5270.938912107317 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C24", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1847.273521243468, + "min_y": 5268.046595381156, + "max_x": 1848.5636183974243, + "max_y": 5269.1216763427865, + "center": [ + 1847.918569820446, + 5268.584135861971 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "555C25", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1850.8134575765703, + "min_y": 5267.2475590982285, + "max_x": 1856.4128375850619, + "max_y": 5272.846939106719, + "center": [ + 1853.613147580816, + 5270.047249102474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1853.613147580816, + 5270.047249102474 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C26", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1852.785109244064, + "min_y": 5270.47953221016, + "max_x": 1854.295833169115, + "max_y": 5271.738468814369, + "center": [ + 1853.5404712065895, + 5271.109000512264 + ] + }, + "raw_value": "XV", + "clean_value": "XV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C27", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.661148808844, + "min_y": 5268.239780206763, + "max_x": 1855.4379586214716, + "max_y": 5269.498716810972, + "center": [ + 1853.5495537151578, + 5268.869248508867 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.855255252653, + "min_y": 5269.580008747939, + "max_x": 1850.838045449032, + "max_y": 5269.642528784375, + "center": [ + 1848.3466503508425, + 5269.611268766157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855255252653, + 5269.580008747939 + ], + [ + 1850.838045449032, + 5269.642528784375 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.917067330611, + "min_y": 5264.238871370753, + "max_x": 1845.855508124698, + "max_y": 5264.238871370753, + "center": [ + 1842.8862877276545, + 5264.238871370753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855508124698, + 5264.238871370753 + ], + [ + 1839.917067330611, + 5264.238871370753 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555C2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.917067330611, + "min_y": 5264.238871370753, + "max_x": 1839.917067330611, + "max_y": 5268.801053502036, + "center": [ + 1839.917067330611, + 5266.519962436394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.917067330611, + 5264.238871370753 + ], + [ + 1839.917067330611, + 5268.801053502036 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.917067330611, + "min_y": 5275.237105280318, + "max_x": 1845.855508124697, + "max_y": 5275.237105280318, + "center": [ + 1842.886287727654, + 5275.237105280318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.917067330611, + 5275.237105280318 + ], + [ + 1845.855508124697, + 5275.237105280318 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555C2C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1839.5651822809243, + "min_y": 5269.694472169234, + "max_x": 1840.2689523802976, + "max_y": 5270.398242268608, + "center": [ + 1839.917067330611, + 5270.046357218921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.917067330611, + 5270.046357218921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5271.291660935801, + "max_x": 1840.466794692732, + "max_y": 5271.291660935801, + "center": [ + 1839.9170673306126, + 5271.291660935801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.367339968493, + 5271.291660935801 + ], + [ + 1840.466794692732, + 5271.291660935801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5268.801053502036, + "max_x": 1840.466794692732, + "max_y": 5268.801053502036, + "center": [ + 1839.9170673306126, + 5268.801053502036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.367339968493, + 5268.801053502036 + ], + [ + 1840.466794692732, + 5268.801053502036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5269.128219354019, + "max_x": 1839.736303389226, + "max_y": 5269.744450800157, + "center": [ + 1839.5518216788596, + 5269.436335077088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.736303389226, + 5269.744450800157 + ], + [ + 1839.367339968493, + 5269.128219354019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5269.128219354019, + "max_x": 1840.466794692732, + "max_y": 5269.128219354019, + "center": [ + 1839.9170673306126, + 5269.128219354019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.367339968493, + 5269.128219354019 + ], + [ + 1840.466794692732, + 5269.128219354019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.097831271996, + "min_y": 5269.128219354019, + "max_x": 1840.466794692732, + "max_y": 5269.744450800157, + "center": [ + 1840.2823129823641, + 5269.436335077088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.466794692732, + 5269.128219354019 + ], + [ + 1840.097831271996, + 5269.744450800157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5270.348263637677, + "max_x": 1839.736303389229, + "max_y": 5270.964495083817, + "center": [ + 1839.551821678861, + 5270.656379360747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.736303389229, + 5270.348263637677 + ], + [ + 1839.367339968493, + 5270.964495083817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.367339968493, + "min_y": 5270.964495083817, + "max_x": 1840.466794692732, + "max_y": 5270.964495083817, + "center": [ + 1839.9170673306126, + 5270.964495083817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.367339968493, + 5270.964495083817 + ], + [ + 1840.466794692732, + 5270.964495083817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1840.097831271993, + "min_y": 5270.348263637677, + "max_x": 1840.466794692732, + "max_y": 5270.964495083817, + "center": [ + 1840.2823129823626, + 5270.656379360747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1840.466794692732, + 5270.964495083817 + ], + [ + 1840.097831271993, + 5270.348263637677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1839.917067330611, + "min_y": 5271.291660935801, + "max_x": 1839.917067330611, + "max_y": 5275.237105280318, + "center": [ + 1839.917067330611, + 5273.2643831080595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.917067330611, + 5275.237105280318 + ], + [ + 1839.917067330611, + 5271.291660935801 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555C36", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1775.642783757515, + "min_y": 5197.014608815837, + "max_x": 1787.5073405525711, + "max_y": 5198.554445672628, + "center": [ + 1781.575062155043, + 5197.784527244233 + ] + }, + "raw_value": "\\pi-0.39637;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10115A}", + "clean_value": "\\pi-0.39637; \\fArial|b1|i1|c238|p34; .3333x; E-10115A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555C3A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2008.180455269475, + "min_y": 5191.707011251327, + "max_x": 2013.779862021442, + "max_y": 5192.6402457099875, + "center": [ + 2010.9801586454587, + 5192.1736284806575 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C3B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2041.248708881225, + "min_y": 5191.502528584488, + "max_x": 2041.8086495564216, + "max_y": 5192.435763043149, + "center": [ + 2041.5286792188233, + 5191.969145813819 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C3C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2046.9193073953, + "min_y": 5191.502528584482, + "max_x": 2047.4792480704966, + "max_y": 5192.435763043143, + "center": [ + 2047.1992777328983, + 5191.969145813813 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C3D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2052.265820902739, + "min_y": 5191.502528584468, + "max_x": 2052.8257615779357, + "max_y": 5192.435763043129, + "center": [ + 2052.545791240337, + 5191.969145813799 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C3E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.221234410993, + "min_y": 5191.571986716562, + "max_x": 2029.7007598125667, + "max_y": 5192.505221175223, + "center": [ + 2027.4609971117798, + 5192.038603945892 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.855508124698, + "min_y": 5257.605076384972, + "max_x": 1847.512682025431, + "max_y": 5257.605076384972, + "center": [ + 1846.6840950750645, + 5257.605076384972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.512682025431, + 5257.605076384972 + ], + [ + 1845.855508124698, + 5257.605076384972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555C40", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1914.331505446925, + "min_y": 5324.411006809221, + "max_x": 1914.331505446925, + "max_y": 5325.019464632999, + "center": [ + 1914.331505446925, + 5324.715235721111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.331505446925, + 5325.019464632999 + ], + [ + 1914.331505446925, + 5324.411006809221 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.497156393259, + "min_y": 5323.452796195311, + "max_x": 1914.835272166451, + "max_y": 5324.017506841858, + "center": [ + 1914.666214279855, + 5323.735151518585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.835272166451, + 5324.017506841858 + ], + [ + 1914.497156393259, + 5323.452796195311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.827738727403, + "min_y": 5322.334755237541, + "max_x": 1914.165854500597, + "max_y": 5322.899465884096, + "center": [ + 1913.996796614, + 5322.617110560818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.165854500597, + 5322.899465884096 + ], + [ + 1913.827738727403, + 5322.334755237541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.827738727403, + "min_y": 5324.017506841858, + "max_x": 1914.835272166451, + "max_y": 5324.017506841858, + "center": [ + 1914.331505446927, + 5324.017506841858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.827738727403, + 5324.017506841858 + ], + [ + 1914.835272166451, + 5324.017506841858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.827738727403, + "min_y": 5322.334755237541, + "max_x": 1914.835272166451, + "max_y": 5322.334755237541, + "center": [ + 1914.331505446927, + 5322.334755237541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.827738727403, + 5322.334755237541 + ], + [ + 1914.835272166451, + 5322.334755237541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.827738727403, + "min_y": 5323.452796195311, + "max_x": 1914.165854500597, + "max_y": 5324.017506841858, + "center": [ + 1913.996796614, + 5323.735151518585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.827738727403, + 5324.017506841858 + ], + [ + 1914.165854500597, + 5323.452796195311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1914.497156393256, + "min_y": 5322.334755237541, + "max_x": 1914.835272166451, + "max_y": 5322.899465884096, + "center": [ + 1914.6662142798536, + 5322.617110560818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.497156393256, + 5322.899465884096 + ], + [ + 1914.835272166451, + 5322.334755237541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.809111724617, + "min_y": 5321.941255270179, + "max_x": 1914.853899169234, + "max_y": 5321.941255270179, + "center": [ + 1914.3315054469253, + 5321.941255270179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.809111724617, + 5321.941255270179 + ], + [ + 1914.853899169234, + 5321.941255270179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1913.809111724617, + "min_y": 5324.411006809221, + "max_x": 1914.853899169234, + "max_y": 5324.411006809221, + "center": [ + 1914.3315054469253, + 5324.411006809221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1913.809111724617, + 5324.411006809221 + ], + [ + 1914.853899169234, + 5324.411006809221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C49", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1914.0090401862424, + "min_y": 5322.853665779016, + "max_x": 1914.6539707076074, + "max_y": 5323.498596300381, + "center": [ + 1914.331505446925, + 5323.176131039699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.331505446925, + 5323.176131039699 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C4A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1914.331505446925, + "min_y": 5313.359246040018, + "max_x": 1914.331505446925, + "max_y": 5321.941255270179, + "center": [ + 1914.331505446925, + 5317.650250655099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.331505446925, + 5321.941255270179 + ], + [ + 1914.331505446925, + 5313.359246040018 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555C4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.087676813582, + "min_y": 5313.359246040024, + "max_x": 1926.753716415821, + "max_y": 5314.990959481478, + "center": [ + 1925.9206966147015, + 5314.1751027607515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.087676813582, + 5314.990959481478 + ], + [ + 1926.753716415821, + 5313.359246040024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1925.087676813582, + "min_y": 5311.72753259856, + "max_x": 1926.753716415821, + "max_y": 5313.359246040024, + "center": [ + 1925.9206966147015, + 5312.543389319292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.087676813582, + 5311.72753259856 + ], + [ + 1926.753716415821, + 5313.359246040024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.69783843117, + "min_y": 5311.72753259856, + "max_x": 1916.69783843117, + "max_y": 5314.990959481478, + "center": [ + 1916.69783843117, + 5313.35924604002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.69783843117, + 5314.990959481478 + ], + [ + 1916.69783843117, + 5311.72753259856 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.69783843117, + "min_y": 5314.990959481478, + "max_x": 1925.087676813582, + "max_y": 5314.990959481478, + "center": [ + 1920.892757622376, + 5314.990959481478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1916.69783843117, + 5314.990959481478 + ], + [ + 1925.087676813582, + 5314.990959481478 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1916.69783843117, + "min_y": 5311.72753259856, + "max_x": 1925.087676813582, + "max_y": 5311.72753259856, + "center": [ + 1920.892757622376, + 5311.72753259856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1925.087676813582, + 5311.72753259856 + ], + [ + 1916.69783843117, + 5311.72753259856 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C50", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1918.239900631642, + "min_y": 5312.667428443727, + "max_x": 1923.6153311135304, + "max_y": 5314.160603577585, + "center": [ + 1920.927615872586, + 5313.414016010656 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C51", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1914.331505446925, + "min_y": 5313.359246040018, + "max_x": 1916.69783843117, + "max_y": 5313.359246040018, + "center": [ + 1915.5146719390475, + 5313.359246040018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1914.331505446925, + 5313.359246040018 + ], + [ + 1916.69783843117, + 5313.359246040018 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555C52", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1913.066194119473, + "min_y": 5310.134659473871, + "max_x": 1925.8328415139579, + "max_y": 5311.254540824264, + "center": [ + 1919.4495178167153, + 5310.694600149067 + ] + }, + "raw_value": "SAM-10952-10A-F2A-n", + "clean_value": "SAM-10952-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.489002073809, + "min_y": 5296.128126947848, + "max_x": 1892.155041676048, + "max_y": 5297.759840389302, + "center": [ + 1891.3220218749284, + 5296.943983668574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.489002073809, + 5297.759840389302 + ], + [ + 1892.155041676048, + 5296.128126947848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.489002073809, + "min_y": 5294.496413506383, + "max_x": 1892.155041676048, + "max_y": 5296.128126947848, + "center": [ + 1891.3220218749284, + 5295.312270227116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.489002073809, + 5294.496413506383 + ], + [ + 1892.155041676048, + 5296.128126947848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.099163691397, + "min_y": 5294.496413506383, + "max_x": 1882.099163691397, + "max_y": 5297.759840389302, + "center": [ + 1882.099163691397, + 5296.128126947842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.099163691397, + 5297.759840389302 + ], + [ + 1882.099163691397, + 5294.496413506383 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.099163691397, + "min_y": 5297.759840389302, + "max_x": 1890.489002073809, + "max_y": 5297.759840389302, + "center": [ + 1886.294082882603, + 5297.759840389302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.099163691397, + 5297.759840389302 + ], + [ + 1890.489002073809, + 5297.759840389302 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.099163691397, + "min_y": 5294.496413506383, + "max_x": 1890.489002073809, + "max_y": 5294.496413506383, + "center": [ + 1886.294082882603, + 5294.496413506383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.489002073809, + 5294.496413506383 + ], + [ + 1882.099163691397, + 5294.496413506383 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C58", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1883.641225891869, + "min_y": 5295.436309351551, + "max_x": 1889.0166563737573, + "max_y": 5296.929484485409, + "center": [ + 1886.3289411328133, + 5296.182896918481 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C59", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1879.732830707152, + "min_y": 5296.128126947842, + "max_x": 1882.099163691397, + "max_y": 5296.128126947842, + "center": [ + 1880.9159971992744, + 5296.128126947842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1879.732830707152, + 5296.128126947842 + ], + [ + 1882.099163691397, + 5296.128126947842 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "555C5A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1881.300440399015, + "min_y": 5292.75572431982, + "max_x": 1894.0670877935, + "max_y": 5293.875605670213, + "center": [ + 1887.6837640962576, + 5293.315664995016 + ] + }, + "raw_value": "SAM-10953-10A-F2A-n", + "clean_value": "SAM-10953-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.884080983366, + "min_y": 5303.122757597686, + "max_x": 1873.884080983366, + "max_y": 5304.262865158676, + "center": [ + 1873.884080983366, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.884080983366, + 5304.262865158676 + ], + [ + 1873.884080983366, + 5303.122757597686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C5C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1872.2868922168013, + "min_y": 5303.340926328493, + "max_x": 1872.9906623161746, + "max_y": 5304.044696427866, + "center": [ + 1872.638777266488, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.638777266488, + 5303.69281137818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.884080983366, + "min_y": 5303.143084016062, + "max_x": 1873.884080983366, + "max_y": 5304.2425387403, + "center": [ + 1873.884080983366, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.884080983366, + 5303.143084016062 + ], + [ + 1873.884080983366, + 5304.2425387403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.392749710982, + "min_y": 5303.122757597686, + "max_x": 1871.392749710982, + "max_y": 5304.262865158676, + "center": [ + 1871.392749710982, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.392749710982, + 5304.262865158676 + ], + [ + 1871.392749710982, + 5303.122757597686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.392749710982, + "min_y": 5303.143084016062, + "max_x": 1871.392749710982, + "max_y": 5304.2425387403, + "center": [ + 1871.392749710982, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.392749710982, + 5303.143084016062 + ], + [ + 1871.392749710982, + 5304.2425387403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.392749710982, + "min_y": 5303.13691606078, + "max_x": 1871.392749710982, + "max_y": 5304.24870669558, + "center": [ + 1871.392749710982, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.392749710982, + 5304.24870669558 + ], + [ + 1871.392749710982, + 5303.13691606078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.556915131387, + "min_y": 5303.13691606078, + "max_x": 1873.556915131387, + "max_y": 5304.24870669558, + "center": [ + 1873.556915131387, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.556915131387, + 5304.24870669558 + ], + [ + 1873.556915131387, + 5303.13691606078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.884080983368, + "min_y": 5303.13691606078, + "max_x": 1873.884080983368, + "max_y": 5304.24870669558, + "center": [ + 1873.884080983368, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.884080983368, + 5304.24870669558 + ], + [ + 1873.884080983368, + 5303.13691606078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.720639401586, + "min_y": 5303.873575319568, + "max_x": 1872.336870847724, + "max_y": 5304.2425387403, + "center": [ + 1872.028755124655, + 5304.0580570299335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.336870847724, + 5303.873575319568 + ], + [ + 1871.720639401586, + 5304.2425387403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.720639401586, + "min_y": 5303.143084016062, + "max_x": 1871.720639401586, + "max_y": 5304.2425387403, + "center": [ + 1871.720639401586, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.720639401586, + 5304.2425387403 + ], + [ + 1871.720639401586, + 5303.143084016062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1871.720639401586, + "min_y": 5303.143084016062, + "max_x": 1872.336870847724, + "max_y": 5303.512047436795, + "center": [ + 1872.028755124655, + 5303.3275657264285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.720639401586, + 5303.143084016062 + ], + [ + 1872.336870847724, + 5303.512047436795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.940683685246, + "min_y": 5303.873575319562, + "max_x": 1873.556915131387, + "max_y": 5304.2425387403, + "center": [ + 1873.2487994083167, + 5304.058057029932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.940683685246, + 5303.873575319562 + ], + [ + 1873.556915131387, + 5304.2425387403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.556915131387, + "min_y": 5303.143084016062, + "max_x": 1873.556915131387, + "max_y": 5304.2425387403, + "center": [ + 1873.556915131387, + 5303.692811378181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.556915131387, + 5304.2425387403 + ], + [ + 1873.556915131387, + 5303.143084016062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1872.940683685246, + "min_y": 5303.143084016062, + "max_x": 1873.556915131387, + "max_y": 5303.512047436795, + "center": [ + 1873.2487994083167, + 5303.3275657264285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.556915131387, + 5303.143084016062 + ], + [ + 1872.940683685246, + 5303.512047436795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1870.571337256196, + "min_y": 5303.69281137818, + "max_x": 1871.392749710982, + "max_y": 5303.69281137818, + "center": [ + 1870.982043483589, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1871.392749710982, + 5303.69281137818 + ], + [ + 1870.571337256196, + 5303.69281137818 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555C6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1873.884080983368, + "min_y": 5303.69281137818, + "max_x": 1879.732830707152, + "max_y": 5303.69281137818, + "center": [ + 1876.8084558452601, + 5303.69281137818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1873.884080983368, + 5303.69281137818 + ], + [ + 1879.732830707152, + 5303.69281137818 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555C6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1879.732830707152, + "min_y": 5296.128126947842, + "max_x": 1879.732830707152, + "max_y": 5303.69281137818, + "center": [ + 1879.732830707152, + 5299.910469163011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1879.732830707152, + 5303.69281137818 + ], + [ + 1879.732830707152, + 5296.128126947842 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555C6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.876170664137, + "min_y": 5228.499212322986, + "max_x": 1730.682197190105, + "max_y": 5228.499814939947, + "center": [ + 1730.2791839271208, + 5228.4995136314665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.682197190105, + 5228.499814939947 + ], + [ + 1729.876170664137, + 5228.499212322986 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.877498350836, + "min_y": 5226.723373315202, + "max_x": 1730.683524876805, + "max_y": 5226.72397593216, + "center": [ + 1730.2805116138206, + 5226.723674623681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.877498350836, + 5226.723373315202 + ], + [ + 1730.683524876805, + 5226.72397593216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C6E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1730.019917565099, + "min_y": 5227.381886438819, + "max_x": 1730.5358619821911, + "max_y": 5227.89783085591, + "center": [ + 1730.277889773645, + 5227.639858647364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.277889773645, + 5227.639858647364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.877319029499, + "min_y": 5226.963223442066, + "max_x": 1730.14839828349, + "max_y": 5227.416740709134, + "center": [ + 1730.0128586564945, + 5227.1899820756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.14839828349, + 5227.416740709134 + ], + [ + 1729.877319029499, + 5226.963223442066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.877319029499, + "min_y": 5226.963223442066, + "max_x": 1730.683345555467, + "max_y": 5226.963826059022, + "center": [ + 1730.2803322924829, + 5226.963524750544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.877319029499, + 5226.963223442066 + ], + [ + 1730.683345555467, + 5226.963826059022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.41057597018, + "min_y": 5226.963826059022, + "max_x": 1730.683345555467, + "max_y": 5227.41862566241, + "center": [ + 1730.5469607628233, + 5227.191225860715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.683345555467, + 5226.963826059022 + ], + [ + 1730.41057597018, + 5227.41862566241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.876312557047, + "min_y": 5227.857858189111, + "max_x": 1730.147142859725, + "max_y": 5228.309424349277, + "center": [ + 1730.011727708386, + 5228.083641269193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.147142859725, + 5227.857858189111 + ], + [ + 1729.876312557047, + 5228.309424349277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1729.876312557047, + "min_y": 5228.309424349277, + "max_x": 1730.682339083016, + "max_y": 5228.310026966236, + "center": [ + 1730.2793258200313, + 5228.309725657757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1729.876312557047, + 5228.309424349277 + ], + [ + 1730.682339083016, + 5228.310026966236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.412184299778, + "min_y": 5227.858056344455, + "max_x": 1730.682339083016, + "max_y": 5228.310026966236, + "center": [ + 1730.547261691397, + 5228.084041655346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.682339083016, + 5228.310026966236 + ], + [ + 1730.412184299778, + 5227.858056344455 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.945937615892, + "min_y": 5249.531713020305, + "max_x": 1764.418544184243, + "max_y": 5249.531713020305, + "center": [ + 1762.1822409000674, + 5249.531713020305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.945937615892, + 5249.531713020305 + ], + [ + 1764.418544184243, + 5249.531713020305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5249.531713020305, + "max_x": 1763.823998199821, + "max_y": 5277.928643502227, + "center": [ + 1763.823998199821, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.823998199821, + 5249.531713020305 + ], + [ + 1763.823998199821, + 5277.928643502227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1760.540483600317, + "min_y": 5249.531713020305, + "max_x": 1760.540483600317, + "max_y": 5277.928643502227, + "center": [ + 1760.540483600317, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1760.540483600317, + 5249.531713020305 + ], + [ + 1760.540483600317, + 5277.928643502227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.945937615892, + "min_y": 5277.928643502227, + "max_x": 1764.418544184243, + "max_y": 5277.928643502227, + "center": [ + 1762.1822409000674, + 5277.928643502227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.945937615892, + 5277.928643502227 + ], + [ + 1764.418544184243, + 5277.928643502227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5248.413582137405, + "max_x": 1763.823998199821, + "max_y": 5249.531713020305, + "center": [ + 1763.823998199821, + 5248.972647578855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.823998199821, + 5249.531713020305 + ], + [ + 1763.823998199821, + 5248.413582137405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1760.540483600315, + "min_y": 5248.379598364662, + "max_x": 1760.540483600317, + "max_y": 5249.531713020305, + "center": [ + 1760.5404836003158, + 5248.955655692484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1760.540483600315, + 5249.531713020305 + ], + [ + 1760.540483600317, + 5248.379598364662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.16729527992, + "min_y": 5249.531713020305, + "max_x": 1763.16729527992, + "max_y": 5277.928643502227, + "center": [ + 1763.16729527992, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.16729527992, + 5277.928643502227 + ], + [ + 1763.16729527992, + 5249.531713020305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.510592360017, + "min_y": 5249.531713020305, + "max_x": 1762.510592360017, + "max_y": 5277.928643502227, + "center": [ + 1762.510592360017, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.510592360017, + 5277.928643502227 + ], + [ + 1762.510592360017, + 5249.531713020305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.853889440116, + "min_y": 5249.531713020305, + "max_x": 1761.853889440116, + "max_y": 5277.928643502227, + "center": [ + 1761.853889440116, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.853889440116, + 5277.928643502227 + ], + [ + 1761.853889440116, + 5249.531713020305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.197186520218, + "min_y": 5249.531713020305, + "max_x": 1761.197186520218, + "max_y": 5277.928643502227, + "center": [ + 1761.197186520218, + 5263.730178261266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.197186520218, + 5277.928643502227 + ], + [ + 1761.197186520218, + 5249.531713020305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5277.928643502235, + "max_x": 1763.823998199821, + "max_y": 5279.046774385139, + "center": [ + 1763.823998199821, + 5278.487708943687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1763.823998199821, + 5277.928643502235 + ], + [ + 1763.823998199821, + 5279.046774385139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1760.540483600315, + "min_y": 5277.928643502227, + "max_x": 1760.540483600317, + "max_y": 5279.080758157886, + "center": [ + 1760.5404836003158, + 5278.504700830056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1760.540483600315, + 5277.928643502227 + ], + [ + 1760.540483600317, + 5279.080758157886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.189022713084, + "min_y": 5246.210698349296, + "max_x": 1762.189022713087, + "max_y": 5247.310382220565, + "center": [ + 1762.1890227130855, + 5246.76054028493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.189022713087, + 5247.310382220565 + ], + [ + 1762.189022713084, + 5246.210698349296 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C84", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1730.218087651056, + "min_y": 5250.990686035376, + "max_x": 1742.875904507543, + "max_y": 5250.990686035376, + "center": [ + 1736.5469960792996, + 5250.990686035376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.218087651056, + 5250.990686035376 + ], + [ + 1742.875904507543, + 5250.990686035376 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C85", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1750.346239611347, + "min_y": 5250.937272105648, + "max_x": 1754.001260301695, + "max_y": 5250.937272105648, + "center": [ + 1752.173749956521, + 5250.937272105648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.346239611347, + 5250.937272105648 + ], + [ + 1754.001260301695, + 5250.937272105648 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5246.210698349296, + "max_x": 1762.737793992543, + "max_y": 5246.210698349296, + "center": [ + 1762.1890227130775, + 5246.210698349296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.737793992543, + 5246.210698349296 + ], + [ + 1761.640251433612, + 5246.210698349296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5243.792590723734, + "max_x": 1762.737793992543, + "max_y": 5243.792590723734, + "center": [ + 1762.1890227130775, + 5243.792590723734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.640251433612, + 5243.792590723734 + ], + [ + 1762.737793992543, + 5243.792590723734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C88", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1761.8351122891154, + "min_y": 5244.688860418446, + "max_x": 1762.5376583955945, + "max_y": 5245.391406524925, + "center": [ + 1762.186385342355, + 5245.040133471685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.186385342355, + 5245.040133471685 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5244.119187570753, + "max_x": 1762.009833553705, + "max_y": 5244.73645234968, + "center": [ + 1761.8250424936587, + 5244.427819960216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.009833553705, + 5244.73645234968 + ], + [ + 1761.640251433612, + 5244.119187570753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5244.119187570753, + "max_x": 1762.737793992543, + "max_y": 5244.119187570753, + "center": [ + 1762.1890227130775, + 5244.119187570753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.640251433612, + 5244.119187570753 + ], + [ + 1762.737793992543, + 5244.119187570753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.366834900134, + "min_y": 5244.119187570753, + "max_x": 1762.737793992543, + "max_y": 5244.738752126819, + "center": [ + 1762.5523144463386, + 5244.428969848786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.737793992543, + 5244.119187570753 + ], + [ + 1762.366834900134, + 5244.738752126819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5245.952269660399, + "max_x": 1762.737793992543, + "max_y": 5245.952269660399, + "center": [ + 1762.1890227130775, + 5245.952269660399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.640251433612, + 5245.952269660399 + ], + [ + 1762.737793992543, + 5245.952269660399 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.369472270857, + "min_y": 5245.337109960437, + "max_x": 1762.737793992543, + "max_y": 5245.952269660399, + "center": [ + 1762.5536331316998, + 5245.644689810419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.737793992543, + 5245.952269660399 + ], + [ + 1762.369472270857, + 5245.337109960437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.634976692166, + "min_y": 5245.337109960437, + "max_x": 1762.003298413851, + "max_y": 5245.952269660399, + "center": [ + 1761.8191375530087, + 5245.644689810419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.634976692166, + 5245.952269660399 + ], + [ + 1762.003298413851, + 5245.337109960437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C8F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1756.130401155928, + "min_y": 5233.367424011752, + "max_x": 1756.130401155929, + "max_y": 5248.388423326821, + "center": [ + 1756.1304011559284, + 5240.877923669286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.130401155929, + 5233.367424011752 + ], + [ + 1756.130401155928, + 5248.388423326821 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.083099652172, + "min_y": 5249.563469212318, + "max_x": 1730.218087651056, + "max_y": 5249.563469212318, + "center": [ + 1724.1505936516141, + 5249.563469212318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.083099652172, + 5249.563469212318 + ], + [ + 1730.218087651056, + 5249.563469212318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555C91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1718.08309965217, + "min_y": 5252.417902858435, + "max_x": 1730.218087651056, + "max_y": 5252.417902858435, + "center": [ + 1724.150593651613, + 5252.417902858435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.218087651056, + 5252.417902858435 + ], + [ + 1718.08309965217, + 5252.417902858435 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1730.218087651056, + "min_y": 5249.563469212318, + "max_x": 1730.218087651056, + "max_y": 5252.417902858435, + "center": [ + 1730.218087651056, + 5250.990686035377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1730.218087651056, + 5252.417902858435 + ], + [ + 1730.218087651056, + 5249.563469212318 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555C93", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1716.655882829111, + "min_y": 5250.990686035374, + "max_x": 1718.08309965217, + "max_y": 5252.417902858435, + "center": [ + 1717.3694912406404, + 5251.704294446905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1718.08309965217, + 5252.417902858435 + ], + [ + 1716.655882829111, + 5250.990686035374 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555C94", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1716.655882829114, + "min_y": 5249.563469212318, + "max_x": 1718.083099652172, + "max_y": 5250.990686035374, + "center": [ + 1717.3694912406431, + 5250.277077623846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1716.655882829114, + 5250.990686035374 + ], + [ + 1718.083099652172, + 5249.563469212318 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1765.066424231759, + "min_y": 5290.99731646739, + "max_x": 1766.686883289046, + "max_y": 5290.99731646739, + "center": [ + 1765.8766537604024, + 5290.99731646739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1766.686883289046, + 5290.99731646739 + ], + [ + 1765.066424231759, + 5290.99731646739 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555C96", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1759.82086837771, + "min_y": 5288.374538540365, + "max_x": 1765.06642423176, + "max_y": 5293.620094394415, + "center": [ + 1762.443646304735, + 5290.99731646739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.443646304735, + 5290.99731646739 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C97", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1761.529210877781, + "min_y": 5291.351682905161, + "max_x": 1763.0966960025182, + "max_y": 5292.657920509109, + "center": [ + 1762.3129534401496, + 5292.004801707135 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C98", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1760.269018149372, + "min_y": 5289.157810487034, + "max_x": 1764.1877309612148, + "max_y": 5290.464048090982, + "center": [ + 1762.2283745552934, + 5289.810929289008 + ] + }, + "raw_value": "10103", + "clean_value": "10103", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C99", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.575312523665, + "min_y": 5288.374543769974, + "max_x": 1759.820868377715, + "max_y": 5293.620099624023, + "center": [ + 1757.19809045069, + 5290.997321696998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.19809045069, + 5290.997321696998 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.52749473252, + "min_y": 5293.667922740146, + "max_x": 1757.198095775664, + "max_y": 5293.66792806512, + "center": [ + 1755.862795254092, + 5293.667925402633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.198095775664, + 5293.667922740146 + ], + [ + 1754.52749473252, + 5293.66792806512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.527489407542, + "min_y": 5290.997327021981, + "max_x": 1754.52749473252, + "max_y": 5293.66792806512, + "center": [ + 1754.5274920700308, + 5292.33262754355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.527489407542, + 5290.997327021981 + ], + [ + 1754.52749473252, + 5293.66792806512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1757.198095775664, + "min_y": 5293.667917415164, + "max_x": 1759.868696818816, + "max_y": 5293.667922740146, + "center": [ + 1758.53339629724, + 5293.667920077655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.198095775664, + 5293.667922740146 + ], + [ + 1759.868696818816, + 5293.667917415164 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1759.868691493839, + "min_y": 5290.997316372025, + "max_x": 1759.868696818816, + "max_y": 5293.667917415164, + "center": [ + 1759.8686941563274, + 5292.332616893595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.868691493839, + 5290.997316372025 + ], + [ + 1759.868696818816, + 5293.667917415164 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.527484082568, + "min_y": 5288.326720653838, + "max_x": 1757.198085125711, + "max_y": 5288.326725978823, + "center": [ + 1755.8627846041395, + 5288.32672331633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.198085125711, + 5288.326720653838 + ], + [ + 1754.527484082568, + 5288.326725978823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555C9F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.527484082568, + "min_y": 5288.326725978823, + "max_x": 1754.527489407542, + "max_y": 5290.997327021972, + "center": [ + 1754.5274867450548, + 5289.662026500397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.527489407542, + 5290.997327021972 + ], + [ + 1754.527484082568, + 5288.326725978823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1757.198085125711, + "min_y": 5288.326715328876, + "max_x": 1759.86868616886, + "max_y": 5288.326720653838, + "center": [ + 1758.5333856472855, + 5288.326717991356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1757.198085125711, + 5288.326720653838 + ], + [ + 1759.86868616886, + 5288.326715328876 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1759.86868616886, + "min_y": 5288.326715328876, + "max_x": 1759.868691493839, + "max_y": 5290.997316372012, + "center": [ + 1759.8686888313496, + 5289.662015850445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.868691493839, + 5290.997316372012 + ], + [ + 1759.86868616886, + 5288.326715328876 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1756.554117260886, + "min_y": 5291.336666399905, + "max_x": 1758.1216023856232, + "max_y": 5292.642904003853, + "center": [ + 1757.3378598232546, + 5291.9897852018785 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1754.575312523668, + "min_y": 5290.997316467386, + "max_x": 1759.820868377708, + "max_y": 5290.997326926624, + "center": [ + 1757.198090450688, + 5290.997321697005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.820868377708, + 5290.997316467386 + ], + [ + 1754.575312523668, + 5290.997326926624 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1755.390727882585, + "min_y": 5289.248787556562, + "max_x": 1758.750727882585, + "max_y": 5290.368787556562, + "center": [ + 1757.0707278825848, + 5289.808787556562 + ] + }, + "raw_value": "10103", + "clean_value": "10103", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CA5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1718.819148431983, + "min_y": 5250.293638754978, + "max_x": 1727.7781992351302, + "max_y": 5251.786813888836, + "center": [ + 1723.2986738335567, + 5251.0402263219075 + ] + }, + "raw_value": "CONDENSATE", + "clean_value": "CONDENSATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CA6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1742.137518279337, + "min_y": 5256.914614605359, + "max_x": 1755.5760944840579, + "max_y": 5258.034495955752, + "center": [ + 1748.8568063816974, + 5257.474555280556 + ] + }, + "raw_value": "CD-10516-65A-S1A-H50", + "clean_value": "CD-10516-65A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1764.80456369526, + "min_y": 5259.532043188477, + "max_x": 1764.80456369526, + "max_y": 5265.368968063304, + "center": [ + 1764.80456369526, + 5262.45050562589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5265.368968063304 + ], + [ + 1764.80456369526, + 5259.532043188477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5263.898119820145, + "max_x": 1764.80456369526, + "max_y": 5264.878685315585, + "center": [ + 1764.3142809475405, + 5264.388402567865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5263.898119820145 + ], + [ + 1763.823998199821, + 5264.878685315585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5263.204755308922, + "max_x": 1764.80456369526, + "max_y": 5264.185320804362, + "center": [ + 1764.3142809475405, + 5263.695038056642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5263.204755308922 + ], + [ + 1763.823998199821, + 5264.185320804362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5262.5113907977, + "max_x": 1764.80456369526, + "max_y": 5263.491956293139, + "center": [ + 1764.3142809475405, + 5263.001673545419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5262.5113907977 + ], + [ + 1763.823998199821, + 5263.491956293139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5261.818026286476, + "max_x": 1764.80456369526, + "max_y": 5262.798591781916, + "center": [ + 1764.3142809475405, + 5262.308309034196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5261.818026286476 + ], + [ + 1763.823998199821, + 5262.798591781916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5261.124661775254, + "max_x": 1764.80456369526, + "max_y": 5262.105227270694, + "center": [ + 1764.3142809475405, + 5261.614944522974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5261.124661775254 + ], + [ + 1763.823998199821, + 5262.105227270694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5260.431297264032, + "max_x": 1764.80456369526, + "max_y": 5261.411862759472, + "center": [ + 1764.3142809475405, + 5260.921580011752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.80456369526, + 5260.431297264032 + ], + [ + 1763.823998199821, + 5261.411862759472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CAE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1763.082407304565, + "min_y": 5244.555180938051, + "max_x": 1765.0981937352733, + "max_y": 5245.675062288445, + "center": [ + 1764.0903005199193, + 5245.1151216132475 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CAF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1755.708289818887, + "min_y": 5235.095774797741, + "max_x": 1767.1310795928996, + "max_y": 5236.215656148134, + "center": [ + 1761.4196847058934, + 5235.655715472938 + ] + }, + "raw_value": "P-10112-25A-F1A-n", + "clean_value": "P-10112-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CB0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1765.841916617588, + "min_y": 5265.910803559131, + "max_x": 1769.4255369388468, + "max_y": 5267.403978692989, + "center": [ + 1767.6337267782174, + 5266.65739112606 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1717.901785528773, + "min_y": 5253.267136991715, + "max_x": 1730.6684329232578, + "max_y": 5254.387018342109, + "center": [ + 1724.2851092260153, + 5253.827077666912 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1750.751011561501, + "min_y": 5259.051290800083, + "max_x": 1756.1924254525545, + "max_y": 5260.058960039167, + "center": [ + 1753.4717185070276, + 5259.555125419625 + ] + }, + "raw_value": "PSV-10103", + "clean_value": "PSV-10103", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555CB3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1750.756367060033, + "min_y": 5257.715380987604, + "max_x": 1754.9885778641858, + "max_y": 5258.7230502266875, + "center": [ + 1752.8724724621093, + 5258.219215607145 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555CB4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1751.000958650341, + "min_y": 5256.204228334246, + "max_x": 1757.046974084845, + "max_y": 5257.21189757333, + "center": [ + 1754.023966367593, + 5256.708062953789 + ] + }, + "raw_value": "SP: 0.7MPa", + "clean_value": "SP: 0.7MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.346238569733, + "min_y": 5250.414878383343, + "max_x": 1750.346240652962, + "max_y": 5251.459665827954, + "center": [ + 1750.3462396113475, + 5250.937272105649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.346240652962, + 5251.459665827954 + ], + [ + 1750.346238569733, + 5250.414878383343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1747.87638881057, + "min_y": 5250.414883308033, + "max_x": 1747.876390893798, + "max_y": 5251.459670752655, + "center": [ + 1747.876389852184, + 5250.9372770303435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.876390893798, + 5251.459670752655 + ], + [ + 1747.87638881057, + 5250.414883308033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.269890824021, + "min_y": 5251.102926066081, + "max_x": 1748.834600796392, + "max_y": 5251.441042965265, + "center": [ + 1748.5522458102064, + 5251.2719845156735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.269890824021, + 5251.441042965265 + ], + [ + 1748.834600796392, + 5251.102926066081 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.387930447014, + "min_y": 5250.433506170933, + "max_x": 1749.952640419385, + "max_y": 5250.771623070113, + "center": [ + 1749.6702854331995, + 5250.602564620523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.387930447014, + 5250.771623070113 + ], + [ + 1749.952640419385, + 5250.433506170933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.952640419385, + "min_y": 5250.433506170933, + "max_x": 1749.952642428332, + "max_y": 5251.441039609979, + "center": [ + 1749.9526414238585, + 5250.937272890456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.952642428332, + 5251.441039609979 + ], + [ + 1749.952640419385, + 5250.433506170933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.269888815072, + "min_y": 5250.433509526214, + "max_x": 1748.269890824021, + "max_y": 5251.441042965265, + "center": [ + 1748.2698898195465, + 5250.93727624574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.269890824021, + 5251.441042965265 + ], + [ + 1748.269888815072, + 5250.433509526214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.269888815072, + "min_y": 5250.433509526214, + "max_x": 1748.834600135801, + "max_y": 5250.771624173418, + "center": [ + 1748.5522444754365, + 5250.602566849816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.269888815072, + 5250.433509526214 + ], + [ + 1748.834600135801, + 5250.771624173418 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.387931107605, + "min_y": 5251.102924962781, + "max_x": 1749.952642428332, + "max_y": 5251.441039609979, + "center": [ + 1749.6702867679685, + 5251.27198228638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.387931107605, + 5251.102924962781 + ], + [ + 1749.952642428332, + 5251.441039609979 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CBD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1748.7888003610194, + "min_y": 5250.614809307414, + "max_x": 1749.4337308823845, + "max_y": 5251.259739828779, + "center": [ + 1749.111265621702, + 5250.937274568097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.111265621702, + 5250.937274568097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CBE", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1752.17374995652, + "min_y": 5250.937272105648, + "max_x": 1752.17374995652, + "max_y": 5252.772289722347, + "center": [ + 1752.17374995652, + 5251.854780913997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.17374995652, + 5250.937272105648 + ], + [ + 1752.17374995652, + 5252.772289722347 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CBF", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1746.383554726159, + "min_y": 5253.882146737304, + "max_x": 1751.063892941564, + "max_y": 5253.882146737304, + "center": [ + 1748.7237238338616, + 5253.882146737304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.063892941564, + 5253.882146737304 + ], + [ + 1746.383554726159, + 5253.882146737304 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.173749956518, + "min_y": 5253.882146737302, + "max_x": 1752.173749956518, + "max_y": 5255.424954672607, + "center": [ + 1752.173749956518, + 5254.653550704954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.173749956518, + 5253.882146737302 + ], + [ + 1752.173749956518, + 5255.424954672607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.887067594066, + "min_y": 5254.318128388167, + "max_x": 1752.441996101544, + "max_y": 5254.87305689564, + "center": [ + 1752.164531847805, + 5254.595592641903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.441996101544, + 5254.87305689564 + ], + [ + 1751.887067594066, + 5254.318128388167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.887067594066, + "min_y": 5254.595592641901, + "max_x": 1752.441996101544, + "max_y": 5255.150521149379, + "center": [ + 1752.164531847805, + 5254.87305689564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.887067594066, + 5254.595592641901 + ], + [ + 1752.441996101544, + 5255.150521149379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.887067594066, + "min_y": 5254.87305689564, + "max_x": 1752.441996101544, + "max_y": 5255.427985403112, + "center": [ + 1752.164531847805, + 5255.150521149376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.441996101544, + 5255.427985403112 + ], + [ + 1751.887067594066, + 5254.87305689564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.173749956518, + "min_y": 5253.882146737302, + "max_x": 1752.173749956518, + "max_y": 5255.427985403112, + "center": [ + 1752.173749956518, + 5254.655066070207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.173749956518, + 5253.882146737302 + ], + [ + 1752.173749956518, + 5255.427985403112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1752.164531847805, + "min_y": 5252.772289722351, + "max_x": 1752.719460355281, + "max_y": 5253.882146737302, + "center": [ + 1752.4419961015428, + 5253.327218229826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.164531847805, + 5253.882146737302 + ], + [ + 1752.719460355281, + 5252.772289722351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.619816005581, + "min_y": 5252.772289722351, + "max_x": 1752.719460355281, + "max_y": 5252.772289722351, + "center": [ + 1752.1696381804309, + 5252.772289722351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.719460355281, + 5252.772289722351 + ], + [ + 1751.619816005581, + 5252.772289722351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.618821449039, + "min_y": 5252.772289722351, + "max_x": 1752.173749956518, + "max_y": 5253.882146737302, + "center": [ + 1751.8962857027784, + 5253.327218229826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.618821449039, + 5252.772289722351 + ], + [ + 1752.173749956518, + 5253.882146737302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.063892941564, + "min_y": 5253.882146737302, + "max_x": 1752.173749956518, + "max_y": 5254.43707524478, + "center": [ + 1751.618821449041, + 5254.159610991041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1752.173749956518, + 5253.882146737302 + ], + [ + 1751.063892941564, + 5254.43707524478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.063892941564, + "min_y": 5253.327218229826, + "max_x": 1751.063892941564, + "max_y": 5254.43707524478, + "center": [ + 1751.063892941564, + 5253.882146737304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.063892941564, + 5254.43707524478 + ], + [ + 1751.063892941564, + 5253.327218229826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.063892941564, + "min_y": 5253.327218229826, + "max_x": 1752.173749956518, + "max_y": 5253.882146737302, + "center": [ + 1751.618821449041, + 5253.604682483564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.063892941564, + 5253.327218229826 + ], + [ + 1752.173749956518, + 5253.882146737302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CCC", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1756.130401155929, + "min_y": 5240.608201362836, + "max_x": 1767.994957950985, + "max_y": 5242.148038219627, + "center": [ + 1762.062679553457, + 5241.378119791231 + ] + }, + "raw_value": "\\pi0.56364;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10103}", + "clean_value": "\\pi0.56364; \\fArial|b1|i1|c238|p34; .3333x; E-10103", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555CD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.189022713078, + "min_y": 5242.741786318774, + "max_x": 1762.189022713078, + "max_y": 5243.792590723734, + "center": [ + 1762.189022713078, + 5243.267188521254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.189022713078, + 5243.792590723734 + ], + [ + 1762.189022713078, + 5242.741786318774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1762.737793992543, + "min_y": 5241.998469202777, + "max_x": 1762.737793992543, + "max_y": 5242.741786318774, + "center": [ + 1762.737793992543, + 5242.370127760776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.737793992543, + 5241.998469202777 + ], + [ + 1762.737793992543, + 5242.741786318774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5241.998469202777, + "max_x": 1761.640251433612, + "max_y": 5242.741786318774, + "center": [ + 1761.640251433612, + 5242.370127760776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1761.640251433612, + 5241.998469202777 + ], + [ + 1761.640251433612, + 5242.741786318774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.640251433612, + "min_y": 5242.741786318774, + "max_x": 1762.737793992543, + "max_y": 5242.741786318774, + "center": [ + 1762.1890227130775, + 5242.741786318774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.737793992543, + 5242.741786318774 + ], + [ + 1761.640251433612, + 5242.741786318774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1761.666628990772, + "min_y": 5243.792590723734, + "max_x": 1762.711416435383, + "max_y": 5243.792590723734, + "center": [ + 1762.1890227130775, + 5243.792590723734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1762.711416435383, + 5243.792590723734 + ], + [ + 1761.666628990772, + 5243.792590723734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CD5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1763.151490771714, + "min_y": 5241.734498027167, + "max_x": 1764.495348392186, + "max_y": 5242.854379377561, + "center": [ + 1763.82341958195, + 5242.294438702364 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555CD6", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1750.192777338541, + "min_y": 5288.326725978823, + "max_x": 1755.045596523579, + "max_y": 5289.147972302444, + "center": [ + 1752.61918693106, + 5288.737349140633 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 60\\P L 4\\P LL 2", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 60 L 4 LL 2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1718.639151326953, + "min_y": 5247.666428979082, + "max_x": 1726.2585607083413, + "max_y": 5248.936330542647, + "center": [ + 1722.4488560176471, + 5248.301379760865 + ] + }, + "raw_value": "OGDEN PUMP", + "clean_value": "OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555CDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1768.518466609257, + "min_y": 5249.892825865828, + "max_x": 1768.518466609257, + "max_y": 5276.3756821433, + "center": [ + 1768.518466609257, + 5263.134254004564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1768.518466609257, + 5249.892825865828 + ], + [ + 1768.518466609257, + 5276.3756821433 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555CDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.525295902741, + "min_y": 5247.675020663513, + "max_x": 1759.525295902741, + "max_y": 5249.101825990129, + "center": [ + 1759.525295902741, + 5248.388423326822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.525295902741, + 5249.101825990129 + ], + [ + 1759.525295902741, + 5247.675020663513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.211575218003, + "min_y": 5247.675020663513, + "max_x": 1759.211575218003, + "max_y": 5249.101825990129, + "center": [ + 1759.211575218003, + 5248.388423326822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.211575218003, + 5249.101825990129 + ], + [ + 1759.211575218003, + 5247.675020663513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.525295902741, + "min_y": 5248.388423326819, + "max_x": 1760.540483600315, + "max_y": 5248.388423326821, + "center": [ + 1760.0328897515278, + 5248.38842332682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.525295902741, + 5248.388423326821 + ], + [ + 1760.540483600315, + 5248.388423326819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CDF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1756.130401155928, + "min_y": 5248.388423326821, + "max_x": 1759.211575218003, + "max_y": 5248.388423326821, + "center": [ + 1757.6709881869656, + 5248.388423326821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1756.130401155928, + 5248.388423326821 + ], + [ + 1759.211575218003, + 5248.388423326821 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.525295902744, + "min_y": 5250.937272105642, + "max_x": 1760.540483600317, + "max_y": 5250.937272105648, + "center": [ + 1760.0328897515305, + 5250.937272105644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.525295902744, + 5250.937272105648 + ], + [ + 1760.540483600317, + 5250.937272105642 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE1", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1753.994495396353, + "min_y": 5250.937272105648, + "max_x": 1759.13130333005, + "max_y": 5250.937272105648, + "center": [ + 1756.5628993632015, + 5250.937272105648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1753.994495396353, + 5250.937272105648 + ], + [ + 1759.13130333005, + 5250.937272105648 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.52529486113, + "min_y": 5250.414878383343, + "max_x": 1759.525296944358, + "max_y": 5251.459665827954, + "center": [ + 1759.525295902744, + 5250.937272105649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.525296944358, + 5251.459665827954 + ], + [ + 1759.52529486113, + 5250.414878383343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1759.131696710782, + "min_y": 5250.433506170933, + "max_x": 1759.131698719728, + "max_y": 5251.441039609979, + "center": [ + 1759.131697715255, + 5250.937272890456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1759.131698719728, + 5251.441039609979 + ], + [ + 1759.131696710782, + 5250.433506170933 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199821, + "min_y": 5276.375683971497, + "max_x": 1764.839185897394, + "max_y": 5276.375683971497, + "center": [ + 1764.3315920486075, + 5276.375683971497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.839185897394, + 5276.375683971497 + ], + [ + 1763.823998199821, + 5276.375683971497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE5", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1767.257293522956, + "min_y": 5276.375678914323, + "max_x": 1768.518466609257, + "max_y": 5276.3756821433, + "center": [ + 1767.8878800661064, + 5276.375680528811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.257293522956, + 5276.375678914323 + ], + [ + 1768.518466609257, + 5276.3756821433 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1767.304861738345, + "min_y": 5275.824275321308, + "max_x": 1767.304861738345, + "max_y": 5276.921817880239, + "center": [ + 1767.304861738345, + 5276.373046600774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.304861738345, + 5275.824275321308 + ], + [ + 1767.304861738345, + 5276.921817880239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1764.839185897394, + "min_y": 5275.826912692031, + "max_x": 1764.839185897394, + "max_y": 5276.924455250962, + "center": [ + 1764.839185897394, + 5276.375683971497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.839185897394, + 5276.924455250962 + ], + [ + 1764.839185897394, + 5275.826912692031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1765.7830238074955, + "min_y": 5276.024410918258, + "max_x": 1766.4855699139746, + "max_y": 5276.726957024736, + "center": [ + 1766.134296860735, + 5276.375683971497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1766.134296860735, + 5276.375683971497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1765.165782744413, + "min_y": 5276.554873130869, + "max_x": 1765.783047523341, + "max_y": 5276.924455250962, + "center": [ + 1765.474415133877, + 5276.739664190915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1765.783047523341, + 5276.554873130869 + ], + [ + 1765.165782744413, + 5276.924455250962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1765.165782744413, + "min_y": 5275.826912692031, + "max_x": 1765.165782744413, + "max_y": 5276.924455250962, + "center": [ + 1765.165782744413, + 5276.375683971497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1765.165782744413, + 5276.924455250962 + ], + [ + 1765.165782744413, + 5275.826912692031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1765.165782744413, + "min_y": 5275.826912692031, + "max_x": 1765.785347300479, + "max_y": 5276.197871784441, + "center": [ + 1765.475565022446, + 5276.012392238236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1765.165782744413, + 5275.826912692031 + ], + [ + 1765.785347300479, + 5276.197871784441 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1767.046433049449, + "min_y": 5275.824275321308, + "max_x": 1767.046433049449, + "max_y": 5276.921817880239, + "center": [ + 1767.046433049449, + 5276.373046600774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.046433049449, + 5276.921817880239 + ], + [ + 1767.046433049449, + 5275.824275321308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1766.431273349486, + "min_y": 5275.824275321308, + "max_x": 1767.046433049449, + "max_y": 5276.192597042995, + "center": [ + 1766.7388531994675, + 5276.008436182152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.046433049449, + 5275.824275321308 + ], + [ + 1766.431273349486, + 5276.192597042995 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1766.431273349486, + "min_y": 5276.558770900001, + "max_x": 1767.046433049449, + "max_y": 5276.927092621686, + "center": [ + 1766.7388531994675, + 5276.742931760844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1767.046433049449, + 5276.927092621686 + ], + [ + 1766.431273349486, + 5276.558770900001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1765.15290658213, + "min_y": 5277.839167574092, + "max_x": 1765.15290658213, + "max_y": 5279.265972900708, + "center": [ + 1765.15290658213, + 5278.5525702374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1765.15290658213, + 5279.265972900708 + ], + [ + 1765.15290658213, + 5277.839167574092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1764.839185897391, + "min_y": 5277.839167574092, + "max_x": 1764.839185897391, + "max_y": 5279.265972900708, + "center": [ + 1764.839185897391, + 5278.5525702374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.839185897391, + 5279.265972900708 + ], + [ + 1764.839185897391, + 5277.839167574092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1763.823998199818, + "min_y": 5278.552570237398, + "max_x": 1764.839185897391, + "max_y": 5278.5525702374, + "center": [ + 1764.3315920486045, + 5278.552570237399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1764.839185897391, + 5278.5525702374 + ], + [ + 1763.823998199818, + 5278.552570237398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1765.15290658213, + "min_y": 5278.5525702374, + "max_x": 1766.686883289046, + "max_y": 5278.5525702374, + "center": [ + 1765.919894935588, + 5278.5525702374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1765.15290658213, + 5278.5525702374 + ], + [ + 1766.686883289046, + 5278.5525702374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.388127544978, + "min_y": 5250.937274568097, + "max_x": 1747.876389852179, + "max_y": 5250.937274568097, + "center": [ + 1747.1322586985784, + 5250.937274568097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.388127544978, + 5250.937274568097 + ], + [ + 1747.876389852179, + 5250.937274568097 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555CF5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1765.03429950271, + "min_y": 5274.3619737434, + "max_x": 1767.0500859334181, + "max_y": 5275.4818550937935, + "center": [ + 1766.0421927180641, + 5274.921914418597 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555CF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.661481675778, + "min_y": 5294.049677580845, + "max_x": 1907.801589236768, + "max_y": 5294.049677580845, + "center": [ + 1907.231535456273, + 5294.049677580845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.801589236768, + 5294.049677580845 + ], + [ + 1906.661481675778, + 5294.049677580845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1906.8796504065863, + "min_y": 5294.943096248042, + "max_x": 1907.5834205059596, + "max_y": 5295.646866347415, + "center": [ + 1907.231535456273, + 5295.294981297729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5295.294981297729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5296.540285014605, + "max_x": 1907.781262818394, + "max_y": 5296.540285014605, + "center": [ + 1907.231535456271, + 5296.540285014605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.681808094148, + 5296.540285014605 + ], + [ + 1907.781262818394, + 5296.540285014605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5294.049677580845, + "max_x": 1907.781262818394, + "max_y": 5294.049677580845, + "center": [ + 1907.231535456271, + 5294.049677580845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.681808094148, + 5294.049677580845 + ], + [ + 1907.781262818394, + 5294.049677580845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.675640138867, + "min_y": 5294.376843432829, + "max_x": 1907.787430773675, + "max_y": 5294.376843432829, + "center": [ + 1907.231535456271, + 5294.376843432829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.787430773675, + 5294.376843432829 + ], + [ + 1906.675640138867, + 5294.376843432829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.675640138867, + "min_y": 5294.049677580845, + "max_x": 1907.787430773675, + "max_y": 5294.049677580845, + "center": [ + 1907.231535456271, + 5294.049677580845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.787430773675, + 5294.049677580845 + ], + [ + 1906.675640138867, + 5294.049677580845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.677460158517, + "min_y": 5296.540285014605, + "max_x": 1907.789250793323, + "max_y": 5296.540285014605, + "center": [ + 1907.23335547592, + 5296.540285014605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.789250793323, + 5296.540285014605 + ], + [ + 1906.677460158517, + 5296.540285014605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.677460158517, + "min_y": 5296.540285014605, + "max_x": 1907.789250793323, + "max_y": 5296.540285014605, + "center": [ + 1907.23335547592, + 5296.540285014605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.789250793323, + 5296.540285014605 + ], + [ + 1906.677460158517, + 5296.540285014605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.412299397657, + "min_y": 5295.596887716486, + "max_x": 1907.781262818394, + "max_y": 5296.213119162628, + "center": [ + 1907.5967811080254, + 5295.905003439557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.412299397657, + 5295.596887716486 + ], + [ + 1907.781262818394, + 5296.213119162628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555CFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5296.213119162628, + "max_x": 1907.781262818394, + "max_y": 5296.213119162628, + "center": [ + 1907.231535456271, + 5296.213119162628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.781262818394, + 5296.213119162628 + ], + [ + 1906.681808094148, + 5296.213119162628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5295.596887716486, + "max_x": 1907.050771514888, + "max_y": 5296.213119162628, + "center": [ + 1906.8662898045181, + 5295.905003439557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.681808094148, + 5296.213119162628 + ], + [ + 1907.050771514888, + 5295.596887716486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.412299397651, + "min_y": 5294.376843432829, + "max_x": 1907.781262818394, + "max_y": 5294.993074878964, + "center": [ + 1907.5967811080225, + 5294.684959155897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.412299397651, + 5294.993074878964 + ], + [ + 1907.781262818394, + 5294.376843432829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5294.376843432829, + "max_x": 1907.781262818394, + "max_y": 5294.376843432829, + "center": [ + 1907.231535456271, + 5294.376843432829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.781262818394, + 5294.376843432829 + ], + [ + 1906.681808094148, + 5294.376843432829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1906.681808094148, + "min_y": 5294.376843432829, + "max_x": 1907.050771514888, + "max_y": 5294.993074878964, + "center": [ + 1906.8662898045181, + 5294.684959155897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1906.681808094148, + 5294.376843432829 + ], + [ + 1907.050771514888, + 5294.993074878964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1907.231535456273, + "min_y": 5296.540285014605, + "max_x": 1907.231535456273, + "max_y": 5306.58221196781, + "center": [ + 1907.231535456273, + 5301.561248491207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1907.231535456273, + 5306.58221196781 + ], + [ + 1907.231535456273, + 5296.540285014605 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555D05", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1830.287634034928, + "min_y": 5208.233114712804, + "max_x": 1831.174054634966, + "max_y": 5208.233114712804, + "center": [ + 1830.730844334947, + 5208.233114712804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.287634034928, + 5208.233114712804 + ], + [ + 1831.174054634966, + 5208.233114712804 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D06", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1829.523515626954, + "min_y": 5208.545027518034, + "max_x": 1830.287685905339, + "max_y": 5208.701111004792, + "center": [ + 1829.9056007661466, + 5208.623069261414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.523515626954, + 5208.701111004792 + ], + [ + 1830.287685905339, + 5208.545027518034 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555D07", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1829.523360015722, + "min_y": 5207.765372589102, + "max_x": 1830.287582164517, + "max_y": 5207.921201907574, + "center": [ + 1829.9054710901196, + 5207.843287248338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.523360015722, + 5207.765372589102 + ], + [ + 1830.287582164517, + 5207.921201907574 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555D08", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1830.287582164517, + "min_y": 5207.921201907574, + "max_x": 1830.287685905339, + "max_y": 5208.545027518034, + "center": [ + 1830.287634034928, + 5208.233114712804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.287582164517, + 5207.921201907574 + ], + [ + 1830.287685905339, + 5208.545027518034 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555D09", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1829.523360015722, + "min_y": 5207.765372589102, + "max_x": 1829.523515626954, + "max_y": 5208.701111004792, + "center": [ + 1829.523437821338, + 5208.233241796947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.523360015722, + 5207.765372589102 + ], + [ + 1829.523515626954, + 5208.701111004792 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555D0A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1829.523370253512, + "min_y": 5207.826935574106, + "max_x": 1829.523505389167, + "max_y": 5208.639548019794, + "center": [ + 1829.5234378213395, + 5208.23324179695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1829.523505389167, + 5208.639548019794 + ], + [ + 1829.523370253512, + 5207.826935574106 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555D0B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1828.663969384766, + "min_y": 5208.84332889012, + "max_x": 1833.3674710564183, + "max_y": 5209.963210240513, + "center": [ + 1831.0157202205921, + 5209.403269565317 + ] + }, + "raw_value": "32Ax25A", + "clean_value": "32Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D0C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5270.657452245021, + "max_x": 1966.42686520761, + "max_y": 5270.657452245021, + "center": [ + 1963.7209293235535, + 5270.657452245021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.014993439497, + 5270.657452245021 + ], + [ + 1966.42686520761, + 5270.657452245021 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D0D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5262.115199348285, + "max_x": 1966.42686520761, + "max_y": 5262.115199348285, + "center": [ + 1963.7209293235535, + 5262.115199348285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.014993439497, + 5262.115199348285 + ], + [ + 1966.42686520761, + 5262.115199348285 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D0E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5270.657452245021, + "max_x": 1961.014993439497, + "max_y": 5275.422488853283, + "center": [ + 1961.014993439497, + 5273.039970549152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.014993439497, + 5275.422488853283 + ], + [ + 1961.014993439497, + 5270.657452245021 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D0F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1961.014993439497, + "min_y": 5262.115199348285, + "max_x": 1961.014993439497, + "max_y": 5266.119692280014, + "center": [ + 1961.014993439497, + 5264.1174458141495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1961.014993439497, + 5266.119692280014 + ], + [ + 1961.014993439497, + 5262.115199348285 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D10", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1768.856132929638, + "min_y": 5254.352942591304, + "max_x": 1782.294709134359, + "max_y": 5255.472823941697, + "center": [ + 1775.5754210319985, + 5254.912883266501 + ] + }, + "raw_value": "CD-10513-40A-S1A-H50", + "clean_value": "CD-10513-40A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D11", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1797.32012686769, + "min_y": 5223.852722009736, + "max_x": 1811.430631882647, + "max_y": 5224.972603360129, + "center": [ + 1804.3753793751684, + 5224.412662684932 + ] + }, + "raw_value": "ST-10512-100A-S1A-H50", + "clean_value": "ST-10512-100A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D12", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1768.390480169212, + "min_y": 5225.816086678215, + "max_x": 1781.8290563739329, + "max_y": 5226.935968028608, + "center": [ + 1775.1097682715724, + 5226.376027353412 + ] + }, + "raw_value": "CD-10514-40A-S1A-H50", + "clean_value": "CD-10514-40A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D13", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1732.625581957055, + "min_y": 5229.04232821917, + "max_x": 1732.985036333363, + "max_y": 5229.042350481012, + "center": [ + 1732.8053091452089, + 5229.042339350091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1732.985036333363, + 5229.04232821917 + ], + [ + 1732.625581957055, + 5229.042350481012 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.156224627392, + "min_y": 5307.042868006017, + "max_x": 1904.228403481921, + "max_y": 5307.261677199435, + "center": [ + 1903.6923140546564, + 5307.152272602726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.228403481921, + 5307.261677199435 + ], + [ + 1903.156224627392, + 5307.042868006017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.156224627392, + "min_y": 5305.948822038897, + "max_x": 1904.228403481921, + "max_y": 5306.167631232323, + "center": [ + 1903.6923140546564, + 5306.0582266356105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.228403481921, + 5305.948822038897 + ], + [ + 1903.156224627392, + 5306.167631232323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.156224627392, + "min_y": 5306.167631232323, + "max_x": 1903.156224627392, + "max_y": 5306.489881856033, + "center": [ + 1903.156224627392, + 5306.328756544179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.156224627392, + 5306.167631232323 + ], + [ + 1903.156224627392, + 5306.489881856033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.228403481921, + "min_y": 5305.948822038897, + "max_x": 1904.228403481921, + "max_y": 5307.261677199435, + "center": [ + 1904.228403481921, + 5306.605249619166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.228403481921, + 5305.948822038897 + ], + [ + 1904.228403481921, + 5307.261677199435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D18", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1902.598732835233, + "min_y": 5304.587722570177, + "max_x": 1907.3022345068853, + "max_y": 5305.70760392057, + "center": [ + 1904.9504836710591, + 5305.147663245374 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D19", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1908.770501624111, + "min_y": 5349.485332588693, + "max_x": 1920.1932913981236, + "max_y": 5350.605213939087, + "center": [ + 1914.4818965111172, + 5350.04527326389 + ] + }, + "raw_value": "P-10141-32A-F2A-n", + "clean_value": "P-10141-32A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.361253602669, + "min_y": 5306.990283657422, + "max_x": 1884.433432457196, + "max_y": 5307.209092850841, + "center": [ + 1883.8973430299325, + 5307.099688254131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.361253602669, + 5307.209092850841 + ], + [ + 1884.433432457196, + 5306.990283657422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.361253602669, + "min_y": 5305.896237690301, + "max_x": 1884.433432457196, + "max_y": 5306.115046883728, + "center": [ + 1883.8973430299325, + 5306.005642287015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.361253602669, + 5305.896237690301 + ], + [ + 1884.433432457196, + 5306.115046883728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1884.433432457196, + "min_y": 5306.115046883728, + "max_x": 1884.433432457196, + "max_y": 5306.990283657422, + "center": [ + 1884.433432457196, + 5306.552665270575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.433432457196, + 5306.115046883728 + ], + [ + 1884.433432457196, + 5306.990283657422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1883.361253602669, + "min_y": 5305.896237690301, + "max_x": 1883.361253602669, + "max_y": 5307.209092850841, + "center": [ + 1883.361253602669, + 5306.552665270571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1883.361253602669, + 5305.896237690301 + ], + [ + 1883.361253602669, + 5307.209092850841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D1E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1884.11035866988, + "min_y": 5307.689883032409, + "max_x": 1888.8138603415323, + "max_y": 5308.809764382802, + "center": [ + 1886.4621095057062, + 5308.249823707605 + ] + }, + "raw_value": "25Ax20A", + "clean_value": "25Ax20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.835228522448, + "min_y": 5362.050651121784, + "max_x": 1903.835228522448, + "max_y": 5363.275064292329, + "center": [ + 1903.835228522448, + 5362.662857707057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.835228522448, + 5362.050651121784 + ], + [ + 1903.835228522448, + 5363.275064292329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.050651121784, + "max_x": 1904.206441265123, + "max_y": 5363.298127290709, + "center": [ + 1904.206441265123, + 5362.674389206246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.206441265123, + 5362.050651121784 + ], + [ + 1904.206441265123, + 5363.298127290709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.018524713931, + "max_x": 1901.751731892721, + "max_y": 5363.266000882852, + "center": [ + 1901.751731892721, + 5362.642262798391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5363.266000882852 + ], + [ + 1901.751731892721, + 5362.018524713931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.264520438758, + "min_y": 5361.995461715552, + "max_x": 1901.264520438758, + "max_y": 5363.28906388123, + "center": [ + 1901.264520438758, + 5362.64226279839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.264520438758, + 5363.28906388123 + ], + [ + 1901.264520438758, + 5361.995461715552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.00452512503, + "max_x": 1904.206441265123, + "max_y": 5363.298127290709, + "center": [ + 1904.206441265123, + 5362.65132620787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.206441265123, + 5363.298127290709 + ], + [ + 1904.206441265123, + 5362.00452512503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D24", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1902.3942202799076, + "min_y": 5362.25206628019, + "max_x": 1903.1927401352605, + "max_y": 5363.050586135542, + "center": [ + 1902.793480207584, + 5362.651326207866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.793480207584, + 5362.651326207866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.018524713931, + "max_x": 1901.751731892721, + "max_y": 5363.266000882852, + "center": [ + 1901.751731892721, + 5362.642262798391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5362.018524713931 + ], + [ + 1901.751731892721, + 5363.266000882852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.027588123405, + "max_x": 1904.206441265123, + "max_y": 5363.275064292329, + "center": [ + 1904.206441265123, + 5362.651326207867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.206441265123, + 5362.027588123405 + ], + [ + 1904.206441265123, + 5363.275064292329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.835228522448, + "min_y": 5362.020589765897, + "max_x": 1903.835228522448, + "max_y": 5363.282062649836, + "center": [ + 1903.835228522448, + 5362.651326207866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.835228522448, + 5363.282062649836 + ], + [ + 1903.835228522448, + 5362.020589765897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1904.206441265123, + "min_y": 5362.020589765897, + "max_x": 1904.206441265123, + "max_y": 5363.282062649836, + "center": [ + 1904.206441265123, + 5362.651326207866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1904.206441265123, + 5363.282062649836 + ], + [ + 1904.206441265123, + 5362.020589765897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.013591408384, + "max_x": 1901.751731892721, + "max_y": 5363.275064292329, + "center": [ + 1901.751731892721, + 5362.644327850357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5363.275064292329 + ], + [ + 1901.751731892721, + 5362.013591408384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.013591408384, + "max_x": 1901.751731892721, + "max_y": 5363.275064292329, + "center": [ + 1901.751731892721, + 5362.644327850357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5363.275064292329 + ], + [ + 1901.751731892721, + 5362.013591408384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.856426703692, + "max_x": 1902.450927618245, + "max_y": 5363.275064292329, + "center": [ + 1902.101329755483, + 5363.06574549801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1902.450927618245, + 5362.856426703692 + ], + [ + 1901.751731892721, + 5363.275064292329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.027588123405, + "max_x": 1901.751731892721, + "max_y": 5363.275064292329, + "center": [ + 1901.751731892721, + 5362.651326207867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5363.275064292329 + ], + [ + 1901.751731892721, + 5362.027588123405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1901.751731892721, + "min_y": 5362.027588123405, + "max_x": 1902.450927618245, + "max_y": 5362.446225712042, + "center": [ + 1902.101329755483, + 5362.236906917724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.751731892721, + 5362.027588123405 + ], + [ + 1902.450927618245, + 5362.446225712042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.136032796922, + "min_y": 5362.85642670369, + "max_x": 1903.835228522448, + "max_y": 5363.275064292329, + "center": [ + 1903.485630659685, + 5363.06574549801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.136032796922, + 5362.85642670369 + ], + [ + 1903.835228522448, + 5363.275064292329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.835228522448, + "min_y": 5362.027588123405, + "max_x": 1903.835228522448, + "max_y": 5363.275064292329, + "center": [ + 1903.835228522448, + 5362.651326207867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.835228522448, + 5363.275064292329 + ], + [ + 1903.835228522448, + 5362.027588123405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.136032796922, + "min_y": 5362.027588123405, + "max_x": 1903.835228522448, + "max_y": 5362.446225712047, + "center": [ + 1903.485630659685, + 5362.236906917726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.835228522448, + 5362.027588123405 + ], + [ + 1903.136032796922, + 5362.446225712047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D31", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1896.465234064625, + "min_y": 5362.674389206247, + "max_x": 1901.264730409319, + "max_y": 5362.674389206247, + "center": [ + 1898.864982236972, + 5362.674389206247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1901.264730409319, + 5362.674389206247 + ], + [ + 1896.465234064625, + 5362.674389206247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D32", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1891.415563578657, + "min_y": 5362.674389206247, + "max_x": 1894.673963952628, + "max_y": 5362.674389206247, + "center": [ + 1893.0447637656425, + 5362.674389206247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1894.673963952628, + 5362.674389206247 + ], + [ + 1891.415563578657, + 5362.674389206247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D33", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1891.415563578657, + "min_y": 5362.674354597447, + "max_x": 1891.415563578657, + "max_y": 5365.058677917744, + "center": [ + 1891.415563578657, + 5363.866516257595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1891.415563578657, + 5365.058677917744 + ], + [ + 1891.415563578657, + 5362.674354597447 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D34", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1678.722248109279, + "min_y": 5210.517141952715, + "max_x": 1678.722248109279, + "max_y": 5253.436811055911, + "center": [ + 1678.722248109279, + 5231.976976504313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1678.722248109279, + 5210.517141952715 + ], + [ + 1678.722248109279, + 5253.436811055911 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D35", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.136689017908, + "min_y": 5220.887429756377, + "max_x": 1852.900859296292, + "max_y": 5221.043513243134, + "center": [ + 1852.5187741571, + 5220.965471499756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.136689017908, + 5221.043513243134 + ], + [ + 1852.900859296292, + 5220.887429756377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D36", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.136533406675, + "min_y": 5220.107774827445, + "max_x": 1852.90075555547, + "max_y": 5220.263604145916, + "center": [ + 1852.5186444810724, + 5220.1856894866805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.136533406675, + 5220.107774827445 + ], + [ + 1852.90075555547, + 5220.263604145916 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D37", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.90075555547, + "min_y": 5220.263604145916, + "max_x": 1852.900859296292, + "max_y": 5220.887429756377, + "center": [ + 1852.9008074258809, + 5220.575516951147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.90075555547, + 5220.263604145916 + ], + [ + 1852.900859296292, + 5220.887429756377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D38", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.136533406675, + "min_y": 5220.107774827445, + "max_x": 1852.136689017908, + "max_y": 5221.043513243134, + "center": [ + 1852.1366112122914, + 5220.575644035289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.136533406675, + 5220.107774827445 + ], + [ + 1852.136689017908, + 5221.043513243134 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D39", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1852.136543644465, + "min_y": 5220.169337812448, + "max_x": 1852.13667878012, + "max_y": 5220.981950258137, + "center": [ + 1852.1366112122926, + 5220.5756440352925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.13667878012, + 5220.981950258137 + ], + [ + 1852.136543644465, + 5220.169337812448 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D3A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1853.019606652427, + "min_y": 5217.311825629736, + "max_x": 1857.7231083240792, + "max_y": 5218.431706980129, + "center": [ + 1855.3713574882531, + 5217.871766304932 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.38355166151, + "min_y": 5250.937274568097, + "max_x": 1746.38355166151, + "max_y": 5277.677023544764, + "center": [ + 1746.38355166151, + 5264.307149056431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.38355166151, + 5250.937274568097 + ], + [ + 1746.38355166151, + 5277.677023544764 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555D3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1742.86492905054, + "min_y": 5277.677023544764, + "max_x": 1746.383937796322, + "max_y": 5277.677023544764, + "center": [ + 1744.6244334234311, + 5277.677023544764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.383937796322, + 5277.677023544764 + ], + [ + 1742.86492905054, + 5277.677023544764 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555D3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1742.875500560302, + "min_y": 5250.991012223312, + "max_x": 1742.875500560302, + "max_y": 5277.677023544764, + "center": [ + 1742.875500560302, + 5264.334017884038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1742.875500560302, + 5277.677023544764 + ], + [ + 1742.875500560302, + 5250.991012223312 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555D3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1766.686883289046, + "min_y": 5278.5525702374, + "max_x": 1766.686883289046, + "max_y": 5295.811213877391, + "center": [ + 1766.686883289046, + 5287.181892057395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1766.686883289046, + 5295.811213877391 + ], + [ + 1766.686883289046, + 5278.5525702374 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555D3F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1800.095523644169, + "min_y": 5226.295760538317, + "max_x": 1800.097604789885, + "max_y": 5230.877311266564, + "center": [ + 1800.096564217027, + 5228.586535902441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.095523644169, + 5230.877311266564 + ], + [ + 1800.097604789885, + 5226.295760538317 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.556131537951, + "min_y": 5248.95612421689, + "max_x": 1865.556131537951, + "max_y": 5257.605076384976, + "center": [ + 1865.556131537951, + 5253.280600300934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.556131537951, + 5257.605076384976 + ], + [ + 1865.556131537951, + 5248.95612421689 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.370124443217, + "min_y": 5248.95612421689, + "max_x": 1857.545305669354, + "max_y": 5248.95612421689, + "center": [ + 1854.9577150562855, + 5248.95612421689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.545305669354, + 5248.95612421689 + ], + [ + 1852.370124443217, + 5248.95612421689 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1852.370124443217, + "min_y": 5248.95612421689, + "max_x": 1852.370124443217, + "max_y": 5257.605076384972, + "center": [ + 1852.370124443217, + 5253.280600300931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.370124443217, + 5248.95612421689 + ], + [ + 1852.370124443217, + 5257.605076384972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.19188178345, + "min_y": 5249.136573774674, + "max_x": 1859.807041483418, + "max_y": 5249.504895496358, + "center": [ + 1859.499461633434, + 5249.320734635516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.807041483418, + 5249.504895496358 + ], + [ + 1859.19188178345, + 5249.136573774674 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.973959393767, + "min_y": 5248.407352937423, + "max_x": 1858.589119093732, + "max_y": 5248.775674659112, + "center": [ + 1858.2815392437496, + 5248.591513798267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.589119093732, + 5248.775674659112 + ], + [ + 1857.973959393767, + 5248.407352937423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.807041483418, + "min_y": 5248.407352937423, + "max_x": 1859.807041483418, + "max_y": 5249.504895496358, + "center": [ + 1859.807041483418, + 5248.95612421689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.807041483418, + 5248.407352937423 + ], + [ + 1859.807041483418, + 5249.504895496358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.973959393767, + "min_y": 5248.407352937423, + "max_x": 1857.973959393767, + "max_y": 5249.504895496358, + "center": [ + 1857.973959393767, + 5248.95612421689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.973959393767, + 5248.407352937423 + ], + [ + 1857.973959393767, + 5249.504895496358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.19188178345, + "min_y": 5248.407352937423, + "max_x": 1859.807041483418, + "max_y": 5248.775674659112, + "center": [ + 1859.499461633434, + 5248.591513798267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.807041483418, + 5248.407352937423 + ], + [ + 1859.19188178345, + 5248.775674659112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.973959393767, + "min_y": 5249.136573774671, + "max_x": 1858.589119093732, + "max_y": 5249.504895496358, + "center": [ + 1858.2815392437496, + 5249.320734635514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.589119093732, + 5249.136573774671 + ], + [ + 1857.973959393767, + 5249.504895496358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1857.545305669354, + "min_y": 5248.387061870645, + "max_x": 1857.545305669354, + "max_y": 5249.525186563147, + "center": [ + 1857.545305669354, + 5248.956124216897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1857.545305669354, + 5248.387061870645 + ], + [ + 1857.545305669354, + 5249.525186563147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.23569520783, + "min_y": 5248.387061870645, + "max_x": 1860.23569520783, + "max_y": 5249.525186563147, + "center": [ + 1860.23569520783, + 5248.956124216897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.23569520783, + 5248.387061870645 + ], + [ + 1860.23569520783, + 5249.525186563147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D4B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1858.5392273853524, + "min_y": 5248.604851163651, + "max_x": 1859.2417734918315, + "max_y": 5249.3073972701295, + "center": [ + 1858.890500438592, + 5248.95612421689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1858.890500438592, + 5248.95612421689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1860.23569520783, + "min_y": 5248.95612421689, + "max_x": 1865.556131537951, + "max_y": 5248.95612421689, + "center": [ + 1862.8959133728904, + 5248.95612421689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.23569520783, + 5248.95612421689 + ], + [ + 1865.556131537951, + 5248.95612421689 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D4D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2034.775046935893, + "min_y": 5339.964155955845, + "max_x": 2037.6412264688358, + "max_y": 5341.158397427905, + "center": [ + 2036.2081367023643, + 5340.561276691875 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D4E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1769.824004830424, + "min_y": 5272.293213018198, + "max_x": 1783.2625810351449, + "max_y": 5273.413094368591, + "center": [ + 1776.5432929327844, + 5272.853153693395 + ] + }, + "raw_value": "CD-10515-65A-S1A-H50", + "clean_value": "CD-10515-65A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D4F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1868.767087023342, + "min_y": 5295.3324033835, + "max_x": 1880.1898767973546, + "max_y": 5296.452284733893, + "center": [ + 1874.4784819103484, + 5295.892344058697 + ] + }, + "raw_value": "P-10129-25A-F2A-n", + "clean_value": "P-10129-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D50", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1849.092691031158, + "min_y": 5223.675299589658, + "max_x": 1860.5154808051707, + "max_y": 5224.795180940051, + "center": [ + 1854.8040859181642, + 5224.235240264854 + ] + }, + "raw_value": "P-10122-25A-F1A-N", + "clean_value": "P-10122-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666779073661, + "min_y": 5225.830467000157, + "max_x": 1799.430949352046, + "max_y": 5225.986550486916, + "center": [ + 1799.0488642128535, + 5225.908508743536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.430949352046, + 5225.830467000157 + ], + [ + 1798.666779073661, + 5225.986550486916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666882814483, + "min_y": 5226.610376097376, + "max_x": 1799.431104963279, + "max_y": 5226.766205415849, + "center": [ + 1799.048993888881, + 5226.688290756612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.431104963279, + 5226.766205415849 + ], + [ + 1798.666882814483, + 5226.610376097376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1798.666779073661, + "min_y": 5225.986550486916, + "max_x": 1798.666882814483, + "max_y": 5226.610376097376, + "center": [ + 1798.666830944072, + 5226.298463292145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1798.666882814483, + 5226.610376097376 + ], + [ + 1798.666779073661, + 5225.986550486916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.430949352046, + "min_y": 5225.830467000157, + "max_x": 1799.431104963279, + "max_y": 5226.766205415849, + "center": [ + 1799.4310271576624, + 5226.298336208003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.431104963279, + 5226.766205415849 + ], + [ + 1799.430949352046, + 5225.830467000157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1799.430959589833, + "min_y": 5225.892029985156, + "max_x": 1799.431094725488, + "max_y": 5226.704642430845, + "center": [ + 1799.4310271576605, + 5226.298336208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1799.430959589833, + 5225.892029985156 + ], + [ + 1799.431094725488, + 5226.704642430845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1775.18367657908, + "min_y": 5361.524895104221, + "max_x": 1778.879096498354, + "max_y": 5361.524895104221, + "center": [ + 1777.031386538717, + 5361.524895104221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1775.18367657908, + 5361.524895104221 + ], + [ + 1778.879096498354, + 5361.524895104221 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555D57", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1776.903912050602, + "min_y": 5361.846237344597, + "max_x": 1777.5310456068223, + "max_y": 5362.891459938298, + "center": [ + 1777.217478828712, + 5362.368848641448 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D58", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1776.723861130266, + "min_y": 5360.275793206105, + "max_x": 1777.3509946864863, + "max_y": 5361.3210157998055, + "center": [ + 1777.0374279083762, + 5360.798404502955 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1977.033011944327, + "min_y": 5390.841364289912, + "max_x": 1980.728431863601, + "max_y": 5390.841364289912, + "center": [ + 1978.880721903964, + 5390.841364289912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1977.033011944327, + 5390.841364289912 + ], + [ + 1980.728431863601, + 5390.841364289912 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555D5A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1978.585125300688, + "min_y": 5389.606224581489, + "max_x": 1979.2122588569084, + "max_y": 5390.65144717519, + "center": [ + 1978.8986920787984, + 5390.1288358783395 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1930.478968115403, + "min_y": 5343.056471915578, + "max_x": 1934.174388034677, + "max_y": 5343.056471915578, + "center": [ + 1932.32667807504, + 5343.056471915578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1930.478968115403, + 5343.056471915578 + ], + [ + 1934.174388034677, + 5343.056471915578 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "555D5C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1932.002220335269, + "min_y": 5341.75940377215, + "max_x": 1932.6293538914892, + "max_y": 5342.804626365851, + "center": [ + 1932.315787113379, + 5342.282015069 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D5D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1978.787836331461, + "min_y": 5391.098902326392, + "max_x": 1979.4149698876813, + "max_y": 5392.1441249200925, + "center": [ + 1979.101403109571, + 5391.621513623242 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D5E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1932.19206350765, + "min_y": 5343.262328160951, + "max_x": 1932.8191970638702, + "max_y": 5344.307550754652, + "center": [ + 1932.5056302857602, + 5343.784939457802 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.899814152937, + "min_y": 5314.700422949972, + "max_x": 1707.199401461459, + "max_y": 5314.700422949972, + "center": [ + 1707.049607807198, + 5314.700422949972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.899814152937, + 5314.700422949972 + ], + [ + 1707.199401461459, + 5314.700422949972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D60", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 1707.6334460242276, + "min_y": 5314.879579035542, + "max_x": 1708.2386137654223, + "max_y": 5315.484746776736, + "center": [ + 1707.936029894825, + 5315.182162906139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1707.936029894825, + 5315.182162906139 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D61", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 1707.829083712493, + "min_y": 5314.286079932101, + "max_x": 1708.2310189499751, + "max_y": 5314.684412939512, + "center": [ + 1708.030051331234, + 5314.485246435806 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.548176981157, + "min_y": 5314.700422949972, + "max_x": 1709.297586072037, + "max_y": 5314.700422949972, + "center": [ + 1708.922881526597, + 5314.700422949972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.297586072037, + 5314.700422949972 + ], + [ + 1708.548176981157, + 5314.700422949972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1707.199401461459, + "min_y": 5314.700422949972, + "max_x": 1707.323882808493, + "max_y": 5314.700422949972, + "center": [ + 1707.261642134976, + 5314.700422949972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1707.199401461459, + 5314.700422949972 + ], + [ + 1707.323882808493, + 5314.700422949972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D67", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1707.594088632968, + "min_y": 5315.484746776736, + "max_x": 1708.277971156682, + "max_y": 5315.484746776736, + "center": [ + 1707.936029894825, + 5315.484746776736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.277971156682, + 5315.484746776736 + ], + [ + 1707.936029894825, + 5315.484746776736 + ], + [ + 1707.594088632968, + 5315.484746776736 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D68", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1707.323882808493, + "min_y": 5313.750091045017, + "max_x": 1708.548176981157, + "max_y": 5314.87957903554, + "center": [ + 1707.936029894825, + 5314.314835040279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1707.583754012307, + 5314.521266864406 + ], + [ + 1707.323882808493, + 5314.521266864406 + ], + [ + 1707.323882808493, + 5314.87957903554 + ], + [ + 1707.583754012307, + 5314.87957903554 + ], + [ + 1708.288305777344, + 5314.87957903554 + ], + [ + 1708.548176981157, + 5314.87957903554 + ], + [ + 1708.548176981157, + 5314.521266864406 + ], + [ + 1707.583754012307, + 5314.521266864406 + ], + [ + 1707.583754012307, + 5313.750091045017 + ], + [ + 1708.288305777344, + 5313.750091045017 + ], + [ + 1708.288305777344, + 5314.521266864406 + ], + [ + 1708.288305777344, + 5314.521266864406 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1706.899814152937, + "min_y": 5312.541516175273, + "max_x": 1706.899814152937, + "max_y": 5314.700422949972, + "center": [ + 1706.899814152937, + 5313.620969562622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.899814152937, + 5312.541516175273 + ], + [ + 1706.899814152937, + 5314.700422949972 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.297586072037, + "min_y": 5314.700422949972, + "max_x": 1709.297586072037, + "max_y": 5323.252867762896, + "center": [ + 1709.297586072037, + 5318.976645356433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.297586072037, + 5314.700422949972 + ], + [ + 1709.297586072037, + 5323.252867762896 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1662.936978660329, + "min_y": 5323.252867762896, + "max_x": 1709.297586072037, + "max_y": 5323.252867762896, + "center": [ + 1686.117282366183, + 5323.252867762896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.297586072037, + 5323.252867762896 + ], + [ + 1662.936978660329, + 5323.252867762896 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D6C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5324.742019469593, + "max_x": 1661.447826953631, + "max_y": 5324.742019469593, + "center": [ + 1655.9249293435805, + 5324.742019469593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5324.742019469593 + ], + [ + 1661.447826953631, + 5324.742019469593 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D6D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5323.252867762896, + "max_x": 1662.936978660329, + "max_y": 5324.742019469593, + "center": [ + 1662.19240280698, + 5323.997443616245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1661.447826953631, + 5324.742019469593 + ], + [ + 1662.936978660329, + 5323.252867762896 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D6E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1661.447826953631, + "min_y": 5321.763716056199, + "max_x": 1662.936978660329, + "max_y": 5323.252867762896, + "center": [ + 1662.19240280698, + 5322.508291909548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1662.936978660329, + 5323.252867762896 + ], + [ + 1661.447826953631, + 5321.763716056199 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D6F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5321.763716056199, + "max_x": 1661.447826953631, + "max_y": 5321.763716056199, + "center": [ + 1655.9249293435805, + 5321.763716056199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5321.763716056199 + ], + [ + 1661.447826953631, + 5321.763716056199 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1650.40203173353, + "min_y": 5321.763716056199, + "max_x": 1650.40203173353, + "max_y": 5324.742019469593, + "center": [ + 1650.40203173353, + 5323.252867762896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.40203173353, + 5321.763716056199 + ], + [ + 1650.40203173353, + 5324.742019469593 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D71", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1650.605033026371, + "min_y": 5322.468632844246, + "max_x": 1662.2517990704625, + "max_y": 5323.961807978104, + "center": [ + 1656.4284160484167, + 5323.215220411175 + ] + }, + "raw_value": "K-10901 (Air)", + "clean_value": "K-10901 (Air)", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "555D72", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1650.472975878352, + "min_y": 5319.897904352351, + "max_x": 1663.2396232728368, + "max_y": 5321.017785702745, + "center": [ + 1656.8562995755942, + 5320.457845027548 + ] + }, + "raw_value": "SARF-UTILITY-UFD-IA", + "clean_value": "SARF-UTILITY-UFD-IA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D73", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5383.279093311521, + "max_x": 2004.238962263572, + "max_y": 5385.03534252825, + "center": [ + 2004.238962263572, + 5384.157217919886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5383.279093311521 + ], + [ + 2004.238962263572, + 5385.03534252825 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D74", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5387.122834460813, + "max_x": 2004.238962263572, + "max_y": 5389.082807772457, + "center": [ + 2004.238962263572, + 5388.102821116635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263572, + 5387.122834460813 + ], + [ + 2004.238962263572, + 5389.082807772457 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D75", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2003.174737831694, + "min_y": 5392.951118649735, + "max_x": 2004.7422229564313, + "max_y": 5394.257356253683, + "center": [ + 2003.9584803940627, + 5393.604237451709 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D76", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2001.0713121285028, + "min_y": 5389.0812615082705, + "max_x": 2007.4066123986393, + "max_y": 5395.416561778407, + "center": [ + 2004.238962263571, + 5392.248911643339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263571, + 5392.248911643339 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D77", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2001.522608510205, + "min_y": 5390.739811358773, + "max_x": 2006.2250638844164, + "max_y": 5392.046048962721, + "center": [ + 2003.8738361973105, + 5391.392930160748 + ] + }, + "raw_value": "10117C", + "clean_value": "10117C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555D78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2007.331397960836, + "min_y": 5395.971216937921, + "max_x": 2040.53996574971, + "max_y": 5395.971216937921, + "center": [ + 2023.935681855273, + 5395.971216937921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2007.331397960836, + 5395.971216937921 + ], + [ + 2040.53996574971, + 5395.971216937921 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D79", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1692.908812183814, + "min_y": 5316.994461744131, + "max_x": 1698.3502260748676, + "max_y": 5318.002130983215, + "center": [ + 1695.6295191293407, + 5317.498296363672 + ] + }, + "raw_value": "PSV-10101", + "clean_value": "PSV-10101", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555D7A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1693.569860892044, + "min_y": 5315.6990289227, + "max_x": 1697.802071696197, + "max_y": 5316.706698161784, + "center": [ + 1695.6859662941206, + 5316.202863542241 + ] + }, + "raw_value": "15Ax15A", + "clean_value": "15Ax15A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555D7B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1692.830912666298, + "min_y": 5314.310818746347, + "max_x": 1698.876928100802, + "max_y": 5315.318487985431, + "center": [ + 1695.8539203835498, + 5314.814653365889 + ] + }, + "raw_value": "SP: 0.3MPa", + "clean_value": "SP: 0.3MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555D7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.093748443173, + "min_y": 5314.122904046111, + "max_x": 1701.170729957695, + "max_y": 5314.122904046111, + "center": [ + 1700.632239200434, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.170729957695, + 5314.122904046111 + ], + [ + 1700.093748443173, + 5314.122904046111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.479009427442, + "min_y": 5313.92921572926, + "max_x": 1700.86638606115, + "max_y": 5314.316592362963, + "center": [ + 1700.6726977442959, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.479009427442, + 5313.92921572926 + ], + [ + 1700.86638606115, + 5314.316592362963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.28532111059, + "min_y": 5313.92921572926, + "max_x": 1700.672697744298, + "max_y": 5314.316592362963, + "center": [ + 1700.479009427444, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.672697744298, + 5314.316592362963 + ], + [ + 1700.28532111059, + 5313.92921572926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.091632793737, + "min_y": 5313.92921572926, + "max_x": 1700.479009427442, + "max_y": 5314.316592362963, + "center": [ + 1700.2853211105894, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.091632793737, + 5313.92921572926 + ], + [ + 1700.479009427442, + 5314.316592362963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.091632793737, + "min_y": 5314.122904046111, + "max_x": 1701.170729957695, + "max_y": 5314.122904046111, + "center": [ + 1700.631181375716, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.170729957695, + 5314.122904046111 + ], + [ + 1700.091632793737, + 5314.122904046111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.170729957695, + "min_y": 5313.735527412402, + "max_x": 1701.945483225107, + "max_y": 5314.122904046111, + "center": [ + 1701.558106591401, + 5313.929215729257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.170729957695, + 5314.122904046111 + ], + [ + 1701.945483225107, + 5313.735527412402 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.945483225107, + "min_y": 5313.735527412402, + "max_x": 1701.945483225107, + "max_y": 5314.51028067982, + "center": [ + 1701.945483225107, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.945483225107, + 5313.735527412402 + ], + [ + 1701.945483225107, + 5314.51028067982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.170729957695, + "min_y": 5314.122904046111, + "max_x": 1701.945483225107, + "max_y": 5314.51028067982, + "center": [ + 1701.558106591401, + 5314.316592362966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.945483225107, + 5314.51028067982 + ], + [ + 1701.170729957695, + 5314.122904046111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.783353323986, + "min_y": 5314.122904046111, + "max_x": 1701.170729957695, + "max_y": 5314.897657313525, + "center": [ + 1700.9770416408405, + 5314.510280679819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.170729957695, + 5314.122904046111 + ], + [ + 1700.783353323986, + 5314.897657313525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.783353323986, + "min_y": 5314.897657313525, + "max_x": 1701.558106591398, + "max_y": 5314.897657313525, + "center": [ + 1701.170729957692, + 5314.897657313525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.783353323986, + 5314.897657313525 + ], + [ + 1701.558106591398, + 5314.897657313525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.170729957695, + "min_y": 5314.122904046111, + "max_x": 1701.558106591398, + "max_y": 5314.897657313525, + "center": [ + 1701.3644182745466, + 5314.510280679819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.558106591398, + 5314.897657313525 + ], + [ + 1701.170729957695, + 5314.122904046111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.213522590571, + "min_y": 5313.735527412402, + "max_x": 1702.213522590571, + "max_y": 5314.51028067982, + "center": [ + 1702.213522590571, + 5314.122904046111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1702.213522590571, + 5313.735527412402 + ], + [ + 1702.213522590571, + 5314.51028067982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.783353323986, + "min_y": 5315.160059776984, + "max_x": 1701.558106591398, + "max_y": 5315.160059776984, + "center": [ + 1701.170729957692, + 5315.160059776984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.783353323986, + 5315.160059776984 + ], + [ + 1701.558106591398, + 5315.160059776984 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1702.214896390662, + "min_y": 5314.11957196192, + "max_x": 1706.859815369841, + "max_y": 5314.11957196192, + "center": [ + 1704.5373558802517, + 5314.11957196192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1706.859815369841, + 5314.11957196192 + ], + [ + 1702.214896390662, + 5314.11957196192 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1701.163588966639, + "min_y": 5315.174006762143, + "max_x": 1701.163588966639, + "max_y": 5317.473050811119, + "center": [ + 1701.163588966639, + 5316.323528786631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1701.163588966639, + 5315.174006762143 + ], + [ + 1701.163588966639, + 5317.473050811119 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555D8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1941.263832449321, + "min_y": 5419.60208516468, + "max_x": 1941.263832449321, + "max_y": 5423.503522006175, + "center": [ + 1941.263832449321, + 5421.552803585428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1941.263832449321, + 5419.60208516468 + ], + [ + 1941.263832449321, + 5423.503522006175 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555D8C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 1703.235079214341, + "min_y": 5315.749627821078, + "max_x": 1711.3684160210692, + "max_y": 5316.879257933124, + "center": [ + 1707.3017476177051, + 5316.314442877101 + ] + }, + "raw_value": "0.7->0.29MPa", + "clean_value": "0.7->0.29MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555D8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.417328609859, + "min_y": 5220.575216361499, + "max_x": 1918.655040450359, + "max_y": 5220.575216361499, + "center": [ + 1918.036184530109, + 5220.575216361499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.417328609859, + 5220.575216361499 + ], + [ + 1918.655040450359, + 5220.575216361499 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555D8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.962523390176, + "min_y": 5219.985391540626, + "max_x": 1918.962523390176, + "max_y": 5220.992924979683, + "center": [ + 1918.962523390176, + 5220.489158260154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.962523390176, + 5219.985391540626 + ], + [ + 1918.962523390176, + 5220.992924979683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.656012625143, + "min_y": 5219.985699148799, + "max_x": 1918.656012625143, + "max_y": 5220.993232587846, + "center": [ + 1918.656012625143, + 5220.489465868322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.656012625143, + 5220.993232587846 + ], + [ + 1918.656012625143, + 5219.985699148799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.027030121143, + "min_y": 5347.605317346815, + "max_x": 1714.099208975672, + "max_y": 5347.824126540233, + "center": [ + 1713.5631195484075, + 5347.714721943525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.027030121143, + 5347.605317346815 + ], + [ + 1714.099208975672, + 5347.824126540233 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.027030121143, + "min_y": 5348.699363313927, + "max_x": 1714.099208975672, + "max_y": 5348.918172507353, + "center": [ + 1713.5631195484075, + 5348.80876791064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.027030121143, + 5348.918172507353 + ], + [ + 1714.099208975672, + 5348.699363313927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1714.099208975672, + "min_y": 5347.824126540233, + "max_x": 1714.099208975672, + "max_y": 5348.699363313927, + "center": [ + 1714.099208975672, + 5348.26174492708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1714.099208975672, + 5348.699363313927 + ], + [ + 1714.099208975672, + 5347.824126540233 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1713.027030121143, + "min_y": 5347.605317346815, + "max_x": 1713.027030121143, + "max_y": 5348.918172507353, + "center": [ + 1713.027030121143, + 5348.261744927084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.027030121143, + 5348.918172507353 + ], + [ + 1713.027030121143, + 5347.605317346815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D94", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1714.04572361429, + "min_y": 5344.460838259831, + "max_x": 1719.4211540961783, + "max_y": 5345.580719610224, + "center": [ + 1716.733438855234, + 5345.020778935028 + ] + }, + "raw_value": "100Ax80A", + "clean_value": "100Ax80A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D95", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1712.264584725955, + "min_y": 5348.257015616176, + "max_x": 1713.037786898344, + "max_y": 5348.257015616176, + "center": [ + 1712.6511858121494, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1713.037786898344, + 5348.257015616176 + ], + [ + 1712.264584725955, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.436490868854, + "min_y": 5348.666355172621, + "max_x": 1744.508669723384, + "max_y": 5348.885164366039, + "center": [ + 1743.9725802961188, + 5348.77575976933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.508669723384, + 5348.885164366039 + ], + [ + 1743.436490868854, + 5348.666355172621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.436490868854, + "min_y": 5347.5723092055, + "max_x": 1744.508669723384, + "max_y": 5347.791118398927, + "center": [ + 1743.9725802961188, + 5347.681713802213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.508669723384, + 5347.5723092055 + ], + [ + 1743.436490868854, + 5347.791118398927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1743.436490868854, + "min_y": 5347.791118398927, + "max_x": 1743.436490868854, + "max_y": 5348.666355172621, + "center": [ + 1743.436490868854, + 5348.228736785773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1743.436490868854, + 5347.791118398927 + ], + [ + 1743.436490868854, + 5348.666355172621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.508669723384, + "min_y": 5347.5723092055, + "max_x": 1744.508669723384, + "max_y": 5348.885164366039, + "center": [ + 1744.508669723384, + 5348.22873678577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.508669723384, + 5347.5723092055 + ], + [ + 1744.508669723384, + 5348.885164366039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D9A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1744.50823117619, + "min_y": 5344.403564538639, + "max_x": 1749.8836616580784, + "max_y": 5345.523445889033, + "center": [ + 1747.195946417134, + 5344.9635052138365 + ] + }, + "raw_value": "80Ax100A", + "clean_value": "80Ax100A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D9B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1734.502822803924, + "min_y": 5348.257015616176, + "max_x": 1743.436745036204, + "max_y": 5348.257015616176, + "center": [ + 1738.969783920064, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1734.502822803924, + 5348.257015616176 + ], + [ + 1743.436745036204, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555D9C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1799.584676575439, + "min_y": 5272.44029008175, + "max_x": 1804.9601070573274, + "max_y": 5273.560171432144, + "center": [ + 1802.2723918163833, + 5273.000230756947 + ] + }, + "raw_value": "100Ax65A", + "clean_value": "100Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D9D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1799.635775983964, + "min_y": 5226.872402586595, + "max_x": 1805.0112064658524, + "max_y": 5227.992283936988, + "center": [ + 1802.3234912249081, + 5227.432343261791 + ] + }, + "raw_value": "100Ax65A", + "clean_value": "100Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555D9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1784.036874216177, + "min_y": 5255.333444439706, + "max_x": 1785.8506788465281, + "max_y": 5256.34111367879, + "center": [ + 1784.9437765313526, + 5255.8372790592475 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555D9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.343507681731, + "min_y": 5252.000254435272, + "max_x": 1784.499591168489, + "max_y": 5252.764424713657, + "center": [ + 1784.4215494251098, + 5252.382339574464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.499591168489, + 5252.764424713657 + ], + [ + 1784.343507681731, + 5252.000254435272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.563852752799, + "min_y": 5252.000358176093, + "max_x": 1783.71968207127, + "max_y": 5252.76458032489, + "center": [ + 1783.6417674120344, + 5252.382469250491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.563852752799, + 5252.76458032489 + ], + [ + 1783.71968207127, + 5252.000358176093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.71968207127, + "min_y": 5252.000254435272, + "max_x": 1784.343507681731, + "max_y": 5252.000358176093, + "center": [ + 1784.0315948765005, + 5252.000306305683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.71968207127, + 5252.000358176093 + ], + [ + 1784.343507681731, + 5252.000254435272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.563852752799, + "min_y": 5252.764424713657, + "max_x": 1784.499591168489, + "max_y": 5252.76458032489, + "center": [ + 1784.031721960644, + 5252.764502519273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.563852752799, + 5252.76458032489 + ], + [ + 1784.499591168489, + 5252.764424713657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.625415737802, + "min_y": 5252.764434951444, + "max_x": 1784.438028183491, + "max_y": 5252.7645700871, + "center": [ + 1784.0317219606466, + 5252.764502519272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.438028183491, + 5252.764434951444 + ], + [ + 1783.625415737802, + 5252.7645700871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.553156803233, + "min_y": 5212.243151780396, + "max_x": 1783.709240289991, + "max_y": 5213.007322058781, + "center": [ + 1783.6311985466118, + 5212.625236919588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.553156803233, + 5212.243151780396 + ], + [ + 1783.709240289991, + 5213.007322058781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1784.333065900452, + "min_y": 5212.242996169163, + "max_x": 1784.488895218924, + "max_y": 5213.007218317959, + "center": [ + 1784.4109805596881, + 5212.625107243561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.488895218924, + 5212.242996169163 + ], + [ + 1784.333065900452, + 5213.007218317959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.709240289991, + "min_y": 5213.007218317959, + "max_x": 1784.333065900452, + "max_y": 5213.007322058781, + "center": [ + 1784.0211530952215, + 5213.00727018837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.333065900452, + 5213.007218317959 + ], + [ + 1783.709240289991, + 5213.007322058781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.553156803233, + "min_y": 5212.242996169163, + "max_x": 1784.488895218924, + "max_y": 5212.243151780396, + "center": [ + 1784.0210260110784, + 5212.24307397478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1784.488895218924, + 5212.242996169163 + ], + [ + 1783.553156803233, + 5212.243151780396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1783.614719788232, + "min_y": 5212.243006406954, + "max_x": 1784.42733223392, + "max_y": 5212.243141542608, + "center": [ + 1784.021026011076, + 5212.2430739747815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1783.614719788232, + 5212.243141542608 + ], + [ + 1784.42733223392, + 5212.243006406954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DA9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1784.658519623409, + "min_y": 5210.90722992845, + "max_x": 1786.47232425376, + "max_y": 5211.914899167534, + "center": [ + 1785.5654219385844, + 5211.411064547992 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DAA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1801.446038443639, + "min_y": 5272.76771622539, + "max_x": 1807.4933977357634, + "max_y": 5273.887597575784, + "center": [ + 1804.4697180897012, + 5273.327656900587 + ] + }, + "raw_value": "300Ax500A", + "clean_value": "300Ax500A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1788.522776621401, + "min_y": 5282.765689824337, + "max_x": 1802.855648371894, + "max_y": 5282.765689824337, + "center": [ + 1795.6892124966475, + 5282.765689824337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1788.522776621401, + 5282.765689824337 + ], + [ + 1802.855648371894, + 5282.765689824337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555DAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1795.613088408874, + "min_y": 5276.726289335588, + "max_x": 1802.855648371894, + "max_y": 5282.765689824337, + "center": [ + 1799.2343683903841, + 5279.745989579962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1795.613088408874, + 5276.726289335588 + ], + [ + 1802.855648371894, + 5282.765689824337 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555DAD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1798.132368200133, + "min_y": 5277.566160909754, + "max_x": 1811.570944404854, + "max_y": 5278.686042260148, + "center": [ + 1804.8516563024934, + 5278.12610158495 + ] + }, + "raw_value": "P-10117-500A-F2A-H50", + "clean_value": "P-10117-500A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1802.361557738692, + "min_y": 5245.329549904759, + "max_x": 1802.361557738692, + "max_y": 5276.70597295166, + "center": [ + 1802.361557738692, + 5261.017761428209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.361557738692, + 5276.70597295166 + ], + [ + 1802.361557738692, + 5245.329549904759 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555DAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1802.361557738692, + "min_y": 5231.330873481586, + "max_x": 1802.361557738692, + "max_y": 5244.895125250916, + "center": [ + 1802.361557738692, + 5238.112999366251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1802.361557738692, + 5244.895125250916 + ], + [ + 1802.361557738692, + 5231.330873481586 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555DB0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1821.698467678447, + "min_y": 5256.01191792987, + "max_x": 1824.1168738522485, + "max_y": 5257.019587168954, + "center": [ + 1822.9076707653478, + 5256.515752549412 + ] + }, + "raw_value": "250A", + "clean_value": "250A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.816910880614, + "min_y": 5244.630489911338, + "max_x": 1817.581081158999, + "max_y": 5244.786573398096, + "center": [ + 1817.1989960198066, + 5244.708531654717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.581081158999, + 5244.630489911338 + ], + [ + 1816.816910880614, + 5244.786573398096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.817014621436, + "min_y": 5245.410399008557, + "max_x": 1817.581236770232, + "max_y": 5245.566228327028, + "center": [ + 1817.199125695834, + 5245.488313667793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.581236770232, + 5245.566228327028 + ], + [ + 1816.817014621436, + 5245.410399008557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1816.816910880614, + "min_y": 5244.786573398096, + "max_x": 1816.817014621436, + "max_y": 5245.410399008557, + "center": [ + 1816.8169627510251, + 5245.0984862033265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.817014621436, + 5245.410399008557 + ], + [ + 1816.816910880614, + 5244.786573398096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1817.587233927207, + "min_y": 5244.630489911338, + "max_x": 1817.587389538439, + "max_y": 5245.566228327028, + "center": [ + 1817.587311732823, + 5245.098359119183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.587389538439, + 5245.566228327028 + ], + [ + 1817.587233927207, + 5244.630489911338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.016689052498, + "min_y": 5200.103629721795, + "max_x": 1812.780859330883, + "max_y": 5200.259713208554, + "center": [ + 1812.3987741916903, + 5200.181671465174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.780859330883, + 5200.103629721795 + ], + [ + 1812.016689052498, + 5200.259713208554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.01679279332, + "min_y": 5200.883538819015, + "max_x": 1812.781014942115, + "max_y": 5201.039368137486, + "center": [ + 1812.3989038677175, + 5200.96145347825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.781014942115, + 5201.039368137486 + ], + [ + 1812.01679279332, + 5200.883538819015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.016689052498, + "min_y": 5200.259713208554, + "max_x": 1812.01679279332, + "max_y": 5200.883538819015, + "center": [ + 1812.0167409229089, + 5200.571626013784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.01679279332, + 5200.883538819015 + ], + [ + 1812.016689052498, + 5200.259713208554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1812.787012099091, + "min_y": 5200.103629721795, + "max_x": 1812.787167710323, + "max_y": 5201.039368137486, + "center": [ + 1812.787089904707, + 5200.571498929641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.787167710323, + 5201.039368137486 + ], + [ + 1812.787012099091, + 5200.103629721795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DB9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1815.831977669122, + "min_y": 5243.308342767083, + "max_x": 1821.8793369612463, + "max_y": 5244.428224117476, + "center": [ + 1818.855657315184, + 5243.86828344228 + ] + }, + "raw_value": "200Ax250A", + "clean_value": "200Ax250A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DBA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1810.981866604605, + "min_y": 5198.766656864034, + "max_x": 1817.0292258967295, + "max_y": 5199.886538214428, + "center": [ + 1814.0055462506673, + 5199.326597539231 + ] + }, + "raw_value": "200Ax250A", + "clean_value": "200Ax250A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DBB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1817.587181679429, + "min_y": 5245.100339809898, + "max_x": 1820.690081472285, + "max_y": 5245.100339809901, + "center": [ + 1819.138631575857, + 5245.1003398099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1817.587181679429, + 5245.100339809898 + ], + [ + 1820.690081472285, + 5245.100339809901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DBC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1812.786836757016, + "min_y": 5200.564980098745, + "max_x": 1816.000654109004, + "max_y": 5200.56498009875, + "center": [ + 1814.39374543301, + 5200.564980098748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1812.786836757016, + 5200.564980098745 + ], + [ + 1816.000654109004, + 5200.56498009875 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DBD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1812.958052918594, + "min_y": 5274.730208685166, + "max_x": 1815.3764590923954, + "max_y": 5275.73787792425, + "center": [ + 1814.1672560054947, + 5275.234043304708 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DBE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1793.653697479865, + "min_y": 5274.89321371285, + "max_x": 1796.0721036536665, + "max_y": 5275.900882951934, + "center": [ + 1794.8629005667658, + 5275.397048332392 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DBF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1793.664800405656, + "min_y": 5229.524611959868, + "max_x": 1796.0832065794575, + "max_y": 5230.532281198952, + "center": [ + 1794.8740034925568, + 5230.02844657941 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DC0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1813.159747718061, + "min_y": 5294.059769886621, + "max_x": 1814.973552348412, + "max_y": 5295.067439125705, + "center": [ + 1814.0666500332366, + 5294.563604506164 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DC1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1699.327627408728, + "min_y": 5215.986694382946, + "max_x": 1704.0311290803802, + "max_y": 5217.106575733339, + "center": [ + 1701.679378244554, + 5216.546635058143 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DC2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1765.371715227251, + "min_y": 5248.912540414668, + "max_x": 1770.0752168989031, + "max_y": 5250.032421765061, + "center": [ + 1767.723466063077, + 5249.472481089864 + ] + }, + "raw_value": "65Ax40A", + "clean_value": "65Ax40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DC3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1780.854366552126, + "min_y": 5251.785903496659, + "max_x": 1785.5578682237783, + "max_y": 5252.905784847052, + "center": [ + 1783.2061173879522, + 5252.345844171856 + ] + }, + "raw_value": "40Ax65A", + "clean_value": "40Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DC4", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1780.885644551242, + "min_y": 5212.037813906911, + "max_x": 1785.5891462228942, + "max_y": 5213.157695257304, + "center": [ + 1783.237395387068, + 5212.597754582108 + ] + }, + "raw_value": "40Ax65A", + "clean_value": "40Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DC5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1812.271918329717, + "min_y": 5292.612640455455, + "max_x": 1816.9754200013692, + "max_y": 5293.732521805849, + "center": [ + 1814.623669165543, + 5293.172581130651 + ] + }, + "raw_value": "25Ax50A", + "clean_value": "25Ax50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DC6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1829.468772527091, + "min_y": 5204.884042483659, + "max_x": 1831.2825771574421, + "max_y": 5205.891711722743, + "center": [ + 1830.3756748422666, + 5205.387877103201 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1831.888333042895, + "min_y": 5220.321592728773, + "max_x": 1833.7021376732462, + "max_y": 5221.329261967857, + "center": [ + 1832.7952353580706, + 5220.825427348314 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DC8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1832.009630551533, + "min_y": 5217.163098805829, + "max_x": 1833.8234351818842, + "max_y": 5218.170768044913, + "center": [ + 1832.9165328667086, + 5217.666933425371 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DC9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1727.381910736633, + "min_y": 5230.46373853386, + "max_x": 1729.1957153669841, + "max_y": 5231.471407772944, + "center": [ + 1728.2888130518086, + 5230.967573153403 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1725.956636772931, + "min_y": 5226.915601068597, + "max_x": 1727.7704414032821, + "max_y": 5227.923270307681, + "center": [ + 1726.8635390881066, + 5227.41943568814 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1711.063978201929, + "min_y": 5221.941181969387, + "max_x": 1712.8777828322802, + "max_y": 5222.948851208471, + "center": [ + 1711.9708805171047, + 5222.445016588928 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1706.002801266031, + "min_y": 5218.974285144896, + "max_x": 1707.816605896382, + "max_y": 5219.98195438398, + "center": [ + 1706.9097035812065, + 5219.478119764439 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1706.11915016111, + "min_y": 5215.600167187631, + "max_x": 1707.932954791461, + "max_y": 5216.607836426715, + "center": [ + 1707.0260524762855, + 5216.104001807173 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1695.406607085731, + "min_y": 5218.766519260828, + "max_x": 1697.220411716082, + "max_y": 5219.774188499912, + "center": [ + 1696.3135094009065, + 5219.270353880371 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DCF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1691.045908587849, + "min_y": 5203.539983035193, + "max_x": 1692.8597132182, + "max_y": 5204.5476522742765, + "center": [ + 1691.9528109030246, + 5204.043817654734 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1719.243855502398, + "min_y": 5222.023249245676, + "max_x": 1722.2668632196498, + "max_y": 5223.03091848476, + "center": [ + 1720.755359361024, + 5222.527083865218 + ] + }, + "raw_value": "1/4''", + "clean_value": "1/4''", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1718.115817495532, + "min_y": 5213.028975709034, + "max_x": 1721.1388252127838, + "max_y": 5214.036644948118, + "center": [ + 1719.6273213541579, + 5213.532810328576 + ] + }, + "raw_value": "1/4''", + "clean_value": "1/4''", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1718.2104630331, + "min_y": 5232.478633679142, + "max_x": 1721.233470750352, + "max_y": 5233.486302918226, + "center": [ + 1719.721966891726, + 5232.982468298684 + ] + }, + "raw_value": "1/4''", + "clean_value": "1/4''", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1719.141707518808, + "min_y": 5241.456438956969, + "max_x": 1722.16471523606, + "max_y": 5242.464108196053, + "center": [ + 1720.653211377434, + 5241.960273576511 + ] + }, + "raw_value": "1/4''", + "clean_value": "1/4''", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1711.198242577854, + "min_y": 5241.154485802933, + "max_x": 1713.012047208205, + "max_y": 5242.162155042017, + "center": [ + 1712.1051448930295, + 5241.658320422475 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1741.952006219825, + "min_y": 5225.789676116843, + "max_x": 1743.7658108501762, + "max_y": 5226.797345355927, + "center": [ + 1742.8589085350006, + 5226.293510736385 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1863.997757902536, + "min_y": 5217.348144470747, + "max_x": 1865.452746856011, + "max_y": 5218.156471667122, + "center": [ + 1864.7252523792736, + 5217.752308068934 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DD7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1928.099638455602, + "min_y": 5213.19778689225, + "max_x": 1935.4908553681985, + "max_y": 5214.317668242644, + "center": [ + 1931.7952469119002, + 5213.757727567447 + ] + }, + "raw_value": "E10119BA-03", + "clean_value": "E10119BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DD8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1921.216844296851, + "min_y": 5213.11010798577, + "max_x": 1928.6080612094474, + "max_y": 5214.229989336163, + "center": [ + 1924.9124527531492, + 5213.670048660966 + ] + }, + "raw_value": "E10119BA-04", + "clean_value": "E10119BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DD9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1852.852514960638, + "min_y": 5374.808062222469, + "max_x": 1854.6663195909891, + "max_y": 5375.815731461553, + "center": [ + 1853.7594172758136, + 5375.311896842011 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1849.046438699848, + "min_y": 5338.915893382141, + "max_x": 1850.8602433301992, + "max_y": 5339.923562621225, + "center": [ + 1849.9533410150236, + 5339.419728001683 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DDB", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1859.31971394103, + "min_y": 5275.211274521712, + "max_x": 1861.3355003717381, + "max_y": 5276.331155872105, + "center": [ + 1860.3276071563841, + 5275.771215196908 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DDC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1865.202486539025, + "min_y": 5286.626085233748, + "max_x": 1869.234059400441, + "max_y": 5287.186025908945, + "center": [ + 1867.2182729697329, + 5286.906055571347 + ] + }, + "raw_value": "PG10118CV-01", + "clean_value": "PG10118CV-01", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DDD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1875.006753441179, + "min_y": 5292.534061276469, + "max_x": 1877.0225398718871, + "max_y": 5293.653942626863, + "center": [ + 1876.014646656533, + 5293.094001951666 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DDE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1875.007643828675, + "min_y": 5289.331379935839, + "max_x": 1877.0234302593833, + "max_y": 5290.451261286233, + "center": [ + 1876.0155370440293, + 5289.891320611036 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DDF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1889.131116597847, + "min_y": 5303.050118249878, + "max_x": 1891.1469030285552, + "max_y": 5304.169999600272, + "center": [ + 1890.139009813201, + 5303.610058925075 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1903.156224627392, + "min_y": 5306.489881856033, + "max_x": 1903.156224627392, + "max_y": 5307.042868006017, + "center": [ + 1903.156224627392, + 5306.766374931025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1903.156224627392, + 5306.489881856033 + ], + [ + 1903.156224627392, + 5307.042868006017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DE1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1902.425023668277, + "min_y": 5245.022695277356, + "max_x": 1909.8162405808735, + "max_y": 5246.14257662775, + "center": [ + 1906.1206321245752, + 5245.582635952553 + ] + }, + "raw_value": "E10118BA-12", + "clean_value": "E10118BA-12", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DE2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1994.198512200773, + "min_y": 5357.11191984478, + "max_x": 1999.5739426826613, + "max_y": 5358.231801195173, + "center": [ + 1996.886227441717, + 5357.671860519977 + ] + }, + "raw_value": "100Ax50A", + "clean_value": "100Ax50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.678299171853, + "min_y": 5370.284146684032, + "max_x": 2004.804995916348, + "max_y": 5370.284146684032, + "center": [ + 2004.2416475441005, + 5370.284146684032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.804995916348, + 5370.284146684032 + ], + [ + 2003.678299171853, + 5370.284146684032 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.940768299837, + "min_y": 5369.421412916978, + "max_x": 2004.542526788372, + "max_y": 5369.421412916978, + "center": [ + 2004.2416475441046, + 5369.421412916978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.542526788372, + 5369.421412916978 + ], + [ + 2003.940768299837, + 5369.421412916978 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.542526788372, + "min_y": 5369.421412916978, + "max_x": 2004.804995916348, + "max_y": 5370.284146684032, + "center": [ + 2004.67376135236, + 5369.852779800505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.542526788372, + 5369.421412916978 + ], + [ + 2004.804995916348, + 5370.284146684032 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.678299171853, + "min_y": 5369.421412916978, + "max_x": 2003.940768299837, + "max_y": 5370.284146684032, + "center": [ + 2003.809533735845, + 5369.852779800505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.940768299837, + 5369.421412916978 + ], + [ + 2003.678299171853, + 5370.284146684032 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DE7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2004.238962263572, + "min_y": 5370.284070368592, + "max_x": 2004.238962263582, + "max_y": 5380.506564385798, + "center": [ + 2004.238962263577, + 5375.395317377195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.238962263582, + 5370.284070368592 + ], + [ + 2004.238962263572, + 5380.506564385798 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DE8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2003.318657201782, + "min_y": 5368.300658525114, + "max_x": 2008.0221588734341, + "max_y": 5369.4205398755075, + "center": [ + 2005.670408037608, + 5368.86059920031 + ] + }, + "raw_value": "40Ax65A", + "clean_value": "40Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1916.508367370688, + "min_y": 5330.560262004198, + "max_x": 1918.322172001039, + "max_y": 5331.567931243282, + "center": [ + 1917.4152696858634, + 5331.064096623741 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DEA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1922.9459765521, + "min_y": 5334.252517937427, + "max_x": 1930.3371934646966, + "max_y": 5335.37239928782, + "center": [ + 1926.6415850083984, + 5334.812458612623 + ] + }, + "raw_value": "P10114BA-01", + "clean_value": "P10114BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DEB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1920.486950199291, + "min_y": 5330.491654103719, + "max_x": 1927.8781671118875, + "max_y": 5331.6115354541125, + "center": [ + 1924.1825586555892, + 5331.051594778915 + ] + }, + "raw_value": "P10114BA-02", + "clean_value": "P10114BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DEC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1909.069975066017, + "min_y": 5345.696456977151, + "max_x": 1913.7734767376692, + "max_y": 5346.816338327544, + "center": [ + 1911.421725901843, + 5346.256397652347 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1902.697283412067, + "min_y": 5346.403709457922, + "max_x": 1904.5110880424181, + "max_y": 5347.411378697006, + "center": [ + 1903.6041857272426, + 5346.907544077463 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DEE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1902.755997897432, + "min_y": 5349.628204127005, + "max_x": 1904.5698025277832, + "max_y": 5350.635873366089, + "center": [ + 1903.6629002126076, + 5350.132038746548 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DEF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1938.464791071825, + "min_y": 5321.420371947029, + "max_x": 1940.278595702176, + "max_y": 5322.428041186113, + "center": [ + 1939.3716933870005, + 5321.924206566571 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1884.602562851518, + "min_y": 5221.306285415885, + "max_x": 1896.0253526255308, + "max_y": 5222.426166766279, + "center": [ + 1890.3139577385246, + 5221.866226091082 + ] + }, + "raw_value": "P-10122-20A-F1A-n", + "clean_value": "P-10122-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.848143605409, + "min_y": 5230.896857725748, + "max_x": 1801.612313883794, + "max_y": 5231.052941212507, + "center": [ + 1801.2302287446014, + 5230.974899469127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.612313883794, + 5230.896857725748 + ], + [ + 1800.848143605409, + 5231.052941212507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.848247346231, + "min_y": 5231.676766822968, + "max_x": 1801.612469495026, + "max_y": 5231.83259614144, + "center": [ + 1801.2303584206284, + 5231.7546814822035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.612469495026, + 5231.83259614144 + ], + [ + 1800.848247346231, + 5231.676766822968 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1800.848143605409, + "min_y": 5231.052941212507, + "max_x": 1800.848247346231, + "max_y": 5231.676766822968, + "center": [ + 1800.84819547582, + 5231.364854017737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.848247346231, + 5231.676766822968 + ], + [ + 1800.848143605409, + 5231.052941212507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1801.612313883794, + "min_y": 5230.896857725748, + "max_x": 1801.612469495026, + "max_y": 5231.83259614144, + "center": [ + 1801.61239168941, + 5231.364726933594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.612469495026, + 5231.83259614144 + ], + [ + 1801.612313883794, + 5230.896857725748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1801.612324121581, + "min_y": 5230.958420710748, + "max_x": 1801.612459257236, + "max_y": 5231.771033156435, + "center": [ + 1801.6123916894085, + 5231.364726933592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1801.612324121581, + 5230.958420710748 + ], + [ + 1801.612459257236, + 5231.771033156435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555DF6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1795.000253058717, + "min_y": 5231.331350199765, + "max_x": 1800.848147749017, + "max_y": 5231.331350199891, + "center": [ + 1797.924200403867, + 5231.331350199828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.848147749017, + 5231.331350199891 + ], + [ + 1795.000253058717, + 5231.331350199765 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DF7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1801.859716767834, + "min_y": 5227.535607486953, + "max_x": 1807.9070760599584, + "max_y": 5228.655488837347, + "center": [ + 1804.8833964138962, + 5228.0955481621495 + ] + }, + "raw_value": "300Ax500A", + "clean_value": "300Ax500A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555DF8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1794.97750233254, + "min_y": 5276.711073769992, + "max_x": 1800.500969332516, + "max_y": 5276.715958262892, + "center": [ + 1797.739235832528, + 5276.713516016442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1800.500969332516, + 5276.711073769992 + ], + [ + 1794.97750233254, + 5276.715958262892 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DF9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.758529476978, + "min_y": 5216.755150807517, + "max_x": 1839.914612963736, + "max_y": 5217.519321085901, + "center": [ + 1839.8365712203572, + 5217.137235946709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.914612963736, + 5217.519321085901 + ], + [ + 1839.758529476978, + 5216.755150807517 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DFA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1838.978874548046, + "min_y": 5216.755254548337, + "max_x": 1839.134703866518, + "max_y": 5217.519476697134, + "center": [ + 1839.056789207282, + 5217.137365622735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.978874548046, + 5217.519476697134 + ], + [ + 1839.134703866518, + 5216.755254548337 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DFB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.134703866518, + "min_y": 5216.755150807517, + "max_x": 1839.758529476978, + "max_y": 5216.755254548337, + "center": [ + 1839.446616671748, + 5216.755202677927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.134703866518, + 5216.755254548337 + ], + [ + 1839.758529476978, + 5216.755150807517 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DFC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1838.978874548046, + "min_y": 5217.519321085901, + "max_x": 1839.914612963736, + "max_y": 5217.519476697134, + "center": [ + 1839.446743755891, + 5217.519398891518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1838.978874548046, + 5217.519476697134 + ], + [ + 1839.914612963736, + 5217.519321085901 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DFD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.040437533049, + "min_y": 5217.519331323689, + "max_x": 1839.853049978738, + "max_y": 5217.519466459343, + "center": [ + 1839.4467437558935, + 5217.519398891516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.853049978738, + 5217.519331323689 + ], + [ + 1839.040437533049, + 5217.519466459343 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555DFE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1839.450671002283, + "min_y": 5217.519392983405, + "max_x": 1839.450722497147, + "max_y": 5236.596206687328, + "center": [ + 1839.450696749715, + 5227.0577998353665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1839.450722497147, + 5217.519392983405 + ], + [ + 1839.450671002283, + 5236.596206687328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555DFF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1840.240100075306, + "min_y": 5216.610999050772, + "max_x": 1844.9436017469582, + "max_y": 5217.730880401165, + "center": [ + 1842.591850911132, + 5217.170939725969 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555E00", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1917.41583119863, + "min_y": 5218.236377505247, + "max_x": 1917.41583119863, + "max_y": 5220.577917583568, + "center": [ + 1917.41583119863, + 5219.407147544407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.41583119863, + 5218.236377505247 + ], + [ + 1917.41583119863, + 5220.577917583568 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E01", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1917.41583119863, + "min_y": 5217.70181676862, + "max_x": 1917.41583119863, + "max_y": 5218.583650939468, + "center": [ + 1917.41583119863, + 5218.142733854043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.41583119863, + 5217.70181676862 + ], + [ + 1917.41583119863, + 5218.583650939468 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E02", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1985.442642423812, + "min_y": 5349.387858248726, + "max_x": 1987.2564470541631, + "max_y": 5350.39552748781, + "center": [ + 1986.3495447389876, + 5349.891692868268 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E03", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1986.711367631272, + "min_y": 5344.374900600539, + "max_x": 1988.525172261623, + "max_y": 5345.382569839623, + "center": [ + 1987.6182699464475, + 5344.878735220082 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E04", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1980.517060896728, + "min_y": 5345.383687301007, + "max_x": 1982.3308655270791, + "max_y": 5346.391356540091, + "center": [ + 1981.4239632119036, + 5345.887521920549 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E05", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1744.513554311021, + "min_y": 5348.257015616176, + "max_x": 1800.0802086969, + "max_y": 5348.257015616176, + "center": [ + 1772.2968815039603, + 5348.257015616176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.513554311021, + 5348.257015616176 + ], + [ + 1800.0802086969, + 5348.257015616176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.822265942964, + "min_y": 5365.089033962394, + "max_x": 1892.164211514721, + "max_y": 5365.089033962394, + "center": [ + 1891.4932387288425, + 5365.089033962394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.822265942964, + 5365.089033962394 + ], + [ + 1892.164211514721, + 5365.089033962394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1890.822265942964, + "min_y": 5365.471441262022, + "max_x": 1892.164211514721, + "max_y": 5365.471441262022, + "center": [ + 1891.4932387288425, + 5365.471441262022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1890.822265942964, + 5365.471441262022 + ], + [ + 1892.164211514721, + 5365.471441262022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.07029501574, + "min_y": 5307.299461545607, + "max_x": 1958.07029501574, + "max_y": 5308.54693771453, + "center": [ + 1958.07029501574, + 5307.923199630069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.07029501574, + 5307.299461545607 + ], + [ + 1958.07029501574, + 5308.54693771453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.699082273065, + "min_y": 5307.299461545607, + "max_x": 1957.699082273065, + "max_y": 5308.54693771453, + "center": [ + 1957.699082273065, + 5307.923199630069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.699082273065, + 5307.299461545607 + ], + [ + 1957.699082273065, + 5308.54693771453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.07029501574, + "min_y": 5307.294528240066, + "max_x": 1958.07029501574, + "max_y": 5308.556001124003, + "center": [ + 1958.07029501574, + 5307.925264682035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.07029501574, + 5308.556001124003 + ], + [ + 1958.07029501574, + 5307.294528240066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1958.07029501574, + "min_y": 5307.294528240066, + "max_x": 1958.07029501574, + "max_y": 5308.556001124003, + "center": [ + 1958.07029501574, + 5307.925264682035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.07029501574, + 5308.556001124003 + ], + [ + 1958.07029501574, + 5307.294528240066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.366612131369, + "min_y": 5290.687939762849, + "max_x": 1909.366612131369, + "max_y": 5291.935415931772, + "center": [ + 1909.366612131369, + 5291.31167784731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.366612131369, + 5290.687939762849 + ], + [ + 1909.366612131369, + 5291.935415931772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1908.995399388694, + "min_y": 5290.687939762849, + "max_x": 1908.995399388694, + "max_y": 5291.935415931772, + "center": [ + 1908.995399388694, + 5291.31167784731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1908.995399388694, + 5290.687939762849 + ], + [ + 1908.995399388694, + 5291.935415931772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.366612131369, + "min_y": 5290.683006457308, + "max_x": 1909.366612131369, + "max_y": 5291.944479341245, + "center": [ + 1909.366612131369, + 5291.313742899276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.366612131369, + 5291.944479341245 + ], + [ + 1909.366612131369, + 5290.683006457308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1909.366612131369, + "min_y": 5290.683006457308, + "max_x": 1909.366612131369, + "max_y": 5291.944479341245, + "center": [ + 1909.366612131369, + 5291.313742899276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1909.366612131369, + 5291.944479341245 + ], + [ + 1909.366612131369, + 5290.683006457308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1882.046686877909, + "min_y": 5306.582841118284, + "max_x": 1883.321945636179, + "max_y": 5306.582841118284, + "center": [ + 1882.684316257044, + 5306.582841118284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1882.046686877909, + 5306.582841118284 + ], + [ + 1883.321945636179, + 5306.582841118284 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555E11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1884.434459508051, + "min_y": 5306.582841118284, + "max_x": 1888.673224049271, + "max_y": 5306.582841118284, + "center": [ + 1886.553841778661, + 5306.582841118284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1884.434459508051, + 5306.582841118284 + ], + [ + 1888.673224049271, + 5306.582841118284 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555E12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1982.148373443324, + "min_y": 5212.086622390526, + "max_x": 1983.249472684972, + "max_y": 5212.349097313575, + "center": [ + 1982.698923064148, + 5212.21785985205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.148373443324, + 5212.349097313575 + ], + [ + 1983.249472684972, + 5212.086622390526 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1982.148375843045, + "min_y": 5212.950855802107, + "max_x": 1983.249477178066, + "max_y": 5213.213319135014, + "center": [ + 1982.6989265105553, + 5213.0820874685605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.148375843045, + 5212.950855802107 + ], + [ + 1983.249477178066, + 5213.213319135014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1982.148373443324, + "min_y": 5212.349097313575, + "max_x": 1982.148375843045, + "max_y": 5212.950855802107, + "center": [ + 1982.1483746431845, + 5212.649976557841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1982.148375843045, + 5212.950855802107 + ], + [ + 1982.148373443324, + 5212.349097313575 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1983.249472684972, + "min_y": 5212.086622390526, + "max_x": 1983.249477178066, + "max_y": 5213.213319135014, + "center": [ + 1983.249474931519, + 5212.64997076277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1983.249477178066, + 5213.213319135014 + ], + [ + 1983.249472684972, + 5212.086622390526 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E16", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1981.465351856846, + "min_y": 5210.730913919666, + "max_x": 1986.1688535284982, + "max_y": 5211.850795270059, + "center": [ + 1983.817102692672, + 5211.290854594863 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555E17", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1983.24908884949, + "min_y": 5212.618849787437, + "max_x": 1984.09696338874, + "max_y": 5212.618985168649, + "center": [ + 1983.673026119115, + 5212.618917478043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1983.24908884949, + 5212.618849787437 + ], + [ + 1984.09696338874, + 5212.618985168649 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474762479026, + "min_y": 5281.220359437728, + "max_x": 1816.137621825167, + "max_y": 5281.220359437734, + "center": [ + 1815.3061921520964, + 5281.2203594377315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1816.137621825167, + 5281.220359437728 + ], + [ + 1814.474762479026, + 5281.220359437734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.474762479026, + "min_y": 5280.651297091484, + "max_x": 1814.474762479026, + "max_y": 5281.789421783984, + "center": [ + 1814.474762479026, + 5281.220359437733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.474762479026, + 5281.789421783984 + ], + [ + 1814.474762479026, + 5280.651297091484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1814.185045736909, + "min_y": 5280.673378935485, + "max_x": 1814.185045736909, + "max_y": 5281.770921494418, + "center": [ + 1814.185045736909, + 5281.222150214951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1814.185045736909, + 5281.770921494418 + ], + [ + 1814.185045736909, + 5280.673378935485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E1B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1813.313502557432, + "min_y": 5279.173808854529, + "max_x": 1815.1273071877831, + "max_y": 5280.181478093613, + "center": [ + 1814.2204048726076, + 5279.677643474071 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E1C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1794.221414598029, + "min_y": 5248.84093750084, + "max_x": 1796.2372010287372, + "max_y": 5249.960818851233, + "center": [ + 1795.229307813383, + 5249.400878176037 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555E1D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1826.538217754664, + "min_y": 5272.208121179313, + "max_x": 1828.5540041853722, + "max_y": 5273.328002529706, + "center": [ + 1827.5461109700182, + 5272.768061854509 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555E1E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1963.753272958901, + "min_y": 5358.881605714708, + "max_x": 1975.8479915431499, + "max_y": 5360.001487065101, + "center": [ + 1969.8006322510255, + 5359.441546389904 + ] + }, + "raw_value": "P-10311-125A-F1A-n", + "clean_value": "P-10311-125A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.403415737724, + "min_y": 5360.306509857799, + "max_x": 1998.403415737724, + "max_y": 5361.4446345503, + "center": [ + 1998.403415737724, + 5360.87557220405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.403415737724, + 5361.4446345503 + ], + [ + 1998.403415737724, + 5360.306509857799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.385668528287, + "min_y": 5360.304693003516, + "max_x": 1995.385668528287, + "max_y": 5361.442817696017, + "center": [ + 1995.385668528287, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.385668528287, + 5361.442817696017 + ], + [ + 1995.385668528287, + 5360.304693003516 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E21", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1997.9723155567142, + "min_y": 5360.65820143073, + "max_x": 1998.403423394788, + "max_y": 5361.089309268804, + "center": [ + 1998.187869475751, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.187869475751, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E22", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1997.5412077186445, + "min_y": 5360.658201430732, + "max_x": 1997.9723155567133, + "max_y": 5361.089309268801, + "center": [ + 1997.756761637679, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.756761637679, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E23", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1997.1100998805725, + "min_y": 5360.658201430732, + "max_x": 1997.5412077186413, + "max_y": 5361.089309268801, + "center": [ + 1997.325653799607, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.325653799607, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E24", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1997.11009988057, + "min_y": 5360.65820143073, + "max_x": 1997.5412077186438, + "max_y": 5361.089309268804, + "center": [ + 1997.325653799607, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1997.325653799607, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E25", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1996.6789920424997, + "min_y": 5360.658201430732, + "max_x": 1997.1100998805684, + "max_y": 5361.089309268801, + "center": [ + 1996.894545961534, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.894545961534, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E26", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1996.2478842044306, + "min_y": 5360.65820143073, + "max_x": 1996.6789920425053, + "max_y": 5361.089309268804, + "center": [ + 1996.463438123468, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.463438123468, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E27", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1995.8167763663566, + "min_y": 5360.658201430732, + "max_x": 1996.2478842044254, + "max_y": 5361.089309268801, + "center": [ + 1996.032330285391, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.032330285391, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E28", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1995.3856685282906, + "min_y": 5360.658201430732, + "max_x": 1995.8167763663594, + "max_y": 5361.089309268801, + "center": [ + 1995.601222447325, + 5360.873755349767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.601222447325, + 5360.873755349767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.649498354347, + "min_y": 5360.310291357901, + "max_x": 1998.649498354347, + "max_y": 5361.448416050402, + "center": [ + 1998.649498354347, + 5360.879353704151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.649498354347, + 5361.448416050402 + ], + [ + 1998.649498354347, + 5360.310291357901 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.649458318977, + "min_y": 5360.936998486654, + "max_x": 1999.728727440077, + "max_y": 5360.936998486655, + "center": [ + 1999.189092879527, + 5360.936998486655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.649458318977, + 5360.936998486655 + ], + [ + 1999.728727440077, + 5360.936998486654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1995.223693526996, + "min_y": 5360.308934994389, + "max_x": 1995.223693526996, + "max_y": 5361.44705968689, + "center": [ + 1995.223693526996, + 5360.87799734064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1995.223693526996, + 5361.44705968689 + ], + [ + 1995.223693526996, + 5360.308934994389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.866862934437, + "min_y": 5248.512288014879, + "max_x": 1745.917667339398, + "max_y": 5248.512288014879, + "center": [ + 1745.3922651369176, + 5248.512288014879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.917667339398, + 5248.512288014879 + ], + [ + 1744.866862934437, + 5248.512288014879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5249.061059294343, + "max_x": 1744.956468445348, + "max_y": 5249.061059294343, + "center": [ + 1744.5848098873494, + 5249.061059294343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.956468445348, + 5249.061059294343 + ], + [ + 1744.213151329351, + 5249.061059294343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5247.963516735413, + "max_x": 1744.956468445348, + "max_y": 5247.963516735413, + "center": [ + 1744.5848098873494, + 5247.963516735413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.956468445348, + 5247.963516735413 + ], + [ + 1744.213151329351, + 5247.963516735413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5247.963516735413, + "max_x": 1744.213151329351, + "max_y": 5249.061059294343, + "center": [ + 1744.213151329351, + 5248.512288014877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.213151329351, + 5249.061059294343 + ], + [ + 1744.213151329351, + 5247.963516735413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.917667339398, + "min_y": 5247.98989429257, + "max_x": 1745.917667339398, + "max_y": 5249.034681737189, + "center": [ + 1745.917667339398, + 5248.512288014879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.917667339398, + 5247.98989429257 + ], + [ + 1745.917667339398, + 5249.034681737189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E31", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1754.03726417919, + "min_y": 5248.516511765913, + "max_x": 1754.03726417919, + "max_y": 5250.935027892285, + "center": [ + 1754.03726417919, + 5249.725769829099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.03726417919, + 5248.516511765913 + ], + [ + 1754.03726417919, + 5250.935027892285 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.705663160117, + "min_y": 5247.961848880784, + "max_x": 1751.705663160117, + "max_y": 5249.059391439715, + "center": [ + 1751.705663160117, + 5248.510620160249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.705663160117, + 5247.961848880784 + ], + [ + 1751.705663160117, + 5249.059391439715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.287555534554, + "min_y": 5247.961848880784, + "max_x": 1749.287555534554, + "max_y": 5249.059391439715, + "center": [ + 1749.287555534554, + 5248.510620160249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.287555534554, + 5249.059391439715 + ], + [ + 1749.287555534554, + 5247.961848880784 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E34", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1750.1838252292655, + "min_y": 5248.161984477731, + "max_x": 1750.8863713357446, + "max_y": 5248.864530584209, + "center": [ + 1750.535098282505, + 5248.51325753097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.535098282505, + 5248.51325753097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.614152381572, + "min_y": 5248.689809319621, + "max_x": 1750.231417160501, + "max_y": 5249.059391439715, + "center": [ + 1749.9227847710365, + 5248.874600379668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1750.231417160501, + 5248.689809319621 + ], + [ + 1749.614152381572, + 5249.059391439715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.614152381572, + "min_y": 5247.961848880784, + "max_x": 1749.614152381572, + "max_y": 5249.059391439715, + "center": [ + 1749.614152381572, + 5248.510620160249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.614152381572, + 5249.059391439715 + ], + [ + 1749.614152381572, + 5247.961848880784 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.614152381572, + "min_y": 5247.961848880784, + "max_x": 1750.23371693764, + "max_y": 5248.332807973192, + "center": [ + 1749.923934659606, + 5248.147328426988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.614152381572, + 5247.961848880784 + ], + [ + 1750.23371693764, + 5248.332807973192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.447234471219, + "min_y": 5247.961848880784, + "max_x": 1751.447234471219, + "max_y": 5249.059391439715, + "center": [ + 1751.447234471219, + 5248.510620160249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.447234471219, + 5249.059391439715 + ], + [ + 1751.447234471219, + 5247.961848880784 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.832074771256, + "min_y": 5247.961848880784, + "max_x": 1751.447234471219, + "max_y": 5248.33017060247, + "center": [ + 1751.1396546212375, + 5248.1460097416275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.447234471219, + 5247.961848880784 + ], + [ + 1750.832074771256, + 5248.33017060247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1750.832074771256, + "min_y": 5248.696344459474, + "max_x": 1751.447234471219, + "max_y": 5249.064666181161, + "center": [ + 1751.1396546212375, + 5248.880505320318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1751.447234471219, + 5249.064666181161 + ], + [ + 1750.832074771256, + 5248.696344459474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.866862934437, + "min_y": 5248.512288014879, + "max_x": 1745.917667339398, + "max_y": 5248.512288014879, + "center": [ + 1745.3922651369176, + 5248.512288014879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.917667339398, + 5248.512288014879 + ], + [ + 1744.866862934437, + 5248.512288014879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5249.061059294343, + "max_x": 1744.956468445348, + "max_y": 5249.061059294343, + "center": [ + 1744.5848098873494, + 5249.061059294343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.956468445348, + 5249.061059294343 + ], + [ + 1744.213151329351, + 5249.061059294343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5247.963516735413, + "max_x": 1744.956468445348, + "max_y": 5247.963516735413, + "center": [ + 1744.5848098873494, + 5247.963516735413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.956468445348, + 5247.963516735413 + ], + [ + 1744.213151329351, + 5247.963516735413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1744.213151329351, + "min_y": 5247.963516735413, + "max_x": 1744.213151329351, + "max_y": 5249.061059294343, + "center": [ + 1744.213151329351, + 5248.512288014877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1744.213151329351, + 5249.061059294343 + ], + [ + 1744.213151329351, + 5247.963516735413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1748.987742792184, + "min_y": 5247.988226437943, + "max_x": 1748.987742792184, + "max_y": 5249.033013882555, + "center": [ + 1748.987742792184, + 5248.510620160248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.987742792184, + 5247.988226437943 + ], + [ + 1748.987742792184, + 5249.033013882555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1749.287555534554, + "min_y": 5247.988226437943, + "max_x": 1749.287555534554, + "max_y": 5249.033013882555, + "center": [ + 1749.287555534554, + 5248.510620160248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1749.287555534554, + 5247.988226437943 + ], + [ + 1749.287555534554, + 5249.033013882555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1746.217480081767, + "min_y": 5247.98989429257, + "max_x": 1746.217480081767, + "max_y": 5249.034681737189, + "center": [ + 1746.217480081767, + 5248.512288014879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.217480081767, + 5247.98989429257 + ], + [ + 1746.217480081767, + 5249.034681737189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1745.917667339398, + "min_y": 5247.98989429257, + "max_x": 1745.917667339398, + "max_y": 5249.034681737189, + "center": [ + 1745.917667339398, + 5248.512288014879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1745.917667339398, + 5247.98989429257 + ], + [ + 1745.917667339398, + 5249.034681737189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E44", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1748.5919970013604, + "min_y": 5248.314411604916, + "max_x": 1748.9877498212938, + "max_y": 5248.71016442485, + "center": [ + 1748.789873411327, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.789873411327, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E45", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1748.1962441814296, + "min_y": 5248.314411604918, + "max_x": 1748.5919970013604, + "max_y": 5248.710164424848, + "center": [ + 1748.394120591395, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1748.394120591395, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E46", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1747.8004913614996, + "min_y": 5248.314411604918, + "max_x": 1748.1962441814303, + "max_y": 5248.710164424848, + "center": [ + 1747.998367771465, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.998367771465, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E47", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1747.8004913614948, + "min_y": 5248.314411604916, + "max_x": 1748.1962441814292, + "max_y": 5248.71016442485, + "center": [ + 1747.998367771462, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.998367771462, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E48", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1747.4047385415647, + "min_y": 5248.314411604918, + "max_x": 1747.8004913614955, + "max_y": 5248.710164424848, + "center": [ + 1747.60261495153, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.60261495153, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E49", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1747.0089857216296, + "min_y": 5248.314411604915, + "max_x": 1747.4047385415645, + "max_y": 5248.7101644248505, + "center": [ + 1747.206862131597, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1747.206862131597, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E4A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1746.6132329016987, + "min_y": 5248.314411604918, + "max_x": 1747.0089857216294, + "max_y": 5248.710164424848, + "center": [ + 1746.811109311664, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.811109311664, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E4B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 1746.2174800817697, + "min_y": 5248.314411604918, + "max_x": 1746.6132329017005, + "max_y": 5248.710164424848, + "center": [ + 1746.415356491735, + 5248.512288014883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1746.415356491735, + 5248.512288014883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E4C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1742.860261104326, + "min_y": 5246.096992257492, + "max_x": 1748.9076203964503, + "max_y": 5247.216873607886, + "center": [ + 1745.883940750388, + 5246.6569329326885 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555E4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1751.707853455505, + "min_y": 5248.516511811587, + "max_x": 1754.037264080057, + "max_y": 5248.516511811587, + "center": [ + 1752.872558767781, + 5248.516511811587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1754.037264080057, + 5248.516511811587 + ], + [ + 1751.707853455505, + 5248.516511811587 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555E4E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1757.934864734803, + "min_y": 5251.956987978581, + "max_x": 1759.9506511655113, + "max_y": 5253.076869328975, + "center": [ + 1758.942757950157, + 5252.516928653778 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555E4F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1749.598975550051, + "min_y": 5246.009727277555, + "max_x": 1751.614761980759, + "max_y": 5247.129608627948, + "center": [ + 1750.6068687654051, + 5246.569667952752 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555E50", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1845.4833488362995, + "min_y": 5273.039672900259, + "max_x": 1846.1871189356727, + "max_y": 5273.743442999632, + "center": [ + 1845.835233885986, + 5273.391557949945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.835233885986, + 5273.391557949945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.285506523867, + "min_y": 5274.636861666824, + "max_x": 1846.384961248107, + "max_y": 5274.636861666824, + "center": [ + 1845.835233885987, + 5274.636861666824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.285506523867, + 5274.636861666824 + ], + [ + 1846.384961248107, + 5274.636861666824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.326102881004, + "min_y": 5272.146254233059, + "max_x": 1846.425557605243, + "max_y": 5272.146254233059, + "center": [ + 1845.8758302431236, + 5272.146254233059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.326102881004, + 5272.146254233059 + ], + [ + 1846.425557605243, + 5272.146254233059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.285506523867, + "min_y": 5272.473420085042, + "max_x": 1845.654469944601, + "max_y": 5273.089651531179, + "center": [ + 1845.469988234234, + 5272.78153580811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.654469944601, + 5273.089651531179 + ], + [ + 1845.285506523867, + 5272.473420085042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.285506523867, + "min_y": 5272.473420085042, + "max_x": 1846.384961248107, + "max_y": 5272.473420085042, + "center": [ + 1845.835233885987, + 5272.473420085042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.285506523867, + 5272.473420085042 + ], + [ + 1846.384961248107, + 5272.473420085042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1846.01599782737, + "min_y": 5272.473420085042, + "max_x": 1846.384961248107, + "max_y": 5273.089651531179, + "center": [ + 1846.2004795377384, + 5272.78153580811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.384961248107, + 5272.473420085042 + ], + [ + 1846.01599782737, + 5273.089651531179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.285506523867, + "min_y": 5273.6934643687, + "max_x": 1845.654469944603, + "max_y": 5274.30969581484, + "center": [ + 1845.4699882342352, + 5274.00158009177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.654469944603, + 5273.6934643687 + ], + [ + 1845.285506523867, + 5274.30969581484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.285506523867, + "min_y": 5274.30969581484, + "max_x": 1846.384961248107, + "max_y": 5274.30969581484, + "center": [ + 1845.835233885987, + 5274.30969581484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.285506523867, + 5274.30969581484 + ], + [ + 1846.384961248107, + 5274.30969581484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1846.015997827367, + "min_y": 5273.6934643687, + "max_x": 1846.384961248107, + "max_y": 5274.30969581484, + "center": [ + 1846.200479537737, + 5274.00158009177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.384961248107, + 5274.30969581484 + ], + [ + 1846.015997827367, + 5273.6934643687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E59", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1845.5038705046304, + "min_y": 5265.71277063177, + "max_x": 1846.2076406040037, + "max_y": 5266.416540731143, + "center": [ + 1845.855755554317, + 5266.064655681456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855755554317, + 5266.064655681456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5267.309959398335, + "max_x": 1846.405482916438, + "max_y": 5267.309959398335, + "center": [ + 1845.8557555543184, + 5267.309959398335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.306028192199, + 5267.309959398335 + ], + [ + 1846.405482916438, + 5267.309959398335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5264.819351964571, + "max_x": 1846.405482916438, + "max_y": 5264.819351964571, + "center": [ + 1845.8557555543184, + 5264.819351964571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.306028192199, + 5264.819351964571 + ], + [ + 1846.405482916438, + 5264.819351964571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5265.146517816554, + "max_x": 1845.674991612932, + "max_y": 5265.762749262691, + "center": [ + 1845.4905099025655, + 5265.454633539623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.674991612932, + 5265.762749262691 + ], + [ + 1845.306028192199, + 5265.146517816554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5265.146517816554, + "max_x": 1846.405482916438, + "max_y": 5265.146517816554, + "center": [ + 1845.8557555543184, + 5265.146517816554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.306028192199, + 5265.146517816554 + ], + [ + 1846.405482916438, + 5265.146517816554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1846.036519495702, + "min_y": 5265.146517816554, + "max_x": 1846.405482916438, + "max_y": 5265.762749262691, + "center": [ + 1846.22100120607, + 5265.454633539623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.405482916438, + 5265.146517816554 + ], + [ + 1846.036519495702, + 5265.762749262691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5266.366562100212, + "max_x": 1845.674991612935, + "max_y": 5266.982793546353, + "center": [ + 1845.4905099025668, + 5266.674677823283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.674991612935, + 5266.366562100212 + ], + [ + 1845.306028192199, + 5266.982793546353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.306028192199, + "min_y": 5266.982793546353, + "max_x": 1846.405482916438, + "max_y": 5266.982793546353, + "center": [ + 1845.8557555543184, + 5266.982793546353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.306028192199, + 5266.982793546353 + ], + [ + 1846.405482916438, + 5266.982793546353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1846.036519495699, + "min_y": 5266.366562100212, + "max_x": 1846.405482916438, + "max_y": 5266.982793546353, + "center": [ + 1846.2210012060684, + 5266.674677823283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1846.405482916438, + 5266.982793546353 + ], + [ + 1846.036519495699, + 5266.366562100212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.854140446299, + "min_y": 5267.306938348565, + "max_x": 1845.854140446299, + "max_y": 5268.069669343187, + "center": [ + 1845.854140446299, + 5267.688303845876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.854140446299, + 5267.306938348565 + ], + [ + 1845.854140446299, + 5268.069669343187 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "555E63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.301344232438, + "min_y": 5267.585683757892, + "max_x": 1846.400798956677, + "max_y": 5267.585683757892, + "center": [ + 1845.8510715945574, + 5267.585683757892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.301344232438, + 5267.585683757892 + ], + [ + 1846.400798956677, + 5267.585683757892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E64", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 1845.855508124697, + "min_y": 5271.16690595841, + "max_x": 1845.855508124697, + "max_y": 5272.144361995039, + "center": [ + 1845.855508124697, + 5271.655633976725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.855508124697, + 5272.144361995039 + ], + [ + 1845.855508124697, + 5271.16690595841 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1845.334506987221, + "min_y": 5271.883991805274, + "max_x": 1846.433961711461, + "max_y": 5271.883991805274, + "center": [ + 1845.884234349341, + 5271.883991805274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1845.334506987221, + 5271.883991805274 + ], + [ + 1846.433961711461, + 5271.883991805274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E66", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 1769.900307920857, + "min_y": 5348.256390540603, + "max_x": 1769.900307920857, + "max_y": 5350.939169456533, + "center": [ + 1769.900307920857, + 5349.5977799985685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.900307920857, + 5350.939169456533 + ], + [ + 1769.900307920857, + 5348.256390540603 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555E67", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1767.0432212119058, + "min_y": 5355.773394702346, + "max_x": 1772.757394629812, + "max_y": 5361.487568120252, + "center": [ + 1769.900307920859, + 5358.630481411299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.900307920859, + 5358.630481411299 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E68", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1768.836083488983, + "min_y": 5359.162412971291, + "max_x": 1770.4035686137202, + "max_y": 5360.468650575239, + "center": [ + 1769.6198260513515, + 5359.815531773265 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E69", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1767.18395416751, + "min_y": 5357.067382158107, + "max_x": 1771.8864095417214, + "max_y": 5358.373619762055, + "center": [ + 1769.5351818546155, + 5357.72050096008 + ] + }, + "raw_value": "10115C", + "clean_value": "10115C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5353.357277082094, + "max_x": 1770.449079200323, + "max_y": 5353.357277082094, + "center": [ + 1769.9003079208574, + 5353.357277082094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.449079200323, + 5353.357277082094 + ], + [ + 1769.351536641392, + 5353.357277082094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5350.939169456533, + "max_x": 1770.449079200323, + "max_y": 5350.939169456533, + "center": [ + 1769.9003079208574, + 5350.939169456533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.351536641392, + 5350.939169456533 + ], + [ + 1770.449079200323, + 5350.939169456533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E6C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1769.5463974968955, + "min_y": 5351.835439151246, + "max_x": 1770.2489436033745, + "max_y": 5352.537985257724, + "center": [ + 1769.897670550135, + 5352.186712204485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.897670550135, + 5352.186712204485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5351.265766303551, + "max_x": 1769.721118761485, + "max_y": 5351.883031082479, + "center": [ + 1769.5363277014385, + 5351.574398693015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.721118761485, + 5351.883031082479 + ], + [ + 1769.351536641392, + 5351.265766303551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5351.265766303551, + "max_x": 1770.449079200323, + "max_y": 5351.265766303551, + "center": [ + 1769.9003079208574, + 5351.265766303551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.351536641392, + 5351.265766303551 + ], + [ + 1770.449079200323, + 5351.265766303551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.078120107913, + "min_y": 5351.265766303551, + "max_x": 1770.449079200323, + "max_y": 5351.885330859617, + "center": [ + 1770.263599654118, + 5351.575548581584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.449079200323, + 5351.265766303551 + ], + [ + 1770.078120107913, + 5351.885330859617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.351536641392, + "min_y": 5353.098848393198, + "max_x": 1770.449079200323, + "max_y": 5353.098848393198, + "center": [ + 1769.9003079208574, + 5353.098848393198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.351536641392, + 5353.098848393198 + ], + [ + 1770.449079200323, + 5353.098848393198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1770.080757478637, + "min_y": 5352.483688693236, + "max_x": 1770.449079200323, + "max_y": 5353.098848393198, + "center": [ + 1770.2649183394801, + 5352.791268543217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1770.449079200323, + 5353.098848393198 + ], + [ + 1770.080757478637, + 5352.483688693236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1769.346261899945, + "min_y": 5352.483688693236, + "max_x": 1769.714583621631, + "max_y": 5353.098848393198, + "center": [ + 1769.530422760788, + 5352.791268543217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.346261899945, + 5353.098848393198 + ], + [ + 1769.714583621631, + 5352.483688693236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E74", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1768.220485895269, + "min_y": 5353.305469373028, + "max_x": 1769.900307920859, + "max_y": 5354.985291398618, + "center": [ + 1769.060396908064, + 5354.145380385823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.060396908064, + 5354.145380385823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E75", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1768.220485895269, + "min_y": 5354.145380385823, + "max_x": 1769.900307920859, + "max_y": 5355.825202411413, + "center": [ + 1769.060396908064, + 5354.985291398618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.060396908064, + 5354.985291398618 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E76", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1768.6404414016663, + "min_y": 5354.145380385823, + "max_x": 1769.4803524144615, + "max_y": 5354.985291398619, + "center": [ + 1769.060396908064, + 5354.565335892221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.060396908064, + 5354.565335892221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E77", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1769.900307920859, + "min_y": 5354.985291398618, + "max_x": 1769.900307920859, + "max_y": 5355.773394702346, + "center": [ + 1769.900307920859, + 5355.379343050482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.900307920859, + 5355.773394702346 + ], + [ + 1769.900307920859, + 5354.985291398618 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E78", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1769.900307920859, + "min_y": 5353.357277082094, + "max_x": 1769.900307920859, + "max_y": 5354.145380385823, + "center": [ + 1769.900307920859, + 5353.751328733959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1769.900307920859, + 5354.145380385823 + ], + [ + 1769.900307920859, + 5353.357277082094 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562541943214, + "min_y": 5281.363407258362, + "max_x": 1700.57007538227, + "max_y": 5281.363407258362, + "center": [ + 1700.066308662742, + 5281.363407258362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.562541943214, + 5281.363407258362 + ], + [ + 1700.57007538227, + 5281.363407258362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562541943214, + "min_y": 5281.363407258362, + "max_x": 1699.900657716413, + "max_y": 5281.928117904918, + "center": [ + 1699.7315998298136, + 5281.64576258164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.900657716413, + 5281.928117904918 + ], + [ + 1699.562541943214, + 5281.363407258362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562541943214, + "min_y": 5283.04615886268, + "max_x": 1700.57007538227, + "max_y": 5283.04615886268, + "center": [ + 1700.066308662742, + 5283.04615886268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.562541943214, + 5283.04615886268 + ], + [ + 1700.57007538227, + 5283.04615886268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562541943214, + "min_y": 5282.481448216128, + "max_x": 1699.900657716413, + "max_y": 5283.04615886268, + "center": [ + 1699.7315998298136, + 5282.763803539405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1699.900657716413, + 5282.481448216128 + ], + [ + 1699.562541943214, + 5283.04615886268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1699.7438434020594, + "min_y": 5281.882317799838, + "max_x": 1700.3887739234244, + "max_y": 5282.527248321203, + "center": [ + 1700.066308662742, + 5282.204783060521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.066308662742, + 5282.204783060521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562849551386, + "min_y": 5281.085059680108, + "max_x": 1700.570382990434, + "max_y": 5281.085059680108, + "center": [ + 1700.06661627091, + 5281.085059680108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.570382990434, + 5281.085059680108 + ], + [ + 1699.562849551386, + 5281.085059680108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1699.562849551386, + "min_y": 5283.352669627713, + "max_x": 1700.570382990434, + "max_y": 5283.352669627713, + "center": [ + 1700.06661627091, + 5283.352669627713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.570382990434, + 5283.352669627713 + ], + [ + 1699.562849551386, + 5283.352669627713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.231959609073, + "min_y": 5281.363407258362, + "max_x": 1700.57007538227, + "max_y": 5281.928117904918, + "center": [ + 1700.4010174956716, + 5281.64576258164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.57007538227, + 5281.363407258362 + ], + [ + 1700.231959609073, + 5281.928117904918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.231959609073, + "min_y": 5282.481448216128, + "max_x": 1700.57007538227, + "max_y": 5283.04615886268, + "center": [ + 1700.4010174956716, + 5282.763803539405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.57007538227, + 5283.04615886268 + ], + [ + 1700.231959609073, + 5282.481448216128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.964354244418, + "min_y": 5281.363407258362, + "max_x": 1697.971887683474, + "max_y": 5281.363407258362, + "center": [ + 1697.4681209639461, + 5281.363407258362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.964354244418, + 5281.363407258362 + ], + [ + 1697.971887683474, + 5281.363407258362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.964354244418, + "min_y": 5281.363407258362, + "max_x": 1697.302470017617, + "max_y": 5281.928117904918, + "center": [ + 1697.1334121310174, + 5281.64576258164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.302470017617, + 5281.928117904918 + ], + [ + 1696.964354244418, + 5281.363407258362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.964354244418, + "min_y": 5283.04615886268, + "max_x": 1697.971887683474, + "max_y": 5283.04615886268, + "center": [ + 1697.4681209639461, + 5283.04615886268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1696.964354244418, + 5283.04615886268 + ], + [ + 1697.971887683474, + 5283.04615886268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.964354244418, + "min_y": 5282.481448216128, + "max_x": 1697.302470017617, + "max_y": 5283.04615886268, + "center": [ + 1697.1334121310174, + 5282.763803539405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.302470017617, + 5282.481448216128 + ], + [ + 1696.964354244418, + 5283.04615886268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E86", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1697.1456557032634, + "min_y": 5281.882317799838, + "max_x": 1697.7905862246284, + "max_y": 5282.527248321203, + "center": [ + 1697.468120963946, + 5282.204783060521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.468120963946, + 5282.204783060521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.96466185259, + "min_y": 5281.085059680108, + "max_x": 1697.972195291638, + "max_y": 5281.085059680108, + "center": [ + 1697.4684285721141, + 5281.085059680108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.972195291638, + 5281.085059680108 + ], + [ + 1696.96466185259, + 5281.085059680108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1696.96466185259, + "min_y": 5283.352669627713, + "max_x": 1697.972195291638, + "max_y": 5283.352669627713, + "center": [ + 1697.4684285721141, + 5283.352669627713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.972195291638, + 5283.352669627713 + ], + [ + 1696.96466185259, + 5283.352669627713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.633771910277, + "min_y": 5281.363407258362, + "max_x": 1697.971887683474, + "max_y": 5281.928117904918, + "center": [ + 1697.8028297968754, + 5281.64576258164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.971887683474, + 5281.363407258362 + ], + [ + 1697.633771910277, + 5281.928117904918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.633771910277, + "min_y": 5282.481448216128, + "max_x": 1697.971887683474, + "max_y": 5283.04615886268, + "center": [ + 1697.8028297968754, + 5282.763803539405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.971887683474, + 5283.04615886268 + ], + [ + 1697.633771910277, + 5282.481448216128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E8B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1851.602227708339, + "min_y": 5345.483452061701, + "max_x": 1853.1697128330761, + "max_y": 5346.789689665649, + "center": [ + 1852.3859702707075, + 5346.136570863675 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E8C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1849.7627514217613, + "min_y": 5342.1928670612815, + "max_x": 1855.4868802114167, + "max_y": 5347.916995850937, + "center": [ + 1852.624815816589, + 5345.054931456109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1852.624815816589, + 5345.054931456109 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E8D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1849.962866859444, + "min_y": 5343.373121861035, + "max_x": 1854.6653222336554, + "max_y": 5344.679359464983, + "center": [ + 1852.3140945465498, + 5344.026240663008 + ] + }, + "raw_value": "10117A", + "clean_value": "10117A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1847.848725536334, + "min_y": 5345.249598127137, + "max_x": 1849.799342968633, + "max_y": 5345.249598127141, + "center": [ + 1848.8240342524837, + 5345.249598127139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1847.848725536334, + 5345.249598127141 + ], + [ + 1849.799342968633, + 5345.249598127137 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555E8F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1695.872738040832, + "min_y": 5318.928689444009, + "max_x": 1706.132738040832, + "max_y": 5319.878689444009, + "center": [ + 1701.002738040832, + 5319.403689444009 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555E90", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1935.291270686358, + "min_y": 5424.31418060625, + "max_x": 1943.9312706863582, + "max_y": 5425.114180606251, + "center": [ + 1939.6112706863582, + 5424.71418060625 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555E91", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1938.045532844046, + "min_y": 5219.26262800649, + "max_x": 1946.685532844046, + "max_y": 5220.06262800649, + "center": [ + 1942.365532844046, + 5219.66262800649 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "555E92", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1669.80249916638, + "min_y": 5320.85141608081, + "max_x": 1681.8972177506287, + "max_y": 5321.971297431203, + "center": [ + 1675.8498584585043, + 5321.411356756007 + ] + }, + "raw_value": "IA-10901-15A-F1A-n", + "clean_value": "IA-10901-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E93", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1720.8489400390247, + "min_y": 5280.290027531692, + "max_x": 1721.2849130714674, + "max_y": 5280.726000564136, + "center": [ + 1721.066926555246, + 5280.508014047914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.066926555246, + 5280.508014047914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.295483099144, + "min_y": 5280.15487589163, + "max_x": 1720.295483099144, + "max_y": 5280.861152204192, + "center": [ + 1720.295483099144, + 5280.508014047911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.295483099144, + 5280.15487589163 + ], + [ + 1720.295483099144, + 5280.861152204192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.253952200438, + "min_y": 5280.619994087633, + "max_x": 1721.635696597505, + "max_y": 5280.84856035031, + "center": [ + 1721.4448243989716, + 5280.734277218971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.253952200438, + 5280.619994087633 + ], + [ + 1721.635696597505, + 5280.84856035031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.253952200438, + "min_y": 5280.167467745513, + "max_x": 1721.635696597505, + "max_y": 5280.396034008192, + "center": [ + 1721.4448243989716, + 5280.281750876853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.635696597505, + 5280.167467745513 + ], + [ + 1721.253952200438, + 5280.396034008192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.498156512986, + "min_y": 5280.619994087633, + "max_x": 1720.879900910059, + "max_y": 5280.84856035031, + "center": [ + 1720.6890287115225, + 5280.734277218971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.879900910059, + 5280.619994087633 + ], + [ + 1720.498156512986, + 5280.84856035031 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.498156512986, + "min_y": 5280.167467745513, + "max_x": 1720.498156512986, + "max_y": 5280.84856035031, + "center": [ + 1720.498156512986, + 5280.508014047911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.498156512986, + 5280.84856035031 + ], + [ + 1720.498156512986, + 5280.167467745513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1720.498156512986, + "min_y": 5280.167467745513, + "max_x": 1720.879900910059, + "max_y": 5280.396034008192, + "center": [ + 1720.6890287115225, + 5280.281750876853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1720.498156512986, + 5280.167467745513 + ], + [ + 1720.879900910059, + 5280.396034008192 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.635696597505, + "min_y": 5280.167467745513, + "max_x": 1721.635696597505, + "max_y": 5280.84856035031, + "center": [ + 1721.635696597505, + 5280.508014047911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.635696597505, + 5280.84856035031 + ], + [ + 1721.635696597505, + 5280.167467745513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555E9B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.468215795729, + "min_y": 5267.563976375567, + "max_x": 1861.7137716497791, + "max_y": 5272.809532229617, + "center": [ + 1859.090993722754, + 5270.186754302592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.090993722754, + 5270.186754302592 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E9C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.420398004584, + "min_y": 5272.857355345741, + "max_x": 1859.090999047728, + "max_y": 5272.857360670715, + "center": [ + 1857.755698526156, + 5272.857358008228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.090999047728, + 5272.857355345741 + ], + [ + 1856.420398004584, + 5272.857360670715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E9D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.420392679606, + "min_y": 5270.186759627575, + "max_x": 1856.420398004584, + "max_y": 5272.857360670715, + "center": [ + 1856.4203953420952, + 5271.522060149146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.420392679606, + 5270.186759627575 + ], + [ + 1856.420398004584, + 5272.857360670715 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E9E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1859.090999047728, + "min_y": 5272.857350020759, + "max_x": 1861.76160009088, + "max_y": 5272.857355345741, + "center": [ + 1860.4262995693039, + 5272.85735268325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.090999047728, + 5272.857355345741 + ], + [ + 1861.76160009088, + 5272.857350020759 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555E9F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1861.761594765903, + "min_y": 5270.18674897762, + "max_x": 1861.76160009088, + "max_y": 5272.857350020759, + "center": [ + 1861.7615974283915, + 5271.52204949919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.761594765903, + 5270.18674897762 + ], + [ + 1861.76160009088, + 5272.857350020759 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.420387354632, + "min_y": 5267.516153259432, + "max_x": 1859.090988397775, + "max_y": 5267.516158584418, + "center": [ + 1857.7556878762034, + 5267.516155921925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.090988397775, + 5267.516153259432 + ], + [ + 1856.420387354632, + 5267.516158584418 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.420387354632, + "min_y": 5267.516158584418, + "max_x": 1856.420392679606, + "max_y": 5270.186759627566, + "center": [ + 1856.4203900171192, + 5268.851459105992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1856.420392679606, + 5270.186759627566 + ], + [ + 1856.420387354632, + 5267.516158584418 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1859.090988397775, + "min_y": 5267.516147934471, + "max_x": 1861.761589440925, + "max_y": 5267.516153259432, + "center": [ + 1860.42628891935, + 5267.516150596952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.090988397775, + 5267.516153259432 + ], + [ + 1861.761589440925, + 5267.516147934471 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1861.761589440925, + "min_y": 5267.516147934471, + "max_x": 1861.761594765903, + "max_y": 5270.186748977607, + "center": [ + 1861.761592103414, + 5268.851448456038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.761594765903, + 5270.186748977607 + ], + [ + 1861.761589440925, + 5267.516147934471 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1858.058969996758, + "min_y": 5270.5260990055, + "max_x": 1859.6264551214952, + "max_y": 5271.832336609448, + "center": [ + 1858.8427125591265, + 5271.179217807474 + ] + }, + "raw_value": "HS", + "clean_value": "HS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.468215795732, + "min_y": 5270.18674907298, + "max_x": 1861.713771649773, + "max_y": 5270.186759532219, + "center": [ + 1859.0909937227525, + 5270.1867543026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.713771649773, + 5270.18674907298 + ], + [ + 1856.468215795732, + 5270.186759532219 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.283631154649, + "min_y": 5268.438220162156, + "max_x": 1860.6436311546488, + "max_y": 5269.5582201621555, + "center": [ + 1858.9636311546487, + 5268.998220162155 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.434473070247, + "min_y": 5400.371433261003, + "max_x": 1937.434473070247, + "max_y": 5401.876631027974, + "center": [ + 1937.434473070247, + 5401.124032144489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.434473070247, + 5400.371433261003 + ], + [ + 1937.434473070247, + 5401.876631027974 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555EA8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1935.261056976977, + "min_y": 5403.057244745991, + "max_x": 1939.1797697888198, + "max_y": 5404.363482349939, + "center": [ + 1937.2204133828984, + 5403.710363547965 + ] + }, + "raw_value": "10112", + "clean_value": "10112", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EA9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1936.370248638369, + "min_y": 5405.373709950429, + "max_x": 1937.9377337631063, + "max_y": 5406.679947554377, + "center": [ + 1937.1539912007377, + 5406.026828752403 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EAA", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1934.5193732218884, + "min_y": 5401.876631027974, + "max_x": 1940.2435020115438, + "max_y": 5407.60075981763, + "center": [ + 1937.381437616716, + 5404.738695422802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.381437616716, + 5404.738695422802 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.865410723994, + "min_y": 5400.371433261003, + "max_x": 1938.003535416497, + "max_y": 5400.371433261003, + "center": [ + 1937.4344730702455, + 5400.371433261003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.865410723994, + 5400.371433261003 + ], + [ + 1938.003535416497, + 5400.371433261003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EAC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1937.0832000170074, + "min_y": 5398.77702231592, + "max_x": 1937.7857461234864, + "max_y": 5399.479568422398, + "center": [ + 1937.434473070247, + 5399.128295369159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.434473070247, + 5399.128295369159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.885701790778, + "min_y": 5397.885157477315, + "max_x": 1937.983244349716, + "max_y": 5397.885157477315, + "center": [ + 1937.434473070247, + 5397.885157477315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.983244349716, + 5397.885157477315 + ], + [ + 1936.885701790778, + 5397.885157477315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.879544562771, + "min_y": 5400.044836413981, + "max_x": 1937.989401577723, + "max_y": 5400.044836413981, + "center": [ + 1937.434473070247, + 5400.044836413981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.879544562771, + 5400.044836413981 + ], + [ + 1937.989401577723, + 5400.044836413981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.885701790778, + "min_y": 5398.211754324333, + "max_x": 1937.254023512466, + "max_y": 5398.826914024297, + "center": [ + 1937.0698626516219, + 5398.519334174315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.254023512466, + 5398.826914024297 + ], + [ + 1936.885701790778, + 5398.211754324333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.885701790778, + "min_y": 5398.211754324333, + "max_x": 1937.983244349716, + "max_y": 5398.211754324333, + "center": [ + 1937.434473070247, + 5398.211754324333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1936.885701790778, + 5398.211754324333 + ], + [ + 1937.983244349716, + 5398.211754324333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.614922628028, + "min_y": 5398.211754324333, + "max_x": 1937.983244349716, + "max_y": 5398.826914024297, + "center": [ + 1937.799083488872, + 5398.519334174315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.983244349716, + 5398.211754324333 + ], + [ + 1937.614922628028, + 5398.826914024297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1936.885701790778, + "min_y": 5399.429676714017, + "max_x": 1937.254023512466, + "max_y": 5400.044836413981, + "center": [ + 1937.0698626516219, + 5399.737256563999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.254023512466, + 5399.429676714017 + ], + [ + 1936.885701790778, + 5400.044836413981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1937.614922628028, + "min_y": 5399.429676714017, + "max_x": 1937.983244349716, + "max_y": 5400.044836413981, + "center": [ + 1937.799083488872, + 5399.737256563999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.983244349716, + 5400.044836413981 + ], + [ + 1937.614922628028, + 5399.429676714017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB4", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1937.434473070247, + "min_y": 5394.881826524501, + "max_x": 1937.434473070247, + "max_y": 5397.880098362575, + "center": [ + 1937.434473070247, + 5396.380962443538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.434473070247, + 5397.880098362575 + ], + [ + 1937.434473070247, + 5394.881826524501 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555EB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.897210873029, + "min_y": 5397.000814383244, + "max_x": 1937.42753978006, + "max_y": 5397.000814383244, + "center": [ + 1936.6623753265444, + 5397.000814383244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1937.42753978006, + 5397.000814383244 + ], + [ + 1935.897210873029, + 5397.000814383244 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555EB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.408207917791, + "min_y": 5396.426860768396, + "max_x": 1933.408207917791, + "max_y": 5397.564985460899, + "center": [ + 1933.408207917791, + 5396.995923114648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.408207917791, + 5396.426860768396 + ], + [ + 1933.408207917791, + 5397.564985460899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1934.3000727563954, + "min_y": 5396.644650061409, + "max_x": 1935.0026188628744, + "max_y": 5397.347196167888, + "center": [ + 1934.651345809635, + 5396.995923114649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.651345809635, + 5396.995923114649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.89448370148, + "min_y": 5396.44715183518, + "max_x": 1935.89448370148, + "max_y": 5397.544694394118, + "center": [ + 1935.89448370148, + 5396.9959231146495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.89448370148, + 5397.544694394118 + ], + [ + 1935.89448370148, + 5396.44715183518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.734804764813, + "min_y": 5396.440994607174, + "max_x": 1933.734804764813, + "max_y": 5397.550851622124, + "center": [ + 1933.734804764813, + 5396.9959231146495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.734804764813, + 5396.440994607174 + ], + [ + 1933.734804764813, + 5397.550851622124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.952727154497, + "min_y": 5396.44715183518, + "max_x": 1935.567886854461, + "max_y": 5396.815473556869, + "center": [ + 1935.260307004479, + 5396.631312696025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.952727154497, + 5396.815473556869 + ], + [ + 1935.567886854461, + 5396.44715183518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1935.567886854461, + "min_y": 5396.44715183518, + "max_x": 1935.567886854461, + "max_y": 5397.544694394118, + "center": [ + 1935.567886854461, + 5396.9959231146495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.567886854461, + 5396.44715183518 + ], + [ + 1935.567886854461, + 5397.544694394118 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1934.952727154497, + "min_y": 5397.17637267243, + "max_x": 1935.567886854461, + "max_y": 5397.544694394118, + "center": [ + 1935.260307004479, + 5397.360533533274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1935.567886854461, + 5397.544694394118 + ], + [ + 1934.952727154497, + 5397.17637267243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.734804764813, + "min_y": 5396.44715183518, + "max_x": 1934.349964464778, + "max_y": 5396.815473556869, + "center": [ + 1934.0423846147955, + 5396.631312696025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1934.349964464778, + 5396.815473556869 + ], + [ + 1933.734804764813, + 5396.44715183518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1933.734804764813, + "min_y": 5397.17637267243, + "max_x": 1934.349964464778, + "max_y": 5397.544694394118, + "center": [ + 1934.0423846147955, + 5397.360533533274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.734804764813, + 5397.544694394118 + ], + [ + 1934.349964464778, + 5397.17637267243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.261755844376, + "min_y": 5397.000814383244, + "max_x": 1933.413435441139, + "max_y": 5397.000814383244, + "center": [ + 1932.8375956427576, + 5397.000814383244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1933.413435441139, + 5397.000814383244 + ], + [ + 1932.261755844376, + 5397.000814383244 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555EC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.259789093972, + "min_y": 5396.326995916928, + "max_x": 1932.259789093972, + "max_y": 5397.000225932047, + "center": [ + 1932.259789093972, + 5396.663610924488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.259789093972, + 5397.000225932047 + ], + [ + 1932.259789093972, + 5396.326995916928 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555EC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.895556957639, + "min_y": 5396.001720655639, + "max_x": 1931.895556957639, + "max_y": 5396.522042636836, + "center": [ + 1931.895556957639, + 5396.261881646237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.895556957639, + 5396.522042636836 + ], + [ + 1931.895556957639, + 5396.001720655639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1932.66383674889, + "min_y": 5396.001720655639, + "max_x": 1932.66383674889, + "max_y": 5396.522042636836, + "center": [ + 1932.66383674889, + 5396.261881646237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1932.66383674889, + 5396.522042636836 + ], + [ + 1932.66383674889, + 5396.001720655639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1931.895556957639, + "min_y": 5396.001720655639, + "max_x": 1932.66383674889, + "max_y": 5396.001720655639, + "center": [ + 1932.2796968532643, + 5396.001720655639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1931.895556957639, + 5396.001720655639 + ], + [ + 1932.66383674889, + 5396.001720655639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EC4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1933.591245100416, + "min_y": 5395.107459781404, + "max_x": 1935.4050497307671, + "max_y": 5396.115129020488, + "center": [ + 1934.4981474155916, + 5395.611294400946 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EC5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1934.499080765221, + "min_y": 5398.693410657385, + "max_x": 1936.312885395572, + "max_y": 5399.701079896469, + "center": [ + 1935.4059830803965, + 5399.197245276928 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.672635308415, + "min_y": 5336.300728487062, + "max_x": 1859.672635308415, + "max_y": 5337.460590788889, + "center": [ + 1859.672635308415, + 5336.880659637975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.672635308415, + 5336.300728487062 + ], + [ + 1859.672635308415, + 5337.460590788889 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555EC7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1857.499219215146, + "min_y": 5338.641204506906, + "max_x": 1861.4179320269889, + "max_y": 5339.947442110854, + "center": [ + 1859.4585756210674, + 5339.294323308881 + ] + }, + "raw_value": "10117", + "clean_value": "10117", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EC8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1858.608410876538, + "min_y": 5340.957669711344, + "max_x": 1860.1758960012753, + "max_y": 5342.263907315292, + "center": [ + 1859.3921534389067, + 5341.610788513319 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EC9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1856.8105709135873, + "min_y": 5337.460590788889, + "max_x": 1862.5346997032427, + "max_y": 5343.184719578545, + "center": [ + 1859.672635308415, + 5340.322655183717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.672635308415, + 5340.322655183717 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555ECA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.149406341888, + "min_y": 5336.299143369874, + "max_x": 1860.287531034392, + "max_y": 5336.299143369874, + "center": [ + 1859.71846868814, + 5336.299143369874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.149406341888, + 5336.299143369874 + ], + [ + 1860.287531034392, + 5336.299143369874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ECB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1859.3671956349024, + "min_y": 5334.70473242479, + "max_x": 1860.0697417413814, + "max_y": 5335.407278531268, + "center": [ + 1859.718468688142, + 5335.056005478029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.718468688142, + 5335.056005478029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ECC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.169697408672, + "min_y": 5333.812867586185, + "max_x": 1860.267239967611, + "max_y": 5333.812867586185, + "center": [ + 1859.7184686881415, + 5333.812867586185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.267239967611, + 5333.812867586185 + ], + [ + 1859.169697408672, + 5333.812867586185 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ECD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.163540180666, + "min_y": 5335.972546522851, + "max_x": 1860.273397195617, + "max_y": 5335.972546522851, + "center": [ + 1859.7184686881415, + 5335.972546522851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.163540180666, + 5335.972546522851 + ], + [ + 1860.273397195617, + 5335.972546522851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.169697408672, + "min_y": 5334.139464433202, + "max_x": 1859.538019130361, + "max_y": 5334.754624133168, + "center": [ + 1859.3538582695164, + 5334.447044283185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.538019130361, + 5334.754624133168 + ], + [ + 1859.169697408672, + 5334.139464433202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ECF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.169697408672, + "min_y": 5334.139464433202, + "max_x": 1860.267239967611, + "max_y": 5334.139464433202, + "center": [ + 1859.7184686881415, + 5334.139464433202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.169697408672, + 5334.139464433202 + ], + [ + 1860.267239967611, + 5334.139464433202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.898918245923, + "min_y": 5334.139464433202, + "max_x": 1860.267239967611, + "max_y": 5334.754624133168, + "center": [ + 1860.083079106767, + 5334.447044283185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.267239967611, + 5334.139464433202 + ], + [ + 1859.898918245923, + 5334.754624133168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.169697408672, + "min_y": 5335.357386822887, + "max_x": 1859.538019130361, + "max_y": 5335.972546522851, + "center": [ + 1859.3538582695164, + 5335.664966672869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.538019130361, + 5335.357386822887 + ], + [ + 1859.169697408672, + 5335.972546522851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.898918245923, + "min_y": 5335.357386822887, + "max_x": 1860.267239967611, + "max_y": 5335.972546522851, + "center": [ + 1860.083079106767, + 5335.664966672869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1860.267239967611, + 5335.972546522851 + ], + [ + 1859.898918245923, + 5335.357386822887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED3", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 1859.672635308415, + "min_y": 5331.340551301583, + "max_x": 1859.672635308415, + "max_y": 5333.810249882411, + "center": [ + 1859.672635308415, + 5332.575400591997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.672635308415, + 5333.810249882411 + ], + [ + 1859.672635308415, + 5331.340551301583 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555ED4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1859.685769831772, + "min_y": 5333.214096288749, + "max_x": 1861.216098738802, + "max_y": 5333.214096288749, + "center": [ + 1860.450934285287, + 5333.214096288749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1859.685769831772, + 5333.214096288749 + ], + [ + 1861.216098738802, + 5333.214096288749 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555ED5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.70510169404, + "min_y": 5332.6401426739, + "max_x": 1863.70510169404, + "max_y": 5333.778267366404, + "center": [ + 1863.70510169404, + 5333.209205020152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.70510169404, + 5332.6401426739 + ], + [ + 1863.70510169404, + 5333.778267366404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1862.1106907489564, + "min_y": 5332.857931966913, + "max_x": 1862.8132368554354, + "max_y": 5333.560478073392, + "center": [ + 1862.461963802196, + 5333.209205020153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.461963802196, + 5333.209205020153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.218825910351, + "min_y": 5332.660433740684, + "max_x": 1861.218825910351, + "max_y": 5333.757976299622, + "center": [ + 1861.218825910351, + 5333.209205020154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.218825910351, + 5333.757976299622 + ], + [ + 1861.218825910351, + 5332.660433740684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.378504847018, + "min_y": 5332.654276512678, + "max_x": 1863.378504847018, + "max_y": 5333.764133527629, + "center": [ + 1863.378504847018, + 5333.209205020154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.378504847018, + 5332.654276512678 + ], + [ + 1863.378504847018, + 5333.764133527629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555ED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.54542275737, + "min_y": 5332.660433740684, + "max_x": 1862.160582457334, + "max_y": 5333.028755462373, + "center": [ + 1861.853002607352, + 5332.844594601529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.160582457334, + 5333.028755462373 + ], + [ + 1861.54542275737, + 5332.660433740684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.54542275737, + "min_y": 5332.660433740684, + "max_x": 1861.54542275737, + "max_y": 5333.757976299622, + "center": [ + 1861.54542275737, + 5333.209205020154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.54542275737, + 5332.660433740684 + ], + [ + 1861.54542275737, + 5333.757976299622 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1861.54542275737, + "min_y": 5333.389654577935, + "max_x": 1862.160582457334, + "max_y": 5333.757976299622, + "center": [ + 1861.853002607352, + 5333.573815438778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1861.54542275737, + 5333.757976299622 + ], + [ + 1862.160582457334, + 5333.389654577935 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1862.763345147054, + "min_y": 5332.660433740684, + "max_x": 1863.378504847018, + "max_y": 5333.028755462373, + "center": [ + 1863.070924997036, + 5332.844594601529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1862.763345147054, + 5333.028755462373 + ], + [ + 1863.378504847018, + 5332.660433740684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1862.763345147054, + "min_y": 5333.389654577935, + "max_x": 1863.378504847018, + "max_y": 5333.757976299622, + "center": [ + 1863.070924997036, + 5333.573815438778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.378504847018, + 5333.757976299622 + ], + [ + 1862.763345147054, + 5333.389654577935 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1863.699874170692, + "min_y": 5333.214096288749, + "max_x": 1864.851553767456, + "max_y": 5333.214096288749, + "center": [ + 1864.2757139690739, + 5333.214096288749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1863.699874170692, + 5333.214096288749 + ], + [ + 1864.851553767456, + 5333.214096288749 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555EDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.85352051786, + "min_y": 5332.540277822432, + "max_x": 1864.85352051786, + "max_y": 5333.213507837552, + "center": [ + 1864.85352051786, + 5332.876892829992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.85352051786, + 5333.213507837552 + ], + [ + 1864.85352051786, + 5332.540277822432 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "555EE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1865.217752654192, + "min_y": 5332.215002561143, + "max_x": 1865.217752654192, + "max_y": 5332.735324542341, + "center": [ + 1865.217752654192, + 5332.475163551742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.217752654192, + 5332.735324542341 + ], + [ + 1865.217752654192, + 5332.215002561143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.449472862941, + "min_y": 5332.215002561143, + "max_x": 1864.449472862941, + "max_y": 5332.735324542341, + "center": [ + 1864.449472862941, + 5332.475163551742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1864.449472862941, + 5332.735324542341 + ], + [ + 1864.449472862941, + 5332.215002561143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1864.449472862941, + "min_y": 5332.215002561143, + "max_x": 1865.217752654192, + "max_y": 5332.215002561143, + "center": [ + 1864.8336127585667, + 5332.215002561143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1865.217752654192, + 5332.215002561143 + ], + [ + 1864.449472862941, + 5332.215002561143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1861.48730898512, + "min_y": 5331.558729065662, + "max_x": 1863.3011136154712, + "max_y": 5332.566398304746, + "center": [ + 1862.3942113002956, + 5332.062563685204 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1860.309378186118, + "min_y": 5334.629343335437, + "max_x": 1862.1231828164691, + "max_y": 5335.637012574521, + "center": [ + 1861.2162805012936, + 5335.133177954978 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1713.410905620241, + "min_y": 5320.547753332195, + "max_x": 1721.4740513430736, + "max_y": 5321.667634682588, + "center": [ + 1717.4424784816574, + 5321.107694007391 + ] + }, + "raw_value": "DP10101BA-02", + "clean_value": "DP10101BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555EE6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1713.582069161863, + "min_y": 5317.049549480125, + "max_x": 1721.6452148846956, + "max_y": 5318.169430830519, + "center": [ + 1717.6136420232792, + 5317.609490155322 + ] + }, + "raw_value": "DP10101CV-01", + "clean_value": "DP10101CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555EE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.982091729827, + "min_y": 5338.311552677568, + "max_x": 1677.982094208866, + "max_y": 5339.55484973665, + "center": [ + 1677.9820929693465, + 5338.933201207109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.982094208866, + 5339.55484973665 + ], + [ + 1677.982091729827, + 5338.311552677568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.042970516424, + "min_y": 5338.311558537943, + "max_x": 1675.042972995465, + "max_y": 5339.554855597044, + "center": [ + 1675.0429717559446, + 5338.933207067494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.042972995465, + 5339.554855597044 + ], + [ + 1675.042970516424, + 5338.311558537943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.513709930914, + "min_y": 5338.026403560193, + "max_x": 1677.51371232156, + "max_y": 5339.82463862953, + "center": [ + 1677.513711126237, + 5338.925521094861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.51371232156, + 5339.82463862953 + ], + [ + 1677.513709930914, + 5338.026403560193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.511235521781, + "min_y": 5338.026407552977, + "max_x": 1675.511237932839, + "max_y": 5339.839996419615, + "center": [ + 1675.51123672731, + 5338.933201986296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.511237932839, + 5339.839996419615 + ], + [ + 1675.511235521781, + 5338.026407552977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.511235521785, + "min_y": 5338.026403560193, + "max_x": 1677.513709930914, + "max_y": 5338.026407552977, + "center": [ + 1676.5124727263496, + 5338.026405556585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.511235521785, + 5338.026407552977 + ], + [ + 1677.513709930914, + 5338.026403560193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1675.511235521785, + "min_y": 5339.839996419602, + "max_x": 1677.513709930914, + "max_y": 5339.840000412386, + "center": [ + 1676.5124727263496, + 5339.839998415994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1675.511235521785, + 5339.839996419602 + ], + [ + 1677.513709930914, + 5339.840000412386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1676.015388979269, + "min_y": 5338.380513406816, + "max_x": 1676.6860341881452, + "max_y": 5339.49825542161, + "center": [ + 1676.350711583707, + 5338.939384414213 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EEE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1675.383619696154, + "min_y": 5336.370294042994, + "max_x": 1677.3994061268622, + "max_y": 5337.490175393387, + "center": [ + 1676.391512911508, + 5336.930234718191 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555EEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.26606631164, + "min_y": 5340.104513637743, + "max_x": 1690.83398305889, + "max_y": 5340.104513637743, + "center": [ + 1685.050024685265, + 5340.104513637743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.83398305889, + 5340.104513637743 + ], + [ + 1679.26606631164, + 5340.104513637743 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.26606631164, + "min_y": 5337.383468443312, + "max_x": 1690.833983058892, + "max_y": 5337.383468443312, + "center": [ + 1685.0500246852662, + 5337.383468443312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.26606631164, + 5337.383468443312 + ], + [ + 1690.833983058892, + 5337.383468443312 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555EF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1679.26606631164, + "min_y": 5337.383468443312, + "max_x": 1679.26606631164, + "max_y": 5340.104513637743, + "center": [ + 1679.26606631164, + 5338.743991040528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1679.26606631164, + 5337.383468443312 + ], + [ + 1679.26606631164, + 5340.104513637743 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555EF2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1690.833983058892, + "min_y": 5337.383468443312, + "max_x": 1692.194505656107, + "max_y": 5338.74399104053, + "center": [ + 1691.5142443574996, + 5338.063729741922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1690.833983058892, + 5337.383468443312 + ], + [ + 1692.194505656107, + 5338.74399104053 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555EF3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1690.83398305889, + "min_y": 5338.74399104053, + "max_x": 1692.194505656105, + "max_y": 5340.104513637743, + "center": [ + 1691.5142443574975, + 5339.424252339137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1692.194505656105, + 5338.74399104053 + ], + [ + 1690.83398305889, + 5340.104513637743 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555EF4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1680.313491085112, + "min_y": 5338.045169181778, + "max_x": 1688.853883035621, + "max_y": 5339.468567840197, + "center": [ + 1684.5836870603666, + 5338.756868510987 + ] + }, + "raw_value": "CONDENSATE", + "clean_value": "CONDENSATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EF5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1679.438996796998, + "min_y": 5340.879715046497, + "max_x": 1691.6090553264733, + "max_y": 5341.947264040311, + "center": [ + 1685.5240260617356, + 5341.413489543404 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EF6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1680.141905293191, + "min_y": 5335.540729625024, + "max_x": 1687.4052576257375, + "max_y": 5336.751288347115, + "center": [ + 1683.7735814594644, + 5336.14600898607 + ] + }, + "raw_value": "OGDEN PUMP", + "clean_value": "OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555EF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.492452589573, + "min_y": 5338.430100073265, + "max_x": 1673.492454672801, + "max_y": 5339.474887517877, + "center": [ + 1673.492453631187, + 5338.95249379557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.492454672801, + 5339.474887517877 + ], + [ + 1673.492452589573, + 5338.430100073265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.022602830409, + "min_y": 5338.430104997957, + "max_x": 1671.022604913638, + "max_y": 5339.474892442578, + "center": [ + 1671.0226038720234, + 5338.952498720268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.022604913638, + 5339.474892442578 + ], + [ + 1671.022602830409, + 5338.430104997957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.416104843861, + "min_y": 5339.118147756003, + "max_x": 1671.980814816232, + "max_y": 5339.456264655187, + "center": [ + 1671.6984598300464, + 5339.287206205595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.416104843861, + 5339.456264655187 + ], + [ + 1671.980814816232, + 5339.118147756003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.534144466854, + "min_y": 5338.448727860857, + "max_x": 1673.098854439225, + "max_y": 5338.786844760036, + "center": [ + 1672.8164994530396, + 5338.617786310446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.534144466854, + 5338.786844760036 + ], + [ + 1673.098854439225, + 5338.448727860857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.098854439225, + "min_y": 5338.448727860857, + "max_x": 1673.098856448171, + "max_y": 5339.456261299901, + "center": [ + 1673.098855443698, + 5338.952494580379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.098856448171, + 5339.456261299901 + ], + [ + 1673.098854439225, + 5338.448727860857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.416102834912, + "min_y": 5338.448731216137, + "max_x": 1671.416104843861, + "max_y": 5339.456264655187, + "center": [ + 1671.4161038393863, + 5338.952497935662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.416104843861, + 5339.456264655187 + ], + [ + 1671.416102834912, + 5338.448731216137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1671.416102834912, + "min_y": 5338.448731216137, + "max_x": 1671.98081415564, + "max_y": 5338.786845863342, + "center": [ + 1671.698458495276, + 5338.617788539739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1671.416102834912, + 5338.448731216137 + ], + [ + 1671.98081415564, + 5338.786845863342 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555EFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1672.534145127445, + "min_y": 5339.118146652703, + "max_x": 1673.098856448171, + "max_y": 5339.456261299901, + "center": [ + 1672.816500787808, + 5339.287203976302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.534145127445, + 5339.118146652703 + ], + [ + 1673.098856448171, + 5339.456261299901 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F00", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1671.9350143808585, + "min_y": 5338.630030997338, + "max_x": 1672.5799449022236, + "max_y": 5339.274961518702, + "center": [ + 1672.257479641541, + 5338.95249625802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1672.257479641541, + 5338.95249625802 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1673.49273008245, + "min_y": 5338.967391650621, + "max_x": 1675.041295632345, + "max_y": 5338.967391650621, + "center": [ + 1674.2670128573975, + 5338.967391650621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1673.49273008245, + 5338.967391650621 + ], + [ + 1675.041295632345, + 5338.967391650621 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555F02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1677.981099799458, + "min_y": 5338.929441416498, + "max_x": 1679.269053179783, + "max_y": 5338.929441416498, + "center": [ + 1678.6250764896204, + 5338.929441416498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1677.981099799458, + 5338.929441416498 + ], + [ + 1679.269053179783, + 5338.929441416498 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555F03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1669.661506684451, + "min_y": 5338.922901737156, + "max_x": 1669.661506684451, + "max_y": 5348.241231543535, + "center": [ + 1669.661506684451, + 5343.582066640345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1669.661506684451, + 5348.241231543535 + ], + [ + 1669.661506684451, + 5338.922901737156 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555F04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1669.661506684451, + "min_y": 5338.922901737156, + "max_x": 1671.022684457603, + "max_y": 5338.922901737156, + "center": [ + 1670.3420955710271, + 5338.922901737156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1669.661506684451, + 5338.922901737156 + ], + [ + 1671.022684457603, + 5338.922901737156 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "555F05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.102738249135, + "min_y": 5343.500014227227, + "max_x": 1684.102738249135, + "max_y": 5344.020336208423, + "center": [ + 1684.102738249135, + 5343.760175217825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.102738249135, + 5344.020336208423 + ], + [ + 1684.102738249135, + 5343.500014227227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.871018040387, + "min_y": 5343.500014227227, + "max_x": 1684.871018040387, + "max_y": 5344.020336208423, + "center": [ + 1684.871018040387, + 5343.760175217825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.871018040387, + 5344.020336208423 + ], + [ + 1684.871018040387, + 5343.500014227227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1684.102738249135, + "min_y": 5343.500014227227, + "max_x": 1684.871018040387, + "max_y": 5343.500014227227, + "center": [ + 1684.486878144761, + 5343.500014227227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1684.102738249135, + 5343.500014227227 + ], + [ + 1684.871018040387, + 5343.500014227227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F08", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2008.184417887939, + "min_y": 5195.039891140158, + "max_x": 2013.783824639906, + "max_y": 5195.973125598819, + "center": [ + 2010.9841212639226, + 5195.506508369488 + ] + }, + "raw_value": "2025.06.20", + "clean_value": "2025.06.20", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F09", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.319829637503, + "min_y": 5195.065138966194, + "max_x": 2029.7993550390768, + "max_y": 5195.998373424855, + "center": [ + 2027.5595923382898, + 5195.531756195525 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F0A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2003.8323113138165, + "min_y": 5385.6777844857725, + "max_x": 2004.6308311691694, + "max_y": 5386.476304341125, + "center": [ + 2004.231571241493, + 5386.077044413449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.231571241493, + 5386.077044413449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5385.035296098579, + "max_x": 2004.02647074567, + "max_y": 5385.734491824106, + "center": [ + 2003.817151951351, + 5385.384893961343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.02647074567, + 5385.734491824106 + ], + [ + 2003.607833157032, + 5385.035296098579 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5385.035296098579, + "max_x": 2004.855309325957, + "max_y": 5385.035296098579, + "center": [ + 2004.2315712414945, + 5385.035296098579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.607833157032, + 5385.035296098579 + ], + [ + 2004.855309325957, + 5385.035296098579 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.43667173732, + "min_y": 5385.035296098579, + "max_x": 2004.855309325957, + "max_y": 5385.734491824106, + "center": [ + 2004.6459905316385, + 5385.384893961343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.855309325957, + 5385.035296098579 + ], + [ + 2004.43667173732, + 5385.734491824106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5386.419597002782, + "max_x": 2004.026470745673, + "max_y": 5387.118792728307, + "center": [ + 2003.8171519513526, + 5386.769194865545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.026470745673, + 5386.419597002782 + ], + [ + 2003.607833157032, + 5387.118792728307 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2003.607833157032, + "min_y": 5387.118792728307, + "max_x": 2004.855309325957, + "max_y": 5387.118792728307, + "center": [ + 2004.2315712414945, + 5387.118792728307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2003.607833157032, + 5387.118792728307 + ], + [ + 2004.855309325957, + 5387.118792728307 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2004.436671737314, + "min_y": 5386.419597002782, + "max_x": 2004.855309325957, + "max_y": 5387.118792728307, + "center": [ + 2004.6459905316356, + 5386.769194865545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2004.855309325957, + 5387.118792728307 + ], + [ + 2004.436671737314, + 5386.419597002782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F11", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.265592247433, + "min_y": 5198.475629233867, + "max_x": 2029.7451176490067, + "max_y": 5199.408863692528, + "center": [ + 2027.50535494822, + 5198.942246463197 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F12", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2008.08146557554, + "min_y": 5198.628725886001, + "max_x": 2013.6808723275071, + "max_y": 5199.561960344662, + "center": [ + 2010.8811689515237, + 5199.095343115332 + ] + }, + "raw_value": "2025.06.23", + "clean_value": "2025.06.23", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F13", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1965.7974716340336, + "min_y": 5381.753037777722, + "max_x": 1966.5959914893865, + "max_y": 5382.5515576330745, + "center": [ + 1966.19673156171, + 5382.152297705398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.19673156171, + 5382.152297705398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.572993477249, + "min_y": 5381.110549390529, + "max_x": 1965.991631065887, + "max_y": 5381.809745116055, + "center": [ + 1965.7823122715681, + 5381.460147253292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.991631065887, + 5381.809745116055 + ], + [ + 1965.572993477249, + 5381.110549390529 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.572993477249, + "min_y": 5381.110549390529, + "max_x": 1966.820469646175, + "max_y": 5381.110549390529, + "center": [ + 1966.196731561712, + 5381.110549390529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.572993477249, + 5381.110549390529 + ], + [ + 1966.820469646175, + 5381.110549390529 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.401832057537, + "min_y": 5381.110549390529, + "max_x": 1966.820469646175, + "max_y": 5381.809745116055, + "center": [ + 1966.611150851856, + 5381.460147253292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.820469646175, + 5381.110549390529 + ], + [ + 1966.401832057537, + 5381.809745116055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.572993477249, + "min_y": 5382.494850294732, + "max_x": 1965.99163106589, + "max_y": 5383.194046020256, + "center": [ + 1965.7823122715695, + 5382.844448157493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.99163106589, + 5382.494850294732 + ], + [ + 1965.572993477249, + 5383.194046020256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.572993477249, + "min_y": 5383.194046020256, + "max_x": 1966.820469646175, + "max_y": 5383.194046020256, + "center": [ + 1966.196731561712, + 5383.194046020256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.572993477249, + 5383.194046020256 + ], + [ + 1966.820469646175, + 5383.194046020256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.401832057531, + "min_y": 5382.494850294732, + "max_x": 1966.820469646175, + "max_y": 5383.194046020256, + "center": [ + 1966.611150851853, + 5382.844448157493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.820469646175, + 5383.194046020256 + ], + [ + 1966.401832057531, + 5382.494850294732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.616153213594, + "min_y": 5379.326419078783, + "max_x": 1966.756260774585, + "max_y": 5379.326419078783, + "center": [ + 1966.1862069940894, + 5379.326419078783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.756260774585, + 5379.326419078783 + ], + [ + 1965.616153213594, + 5379.326419078783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1965.616153213594, + "min_y": 5379.326419078783, + "max_x": 1965.616153213594, + "max_y": 5379.952492017804, + "center": [ + 1965.616153213594, + 5379.639455548293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1965.616153213594, + 5379.952492017804 + ], + [ + 1965.616153213594, + 5379.326419078783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1966.756260774585, + "min_y": 5379.326419078783, + "max_x": 1966.756260774585, + "max_y": 5379.952492017804, + "center": [ + 1966.756260774585, + 5379.639455548293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.756260774585, + 5379.952492017804 + ], + [ + 1966.756260774585, + 5379.326419078783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F1D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1966.186206994089, + "min_y": 5379.950347133925, + "max_x": 1966.186206994089, + "max_y": 5381.110536098303, + "center": [ + 1966.186206994089, + 5380.530441616114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.186206994089, + 5379.950347133925 + ], + [ + 1966.186206994089, + 5381.110536098303 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F1E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1966.186206994089, + "min_y": 5383.19392064574, + "max_x": 1966.186206994089, + "max_y": 5385.068414700413, + "center": [ + 1966.186206994089, + 5384.131167673077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1966.186206994089, + 5383.19392064574 + ], + [ + 1966.186206994089, + 5385.068414700413 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F1F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2008.040926103586, + "min_y": 5201.85157708522, + "max_x": 2013.640332855553, + "max_y": 5202.784811543881, + "center": [ + 2010.8406294795695, + 5202.31819431455 + ] + }, + "raw_value": "2025.07.02", + "clean_value": "2025.07.02", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F20", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.389734065646, + "min_y": 5201.912133055215, + "max_x": 2029.8692594672198, + "max_y": 5202.845367513876, + "center": [ + 2027.629496766433, + 5202.378750284546 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.202003578418, + "min_y": 5194.464900580474, + "max_x": 1923.258740561125, + "max_y": 5194.464900580474, + "center": [ + 1920.7303720697714, + 5194.464900580474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1923.258740561125, + 5194.464900580474 + ], + [ + 1918.202003578418, + 5194.464900580474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1922.537409808639, + "min_y": 5194.464900581585, + "max_x": 1923.608453713334, + "max_y": 5195.53594448628, + "center": [ + 1923.0729317609866, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1922.537409808639, + 5194.464900581585 + ], + [ + 1923.608453713334, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.780067400681, + "min_y": 5194.464900581585, + "max_x": 1922.851111305377, + "max_y": 5195.53594448628, + "center": [ + 1922.3155893530288, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.780067400681, + 5194.464900581585 + ], + [ + 1922.851111305377, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.022724992723, + "min_y": 5194.464900581585, + "max_x": 1922.093768897418, + "max_y": 5195.53594448628, + "center": [ + 1921.5582469450706, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.022724992723, + 5194.464900581585 + ], + [ + 1922.093768897418, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.265382584765, + "min_y": 5194.464900581585, + "max_x": 1921.33642648946, + "max_y": 5195.53594448628, + "center": [ + 1920.8009045371125, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.265382584765, + 5194.464900581585 + ], + [ + 1921.33642648946, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.508040176807, + "min_y": 5194.464900581585, + "max_x": 1920.579084081502, + "max_y": 5195.53594448628, + "center": [ + 1920.0435621291545, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.508040176807, + 5194.464900581585 + ], + [ + 1920.579084081502, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.750697768849, + "min_y": 5194.464900581585, + "max_x": 1919.821741673544, + "max_y": 5195.53594448628, + "center": [ + 1919.2862197211966, + 5195.000422533933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.750697768849, + 5194.464900581585 + ], + [ + 1919.821741673544, + 5195.53594448628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F28", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1919.88456901828, + "min_y": 5193.213498383038, + "max_x": 1921.437470333083, + "max_y": 5194.076221335707, + "center": [ + 1920.6610196756815, + 5193.644859859372 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1877.877888204773, + "min_y": 5220.575216361499, + "max_x": 1918.036184530109, + "max_y": 5220.575523373785, + "center": [ + 1897.957036367441, + 5220.575369867642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1877.877888204773, + 5220.575523373785 + ], + [ + 1918.036184530109, + 5220.575216361499 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.964022422868, + "min_y": 5192.089072414882, + "max_x": 1971.332985843607, + "max_y": 5192.705303861017, + "center": [ + 1971.1485041332376, + 5192.397188137949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.332985843607, + 5192.089072414882 + ], + [ + 1970.964022422868, + 5192.705303861017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5192.089072414882, + "max_x": 1971.332985843607, + "max_y": 5192.089072414882, + "center": [ + 1970.783258481486, + 5192.089072414882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.233531119365, + 5192.089072414882 + ], + [ + 1971.332985843607, + 5192.089072414882 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5192.089072414882, + "max_x": 1970.602494540104, + "max_y": 5192.705303861017, + "center": [ + 1970.4180128297344, + 5192.397188137949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.602494540104, + 5192.705303861017 + ], + [ + 1970.233531119365, + 5192.089072414882 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.964022422871, + "min_y": 5193.309116698539, + "max_x": 1971.332985843607, + "max_y": 5193.925348144681, + "center": [ + 1971.148504133239, + 5193.6172324216095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.332985843607, + 5193.925348144681 + ], + [ + 1970.964022422871, + 5193.309116698539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5193.925348144681, + "max_x": 1971.332985843607, + "max_y": 5193.925348144681, + "center": [ + 1970.783258481486, + 5193.925348144681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.233531119365, + 5193.925348144681 + ], + [ + 1971.332985843607, + 5193.925348144681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5193.309116698539, + "max_x": 1970.602494540101, + "max_y": 5193.925348144681, + "center": [ + 1970.418012829733, + 5193.6172324216095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.602494540101, + 5193.309116698539 + ], + [ + 1970.233531119365, + 5193.925348144681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.225543144433, + "min_y": 5194.252513996659, + "max_x": 1971.337333779241, + "max_y": 5194.252513996659, + "center": [ + 1970.7814384618368, + 5194.252513996659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.225543144433, + 5194.252513996659 + ], + [ + 1971.337333779241, + 5194.252513996659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.225543144433, + "min_y": 5194.252513996659, + "max_x": 1971.337333779241, + "max_y": 5194.252513996659, + "center": [ + 1970.7814384618368, + 5194.252513996659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.225543144433, + 5194.252513996659 + ], + [ + 1971.337333779241, + 5194.252513996659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.227363164083, + "min_y": 5191.761906562898, + "max_x": 1971.339153798888, + "max_y": 5191.761906562898, + "center": [ + 1970.7832584814855, + 5191.761906562898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.227363164083, + 5191.761906562898 + ], + [ + 1971.339153798888, + 5191.761906562898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.227363164083, + "min_y": 5192.089072414882, + "max_x": 1971.339153798888, + "max_y": 5192.089072414882, + "center": [ + 1970.7832584814855, + 5192.089072414882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.227363164083, + 5192.089072414882 + ], + [ + 1971.339153798888, + 5192.089072414882 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5191.761906562898, + "max_x": 1971.332985843607, + "max_y": 5191.761906562898, + "center": [ + 1970.783258481486, + 5191.761906562898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.332985843607, + 5191.761906562898 + ], + [ + 1970.233531119365, + 5191.761906562898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.233531119365, + "min_y": 5194.252513996659, + "max_x": 1971.332985843607, + "max_y": 5194.252513996659, + "center": [ + 1970.783258481486, + 5194.252513996659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1971.332985843607, + 5194.252513996659 + ], + [ + 1970.233531119365, + 5194.252513996659 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F36", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1970.4313734317993, + "min_y": 5192.655325230095, + "max_x": 1971.1351435311726, + "max_y": 5193.359095329468, + "center": [ + 1970.783258481486, + 5193.007210279781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.783258481486, + 5193.007210279781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.213204700991, + "min_y": 5191.761906562898, + "max_x": 1971.353312261981, + "max_y": 5191.761906562898, + "center": [ + 1970.783258481486, + 5191.761906562898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.213204700991, + 5191.761906562898 + ], + [ + 1971.353312261981, + 5191.761906562898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F38", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1970.052064654339, + "min_y": 5190.933013864961, + "max_x": 1978.1152103771715, + "max_y": 5192.0528952153545, + "center": [ + 1974.083637515755, + 5191.492954540157 + ] + }, + "raw_value": "HD10119BA-05", + "clean_value": "HD10119BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "555F39", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1985.636307805183, + "min_y": 5198.872382449716, + "max_x": 1991.907643367386, + "max_y": 5200.365557583574, + "center": [ + 1988.7719755862845, + 5199.618970016645 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F3A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.125733767333, + "min_y": 5198.177406011119, + "max_x": 1994.90491677036, + "max_y": 5198.177406011119, + "center": [ + 1989.5153252688465, + 5198.177406011119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.125733767333, + 5198.177406011119 + ], + [ + 1994.90491677036, + 5198.177406011119 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F3B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1984.125733767333, + "min_y": 5201.155709424512, + "max_x": 1994.904916770368, + "max_y": 5201.155709424512, + "center": [ + 1989.5153252688506, + 5201.155709424512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.904916770368, + 5201.155709424512 + ], + [ + 1984.125733767333, + 5201.155709424512 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1984.125733767333, + "min_y": 5198.224064033555, + "max_x": 1984.125733767333, + "max_y": 5201.155709424512, + "center": [ + 1984.125733767333, + 5199.689886729033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.125733767333, + 5201.155709424512 + ], + [ + 1984.125733767333, + 5198.224064033555 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F3D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.904916770362, + "min_y": 5198.17740601112, + "max_x": 1996.39406847706, + "max_y": 5199.666557717818, + "center": [ + 1995.649492623711, + 5198.921981864469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1994.904916770362, + 5198.17740601112 + ], + [ + 1996.39406847706, + 5199.666557717818 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F3E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1994.904916770362, + "min_y": 5199.666557717818, + "max_x": 1996.39406847706, + "max_y": 5201.155709424515, + "center": [ + 1995.649492623711, + 5200.411133571167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1996.39406847706, + 5199.666557717818 + ], + [ + 1994.904916770362, + 5201.155709424515 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.789905085211, + "min_y": 5199.689886729034, + "max_x": 1984.125733767333, + "max_y": 5199.689886729034, + "center": [ + 1977.4578194262722, + 5199.689886729034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.125733767333, + 5199.689886729034 + ], + [ + 1970.789905085211, + 5199.689886729034 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.789905085211, + "min_y": 5194.252513996659, + "max_x": 1970.789905085211, + "max_y": 5199.689886729034, + "center": [ + 1970.789905085211, + 5196.9712003628465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.789905085211, + 5199.689886729034 + ], + [ + 1970.789905085211, + 5194.252513996659 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1970.789905085211, + "min_y": 5190.62089988087, + "max_x": 1970.789905085211, + "max_y": 5191.761906562898, + "center": [ + 1970.789905085211, + 5191.191403221884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1970.789905085211, + 5191.761906562898 + ], + [ + 1970.789905085211, + 5190.62089988087 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F42", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2000.330397442842, + "min_y": 5315.234234840642, + "max_x": 2006.6017330050452, + "max_y": 5316.7274099745, + "center": [ + 2003.4660652239436, + 5315.980822407571 + ] + }, + "raw_value": "T-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F43", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1998.221942143563, + "min_y": 5314.536459617093, + "max_x": 2009.001125146589, + "max_y": 5314.536459617093, + "center": [ + 2003.611533645076, + 5314.536459617093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.221942143563, + 5314.536459617093 + ], + [ + 2009.001125146589, + 5314.536459617093 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F44", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 1998.221942143563, + "min_y": 5317.514763030488, + "max_x": 2009.001125146597, + "max_y": 5317.514763030488, + "center": [ + 2003.6115336450798, + 5317.514763030488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.001125146597, + 5317.514763030488 + ], + [ + 1998.221942143563, + 5317.514763030488 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1998.221942143563, + "min_y": 5314.536459617093, + "max_x": 1998.221942143563, + "max_y": 5317.514763030488, + "center": [ + 1998.221942143563, + 5316.02561132379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1998.221942143563, + 5317.514763030488 + ], + [ + 1998.221942143563, + 5314.536459617093 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F46", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2009.001125146597, + "min_y": 5314.536459617094, + "max_x": 2010.490276853294, + "max_y": 5316.025611323791, + "center": [ + 2009.7457009999455, + 5315.2810354704425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2009.001125146597, + 5314.536459617094 + ], + [ + 2010.490276853294, + 5316.025611323791 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F47", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2009.001125146597, + "min_y": 5316.025611323791, + "max_x": 2010.490276853294, + "max_y": 5317.514763030488, + "center": [ + 2009.7457009999455, + 5316.77018717714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2010.490276853294, + 5316.025611323791 + ], + [ + 2009.001125146597, + 5317.514763030488 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "555F48", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1962.193330626243, + "min_y": 5316.563662730245, + "max_x": 1973.6161204002558, + "max_y": 5317.683544080638, + "center": [ + 1967.9047255132496, + 5317.123603405442 + ] + }, + "raw_value": "P-10150-25A-F1A-n", + "clean_value": "P-10150-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1960.508776525322, + "min_y": 5315.943210795509, + "max_x": 1998.221942143563, + "max_y": 5315.943210795509, + "center": [ + 1979.3653593344425, + 5315.943210795509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1960.508776525322, + 5315.943210795509 + ], + [ + 1998.221942143563, + 5315.943210795509 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F4A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1971.767168760593, + "min_y": 5200.520817245561, + "max_x": 1983.1899585346057, + "max_y": 5201.640698595955, + "center": [ + 1977.4785636475995, + 5201.080757920758 + ] + }, + "raw_value": "P-10151-15A-F1A-n", + "clean_value": "P-10151-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.631381408818, + "min_y": 5295.492356764402, + "max_x": 1721.588871781806, + "max_y": 5295.492356764402, + "center": [ + 1715.610126595312, + 5295.492356764402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.588871781806, + 5295.492356764402 + ], + [ + 1709.631381408818, + 5295.492356764402 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.631381408818, + "min_y": 5292.567601596846, + "max_x": 1721.588871781806, + "max_y": 5292.567601596846, + "center": [ + 1715.610126595312, + 5292.567601596846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5292.567601596846 + ], + [ + 1721.588871781806, + 5292.567601596846 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.169003825039, + "min_y": 5294.029979180623, + "max_x": 1709.631381408818, + "max_y": 5295.492356764402, + "center": [ + 1708.9001926169285, + 5294.761167972512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5295.492356764402 + ], + [ + 1708.169003825039, + 5294.029979180623 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.169003825039, + "min_y": 5292.567601596846, + "max_x": 1709.631381408818, + "max_y": 5294.029979180623, + "center": [ + 1708.9001926169285, + 5293.298790388734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5292.567601596846 + ], + [ + 1708.169003825039, + 5294.029979180623 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.588871781806, + "min_y": 5292.567601596848, + "max_x": 1721.588871781806, + "max_y": 5295.492356764402, + "center": [ + 1721.588871781806, + 5294.029979180625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.588871781806, + 5295.492356764402 + ], + [ + 1721.588871781806, + 5292.567601596848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F50", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1710.657068962165, + "min_y": 5293.417790443186, + "max_x": 1715.473454673937, + "max_y": 5294.564548945989, + "center": [ + 1713.065261818051, + 5293.991169694587 + ] + }, + "raw_value": "P-10114", + "clean_value": "P-10114", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.631381408818, + "min_y": 5291.324730090075, + "max_x": 1721.588871781806, + "max_y": 5291.324730090075, + "center": [ + 1715.610126595312, + 5291.324730090075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.588871781806, + 5291.324730090075 + ], + [ + 1709.631381408818, + 5291.324730090075 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1709.631381408818, + "min_y": 5288.399974922519, + "max_x": 1721.588871781806, + "max_y": 5288.399974922519, + "center": [ + 1715.610126595312, + 5288.399974922519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5288.399974922519 + ], + [ + 1721.588871781806, + 5288.399974922519 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.169003825039, + "min_y": 5289.862352506297, + "max_x": 1709.631381408818, + "max_y": 5291.324730090075, + "center": [ + 1708.9001926169285, + 5290.593541298185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5291.324730090075 + ], + [ + 1708.169003825039, + 5289.862352506297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1708.169003825039, + "min_y": 5288.399974922519, + "max_x": 1709.631381408818, + "max_y": 5289.862352506297, + "center": [ + 1708.9001926169285, + 5289.131163714408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1709.631381408818, + 5288.399974922519 + ], + [ + 1708.169003825039, + 5289.862352506297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1721.588871781806, + "min_y": 5288.399974922523, + "max_x": 1721.588871781806, + "max_y": 5291.324730090075, + "center": [ + 1721.588871781806, + 5289.862352506299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1721.588871781806, + 5291.324730090075 + ], + [ + 1721.588871781806, + 5288.399974922523 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F56", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1710.657068962165, + "min_y": 5289.25016376886, + "max_x": 1715.473454673937, + "max_y": 5290.396922271663, + "center": [ + 1713.065261818051, + 5289.823543020262 + ] + }, + "raw_value": "E-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.070036051737, + "min_y": 5289.862352506297, + "max_x": 1708.169003825039, + "max_y": 5289.862352506297, + "center": [ + 1704.1195199383878, + 5289.862352506297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.169003825039, + 5289.862352506297 + ], + [ + 1700.070036051737, + 5289.862352506297 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.069865598029, + "min_y": 5283.352669627713, + "max_x": 1700.070036051737, + "max_y": 5289.862352506297, + "center": [ + 1700.069950824883, + 5286.607511067004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.070036051737, + 5289.862352506297 + ], + [ + 1700.069865598029, + 5283.352669627713 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.47224415777, + "min_y": 5294.029979180623, + "max_x": 1708.169003825039, + "max_y": 5294.029979180623, + "center": [ + 1702.8206239914045, + 5294.029979180623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1708.169003825039, + 5294.029979180623 + ], + [ + 1697.47224415777, + 5294.029979180623 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.471927020987, + "min_y": 5283.352669627713, + "max_x": 1697.47224415777, + "max_y": 5294.029979180623, + "center": [ + 1697.4720855893786, + 5288.691324404168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.47224415777, + 5294.029979180623 + ], + [ + 1697.471927020987, + 5283.352669627713 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F5B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1698.895646539374, + "min_y": 5290.556375884528, + "max_x": 1710.3184363133867, + "max_y": 5291.676257234922, + "center": [ + 1704.6070414263804, + 5291.1163165597245 + ] + }, + "raw_value": "P-10151-15A-F1A-n", + "clean_value": "P-10151-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F5C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 1697.453767056363, + "min_y": 5294.79711547047, + "max_x": 1708.8765568303756, + "max_y": 5295.9169968208635, + "center": [ + 1703.1651619433692, + 5295.357056145667 + ] + }, + "raw_value": "P-10150-25A-F1A-n", + "clean_value": "P-10150-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1700.069806221477, + "min_y": 5280.521026155217, + "max_x": 1700.069812215879, + "max_y": 5281.085059680108, + "center": [ + 1700.069809218678, + 5280.803042917663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1700.069806221477, + 5281.085059680108 + ], + [ + 1700.069812215879, + 5280.521026155217 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1697.471859668577, + "min_y": 5280.520998544915, + "max_x": 1697.471865663272, + "max_y": 5281.085059680108, + "center": [ + 1697.4718626659246, + 5280.8030291125115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1697.471859668577, + 5281.085059680108 + ], + [ + 1697.471865663272, + 5280.520998544915 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "555F5F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2007.980905920724, + "min_y": 5205.280214648579, + "max_x": 2013.580312672691, + "max_y": 5206.21344910724, + "center": [ + 2010.7806092967076, + 5205.74683187791 + ] + }, + "raw_value": "2025.07.07", + "clean_value": "2025.07.07", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F60", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2025.270292252604, + "min_y": 5205.386260718108, + "max_x": 2029.7498176541776, + "max_y": 5206.319495176769, + "center": [ + 2027.5100549533909, + 5205.852877947438 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555F61", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2459.952304237658, + "min_y": 5148.322958828667, + "max_x": 2497.2068385699513, + "max_y": 5150.622621441771, + "center": [ + 2478.579571403805, + 5149.472790135219 + ] + }, + "raw_value": "PIPING & INSTRUMENT DIAGRAM", + "clean_value": "PIPING & INSTRUMENT DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2094.355083779731, + "min_y": 5135.882015483047, + "max_x": 2306.390234699339, + "max_y": 5135.882015483047, + "center": [ + 2200.372659239535, + 5135.882015483047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.390234699339, + 5135.882015483047 + ], + [ + 2094.355083779731, + 5135.882015483047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2241.203776579385, + "min_y": 5246.57526503306, + "max_x": 2241.818936279348, + "max_y": 5246.943586754748, + "center": [ + 2241.511356429366, + 5246.759425893904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2241.818936279348, + 5246.57526503306 + ], + [ + 2241.203776579385, + 5246.943586754748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5247.304485870304, + "max_x": 2240.601013889664, + "max_y": 5247.672807591992, + "center": [ + 2240.2934340396814, + 5247.488646731148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.601013889664, + 5247.304485870304 + ], + [ + 2239.985854189699, + 5247.672807591992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2241.818936279348, + "min_y": 5246.57526503306, + "max_x": 2241.818936279348, + "max_y": 5247.672807591992, + "center": [ + 2241.818936279348, + 5247.124036312525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2241.818936279348, + 5247.672807591992 + ], + [ + 2241.818936279348, + 5246.57526503306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5246.57526503306, + "max_x": 2239.985854189699, + "max_y": 5247.672807591992, + "center": [ + 2239.985854189699, + 5247.124036312525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5247.672807591992 + ], + [ + 2239.985854189699, + 5246.57526503306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2241.203776579383, + "min_y": 5247.304485870304, + "max_x": 2241.818936279348, + "max_y": 5247.672807591992, + "center": [ + 2241.511356429365, + 5247.488646731148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2241.818936279348, + 5247.672807591992 + ], + [ + 2241.203776579383, + 5247.304485870304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5246.57526503306, + "max_x": 2240.601013889667, + "max_y": 5246.943586754742, + "center": [ + 2240.293434039683, + 5246.759425893901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.601013889667, + 5246.943586754742 + ], + [ + 2239.985854189699, + 5246.57526503306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2242.247590003763, + "min_y": 5246.55497396627, + "max_x": 2242.247590003763, + "max_y": 5247.693098658777, + "center": [ + 2242.247590003763, + 5247.1240363125235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2242.247590003763, + 5247.693098658777 + ], + [ + 2242.247590003763, + 5246.55497396627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F6A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2240.757442453298, + "min_y": 5276.663423340707, + "max_x": 2259.828349355569, + "max_y": 5276.663423340866, + "center": [ + 2250.292895904434, + 5276.663423340786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.828349355569, + 5276.663423340866 + ], + [ + 2240.757442453298, + 5276.663423340707 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F6B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2240.551122181286, + "min_y": 5246.772763259287, + "max_x": 2241.2536682877644, + "max_y": 5247.4753093657655, + "center": [ + 2240.902395234525, + 5247.124036312526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.902395234525, + 5247.124036312526 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822339, + "min_y": 5249.222913588443, + "max_x": 2238.501112822342, + "max_y": 5273.280818647767, + "center": [ + 2238.5011128223405, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.501112822342, + 5273.280818647767 + ], + [ + 2238.501112822339, + 5249.222913588443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5241.0179659669, + "max_x": 2238.501112822339, + "max_y": 5248.456986440857, + "center": [ + 2238.5011128223377, + 5244.737476203878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.501112822339, + 5248.456986440857 + ], + [ + 2238.501112822337, + 5241.0179659669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.858707314562, + "min_y": 5249.222913588443, + "max_x": 2232.858707314562, + "max_y": 5273.280818647767, + "center": [ + 2232.858707314562, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.858707314562, + 5273.280818647767 + ], + [ + 2232.858707314562, + 5249.222913588443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.858707314562, + "min_y": 5240.978874573879, + "max_x": 2232.858707314562, + "max_y": 5248.456986440857, + "center": [ + 2232.858707314562, + 5244.717930507368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.858707314562, + 5248.456986440857 + ], + [ + 2232.858707314562, + 5240.978874573879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F71", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5241.099971277049, + "max_x": 2242.487410144125, + "max_y": 5241.099971277066, + "center": [ + 2241.236632166912, + 5241.099971277057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5241.099971277049 + ], + [ + 2242.487410144125, + 5241.099971277066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2233.664765244246, + "min_y": 5249.222913588443, + "max_x": 2233.664765244246, + "max_y": 5273.280818647767, + "center": [ + 2233.664765244246, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2233.664765244246, + 5249.222913588443 + ], + [ + 2233.664765244246, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2234.470823173927, + "min_y": 5249.222913588443, + "max_x": 2234.470823173927, + "max_y": 5273.280818647767, + "center": [ + 2234.470823173927, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2234.470823173927, + 5249.222913588443 + ], + [ + 2234.470823173927, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.276881103607, + "min_y": 5249.222913588443, + "max_x": 2235.276881103607, + "max_y": 5273.280818647767, + "center": [ + 2235.276881103607, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.276881103607, + 5249.222913588443 + ], + [ + 2235.276881103607, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2236.082939033294, + "min_y": 5249.222913588443, + "max_x": 2236.082939033294, + "max_y": 5273.280818647767, + "center": [ + 2236.082939033294, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.082939033294, + 5249.222913588443 + ], + [ + 2236.082939033294, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2236.888996962975, + "min_y": 5249.222913588443, + "max_x": 2236.888996962975, + "max_y": 5273.280818647767, + "center": [ + 2236.888996962975, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.888996962975, + 5249.222913588443 + ], + [ + 2236.888996962975, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2237.695054892656, + "min_y": 5249.222913588443, + "max_x": 2237.695054892656, + "max_y": 5273.280818647767, + "center": [ + 2237.695054892656, + 5261.251866118105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2237.695054892656, + 5249.222913588443 + ], + [ + 2237.695054892656, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.928974530627, + "min_y": 5250.429328501869, + "max_x": 2232.858707314562, + "max_y": 5250.429328501869, + "center": [ + 2231.8938409225943, + 5250.429328501869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.858707314562, + 5250.429328501869 + ], + [ + 2230.928974530627, + 5250.429328501869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.693338126556, + "min_y": 5238.30438151444, + "max_x": 2235.693338126556, + "max_y": 5239.749044556329, + "center": [ + 2235.693338126556, + 5239.026713035384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.693338126556, + 5239.749044556329 + ], + [ + 2235.693338126556, + 5238.30438151444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2235.331314331798, + "min_y": 5236.709970569352, + "max_x": 2236.0338604382764, + "max_y": 5237.41251667583, + "center": [ + 2235.682587385037, + 5237.061243622591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.682587385037, + 5237.061243622591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5238.30438151444, + "max_x": 2236.2313586645, + "max_y": 5238.30438151444, + "center": [ + 2235.682587385035, + 5238.30438151444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.13381610557, + 5238.30438151444 + ], + [ + 2236.2313586645, + 5238.30438151444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5235.818105730746, + "max_x": 2236.2313586645, + "max_y": 5235.818105730746, + "center": [ + 2235.682587385035, + 5235.818105730746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.13381610557, + 5235.818105730746 + ], + [ + 2236.2313586645, + 5235.818105730746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2231.59260049908, + "min_y": 5248.456986440857, + "max_x": 2239.772574271012, + "max_y": 5248.456986440857, + "center": [ + 2235.682587385046, + 5248.456986440857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.772574271012, + 5248.456986440857 + ], + [ + 2231.59260049908, + 5248.456986440857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2231.592600499078, + "min_y": 5249.222913588443, + "max_x": 2239.772574271009, + "max_y": 5249.222913588443, + "center": [ + 2235.6825873850435, + 5249.222913588443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.772574271009, + 5249.222913588443 + ], + [ + 2231.592600499078, + 5249.222913588443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.928974530627, + "min_y": 5249.880557222402, + "max_x": 2230.928974530627, + "max_y": 5250.978099781332, + "center": [ + 2230.928974530627, + 5250.429328501867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.928974530627, + 5249.880557222402 + ], + [ + 2230.928974530627, + 5250.978099781332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.928974530627, + "min_y": 5249.880557222402, + "max_x": 2230.928974530627, + "max_y": 5250.978099781332, + "center": [ + 2230.928974530627, + 5250.429328501867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.928974530627, + 5249.880557222402 + ], + [ + 2230.928974530627, + 5250.978099781332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5240.551199997586, + "max_x": 2239.985854189699, + "max_y": 5241.648742556522, + "center": [ + 2239.985854189699, + 5241.099971277054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5240.551199997586 + ], + [ + 2239.985854189699, + 5241.648742556522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.65925734268, + "min_y": 5240.551199997586, + "max_x": 2239.65925734268, + "max_y": 5241.648742556522, + "center": [ + 2239.65925734268, + 5241.099971277054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.65925734268, + 5240.551199997586 + ], + [ + 2239.65925734268, + 5241.648742556522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.50646745553, + "min_y": 5271.627833679247, + "max_x": 2240.436200239468, + "max_y": 5271.627833679247, + "center": [ + 2239.471333847499, + 5271.627833679247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.50646745553, + 5271.627833679247 + ], + [ + 2240.436200239468, + 5271.627833679247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5247.124036312526, + "max_x": 2239.65925734268, + "max_y": 5247.124036312526, + "center": [ + 2239.0801850825083, + 5247.124036312526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.501112822337, + 5247.124036312526 + ], + [ + 2239.65925734268, + 5247.124036312526 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2231.59260049908, + "min_y": 5273.280818647767, + "max_x": 2239.772574271012, + "max_y": 5273.280818647767, + "center": [ + 2235.682587385046, + 5273.280818647767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.772574271012, + 5273.280818647767 + ], + [ + 2231.59260049908, + 5273.280818647767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2231.592600499078, + "min_y": 5274.046745795346, + "max_x": 2239.772574271009, + "max_y": 5274.046745795346, + "center": [ + 2235.6825873850435, + 5274.046745795346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.772574271009, + 5274.046745795346 + ], + [ + 2231.592600499078, + 5274.046745795346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5236.144702577758, + "max_x": 2235.502137827256, + "max_y": 5236.759862277727, + "center": [ + 2235.317976966413, + 5236.452282427743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.502137827256, + 5236.759862277727 + ], + [ + 2235.13381610557, + 5236.144702577758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5236.144702577758, + "max_x": 2236.2313586645, + "max_y": 5236.144702577758, + "center": [ + 2235.682587385035, + 5236.144702577758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.13381610557, + 5236.144702577758 + ], + [ + 2236.2313586645, + 5236.144702577758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.863036942817, + "min_y": 5236.144702577758, + "max_x": 2236.2313586645, + "max_y": 5236.759862277727, + "center": [ + 2236.0471978036585, + 5236.452282427743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.2313586645, + 5236.144702577758 + ], + [ + 2235.863036942817, + 5236.759862277727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5237.362624967448, + "max_x": 2235.502137827259, + "max_y": 5237.977784667416, + "center": [ + 2235.317976966415, + 5237.670204817432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.502137827259, + 5237.362624967448 + ], + [ + 2235.13381610557, + 5237.977784667416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.13381610557, + "min_y": 5237.977784667416, + "max_x": 2236.2313586645, + "max_y": 5237.977784667416, + "center": [ + 2235.682587385035, + 5237.977784667416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2235.13381610557, + 5237.977784667416 + ], + [ + 2236.2313586645, + 5237.977784667416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.863036942815, + "min_y": 5237.362624967448, + "max_x": 2236.2313586645, + "max_y": 5237.977784667416, + "center": [ + 2236.0471978036576, + 5237.670204817432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.2313586645, + 5237.977784667416 + ], + [ + 2235.863036942815, + 5237.362624967448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.72587773665, + "min_y": 5249.47917809812, + "max_x": 2210.198484305001, + "max_y": 5249.47917809812, + "center": [ + 2207.9621810208255, + 5249.47917809812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.72587773665, + 5249.47917809812 + ], + [ + 2210.198484305001, + 5249.47917809812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5249.47917809812, + "max_x": 2209.603938320578, + "max_y": 5277.87610858004, + "center": [ + 2209.603938320578, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.603938320578, + 5249.47917809812 + ], + [ + 2209.603938320578, + 5277.87610858004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2206.320423721075, + "min_y": 5249.47917809812, + "max_x": 2206.320423721075, + "max_y": 5277.87610858004, + "center": [ + 2206.320423721075, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.320423721075, + 5249.47917809812 + ], + [ + 2206.320423721075, + 5277.87610858004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.72587773665, + "min_y": 5277.87610858004, + "max_x": 2210.198484305001, + "max_y": 5277.87610858004, + "center": [ + 2207.9621810208255, + 5277.87610858004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.72587773665, + 5277.87610858004 + ], + [ + 2210.198484305001, + 5277.87610858004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5248.361047215219, + "max_x": 2209.603938320578, + "max_y": 5249.47917809812, + "center": [ + 2209.603938320578, + 5248.9201126566695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.603938320578, + 5249.47917809812 + ], + [ + 2209.603938320578, + 5248.361047215219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2206.320423721072, + "min_y": 5248.327063442476, + "max_x": 2206.320423721075, + "max_y": 5249.47917809812, + "center": [ + 2206.3204237210734, + 5248.903120770298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.320423721072, + 5249.47917809812 + ], + [ + 2206.320423721075, + 5248.327063442476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.947235400677, + "min_y": 5249.47917809812, + "max_x": 2208.947235400677, + "max_y": 5277.87610858004, + "center": [ + 2208.947235400677, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.947235400677, + 5277.87610858004 + ], + [ + 2208.947235400677, + 5249.47917809812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.290532480774, + "min_y": 5249.47917809812, + "max_x": 2208.290532480774, + "max_y": 5277.87610858004, + "center": [ + 2208.290532480774, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.290532480774, + 5277.87610858004 + ], + [ + 2208.290532480774, + 5249.47917809812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.633829560874, + "min_y": 5249.47917809812, + "max_x": 2207.633829560874, + "max_y": 5277.87610858004, + "center": [ + 2207.633829560874, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.633829560874, + 5277.87610858004 + ], + [ + 2207.633829560874, + 5249.47917809812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2206.977126640976, + "min_y": 5249.47917809812, + "max_x": 2206.977126640976, + "max_y": 5277.87610858004, + "center": [ + 2206.977126640976, + 5263.6776433390805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.977126640976, + 5277.87610858004 + ], + [ + 2206.977126640976, + 5249.47917809812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5277.876108580049, + "max_x": 2209.603938320578, + "max_y": 5278.994239462953, + "center": [ + 2209.603938320578, + 5278.435174021501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.603938320578, + 5277.876108580049 + ], + [ + 2209.603938320578, + 5278.994239462953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2206.320423721072, + "min_y": 5277.87610858004, + "max_x": 2206.320423721075, + "max_y": 5279.028223235701, + "center": [ + 2206.3204237210734, + 5278.452165907871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.320423721072, + 5277.87610858004 + ], + [ + 2206.320423721075, + 5279.028223235701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.305236023501, + "min_y": 5251.898589215277, + "max_x": 2206.320423721075, + "max_y": 5251.898589215283, + "center": [ + 2205.8128298722877, + 5251.89858921528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.305236023501, + 5251.898589215283 + ], + [ + 2206.320423721075, + 5251.898589215277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.968962833842, + "min_y": 5246.158163427111, + "max_x": 2207.968962833844, + "max_y": 5247.257847298378, + "center": [ + 2207.968962833843, + 5246.708005362744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.968962833844, + 5247.257847298378 + ], + [ + 2207.968962833842, + 5246.158163427111 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555F9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.932846702887, + "min_y": 5277.774358286372, + "max_x": 2210.932846702887, + "max_y": 5279.201163612986, + "center": [ + 2210.932846702887, + 5278.48776094968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.932846702887, + 5279.201163612986 + ], + [ + 2210.932846702887, + 5277.774358286372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.619126018149, + "min_y": 5277.774358286372, + "max_x": 2210.619126018149, + "max_y": 5279.201163612986, + "center": [ + 2210.619126018149, + 5278.48776094968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.619126018149, + 5279.201163612986 + ], + [ + 2210.619126018149, + 5277.774358286372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555F9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320575, + "min_y": 5278.487760949676, + "max_x": 2210.619126018149, + "max_y": 5278.48776094968, + "center": [ + 2210.111532169362, + 5278.487760949678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.619126018149, + 5278.48776094968 + ], + [ + 2209.603938320575, + 5278.487760949676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.305236023498, + "min_y": 5247.954485973747, + "max_x": 2205.305236023498, + "max_y": 5249.381291300363, + "center": [ + 2205.305236023498, + 5248.6678886370555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.305236023498, + 5249.381291300363 + ], + [ + 2205.305236023498, + 5247.954485973747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2204.99151533876, + "min_y": 5247.954485973747, + "max_x": 2204.99151533876, + "max_y": 5249.381291300363, + "center": [ + 2204.99151533876, + 5248.6678886370555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.99151533876, + 5249.381291300363 + ], + [ + 2204.99151533876, + 5247.954485973747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.305236023498, + "min_y": 5248.667888637052, + "max_x": 2206.320423721072, + "max_y": 5248.667888637054, + "center": [ + 2205.812829872285, + 5248.667888637053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.305236023498, + 5248.667888637054 + ], + [ + 2206.320423721072, + 5248.667888637052 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2210.932846702887, + "min_y": 5278.48776094968, + "max_x": 2213.642077037838, + "max_y": 5278.48776094968, + "center": [ + 2212.2874618703627, + 5278.48776094968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.932846702887, + 5278.48776094968 + ], + [ + 2213.642077037838, + 5278.48776094968 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.65925734268, + "min_y": 5246.57526503306, + "max_x": 2239.65925734268, + "max_y": 5247.67280759199, + "center": [ + 2239.65925734268, + 5247.124036312525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.65925734268, + 5246.57526503306 + ], + [ + 2239.65925734268, + 5247.67280759199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2242.247590003763, + "min_y": 5247.124036312526, + "max_x": 2244.793695241873, + "max_y": 5247.124036312526, + "center": [ + 2243.520642622818, + 5247.124036312526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2242.247590003763, + 5247.124036312526 + ], + [ + 2244.793695241873, + 5247.124036312526 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FA6", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2174.236248039042, + "min_y": 5251.836911739554, + "max_x": 2190.807893770788, + "max_y": 5251.836911739554, + "center": [ + 2182.522070904915, + 5251.836911739554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.236248039042, + 5251.836911739554 + ], + [ + 2190.807893770788, + 5251.836911739554 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FA7", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2196.662000641023, + "min_y": 5251.926158047829, + "max_x": 2204.914396548391, + "max_y": 5251.926158047829, + "center": [ + 2200.788198594707, + 5251.926158047829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.662000641023, + 5251.926158047829 + ], + [ + 2204.914396548391, + 5251.926158047829 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5246.158163427111, + "max_x": 2208.5177341133, + "max_y": 5246.158163427111, + "center": [ + 2207.9689628338347, + 5246.158163427111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.5177341133, + 5246.158163427111 + ], + [ + 2207.42019155437, + 5246.158163427111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5243.740055801549, + "max_x": 2208.5177341133, + "max_y": 5243.740055801549, + "center": [ + 2207.9689628338347, + 5243.740055801549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.42019155437, + 5243.740055801549 + ], + [ + 2208.5177341133, + 5243.740055801549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2207.615052409874, + "min_y": 5244.63632549626, + "max_x": 2208.3175985163525, + "max_y": 5245.338871602738, + "center": [ + 2207.966325463113, + 5244.987598549499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.966325463113, + 5244.987598549499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5244.066652648566, + "max_x": 2207.789773674463, + "max_y": 5244.683917427495, + "center": [ + 2207.6049826144163, + 5244.37528503803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.789773674463, + 5244.683917427495 + ], + [ + 2207.42019155437, + 5244.066652648566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5244.066652648566, + "max_x": 2208.5177341133, + "max_y": 5244.066652648566, + "center": [ + 2207.9689628338347, + 5244.066652648566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.42019155437, + 5244.066652648566 + ], + [ + 2208.5177341133, + 5244.066652648566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.146775020891, + "min_y": 5244.066652648566, + "max_x": 2208.5177341133, + "max_y": 5244.686217204634, + "center": [ + 2208.3322545670953, + 5244.3764349266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.5177341133, + 5244.066652648566 + ], + [ + 2208.146775020891, + 5244.686217204634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5245.899734738213, + "max_x": 2208.5177341133, + "max_y": 5245.899734738213, + "center": [ + 2207.9689628338347, + 5245.899734738213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.42019155437, + 5245.899734738213 + ], + [ + 2208.5177341133, + 5245.899734738213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.149412391614, + "min_y": 5245.28457503825, + "max_x": 2208.5177341133, + "max_y": 5245.899734738213, + "center": [ + 2208.333573252457, + 5245.592154888232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.5177341133, + 5245.899734738213 + ], + [ + 2208.149412391614, + 5245.28457503825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.414916812923, + "min_y": 5245.28457503825, + "max_x": 2207.783238534609, + "max_y": 5245.899734738213, + "center": [ + 2207.5990776737663, + 5245.592154888232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.414916812923, + 5245.899734738213 + ], + [ + 2207.783238534609, + 5245.28457503825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2242.487410144125, + "min_y": 5241.099971277066, + "max_x": 2244.793695241873, + "max_y": 5241.099971277066, + "center": [ + 2243.6405526929993, + 5241.099971277066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2244.793695241873, + 5241.099971277066 + ], + [ + 2242.487410144125, + 5241.099971277066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.712107626644, + "min_y": 5257.738456388661, + "max_x": 2232.712107626644, + "max_y": 5260.746027523346, + "center": [ + 2232.712107626644, + 5259.242241956003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5257.738456388661 + ], + [ + 2232.712107626644, + 5260.746027523346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.203760276866, + "min_y": 5258.838906268326, + "max_x": 2232.060525461053, + "max_y": 5260.528833468151, + "center": [ + 2231.13214286896, + 5259.683869868239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.203760276866, + 5258.838906268326 + ], + [ + 2232.060525461053, + 5260.528833468151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.058964240069, + "min_y": 5257.955650443864, + "max_x": 2232.712107626644, + "max_y": 5257.955650443864, + "center": [ + 2231.3855359333566, + 5257.955650443864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5257.955650443864 + ], + [ + 2230.058964240069, + 5257.955650443864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.058964240069, + "min_y": 5258.116608846833, + "max_x": 2232.712107626644, + "max_y": 5258.116608846833, + "center": [ + 2231.3855359333566, + 5258.116608846833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5258.116608846833 + ], + [ + 2230.058964240069, + 5258.116608846833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.712107626644, + "min_y": 5257.738456388661, + "max_x": 2232.858707314562, + "max_y": 5257.738456388661, + "center": [ + 2232.785407470603, + 5257.738456388661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5257.738456388661 + ], + [ + 2232.858707314562, + 5257.738456388661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.058964240069, + "min_y": 5257.955650443864, + "max_x": 2230.058964240069, + "max_y": 5258.116608846833, + "center": [ + 2230.058964240069, + 5258.036129645348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.058964240069, + 5257.955650443864 + ], + [ + 2230.058964240069, + 5258.116608846833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.060525461053, + "min_y": 5260.528833468151, + "max_x": 2232.712107626644, + "max_y": 5260.528833468151, + "center": [ + 2232.386316543849, + 5260.528833468151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5260.528833468151 + ], + [ + 2232.060525461053, + 5260.528833468151 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.712107626644, + "min_y": 5260.746027523346, + "max_x": 2232.858707314562, + "max_y": 5260.746027523346, + "center": [ + 2232.785407470603, + 5260.746027523346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.712107626644, + 5260.746027523346 + ], + [ + 2232.858707314562, + 5260.746027523346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.215640554021, + "min_y": 5259.614067869002, + "max_x": 2231.055449670586, + "max_y": 5259.614067869002, + "center": [ + 2230.6355451123036, + 5259.614067869002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2231.055449670586, + 5259.614067869002 + ], + [ + 2230.215640554021, + 5259.614067869002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.215640554021, + "min_y": 5259.089945673411, + "max_x": 2230.215640554021, + "max_y": 5259.614067869002, + "center": [ + 2230.215640554021, + 5259.352006771207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.215640554021, + 5259.614067869002 + ], + [ + 2230.215640554021, + 5259.089945673411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.215640554021, + "min_y": 5259.089945673411, + "max_x": 2230.479583535565, + "max_y": 5259.089945673411, + "center": [ + 2230.347612044793, + 5259.089945673411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.215640554021, + 5259.089945673411 + ], + [ + 2230.479583535565, + 5259.089945673411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2230.295773156333, + "min_y": 5259.351406823593, + "max_x": 2230.478301599431, + "max_y": 5259.533935266691, + "center": [ + 2230.387037377882, + 5259.442671045142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.387037377882, + 5259.442671045142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.387037377882, + "min_y": 5259.237142274354, + "max_x": 2230.387037377882, + "max_y": 5259.64819981593, + "center": [ + 2230.387037377882, + 5259.442671045142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.387037377882, + 5259.237142274354 + ], + [ + 2230.387037377882, + 5259.64819981593 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.181508607091, + "min_y": 5259.442671045142, + "max_x": 2230.592566148673, + "max_y": 5259.442671045142, + "center": [ + 2230.387037377882, + 5259.442671045142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.181508607091, + 5259.442671045142 + ], + [ + 2230.592566148673, + 5259.442671045142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.203760276866, + "min_y": 5258.116608846833, + "max_x": 2230.203760276866, + "max_y": 5258.838906268326, + "center": [ + 2230.203760276866, + 5258.477757557579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.203760276866, + 5258.838906268326 + ], + [ + 2230.203760276866, + 5258.116608846833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.060525461053, + "min_y": 5260.528833468151, + "max_x": 2232.060525461053, + "max_y": 5260.687642517128, + "center": [ + 2232.060525461053, + 5260.608237992639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.060525461053, + 5260.528833468151 + ], + [ + 2232.060525461053, + 5260.687642517128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.060525461053, + "min_y": 5260.687642517128, + "max_x": 2232.712107626644, + "max_y": 5260.687642517128, + "center": [ + 2232.386316543849, + 5260.687642517128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.060525461053, + 5260.687642517128 + ], + [ + 2232.712107626644, + 5260.687642517128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2190.783979175877, + "min_y": 5229.413651600572, + "max_x": 2192.466730780193, + "max_y": 5231.096403204888, + "center": [ + 2191.625354978035, + 5230.25502740273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.625354978035, + 5230.25502740273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.783979175879, + "min_y": 5230.255025725087, + "max_x": 2192.466730780191, + "max_y": 5230.255029080369, + "center": [ + 2191.625354978035, + 5230.255027402728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.466730780191, + 5230.255025725087 + ], + [ + 2190.783979175879, + 5230.255029080369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.625353098341, + "min_y": 5229.312316088285, + "max_x": 2191.625354978035, + "max_y": 5230.25502740273, + "center": [ + 2191.6253540381877, + 5229.7836717455075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.625354978035, + 5230.25502740273 + ], + [ + 2191.625353098341, + 5229.312316088285 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.902017280678, + "min_y": 5228.486082430435, + "max_x": 2192.466727253052, + "max_y": 5228.82419932962, + "center": [ + 2192.184372266865, + 5228.655140880028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.466727253052, + 5228.486082430435 + ], + [ + 2191.902017280678, + 5228.82419932962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.783977657688, + "min_y": 5229.155502325583, + "max_x": 2191.348687630059, + "max_y": 5229.493619224767, + "center": [ + 2191.0663326438735, + 5229.324560775175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.348687630059, + 5229.155502325583 + ], + [ + 2190.783977657688, + 5229.493619224767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.466727253052, + "min_y": 5228.486082430435, + "max_x": 2192.466729261998, + "max_y": 5229.493615869481, + "center": [ + 2192.4667282575247, + 5228.989849149958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.466729261998, + 5229.493615869481 + ], + [ + 2192.466727253052, + 5228.486082430435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.783975648739, + "min_y": 5228.486085785715, + "max_x": 2190.783977657688, + "max_y": 5229.493619224767, + "center": [ + 2190.7839766532134, + 5228.989852505241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.783977657688, + 5229.493619224767 + ], + [ + 2190.783975648739, + 5228.486085785715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.902017941272, + "min_y": 5229.155501222283, + "max_x": 2192.466729261998, + "max_y": 5229.493615869481, + "center": [ + 2192.184373601635, + 5229.324558545883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.466729261998, + 5229.493615869481 + ], + [ + 2191.902017941272, + 5229.155501222283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.783975648739, + "min_y": 5228.486085785715, + "max_x": 2191.348686969468, + "max_y": 5228.824200432921, + "center": [ + 2191.0663313091036, + 5228.655143109318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.348686969468, + 5228.824200432921 + ], + [ + 2190.783975648739, + 5228.486085785715 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2183.519555027841, + "min_y": 5228.467469881895, + "max_x": 2183.519557111067, + "max_y": 5229.512257326515, + "center": [ + 2183.5195560694538, + 5228.989863604205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2183.519557111067, + 5229.512257326515 + ], + [ + 2183.519555027841, + 5228.467469881895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.860227183272, + "min_y": 5228.467454643045, + "max_x": 2192.8602292665, + "max_y": 5229.512242087659, + "center": [ + 2192.8602282248858, + 5228.989848365352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.8602292665, + 5229.512242087659 + ], + [ + 2192.860227183272, + 5228.467454643045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.625356655675, + "min_y": 5231.096403204883, + "max_x": 2191.625361854768, + "max_y": 5233.703869489422, + "center": [ + 2191.6253592552216, + 5232.4001363471525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.625356655675, + 5231.096403204883 + ], + [ + 2191.625361854768, + 5233.703869489422 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.275008803538, + "min_y": 5232.184848123971, + "max_x": 2191.975709655006, + "max_y": 5232.589396086328, + "center": [ + 2191.6253592292724, + 5232.3871221051495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.275008803538, + 5232.184848123971 + ], + [ + 2191.975709655006, + 5232.589396086328 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.275009461123, + "min_y": 5232.514642140576, + "max_x": 2191.975710312592, + "max_y": 5232.919190102933, + "center": [ + 2191.6253598868575, + 5232.716916121754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.275009461123, + 5232.514642140576 + ], + [ + 2191.975710312592, + 5232.919190102933 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2191.225528280724, + "min_y": 5234.010297249552, + "max_x": 2192.561194047983, + "max_y": 5234.752333786919, + "center": [ + 2191.8933611643533, + 5234.381315518236 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.104887102685, + "min_y": 5235.135701411292, + "max_x": 2193.14584231679, + "max_y": 5235.135707474728, + "center": [ + 2191.6253647097374, + 5235.13570444301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.104887102685, + 5235.135707474728 + ], + [ + 2193.14584231679, + 5235.135701411292 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2193.145839461821, + "min_y": 5233.703866457704, + "max_x": 2193.14584231679, + "max_y": 5235.135701411292, + "center": [ + 2193.145840889306, + 5234.419783934498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.14584231679, + 5235.135701411292 + ], + [ + 2193.145839461821, + 5233.703866457704 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.104884247715, + "min_y": 5233.703866457704, + "max_x": 2193.145839461821, + "max_y": 5233.703872521142, + "center": [ + 2191.625361854768, + 5233.703869489424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.145839461821, + 5233.703866457704 + ], + [ + 2190.104884247715, + 5233.703872521142 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.104884247715, + "min_y": 5233.703872521142, + "max_x": 2190.104887102685, + "max_y": 5235.135707474728, + "center": [ + 2190.1048856752, + 5234.419789997935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.104884247715, + 5233.703872521142 + ], + [ + 2190.104887102685, + 5235.135707474728 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FDA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2180.664258995944, + "min_y": 5228.585217851943, + "max_x": 2182.4847219676153, + "max_y": 5229.343744090139, + "center": [ + 2181.5744904817793, + 5228.964480971041 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FDB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.2979817030073, + "min_y": 5230.881300261185, + "max_x": 2184.543537557057, + "max_y": 5236.126856115235, + "center": [ + 2181.920759630032, + 5233.50407818821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920759630032, + 5233.50407818821 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2181.920753426587, + "min_y": 5229.793413353054, + "max_x": 2181.920755597618, + "max_y": 5230.882236784204, + "center": [ + 2181.9207545121026, + 5230.337825068629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920753426587, + 5229.793413353054 + ], + [ + 2181.920755597618, + 5230.882236784204 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "555FDD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.297989265431, + "min_y": 5236.174679231371, + "max_x": 2184.5435451194808, + "max_y": 5241.42023508542, + "center": [ + 2181.920767192456, + 5238.797457158395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920767192456, + 5238.797457158395 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FDE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.250171474286, + "min_y": 5241.468058201544, + "max_x": 2181.920772517433, + "max_y": 5241.468063526517, + "center": [ + 2180.5854719958597, + 5241.46806086403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920772517433, + 5241.468058201544 + ], + [ + 2179.250171474286, + 5241.468063526517 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FDF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.250166149312, + "min_y": 5238.797462483378, + "max_x": 2179.250171474286, + "max_y": 5241.468063526517, + "center": [ + 2179.250168811799, + 5240.132763004947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.250166149312, + 5238.797462483378 + ], + [ + 2179.250171474286, + 5241.468063526517 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2181.920772517433, + "min_y": 5241.468052876562, + "max_x": 2184.591373560582, + "max_y": 5241.468058201544, + "center": [ + 2183.2560730390073, + 5241.468055539053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920772517433, + 5241.468058201544 + ], + [ + 2184.591373560582, + 5241.468052876562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2184.591368235604, + "min_y": 5238.797451833421, + "max_x": 2184.591373560582, + "max_y": 5241.468052876562, + "center": [ + 2184.591370898093, + 5240.132752354992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.591368235604, + 5238.797451833421 + ], + [ + 2184.591373560582, + 5241.468052876562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.250160824335, + "min_y": 5236.126856115233, + "max_x": 2181.920761867482, + "max_y": 5236.12686144022, + "center": [ + 2180.5854613459087, + 5236.126858777727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920761867482, + 5236.126856115233 + ], + [ + 2179.250160824335, + 5236.12686144022 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.250160824335, + "min_y": 5236.12686144022, + "max_x": 2179.250166149312, + "max_y": 5238.797462483368, + "center": [ + 2179.2501634868236, + 5237.462161961794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.250166149312, + 5238.797462483368 + ], + [ + 2179.250160824335, + 5236.12686144022 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2181.920761867482, + "min_y": 5236.126850790272, + "max_x": 2184.59136291063, + "max_y": 5236.126856115233, + "center": [ + 2183.256062389056, + 5236.126853452753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2181.920761867482, + 5236.126856115233 + ], + [ + 2184.59136291063, + 5236.126850790272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2184.59136291063, + "min_y": 5236.126850790272, + "max_x": 2184.591368235604, + "max_y": 5238.797451833409, + "center": [ + 2184.591365573117, + 5237.46215131184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.591368235604, + 5238.797451833409 + ], + [ + 2184.59136291063, + 5236.126850790272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2183.519554467112, + "min_y": 5228.186251241369, + "max_x": 2183.519557671667, + "max_y": 5229.793410165156, + "center": [ + 2183.519556069389, + 5228.989830703263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2183.519557671667, + 5229.793410165156 + ], + [ + 2183.519554467112, + 5228.186251241369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2180.321945976952, + "min_y": 5228.186251241369, + "max_x": 2183.519554467112, + "max_y": 5228.186257617158, + "center": [ + 2181.920750222032, + 5228.1862544292635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2183.519554467112, + 5228.186251241369 + ], + [ + 2180.321945976952, + 5228.186257617158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2180.321945976952, + "min_y": 5228.186257617158, + "max_x": 2180.321949181507, + "max_y": 5229.793416540949, + "center": [ + 2180.3219475792293, + 5228.989837079053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2180.321945976952, + 5228.186257617158 + ], + [ + 2180.321949181507, + 5229.793416540949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2180.321949181507, + "min_y": 5229.793410165156, + "max_x": 2183.519557671667, + "max_y": 5229.793416540949, + "center": [ + 2181.920753426587, + 5229.7934133530525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2180.321949181507, + 5229.793416540949 + ], + [ + 2183.519557671667, + 5229.793410165156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FEA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2179.158574641613, + "min_y": 5228.989793296984, + "max_x": 2180.321947579185, + "max_y": 5228.989814606133, + "center": [ + 2179.740261110399, + 5228.989803951559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2180.321947579185, + 5228.989814606133 + ], + [ + 2179.158574641613, + 5228.989793296984 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FEB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2178.419577458461, + "min_y": 5228.989785363867, + "max_x": 2178.764976454106, + "max_y": 5228.989786087566, + "center": [ + 2178.5922769562835, + 5228.9897857257165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.764976454106, + 5228.989786087566 + ], + [ + 2178.419577458461, + 5228.989785363867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.390377424109, + "min_y": 5228.467459567738, + "max_x": 2190.390379507337, + "max_y": 5229.512247012358, + "center": [ + 2190.390378465723, + 5228.989853290048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.390379507337, + 5229.512247012358 + ], + [ + 2190.390377424109, + 5228.467459567738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FED", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2187.838399463307, + "min_y": 5228.989818879747, + "max_x": 2190.390378465656, + "max_y": 5228.989819686459, + "center": [ + 2189.1143889644813, + 5228.989819283102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.390378465656, + 5228.989819686459 + ], + [ + 2187.838399463307, + 5228.989818879747 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FEE", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2191.625364709738, + "min_y": 5235.135704443012, + "max_x": 2191.625367179135, + "max_y": 5238.797452411242, + "center": [ + 2191.6253659444365, + 5236.966578427127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.625364709738, + 5235.135704443012 + ], + [ + 2191.625367179135, + 5238.797452411242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FEF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2194.767414290945, + "min_y": 5235.285346698939, + "max_x": 2197.1186419780506, + "max_y": 5236.591584302887, + "center": [ + 2195.9430281344976, + 5235.938465500913 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FF0", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2193.5785790605723, + "min_y": 5232.1366039452405, + "max_x": 2198.824134914622, + "max_y": 5237.38215979929, + "center": [ + 2196.201356987597, + 5234.759381872265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.201356987597, + 5234.759381872265 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FF1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2180.138178137246, + "min_y": 5239.172073830953, + "max_x": 2183.2731483867205, + "max_y": 5240.478311434901, + "center": [ + 2181.7056632619833, + 5239.825192632927 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FF2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.297989265438, + "min_y": 5238.797451928783, + "max_x": 2184.543545119474, + "max_y": 5238.797462388021, + "center": [ + 2181.920767192456, + 5238.797457158402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.543545119474, + 5238.797451928783 + ], + [ + 2179.297989265438, + 5238.797462388021 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FF3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2180.824788559757, + "min_y": 5233.843425076397, + "max_x": 2183.1760162468627, + "max_y": 5235.149662680345, + "center": [ + 2182.0004024033096, + 5234.496543878371 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "555FF4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2183.519556069361, + "min_y": 5228.989815886926, + "max_x": 2185.368549704127, + "max_y": 5228.98981610345, + "center": [ + 2184.444052886744, + 5228.989815995188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2185.368549704127, + 5228.989815886926 + ], + [ + 2183.519556069361, + 5228.98981610345 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "555FF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.467573419608, + "min_y": 5228.467407302237, + "max_x": 2198.467575502836, + "max_y": 5229.512194746849, + "center": [ + 2198.4675744612223, + 5228.989801024543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.467575502836, + 5229.512194746849 + ], + [ + 2198.467573419608, + 5228.467407302237 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.997723660444, + "min_y": 5228.467412226929, + "max_x": 2195.997725743673, + "max_y": 5229.512199671551, + "center": [ + 2195.997724702059, + 5228.98980594924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.997725743673, + 5229.512199671551 + ], + [ + 2195.997723660444, + 5228.467412226929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.391225673895, + "min_y": 5229.155454984976, + "max_x": 2196.955935646267, + "max_y": 5229.49357188416, + "center": [ + 2196.673580660081, + 5229.324513434568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.391225673895, + 5229.49357188416 + ], + [ + 2196.955935646267, + 5229.155454984976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.509265296888, + "min_y": 5228.486035089829, + "max_x": 2198.07397526926, + "max_y": 5228.824151989008, + "center": [ + 2197.791620283074, + 5228.655093539419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.509265296888, + 5228.824151989008 + ], + [ + 2198.07397526926, + 5228.486035089829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.07397526926, + "min_y": 5228.486035089829, + "max_x": 2198.073977278206, + "max_y": 5229.493568528874, + "center": [ + 2198.073976273733, + 5228.989801809352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.073977278206, + 5229.493568528874 + ], + [ + 2198.07397526926, + 5228.486035089829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.391223664946, + "min_y": 5228.486038445109, + "max_x": 2196.391225673895, + "max_y": 5229.49357188416, + "center": [ + 2196.391224669421, + 5228.989805164634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.391225673895, + 5229.49357188416 + ], + [ + 2196.391223664946, + 5228.486038445109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.391223664946, + "min_y": 5228.486038445109, + "max_x": 2196.955934985675, + "max_y": 5228.824153092313, + "center": [ + 2196.6735793253106, + 5228.655095768711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.391223664946, + 5228.486038445109 + ], + [ + 2196.955934985675, + 5228.824153092313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.50926595748, + "min_y": 5229.155453881675, + "max_x": 2198.073977278206, + "max_y": 5229.493568528874, + "center": [ + 2197.791621617843, + 5229.324511205275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.50926595748, + 5229.155453881675 + ], + [ + 2198.073977278206, + 5229.493568528874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.880188519094, + "min_y": 5228.486049369063, + "max_x": 2187.444898491465, + "max_y": 5228.824166268253, + "center": [ + 2187.1625435052797, + 5228.6551078186585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.444898491465, + 5228.486049369063 + ], + [ + 2186.880188519094, + 5228.824166268253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.762148896098, + "min_y": 5229.155469264208, + "max_x": 2186.326858868472, + "max_y": 5229.493586163393, + "center": [ + 2186.044503882285, + 5229.3245277138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.326858868472, + 5229.155469264208 + ], + [ + 2185.762148896098, + 5229.493586163393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "555FFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2187.444898491465, + "min_y": 5228.486049369063, + "max_x": 2187.444900500409, + "max_y": 5229.493582808111, + "center": [ + 2187.444899495937, + 5228.989816088587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.444900500409, + 5229.493582808111 + ], + [ + 2187.444898491465, + 5228.486049369063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556000", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.762146887152, + "min_y": 5228.486052724346, + "max_x": 2185.762148896098, + "max_y": 5229.493586163393, + "center": [ + 2185.7621478916253, + 5228.98981944387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2185.762148896098, + 5229.493586163393 + ], + [ + 2185.762146887152, + 5228.486052724346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556001", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.880189179682, + "min_y": 5229.155468160914, + "max_x": 2187.444900500409, + "max_y": 5229.493582808111, + "center": [ + 2187.1625448400455, + 5229.324525484512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.444900500409, + 5229.493582808111 + ], + [ + 2186.880189179682, + 5229.155468160914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556002", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.762146887152, + "min_y": 5228.486052724346, + "max_x": 2186.32685820788, + "max_y": 5228.824167371545, + "center": [ + 2186.044502547516, + 5228.6551100479455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.32685820788, + 5228.824167371545 + ], + [ + 2185.762146887152, + 5228.486052724346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556003", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2187.838398421686, + "min_y": 5228.467421581669, + "max_x": 2187.838400504913, + "max_y": 5229.512209026288, + "center": [ + 2187.8383994632995, + 5228.9898153039785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.838400504913, + 5229.512209026288 + ], + [ + 2187.838398421686, + 5228.467421581669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556004", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.368548662522, + "min_y": 5228.467426506367, + "max_x": 2185.368550745747, + "max_y": 5229.512213950982, + "center": [ + 2185.3685497041342, + 5228.989820228675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2185.368550745747, + 5229.512213950982 + ], + [ + 2185.368548662522, + 5228.467426506367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556005", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2184.973360454569, + "min_y": 5223.333629847886, + "max_x": 2184.973371732579, + "max_y": 5228.989817453489, + "center": [ + 2184.973366093574, + 5226.161723650688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.973371732579, + 5228.989817453489 + ], + [ + 2184.973360454569, + 5223.333629847886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556006", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2184.973360454569, + "min_y": 5223.33362048366, + "max_x": 2190.401056717754, + "max_y": 5223.333629847886, + "center": [ + 2187.6872085861614, + 5223.333625165773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.973360454569, + 5223.333629847886 + ], + [ + 2190.401056717754, + 5223.33362048366 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556007", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2192.860228224782, + "min_y": 5228.989796484857, + "max_x": 2195.99772470205, + "max_y": 5228.989801755004, + "center": [ + 2194.428976463416, + 5228.9897991199305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.99772470205, + 5228.989801755004 + ], + [ + 2192.860228224782, + 5228.989796484857 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556008", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.912695532713, + "min_y": 5222.829849624048, + "max_x": 2192.477405505084, + "max_y": 5223.167966523238, + "center": [ + 2192.1950505188984, + 5222.998908073643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.477405505084, + 5222.829849624048 + ], + [ + 2191.912695532713, + 5223.167966523238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556009", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.79465590972, + "min_y": 5223.49926951919, + "max_x": 2191.359365882092, + "max_y": 5223.83738641838, + "center": [ + 2191.077010895906, + 5223.668327968786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.359365882092, + 5223.49926951919 + ], + [ + 2190.79465590972, + 5223.83738641838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.477405505084, + "min_y": 5222.829849624048, + "max_x": 2192.477407514031, + "max_y": 5223.837383063099, + "center": [ + 2192.477406509557, + 5223.333616343573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.477407514031, + 5223.837383063099 + ], + [ + 2192.477405505084, + 5222.829849624048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.794653900771, + "min_y": 5222.829852979323, + "max_x": 2190.79465590972, + "max_y": 5223.83738641838, + "center": [ + 2190.794654905246, + 5223.333619698851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.79465590972, + 5223.83738641838 + ], + [ + 2190.794653900771, + 5222.829852979323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.912696193305, + "min_y": 5223.499268415889, + "max_x": 2192.477407514031, + "max_y": 5223.837383063099, + "center": [ + 2192.195051853668, + 5223.668325739494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.477407514031, + 5223.837383063099 + ], + [ + 2191.912696193305, + 5223.499268415889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.794653900771, + "min_y": 5222.829852979323, + "max_x": 2191.359365221499, + "max_y": 5223.167967626533, + "center": [ + 2191.077009561135, + 5222.9989103029275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.359365221499, + 5223.167967626533 + ], + [ + 2190.794653900771, + 5222.829852979323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.870905435305, + "min_y": 5222.811221836657, + "max_x": 2192.870907518533, + "max_y": 5223.85600928127, + "center": [ + 2192.870906476919, + 5223.333615558964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.870907518533, + 5223.85600928127 + ], + [ + 2192.870905435305, + 5222.811221836657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55600F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.401055676141, + "min_y": 5222.811226761349, + "max_x": 2190.40105775937, + "max_y": 5223.856014205966, + "center": [ + 2190.4010567177556, + 5223.333620483658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.40105775937, + 5223.856014205966 + ], + [ + 2190.401055676141, + 5222.811226761349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556010", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2198.84540037736, + "min_y": 5223.333606194542, + "max_x": 2198.845411655421, + "max_y": 5228.989818494434, + "center": [ + 2198.8454060163904, + 5226.1617123444885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.84540037736, + 5223.333606194542 + ], + [ + 2198.845411655421, + 5228.989818494434 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556011", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2192.87090647692, + "min_y": 5223.333606194542, + "max_x": 2198.84540037736, + "max_y": 5223.333615558967, + "center": [ + 2195.8581534271398, + 5223.333610876754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.87090647692, + 5223.333615558967 + ], + [ + 2198.84540037736, + 5223.333606194542 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556012", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2168.35741628145, + "min_y": 5238.653672804033, + "max_x": 2169.770905346779, + "max_y": 5238.653675909921, + "center": [ + 2169.064160814114, + 5238.653674356977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.770905346779, + 5238.653672804033 + ], + [ + 2168.35741628145, + 5238.653675909921 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556013", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.108557414198, + "min_y": 5228.193610665011, + "max_x": 2174.914583940168, + "max_y": 5228.194213281972, + "center": [ + 2174.511570677183, + 5228.193911973492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.914583940168, + 5228.194213281972 + ], + [ + 2174.108557414198, + 5228.193610665011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556014", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2174.511570677184, + "min_y": 5228.19391197349, + "max_x": 2174.511570677184, + "max_y": 5228.989819679593, + "center": [ + 2174.511570677184, + 5228.591865826542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.511570677184, + 5228.19391197349 + ], + [ + 2174.511570677184, + 5228.989819679593 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556015", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.109885100898, + "min_y": 5226.417771657228, + "max_x": 2174.915911626867, + "max_y": 5226.418374274186, + "center": [ + 2174.5128983638824, + 5226.418072965707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.109885100898, + 5226.417771657228 + ], + [ + 2174.915911626867, + 5226.418374274186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556016", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2174.252304315161, + "min_y": 5227.076284780844, + "max_x": 2174.768248732253, + "max_y": 5227.592229197935, + "center": [ + 2174.510276523707, + 5227.334256989389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.510276523707, + 5227.334256989389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556017", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.109705779561, + "min_y": 5226.657621784092, + "max_x": 2174.380785033552, + "max_y": 5227.11113905116, + "center": [ + 2174.2452454065565, + 5226.884380417626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.380785033552, + 5227.11113905116 + ], + [ + 2174.109705779561, + 5226.657621784092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556018", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.109705779561, + "min_y": 5226.657621784092, + "max_x": 2174.91573230553, + "max_y": 5226.658224401048, + "center": [ + 2174.5127190425455, + 5226.65792309257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.109705779561, + 5226.657621784092 + ], + [ + 2174.91573230553, + 5226.658224401048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.642962720242, + "min_y": 5226.658224401048, + "max_x": 2174.91573230553, + "max_y": 5227.113024004435, + "center": [ + 2174.779347512886, + 5226.885624202741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.91573230553, + 5226.658224401048 + ], + [ + 2174.642962720242, + 5227.113024004435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.108699307109, + "min_y": 5227.552256531136, + "max_x": 2174.379529609787, + "max_y": 5228.003822691302, + "center": [ + 2174.244114458448, + 5227.778039611219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.379529609787, + 5227.552256531136 + ], + [ + 2174.108699307109, + 5228.003822691302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.108699307109, + "min_y": 5228.003822691302, + "max_x": 2174.914725833078, + "max_y": 5228.004425308262, + "center": [ + 2174.5117125700936, + 5228.004123999783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.108699307109, + 5228.003822691302 + ], + [ + 2174.914725833078, + 5228.004425308262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.64457104984, + "min_y": 5227.552454686481, + "max_x": 2174.914725833078, + "max_y": 5228.004425308262, + "center": [ + 2174.7796484414594, + 5227.778439997372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.914725833078, + 5228.004425308262 + ], + [ + 2174.64457104984, + 5227.552454686481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.042171425619, + "min_y": 5235.261183544168, + "max_x": 2162.042171425619, + "max_y": 5239.553758498958, + "center": [ + 2162.042171425619, + 5237.407471021563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.042171425619, + 5239.553758498958 + ], + [ + 2162.042171425619, + 5235.261183544168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.719848731088, + "min_y": 5235.261183544168, + "max_x": 2164.719848731088, + "max_y": 5239.553758498958, + "center": [ + 2164.719848731088, + 5237.407471021563 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.719848731088, + 5235.261183544168 + ], + [ + 2164.719848731088, + 5239.553758498958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55601F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2161.728843515261, + "min_y": 5239.553758498958, + "max_x": 2165.033176641445, + "max_y": 5239.553758498958, + "center": [ + 2163.381010078353, + 5239.553758498958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2161.728843515261, + 5239.553758498958 + ], + [ + 2165.033176641445, + 5239.553758498958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556021", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.042171425619, + "min_y": 5238.204778320199, + "max_x": 2163.907673960391, + "max_y": 5238.204778320199, + "center": [ + 2162.9749226930053, + 5238.204778320199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.042171425619, + 5238.204778320199 + ], + [ + 2163.907673960391, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.907673960391, + "min_y": 5238.204778320199, + "max_x": 2164.719848731088, + "max_y": 5238.204778320199, + "center": [ + 2164.3137613457393, + 5238.204778320199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.907673960391, + 5238.204778320199 + ], + [ + 2164.719848731088, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.646729570525, + "max_x": 2162.749013419913, + "max_y": 5238.204778320199, + "center": [ + 2162.749013419913, + 5236.925753945362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5238.204778320199 + ], + [ + 2162.749013419913, + 5235.646729570525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556024", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.646729570525, + "max_x": 2164.013006736798, + "max_y": 5235.646729570525, + "center": [ + 2163.3810100783558, + 5235.646729570525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5235.646729570525 + ], + [ + 2164.013006736798, + 5235.646729570525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556025", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.013006736798, + "min_y": 5235.646729570525, + "max_x": 2164.013006736798, + "max_y": 5238.204778320199, + "center": [ + 2164.013006736798, + 5236.925753945362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5235.646729570525 + ], + [ + 2164.013006736798, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556026", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2198.467574461272, + "min_y": 5228.989825779135, + "max_x": 2200.080505741449, + "max_y": 5228.989825779135, + "center": [ + 2199.2740401013607, + 5228.989825779135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.467574461272, + 5228.989825779135 + ], + [ + 2200.080505741449, + 5228.989825779135 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556027", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5237.654855025811, + "max_x": 2163.298936714297, + "max_y": 5238.204778320199, + "center": [ + 2163.023975067105, + 5237.929816673005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5237.654855025811 + ], + [ + 2163.298936714297, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556028", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5237.10151794107, + "max_x": 2163.852273799041, + "max_y": 5238.204778320199, + "center": [ + 2163.300643609477, + 5237.653148130634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5237.10151794107 + ], + [ + 2163.852273799041, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556029", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5236.548180856319, + "max_x": 2164.013006736798, + "max_y": 5237.812174173209, + "center": [ + 2163.3810100783558, + 5237.180177514764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5236.548180856319 + ], + [ + 2164.013006736798, + 5237.812174173209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.994843771578, + "max_x": 2164.013006736798, + "max_y": 5237.258837088464, + "center": [ + 2163.3810100783558, + 5236.626840430021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5235.994843771578 + ], + [ + 2164.013006736798, + 5237.258837088464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.954236303599, + "min_y": 5235.646729570525, + "max_x": 2164.013006736798, + "max_y": 5236.705500003722, + "center": [ + 2163.4836215201985, + 5236.176114787124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.954236303599, + 5235.646729570525 + ], + [ + 2164.013006736798, + 5236.705500003722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.507573388343, + "min_y": 5235.646729570525, + "max_x": 2164.013006736798, + "max_y": 5236.152162918974, + "center": [ + 2163.7602900625707, + 5235.89944624475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.507573388343, + 5235.646729570525 + ], + [ + 2164.013006736798, + 5236.152162918974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.646729570525, + "max_x": 2163.065080556276, + "max_y": 5235.962796706888, + "center": [ + 2162.9070469880944, + 5235.804763138707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.065080556276, + 5235.646729570525 + ], + [ + 2162.749013419913, + 5235.962796706888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.646729570525, + "max_x": 2163.618417641016, + "max_y": 5236.516133791631, + "center": [ + 2163.1837155304647, + 5236.081431681077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.618417641016, + 5235.646729570525 + ], + [ + 2162.749013419913, + 5236.516133791631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55602F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5235.805477559486, + "max_x": 2164.013006736798, + "max_y": 5237.069470876376, + "center": [ + 2163.3810100783558, + 5236.437474217931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5235.805477559486 + ], + [ + 2162.749013419913, + 5237.069470876376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556030", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5236.358814644232, + "max_x": 2164.013006736798, + "max_y": 5237.622807961116, + "center": [ + 2163.3810100783558, + 5236.990811302674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5236.358814644232 + ], + [ + 2162.749013419913, + 5237.622807961116 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556031", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5236.912151728975, + "max_x": 2164.013006736798, + "max_y": 5238.176145045857, + "center": [ + 2163.3810100783558, + 5237.5441483874165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5236.912151728975 + ], + [ + 2162.749013419913, + 5238.176145045857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556032", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.273717230322, + "min_y": 5237.465488813718, + "max_x": 2164.013006736798, + "max_y": 5238.204778320199, + "center": [ + 2163.6433619835598, + 5237.835133566959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5237.465488813718 + ], + [ + 2163.273717230322, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556033", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.827054315063, + "min_y": 5238.018825898461, + "max_x": 2164.013006736798, + "max_y": 5238.204778320199, + "center": [ + 2163.9200305259305, + 5238.11180210933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5238.018825898461 + ], + [ + 2163.827054315063, + 5238.204778320199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556034", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.028901995623, + "min_y": 5233.543178354143, + "max_x": 2163.734175205849, + "max_y": 5233.543705643978, + "center": [ + 2163.3815386007363, + 5233.54344199906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.734175205849, + 5233.543705643978 + ], + [ + 2163.028901995623, + 5233.543178354143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556035", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381010078353, + "min_y": 5233.543441999059, + "max_x": 2163.381538600733, + "max_y": 5234.250363791699, + "center": [ + 2163.381274339543, + 5233.896902895379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381538600733, + 5233.543441999059 + ], + [ + 2163.381010078353, + 5234.250363791699 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556036", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.030063721487, + "min_y": 5231.989319222326, + "max_x": 2163.73533693171, + "max_y": 5231.989846512171, + "center": [ + 2163.3827003265988, + 5231.989582867249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.030063721487, + 5231.989319222326 + ], + [ + 2163.73533693171, + 5231.989846512171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556037", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2163.1546805339653, + "min_y": 5232.565518205488, + "max_x": 2163.606131898921, + "max_y": 5233.0169695704435, + "center": [ + 2163.380406216443, + 5232.791243887966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.380406216443, + 5232.791243887966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556038", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381005570524, + "min_y": 5231.31434200243, + "max_x": 2163.381510406061, + "max_y": 5231.989581600182, + "center": [ + 2163.3812579882924, + 5231.651961801306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381005570524, + 5231.989581600182 + ], + [ + 2163.381510406061, + 5231.31434200243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556039", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029906815317, + "min_y": 5232.199188083335, + "max_x": 2163.267101162559, + "max_y": 5232.596015692018, + "center": [ + 2163.148503988938, + 5232.3976018876765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.267101162559, + 5232.596015692018 + ], + [ + 2163.029906815317, + 5232.199188083335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029906815317, + "min_y": 5232.199188083335, + "max_x": 2163.73518002554, + "max_y": 5232.19971537317, + "center": [ + 2163.3825434204286, + 5232.199451728253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.029906815317, + 5232.199188083335 + ], + [ + 2163.73518002554, + 5232.19971537317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.49650663841, + "min_y": 5232.19971537317, + "max_x": 2163.73518002554, + "max_y": 5232.597665026133, + "center": [ + 2163.615843331975, + 5232.398690199651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.73518002554, + 5232.19971537317 + ], + [ + 2163.49650663841, + 5232.597665026133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029026151922, + "min_y": 5232.981993486996, + "max_x": 2163.266002666766, + "max_y": 5233.377113877148, + "center": [ + 2163.147514409344, + 5233.179553682072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.266002666766, + 5232.981993486996 + ], + [ + 2163.029026151922, + 5233.377113877148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029026151922, + "min_y": 5233.377113877148, + "max_x": 2163.734299362147, + "max_y": 5233.377641166981, + "center": [ + 2163.3816627570345, + 5233.377377522065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.029026151922, + 5233.377113877148 + ], + [ + 2163.734299362147, + 5233.377641166981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.49791392681, + "min_y": 5232.982166872922, + "max_x": 2163.734299362147, + "max_y": 5233.377641166981, + "center": [ + 2163.6161066444784, + 5233.179904019951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.734299362147, + 5233.377641166981 + ], + [ + 2163.49791392681, + 5232.982166872922 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55603F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.746130202359, + "min_y": 5231.664576541476, + "max_x": 2183.664843014202, + "max_y": 5232.970814145424, + "center": [ + 2181.7054866082804, + 5232.31769534345 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556040", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2194.026727559918, + "min_y": 5232.919880225513, + "max_x": 2197.945440371761, + "max_y": 5234.226117829461, + "center": [ + 2195.9860839658395, + 5233.572999027487 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556041", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5238.647789582393, + "max_x": 2162.042171425619, + "max_y": 5238.647789582393, + "center": [ + 2159.7544950558395, + 5238.647789582393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.46681868606, + 5238.647789582393 + ], + [ + 2162.042171425619, + 5238.647789582393 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556042", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2177.063160700489, + "min_y": 5225.11687875076, + "max_x": 2177.063160700489, + "max_y": 5228.989825779135, + "center": [ + 2177.063160700489, + 5227.0533522649475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.063160700489, + 5228.989825779135 + ], + [ + 2177.063160700489, + 5225.11687875076 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "556043", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.228811646823, + "min_y": 5224.158668136852, + "max_x": 2177.566927420014, + "max_y": 5224.723378783398, + "center": [ + 2177.3978695334185, + 5224.4410234601255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.566927420014, + 5224.723378783398 + ], + [ + 2177.228811646823, + 5224.158668136852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556044", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.559393980966, + "min_y": 5223.040627179083, + "max_x": 2176.89750975416, + "max_y": 5223.605337825635, + "center": [ + 2176.7284518675633, + 5223.322982502359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.89750975416, + 5223.605337825635 + ], + [ + 2176.559393980966, + 5223.040627179083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556045", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.559393980966, + "min_y": 5224.723378783398, + "max_x": 2177.566927420014, + "max_y": 5224.723378783398, + "center": [ + 2177.06316070049, + 5224.723378783398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.559393980966, + 5224.723378783398 + ], + [ + 2177.566927420014, + 5224.723378783398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556046", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.559393980966, + "min_y": 5223.040627179083, + "max_x": 2177.566927420014, + "max_y": 5223.040627179083, + "center": [ + 2177.06316070049, + 5223.040627179083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.559393980966, + 5223.040627179083 + ], + [ + 2177.566927420014, + 5223.040627179083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556047", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.559393980966, + "min_y": 5224.158668136852, + "max_x": 2176.89750975416, + "max_y": 5224.723378783398, + "center": [ + 2176.7284518675633, + 5224.4410234601255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.559393980966, + 5224.723378783398 + ], + [ + 2176.89750975416, + 5224.158668136852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556048", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.22881164682, + "min_y": 5223.040627179083, + "max_x": 2177.566927420014, + "max_y": 5223.605337825635, + "center": [ + 2177.397869533417, + 5223.322982502359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.22881164682, + 5223.605337825635 + ], + [ + 2177.566927420014, + 5223.040627179083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556049", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.540766978181, + "min_y": 5222.647127211719, + "max_x": 2177.585554422797, + "max_y": 5222.647127211719, + "center": [ + 2177.063160700489, + 5222.647127211719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.540766978181, + 5222.647127211719 + ], + [ + 2177.585554422797, + 5222.647127211719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55604A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.540766978181, + "min_y": 5225.11687875076, + "max_x": 2177.585554422797, + "max_y": 5225.11687875076, + "center": [ + 2177.063160700489, + 5225.11687875076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.540766978181, + 5225.11687875076 + ], + [ + 2177.585554422797, + 5225.11687875076 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55604B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2176.7406954398066, + "min_y": 5223.559537720555, + "max_x": 2177.385625961171, + "max_y": 5224.20446824192, + "center": [ + 2177.063160700489, + 5223.882002981238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.063160700489, + 5223.882002981238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55604C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2177.063160700489, + "min_y": 5220.461091659502, + "max_x": 2177.063160700489, + "max_y": 5222.647127211719, + "center": [ + 2177.063160700489, + 5221.55410943561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.063160700489, + 5222.647127211719 + ], + [ + 2177.063160700489, + 5220.461091659502 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55604D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.042171425619, + "min_y": 5215.945256328336, + "max_x": 2162.042171425619, + "max_y": 5220.237831283128, + "center": [ + 2162.042171425619, + 5218.091543805732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.042171425619, + 5220.237831283128 + ], + [ + 2162.042171425619, + 5215.945256328336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55604E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.719848731088, + "min_y": 5215.945256328336, + "max_x": 2164.719848731088, + "max_y": 5220.237831283128, + "center": [ + 2164.719848731088, + 5218.091543805732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.719848731088, + 5215.945256328336 + ], + [ + 2164.719848731088, + 5220.237831283128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55604F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2161.728843515261, + "min_y": 5220.237831283128, + "max_x": 2165.033176641445, + "max_y": 5220.237831283128, + "center": [ + 2163.381010078353, + 5220.237831283128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2161.728843515261, + 5220.237831283128 + ], + [ + 2165.033176641445, + 5220.237831283128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556051", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.042171425619, + "min_y": 5218.888851104363, + "max_x": 2163.907673960391, + "max_y": 5218.888851104363, + "center": [ + 2162.9749226930053, + 5218.888851104363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.042171425619, + 5218.888851104363 + ], + [ + 2163.907673960391, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556052", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.907673960391, + "min_y": 5218.888851104363, + "max_x": 2164.719848731088, + "max_y": 5218.888851104363, + "center": [ + 2164.3137613457393, + 5218.888851104363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.907673960391, + 5218.888851104363 + ], + [ + 2164.719848731088, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556053", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2158.694313064626, + "min_y": 5228.839396610073, + "max_x": 2160.2637151839317, + "max_y": 5230.147231709494, + "center": [ + 2159.479014124279, + 5229.493314159783 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556054", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.028901995623, + "min_y": 5214.227251138303, + "max_x": 2163.734175205849, + "max_y": 5214.227778428142, + "center": [ + 2163.3815386007363, + 5214.227514783222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.734175205849, + 5214.227778428142 + ], + [ + 2163.028901995623, + 5214.227251138303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556055", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381010078353, + "min_y": 5214.227514783225, + "max_x": 2163.381538600733, + "max_y": 5214.934436575864, + "center": [ + 2163.381274339543, + 5214.580975679544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381538600733, + 5214.227514783225 + ], + [ + 2163.381010078353, + 5214.934436575864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556056", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.030063721487, + "min_y": 5212.722780720601, + "max_x": 2163.73533693171, + "max_y": 5212.723308010438, + "center": [ + 2163.3827003265988, + 5212.723044365519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.030063721487, + 5212.722780720601 + ], + [ + 2163.73533693171, + 5212.723308010438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556057", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2163.1546805339653, + "min_y": 5213.249590989656, + "max_x": 2163.606131898921, + "max_y": 5213.701042354612, + "center": [ + 2163.380406216443, + 5213.475316672134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.380406216443, + 5213.475316672134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556058", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381005570524, + "min_y": 5212.047803500705, + "max_x": 2163.381510406061, + "max_y": 5212.723043098457, + "center": [ + 2163.3812579882924, + 5212.385423299582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381005570524, + 5212.723043098457 + ], + [ + 2163.381510406061, + 5212.047803500705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556059", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029906815317, + "min_y": 5212.883260867503, + "max_x": 2163.267101162559, + "max_y": 5213.280088476182, + "center": [ + 2163.148503988938, + 5213.081674671843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.267101162559, + 5213.280088476182 + ], + [ + 2163.029906815317, + 5212.883260867503 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029906815317, + "min_y": 5212.883260867503, + "max_x": 2163.73518002554, + "max_y": 5212.883788157341, + "center": [ + 2163.3825434204286, + 5212.883524512422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.029906815317, + 5212.883260867503 + ], + [ + 2163.73518002554, + 5212.883788157341 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.49650663841, + "min_y": 5212.883788157341, + "max_x": 2163.73518002554, + "max_y": 5213.281737810302, + "center": [ + 2163.615843331975, + 5213.082762983821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.73518002554, + 5212.883788157341 + ], + [ + 2163.49650663841, + 5213.281737810302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029026151922, + "min_y": 5213.666066271155, + "max_x": 2163.266002666766, + "max_y": 5214.061186661314, + "center": [ + 2163.147514409344, + 5213.863626466235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.266002666766, + 5213.666066271155 + ], + [ + 2163.029026151922, + 5214.061186661314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.029026151922, + "min_y": 5214.061186661314, + "max_x": 2163.734299362147, + "max_y": 5214.061713951149, + "center": [ + 2163.3816627570345, + 5214.061450306232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.029026151922, + 5214.061186661314 + ], + [ + 2163.734299362147, + 5214.061713951149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.49791392681, + "min_y": 5213.666239657085, + "max_x": 2163.734299362147, + "max_y": 5214.061713951149, + "center": [ + 2163.6161066444784, + 5213.863976804117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.734299362147, + 5214.061713951149 + ], + [ + 2163.49791392681, + 5213.666239657085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55605F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2164.719848731088, + "min_y": 5219.331868736825, + "max_x": 2166.089806333846, + "max_y": 5219.331869829658, + "center": [ + 2165.4048275324667, + 5219.331869283242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.089806333846, + 5219.331868736825 + ], + [ + 2164.719848731088, + 5219.331869829658 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556060", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5219.331862366555, + "max_x": 2162.042171425619, + "max_y": 5219.331862366555, + "center": [ + 2159.7544950558395, + 5219.331862366555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.46681868606, + 5219.331862366555 + ], + [ + 2162.042171425619, + 5219.331862366555 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556061", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2164.719848731088, + "min_y": 5219.331868736825, + "max_x": 2166.089806333846, + "max_y": 5219.331869829658, + "center": [ + 2165.4048275324667, + 5219.331869283242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.089806333846, + 5219.331868736825 + ], + [ + 2164.719848731088, + 5219.331869829658 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556062", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5219.331862366555, + "max_x": 2162.042171425619, + "max_y": 5219.331862366555, + "center": [ + 2159.7544950558395, + 5219.331862366555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.46681868606, + 5219.331862366555 + ], + [ + 2162.042171425619, + 5219.331862366555 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556063", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2169.770905346766, + "min_y": 5219.325998144008, + "max_x": 2169.770905346766, + "max_y": 5238.653667303831, + "center": [ + 2169.770905346766, + 5228.989832723919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.770905346766, + 5219.325998144008 + ], + [ + 2169.770905346766, + 5238.653667303831 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556064", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2154.285591606377, + "min_y": 5219.33773295937, + "max_x": 2154.285591606377, + "max_y": 5238.653661240939, + "center": [ + 2154.285591606377, + 5228.995697100155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.285591606377, + 5238.653661240939 + ], + [ + 2154.285591606377, + 5219.33773295937 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556065", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2202.857702288334, + "min_y": 5228.989825779135, + "max_x": 2202.857702288334, + "max_y": 5230.845137550524, + "center": [ + 2202.857702288334, + 5229.917481664829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.857702288334, + 5228.989825779135 + ], + [ + 2202.857702288334, + 5230.845137550524 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556066", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2202.857702288334, + "min_y": 5233.314889089566, + "max_x": 2202.857702288334, + "max_y": 5248.667888637054, + "center": [ + 2202.857702288334, + 5240.99138886331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.857702288334, + 5233.314889089566 + ], + [ + 2202.857702288334, + 5248.667888637054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556067", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2202.857702288334, + "min_y": 5248.667888637054, + "max_x": 2204.99151533876, + "max_y": 5248.667888637054, + "center": [ + 2203.924608813547, + 5248.667888637054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.857702288334, + 5248.667888637054 + ], + [ + 2204.99151533876, + 5248.667888637054 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "556068", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2213.642077037841, + "min_y": 5278.558128585298, + "max_x": 2213.642077037841, + "max_y": 5295.758678955206, + "center": [ + 2213.642077037841, + 5287.158403770252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2213.642077037841, + 5295.758678955206 + ], + [ + 2213.642077037841, + 5278.558128585298 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556069", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2157.071289706244, + "min_y": 5226.668355804226, + "max_x": 2161.779496064161, + "max_y": 5227.976190903647, + "center": [ + 2159.425392885202, + 5227.322273353937 + ] + }, + "raw_value": "10202B", + "clean_value": "10202B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55606A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.101260040158, + "min_y": 5250.409694916495, + "max_x": 2174.236248039042, + "max_y": 5250.409694916495, + "center": [ + 2168.1687540396, + 5250.409694916495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.101260040158, + 5250.409694916495 + ], + [ + 2174.236248039042, + 5250.409694916495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55606B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.101260040156, + "min_y": 5253.264128562612, + "max_x": 2174.236248039042, + "max_y": 5253.264128562612, + "center": [ + 2168.1687540395988, + 5253.264128562612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.236248039042, + 5253.264128562612 + ], + [ + 2162.101260040156, + 5253.264128562612 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55606C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.236248039042, + "min_y": 5250.409694916495, + "max_x": 2174.236248039042, + "max_y": 5253.264128562612, + "center": [ + 2174.236248039042, + 5251.836911739554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.236248039042, + 5253.264128562612 + ], + [ + 2174.236248039042, + 5250.409694916495 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55606D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2160.674043217097, + "min_y": 5251.836911739552, + "max_x": 2162.101260040156, + "max_y": 5253.264128562612, + "center": [ + 2161.3876516286264, + 5252.550520151082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.101260040156, + 5253.264128562612 + ], + [ + 2160.674043217097, + 5251.836911739552 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55606E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2160.674043217099, + "min_y": 5250.409694916495, + "max_x": 2162.101260040158, + "max_y": 5251.836911739552, + "center": [ + 2161.3876516286286, + 5251.123303328024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.674043217099, + 5251.836911739552 + ], + [ + 2162.101260040158, + 5250.409694916495 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55606F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5241.064267289274, + "max_x": 2239.65925734268, + "max_y": 5241.064267289274, + "center": [ + 2239.0801850825083, + 5241.064267289274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.65925734268, + 5241.064267289274 + ], + [ + 2238.501112822337, + 5241.064267289274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556070", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2212.021617980554, + "min_y": 5294.653688359588, + "max_x": 2213.642077037841, + "max_y": 5294.653688359588, + "center": [ + 2212.8318475091974, + 5294.653688359588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2213.642077037841, + 5294.653688359588 + ], + [ + 2212.021617980554, + 5294.653688359588 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556071", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2186.2810584330987, + "min_y": 5228.667352505547, + "max_x": 2186.9259889544633, + "max_y": 5229.312283026911, + "center": [ + 2186.603523693781, + 5228.989817766229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.603523693781, + 5228.989817766229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556072", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2191.3028871946885, + "min_y": 5228.667385566922, + "max_x": 2191.947817716053, + "max_y": 5229.312316088287, + "center": [ + 2191.625352455371, + 5228.989850827605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.625352455371, + 5228.989850827605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556073", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2196.9101352108937, + "min_y": 5228.66733822631, + "max_x": 2197.5550657322583, + "max_y": 5229.312268747674, + "center": [ + 2197.232600471576, + 5228.989803486992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.232600471576, + 5228.989803486992 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556074", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2191.3135654467205, + "min_y": 5223.011152760534, + "max_x": 2191.958495968085, + "max_y": 5223.656083281899, + "center": [ + 2191.636030707403, + 5223.333618021216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.636030707403, + 5223.333618021216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556076", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.058212037864, + "min_y": 5257.452241820237, + "max_x": 2254.77238545577, + "max_y": 5263.166415238143, + "center": [ + 2251.915298746817, + 5260.30932852919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5260.30932852919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556077", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2243.517800007852, + "min_y": 5241.099971277066, + "max_x": 2266.470021593043, + "max_y": 5241.099971277097, + "center": [ + 2254.9939108004473, + 5241.099971277082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.517800007852, + 5241.099971277066 + ], + [ + 2266.470021593043, + 5241.099971277097 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556078", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2266.470021593043, + "min_y": 5241.099971277098, + "max_x": 2266.470021593046, + "max_y": 5256.23677719557, + "center": [ + 2266.4700215930443, + 5248.668374236334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.470021593046, + 5256.23677719557 + ], + [ + 2266.470021593043, + 5241.099971277098 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556079", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2262.021284269714, + "min_y": 5208.206114343568, + "max_x": 2262.021284269714, + "max_y": 5241.099971277089, + "center": [ + 2262.021284269714, + 5224.653042810329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.021284269714, + 5241.099971277089 + ], + [ + 2262.021284269714, + 5208.206114343568 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55607A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.470021593046, + "min_y": 5256.563374042592, + "max_x": 2266.470021593046, + "max_y": 5258.294149106472, + "center": [ + 2266.470021593046, + 5257.4287615745325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.470021593046, + 5258.294149106472 + ], + [ + 2266.470021593046, + 5256.563374042592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55607B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.935540232028, + "min_y": 5256.23677719557, + "max_x": 2267.03308279096, + "max_y": 5256.23677719557, + "center": [ + 2266.484311511494, + 5256.23677719557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.935540232028, + 5256.23677719557 + ], + [ + 2267.03308279096, + 5256.23677719557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55607C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.935540232028, + "min_y": 5256.563374042592, + "max_x": 2267.03308279096, + "max_y": 5256.563374042592, + "center": [ + 2266.484311511494, + 5256.563374042592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.935540232028, + 5256.563374042592 + ], + [ + 2267.03308279096, + 5256.563374042592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55607D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2279.522238468073, + "min_y": 5208.206114343568, + "max_x": 2283.668071581935, + "max_y": 5208.206114343568, + "center": [ + 2281.595155025004, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.522238468073, + 5208.206114343568 + ], + [ + 2283.668071581935, + 5208.206114343568 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55607E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2281.2434662173114, + "min_y": 5206.22203849792, + "max_x": 2285.2116179086065, + "max_y": 5210.190190189215, + "center": [ + 2283.227542062959, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.227542062959, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55607F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.922062686097, + "min_y": 5204.679327214839, + "max_x": 2282.023831950376, + "max_y": 5206.62888927208, + "center": [ + 2281.4729473182365, + 5205.65410824346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.023831950376, + 5206.62888927208 + ], + [ + 2280.922062686097, + 5204.679327214839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556080", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.431252175542, + "min_y": 5204.679327214839, + "max_x": 2285.533021439821, + "max_y": 5206.62888927208, + "center": [ + 2284.9821368076814, + 5205.65410824346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.431252175542, + 5206.62888927208 + ], + [ + 2285.533021439821, + 5204.679327214839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556081", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.922062686097, + "min_y": 5204.679327214839, + "max_x": 2285.533021439821, + "max_y": 5204.679327214839, + "center": [ + 2283.227542062959, + 5204.679327214839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.533021439821, + 5204.679327214839 + ], + [ + 2280.922062686097, + 5204.679327214839 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556082", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.868325851843, + "min_y": 5220.522982028969, + "max_x": 2301.264831748351, + "max_y": 5220.522982028972, + "center": [ + 2300.566578800097, + 5220.522982028971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.868325851843, + 5220.522982028969 + ], + [ + 2301.264831748351, + 5220.522982028972 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556083", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.748102147858, + "min_y": 5220.522982028972, + "max_x": 2306.035313126653, + "max_y": 5220.522982028972, + "center": [ + 2305.3917076372554, + 5220.522982028972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.748102147858, + 5220.522982028972 + ], + [ + 2306.035313126653, + 5220.522982028972 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556084", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2306.361909973674, + "min_y": 5220.521165174689, + "max_x": 2308.794685543265, + "max_y": 5220.521165174689, + "center": [ + 2307.5782977584695, + 5220.521165174689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.361909973674, + 5220.521165174689 + ], + [ + 2308.794685543265, + 5220.521165174689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556085", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2311.485075081741, + "min_y": 5220.521165174685, + "max_x": 2313.157468148911, + "max_y": 5220.521165174687, + "center": [ + 2312.3212716153257, + 5220.521165174686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.485075081741, + 5220.521165174685 + ], + [ + 2313.157468148911, + 5220.521165174687 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556086", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2315.847857687385, + "min_y": 5220.521165174689, + "max_x": 2317.369342609079, + "max_y": 5220.521165174689, + "center": [ + 2316.6086001482317, + 5220.521165174689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.847857687385, + 5220.521165174689 + ], + [ + 2317.369342609079, + 5220.521165174689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556087", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.059732147556, + "min_y": 5220.521165174687, + "max_x": 2322.1507785319, + "max_y": 5220.521165174688, + "center": [ + 2321.105255339728, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.059732147556, + 5220.521165174687 + ], + [ + 2322.1507785319, + 5220.521165174688 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556088", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2322.915037640493, + "min_y": 5220.519930335252, + "max_x": 2364.463363540354, + "max_y": 5220.521165174688, + "center": [ + 2343.6892005904238, + 5220.52054775497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.915037640493, + 5220.521165174688 + ], + [ + 2364.463363540354, + 5220.519930335252 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556089", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.868325851843, + "min_y": 5219.972393895226, + "max_x": 2299.868325851843, + "max_y": 5221.069936454155, + "center": [ + 2299.868325851843, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.868325851843, + 5219.972393895226 + ], + [ + 2299.868325851843, + 5221.069936454155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.868325851843, + "min_y": 5219.972393895226, + "max_x": 2299.868325851843, + "max_y": 5221.069936454155, + "center": [ + 2299.868325851843, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.868325851843, + 5219.972393895226 + ], + [ + 2299.868325851843, + 5221.069936454155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.361909973674, + "min_y": 5219.972393895226, + "max_x": 2306.361909973674, + "max_y": 5221.069936454155, + "center": [ + 2306.361909973674, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.361909973674, + 5219.972393895226 + ], + [ + 2306.361909973674, + 5221.069936454155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.035313126653, + "min_y": 5219.972393895226, + "max_x": 2306.035313126653, + "max_y": 5221.069936454155, + "center": [ + 2306.035313126653, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.035313126653, + 5219.972393895226 + ], + [ + 2306.035313126653, + 5221.069936454155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2313.5861218733216, + "min_y": 5220.982826660861, + "max_x": 2315.4192039629725, + "max_y": 5222.815908750513, + "center": [ + 2314.502662918147, + 5221.899367705687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.502662918147, + 5221.899367705687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.586121873321, + "min_y": 5221.899367705687, + "max_x": 2315.41920396297, + "max_y": 5221.899367705687, + "center": [ + 2314.5026629181457, + 5221.899367705687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.41920396297, + 5221.899367705687 + ], + [ + 2313.586121873321, + 5221.899367705687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55608F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.502662918147, + "min_y": 5220.872438227925, + "max_x": 2314.502662918147, + "max_y": 5221.899367705687, + "center": [ + 2314.502662918147, + 5221.385902966806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.502662918147, + 5221.899367705687 + ], + [ + 2314.502662918147, + 5220.872438227925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556090", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.804044263008, + "min_y": 5219.972393895218, + "max_x": 2315.41920396297, + "max_y": 5220.340715616909, + "center": [ + 2315.1116241129894, + 5220.156554756064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.41920396297, + 5219.972393895218 + ], + [ + 2314.804044263008, + 5220.340715616909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556091", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.586121873321, + "min_y": 5220.701614732465, + "max_x": 2314.201281573289, + "max_y": 5221.069936454153, + "center": [ + 2313.893701723305, + 5220.8857755933095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.201281573289, + 5220.701614732465 + ], + [ + 2313.586121873321, + 5221.069936454153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556092", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.41920396297, + "min_y": 5219.972393895218, + "max_x": 2315.41920396297, + "max_y": 5221.069936454153, + "center": [ + 2315.41920396297, + 5220.521165174686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.41920396297, + 5221.069936454153 + ], + [ + 2315.41920396297, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556093", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.586121873321, + "min_y": 5219.972393895218, + "max_x": 2313.586121873321, + "max_y": 5221.069936454153, + "center": [ + 2313.586121873321, + 5220.521165174686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.586121873321, + 5221.069936454153 + ], + [ + 2313.586121873321, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556094", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.804044263002, + "min_y": 5220.701614732469, + "max_x": 2315.41920396297, + "max_y": 5221.069936454153, + "center": [ + 2315.111624112986, + 5220.885775593311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.41920396297, + 5221.069936454153 + ], + [ + 2314.804044263002, + 5220.701614732469 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556095", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.586121873321, + "min_y": 5219.972393895218, + "max_x": 2314.201281573284, + "max_y": 5220.340715616909, + "center": [ + 2313.893701723303, + 5220.156554756064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.201281573284, + 5220.340715616909 + ], + [ + 2313.586121873321, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556096", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.157468148911, + "min_y": 5219.952102828434, + "max_x": 2313.157468148911, + "max_y": 5221.09022752094, + "center": [ + 2313.157468148911, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.157468148911, + 5221.09022752094 + ], + [ + 2313.157468148911, + 5219.952102828434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556097", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.847857687385, + "min_y": 5219.952102828434, + "max_x": 2315.847857687385, + "max_y": 5221.09022752094, + "center": [ + 2315.847857687385, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.847857687385, + 5221.09022752094 + ], + [ + 2315.847857687385, + 5219.952102828434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556098", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.786467494245, + "min_y": 5214.542818621042, + "max_x": 2320.670577053962, + "max_y": 5214.542818621044, + "center": [ + 2318.7285222741034, + 5214.542818621043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.670577053962, + 5214.542818621044 + ], + [ + 2316.786467494245, + 5214.542818621042 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556099", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.786467494245, + "min_y": 5213.973756274793, + "max_x": 2316.786467494245, + "max_y": 5215.111880967298, + "center": [ + 2316.786467494245, + 5214.542818621046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.786467494245, + 5215.111880967298 + ], + [ + 2316.786467494245, + 5213.973756274793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55609A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2315.192056549162, + "min_y": 5214.1915455678045, + "max_x": 2315.8946026556405, + "max_y": 5214.894091674283, + "center": [ + 2315.543329602401, + 5214.542818621044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.543329602401, + 5214.542818621044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55609B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.300191710556, + "min_y": 5213.994047341575, + "max_x": 2314.300191710556, + "max_y": 5215.091589900513, + "center": [ + 2314.300191710556, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.300191710556, + 5213.994047341575 + ], + [ + 2314.300191710556, + 5215.091589900513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55609C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.786467494245, + "min_y": 5213.994047341575, + "max_x": 2316.786467494245, + "max_y": 5215.091589900513, + "center": [ + 2316.786467494245, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.786467494245, + 5213.994047341575 + ], + [ + 2316.786467494245, + 5215.091589900513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55609D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.52448017541, + "min_y": 5222.580146307609, + "max_x": 2317.318284394058, + "max_y": 5226.644087384687, + "center": [ + 2316.421382284734, + 5224.612116846148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.318284394058, + 5226.644087384687 + ], + [ + 2315.52448017541, + 5222.580146307609 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55609E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.732796958471, + "min_y": 5220.786553722696, + "max_x": 2315.095361945111, + "max_y": 5221.607960388481, + "center": [ + 2314.914079451791, + 5221.197257055588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.095361945111, + 5221.607960388481 + ], + [ + 2314.732796958471, + 5220.786553722696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55609F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2282.7870125439836, + "min_y": 5207.765584824592, + "max_x": 2283.6680715819343, + "max_y": 5208.646643862543, + "center": [ + 2283.227542062959, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.227542062959, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2284.8793380698, + "min_y": 5237.435536603751, + "max_x": 2285.5818841762784, + "max_y": 5238.138082710229, + "center": [ + 2285.230611123039, + 5237.78680965699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.230611123039, + 5237.78680965699 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5236.543671765142, + "max_x": 2285.779382402505, + "max_y": 5236.543671765142, + "center": [ + 2285.23061112304, + 5236.543671765142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.681839843575, + 5236.543671765142 + ], + [ + 2285.779382402505, + 5236.543671765142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.223000098495, + "min_y": 5208.206114343568, + "max_x": 2285.223176550326, + "max_y": 5210.470371861506, + "center": [ + 2285.2230883244106, + 5209.338243102537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098495, + 5210.470371861506 + ], + [ + 2285.223176550326, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2279.195641621055, + "min_y": 5207.637051997321, + "max_x": 2279.195641621055, + "max_y": 5208.775176689822, + "center": [ + 2279.195641621055, + 5208.206114343571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.195641621055, + 5208.775176689822 + ], + [ + 2279.195641621055, + 5207.637051997321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2279.522238468073, + "min_y": 5207.637051997321, + "max_x": 2279.522238468073, + "max_y": 5208.775176689822, + "center": [ + 2279.522238468073, + 5208.206114343571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.522238468073, + 5208.775176689822 + ], + [ + 2279.522238468073, + 5207.637051997321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.379514096587, + "min_y": 5207.637051997321, + "max_x": 2270.379514096587, + "max_y": 5208.775176689822, + "center": [ + 2270.379514096587, + 5208.206114343571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.379514096587, + 5208.775176689822 + ], + [ + 2270.379514096587, + 5207.637051997321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2268.7851031515006, + "min_y": 5207.854841290328, + "max_x": 2269.4876492579792, + "max_y": 5208.557387396807, + "center": [ + 2269.13637620474, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.13637620474, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.379514096587, + "min_y": 5207.657343064105, + "max_x": 2270.379514096587, + "max_y": 5208.754885623033, + "center": [ + 2270.379514096587, + 5208.206114343569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.379514096587, + 5207.657343064105 + ], + [ + 2270.379514096587, + 5208.754885623033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.706110943606, + "min_y": 5208.206114343568, + "max_x": 2273.507968237844, + "max_y": 5208.206114343568, + "center": [ + 2272.107039590725, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.507968237844, + 5208.206114343568 + ], + [ + 2270.706110943606, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560A9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2274.489199807383, + "min_y": 5206.583640874178, + "max_x": 2274.489199807383, + "max_y": 5208.204297489288, + "center": [ + 2274.489199807383, + 5207.393969181733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.489199807383, + 5208.204297489288 + ], + [ + 2274.489199807383, + 5206.583640874178 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560AA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2274.137926754144, + "min_y": 5204.9892299291005, + "max_x": 2274.8404728606224, + "max_y": 5205.691776035579, + "center": [ + 2274.489199807383, + 5205.34050298234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.489199807383, + 5205.34050298234 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5206.583640874187, + "max_x": 2275.037971086847, + "max_y": 5206.583640874187, + "center": [ + 2274.489199807381, + 5206.583640874187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.940428527915, + 5206.583640874187 + ], + [ + 2275.037971086847, + 5206.583640874187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5204.097365090492, + "max_x": 2275.037971086847, + "max_y": 5204.097365090492, + "center": [ + 2274.489199807381, + 5204.097365090492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.940428527915, + 5204.097365090492 + ], + [ + 2275.037971086847, + 5204.097365090492 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.507968237844, + "min_y": 5207.635235143038, + "max_x": 2273.507968237844, + "max_y": 5208.773359835539, + "center": [ + 2273.507968237844, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.507968237844, + 5208.773359835539 + ], + [ + 2273.507968237844, + 5207.635235143038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.834565084863, + "min_y": 5207.635235143038, + "max_x": 2273.834565084863, + "max_y": 5208.773359835539, + "center": [ + 2273.834565084863, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.834565084863, + 5208.773359835539 + ], + [ + 2273.834565084863, + 5207.635235143038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.177894411621, + "min_y": 5207.635235143038, + "max_x": 2276.177894411621, + "max_y": 5208.773359835539, + "center": [ + 2276.177894411621, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.177894411621, + 5208.773359835539 + ], + [ + 2276.177894411621, + 5207.635235143038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.851297564599, + "min_y": 5207.635235143038, + "max_x": 2275.851297564599, + "max_y": 5208.773359835539, + "center": [ + 2275.851297564599, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.851297564599, + 5208.773359835539 + ], + [ + 2275.851297564599, + 5207.635235143038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560B1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2273.834565084863, + "min_y": 5208.204297489288, + "max_x": 2275.851297564599, + "max_y": 5208.204297489288, + "center": [ + 2274.8429313247307, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.851297564599, + 5208.204297489288 + ], + [ + 2273.834565084863, + 5208.204297489288 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.893238312893, + "min_y": 5207.637051997321, + "max_x": 2267.893238312893, + "max_y": 5208.775176689822, + "center": [ + 2267.893238312893, + 5208.206114343571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.893238312893, + 5208.775176689822 + ], + [ + 2267.893238312893, + 5207.637051997321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560B3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2262.021284269714, + "min_y": 5208.206114343568, + "max_x": 2267.893238312893, + "max_y": 5208.206114343568, + "center": [ + 2264.9572612913034, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.893238312893, + 5208.206114343568 + ], + [ + 2262.021284269714, + 5208.206114343568 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560B4", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.058193454171, + "min_y": 5250.378604798508, + "max_x": 2254.772366872077, + "max_y": 5256.0927782164135, + "center": [ + 2251.915280163124, + 5253.235691507461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915280163124, + 5253.235691507461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560B5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2301.637724814887, + "min_y": 5220.0822164369, + "max_x": 2303.620820869993, + "max_y": 5220.908506459861, + "center": [ + 2302.62927284244, + 5220.49536144838 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560B6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.145100753296, + "min_y": 5222.583410627879, + "max_x": 2305.859274171202, + "max_y": 5228.297584045785, + "center": [ + 2303.002187462249, + 5225.440497336832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.002187462249, + 5225.440497336832 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.006466948107, + "min_y": 5221.398350155457, + "max_x": 2303.006466948107, + "max_y": 5222.584444838311, + "center": [ + 2303.006466948107, + 5221.991397496884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.006466948107, + 5221.398350155457 + ], + [ + 2303.006466948107, + 5222.584444838311 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560B8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2307.578297758469, + "min_y": 5214.542818621044, + "max_x": 2314.300191710556, + "max_y": 5214.542818621051, + "center": [ + 2310.9392447345126, + 5214.542818621047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.300191710556, + 5214.542818621044 + ], + [ + 2307.578297758469, + 5214.542818621051 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.441261657363, + "min_y": 5219.972393895218, + "max_x": 2311.056421357328, + "max_y": 5220.340715616906, + "center": [ + 2310.748841507346, + 5220.156554756062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.056421357328, + 5219.972393895218 + ], + [ + 2310.441261657363, + 5220.340715616906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.223339267677, + "min_y": 5220.701614732469, + "max_x": 2309.838498967642, + "max_y": 5221.069936454153, + "center": [ + 2309.5309191176593, + 5220.885775593311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.838498967642, + 5220.701614732469 + ], + [ + 2309.223339267677, + 5221.069936454153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.056421357328, + "min_y": 5219.972393895218, + "max_x": 2311.056421357328, + "max_y": 5221.069936454153, + "center": [ + 2311.056421357328, + 5220.521165174686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.056421357328, + 5221.069936454153 + ], + [ + 2311.056421357328, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.223339267677, + "min_y": 5219.972393895218, + "max_x": 2309.223339267677, + "max_y": 5221.069936454153, + "center": [ + 2309.223339267677, + 5220.521165174686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.223339267677, + 5221.069936454153 + ], + [ + 2309.223339267677, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.441261657361, + "min_y": 5220.701614732469, + "max_x": 2311.056421357328, + "max_y": 5221.069936454153, + "center": [ + 2310.7488415073444, + 5220.885775593311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.056421357328, + 5221.069936454153 + ], + [ + 2310.441261657361, + 5220.701614732469 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.223339267677, + "min_y": 5219.972393895218, + "max_x": 2309.838498967642, + "max_y": 5220.340715616906, + "center": [ + 2309.5309191176593, + 5220.156554756062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.838498967642, + 5220.340715616906 + ], + [ + 2309.223339267677, + 5219.972393895218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2308.794685543265, + "min_y": 5219.952102828434, + "max_x": 2308.794685543265, + "max_y": 5221.09022752094, + "center": [ + 2308.794685543265, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.794685543265, + 5221.09022752094 + ], + [ + 2308.794685543265, + 5219.952102828434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.485075081741, + "min_y": 5219.952102828434, + "max_x": 2311.485075081741, + "max_y": 5221.09022752094, + "center": [ + 2311.485075081741, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.485075081741, + 5221.09022752094 + ], + [ + 2311.485075081741, + 5219.952102828434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.015918723176, + "min_y": 5219.972393895221, + "max_x": 2319.631078423141, + "max_y": 5220.340715616909, + "center": [ + 2319.3234985731588, + 5220.156554756065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.631078423141, + 5219.972393895221 + ], + [ + 2319.015918723176, + 5220.340715616909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.797996333492, + "min_y": 5220.701614732472, + "max_x": 2318.413156033457, + "max_y": 5221.069936454156, + "center": [ + 2318.1055761834746, + 5220.885775593314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.413156033457, + 5220.701614732472 + ], + [ + 2317.797996333492, + 5221.069936454156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.631078423141, + "min_y": 5219.972393895221, + "max_x": 2319.631078423141, + "max_y": 5221.069936454156, + "center": [ + 2319.631078423141, + 5220.521165174689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.631078423141, + 5221.069936454156 + ], + [ + 2319.631078423141, + 5219.972393895221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.797996333492, + "min_y": 5219.972393895221, + "max_x": 2317.797996333492, + "max_y": 5221.069936454156, + "center": [ + 2317.797996333492, + 5220.521165174689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.797996333492, + 5221.069936454156 + ], + [ + 2317.797996333492, + 5219.972393895221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.015918723176, + "min_y": 5220.701614732472, + "max_x": 2319.631078423141, + "max_y": 5221.069936454156, + "center": [ + 2319.3234985731588, + 5220.885775593314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.631078423141, + 5221.069936454156 + ], + [ + 2319.015918723176, + 5220.701614732472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.797996333492, + "min_y": 5219.972393895221, + "max_x": 2318.413156033457, + "max_y": 5220.340715616909, + "center": [ + 2318.1055761834746, + 5220.156554756065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.413156033457, + 5220.340715616909 + ], + [ + 2317.797996333492, + 5219.972393895221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.369342609079, + "min_y": 5219.952102828437, + "max_x": 2317.369342609079, + "max_y": 5221.090227520943, + "center": [ + 2317.369342609079, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.369342609079, + 5221.090227520943 + ], + [ + 2317.369342609079, + 5219.952102828437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.059732147553, + "min_y": 5219.952102828437, + "max_x": 2320.059732147553, + "max_y": 5221.090227520943, + "center": [ + 2320.059732147553, + 5220.52116517469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.059732147553, + 5221.090227520943 + ], + [ + 2320.059732147553, + 5219.952102828437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560C9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2307.578297758469, + "min_y": 5214.542818621051, + "max_x": 2307.578297758469, + "max_y": 5220.521165174689, + "center": [ + 2307.578297758469, + 5217.531991897869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.578297758469, + 5220.521165174689 + ], + [ + 2307.578297758469, + 5214.542818621051 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.562925405231, + "min_y": 5219.974210749505, + "max_x": 2299.562925405231, + "max_y": 5221.07175330844, + "center": [ + 2299.562925405231, + 5220.522982028972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.562925405231, + 5219.974210749505 + ], + [ + 2299.562925405231, + 5221.07175330844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560CB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2313.715983908235, + "min_y": 5218.800315495355, + "max_x": 2315.1709728617097, + "max_y": 5219.60864269173, + "center": [ + 2314.4434783849724, + 5219.204479093542 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.664083285639, + "min_y": 5210.470371861506, + "max_x": 2285.781916911356, + "max_y": 5210.470371861506, + "center": [ + 2285.2230000984973, + 5210.470371861506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.781916911356, + 5210.470371861506 + ], + [ + 2284.664083285639, + 5210.470371861506 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5292.24831554067, + "max_x": 2271.020180759637, + "max_y": 5292.24831554067, + "center": [ + 2266.4700215928797, + 5292.24831554067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5292.24831554067 + ], + [ + 2271.020180759637, + 5292.24831554067 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5560CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426125, + "min_y": 5281.563139399105, + "max_x": 2271.020180759634, + "max_y": 5281.563139399105, + "center": [ + 2266.4700215928797, + 5281.563139399105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5281.563139399105 + ], + [ + 2271.020180759634, + 5281.563139399105 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5560CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5281.563139399105, + "max_x": 2271.020180759634, + "max_y": 5292.24831554067, + "center": [ + 2266.4700215928788, + 5286.905727469888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5292.24831554067 + ], + [ + 2271.020180759634, + 5281.563139399105 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5560D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426125, + "min_y": 5281.5631393991, + "max_x": 2271.020180759637, + "max_y": 5292.24831554067, + "center": [ + 2266.4700215928806, + 5286.905727469884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5281.5631393991 + ], + [ + 2271.020180759637, + 5292.24831554067 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5560D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.658648905425, + "min_y": 5266.995226178522, + "max_x": 2261.919862426123, + "max_y": 5266.995226178522, + "center": [ + 2261.289255665774, + 5266.995226178522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.658648905425, + 5266.995226178522 + ], + [ + 2261.919862426123, + 5266.995226178522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.658648905425, + "min_y": 5264.446634280929, + "max_x": 2261.919862426123, + "max_y": 5264.446634280929, + "center": [ + 2261.289255665774, + 5264.446634280929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.658648905425, + 5264.446634280929 + ], + [ + 2261.919862426123, + 5264.446634280929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.658648905422, + "min_y": 5264.160323611987, + "max_x": 2260.658648905425, + "max_y": 5267.28153684747, + "center": [ + 2260.6586489054234, + 5265.720930229729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.658648905422, + 5267.28153684747 + ], + [ + 2260.658648905425, + 5264.160323611987 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.168753634895, + "min_y": 5264.160323611987, + "max_x": 2260.168753634895, + "max_y": 5267.28153684747, + "center": [ + 2260.168753634895, + 5265.720930229729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.168753634895, + 5267.28153684747 + ], + [ + 2260.168753634895, + 5264.160323611987 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2254.772304152051, + "min_y": 5260.354443090412, + "max_x": 2262.110911375842, + "max_y": 5260.354443090412, + "center": [ + 2258.4416077639466, + 5260.354443090412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.110911375842, + 5260.354443090412 + ], + [ + 2254.772304152051, + 5260.354443090412 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560D6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2251.002075381957, + "min_y": 5260.957150600932, + "max_x": 2252.5695605066944, + "max_y": 5262.26338820488, + "center": [ + 2251.7858179443256, + 5261.610269402907 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560D7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2250.239853084114, + "min_y": 5266.658914761597, + "max_x": 2253.3748233335887, + "max_y": 5267.965152365545, + "center": [ + 2251.8073382088514, + 5267.31203356357 + ] + }, + "raw_value": "TICA", + "clean_value": "TICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560D8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.058212037864, + "min_y": 5263.166415238145, + "max_x": 2254.77238545577, + "max_y": 5268.880588656051, + "center": [ + 2251.915298746817, + 5266.023501947098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5266.023501947098 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560D9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2285.23061112304, + "min_y": 5239.031764403119, + "max_x": 2285.23061112304, + "max_y": 5263.049645281251, + "center": [ + 2285.23061112304, + 5251.040704842186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.23061112304, + 5239.031764403119 + ], + [ + 2285.23061112304, + 5263.049645281251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5560DA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2275.681161863702, + "min_y": 5255.40111271415, + "max_x": 2277.2486469884393, + "max_y": 5256.707350318098, + "center": [ + 2276.4649044260705, + 5256.054231516124 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560DB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.675121609661, + "min_y": 5251.911225665911, + "max_x": 2279.3892950275667, + "max_y": 5257.625399083817, + "center": [ + 2276.532208318614, + 5254.768312374864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.532208318614, + 5254.768312374864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560DC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2301.907429726381, + "min_y": 5225.867162887126, + "max_x": 2304.2586574134866, + "max_y": 5227.173400491074, + "center": [ + 2303.0830435699336, + 5226.5202816891 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.502662918147, + "min_y": 5222.815908750511, + "max_x": 2314.50266291815, + "max_y": 5225.656315934381, + "center": [ + 2314.5026629181484, + 5224.236112342446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.502662918147, + 5222.815908750511 + ], + [ + 2314.50266291815, + 5225.656315934381 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560DE", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2314.502662918148, + "min_y": 5227.216065455364, + "max_x": 2314.50266291815, + "max_y": 5231.141723949083, + "center": [ + 2314.502662918149, + 5229.178894702223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.50266291815, + 5227.216065455364 + ], + [ + 2314.502662918148, + 5231.141723949083 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.121013986985, + "min_y": 5224.001590345524, + "max_x": 2314.884311849309, + "max_y": 5224.442280571808, + "center": [ + 2314.502662918147, + 5224.221935458666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.121013986985, + 5224.001590345524 + ], + [ + 2314.884311849309, + 5224.442280571808 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.121013986985, + "min_y": 5224.360846877247, + "max_x": 2314.884311849309, + "max_y": 5224.80153710353, + "center": [ + 2314.502662918147, + 5224.581191990388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.121013986985, + 5224.360846877247 + ], + [ + 2314.884311849309, + 5224.80153710353 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560E1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2314.067109101685, + "min_y": 5225.99011789067, + "max_x": 2315.52209805516, + "max_y": 5226.798445087045, + "center": [ + 2314.7946035784225, + 5226.394281488858 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560E2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2317.364595283214, + "min_y": 5229.709872685287, + "max_x": 2319.7158229703196, + "max_y": 5231.016110289235, + "center": [ + 2318.540209126767, + 5230.362991487262 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560E3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2315.9547871834952, + "min_y": 5226.222598112255, + "max_x": 2321.668960601401, + "max_y": 5231.9367715301605, + "center": [ + 2318.811873892448, + 5229.079684821208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.811873892448, + 5229.079684821208 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5289.761142169829, + "max_x": 2271.848936443279, + "max_y": 5289.761142169829, + "center": [ + 2271.434558601458, + 5289.761142169829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.020180759637, + 5289.761142169829 + ], + [ + 2271.848936443279, + 5289.761142169829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.848936443279, + "min_y": 5289.212370890362, + "max_x": 2271.848936443279, + "max_y": 5290.30991344929, + "center": [ + 2271.848936443279, + 5289.761142169826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.848936443279, + 5289.212370890362 + ], + [ + 2271.848936443279, + 5290.30991344929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560E6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2301.223199061887, + "min_y": 5231.668697897911, + "max_x": 2304.3581693113615, + "max_y": 5232.974935501859, + "center": [ + 2302.7906841866243, + 5232.321816699885 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560E7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.148702155102, + "min_y": 5228.34967722336, + "max_x": 2305.862875573008, + "max_y": 5234.063850641266, + "center": [ + 2303.005788864055, + 5231.206763932313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.005788864055, + 5231.206763932313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560E8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5234.11594608864, + "max_x": 2303.005788864055, + "max_y": 5234.11594608864, + "center": [ + 2301.551197785891, + 5234.11594608864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.005788864055, + 5234.11594608864 + ], + [ + 2300.096606707727, + 5234.11594608864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560E9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5231.206763932313, + "max_x": 2300.096606707727, + "max_y": 5234.11594608864, + "center": [ + 2300.096606707727, + 5232.661355010477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.096606707727, + 5231.206763932313 + ], + [ + 2300.096606707727, + 5234.11594608864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560EA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.005788864055, + "min_y": 5234.11594608864, + "max_x": 2305.914971020383, + "max_y": 5234.11594608864, + "center": [ + 2304.460379942219, + 5234.11594608864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.005788864055, + 5234.11594608864 + ], + [ + 2305.914971020383, + 5234.11594608864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560EB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.914971020383, + "min_y": 5231.206763932313, + "max_x": 2305.914971020383, + "max_y": 5234.11594608864, + "center": [ + 2305.914971020383, + 5232.661355010477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.914971020383, + 5231.206763932313 + ], + [ + 2305.914971020383, + 5234.11594608864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560EC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5228.297581775972, + "max_x": 2303.005788864055, + "max_y": 5228.297581775977, + "center": [ + 2301.551197785891, + 5228.297581775974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.005788864055, + 5228.297581775972 + ], + [ + 2300.096606707727, + 5228.297581775977 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560ED", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5228.297581775977, + "max_x": 2300.096606707727, + "max_y": 5231.2067639323, + "center": [ + 2300.096606707727, + 5229.752172854139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.096606707727, + 5231.2067639323 + ], + [ + 2300.096606707727, + 5228.297581775977 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560EE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.005788864055, + "min_y": 5228.297581775972, + "max_x": 2305.914971020383, + "max_y": 5228.297581775977, + "center": [ + 2304.460379942219, + 5228.297581775974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.005788864055, + 5228.297581775972 + ], + [ + 2305.914971020383, + 5228.297581775977 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560EF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.914971020383, + "min_y": 5228.297581775977, + "max_x": 2305.914971020383, + "max_y": 5231.2067639323, + "center": [ + 2305.914971020383, + 5229.752172854139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.914971020383, + 5231.2067639323 + ], + [ + 2305.914971020383, + 5228.297581775977 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.00611659049, + "min_y": 5268.984779550805, + "max_x": 2251.915298746817, + "max_y": 5268.984779550814, + "center": [ + 2250.4607076686534, + 5268.984779550809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5268.984779550814 + ], + [ + 2249.00611659049, + 5268.984779550805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.00611659049, + "min_y": 5266.075597394483, + "max_x": 2249.00611659049, + "max_y": 5268.984779550805, + "center": [ + 2249.00611659049, + 5267.530188472644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2249.00611659049, + 5266.075597394483 + ], + [ + 2249.00611659049, + 5268.984779550805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2251.915298746817, + "min_y": 5268.984779550805, + "max_x": 2254.824480903144, + "max_y": 5268.984779550814, + "center": [ + 2253.3698898249804, + 5268.984779550809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5268.984779550814 + ], + [ + 2254.824480903144, + 5268.984779550805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.824480903144, + "min_y": 5266.075597394483, + "max_x": 2254.824480903144, + "max_y": 5268.984779550805, + "center": [ + 2254.824480903144, + 5267.530188472644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2254.824480903144, + 5266.075597394483 + ], + [ + 2254.824480903144, + 5268.984779550805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.00611659049, + "min_y": 5263.166415238152, + "max_x": 2251.915298746817, + "max_y": 5263.166415238152, + "center": [ + 2250.4607076686534, + 5263.166415238152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5263.166415238152 + ], + [ + 2249.00611659049, + 5263.166415238152 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2251.915298746817, + "min_y": 5263.166415238152, + "max_x": 2254.824480903144, + "max_y": 5263.166415238152, + "center": [ + 2253.3698898249804, + 5263.166415238152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2251.915298746817, + 5263.166415238152 + ], + [ + 2254.824480903144, + 5263.166415238152 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.824480903144, + "min_y": 5263.166415238152, + "max_x": 2254.824480903144, + "max_y": 5266.075597394473, + "center": [ + 2254.824480903144, + 5264.621006316313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2254.824480903144, + 5266.075597394473 + ], + [ + 2254.824480903144, + 5263.166415238152 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5239.031764403119, + "max_x": 2285.779382402508, + "max_y": 5239.031764403119, + "center": [ + 2285.2306111230414, + 5239.031764403119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.681839843575, + 5239.031764403119 + ], + [ + 2285.779382402508, + 5239.031764403119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759634, + "min_y": 5274.095186462815, + "max_x": 2271.837226032519, + "max_y": 5274.095186462815, + "center": [ + 2271.4287033960763, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.020180759634, + 5274.095186462815 + ], + [ + 2271.837226032519, + 5274.095186462815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.527615570995, + "min_y": 5274.095186462815, + "max_x": 2275.283076858675, + "max_y": 5274.095186462815, + "center": [ + 2274.905346214835, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.527615570995, + 5274.095186462815 + ], + [ + 2275.283076858675, + 5274.095186462815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560FA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.006116590516, + "min_y": 5263.166415238152, + "max_x": 2249.006116590516, + "max_y": 5266.075597394473, + "center": [ + 2249.006116590516, + 5264.621006316313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2249.006116590516, + 5266.075597394473 + ], + [ + 2249.006116590516, + 5263.166415238152 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5560FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.527615570995, + "min_y": 5274.095186462815, + "max_x": 2276.532208318614, + "max_y": 5274.095186462815, + "center": [ + 2275.5299119448046, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.532208318614, + 5274.095186462815 + ], + [ + 2274.527615570995, + 5274.095186462815 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5560FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.483802146614, + "min_y": 5273.546415183348, + "max_x": 2274.09896184658, + "max_y": 5273.914736905034, + "center": [ + 2273.791381996597, + 5273.7305760441905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.09896184658, + 5273.546415183348 + ], + [ + 2273.483802146614, + 5273.914736905034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5274.275636020593, + "max_x": 2272.881039456896, + "max_y": 5274.643957742282, + "center": [ + 2272.5734596069133, + 5274.459796881438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.881039456896, + 5274.275636020593 + ], + [ + 2272.265879756931, + 5274.643957742282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.09896184658, + "min_y": 5273.546415183348, + "max_x": 2274.09896184658, + "max_y": 5274.643957742282, + "center": [ + 2274.09896184658, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.09896184658, + 5274.643957742282 + ], + [ + 2274.09896184658, + 5273.546415183348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5560FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5273.546415183348, + "max_x": 2272.265879756931, + "max_y": 5274.643957742282, + "center": [ + 2272.265879756931, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756931, + 5274.643957742282 + ], + [ + 2272.265879756931, + 5273.546415183348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.483802146614, + "min_y": 5274.275636020593, + "max_x": 2274.09896184658, + "max_y": 5274.643957742282, + "center": [ + 2273.791381996597, + 5274.459796881438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.09896184658, + 5274.643957742282 + ], + [ + 2273.483802146614, + 5274.275636020593 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5273.546415183348, + "max_x": 2272.881039456896, + "max_y": 5273.914736905037, + "center": [ + 2272.5734596069133, + 5273.730576044192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.881039456896, + 5273.914736905037 + ], + [ + 2272.265879756931, + 5273.546415183348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556102", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.837226032519, + "min_y": 5273.526124116568, + "max_x": 2271.837226032519, + "max_y": 5274.664248809068, + "center": [ + 2271.837226032519, + 5274.095186462819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.837226032519, + 5274.664248809068 + ], + [ + 2271.837226032519, + 5273.526124116568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.527615570995, + "min_y": 5273.526124116568, + "max_x": 2274.527615570995, + "max_y": 5274.664248809068, + "center": [ + 2274.527615570995, + 5274.095186462819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.527615570995, + 5274.664248809068 + ], + [ + 2274.527615570995, + 5273.526124116568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5276.663423340829, + "max_x": 2261.919862426123, + "max_y": 5276.663423340834, + "center": [ + 2261.0884327530525, + 5276.663423340831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5276.663423340829 + ], + [ + 2260.257003079982, + 5276.663423340834 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556105", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2250.892692054874, + "min_y": 5253.868491846755, + "max_x": 2252.460177179611, + "max_y": 5255.174729450703, + "center": [ + 2251.676434617242, + 5254.52161064873 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556106", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.943769379384, + "min_y": 5263.051462135528, + "max_x": 2271.837226032524, + "max_y": 5263.05146213553, + "center": [ + 2270.8904977059537, + 5263.051462135529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.943769379384, + 5263.051462135528 + ], + [ + 2271.837226032524, + 5263.05146213553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556107", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2274.527615571, + "min_y": 5263.049645281251, + "max_x": 2285.23061112304, + "max_y": 5263.049645281251, + "center": [ + 2279.87911334702, + 5263.049645281251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.23061112304, + 5263.049645281251 + ], + [ + 2274.527615571, + 5263.049645281251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556108", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2263.799865923105, + "min_y": 5264.426958953141, + "max_x": 2268.651995676905, + "max_y": 5269.279088706942, + "center": [ + 2266.225930800005, + 5266.853023830042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5266.853023830042 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556109", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5269.279088706941, + "max_x": 2266.225930800005, + "max_y": 5270.272122177946, + "center": [ + 2266.225930800005, + 5269.7756054424435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5269.279088706941 + ], + [ + 2266.225930800005, + 5270.272122177946 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55610A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5272.96251171642, + "max_x": 2266.225930800005, + "max_y": 5273.372473179211, + "center": [ + 2266.225930800005, + 5273.167492447816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5272.96251171642 + ], + [ + 2266.225930800005, + 5273.372473179211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55610B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5263.707863768113, + "max_x": 2266.225930800008, + "max_y": 5264.426958953141, + "center": [ + 2266.2259308000066, + 5264.067411360627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5264.426958953141 + ], + [ + 2266.225930800008, + 5263.707863768113 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55610C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5260.499093677257, + "max_x": 2266.225930800008, + "max_y": 5261.017474229642, + "center": [ + 2266.2259308000066, + 5260.75828395345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800008, + 5261.017474229642 + ], + [ + 2266.225930800005, + 5260.499093677257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55610D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696861, + "min_y": 5273.372473179211, + "max_x": 2266.63983490315, + "max_y": 5273.372473179211, + "center": [ + 2266.2259308000057, + 5273.372473179211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.812026696861, + 5273.372473179211 + ], + [ + 2266.63983490315, + 5273.372473179211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55610E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696861, + "min_y": 5273.691012868265, + "max_x": 2266.63983490315, + "max_y": 5273.691012868265, + "center": [ + 2266.2259308000057, + 5273.691012868265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.812026696861, + 5273.691012868265 + ], + [ + 2266.63983490315, + 5273.691012868265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55610F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696861, + "min_y": 5273.372473179211, + "max_x": 2266.225930800005, + "max_y": 5273.691012868265, + "center": [ + 2266.018978748433, + 5273.531743023737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5273.691012868265 + ], + [ + 2265.812026696861, + 5273.372473179211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556110", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5273.372473179211, + "max_x": 2266.63983490315, + "max_y": 5273.691012868265, + "center": [ + 2266.4328828515772, + 5273.531743023737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5273.691012868265 + ], + [ + 2266.63983490315, + 5273.372473179211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556111", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2265.7414359248396, + "min_y": 5272.954687340753, + "max_x": 2266.71042567517, + "max_y": 5273.923677091083, + "center": [ + 2266.225930800005, + 5273.439182215918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5273.439182215918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556112", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2265.7414359248396, + "min_y": 5259.947889765379, + "max_x": 2266.71042567517, + "max_y": 5260.916879515709, + "center": [ + 2266.225930800005, + 5260.432384640544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5260.432384640544 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556113", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696863, + "min_y": 5260.180553988198, + "max_x": 2266.639834903152, + "max_y": 5260.180553988198, + "center": [ + 2266.2259308000075, + 5260.180553988198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.812026696863, + 5260.180553988198 + ], + [ + 2266.639834903152, + 5260.180553988198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556114", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.225930800005, + "min_y": 5260.180553988198, + "max_x": 2266.639834903152, + "max_y": 5260.499093677257, + "center": [ + 2266.432882851578, + 5260.339823832728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5260.180553988198 + ], + [ + 2266.639834903152, + 5260.499093677257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556115", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696863, + "min_y": 5260.499093677257, + "max_x": 2266.639834903152, + "max_y": 5260.499093677257, + "center": [ + 2266.2259308000075, + 5260.499093677257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.812026696863, + 5260.499093677257 + ], + [ + 2266.639834903152, + 5260.499093677257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556116", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.812026696863, + "min_y": 5260.180553988198, + "max_x": 2266.225930800005, + "max_y": 5260.499093677257, + "center": [ + 2266.018978748434, + 5260.339823832728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5260.180553988198 + ], + [ + 2265.812026696863, + 5260.499093677257 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556117", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5276.626614577134, + "max_x": 2274.680088808278, + "max_y": 5277.60704890865, + "center": [ + 2274.680088808278, + 5277.116831742892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5276.626614577134 + ], + [ + 2274.680088808278, + 5277.60704890865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556118", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5280.093324692344, + "max_x": 2274.680088808278, + "max_y": 5281.888034838766, + "center": [ + 2274.680088808278, + 5280.990679765555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5280.093324692344 + ], + [ + 2274.680088808278, + 5281.888034838766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556119", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5282.777260853835, + "max_x": 2274.680088808278, + "max_y": 5283.283881693535, + "center": [ + 2274.680088808278, + 5283.0305712736845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5282.777260853835 + ], + [ + 2274.680088808278, + 5283.283881693535 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55611A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2274.3288157550387, + "min_y": 5278.4989137472585, + "max_x": 2275.0313618615173, + "max_y": 5279.201459853737, + "center": [ + 2274.680088808278, + 5278.850186800498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5278.850186800498 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55611B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5280.093324692344, + "max_x": 2275.228860087745, + "max_y": 5280.093324692344, + "center": [ + 2274.680088808277, + 5280.093324692344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5280.093324692344 + ], + [ + 2275.228860087745, + 5280.093324692344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55611C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5277.60704890865, + "max_x": 2275.228860087745, + "max_y": 5277.60704890865, + "center": [ + 2274.680088808277, + 5277.60704890865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5277.60704890865 + ], + [ + 2275.228860087745, + 5277.60704890865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55611D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.615864376402, + "min_y": 5286.567633952785, + "max_x": 2275.183349501139, + "max_y": 5287.873871556733, + "center": [ + 2274.3996069387704, + 5287.22075275476 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55611E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2271.823002099325, + "min_y": 5283.283881693541, + "max_x": 2277.537175517231, + "max_y": 5288.998055111447, + "center": [ + 2274.680088808278, + 5286.140968402494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5286.140968402494 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55611F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2272.337805390456, + "min_y": 5277.851612488562, + "max_x": 2277.0223722261, + "max_y": 5282.5361793242055, + "center": [ + 2274.680088808278, + 5280.193895906384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5280.193895906384 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556120", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5281.012950439581, + "max_x": 2276.061837478795, + "max_y": 5281.012950439587, + "center": [ + 2275.3709631435368, + 5281.0129504395845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5281.012950439587 + ], + [ + 2276.061837478795, + 5281.012950439581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556121", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5276.626614577134, + "max_x": 2271.837226032519, + "max_y": 5276.626614577134, + "center": [ + 2271.428703396078, + 5276.626614577134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.020180759637, + 5276.626614577134 + ], + [ + 2271.837226032519, + 5276.626614577134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556122", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5276.626614577134, + "max_x": 2274.680088808278, + "max_y": 5276.626614577134, + "center": [ + 2273.4729842826046, + 5276.626614577134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756931, + 5276.626614577134 + ], + [ + 2274.680088808278, + 5276.626614577134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556123", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.334302889281, + "min_y": 5231.206763932313, + "max_x": 2305.862875573009, + "max_y": 5231.206763932313, + "center": [ + 2305.598589231145, + 5231.206763932313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.334302889281, + 5231.206763932313 + ], + [ + 2305.862875573009, + 5231.206763932313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556124", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.828349355569, + "min_y": 5276.114652061368, + "max_x": 2259.828349355569, + "max_y": 5277.2121946203, + "center": [ + 2259.828349355569, + 5276.663423340834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.828349355569, + 5277.2121946203 + ], + [ + 2259.828349355569, + 5276.114652061368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556125", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5276.094360994584, + "max_x": 2260.257003079982, + "max_y": 5277.232485687084, + "center": [ + 2260.257003079982, + 5276.663423340834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.257003079982, + 5277.232485687084 + ], + [ + 2260.257003079982, + 5276.094360994584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556126", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2272.8311477485177, + "min_y": 5273.743913409576, + "max_x": 2273.5336938549963, + "max_y": 5274.446459516054, + "center": [ + 2273.182420801757, + 5274.095186462815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.182420801757, + 5274.095186462815 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556127", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5270.700775902358, + "max_x": 2266.045481242227, + "max_y": 5271.315935602326, + "center": [ + 2265.861320381384, + 5271.008355752342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.677159520541, + 5270.700775902358 + ], + [ + 2266.045481242227, + 5271.315935602326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556128", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.406380357783, + "min_y": 5271.918698292044, + "max_x": 2266.774702079472, + "max_y": 5272.53385799201, + "center": [ + 2266.5905412186275, + 5272.226278142027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.406380357783, + 5271.918698292044 + ], + [ + 2266.774702079472, + 5272.53385799201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556129", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5270.700775902358, + "max_x": 2266.774702079472, + "max_y": 5270.700775902358, + "center": [ + 2266.2259308000066, + 5270.700775902358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5270.700775902358 + ], + [ + 2265.677159520541, + 5270.700775902358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5272.53385799201, + "max_x": 2266.774702079472, + "max_y": 5272.53385799201, + "center": [ + 2266.2259308000066, + 5272.53385799201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5272.53385799201 + ], + [ + 2265.677159520541, + 5272.53385799201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.406380357786, + "min_y": 5270.700775902358, + "max_x": 2266.774702079472, + "max_y": 5271.315935602326, + "center": [ + 2266.590541218629, + 5271.008355752342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5270.700775902358 + ], + [ + 2266.406380357786, + 5271.315935602326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5271.918698292042, + "max_x": 2266.045481242224, + "max_y": 5272.53385799201, + "center": [ + 2265.8613203813825, + 5272.226278142026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.045481242224, + 5271.918698292042 + ], + [ + 2265.677159520541, + 5272.53385799201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5272.96251171642, + "max_x": 2266.794993146256, + "max_y": 5272.96251171642, + "center": [ + 2266.2259308000057, + 5272.96251171642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.794993146256, + 5272.96251171642 + ], + [ + 2265.656868453755, + 5272.96251171642 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5270.272122177946, + "max_x": 2266.794993146256, + "max_y": 5270.272122177946, + "center": [ + 2266.2259308000057, + 5270.272122177946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.794993146256, + 5270.272122177946 + ], + [ + 2265.656868453755, + 5270.272122177946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55612F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2265.8746577467655, + "min_y": 5271.266043893943, + "max_x": 2266.577203853244, + "max_y": 5271.9685900004215, + "center": [ + 2266.225930800005, + 5271.617316947182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5271.617316947182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556130", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5261.446127954052, + "max_x": 2266.045481242227, + "max_y": 5262.061287654013, + "center": [ + 2265.861320381384, + 5261.753707804032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.677159520541, + 5261.446127954052 + ], + [ + 2266.045481242227, + 5262.061287654013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556131", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.406380357783, + "min_y": 5262.664050343735, + "max_x": 2266.774702079472, + "max_y": 5263.279210043701, + "center": [ + 2266.5905412186275, + 5262.971630193718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.406380357783, + 5262.664050343735 + ], + [ + 2266.774702079472, + 5263.279210043701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556132", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5261.446127954052, + "max_x": 2266.774702079472, + "max_y": 5261.446127954052, + "center": [ + 2266.2259308000066, + 5261.446127954052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5261.446127954052 + ], + [ + 2265.677159520541, + 5261.446127954052 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556133", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5263.279210043701, + "max_x": 2266.774702079472, + "max_y": 5263.279210043701, + "center": [ + 2266.2259308000066, + 5263.279210043701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5263.279210043701 + ], + [ + 2265.677159520541, + 5263.279210043701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556134", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.406380357786, + "min_y": 5261.446127954052, + "max_x": 2266.774702079472, + "max_y": 5262.061287654013, + "center": [ + 2266.590541218629, + 5261.753707804032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.774702079472, + 5261.446127954052 + ], + [ + 2266.406380357786, + 5262.061287654013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556135", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.677159520541, + "min_y": 5262.664050343733, + "max_x": 2266.045481242224, + "max_y": 5263.279210043701, + "center": [ + 2265.8613203813825, + 5262.971630193717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.045481242224, + 5262.664050343733 + ], + [ + 2265.677159520541, + 5263.279210043701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556136", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5263.707863768113, + "max_x": 2266.794993146256, + "max_y": 5263.707863768113, + "center": [ + 2266.2259308000057, + 5263.707863768113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.794993146256, + 5263.707863768113 + ], + [ + 2265.656868453755, + 5263.707863768113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556137", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.656868453755, + "min_y": 5261.017474229636, + "max_x": 2266.794993146256, + "max_y": 5261.017474229636, + "center": [ + 2266.2259308000057, + 5261.017474229636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.794993146256, + 5261.017474229636 + ], + [ + 2265.656868453755, + 5261.017474229636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556138", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2265.8746577467655, + "min_y": 5262.011395945638, + "max_x": 2266.577203853244, + "max_y": 5262.713942052116, + "center": [ + 2266.225930800005, + 5262.362668998877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.225930800005, + 5262.362668998877 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556139", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2298.680621679622, + "min_y": 5220.522982028962, + "max_x": 2298.680747546638, + "max_y": 5220.522982028962, + "center": [ + 2298.6806846131303, + 5220.522982028962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.680747546638, + 5220.522982028962 + ], + [ + 2298.680621679622, + 5220.522982028962 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55613A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5282.777260853835, + "max_x": 2275.635092341727, + "max_y": 5282.777260853835, + "center": [ + 2274.6800888082785, + 5282.777260853835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.72508527483, + 5282.777260853835 + ], + [ + 2275.635092341727, + 5282.777260853835 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55613B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.635092341727, + "min_y": 5281.888034838766, + "max_x": 2275.635092341727, + "max_y": 5282.777260853835, + "center": [ + 2275.635092341727, + 5282.3326478463005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.635092341727, + 5282.777260853835 + ], + [ + 2275.635092341727, + 5281.888034838766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55613C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5281.888034838766, + "max_x": 2275.635092341727, + "max_y": 5281.888034838766, + "center": [ + 2274.6800888082785, + 5281.888034838766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.635092341727, + 5281.888034838766 + ], + [ + 2273.72508527483, + 5281.888034838766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55613D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5281.888034838766, + "max_x": 2273.72508527483, + "max_y": 5282.777260853835, + "center": [ + 2273.72508527483, + 5282.3326478463005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.72508527483, + 5281.888034838766 + ], + [ + 2273.72508527483, + 5282.777260853835 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55613E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5277.933645755673, + "max_x": 2274.499639250498, + "max_y": 5278.548805455637, + "center": [ + 2274.3154783896534, + 5278.241225605655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.499639250498, + 5278.548805455637 + ], + [ + 2274.131317528809, + 5277.933645755673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55613F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5277.933645755673, + "max_x": 2275.228860087745, + "max_y": 5277.933645755673, + "center": [ + 2274.680088808277, + 5277.933645755673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5277.933645755673 + ], + [ + 2275.228860087745, + 5277.933645755673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556140", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.860538366059, + "min_y": 5277.933645755673, + "max_x": 2275.228860087745, + "max_y": 5278.548805455637, + "center": [ + 2275.0446992269017, + 5278.241225605655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.228860087745, + 5277.933645755673 + ], + [ + 2274.860538366059, + 5278.548805455637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556141", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5279.151568145358, + "max_x": 2274.499639250498, + "max_y": 5279.76672784532, + "center": [ + 2274.3154783896534, + 5279.45914799534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.499639250498, + 5279.151568145358 + ], + [ + 2274.131317528809, + 5279.76672784532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556142", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5279.76672784532, + "max_x": 2275.228860087745, + "max_y": 5279.76672784532, + "center": [ + 2274.680088808277, + 5279.76672784532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5279.76672784532 + ], + [ + 2275.228860087745, + 5279.76672784532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556143", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.860538366056, + "min_y": 5279.151568145358, + "max_x": 2275.228860087745, + "max_y": 5279.76672784532, + "center": [ + 2275.044699226901, + 5279.45914799534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.228860087745, + 5279.76672784532 + ], + [ + 2274.860538366056, + 5279.151568145358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556144", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5238.088191001848, + "max_x": 2285.050161565261, + "max_y": 5238.703350701812, + "center": [ + 2284.866000704418, + 5238.39577085183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.050161565261, + 5238.088191001848 + ], + [ + 2284.681839843575, + 5238.703350701812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556145", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5238.703350701812, + "max_x": 2285.779382402505, + "max_y": 5238.703350701812, + "center": [ + 2285.23061112304, + 5238.703350701812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.681839843575, + 5238.703350701812 + ], + [ + 2285.779382402505, + 5238.703350701812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556146", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.411060680817, + "min_y": 5238.088191001848, + "max_x": 2285.779382402505, + "max_y": 5238.703350701812, + "center": [ + 2285.595221541661, + 5238.39577085183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.779382402505, + 5238.703350701812 + ], + [ + 2285.411060680817, + 5238.088191001848 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556147", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.846351753707, + "min_y": 5227.216065455364, + "max_x": 2316.15897408259, + "max_y": 5227.216065455364, + "center": [ + 2314.5026629181484, + 5227.216065455364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.846351753707, + 5227.216065455364 + ], + [ + 2316.15897408259, + 5227.216065455364 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.15897408259, + "min_y": 5225.656315934381, + "max_x": 2316.15897408259, + "max_y": 5227.216065455364, + "center": [ + 2316.15897408259, + 5226.4361906948725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.15897408259, + 5227.216065455364 + ], + [ + 2316.15897408259, + 5225.656315934381 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556149", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.846351753707, + "min_y": 5225.656315934381, + "max_x": 2316.15897408259, + "max_y": 5225.656315934381, + "center": [ + 2314.5026629181484, + 5225.656315934381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.15897408259, + 5225.656315934381 + ], + [ + 2312.846351753707, + 5225.656315934381 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55614A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.846351753707, + "min_y": 5225.656315934381, + "max_x": 2312.846351753707, + "max_y": 5227.216065455364, + "center": [ + 2312.846351753707, + 5226.4361906948725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.846351753707, + 5225.656315934381 + ], + [ + 2312.846351753707, + 5227.216065455364 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55614B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.748102147858, + "min_y": 5219.647613902487, + "max_x": 2304.748102147858, + "max_y": 5221.398350155457, + "center": [ + 2304.748102147858, + 5220.5229820289715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.748102147858, + 5221.398350155457 + ], + [ + 2304.748102147858, + 5219.647613902487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55614C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2301.264831748351, + "min_y": 5219.647613902487, + "max_x": 2304.748102147858, + "max_y": 5219.647613902487, + "center": [ + 2303.0064669481044, + 5219.647613902487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.748102147858, + 5219.647613902487 + ], + [ + 2301.264831748351, + 5219.647613902487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55614D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2301.264831748351, + "min_y": 5219.647613902487, + "max_x": 2301.264831748351, + "max_y": 5221.398350155457, + "center": [ + 2301.264831748351, + 5220.5229820289715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2301.264831748351, + 5219.647613902487 + ], + [ + 2301.264831748351, + 5221.398350155457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55614E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2301.264831748351, + "min_y": 5221.398350155457, + "max_x": 2304.748102147858, + "max_y": 5221.398350155457, + "center": [ + 2303.0064669481044, + 5221.398350155457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2301.264831748351, + 5221.398350155457 + ], + [ + 2304.748102147858, + 5221.398350155457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55614F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.219835159914, + "min_y": 5207.651185836093, + "max_x": 2268.219835159914, + "max_y": 5208.761042851044, + "center": [ + 2268.219835159914, + 5208.2061143435685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.219835159914, + 5208.761042851044 + ], + [ + 2268.219835159914, + 5207.651185836093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556150", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.219835159914, + "min_y": 5208.386563901349, + "max_x": 2268.834994859879, + "max_y": 5208.754885623033, + "center": [ + 2268.5274150098967, + 5208.570724762191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.834994859879, + 5208.386563901349 + ], + [ + 2268.219835159914, + 5208.754885623033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556151", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.219835159914, + "min_y": 5207.657343064105, + "max_x": 2268.219835159914, + "max_y": 5208.754885623033, + "center": [ + 2268.219835159914, + 5208.206114343569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.219835159914, + 5208.754885623033 + ], + [ + 2268.219835159914, + 5207.657343064105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556152", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.219835159914, + "min_y": 5207.657343064105, + "max_x": 2268.834994859879, + "max_y": 5208.025664785793, + "center": [ + 2268.5274150098967, + 5207.8415039249485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.219835159914, + 5207.657343064105 + ], + [ + 2268.834994859879, + 5208.025664785793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556153", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5204.423961937514, + "max_x": 2274.3087502496, + "max_y": 5205.039121637476, + "center": [ + 2274.1245893887576, + 5204.731541787494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.3087502496, + 5205.039121637476 + ], + [ + 2273.940428527915, + 5204.423961937514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556154", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5204.423961937514, + "max_x": 2275.037971086847, + "max_y": 5204.423961937514, + "center": [ + 2274.489199807381, + 5204.423961937514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.940428527915, + 5204.423961937514 + ], + [ + 2275.037971086847, + 5204.423961937514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556155", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.669649365161, + "min_y": 5204.423961937514, + "max_x": 2275.037971086847, + "max_y": 5205.039121637476, + "center": [ + 2274.853810226004, + 5204.731541787494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.037971086847, + 5204.423961937514 + ], + [ + 2274.669649365161, + 5205.039121637476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556156", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5205.641884327198, + "max_x": 2274.308750249602, + "max_y": 5206.25704402716, + "center": [ + 2274.1245893887585, + 5205.949464177179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.308750249602, + 5205.641884327198 + ], + [ + 2273.940428527915, + 5206.25704402716 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556157", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.940428527915, + "min_y": 5206.25704402716, + "max_x": 2275.037971086847, + "max_y": 5206.25704402716, + "center": [ + 2274.489199807381, + 5206.25704402716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.940428527915, + 5206.25704402716 + ], + [ + 2275.037971086847, + 5206.25704402716 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556158", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.669649365161, + "min_y": 5205.641884327198, + "max_x": 2275.037971086847, + "max_y": 5206.25704402716, + "center": [ + 2274.853810226004, + 5205.949464177179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.037971086847, + 5206.25704402716 + ], + [ + 2274.669649365161, + 5205.641884327198 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556159", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.706110943606, + "min_y": 5208.206114343568, + "max_x": 2273.507968237844, + "max_y": 5208.206114343568, + "center": [ + 2272.107039590725, + 5208.206114343568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.507968237844, + 5208.206114343568 + ], + [ + 2270.706110943606, + 5208.206114343568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.052917249563, + "min_y": 5207.651185836093, + "max_x": 2270.052917249563, + "max_y": 5208.761042851044, + "center": [ + 2270.052917249563, + 5208.2061143435685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.052917249563, + 5208.761042851044 + ], + [ + 2270.052917249563, + 5207.651185836093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.379514096587, + "min_y": 5207.651185836093, + "max_x": 2270.379514096587, + "max_y": 5208.761042851044, + "center": [ + 2270.379514096587, + 5208.2061143435685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.379514096587, + 5208.761042851044 + ], + [ + 2270.379514096587, + 5207.651185836093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.843182715414, + "min_y": 5207.096257328617, + "max_x": 2272.953039730368, + "max_y": 5208.206114343568, + "center": [ + 2272.398111222891, + 5207.651185836092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.843182715414, + 5208.206114343568 + ], + [ + 2272.953039730368, + 5207.096257328617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.675575476626, + "min_y": 5206.818793074876, + "max_x": 2273.230503984107, + "max_y": 5207.37372158236, + "center": [ + 2272.9530397303665, + 5207.096257328618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.230503984107, + 5207.37372158236 + ], + [ + 2272.675575476626, + 5206.818793074876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.437757549595, + "min_y": 5208.386563901349, + "max_x": 2270.052917249563, + "max_y": 5208.754885623033, + "center": [ + 2269.745337399579, + 5208.570724762191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.437757549595, + 5208.386563901349 + ], + [ + 2270.052917249563, + 5208.754885623033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55615F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.052917249563, + "min_y": 5207.657343064105, + "max_x": 2270.052917249563, + "max_y": 5208.754885623033, + "center": [ + 2270.052917249563, + 5208.206114343569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.052917249563, + 5208.754885623033 + ], + [ + 2270.052917249563, + 5207.657343064105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556160", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.437757549595, + "min_y": 5207.657343064105, + "max_x": 2270.052917249563, + "max_y": 5208.025664785793, + "center": [ + 2269.745337399579, + 5207.8415039249485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.052917249563, + 5207.657343064105 + ], + [ + 2269.437757549595, + 5208.025664785793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556161", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2278.764541440044, + "min_y": 5207.988743570251, + "max_x": 2279.1956492781183, + "max_y": 5208.4198514083255, + "center": [ + 2278.980095359081, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.980095359081, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556162", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2278.333433601975, + "min_y": 5207.988743570254, + "max_x": 2278.7645414400436, + "max_y": 5208.419851408323, + "center": [ + 2278.548987521009, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.548987521009, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556163", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2277.9023257639046, + "min_y": 5207.988743570254, + "max_x": 2278.3334336019734, + "max_y": 5208.419851408323, + "center": [ + 2278.117879682939, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.117879682939, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556164", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2277.9023257639024, + "min_y": 5207.988743570251, + "max_x": 2278.3334336019757, + "max_y": 5208.4198514083255, + "center": [ + 2278.117879682939, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.117879682939, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556165", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2277.4712179258336, + "min_y": 5207.988743570254, + "max_x": 2277.9023257639024, + "max_y": 5208.419851408323, + "center": [ + 2277.686771844868, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.686771844868, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556166", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2277.0401100877607, + "min_y": 5207.988743570251, + "max_x": 2277.471217925835, + "max_y": 5208.4198514083255, + "center": [ + 2277.255664006798, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.255664006798, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556167", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2276.6090022496896, + "min_y": 5207.988743570254, + "max_x": 2277.0401100877584, + "max_y": 5208.419851408323, + "center": [ + 2276.824556168724, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.824556168724, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556168", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2276.1778944116227, + "min_y": 5207.988743570254, + "max_x": 2276.6090022496915, + "max_y": 5208.419851408323, + "center": [ + 2276.393448330657, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.393448330657, + 5208.204297489288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556169", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5236.870268612161, + "max_x": 2285.050161565261, + "max_y": 5237.485428312129, + "center": [ + 2284.866000704418, + 5237.177848462145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.050161565261, + 5237.485428312129 + ], + [ + 2284.681839843575, + 5236.870268612161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.681839843575, + "min_y": 5236.870268612161, + "max_x": 2285.779382402505, + "max_y": 5236.870268612161, + "center": [ + 2285.23061112304, + 5236.870268612161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.681839843575, + 5236.870268612161 + ], + [ + 2285.779382402505, + 5236.870268612161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.41106068082, + "min_y": 5236.870268612161, + "max_x": 2285.779382402505, + "max_y": 5237.485428312129, + "center": [ + 2285.5952215416623, + 5237.177848462145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.779382402505, + 5236.870268612161 + ], + [ + 2285.41106068082, + 5237.485428312129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.459870647224, + "min_y": 5213.987890113569, + "max_x": 2316.459870647224, + "max_y": 5215.09774712852, + "center": [ + 2316.459870647224, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.459870647224, + 5215.09774712852 + ], + [ + 2316.459870647224, + 5213.987890113569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.786467494245, + "min_y": 5213.987890113569, + "max_x": 2316.786467494245, + "max_y": 5215.09774712852, + "center": [ + 2316.786467494245, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.786467494245, + 5215.09774712852 + ], + [ + 2316.786467494245, + 5213.987890113569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.300191710556, + "min_y": 5213.989706967849, + "max_x": 2314.300191710556, + "max_y": 5215.099563982801, + "center": [ + 2314.300191710556, + 5214.544635475325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.300191710556, + 5215.099563982801 + ], + [ + 2314.300191710556, + 5213.989706967849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55616F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.300191710556, + "min_y": 5213.989706967849, + "max_x": 2314.300191710556, + "max_y": 5215.099563982801, + "center": [ + 2314.300191710556, + 5214.544635475325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.300191710556, + 5215.099563982801 + ], + [ + 2314.300191710556, + 5213.989706967849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556170", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.626788557575, + "min_y": 5214.723268178826, + "max_x": 2315.24194825754, + "max_y": 5215.091589900513, + "center": [ + 2314.9343684075575, + 5214.907429039669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.24194825754, + 5214.723268178826 + ], + [ + 2314.626788557575, + 5215.091589900513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556171", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.626788557575, + "min_y": 5213.994047341575, + "max_x": 2314.626788557575, + "max_y": 5215.091589900513, + "center": [ + 2314.626788557575, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.626788557575, + 5215.091589900513 + ], + [ + 2314.626788557575, + 5213.994047341575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556172", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.626788557575, + "min_y": 5213.994047341575, + "max_x": 2315.24194825754, + "max_y": 5214.362369063263, + "center": [ + 2314.9343684075575, + 5214.178208202419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.626788557575, + 5213.994047341575 + ], + [ + 2315.24194825754, + 5214.362369063263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556173", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.844710947259, + "min_y": 5214.723268178826, + "max_x": 2316.459870647224, + "max_y": 5215.091589900513, + "center": [ + 2316.152290797241, + 5214.907429039669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.844710947259, + 5214.723268178826 + ], + [ + 2316.459870647224, + 5215.091589900513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556174", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.459870647224, + "min_y": 5213.994047341575, + "max_x": 2316.459870647224, + "max_y": 5215.091589900513, + "center": [ + 2316.459870647224, + 5214.542818621045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.459870647224, + 5215.091589900513 + ], + [ + 2316.459870647224, + 5213.994047341575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556175", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.844710947259, + "min_y": 5213.994047341575, + "max_x": 2316.459870647224, + "max_y": 5214.362369063263, + "center": [ + 2316.152290797241, + 5214.178208202419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.459870647224, + 5213.994047341575 + ], + [ + 2315.844710947259, + 5214.362369063263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556176", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.361909973674, + "min_y": 5219.968053521493, + "max_x": 2306.361909973674, + "max_y": 5221.07791053645, + "center": [ + 2306.361909973674, + 5220.5229820289715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.361909973674, + 5221.07791053645 + ], + [ + 2306.361909973674, + 5219.968053521493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556177", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.361909973674, + "min_y": 5219.968053521493, + "max_x": 2306.361909973674, + "max_y": 5221.07791053645, + "center": [ + 2306.361909973674, + 5220.5229820289715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.361909973674, + 5221.07791053645 + ], + [ + 2306.361909973674, + 5219.968053521493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556178", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2260.170524853074, + "min_y": 5295.758678955206, + "max_x": 2269.763737610703, + "max_y": 5295.758678955206, + "center": [ + 2264.9671312318887, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.170524853074, + 5295.758678955206 + ], + [ + 2269.763737610703, + 5295.758678955206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556179", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.7637376107, + "min_y": 5295.062582764671, + "max_x": 2270.208429325536, + "max_y": 5295.758678955212, + "center": [ + 2269.986083468118, + 5295.410630859942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.7637376107, + 5295.758678955212 + ], + [ + 2270.208429325536, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.763737610695, + "min_y": 5295.062582764671, + "max_x": 2269.7637376107, + "max_y": 5295.758678955212, + "center": [ + 2269.7637376106977, + 5295.410630859942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.7637376107, + 5295.758678955212 + ], + [ + 2269.763737610695, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.319045895861, + "min_y": 5295.062582764671, + "max_x": 2269.7637376107, + "max_y": 5295.758678955212, + "center": [ + 2269.5413917532805, + 5295.410630859942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.7637376107, + 5295.758678955212 + ], + [ + 2269.319045895861, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.626187536906, + "min_y": 5295.062582764671, + "max_x": 2267.070879251744, + "max_y": 5295.758678955206, + "center": [ + 2266.848533394325, + 5295.4106308599385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.626187536906, + 5295.758678955206 + ], + [ + 2267.070879251744, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.6261875369, + "min_y": 5295.062582764671, + "max_x": 2266.626187536906, + "max_y": 5295.758678955206, + "center": [ + 2266.6261875369028, + 5295.4106308599385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.626187536906, + 5295.758678955206 + ], + [ + 2266.6261875369, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.18149582207, + "min_y": 5295.062582764671, + "max_x": 2266.626187536906, + "max_y": 5295.758678955206, + "center": [ + 2266.403841679488, + 5295.4106308599385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.626187536906, + 5295.758678955206 + ], + [ + 2266.18149582207, + 5295.062582764671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55617F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.194962573769, + "min_y": 5295.062582764636, + "max_x": 2268.639654288607, + "max_y": 5295.758678955174, + "center": [ + 2268.417308431188, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.194962573769, + 5295.758678955174 + ], + [ + 2268.639654288607, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556180", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.194962573764, + "min_y": 5295.062582764636, + "max_x": 2268.194962573769, + "max_y": 5295.758678955174, + "center": [ + 2268.194962573766, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.194962573769, + 5295.758678955174 + ], + [ + 2268.194962573764, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556181", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.750270858931, + "min_y": 5295.062582764636, + "max_x": 2268.194962573769, + "max_y": 5295.758678955174, + "center": [ + 2267.97261671635, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.194962573769, + 5295.758678955174 + ], + [ + 2267.750270858931, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556182", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.488637463128, + "min_y": 5295.062582764704, + "max_x": 2263.933329177966, + "max_y": 5295.758678955238, + "center": [ + 2263.710983320547, + 5295.410630859971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.488637463128, + 5295.758678955238 + ], + [ + 2263.933329177966, + 5295.062582764704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556183", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.488637463125, + "min_y": 5295.062582764704, + "max_x": 2263.488637463128, + "max_y": 5295.758678955238, + "center": [ + 2263.4886374631265, + 5295.410630859971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.488637463128, + 5295.758678955238 + ], + [ + 2263.488637463125, + 5295.062582764704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556184", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.043945748291, + "min_y": 5295.062582764704, + "max_x": 2263.488637463128, + "max_y": 5295.758678955238, + "center": [ + 2263.2662916057097, + 5295.410630859971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.488637463128, + 5295.758678955238 + ], + [ + 2263.043945748291, + 5295.062582764704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556185", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.057412499991, + "min_y": 5295.062582764636, + "max_x": 2265.50210421483, + "max_y": 5295.758678955174, + "center": [ + 2265.2797583574106, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.057412499991, + 5295.758678955174 + ], + [ + 2265.50210421483, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556186", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.057412499985, + "min_y": 5295.062582764636, + "max_x": 2265.057412499991, + "max_y": 5295.758678955174, + "center": [ + 2265.057412499988, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.057412499991, + 5295.758678955174 + ], + [ + 2265.057412499985, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556187", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2264.612720785155, + "min_y": 5295.062582764636, + "max_x": 2265.057412499991, + "max_y": 5295.758678955174, + "center": [ + 2264.835066642573, + 5295.410630859906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.057412499991, + 5295.758678955174 + ], + [ + 2264.612720785155, + 5295.062582764636 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556188", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2316.63845779918, + "min_y": 5227.23136783055, + "max_x": 2320.5571706110227, + "max_y": 5228.537605434498, + "center": [ + 2318.5978142051013, + 5227.8844866325235 + ] + }, + "raw_value": "10216", + "clean_value": "10216", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556189", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.828771368981, + "min_y": 5223.526204139261, + "max_x": 2304.747484180824, + "max_y": 5224.832441743209, + "center": [ + 2302.7881277749025, + 5224.179322941234 + ] + }, + "raw_value": "10216", + "clean_value": "10216", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55618A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2274.358792225346, + "min_y": 5252.92568298903, + "max_x": 2278.277505037189, + "max_y": 5254.231920592978, + "center": [ + 2276.3181486312674, + 5253.578801791004 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55618B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.253349789672, + "min_y": 5264.098956995995, + "max_x": 2253.9558051638833, + "max_y": 5265.405194599943, + "center": [ + 2251.6045774767776, + 5264.752075797969 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55618C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.402237208796, + "min_y": 5289.212370890362, + "max_x": 2274.017396908762, + "max_y": 5289.580692612044, + "center": [ + 2273.7098170587788, + 5289.396531751203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.017396908762, + 5289.212370890362 + ], + [ + 2273.402237208796, + 5289.580692612044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55618D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.184314819112, + "min_y": 5289.941591727607, + "max_x": 2272.799474519078, + "max_y": 5290.309913449295, + "center": [ + 2272.491894669095, + 5290.125752588451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.799474519078, + 5289.941591727607 + ], + [ + 2272.184314819112, + 5290.309913449295 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55618E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.017396908762, + "min_y": 5289.212370890362, + "max_x": 2274.017396908762, + "max_y": 5290.309913449295, + "center": [ + 2274.017396908762, + 5289.761142169828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.017396908762, + 5290.309913449295 + ], + [ + 2274.017396908762, + 5289.212370890362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55618F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.184314819112, + "min_y": 5289.212370890362, + "max_x": 2272.184314819112, + "max_y": 5290.309913449295, + "center": [ + 2272.184314819112, + 5289.761142169828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.184314819112, + 5290.309913449295 + ], + [ + 2272.184314819112, + 5289.212370890362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556190", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.402237208796, + "min_y": 5289.941591727607, + "max_x": 2274.017396908762, + "max_y": 5290.309913449295, + "center": [ + 2273.7098170587788, + 5290.125752588451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.017396908762, + 5290.309913449295 + ], + [ + 2273.402237208796, + 5289.941591727607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556191", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.184314819112, + "min_y": 5289.212370890362, + "max_x": 2272.799474519078, + "max_y": 5289.580692612051, + "center": [ + 2272.491894669095, + 5289.396531751207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.799474519078, + 5289.580692612051 + ], + [ + 2272.184314819112, + 5289.212370890362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556192", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.446050633176, + "min_y": 5289.192079823578, + "max_x": 2274.446050633176, + "max_y": 5290.330204516079, + "center": [ + 2274.446050633176, + 5289.761142169828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.446050633176, + 5290.330204516079 + ], + [ + 2274.446050633176, + 5289.192079823578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556193", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2272.7495828107, + "min_y": 5289.40986911659, + "max_x": 2273.4521289171785, + "max_y": 5290.112415223069, + "center": [ + 2273.100855863939, + 5289.761142169829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.100855863939, + 5289.761142169829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.943769379384, + "min_y": 5261.228241567554, + "max_x": 2269.943769379384, + "max_y": 5263.051462135528, + "center": [ + 2269.943769379384, + 5262.139851851541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.943769379384, + 5263.051462135528 + ], + [ + 2269.943769379384, + 5261.228241567554 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.532208318614, + "min_y": 5247.124036312531, + "max_x": 2276.532208318614, + "max_y": 5251.911225665909, + "center": [ + 2276.532208318614, + 5249.5176309892195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.532208318614, + 5247.124036312531 + ], + [ + 2276.532208318614, + 5251.911225665909 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556196", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.532208318614, + "min_y": 5257.625399083817, + "max_x": 2276.532208318614, + "max_y": 5261.912926528843, + "center": [ + 2276.532208318614, + 5259.769162806329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.532208318614, + 5257.625399083817 + ], + [ + 2276.532208318614, + 5261.912926528843 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556197", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.532208318614, + "min_y": 5264.569329677136, + "max_x": 2276.532208318614, + "max_y": 5274.095186462815, + "center": [ + 2276.532208318614, + 5269.332258069975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.532208318614, + 5264.569329677136 + ], + [ + 2276.532208318614, + 5274.095186462815 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2244.793695241873, + "min_y": 5247.124036312526, + "max_x": 2264.107825024652, + "max_y": 5247.124036312528, + "center": [ + 2254.4507601332625, + 5247.124036312527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2244.793695241873, + 5247.124036312526 + ], + [ + 2264.107825024652, + 5247.124036312528 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.832218161439, + "min_y": 5247.124036312528, + "max_x": 2276.532208318614, + "max_y": 5247.12403631253, + "center": [ + 2272.6822132400266, + 5247.124036312529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.832218161439, + 5247.124036312528 + ], + [ + 2276.532208318614, + 5247.12403631253 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55619A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.253349789672, + "min_y": 5258.384783578087, + "max_x": 2253.9558051638833, + "max_y": 5259.691021182035, + "center": [ + 2251.6045774767776, + 5259.0379023800615 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55619B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.253331205979, + "min_y": 5251.311146556356, + "max_x": 2253.9557865801903, + "max_y": 5252.617384160304, + "center": [ + 2251.6045588930847, + 5251.9642653583305 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55619C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2271.994823509907, + "min_y": 5284.214464094975, + "max_x": 2276.697278884118, + "max_y": 5285.5207016989225, + "center": [ + 2274.3460511970125, + 5284.867582896948 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55619D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.832372770786, + "min_y": 5229.292470734737, + "max_x": 2304.751085582629, + "max_y": 5230.598708338685, + "center": [ + 2302.7917291767076, + 5229.945589536712 + ] + }, + "raw_value": "10216", + "clean_value": "10216", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55619E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5261.182651178012, + "max_x": 2261.919862426123, + "max_y": 5310.935033826184, + "center": [ + 2261.919862426123, + 5286.058842502098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5310.935033826184 + ], + [ + 2261.919862426123, + 5261.182651178012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55619F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5261.182651178012, + "max_x": 2271.020180759637, + "max_y": 5310.935033826184, + "center": [ + 2271.020180759637, + 5286.058842502098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.020180759637, + 5310.935033826184 + ], + [ + 2271.020180759637, + 5261.182651178012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5308.13303265009, + "max_x": 2261.919862426123, + "max_y": 5308.13303265009, + "center": [ + 2261.0884327530525, + 5308.13303265009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5308.13303265009 + ], + [ + 2260.257003079982, + 5308.13303265009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.040398974133, + "min_y": 5308.13303265009, + "max_x": 2259.930406232963, + "max_y": 5308.13303265009, + "center": [ + 2258.985402603548, + 5308.13303265009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.930406232963, + 5308.13303265009 + ], + [ + 2258.040398974133, + 5308.13303265009 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5561A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.930406232963, + "min_y": 5307.584261370625, + "max_x": 2259.930406232963, + "max_y": 5308.681803929559, + "center": [ + 2259.930406232963, + 5308.133032650092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.930406232963, + 5307.584261370625 + ], + [ + 2259.930406232963, + 5308.681803929559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5307.584261370625, + "max_x": 2260.257003079982, + "max_y": 5308.681803929559, + "center": [ + 2260.257003079982, + 5308.133032650092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.257003079982, + 5307.584261370625 + ], + [ + 2260.257003079982, + 5308.681803929559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561A4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.270088900321, + "min_y": 5308.780854721826, + "max_x": 2255.837574025058, + "max_y": 5310.0870923257735, + "center": [ + 2255.0538314626892, + 5309.433973523799 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561A5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.326225556228, + "min_y": 5305.275945941137, + "max_x": 2258.040398974134, + "max_y": 5310.990119359043, + "center": [ + 2255.183312265181, + 5308.13303265009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5308.13303265009 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561A6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.160724156926, + "min_y": 5302.70891140883, + "max_x": 2255.728209281663, + "max_y": 5304.015149012778, + "center": [ + 2254.9444667192947, + 5303.362030210805 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561A7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.050804262558, + "min_y": 5314.48261888249, + "max_x": 2256.4020319496635, + "max_y": 5315.788856486438, + "center": [ + 2255.226418106111, + 5315.135737684464 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561A8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.326225556228, + "min_y": 5310.990119359044, + "max_x": 2258.040398974134, + "max_y": 5316.70429277695, + "center": [ + 2255.183312265181, + 5313.847206067997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5313.847206067997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561A9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5316.756388224324, + "max_x": 2255.183312265181, + "max_y": 5316.756388224328, + "center": [ + 2253.72872118702, + 5316.756388224326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5316.756388224328 + ], + [ + 2252.274130108859, + 5316.756388224324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5313.847206067997, + "max_x": 2252.274130108859, + "max_y": 5316.756388224324, + "center": [ + 2252.274130108859, + 5315.30179714616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.274130108859, + 5313.847206067997 + ], + [ + 2252.274130108859, + 5316.756388224324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.183312265181, + "min_y": 5316.756388224324, + "max_x": 2258.092494421509, + "max_y": 5316.756388224328, + "center": [ + 2256.637903343345, + 5316.756388224326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5316.756388224328 + ], + [ + 2258.092494421509, + 5316.756388224324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.092494421509, + "min_y": 5313.847206067997, + "max_x": 2258.092494421509, + "max_y": 5316.756388224324, + "center": [ + 2258.092494421509, + 5315.30179714616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.092494421509, + 5313.847206067997 + ], + [ + 2258.092494421509, + 5316.756388224324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5310.938023911664, + "max_x": 2255.183312265181, + "max_y": 5310.938023911671, + "center": [ + 2253.72872118702, + 5310.938023911667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5310.938023911664 + ], + [ + 2252.274130108859, + 5310.938023911671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5310.938023911671, + "max_x": 2252.274130108859, + "max_y": 5313.847206067997, + "center": [ + 2252.274130108859, + 5312.392614989834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.274130108859, + 5313.847206067997 + ], + [ + 2252.274130108859, + 5310.938023911671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561AF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.183312265181, + "min_y": 5310.938023911664, + "max_x": 2258.092494421509, + "max_y": 5310.938023911671, + "center": [ + 2256.637903343345, + 5310.938023911667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5310.938023911664 + ], + [ + 2258.092494421509, + 5310.938023911671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.092494421509, + "min_y": 5310.938023911671, + "max_x": 2258.092494421509, + "max_y": 5313.847206067997, + "center": [ + 2258.092494421509, + 5312.392614989834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.092494421509, + 5313.847206067997 + ], + [ + 2258.092494421509, + 5310.938023911671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.498046966806, + "min_y": 5312.165255743018, + "max_x": 2257.2005023410175, + "max_y": 5313.471493346966, + "center": [ + 2254.849274653912, + 5312.8183745449915 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.498046966806, + "min_y": 5306.451082325118, + "max_x": 2257.2005023410175, + "max_y": 5307.7573199290655, + "center": [ + 2254.849274653912, + 5307.104201127091 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B3", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.326225556228, + "min_y": 5299.219024360585, + "max_x": 2258.040398974134, + "max_y": 5304.9331977784905, + "center": [ + 2255.183312265181, + 5302.076111069538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.183312265181, + 5302.076111069538 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.362858596853, + "min_y": 5300.394160744566, + "max_x": 2257.0653139710644, + "max_y": 5301.700398348514, + "center": [ + 2254.7140862839587, + 5301.047279546539 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B5", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2318.363041710433, + "min_y": 5258.268496083966, + "max_x": 2330.457760294682, + "max_y": 5259.388377434359, + "center": [ + 2324.4104010025576, + 5258.828436759162 + ] + }, + "raw_value": "N2-10702-25A-F1A-n", + "clean_value": "N2-10702-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5561B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.741871128662, + "min_y": 5295.20990767574, + "max_x": 2259.741871128662, + "max_y": 5296.307450234673, + "center": [ + 2259.741871128662, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.741871128662, + 5296.307450234673 + ], + [ + 2259.741871128662, + 5295.20990767574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.170524853071, + "min_y": 5295.189616608955, + "max_x": 2260.170524853071, + "max_y": 5296.327741301457, + "center": [ + 2260.170524853071, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.170524853071, + 5296.327741301457 + ], + [ + 2260.170524853071, + 5295.189616608955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561B8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2281.564135279159, + "min_y": 5286.582655685225, + "max_x": 2283.1316204038962, + "max_y": 5287.888893289173, + "center": [ + 2282.3478778415274, + 5287.235774487199 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561B9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.629154350773, + "min_y": 5283.2838816935355, + "max_x": 2285.343327768679, + "max_y": 5288.998055111441, + "center": [ + 2282.486241059726, + 5286.140968402488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5286.140968402488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561BA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.80097576135, + "min_y": 5284.459018077509, + "max_x": 2284.503431135561, + "max_y": 5285.765255681457, + "center": [ + 2282.1522034484556, + 5285.112136879483 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561BB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2309.7886072592637, + "min_y": 5220.169892121446, + "max_x": 2310.4911533657423, + "max_y": 5220.872438227924, + "center": [ + 2310.139880312503, + 5220.521165174685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.139880312503, + 5220.521165174685 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561BC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2318.3632643250776, + "min_y": 5220.169892121447, + "max_x": 2319.065810431556, + "max_y": 5220.872438227926, + "center": [ + 2318.714537378317, + 5220.521165174687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.714537378317, + 5220.521165174687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561BD", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2287.078365598755, + "min_y": 5286.776381216979, + "max_x": 2289.429593285861, + "max_y": 5288.082618820927, + "center": [ + 2288.2539794423083, + 5287.429500018952 + ] + }, + "raw_value": "PIA", + "clean_value": "PIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561BE", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.395423216051, + "min_y": 5283.2838816935355, + "max_x": 2291.1095966339567, + "max_y": 5288.998055111441, + "center": [ + 2288.252509925004, + 5286.140968402488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.252509925004, + 5286.140968402488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561BF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5289.050150558812, + "max_x": 2288.252509925004, + "max_y": 5289.050150558816, + "center": [ + 2286.7979188468435, + 5289.0501505588145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.252509925004, + 5289.050150558816 + ], + [ + 2285.343327768683, + 5289.050150558812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5286.140968402488, + "max_x": 2285.343327768683, + "max_y": 5289.050150558812, + "center": [ + 2285.343327768683, + 5287.59555948065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.343327768683, + 5286.140968402488 + ], + [ + 2285.343327768683, + 5289.050150558812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2288.252509925004, + "min_y": 5289.050150558812, + "max_x": 2291.161692081333, + "max_y": 5289.050150558816, + "center": [ + 2289.7071010031686, + 5289.0501505588145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.252509925004, + 5289.050150558816 + ], + [ + 2291.161692081333, + 5289.050150558812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2291.161692081333, + "min_y": 5286.140968402488, + "max_x": 2291.161692081333, + "max_y": 5289.050150558812, + "center": [ + 2291.161692081333, + 5287.59555948065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.161692081333, + 5286.140968402488 + ], + [ + 2291.161692081333, + 5289.050150558812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5283.231786246148, + "max_x": 2288.252509925004, + "max_y": 5283.231786246158, + "center": [ + 2286.7979188468435, + 5283.231786246153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.252509925004, + 5283.231786246148 + ], + [ + 2285.343327768683, + 5283.231786246158 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5283.231786246158, + "max_x": 2285.343327768683, + "max_y": 5286.140968402481, + "center": [ + 2285.343327768683, + 5284.686377324319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.343327768683, + 5286.140968402481 + ], + [ + 2285.343327768683, + 5283.231786246158 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2288.252509925004, + "min_y": 5283.231786246148, + "max_x": 2291.161692081333, + "max_y": 5283.231786246158, + "center": [ + 2289.7071010031686, + 5283.231786246153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.252509925004, + 5283.231786246148 + ], + [ + 2291.161692081333, + 5283.231786246158 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2291.161692081333, + "min_y": 5283.231786246158, + "max_x": 2291.161692081333, + "max_y": 5286.140968402481, + "center": [ + 2291.161692081333, + 5284.686377324319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.161692081333, + 5286.140968402481 + ], + [ + 2291.161692081333, + 5283.231786246158 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.567244626629, + "min_y": 5284.459018077505, + "max_x": 2290.26970000084, + "max_y": 5285.765255681453, + "center": [ + 2287.9184723137346, + 5285.112136879479 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.343327768683, + "min_y": 5286.140968402481, + "max_x": 2291.161692081333, + "max_y": 5286.140968402488, + "center": [ + 2288.252509925008, + 5286.140968402485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.161692081333, + 5286.140968402481 + ], + [ + 2285.343327768683, + 5286.140968402488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2344.885909875357, + "min_y": 5256.066242154673, + "max_x": 2344.885909875357, + "max_y": 5259.038840770901, + "center": [ + 2344.885909875357, + 5257.552541462786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.885909875357, + 5259.038840770901 + ], + [ + 2344.885909875357, + 5256.066242154673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561CA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2338.075631692927, + "min_y": 5256.805467220535, + "max_x": 2339.8674418535566, + "max_y": 5258.298642354393, + "center": [ + 2338.9715367732415, + 5257.552054787464 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561CB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2335.372590908454, + "min_y": 5259.53609153611, + "max_x": 2344.885909875357, + "max_y": 5259.53609153611, + "center": [ + 2340.1292503919058, + 5259.53609153611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.885909875357, + 5259.53609153611 + ], + [ + 2335.372590908454, + 5259.53609153611 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5561CC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2335.372590908446, + "min_y": 5255.568991389466, + "max_x": 2344.885909875357, + "max_y": 5255.568991389466, + "center": [ + 2340.129250391901, + 5255.568991389466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.372590908446, + 5255.568991389466 + ], + [ + 2344.885909875357, + 5255.568991389466 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5561CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2344.885909875357, + "min_y": 5255.568991389466, + "max_x": 2344.885909875357, + "max_y": 5259.53609153611, + "center": [ + 2344.885909875357, + 5257.552541462788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.885909875357, + 5255.568991389466 + ], + [ + 2344.885909875357, + 5259.53609153611 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5561CE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2333.389040835131, + "min_y": 5257.552541462787, + "max_x": 2335.37259090845, + "max_y": 5259.536091536106, + "center": [ + 2334.38081587179, + 5258.544316499447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.37259090845, + 5259.536091536106 + ], + [ + 2333.389040835131, + 5257.552541462787 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5561CF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2333.389040835131, + "min_y": 5255.568991389463, + "max_x": 2335.37259090845, + "max_y": 5257.552541462787, + "center": [ + 2334.38081587179, + 5256.560766426125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.389040835131, + 5257.552541462787 + ], + [ + 2335.37259090845, + 5255.568991389463 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5561D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5310.935033826184, + "max_x": 2261.919862426123, + "max_y": 5384.450855790873, + "center": [ + 2261.919862426123, + 5347.692944808528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5384.450855790873 + ], + [ + 2261.919862426123, + 5310.935033826184 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5310.935033826182, + "max_x": 2271.03603555532, + "max_y": 5384.450855790873, + "center": [ + 2271.03603555532, + 5347.6929448085275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5384.450855790873 + ], + [ + 2271.03603555532, + 5310.935033826182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5374.91235883344, + "max_x": 2271.036035555318, + "max_y": 5374.91235883344, + "center": [ + 2266.4779489907205, + 5374.91235883344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5374.91235883344 + ], + [ + 2271.036035555318, + 5374.91235883344 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5360.239293014982, + "max_x": 2271.03603555532, + "max_y": 5360.239293014982, + "center": [ + 2266.4779489907214, + 5360.239293014982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5360.239293014982 + ], + [ + 2271.03603555532, + 5360.239293014982 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5360.239293014982, + "max_x": 2271.03603555532, + "max_y": 5374.91235883344, + "center": [ + 2266.4779489907214, + 5367.57582592421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5374.91235883344 + ], + [ + 2271.03603555532, + 5360.239293014982 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5360.239293014982, + "max_x": 2271.03603555532, + "max_y": 5374.91235883344, + "center": [ + 2266.4779489907214, + 5367.57582592421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5360.239293014982 + ], + [ + 2271.03603555532, + 5374.91235883344 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5348.946684381196, + "max_x": 2271.03603555532, + "max_y": 5348.946684381196, + "center": [ + 2266.4779489907214, + 5348.946684381196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5348.946684381196 + ], + [ + 2271.03603555532, + 5348.946684381196 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426125, + "min_y": 5312.653368686123, + "max_x": 2271.03603555532, + "max_y": 5312.653368686123, + "center": [ + 2266.4779489907223, + 5312.653368686123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5312.653368686123 + ], + [ + 2271.03603555532, + 5312.653368686123 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426123, + "min_y": 5312.653368686123, + "max_x": 2271.03603555532, + "max_y": 5348.946684381195, + "center": [ + 2266.4779489907214, + 5330.80002653366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5348.946684381195 + ], + [ + 2271.03603555532, + 5312.653368686123 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426125, + "min_y": 5312.653368686123, + "max_x": 2271.036035555318, + "max_y": 5348.946684381195, + "center": [ + 2266.4779489907214, + 5330.80002653366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5312.653368686123 + ], + [ + 2271.036035555318, + 5348.946684381195 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5561DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5383.336558065457, + "max_x": 2261.919862426123, + "max_y": 5383.336558065457, + "center": [ + 2261.2881570073564, + 5383.336558065457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5383.336558065457 + ], + [ + 2261.919862426123, + 5383.336558065457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5380.783525949146, + "max_x": 2261.919862426123, + "max_y": 5380.783525949146, + "center": [ + 2261.2881570073564, + 5380.783525949146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5380.783525949146 + ], + [ + 2261.919862426123, + 5380.783525949146 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5380.496716462797, + "max_x": 2260.65645158859, + "max_y": 5383.623367551803, + "center": [ + 2260.65645158859, + 5382.060042007301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5383.623367551803 + ], + [ + 2260.65645158859, + 5380.496716462797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.165702810617, + "min_y": 5380.496716462797, + "max_x": 2260.165702810617, + "max_y": 5383.623367551803, + "center": [ + 2260.165702810617, + 5382.060042007301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.165702810617, + 5383.623367551803 + ], + [ + 2260.165702810617, + 5380.496716462797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561DF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2281.135830604091, + "min_y": 5388.833119199974, + "max_x": 2282.7033157288283, + "max_y": 5390.139356803922, + "center": [ + 2281.9195731664595, + 5389.486238001948 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561E0", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.1958719898307, + "min_y": 5385.321018545072, + "max_x": 2284.9200007794857, + "max_y": 5391.0451473347275, + "center": [ + 2282.057936384658, + 5388.1830829399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5388.1830829399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.477948990885, + "min_y": 5387.344390280895, + "max_x": 2266.477948990887, + "max_y": 5389.07818074314, + "center": [ + 2266.477948990886, + 5388.211285512018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.477948990887, + 5387.344390280895 + ], + [ + 2266.477948990885, + 5389.07818074314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2266.477948990885, + "min_y": 5389.405346595119, + "max_x": 2266.477948990896, + "max_y": 5402.796705903112, + "center": [ + 2266.4779489908906, + 5396.101026249115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.477948990885, + 5389.405346595119 + ], + [ + 2266.477948990896, + 5402.796705903112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5561E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.942536443457, + "min_y": 5389.405346595119, + "max_x": 2267.041991167699, + "max_y": 5389.405346595119, + "center": [ + 2266.4922638055777, + 5389.405346595119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.942536443457, + 5389.405346595119 + ], + [ + 2267.041991167699, + 5389.405346595119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.942536443457, + "min_y": 5389.07818074314, + "max_x": 2267.041991167699, + "max_y": 5389.07818074314, + "center": [ + 2266.4922638055777, + 5389.07818074314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2265.942536443457, + 5389.07818074314 + ], + [ + 2267.041991167699, + 5389.07818074314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2262.733028113295, + "min_y": 5376.252536931493, + "max_x": 2263.178494580841, + "max_y": 5376.949845877725, + "center": [ + 2262.955761347068, + 5376.6011914046085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.178494580841, + 5376.949845877725 + ], + [ + 2262.733028113295, + 5376.252536931493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.178494580841, + "min_y": 5376.252536931493, + "max_x": 2263.178494580844, + "max_y": 5376.949845877725, + "center": [ + 2263.178494580842, + 5376.6011914046085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.178494580841, + 5376.949845877725 + ], + [ + 2263.178494580844, + 5376.252536931493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.178494580841, + "min_y": 5376.252536931493, + "max_x": 2263.623961048385, + "max_y": 5376.949845877725, + "center": [ + 2263.401227814613, + 5376.6011914046085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.178494580841, + 5376.949845877725 + ], + [ + 2263.623961048385, + 5376.252536931493 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2265.87604450305, + "min_y": 5376.25253693152, + "max_x": 2266.321510970596, + "max_y": 5376.949845877756, + "center": [ + 2266.0987777368227, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.321510970596, + 5376.949845877756 + ], + [ + 2265.87604450305, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.321510970596, + "min_y": 5376.25253693152, + "max_x": 2266.321510970602, + "max_y": 5376.949845877756, + "center": [ + 2266.321510970599, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.321510970596, + 5376.949845877756 + ], + [ + 2266.321510970602, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2266.321510970596, + "min_y": 5376.25253693152, + "max_x": 2266.766977438143, + "max_y": 5376.949845877756, + "center": [ + 2266.5442442043695, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.321510970596, + 5376.949845877756 + ], + [ + 2266.766977438143, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2264.304536308206, + "min_y": 5376.252536931454, + "max_x": 2264.75000277575, + "max_y": 5376.94984587769, + "center": [ + 2264.527269541978, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2264.75000277575, + 5376.94984587769 + ], + [ + 2264.304536308206, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2264.75000277575, + "min_y": 5376.252536931454, + "max_x": 2264.750002775758, + "max_y": 5376.94984587769, + "center": [ + 2264.750002775754, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2264.75000277575, + 5376.94984587769 + ], + [ + 2264.750002775758, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2264.75000277575, + "min_y": 5376.252536931454, + "max_x": 2265.1954692433, + "max_y": 5376.94984587769, + "center": [ + 2264.972736009525, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2264.75000277575, + 5376.94984587769 + ], + [ + 2265.1954692433, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.019060892789, + "min_y": 5376.25253693152, + "max_x": 2269.464527360336, + "max_y": 5376.949845877756, + "center": [ + 2269.2417941265626, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.464527360336, + 5376.949845877756 + ], + [ + 2269.019060892789, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.464527360336, + "min_y": 5376.25253693152, + "max_x": 2269.464527360341, + "max_y": 5376.949845877756, + "center": [ + 2269.4645273603383, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.464527360336, + 5376.949845877756 + ], + [ + 2269.464527360341, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.464527360336, + "min_y": 5376.25253693152, + "max_x": 2269.90999382788, + "max_y": 5376.949845877756, + "center": [ + 2269.687260594108, + 5376.601191404638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.464527360336, + 5376.949845877756 + ], + [ + 2269.90999382788, + 5376.25253693152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.447552697945, + "min_y": 5376.252536931454, + "max_x": 2267.893019165493, + "max_y": 5376.94984587769, + "center": [ + 2267.6702859317193, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.893019165493, + 5376.94984587769 + ], + [ + 2267.447552697945, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.893019165493, + "min_y": 5376.252536931454, + "max_x": 2267.893019165498, + "max_y": 5376.94984587769, + "center": [ + 2267.8930191654954, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.893019165493, + 5376.94984587769 + ], + [ + 2267.893019165498, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2267.893019165493, + "min_y": 5376.252536931454, + "max_x": 2268.338485633039, + "max_y": 5376.94984587769, + "center": [ + 2268.115752399266, + 5376.601191404572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2267.893019165493, + 5376.94984587769 + ], + [ + 2268.338485633039, + 5376.252536931454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5372.32077363398, + "max_x": 2261.919862426125, + "max_y": 5372.32077363398, + "center": [ + 2261.0869842160782, + 5372.32077363398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5372.32077363398 + ], + [ + 2260.254106006032, + 5372.32077363398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.03364007866, + "min_y": 5372.32077363398, + "max_x": 2259.926940154051, + "max_y": 5372.32077363398, + "center": [ + 2258.9802901163557, + 5372.32077363398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5372.32077363398 + ], + [ + 2258.03364007866, + 5372.32077363398 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5561F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.926940154051, + "min_y": 5371.771046271861, + "max_x": 2259.926940154051, + "max_y": 5372.870500996101, + "center": [ + 2259.926940154051, + 5372.320773633981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5371.771046271861 + ], + [ + 2259.926940154051, + 5372.870500996101 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5371.771046271861, + "max_x": 2260.254106006032, + "max_y": 5372.870500996101, + "center": [ + 2260.254106006032, + 5372.320773633981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.254106006032, + 5371.771046271861 + ], + [ + 2260.254106006032, + 5372.870500996101 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561F8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.258352318974, + "min_y": 5372.970809894049, + "max_x": 2255.8258374437114, + "max_y": 5374.277047497997, + "center": [ + 2255.0420948813426, + 5373.623928696023 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561F9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5369.458709239152, + "max_x": 2258.0336400786605, + "max_y": 5375.182838028808, + "center": [ + 2255.171575683833, + 5372.32077363398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5372.32077363398 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561FA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.148987575575, + "min_y": 5366.441958904702, + "max_x": 2255.7164727003124, + "max_y": 5367.74819650865, + "center": [ + 2254.9327301379435, + 5367.0950777066755 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561FB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112889973, + "min_y": 5362.94487998225, + "max_x": 2258.0336400786523, + "max_y": 5368.669008771906, + "center": [ + 2255.171575683825, + 5365.806944377078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683825, + 5365.806944377078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5561FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5351.010556347019, + "max_x": 2273.406234461695, + "max_y": 5351.010556347019, + "center": [ + 2272.221135008507, + 5351.010556347019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5351.010556347019 + ], + [ + 2273.406234461695, + 5351.010556347019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.406234461695, + "min_y": 5351.010556347019, + "max_x": 2275.397174311607, + "max_y": 5351.010556347019, + "center": [ + 2274.401704386651, + 5351.010556347019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.406234461695, + 5351.010556347019 + ], + [ + 2275.397174311607, + 5351.010556347019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5353.641040619624, + "max_x": 2261.919862426123, + "max_y": 5353.641040619624, + "center": [ + 2261.2881570073564, + 5353.641040619624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5353.641040619624 + ], + [ + 2261.919862426123, + 5353.641040619624 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5561FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5351.088008503311, + "max_x": 2261.919862426123, + "max_y": 5351.088008503311, + "center": [ + 2261.2881570073564, + 5351.088008503311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5351.088008503311 + ], + [ + 2261.919862426123, + 5351.088008503311 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556200", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.656451588587, + "min_y": 5350.801199016966, + "max_x": 2260.65645158859, + "max_y": 5353.92785010597, + "center": [ + 2260.6564515885884, + 5352.364524561468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.656451588587, + 5353.92785010597 + ], + [ + 2260.65645158859, + 5350.801199016966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556201", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.165702810617, + "min_y": 5350.801199016966, + "max_x": 2260.165702810617, + "max_y": 5353.92785010597, + "center": [ + 2260.165702810617, + 5352.364524561468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.165702810617, + 5353.92785010597 + ], + [ + 2260.165702810617, + 5350.801199016966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556202", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.039067681211, + "min_y": 5378.682529426474, + "max_x": 2256.3902953683164, + "max_y": 5379.9887670304215, + "center": [ + 2255.2146815247634, + 5379.335648228447 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556203", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5375.18283802881, + "max_x": 2258.0336400786605, + "max_y": 5380.906966818466, + "center": [ + 2255.171575683833, + 5378.044902423638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5378.044902423638 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556204", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.331139891156, + "min_y": 5278.612566202003, + "max_x": 2314.365719504316, + "max_y": 5278.612566202003, + "center": [ + 2312.848429697736, + 5278.612566202003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.331139891156, + 5278.612566202003 + ], + [ + 2314.365719504316, + 5278.612566202003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556205", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2312.378186953529, + "min_y": 5276.625033651216, + "max_x": 2316.353252055103, + "max_y": 5280.6000987527905, + "center": [ + 2314.365719504316, + 5278.612566202003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.365719504316, + 5278.612566202003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556206", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.056223465276, + "min_y": 5275.079634619061, + "max_x": 2313.159912258733, + "max_y": 5277.032593250675, + "center": [ + 2312.6080678620046, + 5276.056113934868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.159912258733, + 5277.032593250675 + ], + [ + 2312.056223465276, + 5275.079634619061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556207", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.571526749901, + "min_y": 5275.079634619061, + "max_x": 2316.675215543361, + "max_y": 5277.032593250675, + "center": [ + 2316.123371146631, + 5276.056113934868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.571526749901, + 5277.032593250675 + ], + [ + 2316.675215543361, + 5275.079634619061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556208", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.056223465276, + "min_y": 5275.079634619061, + "max_x": 2316.675215543361, + "max_y": 5275.079634619061, + "center": [ + 2314.365719504319, + 5275.079634619061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.675215543361, + 5275.079634619061 + ], + [ + 2312.056223465276, + 5275.079634619061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556209", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.003974039178, + "min_y": 5278.042512421509, + "max_x": 2311.003974039178, + "max_y": 5279.182619982498, + "center": [ + 2311.003974039178, + 5278.612566202004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.003974039178, + 5279.182619982498 + ], + [ + 2311.003974039178, + 5278.042512421509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.331139891156, + "min_y": 5278.042512421509, + "max_x": 2311.331139891156, + "max_y": 5279.182619982498, + "center": [ + 2311.331139891156, + 5278.612566202004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.331139891156, + 5279.182619982498 + ], + [ + 2311.331139891156, + 5278.042512421509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.221797817794, + "min_y": 5278.058112571162, + "max_x": 2300.221797817794, + "max_y": 5279.198220132152, + "center": [ + 2300.221797817794, + 5278.628166351657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.221797817794, + 5279.198220132152 + ], + [ + 2300.221797817794, + 5278.058112571162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2298.6246090512245, + "min_y": 5278.276281301972, + "max_x": 2299.328379150598, + "max_y": 5278.980051401345, + "center": [ + 2298.976494100911, + 5278.628166351658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.976494100911, + 5278.628166351658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.731190384028, + "min_y": 5278.078438989534, + "max_x": 2297.731190384028, + "max_y": 5279.177893713779, + "center": [ + 2297.731190384028, + 5278.628166351657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.731190384028, + 5278.078438989534 + ], + [ + 2297.731190384028, + 5279.177893713779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.221797817794, + "min_y": 5278.078438989534, + "max_x": 2300.221797817794, + "max_y": 5279.177893713779, + "center": [ + 2300.221797817794, + 5278.628166351657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.221797817794, + 5278.078438989534 + ], + [ + 2300.221797817794, + 5279.177893713779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55620F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.221797817794, + "min_y": 5278.628166351658, + "max_x": 2302.445379087405, + "max_y": 5278.628166351658, + "center": [ + 2301.3335884525995, + 5278.628166351658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.445379087405, + 5278.628166351658 + ], + [ + 2300.221797817794, + 5278.628166351658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556210", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2304.352760277033, + "min_y": 5276.987266019921, + "max_x": 2304.352760277036, + "max_y": 5278.610746182353, + "center": [ + 2304.3527602770346, + 5277.799006101137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.352760277036, + 5278.610746182353 + ], + [ + 2304.352760277033, + 5276.987266019921 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556211", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2304.0008752273466, + "min_y": 5275.390077253356, + "max_x": 2304.70464532672, + "max_y": 5276.093847352729, + "center": [ + 2304.352760277033, + 5275.741962303043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.352760277033, + 5275.741962303043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556212", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5276.987266019923, + "max_x": 2304.902487639155, + "max_y": 5276.987266019923, + "center": [ + 2304.352760277035, + 5276.987266019923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.803032914915, + 5276.987266019923 + ], + [ + 2304.902487639155, + 5276.987266019923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556213", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5274.496658586158, + "max_x": 2304.902487639155, + "max_y": 5274.496658586158, + "center": [ + 2304.352760277035, + 5274.496658586158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.803032914915, + 5274.496658586158 + ], + [ + 2304.902487639155, + 5274.496658586158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556214", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.351432035456, + "min_y": 5306.526522907869, + "max_x": 2318.741413576642, + "max_y": 5306.526522907869, + "center": [ + 2317.546422806049, + 5306.526522907869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.351432035456, + 5306.526522907869 + ], + [ + 2318.741413576642, + 5306.526522907869 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556215", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2295.722199346257, + "min_y": 5371.835271410738, + "max_x": 2303.36068213311, + "max_y": 5371.835271410745, + "center": [ + 2299.541440739684, + 5371.835271410741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.36068213311, + 5371.835271410745 + ], + [ + 2295.722199346257, + 5371.835271410738 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556216", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2283.973474821981, + "min_y": 5371.837091430386, + "max_x": 2293.231591912494, + "max_y": 5371.837091430386, + "center": [ + 2288.602533367238, + 5371.837091430386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.231591912494, + 5371.837091430386 + ], + [ + 2283.973474821981, + 5371.837091430386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556217", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.722199346255, + "min_y": 5371.265217630242, + "max_x": 2295.722199346255, + "max_y": 5372.405325191233, + "center": [ + 2295.722199346255, + 5371.835271410737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.722199346255, + 5372.405325191233 + ], + [ + 2295.722199346255, + 5371.265217630242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556218", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2294.1250105796876, + "min_y": 5371.483386361051, + "max_x": 2294.828780679061, + "max_y": 5372.187156460424, + "center": [ + 2294.476895629374, + 5371.835271410738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.476895629374, + 5371.835271410738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556219", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.231591912494, + "min_y": 5371.285544048614, + "max_x": 2293.231591912494, + "max_y": 5372.384998772858, + "center": [ + 2293.231591912494, + 5371.835271410736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.231591912494, + 5371.285544048614 + ], + [ + 2293.231591912494, + 5372.384998772858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55621A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.722199346255, + "min_y": 5371.285544048614, + "max_x": 2295.722199346255, + "max_y": 5372.384998772858, + "center": [ + 2295.722199346255, + 5371.835271410736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.722199346255, + 5371.285544048614 + ], + [ + 2295.722199346255, + 5372.384998772858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55621B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2281.641466745074, + "min_y": 5376.949845877717, + "max_x": 2285.629824266673, + "max_y": 5376.949845877717, + "center": [ + 2283.6356455058735, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.629824266673, + 5376.949845877717 + ], + [ + 2281.641466745074, + 5376.949845877717 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55621C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2275.088855075487, + "min_y": 5376.949845877717, + "max_x": 2281.641466745074, + "max_y": 5376.949845877717, + "center": [ + 2278.365160910281, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.641466745074, + 5376.949845877717 + ], + [ + 2275.088855075487, + 5376.949845877717 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55621D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2263.178494580844, + "min_y": 5376.949845877717, + "max_x": 2274.659454540145, + "max_y": 5376.949845877717, + "center": [ + 2268.9189745604945, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.659454540145, + 5376.949845877717 + ], + [ + 2263.178494580844, + 5376.949845877717 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55621E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2315.838218316901, + "min_y": 5376.94802585806, + "max_x": 2318.000178725781, + "max_y": 5376.948025858063, + "center": [ + 2316.919198521341, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.838218316901, + 5376.94802585806 + ], + [ + 2318.000178725781, + 5376.948025858063 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55621F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.490786159542, + "min_y": 5376.948025858063, + "max_x": 2322.598174135484, + "max_y": 5376.948142701154, + "center": [ + 2321.5444801475132, + 5376.948084279609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.490786159542, + 5376.948025858063 + ], + [ + 2322.598174135484, + 5376.948142701154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556220", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2322.598174135484, + "min_y": 5376.948142701154, + "max_x": 2356.219641123273, + "max_y": 5376.948202147584, + "center": [ + 2339.4089076293785, + 5376.948172424369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.598174135484, + 5376.948142701154 + ], + [ + 2356.219641123273, + 5376.948202147584 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556221", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.474332712288, + "min_y": 5306.533090031592, + "max_x": 2322.737683252828, + "max_y": 5306.533090031598, + "center": [ + 2322.106007982558, + 5306.533090031595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.474332712288, + 5306.533090031592 + ], + [ + 2322.737683252828, + 5306.533090031598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556222", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2337.147051899364, + "min_y": 5306.529567031826, + "max_x": 2338.899633385212, + "max_y": 5306.529567031826, + "center": [ + 2338.0233426422883, + 5306.529567031826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.147051899364, + 5306.529567031826 + ], + [ + 2338.899633385212, + 5306.529567031826 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556223", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.137042779239, + "min_y": 5305.981542649825, + "max_x": 2321.137042779239, + "max_y": 5307.08099737407, + "center": [ + 2321.137042779239, + 5306.5312700119475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.137042779239, + 5305.981542649825 + ], + [ + 2321.137042779239, + 5307.08099737407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.474332712288, + "min_y": 5305.981542649825, + "max_x": 2321.474332712288, + "max_y": 5307.08099737407, + "center": [ + 2321.474332712288, + 5306.5312700119475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.474332712288, + 5305.981542649825 + ], + [ + 2321.474332712288, + 5307.08099737407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556225", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2323.396277573024, + "min_y": 5311.530926768658, + "max_x": 2325.7475052601294, + "max_y": 5312.837164372606, + "center": [ + 2324.5718914165764, + 5312.1840455706315 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556226", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2339.329033920554, + "min_y": 5306.990322830008, + "max_x": 2341.165309650354, + "max_y": 5308.826598559808, + "center": [ + 2340.247171785454, + 5307.908460694908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.247171785454, + 5307.908460694908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.329033920555, + "min_y": 5307.908460694908, + "max_x": 2341.165309650354, + "max_y": 5307.908460694908, + "center": [ + 2340.2471717854546, + 5307.908460694908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.165309650354, + 5307.908460694908 + ], + [ + 2339.329033920555, + 5307.908460694908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.247171785454, + "min_y": 5306.879742075663, + "max_x": 2340.247171785454, + "max_y": 5307.908460694908, + "center": [ + 2340.247171785454, + 5307.3941013852855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.247171785454, + 5307.908460694908 + ], + [ + 2340.247171785454, + 5306.879742075663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556229", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.549078204216, + "min_y": 5305.978129663853, + "max_x": 2341.165309650354, + "max_y": 5306.347093084593, + "center": [ + 2340.857193927285, + 5306.162611374223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.165309650354, + 5305.978129663853 + ], + [ + 2340.549078204216, + 5306.347093084593 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.329033920555, + "min_y": 5306.708620967362, + "max_x": 2339.945265366693, + "max_y": 5307.077584388099, + "center": [ + 2339.637149643624, + 5306.89310267773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.945265366693, + 5306.708620967362 + ], + [ + 2339.329033920555, + 5307.077584388099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2341.165309650354, + "min_y": 5305.978129663853, + "max_x": 2341.165309650354, + "max_y": 5307.077584388099, + "center": [ + 2341.165309650354, + 5306.527857025976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.165309650354, + 5307.077584388099 + ], + [ + 2341.165309650354, + 5305.978129663853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.329033920555, + "min_y": 5305.993411931666, + "max_x": 2339.329033920555, + "max_y": 5307.092866655911, + "center": [ + 2339.329033920555, + 5306.543139293788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.329033920555, + 5307.092866655911 + ], + [ + 2339.329033920555, + 5305.993411931666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.549078204213, + "min_y": 5306.708620967362, + "max_x": 2341.165309650354, + "max_y": 5307.077584388099, + "center": [ + 2340.8571939272833, + 5306.89310267773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.165309650354, + 5307.077584388099 + ], + [ + 2340.549078204213, + 5306.708620967362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.329033920555, + "min_y": 5305.978129663853, + "max_x": 2339.945265366693, + "max_y": 5306.347093084593, + "center": [ + 2339.637149643624, + 5306.162611374223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.945265366693, + 5306.347093084593 + ], + [ + 2339.329033920555, + 5305.978129663853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55622F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.899633385212, + "min_y": 5305.973085513292, + "max_x": 2338.899633385212, + "max_y": 5307.113193074282, + "center": [ + 2338.899633385212, + 5306.543139293787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.899633385212, + 5307.113193074282 + ], + [ + 2338.899633385212, + 5305.973085513292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556230", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2341.5947101857, + "min_y": 5305.957803245482, + "max_x": 2341.5947101857, + "max_y": 5307.097910806472, + "center": [ + 2341.5947101857, + 5306.527857025977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.5947101857, + 5307.097910806472 + ], + [ + 2341.5947101857, + 5305.957803245482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556231", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.247171785454, + "min_y": 5308.82659855981, + "max_x": 2340.247171785457, + "max_y": 5311.67195437008, + "center": [ + 2340.2471717854555, + 5310.249276464945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.247171785454, + 5308.82659855981 + ], + [ + 2340.247171785457, + 5311.67195437008 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556232", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.864857936253, + "min_y": 5310.014345878101, + "max_x": 2340.629485634658, + "max_y": 5310.455803885607, + "center": [ + 2340.2471717854555, + 5310.2350748818535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.864857936253, + 5310.014345878101 + ], + [ + 2340.629485634658, + 5310.455803885607 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556233", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.864857936253, + "min_y": 5310.374228315282, + "max_x": 2340.629485634658, + "max_y": 5310.815686322786, + "center": [ + 2340.2471717854555, + 5310.594957319034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.864857936253, + 5310.374228315282 + ], + [ + 2340.629485634658, + 5310.815686322786 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556234", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2339.81085913655, + "min_y": 5312.006337884245, + "max_x": 2341.268383007127, + "max_y": 5312.816073367899, + "center": [ + 2340.539621071838, + 5312.411205626072 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556235", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2340.656604647207, + "min_y": 5300.607825223401, + "max_x": 2346.035881147559, + "max_y": 5300.623107491208, + "center": [ + 2343.346242897383, + 5300.615466357305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.035881147559, + 5300.607825223401 + ], + [ + 2340.656604647207, + 5300.623107491208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556236", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2333.20499874421, + "min_y": 5300.623107491213, + "max_x": 2338.165273374822, + "max_y": 5300.638389759019, + "center": [ + 2335.685136059516, + 5300.630748625116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.165273374822, + 5300.638389759019 + ], + [ + 2333.20499874421, + 5300.623107491213 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556237", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.656604647205, + "min_y": 5300.053053710718, + "max_x": 2340.656604647205, + "max_y": 5301.193161271708, + "center": [ + 2340.656604647205, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.656604647205, + 5301.193161271708 + ], + [ + 2340.656604647205, + 5300.053053710718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556238", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2339.0594158806402, + "min_y": 5300.271222441526, + "max_x": 2339.7631859800135, + "max_y": 5300.9749925409, + "center": [ + 2339.411300930327, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.411300930327, + 5300.623107491213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556239", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.656604647205, + "min_y": 5300.073380129095, + "max_x": 2340.656604647205, + "max_y": 5301.172834853335, + "center": [ + 2340.656604647205, + 5300.623107491216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.656604647205, + 5300.073380129095 + ], + [ + 2340.656604647205, + 5301.172834853335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55623A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2344.784830442879, + "min_y": 5316.091226694159, + "max_x": 2347.1360581299846, + "max_y": 5317.397464298107, + "center": [ + 2345.960444286432, + 5316.744345496132 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55623B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2322.708445506721, + "min_y": 5317.371836595143, + "max_x": 2325.8434157561956, + "max_y": 5318.678074199091, + "center": [ + 2324.2759306314583, + 5318.024955397117 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55623C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.6289709140615, + "min_y": 5314.045983179416, + "max_x": 2327.3530997037165, + "max_y": 5319.770111969072, + "center": [ + 2324.491035308889, + 5316.908047574244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308889, + 5316.908047574244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55623D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.628970914062, + "min_y": 5316.908047574244, + "max_x": 2327.353099703717, + "max_y": 5316.908047574244, + "center": [ + 2324.4910353088894, + 5316.908047574244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.353099703717, + 5316.908047574244 + ], + [ + 2321.628970914062, + 5316.908047574244 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55623E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2341.5947101857, + "min_y": 5306.529677045626, + "max_x": 2342.62899427469, + "max_y": 5306.529677045626, + "center": [ + 2342.111852230195, + 5306.529677045626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.5947101857, + 5306.529677045626 + ], + [ + 2342.62899427469, + 5306.529677045626 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55623F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2313.9244224841104, + "min_y": 5278.1712691817975, + "max_x": 2314.8070165245217, + "max_y": 5279.053863222209, + "center": [ + 2314.365719504316, + 5278.612566202003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.365719504316, + 5278.612566202003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556240", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5345.580408349926, + "max_x": 2261.919862426123, + "max_y": 5345.580408349926, + "center": [ + 2261.0869842160773, + 5345.580408349926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5345.580408349926 + ], + [ + 2260.254106006032, + 5345.580408349926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556241", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.03364007866, + "min_y": 5345.580408349926, + "max_x": 2259.926940154051, + "max_y": 5345.580408349926, + "center": [ + 2258.9802901163557, + 5345.580408349926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5345.580408349926 + ], + [ + 2258.03364007866, + 5345.580408349926 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556242", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.926940154051, + "min_y": 5345.030680987807, + "max_x": 2259.926940154051, + "max_y": 5346.13013571205, + "center": [ + 2259.926940154051, + 5345.580408349928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5345.030680987807 + ], + [ + 2259.926940154051, + 5346.13013571205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556243", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5345.030680987807, + "max_x": 2260.254106006032, + "max_y": 5346.13013571205, + "center": [ + 2260.254106006032, + 5345.580408349928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.254106006032, + 5345.030680987807 + ], + [ + 2260.254106006032, + 5346.13013571205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556244", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.258352318974, + "min_y": 5346.230444610004, + "max_x": 2255.8258374437114, + "max_y": 5347.536682213952, + "center": [ + 2255.0420948813426, + 5346.883563411979 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556245", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5342.718343955098, + "max_x": 2258.0336400786605, + "max_y": 5348.442472744754, + "center": [ + 2255.171575683833, + 5345.580408349926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5345.580408349926 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556246", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.039067681211, + "min_y": 5351.942164142416, + "max_x": 2256.3902953683164, + "max_y": 5353.248401746364, + "center": [ + 2255.2146815247634, + 5352.59528294439 + ] + }, + "raw_value": "TIA", + "clean_value": "TIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556247", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5348.44247274476, + "max_x": 2258.0336400786605, + "max_y": 5354.166601534416, + "center": [ + 2255.171575683833, + 5351.304537139588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5351.304537139588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556248", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2340.24717178546, + "min_y": 5313.234421324569, + "max_x": 2340.24717178546, + "max_y": 5316.8910568113, + "center": [ + 2340.24717178546, + 5315.062739067935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.24717178546, + 5313.234421324569 + ], + [ + 2340.24717178546, + 5316.8910568113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556249", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5380.959153027793, + "max_x": 2255.171575683833, + "max_y": 5380.959153027798, + "center": [ + 2253.7144503817553, + 5380.959153027796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5380.959153027798 + ], + [ + 2252.257325079678, + 5380.959153027793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5378.044902423638, + "max_x": 2252.257325079678, + "max_y": 5380.959153027793, + "center": [ + 2252.257325079678, + 5379.502027725715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.257325079678, + 5378.044902423638 + ], + [ + 2252.257325079678, + 5380.959153027793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.171575683833, + "min_y": 5380.959153027793, + "max_x": 2258.085826287988, + "max_y": 5380.959153027798, + "center": [ + 2256.6287009859107, + 5380.959153027796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5380.959153027798 + ], + [ + 2258.085826287988, + 5380.959153027793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.085826287988, + "min_y": 5378.044902423638, + "max_x": 2258.085826287988, + "max_y": 5380.959153027793, + "center": [ + 2258.085826287988, + 5379.502027725715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.085826287988, + 5378.044902423638 + ], + [ + 2258.085826287988, + 5380.959153027793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5375.130651819475, + "max_x": 2255.171575683833, + "max_y": 5375.130651819478, + "center": [ + 2253.7144503817553, + 5375.130651819476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5375.130651819475 + ], + [ + 2252.257325079678, + 5375.130651819478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5375.130651819478, + "max_x": 2252.257325079678, + "max_y": 5378.044902423634, + "center": [ + 2252.257325079678, + 5376.587777121556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.257325079678, + 5378.044902423634 + ], + [ + 2252.257325079678, + 5375.130651819478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55624F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.171575683833, + "min_y": 5375.130651819475, + "max_x": 2258.085826287988, + "max_y": 5375.130651819478, + "center": [ + 2256.6287009859107, + 5375.130651819476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5375.130651819475 + ], + [ + 2258.085826287988, + 5375.130651819478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556250", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.085826287988, + "min_y": 5375.130651819478, + "max_x": 2258.085826287988, + "max_y": 5378.044902423634, + "center": [ + 2258.085826287988, + 5376.587777121556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.085826287988, + 5378.044902423634 + ], + [ + 2258.085826287988, + 5375.130651819478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556251", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5354.218787743743, + "max_x": 2255.171575683833, + "max_y": 5354.218787743743, + "center": [ + 2253.7144503817553, + 5354.218787743743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5354.218787743743 + ], + [ + 2252.257325079678, + 5354.218787743743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556252", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5351.304537139588, + "max_x": 2252.257325079678, + "max_y": 5354.218787743743, + "center": [ + 2252.257325079678, + 5352.761662441666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.257325079678, + 5351.304537139588 + ], + [ + 2252.257325079678, + 5354.218787743743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556253", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.171575683833, + "min_y": 5354.218787743743, + "max_x": 2258.085826287988, + "max_y": 5354.218787743743, + "center": [ + 2256.6287009859107, + 5354.218787743743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5354.218787743743 + ], + [ + 2258.085826287988, + 5354.218787743743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556254", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.085826287988, + "min_y": 5351.304537139588, + "max_x": 2258.085826287988, + "max_y": 5354.218787743743, + "center": [ + 2258.085826287988, + 5352.761662441666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.085826287988, + 5351.304537139588 + ], + [ + 2258.085826287988, + 5354.218787743743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556255", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5348.390286535426, + "max_x": 2255.171575683833, + "max_y": 5348.39028653543, + "center": [ + 2253.7144503817553, + 5348.3902865354285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5348.390286535426 + ], + [ + 2252.257325079678, + 5348.39028653543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556256", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.257325079678, + "min_y": 5348.39028653543, + "max_x": 2252.257325079678, + "max_y": 5351.304537139581, + "center": [ + 2252.257325079678, + 5349.847411837505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.257325079678, + 5351.304537139581 + ], + [ + 2252.257325079678, + 5348.39028653543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556257", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2255.171575683833, + "min_y": 5348.390286535426, + "max_x": 2258.085826287988, + "max_y": 5348.39028653543, + "center": [ + 2256.6287009859107, + 5348.3902865354285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5348.390286535426 + ], + [ + 2258.085826287988, + 5348.39028653543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556258", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2258.085826287988, + "min_y": 5348.39028653543, + "max_x": 2258.085826287988, + "max_y": 5351.304537139581, + "center": [ + 2258.085826287988, + 5349.847411837505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.085826287988, + 5351.304537139581 + ], + [ + 2258.085826287988, + 5348.39028653543 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556259", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2266.477948990896, + "min_y": 5402.796705903107, + "max_x": 2342.711117797119, + "max_y": 5402.796705903112, + "center": [ + 2304.5945333940076, + 5402.796705903109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2266.477948990896, + 5402.796705903112 + ], + [ + 2342.711117797119, + 5402.796705903107 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55625A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5319.822298178399, + "max_x": 2324.491035308889, + "max_y": 5319.822298178408, + "center": [ + 2323.0339100068113, + 5319.822298178404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308889, + 5319.822298178408 + ], + [ + 2321.576784704734, + 5319.822298178399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55625B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5316.908047574244, + "max_x": 2321.576784704734, + "max_y": 5319.822298178399, + "center": [ + 2321.576784704734, + 5318.365172876322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.576784704734, + 5316.908047574244 + ], + [ + 2321.576784704734, + 5319.822298178399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55625C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2324.491035308889, + "min_y": 5319.822298178399, + "max_x": 2327.405285913044, + "max_y": 5319.822298178408, + "center": [ + 2325.9481606109666, + 5319.822298178404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308889, + 5319.822298178408 + ], + [ + 2327.405285913044, + 5319.822298178399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55625D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2327.405285913044, + "min_y": 5316.908047574244, + "max_x": 2327.405285913044, + "max_y": 5319.822298178399, + "center": [ + 2327.405285913044, + 5318.365172876322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.405285913044, + 5316.908047574244 + ], + [ + 2327.405285913044, + 5319.822298178399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55625E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5313.993796970081, + "max_x": 2324.491035308889, + "max_y": 5313.993796970089, + "center": [ + 2323.0339100068113, + 5313.993796970085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308889, + 5313.993796970081 + ], + [ + 2321.576784704734, + 5313.993796970089 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55625F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.576784704734, + "min_y": 5313.993796970089, + "max_x": 2321.576784704734, + "max_y": 5316.908047574234, + "center": [ + 2321.576784704734, + 5315.450922272161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.576784704734, + 5316.908047574234 + ], + [ + 2321.576784704734, + 5313.993796970089 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556260", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2324.491035308889, + "min_y": 5313.993796970081, + "max_x": 2327.405285913044, + "max_y": 5313.993796970089, + "center": [ + 2325.9481606109666, + 5313.993796970085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308889, + 5313.993796970081 + ], + [ + 2327.405285913044, + 5313.993796970089 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556261", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2327.405285913044, + "min_y": 5313.993796970089, + "max_x": 2327.405285913044, + "max_y": 5316.908047574234, + "center": [ + 2327.405285913044, + 5315.450922272161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.405285913044, + 5316.908047574234 + ], + [ + 2327.405285913044, + 5313.993796970089 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556262", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5359.190435285317, + "max_x": 2271.817514702557, + "max_y": 5359.190435285317, + "center": [ + 2271.4267751289385, + 5359.190435285317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5359.190435285317 + ], + [ + 2271.817514702557, + 5359.190435285317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556263", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.070412448341, + "min_y": 5350.604842788892, + "max_x": 2271.03603555532, + "max_y": 5350.604842788892, + "center": [ + 2269.55322400183, + 5350.604842788892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5350.604842788892 + ], + [ + 2268.070412448341, + 5350.604842788892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556264", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2268.070412448341, + "min_y": 5350.604842788892, + "max_x": 2268.070412448341, + "max_y": 5354.5366830629, + "center": [ + 2268.070412448341, + 5352.570762925896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.070412448341, + 5350.604842788892 + ], + [ + 2268.070412448341, + 5354.5366830629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.919862426125, + "min_y": 5354.5366830629, + "max_x": 2268.070412448341, + "max_y": 5354.5366830629, + "center": [ + 2264.995137437233, + 5354.5366830629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2268.070412448341, + 5354.5366830629 + ], + [ + 2261.919862426125, + 5354.5366830629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.445379087405, + "min_y": 5278.056292551513, + "max_x": 2302.445379087405, + "max_y": 5279.196400112502, + "center": [ + 2302.445379087405, + 5278.626346332007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.445379087405, + 5279.196400112502 + ], + [ + 2302.445379087405, + 5278.056292551513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556267", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.772544939386, + "min_y": 5278.056292551513, + "max_x": 2302.772544939386, + "max_y": 5279.196400112502, + "center": [ + 2302.772544939386, + 5278.626346332007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.772544939386, + 5279.196400112502 + ], + [ + 2302.772544939386, + 5278.056292551513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556268", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.98096923724, + "min_y": 5278.040692401858, + "max_x": 2307.98096923724, + "max_y": 5279.180799962848, + "center": [ + 2307.98096923724, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.98096923724, + 5279.180799962848 + ], + [ + 2307.98096923724, + 5278.040692401858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.65380338526, + "min_y": 5278.040692401858, + "max_x": 2307.65380338526, + "max_y": 5279.180799962848, + "center": [ + 2307.65380338526, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.65380338526, + 5279.180799962848 + ], + [ + 2307.65380338526, + 5278.040692401858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55626A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2306.640674328317, + "min_y": 5278.610746182353, + "max_x": 2307.65380338526, + "max_y": 5278.613984069689, + "center": [ + 2307.147238856788, + 5278.61236512602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.65380338526, + 5278.610746182353 + ], + [ + 2306.640674328317, + 5278.613984069689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55626B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2302.772544939386, + "min_y": 5278.617410675916, + "max_x": 2305.56849547379, + "max_y": 5278.626346332007, + "center": [ + 2304.1705202065878, + 5278.621878503962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.56849547379, + 5278.617410675916 + ], + [ + 2302.772544939386, + 5278.626346332007 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55626C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2288.120431700434, + "min_y": 5376.949845877719, + "max_x": 2293.216781197752, + "max_y": 5376.949845877723, + "center": [ + 2290.668606449093, + 5376.949845877722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.120431700434, + 5376.949845877723 + ], + [ + 2293.216781197752, + 5376.949845877719 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55626D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2302.956432608965, + "min_y": 5376.948025858069, + "max_x": 2309.125589338997, + "max_y": 5376.94984587772, + "center": [ + 2306.041010973981, + 5376.948935867895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.956432608965, + 5376.94984587772 + ], + [ + 2309.125589338997, + 5376.948025858069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55626E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2293.646181733098, + "min_y": 5377.41231168175, + "max_x": 2295.482457462898, + "max_y": 5379.24858741155, + "center": [ + 2294.564319597998, + 5378.33044954665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319597998, + 5378.33044954665 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55626F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.646181733095, + "min_y": 5378.33044954665, + "max_x": 2295.482457462897, + "max_y": 5378.33044954665, + "center": [ + 2294.564319597996, + 5378.33044954665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.482457462897, + 5378.33044954665 + ], + [ + 2293.646181733095, + 5378.33044954665 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556270", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.564319597998, + "min_y": 5377.301730927405, + "max_x": 2294.564319597998, + "max_y": 5378.33044954665, + "center": [ + 2294.564319597998, + 5377.816090237027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319597998, + 5378.33044954665 + ], + [ + 2294.564319597998, + 5377.301730927405 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556271", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.866226016756, + "min_y": 5376.400118515598, + "max_x": 2295.482457462897, + "max_y": 5376.769081936338, + "center": [ + 2295.1743417398266, + 5376.584600225968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.482457462897, + 5376.400118515598 + ], + [ + 2294.866226016756, + 5376.769081936338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556272", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.646181733095, + "min_y": 5377.130609819102, + "max_x": 2294.262413179236, + "max_y": 5377.499573239841, + "center": [ + 2293.9542974561655, + 5377.315091529472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.262413179236, + 5377.130609819102 + ], + [ + 2293.646181733095, + 5377.499573239841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556273", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.482457462897, + "min_y": 5376.400118515598, + "max_x": 2295.482457462897, + "max_y": 5377.499573239841, + "center": [ + 2295.482457462897, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.482457462897, + 5377.499573239841 + ], + [ + 2295.482457462897, + 5376.400118515598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556274", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.646181733095, + "min_y": 5376.400118515598, + "max_x": 2293.646181733095, + "max_y": 5377.499573239841, + "center": [ + 2293.646181733095, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.646181733095, + 5377.499573239841 + ], + [ + 2293.646181733095, + 5376.400118515598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556275", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.866226016756, + "min_y": 5377.130609819102, + "max_x": 2295.482457462897, + "max_y": 5377.499573239841, + "center": [ + 2295.1743417398266, + 5377.315091529472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.482457462897, + 5377.499573239841 + ], + [ + 2294.866226016756, + 5377.130609819102 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556276", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.646181733095, + "min_y": 5376.400118515598, + "max_x": 2294.262413179236, + "max_y": 5376.769081936338, + "center": [ + 2293.9542974561655, + 5376.584600225968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.262413179236, + 5376.769081936338 + ], + [ + 2293.646181733095, + 5376.400118515598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556277", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.216781197752, + "min_y": 5376.379792097225, + "max_x": 2293.216781197752, + "max_y": 5377.519899658214, + "center": [ + 2293.216781197752, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.216781197752, + 5377.519899658214 + ], + [ + 2293.216781197752, + 5376.379792097225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556278", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.911857998243, + "min_y": 5376.379792097225, + "max_x": 2295.911857998243, + "max_y": 5377.519899658214, + "center": [ + 2295.911857998243, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.911857998243, + 5377.519899658214 + ], + [ + 2295.911857998243, + 5376.379792097225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556279", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.564319597998, + "min_y": 5379.248587411552, + "max_x": 2294.564319597998, + "max_y": 5382.093943221825, + "center": [ + 2294.564319597998, + 5380.671265316689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319597998, + 5379.248587411552 + ], + [ + 2294.564319597998, + 5382.093943221825 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55627A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.182005748797, + "min_y": 5380.436334729841, + "max_x": 2294.946633447199, + "max_y": 5380.877792737347, + "center": [ + 2294.5643195979983, + 5380.6570637335935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.182005748797, + 5380.436334729841 + ], + [ + 2294.946633447199, + 5380.877792737347 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55627B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.182005748797, + "min_y": 5380.796217167023, + "max_x": 2294.946633447199, + "max_y": 5381.237675174531, + "center": [ + 2294.5643195979983, + 5381.016946170777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.182005748797, + 5380.796217167023 + ], + [ + 2294.946633447199, + 5381.237675174531 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55627C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2294.128006949093, + "min_y": 5382.428326735985, + "max_x": 2295.58553081967, + "max_y": 5383.238062219639, + "center": [ + 2294.8567688843814, + 5382.833194477812 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55627D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2297.277908213938, + "min_y": 5382.520851728695, + "max_x": 2299.629135901044, + "max_y": 5383.827089332643, + "center": [ + 2298.4535220574908, + 5383.173970530668 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55627E", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2295.8631224283445, + "min_y": 5379.026385281446, + "max_x": 2301.5872512179994, + "max_y": 5384.750514071102, + "center": [ + 2298.725186823172, + 5381.888449676274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.725186823172, + 5381.888449676274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55627F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.030826583179, + "min_y": 5377.645535180766, + "max_x": 2296.920550772818, + "max_y": 5379.667030912082, + "center": [ + 2295.9756886779987, + 5378.6562830464245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.920550772818, + 5379.667030912082 + ], + [ + 2295.030826583179, + 5377.645535180766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556280", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2294.564319598001, + "min_y": 5383.656410176311, + "max_x": 2294.564319598001, + "max_y": 5387.242034703078, + "center": [ + 2294.564319598001, + 5385.4492224396945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319598001, + 5383.656410176311 + ], + [ + 2294.564319598001, + 5387.242034703078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556281", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2294.564319598001, + "min_y": 5387.240291851068, + "max_x": 2309.608682270233, + "max_y": 5387.242034703078, + "center": [ + 2302.086500934117, + 5387.241163277073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319598001, + 5387.242034703078 + ], + [ + 2309.608682270233, + 5387.240291851068 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556282", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.452755190981, + "min_y": 5376.948025858062, + "max_x": 2310.778263355476, + "max_y": 5376.948025858069, + "center": [ + 2310.115509273229, + 5376.948025858065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.452755190981, + 5376.948025858069 + ], + [ + 2310.778263355476, + 5376.948025858062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556283", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.267602393296, + "min_y": 5376.948025858062, + "max_x": 2315.511052464923, + "max_y": 5376.948025858062, + "center": [ + 2314.8893274291095, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.267602393296, + 5376.948025858062 + ], + [ + 2315.511052464923, + 5376.948025858062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556284", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.125589338997, + "min_y": 5376.398298495948, + "max_x": 2309.125589338997, + "max_y": 5377.497753220191, + "center": [ + 2309.125589338997, + 5376.94802585807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.125589338997, + 5376.398298495948 + ], + [ + 2309.125589338997, + 5377.497753220191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556285", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.452755190981, + "min_y": 5376.398298495948, + "max_x": 2309.452755190981, + "max_y": 5377.497753220191, + "center": [ + 2309.452755190981, + 5376.94802585807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.452755190981, + 5376.398298495948 + ], + [ + 2309.452755190981, + 5377.497753220191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556286", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2311.428175138516, + "min_y": 5382.026919682815, + "max_x": 2313.7794028256217, + "max_y": 5383.333157286763, + "center": [ + 2312.603788982069, + 5382.680038484788 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556287", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.6608684795574, + "min_y": 5378.736334682392, + "max_x": 2315.3849972692124, + "max_y": 5384.460463472048, + "center": [ + 2312.522932874385, + 5381.59839907722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5381.59839907722 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556288", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.511052464923, + "min_y": 5376.398298495941, + "max_x": 2315.511052464923, + "max_y": 5377.497753220183, + "center": [ + 2315.511052464923, + 5376.9480258580625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.511052464923, + 5376.398298495941 + ], + [ + 2315.511052464923, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556289", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2310.740343072218, + "min_y": 5387.83850309711, + "max_x": 2313.8753133216924, + "max_y": 5389.144740701058, + "center": [ + 2312.307828196955, + 5388.491621899084 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.6608684795574, + "min_y": 5384.512649681379, + "max_x": 2315.3849972692124, + "max_y": 5390.236778471035, + "center": [ + 2312.522932874385, + 5387.374714076207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5387.374714076207 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5384.460463472048, + "max_x": 2312.522932874385, + "max_y": 5384.460463472056, + "center": [ + 2311.065807572309, + 5384.460463472053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5384.460463472048 + ], + [ + 2309.608682270233, + 5384.460463472056 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5384.460463472056, + "max_x": 2309.608682270233, + "max_y": 5387.374714076202, + "center": [ + 2309.608682270233, + 5385.917588774129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.608682270233, + 5387.374714076202 + ], + [ + 2309.608682270233, + 5384.460463472056 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2312.522932874385, + "min_y": 5384.460463472048, + "max_x": 2315.43718347854, + "max_y": 5384.460463472056, + "center": [ + 2313.9800581764625, + 5384.460463472053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5384.460463472048 + ], + [ + 2315.43718347854, + 5384.460463472056 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2315.43718347854, + "min_y": 5384.460463472056, + "max_x": 2315.43718347854, + "max_y": 5387.374714076202, + "center": [ + 2315.43718347854, + 5385.917588774129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.43718347854, + 5387.374714076202 + ], + [ + 2315.43718347854, + 5384.460463472056 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55628F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2274.79860434182, + "min_y": 5356.237016842218, + "max_x": 2276.0078074287208, + "max_y": 5357.244686081302, + "center": [ + 2275.4032058852704, + 5356.74085146176 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556290", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2273.356881703931, + "min_y": 5353.539269628267, + "max_x": 2277.7726392081236, + "max_y": 5357.955027132461, + "center": [ + 2275.564760456027, + 5355.747148380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.564760456027, + 5355.747148380364 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556291", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.410356819682, + "min_y": 5359.190435285312, + "max_x": 2275.564760456027, + "max_y": 5359.190435285312, + "center": [ + 2274.987558637855, + 5359.190435285312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.410356819682, + 5359.190435285312 + ], + [ + 2275.564760456027, + 5359.190435285312 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556292", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.640707923193, + "max_x": 2272.2469152379, + "max_y": 5359.740162647435, + "center": [ + 2272.2469152379, + 5359.190435285314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5359.740162647435 + ], + [ + 2272.2469152379, + 5358.640707923193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556293", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5351.635360412569, + "max_x": 2271.817514702557, + "max_y": 5352.77546797356, + "center": [ + 2271.817514702557, + 5352.205414193064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5352.77546797356 + ], + [ + 2271.817514702557, + 5351.635360412569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556294", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5351.655686830943, + "max_x": 2271.817514702557, + "max_y": 5352.755141555189, + "center": [ + 2271.817514702557, + 5352.205414193066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5352.755141555189 + ], + [ + 2271.817514702557, + 5351.655686830943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556295", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.564760456023, + "min_y": 5357.955027132461, + "max_x": 2275.564760456027, + "max_y": 5359.190435285312, + "center": [ + 2275.5647604560254, + 5358.572731208886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.564760456027, + 5359.190435285312 + ], + [ + 2275.564760456023, + 5357.955027132461 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556296", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.308122136321, + "min_y": 5352.205414193065, + "max_x": 2275.564760456027, + "max_y": 5352.205414193065, + "center": [ + 2274.936441296174, + 5352.205414193065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.308122136321, + 5352.205414193065 + ], + [ + 2275.564760456027, + 5352.205414193065 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556297", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.564760456027, + "min_y": 5352.20541419307, + "max_x": 2275.564760456027, + "max_y": 5353.539269628267, + "center": [ + 2275.564760456027, + 5352.872341910668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.564760456027, + 5352.20541419307 + ], + [ + 2275.564760456027, + 5353.539269628267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556298", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5352.205414193065, + "max_x": 2271.817514702557, + "max_y": 5352.205414193065, + "center": [ + 2271.4267751289385, + 5352.205414193065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5352.205414193065 + ], + [ + 2271.03603555532, + 5352.205414193065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556299", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5358.620381504819, + "max_x": 2271.817514702557, + "max_y": 5359.760489065811, + "center": [ + 2271.817514702557, + 5359.190435285315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5359.760489065811 + ], + [ + 2271.817514702557, + 5358.620381504819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55629A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2323.165968649709, + "min_y": 5306.091556527005, + "max_x": 2325.15251970294, + "max_y": 5306.919286132518, + "center": [ + 2324.1592441763246, + 5306.505421329762 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55629B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2321.6289709140647, + "min_y": 5308.26966818042, + "max_x": 2327.3530997037196, + "max_y": 5313.993796970076, + "center": [ + 2324.491035308892, + 5311.131732575248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.491035308892, + 5311.131732575248 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55629C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2324.482352771735, + "min_y": 5307.409983245698, + "max_x": 2324.482352771735, + "max_y": 5308.269760470679, + "center": [ + 2324.482352771735, + 5307.839871858188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.482352771735, + 5308.269760470679 + ], + [ + 2324.482352771735, + 5307.409983245698 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55629D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2311.206548752361, + "min_y": 5376.506492353468, + "max_x": 2313.193099805592, + "max_y": 5377.334221958981, + "center": [ + 2312.1998242789764, + 5376.920357156225 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55629E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.522932874387, + "min_y": 5377.824919072168, + "max_x": 2312.522932874397, + "max_y": 5378.736334682392, + "center": [ + 2312.522932874392, + 5378.28062687728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874397, + 5378.736334682392 + ], + [ + 2312.522932874387, + 5377.824919072168 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55629F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.120431700434, + "min_y": 5376.379792097225, + "max_x": 2288.120431700434, + "max_y": 5377.519899658217, + "center": [ + 2288.120431700434, + 5376.949845877721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.120431700434, + 5377.519899658217 + ], + [ + 2288.120431700434, + 5376.379792097225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.629824266673, + "min_y": 5376.400118515596, + "max_x": 2285.629824266673, + "max_y": 5377.499573239838, + "center": [ + 2285.629824266673, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.629824266673, + 5376.400118515596 + ], + [ + 2285.629824266673, + 5377.499573239838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.120431700434, + "min_y": 5376.400118515596, + "max_x": 2288.120431700434, + "max_y": 5377.499573239838, + "center": [ + 2288.120431700434, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.120431700434, + 5376.400118515596 + ], + [ + 2288.120431700434, + 5377.499573239838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.101419917882, + "min_y": 5305.979839669704, + "max_x": 2336.71765136402, + "max_y": 5306.348803090443, + "center": [ + 2336.409535640951, + 5306.1643213800735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.71765136402, + 5305.979839669704 + ], + [ + 2336.101419917882, + 5306.348803090443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2334.881375634222, + "min_y": 5306.71033097321, + "max_x": 2335.49760708036, + "max_y": 5307.079294393949, + "center": [ + 2335.189491357291, + 5306.894812683579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.49760708036, + 5306.71033097321 + ], + [ + 2334.881375634222, + 5307.079294393949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.71765136402, + "min_y": 5305.979839669704, + "max_x": 2336.71765136402, + "max_y": 5307.079294393949, + "center": [ + 2336.71765136402, + 5306.529567031826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.71765136402, + 5307.079294393949 + ], + [ + 2336.71765136402, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2334.881375634222, + "min_y": 5305.979839669704, + "max_x": 2334.881375634222, + "max_y": 5307.079294393949, + "center": [ + 2334.881375634222, + 5306.529567031826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2334.881375634222, + 5307.079294393949 + ], + [ + 2334.881375634222, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.101419917882, + "min_y": 5306.71033097321, + "max_x": 2336.71765136402, + "max_y": 5307.079294393949, + "center": [ + 2336.409535640951, + 5306.894812683579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.71765136402, + 5307.079294393949 + ], + [ + 2336.101419917882, + 5306.71033097321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2334.881375634222, + "min_y": 5305.979839669704, + "max_x": 2335.49760708036, + "max_y": 5306.348803090443, + "center": [ + 2335.189491357291, + 5306.1643213800735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.49760708036, + 5306.348803090443 + ], + [ + 2334.881375634222, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2334.451975098876, + "min_y": 5305.95951325133, + "max_x": 2334.451975098876, + "max_y": 5307.09962081232, + "center": [ + 2334.451975098876, + 5306.529567031825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2334.451975098876, + 5307.09962081232 + ], + [ + 2334.451975098876, + 5305.95951325133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.147051899364, + "min_y": 5305.95951325133, + "max_x": 2337.147051899364, + "max_y": 5307.09962081232, + "center": [ + 2337.147051899364, + 5306.529567031825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.147051899364, + 5307.09962081232 + ], + [ + 2337.147051899364, + 5305.95951325133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2344.278439093694, + "min_y": 5305.979949683501, + "max_x": 2344.894670539832, + "max_y": 5306.348913104238, + "center": [ + 2344.586554816763, + 5306.16443139387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.894670539832, + 5305.979949683501 + ], + [ + 2344.278439093694, + 5306.348913104238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2343.058394810034, + "min_y": 5306.710440987006, + "max_x": 2343.674626256174, + "max_y": 5307.079404407746, + "center": [ + 2343.366510533104, + 5306.894922697376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.674626256174, + 5306.710440987006 + ], + [ + 2343.058394810034, + 5307.079404407746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2344.894670539832, + "min_y": 5305.979949683501, + "max_x": 2344.894670539832, + "max_y": 5307.079404407746, + "center": [ + 2344.894670539832, + 5306.529677045623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.894670539832, + 5307.079404407746 + ], + [ + 2344.894670539832, + 5305.979949683501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2343.058394810034, + "min_y": 5305.979949683501, + "max_x": 2343.058394810034, + "max_y": 5307.079404407746, + "center": [ + 2343.058394810034, + 5306.529677045623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.058394810034, + 5307.079404407746 + ], + [ + 2343.058394810034, + 5305.979949683501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2344.278439093694, + "min_y": 5306.710440987006, + "max_x": 2344.894670539832, + "max_y": 5307.079404407746, + "center": [ + 2344.586554816763, + 5306.894922697376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.894670539832, + 5307.079404407746 + ], + [ + 2344.278439093694, + 5306.710440987006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2343.058394810034, + "min_y": 5305.979949683501, + "max_x": 2343.674626256174, + "max_y": 5306.348913104238, + "center": [ + 2343.366510533104, + 5306.16443139387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.674626256174, + 5306.348913104238 + ], + [ + 2343.058394810034, + 5305.979949683501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2342.62899427469, + "min_y": 5305.95962326513, + "max_x": 2342.62899427469, + "max_y": 5307.09973082612, + "center": [ + 2342.62899427469, + 5306.529677045625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2342.62899427469, + 5307.09973082612 + ], + [ + 2342.62899427469, + 5305.95962326513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2345.324071075179, + "min_y": 5305.95962326513, + "max_x": 2345.324071075179, + "max_y": 5307.09973082612, + "center": [ + 2345.324071075179, + 5306.529677045625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2345.324071075179, + 5307.09973082612 + ], + [ + 2345.324071075179, + 5305.95962326513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2333.20499874421, + "min_y": 5300.623107491213, + "max_x": 2333.20499874421, + "max_y": 5306.529567031826, + "center": [ + 2333.20499874421, + 5303.57633726152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.20499874421, + 5306.529567031826 + ], + [ + 2333.20499874421, + 5300.623107491213 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.956432608965, + "min_y": 5376.379792097225, + "max_x": 2302.956432608965, + "max_y": 5377.519899658214, + "center": [ + 2302.956432608965, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.956432608965, + 5377.519899658214 + ], + [ + 2302.956432608965, + 5376.379792097225 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.465825175201, + "min_y": 5376.400118515598, + "max_x": 2300.465825175201, + "max_y": 5377.499573239841, + "center": [ + 2300.465825175201, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.465825175201, + 5376.400118515598 + ], + [ + 2300.465825175201, + 5377.499573239841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.956432608965, + "min_y": 5376.400118515598, + "max_x": 2302.956432608965, + "max_y": 5377.499573239841, + "center": [ + 2302.956432608965, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.956432608965, + 5376.400118515598 + ], + [ + 2302.956432608965, + 5377.499573239841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2283.973474821981, + "min_y": 5371.837091430386, + "max_x": 2283.973474821981, + "max_y": 5376.949845877717, + "center": [ + 2283.973474821981, + 5374.3934686540515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.973474821981, + 5376.949845877717 + ], + [ + 2283.973474821981, + 5371.837091430386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562B7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2303.36068213311, + "min_y": 5371.835271410745, + "max_x": 2303.362190995435, + "max_y": 5376.949726171208, + "center": [ + 2303.3614365642725, + 5374.392498790976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.362190995435, + 5376.949726171208 + ], + [ + 2303.36068213311, + 5371.835271410745 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562B8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2318.893597392975, + "min_y": 5376.596140808377, + "max_x": 2319.5973674923484, + "max_y": 5377.29991090775, + "center": [ + 2319.245482442662, + 5376.948025858063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.245482442662, + 5376.948025858063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.000178725781, + "min_y": 5376.39829849594, + "max_x": 2318.000178725781, + "max_y": 5377.497753220183, + "center": [ + 2318.000178725781, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.000178725781, + 5376.39829849594 + ], + [ + 2318.000178725781, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.490786159542, + "min_y": 5376.39829849594, + "max_x": 2320.490786159542, + "max_y": 5377.497753220183, + "center": [ + 2320.490786159542, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.490786159542, + 5376.39829849594 + ], + [ + 2320.490786159542, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.838218316901, + "min_y": 5376.398298495941, + "max_x": 2315.838218316901, + "max_y": 5377.497753220183, + "center": [ + 2315.838218316901, + 5376.9480258580625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.838218316901, + 5376.398298495941 + ], + [ + 2315.838218316901, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.353252055103, + "min_y": 5278.612566202003, + "max_x": 2316.353252055103, + "max_y": 5280.353612249242, + "center": [ + 2316.353252055103, + 5279.483089225623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5278.612566202003 + ], + [ + 2316.353252055103, + 5280.353612249242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562BD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.353252055103, + "min_y": 5280.353612249246, + "max_x": 2316.353252055103, + "max_y": 5281.252391567977, + "center": [ + 2316.353252055103, + 5280.803001908611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5280.353612249246 + ], + [ + 2316.353252055103, + 5281.252391567977 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562BE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.350991420431, + "min_y": 5298.301279614651, + "max_x": 2316.351432035456, + "max_y": 5306.527852674676, + "center": [ + 2316.3512117279433, + 5302.414566144664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.351432035456, + 5306.527852674676 + ], + [ + 2316.350991420431, + 5298.301279614651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562BF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.35055080541, + "min_y": 5290.156631294944, + "max_x": 2316.350991420431, + "max_y": 5295.810672180892, + "center": [ + 2316.3507711129205, + 5292.983651737918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.350991420431, + 5295.810672180892 + ], + [ + 2316.35055080541, + 5290.156631294944 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5373.316692821026, + "max_x": 2272.701791975414, + "max_y": 5373.316692821026, + "center": [ + 2271.868913765367, + 5373.316692821026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5373.316692821026 + ], + [ + 2272.701791975414, + 5373.316692821026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.131192510757, + "min_y": 5372.766965458902, + "max_x": 2273.131192510757, + "max_y": 5373.866420183144, + "center": [ + 2273.131192510757, + 5373.316692821023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.131192510757, + 5373.866420183144 + ], + [ + 2273.131192510757, + 5372.766965458902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.701791975414, + "min_y": 5372.746639040528, + "max_x": 2272.701791975414, + "max_y": 5373.88674660152, + "center": [ + 2272.701791975414, + 5373.316692821024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.701791975414, + 5373.88674660152 + ], + [ + 2272.701791975414, + 5372.746639040528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.03603555532, + "min_y": 5347.351018368778, + "max_x": 2272.701791975414, + "max_y": 5347.351018368778, + "center": [ + 2271.868913765367, + 5347.351018368778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.03603555532, + 5347.351018368778 + ], + [ + 2272.701791975414, + 5347.351018368778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.131192510757, + "min_y": 5346.801291006656, + "max_x": 2273.131192510757, + "max_y": 5347.900745730899, + "center": [ + 2273.131192510757, + 5347.351018368778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.131192510757, + 5347.900745730899 + ], + [ + 2273.131192510757, + 5346.801291006656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.701791975414, + "min_y": 5346.780964588282, + "max_x": 2272.701791975414, + "max_y": 5347.921072149272, + "center": [ + 2272.701791975414, + 5347.351018368777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.701791975414, + 5347.921072149272 + ], + [ + 2272.701791975414, + 5346.780964588282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.793308121438, + "min_y": 5280.353612249246, + "max_x": 2316.913089264059, + "max_y": 5280.353612249246, + "center": [ + 2316.3531986927483, + 5280.353612249246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.913089264059, + 5280.353612249246 + ], + [ + 2315.793308121438, + 5280.353612249246 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.308122136321, + "min_y": 5351.635360412569, + "max_x": 2274.308122136321, + "max_y": 5352.77546797356, + "center": [ + 2274.308122136321, + 5352.205414193064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.308122136321, + 5352.77546797356 + ], + [ + 2274.308122136321, + 5351.635360412569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2272.7109333697504, + "min_y": 5351.853529143378, + "max_x": 2273.4147034691237, + "max_y": 5352.5572992427515, + "center": [ + 2273.062818419437, + 5352.205414193065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.062818419437, + 5352.205414193065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5351.655686830943, + "max_x": 2271.817514702557, + "max_y": 5352.755141555189, + "center": [ + 2271.817514702557, + 5352.205414193066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5351.655686830943 + ], + [ + 2271.817514702557, + 5352.755141555189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.308122136321, + "min_y": 5351.655686830943, + "max_x": 2274.308122136321, + "max_y": 5352.755141555189, + "center": [ + 2274.308122136321, + 5352.205414193066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.308122136321, + 5351.655686830943 + ], + [ + 2274.308122136321, + 5352.755141555189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.410356819682, + "min_y": 5358.628369479752, + "max_x": 2274.410356819682, + "max_y": 5359.768477040743, + "center": [ + 2274.410356819682, + 5359.198423260248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.410356819682, + 5359.768477040743 + ], + [ + 2274.410356819682, + 5358.628369479752 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2272.8131680531133, + "min_y": 5358.846538210562, + "max_x": 2273.5169381524865, + "max_y": 5359.550308309936, + "center": [ + 2273.1650531028, + 5359.198423260249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.1650531028, + 5359.198423260249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.640707923193, + "max_x": 2272.2469152379, + "max_y": 5359.740162647435, + "center": [ + 2272.2469152379, + 5359.190435285314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5358.640707923193 + ], + [ + 2272.2469152379, + 5359.740162647435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.410356819682, + "min_y": 5358.648695898127, + "max_x": 2274.410356819682, + "max_y": 5359.748150622366, + "center": [ + 2274.410356819682, + 5359.198423260246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.410356819682, + 5358.648695898127 + ], + [ + 2274.410356819682, + 5359.748150622366 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562CF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.640567105532, + "min_y": 5278.621167336963, + "max_x": 2293.640567105637, + "max_y": 5311.21940380926, + "center": [ + 2293.6405671055845, + 5294.920285573111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105532, + 5278.621167336963 + ], + [ + 2293.640567105637, + 5311.21940380926 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.752266253933, + "min_y": 5322.076690003521, + "max_x": 2295.752266253933, + "max_y": 5334.599022039826, + "center": [ + 2295.752266253933, + 5328.337856021673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.752266253933, + 5322.076690003521 + ], + [ + 2295.752266253933, + 5334.599022039826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.476260470004, + "min_y": 5323.62901971846, + "max_x": 2291.476260470004, + "max_y": 5334.599022039826, + "center": [ + 2291.476260470004, + 5329.114020879143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.476260470004, + 5323.62901971846 + ], + [ + 2291.476260470004, + 5334.599022039826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.702004108057, + "min_y": 5334.599022039826, + "max_x": 2296.526522615883, + "max_y": 5334.599022039826, + "center": [ + 2293.61426336197, + 5334.599022039826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.702004108057, + 5334.599022039826 + ], + [ + 2296.526522615883, + 5334.599022039826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.752266253933, + "min_y": 5316.327867603983, + "max_x": 2295.752266253933, + "max_y": 5322.076690003521, + "center": [ + 2295.752266253933, + 5319.202278803752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.752266253933, + 5322.076690003521 + ], + [ + 2295.752266253933, + 5316.327867603983 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.476260470002, + "min_y": 5316.283611729857, + "max_x": 2291.476260470003, + "max_y": 5323.62901971846, + "center": [ + 2291.4762604700027, + 5319.956315724158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.476260470002, + 5323.62901971846 + ], + [ + 2291.476260470003, + 5316.283611729857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.897065097146, + "min_y": 5318.942183161097, + "max_x": 2294.897065097146, + "max_y": 5334.599022039826, + "center": [ + 2294.897065097146, + 5326.770602600462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.897065097146, + 5334.599022039826 + ], + [ + 2294.897065097146, + 5318.942183161097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.041863940361, + "min_y": 5318.942183161097, + "max_x": 2294.041863940361, + "max_y": 5334.599022039826, + "center": [ + 2294.041863940361, + 5326.770602600462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.041863940361, + 5334.599022039826 + ], + [ + 2294.041863940361, + 5318.942183161097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.186662783577, + "min_y": 5318.942183161097, + "max_x": 2293.186662783577, + "max_y": 5334.599022039826, + "center": [ + 2293.186662783577, + 5326.770602600462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.186662783577, + 5334.599022039826 + ], + [ + 2293.186662783577, + 5318.942183161097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2292.331461626788, + "min_y": 5318.942183161097, + "max_x": 2292.331461626788, + "max_y": 5334.599022039826, + "center": [ + 2292.331461626788, + 5326.770602600462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.331461626788, + 5334.599022039826 + ], + [ + 2292.331461626788, + 5318.942183161097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.752266253933, + "min_y": 5334.599022039832, + "max_x": 2295.752266253933, + "max_y": 5336.055124632828, + "center": [ + 2295.752266253933, + 5335.32707333633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.752266253933, + 5334.599022039832 + ], + [ + 2295.752266253933, + 5336.055124632828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.476260470002, + "min_y": 5334.599022039826, + "max_x": 2291.476260470004, + "max_y": 5336.099380506957, + "center": [ + 2291.476260470003, + 5335.349201273391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.476260470002, + 5334.599022039826 + ], + [ + 2291.476260470004, + 5336.099380506957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.752266253933, + "min_y": 5331.26817633086, + "max_x": 2296.436217365033, + "max_y": 5331.26817633086, + "center": [ + 2296.094241809483, + 5331.26817633086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.752266253933, + 5331.26817633086 + ], + [ + 2296.436217365033, + 5331.26817633086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.763383217014, + "min_y": 5330.71662894909, + "max_x": 2296.763383217014, + "max_y": 5331.816083673327, + "center": [ + 2296.763383217014, + 5331.266356311208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.763383217014, + 5330.71662894909 + ], + [ + 2296.763383217014, + 5331.816083673327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.436217365033, + "min_y": 5330.71662894909, + "max_x": 2296.436217365033, + "max_y": 5331.816083673327, + "center": [ + 2296.436217365033, + 5331.266356311208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.436217365033, + 5330.71662894909 + ], + [ + 2296.436217365033, + 5331.816083673327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.754438374511, + "min_y": 5323.891592500679, + "max_x": 2296.399165169024, + "max_y": 5323.891592500679, + "center": [ + 2296.0768017717674, + 5323.891592500679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.754438374511, + 5323.891592500679 + ], + [ + 2296.399165169024, + 5323.891592500679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.726331021005, + "min_y": 5323.340045118908, + "max_x": 2296.726331021005, + "max_y": 5324.43949984315, + "center": [ + 2296.726331021005, + 5323.889772481029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.726331021005, + 5323.340045118908 + ], + [ + 2296.726331021005, + 5324.43949984315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.399165169024, + "min_y": 5323.340045118908, + "max_x": 2296.399165169024, + "max_y": 5324.43949984315, + "center": [ + 2296.399165169024, + 5323.889772481029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.399165169024, + 5323.340045118908 + ], + [ + 2296.399165169024, + 5324.43949984315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.505121407538, + "min_y": 5331.26817633086, + "max_x": 2302.50512140754, + "max_y": 5333.21879376316, + "center": [ + 2302.5051214075393, + 5332.24348504701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.505121407538, + 5331.26817633086 + ], + [ + 2302.50512140754, + 5333.21879376316 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5562E4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2301.48253329929, + "min_y": 5336.50937876358, + "max_x": 2303.0500184240273, + "max_y": 5337.815616367528, + "center": [ + 2302.266275861659, + 5337.162497565554 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5562E5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2299.6430570127127, + "min_y": 5333.218793763161, + "max_x": 2305.3671858023677, + "max_y": 5338.9429225528165, + "center": [ + 2302.50512140754, + 5336.080858157989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.50512140754, + 5336.080858157989 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5562E6", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2296.726331021005, + "min_y": 5323.891592500674, + "max_x": 2332.902821519661, + "max_y": 5323.891592500684, + "center": [ + 2314.814576270333, + 5323.891592500679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.726331021005, + 5323.891592500674 + ], + [ + 2332.902821519661, + 5323.891592500684 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.165273374822, + "min_y": 5300.053053710718, + "max_x": 2338.165273374822, + "max_y": 5301.193161271708, + "center": [ + 2338.165273374822, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.165273374822, + 5301.193161271708 + ], + [ + 2338.165273374822, + 5300.053053710718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.165273374822, + "min_y": 5300.073380129095, + "max_x": 2338.165273374822, + "max_y": 5301.172834853335, + "center": [ + 2338.165273374822, + 5300.623107491216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.165273374822, + 5300.073380129095 + ], + [ + 2338.165273374822, + 5301.172834853335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562E9", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2285.677728194608, + "min_y": 5403.396475208605, + "max_x": 2299.7882332095646, + "max_y": 5404.516356558998, + "center": [ + 2292.732980702086, + 5403.956415883802 + ] + }, + "raw_value": "P-10228-500A-F2A-H100", + "clean_value": "P-10228-500A-F2A-H100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562EA", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2324.724706117315, + "min_y": 5378.832299259999, + "max_x": 2336.1474958913277, + "max_y": 5379.952180610392, + "center": [ + 2330.4361010043212, + 5379.392239935196 + ] + }, + "raw_value": "P-10233-25A-F2A-n", + "clean_value": "P-10233-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5562EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.165273374822, + "min_y": 5300.067212173813, + "max_x": 2338.165273374822, + "max_y": 5301.179002808613, + "center": [ + 2338.165273374822, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.165273374822, + 5301.179002808613 + ], + [ + 2338.165273374822, + 5300.067212173813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.726331021005, + "min_y": 5323.335697183278, + "max_x": 2296.726331021005, + "max_y": 5324.447487818082, + "center": [ + 2296.726331021005, + 5323.89159250068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.726331021005, + 5324.447487818082 + ], + [ + 2296.726331021005, + 5323.335697183278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.726331021005, + "min_y": 5323.335697183278, + "max_x": 2296.726331021005, + "max_y": 5324.447487818082, + "center": [ + 2296.726331021005, + 5323.89159250068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.726331021005, + 5324.447487818082 + ], + [ + 2296.726331021005, + 5323.335697183278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.763383217014, + "min_y": 5330.712281013454, + "max_x": 2296.763383217014, + "max_y": 5331.824071648259, + "center": [ + 2296.763383217014, + 5331.2681763308565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.763383217014, + 5331.824071648259 + ], + [ + 2296.763383217014, + 5330.712281013454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.763383217014, + "min_y": 5330.712281013454, + "max_x": 2296.763383217014, + "max_y": 5331.824071648259, + "center": [ + 2296.763383217014, + 5331.2681763308565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.763383217014, + 5331.824071648259 + ], + [ + 2296.763383217014, + 5330.712281013454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2297.574761037361, + "min_y": 5311.869002184817, + "max_x": 2308.773574541295, + "max_y": 5313.735471102139, + "center": [ + 2303.174167789328, + 5312.802236643478 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.083190967701, + "min_y": 5358.642527942843, + "max_x": 2274.083190967701, + "max_y": 5359.754318577653, + "center": [ + 2274.083190967701, + 5359.198423260248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.083190967701, + 5359.754318577653 + ], + [ + 2274.083190967701, + 5358.642527942843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.410356819682, + "min_y": 5358.642527942843, + "max_x": 2274.410356819682, + "max_y": 5359.754318577653, + "center": [ + 2274.410356819682, + 5359.198423260248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.410356819682, + 5359.754318577653 + ], + [ + 2274.410356819682, + 5358.642527942843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.636359987561, + "max_x": 2272.2469152379, + "max_y": 5359.748150622366, + "center": [ + 2272.2469152379, + 5359.1922553049635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5359.748150622366 + ], + [ + 2272.2469152379, + 5358.636359987561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.636359987561, + "max_x": 2272.2469152379, + "max_y": 5359.748150622366, + "center": [ + 2272.2469152379, + 5359.1922553049635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5359.748150622366 + ], + [ + 2272.2469152379, + 5358.636359987561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5359.379187201632, + "max_x": 2272.863146684038, + "max_y": 5359.748150622366, + "center": [ + 2272.555030960969, + 5359.563668911998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.863146684038, + 5359.379187201632 + ], + [ + 2272.2469152379, + 5359.748150622366 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.648695898127, + "max_x": 2272.2469152379, + "max_y": 5359.748150622366, + "center": [ + 2272.2469152379, + 5359.198423260246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5359.748150622366 + ], + [ + 2272.2469152379, + 5358.648695898127 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.2469152379, + "min_y": 5358.648695898127, + "max_x": 2272.863146684038, + "max_y": 5359.017659318862, + "center": [ + 2272.555030960969, + 5358.833177608494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.2469152379, + 5358.648695898127 + ], + [ + 2272.863146684038, + 5359.017659318862 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.466959521558, + "min_y": 5359.379187201628, + "max_x": 2274.083190967701, + "max_y": 5359.748150622366, + "center": [ + 2273.775075244629, + 5359.5636689119965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.466959521558, + 5359.379187201628 + ], + [ + 2274.083190967701, + 5359.748150622366 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.083190967701, + "min_y": 5358.648695898127, + "max_x": 2274.083190967701, + "max_y": 5359.748150622366, + "center": [ + 2274.083190967701, + 5359.198423260246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.083190967701, + 5359.748150622366 + ], + [ + 2274.083190967701, + 5358.648695898127 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.466959521558, + "min_y": 5358.648695898127, + "max_x": 2274.083190967701, + "max_y": 5359.017659318864, + "center": [ + 2273.775075244629, + 5358.833177608496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.083190967701, + 5358.648695898127 + ], + [ + 2273.466959521558, + 5359.017659318864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.980956284336, + "min_y": 5351.649518875661, + "max_x": 2273.980956284336, + "max_y": 5352.761309510467, + "center": [ + 2273.980956284336, + 5352.205414193064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.980956284336, + 5352.761309510467 + ], + [ + 2273.980956284336, + 5351.649518875661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.308122136321, + "min_y": 5351.649518875661, + "max_x": 2274.308122136321, + "max_y": 5352.761309510467, + "center": [ + 2274.308122136321, + 5352.205414193064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.308122136321, + 5352.761309510467 + ], + [ + 2274.308122136321, + 5351.649518875661 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5351.651338895309, + "max_x": 2271.817514702557, + "max_y": 5352.763129530115, + "center": [ + 2271.817514702557, + 5352.207234212712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5352.763129530115 + ], + [ + 2271.817514702557, + 5351.651338895309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.817514702557, + "min_y": 5351.651338895309, + "max_x": 2271.817514702557, + "max_y": 5352.763129530115, + "center": [ + 2271.817514702557, + 5352.207234212712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.817514702557, + 5352.763129530115 + ], + [ + 2271.817514702557, + 5351.651338895309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5562FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.144680554538, + "min_y": 5352.386178134448, + "max_x": 2272.760912000676, + "max_y": 5352.755141555189, + "center": [ + 2272.452796277607, + 5352.570659844818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.760912000676, + 5352.386178134448 + ], + [ + 2272.144680554538, + 5352.755141555189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556300", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.144680554538, + "min_y": 5351.655686830943, + "max_x": 2272.144680554538, + "max_y": 5352.755141555189, + "center": [ + 2272.144680554538, + 5352.205414193066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.144680554538, + 5352.755141555189 + ], + [ + 2272.144680554538, + 5351.655686830943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556301", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.144680554538, + "min_y": 5351.655686830943, + "max_x": 2272.760912000676, + "max_y": 5352.024650251683, + "center": [ + 2272.452796277607, + 5351.840168541313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.144680554538, + 5351.655686830943 + ], + [ + 2272.760912000676, + 5352.024650251683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556302", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.364724838195, + "min_y": 5352.386178134448, + "max_x": 2273.980956284336, + "max_y": 5352.755141555189, + "center": [ + 2273.6728405612657, + 5352.570659844818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.364724838195, + 5352.386178134448 + ], + [ + 2273.980956284336, + 5352.755141555189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556303", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.980956284336, + "min_y": 5351.655686830943, + "max_x": 2273.980956284336, + "max_y": 5352.755141555189, + "center": [ + 2273.980956284336, + 5352.205414193066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.980956284336, + 5352.755141555189 + ], + [ + 2273.980956284336, + 5351.655686830943 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556304", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.364724838195, + "min_y": 5351.655686830943, + "max_x": 2273.980956284336, + "max_y": 5352.024650251683, + "center": [ + 2273.6728405612657, + 5351.840168541313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.980956284336, + 5351.655686830943 + ], + [ + 2273.364724838195, + 5352.024650251683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556305", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.327344577762, + "min_y": 5376.39829849594, + "max_x": 2318.9435760239, + "max_y": 5376.767261916679, + "center": [ + 2318.635460300831, + 5376.5827802063095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.9435760239, + 5376.767261916679 + ], + [ + 2318.327344577762, + 5376.39829849594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556306", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.327344577762, + "min_y": 5376.39829849594, + "max_x": 2318.327344577762, + "max_y": 5377.497753220183, + "center": [ + 2318.327344577762, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.327344577762, + 5376.39829849594 + ], + [ + 2318.327344577762, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556307", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.327344577762, + "min_y": 5377.128789799449, + "max_x": 2318.9435760239, + "max_y": 5377.497753220183, + "center": [ + 2318.635460300831, + 5377.313271509816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.327344577762, + 5377.497753220183 + ], + [ + 2318.9435760239, + 5377.128789799449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556308", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.547388861423, + "min_y": 5376.39829849594, + "max_x": 2320.163620307561, + "max_y": 5376.767261916679, + "center": [ + 2319.855504584492, + 5376.5827802063095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.547388861423, + 5376.767261916679 + ], + [ + 2320.163620307561, + 5376.39829849594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556309", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.163620307561, + "min_y": 5376.39829849594, + "max_x": 2320.163620307561, + "max_y": 5377.497753220183, + "center": [ + 2320.163620307561, + 5376.948025858062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.163620307561, + 5376.39829849594 + ], + [ + 2320.163620307561, + 5377.497753220183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.547388861423, + "min_y": 5377.128789799443, + "max_x": 2320.163620307561, + "max_y": 5377.497753220183, + "center": [ + 2319.855504584492, + 5377.313271509813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.163620307561, + 5377.497753220183 + ], + [ + 2319.547388861423, + 5377.128789799443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.629266756987, + "min_y": 5376.393950560316, + "max_x": 2302.629266756987, + "max_y": 5377.505741195123, + "center": [ + 2302.629266756987, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.629266756987, + 5377.505741195123 + ], + [ + 2302.629266756987, + 5376.393950560316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.956432608965, + "min_y": 5376.393950560316, + "max_x": 2302.956432608965, + "max_y": 5377.505741195123, + "center": [ + 2302.956432608965, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.956432608965, + 5377.505741195123 + ], + [ + 2302.956432608965, + 5376.393950560316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.465825175201, + "min_y": 5376.395770579967, + "max_x": 2300.465825175201, + "max_y": 5377.507561214773, + "center": [ + 2300.465825175201, + 5376.95166589737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.465825175201, + 5377.507561214773 + ], + [ + 2300.465825175201, + 5376.395770579967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.465825175201, + "min_y": 5376.395770579967, + "max_x": 2300.465825175201, + "max_y": 5377.507561214773, + "center": [ + 2300.465825175201, + 5376.95166589737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.465825175201, + 5377.507561214773 + ], + [ + 2300.465825175201, + 5376.395770579967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55630F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.792991027183, + "min_y": 5377.130609819108, + "max_x": 2301.409222473321, + "max_y": 5377.499573239841, + "center": [ + 2301.101106750252, + 5377.315091529475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2301.409222473321, + 5377.130609819108 + ], + [ + 2300.792991027183, + 5377.499573239841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556310", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.792991027183, + "min_y": 5376.400118515598, + "max_x": 2300.792991027183, + "max_y": 5377.499573239841, + "center": [ + 2300.792991027183, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.792991027183, + 5377.499573239841 + ], + [ + 2300.792991027183, + 5376.400118515598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556311", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.792991027183, + "min_y": 5376.400118515598, + "max_x": 2301.409222473326, + "max_y": 5376.769081936338, + "center": [ + 2301.101106750254, + 5376.584600225968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.792991027183, + 5376.400118515598 + ], + [ + 2301.409222473326, + 5376.769081936338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556312", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.013035310844, + "min_y": 5377.130609819102, + "max_x": 2302.629266756987, + "max_y": 5377.499573239841, + "center": [ + 2302.321151033915, + 5377.315091529472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.013035310844, + 5377.130609819102 + ], + [ + 2302.629266756987, + 5377.499573239841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.629266756987, + "min_y": 5376.400118515598, + "max_x": 2302.629266756987, + "max_y": 5377.499573239841, + "center": [ + 2302.629266756987, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.629266756987, + 5377.499573239841 + ], + [ + 2302.629266756987, + 5376.400118515598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556314", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2302.013035310846, + "min_y": 5376.400118515598, + "max_x": 2302.629266756987, + "max_y": 5376.769081936338, + "center": [ + 2302.3211510339165, + 5376.584600225968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.629266756987, + 5376.400118515598 + ], + [ + 2302.013035310846, + 5376.769081936338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556315", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.793265848455, + "min_y": 5376.393950560315, + "max_x": 2287.793265848455, + "max_y": 5377.505741195119, + "center": [ + 2287.793265848455, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.793265848455, + 5377.505741195119 + ], + [ + 2287.793265848455, + 5376.393950560315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556316", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.120431700436, + "min_y": 5376.393950560315, + "max_x": 2288.120431700436, + "max_y": 5377.505741195119, + "center": [ + 2288.120431700436, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.120431700436, + 5377.505741195119 + ], + [ + 2288.120431700436, + 5376.393950560315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556317", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.629824266673, + "min_y": 5376.395770579964, + "max_x": 2285.629824266673, + "max_y": 5377.50756121477, + "center": [ + 2285.629824266673, + 5376.951665897367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.629824266673, + 5377.50756121477 + ], + [ + 2285.629824266673, + 5376.395770579964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.629824266673, + "min_y": 5376.395770579964, + "max_x": 2285.629824266673, + "max_y": 5377.50756121477, + "center": [ + 2285.629824266673, + 5376.951665897367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.629824266673, + 5377.50756121477 + ], + [ + 2285.629824266673, + 5376.395770579964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556319", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.956990118654, + "min_y": 5377.130609819104, + "max_x": 2286.573221564792, + "max_y": 5377.499573239838, + "center": [ + 2286.265105841723, + 5377.315091529472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.573221564792, + 5377.130609819104 + ], + [ + 2285.956990118654, + 5377.499573239838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.956990118654, + "min_y": 5376.400118515596, + "max_x": 2285.956990118654, + "max_y": 5377.499573239838, + "center": [ + 2285.956990118654, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.956990118654, + 5377.499573239838 + ], + [ + 2285.956990118654, + 5376.400118515596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.956990118654, + "min_y": 5376.400118515596, + "max_x": 2286.573221564795, + "max_y": 5376.769081936335, + "center": [ + 2286.2651058417246, + 5376.584600225966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.956990118654, + 5376.400118515596 + ], + [ + 2286.573221564795, + 5376.769081936335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.177034402315, + "min_y": 5377.130609819099, + "max_x": 2287.793265848455, + "max_y": 5377.499573239838, + "center": [ + 2287.485150125385, + 5377.315091529468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.177034402315, + 5377.130609819099 + ], + [ + 2287.793265848455, + 5377.499573239838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.793265848455, + "min_y": 5376.400118515596, + "max_x": 2287.793265848455, + "max_y": 5377.499573239838, + "center": [ + 2287.793265848455, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.793265848455, + 5377.499573239838 + ], + [ + 2287.793265848455, + 5376.400118515596 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.177034402315, + "min_y": 5376.400118515596, + "max_x": 2287.793265848455, + "max_y": 5376.769081936332, + "center": [ + 2287.485150125385, + 5376.584600225964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.793265848455, + 5376.400118515596 + ], + [ + 2287.177034402315, + 5376.769081936332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55631F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.267602393296, + "min_y": 5376.071132643961, + "max_x": 2314.267602393296, + "max_y": 5377.824919072168, + "center": [ + 2314.267602393296, + 5376.948025858064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.267602393296, + 5377.824919072168 + ], + [ + 2314.267602393296, + 5376.071132643961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556320", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.778263355476, + "min_y": 5376.071132643961, + "max_x": 2314.267602393296, + "max_y": 5376.071132643961, + "center": [ + 2312.5229328743862, + 5376.071132643961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.267602393296, + 5376.071132643961 + ], + [ + 2310.778263355476, + 5376.071132643961 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.778263355476, + "min_y": 5376.071132643961, + "max_x": 2310.778263355476, + "max_y": 5377.824919072168, + "center": [ + 2310.778263355476, + 5376.948025858064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.778263355476, + 5376.071132643961 + ], + [ + 2310.778263355476, + 5377.824919072168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556322", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.778263355476, + "min_y": 5377.824919072168, + "max_x": 2314.267602393296, + "max_y": 5377.824919072168, + "center": [ + 2312.5229328743862, + 5377.824919072168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.778263355476, + 5377.824919072168 + ], + [ + 2314.267602393296, + 5377.824919072168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.227022290647, + "min_y": 5305.656196817494, + "max_x": 2326.227022290647, + "max_y": 5307.409983245698, + "center": [ + 2326.227022290647, + 5306.533090031596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.227022290647, + 5307.409983245698 + ], + [ + 2326.227022290647, + 5305.656196817494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.737683252828, + "min_y": 5305.656196817494, + "max_x": 2326.227022290647, + "max_y": 5305.656196817494, + "center": [ + 2324.482352771737, + 5305.656196817494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.227022290647, + 5305.656196817494 + ], + [ + 2322.737683252828, + 5305.656196817494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556325", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.737683252828, + "min_y": 5305.656196817494, + "max_x": 2322.737683252828, + "max_y": 5307.409983245698, + "center": [ + 2322.737683252828, + 5306.533090031596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.737683252828, + 5305.656196817494 + ], + [ + 2322.737683252828, + 5307.409983245698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556326", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.737683252828, + "min_y": 5307.409983245698, + "max_x": 2326.227022290647, + "max_y": 5307.409983245698, + "center": [ + 2324.482352771737, + 5307.409983245698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.737683252828, + 5307.409983245698 + ], + [ + 2326.227022290647, + 5307.409983245698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556327", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.125589338997, + "min_y": 5376.393950560316, + "max_x": 2309.125589338997, + "max_y": 5377.505741195123, + "center": [ + 2309.125589338997, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.125589338997, + 5377.505741195123 + ], + [ + 2309.125589338997, + 5376.393950560316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556328", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.125589338997, + "min_y": 5376.393950560316, + "max_x": 2309.125589338997, + "max_y": 5377.505741195123, + "center": [ + 2309.125589338997, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.125589338997, + 5377.505741195123 + ], + [ + 2309.125589338997, + 5376.393950560316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556329", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2292.905122768009, + "min_y": 5383.656410176311, + "max_x": 2296.22351642799, + "max_y": 5383.656410176311, + "center": [ + 2294.564319597999, + 5383.656410176311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.905122768009, + 5383.656410176311 + ], + [ + 2296.22351642799, + 5383.656410176311 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55632A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.22351642799, + "min_y": 5382.093943221825, + "max_x": 2296.22351642799, + "max_y": 5383.656410176311, + "center": [ + 2296.22351642799, + 5382.875176699068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.22351642799, + 5383.656410176311 + ], + [ + 2296.22351642799, + 5382.093943221825 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55632B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2292.905122768009, + "min_y": 5382.093943221825, + "max_x": 2296.22351642799, + "max_y": 5382.093943221825, + "center": [ + 2294.564319597999, + 5382.093943221825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.22351642799, + 5382.093943221825 + ], + [ + 2292.905122768009, + 5382.093943221825 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55632C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2292.905122768009, + "min_y": 5382.093943221825, + "max_x": 2292.905122768009, + "max_y": 5383.656410176311, + "center": [ + 2292.905122768009, + 5382.875176699068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.905122768009, + 5382.093943221825 + ], + [ + 2292.905122768009, + 5383.656410176311 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55632D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.329438795226, + "min_y": 5300.067212173813, + "max_x": 2340.329438795226, + "max_y": 5301.179002808613, + "center": [ + 2340.329438795226, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.329438795226, + 5301.179002808613 + ], + [ + 2340.329438795226, + 5300.067212173813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55632E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.656604647207, + "min_y": 5300.067212173813, + "max_x": 2340.656604647207, + "max_y": 5301.179002808613, + "center": [ + 2340.656604647207, + 5300.623107491213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.656604647207, + 5301.179002808613 + ], + [ + 2340.656604647207, + 5300.067212173813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55632F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.493163065425, + "min_y": 5300.8038714326, + "max_x": 2339.109394511563, + "max_y": 5301.172834853335, + "center": [ + 2338.801278788494, + 5300.988353142968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.109394511563, + 5300.8038714326 + ], + [ + 2338.493163065425, + 5301.172834853335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.493163065425, + "min_y": 5300.073380129095, + "max_x": 2338.493163065425, + "max_y": 5301.172834853335, + "center": [ + 2338.493163065425, + 5300.623107491216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.493163065425, + 5301.172834853335 + ], + [ + 2338.493163065425, + 5300.073380129095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.493163065425, + "min_y": 5300.073380129095, + "max_x": 2339.109394511563, + "max_y": 5300.442343549828, + "center": [ + 2338.801278788494, + 5300.257861839462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.493163065425, + 5300.073380129095 + ], + [ + 2339.109394511563, + 5300.442343549828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556332", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.713207349086, + "min_y": 5300.803871432595, + "max_x": 2340.329438795226, + "max_y": 5301.172834853335, + "center": [ + 2340.021323072156, + 5300.988353142965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.713207349086, + 5300.803871432595 + ], + [ + 2340.329438795226, + 5301.172834853335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.329438795226, + "min_y": 5300.073380129095, + "max_x": 2340.329438795226, + "max_y": 5301.172834853335, + "center": [ + 2340.329438795226, + 5300.623107491216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.329438795226, + 5301.172834853335 + ], + [ + 2340.329438795226, + 5300.073380129095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2339.713207349086, + "min_y": 5300.073380129095, + "max_x": 2340.329438795226, + "max_y": 5300.442343549828, + "center": [ + 2340.021323072156, + 5300.257861839462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.329438795226, + 5300.073380129095 + ], + [ + 2339.713207349086, + 5300.442343549828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.587974955468, + "min_y": 5313.234421324569, + "max_x": 2341.906368615446, + "max_y": 5313.234421324569, + "center": [ + 2340.247171785457, + 5313.234421324569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.587974955468, + 5313.234421324569 + ], + [ + 2341.906368615446, + 5313.234421324569 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2341.906368615446, + "min_y": 5311.67195437008, + "max_x": 2341.906368615446, + "max_y": 5313.234421324569, + "center": [ + 2341.906368615446, + 5312.453187847324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.906368615446, + 5313.234421324569 + ], + [ + 2341.906368615446, + 5311.67195437008 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556337", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.587974955468, + "min_y": 5311.67195437008, + "max_x": 2341.906368615446, + "max_y": 5311.67195437008, + "center": [ + 2340.247171785457, + 5311.67195437008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.906368615446, + 5311.67195437008 + ], + [ + 2338.587974955468, + 5311.67195437008 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.587974955468, + "min_y": 5311.67195437008, + "max_x": 2338.587974955468, + "max_y": 5313.234421324569, + "center": [ + 2338.587974955468, + 5312.453187847324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.587974955468, + 5311.67195437008 + ], + [ + 2338.587974955468, + 5313.234421324569 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556339", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.137042779239, + "min_y": 5305.977194714195, + "max_x": 2321.137042779239, + "max_y": 5307.088985349, + "center": [ + 2321.137042779239, + 5306.533090031598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.137042779239, + 5307.088985349 + ], + [ + 2321.137042779239, + 5305.977194714195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.137042779239, + "min_y": 5305.977194714195, + "max_x": 2321.137042779239, + "max_y": 5307.088985349, + "center": [ + 2321.137042779239, + 5306.533090031598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.137042779239, + 5307.088985349 + ], + [ + 2321.137042779239, + 5305.977194714195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.395033494274, + "min_y": 5371.279376093334, + "max_x": 2295.395033494274, + "max_y": 5372.39116672814, + "center": [ + 2295.395033494274, + 5371.835271410737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.395033494274, + 5372.39116672814 + ], + [ + 2295.395033494274, + 5371.279376093334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.722199346257, + "min_y": 5371.279376093334, + "max_x": 2295.722199346257, + "max_y": 5372.39116672814, + "center": [ + 2295.722199346257, + 5371.835271410737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.722199346257, + 5372.39116672814 + ], + [ + 2295.722199346257, + 5371.279376093334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.231591912494, + "min_y": 5371.281196112982, + "max_x": 2293.231591912494, + "max_y": 5372.392986747788, + "center": [ + 2293.231591912494, + 5371.837091430385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.231591912494, + 5372.392986747788 + ], + [ + 2293.231591912494, + 5371.281196112982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.231591912494, + "min_y": 5371.281196112982, + "max_x": 2293.231591912494, + "max_y": 5372.392986747788, + "center": [ + 2293.231591912494, + 5371.837091430385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.231591912494, + 5372.392986747788 + ], + [ + 2293.231591912494, + 5371.281196112982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55633F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.558757764475, + "min_y": 5372.016035352119, + "max_x": 2294.174989210613, + "max_y": 5372.384998772858, + "center": [ + 2293.866873487544, + 5372.200517062489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.174989210613, + 5372.016035352119 + ], + [ + 2293.558757764475, + 5372.384998772858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.558757764475, + "min_y": 5371.285544048614, + "max_x": 2293.558757764475, + "max_y": 5372.384998772858, + "center": [ + 2293.558757764475, + 5371.835271410736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.558757764475, + 5372.384998772858 + ], + [ + 2293.558757764475, + 5371.285544048614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.558757764475, + "min_y": 5371.285544048614, + "max_x": 2294.174989210613, + "max_y": 5371.654507469355, + "center": [ + 2293.866873487544, + 5371.470025758985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.558757764475, + 5371.285544048614 + ], + [ + 2294.174989210613, + 5371.654507469355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556342", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.778802048136, + "min_y": 5372.016035352119, + "max_x": 2295.395033494274, + "max_y": 5372.384998772858, + "center": [ + 2295.0869177712048, + 5372.200517062489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.778802048136, + 5372.016035352119 + ], + [ + 2295.395033494274, + 5372.384998772858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556343", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.395033494274, + "min_y": 5371.285544048614, + "max_x": 2295.395033494274, + "max_y": 5372.384998772858, + "center": [ + 2295.395033494274, + 5371.835271410736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.395033494274, + 5372.384998772858 + ], + [ + 2295.395033494274, + 5371.285544048614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556344", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.778802048136, + "min_y": 5371.285544048614, + "max_x": 2295.395033494274, + "max_y": 5371.654507469355, + "center": [ + 2295.0869177712048, + 5371.470025758985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.395033494274, + 5371.285544048614 + ], + [ + 2294.778802048136, + 5371.654507469355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556345", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5274.823824438142, + "max_x": 2304.171996335648, + "max_y": 5275.440055884279, + "center": [ + 2303.9875146252816, + 5275.131940161211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.171996335648, + 5275.440055884279 + ], + [ + 2303.803032914915, + 5274.823824438142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556346", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5274.823824438142, + "max_x": 2304.902487639155, + "max_y": 5274.823824438142, + "center": [ + 2304.352760277035, + 5274.823824438142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.803032914915, + 5274.823824438142 + ], + [ + 2304.902487639155, + 5274.823824438142 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.533524218418, + "min_y": 5274.823824438142, + "max_x": 2304.902487639155, + "max_y": 5275.440055884279, + "center": [ + 2304.7180059287866, + 5275.131940161211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.902487639155, + 5274.823824438142 + ], + [ + 2304.533524218418, + 5275.440055884279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5276.043868721798, + "max_x": 2304.171996335651, + "max_y": 5276.660100167941, + "center": [ + 2303.987514625283, + 5276.351984444869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.171996335651, + 5276.043868721798 + ], + [ + 2303.803032914915, + 5276.660100167941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.803032914915, + "min_y": 5276.660100167941, + "max_x": 2304.902487639155, + "max_y": 5276.660100167941, + "center": [ + 2304.352760277035, + 5276.660100167941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.803032914915, + 5276.660100167941 + ], + [ + 2304.902487639155, + 5276.660100167941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.533524218415, + "min_y": 5276.043868721798, + "max_x": 2304.902487639155, + "max_y": 5276.660100167941, + "center": [ + 2304.718005928785, + 5276.351984444869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.902487639155, + 5276.660100167941 + ], + [ + 2304.533524218415, + 5276.043868721798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.731190384028, + "min_y": 5278.074091053902, + "max_x": 2297.731190384028, + "max_y": 5279.185881688707, + "center": [ + 2297.731190384028, + 5278.629986371305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.731190384028, + 5279.185881688707 + ], + [ + 2297.731190384028, + 5278.074091053902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.731190384028, + "min_y": 5278.074091053902, + "max_x": 2297.731190384028, + "max_y": 5279.185881688707, + "center": [ + 2297.731190384028, + 5278.629986371305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.731190384028, + 5279.185881688707 + ], + [ + 2297.731190384028, + 5278.074091053902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.221797817794, + "min_y": 5278.628166351658, + "max_x": 2302.445379087405, + "max_y": 5278.628166351658, + "center": [ + 2301.3335884525995, + 5278.628166351658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.445379087405, + 5278.628166351658 + ], + [ + 2300.221797817794, + 5278.628166351658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.894631965813, + "min_y": 5278.072271034251, + "max_x": 2299.894631965813, + "max_y": 5279.184061669058, + "center": [ + 2299.894631965813, + 5278.628166351655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.894631965813, + 5279.184061669058 + ], + [ + 2299.894631965813, + 5278.072271034251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55634F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.221797817794, + "min_y": 5278.072271034251, + "max_x": 2300.221797817794, + "max_y": 5279.184061669058, + "center": [ + 2300.221797817794, + 5278.628166351655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.221797817794, + 5279.184061669058 + ], + [ + 2300.221797817794, + 5278.072271034251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556350", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2300.777693135197, + "min_y": 5277.516375716849, + "max_x": 2301.889483770002, + "max_y": 5278.628166351658, + "center": [ + 2301.3335884525995, + 5278.072271034254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.777693135197, + 5278.628166351658 + ], + [ + 2301.889483770002, + 5277.516375716849 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556351", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2301.611536111302, + "min_y": 5277.238428058149, + "max_x": 2302.167431428705, + "max_y": 5277.794323375555, + "center": [ + 2301.8894837700036, + 5277.516375716852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.167431428705, + 5277.794323375555 + ], + [ + 2301.611536111302, + 5277.238428058149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556352", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.058356236009, + "min_y": 5278.808930293042, + "max_x": 2298.67458768215, + "max_y": 5279.177893713779, + "center": [ + 2298.3664719590797, + 5278.99341200341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.67458768215, + 5278.808930293042 + ], + [ + 2298.058356236009, + 5279.177893713779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556353", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.058356236009, + "min_y": 5278.078438989534, + "max_x": 2298.058356236009, + "max_y": 5279.177893713779, + "center": [ + 2298.058356236009, + 5278.628166351657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.058356236009, + 5279.177893713779 + ], + [ + 2298.058356236009, + 5278.078438989534 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556354", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.058356236009, + "min_y": 5278.078438989534, + "max_x": 2298.67458768215, + "max_y": 5278.447402410272, + "center": [ + 2298.3664719590797, + 5278.262920699903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.058356236009, + 5278.078438989534 + ], + [ + 2298.67458768215, + 5278.447402410272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556355", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.27840051967, + "min_y": 5278.808930293036, + "max_x": 2299.894631965813, + "max_y": 5279.177893713779, + "center": [ + 2299.5865162427417, + 5278.993412003407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.27840051967, + 5278.808930293036 + ], + [ + 2299.894631965813, + 5279.177893713779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556356", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.894631965813, + "min_y": 5278.078438989534, + "max_x": 2299.894631965813, + "max_y": 5279.177893713779, + "center": [ + 2299.894631965813, + 5278.628166351657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.894631965813, + 5279.177893713779 + ], + [ + 2299.894631965813, + 5278.078438989534 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556357", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2299.27840051967, + "min_y": 5278.078438989534, + "max_x": 2299.894631965813, + "max_y": 5278.447402410272, + "center": [ + 2299.5865162427417, + 5278.262920699903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.894631965813, + 5278.078438989534 + ], + [ + 2299.27840051967, + 5278.447402410272 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556358", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2310.5721227849563, + "min_y": 5278.3948167200415, + "max_x": 2311.0039817095794, + "max_y": 5278.826675644665, + "center": [ + 2310.788052247268, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.788052247268, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556359", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2310.1402638603413, + "min_y": 5278.394816720044, + "max_x": 2310.572122784959, + "max_y": 5278.826675644662, + "center": [ + 2310.35619332265, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.35619332265, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2309.7084049357222, + "min_y": 5278.394816720044, + "max_x": 2310.14026386034, + "max_y": 5278.826675644662, + "center": [ + 2309.924334398031, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.924334398031, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2309.708404935717, + "min_y": 5278.394816720042, + "max_x": 2310.1402638603386, + "max_y": 5278.826675644664, + "center": [ + 2309.924334398028, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.924334398028, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2309.2765460111013, + "min_y": 5278.394816720044, + "max_x": 2309.708404935719, + "max_y": 5278.826675644662, + "center": [ + 2309.49247547341, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.49247547341, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2308.8446870864777, + "min_y": 5278.3948167200415, + "max_x": 2309.2765460111, + "max_y": 5278.826675644665, + "center": [ + 2309.060616548789, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.060616548789, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2308.412828161861, + "min_y": 5278.394816720044, + "max_x": 2308.8446870864786, + "max_y": 5278.826675644662, + "center": [ + 2308.62875762417, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.62875762417, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55635F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2307.98096923724, + "min_y": 5278.394816720044, + "max_x": 2308.4128281618578, + "max_y": 5278.826675644662, + "center": [ + 2308.196898699549, + 5278.610746182353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.196898699549, + 5278.610746182353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556360", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.702004108057, + "min_y": 5318.942183161097, + "max_x": 2296.526522615883, + "max_y": 5318.942183161097, + "center": [ + 2293.61426336197, + 5318.942183161097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.702004108057, + 5318.942183161097 + ], + [ + 2296.526522615883, + 5318.942183161097 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556361", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.87030560917, + "min_y": 5318.050214467576, + "max_x": 2291.464986048896, + "max_y": 5318.050214467576, + "center": [ + 2290.667645829033, + 5318.050214467576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.464986048896, + 5318.050214467576 + ], + [ + 2289.87030560917, + 5318.050214467576 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556362", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.87030560917, + "min_y": 5316.804440388424, + "max_x": 2291.476260470002, + "max_y": 5316.804440388424, + "center": [ + 2290.673283039586, + 5316.804440388424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.476260470002, + 5316.804440388424 + ], + [ + 2289.87030560917, + 5316.804440388424 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.87030560917, + "min_y": 5316.314011698184, + "max_x": 2289.87030560917, + "max_y": 5318.524471459539, + "center": [ + 2289.87030560917, + 5317.419241578862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.87030560917, + 5318.524471459539 + ], + [ + 2289.87030560917, + 5316.314011698184 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556364", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.673961045842, + "min_y": 5316.314011698184, + "max_x": 2289.673961045842, + "max_y": 5318.524471459539, + "center": [ + 2289.673961045842, + 5317.419241578862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.673961045842, + 5318.524471459539 + ], + [ + 2289.673961045842, + 5316.314011698184 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556365", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2285.846163539976, + "min_y": 5316.863570435684, + "max_x": 2287.4139970721644, + "max_y": 5318.170098379174, + "center": [ + 2286.6300803060703, + 5317.516834407429 + ] + }, + "raw_value": "SG", + "clean_value": "SG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556366", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2284.6329328832658, + "min_y": 5315.245096922317, + "max_x": 2289.2980745211266, + "max_y": 5319.910238560178, + "center": [ + 2286.965503702196, + 5317.577667741248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.965503702196, + 5317.577667741248 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556367", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2296.551770729903, + "min_y": 5380.342265820218, + "max_x": 2300.470483541746, + "max_y": 5381.648503424166, + "center": [ + 2298.5111271358246, + 5380.995384622192 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556368", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2310.349516781116, + "min_y": 5379.776372094453, + "max_x": 2314.268229592959, + "max_y": 5381.082609698401, + "center": [ + 2312.3088731870375, + 5380.4294908964275 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556369", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2344.058692958844, + "min_y": 5313.782071045857, + "max_x": 2347.977405770687, + "max_y": 5315.088308649805, + "center": [ + 2346.0180493647654, + 5314.435189847831 + ] + }, + "raw_value": "10218", + "clean_value": "10218", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55636A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2322.317619215624, + "min_y": 5309.106925185141, + "max_x": 2326.2363320274667, + "max_y": 5310.413162789089, + "center": [ + 2324.2769756215453, + 5309.760043987115 + ] + }, + "raw_value": "10218", + "clean_value": "10218", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55636B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.640567105532, + "min_y": 5278.621167336963, + "max_x": 2297.731190384028, + "max_y": 5278.628166351655, + "center": [ + 2295.68587874478, + 5278.624666844309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105532, + 5278.621167336963 + ], + [ + 2297.731190384028, + 5278.628166351655 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55636D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2297.5266253739755, + "min_y": 5314.994527529252, + "max_x": 2303.2507541636305, + "max_y": 5320.718656318908, + "center": [ + 2300.388689768803, + 5317.85659192408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2300.388689768803, + 5317.85659192408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55636E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2299.41498523274, + "min_y": 5318.262587616001, + "max_x": 2300.9824703574773, + "max_y": 5319.568825219949, + "center": [ + 2300.1987277951084, + 5318.915706417974 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55636F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.752266253933, + "min_y": 5317.856591924085, + "max_x": 2296.358670277593, + "max_y": 5317.856591924085, + "center": [ + 2296.055468265763, + 5317.856591924085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.752266253933, + 5317.856591924085 + ], + [ + 2296.358670277593, + 5317.856591924085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556370", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.723263042597, + "min_y": 5317.306864561961, + "max_x": 2296.723263042597, + "max_y": 5318.406319286204, + "center": [ + 2296.723263042597, + 5317.856591924083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.723263042597, + 5317.306864561961 + ], + [ + 2296.723263042597, + 5318.406319286204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556371", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.358670277593, + "min_y": 5317.306864561961, + "max_x": 2296.358670277593, + "max_y": 5318.406319286204, + "center": [ + 2296.358670277593, + 5317.856591924083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.358670277593, + 5317.306864561961 + ], + [ + 2296.358670277593, + 5318.406319286204 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556372", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.723263042597, + "min_y": 5317.85659192408, + "max_x": 2297.526625373975, + "max_y": 5317.85659192408, + "center": [ + 2297.1249442082863, + 5317.85659192408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.723263042597, + 5317.85659192408 + ], + [ + 2297.526625373975, + 5317.85659192408 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556373", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5274.869832673033, + "max_x": 2354.729905854248, + "max_y": 5274.869832673033, + "center": [ + 2353.8706907156393, + 5274.869832673033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5274.869832673033 + ], + [ + 2353.01147557703, + 5274.869832673033 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556374", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.857565903403, + "min_y": 5306.529677045626, + "max_x": 2353.01147557703, + "max_y": 5306.529677045626, + "center": [ + 2350.4345207402166, + 5306.529677045626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5306.529677045626 + ], + [ + 2347.857565903403, + 5306.529677045626 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556375", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.451891024594, + "min_y": 5376.361133472155, + "max_x": 2257.154346398805, + "max_y": 5377.667371076103, + "center": [ + 2254.8031187116994, + 5377.01425227413 + ] + }, + "raw_value": "10211D", + "clean_value": "10211D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556376", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.451891024594, + "min_y": 5370.6370046825, + "max_x": 2257.154346398805, + "max_y": 5371.943242286448, + "center": [ + 2254.8031187116994, + 5371.290123484474 + ] + }, + "raw_value": "10211D", + "clean_value": "10211D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556377", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.451891024586, + "min_y": 5364.123175425599, + "max_x": 2257.1543463987973, + "max_y": 5365.429413029547, + "center": [ + 2254.8031187116917, + 5364.776294227573 + ] + }, + "raw_value": "10211D", + "clean_value": "10211D", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556378", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5349.62076818811, + "max_x": 2257.1576773046954, + "max_y": 5350.927005792058, + "center": [ + 2254.80644961759, + 5350.273886990084 + ] + }, + "raw_value": "10211C", + "clean_value": "10211C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556379", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5343.896639398451, + "max_x": 2257.1576773046954, + "max_y": 5345.202877002399, + "center": [ + 2254.80644961759, + 5344.549758200425 + ] + }, + "raw_value": "10211C", + "clean_value": "10211C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55637A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.395987427513, + "min_y": 5386.501273344826, + "max_x": 2284.098442801724, + "max_y": 5387.807510948774, + "center": [ + 2281.7472151146185, + 5387.1543921468 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55637B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2273.493269609511, + "min_y": 5354.448240606615, + "max_x": 2277.1208788702133, + "max_y": 5355.455909845699, + "center": [ + 2275.3070742398622, + 5354.952075226158 + ] + }, + "raw_value": "10211B", + "clean_value": "10211B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55637C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.331705314272, + "min_y": 5334.39708920651, + "max_x": 2304.2504181261147, + "max_y": 5335.703326810458, + "center": [ + 2302.2910617201933, + 5335.050208008484 + ] + }, + "raw_value": "10217", + "clean_value": "10217", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55637D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2298.394273312927, + "min_y": 5316.192925150503, + "max_x": 2302.31298612477, + "max_y": 5317.4991627544505, + "center": [ + 2300.3536297188484, + 5316.846043952477 + ] + }, + "raw_value": "10217", + "clean_value": "10217", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55637E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2310.349516781107, + "min_y": 5385.500500884117, + "max_x": 2314.26822959295, + "max_y": 5386.806738488065, + "center": [ + 2312.3088731870284, + 5386.153619686091 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55637F", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2327.416516889087, + "min_y": 5331.26817633086, + "max_x": 2327.416516889087, + "max_y": 5334.687087730098, + "center": [ + 2327.416516889087, + 5332.977632030479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.416516889087, + 5331.26817633086 + ], + [ + 2327.416516889087, + 5334.687087730098 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556380", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2322.317619215634, + "min_y": 5314.935697428552, + "max_x": 2326.2363320274767, + "max_y": 5316.2419350325, + "center": [ + 2324.2769756215553, + 5315.5888162305255 + ] + }, + "raw_value": "10218", + "clean_value": "10218", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556381", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5277.858655901875, + "max_x": 2354.729905854251, + "max_y": 5277.858655901875, + "center": [ + 2353.87069071564, + 5277.858655901875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5277.858655901875 + ], + [ + 2354.729905854251, + 5277.858655901875 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556382", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.329405372545, + "min_y": 5323.083340267323, + "max_x": 2291.329405372545, + "max_y": 5326.096151265504, + "center": [ + 2291.329405372545, + 5324.589745766414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5323.083340267323 + ], + [ + 2291.329405372545, + 5326.096151265504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556383", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.816687919079, + "min_y": 5324.185707377504, + "max_x": 2290.676688004675, + "max_y": 5325.878578809549, + "center": [ + 2289.746687961877, + 5325.032143093526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.816687919079, + 5324.185707377504 + ], + [ + 2290.676688004675, + 5325.878578809549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556384", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.671639615108, + "min_y": 5323.300912723277, + "max_x": 2291.329405372545, + "max_y": 5323.300912723277, + "center": [ + 2290.0005224938263, + 5323.300912723277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5323.300912723277 + ], + [ + 2288.671639615108, + 5323.300912723277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556385", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.671639615108, + "min_y": 5323.462151551897, + "max_x": 2291.329405372545, + "max_y": 5323.462151551897, + "center": [ + 2290.0005224938263, + 5323.462151551897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5323.462151551897 + ], + [ + 2288.671639615108, + 5323.462151551897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556386", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.329405372545, + "min_y": 5323.083340267323, + "max_x": 2291.476260470002, + "max_y": 5323.083340267323, + "center": [ + 2291.4028329212733, + 5323.083340267323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5323.083340267323 + ], + [ + 2291.476260470002, + 5323.083340267323 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556388", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.671639615108, + "min_y": 5323.300912723277, + "max_x": 2288.671639615108, + "max_y": 5323.462151551897, + "center": [ + 2288.671639615108, + 5323.381532137587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.671639615108, + 5323.300912723277 + ], + [ + 2288.671639615108, + 5323.462151551897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55638A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.676688004675, + "min_y": 5325.878578809549, + "max_x": 2291.329405372545, + "max_y": 5325.878578809549, + "center": [ + 2291.00304668861, + 5325.878578809549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5325.878578809549 + ], + [ + 2290.676688004675, + 5325.878578809549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55638B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.329405372545, + "min_y": 5326.096151265504, + "max_x": 2291.476260470002, + "max_y": 5326.096151265504, + "center": [ + 2291.4028329212733, + 5326.096151265504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.329405372545, + 5326.096151265504 + ], + [ + 2291.476260470002, + 5326.096151265504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55638E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.828588894339, + "min_y": 5324.962219483551, + "max_x": 2289.66986114675, + "max_y": 5324.962219483551, + "center": [ + 2289.2492250205446, + 5324.962219483551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.66986114675, + 5324.962219483551 + ], + [ + 2288.828588894339, + 5324.962219483551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55638F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.828588894339, + "min_y": 5324.437184149533, + "max_x": 2288.828588894339, + "max_y": 5324.962219483551, + "center": [ + 2288.828588894339, + 5324.699701816542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.828588894339, + 5324.962219483551 + ], + [ + 2288.828588894339, + 5324.437184149533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556390", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.828588894339, + "min_y": 5324.437184149533, + "max_x": 2289.092991723757, + "max_y": 5324.437184149533, + "center": [ + 2288.960790309048, + 5324.437184149533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.828588894339, + 5324.437184149533 + ], + [ + 2289.092991723757, + 5324.437184149533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556391", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2288.908861105616, + "min_y": 5324.699100823683, + "max_x": 2289.091707554202, + "max_y": 5324.881947272269, + "center": [ + 2289.000284329909, + 5324.790524047976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.000284329909, + 5324.790524047976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556392", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.000284329909, + "min_y": 5324.584637199968, + "max_x": 2289.000284329909, + "max_y": 5324.996410895982, + "center": [ + 2289.000284329909, + 5324.790524047975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.000284329909, + 5324.584637199968 + ], + [ + 2289.000284329909, + 5324.996410895982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556393", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.794397481903, + "min_y": 5324.790524047976, + "max_x": 2289.206171177919, + "max_y": 5324.790524047976, + "center": [ + 2289.0002843299108, + 5324.790524047976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.794397481903, + 5324.790524047976 + ], + [ + 2289.206171177919, + 5324.790524047976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.816687919079, + "min_y": 5323.462151551897, + "max_x": 2288.816687919079, + "max_y": 5324.185707377504, + "center": [ + 2288.816687919079, + 5323.8239294647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.816687919079, + 5324.185707377504 + ], + [ + 2288.816687919079, + 5323.462151551897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556395", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.676688004675, + "min_y": 5325.878578809549, + "max_x": 2290.676688004675, + "max_y": 5326.037664539507, + "center": [ + 2290.676688004675, + 5325.958121674528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.676688004675, + 5325.878578809549 + ], + [ + 2290.676688004675, + 5326.037664539507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.676688004675, + "min_y": 5326.037664539507, + "max_x": 2291.329405372545, + "max_y": 5326.037664539507, + "center": [ + 2291.00304668861, + 5326.037664539507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.676688004675, + 5326.037664539507 + ], + [ + 2291.329405372545, + 5326.037664539507 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556397", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2293.189704369114, + "min_y": 5290.608271569009, + "max_x": 2304.612494143127, + "max_y": 5291.728152919402, + "center": [ + 2298.9010992561207, + 5291.168212244205 + ] + }, + "raw_value": "P-10218-40A-F2A-n", + "clean_value": "P-10218-40A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556398", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.729905854251, + "min_y": 5277.354011507731, + "max_x": 2354.729905854251, + "max_y": 5278.363300296018, + "center": [ + 2354.729905854251, + 5277.858655901875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854251, + 5278.363300296018 + ], + [ + 2354.729905854251, + 5277.354011507731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556399", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5277.354011507731, + "max_x": 2356.953572622779, + "max_y": 5278.363300296018, + "center": [ + 2356.953572622779, + 5277.858655901875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5277.354011507731 + ], + [ + 2356.953572622779, + 5278.363300296018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5277.533203535533, + "max_x": 2356.1293722792166, + "max_y": 5278.179257670521, + "center": [ + 2355.806345211723, + 5277.856230603027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.806345211723, + 5277.856230603027 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5277.354011507731, + "max_x": 2356.653237539369, + "max_y": 5277.693875403786, + "center": [ + 2356.369422385365, + 5277.523943455759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.085607231361, + 5277.693875403786 + ], + [ + 2356.653237539369, + 5277.354011507731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.653237539369, + "min_y": 5277.354011507731, + "max_x": 2356.653237539369, + "max_y": 5278.363300296018, + "center": [ + 2356.653237539369, + 5277.858655901875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539369, + 5277.354011507731 + ], + [ + 2356.653237539369, + 5278.363300296018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.083492380086, + "min_y": 5278.02217015046, + "max_x": 2356.653237539369, + "max_y": 5278.363300296018, + "center": [ + 2356.368364959728, + 5278.192735223239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539369, + 5278.363300296018 + ], + [ + 2356.083492380086, + 5278.02217015046 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5277.354011507731, + "max_x": 2355.533248703484, + "max_y": 5277.692716354441, + "center": [ + 2355.2504014539045, + 5277.523363931086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.533248703484, + 5277.692716354441 + ], + [ + 2354.967554204325, + 5277.354011507731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55639F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5277.354011507731, + "max_x": 2354.967554204325, + "max_y": 5278.363300296018, + "center": [ + 2354.967554204325, + 5277.858655901875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204325, + 5277.354011507731 + ], + [ + 2354.967554204325, + 5278.363300296018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5278.024595449308, + "max_x": 2355.533248703484, + "max_y": 5278.363300296018, + "center": [ + 2355.2504014539045, + 5278.193947872664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204325, + 5278.363300296018 + ], + [ + 2355.533248703484, + 5278.024595449308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5274.367661240018, + "max_x": 2356.953572622779, + "max_y": 5275.376950028302, + "center": [ + 2356.953572622779, + 5274.8723056341605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5274.367661240018 + ], + [ + 2356.953572622779, + 5275.376950028302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5274.546853267818, + "max_x": 2356.1293722792166, + "max_y": 5275.192907402806, + "center": [ + 2355.806345211723, + 5274.869880335312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.806345211723, + 5274.869880335312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5274.367661240018, + "max_x": 2356.653237539366, + "max_y": 5274.707525136065, + "center": [ + 2356.3694223853636, + 5274.537593188041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.085607231361, + 5274.707525136065 + ], + [ + 2356.653237539366, + 5274.367661240018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.653237539366, + "min_y": 5274.367661240018, + "max_x": 2356.653237539366, + "max_y": 5275.376950028302, + "center": [ + 2356.653237539366, + 5274.8723056341605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5274.367661240018 + ], + [ + 2356.653237539366, + 5275.376950028302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.083492380083, + "min_y": 5275.035819882746, + "max_x": 2356.653237539366, + "max_y": 5275.376950028302, + "center": [ + 2356.368364959724, + 5275.206384955524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5275.376950028302 + ], + [ + 2356.083492380083, + 5275.035819882746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5274.367661240018, + "max_x": 2355.533248703484, + "max_y": 5274.706366086725, + "center": [ + 2355.2504014539036, + 5274.537013663372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.533248703484, + 5274.706366086725 + ], + [ + 2354.967554204323, + 5274.367661240018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5274.367661240018, + "max_x": 2354.967554204323, + "max_y": 5275.376950028302, + "center": [ + 2354.967554204323, + 5274.8723056341605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5274.367661240018 + ], + [ + 2354.967554204323, + 5275.376950028302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5275.038245181592, + "max_x": 2355.533248703484, + "max_y": 5275.376950028302, + "center": [ + 2355.2504014539036, + 5275.207597604947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5275.376950028302 + ], + [ + 2355.533248703484, + 5275.038245181592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.729905854248, + "min_y": 5274.367661240018, + "max_x": 2354.729905854248, + "max_y": 5275.376950028302, + "center": [ + 2354.729905854248, + 5274.8723056341605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5275.376950028302 + ], + [ + 2354.729905854248, + 5274.367661240018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563AA", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2332.899247937046, + "min_y": 5323.891592500684, + "max_x": 2332.899247937046, + "max_y": 5334.687087730098, + "center": [ + 2332.899247937046, + 5329.289340115391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.899247937046, + 5323.891592500684 + ], + [ + 2332.899247937046, + 5334.687087730098 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.640567105413, + "min_y": 5313.71001124302, + "max_x": 2293.640567105424, + "max_y": 5314.879992857958, + "center": [ + 2293.6405671054185, + 5314.295002050489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105424, + 5313.71001124302 + ], + [ + 2293.640567105413, + 5314.879992857958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563AC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2286.5232429338694, + "min_y": 5376.59796082803, + "max_x": 2287.2270130332427, + "max_y": 5377.301730927404, + "center": [ + 2286.875127983556, + 5376.949845877717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.875127983556, + 5376.949845877717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563AD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2294.212434548311, + "min_y": 5376.597960828033, + "max_x": 2294.9162046476845, + "max_y": 5377.301730927406, + "center": [ + 2294.564319597998, + 5376.94984587772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.564319597998, + 5376.94984587772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563AE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2301.3592438423984, + "min_y": 5376.597960828037, + "max_x": 2302.0630139417717, + "max_y": 5377.30173092741, + "center": [ + 2301.711128892085, + 5376.949845877723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2301.711128892085, + 5376.949845877723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563AF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2335.4476284494344, + "min_y": 5306.177681982142, + "max_x": 2336.1513985488077, + "max_y": 5306.881452081515, + "center": [ + 2335.799513499121, + 5306.529567031828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.799513499121, + 5306.529567031828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2339.8952867357675, + "min_y": 5306.17597197629, + "max_x": 2340.599056835141, + "max_y": 5306.879742075664, + "center": [ + 2340.247171785454, + 5306.527857025977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.247171785454, + 5306.527857025977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2343.6246476252463, + "min_y": 5306.177791995934, + "max_x": 2344.3284177246196, + "max_y": 5306.881562095307, + "center": [ + 2343.976532674933, + 5306.529677045621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.976532674933, + 5306.529677045621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B2", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2320.389499237744, + "min_y": 5403.396475208605, + "max_x": 2332.484217821993, + "max_y": 5404.516356558998, + "center": [ + 2326.4368585298685, + 5403.956415883802 + ] + }, + "raw_value": "P-10228-500A-F2A-n", + "clean_value": "P-10228-500A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5359.389801478603, + "max_x": 2261.919862426123, + "max_y": 5359.389801478603, + "center": [ + 2261.2881570073564, + 5359.389801478603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5359.389801478603 + ], + [ + 2261.919862426123, + 5359.389801478603 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.65645158859, + "min_y": 5356.836769362292, + "max_x": 2261.919862426123, + "max_y": 5356.836769362292, + "center": [ + 2261.2881570073564, + 5356.836769362292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.65645158859, + 5356.836769362292 + ], + [ + 2261.919862426123, + 5356.836769362292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.656451588587, + "min_y": 5356.549959875945, + "max_x": 2260.65645158859, + "max_y": 5359.67661096495, + "center": [ + 2260.6564515885884, + 5358.113285420448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.656451588587, + 5359.67661096495 + ], + [ + 2260.65645158859, + 5356.549959875945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.165702810617, + "min_y": 5356.549959875945, + "max_x": 2260.165702810617, + "max_y": 5359.67661096495, + "center": [ + 2260.165702810617, + 5358.113285420448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.165702810617, + 5359.67661096495 + ], + [ + 2260.165702810617, + 5356.549959875945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563B7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.468843419712, + "min_y": 5318.491606451704, + "max_x": 2307.036328544449, + "max_y": 5319.797844055652, + "center": [ + 2306.2525859820807, + 5319.144725253678 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563B8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.2507541636305, + "min_y": 5314.994527529252, + "max_x": 2308.9748829532855, + "max_y": 5320.718656318908, + "center": [ + 2306.112818558458, + 5317.85659192408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.112818558458, + 5317.85659192408 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563B9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5320.770842528236, + "max_x": 2306.112818558458, + "max_y": 5320.770842528239, + "center": [ + 2304.6556932563817, + 5320.770842528238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.112818558458, + 5320.770842528239 + ], + [ + 2303.198567954306, + 5320.770842528236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5317.85659192408, + "max_x": 2303.198567954306, + "max_y": 5320.770842528236, + "center": [ + 2303.198567954306, + 5319.313717226158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.198567954306, + 5317.85659192408 + ], + [ + 2303.198567954306, + 5320.770842528236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2306.112818558458, + "min_y": 5320.770842528236, + "max_x": 2309.027069162612, + "max_y": 5320.770842528239, + "center": [ + 2307.569943860535, + 5320.770842528238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.112818558458, + 5320.770842528239 + ], + [ + 2309.027069162612, + 5320.770842528236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.027069162612, + "min_y": 5317.85659192408, + "max_x": 2309.027069162612, + "max_y": 5320.770842528236, + "center": [ + 2309.027069162612, + 5319.313717226158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.027069162612, + 5317.85659192408 + ], + [ + 2309.027069162612, + 5320.770842528236 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5314.942341319921, + "max_x": 2306.112818558458, + "max_y": 5314.942341319929, + "center": [ + 2304.6556932563817, + 5314.942341319926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.112818558458, + 5314.942341319921 + ], + [ + 2303.198567954306, + 5314.942341319929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BE", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5314.942341319929, + "max_x": 2303.198567954306, + "max_y": 5317.85659192408, + "center": [ + 2303.198567954306, + 5316.399466622004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.198567954306, + 5317.85659192408 + ], + [ + 2303.198567954306, + 5314.942341319929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563BF", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2306.112818558458, + "min_y": 5314.942341319921, + "max_x": 2309.027069162612, + "max_y": 5314.942341319929, + "center": [ + 2307.569943860535, + 5314.942341319926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.112818558458, + 5314.942341319921 + ], + [ + 2309.027069162612, + 5314.942341319929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563C0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.027069162612, + "min_y": 5314.942341319929, + "max_x": 2309.027069162612, + "max_y": 5317.85659192408, + "center": [ + 2309.027069162612, + 5316.399466622004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.027069162612, + 5317.85659192408 + ], + [ + 2309.027069162612, + 5314.942341319929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563C1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.93940246519, + "min_y": 5316.172822972601, + "max_x": 2307.858115277033, + "max_y": 5317.479060576549, + "center": [ + 2305.8987588711116, + 5316.825941774576 + ] + }, + "raw_value": "10217", + "clean_value": "10217", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563C2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.198567954306, + "min_y": 5317.85659192408, + "max_x": 2309.027069162612, + "max_y": 5317.856591924083, + "center": [ + 2306.112818558459, + 5317.856591924081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.027069162612, + 5317.85659192408 + ], + [ + 2303.198567954306, + 5317.856591924083 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563C3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2325.927365182389, + "min_y": 5359.607099668715, + "max_x": 2325.927365182389, + "max_y": 5370.386282671739, + "center": [ + 2325.927365182389, + 5364.996691170227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2325.927365182389, + 5359.607099668715 + ], + [ + 2325.927365182389, + 5370.386282671739 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563C4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2328.905668595784, + "min_y": 5359.607099668715, + "max_x": 2328.905668595784, + "max_y": 5370.386282671749, + "center": [ + 2328.905668595784, + 5364.996691170232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2328.905668595784, + 5370.386282671749 + ], + [ + 2328.905668595784, + 5359.607099668715 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2325.927365182389, + "min_y": 5359.607099668715, + "max_x": 2328.905668595784, + "max_y": 5359.607099668715, + "center": [ + 2327.416516889087, + 5359.607099668715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2328.905668595784, + 5359.607099668715 + ], + [ + 2325.927365182389, + 5359.607099668715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563C6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2325.927365182392, + "min_y": 5370.386282671744, + "max_x": 2327.416516889089, + "max_y": 5371.875434378438, + "center": [ + 2326.6719410357405, + 5371.130858525091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2325.927365182392, + 5370.386282671744 + ], + [ + 2327.416516889089, + 5371.875434378438 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563C7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2327.416516889089, + "min_y": 5370.386282671744, + "max_x": 2328.905668595787, + "max_y": 5371.875434378438, + "center": [ + 2328.161092742438, + 5371.130858525091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.416516889089, + 5371.875434378438 + ], + [ + 2328.905668595787, + 5370.386282671744 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.78340761564, + "min_y": 5371.539579276728, + "max_x": 2334.015088258453, + "max_y": 5371.539579276728, + "center": [ + 2332.8992479370463, + 5371.539579276728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.78340761564, + 5371.539579276728 + ], + [ + 2334.015088258453, + 5371.539579276728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563C9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2331.410096230346, + "min_y": 5360.760396273705, + "max_x": 2331.410096230346, + "max_y": 5371.539579276728, + "center": [ + 2331.410096230346, + 5366.149987775216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.410096230346, + 5371.539579276728 + ], + [ + 2331.410096230346, + 5360.760396273705 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563CA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2334.388399643741, + "min_y": 5360.7603962737, + "max_x": 2334.388399643741, + "max_y": 5371.539579276728, + "center": [ + 2334.388399643741, + 5366.149987775214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2334.388399643741, + 5360.7603962737 + ], + [ + 2334.388399643741, + 5371.539579276728 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.410096230346, + "min_y": 5371.539579276728, + "max_x": 2334.388399643741, + "max_y": 5371.539579276728, + "center": [ + 2332.8992479370436, + 5371.539579276728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2334.388399643741, + 5371.539579276728 + ], + [ + 2331.410096230346, + 5371.539579276728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563CC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2331.410096230349, + "min_y": 5359.271244567005, + "max_x": 2332.899247937046, + "max_y": 5360.7603962737, + "center": [ + 2332.1546720836977, + 5360.015820420353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.410096230349, + 5360.7603962737 + ], + [ + 2332.899247937046, + 5359.271244567005 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563CD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2332.899247937046, + "min_y": 5359.271244567005, + "max_x": 2334.388399643744, + "max_y": 5360.7603962737, + "center": [ + 2333.643823790395, + 5360.015820420353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.899247937046, + 5359.271244567005 + ], + [ + 2334.388399643744, + 5360.7603962737 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5563CE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2342.711117797119, + "min_y": 5402.7967059031, + "max_x": 2373.390718475025, + "max_y": 5402.796705903107, + "center": [ + 2358.050918136072, + 5402.796705903103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2342.711117797119, + 5402.796705903107 + ], + [ + 2373.390718475025, + 5402.7967059031 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.108942028961, + "min_y": 5336.293376425018, + "max_x": 2358.395914399602, + "max_y": 5336.29337642502, + "center": [ + 2356.7524282142813, + 5336.293376425019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2358.395914399602, + 5336.29337642502 + ], + [ + 2355.108942028961, + 5336.293376425018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2352.8538246172143, + "min_y": 5334.038259013271, + "max_x": 2357.3640594407075, + "max_y": 5338.548493836765, + "center": [ + 2355.108942028961, + 5336.293376425018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.108942028961, + 5336.293376425018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.477089138627, + "min_y": 5332.2848003018, + "max_x": 2357.729369416647, + "max_y": 5334.500689049296, + "center": [ + 2357.103229277637, + 5333.392744675548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.477089138627, + 5334.500689049296 + ], + [ + 2357.729369416647, + 5332.2848003018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.488514641273, + "min_y": 5332.2848003018, + "max_x": 2353.740794919294, + "max_y": 5334.500689049296, + "center": [ + 2353.1146547802837, + 5333.392744675548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.740794919294, + 5334.500689049296 + ], + [ + 2352.488514641273, + 5332.2848003018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.488514641273, + "min_y": 5332.2848003018, + "max_x": 2357.729369416647, + "max_y": 5332.2848003018, + "center": [ + 2355.10894202896, + 5332.2848003018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.488514641273, + 5332.2848003018 + ], + [ + 2357.729369416647, + 5332.2848003018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033563, + "min_y": 5343.031252880924, + "max_x": 2353.489094200865, + "max_y": 5343.031252880924, + "center": [ + 2352.853824617214, + 5343.031252880924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.489094200865, + 5343.031252880924 + ], + [ + 2352.218555033563, + 5343.031252880924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033566, + "min_y": 5345.114749510652, + "max_x": 2353.466031202483, + "max_y": 5345.114749510652, + "center": [ + 2352.842293118025, + 5345.114749510652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.466031202483, + 5345.114749510652 + ], + [ + 2352.218555033566, + 5345.114749510652 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033566, + "min_y": 5343.031252880924, + "max_x": 2353.466031202489, + "max_y": 5343.031252880924, + "center": [ + 2352.8422931180276, + 5343.031252880924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.466031202489, + 5343.031252880924 + ], + [ + 2352.218555033566, + 5343.031252880924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033563, + "min_y": 5343.031252880924, + "max_x": 2353.466031202483, + "max_y": 5345.114749510652, + "center": [ + 2352.842293118023, + 5344.073001195788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.218555033563, + 5343.031252880924 + ], + [ + 2353.466031202483, + 5345.114749510652 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563D8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2341.214054171921, + "min_y": 5324.968591065143, + "max_x": 2366.607467628486, + "max_y": 5324.968591065145, + "center": [ + 2353.9107609002035, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.214054171921, + 5324.968591065143 + ], + [ + 2366.607467628486, + 5324.968591065145 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2373.495741983744, + "min_y": 5324.968591065145, + "max_x": 2375.020909649831, + "max_y": 5324.968591065145, + "center": [ + 2374.258325816788, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.495741983744, + 5324.968591065145 + ], + [ + 2375.020909649831, + 5324.968591065145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.98002429002, + "min_y": 5324.968591065145, + "max_x": 2380.505191956107, + "max_y": 5324.968591065145, + "center": [ + 2379.7426081230633, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.98002429002, + 5324.968591065145 + ], + [ + 2380.505191956107, + 5324.968591065145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563DB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2380.876404698782, + "min_y": 5324.96652601318, + "max_x": 2383.17710830426, + "max_y": 5324.967443301037, + "center": [ + 2382.026756501521, + 5324.966984657109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.876404698782, + 5324.96652601318 + ], + [ + 2383.17710830426, + 5324.967443301037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563DC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2386.003030419338, + "min_y": 5324.966929710814, + "max_x": 2388.170653818569, + "max_y": 5324.968018626954, + "center": [ + 2387.0868421189534, + 5324.967474168884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.003030419338, + 5324.966929710814 + ], + [ + 2388.170653818569, + 5324.968018626954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2373.495741983744, + "min_y": 5324.344852980684, + "max_x": 2373.495741983744, + "max_y": 5325.592329149607, + "center": [ + 2373.495741983744, + 5324.968591065146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.495741983744, + 5324.344852980684 + ], + [ + 2373.495741983744, + 5325.592329149607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563DE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2375.90570923406, + "min_y": 5331.392996465229, + "max_x": 2378.2569369211656, + "max_y": 5332.699234069177, + "center": [ + 2377.081323077613, + 5332.046115267203 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563DF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.3538582058, + "min_y": 5328.174266558158, + "max_x": 2379.6470757340558, + "max_y": 5333.467484086413, + "center": [ + 2377.000466969928, + 5330.820875322285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969928, + 5330.820875322285 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.876404698782, + "min_y": 5324.342787928718, + "max_x": 2380.876404698782, + "max_y": 5325.590264097641, + "center": [ + 2380.876404698782, + 5324.96652601318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.876404698782, + 5324.342787928718 + ], + [ + 2380.876404698782, + 5325.590264097641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.505191956107, + "min_y": 5324.342787928718, + "max_x": 2380.505191956107, + "max_y": 5325.590264097641, + "center": [ + 2380.505191956107, + 5324.96652601318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.505191956107, + 5324.342787928718 + ], + [ + 2380.505191956107, + 5325.590264097641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2388.6578652725334, + "min_y": 5325.49274698252, + "max_x": 2390.7413619022623, + "max_y": 5327.576243612248, + "center": [ + 2389.699613587398, + 5326.534495297384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.699613587398, + 5326.534495297384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.657865272534, + "min_y": 5326.534495297384, + "max_x": 2390.741361902263, + "max_y": 5326.534495297384, + "center": [ + 2389.6996135873987, + 5326.534495297384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.741361902263, + 5326.534495297384 + ], + [ + 2388.657865272534, + 5326.534495297384 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2389.699613587398, + "min_y": 5324.968018626955, + "max_x": 2389.699613587398, + "max_y": 5326.534495297384, + "center": [ + 2389.699613587398, + 5325.7512569621695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.699613587398, + 5326.534495297384 + ], + [ + 2389.699613587398, + 5324.968018626955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.657865272534, + "min_y": 5324.344280542494, + "max_x": 2390.741361902263, + "max_y": 5325.591756711413, + "center": [ + 2389.6996135873987, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.741361902263, + 5324.344280542494 + ], + [ + 2388.657865272534, + 5325.591756711413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2390.741361902263, + "min_y": 5324.344280542494, + "max_x": 2390.741361902263, + "max_y": 5325.591756711413, + "center": [ + 2390.741361902263, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.741361902263, + 5325.591756711413 + ], + [ + 2390.741361902263, + 5324.344280542494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.657865272534, + "min_y": 5324.344280542494, + "max_x": 2388.657865272534, + "max_y": 5325.591756711413, + "center": [ + 2388.657865272534, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.657865272534, + 5325.591756711413 + ], + [ + 2388.657865272534, + 5324.344280542494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.657865272534, + "min_y": 5324.344280542494, + "max_x": 2390.741361902263, + "max_y": 5325.591756711413, + "center": [ + 2389.6996135873987, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.741361902263, + 5325.591756711413 + ], + [ + 2388.657865272534, + 5324.344280542494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.170653818569, + "min_y": 5324.321217544114, + "max_x": 2388.170653818569, + "max_y": 5325.614819709793, + "center": [ + 2388.170653818569, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.170653818569, + 5325.614819709793 + ], + [ + 2388.170653818569, + 5324.321217544114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2391.228573356225, + "min_y": 5324.321217544114, + "max_x": 2391.228573356225, + "max_y": 5325.614819709793, + "center": [ + 2391.228573356225, + 5324.968018626953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.228573356225, + 5325.614819709793 + ], + [ + 2391.228573356225, + 5324.321217544114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2389.699613587398, + "min_y": 5327.576243612249, + "max_x": 2389.699613587398, + "max_y": 5330.804674476348, + "center": [ + 2389.699613587398, + 5329.190459044298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.699613587398, + 5327.576243612249 + ], + [ + 2389.699613587398, + 5330.804674476348 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5563EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2389.265828179581, + "min_y": 5328.92389935614, + "max_x": 2390.13339899521, + "max_y": 5329.424791600079, + "center": [ + 2389.6996135873956, + 5329.17434547811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.265828179581, + 5328.92389935614 + ], + [ + 2390.13339899521, + 5329.424791600079 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5563ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2389.265828179581, + "min_y": 5329.332233373084, + "max_x": 2390.13339899521, + "max_y": 5329.833125617025, + "center": [ + 2389.6996135873956, + 5329.582679495054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.265828179581, + 5329.332233373084 + ], + [ + 2390.13339899521, + 5329.833125617025 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5563EE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2389.204559430363, + "min_y": 5331.184076607242, + "max_x": 2390.8583121989773, + "max_y": 5332.102828145361, + "center": [ + 2390.03143581467, + 5331.643452376302 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5563EF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2387.703558287292, + "min_y": 5317.883268384171, + "max_x": 2396.132245426874, + "max_y": 5317.883268384173, + "center": [ + 2391.917901857083, + 5317.883268384172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2396.132245426874, + 5317.883268384171 + ], + [ + 2387.703558287292, + 5317.883268384173 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563F0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2381.888942471347, + "min_y": 5317.883268384173, + "max_x": 2384.879511854843, + "max_y": 5317.883268384179, + "center": [ + 2383.3842271630947, + 5317.883268384176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.879511854843, + 5317.883268384173 + ], + [ + 2381.888942471347, + 5317.883268384179 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5563F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.706169819625, + "min_y": 5317.236467301332, + "max_x": 2387.706169819625, + "max_y": 5318.530069467013, + "center": [ + 2387.706169819625, + 5317.883268384172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.706169819625, + 5318.530069467013 + ], + [ + 2387.706169819625, + 5317.236467301332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563F2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2385.8939488344117, + "min_y": 5317.484008456493, + "max_x": 2386.692468689764, + "max_y": 5318.282528311845, + "center": [ + 2386.293208762088, + 5317.883268384169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.293208762088, + 5317.883268384169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.880247704549, + "min_y": 5317.259530299714, + "max_x": 2384.880247704549, + "max_y": 5318.507006468634, + "center": [ + 2384.880247704549, + 5317.883268384174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.880247704549, + 5317.259530299714 + ], + [ + 2384.880247704549, + 5318.507006468634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.706169819625, + "min_y": 5317.259530299708, + "max_x": 2387.706169819625, + "max_y": 5318.507006468631, + "center": [ + 2387.706169819625, + 5317.883268384169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.706169819625, + 5317.259530299708 + ], + [ + 2387.706169819625, + 5318.507006468631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563F5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2392.594572944082, + "min_y": 5330.909016889653, + "max_x": 2394.9458006311875, + "max_y": 5332.215254493601, + "center": [ + 2393.770186787635, + 5331.562135691627 + ] + }, + "raw_value": "FCV", + "clean_value": "FCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563F6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2391.395242789188, + "min_y": 5327.458604910609, + "max_x": 2396.688460317444, + "max_y": 5332.751822438864, + "center": [ + 2394.041851553316, + 5330.105213674737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.041851553316, + 5330.105213674737 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5563F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2390.228927195151, + "min_y": 5325.757369754737, + "max_x": 2392.373068141054, + "max_y": 5328.05102286731, + "center": [ + 2391.3009976681024, + 5326.904196311023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.373068141054, + 5328.05102286731 + ], + [ + 2390.228927195151, + 5325.757369754737 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5563F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.03487572839, + "min_y": 5351.895844453071, + "max_x": 2369.034875728391, + "max_y": 5375.818125382775, + "center": [ + 2369.0348757283905, + 5363.856984917923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.034875728391, + 5375.818125382775 + ], + [ + 2369.03487572839, + 5351.895844453071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.746561221664, + "min_y": 5351.895844453071, + "max_x": 2377.746561221666, + "max_y": 5375.818125382775, + "center": [ + 2377.7465612216647, + 5363.856984917923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.746561221666, + 5375.818125382775 + ], + [ + 2377.746561221664, + 5351.895844453071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.60682781286, + "min_y": 5377.358420795304, + "max_x": 2371.60682781286, + "max_y": 5379.973449776423, + "center": [ + 2371.60682781286, + 5378.665935285863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.60682781286, + 5377.358420795304 + ], + [ + 2371.60682781286, + 5379.973449776423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.60682781286, + "min_y": 5380.778876247956, + "max_x": 2371.60682781286, + "max_y": 5395.687787706645, + "center": [ + 2371.60682781286, + 5388.233331977301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.60682781286, + 5380.778876247956 + ], + [ + 2371.60682781286, + 5395.687787706645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.60682781286, + "min_y": 5396.49321417818, + "max_x": 2371.60682781286, + "max_y": 5399.167532116552, + "center": [ + 2371.60682781286, + 5397.830373147366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.60682781286, + 5396.49321417818 + ], + [ + 2371.60682781286, + 5399.167532116552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5563FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.174609137197, + "min_y": 5377.358420795304, + "max_x": 2375.174609137197, + "max_y": 5379.973449776423, + "center": [ + 2375.174609137197, + 5378.665935285863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.174609137197, + 5377.358420795304 + ], + [ + 2375.174609137197, + 5379.973449776423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556400", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.174609137197, + "min_y": 5380.778876247956, + "max_x": 2375.174609137197, + "max_y": 5395.687787706645, + "center": [ + 2375.174609137197, + 5388.233331977301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.174609137197, + 5380.778876247956 + ], + [ + 2375.174609137197, + 5395.687787706645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556401", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.174609137197, + "min_y": 5396.49321417818, + "max_x": 2375.174609137199, + "max_y": 5399.167532116558, + "center": [ + 2375.174609137198, + 5397.830373147369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.174609137197, + 5396.49321417818 + ], + [ + 2375.174609137199, + 5399.167532116558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556402", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5380.376163012186, + "max_x": 2375.991700442785, + "max_y": 5380.376163012186, + "center": [ + 2373.390718474974, + 5380.376163012186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5380.376163012186 + ], + [ + 2370.789736507163, + 5380.376163012186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556403", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5396.090500942413, + "max_x": 2375.991700442785, + "max_y": 5396.090500942413, + "center": [ + 2373.390718474974, + 5396.090500942413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5396.090500942413 + ], + [ + 2370.789736507163, + 5396.090500942413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556404", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2373.390718474974, + "min_y": 5380.778876247956, + "max_x": 2373.390718475118, + "max_y": 5395.687787706645, + "center": [ + 2373.390718475046, + 5388.233331977301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.390718475118, + 5395.687787706645 + ], + [ + 2373.390718474974, + 5380.778876247956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556405", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.498773143901, + "min_y": 5380.778876247956, + "max_x": 2372.498773144045, + "max_y": 5395.687787706645, + "center": [ + 2372.4987731439733, + 5388.233331977301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2372.498773144045, + 5395.687787706645 + ], + [ + 2372.498773143901, + 5380.778876247956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556406", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.28266380599, + "min_y": 5380.778876247956, + "max_x": 2374.282663806134, + "max_y": 5395.687787706645, + "center": [ + 2374.2826638060624, + 5388.233331977301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.28266380599, + 5395.687787706645 + ], + [ + 2374.282663806134, + 5380.778876247956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556407", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.244424157286, + "min_y": 5372.639022595515, + "max_x": 2364.483359193123, + "max_y": 5372.639022595515, + "center": [ + 2363.8638916752043, + 5372.639022595515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.244424157286, + 5372.639022595515 + ], + [ + 2364.483359193123, + 5372.639022595515 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556408", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5372.015284511056, + "max_x": 2367.054067276813, + "max_y": 5373.262760679981, + "center": [ + 2367.054067276813, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5372.015284511056 + ], + [ + 2367.054067276813, + 5373.262760679981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556409", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5372.015284511056, + "max_x": 2367.425280019488, + "max_y": 5373.262760679981, + "center": [ + 2367.425280019488, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5372.015284511056 + ], + [ + 2367.425280019488, + 5373.262760679981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55640A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5372.63902259552, + "max_x": 2369.03487572839, + "max_y": 5372.63902259552, + "center": [ + 2368.230077873939, + 5372.63902259552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5372.63902259552 + ], + [ + 2369.03487572839, + 5372.63902259552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55640B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.244424157286, + "min_y": 5364.814824085726, + "max_x": 2364.483359193123, + "max_y": 5364.814824085726, + "center": [ + 2363.8638916752043, + 5364.814824085726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.244424157286, + 5364.814824085726 + ], + [ + 2364.483359193123, + 5364.814824085726 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55640C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5364.191086001265, + "max_x": 2367.054067276813, + "max_y": 5365.41549917181, + "center": [ + 2367.054067276813, + 5364.803292586537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5364.191086001265 + ], + [ + 2367.054067276813, + 5365.41549917181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55640D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5364.191086001265, + "max_x": 2367.425280019488, + "max_y": 5365.43856217019, + "center": [ + 2367.425280019488, + 5364.814824085728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5364.191086001265 + ], + [ + 2367.425280019488, + 5365.43856217019 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55640E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5364.814824085728, + "max_x": 2369.03487572839, + "max_y": 5364.814824085728, + "center": [ + 2368.230077873939, + 5364.814824085728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5364.814824085728 + ], + [ + 2369.03487572839, + 5364.814824085728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55640F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.244424157286, + "min_y": 5364.814824085726, + "max_x": 2363.244424157286, + "max_y": 5366.127153816351, + "center": [ + 2363.244424157286, + 5365.470988951039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.244424157286, + 5364.814824085726 + ], + [ + 2363.244424157286, + 5366.127153816351 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556410", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.244424157286, + "min_y": 5371.420371344607, + "max_x": 2363.244424157287, + "max_y": 5372.639022595515, + "center": [ + 2363.2444241572866, + 5372.029696970061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.244424157287, + 5371.420371344607 + ], + [ + 2363.244424157286, + 5372.639022595515 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556411", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2360.5978153931583, + "min_y": 5366.127153816351, + "max_x": 2365.891032921414, + "max_y": 5371.420371344606, + "center": [ + 2363.244424157286, + 5368.773762580478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.244424157286, + 5368.773762580478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556412", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.129415352166, + "min_y": 5336.29337642502, + "max_x": 2358.307241709502, + "max_y": 5336.293376425022, + "center": [ + 2357.218328530834, + 5336.293376425021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2358.307241709502, + 5336.29337642502 + ], + [ + 2356.129415352166, + 5336.293376425022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556413", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2373.390718474588, + "min_y": 5348.832097537059, + "max_x": 2373.390718474588, + "max_y": 5350.188608800596, + "center": [ + 2373.390718474588, + 5349.510353168827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.390718474588, + 5350.188608800596 + ], + [ + 2373.390718474588, + 5348.832097537059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556414", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2373.390718474588, + "min_y": 5336.293376425011, + "max_x": 2373.390718474588, + "max_y": 5348.312220082923, + "center": [ + 2373.390718474588, + 5342.302798253967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.390718474588, + 5348.312220082923 + ], + [ + 2373.390718474588, + 5336.293376425011 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556415", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.779902018461, + "min_y": 5349.81082422254, + "max_x": 2377.702109630849, + "max_y": 5350.835258254537, + "center": [ + 2377.241005824655, + 5350.323041238538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.779902018461, + 5350.835258254537 + ], + [ + 2377.702109630849, + 5349.81082422254 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556416", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2376.826218956974, + "min_y": 5345.197213832788, + "max_x": 2382.11943648523, + "max_y": 5350.490431361043, + "center": [ + 2379.472827721102, + 5347.843822596916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.472827721102, + 5347.843822596916 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556417", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.746561220787, + "min_y": 5372.705897795302, + "max_x": 2379.356156929691, + "max_y": 5372.705897795302, + "center": [ + 2378.551359075239, + 5372.705897795302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.356156929691, + 5372.705897795302 + ], + [ + 2377.746561220787, + 5372.705897795302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556418", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.746561220787, + "min_y": 5363.650815647446, + "max_x": 2379.356156929691, + "max_y": 5363.650815647446, + "center": [ + 2378.551359075239, + 5363.650815647446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.356156929691, + 5363.650815647446 + ], + [ + 2377.746561220787, + 5363.650815647446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556419", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2375.156242982349, + "min_y": 5336.601155990003, + "max_x": 2378.2912132318233, + "max_y": 5337.9073935939505, + "center": [ + 2376.723728107086, + 5337.254274791976 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5338.857216898691, + "max_x": 2377.000466969902, + "max_y": 5338.857216898699, + "center": [ + 2375.653033766833, + 5338.857216898696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969902, + 5338.857216898699 + ], + [ + 2374.305600563763, + 5338.857216898691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5336.162350492561, + "max_x": 2374.305600563763, + "max_y": 5338.857216898691, + "center": [ + 2374.305600563763, + 5337.5097836956265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.305600563763, + 5336.162350492561 + ], + [ + 2374.305600563763, + 5338.857216898691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2377.000466969902, + "min_y": 5338.857216898691, + "max_x": 2379.695333376039, + "max_y": 5338.857216898699, + "center": [ + 2378.34790017297, + 5338.857216898696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969902, + 5338.857216898699 + ], + [ + 2379.695333376039, + 5338.857216898691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2379.695333376039, + "min_y": 5336.162350492561, + "max_x": 2379.695333376039, + "max_y": 5338.857216898691, + "center": [ + 2379.695333376039, + 5337.5097836956265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.695333376039, + 5336.162350492561 + ], + [ + 2379.695333376039, + 5338.857216898691 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5333.467484086412, + "max_x": 2377.000466969902, + "max_y": 5333.46748408642, + "center": [ + 2375.653033766833, + 5333.467484086415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969902, + 5333.467484086412 + ], + [ + 2374.305600563763, + 5333.46748408642 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55641F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.305600563763, + "min_y": 5333.46748408642, + "max_x": 2374.305600563763, + "max_y": 5336.162350492549, + "center": [ + 2374.305600563763, + 5334.814917289485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.305600563763, + 5336.162350492549 + ], + [ + 2374.305600563763, + 5333.46748408642 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556420", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2377.000466969902, + "min_y": 5333.467484086412, + "max_x": 2379.695333376039, + "max_y": 5333.46748408642, + "center": [ + 2378.34790017297, + 5333.467484086415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969902, + 5333.467484086412 + ], + [ + 2379.695333376039, + 5333.46748408642 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556421", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2379.695333376039, + "min_y": 5333.46748408642, + "max_x": 2379.695333376039, + "max_y": 5336.162350492549, + "center": [ + 2379.695333376039, + 5334.814917289485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.695333376039, + 5336.162350492549 + ], + [ + 2379.695333376039, + 5333.46748408642 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556422", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.155417587893, + "min_y": 5394.189726827196, + "max_x": 2377.155417587893, + "max_y": 5395.437202996115, + "center": [ + 2377.155417587893, + 5394.8134649116555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.155417587893, + 5394.189726827196 + ], + [ + 2377.155417587893, + 5395.437202996115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556423", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.78420484522, + "min_y": 5394.189726827196, + "max_x": 2376.78420484522, + "max_y": 5395.437202996115, + "center": [ + 2376.78420484522, + 5394.8134649116555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.78420484522, + 5394.189726827196 + ], + [ + 2376.78420484522, + 5395.437202996115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556424", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.174609136316, + "min_y": 5394.813464911657, + "max_x": 2376.78420484522, + "max_y": 5394.813464911657, + "center": [ + 2375.979406990768, + 5394.813464911657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.78420484522, + 5394.813464911657 + ], + [ + 2375.174609136316, + 5394.813464911657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556425", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2377.155417587893, + "min_y": 5394.813464911657, + "max_x": 2392.070527671775, + "max_y": 5394.813464911657, + "center": [ + 2384.612972629834, + 5394.813464911657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.155417587893, + 5394.813464911657 + ], + [ + 2392.070527671775, + 5394.813464911657 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556426", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2409.551403695979, + "min_y": 5360.880333460539, + "max_x": 2409.551403695979, + "max_y": 5378.870862341549, + "center": [ + 2409.551403695979, + 5369.875597901044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.551403695979, + 5378.870862341549 + ], + [ + 2409.551403695979, + 5360.880333460539 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556427", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2409.551403695979, + "min_y": 5360.880333460538, + "max_x": 2423.802730326868, + "max_y": 5360.880333460539, + "center": [ + 2416.677067011424, + 5360.880333460538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.551403695979, + 5360.880333460539 + ], + [ + 2423.802730326868, + 5360.880333460538 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556428", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2426.181295863321, + "min_y": 5360.880333460542, + "max_x": 2431.48354723279, + "max_y": 5360.882398512506, + "center": [ + 2428.832421548055, + 5360.8813659865245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.181295863321, + 5360.880333460542 + ], + [ + 2431.48354723279, + 5360.882398512506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556429", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2422.052437039428, + "min_y": 5360.880333460539, + "max_x": 2422.052437039428, + "max_y": 5364.625544874937, + "center": [ + 2422.052437039428, + 5362.752939167738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.052437039428, + 5360.880333460539 + ], + [ + 2422.052437039428, + 5364.625544874937 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55642A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2422.052437039428, + "min_y": 5367.405450808187, + "max_x": 2422.052437039431, + "max_y": 5369.501708636915, + "center": [ + 2422.0524370394296, + 5368.453579722551 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.052437039431, + 5367.405450808187 + ], + [ + 2422.052437039428, + 5369.501708636915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55642B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2422.5771653949937, + "min_y": 5364.979276131645, + "max_x": 2424.6606620247226, + "max_y": 5367.062772761373, + "center": [ + 2423.618913709858, + 5366.021024446509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.618913709858, + 5366.021024446509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55642C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.618913709858, + "min_y": 5364.979276131645, + "max_x": 2423.618913709858, + "max_y": 5367.062772761368, + "center": [ + 2423.618913709858, + 5366.021024446507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.618913709858, + 5367.062772761368 + ], + [ + 2423.618913709858, + 5364.979276131645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55642D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.577222958945, + "min_y": 5366.021024446509, + "max_x": 2423.618913709858, + "max_y": 5366.021024446512, + "center": [ + 2423.0980683344014, + 5366.021024446511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.618913709858, + 5366.021024446509 + ], + [ + 2422.577222958945, + 5366.021024446512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55642E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.322020448213, + "min_y": 5366.471274429326, + "max_x": 2422.676175123893, + "max_y": 5367.062772761368, + "center": [ + 2422.499097786053, + 5366.7670235953465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.676175123893, + 5367.062772761368 + ], + [ + 2422.322020448213, + 5366.471274429326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55642F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5364.979276131645, + "max_x": 2421.782853630649, + "max_y": 5365.570774463684, + "center": [ + 2421.6057762928094, + 5365.275025297664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.782853630649, + 5365.570774463684 + ], + [ + 2421.42869895497, + 5364.979276131645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556430", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5367.062772761368, + "max_x": 2422.676175123893, + "max_y": 5367.062772761368, + "center": [ + 2422.0524370394314, + 5367.062772761368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.42869895497, + 5367.062772761368 + ], + [ + 2422.676175123893, + 5367.062772761368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556431", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5364.979276131645, + "max_x": 2422.676175123893, + "max_y": 5364.979276131645, + "center": [ + 2422.0524370394314, + 5364.979276131645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.42869895497, + 5364.979276131645 + ], + [ + 2422.676175123893, + 5364.979276131645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556432", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5366.471274429327, + "max_x": 2421.782853630647, + "max_y": 5367.062772761368, + "center": [ + 2421.6057762928085, + 5366.767023595348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.42869895497, + 5367.062772761368 + ], + [ + 2421.782853630647, + 5366.471274429327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556433", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.322020448213, + "min_y": 5364.979276131645, + "max_x": 2422.676175123893, + "max_y": 5365.570774463686, + "center": [ + 2422.499097786053, + 5365.275025297666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.322020448213, + 5365.570774463686 + ], + [ + 2422.676175123893, + 5364.979276131645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556434", + "entity_type": "ARC", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2422.0540079562825, + "min_y": 5368.790103638032, + "max_x": 2423.5251891136313, + "max_y": 5370.261284795381, + "center": [ + 2422.789598534957, + 5369.525694216706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.789598534957, + 5369.525694216706 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556435", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2427.256050531605, + "min_y": 5371.665125347067, + "max_x": 2429.6072782187107, + "max_y": 5372.971362951015, + "center": [ + 2428.431664375158, + 5372.318244149041 + ] + }, + "raw_value": "PCV", + "clean_value": "PCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556436", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2425.4841967708503, + "min_y": 5367.609841626135, + "max_x": 2431.9846384207754, + "max_y": 5374.11028327606, + "center": [ + 2428.734417595813, + 5370.860062451097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.734417595813, + 5370.860062451097 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556437", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2444.410512314787, + "min_y": 5360.884463564469, + "max_x": 2445.508667560834, + "max_y": 5360.886064547129, + "center": [ + 2444.9595899378105, + 5360.885264055799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.410512314787, + 5360.886064547129 + ], + [ + 2445.508667560834, + 5360.884463564469 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556438", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2445.5086675608354, + "min_y": 5358.629346152727, + "max_x": 2450.0189023843286, + "max_y": 5363.139580976221, + "center": [ + 2447.763784972582, + 5360.884463564474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.763784972582, + 5360.884463564474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556439", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.143357584892, + "min_y": 5356.875887441261, + "max_x": 2446.395637862912, + "max_y": 5359.091776188757, + "center": [ + 2445.7694977239016, + 5357.983831815009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.395637862912, + 5359.091776188757 + ], + [ + 2445.143357584892, + 5356.875887441261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55643A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.131932082249, + "min_y": 5356.875887441261, + "max_x": 2450.384212360271, + "max_y": 5359.091776188757, + "center": [ + 2449.7580722212597, + 5357.983831815009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.131932082249, + 5359.091776188757 + ], + [ + 2450.384212360271, + 5356.875887441261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55643B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.143357584892, + "min_y": 5356.875887441261, + "max_x": 2450.384212360271, + "max_y": 5356.875887441261, + "center": [ + 2447.7637849725816, + 5356.875887441261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.384212360271, + 5356.875887441261 + ], + [ + 2445.143357584892, + 5356.875887441261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55643C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2450.018902384329, + "min_y": 5360.884463564474, + "max_x": 2450.018902384329, + "max_y": 5363.419037434514, + "center": [ + 2450.018902384329, + 5362.151750499494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.018902384329, + 5360.884463564474 + ], + [ + 2450.018902384329, + 5363.419037434514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55643D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2354.6082324463064, + "min_y": 5335.792666842363, + "max_x": 2355.6096516116154, + "max_y": 5336.794086007673, + "center": [ + 2355.108942028961, + 5336.293376425018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.108942028961, + 5336.293376425018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55643F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.174609137087, + "min_y": 5383.30519192895, + "max_x": 2376.770633553526, + "max_y": 5383.305191928954, + "center": [ + 2375.9726213453064, + 5383.305191928952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.174609137087, + 5383.305191928954 + ], + [ + 2376.770633553526, + 5383.30519192895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556440", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.770633553526, + "min_y": 5382.681453844488, + "max_x": 2376.770633553526, + "max_y": 5383.928930013418, + "center": [ + 2376.770633553526, + 5383.305191928953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.770633553526, + 5382.681453844488 + ], + [ + 2376.770633553526, + 5383.928930013418 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556441", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.686618375981, + "min_y": 5394.813464911657, + "max_x": 2388.686618375981, + "max_y": 5397.02669726023, + "center": [ + 2388.686618375981, + 5395.920081085944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.686618375981, + 5394.813464911657 + ], + [ + 2388.686618375981, + 5397.02669726023 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556442", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.3056005637927, + "min_y": 5333.467484086415, + "max_x": 2379.695333376083, + "max_y": 5338.857216898707, + "center": [ + 2377.000466969938, + 5336.162350492561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969938, + 5336.162350492561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556443", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2377.00046696991, + "min_y": 5338.857216898706, + "max_x": 2377.000466969919, + "max_y": 5340.101534185756, + "center": [ + 2377.0004669699147, + 5339.479375542231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969919, + 5340.101534185756 + ], + [ + 2377.00046696991, + 5338.857216898706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556444", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033561, + "min_y": 5342.660040138241, + "max_x": 2353.489094200865, + "max_y": 5342.660040138241, + "center": [ + 2352.853824617213, + 5342.660040138241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.489094200865, + 5342.660040138241 + ], + [ + 2352.218555033561, + 5342.660040138241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556445", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033563, + "min_y": 5342.660040138241, + "max_x": 2353.466031202486, + "max_y": 5342.660040138241, + "center": [ + 2352.842293118025, + 5342.660040138241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.466031202486, + 5342.660040138241 + ], + [ + 2352.218555033563, + 5342.660040138241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556446", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2358.767127142277, + "min_y": 5335.644510290208, + "max_x": 2358.767127142277, + "max_y": 5336.938112455887, + "center": [ + 2358.767127142277, + 5336.291311373047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2358.767127142277, + 5336.938112455887 + ], + [ + 2358.767127142277, + 5335.644510290208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556447", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2358.395914399602, + "min_y": 5335.644510290208, + "max_x": 2358.395914399602, + "max_y": 5336.938112455887, + "center": [ + 2358.395914399602, + 5336.291311373047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2358.395914399602, + 5336.938112455887 + ], + [ + 2358.395914399602, + 5335.644510290208 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556448", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2368.859001445537, + "min_y": 5335.64657534217, + "max_x": 2368.859001445537, + "max_y": 5336.940177507848, + "center": [ + 2368.859001445537, + 5336.293376425008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.859001445537, + 5336.940177507848 + ], + [ + 2368.859001445537, + 5335.64657534217 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556449", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2369.872702575397, + "min_y": 5335.894116497335, + "max_x": 2370.6712224307494, + "max_y": 5336.692636352687, + "center": [ + 2370.271962503073, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.271962503073, + 5336.293376425011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55644A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.684923560612, + "min_y": 5335.66963834055, + "max_x": 2371.684923560612, + "max_y": 5336.917114509472, + "center": [ + 2371.684923560612, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.684923560612, + 5335.66963834055 + ], + [ + 2371.684923560612, + 5336.917114509472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55644B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2368.859001445537, + "min_y": 5335.66963834055, + "max_x": 2368.859001445537, + "max_y": 5336.917114509472, + "center": [ + 2368.859001445537, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.859001445537, + 5335.66963834055 + ], + [ + 2368.859001445537, + 5336.917114509472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55644C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.336055677652, + "min_y": 5336.293376425011, + "max_x": 2368.859001445537, + "max_y": 5336.293376425011, + "center": [ + 2367.5975285615946, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.336055677652, + 5336.293376425011 + ], + [ + 2368.859001445537, + 5336.293376425011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55644D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2365.230115363967, + "min_y": 5333.838274174931, + "max_x": 2365.230115363967, + "max_y": 5336.291311373045, + "center": [ + 2365.230115363967, + 5335.064792773988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.230115363967, + 5336.291311373045 + ], + [ + 2365.230115363967, + 5333.838274174931 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55644E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2364.8308554362907, + "min_y": 5332.0260531897175, + "max_x": 2365.629375291643, + "max_y": 5332.82457304507, + "center": [ + 2365.230115363967, + 5332.425313117394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.230115363967, + 5332.425313117394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55644F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5333.838274174937, + "max_x": 2365.853853448426, + "max_y": 5333.838274174937, + "center": [ + 2365.230115363965, + 5333.838274174937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.853853448426, + 5333.838274174937 + ], + [ + 2364.606377279504, + 5333.838274174937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556450", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5331.012352059853, + "max_x": 2365.853853448426, + "max_y": 5331.012352059853, + "center": [ + 2365.230115363965, + 5331.012352059853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.853853448426, + 5331.012352059853 + ], + [ + 2364.606377279504, + 5331.012352059853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556451", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.336055677652, + "min_y": 5335.644510290207, + "max_x": 2366.336055677652, + "max_y": 5336.938112455883, + "center": [ + 2366.336055677652, + 5336.291311373045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.336055677652, + 5336.938112455883 + ], + [ + 2366.336055677652, + 5335.644510290207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556452", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.964842934977, + "min_y": 5335.644510290207, + "max_x": 2365.964842934977, + "max_y": 5336.938112455883, + "center": [ + 2365.964842934977, + 5336.291311373045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.964842934977, + 5336.938112455883 + ], + [ + 2365.964842934977, + 5335.644510290207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556453", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2362.197124181536, + "min_y": 5335.642445238244, + "max_x": 2362.197124181536, + "max_y": 5336.936047403921, + "center": [ + 2362.197124181536, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2362.197124181536, + 5336.936047403921 + ], + [ + 2362.197124181536, + 5335.642445238244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556454", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2362.568336924212, + "min_y": 5335.642445238244, + "max_x": 2362.568336924212, + "max_y": 5336.936047403921, + "center": [ + 2362.568336924212, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2362.568336924212, + 5336.936047403921 + ], + [ + 2362.568336924212, + 5335.642445238244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556455", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2371.684923560612, + "min_y": 5336.293376425, + "max_x": 2373.390718474588, + "max_y": 5336.293376425011, + "center": [ + 2372.5378210176, + 5336.293376425006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.684923560612, + 5336.293376425011 + ], + [ + 2373.390718474588, + 5336.293376425 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556456", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.309469347868, + "min_y": 5360.2335323777, + "max_x": 2434.309469347868, + "max_y": 5361.527134543378, + "center": [ + 2434.309469347868, + 5360.880333460539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.309469347868, + 5361.527134543378 + ], + [ + 2434.309469347868, + 5360.2335323777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556457", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2432.497248362653, + "min_y": 5360.481073532866, + "max_x": 2433.2957682180054, + "max_y": 5361.279593388218, + "center": [ + 2432.896508290329, + 5360.880333460542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.896508290329, + 5360.880333460542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556458", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.48354723279, + "min_y": 5360.256595376079, + "max_x": 2431.48354723279, + "max_y": 5361.504071545002, + "center": [ + 2431.48354723279, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.48354723279, + 5360.256595376079 + ], + [ + 2431.48354723279, + 5361.504071545002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556459", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.309469347868, + "min_y": 5360.256595376079, + "max_x": 2434.309469347868, + "max_y": 5361.504071545002, + "center": [ + 2434.309469347868, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.309469347868, + 5360.256595376079 + ], + [ + 2434.309469347868, + 5361.504071545002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55645A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2377.291190795999, + "min_y": 5346.085524361069, + "max_x": 2381.2099036078416, + "max_y": 5347.3917619650165, + "center": [ + 2379.25054720192, + 5346.738643163042 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55645B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2383.605863522604, + "min_y": 5365.966689110567, + "max_x": 2388.89908105086, + "max_y": 5371.259906638822, + "center": [ + 2386.252472286732, + 5368.613297874695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.252472286732, + 5368.613297874695 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55645C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.414076467345, + "min_y": 5372.705897795302, + "max_x": 2383.296583302657, + "max_y": 5372.705897795302, + "center": [ + 2382.855329885001, + 5372.705897795302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.414076467345, + 5372.705897795302 + ], + [ + 2383.296583302657, + 5372.705897795302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55645D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.30728512334, + "min_y": 5372.705897795295, + "max_x": 2386.252472286732, + "max_y": 5372.705897795302, + "center": [ + 2385.279878705036, + 5372.705897795298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5372.705897795302 + ], + [ + 2386.252472286732, + 5372.705897795295 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55645E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.414076467345, + "min_y": 5372.705897795302, + "max_x": 2383.296583302657, + "max_y": 5372.705897795302, + "center": [ + 2382.855329885001, + 5372.705897795302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.296583302657, + 5372.705897795302 + ], + [ + 2382.414076467345, + 5372.705897795302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55645F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2378.708751469982, + "min_y": 5370.04363862292, + "max_x": 2384.0332698147445, + "max_y": 5375.368156967684, + "center": [ + 2381.371010642363, + 5372.705897795302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.371010642363, + 5372.705897795302 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556460", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.227669287852, + "min_y": 5372.082159710842, + "max_x": 2381.926865013381, + "max_y": 5372.500797299479, + "center": [ + 2381.5772671506165, + 5372.29147850516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5372.082159710842 + ], + [ + 2381.227669287852, + 5372.500797299479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556461", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5372.910998291124, + "max_x": 2380.542564109181, + "max_y": 5373.329635879761, + "center": [ + 2380.192966246417, + 5373.120317085442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.542564109181, + 5372.910998291124 + ], + [ + 2379.843368383654, + 5373.329635879761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556462", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.926865013381, + "min_y": 5372.082159710842, + "max_x": 2381.926865013381, + "max_y": 5373.329635879761, + "center": [ + 2381.926865013381, + 5372.705897795301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5373.329635879761 + ], + [ + 2381.926865013381, + 5372.082159710842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556463", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5372.082159710842, + "max_x": 2379.843368383654, + "max_y": 5373.329635879761, + "center": [ + 2379.843368383654, + 5372.705897795301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.843368383654, + 5373.329635879761 + ], + [ + 2379.843368383654, + 5372.082159710842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556464", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.227669287852, + "min_y": 5372.91099829112, + "max_x": 2381.926865013381, + "max_y": 5373.329635879761, + "center": [ + 2381.5772671506165, + 5373.120317085441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5373.329635879761 + ], + [ + 2381.227669287852, + 5372.91099829112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556465", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5372.082159710842, + "max_x": 2380.542564109181, + "max_y": 5372.500797299479, + "center": [ + 2380.192966246417, + 5372.29147850516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.542564109181, + 5372.500797299479 + ], + [ + 2379.843368383654, + 5372.082159710842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556466", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.356156929691, + "min_y": 5372.059096712462, + "max_x": 2379.356156929691, + "max_y": 5373.352698878144, + "center": [ + 2379.356156929691, + 5372.705897795303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.356156929691, + 5373.352698878144 + ], + [ + 2379.356156929691, + 5372.059096712462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556467", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.414076467345, + "min_y": 5372.059096712462, + "max_x": 2382.414076467345, + "max_y": 5373.352698878144, + "center": [ + 2382.414076467345, + 5372.705897795303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.414076467345, + 5373.352698878144 + ], + [ + 2382.414076467345, + 5372.059096712462 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556468", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.227669287852, + "min_y": 5363.027077562981, + "max_x": 2381.926865013381, + "max_y": 5363.445715151621, + "center": [ + 2381.5772671506165, + 5363.236396357301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5363.027077562981 + ], + [ + 2381.227669287852, + 5363.445715151621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556469", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5363.855916143263, + "max_x": 2380.542564109181, + "max_y": 5364.274553731902, + "center": [ + 2380.192966246417, + 5364.065234937583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.542564109181, + 5363.855916143263 + ], + [ + 2379.843368383654, + 5364.274553731902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.926865013381, + "min_y": 5363.027077562981, + "max_x": 2381.926865013381, + "max_y": 5364.274553731902, + "center": [ + 2381.926865013381, + 5363.650815647441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5364.274553731902 + ], + [ + 2381.926865013381, + 5363.027077562981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5363.027077562981, + "max_x": 2379.843368383654, + "max_y": 5364.274553731902, + "center": [ + 2379.843368383654, + 5363.650815647441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.843368383654, + 5364.274553731902 + ], + [ + 2379.843368383654, + 5363.027077562981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.227669287852, + "min_y": 5363.855916143263, + "max_x": 2381.926865013381, + "max_y": 5364.274553731902, + "center": [ + 2381.5772671506165, + 5364.065234937583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.926865013381, + 5364.274553731902 + ], + [ + 2381.227669287852, + 5363.855916143263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.843368383654, + "min_y": 5363.027077562981, + "max_x": 2380.542564109181, + "max_y": 5363.445715151621, + "center": [ + 2380.192966246417, + 5363.236396357301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.542564109181, + 5363.445715151621 + ], + [ + 2379.843368383654, + 5363.027077562981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.356156929691, + "min_y": 5363.004014564602, + "max_x": 2379.356156929691, + "max_y": 5364.29761673028, + "center": [ + 2379.356156929691, + 5363.650815647441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.356156929691, + 5364.29761673028 + ], + [ + 2379.356156929691, + 5363.004014564602 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55646F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.414076467345, + "min_y": 5363.004014564602, + "max_x": 2382.414076467345, + "max_y": 5364.29761673028, + "center": [ + 2382.414076467345, + 5363.650815647441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.414076467345, + 5364.29761673028 + ], + [ + 2382.414076467345, + 5363.004014564602 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556470", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.252472286732, + "min_y": 5371.259906638822, + "max_x": 2386.252472286732, + "max_y": 5372.705897795302, + "center": [ + 2386.252472286732, + 5371.982902217062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.252472286732, + 5372.705897795302 + ], + [ + 2386.252472286732, + 5371.259906638822 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556471", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.30728512334, + "min_y": 5363.650815647446, + "max_x": 2386.252472286732, + "max_y": 5363.650815647446, + "center": [ + 2385.279878705036, + 5363.650815647446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5363.650815647446 + ], + [ + 2386.252472286732, + 5363.650815647446 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556472", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.252472286732, + "min_y": 5363.650815647446, + "max_x": 2386.252472286732, + "max_y": 5365.966689110567, + "center": [ + 2386.252472286732, + 5364.808752379006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.252472286732, + 5363.650815647446 + ], + [ + 2386.252472286732, + 5365.966689110567 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556473", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.414076467345, + "min_y": 5363.650815647446, + "max_x": 2383.296583302657, + "max_y": 5363.650815647446, + "center": [ + 2382.855329885001, + 5363.650815647446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.414076467345, + 5363.650815647446 + ], + [ + 2383.296583302657, + 5363.650815647446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556474", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2378.708751469982, + "min_y": 5360.988556475064, + "max_x": 2384.0332698147445, + "max_y": 5366.313074819827, + "center": [ + 2381.371010642363, + 5363.650815647446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.371010642363, + 5363.650815647446 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556475", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.059529365411, + "min_y": 5372.332192413825, + "max_x": 2385.80694012836, + "max_y": 5373.079603176768, + "center": [ + 2385.4332347468853, + 5372.705897795297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.059529365411, + 5373.079603176768 + ], + [ + 2385.80694012836, + 5372.332192413825 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556476", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.059529365411, + "min_y": 5372.332192413825, + "max_x": 2385.80694012836, + "max_y": 5373.079603176768, + "center": [ + 2385.4332347468853, + 5372.705897795297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.059529365411, + 5372.332192413825 + ], + [ + 2385.80694012836, + 5373.079603176768 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556477", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.878766905259, + "min_y": 5364.472290320461, + "max_x": 2386.626177668207, + "max_y": 5365.219701083413, + "center": [ + 2386.252472286733, + 5364.845995701937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.878766905259, + 5364.472290320461 + ], + [ + 2386.626177668207, + 5365.219701083413 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556478", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.878766905259, + "min_y": 5364.472290320461, + "max_x": 2386.626177668207, + "max_y": 5365.219701083413, + "center": [ + 2386.252472286733, + 5364.845995701937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.878766905259, + 5365.219701083413 + ], + [ + 2386.626177668207, + 5364.472290320461 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556479", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2373.390718475025, + "min_y": 5399.167532116556, + "max_x": 2373.390718475025, + "max_y": 5400.041042363206, + "center": [ + 2373.390718475025, + 5399.604287239881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.390718475025, + 5399.167532116556 + ], + [ + 2373.390718475025, + 5400.041042363206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55647A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2373.390718475025, + "min_y": 5400.041042363206, + "max_x": 2373.390718475025, + "max_y": 5402.7967059031, + "center": [ + 2373.390718475025, + 5401.418874133153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.390718475025, + 5400.041042363206 + ], + [ + 2373.390718475025, + 5402.7967059031 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55647B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2375.506855832361, + "min_y": 5324.467613159807, + "max_x": 2377.7608596058794, + "max_y": 5325.406781398773, + "center": [ + 2376.63385771912, + 5324.937197279291 + ] + }, + "raw_value": "MASS", + "clean_value": "MASS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55647C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.000466969928, + "min_y": 5325.963541892281, + "max_x": 2377.000466969928, + "max_y": 5328.174266558153, + "center": [ + 2377.000466969928, + 5327.068904225217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.000466969928, + 5328.174266558153 + ], + [ + 2377.000466969928, + 5325.963541892281 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55647D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.334085035489, + "min_y": 5324.321566770423, + "max_x": 2392.334085035489, + "max_y": 5325.615168936105, + "center": [ + 2392.334085035489, + 5324.968367853264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.334085035489, + 5325.615168936105 + ], + [ + 2392.334085035489, + 5324.321566770423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55647E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2395.160007150567, + "min_y": 5324.344629768805, + "max_x": 2395.160007150567, + "max_y": 5325.592105937728, + "center": [ + 2395.160007150567, + 5324.9683678532665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2395.160007150567, + 5324.344629768805 + ], + [ + 2395.160007150567, + 5325.592105937728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55647F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.334085035489, + "min_y": 5324.344629768805, + "max_x": 2392.334085035489, + "max_y": 5325.592105937728, + "center": [ + 2392.334085035489, + 5324.9683678532665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.334085035489, + 5324.344629768805 + ], + [ + 2392.334085035489, + 5325.592105937728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556480", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.003030419338, + "min_y": 5324.32012862797, + "max_x": 2386.003030419338, + "max_y": 5325.613730793652, + "center": [ + 2386.003030419338, + 5324.966929710811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.003030419338, + 5325.613730793652 + ], + [ + 2386.003030419338, + 5324.32012862797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556481", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.17710830426, + "min_y": 5324.343191626354, + "max_x": 2383.17710830426, + "max_y": 5325.590667795275, + "center": [ + 2383.17710830426, + 5324.966929710815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.17710830426, + 5324.343191626354 + ], + [ + 2383.17710830426, + 5325.590667795275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556482", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.003030419338, + "min_y": 5324.343191626354, + "max_x": 2386.003030419338, + "max_y": 5325.590667795275, + "center": [ + 2386.003030419338, + 5324.966929710815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.003030419338, + 5324.343191626354 + ], + [ + 2386.003030419338, + 5325.590667795275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556483", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2381.888942471347, + "min_y": 5317.883268384179, + "max_x": 2381.888942471347, + "max_y": 5324.966929710814, + "center": [ + 2381.888942471347, + 5321.425099047497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.888942471347, + 5324.966929710814 + ], + [ + 2381.888942471347, + 5317.883268384179 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556484", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2370.899796910785, + "min_y": 5324.569331137467, + "max_x": 2371.6983167661374, + "max_y": 5325.3678509928195, + "center": [ + 2371.299056838461, + 5324.968591065143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.299056838461, + 5324.968591065143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556485", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.886095780922, + "min_y": 5324.344852980682, + "max_x": 2369.886095780922, + "max_y": 5325.592329149607, + "center": [ + 2369.886095780922, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.886095780922, + 5324.344852980682 + ], + [ + 2369.886095780922, + 5325.592329149607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556486", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.712017896, + "min_y": 5324.344852980682, + "max_x": 2372.712017896, + "max_y": 5325.592329149607, + "center": [ + 2372.712017896, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2372.712017896, + 5324.344852980682 + ], + [ + 2372.712017896, + 5325.592329149607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556487", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.813772000553, + "min_y": 5349.65330603307, + "max_x": 2426.813772000553, + "max_y": 5353.628980424751, + "center": [ + 2426.813772000553, + 5351.641143228911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.813772000553, + 5349.65330603307 + ], + [ + 2426.813772000553, + 5353.628980424751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556488", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.170254189547, + "min_y": 5349.65330603307, + "max_x": 2423.170254189547, + "max_y": 5353.628980424751, + "center": [ + 2423.170254189547, + 5351.641143228911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.170254189547, + 5349.65330603307 + ], + [ + 2423.170254189547, + 5353.628980424751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55648A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.773818233254, + "min_y": 5353.652687821156, + "max_x": 2427.210207956854, + "max_y": 5353.652687821156, + "center": [ + 2424.992013095054, + 5353.652687821156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.773818233254, + 5353.652687821156 + ], + [ + 2427.210207956854, + 5353.652687821156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55648B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.773818233254, + "min_y": 5354.038851651892, + "max_x": 2427.210207956854, + "max_y": 5354.038851651892, + "center": [ + 2424.992013095054, + 5354.038851651892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.773818233254, + 5354.038851651892 + ], + [ + 2427.210207956854, + 5354.038851651892 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55648C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.813772000556, + "min_y": 5354.038851651889, + "max_x": 2426.813772000556, + "max_y": 5354.913121288421, + "center": [ + 2426.813772000556, + 5354.4759864701555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.813772000556, + 5354.913121288421 + ], + [ + 2426.813772000556, + 5354.038851651889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55648D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.170254189547, + "min_y": 5354.038851651889, + "max_x": 2423.170254189547, + "max_y": 5354.913121288421, + "center": [ + 2423.170254189547, + 5354.4759864701555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.170254189547, + 5354.913121288421 + ], + [ + 2423.170254189547, + 5354.038851651889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55648F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2423.802730326868, + "min_y": 5355.719589879167, + "max_x": 2423.802730326868, + "max_y": 5360.880333460538, + "center": [ + 2423.802730326868, + 5358.299961669853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.802730326868, + 5360.880333460538 + ], + [ + 2423.802730326868, + 5355.719589879167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556490", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2426.181295863321, + "min_y": 5355.719589879167, + "max_x": 2426.181295863321, + "max_y": 5360.880333460538, + "center": [ + 2426.181295863321, + 5358.299961669853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.181295863321, + 5360.880333460538 + ], + [ + 2426.181295863321, + 5355.719589879167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556491", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.606827812863, + "min_y": 5399.167532116556, + "max_x": 2375.174609137199, + "max_y": 5399.167532116558, + "center": [ + 2373.3907184750306, + 5399.167532116557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.606827812863, + 5399.167532116556 + ], + [ + 2375.174609137199, + 5399.167532116558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556492", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.882671359812, + "min_y": 5360.880333460538, + "max_x": 2412.882671359812, + "max_y": 5362.4160241881, + "center": [ + 2412.882671359812, + 5361.648178824319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5360.880333460538 + ], + [ + 2412.882671359812, + 5362.4160241881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556493", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.882671359812, + "min_y": 5365.241946303181, + "max_x": 2412.882671359812, + "max_y": 5367.281829057215, + "center": [ + 2412.882671359812, + 5366.261887680198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5365.241946303181 + ], + [ + 2412.882671359812, + 5367.281829057215 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556494", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.882671359812, + "min_y": 5368.292530877896, + "max_x": 2412.882671359812, + "max_y": 5368.868360415493, + "center": [ + 2412.882671359812, + 5368.580445646694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5368.292530877896 + ], + [ + 2412.882671359812, + 5368.868360415493 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556495", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2412.4834114321357, + "min_y": 5363.429725317967, + "max_x": 2413.281931287488, + "max_y": 5364.228245173319, + "center": [ + 2412.882671359812, + 5363.828985245643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5363.828985245643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556496", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5365.241946303181, + "max_x": 2413.506409444276, + "max_y": 5365.241946303181, + "center": [ + 2412.882671359813, + 5365.241946303181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.25893327535, + 5365.241946303181 + ], + [ + 2413.506409444276, + 5365.241946303181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556497", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5362.4160241881, + "max_x": 2413.506409444276, + "max_y": 5362.4160241881, + "center": [ + 2412.882671359813, + 5362.4160241881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.25893327535, + 5362.4160241881 + ], + [ + 2413.506409444276, + 5362.4160241881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556498", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2410.2204121874306, + "min_y": 5362.693997224536, + "max_x": 2415.544930532193, + "max_y": 5368.0185155693, + "center": [ + 2412.882671359812, + 5365.356256396918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5365.356256396918 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556499", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.882671359812, + "min_y": 5366.287200716938, + "max_x": 2414.453178602452, + "max_y": 5366.287200716938, + "center": [ + 2413.6679249811323, + 5366.287200716938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5366.287200716938 + ], + [ + 2414.453178602452, + 5366.287200716938 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55649A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033561, + "min_y": 5345.544685129445, + "max_x": 2353.489094200865, + "max_y": 5345.544685129445, + "center": [ + 2352.853824617213, + 5345.544685129445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.489094200865, + 5345.544685129445 + ], + [ + 2352.218555033561, + 5345.544685129445 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55649B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.853824617213, + "min_y": 5336.293376425018, + "max_x": 2352.853824617213, + "max_y": 5338.487617613632, + "center": [ + 2352.853824617213, + 5337.390497019325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617213, + 5336.293376425018 + ], + [ + 2352.853824617213, + 5338.487617613632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55649C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.818501178501, + "min_y": 5360.884463564474, + "max_x": 2449.709068766654, + "max_y": 5360.884463564474, + "center": [ + 2447.7637849725775, + 5360.884463564474 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.709068766654, + 5360.884463564474 + ], + [ + 2445.818501178501, + 5360.884463564474 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55649D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2446.791143075542, + "min_y": 5359.199798381236, + "max_x": 2448.736426869619, + "max_y": 5362.569128747717, + "center": [ + 2447.7637849725807, + 5360.884463564476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.791143075542, + 5362.569128747717 + ], + [ + 2448.736426869619, + 5359.199798381236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55649E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2446.791143075542, + "min_y": 5359.199798381236, + "max_x": 2448.736426869619, + "max_y": 5362.569128747717, + "center": [ + 2447.7637849725807, + 5360.884463564476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.791143075542, + 5359.199798381236 + ], + [ + 2448.736426869619, + 5362.569128747717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55649F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.766980390567, + "min_y": 5400.041042363203, + "max_x": 2374.014456559487, + "max_y": 5400.041042363203, + "center": [ + 2373.390718475027, + 5400.041042363203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.014456559487, + 5400.041042363203 + ], + [ + 2372.766980390567, + 5400.041042363203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.449406249901, + "min_y": 5376.993539923504, + "max_x": 2378.331505108313, + "max_y": 5377.875638781916, + "center": [ + 2377.890455679107, + 5377.43458935271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.331505108313, + 5376.993539923504 + ], + [ + 2377.449406249901, + 5377.875638781916 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.766980390121, + "min_y": 5348.831557586495, + "max_x": 2374.014456559044, + "max_y": 5348.831557586495, + "center": [ + 2373.390718474582, + 5348.831557586495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.014456559044, + 5348.831557586495 + ], + [ + 2372.766980390121, + 5348.831557586495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A2", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 2376.145949238689, + "min_y": 5375.690082912302, + "max_x": 2377.890455679103, + "max_y": 5377.434589352716, + "center": [ + 2377.0182024588958, + 5376.562336132509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.890455679103, + 5377.434589352716 + ], + [ + 2376.145949238689, + 5375.690082912302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2378.170854534518, + "min_y": 5377.714988208103, + "max_x": 2379.326728667947, + "max_y": 5378.870862341528, + "center": [ + 2378.7487916012324, + 5378.292925274815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.170854534518, + 5377.714988208103 + ], + [ + 2379.326728667947, + 5378.870862341528 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564A4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2379.326728667947, + "min_y": 5378.870862341528, + "max_x": 2409.551403695979, + "max_y": 5378.870862341549, + "center": [ + 2394.439066181963, + 5378.870862341539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.326728667947, + 5378.870862341528 + ], + [ + 2409.551403695979, + 5378.870862341549 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.933542904831, + "min_y": 5385.021260297191, + "max_x": 2405.933542904831, + "max_y": 5386.77297319489, + "center": [ + 2405.933542904831, + 5385.89711674604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.933542904831, + 5385.021260297191 + ], + [ + 2405.933542904831, + 5386.77297319489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2405.933542904834, + "min_y": 5378.870862341539, + "max_x": 2405.933542904834, + "max_y": 5383.325155693722, + "center": [ + 2405.933542904834, + 5381.098009017631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.933542904834, + 5383.325155693722 + ], + [ + 2405.933542904834, + 5378.870862341539 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564A7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2384.1908094341256, + "min_y": 5324.567669783138, + "max_x": 2384.989329289478, + "max_y": 5325.36618963849, + "center": [ + 2384.590069361802, + 5324.966929710814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.590069361802, + 5324.966929710814 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2393.351235152141, + "min_y": 5324.571172977565, + "max_x": 2394.1497550074932, + "max_y": 5325.369692832917, + "center": [ + 2393.750495079817, + 5324.970432905241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.750495079817, + 5324.970432905241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.006221101583, + "max_x": 2364.970570647086, + "max_y": 5373.253697270508, + "center": [ + 2364.970570647086, + 5372.629959186046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5373.253697270508 + ], + [ + 2364.970570647086, + 5372.006221101583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.483359193123, + "min_y": 5371.983158103203, + "max_x": 2364.483359193123, + "max_y": 5373.276760268882, + "center": [ + 2364.483359193123, + 5372.6299591860425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.483359193123, + 5373.276760268882 + ], + [ + 2364.483359193123, + 5371.983158103203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5371.992221512679, + "max_x": 2367.425280019488, + "max_y": 5373.285823678362, + "center": [ + 2367.425280019488, + 5372.63902259552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5373.285823678362 + ], + [ + 2367.425280019488, + 5371.992221512679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2365.6130590342727, + "min_y": 5372.239762667844, + "max_x": 2366.411578889625, + "max_y": 5373.038282523196, + "center": [ + 2366.012318961949, + 5372.63902259552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.012318961949, + 5372.63902259552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.006221101583, + "max_x": 2364.970570647086, + "max_y": 5373.253697270508, + "center": [ + 2364.970570647086, + 5372.629959186046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5372.006221101583 + ], + [ + 2364.970570647086, + 5373.253697270508 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5372.015284511056, + "max_x": 2367.425280019488, + "max_y": 5373.262760679981, + "center": [ + 2367.425280019488, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5372.015284511056 + ], + [ + 2367.425280019488, + 5373.262760679981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.158959593412, + "max_x": 2364.970570647086, + "max_y": 5365.406435762332, + "center": [ + 2364.970570647086, + 5364.782697677872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5365.406435762332 + ], + [ + 2364.970570647086, + 5364.158959593412 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.483359193123, + "min_y": 5364.135896595033, + "max_x": 2364.483359193123, + "max_y": 5365.429498760711, + "center": [ + 2364.483359193123, + 5364.782697677872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.483359193123, + 5365.429498760711 + ], + [ + 2364.483359193123, + 5364.135896595033 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5364.144960004511, + "max_x": 2367.425280019488, + "max_y": 5365.43856217019, + "center": [ + 2367.425280019488, + 5364.79176108735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5365.43856217019 + ], + [ + 2367.425280019488, + 5364.144960004511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2365.6130590342727, + "min_y": 5364.392501159669, + "max_x": 2366.411578889625, + "max_y": 5365.191021015022, + "center": [ + 2366.012318961949, + 5364.791761087346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.012318961949, + 5364.791761087346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.158959593412, + "max_x": 2364.970570647086, + "max_y": 5365.406435762332, + "center": [ + 2364.970570647086, + 5364.782697677872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5364.158959593412 + ], + [ + 2364.970570647086, + 5365.406435762332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5364.168023002886, + "max_x": 2367.425280019488, + "max_y": 5365.41549917181, + "center": [ + 2367.425280019488, + 5364.791761087348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5364.168023002886 + ], + [ + 2367.425280019488, + 5365.41549917181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2380.4858567708416, + "min_y": 5372.306637867626, + "max_x": 2381.284376626194, + "max_y": 5373.105157722978, + "center": [ + 2380.885116698518, + 5372.705897795302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.885116698518, + 5372.705897795302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2380.4858567708416, + "min_y": 5363.251555719769, + "max_x": 2381.284376626194, + "max_y": 5364.050075575122, + "center": [ + 2380.885116698518, + 5363.650815647446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.885116698518, + 5363.650815647446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564B7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2437.687572326867, + "min_y": 5360.880333460542, + "max_x": 2437.687572326867, + "max_y": 5362.57954000519, + "center": [ + 2437.687572326867, + 5361.729936732866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326867, + 5360.880333460542 + ], + [ + 2437.687572326867, + 5362.57954000519 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564B8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2437.687572326867, + "min_y": 5365.405462120266, + "max_x": 2437.687572326867, + "max_y": 5368.785237687031, + "center": [ + 2437.687572326867, + 5367.095349903649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326867, + 5365.405462120266 + ], + [ + 2437.687572326867, + 5368.785237687031 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564B9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2437.687572326867, + "min_y": 5366.774344043155, + "max_x": 2439.371316922116, + "max_y": 5366.774344043155, + "center": [ + 2438.5294446244916, + 5366.774344043155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326867, + 5366.774344043155 + ], + [ + 2439.371316922116, + 5366.774344043155 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564BA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2440.5759949297226, + "min_y": 5366.375084115479, + "max_x": 2441.374514785075, + "max_y": 5367.173603970831, + "center": [ + 2440.975254857399, + 5366.774344043155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.975254857399, + 5366.774344043155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2442.569331751886, + "min_y": 5366.150605958691, + "max_x": 2442.569331751886, + "max_y": 5367.398082127614, + "center": [ + 2442.569331751886, + 5366.774344043152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.569331751886, + 5367.398082127614 + ], + [ + 2442.569331751886, + 5366.150605958691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564BC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2346.669412177496, + "min_y": 5323.229952165307, + "max_x": 2358.0922019515087, + "max_y": 5324.3498335157, + "center": [ + 2352.3808070645023, + 5323.789892840503 + ] + }, + "raw_value": "P-10232-25A-F1A-n", + "clean_value": "P-10232-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5564BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.933506542532, + "min_y": 5366.150605958691, + "max_x": 2440.632702268056, + "max_y": 5366.56924354733, + "center": [ + 2440.283104405294, + 5366.359924753011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.632702268056, + 5366.56924354733 + ], + [ + 2439.933506542532, + 5366.150605958691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.933506542532, + "min_y": 5366.150605958691, + "max_x": 2439.933506542532, + "max_y": 5367.398082127614, + "center": [ + 2439.933506542532, + 5366.774344043152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.933506542532, + 5366.150605958691 + ], + [ + 2439.933506542532, + 5367.398082127614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.933506542532, + "min_y": 5366.979444538976, + "max_x": 2440.632702268056, + "max_y": 5367.398082127614, + "center": [ + 2440.283104405294, + 5367.188763333295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.933506542532, + 5367.398082127614 + ], + [ + 2440.632702268056, + 5366.979444538976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.317807446733, + "min_y": 5366.150605958691, + "max_x": 2442.01700317226, + "max_y": 5366.569243547335, + "center": [ + 2441.6674053094966, + 5366.359924753013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.317807446733, + 5366.569243547335 + ], + [ + 2442.01700317226, + 5366.150605958691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2442.01700317226, + "min_y": 5366.150605958691, + "max_x": 2442.01700317226, + "max_y": 5367.398082127614, + "center": [ + 2442.01700317226, + 5366.774344043152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.01700317226, + 5366.150605958691 + ], + [ + 2442.01700317226, + 5367.398082127614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.317807446733, + "min_y": 5366.979444538976, + "max_x": 2442.01700317226, + "max_y": 5367.398082127614, + "center": [ + 2441.6674053094966, + 5367.188763333295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.01700317226, + 5367.398082127614 + ], + [ + 2441.317807446733, + 5366.979444538976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5364.161024645379, + "max_x": 2367.054067276813, + "max_y": 5365.422497529317, + "center": [ + 2367.054067276813, + 5364.791761087348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5365.422497529317 + ], + [ + 2367.054067276813, + 5364.161024645379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5364.161024645379, + "max_x": 2367.425280019488, + "max_y": 5365.422497529317, + "center": [ + 2367.425280019488, + 5364.791761087348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5365.422497529317 + ], + [ + 2367.425280019488, + 5364.161024645379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.154026287866, + "max_x": 2364.970570647086, + "max_y": 5365.41549917181, + "center": [ + 2364.970570647086, + 5364.784762729838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5365.41549917181 + ], + [ + 2364.970570647086, + 5364.154026287866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.154026287866, + "max_x": 2364.970570647086, + "max_y": 5365.41549917181, + "center": [ + 2364.970570647086, + 5364.784762729838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5365.41549917181 + ], + [ + 2364.970570647086, + 5364.154026287866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.996861583173, + "max_x": 2365.66976637261, + "max_y": 5365.41549917181, + "center": [ + 2365.320168509848, + 5365.206180377491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.66976637261, + 5364.996861583173 + ], + [ + 2364.970570647086, + 5365.41549917181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.168023002886, + "max_x": 2364.970570647086, + "max_y": 5365.41549917181, + "center": [ + 2364.970570647086, + 5364.791761087348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5365.41549917181 + ], + [ + 2364.970570647086, + 5364.168023002886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5364.168023002886, + "max_x": 2365.66976637261, + "max_y": 5364.586660591523, + "center": [ + 2365.320168509848, + 5364.377341797204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5364.168023002886 + ], + [ + 2365.66976637261, + 5364.586660591523 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.354871551286, + "min_y": 5364.996861583169, + "max_x": 2367.054067276813, + "max_y": 5365.41549917181, + "center": [ + 2366.7044694140495, + 5365.2061803774895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.354871551286, + 5364.996861583169 + ], + [ + 2367.054067276813, + 5365.41549917181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5364.168023002886, + "max_x": 2367.054067276813, + "max_y": 5365.41549917181, + "center": [ + 2367.054067276813, + 5364.791761087348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5365.41549917181 + ], + [ + 2367.054067276813, + 5364.168023002886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.354871551286, + "min_y": 5364.168023002886, + "max_x": 2367.054067276813, + "max_y": 5364.586660591528, + "center": [ + 2366.7044694140495, + 5364.377341797207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5364.168023002886 + ], + [ + 2366.354871551286, + 5364.586660591528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5372.008286153548, + "max_x": 2367.054067276813, + "max_y": 5373.269759037488, + "center": [ + 2367.054067276813, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5373.269759037488 + ], + [ + 2367.054067276813, + 5372.008286153548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5372.008286153548, + "max_x": 2367.425280019488, + "max_y": 5373.269759037488, + "center": [ + 2367.425280019488, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5373.269759037488 + ], + [ + 2367.425280019488, + 5372.008286153548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.001287796042, + "max_x": 2364.970570647086, + "max_y": 5373.262760679981, + "center": [ + 2364.970570647086, + 5372.632024238012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5373.262760679981 + ], + [ + 2364.970570647086, + 5372.001287796042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.001287796042, + "max_x": 2364.970570647086, + "max_y": 5373.262760679981, + "center": [ + 2364.970570647086, + 5372.632024238012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5373.262760679981 + ], + [ + 2364.970570647086, + 5372.001287796042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.844123091343, + "max_x": 2365.66976637261, + "max_y": 5373.262760679981, + "center": [ + 2365.320168509848, + 5373.053441885662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.66976637261, + 5372.844123091343 + ], + [ + 2364.970570647086, + 5373.262760679981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.015284511056, + "max_x": 2364.970570647086, + "max_y": 5373.262760679981, + "center": [ + 2364.970570647086, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5373.262760679981 + ], + [ + 2364.970570647086, + 5372.015284511056 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.970570647086, + "min_y": 5372.015284511056, + "max_x": 2365.66976637261, + "max_y": 5372.433922099694, + "center": [ + 2365.320168509848, + 5372.224603305375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.970570647086, + 5372.015284511056 + ], + [ + 2365.66976637261, + 5372.433922099694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.354871551286, + "min_y": 5372.844123091343, + "max_x": 2367.054067276813, + "max_y": 5373.262760679981, + "center": [ + 2366.7044694140495, + 5373.053441885662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.354871551286, + 5372.844123091343 + ], + [ + 2367.054067276813, + 5373.262760679981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5372.015284511056, + "max_x": 2367.054067276813, + "max_y": 5373.262760679981, + "center": [ + 2367.054067276813, + 5372.639022595518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5373.262760679981 + ], + [ + 2367.054067276813, + 5372.015284511056 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.354871551286, + "min_y": 5372.015284511056, + "max_x": 2367.054067276813, + "max_y": 5372.433922099698, + "center": [ + 2366.7044694140495, + 5372.224603305377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5372.015284511056 + ], + [ + 2366.354871551286, + 5372.433922099698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.618508414277, + "min_y": 5385.516276341316, + "max_x": 2406.248577395385, + "max_y": 5386.146345322429, + "center": [ + 2405.933542904831, + 5385.8313108318725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.618508414277, + 5386.146345322429 + ], + [ + 2406.248577395385, + 5385.516276341316 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.618508414277, + "min_y": 5385.83131083187, + "max_x": 2406.248577395385, + "max_y": 5386.461379812982, + "center": [ + 2405.933542904831, + 5386.146345322426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.248577395385, + 5385.83131083187 + ], + [ + 2405.618508414277, + 5386.461379812982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.618508414277, + "min_y": 5386.146345322429, + "max_x": 2406.248577395385, + "max_y": 5386.77641430354, + "center": [ + 2405.933542904831, + 5386.461379812985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.618508414277, + 5386.77641430354 + ], + [ + 2406.248577395385, + 5386.146345322429 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.933542904831, + "min_y": 5385.021260297191, + "max_x": 2405.933542904831, + "max_y": 5386.77641430354, + "center": [ + 2405.933542904831, + 5385.898837300365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.933542904831, + 5385.021260297191 + ], + [ + 2405.933542904831, + 5386.77641430354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.303473923716, + "min_y": 5383.761122334971, + "max_x": 2405.933542904831, + "max_y": 5385.021260297191, + "center": [ + 2405.6185084142735, + 5384.391191316081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.933542904831, + 5385.021260297191 + ], + [ + 2405.303473923716, + 5383.761122334971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.303473923716, + "min_y": 5383.761122334971, + "max_x": 2406.563611885943, + "max_y": 5383.761122334971, + "center": [ + 2405.9335429048297, + 5383.761122334971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.303473923716, + 5383.761122334971 + ], + [ + 2406.563611885943, + 5383.761122334971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.933542904831, + "min_y": 5383.761122334971, + "max_x": 2406.563611885943, + "max_y": 5385.021260297191, + "center": [ + 2406.2485773953867, + 5384.391191316081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.563611885943, + 5383.761122334971 + ], + [ + 2405.933542904831, + 5385.021260297191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.933542904831, + "min_y": 5385.021260297191, + "max_x": 2407.193680867053, + "max_y": 5385.651329278307, + "center": [ + 2406.563611885942, + 5385.336294787749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.933542904831, + 5385.021260297191 + ], + [ + 2407.193680867053, + 5385.651329278307 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.193680867053, + "min_y": 5384.391191316087, + "max_x": 2407.193680867053, + "max_y": 5385.651329278307, + "center": [ + 2407.193680867053, + 5385.021260297197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.193680867053, + 5385.651329278307 + ], + [ + 2407.193680867053, + 5384.391191316087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.933542904831, + "min_y": 5384.391191316087, + "max_x": 2407.193680867053, + "max_y": 5385.021260297191, + "center": [ + 2406.563611885942, + 5384.706225806639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.193680867053, + 5384.391191316087 + ], + [ + 2405.933542904831, + 5385.021260297191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.79720625459, + "min_y": 5368.292530877896, + "max_x": 2413.968136465035, + "max_y": 5368.292530877896, + "center": [ + 2412.882671359813, + 5368.292530877896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.79720625459, + 5368.292530877896 + ], + [ + 2413.968136465035, + 5368.292530877896 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5564E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.968136465035, + "min_y": 5367.281829057215, + "max_x": 2413.968136465035, + "max_y": 5368.292530877896, + "center": [ + 2413.968136465035, + 5367.787179967556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.968136465035, + 5368.292530877896 + ], + [ + 2413.968136465035, + 5367.281829057215 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5564E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.79720625459, + "min_y": 5367.281829057215, + "max_x": 2413.968136465035, + "max_y": 5367.281829057215, + "center": [ + 2412.882671359813, + 5367.281829057215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.968136465035, + 5367.281829057215 + ], + [ + 2411.79720625459, + 5367.281829057215 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5564E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.79720625459, + "min_y": 5367.281829057215, + "max_x": 2411.79720625459, + "max_y": 5368.292530877896, + "center": [ + 2411.79720625459, + 5367.787179967556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.79720625459, + 5367.281829057215 + ], + [ + 2411.79720625459, + 5368.292530877896 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5564E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5362.787236930774, + "max_x": 2412.677570863988, + "max_y": 5363.486432656301, + "center": [ + 2412.468252069669, + 5363.136834793538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.677570863988, + 5363.486432656301 + ], + [ + 2412.25893327535, + 5362.787236930774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5362.787236930774, + "max_x": 2413.506409444276, + "max_y": 5362.787236930774, + "center": [ + 2412.882671359813, + 5362.787236930774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.25893327535, + 5362.787236930774 + ], + [ + 2413.506409444276, + 5362.787236930774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.087771855638, + "min_y": 5362.787236930774, + "max_x": 2413.506409444276, + "max_y": 5363.486432656301, + "center": [ + 2413.2970906499568, + 5363.136834793538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.506409444276, + 5362.787236930774 + ], + [ + 2413.087771855638, + 5363.486432656301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5364.171537834977, + "max_x": 2412.677570863991, + "max_y": 5364.870733560501, + "center": [ + 2412.4682520696706, + 5364.52113569774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.677570863991, + 5364.171537834977 + ], + [ + 2412.25893327535, + 5364.870733560501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.25893327535, + "min_y": 5364.870733560501, + "max_x": 2413.506409444276, + "max_y": 5364.870733560501, + "center": [ + 2412.882671359813, + 5364.870733560501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.25893327535, + 5364.870733560501 + ], + [ + 2413.506409444276, + 5364.870733560501 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.087771855632, + "min_y": 5364.171537834977, + "max_x": 2413.506409444276, + "max_y": 5364.870733560501, + "center": [ + 2413.297090649954, + 5364.52113569774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.506409444276, + 5364.870733560501 + ], + [ + 2413.087771855632, + 5364.171537834977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.257308523597, + "min_y": 5324.344852980682, + "max_x": 2370.956504249122, + "max_y": 5324.763490569321, + "center": [ + 2370.6069063863597, + 5324.554171775002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.956504249122, + 5324.763490569321 + ], + [ + 2370.257308523597, + 5324.344852980682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.257308523597, + "min_y": 5324.344852980682, + "max_x": 2370.257308523597, + "max_y": 5325.592329149607, + "center": [ + 2370.257308523597, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.257308523597, + 5324.344852980682 + ], + [ + 2370.257308523597, + 5325.592329149607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.257308523597, + "min_y": 5325.173691560966, + "max_x": 2370.956504249122, + "max_y": 5325.592329149607, + "center": [ + 2370.6069063863597, + 5325.383010355286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.257308523597, + 5325.592329149607 + ], + [ + 2370.956504249122, + 5325.173691560966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.641609427795, + "min_y": 5324.344852980682, + "max_x": 2372.340805153328, + "max_y": 5324.763490569322, + "center": [ + 2371.9912072905618, + 5324.554171775002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.641609427795, + 5324.763490569322 + ], + [ + 2372.340805153328, + 5324.344852980682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.340805153328, + "min_y": 5324.344852980682, + "max_x": 2372.340805153328, + "max_y": 5325.592329149607, + "center": [ + 2372.340805153328, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2372.340805153328, + 5324.344852980682 + ], + [ + 2372.340805153328, + 5325.592329149607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.641609427795, + "min_y": 5325.173691560966, + "max_x": 2372.340805153328, + "max_y": 5325.592329149607, + "center": [ + 2371.9912072905618, + 5325.383010355286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2372.340805153328, + 5325.592329149607 + ], + [ + 2371.641609427795, + 5325.173691560966 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.631817676665, + "min_y": 5324.336193268845, + "max_x": 2385.631817676665, + "max_y": 5325.597666152783, + "center": [ + 2385.631817676665, + 5324.966929710814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.631817676665, + 5325.597666152783 + ], + [ + 2385.631817676665, + 5324.336193268845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.003030419338, + "min_y": 5324.336193268845, + "max_x": 2386.003030419338, + "max_y": 5325.597666152783, + "center": [ + 2386.003030419338, + 5324.966929710814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.003030419338, + 5325.597666152783 + ], + [ + 2386.003030419338, + 5324.336193268845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.17710830426, + "min_y": 5324.338258320809, + "max_x": 2383.17710830426, + "max_y": 5325.599731204751, + "center": [ + 2383.17710830426, + 5324.968994762779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.17710830426, + 5325.599731204751 + ], + [ + 2383.17710830426, + 5324.338258320809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.17710830426, + "min_y": 5324.338258320809, + "max_x": 2383.17710830426, + "max_y": 5325.599731204751, + "center": [ + 2383.17710830426, + 5324.968994762779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.17710830426, + 5325.599731204751 + ], + [ + 2383.17710830426, + 5324.338258320809 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.548321046938, + "min_y": 5325.172030206632, + "max_x": 2384.247516772465, + "max_y": 5325.590667795275, + "center": [ + 2383.8979189097017, + 5325.381349000954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.247516772465, + 5325.172030206632 + ], + [ + 2383.548321046938, + 5325.590667795275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.548321046938, + "min_y": 5324.343191626354, + "max_x": 2383.548321046938, + "max_y": 5325.590667795275, + "center": [ + 2383.548321046938, + 5324.966929710815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.548321046938, + 5325.590667795275 + ], + [ + 2383.548321046938, + 5324.343191626354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.548321046938, + "min_y": 5324.343191626354, + "max_x": 2384.247516772465, + "max_y": 5324.76182921499, + "center": [ + 2383.8979189097017, + 5324.552510420672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.548321046938, + 5324.343191626354 + ], + [ + 2384.247516772465, + 5324.76182921499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.932621951136, + "min_y": 5325.172030206632, + "max_x": 2385.631817676665, + "max_y": 5325.590667795275, + "center": [ + 2385.2822198139, + 5325.381349000954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.932621951136, + 5325.172030206632 + ], + [ + 2385.631817676665, + 5325.590667795275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.631817676665, + "min_y": 5324.343191626354, + "max_x": 2385.631817676665, + "max_y": 5325.590667795275, + "center": [ + 2385.631817676665, + 5324.966929710815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.631817676665, + 5325.590667795275 + ], + [ + 2385.631817676665, + 5324.343191626354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.932621951136, + "min_y": 5324.343191626354, + "max_x": 2385.631817676665, + "max_y": 5324.76182921499, + "center": [ + 2385.2822198139, + 5324.552510420672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.631817676665, + 5324.343191626354 + ], + [ + 2384.932621951136, + 5324.76182921499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.705297778162, + "min_y": 5324.337631411299, + "max_x": 2392.705297778162, + "max_y": 5325.599104295235, + "center": [ + 2392.705297778162, + 5324.968367853267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.705297778162, + 5325.599104295235 + ], + [ + 2392.705297778162, + 5324.337631411299 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.334085035489, + "min_y": 5324.337631411299, + "max_x": 2392.334085035489, + "max_y": 5325.599104295235, + "center": [ + 2392.334085035489, + 5324.968367853267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.334085035489, + 5325.599104295235 + ], + [ + 2392.334085035489, + 5324.337631411299 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2395.160007150567, + "min_y": 5324.339696463262, + "max_x": 2395.160007150567, + "max_y": 5325.601169347204, + "center": [ + 2395.160007150567, + 5324.970432905233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2395.160007150567, + 5325.601169347204 + ], + [ + 2395.160007150567, + 5324.339696463262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2395.160007150567, + "min_y": 5324.339696463262, + "max_x": 2395.160007150567, + "max_y": 5325.601169347204, + "center": [ + 2395.160007150567, + 5324.970432905233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2395.160007150567, + 5325.601169347204 + ], + [ + 2395.160007150567, + 5324.339696463262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5564FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2394.089598682368, + "min_y": 5325.17346834909, + "max_x": 2394.788794407889, + "max_y": 5325.592105937728, + "center": [ + 2394.4391965451287, + 5325.38278714341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.089598682368, + 5325.17346834909 + ], + [ + 2394.788794407889, + 5325.592105937728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556500", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2394.788794407889, + "min_y": 5324.344629768805, + "max_x": 2394.788794407889, + "max_y": 5325.592105937728, + "center": [ + 2394.788794407889, + 5324.9683678532665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.788794407889, + 5325.592105937728 + ], + [ + 2394.788794407889, + 5324.344629768805 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556501", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2394.089598682368, + "min_y": 5324.344629768805, + "max_x": 2394.788794407889, + "max_y": 5324.763267357443, + "center": [ + 2394.4391965451287, + 5324.553948563123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.788794407889, + 5324.344629768805 + ], + [ + 2394.089598682368, + 5324.763267357443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556502", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.705297778162, + "min_y": 5325.172485109929, + "max_x": 2393.406135679728, + "max_y": 5325.592105937728, + "center": [ + 2393.055716728945, + 5325.382295523828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.406135679728, + 5325.172485109929 + ], + [ + 2392.705297778162, + 5325.592105937728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556503", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.705297778162, + "min_y": 5324.344629768805, + "max_x": 2392.705297778162, + "max_y": 5325.592105937728, + "center": [ + 2392.705297778162, + 5324.9683678532665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.705297778162, + 5325.592105937728 + ], + [ + 2392.705297778162, + 5324.344629768805 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556504", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2392.705297778162, + "min_y": 5324.344629768805, + "max_x": 2393.40794249048, + "max_y": 5324.76533240942, + "center": [ + 2393.056620134321, + 5324.5549810891125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.705297778162, + 5324.344629768805 + ], + [ + 2393.40794249048, + 5324.76533240942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556505", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.98002429002, + "min_y": 5323.973640238008, + "max_x": 2378.98002429002, + "max_y": 5325.963541892281, + "center": [ + 2378.98002429002, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.98002429002, + 5325.963541892281 + ], + [ + 2378.98002429002, + 5323.973640238008 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556506", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.020909649831, + "min_y": 5323.973640238008, + "max_x": 2378.98002429002, + "max_y": 5323.973640238008, + "center": [ + 2377.0004669699256, + 5323.973640238008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.98002429002, + 5323.973640238008 + ], + [ + 2375.020909649831, + 5323.973640238008 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556507", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.020909649831, + "min_y": 5323.973640238008, + "max_x": 2375.020909649831, + "max_y": 5325.963541892281, + "center": [ + 2375.020909649831, + 5324.968591065144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.020909649831, + 5323.973640238008 + ], + [ + 2375.020909649831, + 5325.963541892281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556508", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.020909649831, + "min_y": 5325.963541892281, + "max_x": 2378.98002429002, + "max_y": 5325.963541892281, + "center": [ + 2377.0004669699256, + 5325.963541892281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.020909649831, + 5325.963541892281 + ], + [ + 2378.98002429002, + 5325.963541892281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556509", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.30728512334, + "min_y": 5362.565350542221, + "max_x": 2384.30728512334, + "max_y": 5364.736280752666, + "center": [ + 2384.30728512334, + 5363.650815647443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5364.736280752666 + ], + [ + 2384.30728512334, + 5362.565350542221 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5362.565350542221, + "max_x": 2384.30728512334, + "max_y": 5362.565350542221, + "center": [ + 2383.8019342129983, + 5362.565350542221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5362.565350542221 + ], + [ + 2383.296583302657, + 5362.565350542221 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5362.565350542221, + "max_x": 2383.296583302657, + "max_y": 5364.736280752666, + "center": [ + 2383.296583302657, + 5363.650815647443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.296583302657, + 5362.565350542221 + ], + [ + 2383.296583302657, + 5364.736280752666 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5364.736280752666, + "max_x": 2384.30728512334, + "max_y": 5364.736280752666, + "center": [ + 2383.8019342129983, + 5364.736280752666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.296583302657, + 5364.736280752666 + ], + [ + 2384.30728512334, + 5364.736280752666 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.30728512334, + "min_y": 5371.620432690082, + "max_x": 2384.30728512334, + "max_y": 5373.791362900524, + "center": [ + 2384.30728512334, + 5372.705897795304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5373.791362900524 + ], + [ + 2384.30728512334, + 5371.620432690082 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5371.620432690082, + "max_x": 2384.30728512334, + "max_y": 5371.620432690082, + "center": [ + 2383.8019342129983, + 5371.620432690082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.30728512334, + 5371.620432690082 + ], + [ + 2383.296583302657, + 5371.620432690082 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55650F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5371.620432690082, + "max_x": 2383.296583302657, + "max_y": 5373.791362900524, + "center": [ + 2383.296583302657, + 5372.705897795304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.296583302657, + 5371.620432690082 + ], + [ + 2383.296583302657, + 5373.791362900524 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556510", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.296583302657, + "min_y": 5373.791362900524, + "max_x": 2384.30728512334, + "max_y": 5373.791362900524, + "center": [ + 2383.8019342129983, + 5373.791362900524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.296583302657, + 5373.791362900524 + ], + [ + 2384.30728512334, + 5373.791362900524 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556511", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.48354723279, + "min_y": 5360.251662070535, + "max_x": 2431.48354723279, + "max_y": 5361.513134954478, + "center": [ + 2431.48354723279, + 5360.882398512506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.48354723279, + 5361.513134954478 + ], + [ + 2431.48354723279, + 5360.251662070535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556512", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.48354723279, + "min_y": 5360.251662070535, + "max_x": 2431.48354723279, + "max_y": 5361.513134954478, + "center": [ + 2431.48354723279, + 5360.882398512506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.48354723279, + 5361.513134954478 + ], + [ + 2431.48354723279, + 5360.251662070535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556513", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.938256605193, + "min_y": 5360.249597018569, + "max_x": 2433.938256605193, + "max_y": 5361.511069902511, + "center": [ + 2433.938256605193, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.938256605193, + 5361.511069902511 + ], + [ + 2433.938256605193, + 5360.249597018569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556514", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.309469347868, + "min_y": 5360.249597018569, + "max_x": 2434.309469347868, + "max_y": 5361.511069902511, + "center": [ + 2434.309469347868, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.309469347868, + 5361.511069902511 + ], + [ + 2434.309469347868, + 5360.249597018569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556515", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.854759975465, + "min_y": 5361.085433956366, + "max_x": 2432.553955700992, + "max_y": 5361.504071545002, + "center": [ + 2432.2043578382286, + 5361.294752750684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.553955700992, + 5361.085433956366 + ], + [ + 2431.854759975465, + 5361.504071545002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556516", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.854759975465, + "min_y": 5360.256595376079, + "max_x": 2431.854759975465, + "max_y": 5361.504071545002, + "center": [ + 2431.854759975465, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.854759975465, + 5361.504071545002 + ], + [ + 2431.854759975465, + 5360.256595376079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556517", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.854759975465, + "min_y": 5360.256595376079, + "max_x": 2432.553955700992, + "max_y": 5360.675232964717, + "center": [ + 2432.2043578382286, + 5360.465914170398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.854759975465, + 5360.256595376079 + ], + [ + 2432.553955700992, + 5360.675232964717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556518", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.239060879666, + "min_y": 5361.085433956361, + "max_x": 2433.938256605193, + "max_y": 5361.504071545002, + "center": [ + 2433.5886587424293, + 5361.294752750682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.239060879666, + 5361.085433956361 + ], + [ + 2433.938256605193, + 5361.504071545002 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556519", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.938256605193, + "min_y": 5360.256595376079, + "max_x": 2433.938256605193, + "max_y": 5361.504071545002, + "center": [ + 2433.938256605193, + 5360.88033346054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.938256605193, + 5361.504071545002 + ], + [ + 2433.938256605193, + 5360.256595376079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.239060879666, + "min_y": 5360.256595376079, + "max_x": 2433.938256605193, + "max_y": 5360.67523296472, + "center": [ + 2433.5886587424293, + 5360.4659141704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.938256605193, + 5360.256595376079 + ], + [ + 2433.239060879666, + 5360.67523296472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.435215859791, + "min_y": 5331.383564802528, + "max_x": 2365.853853448426, + "max_y": 5332.082760528055, + "center": [ + 2365.6445346541086, + 5331.733162665291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.435215859791, + 5332.082760528055 + ], + [ + 2365.853853448426, + 5331.383564802528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5331.383564802528, + "max_x": 2365.853853448426, + "max_y": 5331.383564802528, + "center": [ + 2365.230115363965, + 5331.383564802528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.853853448426, + 5331.383564802528 + ], + [ + 2364.606377279504, + 5331.383564802528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5331.383564802528, + "max_x": 2365.025014868144, + "max_y": 5332.082760528055, + "center": [ + 2364.8156960738243, + 5331.733162665291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.606377279504, + 5331.383564802528 + ], + [ + 2365.025014868144, + 5332.082760528055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.435215859788, + "min_y": 5332.767865706731, + "max_x": 2365.853853448426, + "max_y": 5333.467061432256, + "center": [ + 2365.644534654107, + 5333.117463569493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.435215859788, + 5332.767865706731 + ], + [ + 2365.853853448426, + 5333.467061432256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55651F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5333.467061432256, + "max_x": 2365.853853448426, + "max_y": 5333.467061432256, + "center": [ + 2365.230115363965, + 5333.467061432256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.853853448426, + 5333.467061432256 + ], + [ + 2364.606377279504, + 5333.467061432256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556520", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.606377279504, + "min_y": 5332.767865706731, + "max_x": 2365.025014868146, + "max_y": 5333.467061432256, + "center": [ + 2364.815696073825, + 5333.117463569493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.606377279504, + 5333.467061432256 + ], + [ + 2365.025014868146, + 5332.767865706731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556521", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.684923560612, + "min_y": 5335.664705035005, + "max_x": 2371.684923560612, + "max_y": 5336.926177918945, + "center": [ + 2371.684923560612, + 5336.295441476975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.684923560612, + 5336.926177918945 + ], + [ + 2371.684923560612, + 5335.664705035005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556522", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.684923560612, + "min_y": 5335.664705035005, + "max_x": 2371.684923560612, + "max_y": 5336.926177918945, + "center": [ + 2371.684923560612, + 5336.295441476975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.684923560612, + 5336.926177918945 + ], + [ + 2371.684923560612, + 5335.664705035005 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556523", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.336055677652, + "min_y": 5336.293376425011, + "max_x": 2368.859001445537, + "max_y": 5336.293376425011, + "center": [ + 2367.5975285615946, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.336055677652, + 5336.293376425011 + ], + [ + 2368.859001445537, + 5336.293376425011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556524", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.230214188212, + "min_y": 5335.662639983043, + "max_x": 2369.230214188212, + "max_y": 5336.924112866979, + "center": [ + 2369.230214188212, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.230214188212, + 5336.924112866979 + ], + [ + 2369.230214188212, + 5335.662639983043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556525", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2368.859001445537, + "min_y": 5335.662639983043, + "max_x": 2368.859001445537, + "max_y": 5336.924112866979, + "center": [ + 2368.859001445537, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.859001445537, + 5336.924112866979 + ], + [ + 2368.859001445537, + 5335.662639983043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556526", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.966792119623, + "min_y": 5335.031903541072, + "max_x": 2368.228265003565, + "max_y": 5336.293376425011, + "center": [ + 2367.597528561594, + 5335.662639983042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.228265003565, + 5336.293376425011 + ], + [ + 2366.966792119623, + 5335.031903541072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556527", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.65142389864, + "min_y": 5334.716535320083, + "max_x": 2367.282160340611, + "max_y": 5335.347271762055, + "center": [ + 2366.9667921196256, + 5335.0319035410685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.65142389864, + 5335.347271762055 + ], + [ + 2367.282160340611, + 5334.716535320083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556528", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.614515092412, + "min_y": 5336.498476920834, + "max_x": 2371.31371081794, + "max_y": 5336.917114509472, + "center": [ + 2370.964112955176, + 5336.707795715153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.614515092412, + 5336.498476920834 + ], + [ + 2371.31371081794, + 5336.917114509472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556529", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.31371081794, + "min_y": 5335.66963834055, + "max_x": 2371.31371081794, + "max_y": 5336.917114509472, + "center": [ + 2371.31371081794, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.31371081794, + 5336.917114509472 + ], + [ + 2371.31371081794, + 5335.66963834055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.614515092412, + "min_y": 5335.66963834055, + "max_x": 2371.31371081794, + "max_y": 5336.088275929185, + "center": [ + 2370.964112955176, + 5335.878957134868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.31371081794, + 5335.66963834055 + ], + [ + 2370.614515092412, + 5336.088275929185 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.230214188209, + "min_y": 5336.498476920832, + "max_x": 2369.929409913738, + "max_y": 5336.917114509472, + "center": [ + 2369.5798120509735, + 5336.707795715152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.929409913738, + 5336.498476920832 + ], + [ + 2369.230214188209, + 5336.917114509472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.230214188209, + "min_y": 5335.66963834055, + "max_x": 2369.230214188209, + "max_y": 5336.917114509472, + "center": [ + 2369.230214188209, + 5336.293376425011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.230214188209, + 5336.917114509472 + ], + [ + 2369.230214188209, + 5335.66963834055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.230214188209, + "min_y": 5335.66963834055, + "max_x": 2369.929409913738, + "max_y": 5336.088275929188, + "center": [ + 2369.5798120509735, + 5335.878957134869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.230214188209, + 5335.66963834055 + ], + [ + 2369.929409913738, + 5336.088275929188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2358.7671184391966, + "min_y": 5336.0442459109145, + "max_x": 2359.2571192595333, + "max_y": 5336.534246731251, + "center": [ + 2359.012118849365, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.012118849365, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55652F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2359.2571192595324, + "min_y": 5336.044245910916, + "max_x": 2359.7471200798655, + "max_y": 5336.534246731249, + "center": [ + 2359.502119669699, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.502119669699, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556530", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2359.7471200798623, + "min_y": 5336.044245910916, + "max_x": 2360.2371209001954, + "max_y": 5336.534246731249, + "center": [ + 2359.992120490029, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.992120490029, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556531", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2359.747120079863, + "min_y": 5336.0442459109145, + "max_x": 2360.237120900201, + "max_y": 5336.534246731251, + "center": [ + 2359.992120490032, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.992120490032, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556532", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2360.2371209002044, + "min_y": 5336.044245910916, + "max_x": 2360.7271217205375, + "max_y": 5336.534246731249, + "center": [ + 2360.482121310371, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.482121310371, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556533", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2360.727121720535, + "min_y": 5336.044245910914, + "max_x": 2361.2171225408733, + "max_y": 5336.534246731252, + "center": [ + 2360.972122130704, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.972122130704, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556534", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2361.2171225408733, + "min_y": 5336.044245910916, + "max_x": 2361.7071233612064, + "max_y": 5336.534246731249, + "center": [ + 2361.46212295104, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2361.46212295104, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556535", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2361.7071233612046, + "min_y": 5336.044245910916, + "max_x": 2362.1971241815377, + "max_y": 5336.534246731249, + "center": [ + 2361.952123771371, + 5336.289246321083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2361.952123771371, + 5336.289246321083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556536", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5396.49321417818, + "max_x": 2375.991700442785, + "max_y": 5396.49321417818, + "center": [ + 2373.390718474974, + 5396.49321417818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.789736507163, + 5396.49321417818 + ], + [ + 2375.991700442785, + 5396.49321417818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556537", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.991700442785, + "min_y": 5395.687787706645, + "max_x": 2375.991700442785, + "max_y": 5396.49321417818, + "center": [ + 2375.991700442785, + 5396.090500942413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5396.49321417818 + ], + [ + 2375.991700442785, + 5395.687787706645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556538", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5395.687787706645, + "max_x": 2375.991700442785, + "max_y": 5395.687787706645, + "center": [ + 2373.390718474974, + 5395.687787706645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5395.687787706645 + ], + [ + 2370.789736507163, + 5395.687787706645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556539", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5395.687787706645, + "max_x": 2370.789736507163, + "max_y": 5396.49321417818, + "center": [ + 2370.789736507163, + 5396.090500942413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.789736507163, + 5395.687787706645 + ], + [ + 2370.789736507163, + 5396.49321417818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5380.778876247956, + "max_x": 2375.991700442785, + "max_y": 5380.778876247956, + "center": [ + 2373.390718474974, + 5380.778876247956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.789736507163, + 5380.778876247956 + ], + [ + 2375.991700442785, + 5380.778876247956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.991700442785, + "min_y": 5379.973449776423, + "max_x": 2375.991700442785, + "max_y": 5380.778876247956, + "center": [ + 2375.991700442785, + 5380.37616301219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5380.778876247956 + ], + [ + 2375.991700442785, + 5379.973449776423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5379.973449776423, + "max_x": 2375.991700442785, + "max_y": 5379.973449776423, + "center": [ + 2373.390718474974, + 5379.973449776423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.991700442785, + 5379.973449776423 + ], + [ + 2370.789736507163, + 5379.973449776423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.789736507163, + "min_y": 5379.973449776423, + "max_x": 2370.789736507163, + "max_y": 5380.778876247956, + "center": [ + 2370.789736507163, + 5380.37616301219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.789736507163, + 5379.973449776423 + ], + [ + 2370.789736507163, + 5380.778876247956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.334957076952, + "min_y": 5317.252531942199, + "max_x": 2387.334957076952, + "max_y": 5318.514004826138, + "center": [ + 2387.334957076952, + 5317.883268384168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.334957076952, + 5318.514004826138 + ], + [ + 2387.334957076952, + 5317.252531942199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55653F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.706169819625, + "min_y": 5317.252531942199, + "max_x": 2387.706169819625, + "max_y": 5318.514004826138, + "center": [ + 2387.706169819625, + 5317.883268384168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.706169819625, + 5318.514004826138 + ], + [ + 2387.706169819625, + 5317.252531942199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556540", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.880247704549, + "min_y": 5317.254596994167, + "max_x": 2384.880247704549, + "max_y": 5318.516069878109, + "center": [ + 2384.880247704549, + 5317.885333436137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.880247704549, + 5318.516069878109 + ], + [ + 2384.880247704549, + 5317.254596994167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556541", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.880247704549, + "min_y": 5317.254596994167, + "max_x": 2384.880247704549, + "max_y": 5318.516069878109, + "center": [ + 2384.880247704549, + 5317.885333436137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.880247704549, + 5318.516069878109 + ], + [ + 2384.880247704549, + 5317.254596994167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556542", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.251460447225, + "min_y": 5318.088368879996, + "max_x": 2385.950656172749, + "max_y": 5318.507006468634, + "center": [ + 2385.601058309987, + 5318.297687674315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.950656172749, + 5318.088368879996 + ], + [ + 2385.251460447225, + 5318.507006468634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556543", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.251460447225, + "min_y": 5317.259530299714, + "max_x": 2385.251460447225, + "max_y": 5318.507006468634, + "center": [ + 2385.251460447225, + 5317.883268384174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.251460447225, + 5318.507006468634 + ], + [ + 2385.251460447225, + 5317.259530299714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556544", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.251460447225, + "min_y": 5317.259530299714, + "max_x": 2385.950656172749, + "max_y": 5317.678167888346, + "center": [ + 2385.601058309987, + 5317.46884909403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.251460447225, + 5317.259530299714 + ], + [ + 2385.950656172749, + 5317.678167888346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556545", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.635761351423, + "min_y": 5318.088368879988, + "max_x": 2387.334957076952, + "max_y": 5318.507006468631, + "center": [ + 2386.985359214187, + 5318.297687674309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.635761351423, + 5318.088368879988 + ], + [ + 2387.334957076952, + 5318.507006468631 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556546", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.334957076952, + "min_y": 5317.259530299708, + "max_x": 2387.334957076952, + "max_y": 5318.507006468631, + "center": [ + 2387.334957076952, + 5317.883268384169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.334957076952, + 5318.507006468631 + ], + [ + 2387.334957076952, + 5317.259530299708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556547", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.635761351423, + "min_y": 5317.259530299708, + "max_x": 2387.334957076952, + "max_y": 5317.678167888346, + "center": [ + 2386.985359214187, + 5317.468849094027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.334957076952, + 5317.259530299708 + ], + [ + 2386.635761351423, + 5317.678167888346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556548", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.817036288554, + "min_y": 5332.577498993335, + "max_x": 2391.582190886239, + "max_y": 5332.577498993335, + "center": [ + 2389.6996135873965, + 5332.577498993335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.817036288554, + 5332.577498993335 + ], + [ + 2391.582190886239, + 5332.577498993335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556549", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2391.582190886239, + "min_y": 5330.804674476348, + "max_x": 2391.582190886239, + "max_y": 5332.577498993335, + "center": [ + 2391.582190886239, + 5331.6910867348415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.582190886239, + 5332.577498993335 + ], + [ + 2391.582190886239, + 5330.804674476348 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55654A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.817036288554, + "min_y": 5330.804674476348, + "max_x": 2391.582190886239, + "max_y": 5330.804674476348, + "center": [ + 2389.6996135873965, + 5330.804674476348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.582190886239, + 5330.804674476348 + ], + [ + 2387.817036288554, + 5330.804674476348 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55654B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.817036288554, + "min_y": 5330.804674476348, + "max_x": 2387.817036288554, + "max_y": 5332.577498993335, + "center": [ + 2387.817036288554, + 5331.6910867348415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.817036288554, + 5330.804674476348 + ], + [ + 2387.817036288554, + 5332.577498993335 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55654C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.876404698782, + "min_y": 5324.337854623177, + "max_x": 2380.876404698782, + "max_y": 5325.599327507113, + "center": [ + 2380.876404698782, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.876404698782, + 5325.599327507113 + ], + [ + 2380.876404698782, + 5324.337854623177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55654D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.876404698782, + "min_y": 5324.337854623177, + "max_x": 2380.876404698782, + "max_y": 5325.599327507113, + "center": [ + 2380.876404698782, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.876404698782, + 5325.599327507113 + ], + [ + 2380.876404698782, + 5324.337854623177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55654E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.079056193463, + "min_y": 5366.7973946479, + "max_x": 2387.997769005306, + "max_y": 5368.103632251848, + "center": [ + 2386.0384125993846, + 5367.450513449874 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55654F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2426.561001502545, + "min_y": 5369.137863852612, + "max_x": 2430.479714314388, + "max_y": 5370.44410145656, + "center": [ + 2428.5203579084664, + 5369.790982654586 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556550", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.765416691249, + "min_y": 5334.14860112088, + "max_x": 2378.6841295030918, + "max_y": 5335.454838724828, + "center": [ + 2376.7247730971703, + 5334.801719922854 + ] + }, + "raw_value": "10214", + "clean_value": "10214", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556551", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.765416691235, + "min_y": 5329.1496364498, + "max_x": 2378.6841295030777, + "max_y": 5330.455874053748, + "center": [ + 2376.7247730971562, + 5329.802755251774 + ] + }, + "raw_value": "10214", + "clean_value": "10214", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556552", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2391.868435460048, + "min_y": 5328.346163314589, + "max_x": 2395.787148271891, + "max_y": 5329.652400918537, + "center": [ + 2393.8277918659696, + 5328.999282116563 + ] + }, + "raw_value": "10214", + "clean_value": "10214", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556553", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5323.992168287521, + "max_x": 2387.573357824832, + "max_y": 5323.992168287521, + "center": [ + 2387.0868421189516, + 5323.992168287521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.573357824832, + 5323.992168287521 + ], + [ + 2386.600326413071, + 5323.992168287521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556554", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2387.086842118953, + "min_y": 5323.992168287521, + "max_x": 2387.086842118953, + "max_y": 5324.967474168884, + "center": [ + 2387.086842118953, + 5324.479821228202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.086842118953, + 5323.992168287521 + ], + [ + 2387.086842118953, + 5324.967474168884 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556555", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5321.848383832386, + "max_x": 2387.573357824832, + "max_y": 5321.848383832386, + "center": [ + 2387.0868421189516, + 5321.848383832386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.600326413071, + 5321.848383832386 + ], + [ + 2387.573357824832, + 5321.848383832386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556556", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2386.7730812021996, + "min_y": 5322.6429758591485, + "max_x": 2387.395926689375, + "max_y": 5323.265821346323, + "center": [ + 2387.084503945787, + 5322.954398602736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.084503945787, + 5322.954398602736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556557", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5322.137929771675, + "max_x": 2386.927981144227, + "max_y": 5322.685168705032, + "center": [ + 2386.764153778649, + 5322.4115492383535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.927981144227, + 5322.685168705032 + ], + [ + 2386.600326413071, + 5322.137929771675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556558", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5322.137929771675, + "max_x": 2387.573357824832, + "max_y": 5322.137929771675, + "center": [ + 2387.0868421189516, + 5322.137929771675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.600326413071, + 5322.137929771675 + ], + [ + 2387.573357824832, + 5322.137929771675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556559", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.244482332529, + "min_y": 5322.137929771675, + "max_x": 2387.573357824832, + "max_y": 5322.687207583047, + "center": [ + 2387.4089200786802, + 5322.4125686773605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.573357824832, + 5322.137929771675 + ], + [ + 2387.244482332529, + 5322.687207583047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55655A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5323.217684476952, + "max_x": 2386.926863732211, + "max_y": 5323.763057142858, + "center": [ + 2386.763595072641, + 5323.490370809905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.926863732211, + 5323.217684476952 + ], + [ + 2386.600326413071, + 5323.763057142858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55655B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.600326413071, + "min_y": 5323.763057142858, + "max_x": 2387.573357824832, + "max_y": 5323.763057142858, + "center": [ + 2387.0868421189516, + 5323.763057142858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.600326413071, + 5323.763057142858 + ], + [ + 2387.573357824832, + 5323.763057142858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55655C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.246820505694, + "min_y": 5323.217684476952, + "max_x": 2387.573357824832, + "max_y": 5323.763057142858, + "center": [ + 2387.410089165263, + 5323.490370809905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.573357824832, + 5323.763057142858 + ], + [ + 2387.246820505694, + 5323.217684476952 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55655D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2360.559158858902, + "min_y": 5367.114558067075, + "max_x": 2365.261614233113, + "max_y": 5368.420795671023, + "center": [ + 2362.9103865460074, + 5367.767676869049 + ] + }, + "raw_value": "10213B", + "clean_value": "10213B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55655E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2400.905864192544, + "min_y": 5378.870862341538, + "max_x": 2400.905864192544, + "max_y": 5382.135450932619, + "center": [ + 2400.905864192544, + 5380.503156637078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.905864192544, + 5378.870862341538 + ], + [ + 2400.905864192544, + 5382.135450932619 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55655F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108082, + "min_y": 5382.135450932617, + "max_x": 2401.529602277, + "max_y": 5382.135450932622, + "center": [ + 2400.9058641925412, + 5382.135450932619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.282126108082, + 5382.135450932622 + ], + [ + 2401.529602277, + 5382.135450932617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556560", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5382.506663675297, + "max_x": 2401.529602277, + "max_y": 5382.506663675297, + "center": [ + 2400.9058641925385, + 5382.506663675297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.282126108077, + 5382.506663675297 + ], + [ + 2401.529602277, + 5382.506663675297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556561", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2400.5066042648646, + "min_y": 5383.149152062486, + "max_x": 2401.305124120217, + "max_y": 5383.947671917838, + "center": [ + 2400.905864192541, + 5383.548411990162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.905864192541, + 5383.548411990162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556562", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.284191160045, + "min_y": 5384.9613730477, + "max_x": 2401.531667328967, + "max_y": 5384.9613730477, + "center": [ + 2400.907929244506, + 5384.9613730477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.284191160045, + 5384.9613730477 + ], + [ + 2401.531667328967, + 5384.9613730477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556563", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5382.506663675297, + "max_x": 2400.700763696717, + "max_y": 5383.205859400819, + "center": [ + 2400.4914449023972, + 5382.856261538058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.700763696717, + 5383.205859400819 + ], + [ + 2400.282126108077, + 5382.506663675297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556564", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5382.506663675297, + "max_x": 2401.529602277, + "max_y": 5382.506663675297, + "center": [ + 2400.9058641925385, + 5382.506663675297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.282126108077, + 5382.506663675297 + ], + [ + 2401.529602277, + 5382.506663675297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556565", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.110964688364, + "min_y": 5382.506663675297, + "max_x": 2401.529602277, + "max_y": 5383.205859400819, + "center": [ + 2401.320283482682, + 5382.856261538058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.529602277, + 5382.506663675297 + ], + [ + 2401.110964688364, + 5383.205859400819 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556566", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5383.8909645795, + "max_x": 2400.70076369672, + "max_y": 5384.590160305021, + "center": [ + 2400.4914449023986, + 5384.240562442261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.70076369672, + 5383.8909645795 + ], + [ + 2400.282126108077, + 5384.590160305021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556567", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.282126108077, + "min_y": 5384.590160305021, + "max_x": 2401.529602277, + "max_y": 5384.590160305021, + "center": [ + 2400.9058641925385, + 5384.590160305021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.282126108077, + 5384.590160305021 + ], + [ + 2401.529602277, + 5384.590160305021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556568", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.110964688361, + "min_y": 5383.8909645795, + "max_x": 2401.529602277, + "max_y": 5384.590160305021, + "center": [ + 2401.3202834826807, + 5384.240562442261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.529602277, + 5384.590160305021 + ], + [ + 2401.110964688361, + 5383.8909645795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556569", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2424.660662024722, + "min_y": 5366.021024446509, + "max_x": 2426.684102198424, + "max_y": 5368.424581491029, + "center": [ + 2425.672382111573, + 5367.2228029687685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.660662024722, + 5366.021024446509 + ], + [ + 2426.684102198424, + 5368.424581491029 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55656A", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2424.660662024722, + "min_y": 5366.021024446509, + "max_x": 2424.660662024722, + "max_y": 5388.941119408088, + "center": [ + 2424.660662024722, + 5377.481071927298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.660662024722, + 5366.021024446509 + ], + [ + 2424.660662024722, + 5388.941119408088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55656B", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2346.174709901447, + "min_y": 5390.788829367727, + "max_x": 2366.93117642943, + "max_y": 5390.788829367728, + "center": [ + 2356.5529431654386, + 5390.788829367728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.174709901447, + 5390.788829367728 + ], + [ + 2366.93117642943, + 5390.788829367727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55656C", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2376.436236295258, + "min_y": 5390.788829367727, + "max_x": 2394.599285096873, + "max_y": 5390.788829367727, + "center": [ + 2385.517760696065, + 5390.788829367727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.436236295258, + 5390.788829367727 + ], + [ + 2394.599285096873, + 5390.788829367727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55656D", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2402.316745328243, + "min_y": 5390.788829367727, + "max_x": 2417.341125808662, + "max_y": 5390.788829367727, + "center": [ + 2409.828935568453, + 5390.788829367727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.316745328243, + 5390.788829367727 + ], + [ + 2417.341125808662, + 5390.788829367727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55656E", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2419.257099850697, + "min_y": 5390.788829367727, + "max_x": 2422.812952065085, + "max_y": 5390.788829367727, + "center": [ + 2421.035025957891, + 5390.788829367727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.257099850697, + 5390.788829367727 + ], + [ + 2422.812952065085, + 5390.788829367727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55656F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2420.436876332471, + "min_y": 5396.384745787225, + "max_x": 2432.5315949167198, + "max_y": 5397.504627137619, + "center": [ + 2426.4842356245954, + 5396.944686462422 + ] + }, + "raw_value": "VG-9441-150A-F1A-n", + "clean_value": "VG-9441-150A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556570", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.152493542081, + "min_y": 5382.681453844488, + "max_x": 2377.152493542081, + "max_y": 5383.928930013418, + "center": [ + 2377.152493542081, + 5383.305191928953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.152493542081, + 5382.681453844488 + ], + [ + 2377.152493542081, + 5383.928930013418 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556571", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2377.152493542081, + "min_y": 5383.305191928954, + "max_x": 2395.969356224434, + "max_y": 5383.305191928954, + "center": [ + 2386.5609248832575, + 5383.305191928954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.152493542081, + 5383.305191928954 + ], + [ + 2395.969356224434, + 5383.305191928954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556572", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2395.969356224434, + "min_y": 5409.710471855965, + "max_x": 2398.481681427157, + "max_y": 5409.710471856007, + "center": [ + 2397.2255188257955, + 5409.710471855986 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2395.969356224434, + 5409.710471856007 + ], + [ + 2398.481681427157, + 5409.710471855965 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556573", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2392.042855815542, + "min_y": 5426.873593587002, + "max_x": 2398.481681427157, + "max_y": 5426.873593587002, + "center": [ + 2395.26226862135, + 5426.873593587002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.042855815542, + 5426.873593587002 + ], + [ + 2398.481681427157, + 5426.873593587002 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556574", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2407.620479074294, + "min_y": 5385.021260297189, + "max_x": 2418.431965278547, + "max_y": 5385.021260297202, + "center": [ + 2413.0262221764206, + 5385.021260297195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.620479074294, + 5385.021260297202 + ], + [ + 2418.431965278547, + 5385.021260297189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556575", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2418.431965278547, + "min_y": 5385.021260297194, + "max_x": 2418.431965278547, + "max_y": 5395.918682015736, + "center": [ + 2418.431965278547, + 5390.469971156464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.431965278547, + 5385.021260297194 + ], + [ + 2418.431965278547, + 5395.918682015736 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556576", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2400.907929244506, + "min_y": 5384.9613730477, + "max_x": 2400.907929244506, + "max_y": 5402.440640257752, + "center": [ + 2400.907929244506, + 5393.701006652726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.907929244506, + 5384.9613730477 + ], + [ + 2400.907929244506, + 5402.440640257752 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556577", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2392.070532386383, + "min_y": 5394.813464911657, + "max_x": 2392.070532386383, + "max_y": 5426.873593587002, + "center": [ + 2392.070532386383, + 5410.84352924933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.070532386383, + 5394.813464911657 + ], + [ + 2392.070532386383, + 5426.873593587002 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556578", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2395.969356224434, + "min_y": 5383.305191928954, + "max_x": 2395.969356224434, + "max_y": 5409.710471855814, + "center": [ + 2395.969356224434, + 5396.507831892384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2395.969356224434, + 5383.305191928954 + ], + [ + 2395.969356224434, + 5409.710471855814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556579", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2421.5276511199127, + "min_y": 5365.496238526991, + "max_x": 2422.577222958943, + "max_y": 5366.545810366021, + "center": [ + 2422.052437039428, + 5366.021024446506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.052437039428, + 5366.021024446506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55657A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2418.431965278547, + "min_y": 5395.918682015735, + "max_x": 2454.471419770952, + "max_y": 5395.918682015735, + "center": [ + 2436.4516925247494, + 5395.918682015735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.431965278547, + 5395.918682015735 + ], + [ + 2454.471419770952, + 5395.918682015735 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55657B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2400.907929244506, + "min_y": 5402.440640257753, + "max_x": 2422.105063024441, + "max_y": 5402.440640257753, + "center": [ + 2411.5064961344733, + 5402.440640257753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.907929244506, + 5402.440640257753 + ], + [ + 2422.105063024441, + 5402.440640257753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55657C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2425.922454583661, + "min_y": 5401.733513037542, + "max_x": 2427.71381679175, + "max_y": 5403.2263148776165, + "center": [ + 2426.8181356877058, + 5402.479913957579 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55657D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2424.090102249468, + "min_y": 5404.42567948278, + "max_x": 2438.458753192502, + "max_y": 5404.42567948278, + "center": [ + 2431.274427720985, + 5404.42567948278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.458753192502, + 5404.42567948278 + ], + [ + 2424.090102249468, + 5404.42567948278 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55657E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2424.090102249457, + "min_y": 5400.455601032726, + "max_x": 2438.458753192502, + "max_y": 5400.455601032726, + "center": [ + 2431.2744277209795, + 5400.455601032726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.090102249457, + 5400.455601032726 + ], + [ + 2438.458753192502, + 5400.455601032726 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55657F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.458753192502, + "min_y": 5400.455601032726, + "max_x": 2438.458753192502, + "max_y": 5404.42567948278, + "center": [ + 2438.458753192502, + 5402.440640257753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.458753192502, + 5400.455601032726 + ], + [ + 2438.458753192502, + 5404.42567948278 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556580", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2422.105063024441, + "min_y": 5402.440640257753, + "max_x": 2424.090102249468, + "max_y": 5404.42567948278, + "center": [ + 2423.0975826369545, + 5403.4331598702665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.090102249468, + 5404.42567948278 + ], + [ + 2422.105063024441, + 5402.440640257753 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556581", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2422.105063024441, + "min_y": 5400.455601032726, + "max_x": 2424.090102249468, + "max_y": 5402.440640257753, + "center": [ + 2423.0975826369545, + 5401.44812064524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.105063024441, + 5402.440640257753 + ], + [ + 2424.090102249468, + 5400.455601032726 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556582", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2427.986030680232, + "min_y": 5425.903905056376, + "max_x": 2430.673073992366, + "max_y": 5427.39670689645, + "center": [ + 2429.329552336299, + 5426.650305976413 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556583", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2421.730039294039, + "min_y": 5424.935212384411, + "max_x": 2436.098690237074, + "max_y": 5424.935212384411, + "center": [ + 2428.9143647655565, + 5424.935212384411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.730039294039, + 5424.935212384411 + ], + [ + 2436.098690237074, + 5424.935212384411 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556584", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2421.730039294039, + "min_y": 5428.905290834467, + "max_x": 2436.098690237085, + "max_y": 5428.905290834467, + "center": [ + 2428.914364765562, + 5428.905290834467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.098690237085, + 5428.905290834467 + ], + [ + 2421.730039294039, + 5428.905290834467 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556585", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.730039294039, + "min_y": 5424.935212384411, + "max_x": 2421.730039294039, + "max_y": 5428.905290834467, + "center": [ + 2421.730039294039, + 5426.920251609439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.730039294039, + 5428.905290834467 + ], + [ + 2421.730039294039, + 5424.935212384411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556586", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2436.098690237078, + "min_y": 5424.935212384415, + "max_x": 2438.083729462105, + "max_y": 5426.920251609444, + "center": [ + 2437.0912098495915, + 5425.92773199693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.098690237078, + 5424.935212384415 + ], + [ + 2438.083729462105, + 5426.920251609444 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556587", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2436.098690237078, + "min_y": 5426.920251609444, + "max_x": 2438.083729462105, + "max_y": 5428.905290834471, + "center": [ + 2437.0912098495915, + 5427.912771221958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.083729462105, + 5426.920251609444 + ], + [ + 2436.098690237078, + 5428.905290834471 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556588", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2428.149294578973, + "min_y": 5408.897062990123, + "max_x": 2430.8363378911067, + "max_y": 5410.389864830197, + "center": [ + 2429.4928162350398, + 5409.643463910161 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556589", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2423.715078518994, + "min_y": 5411.695511080752, + "max_x": 2438.083729462028, + "max_y": 5411.695511080752, + "center": [ + 2430.899403990511, + 5411.695511080752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.083729462028, + 5411.695511080752 + ], + [ + 2423.715078518994, + 5411.695511080752 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55658A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2423.715078518983, + "min_y": 5407.725432630696, + "max_x": 2438.083729462028, + "max_y": 5407.725432630696, + "center": [ + 2430.8994039905056, + 5407.725432630696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.715078518983, + 5407.725432630696 + ], + [ + 2438.083729462028, + 5407.725432630696 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55658B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.083729462028, + "min_y": 5407.725432630696, + "max_x": 2438.083729462028, + "max_y": 5411.695511080752, + "center": [ + 2438.083729462028, + 5409.710471855724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.083729462028, + 5407.725432630696 + ], + [ + 2438.083729462028, + 5411.695511080752 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55658C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2421.730039293967, + "min_y": 5409.710471855724, + "max_x": 2423.715078518994, + "max_y": 5411.695511080752, + "center": [ + 2422.72255890648, + 5410.702991468238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.715078518994, + 5411.695511080752 + ], + [ + 2421.730039293967, + 5409.710471855724 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55658D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2421.730039293967, + "min_y": 5407.725432630696, + "max_x": 2423.715078518994, + "max_y": 5409.710471855724, + "center": [ + 2422.72255890648, + 5408.71795224321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.730039293967, + 5409.710471855724 + ], + [ + 2423.715078518994, + 5407.725432630696 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55658E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.274130108859, + "min_y": 5313.847206067997, + "max_x": 2258.092494421509, + "max_y": 5313.847206068, + "center": [ + 2255.183312265184, + 5313.847206067998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.092494421509, + 5313.847206067997 + ], + [ + 2252.274130108859, + 5313.847206068 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55658F", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2206.776062126506, + "min_y": 5292.030910432563, + "max_x": 2212.0216179805557, + "max_y": 5297.276466286613, + "center": [ + 2209.398840053531, + 5294.653688359588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.398840053531, + 5294.653688359588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556590", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2208.484404626577, + "min_y": 5295.008054797358, + "max_x": 2210.0518897513143, + "max_y": 5296.314292401306, + "center": [ + 2209.2681471889455, + 5295.661173599332 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556591", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2207.224211898168, + "min_y": 5292.814182379231, + "max_x": 2211.142924710011, + "max_y": 5294.120419983179, + "center": [ + 2209.1835683040895, + 5293.467301181205 + ] + }, + "raw_value": "10203", + "clean_value": "10203", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556592", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.53050627246, + "min_y": 5292.0309156621715, + "max_x": 2206.7760621265097, + "max_y": 5297.276471516221, + "center": [ + 2204.153284199485, + 5294.653693589196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.153284199485, + 5294.653693589196 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556593", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.482688481316, + "min_y": 5297.324294632344, + "max_x": 2204.153289524459, + "max_y": 5297.324299957319, + "center": [ + 2202.8179890028878, + 5297.324297294832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.153289524459, + 5297.324294632344 + ], + [ + 2201.482688481316, + 5297.324299957319 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556594", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.482683156337, + "min_y": 5294.653698914178, + "max_x": 2201.482688481316, + "max_y": 5297.324299957319, + "center": [ + 2201.482685818826, + 5295.988999435749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.482683156337, + 5294.653698914178 + ], + [ + 2201.482688481316, + 5297.324299957319 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556595", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2204.153289524459, + "min_y": 5297.324289307362, + "max_x": 2206.823890567611, + "max_y": 5297.324294632344, + "center": [ + 2205.488590046035, + 5297.324291969853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.153289524459, + 5297.324294632344 + ], + [ + 2206.823890567611, + 5297.324289307362 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556596", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2206.823885242634, + "min_y": 5294.653688264222, + "max_x": 2206.823890567611, + "max_y": 5297.324289307362, + "center": [ + 2206.8238879051223, + 5295.988988785792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.823885242634, + 5294.653688264222 + ], + [ + 2206.823890567611, + 5297.324289307362 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556597", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.482677831363, + "min_y": 5291.983092546034, + "max_x": 2204.153278874507, + "max_y": 5291.983097871021, + "center": [ + 2202.817978352935, + 5291.983095208527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.153278874507, + 5291.983092546034 + ], + [ + 2201.482677831363, + 5291.983097871021 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556598", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.482677831363, + "min_y": 5291.983097871021, + "max_x": 2201.482683156337, + "max_y": 5294.65369891417, + "center": [ + 2201.4826804938502, + 5293.318398392596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.482683156337, + 5294.65369891417 + ], + [ + 2201.482677831363, + 5291.983097871021 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556599", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2204.153278874507, + "min_y": 5291.983087221074, + "max_x": 2206.823879917656, + "max_y": 5291.983092546034, + "center": [ + 2205.4885793960816, + 5291.9830898835535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.153278874507, + 5291.983092546034 + ], + [ + 2206.823879917656, + 5291.983087221074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55659A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2206.823879917656, + "min_y": 5291.983087221074, + "max_x": 2206.823885242634, + "max_y": 5294.653688264209, + "center": [ + 2206.823882580145, + 5293.318387742642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.823885242634, + 5294.653688264209 + ], + [ + 2206.823879917656, + 5291.983087221074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55659B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2203.509311009682, + "min_y": 5294.993038292102, + "max_x": 2205.076796134419, + "max_y": 5296.29927589605, + "center": [ + 2204.2930535720507, + 5295.6461570940755 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55659C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2201.530506272463, + "min_y": 5294.653688359582, + "max_x": 2206.776062126504, + "max_y": 5294.65369881882, + "center": [ + 2204.153284199483, + 5294.653693589201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2206.776062126504, + 5294.653688359582 + ], + [ + 2201.530506272463, + 5294.65369881882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55659D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2202.036045538112, + "min_y": 5292.814182379231, + "max_x": 2205.954758349955, + "max_y": 5294.120419983179, + "center": [ + 2203.9954019440333, + 5293.467301181205 + ] + }, + "raw_value": "10203", + "clean_value": "10203", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55659E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006029, + "min_y": 5365.806944377078, + "max_x": 2261.919862426123, + "max_y": 5365.806944377078, + "center": [ + 2261.086984216076, + 5365.806944377078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5365.806944377078 + ], + [ + 2260.254106006029, + 5365.806944377078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55659F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.033640078657, + "min_y": 5365.806944377078, + "max_x": 2259.926940154048, + "max_y": 5365.806944377078, + "center": [ + 2258.9802901163525, + 5365.806944377078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154048, + 5365.806944377078 + ], + [ + 2258.033640078657, + 5365.806944377078 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5565A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.926940154048, + "min_y": 5365.25721701496, + "max_x": 2259.926940154048, + "max_y": 5366.356671739199, + "center": [ + 2259.926940154048, + 5365.806944377079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154048, + 5365.25721701496 + ], + [ + 2259.926940154048, + 5366.356671739199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006029, + "min_y": 5365.25721701496, + "max_x": 2260.254106006029, + "max_y": 5366.356671739199, + "center": [ + 2260.254106006029, + 5365.806944377079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.254106006029, + 5365.25721701496 + ], + [ + 2260.254106006029, + 5366.356671739199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5339.522234242739, + "max_x": 2261.919862426125, + "max_y": 5339.522234242739, + "center": [ + 2261.0869842160782, + 5339.522234242739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426125, + 5339.522234242739 + ], + [ + 2260.254106006032, + 5339.522234242739 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.03364007866, + "min_y": 5339.522234242739, + "max_x": 2259.926940154051, + "max_y": 5339.522234242739, + "center": [ + 2258.9802901163557, + 5339.522234242739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5339.522234242739 + ], + [ + 2258.03364007866, + 5339.522234242739 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5565A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.926940154051, + "min_y": 5338.972506880621, + "max_x": 2259.926940154051, + "max_y": 5340.071961604864, + "center": [ + 2259.926940154051, + 5339.522234242742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.926940154051, + 5338.972506880621 + ], + [ + 2259.926940154051, + 5340.071961604864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.254106006032, + "min_y": 5338.972506880621, + "max_x": 2260.254106006032, + "max_y": 5340.071961604864, + "center": [ + 2260.254106006032, + 5339.522234242742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.254106006032, + 5338.972506880621 + ], + [ + 2260.254106006032, + 5340.071961604864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565A6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.148987575583, + "min_y": 5340.157248770371, + "max_x": 2255.71647270032, + "max_y": 5341.463486374319, + "center": [ + 2254.9327301379517, + 5340.810367572345 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5565A7", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.3095112890055, + "min_y": 5336.660169847911, + "max_x": 2258.0336400786605, + "max_y": 5342.384298637567, + "center": [ + 2255.171575683833, + 5339.522234242739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2255.171575683833, + 5339.522234242739 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5565A8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.455221930484, + "min_y": 5337.838465291263, + "max_x": 2257.1576773046954, + "max_y": 5339.144702895211, + "center": [ + 2254.80644961759, + 5338.491584093237 + ] + }, + "raw_value": "10211C", + "clean_value": "10211C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5565A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5302.076111069538, + "max_x": 2261.919862426123, + "max_y": 5302.076111069538, + "center": [ + 2261.0884327530525, + 5302.076111069538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.919862426123, + 5302.076111069538 + ], + [ + 2260.257003079982, + 5302.076111069538 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.040398974133, + "min_y": 5302.076111069538, + "max_x": 2259.930406232963, + "max_y": 5302.076111069538, + "center": [ + 2258.985402603548, + 5302.076111069538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.930406232963, + 5302.076111069538 + ], + [ + 2258.040398974133, + 5302.076111069538 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5565AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.930406232963, + "min_y": 5301.527339790073, + "max_x": 2259.930406232963, + "max_y": 5302.624882349007, + "center": [ + 2259.930406232963, + 5302.07611106954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.930406232963, + 5301.527339790073 + ], + [ + 2259.930406232963, + 5302.624882349007 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.257003079982, + "min_y": 5301.527339790073, + "max_x": 2260.257003079982, + "max_y": 5302.624882349007, + "center": [ + 2260.257003079982, + 5302.07611106954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.257003079982, + 5301.527339790073 + ], + [ + 2260.257003079982, + 5302.624882349007 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565AD", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2300.096606707727, + "min_y": 5231.206763932313, + "max_x": 2305.862875573009, + "max_y": 5231.206763932313, + "center": [ + 2302.979741140368, + 5231.206763932313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.862875573009, + 5231.206763932313 + ], + [ + 2300.096606707727, + 5231.206763932313 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5565AE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2179.746122834943, + "min_y": 5237.129336467393, + "max_x": 2183.664835646786, + "max_y": 5238.435574071341, + "center": [ + 2181.7054792408644, + 5237.782455269367 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5565AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5274.046745795346, + "max_x": 2238.501112822339, + "max_y": 5278.820073302767, + "center": [ + 2238.5011128223377, + 5276.433409549057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.501112822339, + 5274.046745795346 + ], + [ + 2238.501112822337, + 5278.820073302767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2232.858707314562, + "min_y": 5274.046745795346, + "max_x": 2232.858707314562, + "max_y": 5278.859164695788, + "center": [ + 2232.858707314562, + 5276.452955245568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2232.858707314562, + 5274.046745795346 + ], + [ + 2232.858707314562, + 5278.859164695788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822337, + "min_y": 5276.663423340696, + "max_x": 2240.430845606274, + "max_y": 5276.663423340696, + "center": [ + 2239.4659792143057, + 5276.663423340696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2238.501112822337, + 5276.663423340696 + ], + [ + 2240.430845606274, + 5276.663423340696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.430845606274, + "min_y": 5276.114652061228, + "max_x": 2240.430845606274, + "max_y": 5277.212194620162, + "center": [ + 2240.430845606274, + 5276.663423340695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.430845606274, + 5276.114652061228 + ], + [ + 2240.430845606274, + 5277.212194620162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.757442453295, + "min_y": 5276.114652061228, + "max_x": 2240.757442453295, + "max_y": 5277.212194620162, + "center": [ + 2240.757442453295, + 5276.663423340695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.757442453295, + 5276.114652061228 + ], + [ + 2240.757442453295, + 5277.212194620162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.430845606274, + "min_y": 5276.114652061228, + "max_x": 2240.430845606274, + "max_y": 5277.212194620162, + "center": [ + 2240.430845606274, + 5276.663423340695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.430845606274, + 5276.114652061228 + ], + [ + 2240.430845606274, + 5277.212194620162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2314.1513898649077, + "min_y": 5220.169892121446, + "max_x": 2314.8539359713864, + "max_y": 5220.872438227924, + "center": [ + 2314.502662918147, + 5220.521165174685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.502662918147, + 5220.521165174685 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565B7", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 2288.235674116064, + "min_y": 5236.858168287445, + "max_x": 2298.041321025084, + "max_y": 5236.858168287445, + "center": [ + 2293.138497570574, + 5236.858168287445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.235674116064, + 5236.858168287445 + ], + [ + 2298.041321025084, + 5236.858168287445 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565B8", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 2292.192468264016, + "min_y": 5232.385529955402, + "max_x": 2292.192468264016, + "max_y": 5237.73620535476, + "center": [ + 2292.192468264016, + 5235.060867655081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.192468264016, + 5232.385529955402 + ], + [ + 2292.192468264016, + 5237.73620535476 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565B9", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2288.631467026877, + "min_y": 5237.374415557559, + "max_x": 2290.647253457585, + "max_y": 5238.494296907952, + "center": [ + 2289.6393602422313, + 5237.934356232756 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565BA", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2293.567796838386, + "min_y": 5237.374415557559, + "max_x": 2296.2555120793304, + "max_y": 5238.494296907952, + "center": [ + 2294.9116544588583, + 5237.934356232756 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565BD", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 2306.20764870397, + "min_y": 5405.664290237842, + "max_x": 2314.73251107095, + "max_y": 5405.664290237842, + "center": [ + 2310.47007988746, + 5405.664290237842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.20764870397, + 5405.664290237842 + ], + [ + 2314.73251107095, + 5405.664290237842 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565BE", + "entity_type": "LINE", + "layer": "DM", + "bbox": { + "min_x": 2310.164442851924, + "min_y": 5398.251808311234, + "max_x": 2310.164442851924, + "max_y": 5406.542327305158, + "center": [ + 2310.164442851924, + 5402.397067808196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.164442851924, + 5398.251808311234 + ], + [ + 2310.164442851924, + 5406.542327305158 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565BF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2306.069375577897, + "min_y": 5406.180537507956, + "max_x": 2308.7570908188413, + "max_y": 5407.300418858349, + "center": [ + 2307.413233198369, + 5406.740478183152 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565C0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2311.539771426295, + "min_y": 5406.180537507956, + "max_x": 2314.227486667239, + "max_y": 5407.300418858349, + "center": [ + 2312.883629046767, + 5406.740478183152 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565C3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2404.933178819299, + "min_y": 5410.176535627385, + "max_x": 2418.37175502402, + "max_y": 5411.296416977779, + "center": [ + 2411.6524669216597, + 5410.736476302582 + ] + }, + "raw_value": "CWS-10614-150A-S2A-n", + "clean_value": "CWS-10614-150A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565C4", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2404.933178819226, + "min_y": 5427.339657358491, + "max_x": 2418.371755023947, + "max_y": 5428.459538708885, + "center": [ + 2411.652466921587, + 5427.899598033688 + ] + }, + "raw_value": "CWR-10624-150A-S2A-n", + "clean_value": "CWR-10624-150A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.729805105303, + "min_y": 5377.273938778904, + "max_x": 2378.611903963715, + "max_y": 5378.156037637318, + "center": [ + 2378.170854534509, + 5377.714988208111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.611903963715, + 5377.273938778904 + ], + [ + 2377.729805105303, + 5378.156037637318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565C6", + "entity_type": "LINE", + "layer": "C", + "bbox": { + "min_x": 2376.145949238689, + "min_y": 5375.088778276526, + "max_x": 2376.145949238689, + "max_y": 5375.690082912302, + "center": [ + 2376.145949238689, + 5375.389430594414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.145949238689, + 5375.690082912302 + ], + [ + 2376.145949238689, + 5375.088778276526 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2372.766980390121, + "min_y": 5348.312220082923, + "max_x": 2374.014456559044, + "max_y": 5348.312220082923, + "center": [ + 2373.390718474582, + 5348.312220082923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.014456559044, + 5348.312220082923 + ], + [ + 2372.766980390121, + 5348.312220082923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5364.625544874937, + "max_x": 2422.676175123893, + "max_y": 5364.625544874937, + "center": [ + 2422.0524370394314, + 5364.625544874937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.42869895497, + 5364.625544874937 + ], + [ + 2422.676175123893, + 5364.625544874937 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.42869895497, + "min_y": 5367.405450808187, + "max_x": 2422.676175123893, + "max_y": 5367.405450808187, + "center": [ + 2422.0524370394314, + 5367.405450808187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.42869895497, + 5367.405450808187 + ], + [ + 2422.676175123893, + 5367.405450808187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.932022528129, + "min_y": 5293.23970595366, + "max_x": 2309.932022528129, + "max_y": 5294.37981351465, + "center": [ + 2309.932022528129, + 5293.809759734155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.932022528129, + 5293.23970595366 + ], + [ + 2309.932022528129, + 5294.37981351465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2310.8254411953253, + "min_y": 5293.457874684469, + "max_x": 2311.5292112946986, + "max_y": 5294.161644783842, + "center": [ + 2311.177326245012, + 5293.809759734156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.177326245012, + 5293.809759734156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.422629961889, + "min_y": 5293.260032372034, + "max_x": 2312.422629961889, + "max_y": 5294.359487096279, + "center": [ + 2312.422629961889, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.422629961889, + 5294.359487096279 + ], + [ + 2312.422629961889, + 5293.260032372034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.932022528129, + "min_y": 5293.260032372034, + "max_x": 2309.932022528129, + "max_y": 5294.359487096279, + "center": [ + 2309.932022528129, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.932022528129, + 5294.359487096279 + ], + [ + 2309.932022528129, + 5293.260032372034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.259188380113, + "min_y": 5293.253864416753, + "max_x": 2310.259188380113, + "max_y": 5294.36565505156, + "center": [ + 2310.259188380113, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.259188380113, + 5293.253864416753 + ], + [ + 2310.259188380113, + 5294.36565505156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.932022528129, + "min_y": 5293.253864416753, + "max_x": 2309.932022528129, + "max_y": 5294.36565505156, + "center": [ + 2309.932022528129, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.932022528129, + 5293.253864416753 + ], + [ + 2309.932022528129, + 5294.36565505156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.422629961889, + "min_y": 5293.252044397105, + "max_x": 2312.422629961889, + "max_y": 5294.363835031909, + "center": [ + 2312.422629961889, + 5293.807939714507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.422629961889, + 5293.252044397105 + ], + [ + 2312.422629961889, + 5294.363835031909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.422629961889, + "min_y": 5293.252044397105, + "max_x": 2312.422629961889, + "max_y": 5294.363835031909, + "center": [ + 2312.422629961889, + 5293.807939714507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.422629961889, + 5293.252044397105 + ], + [ + 2312.422629961889, + 5294.363835031909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.479232663771, + "min_y": 5293.260032372034, + "max_x": 2312.095464109911, + "max_y": 5293.62899579277, + "center": [ + 2311.787348386841, + 5293.444514082403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.479232663771, + 5293.62899579277 + ], + [ + 2312.095464109911, + 5293.260032372034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.095464109911, + "min_y": 5293.260032372034, + "max_x": 2312.095464109911, + "max_y": 5294.359487096279, + "center": [ + 2312.095464109911, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.095464109911, + 5293.260032372034 + ], + [ + 2312.095464109911, + 5294.359487096279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.479232663771, + "min_y": 5293.990523675539, + "max_x": 2312.095464109911, + "max_y": 5294.359487096279, + "center": [ + 2311.787348386841, + 5294.175005385909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.095464109911, + 5294.359487096279 + ], + [ + 2311.479232663771, + 5293.990523675539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.259188380113, + "min_y": 5293.260032372034, + "max_x": 2310.875419826248, + "max_y": 5293.628995792776, + "center": [ + 2310.5673041031805, + 5293.444514082405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.875419826248, + 5293.628995792776 + ], + [ + 2310.259188380113, + 5293.260032372034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.259188380113, + "min_y": 5293.260032372034, + "max_x": 2310.259188380113, + "max_y": 5294.359487096279, + "center": [ + 2310.259188380113, + 5293.809759734157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.259188380113, + 5293.260032372034 + ], + [ + 2310.259188380113, + 5294.359487096279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.259188380113, + "min_y": 5293.990523675539, + "max_x": 2310.875419826248, + "max_y": 5294.359487096279, + "center": [ + 2310.5673041031805, + 5294.175005385909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.259188380113, + 5294.359487096279 + ], + [ + 2310.875419826248, + 5293.990523675539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565D8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2296.229798809524, + "min_y": 5278.621620361667, + "max_x": 2296.229798809524, + "max_y": 5293.807939714509, + "center": [ + 2296.229798809524, + 5286.214780038088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.229798809524, + 5293.807939714509 + ], + [ + 2296.229798809524, + 5278.621620361667 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565D9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2312.422629961889, + "min_y": 5293.807939714507, + "max_x": 2316.351432035456, + "max_y": 5293.807939714508, + "center": [ + 2314.3870309986723, + 5293.8079397145075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.351432035456, + 5293.807939714507 + ], + [ + 2312.422629961889, + 5293.807939714508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565DA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2296.229798809524, + "min_y": 5293.807939714508, + "max_x": 2309.932022528129, + "max_y": 5293.807939714509, + "center": [ + 2303.0809106688266, + 5293.807939714508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.932022528129, + 5293.807939714508 + ], + [ + 2296.229798809524, + 5293.807939714509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.218555033563, + "min_y": 5338.487617613632, + "max_x": 2353.489094200865, + "max_y": 5338.487617613632, + "center": [ + 2352.853824617214, + 5338.487617613632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.489094200865, + 5338.487617613632 + ], + [ + 2352.218555033563, + 5338.487617613632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.350994497909, + "min_y": 5230.680891850241, + "max_x": 2194.400877772205, + "max_y": 5232.852227277213, + "center": [ + 2193.375936135057, + 5231.766559563727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.350994497909, + 5230.680891850241 + ], + [ + 2194.400877772205, + 5232.852227277213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5565DD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2437.288312399191, + "min_y": 5363.5932411350495, + "max_x": 2438.0868322545434, + "max_y": 5364.391760990402, + "center": [ + 2437.687572326867, + 5363.992501062726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326867, + 5363.992501062726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5365.405462120268, + "max_x": 2438.311310411329, + "max_y": 5365.405462120268, + "center": [ + 2437.6875723268677, + 5365.405462120268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.311310411329, + 5365.405462120268 + ], + [ + 2437.063834242406, + 5365.405462120268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5362.579540005188, + "max_x": 2438.311310411329, + "max_y": 5362.579540005188, + "center": [ + 2437.6875723268677, + 5362.579540005188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.311310411329, + 5362.579540005188 + ], + [ + 2437.063834242406, + 5362.579540005188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5364.335053652066, + "max_x": 2437.482471831044, + "max_y": 5365.034249377592, + "center": [ + 2437.273153036725, + 5364.684651514828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.482471831044, + 5364.335053652066 + ], + [ + 2437.063834242406, + 5365.034249377592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5365.034249377592, + "max_x": 2438.311310411329, + "max_y": 5365.034249377592, + "center": [ + 2437.6875723268677, + 5365.034249377592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.063834242406, + 5365.034249377592 + ], + [ + 2438.311310411329, + 5365.034249377592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.89267282269, + "min_y": 5364.335053652066, + "max_x": 2438.311310411329, + "max_y": 5365.034249377592, + "center": [ + 2438.10199161701, + 5364.684651514828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.311310411329, + 5365.034249377592 + ], + [ + 2437.89267282269, + 5364.335053652066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5362.950752747866, + "max_x": 2437.482471831046, + "max_y": 5363.64994847339, + "center": [ + 2437.273153036726, + 5363.300350610629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.482471831046, + 5363.64994847339 + ], + [ + 2437.063834242406, + 5362.950752747866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.063834242406, + "min_y": 5362.950752747866, + "max_x": 2438.311310411329, + "max_y": 5362.950752747866, + "center": [ + 2437.6875723268677, + 5362.950752747866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.063834242406, + 5362.950752747866 + ], + [ + 2438.311310411329, + 5362.950752747866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.892672822688, + "min_y": 5362.950752747866, + "max_x": 2438.311310411329, + "max_y": 5363.64994847339, + "center": [ + 2438.1019916170085, + 5363.300350610629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.311310411329, + 5362.950752747866 + ], + [ + 2437.892672822688, + 5363.64994847339 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2157.188471107805, + "min_y": 5238.143715254698, + "max_x": 2157.188471107805, + "max_y": 5239.151248693755, + "center": [ + 2157.188471107805, + 5238.647481974227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.188471107805, + 5238.143715254698 + ], + [ + 2157.188471107805, + 5239.151248693755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5238.143715254698, + "max_x": 2157.188471107805, + "max_y": 5238.481831027898, + "center": [ + 2156.906115784528, + 5238.312773141298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.623760461251, + 5238.481831027898 + ], + [ + 2157.188471107805, + 5238.143715254698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5238.143715254698, + "max_x": 2155.505719503489, + "max_y": 5239.151248693755, + "center": [ + 2155.505719503489, + 5238.647481974227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.505719503489, + 5238.143715254698 + ], + [ + 2155.505719503489, + 5239.151248693755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5238.143715254698, + "max_x": 2156.070430150041, + "max_y": 5238.481831027898, + "center": [ + 2155.7880748267653, + 5238.312773141298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.070430150041, + 5238.481831027898 + ], + [ + 2155.505719503489, + 5238.143715254698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565EA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2156.0246300449658, + "min_y": 5238.325016713544, + "max_x": 2156.6695605663303, + "max_y": 5238.969947234908, + "center": [ + 2156.347095305648, + 5238.647481974226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.347095305648, + 5238.647481974226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5238.144022862869, + "max_x": 2157.46681868606, + "max_y": 5239.151556301918, + "center": [ + 2157.46681868606, + 5238.647789582394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.46681868606, + 5239.151556301918 + ], + [ + 2157.46681868606, + 5238.144022862869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.199208738456, + "min_y": 5238.144022862869, + "max_x": 2155.199208738456, + "max_y": 5239.151556301918, + "center": [ + 2155.199208738456, + 5238.647789582394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.199208738456, + 5239.151556301918 + ], + [ + 2155.199208738456, + 5238.144022862869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5238.813132920558, + "max_x": 2157.188471107805, + "max_y": 5239.151248693755, + "center": [ + 2156.906115784528, + 5238.982190807157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.188471107805, + 5239.151248693755 + ], + [ + 2156.623760461251, + 5238.813132920558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5238.813132920558, + "max_x": 2156.070430150041, + "max_y": 5239.151248693755, + "center": [ + 2155.7880748267653, + 5238.982190807157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.505719503489, + 5239.151248693755 + ], + [ + 2156.070430150041, + 5238.813132920558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565EF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2154.285591606377, + "min_y": 5219.33773295937, + "max_x": 2155.199208738456, + "max_y": 5219.337732959372, + "center": [ + 2154.7424001724166, + 5219.337732959371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.285591606377, + 5219.33773295937 + ], + [ + 2155.199208738456, + 5219.337732959372 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2157.188471107805, + "min_y": 5218.827786973129, + "max_x": 2157.188471107805, + "max_y": 5219.835320412186, + "center": [ + 2157.188471107805, + 5219.3315536926575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.188471107805, + 5218.827786973129 + ], + [ + 2157.188471107805, + 5219.835320412186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5218.827786973129, + "max_x": 2157.188471107805, + "max_y": 5219.165902746329, + "center": [ + 2156.906115784528, + 5218.996844859729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.623760461251, + 5219.165902746329 + ], + [ + 2157.188471107805, + 5218.827786973129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5218.827786973129, + "max_x": 2155.505719503489, + "max_y": 5219.835320412186, + "center": [ + 2155.505719503489, + 5219.3315536926575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.505719503489, + 5218.827786973129 + ], + [ + 2155.505719503489, + 5219.835320412186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5218.827786973129, + "max_x": 2156.070430150041, + "max_y": 5219.165902746329, + "center": [ + 2155.7880748267653, + 5218.996844859729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.070430150041, + 5219.165902746329 + ], + [ + 2155.505719503489, + 5218.827786973129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2156.0246300449658, + "min_y": 5219.009088431976, + "max_x": 2156.6695605663303, + "max_y": 5219.654018953341, + "center": [ + 2156.347095305648, + 5219.331553692658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.347095305648, + 5219.331553692658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2157.46681868606, + "min_y": 5218.828094581301, + "max_x": 2157.46681868606, + "max_y": 5219.83562802035, + "center": [ + 2157.46681868606, + 5219.331861300825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.46681868606, + 5219.83562802035 + ], + [ + 2157.46681868606, + 5218.828094581301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.199208738456, + "min_y": 5218.828094581301, + "max_x": 2155.199208738456, + "max_y": 5219.83562802035, + "center": [ + 2155.199208738456, + 5219.331861300825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.199208738456, + 5219.83562802035 + ], + [ + 2155.199208738456, + 5218.828094581301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2156.623760461251, + "min_y": 5219.497204638988, + "max_x": 2157.188471107805, + "max_y": 5219.835320412186, + "center": [ + 2156.906115784528, + 5219.666262525587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2157.188471107805, + 5219.835320412186 + ], + [ + 2156.623760461251, + 5219.497204638988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2155.505719503489, + "min_y": 5219.497204638988, + "max_x": 2156.070430150041, + "max_y": 5219.835320412186, + "center": [ + 2155.7880748267653, + 5219.666262525587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2155.505719503489, + 5219.835320412186 + ], + [ + 2156.070430150041, + 5219.497204638988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565F9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2168.35741628145, + "min_y": 5219.325998144008, + "max_x": 2169.770863200061, + "max_y": 5219.325998144008, + "center": [ + 2169.0641397407553, + 5219.325998144008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.35741628145, + 5219.325998144008 + ], + [ + 2169.770863200061, + 5219.325998144008 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5565FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.079068703194, + "min_y": 5218.821922750582, + "max_x": 2168.079068703194, + "max_y": 5219.829456189639, + "center": [ + 2168.079068703194, + 5219.325689470111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.079068703194, + 5218.821922750582 + ], + [ + 2168.079068703194, + 5219.829456189639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.51435805664, + "min_y": 5218.821922750582, + "max_x": 2168.079068703194, + "max_y": 5219.160038523782, + "center": [ + 2167.796713379917, + 5218.990980637182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.51435805664, + 5219.160038523782 + ], + [ + 2168.079068703194, + 5218.821922750582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5218.821922750582, + "max_x": 2166.396317098879, + "max_y": 5219.829456189639, + "center": [ + 2166.396317098879, + 5219.325689470111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.396317098879, + 5218.821922750582 + ], + [ + 2166.396317098879, + 5219.829456189639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5218.821922750582, + "max_x": 2166.96102774543, + "max_y": 5219.160038523782, + "center": [ + 2166.6786724221547, + 5218.990980637182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.96102774543, + 5219.160038523782 + ], + [ + 2166.396317098879, + 5218.821922750582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565FE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2166.9152276403556, + "min_y": 5219.003224209428, + "max_x": 2167.56015816172, + "max_y": 5219.648154730792, + "center": [ + 2167.237692901038, + 5219.32568947011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.237692901038, + 5219.32568947011 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5565FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.35741628145, + "min_y": 5218.822230358754, + "max_x": 2168.35741628145, + "max_y": 5219.829763797802, + "center": [ + 2168.35741628145, + 5219.325997078278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.35741628145, + 5219.829763797802 + ], + [ + 2168.35741628145, + 5218.822230358754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556600", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.089806333846, + "min_y": 5218.822230358754, + "max_x": 2166.089806333846, + "max_y": 5219.829763797802, + "center": [ + 2166.089806333846, + 5219.325997078278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.089806333846, + 5219.829763797802 + ], + [ + 2166.089806333846, + 5218.822230358754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556601", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.51435805664, + "min_y": 5219.491340416442, + "max_x": 2168.079068703194, + "max_y": 5219.829456189639, + "center": [ + 2167.796713379917, + 5219.66039830304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.079068703194, + 5219.829456189639 + ], + [ + 2167.51435805664, + 5219.491340416442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556602", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5219.491340416442, + "max_x": 2166.96102774543, + "max_y": 5219.829456189639, + "center": [ + 2166.6786724221547, + 5219.66039830304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.396317098879, + 5219.829456189639 + ], + [ + 2166.96102774543, + 5219.491340416442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556603", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2164.719848731088, + "min_y": 5238.647788489561, + "max_x": 2166.089806333846, + "max_y": 5238.647789582393, + "center": [ + 2165.4048275324667, + 5238.6477890359765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.089806333846, + 5238.647788489561 + ], + [ + 2164.719848731088, + 5238.647789582393 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556604", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.079068703194, + "min_y": 5238.137842503317, + "max_x": 2168.079068703194, + "max_y": 5239.145375942374, + "center": [ + 2168.079068703194, + 5238.641609222846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.079068703194, + 5238.137842503317 + ], + [ + 2168.079068703194, + 5239.145375942374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556605", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.51435805664, + "min_y": 5238.137842503317, + "max_x": 2168.079068703194, + "max_y": 5238.475958276517, + "center": [ + 2167.796713379917, + 5238.306900389917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.51435805664, + 5238.475958276517 + ], + [ + 2168.079068703194, + 5238.137842503317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556606", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5238.137842503317, + "max_x": 2166.396317098879, + "max_y": 5239.145375942374, + "center": [ + 2166.396317098879, + 5238.641609222846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.396317098879, + 5238.137842503317 + ], + [ + 2166.396317098879, + 5239.145375942374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556607", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5238.137842503317, + "max_x": 2166.96102774543, + "max_y": 5238.475958276517, + "center": [ + 2166.6786724221547, + 5238.306900389917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.96102774543, + 5238.475958276517 + ], + [ + 2166.396317098879, + 5238.137842503317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556608", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2166.9152276403556, + "min_y": 5238.319143962162, + "max_x": 2167.56015816172, + "max_y": 5238.964074483527, + "center": [ + 2167.237692901038, + 5238.641609222845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.237692901038, + 5238.641609222845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556609", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.35741628145, + "min_y": 5238.138150111489, + "max_x": 2168.35741628145, + "max_y": 5239.145683550538, + "center": [ + 2168.35741628145, + 5238.641916831013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.35741628145, + 5239.145683550538 + ], + [ + 2168.35741628145, + 5238.138150111489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55660A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.089806333846, + "min_y": 5238.138150111489, + "max_x": 2166.089806333846, + "max_y": 5239.145683550538, + "center": [ + 2166.089806333846, + 5238.641916831013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.089806333846, + 5239.145683550538 + ], + [ + 2166.089806333846, + 5238.138150111489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55660B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.51435805664, + "min_y": 5238.807260169177, + "max_x": 2168.079068703194, + "max_y": 5239.145375942374, + "center": [ + 2167.796713379917, + 5238.976318055776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.079068703194, + 5239.145375942374 + ], + [ + 2167.51435805664, + 5238.807260169177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55660C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.396317098879, + "min_y": 5238.807260169177, + "max_x": 2166.96102774543, + "max_y": 5239.145375942374, + "center": [ + 2166.6786724221547, + 5238.976318055776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.396317098879, + 5239.145375942374 + ], + [ + 2166.96102774543, + 5238.807260169177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55660D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2230.522948025583, + "min_y": 5249.880557222402, + "max_x": 2230.522948025583, + "max_y": 5250.978099781332, + "center": [ + 2230.522948025583, + 5250.429328501867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.522948025583, + 5249.880557222402 + ], + [ + 2230.522948025583, + 5250.978099781332 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55660E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2200.238456717402, + "min_y": 5249.427537828001, + "max_x": 2200.238456717402, + "max_y": 5251.926299393906, + "center": [ + 2200.238456717402, + 5250.676918610954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2200.238456717402, + 5249.427537828001 + ], + [ + 2200.238456717402, + 5251.926299393906 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55660F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5276.077843297668, + "max_x": 2272.265879756931, + "max_y": 5277.175385856601, + "center": [ + 2272.265879756931, + 5276.626614577134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756931, + 5277.175385856601 + ], + [ + 2272.265879756931, + 5276.077843297668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556610", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.837226032519, + "min_y": 5276.057552230886, + "max_x": 2271.837226032519, + "max_y": 5277.195676923387, + "center": [ + 2271.837226032519, + 5276.626614577137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.837226032519, + 5277.195676923387 + ], + [ + 2271.837226032519, + 5276.057552230886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556611", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2309.511357310984, + "min_y": 5257.552541462789, + "max_x": 2312.330807919639, + "max_y": 5257.552541462789, + "center": [ + 2310.921082615311, + 5257.552541462789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.511357310984, + 5257.552541462789 + ], + [ + 2312.330807919639, + 5257.552541462789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556612", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2296.958081857081, + "min_y": 5257.552541462787, + "max_x": 2301.270076040137, + "max_y": 5257.552541462787, + "center": [ + 2299.114078948609, + 5257.552541462787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2301.270076040137, + 5257.552541462787 + ], + [ + 2296.958081857081, + 5257.552541462787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556613", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2291.635448245456, + "min_y": 5257.552541462787, + "max_x": 2296.958081857081, + "max_y": 5257.552541462787, + "center": [ + 2294.2967650512683, + 5257.552541462787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.958081857081, + 5257.552541462787 + ], + [ + 2291.635448245456, + 5257.552541462787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556614", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2274.446050633176, + "min_y": 5289.761142169826, + "max_x": 2291.635448245453, + "max_y": 5289.761142169829, + "center": [ + 2283.040749439315, + 5289.7611421698275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.635448245453, + 5289.761142169826 + ], + [ + 2274.446050633176, + 5289.761142169829 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556615", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.48380214662, + "min_y": 5262.502690856062, + "max_x": 2274.098961846588, + "max_y": 5262.871012577747, + "center": [ + 2273.791381996604, + 5262.686851716904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.098961846588, + 5262.502690856062 + ], + [ + 2273.48380214662, + 5262.871012577747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556616", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756936, + "min_y": 5263.231911693306, + "max_x": 2272.881039456901, + "max_y": 5263.600233414994, + "center": [ + 2272.5734596069187, + 5263.41607255415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.881039456901, + 5263.231911693306 + ], + [ + 2272.265879756936, + 5263.600233414994 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556617", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.098961846588, + "min_y": 5262.502690856062, + "max_x": 2274.098961846588, + "max_y": 5263.600233414994, + "center": [ + 2274.098961846588, + 5263.051462135529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.098961846588, + 5263.600233414994 + ], + [ + 2274.098961846588, + 5262.502690856062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556618", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756936, + "min_y": 5262.502690856062, + "max_x": 2272.265879756936, + "max_y": 5263.600233414994, + "center": [ + 2272.265879756936, + 5263.051462135529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756936, + 5263.600233414994 + ], + [ + 2272.265879756936, + 5262.502690856062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556619", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.48380214662, + "min_y": 5263.231911693306, + "max_x": 2274.098961846588, + "max_y": 5263.600233414994, + "center": [ + 2273.791381996604, + 5263.41607255415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.098961846588, + 5263.600233414994 + ], + [ + 2273.48380214662, + 5263.231911693306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756936, + "min_y": 5262.502690856062, + "max_x": 2272.881039456901, + "max_y": 5262.87101257775, + "center": [ + 2272.5734596069187, + 5262.686851716906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.881039456901, + 5262.87101257775 + ], + [ + 2272.265879756936, + 5262.502690856062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.837226032524, + "min_y": 5262.482399789281, + "max_x": 2271.837226032524, + "max_y": 5263.620524481781, + "center": [ + 2271.837226032524, + 5263.0514621355305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.837226032524, + 5263.620524481781 + ], + [ + 2271.837226032524, + 5262.482399789281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.527615571, + "min_y": 5262.482399789281, + "max_x": 2274.527615571, + "max_y": 5263.620524481781, + "center": [ + 2274.527615571, + 5263.0514621355305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.527615571, + 5263.620524481781 + ], + [ + 2274.527615571, + 5262.482399789281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2272.8311477485227, + "min_y": 5262.7001890822885, + "max_x": 2273.5336938550013, + "max_y": 5263.402735188767, + "center": [ + 2273.182420801762, + 5263.051462135528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.182420801762, + 5263.051462135528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2293.2886820557374, + "min_y": 5312.112822476451, + "max_x": 2293.9924521551106, + "max_y": 5312.816592575824, + "center": [ + 2293.640567105424, + 5312.464707526137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105424, + 5312.464707526137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55661F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5311.21940380926, + "max_x": 2294.190294467545, + "max_y": 5311.21940380926, + "center": [ + 2293.640567105424, + 5311.21940380926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.190294467545, + 5311.21940380926 + ], + [ + 2293.090839743303, + 5311.21940380926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556620", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5312.766613944898, + "max_x": 2293.459803164042, + "max_y": 5313.382845391038, + "center": [ + 2293.2753214536724, + 5313.074729667968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.459803164042, + 5312.766613944898 + ], + [ + 2293.090839743303, + 5313.382845391038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5313.382845391038, + "max_x": 2294.190294467545, + "max_y": 5313.382845391038, + "center": [ + 2293.640567105424, + 5313.382845391038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.090839743303, + 5313.382845391038 + ], + [ + 2294.190294467545, + 5313.382845391038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556622", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.821331046806, + "min_y": 5312.766613944898, + "max_x": 2294.190294467545, + "max_y": 5313.382845391038, + "center": [ + 2294.0058127571756, + 5313.074729667968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.190294467545, + 5313.382845391038 + ], + [ + 2293.821331046806, + 5312.766613944898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556623", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5311.54656966124, + "max_x": 2293.459803164042, + "max_y": 5312.162801107378, + "center": [ + 2293.2753214536724, + 5311.854685384309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.459803164042, + 5312.162801107378 + ], + [ + 2293.090839743303, + 5311.54656966124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556624", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5311.54656966124, + "max_x": 2294.190294467545, + "max_y": 5311.54656966124, + "center": [ + 2293.640567105424, + 5311.54656966124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.090839743303, + 5311.54656966124 + ], + [ + 2294.190294467545, + 5311.54656966124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556625", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.821331046806, + "min_y": 5311.54656966124, + "max_x": 2294.190294467545, + "max_y": 5312.162801107378, + "center": [ + 2294.0058127571756, + 5311.854685384309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.190294467545, + 5311.54656966124 + ], + [ + 2293.821331046806, + 5312.162801107378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556626", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.090839743303, + "min_y": 5313.71001124302, + "max_x": 2294.190294467545, + "max_y": 5313.71001124302, + "center": [ + 2293.640567105424, + 5313.71001124302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.090839743303, + 5313.71001124302 + ], + [ + 2294.190294467545, + 5313.71001124302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556627", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.780937639939, + "min_y": 5295.81067218089, + "max_x": 2316.921045200929, + "max_y": 5295.81067218089, + "center": [ + 2316.350991420434, + 5295.81067218089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.921045200929, + 5295.81067218089 + ], + [ + 2315.780937639939, + 5295.81067218089 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556628", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2315.9991063707475, + "min_y": 5296.704090848087, + "max_x": 2316.702876470121, + "max_y": 5297.40786094746, + "center": [ + 2316.350991420434, + 5297.055975897773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.350991420434, + 5297.055975897773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556629", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5298.301279614651, + "max_x": 2316.900718782555, + "max_y": 5298.301279614651, + "center": [ + 2316.3509914204324, + 5298.301279614651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.80126405831, + 5298.301279614651 + ], + [ + 2316.900718782555, + 5298.301279614651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5295.81067218089, + "max_x": 2316.900718782555, + "max_y": 5295.81067218089, + "center": [ + 2316.3509914204324, + 5295.81067218089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.80126405831, + 5295.81067218089 + ], + [ + 2316.900718782555, + 5295.81067218089 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.795096103029, + "min_y": 5296.137838032874, + "max_x": 2316.906886737837, + "max_y": 5296.137838032874, + "center": [ + 2316.3509914204333, + 5296.137838032874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.906886737837, + 5296.137838032874 + ], + [ + 2315.795096103029, + 5296.137838032874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.795096103029, + "min_y": 5295.81067218089, + "max_x": 2316.906886737837, + "max_y": 5295.81067218089, + "center": [ + 2316.3509914204333, + 5295.81067218089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.906886737837, + 5295.81067218089 + ], + [ + 2315.795096103029, + 5295.81067218089 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.796916122679, + "min_y": 5298.301279614651, + "max_x": 2316.908706757484, + "max_y": 5298.301279614651, + "center": [ + 2316.3528114400815, + 5298.301279614651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.908706757484, + 5298.301279614651 + ], + [ + 2315.796916122679, + 5298.301279614651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.796916122679, + "min_y": 5298.301279614651, + "max_x": 2316.908706757484, + "max_y": 5298.301279614651, + "center": [ + 2316.3528114400815, + 5298.301279614651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.908706757484, + 5298.301279614651 + ], + [ + 2315.796916122679, + 5298.301279614651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55662F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.531755361818, + "min_y": 5297.357882316532, + "max_x": 2316.900718782555, + "max_y": 5297.974113762673, + "center": [ + 2316.7162370721862, + 5297.6659980396025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.531755361818, + 5297.357882316532 + ], + [ + 2316.900718782555, + 5297.974113762673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5297.974113762673, + "max_x": 2316.900718782555, + "max_y": 5297.974113762673, + "center": [ + 2316.3509914204324, + 5297.974113762673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.900718782555, + 5297.974113762673 + ], + [ + 2315.80126405831, + 5297.974113762673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556631", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5297.357882316532, + "max_x": 2316.17022747905, + "max_y": 5297.974113762673, + "center": [ + 2315.9857457686803, + 5297.6659980396025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.80126405831, + 5297.974113762673 + ], + [ + 2316.17022747905, + 5297.357882316532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556632", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.531755361813, + "min_y": 5296.137838032874, + "max_x": 2316.900718782555, + "max_y": 5296.754069479009, + "center": [ + 2316.716237072184, + 5296.445953755941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.531755361813, + 5296.754069479009 + ], + [ + 2316.900718782555, + 5296.137838032874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556633", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5296.137838032874, + "max_x": 2316.900718782555, + "max_y": 5296.137838032874, + "center": [ + 2316.3509914204324, + 5296.137838032874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.900718782555, + 5296.137838032874 + ], + [ + 2315.80126405831, + 5296.137838032874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556634", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.80126405831, + "min_y": 5296.137838032874, + "max_x": 2316.17022747905, + "max_y": 5296.754069479009, + "center": [ + 2315.9857457686803, + 5296.445953755941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.80126405831, + 5296.137838032874 + ], + [ + 2316.17022747905, + 5296.754069479009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556635", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.303473923716, + "min_y": 5383.325155693722, + "max_x": 2406.563611885943, + "max_y": 5383.325155693722, + "center": [ + 2405.9335429048297, + 5383.325155693722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.303473923716, + 5383.325155693722 + ], + [ + 2406.563611885943, + 5383.325155693722 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556636", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.620479074294, + "min_y": 5384.391191316087, + "max_x": 2407.620479074294, + "max_y": 5385.651329278307, + "center": [ + 2407.620479074294, + 5385.021260297197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.620479074294, + 5385.651329278307 + ], + [ + 2407.620479074294, + 5384.391191316087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556637", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.371316922116, + "min_y": 5366.150605958691, + "max_x": 2439.371316922116, + "max_y": 5367.398082127614, + "center": [ + 2439.371316922116, + 5366.774344043152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.371316922116, + 5367.398082127614 + ], + [ + 2439.371316922116, + 5366.150605958691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556638", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.176629957068, + "min_y": 5346.726545622751, + "max_x": 2426.176629957068, + "max_y": 5347.699577034513, + "center": [ + 2426.176629957068, + 5347.213061328632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.176629957068, + 5347.699577034513 + ], + [ + 2426.176629957068, + 5346.726545622751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556639", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2424.99201309505, + "min_y": 5347.213061328634, + "max_x": 2426.176629957068, + "max_y": 5347.213061328634, + "center": [ + 2425.5843215260593, + 5347.213061328634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.176629957068, + 5347.213061328634 + ], + [ + 2424.99201309505, + 5347.213061328634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.320414412202, + "min_y": 5346.726545622751, + "max_x": 2428.320414412202, + "max_y": 5347.699577034513, + "center": [ + 2428.320414412202, + 5347.213061328632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.320414412202, + 5346.726545622751 + ], + [ + 2428.320414412202, + 5347.699577034513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2426.9403121902433, + "min_y": 5346.899300411881, + "max_x": 2427.5631576774185, + "max_y": 5347.522145899055, + "center": [ + 2427.251734933831, + 5347.210723155468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.251734933831, + 5347.210723155468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.520964831537, + "min_y": 5346.726545622751, + "max_x": 2428.068203764893, + "max_y": 5347.054200353908, + "center": [ + 2427.7945842982153, + 5346.89037298833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.520964831537, + 5347.054200353908 + ], + [ + 2428.068203764893, + 5346.726545622751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.068203764893, + "min_y": 5346.726545622751, + "max_x": 2428.068203764893, + "max_y": 5347.699577034513, + "center": [ + 2428.068203764893, + 5347.213061328632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.068203764893, + 5346.726545622751 + ], + [ + 2428.068203764893, + 5347.699577034513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.51892595352, + "min_y": 5347.37070154221, + "max_x": 2428.068203764893, + "max_y": 5347.699577034513, + "center": [ + 2427.7935648592065, + 5347.535139288361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.068203764893, + 5347.699577034513 + ], + [ + 2427.51892595352, + 5347.37070154221 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55663F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.443076393709, + "min_y": 5346.726545622751, + "max_x": 2426.988449059616, + "max_y": 5347.053082941892, + "center": [ + 2426.7157627266624, + 5346.889814282322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.988449059616, + 5347.053082941892 + ], + [ + 2426.443076393709, + 5346.726545622751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556640", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.443076393709, + "min_y": 5346.726545622751, + "max_x": 2426.443076393709, + "max_y": 5347.699577034513, + "center": [ + 2426.443076393709, + 5347.213061328632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.443076393709, + 5346.726545622751 + ], + [ + 2426.443076393709, + 5347.699577034513 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.443076393709, + "min_y": 5347.373039715375, + "max_x": 2426.988449059616, + "max_y": 5347.699577034513, + "center": [ + 2426.7157627266624, + 5347.5363083749435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.443076393709, + 5347.699577034513 + ], + [ + 2426.988449059616, + 5347.373039715375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556642", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2424.99201309505, + "min_y": 5347.213061328634, + "max_x": 2424.99201309505, + "max_y": 5348.588677985492, + "center": [ + 2424.99201309505, + 5347.900869657063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.99201309505, + 5348.588677985492 + ], + [ + 2424.99201309505, + 5347.213061328634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556643", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2428.320414412202, + "min_y": 5347.213061328631, + "max_x": 2429.388875951564, + "max_y": 5347.213061328639, + "center": [ + 2428.854645181883, + 5347.213061328635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.388875951564, + 5347.213061328639 + ], + [ + 2428.320414412202, + 5347.213061328631 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556644", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.921189975353, + "min_y": 5348.123940781387, + "max_x": 2432.782041091098, + "max_y": 5348.123940781387, + "center": [ + 2431.3516155332254, + 5348.123940781387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.782041091098, + 5348.123940781387 + ], + [ + 2429.921189975353, + 5348.123940781387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556645", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.921189975353, + "min_y": 5346.302181875886, + "max_x": 2432.782041091098, + "max_y": 5346.302181875886, + "center": [ + 2431.3516155332254, + 5346.302181875886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.782041091098, + 5346.302181875886 + ], + [ + 2429.921189975353, + 5346.302181875886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556648", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2431.850142898704, + "min_y": 5344.492175411244, + "max_x": 2432.3484192884443, + "max_y": 5344.990451800984, + "center": [ + 2432.099281093574, + 5344.741313606114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.099281093574, + 5344.741313606114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556649", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.7119390674, + "min_y": 5344.088138541269, + "max_x": 2431.974062852323, + "max_y": 5344.525929687954, + "center": [ + 2431.8430009598615, + 5344.307034114611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.974062852323, + 5344.525929687954 + ], + [ + 2431.7119390674, + 5344.088138541269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.7119390674, + "min_y": 5344.088138541269, + "max_x": 2432.490364196807, + "max_y": 5344.088138541269, + "center": [ + 2432.1011516321037, + 5344.088138541269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.7119390674, + 5344.088138541269 + ], + [ + 2432.490364196807, + 5344.088138541269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.227263802964, + "min_y": 5344.088138541269, + "max_x": 2432.490364196807, + "max_y": 5344.527560790362, + "center": [ + 2432.3588139998856, + 5344.307849665815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.490364196807, + 5344.088138541269 + ], + [ + 2432.227263802964, + 5344.527560790362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.7119390674, + "min_y": 5344.95194230549, + "max_x": 2431.973168922711, + "max_y": 5345.388240438212, + "center": [ + 2431.842553995056, + 5345.1700913718505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.973168922711, + 5344.95194230549 + ], + [ + 2431.7119390674, + 5345.388240438212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.7119390674, + "min_y": 5345.388240438212, + "max_x": 2432.490364196807, + "max_y": 5345.388240438212, + "center": [ + 2432.1011516321037, + 5345.388240438212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.7119390674, + 5345.388240438212 + ], + [ + 2432.490364196807, + 5345.388240438212 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.229134341499, + "min_y": 5344.95194230549, + "max_x": 2432.490364196807, + "max_y": 5345.388240438212, + "center": [ + 2432.3597492691533, + 5345.1700913718505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.490364196807, + 5345.388240438212 + ], + [ + 2432.229134341499, + 5344.95194230549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55664F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2432.101151632102, + "min_y": 5343.206714789745, + "max_x": 2432.101151632102, + "max_y": 5344.088138541269, + "center": [ + 2432.101151632102, + 5343.647426665507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.101151632102, + 5344.088138541269 + ], + [ + 2432.101151632102, + 5343.206714789745 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556650", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2432.101151632102, + "min_y": 5345.388240438212, + "max_x": 2432.101151632102, + "max_y": 5346.302181875883, + "center": [ + 2432.101151632102, + 5345.845211157048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.101151632102, + 5346.302181875883 + ], + [ + 2432.101151632102, + 5345.388240438212 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556651", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.921189975353, + "min_y": 5346.302181875883, + "max_x": 2429.921189975353, + "max_y": 5348.123940781387, + "center": [ + 2429.921189975353, + 5347.213061328635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.921189975353, + 5348.123940781387 + ], + [ + 2429.921189975353, + 5346.302181875883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556652", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.782041091098, + "min_y": 5346.302181875883, + "max_x": 2432.782041091098, + "max_y": 5348.123940781387, + "center": [ + 2432.782041091098, + 5347.213061328635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.782041091098, + 5348.123940781387 + ], + [ + 2432.782041091098, + 5346.302181875883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556653", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2430.5301664619196, + "min_y": 5349.409401402885, + "max_x": 2431.02844285166, + "max_y": 5349.907677792626, + "center": [ + 2430.77930465679, + 5349.658539597755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.77930465679, + 5349.658539597755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556654", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.391962630617, + "min_y": 5349.00536453291, + "max_x": 2430.654086415542, + "max_y": 5349.443155679594, + "center": [ + 2430.5230245230796, + 5349.224260106252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.654086415542, + 5349.443155679594 + ], + [ + 2430.391962630617, + 5349.00536453291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556655", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.391962630617, + "min_y": 5349.00536453291, + "max_x": 2431.170387760026, + "max_y": 5349.00536453291, + "center": [ + 2430.7811751953213, + 5349.00536453291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.391962630617, + 5349.00536453291 + ], + [ + 2431.170387760026, + 5349.00536453291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556656", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.907287366181, + "min_y": 5349.00536453291, + "max_x": 2431.170387760026, + "max_y": 5349.444786782004, + "center": [ + 2431.0388375631037, + 5349.225075657457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.170387760026, + 5349.00536453291 + ], + [ + 2430.907287366181, + 5349.444786782004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556657", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.391962630617, + "min_y": 5349.869168297132, + "max_x": 2430.653192485931, + "max_y": 5350.305466429853, + "center": [ + 2430.522577558274, + 5350.087317363493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.653192485931, + 5349.869168297132 + ], + [ + 2430.391962630617, + 5350.305466429853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556658", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.391962630617, + "min_y": 5350.305466429853, + "max_x": 2431.170387760026, + "max_y": 5350.305466429853, + "center": [ + 2430.7811751953213, + 5350.305466429853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.391962630617, + 5350.305466429853 + ], + [ + 2431.170387760026, + 5350.305466429853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556659", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.909157904715, + "min_y": 5349.869168297132, + "max_x": 2431.170387760026, + "max_y": 5350.305466429853, + "center": [ + 2431.0397728323705, + 5350.087317363493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.170387760026, + 5350.305466429853 + ], + [ + 2430.909157904715, + 5349.869168297132 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55665A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2430.781175195321, + "min_y": 5348.123940781387, + "max_x": 2430.781175195321, + "max_y": 5349.00536453291, + "center": [ + 2430.781175195321, + 5348.564652657149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.781175195321, + 5349.00536453291 + ], + [ + 2430.781175195321, + 5348.123940781387 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55665B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2430.781175195321, + "min_y": 5350.305466429853, + "max_x": 2430.781175195321, + "max_y": 5351.219407867525, + "center": [ + 2430.781175195321, + 5350.762437148689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.781175195321, + 5351.219407867525 + ], + [ + 2430.781175195321, + 5350.305466429853 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55665C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2429.432267078751, + "min_y": 5352.03617004347, + "max_x": 2430.776124699223, + "max_y": 5353.156051393863, + "center": [ + 2430.1041958889873, + 5352.596110718667 + ] + }, + "raw_value": "VT", + "clean_value": "VT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55665D", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2355.108942028961, + "min_y": 5338.548493836766, + "max_x": 2355.108942028963, + "max_y": 5348.941262213505, + "center": [ + 2355.108942028962, + 5343.744878025136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.108942028961, + 5338.548493836766 + ], + [ + 2355.108942028963, + 5348.941262213505 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55665E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.463092208285, + "min_y": 5324.320760117672, + "max_x": 2403.463092208285, + "max_y": 5325.614362283354, + "center": [ + 2403.463092208285, + 5324.967561200513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.463092208285, + 5325.614362283354 + ], + [ + 2403.463092208285, + 5324.320760117672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55665F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.289014323363, + "min_y": 5324.343823116055, + "max_x": 2406.289014323363, + "max_y": 5325.591299284977, + "center": [ + 2406.289014323363, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.289014323363, + 5324.343823116055 + ], + [ + 2406.289014323363, + 5325.591299284977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556660", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.463092208285, + "min_y": 5324.343823116055, + "max_x": 2403.463092208285, + "max_y": 5325.591299284977, + "center": [ + 2403.463092208285, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.463092208285, + 5324.343823116055 + ], + [ + 2403.463092208285, + 5325.591299284977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556661", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2404.4802423249357, + "min_y": 5324.570366324813, + "max_x": 2405.278762180288, + "max_y": 5325.368886180166, + "center": [ + 2404.879502252612, + 5324.969626252489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.879502252612, + 5324.969626252489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556662", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834304950957, + "min_y": 5324.336824758546, + "max_x": 2403.834304950957, + "max_y": 5325.598297642485, + "center": [ + 2403.834304950957, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834304950957, + 5325.598297642485 + ], + [ + 2403.834304950957, + 5324.336824758546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556663", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.463092208285, + "min_y": 5324.336824758546, + "max_x": 2403.463092208285, + "max_y": 5325.598297642485, + "center": [ + 2403.463092208285, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.463092208285, + 5325.598297642485 + ], + [ + 2403.463092208285, + 5324.336824758546 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556664", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.289014323363, + "min_y": 5324.33888981051, + "max_x": 2406.289014323363, + "max_y": 5325.600362694451, + "center": [ + 2406.289014323363, + 5324.969626252481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.289014323363, + 5325.600362694451 + ], + [ + 2406.289014323363, + 5324.33888981051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556665", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.289014323363, + "min_y": 5324.33888981051, + "max_x": 2406.289014323363, + "max_y": 5325.600362694451, + "center": [ + 2406.289014323363, + 5324.969626252481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.289014323363, + 5325.600362694451 + ], + [ + 2406.289014323363, + 5324.33888981051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556666", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.218605855163, + "min_y": 5325.172661696339, + "max_x": 2405.917801580685, + "max_y": 5325.591299284977, + "center": [ + 2405.568203717924, + 5325.381980490658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.218605855163, + 5325.172661696339 + ], + [ + 2405.917801580685, + 5325.591299284977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556667", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.917801580685, + "min_y": 5324.343823116055, + "max_x": 2405.917801580685, + "max_y": 5325.591299284977, + "center": [ + 2405.917801580685, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.917801580685, + 5325.591299284977 + ], + [ + 2405.917801580685, + 5324.343823116055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556668", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.218605855163, + "min_y": 5324.343823116055, + "max_x": 2405.917801580685, + "max_y": 5324.762460704692, + "center": [ + 2405.568203717924, + 5324.553141910374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.917801580685, + 5324.343823116055 + ], + [ + 2405.218605855163, + 5324.762460704692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556669", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834304950957, + "min_y": 5325.171678457178, + "max_x": 2404.535142852524, + "max_y": 5325.591299284977, + "center": [ + 2404.1847239017407, + 5325.381488871078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.535142852524, + 5325.171678457178 + ], + [ + 2403.834304950957, + 5325.591299284977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55666A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834304950957, + "min_y": 5324.343823116055, + "max_x": 2403.834304950957, + "max_y": 5325.591299284977, + "center": [ + 2403.834304950957, + 5324.967561200516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834304950957, + 5325.591299284977 + ], + [ + 2403.834304950957, + 5324.343823116055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55666B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834304950957, + "min_y": 5324.343823116055, + "max_x": 2404.536949663275, + "max_y": 5324.764525756668, + "center": [ + 2404.185627307116, + 5324.554174436362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834304950957, + 5324.343823116055 + ], + [ + 2404.536949663275, + 5324.764525756668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55666C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2327.12330354318, + "min_y": 5340.374726391932, + "max_x": 2339.8899509376647, + "max_y": 5341.494607742326, + "center": [ + 2333.5066272404224, + 5340.934667067129 + ] + }, + "raw_value": "CWR-10623-50A-S2A-n", + "clean_value": "CWR-10623-50A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55666D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2332.619255339377, + "min_y": 5340.433720377622, + "max_x": 2345.3859027338617, + "max_y": 5341.553601728016, + "center": [ + 2339.0025790366194, + 5340.993661052818 + ] + }, + "raw_value": "CWS-10613-50A-S2A-n", + "clean_value": "CWS-10613-50A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55666E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2241.314746909299, + "min_y": 5274.015457696541, + "max_x": 2254.75332311402, + "max_y": 5275.135339046934, + "center": [ + 2248.0340350116594, + 5274.575398371737 + ] + }, + "raw_value": "P-10208-400A-F2A-H50", + "clean_value": "P-10208-400A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55666F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2162.837308819969, + "min_y": 5251.139864459156, + "max_x": 2171.7963596231166, + "max_y": 5252.6330395930145, + "center": [ + 2167.316834221543, + 5251.886452026085 + ] + }, + "raw_value": "CONDENSATE", + "clean_value": "CONDENSATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556670", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2189.114388964481, + "min_y": 5228.371899977625, + "max_x": 2189.114388964481, + "max_y": 5228.989819283103, + "center": [ + 2189.114388964481, + 5228.680859630364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.114388964481, + 5228.371899977625 + ], + [ + 2189.114388964481, + 5228.989819283103 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556671", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2189.111751593761, + "min_y": 5225.038718483601, + "max_x": 2189.111751593761, + "max_y": 5226.089522888562, + "center": [ + 2189.111751593761, + 5225.564120686082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.111751593761, + 5226.089522888562 + ], + [ + 2189.111751593761, + 5225.038718483601 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556672", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.727611698135, + "min_y": 5224.738741020786, + "max_x": 2188.727611698135, + "max_y": 5225.259063001983, + "center": [ + 2188.727611698135, + 5224.998902011384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.727611698135, + 5225.259063001983 + ], + [ + 2188.727611698135, + 5224.738741020786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556673", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2189.495891489388, + "min_y": 5224.738741020786, + "max_x": 2189.495891489388, + "max_y": 5225.259063001983, + "center": [ + 2189.495891489388, + 5224.998902011384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.495891489388, + 5225.259063001983 + ], + [ + 2189.495891489388, + 5224.738741020786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556674", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.727611698135, + "min_y": 5224.738741020786, + "max_x": 2189.495891489388, + "max_y": 5224.738741020786, + "center": [ + 2189.1117515937617, + 5224.738741020786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.727611698135, + 5224.738741020786 + ], + [ + 2189.495891489388, + 5224.738741020786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556675", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2174.510260993161, + "min_y": 5225.367268560746, + "max_x": 2174.510260993161, + "max_y": 5226.418072965707, + "center": [ + 2174.510260993161, + 5225.892670763227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.510260993161, + 5226.418072965707 + ], + [ + 2174.510260993161, + 5225.367268560746 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556676", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.126121097535, + "min_y": 5224.909670437187, + "max_x": 2174.126121097535, + "max_y": 5225.429992418384, + "center": [ + 2174.126121097535, + 5225.1698314277855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.126121097535, + 5225.429992418384 + ], + [ + 2174.126121097535, + 5224.909670437187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556677", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.894400888787, + "min_y": 5224.909670437187, + "max_x": 2174.894400888787, + "max_y": 5225.429992418384, + "center": [ + 2174.894400888787, + 5225.1698314277855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.894400888787, + 5225.429992418384 + ], + [ + 2174.894400888787, + 5224.909670437187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556678", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.126121097535, + "min_y": 5224.909670437187, + "max_x": 2174.894400888787, + "max_y": 5224.909670437187, + "center": [ + 2174.510260993161, + 5224.909670437187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.126121097535, + 5224.909670437187 + ], + [ + 2174.894400888787, + 5224.909670437187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556679", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5230.958029818533, + "max_x": 2162.997294785105, + "max_y": 5231.47835179973, + "center": [ + 2162.997294785105, + 5231.218190809132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.997294785105, + 5231.47835179973 + ], + [ + 2162.997294785105, + 5230.958029818533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.765574576356, + "min_y": 5230.958029818533, + "max_x": 2163.765574576356, + "max_y": 5231.47835179973, + "center": [ + 2163.765574576356, + 5231.218190809132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.765574576356, + 5231.47835179973 + ], + [ + 2163.765574576356, + 5230.958029818533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5230.958029818533, + "max_x": 2163.765574576356, + "max_y": 5230.958029818533, + "center": [ + 2163.3814346807303, + 5230.958029818533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.997294785105, + 5230.958029818533 + ], + [ + 2163.765574576356, + 5230.958029818533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5211.691491316806, + "max_x": 2162.997294785105, + "max_y": 5212.211813298004, + "center": [ + 2162.997294785105, + 5211.951652307405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.997294785105, + 5212.211813298004 + ], + [ + 2162.997294785105, + 5211.691491316806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.765574576356, + "min_y": 5211.691491316806, + "max_x": 2163.765574576356, + "max_y": 5212.211813298004, + "center": [ + 2163.765574576356, + 5211.951652307405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.765574576356, + 5212.211813298004 + ], + [ + 2163.765574576356, + 5211.691491316806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.997294785105, + "min_y": 5211.691491316806, + "max_x": 2163.765574576356, + "max_y": 5211.691491316806, + "center": [ + 2163.3814346807303, + 5211.691491316806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.997294785105, + 5211.691491316806 + ], + [ + 2163.765574576356, + 5211.691491316806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55667F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5228.983951378362, + "max_x": 2154.285591606377, + "max_y": 5228.983951378362, + "center": [ + 2151.292202777089, + 5228.983951378362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947801, + 5228.983951378362 + ], + [ + 2154.285591606377, + 5228.983951378362 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556680", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2274.486562436659, + "min_y": 5203.046560685532, + "max_x": 2274.486562436659, + "max_y": 5204.097365090492, + "center": [ + 2274.486562436659, + 5203.571962888012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.486562436659, + 5204.097365090492 + ], + [ + 2274.486562436659, + 5203.046560685532 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556681", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.937791157195, + "min_y": 5202.392849080446, + "max_x": 2273.937791157195, + "max_y": 5203.136166196442, + "center": [ + 2273.937791157195, + 5202.764507638443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.937791157195, + 5203.136166196442 + ], + [ + 2273.937791157195, + 5202.392849080446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556682", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.035333716125, + "min_y": 5202.392849080446, + "max_x": 2275.035333716125, + "max_y": 5203.136166196442, + "center": [ + 2275.035333716125, + 5202.764507638443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.035333716125, + 5203.136166196442 + ], + [ + 2275.035333716125, + 5202.392849080446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556683", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2298.680747546638, + "min_y": 5220.522982028962, + "max_x": 2299.562925405231, + "max_y": 5220.522982028962, + "center": [ + 2299.1218364759343, + 5220.522982028962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.680747546638, + 5220.522982028962 + ], + [ + 2299.562925405231, + 5220.522982028962 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556684", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2312.321271615326, + "min_y": 5218.900508559577, + "max_x": 2312.321271615326, + "max_y": 5220.521165174686, + "center": [ + 2312.321271615326, + 5219.710836867132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.321271615326, + 5220.521165174686 + ], + [ + 2312.321271615326, + 5218.900508559577 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556685", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2311.969998562087, + "min_y": 5217.306097614498, + "max_x": 2312.6725446685655, + "max_y": 5218.008643720977, + "center": [ + 2312.321271615326, + 5217.657370667737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.321271615326, + 5217.657370667737 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556686", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5218.900508559585, + "max_x": 2312.87004289479, + "max_y": 5218.900508559585, + "center": [ + 2312.3212716153234, + 5218.900508559585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.772500335857, + 5218.900508559585 + ], + [ + 2312.87004289479, + 5218.900508559585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556687", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5216.41423277589, + "max_x": 2312.87004289479, + "max_y": 5216.41423277589, + "center": [ + 2312.3212716153234, + 5216.41423277589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.772500335857, + 5216.41423277589 + ], + [ + 2312.87004289479, + 5216.41423277589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556688", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5216.740829622911, + "max_x": 2312.140822057543, + "max_y": 5217.355989322874, + "center": [ + 2311.9566611967, + 5217.048409472893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.140822057543, + 5217.355989322874 + ], + [ + 2311.772500335857, + 5216.740829622911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556689", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5216.740829622911, + "max_x": 2312.87004289479, + "max_y": 5216.740829622911, + "center": [ + 2312.3212716153234, + 5216.740829622911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.772500335857, + 5216.740829622911 + ], + [ + 2312.87004289479, + 5216.740829622911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55668A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.501721173104, + "min_y": 5216.740829622911, + "max_x": 2312.87004289479, + "max_y": 5217.355989322874, + "center": [ + 2312.685882033947, + 5217.048409472893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.87004289479, + 5216.740829622911 + ], + [ + 2312.501721173104, + 5217.355989322874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55668B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5217.958752012595, + "max_x": 2312.140822057545, + "max_y": 5218.573911712558, + "center": [ + 2311.956661196701, + 5218.266331862576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.140822057545, + 5217.958752012595 + ], + [ + 2311.772500335857, + 5218.573911712558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55668C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.772500335857, + "min_y": 5218.573911712558, + "max_x": 2312.87004289479, + "max_y": 5218.573911712558, + "center": [ + 2312.3212716153234, + 5218.573911712558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.772500335857, + 5218.573911712558 + ], + [ + 2312.87004289479, + 5218.573911712558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55668D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.501721173104, + "min_y": 5217.958752012595, + "max_x": 2312.87004289479, + "max_y": 5218.573911712558, + "center": [ + 2312.685882033947, + 5218.266331862576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.87004289479, + 5218.573911712558 + ], + [ + 2312.501721173104, + 5217.958752012595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55668E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2312.319425455819, + "min_y": 5215.678669692419, + "max_x": 2312.319425455819, + "max_y": 5216.41423277589, + "center": [ + 2312.319425455819, + 5216.046451234155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.319425455819, + 5216.41423277589 + ], + [ + 2312.319425455819, + 5215.678669692419 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55668F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.935285560193, + "min_y": 5215.221071568858, + "max_x": 2311.935285560193, + "max_y": 5215.741393550054, + "center": [ + 2311.935285560193, + 5215.481232559456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.935285560193, + 5215.741393550054 + ], + [ + 2311.935285560193, + 5215.221071568858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556690", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.703565351444, + "min_y": 5215.221071568858, + "max_x": 2312.703565351444, + "max_y": 5215.741393550054, + "center": [ + 2312.703565351444, + 5215.481232559456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.703565351444, + 5215.741393550054 + ], + [ + 2312.703565351444, + 5215.221071568858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556691", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.935285560193, + "min_y": 5215.221071568858, + "max_x": 2312.703565351444, + "max_y": 5215.221071568858, + "center": [ + 2312.3194254558184, + 5215.221071568858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.935285560193, + 5215.221071568858 + ], + [ + 2312.703565351444, + 5215.221071568858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556692", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5305.647947264255, + "max_x": 2338.095960423241, + "max_y": 5305.647947264255, + "center": [ + 2337.6561785335443, + 5305.647947264255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.095960423241, + 5305.647947264255 + ], + [ + 2337.216396643847, + 5305.647947264255 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556693", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2337.656178533543, + "min_y": 5305.647947264255, + "max_x": 2337.656178533543, + "max_y": 5306.529567031826, + "center": [ + 2337.656178533543, + 5306.088757148041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.656178533543, + 5305.647947264255 + ], + [ + 2337.656178533543, + 5306.529567031826 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556694", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5303.710090855126, + "max_x": 2338.095960423241, + "max_y": 5303.710090855126, + "center": [ + 2337.6561785335443, + 5303.710090855126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.216396643847, + 5303.710090855126 + ], + [ + 2338.095960423241, + 5303.710090855126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556695", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2337.3725569213034, + "min_y": 5304.428355813163, + "max_x": 2337.9355730008024, + "max_y": 5304.991371892662, + "center": [ + 2337.654064961053, + 5304.709863852912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.654064961053, + 5304.709863852912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556696", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5303.97182353671, + "max_x": 2337.512577455882, + "max_y": 5304.46649569081, + "center": [ + 2337.3644870498647, + 5304.21915961376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.512577455882, + 5304.46649569081 + ], + [ + 2337.216396643847, + 5303.97182353671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556697", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5303.97182353671, + "max_x": 2338.095960423241, + "max_y": 5303.97182353671, + "center": [ + 2337.6561785335443, + 5303.97182353671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.216396643847, + 5303.97182353671 + ], + [ + 2338.095960423241, + 5303.97182353671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556698", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.79867611416, + "min_y": 5303.97182353671, + "max_x": 2338.095960423241, + "max_y": 5304.468338717899, + "center": [ + 2337.9473182687007, + 5304.220081127305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.095960423241, + 5303.97182353671 + ], + [ + 2337.79867611416, + 5304.468338717899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556699", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5304.94785896364, + "max_x": 2337.511567380438, + "max_y": 5305.44084412055, + "center": [ + 2337.3639820121425, + 5305.194351542095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.511567380438, + 5304.94785896364 + ], + [ + 2337.216396643847, + 5305.44084412055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55669A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.216396643847, + "min_y": 5305.44084412055, + "max_x": 2338.095960423241, + "max_y": 5305.44084412055, + "center": [ + 2337.6561785335443, + 5305.44084412055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.216396643847, + 5305.44084412055 + ], + [ + 2338.095960423241, + 5305.44084412055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55669B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.800789686651, + "min_y": 5304.94785896364, + "max_x": 2338.095960423241, + "max_y": 5305.44084412055, + "center": [ + 2337.948375054946, + 5305.194351542095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.095960423241, + 5305.44084412055 + ], + [ + 2337.800789686651, + 5304.94785896364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55669C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2337.653541162822, + "min_y": 5302.659286450166, + "max_x": 2337.653541162822, + "max_y": 5303.710090855126, + "center": [ + 2337.653541162822, + 5303.1846886526455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.653541162822, + 5303.710090855126 + ], + [ + 2337.653541162822, + 5302.659286450166 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55669D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.269401267197, + "min_y": 5302.201688326607, + "max_x": 2337.269401267197, + "max_y": 5302.722010307803, + "center": [ + 2337.269401267197, + 5302.461849317206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.269401267197, + 5302.722010307803 + ], + [ + 2337.269401267197, + 5302.201688326607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55669E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.037681058447, + "min_y": 5302.201688326607, + "max_x": 2338.037681058447, + "max_y": 5302.722010307803, + "center": [ + 2338.037681058447, + 5302.461849317206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.037681058447, + 5302.722010307803 + ], + [ + 2338.037681058447, + 5302.201688326607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55669F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.269401267197, + "min_y": 5302.201688326607, + "max_x": 2338.037681058447, + "max_y": 5302.201688326607, + "center": [ + 2337.653541162822, + 5302.201688326607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.269401267197, + 5302.201688326607 + ], + [ + 2338.037681058447, + 5302.201688326607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5271.883482405315, + "max_x": 2354.729905854248, + "max_y": 5271.883482405315, + "center": [ + 2353.8706907156393, + 5271.883482405315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5271.883482405315 + ], + [ + 2353.01147557703, + 5271.883482405315 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5271.3813109723, + "max_x": 2356.953572622779, + "max_y": 5272.390599760584, + "center": [ + 2356.953572622779, + 5271.885955366442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5271.3813109723 + ], + [ + 2356.953572622779, + 5272.390599760584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5271.560503000101, + "max_x": 2356.1293722792166, + "max_y": 5272.206557135089, + "center": [ + 2355.806345211723, + 5271.883530067595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.806345211723, + 5271.883530067595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5271.3813109723, + "max_x": 2356.653237539366, + "max_y": 5271.721174868346, + "center": [ + 2356.3694223853636, + 5271.551242920323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.085607231361, + 5271.721174868346 + ], + [ + 2356.653237539366, + 5271.3813109723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.653237539366, + "min_y": 5271.3813109723, + "max_x": 2356.653237539366, + "max_y": 5272.390599760584, + "center": [ + 2356.653237539366, + 5271.885955366442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5271.3813109723 + ], + [ + 2356.653237539366, + 5272.390599760584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.083492380083, + "min_y": 5272.049469615028, + "max_x": 2356.653237539366, + "max_y": 5272.390599760584, + "center": [ + 2356.368364959724, + 5272.220034687806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5272.390599760584 + ], + [ + 2356.083492380083, + 5272.049469615028 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5271.3813109723, + "max_x": 2355.533248703484, + "max_y": 5271.720015819007, + "center": [ + 2355.2504014539036, + 5271.550663395654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.533248703484, + 5271.720015819007 + ], + [ + 2354.967554204323, + 5271.3813109723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5271.3813109723, + "max_x": 2354.967554204323, + "max_y": 5272.390599760584, + "center": [ + 2354.967554204323, + 5271.885955366442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5271.3813109723 + ], + [ + 2354.967554204323, + 5272.390599760584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5272.051894913874, + "max_x": 2355.533248703484, + "max_y": 5272.390599760584, + "center": [ + 2355.2504014539036, + 5272.221247337229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5272.390599760584 + ], + [ + 2355.533248703484, + 5272.051894913874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.729905854248, + "min_y": 5271.3813109723, + "max_x": 2354.729905854248, + "max_y": 5272.390599760584, + "center": [ + 2354.729905854248, + 5271.885955366442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5272.390599760584 + ], + [ + 2354.729905854248, + 5271.3813109723 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5376.068226110149, + "max_x": 2298.158903603991, + "max_y": 5376.068226110149, + "center": [ + 2297.7191217142936, + 5376.068226110149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.158903603991, + 5376.068226110149 + ], + [ + 2297.279339824596, + 5376.068226110149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566AB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2297.719121714292, + "min_y": 5376.068226110149, + "max_x": 2297.719121714292, + "max_y": 5376.949845877721, + "center": [ + 2297.719121714292, + 5376.509035993935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.719121714292, + 5376.068226110149 + ], + [ + 2297.719121714292, + 5376.949845877721 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5374.130369701021, + "max_x": 2298.158903603991, + "max_y": 5374.130369701021, + "center": [ + 2297.7191217142936, + 5374.130369701021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.279339824596, + 5374.130369701021 + ], + [ + 2298.158903603991, + 5374.130369701021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566AD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2297.4355001020526, + "min_y": 5374.848634659057, + "max_x": 2297.9985161815516, + "max_y": 5375.411650738556, + "center": [ + 2297.717008141802, + 5375.130142698807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.717008141802, + 5375.130142698807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5374.392102382605, + "max_x": 2297.575520636631, + "max_y": 5374.886774536705, + "center": [ + 2297.4274302306135, + 5374.639438459655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.575520636631, + 5374.886774536705 + ], + [ + 2297.279339824596, + 5374.392102382605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5374.392102382605, + "max_x": 2298.158903603991, + "max_y": 5374.392102382605, + "center": [ + 2297.7191217142936, + 5374.392102382605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.279339824596, + 5374.392102382605 + ], + [ + 2298.158903603991, + 5374.392102382605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.86161929491, + "min_y": 5374.392102382605, + "max_x": 2298.158903603991, + "max_y": 5374.888617563794, + "center": [ + 2298.0102614494504, + 5374.640359973199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.158903603991, + 5374.392102382605 + ], + [ + 2297.86161929491, + 5374.888617563794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5375.368137809534, + "max_x": 2297.574510561187, + "max_y": 5375.861122966444, + "center": [ + 2297.4269251928913, + 5375.614630387989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.574510561187, + 5375.368137809534 + ], + [ + 2297.279339824596, + 5375.861122966444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.279339824596, + "min_y": 5375.861122966444, + "max_x": 2298.158903603991, + "max_y": 5375.861122966444, + "center": [ + 2297.7191217142936, + 5375.861122966444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.279339824596, + 5375.861122966444 + ], + [ + 2298.158903603991, + 5375.861122966444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.8637328674, + "min_y": 5375.368137809534, + "max_x": 2298.158903603991, + "max_y": 5375.861122966444, + "center": [ + 2298.0113182356954, + 5375.614630387989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.158903603991, + 5375.861122966444 + ], + [ + 2297.8637328674, + 5375.368137809534 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2297.716484343572, + "min_y": 5373.079565296062, + "max_x": 2297.716484343572, + "max_y": 5374.130369701021, + "center": [ + 2297.716484343572, + 5373.604967498542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.716484343572, + 5374.130369701021 + ], + [ + 2297.716484343572, + 5373.079565296062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.332344447946, + "min_y": 5372.6219671725, + "max_x": 2297.332344447946, + "max_y": 5373.142289153697, + "center": [ + 2297.332344447946, + 5372.882128163099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.332344447946, + 5373.142289153697 + ], + [ + 2297.332344447946, + 5372.6219671725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.100624239197, + "min_y": 5372.6219671725, + "max_x": 2298.100624239197, + "max_y": 5373.142289153697, + "center": [ + 2298.100624239197, + 5372.882128163099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.100624239197, + 5373.142289153697 + ], + [ + 2298.100624239197, + 5372.6219671725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.332344447946, + "min_y": 5372.6219671725, + "max_x": 2298.100624239197, + "max_y": 5372.6219671725, + "center": [ + 2297.716484343571, + 5372.6219671725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.332344447946, + 5372.6219671725 + ], + [ + 2298.100624239197, + 5372.6219671725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566B8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2387.086842118953, + "min_y": 5320.873077951024, + "max_x": 2387.086842118953, + "max_y": 5321.848383832386, + "center": [ + 2387.086842118953, + 5321.360730891705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.086842118953, + 5321.848383832386 + ], + [ + 2387.086842118953, + 5320.873077951024 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.700856063823, + "min_y": 5320.362630860945, + "max_x": 2386.700856063823, + "max_y": 5320.882952842142, + "center": [ + 2386.700856063823, + 5320.622791851543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.700856063823, + 5320.882952842142 + ], + [ + 2386.700856063823, + 5320.362630860945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.469135855074, + "min_y": 5320.362630860945, + "max_x": 2387.469135855074, + "max_y": 5320.882952842142, + "center": [ + 2387.469135855074, + 5320.622791851543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.469135855074, + 5320.882952842142 + ], + [ + 2387.469135855074, + 5320.362630860945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.700856063823, + "min_y": 5320.362630860945, + "max_x": 2387.469135855074, + "max_y": 5320.362630860945, + "center": [ + 2387.0849959594484, + 5320.362630860945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.700856063823, + 5320.362630860945 + ], + [ + 2387.469135855074, + 5320.362630860945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566BC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5271.885955366443, + "max_x": 2455.09579942431, + "max_y": 5271.885955366443, + "center": [ + 2406.0246860235447, + 5271.885955366443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5271.885955366443 + ], + [ + 2455.09579942431, + 5271.885955366443 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566BD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2188.7892863330767, + "min_y": 5226.908246172412, + "max_x": 2189.4342168544413, + "max_y": 5227.553176693777, + "center": [ + 2189.111751593759, + 5227.230711433094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.111751593759, + 5227.230711433094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5228.371899977625, + "max_x": 2189.615518313287, + "max_y": 5228.371899977625, + "center": [ + 2189.1117515937603, + 5228.371899977625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.607984874234, + 5228.371899977625 + ], + [ + 2189.615518313287, + 5228.371899977625 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5226.089522888562, + "max_x": 2189.615518313287, + "max_y": 5226.089522888562, + "center": [ + 2189.1117515937603, + 5226.089522888562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.607984874234, + 5226.089522888562 + ], + [ + 2189.615518313287, + 5226.089522888562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5226.389335630934, + "max_x": 2188.946100647431, + "max_y": 5226.954046277484, + "center": [ + 2188.7770427608325, + 5226.671690954208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.946100647431, + 5226.954046277484 + ], + [ + 2188.607984874234, + 5226.389335630934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5226.389335630934, + "max_x": 2189.615518313287, + "max_y": 5226.389335630934, + "center": [ + 2189.1117515937603, + 5226.389335630934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.607984874234, + 5226.389335630934 + ], + [ + 2189.615518313287, + 5226.389335630934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2189.27740254009, + "min_y": 5226.389335630934, + "max_x": 2189.615518313287, + "max_y": 5226.954046277484, + "center": [ + 2189.4464604266886, + 5226.671690954208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.615518313287, + 5226.389335630934 + ], + [ + 2189.27740254009, + 5226.954046277484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5227.507376588704, + "max_x": 2188.946100647431, + "max_y": 5228.072087235253, + "center": [ + 2188.7770427608325, + 5227.789731911978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.946100647431, + 5227.507376588704 + ], + [ + 2188.607984874234, + 5228.072087235253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2188.607984874234, + "min_y": 5228.072087235253, + "max_x": 2189.615518313287, + "max_y": 5228.072087235253, + "center": [ + 2189.1117515937603, + 5228.072087235253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2188.607984874234, + 5228.072087235253 + ], + [ + 2189.615518313287, + 5228.072087235253 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2189.277402540088, + "min_y": 5227.507376588704, + "max_x": 2189.615518313287, + "max_y": 5228.072087235253, + "center": [ + 2189.4464604266877, + 5227.789731911978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.615518313287, + 5228.072087235253 + ], + [ + 2189.277402540088, + 5227.507376588704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5265.287753325748, + "max_x": 2353.01147557703, + "max_y": 5306.529677045626, + "center": [ + 2353.01147557703, + 5285.9087151856875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5306.529677045626 + ], + [ + 2353.01147557703, + 5265.287753325748 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2285.23061112304, + "min_y": 5216.231997438991, + "max_x": 2285.23061112304, + "max_y": 5236.543671765142, + "center": [ + 2285.23061112304, + 5226.3878346020665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.23061112304, + 5216.231997438991 + ], + [ + 2285.23061112304, + 5236.543671765142 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.453178602452, + "min_y": 5365.640399634095, + "max_x": 2414.453178602452, + "max_y": 5366.934001799777, + "center": [ + 2414.453178602452, + 5366.287200716936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.453178602452, + 5366.934001799777 + ], + [ + 2414.453178602452, + 5365.640399634095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.27910071753, + "min_y": 5365.663462632477, + "max_x": 2417.27910071753, + "max_y": 5366.9109388014, + "center": [ + 2417.27910071753, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.27910071753, + 5365.663462632477 + ], + [ + 2417.27910071753, + 5366.9109388014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.453178602452, + "min_y": 5365.663462632477, + "max_x": 2414.453178602452, + "max_y": 5366.9109388014, + "center": [ + 2414.453178602452, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.453178602452, + 5365.663462632477 + ], + [ + 2414.453178602452, + 5366.9109388014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2415.470328719103, + "min_y": 5365.8900058412355, + "max_x": 2416.268848574455, + "max_y": 5366.688525696588, + "center": [ + 2415.869588646779, + 5366.289265768912 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.869588646779, + 5366.289265768912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.824391345125, + "min_y": 5365.65646427497, + "max_x": 2414.824391345125, + "max_y": 5366.917937158907, + "center": [ + 2414.824391345125, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.824391345125, + 5366.917937158907 + ], + [ + 2414.824391345125, + 5365.65646427497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.453178602452, + "min_y": 5365.65646427497, + "max_x": 2414.453178602452, + "max_y": 5366.917937158907, + "center": [ + 2414.453178602452, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.453178602452, + 5366.917937158907 + ], + [ + 2414.453178602452, + 5365.65646427497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.27910071753, + "min_y": 5365.658529326934, + "max_x": 2417.27910071753, + "max_y": 5366.920002210875, + "center": [ + 2417.27910071753, + 5366.289265768904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.27910071753, + 5366.920002210875 + ], + [ + 2417.27910071753, + 5365.658529326934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.27910071753, + "min_y": 5365.658529326934, + "max_x": 2417.27910071753, + "max_y": 5366.920002210875, + "center": [ + 2417.27910071753, + 5366.289265768904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.27910071753, + 5366.920002210875 + ], + [ + 2417.27910071753, + 5365.658529326934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.208692249331, + "min_y": 5366.492301212762, + "max_x": 2416.907887974852, + "max_y": 5366.9109388014, + "center": [ + 2416.5582901120915, + 5366.701620007081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.208692249331, + 5366.492301212762 + ], + [ + 2416.907887974852, + 5366.9109388014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.907887974852, + "min_y": 5365.663462632477, + "max_x": 2416.907887974852, + "max_y": 5366.9109388014, + "center": [ + 2416.907887974852, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.907887974852, + 5366.9109388014 + ], + [ + 2416.907887974852, + 5365.663462632477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.208692249331, + "min_y": 5365.663462632477, + "max_x": 2416.907887974852, + "max_y": 5366.082100221115, + "center": [ + 2416.5582901120915, + 5365.872781426796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.907887974852, + 5365.663462632477 + ], + [ + 2416.208692249331, + 5366.082100221115 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.824391345125, + "min_y": 5366.491317973601, + "max_x": 2415.525229246691, + "max_y": 5366.9109388014, + "center": [ + 2415.174810295908, + 5366.701128387501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.525229246691, + 5366.491317973601 + ], + [ + 2414.824391345125, + 5366.9109388014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.824391345125, + "min_y": 5365.663462632477, + "max_x": 2414.824391345125, + "max_y": 5366.9109388014, + "center": [ + 2414.824391345125, + 5366.287200716939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.824391345125, + 5366.9109388014 + ], + [ + 2414.824391345125, + 5365.663462632477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.824391345125, + "min_y": 5365.663462632477, + "max_x": 2415.527036057442, + "max_y": 5366.084165273091, + "center": [ + 2415.1757137012837, + 5365.873813952783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.824391345125, + 5365.663462632477 + ], + [ + 2415.527036057442, + 5366.084165273091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.687572326865, + "min_y": 5369.795939507711, + "max_x": 2437.687572326865, + "max_y": 5370.371769045309, + "center": [ + 2437.687572326865, + 5370.0838542765105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326865, + 5369.795939507711 + ], + [ + 2437.687572326865, + 5370.371769045309 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566D7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2436.62334789499, + "min_y": 5374.195166378743, + "max_x": 2438.190833019727, + "max_y": 5375.501403982691, + "center": [ + 2437.407090457358, + 5374.848285180717 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566D8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2434.4373515019024, + "min_y": 5370.371769045311, + "max_x": 2440.9377931518275, + "max_y": 5376.872210695236, + "center": [ + 2437.687572326865, + 5373.621989870274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326865, + 5373.621989870274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566D9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2435.0253131544837, + "min_y": 5364.197405854351, + "max_x": 2440.349831499246, + "max_y": 5369.521924199114, + "center": [ + 2437.687572326865, + 5366.859665026733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.687572326865, + 5366.859665026733 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.602107221645, + "min_y": 5369.795939507711, + "max_x": 2438.77303743209, + "max_y": 5369.795939507711, + "center": [ + 2437.6875723268677, + 5369.795939507711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.602107221645, + 5369.795939507711 + ], + [ + 2438.77303743209, + 5369.795939507711 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.77303743209, + "min_y": 5368.785237687031, + "max_x": 2438.77303743209, + "max_y": 5369.795939507711, + "center": [ + 2438.77303743209, + 5369.290588597371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.77303743209, + 5369.795939507711 + ], + [ + 2438.77303743209, + 5368.785237687031 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.602107221645, + "min_y": 5368.785237687031, + "max_x": 2438.77303743209, + "max_y": 5368.785237687031, + "center": [ + 2437.6875723268677, + 5368.785237687031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.77303743209, + 5368.785237687031 + ], + [ + 2436.602107221645, + 5368.785237687031 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.602107221645, + "min_y": 5368.785237687031, + "max_x": 2436.602107221645, + "max_y": 5369.795939507711, + "center": [ + 2436.602107221645, + 5369.290588597371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.602107221645, + 5368.785237687031 + ], + [ + 2436.602107221645, + 5369.795939507711 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566DE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2435.002307028474, + "min_y": 5371.639396965416, + "max_x": 2439.7047624026854, + "max_y": 5372.945634569364, + "center": [ + 2437.35353471558, + 5372.292515767391 + ] + }, + "raw_value": "10217B", + "clean_value": "10217B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566DF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2172.550475490799, + "min_y": 5228.989822306668, + "max_x": 2172.550475490799, + "max_y": 5229.889851527182, + "center": [ + 2172.550475490799, + 5229.439836916925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490799, + 5228.989822306668 + ], + [ + 2172.550475490799, + 5229.889851527182 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.550475490799, + "min_y": 5232.172228616235, + "max_x": 2172.550475490799, + "max_y": 5233.94186637584, + "center": [ + 2172.550475490799, + 5233.057047496037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490799, + 5232.172228616235 + ], + [ + 2172.550475490799, + 5233.94186637584 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.550475490798, + "min_y": 5234.758167245243, + "max_x": 2172.550475490798, + "max_y": 5235.223240269302, + "center": [ + 2172.550475490798, + 5234.990703757272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490798, + 5234.758167245243 + ], + [ + 2172.550475490798, + 5235.223240269302 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566E2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2172.2280102301165, + "min_y": 5230.708574811028, + "max_x": 2172.872940751481, + "max_y": 5231.353505332392, + "center": [ + 2172.550475490799, + 5231.03104007171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490799, + 5231.03104007171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5232.172228616235, + "max_x": 2173.054242210325, + "max_y": 5232.172228616235, + "center": [ + 2172.550475490798, + 5232.172228616235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.046708771271, + 5232.172228616235 + ], + [ + 2173.054242210325, + 5232.172228616235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5229.889851527182, + "max_x": 2173.054242210325, + "max_y": 5229.889851527182, + "center": [ + 2172.550475490798, + 5229.889851527182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.046708771271, + 5229.889851527182 + ], + [ + 2173.054242210325, + 5229.889851527182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566E5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2171.486251058922, + "min_y": 5238.185362899235, + "max_x": 2173.053736183659, + "max_y": 5239.491600503183, + "center": [ + 2172.2699936212903, + 5238.838481701208 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566E6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2169.927697563773, + "min_y": 5235.223240269304, + "max_x": 2175.1732534178227, + "max_y": 5240.468796123354, + "center": [ + 2172.550475490798, + 5237.846018196329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490798, + 5237.846018196329 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566E7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2170.400281998998, + "min_y": 5230.2364697523935, + "max_x": 2174.700668982598, + "max_y": 5234.536856735993, + "center": [ + 2172.550475490798, + 5232.386663244193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.550475490798, + 5232.386663244193 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.673791496605, + "min_y": 5234.758167245243, + "max_x": 2173.427159484994, + "max_y": 5234.758167245243, + "center": [ + 2172.5504754907997, + 5234.758167245243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.673791496605, + 5234.758167245243 + ], + [ + 2173.427159484994, + 5234.758167245243 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.673791496605, + "min_y": 5233.94186637584, + "max_x": 2171.673791496605, + "max_y": 5234.758167245243, + "center": [ + 2171.673791496605, + 5234.350016810542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.673791496605, + 5234.758167245243 + ], + [ + 2171.673791496605, + 5233.94186637584 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.673791496605, + "min_y": 5233.94186637584, + "max_x": 2173.427159484994, + "max_y": 5233.94186637584, + "center": [ + 2172.5504754907997, + 5233.94186637584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.427159484994, + 5233.94186637584 + ], + [ + 2171.673791496605, + 5233.94186637584 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.427159484994, + "min_y": 5233.94186637584, + "max_x": 2173.427159484994, + "max_y": 5234.758167245243, + "center": [ + 2173.427159484994, + 5234.350016810542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.427159484994, + 5233.94186637584 + ], + [ + 2173.427159484994, + 5234.758167245243 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5566EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5230.18966426955, + "max_x": 2172.384824544466, + "max_y": 5230.754374916104, + "center": [ + 2172.2157666578687, + 5230.472019592828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.384824544466, + 5230.754374916104 + ], + [ + 2172.046708771271, + 5230.18966426955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5230.18966426955, + "max_x": 2173.054242210325, + "max_y": 5230.18966426955, + "center": [ + 2172.550475490798, + 5230.18966426955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.046708771271, + 5230.18966426955 + ], + [ + 2173.054242210325, + 5230.18966426955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.716126437128, + "min_y": 5230.18966426955, + "max_x": 2173.054242210325, + "max_y": 5230.754374916104, + "center": [ + 2172.885184323726, + 5230.472019592828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.054242210325, + 5230.18966426955 + ], + [ + 2172.716126437128, + 5230.754374916104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5231.307705227322, + "max_x": 2172.384824544468, + "max_y": 5231.872415873869, + "center": [ + 2172.2157666578696, + 5231.590060550596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.384824544468, + 5231.307705227322 + ], + [ + 2172.046708771271, + 5231.872415873869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.046708771271, + "min_y": 5231.872415873869, + "max_x": 2173.054242210325, + "max_y": 5231.872415873869, + "center": [ + 2172.550475490798, + 5231.872415873869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.046708771271, + 5231.872415873869 + ], + [ + 2173.054242210325, + 5231.872415873869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.716126437125, + "min_y": 5231.307705227322, + "max_x": 2173.054242210325, + "max_y": 5231.872415873869, + "center": [ + 2172.885184323725, + 5231.590060550596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.054242210325, + 5231.872415873869 + ], + [ + 2172.716126437125, + 5231.307705227322 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566F2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2169.993907252352, + "min_y": 5236.284064968034, + "max_x": 2174.6963626265633, + "max_y": 5237.590302571982, + "center": [ + 2172.3451349394577, + 5236.937183770007 + ] + }, + "raw_value": "10202C", + "clean_value": "10202C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.305234981887, + "min_y": 5251.376195492976, + "max_x": 2205.305237065116, + "max_y": 5252.420982937588, + "center": [ + 2205.3052360235015, + 5251.898589215281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.305237065116, + 5252.420982937588 + ], + [ + 2205.305234981887, + 5251.376195492976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2204.91163683154, + "min_y": 5251.394823280568, + "max_x": 2204.911638840486, + "max_y": 5252.402356719613, + "center": [ + 2204.911637836013, + 5251.89859000009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.911638840486, + 5252.402356719613 + ], + [ + 2204.91163683154, + 5251.394823280568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566F5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.309511289006, + "min_y": 5378.044902423638, + "max_x": 2258.03364007866, + "max_y": 5378.044902423638, + "center": [ + 2255.171575683833, + 5378.044902423638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.03364007866, + 5378.044902423638 + ], + [ + 2252.309511289006, + 5378.044902423638 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5566F6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2245.454833428122, + "min_y": 5241.451811331031, + "max_x": 2258.893409632843, + "max_y": 5242.571692681425, + "center": [ + 2252.174121530483, + 5242.011752006229 + ] + }, + "raw_value": "P-10209-200A-F2A-H50", + "clean_value": "P-10209-200A-F2A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566F7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2261.57117324776, + "min_y": 5221.411125481573, + "max_x": 2274.3378206422444, + "max_y": 5222.531006831967, + "center": [ + 2267.954496945002, + 5221.97106615677 + ] + }, + "raw_value": "P-10210-25A-F1A-H50", + "clean_value": "P-10210-25A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566F8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2190.016171438607, + "min_y": 5255.297198707567, + "max_x": 2203.454747643328, + "max_y": 5256.41708005796, + "center": [ + 2196.735459540968, + 5255.857139382764 + ] + }, + "raw_value": "CD-10523-40A-S1A-H50", + "clean_value": "CD-10523-40A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.980564476805, + "min_y": 5360.321115192231, + "max_x": 2438.980564476805, + "max_y": 5361.447811936726, + "center": [ + 2438.980564476805, + 5360.884463564478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.980564476805, + 5361.447811936726 + ], + [ + 2438.980564476805, + 5360.321115192231 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.843298243859, + "min_y": 5360.583584320214, + "max_x": 2439.843298243859, + "max_y": 5361.185342808751, + "center": [ + 2439.843298243859, + 5360.884463564482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.843298243859, + 5361.185342808751 + ], + [ + 2439.843298243859, + 5360.583584320214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.980564476805, + "min_y": 5361.185342808751, + "max_x": 2439.843298243859, + "max_y": 5361.447811936726, + "center": [ + 2439.411931360332, + 5361.316577372738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.843298243859, + 5361.185342808751 + ], + [ + 2438.980564476805, + 5361.447811936726 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.980564476805, + "min_y": 5360.321115192231, + "max_x": 2439.843298243859, + "max_y": 5360.583584320214, + "center": [ + 2439.411931360332, + 5360.452349756222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.843298243859, + 5360.583584320214 + ], + [ + 2438.980564476805, + 5360.321115192231 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566FD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2434.309469347868, + "min_y": 5360.880333460542, + "max_x": 2438.960847151244, + "max_y": 5360.880333460542, + "center": [ + 2436.635158249556, + 5360.880333460542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.960847151244, + 5360.880333460542 + ], + [ + 2434.309469347868, + 5360.880333460542 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5566FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.201053280661, + "min_y": 5223.470079298749, + "max_x": 2164.201053280661, + "max_y": 5224.522415429361, + "center": [ + 2164.201053280661, + 5223.996247364055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.201053280661, + 5223.470079298749 + ], + [ + 2164.201053280661, + 5224.522415429361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5566FF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2164.201053280663, + "min_y": 5224.2044122034995, + "max_x": 2164.837059732385, + "max_y": 5224.8404186552225, + "center": [ + 2164.519056506524, + 5224.522415429361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.519056506524, + 5224.522415429361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556700", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.207093359899, + "min_y": 5220.555399378248, + "max_x": 2164.207093359899, + "max_y": 5221.185419832607, + "center": [ + 2164.207093359899, + 5220.870409605428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.207093359899, + 5220.555399378248 + ], + [ + 2164.207093359899, + 5221.185419832607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556701", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2163.8843056339556, + "min_y": 5222.00496183974, + "max_x": 2164.529881085842, + "max_y": 5222.650537291626, + "center": [ + 2164.207093359899, + 5222.327749565683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.207093359899, + 5222.327749565683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556702", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5223.470079298749, + "max_x": 2164.711363846145, + "max_y": 5223.470079298749, + "center": [ + 2164.2070933599007, + 5223.470079298749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5223.470079298749 + ], + [ + 2164.711363846145, + 5223.470079298749 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556703", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5221.185419832607, + "max_x": 2164.711363846145, + "max_y": 5221.185419832607, + "center": [ + 2164.2070933599007, + 5221.185419832607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5221.185419832607 + ], + [ + 2164.711363846145, + 5221.185419832607 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556704", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5221.48553238772, + "max_x": 2164.041276762623, + "max_y": 5222.050807744915, + "center": [ + 2163.872049818139, + 5221.768170066318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.041276762623, + 5222.050807744915 + ], + [ + 2163.702822873656, + 5221.48553238772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556705", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5221.48553238772, + "max_x": 2164.711363846145, + "max_y": 5221.48553238772, + "center": [ + 2164.2070933599007, + 5221.48553238772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5221.48553238772 + ], + [ + 2164.711363846145, + 5221.48553238772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556706", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.372909957178, + "min_y": 5221.48553238772, + "max_x": 2164.711363846145, + "max_y": 5222.050807744915, + "center": [ + 2164.5421369016613, + 5221.768170066318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.711363846145, + 5221.48553238772 + ], + [ + 2164.372909957178, + 5222.050807744915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556707", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5222.604691386442, + "max_x": 2164.041276762623, + "max_y": 5223.169966743644, + "center": [ + 2163.872049818139, + 5222.887329065043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.041276762623, + 5222.604691386442 + ], + [ + 2163.702822873656, + 5223.169966743644 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556708", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5223.169966743644, + "max_x": 2164.711363846145, + "max_y": 5223.169966743644, + "center": [ + 2164.2070933599007, + 5223.169966743644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5223.169966743644 + ], + [ + 2164.711363846145, + 5223.169966743644 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556709", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.372909957178, + "min_y": 5222.604691386442, + "max_x": 2164.711363846145, + "max_y": 5223.169966743644, + "center": [ + 2164.5421369016613, + 5222.887329065043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.711363846145, + 5223.169966743644 + ], + [ + 2164.372909957178, + 5222.604691386442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55670A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2161.728843515261, + "min_y": 5220.555399378248, + "max_x": 2163.381010078353, + "max_y": 5220.555399378248, + "center": [ + 2162.554926796807, + 5220.555399378248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381010078353, + 5220.555399378248 + ], + [ + 2161.728843515261, + 5220.555399378248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55670B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381010078353, + "min_y": 5220.555399378248, + "max_x": 2165.033176641445, + "max_y": 5220.555399378248, + "center": [ + 2164.207093359899, + 5220.555399378248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381010078353, + 5220.555399378248 + ], + [ + 2165.033176641445, + 5220.555399378248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55670C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5238.647789582393, + "max_x": 2159.754495055841, + "max_y": 5240.430330978383, + "center": [ + 2159.754495055841, + 5239.539060280387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5238.647789582393 + ], + [ + 2159.754495055841, + 5240.430330978383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55670D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5242.714990444528, + "max_x": 2159.754495055842, + "max_y": 5243.483678881411, + "center": [ + 2159.7544950558413, + 5243.099334662969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055842, + 5242.714990444528 + ], + [ + 2159.754495055841, + 5243.483678881411 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55670E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5244.055089489987, + "max_x": 2159.754495055841, + "max_y": 5244.804819318215, + "center": [ + 2159.754495055841, + 5244.4299544041005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5244.055089489987 + ], + [ + 2159.754495055841, + 5244.804819318215 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55670F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2159.4317073298976, + "min_y": 5241.249872985506, + "max_x": 2160.077282781784, + "max_y": 5241.895448437393, + "center": [ + 2159.754495055841, + 5241.572660711449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5241.572660711449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556710", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5242.714990444528, + "max_x": 2160.258765542089, + "max_y": 5242.714990444528, + "center": [ + 2159.754495055842, + 5242.714990444528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5242.714990444528 + ], + [ + 2160.258765542089, + 5242.714990444528 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556711", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5240.430330978383, + "max_x": 2160.258765542089, + "max_y": 5240.430330978383, + "center": [ + 2159.754495055842, + 5240.430330978383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5240.430330978383 + ], + [ + 2160.258765542089, + 5240.430330978383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556712", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2158.688969104465, + "min_y": 5248.155345321105, + "max_x": 2160.2583712237706, + "max_y": 5249.463180420526, + "center": [ + 2159.4736701641177, + 5248.809262870816 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556713", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.8481948349045, + "min_y": 5244.80481931822, + "max_x": 2162.660795276777, + "max_y": 5250.617419760092, + "center": [ + 2159.754495055841, + 5247.711119539156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5247.711119539156 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556714", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2158.249359611581, + "min_y": 5240.88990124499, + "max_x": 2161.2596305001007, + "max_y": 5243.900172133511, + "center": [ + 2159.754495055841, + 5242.39503668925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5242.39503668925 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556715", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5244.055089489987, + "max_x": 2160.36817385178, + "max_y": 5244.055089489987, + "center": [ + 2159.754495055843, + 5244.055089489987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.140816259907, + 5244.055089489987 + ], + [ + 2160.36817385178, + 5244.055089489987 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556716", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2160.36817385178, + "min_y": 5243.483678881411, + "max_x": 2160.36817385178, + "max_y": 5244.055089489987, + "center": [ + 2160.36817385178, + 5243.769384185699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.36817385178, + 5244.055089489987 + ], + [ + 2160.36817385178, + 5243.483678881411 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556717", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5243.483678881411, + "max_x": 2160.36817385178, + "max_y": 5243.483678881411, + "center": [ + 2159.754495055843, + 5243.483678881411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.36817385178, + 5243.483678881411 + ], + [ + 2159.140816259907, + 5243.483678881411 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556718", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5243.483678881411, + "max_x": 2159.140816259907, + "max_y": 5244.055089489987, + "center": [ + 2159.140816259907, + 5243.769384185699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.140816259907, + 5243.483678881411 + ], + [ + 2159.140816259907, + 5244.055089489987 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556719", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5240.730443533487, + "max_x": 2159.588678458561, + "max_y": 5241.29571889069, + "center": [ + 2159.419451514078, + 5241.013081212089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.588678458561, + 5241.29571889069 + ], + [ + 2159.250224569595, + 5240.730443533487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5240.730443533487, + "max_x": 2160.258765542089, + "max_y": 5240.730443533487, + "center": [ + 2159.754495055842, + 5240.730443533487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5240.730443533487 + ], + [ + 2160.258765542089, + 5240.730443533487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.920311653118, + "min_y": 5240.730443533487, + "max_x": 2160.258765542089, + "max_y": 5241.29571889069, + "center": [ + 2160.0895385976037, + 5241.013081212089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.258765542089, + 5240.730443533487 + ], + [ + 2159.920311653118, + 5241.29571889069 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5241.849602532216, + "max_x": 2159.588678458566, + "max_y": 5242.414877889411, + "center": [ + 2159.4194515140807, + 5242.1322402108135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.588678458566, + 5241.849602532216 + ], + [ + 2159.250224569595, + 5242.414877889411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5242.414877889411, + "max_x": 2160.258765542089, + "max_y": 5242.414877889411, + "center": [ + 2159.754495055842, + 5242.414877889411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5242.414877889411 + ], + [ + 2160.258765542089, + 5242.414877889411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.920311653118, + "min_y": 5241.849602532216, + "max_x": 2160.258765542089, + "max_y": 5242.414877889411, + "center": [ + 2160.0895385976037, + 5242.1322402108135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.258765542089, + 5242.414877889411 + ], + [ + 2159.920311653118, + 5241.849602532216 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55671F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2157.089290602607, + "min_y": 5245.986266267907, + "max_x": 2161.797496960524, + "max_y": 5247.294101367328, + "center": [ + 2159.4433937815656, + 5246.640183817617 + ] + }, + "raw_value": "10202A", + "clean_value": "10202A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556720", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.201053280661, + "min_y": 5242.786006514585, + "max_x": 2164.201053280661, + "max_y": 5243.838342645195, + "center": [ + 2164.201053280661, + 5243.31217457989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.201053280661, + 5242.786006514585 + ], + [ + 2164.201053280661, + 5243.838342645195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556721", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2164.201053280663, + "min_y": 5243.520339419333, + "max_x": 2164.837059732385, + "max_y": 5244.156345871056, + "center": [ + 2164.519056506524, + 5243.838342645195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.519056506524, + 5243.838342645195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556722", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.207093359899, + "min_y": 5239.871326594084, + "max_x": 2164.207093359899, + "max_y": 5240.501347048444, + "center": [ + 2164.207093359899, + 5240.1863368212635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.207093359899, + 5239.871326594084 + ], + [ + 2164.207093359899, + 5240.501347048444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556723", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2163.8843056339556, + "min_y": 5241.320889055573, + "max_x": 2164.529881085842, + "max_y": 5241.96646450746, + "center": [ + 2164.207093359899, + 5241.643676781517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.207093359899, + 5241.643676781517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556724", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5242.786006514585, + "max_x": 2164.711363846145, + "max_y": 5242.786006514585, + "center": [ + 2164.2070933599007, + 5242.786006514585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5242.786006514585 + ], + [ + 2164.711363846145, + 5242.786006514585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556725", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5240.501347048444, + "max_x": 2164.711363846145, + "max_y": 5240.501347048444, + "center": [ + 2164.2070933599007, + 5240.501347048444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5240.501347048444 + ], + [ + 2164.711363846145, + 5240.501347048444 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556726", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5240.801459603556, + "max_x": 2164.041276762623, + "max_y": 5241.366734960751, + "center": [ + 2163.872049818139, + 5241.084097282153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.041276762623, + 5241.366734960751 + ], + [ + 2163.702822873656, + 5240.801459603556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556727", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5240.801459603556, + "max_x": 2164.711363846145, + "max_y": 5240.801459603556, + "center": [ + 2164.2070933599007, + 5240.801459603556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5240.801459603556 + ], + [ + 2164.711363846145, + 5240.801459603556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556728", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.372909957178, + "min_y": 5240.801459603556, + "max_x": 2164.711363846145, + "max_y": 5241.366734960751, + "center": [ + 2164.5421369016613, + 5241.084097282153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.711363846145, + 5240.801459603556 + ], + [ + 2164.372909957178, + 5241.366734960751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556729", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5241.920618602277, + "max_x": 2164.041276762623, + "max_y": 5242.485893959479, + "center": [ + 2163.872049818139, + 5242.203256280878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.041276762623, + 5241.920618602277 + ], + [ + 2163.702822873656, + 5242.485893959479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55672A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.702822873656, + "min_y": 5242.485893959479, + "max_x": 2164.711363846145, + "max_y": 5242.485893959479, + "center": [ + 2164.2070933599007, + 5242.485893959479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.702822873656, + 5242.485893959479 + ], + [ + 2164.711363846145, + 5242.485893959479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55672B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.372909957178, + "min_y": 5241.920618602277, + "max_x": 2164.711363846145, + "max_y": 5242.485893959479, + "center": [ + 2164.5421369016613, + 5242.203256280878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.711363846145, + 5242.485893959479 + ], + [ + 2164.372909957178, + 5241.920618602277 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55672C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2161.728843515261, + "min_y": 5239.871326594084, + "max_x": 2163.381010078353, + "max_y": 5239.871326594084, + "center": [ + 2162.554926796807, + 5239.871326594084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381010078353, + 5239.871326594084 + ], + [ + 2161.728843515261, + 5239.871326594084 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55672D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.381010078353, + "min_y": 5239.871326594084, + "max_x": 2165.033176641445, + "max_y": 5239.871326594084, + "center": [ + 2164.207093359899, + 5239.871326594084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.381010078353, + 5239.871326594084 + ], + [ + 2165.033176641445, + 5239.871326594084 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55672E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2249.006116590495, + "min_y": 5266.023501947098, + "max_x": 2254.772385455771, + "max_y": 5266.023501947103, + "center": [ + 2251.889251023133, + 5266.0235019471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2254.772385455771, + 5266.023501947098 + ], + [ + 2249.006116590495, + 5266.023501947103 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55672F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.660868479557, + "min_y": 5387.374714076207, + "max_x": 2315.384997269211, + "max_y": 5387.374714076216, + "center": [ + 2312.522932874384, + 5387.374714076212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.384997269211, + 5387.374714076207 + ], + [ + 2309.660868479557, + 5387.374714076216 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556730", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2374.305600563793, + "min_y": 5336.162350492561, + "max_x": 2379.695333376084, + "max_y": 5336.162350492561, + "center": [ + 2377.0004669699383, + 5336.162350492561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.695333376084, + 5336.162350492561 + ], + [ + 2374.305600563793, + 5336.162350492561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556731", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5280.366149356737, + "max_x": 2276.061837478795, + "max_y": 5281.659751522419, + "center": [ + 2276.061837478795, + 5281.012950439578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5281.659751522419 + ], + [ + 2276.061837478795, + 5280.366149356737 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556732", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5280.389212355119, + "max_x": 2278.887759593873, + "max_y": 5281.636688524042, + "center": [ + 2278.887759593873, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5280.389212355119 + ], + [ + 2278.887759593873, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556733", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5280.389212355119, + "max_x": 2276.061837478795, + "max_y": 5281.636688524042, + "center": [ + 2276.061837478795, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5280.389212355119 + ], + [ + 2276.061837478795, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556734", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2277.0789875954456, + "min_y": 5280.615755563877, + "max_x": 2277.877507450798, + "max_y": 5281.41427541923, + "center": [ + 2277.478247523122, + 5281.015015491554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.478247523122, + 5281.015015491554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556735", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5280.382213997611, + "max_x": 2276.433050221468, + "max_y": 5281.64368688155, + "center": [ + 2276.433050221468, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5281.64368688155 + ], + [ + 2276.433050221468, + 5280.382213997611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556736", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5280.382213997611, + "max_x": 2276.061837478795, + "max_y": 5281.64368688155, + "center": [ + 2276.061837478795, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5281.64368688155 + ], + [ + 2276.061837478795, + 5280.382213997611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556737", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5280.384279049576, + "max_x": 2278.887759593873, + "max_y": 5281.645751933517, + "center": [ + 2278.887759593873, + 5281.015015491546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5281.645751933517 + ], + [ + 2278.887759593873, + 5280.384279049576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556738", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5280.384279049576, + "max_x": 2278.887759593873, + "max_y": 5281.645751933517, + "center": [ + 2278.887759593873, + 5281.015015491546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5281.645751933517 + ], + [ + 2278.887759593873, + 5280.384279049576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556739", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5281.218050935405, + "max_x": 2278.516546851195, + "max_y": 5281.636688524042, + "center": [ + 2278.1669489884343, + 5281.427369729723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.817351125673, + 5281.218050935405 + ], + [ + 2278.516546851195, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.516546851195, + "min_y": 5280.389212355119, + "max_x": 2278.516546851195, + "max_y": 5281.636688524042, + "center": [ + 2278.516546851195, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.516546851195, + 5281.636688524042 + ], + [ + 2278.516546851195, + 5280.389212355119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5280.389212355119, + "max_x": 2278.516546851195, + "max_y": 5280.807849943757, + "center": [ + 2278.1669489884343, + 5280.598531149438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.516546851195, + 5280.389212355119 + ], + [ + 2277.817351125673, + 5280.807849943757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5281.217067696243, + "max_x": 2277.133888123033, + "max_y": 5281.636688524042, + "center": [ + 2276.7834691722505, + 5281.426878110143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.133888123033, + 5281.217067696243 + ], + [ + 2276.433050221468, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5280.389212355119, + "max_x": 2276.433050221468, + "max_y": 5281.636688524042, + "center": [ + 2276.433050221468, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5281.636688524042 + ], + [ + 2276.433050221468, + 5280.389212355119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5280.389212355119, + "max_x": 2277.135694933785, + "max_y": 5280.809914995733, + "center": [ + 2276.7843725776265, + 5280.599563675426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5280.389212355119 + ], + [ + 2277.135694933785, + 5280.809914995733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55673F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2364.406582158691, + "min_y": 5336.291311373045, + "max_x": 2365.964842934977, + "max_y": 5336.291311373045, + "center": [ + 2365.185712546834, + 5336.291311373045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.406582158691, + 5336.291311373045 + ], + [ + 2365.964842934977, + 5336.291311373045 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556740", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2296.763383217014, + "min_y": 5331.268176330859, + "max_x": 2327.413843533814, + "max_y": 5331.26817633086, + "center": [ + 2312.088613375414, + 5331.268176330859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.763383217014, + 5331.26817633086 + ], + [ + 2327.413843533814, + 5331.268176330859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556741", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.584503816017, + "min_y": 5259.479508266292, + "max_x": 2210.584503816017, + "max_y": 5265.316433141118, + "center": [ + 2210.584503816017, + 5262.397970703705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5265.316433141118 + ], + [ + 2210.584503816017, + 5259.479508266292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556742", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5263.845584897961, + "max_x": 2210.584503816017, + "max_y": 5264.8261503934, + "center": [ + 2210.0942210682974, + 5264.335867645681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5263.845584897961 + ], + [ + 2209.603938320578, + 5264.8261503934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556743", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5263.152220386737, + "max_x": 2210.584503816017, + "max_y": 5264.132785882176, + "center": [ + 2210.0942210682974, + 5263.642503134457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5263.152220386737 + ], + [ + 2209.603938320578, + 5264.132785882176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556744", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5262.458855875514, + "max_x": 2210.584503816017, + "max_y": 5263.439421370954, + "center": [ + 2210.0942210682974, + 5262.949138623234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5262.458855875514 + ], + [ + 2209.603938320578, + 5263.439421370954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556745", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5261.765491364292, + "max_x": 2210.584503816017, + "max_y": 5262.746056859731, + "center": [ + 2210.0942210682974, + 5262.255774112011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5261.765491364292 + ], + [ + 2209.603938320578, + 5262.746056859731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556746", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5261.072126853068, + "max_x": 2210.584503816017, + "max_y": 5262.052692348508, + "center": [ + 2210.0942210682974, + 5261.562409600788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5261.072126853068 + ], + [ + 2209.603938320578, + 5262.052692348508 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556747", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.603938320578, + "min_y": 5260.378762341845, + "max_x": 2210.584503816017, + "max_y": 5261.359327837285, + "center": [ + 2210.0942210682974, + 5260.869045089565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.584503816017, + 5260.378762341845 + ], + [ + 2209.603938320578, + 5261.359327837285 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556748", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2209.037678440466, + "min_y": 5244.476438485175, + "max_x": 2211.053464871174, + "max_y": 5245.5963198355685, + "center": [ + 2210.04557165582, + 5245.036379160372 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556749", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2236.849804306884, + "min_y": 5236.426745920759, + "max_x": 2238.865590737592, + "max_y": 5237.546627271152, + "center": [ + 2237.8576975222377, + 5236.986686595956 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55674A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2295.911857998243, + "min_y": 5376.949845877715, + "max_x": 2300.465825175201, + "max_y": 5376.949845877717, + "center": [ + 2298.188841586722, + 5376.949845877716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.911857998243, + 5376.949845877715 + ], + [ + 2300.465825175201, + 5376.949845877717 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55674B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2202.435590951292, + "min_y": 5235.043239875555, + "max_x": 2213.858380725305, + "max_y": 5236.163121225948, + "center": [ + 2208.1469858382984, + 5235.603180550752 + ] + }, + "raw_value": "P-10205-25A-F1A-n", + "clean_value": "P-10205-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55674C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2212.685191356967, + "min_y": 5259.902445916668, + "max_x": 2216.268811678226, + "max_y": 5261.395621050526, + "center": [ + 2214.4770015175964, + 5260.649033483596 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55674D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2239.481678317779, + "min_y": 5253.66301885043, + "max_x": 2239.481678317779, + "max_y": 5259.499943725257, + "center": [ + 2239.481678317779, + 5256.581481287843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5259.499943725257 + ], + [ + 2239.481678317779, + 5253.66301885043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55674E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5258.029095482099, + "max_x": 2239.481678317779, + "max_y": 5259.009660977539, + "center": [ + 2238.99139557006, + 5258.519378229819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5258.029095482099 + ], + [ + 2238.501112822341, + 5259.009660977539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55674F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5257.335730970876, + "max_x": 2239.481678317779, + "max_y": 5258.316296466315, + "center": [ + 2238.99139557006, + 5257.826013718595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5257.335730970876 + ], + [ + 2238.501112822341, + 5258.316296466315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556750", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5256.642366459653, + "max_x": 2239.481678317779, + "max_y": 5257.622931955092, + "center": [ + 2238.99139557006, + 5257.132649207373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5256.642366459653 + ], + [ + 2238.501112822341, + 5257.622931955092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556751", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5255.94900194843, + "max_x": 2239.481678317779, + "max_y": 5256.92956744387, + "center": [ + 2238.99139557006, + 5256.43928469615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5255.94900194843 + ], + [ + 2238.501112822341, + 5256.92956744387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556752", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5255.255637437207, + "max_x": 2239.481678317779, + "max_y": 5256.236202932647, + "center": [ + 2238.99139557006, + 5255.745920184927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5255.255637437207 + ], + [ + 2238.501112822341, + 5256.236202932647 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556753", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2238.501112822341, + "min_y": 5254.562272925983, + "max_x": 2239.481678317779, + "max_y": 5255.542838421424, + "center": [ + 2238.99139557006, + 5255.052555673703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.481678317779, + 5254.562272925983 + ], + [ + 2238.501112822341, + 5255.542838421424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556754", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2241.582365858728, + "min_y": 5254.085956500806, + "max_x": 2245.1659861799867, + "max_y": 5255.579131634664, + "center": [ + 2243.374176019357, + 5254.8325440677345 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556755", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.000746255077, + "min_y": 5301.032789618481, + "max_x": 2272.000746255077, + "max_y": 5306.869714493307, + "center": [ + 2272.000746255077, + 5303.951252055894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5306.869714493307 + ], + [ + 2272.000746255077, + 5301.032789618481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556756", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5305.398866250149, + "max_x": 2272.000746255077, + "max_y": 5306.379431745588, + "center": [ + 2271.5104635073567, + 5305.889148997869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5305.398866250149 + ], + [ + 2271.020180759637, + 5306.379431745588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556757", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5304.705501738926, + "max_x": 2272.000746255077, + "max_y": 5305.686067234365, + "center": [ + 2271.5104635073567, + 5305.195784486645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5304.705501738926 + ], + [ + 2271.020180759637, + 5305.686067234365 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556758", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5304.012137227704, + "max_x": 2272.000746255077, + "max_y": 5304.992702723143, + "center": [ + 2271.5104635073567, + 5304.502419975424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5304.012137227704 + ], + [ + 2271.020180759637, + 5304.992702723143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556759", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5303.31877271648, + "max_x": 2272.000746255077, + "max_y": 5304.299338211919, + "center": [ + 2271.5104635073567, + 5303.8090554642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5303.31877271648 + ], + [ + 2271.020180759637, + 5304.299338211919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55675A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5302.625408205257, + "max_x": 2272.000746255077, + "max_y": 5303.605973700697, + "center": [ + 2271.5104635073567, + 5303.115690952977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5302.625408205257 + ], + [ + 2271.020180759637, + 5303.605973700697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55675B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5301.932043694035, + "max_x": 2272.000746255077, + "max_y": 5302.912609189475, + "center": [ + 2271.5104635073567, + 5302.422326441755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.000746255077, + 5301.932043694035 + ], + [ + 2271.020180759637, + 5302.912609189475 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55675C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2274.101433796027, + "min_y": 5301.455727268856, + "max_x": 2277.6850541172857, + "max_y": 5302.948902402714, + "center": [ + 2275.893243956656, + 5302.202314835786 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55675D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2373.495741983744, + "min_y": 5324.968591065145, + "max_x": 2373.525312857586, + "max_y": 5324.968591065145, + "center": [ + 2373.5105274206653, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.525312857586, + 5324.968591065145 + ], + [ + 2373.495741983744, + 5324.968591065145 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55675E", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2389.699613587397, + "min_y": 5332.577498993335, + "max_x": 2389.699613587397, + "max_y": 5336.162350492564, + "center": [ + 2389.699613587397, + 5334.3699247429495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.699613587397, + 5332.577498993335 + ], + [ + 2389.699613587397, + 5336.162350492564 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55675F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2391.228573356225, + "min_y": 5324.970432905241, + "max_x": 2392.334085035489, + "max_y": 5324.971059814766, + "center": [ + 2391.781329195857, + 5324.970746360003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.228573356225, + 5324.971059814766 + ], + [ + 2392.334085035489, + 5324.970432905241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556760", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2270.706110943606, + "min_y": 5207.635235143038, + "max_x": 2270.706110943606, + "max_y": 5208.773359835539, + "center": [ + 2270.706110943606, + 5208.204297489288 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2270.706110943606, + 5208.773359835539 + ], + [ + 2270.706110943606, + 5207.635235143038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556761", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2252.309511289006, + "min_y": 5351.304537139588, + "max_x": 2258.03364007866, + "max_y": 5351.304537139588, + "center": [ + 2255.171575683833, + 5351.304537139588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2252.309511289006, + 5351.304537139588 + ], + [ + 2258.03364007866, + 5351.304537139588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556762", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2399.495382557017, + "min_y": 5409.311211928287, + "max_x": 2400.2939024123693, + "max_y": 5410.109731783639, + "center": [ + 2399.894642484693, + 5409.710471855963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.894642484693, + 5409.710471855963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556763", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.481681427157, + "min_y": 5409.086733771502, + "max_x": 2398.481681427157, + "max_y": 5410.334209940428, + "center": [ + 2398.481681427157, + 5409.710471855965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.481681427157, + 5409.086733771502 + ], + [ + 2398.481681427157, + 5410.334209940428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556764", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.307603542235, + "min_y": 5409.086733771502, + "max_x": 2401.307603542235, + "max_y": 5410.334209940428, + "center": [ + 2401.307603542235, + 5409.710471855965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.307603542235, + 5409.086733771502 + ], + [ + 2401.307603542235, + 5410.334209940428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556765", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5409.086733771502, + "max_x": 2399.552089895356, + "max_y": 5409.50537136014, + "center": [ + 2399.2024920325925, + 5409.296052565821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.552089895356, + 5409.50537136014 + ], + [ + 2398.852894169829, + 5409.086733771502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556766", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5409.086733771502, + "max_x": 2398.852894169829, + "max_y": 5410.334209940428, + "center": [ + 2398.852894169829, + 5409.710471855965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.852894169829, + 5409.086733771502 + ], + [ + 2398.852894169829, + 5410.334209940428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556767", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5409.915572351787, + "max_x": 2399.552089895356, + "max_y": 5410.334209940428, + "center": [ + 2399.2024920325925, + 5410.124891146108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.852894169829, + 5410.334209940428 + ], + [ + 2399.552089895356, + 5409.915572351787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556768", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.23719507403, + "min_y": 5409.086733771502, + "max_x": 2400.93639079956, + "max_y": 5409.505371360143, + "center": [ + 2400.586792936795, + 5409.296052565822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.23719507403, + 5409.505371360143 + ], + [ + 2400.93639079956, + 5409.086733771502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.93639079956, + "min_y": 5409.086733771502, + "max_x": 2400.93639079956, + "max_y": 5410.334209940428, + "center": [ + 2400.93639079956, + 5409.710471855965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.93639079956, + 5409.086733771502 + ], + [ + 2400.93639079956, + 5410.334209940428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.23719507403, + "min_y": 5409.915572351787, + "max_x": 2400.93639079956, + "max_y": 5410.334209940428, + "center": [ + 2400.586792936795, + 5410.124891146108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.93639079956, + 5410.334209940428 + ], + [ + 2400.23719507403, + 5409.915572351787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2399.495382557017, + "min_y": 5426.474333659325, + "max_x": 2400.2939024123693, + "max_y": 5427.272853514677, + "center": [ + 2399.894642484693, + 5426.873593587001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.894642484693, + 5426.873593587001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.481681427157, + "min_y": 5426.24985550254, + "max_x": 2398.481681427157, + "max_y": 5427.497331671465, + "center": [ + 2398.481681427157, + 5426.873593587003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.481681427157, + 5426.24985550254 + ], + [ + 2398.481681427157, + 5427.497331671465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.307603542235, + "min_y": 5426.24985550254, + "max_x": 2401.307603542235, + "max_y": 5427.497331671465, + "center": [ + 2401.307603542235, + 5426.873593587003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.307603542235, + 5426.24985550254 + ], + [ + 2401.307603542235, + 5427.497331671465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5426.24985550254, + "max_x": 2399.552089895356, + "max_y": 5426.668493091177, + "center": [ + 2399.2024920325925, + 5426.459174296859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.552089895356, + 5426.668493091177 + ], + [ + 2398.852894169829, + 5426.24985550254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55676F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5426.24985550254, + "max_x": 2398.852894169829, + "max_y": 5427.497331671465, + "center": [ + 2398.852894169829, + 5426.873593587003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.852894169829, + 5426.24985550254 + ], + [ + 2398.852894169829, + 5427.497331671465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556770", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2398.852894169829, + "min_y": 5427.078694082825, + "max_x": 2399.552089895356, + "max_y": 5427.497331671465, + "center": [ + 2399.2024920325925, + 5427.288012877145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2398.852894169829, + 5427.497331671465 + ], + [ + 2399.552089895356, + 5427.078694082825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556771", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.23719507403, + "min_y": 5426.24985550254, + "max_x": 2400.93639079956, + "max_y": 5426.668493091181, + "center": [ + 2400.586792936795, + 5426.4591742968605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.23719507403, + 5426.668493091181 + ], + [ + 2400.93639079956, + 5426.24985550254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556772", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.93639079956, + "min_y": 5426.24985550254, + "max_x": 2400.93639079956, + "max_y": 5427.497331671465, + "center": [ + 2400.93639079956, + 5426.873593587003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.93639079956, + 5426.24985550254 + ], + [ + 2400.93639079956, + 5427.497331671465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556773", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.23719507403, + "min_y": 5427.078694082825, + "max_x": 2400.93639079956, + "max_y": 5427.497331671465, + "center": [ + 2400.586792936795, + 5427.288012877145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.93639079956, + 5427.497331671465 + ], + [ + 2400.23719507403, + 5427.078694082825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556774", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2401.307603542235, + "min_y": 5426.873593587002, + "max_x": 2421.730039294039, + "max_y": 5426.92025160944, + "center": [ + 2411.518821418137, + 5426.896922598221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.307603542235, + 5426.873593587002 + ], + [ + 2421.730039294039, + 5426.92025160944 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556775", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2401.307603542235, + "min_y": 5409.710471855611, + "max_x": 2421.730039294157, + "max_y": 5409.710471855918, + "center": [ + 2411.5188214181962, + 5409.710471855764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.307603542235, + 5409.710471855918 + ], + [ + 2421.730039294157, + 5409.710471855611 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556776", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.330802354692, + "max_x": 2162.749013419913, + "max_y": 5218.888851104363, + "center": [ + 2162.749013419913, + 5217.609826729527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5218.888851104363 + ], + [ + 2162.749013419913, + 5216.330802354692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556777", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.330802354692, + "max_x": 2164.013006736798, + "max_y": 5216.330802354692, + "center": [ + 2163.3810100783558, + 5216.330802354692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5216.330802354692 + ], + [ + 2164.013006736798, + 5216.330802354692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556778", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.013006736798, + "min_y": 5216.330802354692, + "max_x": 2164.013006736798, + "max_y": 5218.888851104363, + "center": [ + 2164.013006736798, + 5217.609826729527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5216.330802354692 + ], + [ + 2164.013006736798, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556779", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5218.338927809976, + "max_x": 2163.298936714297, + "max_y": 5218.888851104363, + "center": [ + 2163.023975067105, + 5218.6138894571695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5218.338927809976 + ], + [ + 2163.298936714297, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5217.785590725235, + "max_x": 2163.852273799041, + "max_y": 5218.888851104363, + "center": [ + 2163.300643609477, + 5218.337220914799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5217.785590725235 + ], + [ + 2163.852273799041, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5217.232253640483, + "max_x": 2164.013006736798, + "max_y": 5218.496246957374, + "center": [ + 2163.3810100783558, + 5217.864250298928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5217.232253640483 + ], + [ + 2164.013006736798, + 5218.496246957374 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.678916555743, + "max_x": 2164.013006736798, + "max_y": 5217.94290987263, + "center": [ + 2163.3810100783558, + 5217.310913214186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.749013419913, + 5216.678916555743 + ], + [ + 2164.013006736798, + 5217.94290987263 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.954236303599, + "min_y": 5216.330802354692, + "max_x": 2164.013006736798, + "max_y": 5217.389572787887, + "center": [ + 2163.4836215201985, + 5216.86018757129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.954236303599, + 5216.330802354692 + ], + [ + 2164.013006736798, + 5217.389572787887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.507573388343, + "min_y": 5216.330802354692, + "max_x": 2164.013006736798, + "max_y": 5216.836235703141, + "center": [ + 2163.7602900625707, + 5216.583519028916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.507573388343, + 5216.330802354692 + ], + [ + 2164.013006736798, + 5216.836235703141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55677F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.330802354692, + "max_x": 2163.065080556276, + "max_y": 5216.646869491054, + "center": [ + 2162.9070469880944, + 5216.4888359228735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.065080556276, + 5216.330802354692 + ], + [ + 2162.749013419913, + 5216.646869491054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556780", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.330802354692, + "max_x": 2163.618417641016, + "max_y": 5217.200206575797, + "center": [ + 2163.1837155304647, + 5216.765504465245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.618417641016, + 5216.330802354692 + ], + [ + 2162.749013419913, + 5217.200206575797 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556781", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5216.48955034365, + "max_x": 2164.013006736798, + "max_y": 5217.75354366054, + "center": [ + 2163.3810100783558, + 5217.121547002095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5216.48955034365 + ], + [ + 2162.749013419913, + 5217.75354366054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556782", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5217.042887428396, + "max_x": 2164.013006736798, + "max_y": 5218.306880745282, + "center": [ + 2163.3810100783558, + 5217.674884086839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5217.042887428396 + ], + [ + 2162.749013419913, + 5218.306880745282 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556783", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2162.749013419913, + "min_y": 5217.59622451314, + "max_x": 2164.013006736798, + "max_y": 5218.860217830023, + "center": [ + 2163.3810100783558, + 5218.228221171582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5217.59622451314 + ], + [ + 2162.749013419913, + 5218.860217830023 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556784", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.273717230322, + "min_y": 5218.149561597885, + "max_x": 2164.013006736798, + "max_y": 5218.888851104363, + "center": [ + 2163.6433619835598, + 5218.519206351124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5218.149561597885 + ], + [ + 2163.273717230322, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556785", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.827054315063, + "min_y": 5218.702898682625, + "max_x": 2164.013006736798, + "max_y": 5218.888851104363, + "center": [ + 2163.9200305259305, + 5218.795874893494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.013006736798, + 5218.702898682625 + ], + [ + 2163.827054315063, + 5218.888851104363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556786", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2228.93511769879, + "min_y": 5250.429328501866, + "max_x": 2230.522948025583, + "max_y": 5250.429328501866, + "center": [ + 2229.7290328621866, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.522948025583, + 5250.429328501866 + ], + [ + 2228.93511769879, + 5250.429328501866 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556787", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2225.195900193317, + "min_y": 5249.807679972325, + "max_x": 2225.195902672355, + "max_y": 5251.050977031407, + "center": [ + 2225.195901432836, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2225.195902672355, + 5251.050977031407 + ], + [ + 2225.195900193317, + 5249.807679972325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556788", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.256778979913, + "min_y": 5249.807685832701, + "max_x": 2222.256781458954, + "max_y": 5251.050982891801, + "center": [ + 2222.2567802194335, + 5250.429334362251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.256781458954, + 5251.050982891801 + ], + [ + 2222.256778979913, + 5249.807685832701 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556789", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2224.727518394403, + "min_y": 5249.52253085495, + "max_x": 2224.727520785049, + "max_y": 5251.320765924288, + "center": [ + 2224.727519589726, + 5250.421648389619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2224.727520785049, + 5251.320765924288 + ], + [ + 2224.727518394403, + 5249.52253085495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55678A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.72504398527, + "min_y": 5249.522534847733, + "max_x": 2222.725046396328, + "max_y": 5251.336123714373, + "center": [ + 2222.725045190799, + 5250.429329281053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.725046396328, + 5251.336123714373 + ], + [ + 2222.72504398527, + 5249.522534847733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55678B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.725043985274, + "min_y": 5249.52253085495, + "max_x": 2224.727518394403, + "max_y": 5249.522534847733, + "center": [ + 2223.7262811898386, + 5249.522532851342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.725043985274, + 5249.522534847733 + ], + [ + 2224.727518394403, + 5249.52253085495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55678C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.725043985274, + "min_y": 5251.336123714359, + "max_x": 2224.727518394403, + "max_y": 5251.336127707144, + "center": [ + 2223.7262811898386, + 5251.336125710752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.725043985274, + 5251.336123714359 + ], + [ + 2224.727518394403, + 5251.336127707144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55678D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2227.548377002033, + "min_y": 5243.668161089045, + "max_x": 2227.548377002033, + "max_y": 5244.7682691635, + "center": [ + 2227.548377002033, + 5244.218215126272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.548377002033, + 5243.668161089045 + ], + [ + 2227.548377002033, + 5244.7682691635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55678E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5243.668161089045, + "max_x": 2228.094510910778, + "max_y": 5243.668161089045, + "center": [ + 2227.545739631313, + 5243.668161089045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.094510910778, + 5243.668161089045 + ], + [ + 2226.996968351848, + 5243.668161089045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55678F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5241.250053463484, + "max_x": 2228.094510910778, + "max_y": 5241.250053463484, + "center": [ + 2227.545739631313, + 5241.250053463484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.996968351848, + 5241.250053463484 + ], + [ + 2228.094510910778, + 5241.250053463484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556790", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2227.1918292073506, + "min_y": 5242.146323158196, + "max_x": 2227.894375313829, + "max_y": 5242.848869264674, + "center": [ + 2227.54310226059, + 5242.497596211435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.54310226059, + 5242.497596211435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556791", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5241.576650310502, + "max_x": 2227.366550471941, + "max_y": 5242.19391508943, + "center": [ + 2227.1817594118947, + 5241.885282699966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.366550471941, + 5242.19391508943 + ], + [ + 2226.996968351848, + 5241.576650310502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556792", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5241.576650310502, + "max_x": 2228.094510910778, + "max_y": 5241.576650310502, + "center": [ + 2227.545739631313, + 5241.576650310502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.996968351848, + 5241.576650310502 + ], + [ + 2228.094510910778, + 5241.576650310502 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556793", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.723551818368, + "min_y": 5241.576650310502, + "max_x": 2228.094510910778, + "max_y": 5242.196214866569, + "center": [ + 2227.909031364573, + 5241.886432588535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.094510910778, + 5241.576650310502 + ], + [ + 2227.723551818368, + 5242.196214866569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556794", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.996968351848, + "min_y": 5243.409732400149, + "max_x": 2228.094510910778, + "max_y": 5243.409732400149, + "center": [ + 2227.545739631313, + 5243.409732400149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.996968351848, + 5243.409732400149 + ], + [ + 2228.094510910778, + 5243.409732400149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556795", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.726189189092, + "min_y": 5242.794572700186, + "max_x": 2228.094510910778, + "max_y": 5243.409732400149, + "center": [ + 2227.910350049935, + 5243.102152550167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.094510910778, + 5243.409732400149 + ], + [ + 2227.726189189092, + 5242.794572700186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556796", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.991693610401, + "min_y": 5242.794572700186, + "max_x": 2227.360015332086, + "max_y": 5243.409732400149, + "center": [ + 2227.1758544712434, + 5243.102152550167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.991693610401, + 5243.409732400149 + ], + [ + 2227.360015332086, + 5242.794572700186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556797", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2229.750912037671, + "min_y": 5244.768269163493, + "max_x": 2229.750912037671, + "max_y": 5250.429328501866, + "center": [ + 2229.750912037671, + 5247.59879883268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2229.750912037671, + 5244.768269163493 + ], + [ + 2229.750912037671, + 5250.429328501866 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556798", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2216.131854580731, + "min_y": 5244.7682691635, + "max_x": 2216.131854580731, + "max_y": 5250.429328501866, + "center": [ + 2216.131854580731, + 5247.598798832683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2216.131854580731, + 5250.429328501866 + ], + [ + 2216.131854580731, + 5244.7682691635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556799", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2219.44127424634, + "min_y": 5250.429328501866, + "max_x": 2222.256780219422, + "max_y": 5250.429328501866, + "center": [ + 2220.849027232881, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.256780219422, + 5250.429328501866 + ], + [ + 2219.44127424634, + 5250.429328501866 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55679A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2223.229197442758, + "min_y": 5249.876640701573, + "max_x": 2223.8998426516346, + "max_y": 5250.994382716367, + "center": [ + 2223.5645200471963, + 5250.43551170897 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55679B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2219.44127424634, + "min_y": 5249.8805572224, + "max_x": 2219.44127424634, + "max_y": 5250.978099781331, + "center": [ + 2219.44127424634, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2219.44127424634, + 5249.8805572224 + ], + [ + 2219.44127424634, + 5250.978099781331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55679C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2217.023166620779, + "min_y": 5249.8805572224, + "max_x": 2217.023166620779, + "max_y": 5250.978099781331, + "center": [ + 2217.023166620779, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2217.023166620779, + 5250.978099781331 + ], + [ + 2217.023166620779, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55679D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2217.9194363154907, + "min_y": 5250.080692819349, + "max_x": 2218.6219824219693, + "max_y": 5250.783238925827, + "center": [ + 2218.27070936873, + 5250.431965872588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2218.27070936873, + 5250.431965872588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55679E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2217.349763467797, + "min_y": 5250.608517661238, + "max_x": 2217.967028246726, + "max_y": 5250.978099781331, + "center": [ + 2217.6583958572614, + 5250.793308721284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2217.967028246726, + 5250.608517661238 + ], + [ + 2217.349763467797, + 5250.978099781331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55679F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2217.349763467797, + "min_y": 5249.8805572224, + "max_x": 2217.349763467797, + "max_y": 5250.978099781331, + "center": [ + 2217.349763467797, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2217.349763467797, + 5250.978099781331 + ], + [ + 2217.349763467797, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2217.349763467797, + "min_y": 5249.8805572224, + "max_x": 2217.969328023864, + "max_y": 5250.25151631481, + "center": [ + 2217.6595457458307, + 5250.066036768605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2217.349763467797, + 5249.8805572224 + ], + [ + 2217.969328023864, + 5250.25151631481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2219.182845557444, + "min_y": 5249.8805572224, + "max_x": 2219.182845557444, + "max_y": 5250.978099781331, + "center": [ + 2219.182845557444, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2219.182845557444, + 5250.978099781331 + ], + [ + 2219.182845557444, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2218.567685857481, + "min_y": 5249.8805572224, + "max_x": 2219.182845557444, + "max_y": 5250.248878944087, + "center": [ + 2218.875265707463, + 5250.064718083244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2219.182845557444, + 5249.8805572224 + ], + [ + 2218.567685857481, + 5250.248878944087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2218.567685857481, + "min_y": 5250.615052801092, + "max_x": 2219.182845557444, + "max_y": 5250.983374522778, + "center": [ + 2218.875265707463, + 5250.799213661935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2219.182845557444, + 5250.983374522778 + ], + [ + 2218.567685857481, + 5250.615052801092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2228.93511769879, + "min_y": 5249.8805572224, + "max_x": 2228.93511769879, + "max_y": 5250.978099781331, + "center": [ + 2228.93511769879, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.93511769879, + 5249.8805572224 + ], + [ + 2228.93511769879, + 5250.978099781331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.517010073228, + "min_y": 5249.8805572224, + "max_x": 2226.517010073228, + "max_y": 5250.978099781331, + "center": [ + 2226.517010073228, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.517010073228, + 5250.978099781331 + ], + [ + 2226.517010073228, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2227.41327976794, + "min_y": 5250.080692819349, + "max_x": 2228.1158258744185, + "max_y": 5250.783238925827, + "center": [ + 2227.764552821179, + 5250.431965872588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.764552821179, + 5250.431965872588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.843606920247, + "min_y": 5250.608517661238, + "max_x": 2227.460871699175, + "max_y": 5250.978099781331, + "center": [ + 2227.152239309711, + 5250.793308721284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.460871699175, + 5250.608517661238 + ], + [ + 2226.843606920247, + 5250.978099781331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.843606920247, + "min_y": 5249.8805572224, + "max_x": 2226.843606920247, + "max_y": 5250.978099781331, + "center": [ + 2226.843606920247, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.843606920247, + 5250.978099781331 + ], + [ + 2226.843606920247, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.843606920247, + "min_y": 5249.8805572224, + "max_x": 2227.463171476313, + "max_y": 5250.25151631481, + "center": [ + 2227.15338919828, + 5250.066036768605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.843606920247, + 5249.8805572224 + ], + [ + 2227.463171476313, + 5250.25151631481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2228.676689009893, + "min_y": 5249.8805572224, + "max_x": 2228.676689009893, + "max_y": 5250.978099781331, + "center": [ + 2228.676689009893, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.676689009893, + 5250.978099781331 + ], + [ + 2228.676689009893, + 5249.8805572224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2228.061529309931, + "min_y": 5249.8805572224, + "max_x": 2228.676689009893, + "max_y": 5250.248878944087, + "center": [ + 2228.369109159912, + 5250.064718083244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.676689009893, + 5249.8805572224 + ], + [ + 2228.061529309931, + 5250.248878944087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2228.061529309931, + "min_y": 5250.615052801092, + "max_x": 2228.676689009893, + "max_y": 5250.983374522778, + "center": [ + 2228.369109159912, + 5250.799213661935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.676689009893, + 5250.983374522778 + ], + [ + 2228.061529309931, + 5250.615052801092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2224.72523338783, + "min_y": 5244.24587544119, + "max_x": 2224.725235471058, + "max_y": 5245.290662885802, + "center": [ + 2224.725234429444, + 5244.768269163496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2224.725235471058, + 5245.290662885802 + ], + [ + 2224.72523338783, + 5244.24587544119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.255383628667, + "min_y": 5244.24588036588, + "max_x": 2222.255385711895, + "max_y": 5245.290667810504, + "center": [ + 2222.2553846702813, + 5244.768274088192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.255385711895, + 5245.290667810504 + ], + [ + 2222.255383628667, + 5244.24588036588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.648885642118, + "min_y": 5244.933923123929, + "max_x": 2223.213595614489, + "max_y": 5245.272040023113, + "center": [ + 2222.9312406283034, + 5245.102981573521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.648885642118, + 5245.272040023113 + ], + [ + 2223.213595614489, + 5244.933923123929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2223.766925265111, + "min_y": 5244.264503228781, + "max_x": 2224.331635237482, + "max_y": 5244.60262012796, + "center": [ + 2224.0492802512963, + 5244.43356167837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2223.766925265111, + 5244.60262012796 + ], + [ + 2224.331635237482, + 5244.264503228781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2224.331635237482, + "min_y": 5244.264503228781, + "max_x": 2224.331637246428, + "max_y": 5245.272036667827, + "center": [ + 2224.3316362419546, + 5244.768269948304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2224.331637246428, + 5245.272036667827 + ], + [ + 2224.331635237482, + 5244.264503228781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.648883633169, + "min_y": 5244.264506584062, + "max_x": 2222.648885642118, + "max_y": 5245.272040023113, + "center": [ + 2222.6488846376433, + 5244.768273303587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.648885642118, + 5245.272040023113 + ], + [ + 2222.648883633169, + 5244.264506584062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2222.648883633169, + "min_y": 5244.264506584062, + "max_x": 2223.213594953898, + "max_y": 5244.602621231265, + "center": [ + 2222.9312392935335, + 5244.4335639076635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.648883633169, + 5244.264506584062 + ], + [ + 2223.213594953898, + 5244.602621231265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2223.766925925702, + "min_y": 5244.933922020628, + "max_x": 2224.331637246428, + "max_y": 5245.272036667827, + "center": [ + 2224.049281586065, + 5245.102979344228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2223.766925925702, + 5244.933922020628 + ], + [ + 2224.331637246428, + 5245.272036667827 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2223.1677951791166, + "min_y": 5244.445806365263, + "max_x": 2223.812725700481, + "max_y": 5245.090736886627, + "center": [ + 2223.490260439799, + 5244.768271625945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2223.490260439799, + 5244.768271625945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B6", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2220.849027232882, + "min_y": 5249.32922042741, + "max_x": 2220.849027232882, + "max_y": 5250.429328501866, + "center": [ + 2220.849027232882, + 5249.879274464638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.849027232882, + 5249.32922042741 + ], + [ + 2220.849027232882, + 5250.429328501866 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567B7", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2224.725234429445, + "min_y": 5244.768269163493, + "max_x": 2229.750912037671, + "max_y": 5244.768269163495, + "center": [ + 2227.2380732335578, + 5244.768269163494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2229.750912037671, + 5244.768269163493 + ], + [ + 2224.725234429445, + 5244.768269163495 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5249.32922042741, + "max_x": 2221.395161141626, + "max_y": 5249.32922042741, + "center": [ + 2220.8463898621612, + 5249.32922042741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.395161141626, + 5249.32922042741 + ], + [ + 2220.297618582696, + 5249.32922042741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5246.911112801848, + "max_x": 2221.395161141626, + "max_y": 5246.911112801848, + "center": [ + 2220.8463898621612, + 5246.911112801848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.297618582696, + 5246.911112801848 + ], + [ + 2221.395161141626, + 5246.911112801848 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2220.4924794381986, + "min_y": 5247.8073824965595, + "max_x": 2221.1950255446773, + "max_y": 5248.509928603038, + "center": [ + 2220.843752491438, + 5248.158655549799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.843752491438, + 5248.158655549799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5247.237709648866, + "max_x": 2220.667200702789, + "max_y": 5247.854974427794, + "center": [ + 2220.482409642743, + 5247.54634203833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.667200702789, + 5247.854974427794 + ], + [ + 2220.297618582696, + 5247.237709648866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5247.237709648866, + "max_x": 2221.395161141626, + "max_y": 5247.237709648866, + "center": [ + 2220.8463898621612, + 5247.237709648866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.297618582696, + 5247.237709648866 + ], + [ + 2221.395161141626, + 5247.237709648866 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2221.024202049216, + "min_y": 5247.237709648866, + "max_x": 2221.395161141626, + "max_y": 5247.857274204934, + "center": [ + 2221.209681595421, + 5247.5474919269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.395161141626, + 5247.237709648866 + ], + [ + 2221.024202049216, + 5247.857274204934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.297618582696, + "min_y": 5249.070791738514, + "max_x": 2221.395161141626, + "max_y": 5249.070791738514, + "center": [ + 2220.8463898621612, + 5249.070791738514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.297618582696, + 5249.070791738514 + ], + [ + 2221.395161141626, + 5249.070791738514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2221.02683941994, + "min_y": 5248.455632038551, + "max_x": 2221.395161141626, + "max_y": 5249.070791738514, + "center": [ + 2221.211000280783, + 5248.763211888532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.395161141626, + 5249.070791738514 + ], + [ + 2221.02683941994, + 5248.455632038551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.292343841249, + "min_y": 5248.455632038551, + "max_x": 2220.660665562935, + "max_y": 5249.070791738514, + "center": [ + 2220.476504702092, + 5248.763211888532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.292343841249, + 5249.070791738514 + ], + [ + 2220.660665562935, + 5248.455632038551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567C1", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2222.597428159643, + "min_y": 5247.866421337751, + "max_x": 2224.613214590351, + "max_y": 5248.986302688144, + "center": [ + 2223.6053213749974, + 5248.426362012948 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567C2", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2225.195904541088, + "min_y": 5250.429328501866, + "max_x": 2226.517010073228, + "max_y": 5250.429328501866, + "center": [ + 2225.856457307158, + 5250.429328501866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.517010073228, + 5250.429328501866 + ], + [ + 2225.195904541088, + 5250.429328501866 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567C3", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2213.546653519083, + "min_y": 5250.429328501866, + "max_x": 2217.023166620779, + "max_y": 5250.434500063378, + "center": [ + 2215.2849100699314, + 5250.4319142826225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2217.023166620779, + 5250.429328501866 + ], + [ + 2213.546653519083, + 5250.434500063378 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567C4", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2221.470698540835, + "min_y": 5244.768269163497, + "max_x": 2222.25538467027, + "max_y": 5244.768269163497, + "center": [ + 2221.8630416055526, + 5244.768269163497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2222.25538467027, + 5244.768269163497 + ], + [ + 2221.470698540835, + 5244.768269163497 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.733596782822, + "min_y": 5253.235691507461, + "max_x": 2263.433534108106, + "max_y": 5259.031421076126, + "center": [ + 2261.583565445464, + 5256.133556291794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.733596782822, + 5253.235691507461 + ], + [ + 2263.433534108106, + 5259.031421076126 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5567C6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2264.194239560645, + "min_y": 5265.543354737692, + "max_x": 2267.8218488213474, + "max_y": 5266.551023976776, + "center": [ + 2266.0080441909963, + 5266.047189357234 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567C7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2265.599113268763, + "min_y": 5267.359883779093, + "max_x": 2266.808316355664, + "max_y": 5268.367553018177, + "center": [ + 2266.2037148122135, + 5267.863718398636 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567C8", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2362.373951576634, + "min_y": 5369.397477753997, + "max_x": 2363.9414367013715, + "max_y": 5370.703715357945, + "center": [ + 2363.157694139003, + 5370.050596555971 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567C9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2385.617019736514, + "min_y": 5369.09145132067, + "max_x": 2387.1845048612513, + "max_y": 5370.397688924618, + "center": [ + 2386.400762298883, + 5369.744570122644 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567CA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2378.434185152642, + "min_y": 5348.254262981285, + "max_x": 2380.001670277379, + "max_y": 5349.560500585233, + "center": [ + 2379.217927715011, + 5348.90738178326 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567CB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2328.183625609481, + "min_y": 5362.02330667751, + "max_x": 2330.8713408504254, + "max_y": 5363.516481811368, + "center": [ + 2329.5274832299533, + 5362.769894244439 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567CC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2333.666356657438, + "min_y": 5362.911152632751, + "max_x": 2336.3540718983822, + "max_y": 5364.404327766609, + "center": [ + 2335.01021427791, + 5363.65774019968 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567CD", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2240.773433097838, + "min_y": 5271.627833679247, + "max_x": 2245.860148817657, + "max_y": 5271.627833679247, + "center": [ + 2243.3167909577473, + 5271.627833679247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.860148817657, + 5271.627833679247 + ], + [ + 2240.773433097838, + 5271.627833679247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567CE", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2387.445468488001, + "min_y": 5342.127716076346, + "max_x": 2387.445468488001, + "max_y": 5351.581830725144, + "center": [ + 2387.445468488001, + 5346.854773400744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468488001, + 5351.581830725144 + ], + [ + 2387.445468488001, + 5342.127716076346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5567CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5307.86798851021, + "max_x": 2484.45120802359, + "max_y": 5308.293996245765, + "center": [ + 2484.45120802359, + 5308.080992377987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5307.86798851021 + ], + [ + 2484.45120802359, + 5308.293996245765 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5308.52555358876, + "max_x": 2484.45120802359, + "max_y": 5309.122210559102, + "center": [ + 2484.45120802359, + 5308.823882073932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5308.52555358876 + ], + [ + 2484.45120802359, + 5309.122210559102 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D1", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2484.124966670126, + "min_y": 5308.293996245769, + "max_x": 2484.777449377054, + "max_y": 5308.293996245769, + "center": [ + 2484.45120802359, + 5308.293996245769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.124966670126, + 5308.293996245769 + ], + [ + 2484.777449377054, + 5308.293996245769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567D2", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2484.124966670126, + "min_y": 5308.52555358876, + "max_x": 2484.777449377054, + "max_y": 5308.52555358876, + "center": [ + 2484.45120802359, + 5308.52555358876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.124966670126, + 5308.52555358876 + ], + [ + 2484.777449377054, + 5308.52555358876 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5303.74782757938, + "max_x": 2489.759171914979, + "max_y": 5303.74782757938, + "center": [ + 2489.254568374673, + 5303.74782757938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.749964834367, + 5303.74782757938 + ], + [ + 2489.759171914979, + 5303.74782757938 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5296.822617436676, + "max_x": 2489.759171914979, + "max_y": 5296.822617436676, + "center": [ + 2489.254568374673, + 5296.822617436676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.749964834367, + 5296.822617436676 + ], + [ + 2489.759171914979, + 5296.822617436676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5303.394689423095, + "max_x": 2489.759171914979, + "max_y": 5304.075782027894, + "center": [ + 2489.759171914979, + 5303.735235725495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5303.394689423095 + ], + [ + 2489.759171914979, + 5304.075782027894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5303.394689423095, + "max_x": 2489.759171914979, + "max_y": 5304.100965735656, + "center": [ + 2489.759171914979, + 5303.747827579376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5303.394689423095 + ], + [ + 2489.759171914979, + 5304.100965735656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2490.312628854859, + "min_y": 5303.529841063156, + "max_x": 2490.7486018873024, + "max_y": 5303.965814095599, + "center": [ + 2490.530615371081, + 5303.747827579377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.530615371081, + 5303.747827579377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5303.394689423095, + "max_x": 2489.759171914979, + "max_y": 5304.100965735656, + "center": [ + 2489.759171914979, + 5303.747827579376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5303.394689423095 + ], + [ + 2489.759171914979, + 5304.100965735656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.302058827182, + "min_y": 5303.394689423095, + "max_x": 2491.302058827182, + "max_y": 5304.100965735656, + "center": [ + 2491.302058827182, + 5303.747827579376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.302058827182, + 5303.394689423095 + ], + [ + 2491.302058827182, + 5304.100965735656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5303.859807619096, + "max_x": 2490.343589725889, + "max_y": 5304.088373881775, + "center": [ + 2490.152717527355, + 5303.974090750435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.343589725889, + 5303.859807619096 + ], + [ + 2489.961845328821, + 5304.088373881775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5303.407281276976, + "max_x": 2489.961845328821, + "max_y": 5304.088373881775, + "center": [ + 2489.961845328821, + 5303.747827579376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.961845328821, + 5304.088373881775 + ], + [ + 2489.961845328821, + 5303.407281276976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5303.407281276976, + "max_x": 2490.343589725889, + "max_y": 5303.635847539657, + "center": [ + 2490.152717527355, + 5303.521564408316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.961845328821, + 5303.407281276976 + ], + [ + 2490.343589725889, + 5303.635847539657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.717641016268, + "min_y": 5303.859807619096, + "max_x": 2491.09938541334, + "max_y": 5304.088373881775, + "center": [ + 2490.908513214804, + 5303.974090750435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.717641016268, + 5303.859807619096 + ], + [ + 2491.09938541334, + 5304.088373881775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.09938541334, + "min_y": 5303.407281276976, + "max_x": 2491.09938541334, + "max_y": 5304.088373881775, + "center": [ + 2491.09938541334, + 5303.747827579376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.09938541334, + 5304.088373881775 + ], + [ + 2491.09938541334, + 5303.407281276976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.717641016268, + "min_y": 5303.407281276976, + "max_x": 2491.09938541334, + "max_y": 5303.635847539657, + "center": [ + 2490.908513214804, + 5303.521564408316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.09938541334, + 5303.407281276976 + ], + [ + 2490.717641016268, + 5303.635847539657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5296.469479280397, + "max_x": 2489.759171914979, + "max_y": 5297.150571885195, + "center": [ + 2489.759171914979, + 5296.810025582796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5296.469479280397 + ], + [ + 2489.759171914979, + 5297.150571885195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5296.469479280397, + "max_x": 2489.759171914979, + "max_y": 5297.175755592959, + "center": [ + 2489.759171914979, + 5296.822617436677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5296.469479280397 + ], + [ + 2489.759171914979, + 5297.175755592959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2490.312628854859, + "min_y": 5296.604630920459, + "max_x": 2490.7486018873024, + "max_y": 5297.0406039529025, + "center": [ + 2490.530615371081, + 5296.822617436681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.530615371081, + 5296.822617436681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.759171914979, + "min_y": 5296.469479280397, + "max_x": 2489.759171914979, + "max_y": 5297.175755592959, + "center": [ + 2489.759171914979, + 5296.822617436677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.759171914979, + 5296.469479280397 + ], + [ + 2489.759171914979, + 5297.175755592959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.302058827182, + "min_y": 5296.469479280397, + "max_x": 2491.302058827182, + "max_y": 5297.175755592959, + "center": [ + 2491.302058827182, + 5296.822617436677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.302058827182, + 5296.469479280397 + ], + [ + 2491.302058827182, + 5297.175755592959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5296.934597476398, + "max_x": 2490.343589725889, + "max_y": 5297.163163739077, + "center": [ + 2490.152717527355, + 5297.048880607737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.343589725889, + 5296.934597476398 + ], + [ + 2489.961845328821, + 5297.163163739077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5296.482071134279, + "max_x": 2489.961845328821, + "max_y": 5297.163163739077, + "center": [ + 2489.961845328821, + 5296.822617436678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.961845328821, + 5297.163163739077 + ], + [ + 2489.961845328821, + 5296.482071134279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.961845328821, + "min_y": 5296.482071134279, + "max_x": 2490.343589725889, + "max_y": 5296.710637396959, + "center": [ + 2490.152717527355, + 5296.596354265619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.961845328821, + 5296.482071134279 + ], + [ + 2490.343589725889, + 5296.710637396959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.717641016268, + "min_y": 5296.934597476398, + "max_x": 2491.09938541334, + "max_y": 5297.163163739077, + "center": [ + 2490.908513214804, + 5297.048880607737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.717641016268, + 5296.934597476398 + ], + [ + 2491.09938541334, + 5297.163163739077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.09938541334, + "min_y": 5296.482071134279, + "max_x": 2491.09938541334, + "max_y": 5297.163163739077, + "center": [ + 2491.09938541334, + 5296.822617436678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.09938541334, + 5297.163163739077 + ], + [ + 2491.09938541334, + 5296.482071134279 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.717641016268, + "min_y": 5296.482071134279, + "max_x": 2491.09938541334, + "max_y": 5296.710637396959, + "center": [ + 2490.908513214804, + 5296.596354265619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.09938541334, + 5296.482071134279 + ], + [ + 2490.717641016268, + 5296.710637396959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567EB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2487.207736058128, + "min_y": 5312.923594221969, + "max_x": 2499.329790188033, + "max_y": 5312.923594221969, + "center": [ + 2493.26876312308, + 5312.923594221969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.207736058128, + 5312.923594221969 + ], + [ + 2499.329790188033, + 5312.923594221969 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567EC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2491.822697580486, + "min_y": 5288.447823012726, + "max_x": 2498.094033142689, + "max_y": 5289.940998146584, + "center": [ + 2494.9583653615873, + 5289.194410579656 + ] + }, + "raw_value": "P-10201", + "clean_value": "P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567ED", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2489.836095160468, + "min_y": 5290.693686651709, + "max_x": 2500.881890380569, + "max_y": 5290.693686651709, + "center": [ + 2495.358992770519, + 5290.693686651709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.836095160468, + 5290.693686651709 + ], + [ + 2500.881890380569, + 5290.693686651709 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5567EE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2500.881890380569, + "min_y": 5289.20453494501, + "max_x": 2502.371042087267, + "max_y": 5290.693686651709, + "center": [ + 2501.626466233918, + 5289.9491107983595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.881890380569, + 5290.693686651709 + ], + [ + 2502.371042087267, + 5289.20453494501 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5567EF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2500.881890380569, + "min_y": 5287.715383238314, + "max_x": 2502.371042087267, + "max_y": 5289.20453494501, + "center": [ + 2501.626466233918, + 5288.459959091662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2502.371042087267, + 5289.20453494501 + ], + [ + 2500.881890380569, + 5287.715383238314 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5567F0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2489.836095160468, + "min_y": 5287.715383238314, + "max_x": 2500.881890380569, + "max_y": 5287.715383238314, + "center": [ + 2495.358992770519, + 5287.715383238314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.836095160468, + 5287.715383238314 + ], + [ + 2500.881890380569, + 5287.715383238314 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5567F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.836095160468, + "min_y": 5287.715383238314, + "max_x": 2489.836095160468, + "max_y": 5290.693686651709, + "center": [ + 2489.836095160468, + 5289.204534945011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.836095160468, + 5287.715383238314 + ], + [ + 2489.836095160468, + 5290.693686651709 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567F2", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2486.044650685437, + "min_y": 5313.238766881347, + "max_x": 2498.1393692696856, + "max_y": 5314.3586482317405, + "center": [ + 2492.0920099775612, + 5313.798707556543 + ] + }, + "raw_value": "N2-10704-15A-F1A-n", + "clean_value": "N2-10704-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567F3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2400.998524643844, + "min_y": 5312.021586465086, + "max_x": 2401.000133337713, + "max_y": 5324.968706746689, + "center": [ + 2400.999328990779, + 5318.495146605888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.998524643844, + 5324.968706746689 + ], + [ + 2401.000133337713, + 5312.021586465086 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567F4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2401.000133337713, + "min_y": 5315.892740925289, + "max_x": 2403.462794531002, + "max_y": 5315.892740925289, + "center": [ + 2402.2314639343576, + 5315.892740925289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.000133337713, + 5315.892740925289 + ], + [ + 2403.462794531002, + 5315.892740925289 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5567F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.462794531002, + "min_y": 5315.243874790481, + "max_x": 2403.462794531002, + "max_y": 5316.537476956162, + "center": [ + 2403.462794531002, + 5315.890675873321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.462794531002, + 5316.537476956162 + ], + [ + 2403.462794531002, + 5315.243874790481 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.288716646079, + "min_y": 5315.266937788862, + "max_x": 2406.288716646079, + "max_y": 5316.514413957786, + "center": [ + 2406.288716646079, + 5315.890675873325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.288716646079, + 5315.266937788862 + ], + [ + 2406.288716646079, + 5316.514413957786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.462794531002, + "min_y": 5315.266937788862, + "max_x": 2403.462794531002, + "max_y": 5316.514413957786, + "center": [ + 2403.462794531002, + 5315.890675873325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.462794531002, + 5315.266937788862 + ], + [ + 2403.462794531002, + 5316.514413957786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567F8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2404.479944647652, + "min_y": 5315.493480997622, + "max_x": 2405.278464503004, + "max_y": 5316.2920008529745, + "center": [ + 2404.879204575328, + 5315.892740925298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.879204575328, + 5315.892740925298 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834007273674, + "min_y": 5315.259939431355, + "max_x": 2403.834007273674, + "max_y": 5316.521412315292, + "center": [ + 2403.834007273674, + 5315.890675873323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834007273674, + 5316.521412315292 + ], + [ + 2403.834007273674, + 5315.259939431355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.462794531002, + "min_y": 5315.259939431355, + "max_x": 2403.462794531002, + "max_y": 5316.521412315292, + "center": [ + 2403.462794531002, + 5315.890675873323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.462794531002, + 5316.521412315292 + ], + [ + 2403.462794531002, + 5315.259939431355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.288716646079, + "min_y": 5315.262004483319, + "max_x": 2406.288716646079, + "max_y": 5316.523477367261, + "center": [ + 2406.288716646079, + 5315.89274092529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.288716646079, + 5316.523477367261 + ], + [ + 2406.288716646079, + 5315.262004483319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.288716646079, + "min_y": 5315.262004483319, + "max_x": 2406.288716646079, + "max_y": 5316.523477367261, + "center": [ + 2406.288716646079, + 5315.89274092529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.288716646079, + 5316.523477367261 + ], + [ + 2406.288716646079, + 5315.262004483319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.21830817788, + "min_y": 5316.095776369148, + "max_x": 2405.917503903401, + "max_y": 5316.514413957786, + "center": [ + 2405.5679060406405, + 5316.305095163467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.21830817788, + 5316.095776369148 + ], + [ + 2405.917503903401, + 5316.514413957786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.917503903401, + "min_y": 5315.266937788862, + "max_x": 2405.917503903401, + "max_y": 5316.514413957786, + "center": [ + 2405.917503903401, + 5315.890675873325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.917503903401, + 5316.514413957786 + ], + [ + 2405.917503903401, + 5315.266937788862 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5567FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.21830817788, + "min_y": 5315.266937788862, + "max_x": 2405.917503903401, + "max_y": 5315.6855753775, + "center": [ + 2405.5679060406405, + 5315.476256583181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.917503903401, + 5315.266937788862 + ], + [ + 2405.21830817788, + 5315.6855753775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556800", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834007273674, + "min_y": 5316.094793129986, + "max_x": 2404.534845175241, + "max_y": 5316.514413957786, + "center": [ + 2404.1844262244576, + 5316.304603543886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.534845175241, + 5316.094793129986 + ], + [ + 2403.834007273674, + 5316.514413957786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556801", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834007273674, + "min_y": 5315.266937788862, + "max_x": 2403.834007273674, + "max_y": 5316.514413957786, + "center": [ + 2403.834007273674, + 5315.890675873325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834007273674, + 5316.514413957786 + ], + [ + 2403.834007273674, + 5315.266937788862 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556802", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.834007273674, + "min_y": 5315.266937788862, + "max_x": 2404.536651985992, + "max_y": 5315.687640429477, + "center": [ + 2404.185329629833, + 5315.47728910917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.834007273674, + 5315.266937788862 + ], + [ + 2404.536651985992, + 5315.687640429477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556803", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2406.289014323363, + "min_y": 5324.967561200516, + "max_x": 2424.978329306947, + "max_y": 5324.968567763614, + "center": [ + 2415.633671815155, + 5324.9680644820655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.289014323363, + 5324.967561200516 + ], + [ + 2424.978329306947, + 5324.968567763614 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556804", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2396.755196107198, + "min_y": 5324.96852435784, + "max_x": 2402.886168912851, + "max_y": 5324.968761317737, + "center": [ + 2399.8206825100247, + 5324.968642837788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2396.755196107198, + 5324.96852435784 + ], + [ + 2402.886168912851, + 5324.968761317737 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556805", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5280.845006169591, + "max_x": 2354.729905854251, + "max_y": 5280.845006169591, + "center": [ + 2353.87069071564, + 5280.845006169591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5280.845006169591 + ], + [ + 2354.729905854251, + 5280.845006169591 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.729905854251, + "min_y": 5280.340361775447, + "max_x": 2354.729905854251, + "max_y": 5281.349650563734, + "center": [ + 2354.729905854251, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854251, + 5281.349650563734 + ], + [ + 2354.729905854251, + 5280.340361775447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556807", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5280.340361775447, + "max_x": 2356.953572622779, + "max_y": 5281.349650563734, + "center": [ + 2356.953572622779, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5280.340361775447 + ], + [ + 2356.953572622779, + 5281.349650563734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556808", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5280.519553803248, + "max_x": 2356.1293722792166, + "max_y": 5281.165607938236, + "center": [ + 2355.806345211723, + 5280.842580870742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.806345211723, + 5280.842580870742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556809", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5280.340361775447, + "max_x": 2356.653237539369, + "max_y": 5280.680225671503, + "center": [ + 2356.369422385365, + 5280.510293723475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.085607231361, + 5280.680225671503 + ], + [ + 2356.653237539369, + 5280.340361775447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.653237539369, + "min_y": 5280.340361775447, + "max_x": 2356.653237539369, + "max_y": 5281.349650563734, + "center": [ + 2356.653237539369, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539369, + 5280.340361775447 + ], + [ + 2356.653237539369, + 5281.349650563734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.083492380086, + "min_y": 5281.008520418176, + "max_x": 2356.653237539369, + "max_y": 5281.349650563734, + "center": [ + 2356.368364959728, + 5281.179085490955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539369, + 5281.349650563734 + ], + [ + 2356.083492380086, + 5281.008520418176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5280.340361775447, + "max_x": 2355.533248703484, + "max_y": 5280.679066622156, + "center": [ + 2355.2504014539045, + 5280.509714198801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.533248703484, + 5280.679066622156 + ], + [ + 2354.967554204325, + 5280.340361775447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5280.340361775447, + "max_x": 2354.967554204325, + "max_y": 5281.349650563734, + "center": [ + 2354.967554204325, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204325, + 5280.340361775447 + ], + [ + 2354.967554204325, + 5281.349650563734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204325, + "min_y": 5281.010945717024, + "max_x": 2355.533248703484, + "max_y": 5281.349650563734, + "center": [ + 2355.2504014539045, + 5281.180298140379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204325, + 5281.349650563734 + ], + [ + 2355.533248703484, + 5281.010945717024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55680F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5280.845006169591, + "max_x": 2465.525690793639, + "max_y": 5280.845006169591, + "center": [ + 2411.2396317082093, + 5280.845006169591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5280.845006169591 + ], + [ + 2465.525690793639, + 5280.845006169591 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556810", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5280.845006169591, + "max_x": 2465.525690793639, + "max_y": 5311.594538733078, + "center": [ + 2465.525690793639, + 5296.219772451334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.525690793639, + 5280.845006169591 + ], + [ + 2465.525690793639, + 5311.594538733078 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.268547173611, + "min_y": 5371.539579276728, + "max_x": 2339.500227816424, + "max_y": 5371.539579276728, + "center": [ + 2338.384387495017, + 5371.539579276728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.268547173611, + 5371.539579276728 + ], + [ + 2339.500227816424, + 5371.539579276728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556812", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2336.895235788317, + "min_y": 5360.760396273705, + "max_x": 2336.895235788317, + "max_y": 5371.539579276728, + "center": [ + 2336.895235788317, + 5366.149987775216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.895235788317, + 5371.539579276728 + ], + [ + 2336.895235788317, + 5360.760396273705 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556813", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2339.873539201712, + "min_y": 5360.7603962737, + "max_x": 2339.873539201712, + "max_y": 5371.539579276728, + "center": [ + 2339.873539201712, + 5366.149987775214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.873539201712, + 5360.7603962737 + ], + [ + 2339.873539201712, + 5371.539579276728 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556814", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.895235788317, + "min_y": 5371.539579276728, + "max_x": 2339.873539201712, + "max_y": 5371.539579276728, + "center": [ + 2338.3843874950144, + 5371.539579276728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.873539201712, + 5371.539579276728 + ], + [ + 2336.895235788317, + 5371.539579276728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556815", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2336.89523578832, + "min_y": 5359.271244567005, + "max_x": 2338.384387495016, + "max_y": 5360.7603962737, + "center": [ + 2337.639811641668, + 5360.015820420353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.89523578832, + 5360.7603962737 + ], + [ + 2338.384387495016, + 5359.271244567005 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556816", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2338.384387495016, + "min_y": 5359.271244567005, + "max_x": 2339.873539201715, + "max_y": 5360.7603962737, + "center": [ + 2339.1289633483657, + 5360.015820420353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.384387495016, + 5359.271244567005 + ], + [ + 2339.873539201715, + 5360.7603962737 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556817", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2339.15149621541, + "min_y": 5362.911152632751, + "max_x": 2341.8392114563544, + "max_y": 5364.404327766609, + "center": [ + 2340.4953538358823, + 5363.65774019968 + ] + }, + "raw_value": "CHS", + "clean_value": "CHS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556818", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2321.163667079297, + "min_y": 5359.607099668715, + "max_x": 2321.163667079297, + "max_y": 5370.386282671739, + "center": [ + 2321.163667079297, + 5364.996691170227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.163667079297, + 5359.607099668715 + ], + [ + 2321.163667079297, + 5370.386282671739 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556819", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2324.141970492692, + "min_y": 5359.607099668715, + "max_x": 2324.141970492692, + "max_y": 5370.386282671749, + "center": [ + 2324.141970492692, + 5364.996691170232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.141970492692, + 5370.386282671749 + ], + [ + 2324.141970492692, + 5359.607099668715 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55681A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2321.163667079297, + "min_y": 5359.607099668715, + "max_x": 2324.141970492692, + "max_y": 5359.607099668715, + "center": [ + 2322.6528187859944, + 5359.607099668715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2324.141970492692, + 5359.607099668715 + ], + [ + 2321.163667079297, + 5359.607099668715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55681B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2321.1636670793, + "min_y": 5370.386282671744, + "max_x": 2322.652818785997, + "max_y": 5371.875434378438, + "center": [ + 2321.9082429326486, + 5371.130858525091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2321.1636670793, + 5370.386282671744 + ], + [ + 2322.652818785997, + 5371.875434378438 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55681C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2322.652818785997, + "min_y": 5370.386282671744, + "max_x": 2324.141970492695, + "max_y": 5371.875434378438, + "center": [ + 2323.397394639346, + 5371.130858525091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.652818785997, + 5371.875434378438 + ], + [ + 2324.141970492695, + 5370.386282671744 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55681D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2323.41992750639, + "min_y": 5362.02330667751, + "max_x": 2326.1076427473345, + "max_y": 5363.516481811368, + "center": [ + 2324.7637851268623, + 5362.769894244439 + ] + }, + "raw_value": "CHR", + "clean_value": "CHR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55681E", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2322.652818785995, + "min_y": 5336.897110648934, + "max_x": 2322.652818785995, + "max_y": 5359.607099668715, + "center": [ + 2322.652818785995, + 5348.252105158825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.652818785995, + 5359.607099668715 + ], + [ + 2322.652818785995, + 5336.897110648934 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55681F", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2322.652818785995, + "min_y": 5333.669775155226, + "max_x": 2327.416516889087, + "max_y": 5333.669775155226, + "center": [ + 2325.034667837541, + 5333.669775155226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.652818785995, + 5333.669775155226 + ], + [ + 2327.416516889087, + 5333.669775155226 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556820", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2338.384387495016, + "min_y": 5333.669775155226, + "max_x": 2338.384387495016, + "max_y": 5334.687087730098, + "center": [ + 2338.384387495016, + 5334.178431442662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.384387495016, + 5333.669775155226 + ], + [ + 2338.384387495016, + 5334.687087730098 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556821", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.14860057091, + "min_y": 5336.897110648934, + "max_x": 2323.160266964248, + "max_y": 5336.897110648934, + "center": [ + 2322.6544337675787, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.14860057091, + 5336.897110648934 + ], + [ + 2323.160266964248, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556822", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5334.687087730098, + "max_x": 2323.142230460438, + "max_y": 5334.687087730098, + "center": [ + 2322.65443376758, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2323.142230460438, + 5334.687087730098 + ], + [ + 2322.166637074722, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5336.897110648934, + "max_x": 2323.142230460438, + "max_y": 5336.897110648934, + "center": [ + 2322.65443376758, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2323.142230460438, + 5336.897110648934 + ], + [ + 2322.166637074722, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556824", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2322.3421910535894, + "min_y": 5335.479856475527, + "max_x": 2322.9666764815706, + "max_y": 5336.104341903509, + "center": [ + 2322.65443376758, + 5335.792099189518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.65443376758, + 5335.792099189518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556825", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.161163983158, + "min_y": 5336.606802340472, + "max_x": 2323.147703552002, + "max_y": 5336.606802340472, + "center": [ + 2322.65443376758, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.161163983158, + 5336.606802340472 + ], + [ + 2323.147703552002, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556826", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.159549001571, + "min_y": 5334.687087730098, + "max_x": 2323.146088570418, + "max_y": 5334.687087730098, + "center": [ + 2322.652818785995, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.159549001571, + 5334.687087730098 + ], + [ + 2323.146088570418, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556827", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.159549001571, + "min_y": 5334.687087730098, + "max_x": 2323.146088570418, + "max_y": 5334.687087730098, + "center": [ + 2322.652818785995, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.159549001571, + 5334.687087730098 + ], + [ + 2323.146088570418, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556828", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5334.977396038562, + "max_x": 2322.494034160667, + "max_y": 5335.524204660754, + "center": [ + 2322.330335617695, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.494034160667, + 5335.524204660754 + ], + [ + 2322.166637074722, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556829", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5334.977396038562, + "max_x": 2323.142230460438, + "max_y": 5334.977396038562, + "center": [ + 2322.65443376758, + 5334.977396038562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.166637074722, + 5334.977396038562 + ], + [ + 2323.142230460438, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.814833374496, + "min_y": 5334.977396038562, + "max_x": 2323.142230460438, + "max_y": 5335.524204660754, + "center": [ + 2322.978531917467, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2323.142230460438, + 5334.977396038562 + ], + [ + 2322.814833374496, + 5335.524204660754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5336.05999371828, + "max_x": 2322.494034160667, + "max_y": 5336.606802340472, + "center": [ + 2322.330335617695, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.494034160667, + 5336.05999371828 + ], + [ + 2322.166637074722, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.166637074722, + "min_y": 5336.606802340472, + "max_x": 2323.142230460438, + "max_y": 5336.606802340472, + "center": [ + 2322.65443376758, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.166637074722, + 5336.606802340472 + ], + [ + 2323.142230460438, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.814833374496, + "min_y": 5336.05999371828, + "max_x": 2323.142230460438, + "max_y": 5336.606802340472, + "center": [ + 2322.978531917467, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2323.142230460438, + 5336.606802340472 + ], + [ + 2322.814833374496, + 5336.05999371828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.912298674002, + "min_y": 5336.897110648934, + "max_x": 2327.92396506734, + "max_y": 5336.897110648934, + "center": [ + 2327.418131870671, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.912298674002, + 5336.897110648934 + ], + [ + 2327.92396506734, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55682F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5334.687087730098, + "max_x": 2327.90592856353, + "max_y": 5334.687087730098, + "center": [ + 2327.418131870672, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.90592856353, + 5334.687087730098 + ], + [ + 2326.930335177814, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556830", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5336.897110648934, + "max_x": 2327.90592856353, + "max_y": 5336.897110648934, + "center": [ + 2327.418131870672, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.90592856353, + 5336.897110648934 + ], + [ + 2326.930335177814, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556831", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2327.1058891566813, + "min_y": 5335.479856475527, + "max_x": 2327.7303745846625, + "max_y": 5336.104341903509, + "center": [ + 2327.418131870672, + 5335.792099189518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.418131870672, + 5335.792099189518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556832", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.924862086251, + "min_y": 5336.606802340472, + "max_x": 2327.911401655094, + "max_y": 5336.606802340472, + "center": [ + 2327.4181318706724, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.924862086251, + 5336.606802340472 + ], + [ + 2327.911401655094, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556833", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.923247104663, + "min_y": 5334.687087730098, + "max_x": 2327.90978667351, + "max_y": 5334.687087730098, + "center": [ + 2327.416516889087, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.923247104663, + 5334.687087730098 + ], + [ + 2327.90978667351, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556834", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.923247104663, + "min_y": 5334.687087730098, + "max_x": 2327.90978667351, + "max_y": 5334.687087730098, + "center": [ + 2327.416516889087, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.923247104663, + 5334.687087730098 + ], + [ + 2327.90978667351, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556835", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5334.977396038562, + "max_x": 2327.257732263758, + "max_y": 5335.524204660754, + "center": [ + 2327.094033720786, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.257732263758, + 5335.524204660754 + ], + [ + 2326.930335177814, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556836", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5334.977396038562, + "max_x": 2327.90592856353, + "max_y": 5334.977396038562, + "center": [ + 2327.418131870672, + 5334.977396038562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.930335177814, + 5334.977396038562 + ], + [ + 2327.90592856353, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556837", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.578531477588, + "min_y": 5334.977396038562, + "max_x": 2327.90592856353, + "max_y": 5335.524204660754, + "center": [ + 2327.742230020559, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.90592856353, + 5334.977396038562 + ], + [ + 2327.578531477588, + 5335.524204660754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556838", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5336.05999371828, + "max_x": 2327.257732263758, + "max_y": 5336.606802340472, + "center": [ + 2327.094033720786, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.257732263758, + 5336.05999371828 + ], + [ + 2326.930335177814, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556839", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.930335177814, + "min_y": 5336.606802340472, + "max_x": 2327.90592856353, + "max_y": 5336.606802340472, + "center": [ + 2327.418131870672, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2326.930335177814, + 5336.606802340472 + ], + [ + 2327.90592856353, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.578531477588, + "min_y": 5336.05999371828, + "max_x": 2327.90592856353, + "max_y": 5336.606802340472, + "center": [ + 2327.742230020559, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.90592856353, + 5336.606802340472 + ], + [ + 2327.578531477588, + 5336.05999371828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.395029721962, + "min_y": 5336.897110648934, + "max_x": 2333.406696115299, + "max_y": 5336.897110648934, + "center": [ + 2332.9008629186305, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.395029721962, + 5336.897110648934 + ], + [ + 2333.406696115299, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5334.687087730098, + "max_x": 2333.388659611491, + "max_y": 5334.687087730098, + "center": [ + 2332.900862918633, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.388659611491, + 5334.687087730098 + ], + [ + 2332.413066225774, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5336.897110648934, + "max_x": 2333.388659611491, + "max_y": 5336.897110648934, + "center": [ + 2332.900862918633, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.388659611491, + 5336.897110648934 + ], + [ + 2332.413066225774, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2332.5886202046413, + "min_y": 5335.479856475527, + "max_x": 2333.2131056326225, + "max_y": 5336.104341903509, + "center": [ + 2332.900862918632, + 5335.792099189518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.900862918632, + 5335.792099189518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55683F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.40759313421, + "min_y": 5336.606802340472, + "max_x": 2333.394132703054, + "max_y": 5336.606802340472, + "center": [ + 2332.900862918632, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.40759313421, + 5336.606802340472 + ], + [ + 2333.394132703054, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556840", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.405978152623, + "min_y": 5334.687087730098, + "max_x": 2333.392517721469, + "max_y": 5334.687087730098, + "center": [ + 2332.8992479370463, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.405978152623, + 5334.687087730098 + ], + [ + 2333.392517721469, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556841", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.405978152623, + "min_y": 5334.687087730098, + "max_x": 2333.392517721469, + "max_y": 5334.687087730098, + "center": [ + 2332.8992479370463, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.405978152623, + 5334.687087730098 + ], + [ + 2333.392517721469, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556842", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5334.977396038562, + "max_x": 2332.740463311719, + "max_y": 5335.524204660754, + "center": [ + 2332.576764768746, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.740463311719, + 5335.524204660754 + ], + [ + 2332.413066225774, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556843", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5334.977396038562, + "max_x": 2333.388659611491, + "max_y": 5334.977396038562, + "center": [ + 2332.900862918633, + 5334.977396038562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.413066225774, + 5334.977396038562 + ], + [ + 2333.388659611491, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556844", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2333.061262525548, + "min_y": 5334.977396038562, + "max_x": 2333.388659611491, + "max_y": 5335.524204660754, + "center": [ + 2333.2249610685194, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.388659611491, + 5334.977396038562 + ], + [ + 2333.061262525548, + 5335.524204660754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556845", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5336.05999371828, + "max_x": 2332.740463311719, + "max_y": 5336.606802340472, + "center": [ + 2332.576764768746, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.740463311719, + 5336.05999371828 + ], + [ + 2332.413066225774, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556846", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2332.413066225774, + "min_y": 5336.606802340472, + "max_x": 2333.388659611491, + "max_y": 5336.606802340472, + "center": [ + 2332.900862918633, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.413066225774, + 5336.606802340472 + ], + [ + 2333.388659611491, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556847", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2333.061262525548, + "min_y": 5336.05999371828, + "max_x": 2333.388659611491, + "max_y": 5336.606802340472, + "center": [ + 2333.2249610685194, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.388659611491, + 5336.606802340472 + ], + [ + 2333.061262525548, + 5336.05999371828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556848", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.880169279933, + "min_y": 5336.897110648934, + "max_x": 2338.89183567327, + "max_y": 5336.897110648934, + "center": [ + 2338.386002476602, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.880169279933, + 5336.897110648934 + ], + [ + 2338.89183567327, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556849", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5334.687087730098, + "max_x": 2338.873799169461, + "max_y": 5334.687087730098, + "center": [ + 2338.3860024766027, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.873799169461, + 5334.687087730098 + ], + [ + 2337.898205783744, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5336.897110648934, + "max_x": 2338.873799169461, + "max_y": 5336.897110648934, + "center": [ + 2338.3860024766027, + 5336.897110648934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.873799169461, + 5336.897110648934 + ], + [ + 2337.898205783744, + 5336.897110648934 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2338.073759762611, + "min_y": 5335.479856475527, + "max_x": 2338.6982451905924, + "max_y": 5336.104341903509, + "center": [ + 2338.386002476602, + 5335.792099189518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.386002476602, + 5335.792099189518 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.892732692181, + "min_y": 5336.606802340472, + "max_x": 2338.879272261025, + "max_y": 5336.606802340472, + "center": [ + 2338.386002476603, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.892732692181, + 5336.606802340472 + ], + [ + 2338.879272261025, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.891117710594, + "min_y": 5334.687087730098, + "max_x": 2338.87765727944, + "max_y": 5334.687087730098, + "center": [ + 2338.384387495017, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.891117710594, + 5334.687087730098 + ], + [ + 2338.87765727944, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.891117710594, + "min_y": 5334.687087730098, + "max_x": 2338.87765727944, + "max_y": 5334.687087730098, + "center": [ + 2338.384387495017, + 5334.687087730098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.891117710594, + 5334.687087730098 + ], + [ + 2338.87765727944, + 5334.687087730098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55684F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5334.977396038562, + "max_x": 2338.225602869689, + "max_y": 5335.524204660754, + "center": [ + 2338.061904326716, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.225602869689, + 5335.524204660754 + ], + [ + 2337.898205783744, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556850", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5334.977396038562, + "max_x": 2338.873799169461, + "max_y": 5334.977396038562, + "center": [ + 2338.3860024766027, + 5334.977396038562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.898205783744, + 5334.977396038562 + ], + [ + 2338.873799169461, + 5334.977396038562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556851", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.546402083518, + "min_y": 5334.977396038562, + "max_x": 2338.873799169461, + "max_y": 5335.524204660754, + "center": [ + 2338.7101006264893, + 5335.250800349658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.873799169461, + 5334.977396038562 + ], + [ + 2338.546402083518, + 5335.524204660754 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556852", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5336.05999371828, + "max_x": 2338.225602869689, + "max_y": 5336.606802340472, + "center": [ + 2338.061904326716, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.225602869689, + 5336.05999371828 + ], + [ + 2337.898205783744, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556853", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2337.898205783744, + "min_y": 5336.606802340472, + "max_x": 2338.873799169461, + "max_y": 5336.606802340472, + "center": [ + 2338.3860024766027, + 5336.606802340472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2337.898205783744, + 5336.606802340472 + ], + [ + 2338.873799169461, + 5336.606802340472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556854", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2338.546402083518, + "min_y": 5336.05999371828, + "max_x": 2338.873799169461, + "max_y": 5336.606802340472, + "center": [ + 2338.7101006264893, + 5336.3333980293755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.873799169461, + 5336.606802340472 + ], + [ + 2338.546402083518, + 5336.05999371828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556855", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2322.652818785995, + "min_y": 5333.669775155226, + "max_x": 2322.652818785995, + "max_y": 5334.687087730098, + "center": [ + 2322.652818785995, + 5334.178431442662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.652818785995, + 5334.687087730098 + ], + [ + 2322.652818785995, + 5333.669775155226 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556856", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2327.416516889087, + "min_y": 5336.897110648934, + "max_x": 2327.416516889087, + "max_y": 5359.607099668715, + "center": [ + 2327.416516889087, + 5348.252105158825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.416516889087, + 5336.897110648934 + ], + [ + 2327.416516889087, + 5359.607099668715 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556857", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2332.899247937046, + "min_y": 5336.897110648934, + "max_x": 2332.899247937046, + "max_y": 5359.271244567005, + "center": [ + 2332.899247937046, + 5348.08417760797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.899247937046, + 5336.897110648934 + ], + [ + 2332.899247937046, + 5359.271244567005 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556858", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2338.384387495016, + "min_y": 5336.897110648934, + "max_x": 2338.384387495016, + "max_y": 5359.271244567005, + "center": [ + 2338.384387495016, + 5348.08417760797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2338.384387495016, + 5336.897110648934 + ], + [ + 2338.384387495016, + 5359.271244567005 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556859", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2322.315251256262, + "min_y": 5340.540454564373, + "max_x": 2336.4257562712187, + "max_y": 5341.660335914767, + "center": [ + 2329.37050376374, + 5341.1003952395695 + ] + }, + "raw_value": "CHR-10642-50A-F1A-C50", + "clean_value": "CHR-10642-50A-F1A-C50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55685A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2338.051592299213, + "min_y": 5340.57602312078, + "max_x": 2352.16209731417, + "max_y": 5341.695904471173, + "center": [ + 2345.1068448066917, + 5341.135963795976 + ] + }, + "raw_value": "CHS-10632-50A-F1A-C50", + "clean_value": "CHS-10632-50A-F1A-C50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55685B", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2332.899247937046, + "min_y": 5333.669775155226, + "max_x": 2338.384387495016, + "max_y": 5333.669775155226, + "center": [ + 2335.6418177160313, + 5333.669775155226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.899247937046, + 5333.669775155226 + ], + [ + 2338.384387495016, + 5333.669775155226 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55685C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.937791157195, + "min_y": 5202.392849080446, + "max_x": 2275.035333716125, + "max_y": 5202.392849080446, + "center": [ + 2274.4865624366603, + 5202.392849080446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.937791157195, + 5202.392849080446 + ], + [ + 2275.035333716125, + 5202.392849080446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55685D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2439.088026630963, + "min_y": 5426.360415555672, + "max_x": 2449.166958784504, + "max_y": 5427.480296906066, + "center": [ + 2444.127492707734, + 5426.9203562308685 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55685E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2438.805514942303, + "min_y": 5409.278043508841, + "max_x": 2448.884447095844, + "max_y": 5410.397924859234, + "center": [ + 2443.844981019073, + 5409.837984184038 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55685F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2335.191276785057, + "min_y": 5260.328642374065, + "max_x": 2345.270208938598, + "max_y": 5261.448523724458, + "center": [ + 2340.230742861828, + 5260.888583049262 + ] + }, + "raw_value": "SARF-#10-UFD-N2", + "clean_value": "SARF-#10-UFD-N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556860", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2320.882238015372, + "min_y": 5359.425785545317, + "max_x": 2334.320814220093, + "max_y": 5360.54566689571, + "center": [ + 2327.6015261177326, + 5359.985726220513 + ] + }, + "raw_value": "SARF-UTILITY-UFD-CHW", + "clean_value": "SARF-UTILITY-UFD-CHW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556861", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2325.69925296659, + "min_y": 5359.425785545317, + "max_x": 2335.7781851201307, + "max_y": 5360.54566689571, + "center": [ + 2330.73871904336, + 5359.985726220513 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556862", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2330.987004811238, + "min_y": 5360.579082150302, + "max_x": 2341.0659369647788, + "max_y": 5361.698963500696, + "center": [ + 2336.0264708880086, + 5361.139022825499 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556863", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2336.540437224895, + "min_y": 5360.579082150308, + "max_x": 2349.979013429616, + "max_y": 5361.698963500701, + "center": [ + 2343.259725327255, + 5361.139022825504 + ] + }, + "raw_value": "SARF-UTILITY-UFD-CHW", + "clean_value": "SARF-UTILITY-UFD-CHW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556864", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2161.919945916759, + "min_y": 5254.113362695892, + "max_x": 2174.6865933112435, + "max_y": 5255.233244046285, + "center": [ + 2168.3032696140012, + 5254.673303371088 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556865", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2259.903491557223, + "min_y": 5162.053500610388, + "max_x": 2280.4346496477688, + "max_y": 5163.853500610388, + "center": [ + 2270.1690706024956, + 5162.953500610389 + ] + }, + "raw_value": "\\pi5.16928;{\\W0.9;\\LDP-10201\\P\\pi0.24444;DIAPHRAGM PUMP}", + "clean_value": "\\pi5.16928; .9; DP-10201 \\pi0.24444;DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556869", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2255.795648260125, + "min_y": 5154.802531793222, + "max_x": 2285.533993892603, + "max_y": 5156.602531793223, + "center": [ + 2270.664821076364, + 5155.702531793222 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 34L/min\\PSIZE : 25A/25A}\\PMATERIAL : STS316/PTFE\\PPRESSURE : 0.3MPa\\PSPM : 3,600\\PREMARK : AIR OPERATING", + "clean_value": ".9; CAPA : 34L/min SIZE : 25A/25A MATERIAL : STS316/PTFE PRESSURE : 0.3MPa SPM : 3,600 REMARK : AIR OPERATING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55686D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2285.856974722296, + "min_y": 5161.723762624667, + "max_x": 2306.388132812842, + "max_y": 5163.523762624667, + "center": [ + 2296.122553767569, + 5162.6237626246675 + ] + }, + "raw_value": "\\pi5.98478;{\\W0.9;\\LP-10201\\P\\pi3.9878;FEED PUMP}", + "clean_value": "\\pi5.98478; .9; P-10201 \\pi3.9878;FEED PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556871", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2287.719730311717, + "min_y": 5154.661342816875, + "max_x": 2312.1774830892637, + "max_y": 5156.461342816875, + "center": [ + 2299.94860670049, + 5155.5613428168745 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 40L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556875", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2309.048584019328, + "min_y": 5161.942434418966, + "max_x": 2329.5797421098737, + "max_y": 5163.742434418966, + "center": [ + 2319.3141630646005, + 5162.842434418966 + ] + }, + "raw_value": "\\pi5.77266;{\\W0.9;\\LP-10214\\P\\pi4.59228;TOP PUMP}", + "clean_value": "\\pi5.77266; .9; P-10214 \\pi4.59228;TOP PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556879", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2312.032963029318, + "min_y": 5155.245633513036, + "max_x": 2336.2199161732783, + "max_y": 5157.045633513037, + "center": [ + 2324.1264396012984, + 5156.145633513037 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 70L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.35MPa\\PRPM : 3,530", + "clean_value": ".9; CAPA : 70L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.35MPa RPM : 3,530", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55687D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2335.031318947728, + "min_y": 5162.452896186059, + "max_x": 2355.5624770382738, + "max_y": 5164.252896186059, + "center": [ + 2345.296897993001, + 5163.352896186059 + ] + }, + "raw_value": "\\pi5.77486;{\\W0.9;\\LP-10216\\P\\pi2.21833;BOTTOM PUMP}", + "clean_value": "\\pi5.77486; .9; P-10216 \\pi2.21833;BOTTOM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556881", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2336.264917861659, + "min_y": 5156.107417235585, + "max_x": 2360.7226706392057, + "max_y": 5157.907417235585, + "center": [ + 2348.493794250432, + 5157.007417235585 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 10L/min\\PSIZE : 25A/20A}\\PMATERIAL : STS316\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 10L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556885", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2359.109073915826, + "min_y": 5162.452896186059, + "max_x": 2379.6402320063717, + "max_y": 5164.252896186059, + "center": [ + 2369.374652961099, + 5163.352896186059 + ] + }, + "raw_value": "\\pi5.77706;{\\W0.9;\\LP-10218\\P\\pi4.32741;SIDE PUMP}", + "clean_value": "\\pi5.77706; .9; P-10218 \\pi4.32741;SIDE PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556889", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2361.113672150965, + "min_y": 5156.107417235585, + "max_x": 2385.1652254781325, + "max_y": 5157.907417235585, + "center": [ + 2373.139448814549, + 5157.007417235585 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 40L/min\\PSIZE : 25A/20A\\A0;\\PMATERIAL : }STS316\\A0;\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55688D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2385.499826847547, + "min_y": 5162.6070960503, + "max_x": 2406.030984938093, + "max_y": 5164.4070960503, + "center": [ + 2395.76540589282, + 5163.5070960503 + ] + }, + "raw_value": "\\pi5.00992;{\\W0.9;\\LVP-10217\\P\\pi2.026;VACUUM PUMP}", + "clean_value": "\\pi5.00992; .9; VP-10217 \\pi2.026;VACUUM PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556891", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2386.270826168754, + "min_y": 5156.107417235585, + "max_x": 2424.102361010364, + "max_y": 5157.907417235585, + "center": [ + 2405.186593589559, + 5157.007417235585 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 345m\\H0.7x;\\S3^ ;\\H1.42857x;/h\\PSIZE : 50A/40A}\\H0.999999x;\\P{\\A1;MATERIAL : FCD400+PTFE Coated\\P}PRESSURE : 0.05Torr\\PRPM : 3,550", + "clean_value": ".9; CAPA : 345m .7x; ^ ; .42857x;/h SIZE : 50A/40A .999999x; MATERIAL : FCD400+PTFE Coated PRESSURE : 0.05Torr RPM : 3,550", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556895", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2423.443291287292, + "min_y": 5163.837804022642, + "max_x": 2445.5611659808824, + "max_y": 5165.637804022642, + "center": [ + 2434.5022286340873, + 5164.737804022641 + ] + }, + "raw_value": "\\pi6.77814;{\\W0.9;\\LP-10221\\P\\pi0.19812;EL TRANSFER PUMP}", + "clean_value": "\\pi6.77814; .9; P-10221 \\pi0.19812;EL TRANSFER PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556899", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2424.613088465394, + "min_y": 5156.555727432754, + "max_x": 2450.289439594079, + "max_y": 5158.355727432754, + "center": [ + 2437.451264029736, + 5157.455727432754 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 40L/min\\PSIZE : 25A/20A\\A0;\\PMATERIAL : }STS316\\A0;\\PPRESSURE : 0.25MPa\\PRPM : 3,520", + "clean_value": ".9; CAPA : 40L/min SIZE : 25A/20A MATERIAL : STS316 PRESSURE : 0.25MPa RPM : 3,520", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55689D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2098.237318590834, + "min_y": 5159.970992446353, + "max_x": 2120.634945598702, + "max_y": 5161.770992446353, + "center": [ + 2109.4361320947683, + 5160.870992446353 + ] + }, + "raw_value": "\\pi6.90702;{\\W0.9;\\LT-10201\\P\\pi0.3358;FEED BUFFER TANK}", + "clean_value": "\\pi6.90702; .9; T-10201 \\pi0.3358;FEED BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568A1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2097.183523936263, + "min_y": 5153.690719179984, + "max_x": 2125.6986909989105, + "max_y": 5155.490719179984, + "center": [ + 2111.441107467587, + 5154.590719179983 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,940 x 4,000H\\PVOLUME : 13.2M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568A5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2123.649516467587, + "min_y": 5159.970992446353, + "max_x": 2151.24203906712, + "max_y": 5161.770992446353, + "center": [ + 2137.4457777673533, + 5160.870992446353 + ] + }, + "raw_value": "\\pi9.50447;{\\W0.9;\\LT-10221\\P\\pi0.42192;PRODUCT BUFFER TANK}", + "clean_value": "\\pi9.50447; .9; T-10221 \\pi0.42192;PRODUCT BUFFER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568A9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2151.864119291146, + "min_y": 5160.146602714485, + "max_x": 2174.261746299014, + "max_y": 5161.946602714485, + "center": [ + 2163.06293279508, + 5161.046602714485 + ] + }, + "raw_value": "\\pi6.69491;{\\W0.9;\\LT-10200\\P\\pi2.93176;RECYCLE TANK}", + "clean_value": "\\pi6.69491; .9; T-10200 \\pi2.93176;RECYCLE TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568AD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.583554055621, + "min_y": 5374.327567039411, + "max_x": 2367.054067276813, + "max_y": 5374.327567039411, + "center": [ + 2363.318810666217, + 5374.327567039411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.583554055621, + 5374.327567039411 + ], + [ + 2367.054067276813, + 5374.327567039411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568AE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.583554055621, + "min_y": 5374.327567039411, + "max_x": 2367.054067276813, + "max_y": 5374.327567039411, + "center": [ + 2363.318810666217, + 5374.327567039411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5374.327567039411 + ], + [ + 2359.583554055621, + 5374.327567039411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568AF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.583554055621, + "min_y": 5374.327567039411, + "max_x": 2367.054067276813, + "max_y": 5374.327567039411, + "center": [ + 2363.318810666217, + 5374.327567039411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.583554055621, + 5374.327567039411 + ], + [ + 2367.054067276813, + 5374.327567039411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.054067276813, + "min_y": 5373.70382895495, + "max_x": 2367.054067276813, + "max_y": 5374.951305123875, + "center": [ + 2367.054067276813, + 5374.327567039412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.054067276813, + 5373.70382895495 + ], + [ + 2367.054067276813, + 5374.951305123875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5373.70382895495, + "max_x": 2367.425280019488, + "max_y": 5374.951305123875, + "center": [ + 2367.425280019488, + 5374.327567039412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5373.70382895495 + ], + [ + 2367.425280019488, + 5374.951305123875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.425280019488, + "min_y": 5374.327567039411, + "max_x": 2369.03487572839, + "max_y": 5374.327567039411, + "center": [ + 2368.230077873939, + 5374.327567039411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.425280019488, + 5374.327567039411 + ], + [ + 2369.03487572839, + 5374.327567039411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2293.58746221997, + "min_y": 5375.03852877656, + "max_x": 2295.401266850321, + "max_y": 5376.046198015644, + "center": [ + 2294.4943645351455, + 5375.542363396102 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2190.654906446829, + "min_y": 5227.224259848331, + "max_x": 2192.46871107718, + "max_y": 5228.231929087415, + "center": [ + 2191.5618087620046, + 5227.728094467873 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2222.904783375914, + "min_y": 5243.09051262529, + "max_x": 2223.874078312693, + "max_y": 5243.8982584059395, + "center": [ + 2223.3894308443037, + 5243.494385515614 + ] + }, + "raw_value": "NC", + "clean_value": "NC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568B6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2240.175375418367, + "min_y": 5247.97798148386, + "max_x": 2247.5665923309634, + "max_y": 5249.097862834254, + "center": [ + 2243.8709838746654, + 5248.537922159057 + ] + }, + "raw_value": "E10215BA-01", + "clean_value": "E10215BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568B7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2234.312665729012, + "min_y": 5234.029632353093, + "max_x": 2241.7038826416087, + "max_y": 5235.149513703486, + "center": [ + 2238.0082741853103, + 5234.58957302829 + ] + }, + "raw_value": "E10215BA-02", + "clean_value": "E10215BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568B8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2271.552189453887, + "min_y": 5264.087882977355, + "max_x": 2278.9434063664835, + "max_y": 5265.207764327748, + "center": [ + 2275.247797910185, + 5264.647823652551 + ] + }, + "raw_value": "C10211BA-01", + "clean_value": "C10211BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568B9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2271.890959372906, + "min_y": 5274.831414558961, + "max_x": 2279.2821762855024, + "max_y": 5275.9512959093545, + "center": [ + 2275.586567829204, + 5275.391355234158 + ] + }, + "raw_value": "C10211BA-04", + "clean_value": "C10211BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568BA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2271.361025374164, + "min_y": 5290.703811585118, + "max_x": 2275.056633830462, + "max_y": 5291.263752260315, + "center": [ + 2273.208829602313, + 5290.983781922717 + ] + }, + "raw_value": "C10211BA-09", + "clean_value": "C10211BA-09", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568BB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2270.968042759047, + "min_y": 5352.755141555189, + "max_x": 2274.663651215345, + "max_y": 5353.315082230386, + "center": [ + 2272.815846987196, + 5353.035111892787 + ] + }, + "raw_value": "C10211BA-10", + "clean_value": "C10211BA-10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568BC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2270.968042759047, + "min_y": 5359.760489065811, + "max_x": 2274.663651215345, + "max_y": 5360.320429741008, + "center": [ + 2272.815846987196, + 5360.04045940341 + ] + }, + "raw_value": "C10211BA-11", + "clean_value": "C10211BA-11", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5271.614806716232, + "max_x": 2276.905913700089, + "max_y": 5272.362217479184, + "center": [ + 2276.5322083186147, + 5271.988512097709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5271.614806716232 + ], + [ + 2276.905913700089, + 5272.362217479184 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5271.614806716232, + "max_x": 2276.905913700089, + "max_y": 5272.362217479184, + "center": [ + 2276.5322083186147, + 5271.988512097709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5272.362217479184 + ], + [ + 2276.905913700089, + 5271.614806716232 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5259.234172027859, + "max_x": 2276.905913700089, + "max_y": 5259.981582790811, + "center": [ + 2276.5322083186147, + 5259.607877409335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5259.234172027859 + ], + [ + 2276.905913700089, + 5259.981582790811 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5259.234172027859, + "max_x": 2276.905913700089, + "max_y": 5259.981582790811, + "center": [ + 2276.5322083186147, + 5259.607877409335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5259.981582790811 + ], + [ + 2276.905913700089, + 5259.234172027859 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5249.796973494582, + "max_x": 2276.905913700089, + "max_y": 5250.544384257534, + "center": [ + 2276.5322083186147, + 5250.170678876058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5249.796973494582 + ], + [ + 2276.905913700089, + 5250.544384257534 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.15850293714, + "min_y": 5249.796973494582, + "max_x": 2276.905913700089, + "max_y": 5250.544384257534, + "center": [ + 2276.5322083186147, + 5250.170678876058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.15850293714, + 5250.544384257534 + ], + [ + 2276.905913700089, + 5249.796973494582 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.109917169585, + "min_y": 5246.750330931054, + "max_x": 2274.857327932533, + "max_y": 5247.497741694006, + "center": [ + 2274.483622551059, + 5247.124036312531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.109917169585, + 5246.750330931054 + ], + [ + 2274.857327932533, + 5247.497741694006 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.109917169585, + "min_y": 5246.750330931054, + "max_x": 2274.857327932533, + "max_y": 5247.497741694006, + "center": [ + 2274.483622551059, + 5247.124036312531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.109917169585, + 5247.497741694006 + ], + [ + 2274.857327932533, + 5246.750330931054 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.866237046917, + "min_y": 5246.750330931053, + "max_x": 2270.613647809866, + "max_y": 5247.497741694004, + "center": [ + 2270.2399424283913, + 5247.124036312529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.866237046917, + 5246.750330931053 + ], + [ + 2270.613647809866, + 5247.497741694004 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2269.866237046917, + "min_y": 5246.750330931053, + "max_x": 2270.613647809866, + "max_y": 5247.497741694004, + "center": [ + 2270.2399424283913, + 5247.124036312529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2269.866237046917, + 5247.497741694004 + ], + [ + 2270.613647809866, + 5246.750330931053 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.066184582016, + "min_y": 5246.750330931052, + "max_x": 2261.813595344965, + "max_y": 5247.497741694004, + "center": [ + 2261.4398899634907, + 5247.124036312528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.066184582016, + 5246.750330931052 + ], + [ + 2261.813595344965, + 5247.497741694004 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2261.066184582016, + "min_y": 5246.750330931052, + "max_x": 2261.813595344965, + "max_y": 5247.497741694004, + "center": [ + 2261.4398899634907, + 5247.124036312528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.066184582016, + 5247.497741694004 + ], + [ + 2261.813595344965, + 5246.750330931052 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2254.857010507798, + "min_y": 5246.750330931051, + "max_x": 2255.604421270747, + "max_y": 5247.497741694003, + "center": [ + 2255.2307158892727, + 5247.124036312527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2254.857010507798, + 5246.750330931051 + ], + [ + 2255.604421270747, + 5247.497741694003 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2254.857010507798, + "min_y": 5246.750330931051, + "max_x": 2255.604421270747, + "max_y": 5247.497741694003, + "center": [ + 2255.2307158892727, + 5247.124036312527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2254.857010507798, + 5247.497741694003 + ], + [ + 2255.604421270747, + 5246.750330931051 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2248.513825482337, + "min_y": 5246.750330931051, + "max_x": 2249.261236245286, + "max_y": 5247.497741694002, + "center": [ + 2248.8875308638117, + 5247.124036312527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2248.513825482337, + 5246.750330931051 + ], + [ + 2249.261236245286, + 5247.497741694002 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2248.513825482337, + "min_y": 5246.750330931051, + "max_x": 2249.261236245286, + "max_y": 5247.497741694002, + "center": [ + 2248.8875308638117, + 5247.124036312527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2248.513825482337, + 5247.497741694002 + ], + [ + 2249.261236245286, + 5246.750330931051 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2243.549018732587, + "min_y": 5246.75033093105, + "max_x": 2244.296429495536, + "max_y": 5247.497741694002, + "center": [ + 2243.9227241140616, + 5247.124036312525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.549018732587, + 5246.75033093105 + ], + [ + 2244.296429495536, + 5247.497741694002 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2243.549018732587, + "min_y": 5246.75033093105, + "max_x": 2244.296429495536, + "max_y": 5247.497741694002, + "center": [ + 2243.9227241140616, + 5247.124036312525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2243.549018732587, + 5247.497741694002 + ], + [ + 2244.296429495536, + 5246.75033093105 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568CF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2292.661234475288, + "min_y": 5309.668481725896, + "max_x": 2300.0524513878845, + "max_y": 5310.788363076289, + "center": [ + 2296.3568429315865, + 5310.228422401093 + ] + }, + "raw_value": "E10217BA-01", + "clean_value": "E10217BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2311.5531089366, + "min_y": 5294.592323869681, + "max_x": 2318.9443258491965, + "max_y": 5295.712205220075, + "center": [ + 2315.2487173928985, + 5295.152264544879 + ] + }, + "raw_value": "P10218BA-04", + "clean_value": "P10218BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2397.371020383434, + "min_y": 5427.497331671465, + "max_x": 2404.7622372960304, + "max_y": 5428.617213021858, + "center": [ + 2401.0666288397324, + 5428.057272346661 + ] + }, + "raw_value": "E10212BA-03", + "clean_value": "E10212BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2397.845333196285, + "min_y": 5410.334209940428, + "max_x": 2405.2365501088816, + "max_y": 5411.454091290821, + "center": [ + 2401.5409416525836, + 5410.894150615624 + ] + }, + "raw_value": "E10212BA-05", + "clean_value": "E10212BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2399.919003898217, + "min_y": 5380.864148523803, + "max_x": 2407.3102208108135, + "max_y": 5381.9840298741965, + "center": [ + 2403.614612354515, + 5381.424089198999 + ] + }, + "raw_value": "D10213BA-05", + "clean_value": "D10213BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D4", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2438.611652506725, + "min_y": 5362.950752747866, + "max_x": 2446.6747982295574, + "max_y": 5364.07063409826, + "center": [ + 2442.6432253681414, + 5363.510693423063 + ] + }, + "raw_value": "VP10217BA-03", + "clean_value": "VP10217BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2439.204217937388, + "min_y": 5367.887301720406, + "max_x": 2447.2673636602203, + "max_y": 5369.007183070799, + "center": [ + 2443.2357907988044, + 5368.447242395603 + ] + }, + "raw_value": "VP10217BA-04", + "clean_value": "VP10217BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2319.687916167948, + "min_y": 5377.956678039446, + "max_x": 2328.4229907010167, + "max_y": 5379.0765593898395, + "center": [ + 2324.0554534344824, + 5378.516618714642 + ] + }, + "raw_value": "FIT10213BA-01", + "clean_value": "FIT10213BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2489.379955264293, + "min_y": 5304.125685701153, + "max_x": 2496.7711721768896, + "max_y": 5305.2455670515465, + "center": [ + 2493.075563720591, + 5304.685626376349 + ] + }, + "raw_value": "T10200BA-07", + "clean_value": "T10200BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2401.798598348676, + "min_y": 5325.828309120822, + "max_x": 2409.8617440715084, + "max_y": 5326.948190471216, + "center": [ + 2405.830171210092, + 5326.3882497960185 + ] + }, + "raw_value": "HD10214BA-01", + "clean_value": "HD10214BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568D9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2401.617284225279, + "min_y": 5316.745344647744, + "max_x": 2409.6804299481114, + "max_y": 5317.865225998137, + "center": [ + 2405.648857086695, + 5317.30528532294 + ] + }, + "raw_value": "HD10214BA-03", + "clean_value": "HD10214BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.639248792552, + "min_y": 5281.595620743495, + "max_x": 2362.702394515384, + "max_y": 5282.715502093888, + "center": [ + 2358.6708216539682, + 5282.155561418691 + ] + }, + "raw_value": "HD10218BA-02", + "clean_value": "HD10218BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.61136444875, + "min_y": 5278.586206639769, + "max_x": 2362.6745101715824, + "max_y": 5279.706087990163, + "center": [ + 2358.6429373101664, + 5279.146147314967 + ] + }, + "raw_value": "HD10218BA-03", + "clean_value": "HD10218BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.611364448747, + "min_y": 5275.599856372052, + "max_x": 2362.674510171579, + "max_y": 5276.719737722446, + "center": [ + 2358.642937310163, + 5276.1597970472485 + ] + }, + "raw_value": "HD10218BA-04", + "clean_value": "HD10218BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DD", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.611364448747, + "min_y": 5272.613506104335, + "max_x": 2362.674510171579, + "max_y": 5273.7333874547285, + "center": [ + 2358.642937310163, + 5273.173446779532 + ] + }, + "raw_value": "HD10218BA-05", + "clean_value": "HD10218BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2222.205092005812, + "min_y": 5251.86003252942, + "max_x": 2227.5805224877004, + "max_y": 5252.9799138798135, + "center": [ + 2224.892807246756, + 5252.419973204616 + ] + }, + "raw_value": "TR-10215", + "clean_value": "TR-10215", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5568DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5410.473498074058, + "max_x": 2280.13879521484, + "max_y": 5410.473498074058, + "center": [ + 2268.7533348191737, + 5410.473498074058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2257.367874423507, + 5410.473498074058 + ], + [ + 2280.13879521484, + 5410.473498074058 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5413.459848341775, + "max_x": 2280.13879521484, + "max_y": 5413.459848341775, + "center": [ + 2268.7533348191737, + 5413.459848341775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2257.367874423507, + 5413.459848341775 + ], + [ + 2280.13879521484, + 5413.459848341775 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568E1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2262.524032136989, + "min_y": 5411.220085640988, + "max_x": 2267.0035575385623, + "max_y": 5412.713260774846, + "center": [ + 2264.7637948377755, + 5411.966673207917 + ] + }, + "raw_value": "VAPOR", + "clean_value": "VAPOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568E2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2258.069133459586, + "min_y": 5408.607029156737, + "max_x": 2261.428777510766, + "max_y": 5409.72691050713, + "center": [ + 2259.748955485176, + 5409.166969831933 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568E3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2264.402753728028, + "min_y": 5408.607029156737, + "max_x": 2270.4501130201525, + "max_y": 5409.72691050713, + "center": [ + 2267.4264333740903, + 5409.166969831933 + ] + }, + "raw_value": "70~98%%DC", + "clean_value": "70~98%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568E4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2257.933147867039, + "min_y": 5405.993972672485, + "max_x": 2261.9647207284556, + "max_y": 5407.1138540228785, + "center": [ + 2259.9489342977477, + 5406.553913347681 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568E5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2264.266768135479, + "min_y": 5405.993972672485, + "max_x": 2275.689557909492, + "max_y": 5407.1138540228785, + "center": [ + 2269.9781630224857, + 5406.553913347681 + ] + }, + "raw_value": "0.089~-0.085 MPaG", + "clean_value": "0.089~-0.085 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2263.50731657399, + "min_y": 5405.247385105556, + "max_x": 2263.50731657399, + "max_y": 5410.473498074058, + "center": [ + 2263.50731657399, + 5407.860441589806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2263.50731657399, + 5410.473498074058 + ], + [ + 2263.50731657399, + 5405.247385105556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5405.247385105556, + "max_x": 2257.367874423507, + "max_y": 5413.459848341775, + "center": [ + 2257.367874423507, + 5409.353616723665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2257.367874423507, + 5413.459848341775 + ], + [ + 2257.367874423507, + 5405.247385105556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.13879521484, + "min_y": 5405.247385105556, + "max_x": 2280.13879521484, + "max_y": 5413.459848341775, + "center": [ + 2280.13879521484, + 5409.353616723665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.13879521484, + 5413.459848341775 + ], + [ + 2280.13879521484, + 5405.247385105556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568E9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.771441304113, + "min_y": 5389.005482501469, + "max_x": 2414.2128551951664, + "max_y": 5390.0131517405525, + "center": [ + 2411.4921482496397, + 5389.50931712101 + ] + }, + "raw_value": "PSV-10211", + "clean_value": "PSV-10211", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568EA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.846386709798, + "min_y": 5387.373660696146, + "max_x": 2414.2878006008514, + "max_y": 5388.38132993523, + "center": [ + 2411.5670936553247, + 5387.877495315688 + ] + }, + "raw_value": "100Ax150A", + "clean_value": "100Ax150A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568EB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.369705972438, + "min_y": 5385.841464883489, + "max_x": 2415.0203229503923, + "max_y": 5386.849134122573, + "center": [ + 2411.695014461415, + 5386.345299503031 + ] + }, + "raw_value": "SP: 0.19MPa", + "clean_value": "SP: 0.19MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568EC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2195.309835145883, + "min_y": 5260.434550849362, + "max_x": 2200.7512490369363, + "max_y": 5261.4422200884455, + "center": [ + 2198.0305420914096, + 5260.938385468904 + ] + }, + "raw_value": "PSV-10203", + "clean_value": "PSV-10203", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568ED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2195.983959240109, + "min_y": 5258.952092663167, + "max_x": 2200.2161700442616, + "max_y": 5259.959761902251, + "center": [ + 2198.1000646421853, + 5259.455927282708 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568EE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2195.196053935459, + "min_y": 5257.373470596988, + "max_x": 2201.242069369963, + "max_y": 5258.381139836072, + "center": [ + 2198.219061652711, + 5257.877305216531 + ] + }, + "raw_value": "SP: 0.7MPa", + "clean_value": "SP: 0.7MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5568EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.620518773277, + "min_y": 5251.321831333942, + "max_x": 2196.620520856505, + "max_y": 5252.366618778553, + "center": [ + 2196.620519814891, + 5251.8442250562475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.620520856505, + 5252.366618778553 + ], + [ + 2196.620518773277, + 5251.321831333942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2194.180196990579, + "min_y": 5251.321836258632, + "max_x": 2194.180199073807, + "max_y": 5252.366623703255, + "center": [ + 2194.1801980321934, + 5251.844229980943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.180199073807, + 5252.366623703255 + ], + [ + 2194.180196990579, + 5251.321836258632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2194.544171027565, + "min_y": 5252.00987901668, + "max_x": 2195.108880999935, + "max_y": 5252.347995915864, + "center": [ + 2194.82652601375, + 5252.178937466272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.544171027565, + 5252.347995915864 + ], + [ + 2195.108880999935, + 5252.00987901668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.662210650557, + "min_y": 5251.340459121532, + "max_x": 2196.226920622928, + "max_y": 5251.678576020712, + "center": [ + 2195.9445656367425, + 5251.509517571122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.662210650557, + 5251.678576020712 + ], + [ + 2196.226920622928, + 5251.340459121532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.226920622928, + "min_y": 5251.340459121532, + "max_x": 2196.226922631875, + "max_y": 5252.347992560578, + "center": [ + 2196.2269216274017, + 5251.844225841055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.226922631875, + 5252.347992560578 + ], + [ + 2196.226920622928, + 5251.340459121532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2194.544169018616, + "min_y": 5251.340462476813, + "max_x": 2194.544171027565, + "max_y": 5252.347995915864, + "center": [ + 2194.5441700230904, + 5251.844229196338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.544171027565, + 5252.347995915864 + ], + [ + 2194.544169018616, + 5251.340462476813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2194.544169018616, + "min_y": 5251.340462476813, + "max_x": 2195.108880339344, + "max_y": 5251.678577124017, + "center": [ + 2194.8265246789797, + 5251.509519800415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.544169018616, + 5251.340462476813 + ], + [ + 2195.108880339344, + 5251.678577124017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.662211311149, + "min_y": 5252.00987791338, + "max_x": 2196.226922631875, + "max_y": 5252.347992560578, + "center": [ + 2195.944566971512, + 5252.178935236979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.662211311149, + 5252.00987791338 + ], + [ + 2196.226922631875, + 5252.347992560578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2195.063080564563, + "min_y": 5251.521762258014, + "max_x": 2195.7080110859274, + "max_y": 5252.1666927793785, + "center": [ + 2195.385545825245, + 5251.844227518696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.385545825245, + 5251.844227518696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568F8", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2198.489510986195, + "min_y": 5251.92925081318, + "max_x": 2198.489510986195, + "max_y": 5253.764268429881, + "center": [ + 2198.489510986195, + 5252.8467596215305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.489510986195, + 5251.92925081318 + ], + [ + 2198.489510986195, + 5253.764268429881 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568F9", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2193.624524959588, + "min_y": 5254.874125444835, + "max_x": 2197.379653971239, + "max_y": 5254.874125444835, + "center": [ + 2195.5020894654135, + 5254.874125444835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.379653971239, + 5254.874125444835 + ], + [ + 2193.624524959588, + 5254.874125444835 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5568FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.489510986193, + "min_y": 5254.905763356625, + "max_x": 2198.489510986193, + "max_y": 5256.448571291931, + "center": [ + 2198.489510986193, + 5255.677167324278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.489510986193, + 5254.905763356625 + ], + [ + 2198.489510986193, + 5256.448571291931 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.212046732454, + "min_y": 5255.3101070957, + "max_x": 2198.766975239932, + "max_y": 5255.865035603171, + "center": [ + 2198.4895109861927, + 5255.587571349435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.766975239932, + 5255.865035603171 + ], + [ + 2198.212046732454, + 5255.3101070957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.212046732454, + "min_y": 5255.587571349433, + "max_x": 2198.766975239932, + "max_y": 5256.142499856912, + "center": [ + 2198.4895109861927, + 5255.865035603172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.212046732454, + 5255.587571349433 + ], + [ + 2198.766975239932, + 5256.142499856912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.212046732454, + "min_y": 5255.896673514963, + "max_x": 2198.766975239932, + "max_y": 5256.451602022437, + "center": [ + 2198.4895109861927, + 5256.1741377687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.766975239932, + 5256.451602022437 + ], + [ + 2198.212046732454, + 5255.896673514963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.489510986193, + "min_y": 5254.905763356625, + "max_x": 2198.489510986193, + "max_y": 5256.451602022437, + "center": [ + 2198.489510986193, + 5255.678682689531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.489510986193, + 5254.905763356625 + ], + [ + 2198.489510986193, + 5256.451602022437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5568FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2198.489510986193, + "min_y": 5253.764268429883, + "max_x": 2199.044439493668, + "max_y": 5254.874125444835, + "center": [ + 2198.7669752399306, + 5254.319196937358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.489510986193, + 5254.874125444835 + ], + [ + 2199.044439493668, + 5253.764268429883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556900", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.934582478715, + "min_y": 5253.764268429883, + "max_x": 2199.044439493668, + "max_y": 5253.764268429883, + "center": [ + 2198.489510986192, + 5253.764268429883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2199.044439493668, + 5253.764268429883 + ], + [ + 2197.934582478715, + 5253.764268429883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556901", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.934582478715, + "min_y": 5253.764268429883, + "max_x": 2198.489510986193, + "max_y": 5254.874125444835, + "center": [ + 2198.212046732454, + 5254.319196937358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.934582478715, + 5253.764268429883 + ], + [ + 2198.489510986193, + 5254.874125444835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556902", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.379653971239, + "min_y": 5254.874125444835, + "max_x": 2198.489510986193, + "max_y": 5255.429053952313, + "center": [ + 2197.934582478716, + 5255.151589698574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2198.489510986193, + 5254.874125444835 + ], + [ + 2197.379653971239, + 5255.429053952313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556903", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.379653971239, + "min_y": 5254.319196937359, + "max_x": 2197.379653971239, + "max_y": 5255.429053952313, + "center": [ + 2197.379653971239, + 5254.874125444836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.379653971239, + 5255.429053952313 + ], + [ + 2197.379653971239, + 5254.319196937359 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556904", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.379653971239, + "min_y": 5254.319196937359, + "max_x": 2198.489510986193, + "max_y": 5254.874125444835, + "center": [ + 2197.934582478716, + 5254.596661191097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.379653971239, + 5254.319196937359 + ], + [ + 2198.489510986193, + 5254.874125444835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556905", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.82657484695, + "min_y": 5350.460828984897, + "max_x": 2275.82657484695, + "max_y": 5351.56028370914, + "center": [ + 2275.82657484695, + 5351.010556347019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.82657484695, + 5351.56028370914 + ], + [ + 2275.82657484695, + 5350.460828984897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556906", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.397174311607, + "min_y": 5350.440502566524, + "max_x": 2275.397174311607, + "max_y": 5351.580610127514, + "center": [ + 2275.397174311607, + 5351.010556347019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.397174311607, + 5351.580610127514 + ], + [ + 2275.397174311607, + 5350.440502566524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556907", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.968349735688, + "min_y": 5334.852800046757, + "max_x": 2307.968512147477, + "max_y": 5335.040861610988, + "center": [ + 2307.9684309415825, + 5334.946830828872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.968349735688, + 5334.852800046757 + ], + [ + 2307.968512147477, + 5335.040861610988 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556908", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.79493364242, + "min_y": 5336.14880036595, + "max_x": 2309.7136464542627, + "max_y": 5337.455037969898, + "center": [ + 2307.7542900483413, + 5336.801919167923 + ] + }, + "raw_value": "10217", + "clean_value": "10217", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556909", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2306.904125303812, + "min_y": 5338.465265570389, + "max_x": 2308.4716104285494, + "max_y": 5339.771503174337, + "center": [ + 2307.6878678661806, + 5339.118384372363 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55690A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.1948797669884, + "min_y": 5335.040773843473, + "max_x": 2310.7864503082255, + "max_y": 5340.63234438471, + "center": [ + 2307.990665037607, + 5337.836559114092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.990665037607, + 5337.836559114092 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55690B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.445120769163, + "min_y": 5334.852800046757, + "max_x": 2308.583245461666, + "max_y": 5334.852800046757, + "center": [ + 2308.0141831154147, + 5334.852800046757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.445120769163, + 5334.852800046757 + ], + [ + 2308.583245461666, + 5334.852800046757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55690C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2307.6629100621767, + "min_y": 5333.258389101674, + "max_x": 2308.3654561686553, + "max_y": 5333.9609352081525, + "center": [ + 2308.014183115416, + 5333.609662154913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.014183115416, + 5333.609662154913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55690D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.465411835946, + "min_y": 5332.366524263068, + "max_x": 2308.562954394885, + "max_y": 5332.366524263068, + "center": [ + 2308.014183115415, + 5332.366524263068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.562954394885, + 5332.366524263068 + ], + [ + 2307.465411835946, + 5332.366524263068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55690E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.45925460794, + "min_y": 5334.526203199734, + "max_x": 2308.569111622891, + "max_y": 5334.526203199734, + "center": [ + 2308.014183115415, + 5334.526203199734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.45925460794, + 5334.526203199734 + ], + [ + 2308.569111622891, + 5334.526203199734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55690F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.465411835946, + "min_y": 5332.693121110086, + "max_x": 2307.833733557635, + "max_y": 5333.308280810051, + "center": [ + 2307.6495726967905, + 5333.000700960069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.833733557635, + 5333.308280810051 + ], + [ + 2307.465411835946, + 5332.693121110086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556910", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.465411835946, + "min_y": 5332.693121110086, + "max_x": 2308.562954394885, + "max_y": 5332.693121110086, + "center": [ + 2308.014183115415, + 5332.693121110086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.465411835946, + 5332.693121110086 + ], + [ + 2308.562954394885, + 5332.693121110086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556911", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2308.194632673196, + "min_y": 5332.693121110086, + "max_x": 2308.562954394885, + "max_y": 5333.308280810051, + "center": [ + 2308.3787935340406, + 5333.000700960069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.562954394885, + 5332.693121110086 + ], + [ + 2308.194632673196, + 5333.308280810051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556912", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2307.465411835946, + "min_y": 5333.91104349977, + "max_x": 2307.833733557635, + "max_y": 5334.526203199734, + "center": [ + 2307.6495726967905, + 5334.218623349752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.833733557635, + 5333.91104349977 + ], + [ + 2307.465411835946, + 5334.526203199734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556913", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2308.194632673196, + "min_y": 5333.91104349977, + "max_x": 2308.562954394885, + "max_y": 5334.526203199734, + "center": [ + 2308.3787935340406, + 5334.218623349752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.562954394885, + 5334.526203199734 + ], + [ + 2308.194632673196, + 5333.91104349977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556914", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2308.014183115416, + "min_y": 5331.26817633086, + "max_x": 2308.014183115416, + "max_y": 5332.352512233573, + "center": [ + 2308.014183115416, + 5331.810344282217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.014183115416, + 5332.352512233573 + ], + [ + 2308.014183115416, + 5331.26817633086 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556915", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.00548678954, + "min_y": 5307.660632005194, + "max_x": 2481.00548678954, + "max_y": 5308.236152865767, + "center": [ + 2481.00548678954, + 5307.948392435481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.00548678954, + 5307.660632005194 + ], + [ + 2481.00548678954, + 5308.236152865767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556916", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2480.7875002733185, + "min_y": 5308.789609805647, + "max_x": 2481.2234733057617, + "max_y": 5309.22558283809, + "center": [ + 2481.00548678954, + 5309.007596321869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.00548678954, + 5309.007596321869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556917", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.652348633261, + "min_y": 5308.236152865767, + "max_x": 2481.358624945823, + "max_y": 5308.236152865767, + "center": [ + 2481.0054867895424, + 5308.236152865767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.358624945823, + 5308.236152865767 + ], + [ + 2480.652348633261, + 5308.236152865767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556918", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.652348633261, + "min_y": 5309.779039777971, + "max_x": 2481.358624945823, + "max_y": 5309.779039777971, + "center": [ + 2481.0054867895424, + 5309.779039777971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.358624945823, + 5309.779039777971 + ], + [ + 2480.652348633261, + 5309.779039777971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556919", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.664940487143, + "min_y": 5308.438826279612, + "max_x": 2480.893506749822, + "max_y": 5308.820570676676, + "center": [ + 2480.7792236184823, + 5308.629698478144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.893506749822, + 5308.820570676676 + ], + [ + 2480.664940487143, + 5308.438826279612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.664940487143, + "min_y": 5308.438826279612, + "max_x": 2481.34603309194, + "max_y": 5308.438826279612, + "center": [ + 2481.0054867895415, + 5308.438826279612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.664940487143, + 5308.438826279612 + ], + [ + 2481.34603309194, + 5308.438826279612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.117466829259, + "min_y": 5308.438826279612, + "max_x": 2481.34603309194, + "max_y": 5308.820570676676, + "center": [ + 2481.2317499605997, + 5308.629698478144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.34603309194, + 5308.438826279612 + ], + [ + 2481.117466829259, + 5308.820570676676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.664940487143, + "min_y": 5309.194621967061, + "max_x": 2480.893506749822, + "max_y": 5309.576366364129, + "center": [ + 2480.7792236184823, + 5309.385494165595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.893506749822, + 5309.194621967061 + ], + [ + 2480.664940487143, + 5309.576366364129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.664940487143, + "min_y": 5309.576366364129, + "max_x": 2481.34603309194, + "max_y": 5309.576366364129, + "center": [ + 2481.0054867895415, + 5309.576366364129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.664940487143, + 5309.576366364129 + ], + [ + 2481.34603309194, + 5309.576366364129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.117466829259, + "min_y": 5309.194621967061, + "max_x": 2481.34603309194, + "max_y": 5309.576366364129, + "center": [ + 2481.2317499605997, + 5309.385494165595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.34603309194, + 5309.576366364129 + ], + [ + 2481.117466829259, + 5309.194621967061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55691F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.005486789542, + "min_y": 5309.779039777971, + "max_x": 2481.005486789542, + "max_y": 5310.215902618286, + "center": [ + 2481.005486789542, + 5309.997471198129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.005486789542, + 5309.779039777971 + ], + [ + 2481.005486789542, + 5310.215902618286 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556920", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.005486789542, + "min_y": 5310.757863689329, + "max_x": 2481.005486789542, + "max_y": 5311.136812079304, + "center": [ + 2481.005486789542, + 5310.947337884316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.005486789542, + 5310.757863689329 + ], + [ + 2481.005486789542, + 5311.136812079304 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556921", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2479.651019175991, + "min_y": 5314.507292343953, + "max_x": 2481.6460004718365, + "max_y": 5316.169776757157, + "center": [ + 2480.6485098239136, + 5315.338534550555 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556922", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2479.5779234836004, + "min_y": 5307.755803899838, + "max_x": 2482.4330500954834, + "max_y": 5310.610930511721, + "center": [ + 2481.005486789542, + 5309.183367205779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.005486789542, + 5309.183367205779 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556923", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.42343596212, + "min_y": 5310.757863689329, + "max_x": 2481.587537616963, + "max_y": 5310.757863689329, + "center": [ + 2481.0054867895415, + 5310.757863689329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.42343596212, + 5310.757863689329 + ], + [ + 2481.587537616963, + 5310.757863689329 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556924", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.42343596212, + "min_y": 5310.215902618286, + "max_x": 2481.587537616963, + "max_y": 5310.215902618286, + "center": [ + 2481.0054867895415, + 5310.215902618286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.587537616963, + 5310.215902618286 + ], + [ + 2480.42343596212, + 5310.215902618286 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556925", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2479.052898846231, + "min_y": 5311.909010907413, + "max_x": 2484.040352085844, + "max_y": 5313.571495320617, + "center": [ + 2481.5466254660378, + 5312.740253114015 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556926", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2478.132738041744, + "min_y": 5311.136812079303, + "max_x": 2483.87823553734, + "max_y": 5316.882309574899, + "center": [ + 2481.005486789542, + 5314.009560827101 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.005486789542, + 5314.009560827101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556927", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.587537616963, + "min_y": 5310.215902618286, + "max_x": 2481.587537616963, + "max_y": 5310.757863689329, + "center": [ + 2481.587537616963, + 5310.486883153808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.587537616963, + 5310.215902618286 + ], + [ + 2481.587537616963, + 5310.757863689329 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.713681178081, + "min_y": 5400.303071648159, + "max_x": 2383.713681178081, + "max_y": 5401.808269415131, + "center": [ + 2383.713681178081, + 5401.055670531645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.713681178081, + 5400.303071648159 + ], + [ + 2383.713681178081, + 5401.808269415131 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556929", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2381.540265084812, + "min_y": 5402.988883133146, + "max_x": 2385.4589778966547, + "max_y": 5404.295120737094, + "center": [ + 2383.4996214907333, + 5403.642001935121 + ] + }, + "raw_value": "10212", + "clean_value": "10212", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55692A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2382.649456746204, + "min_y": 5405.305348337585, + "max_x": 2384.2169418709414, + "max_y": 5406.611585941533, + "center": [ + 2383.4331993085725, + 5405.958467139559 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55692B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2380.7985813297237, + "min_y": 5401.808269415129, + "max_x": 2386.5227101193786, + "max_y": 5407.532398204785, + "center": [ + 2383.660645724551, + 5404.670333809957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.660645724551, + 5404.670333809957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55692C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.144618831828, + "min_y": 5400.303071648159, + "max_x": 2384.282743524332, + "max_y": 5400.303071648159, + "center": [ + 2383.71368117808, + 5400.303071648159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.144618831828, + 5400.303071648159 + ], + [ + 2384.282743524332, + 5400.303071648159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55692D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2383.3624081248417, + "min_y": 5398.708660703076, + "max_x": 2384.0649542313204, + "max_y": 5399.411206809555, + "center": [ + 2383.713681178081, + 5399.059933756315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.713681178081, + 5399.059933756315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55692E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.164909898612, + "min_y": 5397.81679586447, + "max_x": 2384.26245245755, + "max_y": 5397.81679586447, + "center": [ + 2383.713681178081, + 5397.81679586447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.26245245755, + 5397.81679586447 + ], + [ + 2383.164909898612, + 5397.81679586447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55692F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.158752670606, + "min_y": 5399.976474801136, + "max_x": 2384.268609685557, + "max_y": 5399.976474801136, + "center": [ + 2383.7136811780815, + 5399.976474801136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.158752670606, + 5399.976474801136 + ], + [ + 2384.268609685557, + 5399.976474801136 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556930", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.164909898612, + "min_y": 5398.143392711489, + "max_x": 2383.533231620301, + "max_y": 5398.758552411453, + "center": [ + 2383.3490707594565, + 5398.450972561471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.533231620301, + 5398.758552411453 + ], + [ + 2383.164909898612, + 5398.143392711489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556931", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.164909898612, + "min_y": 5398.143392711489, + "max_x": 2384.26245245755, + "max_y": 5398.143392711489, + "center": [ + 2383.713681178081, + 5398.143392711489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.164909898612, + 5398.143392711489 + ], + [ + 2384.26245245755, + 5398.143392711489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556932", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.894130735862, + "min_y": 5398.143392711489, + "max_x": 2384.26245245755, + "max_y": 5398.758552411453, + "center": [ + 2384.0782915967056, + 5398.450972561471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.26245245755, + 5398.143392711489 + ], + [ + 2383.894130735862, + 5398.758552411453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556933", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.164909898612, + "min_y": 5399.361315101172, + "max_x": 2383.533231620301, + "max_y": 5399.976474801136, + "center": [ + 2383.3490707594565, + 5399.668894951154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.533231620301, + 5399.361315101172 + ], + [ + 2383.164909898612, + 5399.976474801136 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556934", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.894130735862, + "min_y": 5399.361315101172, + "max_x": 2384.26245245755, + "max_y": 5399.976474801136, + "center": [ + 2384.0782915967056, + 5399.668894951154 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.26245245755, + 5399.976474801136 + ], + [ + 2383.894130735862, + 5399.361315101172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556935", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2383.713681178081, + "min_y": 5394.813464911657, + "max_x": 2383.713681178081, + "max_y": 5397.81173674973, + "center": [ + 2383.713681178081, + 5396.312600830694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.713681178081, + 5397.81173674973 + ], + [ + 2383.713681178081, + 5394.813464911657 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556936", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2397.071730882451, + "min_y": 5390.788829367727, + "max_x": 2399.505810096449, + "max_y": 5390.788829367727, + "center": [ + 2398.28877048945, + 5390.788829367727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2397.071730882451, + 5390.788829367727 + ], + [ + 2399.505810096449, + 5390.788829367727 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556937", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.952145817089, + "min_y": 5417.856515000925, + "max_x": 2387.703858714787, + "max_y": 5417.856515000925, + "center": [ + 2386.8280022659383, + 5417.856515000925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.703858714787, + 5417.856515000925 + ], + [ + 2385.952145817089, + 5417.856515000925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556938", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2389.399963318257, + "min_y": 5417.856515000927, + "max_x": 2392.070532386383, + "max_y": 5417.856515000927, + "center": [ + 2390.73524785232, + 5417.856515000927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.399963318257, + 5417.856515000927 + ], + [ + 2392.070532386383, + 5417.856515000927 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556939", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.57877368955, + "min_y": 5417.541480510371, + "max_x": 2387.208842670662, + "max_y": 5418.171549491479, + "center": [ + 2386.893808180106, + 5417.856515000925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.57877368955, + 5417.541480510371 + ], + [ + 2387.208842670662, + 5418.171549491479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2386.263739198997, + "min_y": 5417.541480510371, + "max_x": 2386.893808180109, + "max_y": 5418.171549491479, + "center": [ + 2386.5787736895527, + 5417.856515000925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2386.893808180109, + 5418.171549491479 + ], + [ + 2386.263739198997, + 5417.541480510371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.94870470844, + "min_y": 5417.541480510371, + "max_x": 2386.57877368955, + "max_y": 5418.171549491479, + "center": [ + 2386.2637391989947, + 5417.856515000925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2385.94870470844, + 5417.541480510371 + ], + [ + 2386.57877368955, + 5418.171549491479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2385.94870470844, + "min_y": 5417.856515000925, + "max_x": 2387.703858714787, + "max_y": 5417.856515000925, + "center": [ + 2386.826281711614, + 5417.856515000925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.703858714787, + 5417.856515000925 + ], + [ + 2385.94870470844, + 5417.856515000925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.703858714787, + "min_y": 5417.226446019808, + "max_x": 2388.963996677007, + "max_y": 5417.856515000925, + "center": [ + 2388.333927695897, + 5417.5414805103665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.703858714787, + 5417.856515000925 + ], + [ + 2388.963996677007, + 5417.226446019808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2388.963996677007, + "min_y": 5417.226446019808, + "max_x": 2388.963996677007, + "max_y": 5418.486583982037, + "center": [ + 2388.963996677007, + 5417.856515000922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.963996677007, + 5417.226446019808 + ], + [ + 2388.963996677007, + 5418.486583982037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55693F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.703858714787, + "min_y": 5417.856515000925, + "max_x": 2388.963996677007, + "max_y": 5418.486583982037, + "center": [ + 2388.333927695897, + 5418.171549491481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.963996677007, + 5418.486583982037 + ], + [ + 2387.703858714787, + 5417.856515000925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.073789733672, + "min_y": 5417.856515000925, + "max_x": 2387.703858714787, + "max_y": 5419.116652963147, + "center": [ + 2387.3888242242297, + 5418.486583982036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.703858714787, + 5417.856515000925 + ], + [ + 2387.073789733672, + 5419.116652963147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556941", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.073789733672, + "min_y": 5419.116652963147, + "max_x": 2388.333927695891, + "max_y": 5419.116652963147, + "center": [ + 2387.7038587147817, + 5419.116652963147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.073789733672, + 5419.116652963147 + ], + [ + 2388.333927695891, + 5419.116652963147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556942", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.703858714787, + "min_y": 5417.856515000925, + "max_x": 2388.333927695891, + "max_y": 5419.116652963147, + "center": [ + 2388.018893205339, + 5418.486583982036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.333927695891, + 5419.116652963147 + ], + [ + 2387.703858714787, + 5417.856515000925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556943", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2389.399963318257, + "min_y": 5417.226446019808, + "max_x": 2389.399963318257, + "max_y": 5418.486583982037, + "center": [ + 2389.399963318257, + 5417.856515000922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.399963318257, + 5417.226446019808 + ], + [ + 2389.399963318257, + 5418.486583982037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556944", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2387.073789733672, + "min_y": 5419.543451170387, + "max_x": 2388.333927695891, + "max_y": 5419.543451170387, + "center": [ + 2387.7038587147817, + 5419.543451170387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.073789733672, + 5419.543451170387 + ], + [ + 2388.333927695891, + 5419.543451170387 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556945", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2387.703858714782, + "min_y": 5419.543451170387, + "max_x": 2387.703858714782, + "max_y": 5424.190687140051, + "center": [ + 2387.703858714782, + 5421.867069155219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.703858714782, + 5419.543451170387 + ], + [ + 2387.703858714782, + 5424.190687140051 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556946", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2378.04369022401, + "min_y": 5418.742795836528, + "max_x": 2383.485104115063, + "max_y": 5419.750465075612, + "center": [ + 2380.7643971695366, + 5419.246630456069 + ] + }, + "raw_value": "PSV-10212", + "clean_value": "PSV-10212", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556947", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2378.789289891765, + "min_y": 5417.110972693973, + "max_x": 2383.0215006959174, + "max_y": 5418.118641933057, + "center": [ + 2380.905395293841, + 5417.6148073135155 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556948", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2377.977282022365, + "min_y": 5415.578273715312, + "max_x": 2384.023297456869, + "max_y": 5416.585942954396, + "center": [ + 2381.000289739617, + 5416.082108334855 + ] + }, + "raw_value": "SP: 0.6MPa", + "clean_value": "SP: 0.6MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556949", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.71178576764, + "min_y": 5338.432575966912, + "max_x": 2316.71178576764, + "max_y": 5340.18428886461, + "center": [ + 2316.71178576764, + 5339.308432415761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.71178576764, + 5338.432575966912 + ], + [ + 2316.71178576764, + 5340.18428886461 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55694A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2316.711785767643, + "min_y": 5331.268176330854, + "max_x": 2316.711785767643, + "max_y": 5336.736471363441, + "center": [ + 2316.711785767643, + 5334.002323847148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.711785767643, + 5336.736471363441 + ], + [ + 2316.711785767643, + 5331.268176330854 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55694B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.396751277086, + "min_y": 5338.927592011035, + "max_x": 2317.026820258194, + "max_y": 5339.557660992149, + "center": [ + 2316.7117857676403, + 5339.242626501592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.396751277086, + 5339.557660992149 + ], + [ + 2317.026820258194, + 5338.927592011035 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55694C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.396751277086, + "min_y": 5339.242626501589, + "max_x": 2317.026820258194, + "max_y": 5339.872695482702, + "center": [ + 2316.7117857676403, + 5339.557660992145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.026820258194, + 5339.242626501589 + ], + [ + 2316.396751277086, + 5339.872695482702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55694D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.396751277086, + "min_y": 5339.557660992149, + "max_x": 2317.026820258194, + "max_y": 5340.187729973258, + "center": [ + 2316.7117857676403, + 5339.872695482703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.396751277086, + 5340.187729973258 + ], + [ + 2317.026820258194, + 5339.557660992149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55694E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.71178576764, + "min_y": 5338.432575966912, + "max_x": 2316.71178576764, + "max_y": 5340.187729973258, + "center": [ + 2316.71178576764, + 5339.310152970085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.71178576764, + 5338.432575966912 + ], + [ + 2316.71178576764, + 5340.187729973258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55694F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.081716786525, + "min_y": 5337.172438004692, + "max_x": 2316.71178576764, + "max_y": 5338.432575966912, + "center": [ + 2316.3967512770823, + 5337.802506985801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.71178576764, + 5338.432575966912 + ], + [ + 2316.081716786525, + 5337.172438004692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556950", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.081716786525, + "min_y": 5337.172438004692, + "max_x": 2317.341854748753, + "max_y": 5337.172438004692, + "center": [ + 2316.711785767639, + 5337.172438004692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.081716786525, + 5337.172438004692 + ], + [ + 2317.341854748753, + 5337.172438004692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556951", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.71178576764, + "min_y": 5337.172438004692, + "max_x": 2317.341854748753, + "max_y": 5338.432575966912, + "center": [ + 2317.0268202581965, + 5337.802506985801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.341854748753, + 5337.172438004692 + ], + [ + 2316.71178576764, + 5338.432575966912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556952", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.71178576764, + "min_y": 5338.432575966912, + "max_x": 2317.971923729863, + "max_y": 5339.062644948025, + "center": [ + 2317.3418547487518, + 5338.747610457469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.71178576764, + 5338.432575966912 + ], + [ + 2317.971923729863, + 5339.062644948025 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556953", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.971923729863, + "min_y": 5337.802506985807, + "max_x": 2317.971923729863, + "max_y": 5339.062644948025, + "center": [ + 2317.971923729863, + 5338.4325759669155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.971923729863, + 5339.062644948025 + ], + [ + 2317.971923729863, + 5337.802506985807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556954", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.71178576764, + "min_y": 5337.802506985807, + "max_x": 2317.971923729863, + "max_y": 5338.432575966912, + "center": [ + 2317.3418547487518, + 5338.117541476359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.971923729863, + 5337.802506985807 + ], + [ + 2316.71178576764, + 5338.432575966912 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556955", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.081716786525, + "min_y": 5336.736471363441, + "max_x": 2317.341854748753, + "max_y": 5336.736471363441, + "center": [ + 2316.711785767639, + 5336.736471363441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.081716786525, + 5336.736471363441 + ], + [ + 2317.341854748753, + 5336.736471363441 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556956", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.398721937104, + "min_y": 5337.802506985807, + "max_x": 2318.398721937104, + "max_y": 5339.062644948025, + "center": [ + 2318.398721937104, + 5338.4325759669155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.398721937104, + 5339.062644948025 + ], + [ + 2318.398721937104, + 5337.802506985807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556958", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2313.850819849027, + "min_y": 5329.864021906399, + "max_x": 2319.2922337400805, + "max_y": 5330.871691145483, + "center": [ + 2316.571526794554, + 5330.3678565259415 + ] + }, + "raw_value": "PSV-10217", + "clean_value": "PSV-10217", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556959", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2314.596419516783, + "min_y": 5328.232198763843, + "max_x": 2318.8286303209356, + "max_y": 5329.239868002927, + "center": [ + 2316.7125249188593, + 5328.736033383386 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55695A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2313.784411647382, + "min_y": 5326.699499785182, + "max_x": 2319.830427081886, + "max_y": 5327.707169024266, + "center": [ + 2316.807419364634, + 5327.203334404723 + ] + }, + "raw_value": "SP: 0.6MPa", + "clean_value": "SP: 0.6MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55695B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2386.513202282712, + "min_y": 5398.207310978245, + "max_x": 2390.431915094555, + "max_y": 5399.513548582193, + "center": [ + 2388.4725586886334, + 5398.860429780219 + ] + }, + "raw_value": "10212", + "clean_value": "10212", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55695C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2387.66403026773, + "min_y": 5400.523776182684, + "max_x": 2389.2315153924674, + "max_y": 5401.830013786632, + "center": [ + 2388.447772830099, + 5401.176894984657 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55695D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2385.8245539811523, + "min_y": 5397.026697260229, + "max_x": 2391.5486827708073, + "max_y": 5402.750826049885, + "center": [ + 2388.68661837598, + 5399.888761655057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2388.68661837598, + 5399.888761655057 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55695E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2466.377591534198, + "min_y": 5144.341807664509, + "max_x": 2491.2139477557266, + "max_y": 5146.641470277614, + "center": [ + 2478.795769644962, + 5145.491638971062 + ] + }, + "raw_value": "PGMEA & EL PROCESS", + "clean_value": "PGMEA & EL PROCESS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55695F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2188.895521667434, + "min_y": 5230.550764654208, + "max_x": 2190.1047247543347, + "max_y": 5231.558433893292, + "center": [ + 2189.5001232108843, + 5231.05459927375 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556960", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2180.796145996287, + "min_y": 5226.645035041736, + "max_x": 2182.6099506266382, + "max_y": 5227.65270428082, + "center": [ + 2181.7030483114627, + 5227.148869661278 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556961", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2315.852127214878, + "min_y": 5221.442466190485, + "max_x": 2316.8221198505275, + "max_y": 5222.25079338686, + "center": [ + 2316.3371235327027, + 5221.8466297886725 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556962", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2302.152130999784, + "min_y": 5218.362651298697, + "max_x": 2303.6071199532585, + "max_y": 5219.170978495072, + "center": [ + 2302.879625476521, + 5218.766814896884 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556963", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2291.699537935173, + "min_y": 5378.544768802109, + "max_x": 2292.9087410220736, + "max_y": 5379.5524380411925, + "center": [ + 2292.3041394786233, + 5379.04860342165 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556964", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.088855075487, + "min_y": 5376.400118515594, + "max_x": 2275.088855075487, + "max_y": 5377.499573239836, + "center": [ + 2275.088855075487, + 5376.949845877714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.088855075487, + 5377.499573239836 + ], + [ + 2275.088855075487, + 5376.400118515594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556965", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.659454540145, + "min_y": 5376.379792097219, + "max_x": 2274.659454540145, + "max_y": 5377.519899658212, + "center": [ + 2274.659454540145, + 5376.949845877716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.659454540145, + 5377.519899658212 + ], + [ + 2274.659454540145, + 5376.379792097219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556966", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2326.227022290647, + "min_y": 5306.533090031592, + "max_x": 2327.490372831185, + "max_y": 5306.533090031598, + "center": [ + 2326.858697560916, + 5306.533090031595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.490372831185, + 5306.533090031592 + ], + [ + 2326.227022290647, + 5306.533090031598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556967", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.827662764236, + "min_y": 5305.981542649825, + "max_x": 2327.827662764236, + "max_y": 5307.08099737407, + "center": [ + 2327.827662764236, + 5306.5312700119475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.827662764236, + 5305.981542649825 + ], + [ + 2327.827662764236, + 5307.08099737407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556968", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.490372831185, + "min_y": 5305.981542649825, + "max_x": 2327.490372831185, + "max_y": 5307.08099737407, + "center": [ + 2327.490372831185, + 5306.5312700119475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.490372831185, + 5305.981542649825 + ], + [ + 2327.490372831185, + 5307.08099737407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556969", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.827662764236, + "min_y": 5305.977194714195, + "max_x": 2327.827662764236, + "max_y": 5307.088985349, + "center": [ + 2327.827662764236, + 5306.533090031598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.827662764236, + 5307.088985349 + ], + [ + 2327.827662764236, + 5305.977194714195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55696A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.827662764236, + "min_y": 5305.977194714195, + "max_x": 2327.827662764236, + "max_y": 5307.088985349, + "center": [ + 2327.827662764236, + 5306.533090031598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.827662764236, + 5307.088985349 + ], + [ + 2327.827662764236, + 5305.977194714195 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55696B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2323.446319878275, + "min_y": 5304.299622996417, + "max_x": 2325.260124508626, + "max_y": 5305.307292235501, + "center": [ + 2324.3532221934506, + 5304.803457615959 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556972", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5311.594538733078, + "max_x": 2477.956712673301, + "max_y": 5311.594538733078, + "center": [ + 2471.74120173347, + 5311.594538733078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.525690793639, + 5311.594538733078 + ], + [ + 2477.956712673301, + 5311.594538733078 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556973", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2375.933857894182, + "min_y": 5322.331277219382, + "max_x": 2377.747662524533, + "max_y": 5323.338946458466, + "center": [ + 2376.8407602093575, + 5322.835111838924 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556974", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2125.112140597199, + "min_y": 5153.751342207256, + "max_x": 2153.7882955560244, + "max_y": 5155.551342207256, + "center": [ + 2139.4502180766117, + 5154.651342207257 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,940 x 4,000H\\PVOLUME : 13.2M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS316L", + "clean_value": ".9; SIZE : %%C1,940 x 4,000H VOLUME : 13.2M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS316L", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556978", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2153.691677591709, + "min_y": 5153.537898962976, + "max_x": 2178.987086730788, + "max_y": 5155.337898962976, + "center": [ + 2166.3393821612485, + 5154.437898962977 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C1,100 x 1,259H\\PVOLUME : 1.46M\\H0.7x;\\S3^ ;}\\H0.999999x;\\PDP /OP : F.W /ATM\\PDT/ OT : 80%%DC / AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C1,100 x 1,259H VOLUME : 1.46M .7x; ^ ; .999999x; DP /OP : F.W /ATM DT/ OT : 80%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55697C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5326.699958259219, + "max_x": 2290.495694974565, + "max_y": 5332.536883134045, + "center": [ + 2290.495694974565, + 5329.618420696632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5332.536883134045 + ], + [ + 2290.495694974565, + 5326.699958259219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55697D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5331.066034890887, + "max_x": 2291.476260470004, + "max_y": 5332.046600386326, + "center": [ + 2290.9859777222846, + 5331.556317638606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5331.066034890887 + ], + [ + 2291.476260470004, + 5332.046600386326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55697E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5330.372670379664, + "max_x": 2291.476260470004, + "max_y": 5331.353235875102, + "center": [ + 2290.9859777222846, + 5330.862953127383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5330.372670379664 + ], + [ + 2291.476260470004, + 5331.353235875102 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55697F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5329.679305868441, + "max_x": 2291.476260470004, + "max_y": 5330.659871363881, + "center": [ + 2290.9859777222846, + 5330.1695886161615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5329.679305868441 + ], + [ + 2291.476260470004, + 5330.659871363881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556980", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5328.985941357219, + "max_x": 2291.476260470004, + "max_y": 5329.966506852657, + "center": [ + 2290.9859777222846, + 5329.476224104938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5328.985941357219 + ], + [ + 2291.476260470004, + 5329.966506852657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556981", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5328.292576845995, + "max_x": 2291.476260470004, + "max_y": 5329.273142341435, + "center": [ + 2290.9859777222846, + 5328.782859593715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5328.292576845995 + ], + [ + 2291.476260470004, + 5329.273142341435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556982", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2290.495694974565, + "min_y": 5327.599212334773, + "max_x": 2291.476260470004, + "max_y": 5328.579777830213, + "center": [ + 2290.9859777222846, + 5328.089495082493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.495694974565, + 5327.599212334773 + ], + [ + 2291.476260470004, + 5328.579777830213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556983", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2289.911915809037, + "min_y": 5327.01953581833, + "max_x": 2292.5996310499813, + "max_y": 5328.512710952188, + "center": [ + 2291.255773429509, + 5327.76612338526 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556984", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2388.789363037563, + "min_y": 5322.934289762699, + "max_x": 2390.603167667914, + "max_y": 5323.941959001783, + "center": [ + 2389.6962653527385, + 5323.438124382241 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556985", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2339.387109556447, + "min_y": 5304.709977337964, + "max_x": 2341.200914186798, + "max_y": 5305.717646577048, + "center": [ + 2340.2940118716224, + 5305.213811957507 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556986", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2423.308525840422, + "min_y": 5364.49004598007, + "max_x": 2424.517728927323, + "max_y": 5365.497715219154, + "center": [ + 2423.9131273838725, + 5364.993880599612 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556987", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2419.987789252221, + "min_y": 5366.795325977278, + "max_x": 2421.801593882572, + "max_y": 5367.8029952163615, + "center": [ + 2420.8946915673964, + 5367.29916059682 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556988", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.734084342799, + "min_y": 5267.941027154815, + "max_x": 2175.734084342799, + "max_y": 5281.271933196739, + "center": [ + 2175.734084342799, + 5274.606480175777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.734084342799, + 5267.941027154815 + ], + [ + 2175.734084342799, + 5281.271933196739 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556989", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.363115026368, + "min_y": 5267.941027154815, + "max_x": 2168.363115026368, + "max_y": 5281.271933196739, + "center": [ + 2168.363115026368, + 5274.606480175777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.363115026368, + 5267.941027154815 + ], + [ + 2168.363115026368, + 5281.271933196739 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55698B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.334430948716, + "min_y": 5282.132208919941, + "max_x": 2175.334430948716, + "max_y": 5282.707729780515, + "center": [ + 2175.334430948716, + 5282.419969350229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.334430948716, + 5282.132208919941 + ], + [ + 2175.334430948716, + 5282.707729780515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55698C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2175.1164444324945, + "min_y": 5283.261186720395, + "max_x": 2175.5524174649377, + "max_y": 5283.697159752838, + "center": [ + 2175.334430948716, + 5283.479173236617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.334430948716, + 5283.479173236617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55698D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.981292792436, + "min_y": 5282.707729780515, + "max_x": 2175.687569104998, + "max_y": 5282.707729780515, + "center": [ + 2175.334430948717, + 5282.707729780515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.687569104998, + 5282.707729780515 + ], + [ + 2174.981292792436, + 5282.707729780515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55698E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.981292792436, + "min_y": 5284.250616692719, + "max_x": 2175.687569104998, + "max_y": 5284.250616692719, + "center": [ + 2175.334430948717, + 5284.250616692719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.687569104998, + 5284.250616692719 + ], + [ + 2174.981292792436, + 5284.250616692719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55698F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5282.458887805825, + "max_x": 2172.048599684584, + "max_y": 5282.88489554138, + "center": [ + 2172.048599684584, + 5282.671891673603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5282.458887805825 + ], + [ + 2172.048599684584, + 5282.88489554138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556990", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5283.116452884375, + "max_x": 2172.048599684584, + "max_y": 5284.201774895818, + "center": [ + 2172.048599684584, + 5283.659113890097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5283.116452884375 + ], + [ + 2172.048599684584, + 5284.201774895818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556991", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.993884646319, + "min_y": 5282.91040319436, + "max_x": 2175.222450908997, + "max_y": 5283.292147591424, + "center": [ + 2175.1081677776583, + 5283.101275392892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.222450908997, + 5283.292147591424 + ], + [ + 2174.993884646319, + 5282.91040319436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556992", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.993884646319, + "min_y": 5282.91040319436, + "max_x": 2175.674977251116, + "max_y": 5282.91040319436, + "center": [ + 2175.3344309487175, + 5282.91040319436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.993884646319, + 5282.91040319436 + ], + [ + 2175.674977251116, + 5282.91040319436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556993", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.446410988434, + "min_y": 5282.91040319436, + "max_x": 2175.674977251116, + "max_y": 5283.292147591424, + "center": [ + 2175.560694119775, + 5283.101275392892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.674977251116, + 5282.91040319436 + ], + [ + 2175.446410988434, + 5283.292147591424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556994", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.993884646319, + "min_y": 5283.666198881808, + "max_x": 2175.222450908997, + "max_y": 5284.047943278876, + "center": [ + 2175.1081677776583, + 5283.8570710803415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.222450908997, + 5283.666198881808 + ], + [ + 2174.993884646319, + 5284.047943278876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556995", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.993884646319, + "min_y": 5284.047943278876, + "max_x": 2175.674977251116, + "max_y": 5284.047943278876, + "center": [ + 2175.3344309487175, + 5284.047943278876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.993884646319, + 5284.047943278876 + ], + [ + 2175.674977251116, + 5284.047943278876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556996", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.446410988434, + "min_y": 5283.666198881808, + "max_x": 2175.674977251116, + "max_y": 5284.047943278876, + "center": [ + 2175.560694119775, + 5283.8570710803415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.674977251116, + 5284.047943278876 + ], + [ + 2175.446410988434, + 5283.666198881808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556997", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2177.097471446358, + "min_y": 5272.115364872349, + "max_x": 2181.7999268205695, + "max_y": 5273.421602476297, + "center": [ + 2179.448699133464, + 5272.768483674323 + ] + }, + "raw_value": "10201B", + "clean_value": "10201B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556999", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.47479276569, + "min_y": 5267.326015091576, + "max_x": 2168.363115026368, + "max_y": 5267.941027154815, + "center": [ + 2167.418953896029, + 5267.633521123195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.363115026368, + 5267.941027154815 + ], + [ + 2166.47479276569, + 5267.326015091576 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55699A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5263.915367945859, + "max_x": 2172.048599684584, + "max_y": 5266.754072545729, + "center": [ + 2172.048599684584, + 5265.3347202457935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5266.754072545729 + ], + [ + 2172.048599684584, + 5263.915367945859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55699B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2171.184179569983, + "min_y": 5280.855919671209, + "max_x": 2173.199966000691, + "max_y": 5281.975801021603, + "center": [ + 2172.1920727853367, + 5281.415860346406 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55699C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2177.92872840157, + "min_y": 5273.966776219685, + "max_x": 2179.496213526307, + "max_y": 5275.273013823633, + "center": [ + 2178.7124709639384, + 5274.6198950216585 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55699D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.287218578867, + "min_y": 5268.403738615295, + "max_x": 2176.287218578867, + "max_y": 5269.084831220093, + "center": [ + 2176.287218578867, + 5268.744284917694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.287218578867, + 5268.403738615295 + ], + [ + 2176.287218578867, + 5269.084831220093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55699E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.287218578867, + "min_y": 5268.403738615295, + "max_x": 2176.287218578867, + "max_y": 5269.110014927856, + "center": [ + 2176.287218578867, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.287218578867, + 5268.403738615295 + ], + [ + 2176.287218578867, + 5269.110014927856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55699F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2176.8406755187475, + "min_y": 5268.538890255354, + "max_x": 2177.2766485511906, + "max_y": 5268.974863287797, + "center": [ + 2177.058662034969, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.058662034969, + 5268.756876771576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.287218578867, + "min_y": 5268.403738615295, + "max_x": 2176.287218578867, + "max_y": 5269.110014927856, + "center": [ + 2176.287218578867, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.287218578867, + 5268.403738615295 + ], + [ + 2176.287218578867, + 5269.110014927856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.830105491072, + "min_y": 5268.403738615295, + "max_x": 2177.830105491072, + "max_y": 5269.110014927856, + "center": [ + 2177.830105491072, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.830105491072, + 5268.403738615295 + ], + [ + 2177.830105491072, + 5269.110014927856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.48989199271, + "min_y": 5268.868856811295, + "max_x": 2176.871636389777, + "max_y": 5269.097423073975, + "center": [ + 2176.6807641912437, + 5268.983139942635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.871636389777, + 5268.868856811295 + ], + [ + 2176.48989199271, + 5269.097423073975 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.48989199271, + "min_y": 5268.416330469176, + "max_x": 2176.48989199271, + "max_y": 5269.097423073975, + "center": [ + 2176.48989199271, + 5268.756876771575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.48989199271, + 5269.097423073975 + ], + [ + 2176.48989199271, + 5268.416330469176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.48989199271, + "min_y": 5268.416330469176, + "max_x": 2176.871636389777, + "max_y": 5268.644896731855, + "center": [ + 2176.6807641912437, + 5268.530613600515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.48989199271, + 5268.416330469176 + ], + [ + 2176.871636389777, + 5268.644896731855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.245687680156, + "min_y": 5268.868856811295, + "max_x": 2177.627432077229, + "max_y": 5269.097423073975, + "center": [ + 2177.4365598786926, + 5268.983139942635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.245687680156, + 5268.868856811295 + ], + [ + 2177.627432077229, + 5269.097423073975 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.627432077229, + "min_y": 5268.416330469176, + "max_x": 2177.627432077229, + "max_y": 5269.097423073975, + "center": [ + 2177.627432077229, + 5268.756876771575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.627432077229, + 5269.097423073975 + ], + [ + 2177.627432077229, + 5268.416330469176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.245687680156, + "min_y": 5268.416330469176, + "max_x": 2177.627432077229, + "max_y": 5268.644896731855, + "center": [ + 2177.4365598786926, + 5268.530613600515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.627432077229, + 5268.416330469176 + ], + [ + 2177.245687680156, + 5268.644896731855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569A8", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2171.722358331121, + "min_y": 5282.884895541384, + "max_x": 2172.374841038048, + "max_y": 5282.884895541384, + "center": [ + 2172.0485996845846, + 5282.884895541384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.722358331121, + 5282.884895541384 + ], + [ + 2172.374841038048, + 5282.884895541384 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569A9", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2171.722358331121, + "min_y": 5283.116452884375, + "max_x": 2172.374841038048, + "max_y": 5283.116452884375, + "center": [ + 2172.0485996845846, + 5283.116452884375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.722358331121, + 5283.116452884375 + ], + [ + 2172.374841038048, + 5283.116452884375 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.734084342799, + "min_y": 5268.756876771576, + "max_x": 2176.287218578867, + "max_y": 5268.756876771576, + "center": [ + 2176.0106514608333, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.734084342799, + 5268.756876771576 + ], + [ + 2176.287218578867, + 5268.756876771576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.923980578437, + "min_y": 5281.901385683047, + "max_x": 2168.924028998485, + "max_y": 5282.54167047053, + "center": [ + 2168.924004788461, + 5282.221528076789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.924028998485, + 5281.901385683047 + ], + [ + 2168.923980578437, + 5282.54167047053 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.924028998485, + "min_y": 5270.572976769066, + "max_x": 2168.924028998485, + "max_y": 5281.901385683047, + "center": [ + 2168.924028998485, + 5276.237181226057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.924028998485, + 5281.901385683047 + ], + [ + 2168.924028998485, + 5270.572976769066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.60730737646, + "min_y": 5280.128129131463, + "max_x": 2167.60730737646, + "max_y": 5280.80922173626, + "center": [ + 2167.60730737646, + 5280.468675433862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.60730737646, + 5280.80922173626 + ], + [ + 2167.60730737646, + 5280.128129131463 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790302, + "min_y": 5280.11553727758, + "max_x": 2167.809980790302, + "max_y": 5280.821813590143, + "center": [ + 2167.809980790302, + 5280.468675433862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.809980790302, + 5280.11553727758 + ], + [ + 2167.809980790302, + 5280.821813590143 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790299, + "min_y": 5280.456083579981, + "max_x": 2168.363115026368, + "max_y": 5280.456083579981, + "center": [ + 2168.0865479083336, + 5280.456083579981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.363115026368, + 5280.456083579981 + ], + [ + 2167.809980790299, + 5280.456083579981 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569B0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2168.923051197746, + "min_y": 5283.784757775979, + "max_x": 2168.924028998485, + "max_y": 5291.578878333143, + "center": [ + 2168.9235400981156, + 5287.6818180545615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.924028998485, + 5291.578878333143 + ], + [ + 2168.923051197746, + 5283.784757775979 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569B1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2202.141561335447, + "min_y": 5300.058356922025, + "max_x": 2203.9333714960767, + "max_y": 5301.551532055883, + "center": [ + 2203.0374664157616, + 5300.804944488955 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569B2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2197.977684250727, + "min_y": 5302.39769095087, + "max_x": 2209.023479470828, + "max_y": 5302.39769095087, + "center": [ + 2203.500581860778, + 5302.39769095087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.023479470828, + 5302.39769095087 + ], + [ + 2197.977684250727, + 5302.39769095087 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569B3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2196.488532544029, + "min_y": 5300.908539244173, + "max_x": 2197.977684250727, + "max_y": 5302.39769095087, + "center": [ + 2197.233108397378, + 5301.653115097522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.977684250727, + 5302.39769095087 + ], + [ + 2196.488532544029, + 5300.908539244173 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569B4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2196.488532544029, + "min_y": 5299.419387537476, + "max_x": 2197.977684250727, + "max_y": 5300.908539244173, + "center": [ + 2197.233108397378, + 5300.163963390824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.488532544029, + 5300.908539244173 + ], + [ + 2197.977684250727, + 5299.419387537476 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569B5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2197.977684250727, + "min_y": 5299.419387537476, + "max_x": 2209.023479470828, + "max_y": 5299.419387537476, + "center": [ + 2203.500581860778, + 5299.419387537476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.023479470828, + 5299.419387537476 + ], + [ + 2197.977684250727, + 5299.419387537476 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.023479470828, + "min_y": 5299.419387537476, + "max_x": 2209.023479470828, + "max_y": 5302.39769095087, + "center": [ + 2209.023479470828, + 5300.908539244173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.023479470828, + 5299.419387537476 + ], + [ + 2209.023479470828, + 5302.39769095087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569B7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2174.587843381795, + "min_y": 5300.908539244173, + "max_x": 2196.488532544029, + "max_y": 5300.908539244173, + "center": [ + 2185.538187962912, + 5300.908539244173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.488532544029, + 5300.908539244173 + ], + [ + 2174.587843381795, + 5300.908539244173 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569B8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2180.466225120765, + "min_y": 5301.370334887561, + "max_x": 2192.560943705014, + "max_y": 5302.490216237954, + "center": [ + 2186.5135844128895, + 5301.930275562758 + ] + }, + "raw_value": "N2-10710-15A-F1A-n", + "clean_value": "N2-10710-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569B9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2196.449086228687, + "min_y": 5309.006861670968, + "max_x": 2207.494881448789, + "max_y": 5309.006861670968, + "center": [ + 2201.971983838738, + 5309.006861670968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.449086228687, + 5309.006861670968 + ], + [ + 2207.494881448789, + 5309.006861670968 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569BA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2207.494881448789, + "min_y": 5307.517709964271, + "max_x": 2208.984033155486, + "max_y": 5309.006861670968, + "center": [ + 2208.2394573021375, + 5308.262285817619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.494881448789, + 5309.006861670968 + ], + [ + 2208.984033155486, + 5307.517709964271 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569BB", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2207.494881448789, + "min_y": 5306.028558257573, + "max_x": 2208.984033155486, + "max_y": 5307.517709964271, + "center": [ + 2208.2394573021375, + 5306.773134110922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.984033155486, + 5307.517709964271 + ], + [ + 2207.494881448789, + 5306.028558257573 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569BC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2196.449086228687, + "min_y": 5306.028558257573, + "max_x": 2207.494881448789, + "max_y": 5306.028558257573, + "center": [ + 2201.971983838738, + 5306.028558257573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.449086228687, + 5306.028558257573 + ], + [ + 2207.494881448789, + 5306.028558257573 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5569BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2196.449086228687, + "min_y": 5306.028558257573, + "max_x": 2196.449086228687, + "max_y": 5309.006861670968, + "center": [ + 2196.449086228687, + 5307.517709964271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.449086228687, + 5306.028558257573 + ], + [ + 2196.449086228687, + 5309.006861670968 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569BE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2170.540682532323, + "min_y": 5307.517709964271, + "max_x": 2196.449086228687, + "max_y": 5307.517709964271, + "center": [ + 2183.494884380505, + 5307.517709964271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.449086228687, + 5307.517709964271 + ], + [ + 2170.540682532323, + 5307.517709964271 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569BF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2180.279634109707, + "min_y": 5307.935142940154, + "max_x": 2192.3743526939556, + "max_y": 5309.055024290547, + "center": [ + 2186.3269934018313, + 5308.495083615351 + ] + }, + "raw_value": "VG-10433-50A-F1A-n", + "clean_value": "VG-10433-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569C0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2197.8965248137, + "min_y": 5306.733475045621, + "max_x": 2205.063765456218, + "max_y": 5308.226650179479, + "center": [ + 2201.480145134959, + 5307.480062612551 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569C1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2162.350868001448, + "min_y": 5274.336186147482, + "max_x": 2163.918353126185, + "max_y": 5275.64242375143, + "center": [ + 2163.1346105638168, + 5274.989304949457 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2160.9873200917345, + "min_y": 5271.633446912287, + "max_x": 2165.5006358546498, + "max_y": 5276.146762675202, + "center": [ + 2163.243977973192, + 5273.890104793744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.243977973192, + 5273.890104793744 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2161.698590017466, + "min_y": 5272.277267138545, + "max_x": 2165.6173028293088, + "max_y": 5273.583504742493, + "center": [ + 2163.6579464233873, + 5272.930385940519 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2158.074046556714, + "min_y": 5274.336186147478, + "max_x": 2159.6415316814514, + "max_y": 5275.642423751426, + "center": [ + 2158.8577891190826, + 5274.989304949451 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5276.146762675205, + "max_x": 2158.73066221027, + "max_y": 5276.146762675205, + "center": [ + 2157.6023332695377, + 5276.146762675205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2158.73066221027, + 5276.146762675205 + ], + [ + 2156.474004328805, + 5276.146762675205 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2158.73066221027, + "min_y": 5276.146762675205, + "max_x": 2160.987320091731, + "max_y": 5276.146762675205, + "center": [ + 2159.8589911510007, + 5276.146762675205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2158.73066221027, + 5276.146762675205 + ], + [ + 2160.987320091731, + 5276.146762675205 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2160.987320091731, + "min_y": 5273.890104793739, + "max_x": 2160.987320091731, + "max_y": 5276.146762675205, + "center": [ + 2160.987320091731, + 5275.018433734472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.987320091731, + 5273.890104793739 + ], + [ + 2160.987320091731, + 5276.146762675205 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5271.633446912275, + "max_x": 2160.987320091731, + "max_y": 5271.633446912275, + "center": [ + 2158.730662210268, + 5271.633446912275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.474004328805, + 5271.633446912275 + ], + [ + 2160.987320091731, + 5271.633446912275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569C9", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2160.987320091731, + "min_y": 5271.633446912275, + "max_x": 2160.987320091731, + "max_y": 5273.890104793736, + "center": [ + 2160.987320091731, + 5272.761775853005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.987320091731, + 5273.890104793736 + ], + [ + 2160.987320091731, + 5271.633446912275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569CA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5273.890104793736, + "max_x": 2160.987320091731, + "max_y": 5273.890104793739, + "center": [ + 2158.730662210268, + 5273.890104793738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.987320091731, + 5273.890104793739 + ], + [ + 2156.474004328805, + 5273.890104793736 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569CB", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.4740043288125, + "min_y": 5271.633446912281, + "max_x": 2160.9873200917277, + "max_y": 5276.146762675196, + "center": [ + 2158.73066221027, + 5273.890104793739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2158.73066221027, + 5273.890104793739 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569CC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2157.185274254539, + "min_y": 5272.277267138541, + "max_x": 2161.1039870663817, + "max_y": 5273.583504742489, + "center": [ + 2159.1446306604603, + 5272.930385940515 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569CD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2168.924028998485, + "min_y": 5291.578878333143, + "max_x": 2168.924028998485, + "max_y": 5319.169849063344, + "center": [ + 2168.924028998485, + 5305.3743636982435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.924028998485, + 5319.169849063344 + ], + [ + 2168.924028998485, + 5291.578878333143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569CE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2167.838709166643, + "min_y": 5290.279393403739, + "max_x": 2179.261498940656, + "max_y": 5291.399274754132, + "center": [ + 2173.5501040536496, + 5290.839334078935 + ] + }, + "raw_value": "P-10201-25A-F1A-n", + "clean_value": "P-10201-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569CF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2196.26777210529, + "min_y": 5309.488221316268, + "max_x": 2207.0186330690667, + "max_y": 5310.608102666662, + "center": [ + 2201.643202587178, + 5310.048161991464 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569D0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2197.796370127329, + "min_y": 5302.837702323475, + "max_x": 2210.5630175218134, + "max_y": 5303.957583673869, + "center": [ + 2204.179693824571, + 5303.397642998672 + ] + }, + "raw_value": "SARF-UTILITY-UFD-N2", + "clean_value": "SARF-UTILITY-UFD-N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569D1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2176.89530228093, + "min_y": 5282.647522672053, + "max_x": 2184.2865191935266, + "max_y": 5283.7674040224465, + "center": [ + 2180.590910737228, + 5283.207463347249 + ] + }, + "raw_value": "T10201BA-10", + "clean_value": "T10201BA-10", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5569D2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2177.344242154343, + "min_y": 5263.814501702239, + "max_x": 2184.7354590669397, + "max_y": 5264.934383052632, + "center": [ + 2181.039850610641, + 5264.374442377435 + ] + }, + "raw_value": "T10201BA-07", + "clean_value": "T10201BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5569D3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2179.52133992043, + "min_y": 5293.004762117848, + "max_x": 2187.381159985285, + "max_y": 5294.012431356932, + "center": [ + 2183.4512499528573, + 5293.508596737391 + ] + }, + "raw_value": "-200~400mmH2O", + "clean_value": "-200~400mmH2O", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569D4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2181.79068662204, + "min_y": 5294.659817158839, + "max_x": 2186.627498969643, + "max_y": 5295.667486397923, + "center": [ + 2184.2090927958416, + 5295.163651778381 + ] + }, + "raw_value": "BV-10201", + "clean_value": "BV-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.299633990301, + "min_y": 5292.596616852985, + "max_x": 2190.537502273959, + "max_y": 5292.596616852985, + "center": [ + 2184.41856813213, + 5292.596616852985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.299633990301, + 5292.596616852985 + ], + [ + 2190.537502273959, + 5292.596616852985 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.07115371294, + "min_y": 5288.572305671357, + "max_x": 2178.299633990301, + "max_y": 5292.596616852985, + "center": [ + 2175.1853938516206, + 5290.584461262171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.299633990301, + 5292.596616852985 + ], + [ + 2172.07115371294, + 5288.572305671357 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.07115371294, + "min_y": 5288.572305671357, + "max_x": 2172.823748113206, + "max_y": 5289.484988349535, + "center": [ + 2172.447450913073, + 5289.028647010446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.07115371294, + 5288.572305671357 + ], + [ + 2172.823748113206, + 5289.484988349535 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.823748113206, + "min_y": 5289.184154901089, + "max_x": 2173.018120954813, + "max_y": 5289.484988349535, + "center": [ + 2172.9209345340096, + 5289.334571625312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.823748113206, + 5289.484988349535 + ], + [ + 2173.018120954813, + 5289.184154901089 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.928000498416, + "min_y": 5282.132208919941, + "max_x": 2178.928000498416, + "max_y": 5282.707729780515, + "center": [ + 2178.928000498416, + 5282.419969350229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498416, + 5282.132208919941 + ], + [ + 2178.928000498416, + 5282.707729780515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2178.7100139821946, + "min_y": 5283.261186720395, + "max_x": 2179.1459870146377, + "max_y": 5283.697159752838, + "center": [ + 2178.928000498416, + 5283.479173236617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498416, + 5283.479173236617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.574862342137, + "min_y": 5282.707729780515, + "max_x": 2179.281138654699, + "max_y": 5282.707729780515, + "center": [ + 2178.928000498418, + 5282.707729780515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.281138654699, + 5282.707729780515 + ], + [ + 2178.574862342137, + 5282.707729780515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.574862342137, + "min_y": 5284.250616692719, + "max_x": 2179.281138654699, + "max_y": 5284.250616692719, + "center": [ + 2178.928000498418, + 5284.250616692719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.281138654699, + 5284.250616692719 + ], + [ + 2178.574862342137, + 5284.250616692719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.587454196019, + "min_y": 5282.91040319436, + "max_x": 2178.816020458698, + "max_y": 5283.292147591424, + "center": [ + 2178.7017373273584, + 5283.101275392892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.816020458698, + 5283.292147591424 + ], + [ + 2178.587454196019, + 5282.91040319436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.587454196019, + "min_y": 5282.91040319436, + "max_x": 2179.268546800816, + "max_y": 5282.91040319436, + "center": [ + 2178.9280004984175, + 5282.91040319436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.587454196019, + 5282.91040319436 + ], + [ + 2179.268546800816, + 5282.91040319436 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.039980538135, + "min_y": 5282.91040319436, + "max_x": 2179.268546800816, + "max_y": 5283.292147591424, + "center": [ + 2179.1542636694753, + 5283.101275392892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.268546800816, + 5282.91040319436 + ], + [ + 2179.039980538135, + 5283.292147591424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.587454196019, + "min_y": 5283.666198881808, + "max_x": 2178.816020458698, + "max_y": 5284.047943278876, + "center": [ + 2178.7017373273584, + 5283.8570710803415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.816020458698, + 5283.666198881808 + ], + [ + 2178.587454196019, + 5284.047943278876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.587454196019, + "min_y": 5284.047943278876, + "max_x": 2179.268546800816, + "max_y": 5284.047943278876, + "center": [ + 2178.9280004984175, + 5284.047943278876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.587454196019, + 5284.047943278876 + ], + [ + 2179.268546800816, + 5284.047943278876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.039980538135, + "min_y": 5283.666198881808, + "max_x": 2179.268546800816, + "max_y": 5284.047943278876, + "center": [ + 2179.1542636694753, + 5283.8570710803415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.268546800816, + 5284.047943278876 + ], + [ + 2179.039980538135, + 5283.666198881808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569E3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2178.928000498418, + "min_y": 5284.250616692719, + "max_x": 2178.928000498418, + "max_y": 5285.176046923224, + "center": [ + 2178.928000498418, + 5284.713331807971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498418, + 5284.250616692719 + ], + [ + 2178.928000498418, + 5285.176046923224 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5569E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.928000498416, + "min_y": 5285.992347792628, + "max_x": 2178.928000498416, + "max_y": 5286.457420816685, + "center": [ + 2178.928000498416, + 5286.224884304656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498416, + 5285.992347792628 + ], + [ + 2178.928000498416, + 5286.457420816685 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569E5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2177.86377606654, + "min_y": 5289.419543446619, + "max_x": 2179.4312611912774, + "max_y": 5290.725781050567, + "center": [ + 2178.647518628909, + 5290.072662248593 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569E6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2176.3052225713914, + "min_y": 5286.457420816688, + "max_x": 2181.550778425441, + "max_y": 5291.702976670737, + "center": [ + 2178.928000498416, + 5289.080198743713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498416, + 5289.080198743713 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569E7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2176.777807006616, + "min_y": 5281.470650299777, + "max_x": 2181.0781939902163, + "max_y": 5285.771037283376, + "center": [ + 2178.928000498416, + 5283.620843791577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.928000498416, + 5283.620843791577 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.051316504223, + "min_y": 5285.992347792628, + "max_x": 2179.804684492612, + "max_y": 5285.992347792628, + "center": [ + 2178.9280004984175, + 5285.992347792628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.051316504223, + 5285.992347792628 + ], + [ + 2179.804684492612, + 5285.992347792628 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.051316504223, + "min_y": 5285.176046923224, + "max_x": 2178.051316504223, + "max_y": 5285.992347792628, + "center": [ + 2178.051316504223, + 5285.584197357926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.051316504223, + 5285.992347792628 + ], + [ + 2178.051316504223, + 5285.176046923224 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.051316504223, + "min_y": 5285.176046923224, + "max_x": 2179.804684492612, + "max_y": 5285.176046923224, + "center": [ + 2178.9280004984175, + 5285.176046923224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.804684492612, + 5285.176046923224 + ], + [ + 2178.051316504223, + 5285.176046923224 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.804684492612, + "min_y": 5285.176046923224, + "max_x": 2179.804684492612, + "max_y": 5285.992347792628, + "center": [ + 2179.804684492612, + 5285.584197357926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.804684492612, + 5285.176046923224 + ], + [ + 2179.804684492612, + 5285.992347792628 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569EC", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2176.266051541271, + "min_y": 5287.520204871824, + "max_x": 2180.968506915482, + "max_y": 5288.826442475772, + "center": [ + 2178.6172792283764, + 5288.173323673798 + ] + }, + "raw_value": "10201A", + "clean_value": "10201A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5569ED", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2166.8205508179813, + "min_y": 5269.526788765134, + "max_x": 2167.2565238504244, + "max_y": 5269.9627617975775, + "center": [ + 2167.038537334203, + 5269.744775281356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.038537334203, + 5269.744775281356 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.267093878101, + "min_y": 5269.391637125074, + "max_x": 2166.267093878101, + "max_y": 5270.097913437634, + "center": [ + 2166.267093878101, + 5269.744775281354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.267093878101, + 5269.391637125074 + ], + [ + 2166.267093878101, + 5270.097913437634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.225562979395, + "min_y": 5269.856755321075, + "max_x": 2167.607307376462, + "max_y": 5270.085321583753, + "center": [ + 2167.416435177928, + 5269.971038452414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.225562979395, + 5269.856755321075 + ], + [ + 2167.607307376462, + 5270.085321583753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.225562979395, + "min_y": 5269.404228978956, + "max_x": 2167.607307376462, + "max_y": 5269.632795241635, + "center": [ + 2167.416435177928, + 5269.518512110295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.607307376462, + 5269.404228978956 + ], + [ + 2167.225562979395, + 5269.632795241635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5269.856755321075, + "max_x": 2166.851511689016, + "max_y": 5270.085321583753, + "center": [ + 2166.6606394904793, + 5269.971038452414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.851511689016, + 5269.856755321075 + ], + [ + 2166.469767291943, + 5270.085321583753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5269.404228978956, + "max_x": 2166.469767291943, + "max_y": 5270.085321583753, + "center": [ + 2166.469767291943, + 5269.744775281355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.469767291943, + 5270.085321583753 + ], + [ + 2166.469767291943, + 5269.404228978956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5269.404228978956, + "max_x": 2166.851511689016, + "max_y": 5269.632795241635, + "center": [ + 2166.6606394904793, + 5269.518512110295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.469767291943, + 5269.404228978956 + ], + [ + 2166.851511689016, + 5269.632795241635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790302, + "min_y": 5269.732183427475, + "max_x": 2168.36311502637, + "max_y": 5269.732183427475, + "center": [ + 2168.086547908336, + 5269.732183427475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.36311502637, + 5269.732183427475 + ], + [ + 2167.809980790302, + 5269.732183427475 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790305, + "min_y": 5269.391637125074, + "max_x": 2167.809980790305, + "max_y": 5270.097913437634, + "center": [ + 2167.809980790305, + 5269.744775281354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.809980790305, + 5269.391637125074 + ], + [ + 2167.809980790305, + 5270.097913437634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.607307376462, + "min_y": 5269.404228978956, + "max_x": 2167.607307376462, + "max_y": 5270.085321583753, + "center": [ + 2167.607307376462, + 5269.744775281355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.607307376462, + 5270.085321583753 + ], + [ + 2167.607307376462, + 5269.404228978956 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5269.744775281354, + "max_x": 2166.267093878101, + "max_y": 5269.744775281354, + "center": [ + 2164.7555359256467, + 5269.744775281354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.243977973192, + 5269.744775281354 + ], + [ + 2166.267093878101, + 5269.744775281354 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5269.744775281354, + "max_x": 2163.243977973192, + "max_y": 5271.633446912287, + "center": [ + 2163.243977973192, + 5270.689111096821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.243977973192, + 5269.744775281354 + ], + [ + 2163.243977973192, + 5271.633446912287 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5276.1467626752, + "max_x": 2163.243977973192, + "max_y": 5279.010740962029, + "center": [ + 2163.243977973192, + 5277.578751818614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.243977973192, + 5276.1467626752 + ], + [ + 2163.243977973192, + 5279.010740962029 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5569FA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2166.8205508179813, + "min_y": 5278.792754445807, + "max_x": 2167.2565238504244, + "max_y": 5279.22872747825, + "center": [ + 2167.038537334203, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.038537334203, + 5279.010740962029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.267093878101, + "min_y": 5278.657602805748, + "max_x": 2166.267093878101, + "max_y": 5279.363879118309, + "center": [ + 2166.267093878101, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.267093878101, + 5278.657602805748 + ], + [ + 2166.267093878101, + 5279.363879118309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.225562979395, + "min_y": 5279.122721001749, + "max_x": 2167.607307376462, + "max_y": 5279.351287264427, + "center": [ + 2167.416435177928, + 5279.237004133088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.225562979395, + 5279.122721001749 + ], + [ + 2167.607307376462, + 5279.351287264427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.225562979395, + "min_y": 5278.67019465963, + "max_x": 2167.607307376462, + "max_y": 5278.898760922309, + "center": [ + 2167.416435177928, + 5278.7844777909695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.607307376462, + 5278.67019465963 + ], + [ + 2167.225562979395, + 5278.898760922309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5279.122721001749, + "max_x": 2166.851511689016, + "max_y": 5279.351287264427, + "center": [ + 2166.6606394904793, + 5279.237004133088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.851511689016, + 5279.122721001749 + ], + [ + 2166.469767291943, + 5279.351287264427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5569FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5278.67019465963, + "max_x": 2166.469767291943, + "max_y": 5279.351287264427, + "center": [ + 2166.469767291943, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.469767291943, + 5279.351287264427 + ], + [ + 2166.469767291943, + 5278.67019465963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.469767291943, + "min_y": 5278.67019465963, + "max_x": 2166.851511689016, + "max_y": 5278.898760922309, + "center": [ + 2166.6606394904793, + 5278.7844777909695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.469767291943, + 5278.67019465963 + ], + [ + 2166.851511689016, + 5278.898760922309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790302, + "min_y": 5278.998149108148, + "max_x": 2168.36311502637, + "max_y": 5278.998149108148, + "center": [ + 2168.086547908336, + 5278.998149108148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.36311502637, + 5278.998149108148 + ], + [ + 2167.809980790302, + 5278.998149108148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.809980790305, + "min_y": 5278.657602805748, + "max_x": 2167.809980790305, + "max_y": 5279.363879118309, + "center": [ + 2167.809980790305, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.809980790305, + 5278.657602805748 + ], + [ + 2167.809980790305, + 5279.363879118309 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.607307376462, + "min_y": 5278.67019465963, + "max_x": 2167.607307376462, + "max_y": 5279.351287264427, + "center": [ + 2167.607307376462, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.607307376462, + 5279.351287264427 + ], + [ + 2167.607307376462, + 5278.67019465963 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.243977973192, + "min_y": 5279.010740962029, + "max_x": 2166.267093878101, + "max_y": 5279.010740962029, + "center": [ + 2164.7555359256467, + 5279.010740962029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.243977973192, + 5279.010740962029 + ], + [ + 2166.267093878101, + 5279.010740962029 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.074150956781, + "min_y": 5269.371069899875, + "max_x": 2165.82156171973, + "max_y": 5270.118480662819, + "center": [ + 2165.4478563382554, + 5269.744775281347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.074150956781, + 5270.118480662819 + ], + [ + 2165.82156171973, + 5269.371069899875 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.074150956781, + "min_y": 5269.371069899875, + "max_x": 2165.82156171973, + "max_y": 5270.118480662819, + "center": [ + 2165.4478563382554, + 5269.744775281347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.074150956781, + 5269.371069899875 + ], + [ + 2165.82156171973, + 5270.118480662819 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.074150956781, + "min_y": 5278.63703558055, + "max_x": 2165.82156171973, + "max_y": 5279.384446343494, + "center": [ + 2165.4478563382554, + 5279.010740962022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.074150956781, + 5279.384446343494 + ], + [ + 2165.82156171973, + 5278.63703558055 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.074150956781, + "min_y": 5278.63703558055, + "max_x": 2165.82156171973, + "max_y": 5279.384446343494, + "center": [ + 2165.4478563382554, + 5279.010740962022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.074150956781, + 5278.63703558055 + ], + [ + 2165.82156171973, + 5279.384446343494 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A09", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2171.061342928156, + "min_y": 5263.915367945859, + "max_x": 2172.90707921549, + "max_y": 5263.915367945859, + "center": [ + 2171.9842110718228, + 5263.915367945859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.90707921549, + 5263.915367945859 + ], + [ + 2171.061342928156, + 5263.915367945859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.748250095984, + "min_y": 5342.740020307388, + "max_x": 2431.748250095984, + "max_y": 5343.215743261625, + "center": [ + 2431.748250095984, + 5342.977881784506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.748250095984, + 5343.215743261625 + ], + [ + 2431.748250095984, + 5342.740020307388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.450677333699, + "min_y": 5342.740020307388, + "max_x": 2432.450677333699, + "max_y": 5343.215743261625, + "center": [ + 2432.450677333699, + 5342.977881784506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.450677333699, + 5343.215743261625 + ], + [ + 2432.450677333699, + 5342.740020307388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.748250095984, + "min_y": 5342.740020307388, + "max_x": 2432.450677333699, + "max_y": 5342.740020307388, + "center": [ + 2432.0994637148415, + 5342.740020307388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.748250095984, + 5342.740020307388 + ], + [ + 2432.450677333699, + 5342.740020307388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A0D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2429.329835622343, + "min_y": 5342.358026764409, + "max_x": 2430.6736932428153, + "max_y": 5343.477908114803, + "center": [ + 2430.001764432579, + 5342.9179674396055 + ] + }, + "raw_value": "DR", + "clean_value": "DR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A0E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2365.230115363965, + "min_y": 5330.353341447025, + "max_x": 2365.230115363965, + "max_y": 5331.012352059853, + "center": [ + 2365.230115363965, + 5330.682846753439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.230115363965, + 5330.353341447025 + ], + [ + 2365.230115363965, + 5331.012352059853 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.827101988344, + "min_y": 5329.801024449762, + "max_x": 2364.827101988344, + "max_y": 5330.456642495449, + "center": [ + 2364.827101988344, + 5330.128833472605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.827101988344, + 5330.456642495449 + ], + [ + 2364.827101988344, + 5329.801024449762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.633128739586, + "min_y": 5329.801024449762, + "max_x": 2365.633128739586, + "max_y": 5330.456642495449, + "center": [ + 2365.633128739586, + 5330.128833472605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.633128739586, + 5330.456642495449 + ], + [ + 2365.633128739586, + 5329.801024449762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.827101988344, + "min_y": 5329.801024449762, + "max_x": 2365.633128739586, + "max_y": 5329.801024449762, + "center": [ + 2365.230115363965, + 5329.801024449762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.827101988344, + 5329.801024449762 + ], + [ + 2365.633128739586, + 5329.801024449762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A12", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2304.352760277035, + "min_y": 5273.837647973328, + "max_x": 2304.352760277035, + "max_y": 5274.496658586158, + "center": [ + 2304.352760277035, + 5274.167153279743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.352760277035, + 5273.837647973328 + ], + [ + 2304.352760277035, + 5274.496658586158 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.949746901414, + "min_y": 5273.285330976068, + "max_x": 2303.949746901414, + "max_y": 5273.940949021753, + "center": [ + 2303.949746901414, + 5273.61313999891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.949746901414, + 5273.940949021753 + ], + [ + 2303.949746901414, + 5273.285330976068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.755773652656, + "min_y": 5273.285330976068, + "max_x": 2304.755773652656, + "max_y": 5273.940949021753, + "center": [ + 2304.755773652656, + 5273.61313999891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.755773652656, + 5273.940949021753 + ], + [ + 2304.755773652656, + 5273.285330976068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.949746901414, + "min_y": 5273.285330976068, + "max_x": 2304.755773652656, + "max_y": 5273.285330976068, + "center": [ + 2304.352760277035, + 5273.285330976068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.949746901414, + 5273.285330976068 + ], + [ + 2304.755773652656, + 5273.285330976068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A16", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2450.029405961415, + "min_y": 5383.226558389336, + "max_x": 2456.534236706263, + "max_y": 5383.226558389336, + "center": [ + 2453.2818213338387, + 5383.226558389336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.029405961415, + 5383.226558389336 + ], + [ + 2456.534236706263, + 5383.226558389336 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A17", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2460.026206154957, + "min_y": 5382.465427544872, + "max_x": 2467.191654987314, + "max_y": 5383.958229384946, + "center": [ + 2463.6089305711357, + 5383.21182846491 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A18", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2456.530895951895, + "min_y": 5381.201290797824, + "max_x": 2470.899546894928, + "max_y": 5381.201290797824, + "center": [ + 2463.7152214234115, + 5381.201290797824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.530895951895, + 5381.201290797824 + ], + [ + 2470.899546894928, + 5381.201290797824 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A19", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2456.530895951895, + "min_y": 5385.171369247879, + "max_x": 2470.899546894938, + "max_y": 5385.171369247879, + "center": [ + 2463.7152214234166, + 5385.171369247879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2470.899546894938, + 5385.171369247879 + ], + [ + 2456.530895951895, + 5385.171369247879 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2456.530895951895, + "min_y": 5381.201290797824, + "max_x": 2456.530895951895, + "max_y": 5385.171369247879, + "center": [ + 2456.530895951895, + 5383.1863300228515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.530895951895, + 5385.171369247879 + ], + [ + 2456.530895951895, + 5381.201290797824 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A1B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2470.899546894932, + "min_y": 5381.201290797828, + "max_x": 2472.88458611996, + "max_y": 5383.186330022855, + "center": [ + 2471.892066507446, + 5382.193810410341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2470.899546894932, + 5381.201290797828 + ], + [ + 2472.88458611996, + 5383.186330022855 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A1C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2470.899546894932, + "min_y": 5383.186330022855, + "max_x": 2472.88458611996, + "max_y": 5385.171369247883, + "center": [ + 2471.892066507446, + 5384.178849635369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2472.88458611996, + 5383.186330022855 + ], + [ + 2470.899546894932, + 5385.171369247883 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A1D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2426.79159069039, + "min_y": 5358.562642592552, + "max_x": 2438.214380464403, + "max_y": 5359.682523942945, + "center": [ + 2432.5029855773964, + 5359.122583267748 + ] + }, + "raw_value": "P-10314-80A-F1A-n", + "clean_value": "P-10314-80A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A1E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2456.349581828498, + "min_y": 5385.682693305932, + "max_x": 2467.1004427922744, + "max_y": 5386.802574656325, + "center": [ + 2461.725012310386, + 5386.242633981128 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A1F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2405.461723879211, + "min_y": 5402.832104956827, + "max_x": 2417.55644246346, + "max_y": 5403.95198630722, + "center": [ + 2411.5090831713355, + 5403.392045632023 + ] + }, + "raw_value": "N2-10706-15A-F1A-n", + "clean_value": "N2-10706-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A20", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2486.319905870467, + "min_y": 5365.844020203936, + "max_x": 2486.319905870467, + "max_y": 5384.171815227174, + "center": [ + 2486.319905870467, + 5375.007917715555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.319905870467, + 5365.844020203936 + ], + [ + 2486.319905870467, + 5384.171815227174 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A21", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5412.216745059327, + "max_x": 2473.614822852402, + "max_y": 5412.216745059327, + "center": [ + 2468.225231350889, + 5412.216745059327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.835639849376, + 5412.216745059327 + ], + [ + 2473.614822852402, + 5412.216745059327 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A22", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5415.195048472722, + "max_x": 2473.61482285241, + "max_y": 5415.195048472722, + "center": [ + 2468.225231350893, + 5415.195048472722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.61482285241, + 5415.195048472722 + ], + [ + 2462.835639849376, + 5415.195048472722 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5412.263403081766, + "max_x": 2462.835639849376, + "max_y": 5415.24170649516, + "center": [ + 2462.835639849376, + 5413.752554788463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.835639849376, + 5415.24170649516 + ], + [ + 2462.835639849376, + 5412.263403081766 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A24", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.614822852404, + "min_y": 5412.216745059331, + "max_x": 2475.103974559102, + "max_y": 5413.705896766028, + "center": [ + 2474.359398705753, + 5412.961320912679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.614822852404, + 5412.216745059331 + ], + [ + 2475.103974559102, + 5413.705896766028 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A25", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.614822852404, + "min_y": 5413.705896766028, + "max_x": 2475.103974559102, + "max_y": 5415.195048472725, + "center": [ + 2474.359398705753, + 5414.450472619376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.103974559102, + 5413.705896766028 + ], + [ + 2473.614822852404, + 5415.195048472725 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A26", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2462.654325725978, + "min_y": 5415.676408118022, + "max_x": 2473.405186689755, + "max_y": 5416.796289468415, + "center": [ + 2468.0297562078667, + 5416.236348793218 + ] + }, + "raw_value": "SARF-#10-PID-001", + "clean_value": "SARF-#10-PID-001", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A27", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2462.96637971633, + "min_y": 5412.957240584436, + "max_x": 2471.9254305194772, + "max_y": 5414.450415718294, + "center": [ + 2467.4459051179037, + 5413.703828151365 + ] + }, + "raw_value": "PSV-10219B", + "clean_value": "PSV-10219B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A28", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5406.680636108291, + "max_x": 2473.614822852402, + "max_y": 5406.680636108291, + "center": [ + 2468.225231350889, + 5406.680636108291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.835639849376, + 5406.680636108291 + ], + [ + 2473.614822852402, + 5406.680636108291 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A29", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5409.658939521684, + "max_x": 2473.61482285241, + "max_y": 5409.658939521684, + "center": [ + 2468.225231350893, + 5409.658939521684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.61482285241, + 5409.658939521684 + ], + [ + 2462.835639849376, + 5409.658939521684 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2462.835639849376, + "min_y": 5406.727294130727, + "max_x": 2462.835639849376, + "max_y": 5409.705597544123, + "center": [ + 2462.835639849376, + 5408.2164458374245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.835639849376, + 5409.705597544123 + ], + [ + 2462.835639849376, + 5406.727294130727 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A2B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.614822852404, + "min_y": 5406.680636108292, + "max_x": 2475.103974559102, + "max_y": 5408.16978781499, + "center": [ + 2474.359398705753, + 5407.425211961641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.614822852404, + 5406.680636108292 + ], + [ + 2475.103974559102, + 5408.16978781499 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A2C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.614822852404, + "min_y": 5408.16978781499, + "max_x": 2475.103974559102, + "max_y": 5409.658939521688, + "center": [ + 2474.359398705753, + 5408.914363668338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.103974559102, + 5408.16978781499 + ], + [ + 2473.614822852404, + 5409.658939521688 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556A2D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2462.654325725978, + "min_y": 5410.140299166985, + "max_x": 2473.405186689755, + "max_y": 5411.260180517378, + "center": [ + 2468.0297562078667, + 5410.700239842181 + ] + }, + "raw_value": "SARF-#10-PID-002", + "clean_value": "SARF-#10-PID-002", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2462.96637971633, + "min_y": 5407.421131633398, + "max_x": 2471.9254305194772, + "max_y": 5408.914306767256, + "center": [ + 2467.4459051179037, + 5408.167719200326 + ] + }, + "raw_value": "PSV-10119B", + "clean_value": "PSV-10119B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A2F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2475.103974559102, + "min_y": 5413.705896766028, + "max_x": 2486.319905870467, + "max_y": 5413.705896766028, + "center": [ + 2480.7119402147846, + 5413.705896766028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.103974559102, + 5413.705896766028 + ], + [ + 2486.319905870467, + 5413.705896766028 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A30", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2475.103974559102, + "min_y": 5408.16978781499, + "max_x": 2486.319905870467, + "max_y": 5408.16978781499, + "center": [ + 2480.7119402147846, + 5408.16978781499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.103974559102, + 5408.16978781499 + ], + [ + 2486.319905870467, + 5408.16978781499 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A31", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2487.103800975614, + "min_y": 5411.455701683926, + "max_x": 2499.1985195598627, + "max_y": 5412.57558303432, + "center": [ + 2493.1511602677383, + 5412.015642359123 + ] + }, + "raw_value": "VG-9440-300A-F1A-N", + "clean_value": "VG-9440-300A-F1A-N", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A32", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2486.319905870467, + "min_y": 5384.171815227174, + "max_x": 2486.319905870467, + "max_y": 5413.707063472641, + "center": [ + 2486.319905870467, + 5398.939439349908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.319905870467, + 5384.171815227174 + ], + [ + 2486.319905870467, + 5413.707063472641 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A33", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2149.206652428709, + "min_y": 5301.743316380398, + "max_x": 2149.206652428709, + "max_y": 5312.243545145403, + "center": [ + 2149.206652428709, + 5306.993430762901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.206652428709, + 5301.743316380398 + ], + [ + 2149.206652428709, + 5312.243545145403 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A34", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2149.206652428709, + "min_y": 5317.917377393602, + "max_x": 2149.206652428709, + "max_y": 5319.169849063308, + "center": [ + 2149.206652428709, + 5318.543613228455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.206652428709, + 5317.917377393602 + ], + [ + 2149.206652428709, + 5319.169849063308 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A35", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2140.190388588806, + "min_y": 5301.74331638037, + "max_x": 2140.735186393063, + "max_y": 5301.74331638037, + "center": [ + 2140.4627874909347, + 5301.74331638037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.190388588806, + 5301.74331638037 + ], + [ + 2140.735186393063, + 5301.74331638037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.735186393059, + "min_y": 5301.116443913602, + "max_x": 2140.735186393059, + "max_y": 5302.370188847147, + "center": [ + 2140.735186393059, + 5301.743316380374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.735186393059, + 5302.370188847147 + ], + [ + 2140.735186393059, + 5301.116443913602 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A37", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2149.206652428709, + "min_y": 5314.649215067952, + "max_x": 2149.206652428715, + "max_y": 5315.6482866632, + "center": [ + 2149.206652428712, + 5315.148750865576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.206652428709, + 5314.649215067952 + ], + [ + 2149.206652428715, + 5315.6482866632 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5312.243545145406, + "max_x": 2149.766466035346, + "max_y": 5312.243545145406, + "center": [ + 2149.2079338681824, + 5312.243545145406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.649401701018, + 5312.243545145406 + ], + [ + 2149.766466035346, + 5312.243545145406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5312.50657045497, + "max_x": 2149.766466035346, + "max_y": 5314.372257218169, + "center": [ + 2149.2079338681824, + 5313.43941383657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.649401701018, + 5312.50657045497 + ], + [ + 2149.766466035346, + 5314.372257218169 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5312.50657045497, + "max_x": 2149.766466035346, + "max_y": 5312.50657045497, + "center": [ + 2149.2079338681824, + 5312.50657045497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.649401701018, + 5312.50657045497 + ], + [ + 2149.766466035346, + 5312.50657045497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5314.372257218169, + "max_x": 2149.766466035346, + "max_y": 5314.372257218169, + "center": [ + 2149.2079338681824, + 5314.372257218169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.766466035346, + 5314.372257218169 + ], + [ + 2148.649401701018, + 5314.372257218169 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.087881818799, + "min_y": 5313.781099176148, + "max_x": 2149.766466035318, + "max_y": 5314.372257218131, + "center": [ + 2149.4271739270584, + 5314.07667819714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.766466035318, + 5314.372257218131 + ], + [ + 2149.087881818799, + 5313.781099176148 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.087881818799, + "min_y": 5313.63802028489, + "max_x": 2149.326847816849, + "max_y": 5313.781099176148, + "center": [ + 2149.207364817824, + 5313.70955973052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.087881818799, + 5313.781099176148 + ], + [ + 2149.326847816849, + 5313.63802028489 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.565813814866, + "min_y": 5313.494941393605, + "max_x": 2149.766466035357, + "max_y": 5314.37225721811, + "center": [ + 2149.6661399251116, + 5313.933599305858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.766466035357, + 5314.37225721811 + ], + [ + 2149.565813814866, + 5313.494941393605 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.326847816836, + "min_y": 5313.494941393605, + "max_x": 2149.565813814866, + "max_y": 5313.638020284895, + "center": [ + 2149.446330815851, + 5313.56648083925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.565813814866, + 5313.494941393605 + ], + [ + 2149.326847816836, + 5313.638020284895 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.649401701018, + "min_y": 5314.635282527732, + "max_x": 2149.766466035346, + "max_y": 5314.635282527732, + "center": [ + 2149.2079338681824, + 5314.635282527732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.649401701018, + 5314.635282527732 + ], + [ + 2149.766466035346, + 5314.635282527732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.703193317349, + "min_y": 5317.63807104182, + "max_x": 2149.710726756405, + "max_y": 5317.63807104182, + "center": [ + 2149.206960036877, + 5317.63807104182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.710726756405, + 5317.63807104182 + ], + [ + 2148.703193317349, + 5317.63807104182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.372610983206, + "min_y": 5317.073360395269, + "max_x": 2149.710726756405, + "max_y": 5317.63807104182, + "center": [ + 2149.5416688698056, + 5317.355715718544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.372610983206, + 5317.073360395269 + ], + [ + 2149.710726756405, + 5317.63807104182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.703193317349, + "min_y": 5315.955319437505, + "max_x": 2149.710726756405, + "max_y": 5315.955319437505, + "center": [ + 2149.206960036877, + 5315.955319437505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.710726756405, + 5315.955319437505 + ], + [ + 2148.703193317349, + 5315.955319437505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2149.372610983206, + "min_y": 5315.955319437505, + "max_x": 2149.710726756405, + "max_y": 5316.520030084059, + "center": [ + 2149.5416688698056, + 5316.237674760781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.372610983206, + 5316.520030084059 + ], + [ + 2149.710726756405, + 5315.955319437505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A49", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2148.8844947761945, + "min_y": 5316.474229978981, + "max_x": 2149.529425297559, + "max_y": 5317.119160500346, + "center": [ + 2149.206960036877, + 5316.796695239664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.206960036877, + 5316.796695239664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.702885709185, + "min_y": 5317.916418620078, + "max_x": 2149.710419148233, + "max_y": 5317.916418620078, + "center": [ + 2149.2066524287093, + 5317.916418620078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.702885709185, + 5317.916418620078 + ], + [ + 2149.710419148233, + 5317.916418620078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.702885709185, + "min_y": 5315.648808672471, + "max_x": 2149.710419148233, + "max_y": 5315.648808672471, + "center": [ + 2149.2066524287093, + 5315.648808672471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.702885709185, + 5315.648808672471 + ], + [ + 2149.710419148233, + 5315.648808672471 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.703193317349, + "min_y": 5317.073360395269, + "max_x": 2149.041309090546, + "max_y": 5317.63807104182, + "center": [ + 2148.8722512039476, + 5317.355715718544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.703193317349, + 5317.63807104182 + ], + [ + 2149.041309090546, + 5317.073360395269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.703193317349, + "min_y": 5315.955319437505, + "max_x": 2149.041309090546, + "max_y": 5316.520030084059, + "center": [ + 2148.8722512039476, + 5316.237674760781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.703193317349, + 5315.955319437505 + ], + [ + 2149.041309090546, + 5316.520030084059 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2137.120313136019, + "min_y": 5301.222590512693, + "max_x": 2137.120313136019, + "max_y": 5302.267377957304, + "center": [ + 2137.120313136019, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.120313136019, + 5302.267377957304 + ], + [ + 2137.120313136019, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.82050039365, + "min_y": 5301.222590512693, + "max_x": 2136.82050039365, + "max_y": 5302.267377957304, + "center": [ + 2136.82050039365, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.82050039365, + 5302.267377957304 + ], + [ + 2136.82050039365, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.890575846436, + "min_y": 5301.220922658058, + "max_x": 2139.890575846436, + "max_y": 5302.265710102677, + "center": [ + 2139.890575846436, + 5301.743316380367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.890575846436, + 5302.265710102677 + ], + [ + 2139.890575846436, + 5301.220922658058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.190388588806, + "min_y": 5301.220922658058, + "max_x": 2140.190388588806, + "max_y": 5302.265710102677, + "center": [ + 2140.190388588806, + 5301.743316380367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.190388588806, + 5302.265710102677 + ], + [ + 2140.190388588806, + 5301.220922658058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A52", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2137.1203061069104, + "min_y": 5301.545439970398, + "max_x": 2137.516058926844, + "max_y": 5301.941192790331, + "center": [ + 2137.318182516877, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.318182516877, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A53", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2137.5160589268426, + "min_y": 5301.5454399703995, + "max_x": 2137.9118117467733, + "max_y": 5301.941192790329, + "center": [ + 2137.713935336808, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.713935336808, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A54", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2137.9118117467738, + "min_y": 5301.5454399703995, + "max_x": 2138.3075645667045, + "max_y": 5301.941192790329, + "center": [ + 2138.109688156739, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.109688156739, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A55", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2137.9118117467747, + "min_y": 5301.545439970398, + "max_x": 2138.307564566709, + "max_y": 5301.941192790331, + "center": [ + 2138.109688156742, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.109688156742, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A56", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2138.3075645667077, + "min_y": 5301.5454399703995, + "max_x": 2138.7033173866384, + "max_y": 5301.941192790329, + "center": [ + 2138.505440976673, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.505440976673, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A57", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2138.7033173866394, + "min_y": 5301.545439970397, + "max_x": 2139.0990702065747, + "max_y": 5301.941192790332, + "center": [ + 2138.901193796607, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.901193796607, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A58", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2139.0990702065756, + "min_y": 5301.5454399703995, + "max_x": 2139.4948230265063, + "max_y": 5301.941192790329, + "center": [ + 2139.296946616541, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.296946616541, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A59", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2139.4948230265036, + "min_y": 5301.5454399703995, + "max_x": 2139.8905758464343, + "max_y": 5301.941192790329, + "center": [ + 2139.692699436469, + 5301.743316380364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.692699436469, + 5301.743316380364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.544334808021, + "min_y": 5300.724478389954, + "max_x": 2135.563172798431, + "max_y": 5301.743316380364, + "center": [ + 2135.053753803226, + 5301.233897385159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.544334808021, + 5301.743316380364 + ], + [ + 2135.563172798431, + 5300.724478389954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.30846330083, + "min_y": 5300.469768892351, + "max_x": 2135.83135691615, + "max_y": 5300.979187887559, + "center": [ + 2135.56991010849, + 5300.724478389955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.83135691615, + 5300.979187887559 + ], + [ + 2135.30846330083, + 5300.469768892351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.730135004824, + "min_y": 5301.222590512693, + "max_x": 2135.730135004824, + "max_y": 5302.267377957304, + "center": [ + 2135.730135004824, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.730135004824, + 5302.267377957304 + ], + [ + 2135.730135004824, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.008593173378, + "min_y": 5301.222590512693, + "max_x": 2136.008593173378, + "max_y": 5302.267377957304, + "center": [ + 2136.008593173378, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.008593173378, + 5302.267377957304 + ], + [ + 2136.008593173378, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.036873524144, + "min_y": 5301.222590512693, + "max_x": 2134.036873524144, + "max_y": 5302.267377957304, + "center": [ + 2134.036873524144, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.036873524144, + 5302.267377957304 + ], + [ + 2134.036873524144, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.758415355591, + "min_y": 5301.222590512693, + "max_x": 2133.758415355591, + "max_y": 5302.267377957304, + "center": [ + 2133.758415355591, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.758415355591, + 5302.267377957304 + ], + [ + 2133.758415355591, + 5301.222590512693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A60", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2136.008593173378, + "min_y": 5301.744984234999, + "max_x": 2136.82050039365, + "max_y": 5301.744984234999, + "center": [ + 2136.414546783514, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.008593173378, + 5301.744984234999 + ], + [ + 2136.82050039365, + 5301.744984234999 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.036873524147, + "min_y": 5301.744984234999, + "max_x": 2135.730135004824, + "max_y": 5301.744984234999, + "center": [ + 2134.8835042644855, + 5301.744984234999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.730135004824, + 5301.744984234999 + ], + [ + 2134.036873524147, + 5301.744984234999 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A62", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2133.113167733784, + "min_y": 5301.744984234999, + "max_x": 2133.758415355591, + "max_y": 5301.744984235, + "center": [ + 2133.435791544687, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.113167733784, + 5301.744984235 + ], + [ + 2133.758415355591, + 5301.744984234999 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A63", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2143.776449295188, + "min_y": 5301.743316380375, + "max_x": 2144.389905946578, + "max_y": 5301.743316380375, + "center": [ + 2144.083177620883, + 5301.743316380375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.389905946578, + 5301.743316380375 + ], + [ + 2143.776449295188, + 5301.743316380375 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A64", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2149.206652428709, + "min_y": 5319.169849063308, + "max_x": 2168.970826669111, + "max_y": 5319.169849063308, + "center": [ + 2159.08873954891, + 5319.169849063308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.206652428709, + 5319.169849063308 + ], + [ + 2168.970826669111, + 5319.169849063308 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A65", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2132.274649800706, + "min_y": 5295.700511660625, + "max_x": 2140.3377955235383, + "max_y": 5296.8203930110185, + "center": [ + 2136.3062226621223, + 5296.260452335822 + ] + }, + "raw_value": "DP10201BA-01", + "clean_value": "DP10201BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556A66", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2149.882608732876, + "min_y": 5316.300693756752, + "max_x": 2157.9457544557085, + "max_y": 5317.420575107145, + "center": [ + 2153.914181594292, + 5316.860634431949 + ] + }, + "raw_value": "DP10201BA-02", + "clean_value": "DP10201BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556A67", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2165.700091349731, + "min_y": 5336.602260035462, + "max_x": 2169.128186193963, + "max_y": 5336.602260475196, + "center": [ + 2167.414138771847, + 5336.602260255329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.700091349731, + 5336.602260475196 + ], + [ + 2169.128186193963, + 5336.602260035462 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A68", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2171.818575732439, + "min_y": 5336.602260035456, + "max_x": 2175.614128672993, + "max_y": 5336.602260035456, + "center": [ + 2173.716352202716, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.818575732439, + 5336.602260035456 + ], + [ + 2175.614128672993, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A69", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2178.083978432167, + "min_y": 5336.602260035456, + "max_x": 2245.860148817657, + "max_y": 5336.602260035456, + "center": [ + 2211.972063624912, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.083978432167, + 5336.602260035456 + ], + [ + 2245.860148817657, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A6A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2169.5568399183776, + "min_y": 5337.06392152163, + "max_x": 2171.3899220080284, + "max_y": 5338.897003611281, + "center": [ + 2170.473380963203, + 5337.980462566456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.473380963203, + 5337.980462566456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.556839918377, + "min_y": 5337.980462566456, + "max_x": 2171.389922008026, + "max_y": 5337.980462566456, + "center": [ + 2170.4733809632016, + 5337.980462566456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.389922008026, + 5337.980462566456 + ], + [ + 2169.556839918377, + 5337.980462566456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.473380963203, + "min_y": 5336.888039792067, + "max_x": 2170.473380963203, + "max_y": 5337.980462566456, + "center": [ + 2170.473380963203, + 5337.434251179261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.473380963203, + 5337.980462566456 + ], + [ + 2170.473380963203, + 5336.888039792067 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.718571098307, + "min_y": 5336.05348875599, + "max_x": 2171.389922008026, + "max_y": 5336.455454494219, + "center": [ + 2171.0542465531666, + 5336.254471625105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.389922008026, + 5336.05348875599 + ], + [ + 2170.718571098307, + 5336.455454494219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.556839918377, + "min_y": 5336.749065576693, + "max_x": 2170.2281908281, + "max_y": 5337.151031314917, + "center": [ + 2169.892515373239, + 5336.950048445806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.2281908281, + 5336.749065576693 + ], + [ + 2169.556839918377, + 5337.151031314917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.389922008026, + "min_y": 5336.05348875599, + "max_x": 2171.389922008026, + "max_y": 5337.151031314917, + "center": [ + 2171.389922008026, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.389922008026, + 5337.151031314917 + ], + [ + 2171.389922008026, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.556839918377, + "min_y": 5336.05348875599, + "max_x": 2169.556839918377, + "max_y": 5337.151031314917, + "center": [ + 2169.556839918377, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.556839918377, + 5337.151031314917 + ], + [ + 2169.556839918377, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.718571098304, + "min_y": 5336.749065576693, + "max_x": 2171.389922008026, + "max_y": 5337.151031314917, + "center": [ + 2171.0542465531653, + 5336.950048445806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.389922008026, + 5337.151031314917 + ], + [ + 2170.718571098304, + 5336.749065576693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.556839918377, + "min_y": 5336.05348875599, + "max_x": 2170.228190828097, + "max_y": 5336.455454494219, + "center": [ + 2169.892515373237, + 5336.254471625105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.228190828097, + 5336.455454494219 + ], + [ + 2169.556839918377, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.128186193963, + "min_y": 5336.033197689205, + "max_x": 2169.128186193963, + "max_y": 5337.171322381706, + "center": [ + 2169.128186193963, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.128186193963, + 5337.171322381706 + ], + [ + 2169.128186193963, + 5336.033197689205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.818575732439, + "min_y": 5336.033197689205, + "max_x": 2171.818575732439, + "max_y": 5337.171322381706, + "center": [ + 2171.818575732439, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.818575732439, + 5337.171322381706 + ], + [ + 2171.818575732439, + 5336.033197689205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A75", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2171.722843731142, + "min_y": 5329.954802708117, + "max_x": 2177.793039771313, + "max_y": 5329.954802708122, + "center": [ + 2174.7579417512275, + 5329.95480270812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.793039771313, + 5329.954802708122 + ], + [ + 2171.722843731142, + 5329.954802708117 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A76", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2162.038480469638, + "min_y": 5329.954802708122, + "max_x": 2169.23656794745, + "max_y": 5329.954802708129, + "center": [ + 2165.637524208544, + 5329.9548027081255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.23656794745, + 5329.954802708122 + ], + [ + 2162.038480469638, + 5329.954802708129 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A77", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2177.793039771313, + "min_y": 5329.954802708122, + "max_x": 2179.090314152199, + "max_y": 5329.954802708122, + "center": [ + 2178.441676961756, + 5329.954802708122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.793039771313, + 5329.954802708122 + ], + [ + 2179.090314152199, + 5329.954802708122 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A78", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2179.090314152199, + "min_y": 5329.954802708122, + "max_x": 2179.090314152199, + "max_y": 5336.602260035456, + "center": [ + 2179.090314152199, + 5333.278531371789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.090314152199, + 5329.954802708122 + ], + [ + 2179.090314152199, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A79", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2162.038480469638, + "min_y": 5329.954802708129, + "max_x": 2162.038480469638, + "max_y": 5336.602260035456, + "center": [ + 2162.038480469638, + 5333.278531371792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2162.038480469638, + 5336.602260035456 + ], + [ + 2162.038480469638, + 5329.954802708129 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A7A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2173.716352202716, + "min_y": 5335.141248921662, + "max_x": 2173.716352202716, + "max_y": 5336.602260035442, + "center": [ + 2173.716352202716, + 5335.871754478552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.716352202716, + 5335.141248921662 + ], + [ + 2173.716352202716, + 5336.602260035442 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A7B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2173.716352202716, + "min_y": 5331.882497772137, + "max_x": 2173.716352202716, + "max_y": 5332.723141296099, + "center": [ + 2173.716352202716, + 5332.302819534118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.716352202716, + 5332.723141296099 + ], + [ + 2173.716352202716, + 5331.882497772137 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.473380963203, + "min_y": 5338.897003611282, + "max_x": 2170.473380963203, + "max_y": 5341.737410795147, + "center": [ + 2170.473380963203, + 5340.317207203215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.473380963203, + 5338.897003611282 + ], + [ + 2170.473380963203, + 5341.737410795147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.091732032041, + "min_y": 5340.082685206292, + "max_x": 2170.855029894363, + "max_y": 5340.52337543257, + "center": [ + 2170.4733809632016, + 5340.303030319431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.091732032041, + 5340.082685206292 + ], + [ + 2170.855029894363, + 5340.52337543257 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.091732032041, + "min_y": 5340.441941738007, + "max_x": 2170.855029894363, + "max_y": 5340.882631964293, + "center": [ + 2170.4733809632016, + 5340.6622868511495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.091732032041, + 5340.441941738007 + ], + [ + 2170.855029894363, + 5340.882631964293 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A7F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2170.037827146735, + "min_y": 5342.071212751434, + "max_x": 2171.4928161002094, + "max_y": 5342.8795399478095, + "center": [ + 2170.765321623472, + 5342.475376349622 + ] + }, + "raw_value": "I/P", + "clean_value": "I/P", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A80", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2164.732276061329, + "min_y": 5342.017290323002, + "max_x": 2167.0835037484344, + "max_y": 5343.32352792695, + "center": [ + 2165.907889904882, + 5342.670409124976 + ] + }, + "raw_value": "TCV", + "clean_value": "TCV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.817069798761, + "min_y": 5343.297160316129, + "max_x": 2172.129692127646, + "max_y": 5343.297160316129, + "center": [ + 2170.4733809632035, + 5343.297160316129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.817069798761, + 5343.297160316129 + ], + [ + 2172.129692127646, + 5343.297160316129 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.129692127646, + "min_y": 5341.737410795147, + "max_x": 2172.129692127646, + "max_y": 5343.297160316129, + "center": [ + 2172.129692127646, + 5342.5172855556375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.129692127646, + 5343.297160316129 + ], + [ + 2172.129692127646, + 5341.737410795147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.817069798761, + "min_y": 5341.737410795147, + "max_x": 2172.129692127646, + "max_y": 5341.737410795147, + "center": [ + 2170.4733809632035, + 5341.737410795147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.129692127646, + 5341.737410795147 + ], + [ + 2168.817069798761, + 5341.737410795147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.817069798761, + "min_y": 5341.737410795147, + "max_x": 2168.817069798761, + "max_y": 5343.297160316129, + "center": [ + 2168.817069798761, + 5342.5172855556375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.817069798761, + 5341.737410795147 + ], + [ + 2168.817069798761, + 5343.297160316129 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556A85", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2163.297393944222, + "min_y": 5338.530015749978, + "max_x": 2169.011567362128, + "max_y": 5344.244189167884, + "center": [ + 2166.154480653175, + 5341.387102458931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.154480653175, + 5341.387102458931 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A86", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2168.121247732039, + "min_y": 5337.296739399687, + "max_x": 2170.007685324275, + "max_y": 5339.31471935729, + "center": [ + 2169.064466528157, + 5338.305729378489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.121247732039, + 5339.31471935729 + ], + [ + 2170.007685324275, + 5337.296739399687 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A87", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2165.700091349731, + "min_y": 5336.60226003544, + "max_x": 2169.128186193963, + "max_y": 5336.602260475179, + "center": [ + 2167.414138771847, + 5336.602260255309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.700091349731, + 5336.602260475179 + ], + [ + 2169.128186193963, + 5336.60226003544 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A88", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2171.818575732439, + "min_y": 5336.60226003544, + "max_x": 2175.614128672993, + "max_y": 5336.60226003544, + "center": [ + 2173.716352202716, + 5336.60226003544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.818575732439, + 5336.60226003544 + ], + [ + 2175.614128672993, + 5336.60226003544 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A89", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2163.995590708642, + "min_y": 5339.718832083927, + "max_x": 2167.9143035204847, + "max_y": 5341.025069687875, + "center": [ + 2165.9549471145633, + 5340.371950885901 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A8A", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2158.044524846712, + "min_y": 5336.602260035456, + "max_x": 2163.230241590559, + "max_y": 5336.602260035456, + "center": [ + 2160.6373832186355, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.230241590559, + 5336.602260035456 + ], + [ + 2158.044524846712, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A8B", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2154.768895175301, + "min_y": 5336.602260035456, + "max_x": 2158.044524846712, + "max_y": 5336.602260035456, + "center": [ + 2156.406710011007, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2158.044524846712, + 5336.602260035456 + ], + [ + 2154.768895175301, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A8C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2149.627529735554, + "min_y": 5334.8059773768455, + "max_x": 2153.220095052776, + "max_y": 5338.398542694067, + "center": [ + 2151.423812394165, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423812394165, + 5336.602260035456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A8D", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2148.547174423293, + "min_y": 5336.602260035456, + "max_x": 2149.627529735555, + "max_y": 5336.602260035456, + "center": [ + 2149.087352079424, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2149.627529735555, + 5336.602260035456 + ], + [ + 2148.547174423293, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.153648745335, + "min_y": 5335.33209638662, + "max_x": 2152.693976042995, + "max_y": 5337.872423684286, + "center": [ + 2151.423812394165, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2152.693976042995, + 5337.872423684286 + ], + [ + 2150.153648745335, + 5335.33209638662 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.153648745335, + "min_y": 5335.33209638662, + "max_x": 2152.693976042995, + "max_y": 5337.872423684286, + "center": [ + 2151.423812394165, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.153648745335, + 5337.872423684286 + ], + [ + 2152.693976042995, + 5335.33209638662 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A90", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.566725685212, + "min_y": 5339.583805927582, + "max_x": 2154.280899103118, + "max_y": 5345.297979345488, + "center": [ + 2151.423812394165, + 5342.440892636535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423812394165, + 5342.440892636535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A91", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2151.423812394165, + "min_y": 5338.398542694072, + "max_x": 2151.423812394165, + "max_y": 5339.584637376915, + "center": [ + 2151.423812394165, + 5338.991590035494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423812394165, + 5338.398542694072 + ], + [ + 2151.423812394165, + 5339.584637376915 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A92", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.329054658297, + "min_y": 5342.868880652886, + "max_x": 2152.6802823454027, + "max_y": 5344.175118256834, + "center": [ + 2151.5046685018497, + 5343.521999454861 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A93", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2149.250396300897, + "min_y": 5340.684036337335, + "max_x": 2153.16910911274, + "max_y": 5341.990273941283, + "center": [ + 2151.2097527068186, + 5341.337155139308 + ] + }, + "raw_value": "10215", + "clean_value": "10215", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556A94", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2140.902767848365, + "min_y": 5336.602260035456, + "max_x": 2140.902767848365, + "max_y": 5339.299954544695, + "center": [ + 2140.902767848365, + 5337.951107290075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.902767848365, + 5339.299954544695 + ], + [ + 2140.902767848365, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.328638452852, + "min_y": 5336.05348875599, + "max_x": 2135.161720542504, + "max_y": 5337.151031314917, + "center": [ + 2134.245179497678, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.161720542504, + 5336.05348875599 + ], + [ + 2133.328638452852, + 5337.151031314917 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.161720542504, + "min_y": 5336.05348875599, + "max_x": 2135.161720542504, + "max_y": 5337.151031314917, + "center": [ + 2135.161720542504, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.161720542504, + 5337.151031314917 + ], + [ + 2135.161720542504, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.328638452852, + "min_y": 5336.05348875599, + "max_x": 2133.328638452852, + "max_y": 5337.151031314917, + "center": [ + 2133.328638452852, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.328638452852, + 5337.151031314917 + ], + [ + 2133.328638452852, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.328638452852, + "min_y": 5336.05348875599, + "max_x": 2135.161720542504, + "max_y": 5337.151031314917, + "center": [ + 2134.245179497678, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.161720542504, + 5337.151031314917 + ], + [ + 2133.328638452852, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A99", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2133.3286384528524, + "min_y": 5337.06392152163, + "max_x": 2135.161720542503, + "max_y": 5338.897003611281, + "center": [ + 2134.245179497678, + 5337.980462566456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5337.980462566456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.328638452852, + "min_y": 5337.980462566456, + "max_x": 2135.161720542504, + "max_y": 5337.980462566456, + "center": [ + 2134.245179497678, + 5337.980462566456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.161720542504, + 5337.980462566456 + ], + [ + 2133.328638452852, + 5337.980462566456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5336.602260035456, + "max_x": 2134.245179497678, + "max_y": 5337.980462566456, + "center": [ + 2134.245179497678, + 5337.291361300956 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5337.980462566456 + ], + [ + 2134.245179497678, + 5336.602260035456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556A9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5338.897003611282, + "max_x": 2134.245179497678, + "max_y": 5339.449652326713, + "center": [ + 2134.245179497678, + 5339.173327968998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5338.897003611282 + ], + [ + 2134.245179497678, + 5339.449652326713 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5339.449652326713, + "max_x": 2137.026113946445, + "max_y": 5339.449652326713, + "center": [ + 2135.635646722061, + 5339.449652326713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5339.449652326713 + ], + [ + 2137.026113946445, + 5339.449652326713 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5336.602260035456, + "max_x": 2137.026113946445, + "max_y": 5339.449652326713, + "center": [ + 2135.635646722061, + 5338.025956181084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.026113946445, + 5339.449652326713 + ], + [ + 2134.245179497678, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556A9F", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2124.58106596017, + "min_y": 5336.602260035456, + "max_x": 2132.935137391278, + "max_y": 5336.602260035456, + "center": [ + 2128.758101675724, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.935137391278, + 5336.602260035456 + ], + [ + 2124.58106596017, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AA0", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2118.944005518696, + "min_y": 5336.602260035456, + "max_x": 2121.126014971893, + "max_y": 5336.602260035456, + "center": [ + 2120.0350102452944, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.126014971893, + 5336.602260035456 + ], + [ + 2118.944005518696, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AA1", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2209.002691999894, + "min_y": 5336.602260035456, + "max_x": 2209.002691999894, + "max_y": 5339.285038951385, + "center": [ + 2209.002691999894, + 5337.943649493421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.002691999894, + 5339.285038951385 + ], + [ + 2209.002691999894, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AA2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2206.145605290942, + "min_y": 5344.119264197199, + "max_x": 2211.859778708848, + "max_y": 5349.833437615105, + "center": [ + 2209.002691999895, + 5346.976350906152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.002691999895, + 5346.976350906152 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AA3", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2207.938467568019, + "min_y": 5347.508282466144, + "max_x": 2209.505952692756, + "max_y": 5348.814520070092, + "center": [ + 2208.722210130388, + 5348.161401268118 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AA4", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2114.677641296188, + "min_y": 5336.602260035456, + "max_x": 2116.474155759524, + "max_y": 5336.602260035456, + "center": [ + 2115.575898527856, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2114.677641296188, + 5336.602260035456 + ], + [ + 2116.474155759524, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AA5", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2206.286338246546, + "min_y": 5345.41325165296, + "max_x": 2210.9887936207574, + "max_y": 5346.719489256908, + "center": [ + 2208.637565933652, + 5346.066370454933 + ] + }, + "raw_value": "10215C", + "clean_value": "10215C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AA6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2105.803080343955, + "min_y": 5335.766253212239, + "max_x": 2110.281149899773, + "max_y": 5337.258943064178, + "center": [ + 2108.0421151218643, + 5336.512598138208 + ] + }, + "raw_value": "STEAM", + "clean_value": "STEAM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2154.768895175301, + "min_y": 5336.05348875599, + "max_x": 2154.768895175301, + "max_y": 5337.151031314917, + "center": [ + 2154.768895175301, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.768895175301, + 5337.151031314917 + ], + [ + 2154.768895175301, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2154.340241450892, + "min_y": 5336.033197689205, + "max_x": 2154.340241450892, + "max_y": 5337.171322381706, + "center": [ + 2154.340241450892, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.340241450892, + 5337.171322381706 + ], + [ + 2154.340241450892, + 5336.033197689205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.118520698878, + "min_y": 5336.05348875599, + "max_x": 2148.118520698878, + "max_y": 5337.151031314917, + "center": [ + 2148.118520698878, + 5336.602260035454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.118520698878, + 5337.151031314917 + ], + [ + 2148.118520698878, + 5336.05348875599 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.547174423293, + "min_y": 5336.033197689205, + "max_x": 2148.547174423293, + "max_y": 5337.171322381706, + "center": [ + 2148.547174423293, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.547174423293, + 5337.171322381706 + ], + [ + 2148.547174423293, + 5336.033197689205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AAB", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2153.220095052775, + "min_y": 5336.602260035456, + "max_x": 2154.340241450892, + "max_y": 5336.602260035456, + "center": [ + 2153.7801682518334, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.340241450892, + 5336.602260035456 + ], + [ + 2153.220095052775, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AAC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2134.245179497678, + "min_y": 5339.449652326707, + "max_x": 2134.245179497678, + "max_y": 5340.549760401168, + "center": [ + 2134.245179497678, + 5339.999706363938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5339.449652326707 + ], + [ + 2134.245179497678, + 5340.549760401168 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AAD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2131.388092788725, + "min_y": 5340.548928951823, + "max_x": 2137.1022662066307, + "max_y": 5346.263102369729, + "center": [ + 2134.245179497678, + 5343.406015660776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2134.245179497678, + 5343.406015660776 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AAE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2132.071763404409, + "min_y": 5341.655628871986, + "max_x": 2135.990476216252, + "max_y": 5342.961866475934, + "center": [ + 2134.0311198103304, + 5342.30874767396 + ] + }, + "raw_value": "10215", + "clean_value": "10215", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AAF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2132.805673002188, + "min_y": 5343.978357874028, + "max_x": 2135.1569006892937, + "max_y": 5345.284595477976, + "center": [ + 2133.981286845741, + 5344.631476676002 + ] + }, + "raw_value": "PRV", + "clean_value": "PRV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AB0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2103.845850867242, + "min_y": 5338.585620820268, + "max_x": 2112.694280511389, + "max_y": 5338.585620820268, + "center": [ + 2108.2700656893157, + 5338.585620820268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2103.845850867242, + 5338.585620820268 + ], + [ + 2112.694280511389, + 5338.585620820268 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556AB1", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2103.845850867242, + "min_y": 5334.615840200545, + "max_x": 2112.694280511389, + "max_y": 5334.615840200545, + "center": [ + 2108.2700656893157, + 5334.615840200545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2112.694280511389, + 5334.615840200545 + ], + [ + 2103.845850867242, + 5334.615840200545 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2103.845850867242, + "min_y": 5334.615840200545, + "max_x": 2103.845850867242, + "max_y": 5338.585620820268, + "center": [ + 2103.845850867242, + 5336.600730510407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2103.845850867242, + 5334.615840200545 + ], + [ + 2103.845850867242, + 5338.585620820268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AB3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2112.694280511389, + "min_y": 5336.600730510401, + "max_x": 2114.679170821244, + "max_y": 5338.585620820256, + "center": [ + 2113.6867256663163, + 5337.593175665328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2112.694280511389, + 5338.585620820256 + ], + [ + 2114.679170821244, + 5336.600730510401 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556AB4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2112.694280511389, + "min_y": 5334.615840200545, + "max_x": 2114.679170821244, + "max_y": 5336.600730510401, + "center": [ + 2113.6867256663163, + 5335.608285355473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2114.679170821244, + 5336.600730510401 + ], + [ + 2112.694280511389, + 5334.615840200545 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556AB5", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2170.473380963203, + "min_y": 5343.297160316129, + "max_x": 2170.473380963203, + "max_y": 5349.870139523501, + "center": [ + 2170.473380963203, + 5346.583649919815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.473380963203, + 5343.297160316129 + ], + [ + 2170.473380963203, + 5349.870139523501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556AB6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2170.1876012065886, + "min_y": 5336.3164802788415, + "max_x": 2170.7591607198174, + "max_y": 5336.888039792071, + "center": [ + 2170.473380963203, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.473380963203, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.572918385899, + "min_y": 5336.602260035456, + "max_x": 2127.572918385899, + "max_y": 5339.299954544695, + "center": [ + 2127.572918385899, + 5337.951107290075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.572918385899, + 5339.299954544695 + ], + [ + 2127.572918385899, + 5336.602260035456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AB8", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2130.616600227194, + "min_y": 5335.551455630485, + "max_x": 2130.616600227194, + "max_y": 5336.602260035456, + "center": [ + 2130.616600227194, + 5336.076857832971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.616600227194, + 5335.551455630485 + ], + [ + 2130.616600227194, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556AB9", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2130.619237597914, + "min_y": 5332.033239930484, + "max_x": 2130.619237597914, + "max_y": 5333.133348004928, + "center": [ + 2130.619237597914, + 5332.583293967706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.619237597914, + 5333.133348004928 + ], + [ + 2130.619237597914, + 5332.033239930484 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556ABA", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2144.803111290558, + "min_y": 5336.602260035456, + "max_x": 2148.118520698878, + "max_y": 5336.602260035456, + "center": [ + 2146.460815994718, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.118520698878, + 5336.602260035456 + ], + [ + 2144.803111290558, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556ABB", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2135.555317635786, + "min_y": 5336.602260035456, + "max_x": 2144.803111290558, + "max_y": 5336.602260035456, + "center": [ + 2140.179214463172, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.803111290558, + 5336.602260035456 + ], + [ + 2135.555317635786, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556ABC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.07046631845, + "min_y": 5331.379528325397, + "max_x": 2130.07046631845, + "max_y": 5332.122845441393, + "center": [ + 2130.07046631845, + 5331.751186883395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.07046631845, + 5332.122845441393 + ], + [ + 2130.07046631845, + 5331.379528325397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ABD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.168008877381, + "min_y": 5331.379528325397, + "max_x": 2131.168008877381, + "max_y": 5332.122845441393, + "center": [ + 2131.168008877381, + 5331.751186883395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.168008877381, + 5332.122845441393 + ], + [ + 2131.168008877381, + 5331.379528325397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ABE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.07046631845, + "min_y": 5331.379528325397, + "max_x": 2131.168008877381, + "max_y": 5331.379528325397, + "center": [ + 2130.6192375979153, + 5331.379528325397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.07046631845, + 5331.379528325397 + ], + [ + 2131.168008877381, + 5331.379528325397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ABF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923252, + "min_y": 5331.228786167051, + "max_x": 2173.167580923252, + "max_y": 5331.972103283046, + "center": [ + 2173.167580923252, + 5331.600444725049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.167580923252, + 5331.972103283046 + ], + [ + 2173.167580923252, + 5331.228786167051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.265123482182, + "min_y": 5331.228786167051, + "max_x": 2174.265123482182, + "max_y": 5331.972103283046, + "center": [ + 2174.265123482182, + 5331.600444725049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.265123482182, + 5331.972103283046 + ], + [ + 2174.265123482182, + 5331.228786167051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923252, + "min_y": 5331.228786167051, + "max_x": 2174.265123482182, + "max_y": 5331.228786167051, + "center": [ + 2173.7163522027167, + 5331.228786167051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.167580923252, + 5331.228786167051 + ], + [ + 2174.265123482182, + 5331.228786167051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.083977390552, + "min_y": 5336.079866313134, + "max_x": 2178.083979473781, + "max_y": 5337.124653757745, + "center": [ + 2178.083978432166, + 5336.602260035439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.083979473781, + 5337.124653757745 + ], + [ + 2178.083977390552, + 5336.079866313134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.614127631389, + "min_y": 5336.079871237824, + "max_x": 2175.614129714617, + "max_y": 5337.124658682446, + "center": [ + 2175.6141286730026, + 5336.602264960135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.614129714617, + 5337.124658682446 + ], + [ + 2175.614127631389, + 5336.079871237824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.00762964484, + "min_y": 5336.767913995871, + "max_x": 2176.572339617212, + "max_y": 5337.106030895057, + "center": [ + 2176.289984631026, + 5336.936972445465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.00762964484, + 5337.106030895057 + ], + [ + 2176.572339617212, + 5336.767913995871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.125669267833, + "min_y": 5336.098494100725, + "max_x": 2177.690379240205, + "max_y": 5336.436610999903, + "center": [ + 2177.408024254019, + 5336.267552550314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.125669267833, + 5336.436610999903 + ], + [ + 2177.690379240205, + 5336.098494100725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.690379240205, + "min_y": 5336.098494100725, + "max_x": 2177.690381249151, + "max_y": 5337.10602753977, + "center": [ + 2177.6903802446777, + 5336.6022608202475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.690381249151, + 5337.10602753977 + ], + [ + 2177.690379240205, + 5336.098494100725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.007627635891, + "min_y": 5336.098497456006, + "max_x": 2176.00762964484, + "max_y": 5337.106030895057, + "center": [ + 2176.0076286403655, + 5336.602264175532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.00762964484, + 5337.106030895057 + ], + [ + 2176.007627635891, + 5336.098497456006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2176.007627635891, + "min_y": 5336.098497456006, + "max_x": 2176.57233895662, + "max_y": 5336.436612103209, + "center": [ + 2176.2899832962557, + 5336.267554779608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.007627635891, + 5336.098497456006 + ], + [ + 2176.57233895662, + 5336.436612103209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.125669928424, + "min_y": 5336.767912892572, + "max_x": 2177.690381249151, + "max_y": 5337.10602753977, + "center": [ + 2177.4080255887875, + 5336.936970216171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.125669928424, + 5336.767912892572 + ], + [ + 2177.690381249151, + 5337.10602753977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2176.526539181839, + "min_y": 5336.2797972372055, + "max_x": 2177.1714697032035, + "max_y": 5336.92472775857, + "center": [ + 2176.849004442521, + 5336.602262497888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2176.849004442521, + 5336.602262497888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.700090308117, + "min_y": 5336.07986631315, + "max_x": 2165.700092391345, + "max_y": 5337.124653757761, + "center": [ + 2165.7000913497313, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.700092391345, + 5337.124653757761 + ], + [ + 2165.700090308117, + 5336.07986631315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.230240548954, + "min_y": 5336.079871237841, + "max_x": 2163.230242632182, + "max_y": 5337.124658682462, + "center": [ + 2163.230241590568, + 5336.602264960151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.230242632182, + 5337.124658682462 + ], + [ + 2163.230240548954, + 5336.079871237841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.623742562405, + "min_y": 5336.767913995888, + "max_x": 2164.188452534776, + "max_y": 5337.106030895073, + "center": [ + 2163.9060975485904, + 5336.936972445481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.623742562405, + 5337.106030895073 + ], + [ + 2164.188452534776, + 5336.767913995888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.741782185398, + "min_y": 5336.098494100742, + "max_x": 2165.306492157769, + "max_y": 5336.43661099992, + "center": [ + 2165.0241371715833, + 5336.267552550331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.741782185398, + 5336.43661099992 + ], + [ + 2165.306492157769, + 5336.098494100742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ACF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2165.306492157769, + "min_y": 5336.098494100742, + "max_x": 2165.306494166716, + "max_y": 5337.106027539786, + "center": [ + 2165.3064931622425, + 5336.602260820264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2165.306494166716, + 5337.106027539786 + ], + [ + 2165.306492157769, + 5336.098494100742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.623740553456, + "min_y": 5336.098497456022, + "max_x": 2163.623742562405, + "max_y": 5337.106030895073, + "center": [ + 2163.6237415579308, + 5336.602264175548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.623742562405, + 5337.106030895073 + ], + [ + 2163.623740553456, + 5336.098497456022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2163.623740553456, + "min_y": 5336.098497456022, + "max_x": 2164.188451874184, + "max_y": 5336.436612103226, + "center": [ + 2163.90609621382, + 5336.267554779624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2163.623740553456, + 5336.098497456022 + ], + [ + 2164.188451874184, + 5336.436612103226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2164.74178284599, + "min_y": 5336.767912892589, + "max_x": 2165.306494166716, + "max_y": 5337.106027539786, + "center": [ + 2165.024138506353, + 5336.936970216188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.74178284599, + 5336.767912892589 + ], + [ + 2165.306494166716, + 5337.106027539786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2164.1426520994028, + "min_y": 5336.279797237223, + "max_x": 2164.7875826207674, + "max_y": 5336.924727758587, + "center": [ + 2164.465117360085, + 5336.602262497905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.465117360085, + 5336.602262497905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.706416665009, + "min_y": 5329.432408985817, + "max_x": 2171.706418748237, + "max_y": 5330.477196430429, + "center": [ + 2171.706417706623, + 5329.954802708124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.706418748237, + 5330.477196430429 + ], + [ + 2171.706416665009, + 5329.432408985817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.236566905846, + "min_y": 5329.432413910509, + "max_x": 2169.236568989074, + "max_y": 5330.477201355131, + "center": [ + 2169.2365679474597, + 5329.95480763282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.236568989074, + 5330.477201355131 + ], + [ + 2169.236566905846, + 5329.432413910509 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.630068919297, + "min_y": 5330.120456668556, + "max_x": 2170.194778891668, + "max_y": 5330.45857356774, + "center": [ + 2169.9124239054827, + 5330.289515118147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.630068919297, + 5330.45857356774 + ], + [ + 2170.194778891668, + 5330.120456668556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.74810854229, + "min_y": 5329.451036773408, + "max_x": 2171.312818514661, + "max_y": 5329.789153672589, + "center": [ + 2171.0304635284756, + 5329.620095222999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.74810854229, + 5329.789153672589 + ], + [ + 2171.312818514661, + 5329.451036773408 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.312818514661, + "min_y": 5329.451036773408, + "max_x": 2171.312820523608, + "max_y": 5330.458570212454, + "center": [ + 2171.312819519135, + 5329.954803492931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.312820523608, + 5330.458570212454 + ], + [ + 2171.312818514661, + 5329.451036773408 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.630066910348, + "min_y": 5329.451040128689, + "max_x": 2169.630068919297, + "max_y": 5330.45857356774, + "center": [ + 2169.6300679148226, + 5329.9548068482145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.630068919297, + 5330.45857356774 + ], + [ + 2169.630066910348, + 5329.451040128689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.630066910348, + "min_y": 5329.451040128689, + "max_x": 2170.194778231077, + "max_y": 5329.789154775893, + "center": [ + 2169.912422570713, + 5329.620097452291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.630066910348, + 5329.451040128689 + ], + [ + 2170.194778231077, + 5329.789154775893 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.748109202881, + "min_y": 5330.120455565256, + "max_x": 2171.312820523608, + "max_y": 5330.458570212454, + "center": [ + 2171.0304648632446, + 5330.289512888855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.748109202881, + 5330.120455565256 + ], + [ + 2171.312820523608, + 5330.458570212454 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2170.1489784562955, + "min_y": 5329.63233990989, + "max_x": 2170.79390897766, + "max_y": 5330.277270431255, + "center": [ + 2170.471443716978, + 5329.954805170572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.471443716978, + 5329.954805170572 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.944004477082, + "min_y": 5336.07986631315, + "max_x": 2118.944006560311, + "max_y": 5337.124653757761, + "center": [ + 2118.944005518697, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.944006560311, + 5337.124653757761 + ], + [ + 2118.944004477082, + 5336.07986631315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.474154717919, + "min_y": 5336.079871237841, + "max_x": 2116.474156801147, + "max_y": 5337.124658682462, + "center": [ + 2116.474155759533, + 5336.602264960151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.474156801147, + 5337.124658682462 + ], + [ + 2116.474154717919, + 5336.079871237841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ADF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.86765673137, + "min_y": 5336.767913995888, + "max_x": 2117.432366703742, + "max_y": 5337.106030895073, + "center": [ + 2117.150011717556, + 5336.936972445481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.86765673137, + 5337.106030895073 + ], + [ + 2117.432366703742, + 5336.767913995888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.985696354363, + "min_y": 5336.098494100742, + "max_x": 2118.550406326734, + "max_y": 5336.43661099992, + "center": [ + 2118.2680513405485, + 5336.267552550331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.985696354363, + 5336.43661099992 + ], + [ + 2118.550406326734, + 5336.098494100742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.550406326734, + "min_y": 5336.098494100742, + "max_x": 2118.550408335681, + "max_y": 5337.106027539786, + "center": [ + 2118.5504073312077, + 5336.602260820264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.550408335681, + 5337.106027539786 + ], + [ + 2118.550406326734, + 5336.098494100742 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.867654722421, + "min_y": 5336.098497456022, + "max_x": 2116.86765673137, + "max_y": 5337.106030895073, + "center": [ + 2116.8676557268955, + 5336.602264175548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.86765673137, + 5337.106030895073 + ], + [ + 2116.867654722421, + 5336.098497456022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.867654722421, + "min_y": 5336.098497456022, + "max_x": 2117.43236604315, + "max_y": 5336.436612103226, + "center": [ + 2117.1500103827857, + 5336.267554779624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.867654722421, + 5336.098497456022 + ], + [ + 2117.43236604315, + 5336.436612103226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.985697014955, + "min_y": 5336.767912892589, + "max_x": 2118.550408335681, + "max_y": 5337.106027539786, + "center": [ + 2118.268052675318, + 5336.936970216188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.985697014955, + 5336.767912892589 + ], + [ + 2118.550408335681, + 5337.106027539786 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2117.386566268369, + "min_y": 5336.279797237223, + "max_x": 2118.0314967897334, + "max_y": 5336.924727758587, + "center": [ + 2117.709031529051, + 5336.602262497905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.709031529051, + 5336.602262497905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5335.141248921662, + "max_x": 2174.265123482181, + "max_y": 5335.141248921662, + "center": [ + 2173.716352202716, + 5335.141248921662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.265123482181, + 5335.141248921662 + ], + [ + 2173.167580923251, + 5335.141248921662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5332.723141296099, + "max_x": 2174.265123482181, + "max_y": 5332.723141296099, + "center": [ + 2173.716352202716, + 5332.723141296099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.167580923251, + 5332.723141296099 + ], + [ + 2174.265123482181, + 5332.723141296099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AE9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2173.3624417787546, + "min_y": 5333.619410990812, + "max_x": 2174.064987885233, + "max_y": 5334.321957097291, + "center": [ + 2173.713714831994, + 5333.970684044051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.713714831994, + 5333.970684044051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5333.049738143119, + "max_x": 2173.537163043344, + "max_y": 5333.667002922047, + "center": [ + 2173.3523719832974, + 5333.358370532583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.537163043344, + 5333.667002922047 + ], + [ + 2173.167580923251, + 5333.049738143119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5333.049738143119, + "max_x": 2174.265123482181, + "max_y": 5333.049738143119, + "center": [ + 2173.716352202716, + 5333.049738143119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.167580923251, + 5333.049738143119 + ], + [ + 2174.265123482181, + 5333.049738143119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.894164389772, + "min_y": 5333.049738143119, + "max_x": 2174.265123482181, + "max_y": 5333.669302699186, + "center": [ + 2174.0796439359765, + 5333.359520421152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.265123482181, + 5333.049738143119 + ], + [ + 2173.894164389772, + 5333.669302699186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.167580923251, + "min_y": 5334.882820232766, + "max_x": 2174.265123482181, + "max_y": 5334.882820232766, + "center": [ + 2173.716352202716, + 5334.882820232766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.167580923251, + 5334.882820232766 + ], + [ + 2174.265123482181, + 5334.882820232766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.896801760495, + "min_y": 5334.267660532802, + "max_x": 2174.265123482181, + "max_y": 5334.882820232766, + "center": [ + 2174.0809626213377, + 5334.575240382785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.265123482181, + 5334.882820232766 + ], + [ + 2173.896801760495, + 5334.267660532802 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.162306181804, + "min_y": 5334.267660532802, + "max_x": 2173.53062790349, + "max_y": 5334.882820232766, + "center": [ + 2173.346467042647, + 5334.575240382785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.162306181804, + 5334.882820232766 + ], + [ + 2173.53062790349, + 5334.267660532802 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5341.703146576946, + "max_x": 2209.551463279359, + "max_y": 5341.703146576946, + "center": [ + 2209.0026919998936, + 5341.703146576946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.551463279359, + 5341.703146576946 + ], + [ + 2208.453920720429, + 5341.703146576946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5339.285038951385, + "max_x": 2209.551463279359, + "max_y": 5339.285038951385, + "center": [ + 2209.0026919998936, + 5339.285038951385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.453920720429, + 5339.285038951385 + ], + [ + 2209.551463279359, + 5339.285038951385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2208.6487815759315, + "min_y": 5340.181308646097, + "max_x": 2209.35132768241, + "max_y": 5340.883854752576, + "center": [ + 2209.000054629171, + 5340.532581699336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.000054629171, + 5340.532581699336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5339.611635798404, + "max_x": 2208.823502840522, + "max_y": 5340.228900577332, + "center": [ + 2208.638711780475, + 5339.920268187868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.823502840522, + 5340.228900577332 + ], + [ + 2208.453920720429, + 5339.611635798404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5339.611635798404, + "max_x": 2209.551463279359, + "max_y": 5339.611635798404, + "center": [ + 2209.0026919998936, + 5339.611635798404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.453920720429, + 5339.611635798404 + ], + [ + 2209.551463279359, + 5339.611635798404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.18050418695, + "min_y": 5339.611635798404, + "max_x": 2209.551463279359, + "max_y": 5340.23120035447, + "center": [ + 2209.3659837331543, + 5339.9214180764375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.551463279359, + 5339.611635798404 + ], + [ + 2209.18050418695, + 5340.23120035447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.453920720429, + "min_y": 5341.44471788805, + "max_x": 2209.551463279359, + "max_y": 5341.44471788805, + "center": [ + 2209.0026919998936, + 5341.44471788805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.453920720429, + 5341.44471788805 + ], + [ + 2209.551463279359, + 5341.44471788805 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2209.183141557673, + "min_y": 5340.829558188088, + "max_x": 2209.551463279359, + "max_y": 5341.44471788805, + "center": [ + 2209.367302418516, + 5341.13713803807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.551463279359, + 5341.44471788805 + ], + [ + 2209.183141557673, + 5340.829558188088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.448645978982, + "min_y": 5340.829558188088, + "max_x": 2208.816967700668, + "max_y": 5341.44471788805, + "center": [ + 2208.632806839825, + 5341.13713803807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.448645978982, + 5341.44471788805 + ], + [ + 2208.816967700668, + 5340.829558188088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5341.718062170256, + "max_x": 2141.45153912783, + "max_y": 5341.718062170256, + "center": [ + 2140.9027678483653, + 5341.718062170256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.45153912783, + 5341.718062170256 + ], + [ + 2140.3539965689, + 5341.718062170256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5339.299954544695, + "max_x": 2141.45153912783, + "max_y": 5339.299954544695, + "center": [ + 2140.9027678483653, + 5339.299954544695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.3539965689, + 5339.299954544695 + ], + [ + 2141.45153912783, + 5339.299954544695 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2140.5488574244036, + "min_y": 5340.196224239407, + "max_x": 2141.2514035308823, + "max_y": 5340.898770345885, + "center": [ + 2140.900130477643, + 5340.547497292646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.900130477643, + 5340.547497292646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5339.626551391713, + "max_x": 2140.723578688993, + "max_y": 5340.243816170641, + "center": [ + 2140.5387876289465, + 5339.935183781177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.723578688993, + 5340.243816170641 + ], + [ + 2140.3539965689, + 5339.626551391713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5339.626551391713, + "max_x": 2141.45153912783, + "max_y": 5339.626551391713, + "center": [ + 2140.9027678483653, + 5339.626551391713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.3539965689, + 5339.626551391713 + ], + [ + 2141.45153912783, + 5339.626551391713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.080580035421, + "min_y": 5339.626551391713, + "max_x": 2141.45153912783, + "max_y": 5340.24611594778, + "center": [ + 2141.2660595816255, + 5339.936333669746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.45153912783, + 5339.626551391713 + ], + [ + 2141.080580035421, + 5340.24611594778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556AFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.3539965689, + "min_y": 5341.459633481361, + "max_x": 2141.45153912783, + "max_y": 5341.459633481361, + "center": [ + 2140.9027678483653, + 5341.459633481361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.3539965689, + 5341.459633481361 + ], + [ + 2141.45153912783, + 5341.459633481361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.083217406144, + "min_y": 5340.844473781397, + "max_x": 2141.45153912783, + "max_y": 5341.459633481361, + "center": [ + 2141.267378266987, + 5341.152053631379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.45153912783, + 5341.459633481361 + ], + [ + 2141.083217406144, + 5340.844473781397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.348721827453, + "min_y": 5340.844473781397, + "max_x": 2140.717043549138, + "max_y": 5341.459633481361, + "center": [ + 2140.5328826882956, + 5341.152053631379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.348721827453, + 5341.459633481361 + ], + [ + 2140.717043549138, + 5340.844473781397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5341.718062170256, + "max_x": 2128.121689665364, + "max_y": 5341.718062170256, + "center": [ + 2127.5729183858994, + 5341.718062170256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.121689665364, + 5341.718062170256 + ], + [ + 2127.024147106434, + 5341.718062170256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5339.299954544695, + "max_x": 2128.121689665364, + "max_y": 5339.299954544695, + "center": [ + 2127.5729183858994, + 5339.299954544695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.024147106434, + 5339.299954544695 + ], + [ + 2128.121689665364, + 5339.299954544695 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B04", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2127.2190079619377, + "min_y": 5340.196224239407, + "max_x": 2127.9215540684163, + "max_y": 5340.898770345885, + "center": [ + 2127.570281015177, + 5340.547497292646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.570281015177, + 5340.547497292646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5339.626551391713, + "max_x": 2127.393729226526, + "max_y": 5340.243816170641, + "center": [ + 2127.20893816648, + 5339.935183781177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.393729226526, + 5340.243816170641 + ], + [ + 2127.024147106434, + 5339.626551391713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5339.626551391713, + "max_x": 2128.121689665364, + "max_y": 5339.626551391713, + "center": [ + 2127.5729183858994, + 5339.626551391713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.024147106434, + 5339.626551391713 + ], + [ + 2128.121689665364, + 5339.626551391713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.750730572955, + "min_y": 5339.626551391713, + "max_x": 2128.121689665364, + "max_y": 5340.24611594778, + "center": [ + 2127.9362101191596, + 5339.936333669746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.121689665364, + 5339.626551391713 + ], + [ + 2127.750730572955, + 5340.24611594778 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.024147106434, + "min_y": 5341.459633481361, + "max_x": 2128.121689665364, + "max_y": 5341.459633481361, + "center": [ + 2127.5729183858994, + 5341.459633481361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.024147106434, + 5341.459633481361 + ], + [ + 2128.121689665364, + 5341.459633481361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.753367943678, + "min_y": 5340.844473781397, + "max_x": 2128.121689665364, + "max_y": 5341.459633481361, + "center": [ + 2127.937528804521, + 5341.152053631379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.121689665364, + 5341.459633481361 + ], + [ + 2127.753367943678, + 5340.844473781397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.018872364986, + "min_y": 5340.844473781397, + "max_x": 2127.387194086672, + "max_y": 5341.459633481361, + "center": [ + 2127.203033225829, + 5341.152053631379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.018872364986, + 5341.459633481361 + ], + [ + 2127.387194086672, + 5340.844473781397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5335.551455630491, + "max_x": 2131.168008877379, + "max_y": 5335.551455630491, + "center": [ + 2130.619237597914, + 5335.551455630491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.168008877379, + 5335.551455630491 + ], + [ + 2130.070466318449, + 5335.551455630491 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5333.133348004928, + "max_x": 2131.168008877379, + "max_y": 5333.133348004928, + "center": [ + 2130.619237597914, + 5333.133348004928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.070466318449, + 5333.133348004928 + ], + [ + 2131.168008877379, + 5333.133348004928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2130.2653271739528, + "min_y": 5334.02961769964, + "max_x": 2130.9678732804314, + "max_y": 5334.7321638061185, + "center": [ + 2130.616600227192, + 5334.380890752879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.616600227192, + 5334.380890752879 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5333.459944851947, + "max_x": 2130.440048438542, + "max_y": 5334.077209630875, + "center": [ + 2130.255257378495, + 5333.768577241411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.440048438542, + 5334.077209630875 + ], + [ + 2130.070466318449, + 5333.459944851947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5333.459944851947, + "max_x": 2131.168008877379, + "max_y": 5333.459944851947, + "center": [ + 2130.619237597914, + 5333.459944851947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.070466318449, + 5333.459944851947 + ], + [ + 2131.168008877379, + 5333.459944851947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.79704978497, + "min_y": 5333.459944851947, + "max_x": 2131.168008877379, + "max_y": 5334.079509408013, + "center": [ + 2130.9825293311746, + 5333.76972712998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.168008877379, + 5333.459944851947 + ], + [ + 2130.79704978497, + 5334.079509408013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.070466318449, + "min_y": 5335.293026941593, + "max_x": 2131.168008877379, + "max_y": 5335.293026941593, + "center": [ + 2130.619237597914, + 5335.293026941593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.070466318449, + 5335.293026941593 + ], + [ + 2131.168008877379, + 5335.293026941593 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.799687155693, + "min_y": 5334.67786724163, + "max_x": 2131.168008877379, + "max_y": 5335.293026941593, + "center": [ + 2130.9838480165363, + 5334.985447091612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.168008877379, + 5335.293026941593 + ], + [ + 2130.799687155693, + 5334.67786724163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.065191577002, + "min_y": 5334.67786724163, + "max_x": 2130.433513298688, + "max_y": 5335.293026941593, + "center": [ + 2130.249352437845, + 5334.985447091612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.065191577002, + 5335.293026941593 + ], + [ + 2130.433513298688, + 5334.67786724163 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B14", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.801043121049, + "min_y": 5345.345802461621, + "max_x": 2154.0465989750987, + "max_y": 5350.591358315671, + "center": [ + 2151.423821048074, + 5347.968580388646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423821048074, + 5347.968580388646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B15", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.753225329903, + "min_y": 5350.639181431795, + "max_x": 2151.423826373052, + "max_y": 5350.639186756769, + "center": [ + 2150.0885258514777, + 5350.6391840942815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423826373052, + 5350.639181431795 + ], + [ + 2148.753225329903, + 5350.639186756769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B16", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.753220004929, + "min_y": 5347.96858571363, + "max_x": 2148.753225329903, + "max_y": 5350.639186756769, + "center": [ + 2148.753222667416, + 5349.3038862352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.753220004929, + 5347.96858571363 + ], + [ + 2148.753225329903, + 5350.639186756769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B17", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2151.423826373052, + "min_y": 5350.639176106813, + "max_x": 2154.0944274162, + "max_y": 5350.639181431795, + "center": [ + 2152.759126894626, + 5350.639178769304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.423826373052, + 5350.639181431795 + ], + [ + 2154.0944274162, + 5350.639176106813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B18", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2154.094422091222, + "min_y": 5347.968575063672, + "max_x": 2154.0944274162, + "max_y": 5350.639176106813, + "center": [ + 2154.094424753711, + 5349.303875585242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.094422091222, + 5347.968575063672 + ], + [ + 2154.0944274162, + 5350.639176106813 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B19", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.753214679952, + "min_y": 5345.297979345485, + "max_x": 2151.4238157231, + "max_y": 5345.297984670472, + "center": [ + 2150.088515201526, + 5345.297982007978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.4238157231, + 5345.297979345485 + ], + [ + 2148.753214679952, + 5345.297984670472 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.753214679952, + "min_y": 5345.297984670472, + "max_x": 2148.753220004929, + "max_y": 5347.96858571362, + "center": [ + 2148.7532173424406, + 5346.633285192046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.753220004929, + 5347.96858571362 + ], + [ + 2148.753214679952, + 5345.297984670472 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2151.4238157231, + "min_y": 5345.297974020525, + "max_x": 2154.094416766249, + "max_y": 5345.297979345485, + "center": [ + 2152.7591162446743, + 5345.297976683005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.4238157231, + 5345.297979345485 + ], + [ + 2154.094416766249, + 5345.297974020525 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2154.094416766249, + "min_y": 5345.297974020525, + "max_x": 2154.094422091222, + "max_y": 5347.968575063659, + "center": [ + 2154.094419428736, + 5346.633274542091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.094422091222, + 5347.968575063659 + ], + [ + 2154.094416766249, + 5345.297974020525 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2149.641231992864, + "min_y": 5348.343197061204, + "max_x": 2152.7762022423385, + "max_y": 5349.649434665152, + "center": [ + 2151.2087171176013, + 5348.996315863178 + ] + }, + "raw_value": "FICQ", + "clean_value": "FICQ", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.801043121055, + "min_y": 5347.968575159033, + "max_x": 2154.046598975091, + "max_y": 5347.968585618272, + "center": [ + 2151.423821048073, + 5347.968580388653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.046598975091, + 5347.968575159033 + ], + [ + 2148.801043121055, + 5347.968585618272 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B1F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2149.249176690562, + "min_y": 5346.300459697643, + "max_x": 2153.1678895024047, + "max_y": 5347.606697301591, + "center": [ + 2151.2085330964833, + 5346.953578499617 + ] + }, + "raw_value": "10215", + "clean_value": "10215", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B20", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2245.860148817657, + "min_y": 5295.818265993014, + "max_x": 2245.860148817657, + "max_y": 5336.602260035456, + "center": [ + 2245.860148817657, + 5316.210263014235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.860148817657, + 5336.602260035456 + ], + [ + 2245.860148817657, + 5295.818265993014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B21", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2103.664536743845, + "min_y": 5339.184174305485, + "max_x": 2116.4311841383296, + "max_y": 5340.304055655878, + "center": [ + 2110.0478604410873, + 5339.744114980682 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B22", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2171.622276748641, + "min_y": 5338.911242489387, + "max_x": 2172.831479835542, + "max_y": 5339.918911728471, + "center": [ + 2172.2268782920914, + 5339.41507710893 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B23", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2183.763656500055, + "min_y": 5346.831405272981, + "max_x": 2189.205070391108, + "max_y": 5347.839074512065, + "center": [ + 2186.4843634455815, + 5347.3352398925235 + ] + }, + "raw_value": "PSV-10215", + "clean_value": "PSV-10215", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B24", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2184.50925616781, + "min_y": 5345.199582130427, + "max_x": 2188.7414669719624, + "max_y": 5346.207251369511, + "center": [ + 2186.625361569886, + 5345.70341674997 + ] + }, + "raw_value": "40Ax65A", + "clean_value": "40Ax65A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B25", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2183.697248299415, + "min_y": 5343.667386986385, + "max_x": 2189.743263733919, + "max_y": 5344.675056225469, + "center": [ + 2186.720256016667, + 5344.171221605928 + ] + }, + "raw_value": "SP: 0.7MPa", + "clean_value": "SP: 0.7MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.498970635391, + "min_y": 5341.098311083014, + "max_x": 2186.498970635391, + "max_y": 5342.64111901832, + "center": [ + 2186.498970635391, + 5341.869715050667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.498970635391, + 5341.098311083014 + ], + [ + 2186.498970635391, + 5342.64111901832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B27", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2187.608827650344, + "min_y": 5341.098311083014, + "max_x": 2190.080852012074, + "max_y": 5341.098311083014, + "center": [ + 2188.8448398312094, + 5341.098311083014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.608827650344, + 5341.098311083014 + ], + [ + 2190.080852012074, + 5341.098311083014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B29", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2186.498970635388, + "min_y": 5336.602260035456, + "max_x": 2186.498970635388, + "max_y": 5339.98845406806, + "center": [ + 2186.498970635388, + 5338.295357051758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.498970635388, + 5339.98845406806 + ], + [ + 2186.498970635388, + 5336.602260035456 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.221506381651, + "min_y": 5341.53429273388, + "max_x": 2186.776434889129, + "max_y": 5342.089221241352, + "center": [ + 2186.49897063539, + 5341.811756987616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.221506381651, + 5342.089221241352 + ], + [ + 2186.776434889129, + 5341.53429273388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.221506381651, + "min_y": 5341.811756987613, + "max_x": 2186.776434889129, + "max_y": 5342.366685495091, + "center": [ + 2186.49897063539, + 5342.089221241352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.776434889129, + 5341.811756987613 + ], + [ + 2186.221506381651, + 5342.366685495091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.221506381651, + "min_y": 5342.089221241352, + "max_x": 2186.776434889129, + "max_y": 5342.644149748826, + "center": [ + 2186.49897063539, + 5342.366685495089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.221506381651, + 5342.644149748826 + ], + [ + 2186.776434889129, + 5342.089221241352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.498970635391, + "min_y": 5341.098311083014, + "max_x": 2186.498970635391, + "max_y": 5342.644149748826, + "center": [ + 2186.498970635391, + 5341.87123041592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.498970635391, + 5341.098311083014 + ], + [ + 2186.498970635391, + 5342.644149748826 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.944042127915, + "min_y": 5339.988454068063, + "max_x": 2186.498970635391, + "max_y": 5341.098311083014, + "center": [ + 2186.221506381653, + 5340.543382575539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.498970635391, + 5341.098311083014 + ], + [ + 2185.944042127915, + 5339.988454068063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2185.944042127915, + "min_y": 5339.988454068063, + "max_x": 2187.053899142869, + "max_y": 5339.988454068063, + "center": [ + 2186.4989706353917, + 5339.988454068063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2185.944042127915, + 5339.988454068063 + ], + [ + 2187.053899142869, + 5339.988454068063 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.498970635391, + "min_y": 5339.988454068063, + "max_x": 2187.053899142869, + "max_y": 5341.098311083014, + "center": [ + 2186.7764348891296, + 5340.543382575539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.053899142869, + 5339.988454068063 + ], + [ + 2186.498970635391, + 5341.098311083014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.498970635391, + "min_y": 5341.098311083014, + "max_x": 2187.608827650344, + "max_y": 5341.653239590494, + "center": [ + 2187.0538991428675, + 5341.375775336754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2186.498970635391, + 5341.098311083014 + ], + [ + 2187.608827650344, + 5341.653239590494 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2187.608827650344, + "min_y": 5340.543382575539, + "max_x": 2187.608827650344, + "max_y": 5341.653239590494, + "center": [ + 2187.608827650344, + 5341.098311083017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.608827650344, + 5341.653239590494 + ], + [ + 2187.608827650344, + 5340.543382575539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2186.498970635391, + "min_y": 5340.543382575539, + "max_x": 2187.608827650344, + "max_y": 5341.098311083014, + "center": [ + 2187.0538991428675, + 5340.820846829276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.608827650344, + 5340.543382575539 + ], + [ + 2186.498970635391, + 5341.098311083014 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B34", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2190.087398028431, + "min_y": 5334.453444731895, + "max_x": 2203.525974233152, + "max_y": 5335.573326082288, + "center": [ + 2196.8066861307916, + 5335.013385407092 + ] + }, + "raw_value": "ST-10521-65A-S1A-H50", + "clean_value": "ST-10521-65A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B3C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2169.4545450453, + "min_y": 5334.740509286782, + "max_x": 2171.2683496756513, + "max_y": 5335.748178525866, + "center": [ + 2170.3614473604757, + 5335.2443439063245 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B3D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2150.504451942995, + "min_y": 5333.285851894561, + "max_x": 2152.318256573346, + "max_y": 5334.293521133645, + "center": [ + 2151.4113542581704, + 5333.789686514103 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B3E", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2245.860148817657, + "min_y": 5271.627833679247, + "max_x": 2245.860148817657, + "max_y": 5276.389251589336, + "center": [ + 2245.860148817657, + 5274.008542634291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.860148817657, + 5276.389251589336 + ], + [ + 2245.860148817657, + 5271.627833679247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2218.297661010554, + "min_y": 5290.990640842793, + "max_x": 2238.035768249496, + "max_y": 5290.990640842793, + "center": [ + 2228.166714630025, + 5290.990640842793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2218.297661010554, + 5290.990640842793 + ], + [ + 2238.035768249496, + 5290.990640842793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2218.297661010554, + "min_y": 5288.377584358542, + "max_x": 2238.035768249496, + "max_y": 5288.377584358542, + "center": [ + 2228.166714630025, + 5288.377584358542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2218.297661010554, + 5288.377584358542 + ], + [ + 2238.035768249496, + 5288.377584358542 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B41", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2225.956331743986, + "min_y": 5291.737228409722, + "max_x": 2229.539952065245, + "max_y": 5293.23040354358, + "center": [ + 2227.7481419046153, + 5292.483815976651 + ] + }, + "raw_value": "FEED", + "clean_value": "FEED", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B42", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2218.998920046633, + "min_y": 5289.124171925472, + "max_x": 2222.358564097813, + "max_y": 5290.244053275866, + "center": [ + 2220.678742072223, + 5289.684112600669 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B43", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2225.332540315074, + "min_y": 5289.124171925472, + "max_x": 2231.3798996071982, + "max_y": 5290.244053275866, + "center": [ + 2228.356219961136, + 5289.684112600669 + ] + }, + "raw_value": "50~90%%DC", + "clean_value": "50~90%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B44", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2218.862934454086, + "min_y": 5286.51111544122, + "max_x": 2222.8945073155023, + "max_y": 5287.630996791613, + "center": [ + 2220.8787208847943, + 5287.071056116416 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B45", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2225.196554722526, + "min_y": 5286.51111544122, + "max_x": 2233.9316292555945, + "max_y": 5287.630996791613, + "center": [ + 2229.56409198906, + 5287.071056116416 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2224.437103161037, + "min_y": 5285.764527874292, + "max_x": 2224.437103161037, + "max_y": 5290.990640842793, + "center": [ + 2224.437103161037, + 5288.377584358543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2224.437103161037, + 5290.990640842793 + ], + [ + 2224.437103161037, + 5285.764527874292 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B47", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2218.297661010554, + "min_y": 5285.764527874292, + "max_x": 2238.035768249496, + "max_y": 5293.976991110509, + "center": [ + 2228.166714630025, + 5289.8707594924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2218.297661010554, + 5285.764527874292 + ], + [ + 2238.035768249496, + 5285.764527874292 + ], + [ + 2238.035768249496, + 5293.976991110509 + ], + [ + 2218.297661010554, + 5293.976991110509 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B48", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2144.3306622565055, + "min_y": 5204.1768756581205, + "max_x": 2148.2988139478007, + "max_y": 5208.145027349416, + "center": [ + 2146.314738102153, + 5206.160951503768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.314738102153, + 5206.160951503768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.009258725291, + "min_y": 5202.634164375037, + "max_x": 2145.11102798957, + "max_y": 5204.583726432279, + "center": [ + 2144.5601433574307, + 5203.608945403657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.11102798957, + 5204.583726432279 + ], + [ + 2144.009258725291, + 5202.634164375037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.518448214736, + "min_y": 5202.634164375037, + "max_x": 2148.620217479015, + "max_y": 5204.583726432279, + "center": [ + 2148.0693328468756, + 5203.608945403657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.518448214736, + 5204.583726432279 + ], + [ + 2148.620217479015, + 5202.634164375037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.009258725291, + "min_y": 5202.634164375037, + "max_x": 2148.620217479015, + "max_y": 5202.634164375037, + "center": [ + 2146.314738102153, + 5202.634164375037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.620217479015, + 5202.634164375037 + ], + [ + 2144.009258725291, + 5202.634164375037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B4C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2145.8742085831777, + "min_y": 5205.720421984793, + "max_x": 2146.7552676211285, + "max_y": 5206.601481022743, + "center": [ + 2146.314738102153, + 5206.160951503768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.314738102153, + 5206.160951503768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B4D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2151.285800425502, + "min_y": 5220.542473747729, + "max_x": 2151.285800425502, + "max_y": 5221.116969913977, + "center": [ + 2151.285800425502, + 5220.829721830853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425502, + 5220.542473747729 + ], + [ + 2151.285800425502, + 5221.116969913977 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.285800425501, + "min_y": 5221.933270783381, + "max_x": 2151.285800425501, + "max_y": 5222.398343807439, + "center": [ + 2151.285800425501, + 5222.165807295411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5221.933270783381 + ], + [ + 2151.285800425501, + 5222.398343807439 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B4F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2150.96333516482, + "min_y": 5219.078819942519, + "max_x": 2151.6082656861845, + "max_y": 5219.723750463883, + "center": [ + 2151.285800425502, + 5219.401285203201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425502, + 5219.401285203201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5220.542473747729, + "max_x": 2151.789567145027, + "max_y": 5220.542473747729, + "center": [ + 2151.2858004255004, + 5220.542473747729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705974, + 5220.542473747729 + ], + [ + 2151.789567145027, + 5220.542473747729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5218.260096658676, + "max_x": 2151.789567145027, + "max_y": 5218.260096658676, + "center": [ + 2151.2858004255004, + 5218.260096658676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705974, + 5218.260096658676 + ], + [ + 2151.789567145027, + 5218.260096658676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B52", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2150.221575993625, + "min_y": 5225.360466437372, + "max_x": 2151.789061118362, + "max_y": 5226.66670404132, + "center": [ + 2151.0053185559937, + 5226.013585239347 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B53", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.663022498476, + "min_y": 5222.39834380744, + "max_x": 2153.9085783525256, + "max_y": 5227.64389966149, + "center": [ + 2151.285800425501, + 5225.021121734465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5225.021121734465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B54", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2149.1356069337007, + "min_y": 5217.41157329053, + "max_x": 2153.435993917301, + "max_y": 5221.7119602741295, + "center": [ + 2151.285800425501, + 5219.56176678233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5219.56176678233 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.409116431307, + "min_y": 5221.933270783381, + "max_x": 2152.162484419696, + "max_y": 5221.933270783381, + "center": [ + 2151.2858004255013, + 5221.933270783381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.409116431307, + 5221.933270783381 + ], + [ + 2152.162484419696, + 5221.933270783381 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.409116431307, + "min_y": 5221.116969913977, + "max_x": 2152.162484419696, + "max_y": 5221.116969913977, + "center": [ + 2151.2858004255013, + 5221.116969913977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2152.162484419696, + 5221.116969913977 + ], + [ + 2150.409116431307, + 5221.116969913977 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2152.162484419696, + "min_y": 5221.116969913977, + "max_x": 2152.162484419696, + "max_y": 5221.933270783381, + "center": [ + 2152.162484419696, + 5221.525120348679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2152.162484419696, + 5221.116969913977 + ], + [ + 2152.162484419696, + 5221.933270783381 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556B58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5218.559909401044, + "max_x": 2151.120149479168, + "max_y": 5219.124620047598, + "center": [ + 2150.951091592571, + 5218.842264724321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.120149479168, + 5219.124620047598 + ], + [ + 2150.782033705974, + 5218.559909401044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5218.559909401044, + "max_x": 2151.789567145027, + "max_y": 5218.559909401044, + "center": [ + 2151.2858004255004, + 5218.559909401044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705974, + 5218.559909401044 + ], + [ + 2151.789567145027, + 5218.559909401044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.45145137183, + "min_y": 5218.559909401044, + "max_x": 2151.789567145027, + "max_y": 5219.124620047598, + "center": [ + 2151.6205092584287, + 5218.842264724321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.789567145027, + 5218.559909401044 + ], + [ + 2151.45145137183, + 5219.124620047598 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5219.677950358813, + "max_x": 2151.120149479171, + "max_y": 5220.242661005362, + "center": [ + 2150.951091592572, + 5219.960305682087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.120149479171, + 5219.677950358813 + ], + [ + 2150.782033705974, + 5220.242661005362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5220.242661005362, + "max_x": 2151.789567145027, + "max_y": 5220.242661005362, + "center": [ + 2151.2858004255004, + 5220.242661005362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705974, + 5220.242661005362 + ], + [ + 2151.789567145027, + 5220.242661005362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.451451371828, + "min_y": 5219.677950358813, + "max_x": 2151.789567145027, + "max_y": 5220.242661005362, + "center": [ + 2151.620509258428, + 5219.960305682087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.789567145027, + 5220.242661005362 + ], + [ + 2151.451451371828, + 5219.677950358813 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B5E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2148.729232187054, + "min_y": 5223.45916850617, + "max_x": 2153.4316875612653, + "max_y": 5224.7654061101175, + "center": [ + 2151.0804598741597, + 5224.112287308144 + ] + }, + "raw_value": "10201C", + "clean_value": "10201C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705983, + "min_y": 5215.036209939029, + "max_x": 2151.120149479172, + "max_y": 5215.60092058558, + "center": [ + 2150.9510915925775, + 5215.318565262304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705983, + 5215.036209939029 + ], + [ + 2151.120149479172, + 5215.60092058558 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705983, + "min_y": 5215.036209939029, + "max_x": 2151.789567145029, + "max_y": 5215.036209939029, + "center": [ + 2151.285800425506, + 5215.036209939029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.789567145029, + 5215.036209939029 + ], + [ + 2150.782033705983, + 5215.036209939029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.451451371835, + "min_y": 5215.036209939029, + "max_x": 2151.789567145029, + "max_y": 5215.60092058558, + "center": [ + 2151.6205092584323, + 5215.318565262304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.451451371835, + 5215.60092058558 + ], + [ + 2151.789567145029, + 5215.036209939029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705983, + "min_y": 5216.154250896793, + "max_x": 2151.120149479172, + "max_y": 5216.718961543344, + "center": [ + 2150.9510915925775, + 5216.436606220069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705983, + 5216.718961543344 + ], + [ + 2151.120149479172, + 5216.154250896793 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705983, + "min_y": 5216.718961543344, + "max_x": 2151.789567145029, + "max_y": 5216.718961543344, + "center": [ + 2151.285800425506, + 5216.718961543344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.789567145029, + 5216.718961543344 + ], + [ + 2150.782033705983, + 5216.718961543344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.451451371835, + "min_y": 5216.154250896793, + "max_x": 2151.789567145029, + "max_y": 5216.718961543344, + "center": [ + 2151.6205092584323, + 5216.436606220069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.451451371835, + 5216.154250896793 + ], + [ + 2151.789567145029, + 5216.718961543344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B65", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2150.9633351648185, + "min_y": 5215.555120480503, + "max_x": 2151.608265686183, + "max_y": 5216.200051001868, + "center": [ + 2151.285800425501, + 5215.877585741186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5215.877585741186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B66", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2151.285800425501, + "min_y": 5217.011390714989, + "max_x": 2151.285800425501, + "max_y": 5218.260096658676, + "center": [ + 2151.285800425501, + 5217.635743686833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5218.260096658676 + ], + [ + 2151.285800425501, + 5217.011390714989 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705983, + "min_y": 5217.011390714989, + "max_x": 2151.789567145029, + "max_y": 5217.011390714989, + "center": [ + 2151.285800425506, + 5217.011390714989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705983, + 5217.011390714989 + ], + [ + 2151.789567145029, + 5217.011390714989 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.782033705974, + "min_y": 5214.736397196662, + "max_x": 2151.789567145027, + "max_y": 5214.736397196662, + "center": [ + 2151.2858004255004, + 5214.736397196662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.782033705974, + 5214.736397196662 + ], + [ + 2151.789567145027, + 5214.736397196662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B69", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298921867343, + "min_y": 5217.635724536673, + "max_x": 2151.285800425501, + "max_y": 5217.635743686832, + "center": [ + 2149.792361146422, + 5217.635734111753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5217.635743686832 + ], + [ + 2148.298921867343, + 5217.635724536673 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B6A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5206.160951503768, + "max_x": 2148.298813947801, + "max_y": 5209.690478816508, + "center": [ + 2148.298813947801, + 5207.925715160138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947801, + 5206.160951503768 + ], + [ + 2148.298813947801, + 5209.690478816508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5213.060367011664, + "max_x": 2148.859013969595, + "max_y": 5213.060367011664, + "center": [ + 2148.3004818024315, + 5213.060367011664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.741949635268, + 5213.060367011664 + ], + [ + 2148.859013969595, + 5213.060367011664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5213.323392321231, + "max_x": 2148.859013969595, + "max_y": 5215.189079084428, + "center": [ + 2148.3004818024315, + 5214.256235702829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.741949635268, + 5213.323392321231 + ], + [ + 2148.859013969595, + 5215.189079084428 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5213.323392321231, + "max_x": 2148.859013969595, + "max_y": 5213.323392321231, + "center": [ + 2148.3004818024315, + 5213.323392321231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.741949635268, + 5213.323392321231 + ], + [ + 2148.859013969595, + 5213.323392321231 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5215.189079084428, + "max_x": 2148.859013969595, + "max_y": 5215.189079084428, + "center": [ + 2148.3004818024315, + 5215.189079084428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.859013969595, + 5215.189079084428 + ], + [ + 2147.741949635268, + 5215.189079084428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.18042975305, + "min_y": 5214.597921042406, + "max_x": 2148.859013969568, + "max_y": 5215.189079084392, + "center": [ + 2148.519721861309, + 5214.893500063399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.859013969568, + 5215.189079084392 + ], + [ + 2148.18042975305, + 5214.597921042406 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.18042975305, + "min_y": 5214.454842151151, + "max_x": 2148.419395751099, + "max_y": 5214.597921042406, + "center": [ + 2148.2999127520743, + 5214.526381596778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.18042975305, + 5214.597921042406 + ], + [ + 2148.419395751099, + 5214.454842151151 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.658361749116, + "min_y": 5214.311763259865, + "max_x": 2148.859013969606, + "max_y": 5215.189079084368, + "center": [ + 2148.758687859361, + 5214.750421172117 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.859013969606, + 5215.189079084368 + ], + [ + 2148.658361749116, + 5214.311763259865 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.419395751086, + "min_y": 5214.311763259865, + "max_x": 2148.658361749116, + "max_y": 5214.454842151156, + "center": [ + 2148.538878750101, + 5214.383302705511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.658361749116, + 5214.311763259865 + ], + [ + 2148.419395751086, + 5214.454842151156 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.741949635268, + "min_y": 5215.452104393994, + "max_x": 2148.859013969595, + "max_y": 5215.452104393994, + "center": [ + 2148.3004818024315, + 5215.452104393994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.741949635268, + 5215.452104393994 + ], + [ + 2148.859013969595, + 5215.452104393994 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.778088080126, + "min_y": 5212.760554269294, + "max_x": 2148.822875524738, + "max_y": 5212.760554269294, + "center": [ + 2148.300481802432, + 5212.760554269294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.822875524738, + 5212.760554269294 + ], + [ + 2147.778088080126, + 5212.760554269294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.778088080126, + "min_y": 5213.060367011664, + "max_x": 2148.822875524738, + "max_y": 5213.060367011664, + "center": [ + 2148.300481802432, + 5213.060367011664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.822875524738, + 5213.060367011664 + ], + [ + 2147.778088080126, + 5213.060367011664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.776420225491, + "min_y": 5209.990291558878, + "max_x": 2148.821207670111, + "max_y": 5209.990291558878, + "center": [ + 2148.298813947801, + 5209.990291558878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.821207670111, + 5209.990291558878 + ], + [ + 2147.776420225491, + 5209.990291558878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.776420225491, + "min_y": 5209.690478816508, + "max_x": 2148.821207670111, + "max_y": 5209.690478816508, + "center": [ + 2148.298813947801, + 5209.690478816508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.821207670111, + 5209.690478816508 + ], + [ + 2147.776420225491, + 5209.690478816508 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378303, + "min_y": 5212.364808478471, + "max_x": 2148.496690357764, + "max_y": 5212.760561298404, + "center": [ + 2148.298813947797, + 5212.562684888438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5212.562684888438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378317, + "min_y": 5211.96905565854, + "max_x": 2148.4966903577624, + "max_y": 5212.36480847847, + "center": [ + 2148.298813947797, + 5212.166932068505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5212.166932068505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378317, + "min_y": 5211.57330283861, + "max_x": 2148.4966903577624, + "max_y": 5211.96905565854, + "center": [ + 2148.298813947797, + 5211.771179248575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5211.771179248575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B7F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.10093753783, + "min_y": 5211.573302838607, + "max_x": 2148.4966903577642, + "max_y": 5211.96905565854, + "center": [ + 2148.298813947797, + 5211.771179248573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5211.771179248573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B80", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378317, + "min_y": 5211.177550018676, + "max_x": 2148.4966903577624, + "max_y": 5211.573302838606, + "center": [ + 2148.298813947797, + 5211.375426428641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5211.375426428641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B81", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378294, + "min_y": 5210.781797198741, + "max_x": 2148.4966903577647, + "max_y": 5211.177550018676, + "center": [ + 2148.298813947797, + 5210.979673608708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5210.979673608708 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B82", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378317, + "min_y": 5210.386044378809, + "max_x": 2148.4966903577624, + "max_y": 5210.781797198739, + "center": [ + 2148.298813947797, + 5210.583920788774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5210.583920788774 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B83", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2148.1009375378317, + "min_y": 5209.99029155888, + "max_x": 2148.4966903577624, + "max_y": 5210.38604437881, + "center": [ + 2148.298813947797, + 5210.188167968845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947797, + 5210.188167968845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B84", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5215.452104393994, + "max_x": 2148.298813947801, + "max_y": 5216.12448561745, + "center": [ + 2148.298813947801, + 5215.788295005722 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947801, + 5215.452104393994 + ], + [ + 2148.298813947801, + 5216.12448561745 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.426978529523, + "min_y": 5205.640225636093, + "max_x": 2139.426978529523, + "max_y": 5206.685013080704, + "center": [ + 2139.426978529523, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.426978529523, + 5206.685013080704 + ], + [ + 2139.426978529523, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.127165787154, + "min_y": 5205.640225636093, + "max_x": 2139.127165787154, + "max_y": 5206.685013080704, + "center": [ + 2139.127165787154, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.127165787154, + 5206.685013080704 + ], + [ + 2139.127165787154, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.197241239939, + "min_y": 5205.638557781458, + "max_x": 2142.197241239939, + "max_y": 5206.683345226077, + "center": [ + 2142.197241239939, + 5206.160951503767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.197241239939, + 5206.683345226077 + ], + [ + 2142.197241239939, + 5205.638557781458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.49705398231, + "min_y": 5205.638557781458, + "max_x": 2142.49705398231, + "max_y": 5206.683345226077, + "center": [ + 2142.49705398231, + 5206.160951503767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.49705398231, + 5206.683345226077 + ], + [ + 2142.49705398231, + 5205.638557781458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B89", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2139.4269715004143, + "min_y": 5205.963075093798, + "max_x": 2139.822724320348, + "max_y": 5206.358827913731, + "center": [ + 2139.624847910381, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.624847910381, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2139.8227243203464, + "min_y": 5205.9630750937995, + "max_x": 2140.218477140277, + "max_y": 5206.358827913729, + "center": [ + 2140.020600730312, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.020600730312, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2140.2184771402776, + "min_y": 5205.9630750937995, + "max_x": 2140.6142299602084, + "max_y": 5206.358827913729, + "center": [ + 2140.416353550243, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.416353550243, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2140.2184771402776, + "min_y": 5205.963075093798, + "max_x": 2140.614229960212, + "max_y": 5206.358827913731, + "center": [ + 2140.416353550245, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.416353550245, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2140.6142299602116, + "min_y": 5205.9630750937995, + "max_x": 2141.0099827801423, + "max_y": 5206.358827913729, + "center": [ + 2140.812106370177, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.812106370177, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2141.0099827801423, + "min_y": 5205.963075093797, + "max_x": 2141.4057356000776, + "max_y": 5206.358827913732, + "center": [ + 2141.20785919011, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.20785919011, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B8F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2141.4057356000785, + "min_y": 5205.9630750937995, + "max_x": 2141.8014884200093, + "max_y": 5206.358827913729, + "center": [ + 2141.603612010044, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.603612010044, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B90", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2141.8014884200074, + "min_y": 5205.9630750937995, + "max_x": 2142.197241239938, + "max_y": 5206.358827913729, + "center": [ + 2141.999364829973, + 5206.160951503764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.999364829973, + 5206.160951503764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.859480308477, + "min_y": 5205.142113513354, + "max_x": 2134.878318298886, + "max_y": 5206.160951503764, + "center": [ + 2134.3688993036812, + 5205.651532508559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.859480308477, + 5206.160951503764 + ], + [ + 2134.878318298886, + 5205.142113513354 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2134.623608801285, + "min_y": 5204.88740401575, + "max_x": 2135.146502416606, + "max_y": 5205.396823010957, + "center": [ + 2134.8850556089455, + 5205.142113513353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.146502416606, + 5205.396823010957 + ], + [ + 2134.623608801285, + 5204.88740401575 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.04528050528, + "min_y": 5205.640225636093, + "max_x": 2135.04528050528, + "max_y": 5206.685013080704, + "center": [ + 2135.04528050528, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.04528050528, + 5206.685013080704 + ], + [ + 2135.04528050528, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.323738673833, + "min_y": 5205.640225636093, + "max_x": 2135.323738673833, + "max_y": 5206.685013080704, + "center": [ + 2135.323738673833, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.323738673833, + 5206.685013080704 + ], + [ + 2135.323738673833, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.3520190246, + "min_y": 5205.640225636093, + "max_x": 2133.3520190246, + "max_y": 5206.685013080704, + "center": [ + 2133.3520190246, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.3520190246, + 5206.685013080704 + ], + [ + 2133.3520190246, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.073560856046, + "min_y": 5205.640225636093, + "max_x": 2133.073560856046, + "max_y": 5206.685013080704, + "center": [ + 2133.073560856046, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.073560856046, + 5206.685013080704 + ], + [ + 2133.073560856046, + 5205.640225636093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B97", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2138.240745187116, + "min_y": 5206.162619358399, + "max_x": 2139.127165787154, + "max_y": 5206.162619358399, + "center": [ + 2138.683955487135, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.240745187116, + 5206.162619358399 + ], + [ + 2139.127165787154, + 5206.162619358399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.352019024602, + "min_y": 5206.162619358399, + "max_x": 2135.04528050528, + "max_y": 5206.162619358399, + "center": [ + 2134.1986497649414, + 5206.162619358399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.04528050528, + 5206.162619358399 + ], + [ + 2133.352019024602, + 5206.162619358399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B99", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2136.30361738597, + "min_y": 5204.842930278106, + "max_x": 2136.30361738597, + "max_y": 5206.160951503764, + "center": [ + 2136.30361738597, + 5205.501940890936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.30361738597, + 5204.842930278106 + ], + [ + 2136.30361738597, + 5206.160951503764 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556B9A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2136.045645177424, + "min_y": 5203.6720072339385, + "max_x": 2136.561589594516, + "max_y": 5204.18795165103, + "center": [ + 2136.30361738597, + 5203.929979442484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.30361738597, + 5203.929979442484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5204.842930278106, + "max_x": 2136.706630761591, + "max_y": 5204.842930278106, + "center": [ + 2136.3036173859696, + 5204.842930278106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5204.842930278106 + ], + [ + 2136.706630761591, + 5204.842930278106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5203.017028606859, + "max_x": 2136.706630761591, + "max_y": 5203.017028606859, + "center": [ + 2136.3036173859696, + 5203.017028606859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5203.017028606859 + ], + [ + 2136.706630761591, + 5203.017028606859 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5203.256878800757, + "max_x": 2136.171096628904, + "max_y": 5203.70864731799, + "center": [ + 2136.0358503196258, + 5203.482763059374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.171096628904, + 5203.70864731799 + ], + [ + 2135.900604010348, + 5203.256878800757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5203.256878800757, + "max_x": 2136.706630761591, + "max_y": 5203.256878800757, + "center": [ + 2136.3036173859696, + 5203.256878800757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5203.256878800757 + ], + [ + 2136.706630761591, + 5203.256878800757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556B9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.436138143032, + "min_y": 5203.256878800757, + "max_x": 2136.706630761591, + "max_y": 5203.70864731799, + "center": [ + 2136.5713844523116, + 5203.482763059374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.706630761591, + 5203.256878800757 + ], + [ + 2136.436138143032, + 5203.70864731799 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5204.151311566967, + "max_x": 2136.171096628904, + "max_y": 5204.603080084206, + "center": [ + 2136.0358503196258, + 5204.377195825587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.171096628904, + 5204.151311566967 + ], + [ + 2135.900604010348, + 5204.603080084206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5204.603080084206, + "max_x": 2136.706630761591, + "max_y": 5204.603080084206, + "center": [ + 2136.3036173859696, + 5204.603080084206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5204.603080084206 + ], + [ + 2136.706630761591, + 5204.603080084206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.436138143032, + "min_y": 5204.151311566967, + "max_x": 2136.706630761591, + "max_y": 5204.603080084206, + "center": [ + 2136.5713844523116, + 5204.377195825587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.706630761591, + 5204.603080084206 + ], + [ + 2136.436138143032, + 5204.151311566967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2136.30361738597, + "min_y": 5202.35801799403, + "max_x": 2136.30361738597, + "max_y": 5203.017028606859, + "center": [ + 2136.30361738597, + 5202.687523300445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.30361738597, + 5202.35801799403 + ], + [ + 2136.30361738597, + 5203.017028606859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5201.805700996769, + "max_x": 2135.900604010348, + "max_y": 5202.461319042456, + "center": [ + 2135.900604010348, + 5202.133510019612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5202.461319042456 + ], + [ + 2135.900604010348, + 5201.805700996769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.706630761591, + "min_y": 5201.805700996769, + "max_x": 2136.706630761591, + "max_y": 5202.461319042456, + "center": [ + 2136.706630761591, + 5202.133510019612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.706630761591, + 5202.461319042456 + ], + [ + 2136.706630761591, + 5201.805700996769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.900604010348, + "min_y": 5201.805700996769, + "max_x": 2136.706630761591, + "max_y": 5201.805700996769, + "center": [ + 2136.3036173859696, + 5201.805700996769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.900604010348, + 5201.805700996769 + ], + [ + 2136.706630761591, + 5201.805700996769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2142.49705398231, + "min_y": 5206.160951503768, + "max_x": 2146.314738102153, + "max_y": 5206.160951503768, + "center": [ + 2144.4058960422317, + 5206.160951503768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.314738102153, + 5206.160951503768 + ], + [ + 2142.49705398231, + 5206.160951503768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.795213277788, + "min_y": 5205.658545030702, + "max_x": 2132.795213277788, + "max_y": 5206.666078469758, + "center": [ + 2132.795213277788, + 5206.1623117502295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.795213277788, + 5205.658545030702 + ], + [ + 2132.795213277788, + 5206.666078469758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.230502631236, + "min_y": 5205.658545030702, + "max_x": 2132.795213277788, + "max_y": 5205.996660803902, + "center": [ + 2132.512857954512, + 5205.827602917302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.230502631236, + 5205.996660803902 + ], + [ + 2132.795213277788, + 5205.658545030702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.112461673472, + "min_y": 5205.658545030702, + "max_x": 2131.112461673472, + "max_y": 5206.666078469758, + "center": [ + 2131.112461673472, + 5206.1623117502295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.112461673472, + 5205.658545030702 + ], + [ + 2131.112461673472, + 5206.666078469758 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.112461673472, + "min_y": 5205.658545030702, + "max_x": 2131.677172320026, + "max_y": 5205.996660803902, + "center": [ + 2131.394816996749, + 5205.827602917302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.677172320026, + 5205.996660803902 + ], + [ + 2131.112461673472, + 5205.658545030702 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2131.631372214949, + "min_y": 5205.839846489548, + "max_x": 2132.2763027363135, + "max_y": 5206.484777010913, + "center": [ + 2131.953837475631, + 5206.16231175023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.953837475631, + 5206.16231175023 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.073560856046, + "min_y": 5205.658852638874, + "max_x": 2133.073560856046, + "max_y": 5206.666386077923, + "center": [ + 2133.073560856046, + 5206.162619358398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.073560856046, + 5206.666386077923 + ], + [ + 2133.073560856046, + 5205.658852638874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.805950908442, + "min_y": 5205.658852638874, + "max_x": 2130.805950908442, + "max_y": 5206.666386077923, + "center": [ + 2130.805950908442, + 5206.162619358398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.805950908442, + 5206.666386077923 + ], + [ + 2130.805950908442, + 5205.658852638874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.230502631236, + "min_y": 5206.327962696562, + "max_x": 2132.795213277788, + "max_y": 5206.666078469758, + "center": [ + 2132.512857954512, + 5206.49702058316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.795213277788, + 5206.666078469758 + ], + [ + 2132.230502631236, + 5206.327962696562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.112461673472, + "min_y": 5206.327962696562, + "max_x": 2131.677172320026, + "max_y": 5206.666078469758, + "center": [ + 2131.394816996749, + 5206.49702058316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.112461673472, + 5206.666078469758 + ], + [ + 2131.677172320026, + 5206.327962696562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BB1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2137.476626779141, + "min_y": 5206.474532163628, + "max_x": 2138.240797057527, + "max_y": 5206.630615650387, + "center": [ + 2137.858711918334, + 5206.552573907007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.476626779141, + 5206.630615650387 + ], + [ + 2138.240797057527, + 5206.474532163628 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2137.476471167909, + "min_y": 5205.694877234696, + "max_x": 2138.240693316705, + "max_y": 5205.850706553167, + "center": [ + 2137.858582242307, + 5205.772791893931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.476471167909, + 5205.694877234696 + ], + [ + 2138.240693316705, + 5205.850706553167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2138.240693316705, + "min_y": 5205.850706553167, + "max_x": 2138.240797057527, + "max_y": 5206.474532163628, + "center": [ + 2138.240745187116, + 5206.162619358398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.240693316705, + 5205.850706553167 + ], + [ + 2138.240797057527, + 5206.474532163628 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2137.476471167909, + "min_y": 5205.694877234696, + "max_x": 2137.476626779141, + "max_y": 5206.630615650387, + "center": [ + 2137.476548973525, + 5206.162746442542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.476471167909, + 5205.694877234696 + ], + [ + 2137.476626779141, + 5206.630615650387 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2137.4764814057, + "min_y": 5205.756440219699, + "max_x": 2137.476616541354, + "max_y": 5206.569052665388, + "center": [ + 2137.476548973527, + 5206.162746442544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.476616541354, + 5206.569052665388 + ], + [ + 2137.4764814057, + 5205.756440219699 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5206.16231175023, + "max_x": 2130.805950908442, + "max_y": 5206.162659290329, + "center": [ + 2129.0261243894565, + 5206.16248552028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.805950908442, + 5206.16231175023 + ], + [ + 2127.246297870471, + 5206.162659290329 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.610726753031, + "min_y": 5216.124433747039, + "max_x": 2148.76681023979, + "max_y": 5216.888604025423, + "center": [ + 2148.6887684964104, + 5216.506518886231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.76681023979, + 5216.888604025423 + ], + [ + 2148.610726753031, + 5216.124433747039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.831071824098, + "min_y": 5216.124537487861, + "max_x": 2147.98690114257, + "max_y": 5216.888759636656, + "center": [ + 2147.908986483334, + 5216.506648562258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.831071824098, + 5216.888759636656 + ], + [ + 2147.98690114257, + 5216.124537487861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.98690114257, + "min_y": 5216.124433747039, + "max_x": 2148.610726753031, + "max_y": 5216.124537487861, + "center": [ + 2148.2988139478, + 5216.12448561745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.98690114257, + 5216.124537487861 + ], + [ + 2148.610726753031, + 5216.124433747039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.831071824098, + "min_y": 5216.888604025423, + "max_x": 2148.76681023979, + "max_y": 5216.888759636656, + "center": [ + 2148.298941031944, + 5216.888681831039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.831071824098, + 5216.888759636656 + ], + [ + 2148.76681023979, + 5216.888604025423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.892634809102, + "min_y": 5216.88861426321, + "max_x": 2148.705247254791, + "max_y": 5216.888749398865, + "center": [ + 2148.298941031947, + 5216.8886818310375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.705247254791, + 5216.88861426321 + ], + [ + 2147.892634809102, + 5216.888749398865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BBC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5216.888681831037, + "max_x": 2148.298941031947, + "max_y": 5221.842464716878, + "center": [ + 2148.298877489874, + 5219.365573273957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298941031947, + 5216.888681831037 + ], + [ + 2148.298813947801, + 5221.842464716878 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BBD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2148.298813947801, + "min_y": 5224.124841805932, + "max_x": 2148.298813947801, + "max_y": 5228.983951378362, + "center": [ + 2148.298813947801, + 5226.554396592147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947801, + 5224.124841805932 + ], + [ + 2148.298813947801, + 5228.983951378362 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BBE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2143.201244692776, + "min_y": 5220.593758773192, + "max_x": 2148.298813947801, + "max_y": 5220.593758773192, + "center": [ + 2145.7500293202884, + 5220.593758773192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947801, + 5220.593758773192 + ], + [ + 2143.201244692776, + 5220.593758773192 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.922897114518, + "min_y": 5220.089684445496, + "max_x": 2142.922897114518, + "max_y": 5221.097217884552, + "center": [ + 2142.922897114518, + 5220.593451165024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.922897114518, + 5220.089684445496 + ], + [ + 2142.922897114518, + 5221.097217884552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.358186467967, + "min_y": 5220.089684445496, + "max_x": 2142.922897114518, + "max_y": 5220.427800218696, + "center": [ + 2142.6405417912424, + 5220.258742332096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.358186467967, + 5220.427800218696 + ], + [ + 2142.922897114518, + 5220.089684445496 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.240145510202, + "min_y": 5220.089684445496, + "max_x": 2141.240145510202, + "max_y": 5221.097217884552, + "center": [ + 2141.240145510202, + 5220.593451165024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.240145510202, + 5220.089684445496 + ], + [ + 2141.240145510202, + 5221.097217884552 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.240145510202, + "min_y": 5220.089684445496, + "max_x": 2141.804856156756, + "max_y": 5220.427800218696, + "center": [ + 2141.522500833479, + 5220.258742332096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.804856156756, + 5220.427800218696 + ], + [ + 2141.240145510202, + 5220.089684445496 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2141.7590560516787, + "min_y": 5220.270985904342, + "max_x": 2142.4039865730433, + "max_y": 5220.915916425706, + "center": [ + 2142.081521312361, + 5220.593451165024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.081521312361, + 5220.593451165024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2143.201244692776, + "min_y": 5220.089992053668, + "max_x": 2143.201244692776, + "max_y": 5221.097525492716, + "center": [ + 2143.201244692776, + 5220.593758773191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.201244692776, + 5221.097525492716 + ], + [ + 2143.201244692776, + 5220.089992053668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.933634745172, + "min_y": 5220.089992053668, + "max_x": 2140.933634745172, + "max_y": 5221.097525492716, + "center": [ + 2140.933634745172, + 5220.593758773191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.933634745172, + 5221.097525492716 + ], + [ + 2140.933634745172, + 5220.089992053668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.358186467967, + "min_y": 5220.759102111355, + "max_x": 2142.922897114518, + "max_y": 5221.097217884552, + "center": [ + 2142.6405417912424, + 5220.928159997953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.922897114518, + 5221.097217884552 + ], + [ + 2142.358186467967, + 5220.759102111355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2141.240145510202, + "min_y": 5220.759102111355, + "max_x": 2141.804856156756, + "max_y": 5221.097217884552, + "center": [ + 2141.522500833479, + 5220.928159997953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2141.240145510202, + 5221.097217884552 + ], + [ + 2141.804856156756, + 5220.759102111355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BC8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2129.193047294254, + "min_y": 5220.593758773192, + "max_x": 2140.933634745172, + "max_y": 5220.593758773192, + "center": [ + 2135.0633410197133, + 5220.593758773192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.933634745172, + 5220.593758773192 + ], + [ + 2129.193047294254, + 5220.593758773192 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BC9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2117.602160224041, + "min_y": 5206.162295515326, + "max_x": 2127.246297870471, + "max_y": 5206.162659290329, + "center": [ + 2122.424229047256, + 5206.162477402828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5206.162659290329 + ], + [ + 2117.602160224041, + 5206.162295515326 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105601459773, + "min_y": 5210.186028981015, + "max_x": 2123.113134898824, + "max_y": 5210.186028981015, + "center": [ + 2122.609368179298, + 5210.186028981015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.113134898824, + 5210.186028981015 + ], + [ + 2122.105601459773, + 5210.186028981015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.775019125629, + "min_y": 5209.621318334461, + "max_x": 2123.113134898824, + "max_y": 5210.186028981015, + "center": [ + 2122.9440770122264, + 5209.903673657738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.775019125629, + 5209.621318334461 + ], + [ + 2123.113134898824, + 5210.186028981015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105601459773, + "min_y": 5208.503277376696, + "max_x": 2123.113134898824, + "max_y": 5208.503277376696, + "center": [ + 2122.609368179298, + 5208.503277376696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.113134898824, + 5208.503277376696 + ], + [ + 2122.105601459773, + 5208.503277376696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.775019125629, + "min_y": 5208.503277376696, + "max_x": 2123.113134898824, + "max_y": 5209.067988023249, + "center": [ + 2122.9440770122264, + 5208.785632699973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.775019125629, + 5209.067988023249 + ], + [ + 2123.113134898824, + 5208.503277376696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BCE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2122.2869029186168, + "min_y": 5209.022187918173, + "max_x": 2122.9318334399813, + "max_y": 5209.667118439537, + "center": [ + 2122.609368179299, + 5209.344653178855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.609368179299, + 5209.344653178855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105293851606, + "min_y": 5210.464376559265, + "max_x": 2123.112827290657, + "max_y": 5210.464376559265, + "center": [ + 2122.6090605711315, + 5210.464376559265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.105293851606, + 5210.464376559265 + ], + [ + 2123.112827290657, + 5210.464376559265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105293851606, + "min_y": 5208.196766611666, + "max_x": 2123.112827290657, + "max_y": 5208.196766611666, + "center": [ + 2122.6090605711315, + 5208.196766611666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.105293851606, + 5208.196766611666 + ], + [ + 2123.112827290657, + 5208.196766611666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105601459773, + "min_y": 5209.621318334461, + "max_x": 2122.44371723297, + "max_y": 5210.186028981015, + "center": [ + 2122.2746593463717, + 5209.903673657738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.105601459773, + 5210.186028981015 + ], + [ + 2122.44371723297, + 5209.621318334461 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.105601459773, + "min_y": 5208.503277376696, + "max_x": 2122.443717232968, + "max_y": 5209.067988023249, + "center": [ + 2122.2746593463708, + 5208.785632699973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.105601459773, + 5208.503277376696 + ], + [ + 2122.443717232968, + 5209.067988023249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BD3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2122.609060571132, + "min_y": 5206.162515971279, + "max_x": 2122.609060571132, + "max_y": 5208.196766611666, + "center": [ + 2122.609060571132, + 5207.179641291473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.609060571132, + 5208.196766611666 + ], + [ + 2122.609060571132, + 5206.162515971279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5206.162659290329, + "max_x": 2127.246297870471, + "max_y": 5208.196909930716, + "center": [ + 2127.246297870471, + 5207.179784610523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5206.162659290329 + ], + [ + 2127.246297870471, + 5208.196909930716 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5210.464519878314, + "max_x": 2127.246297870471, + "max_y": 5263.915367945859, + "center": [ + 2127.246297870471, + 5237.189943912086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5210.464519878314 + ], + [ + 2127.246297870471, + 5263.915367945859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2128.681149685131, + "min_y": 5264.387708905728, + "max_x": 2140.103939459144, + "max_y": 5265.507590256121, + "center": [ + 2134.3925445721375, + 5264.947649580925 + ] + }, + "raw_value": "P-10202-40A-F1A-n", + "clean_value": "P-10202-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2154.285591606377, + "min_y": 5238.653661240939, + "max_x": 2155.199208738456, + "max_y": 5238.653661240939, + "center": [ + 2154.7424001724166, + 5238.653661240939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2154.285591606377, + 5238.653661240939 + ], + [ + 2155.199208738456, + 5238.653661240939 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2131.13028372578, + "min_y": 5230.347012553631, + "max_x": 2142.553073499793, + "max_y": 5231.466893904025, + "center": [ + 2136.8416786127864, + 5230.906953228829 + ] + }, + "raw_value": "P-10204-25A-F1A-n", + "clean_value": "P-10204-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.782995349907, + "min_y": 5263.411293618167, + "max_x": 2170.782995349907, + "max_y": 5264.418827057218, + "center": [ + 2170.782995349907, + 5263.915060337693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.782995349907, + 5263.411293618167 + ], + [ + 2170.782995349907, + 5264.418827057218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.218284703353, + "min_y": 5263.411293618167, + "max_x": 2170.782995349907, + "max_y": 5263.749409391361, + "center": [ + 2170.50064002663, + 5263.580351504765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.218284703353, + 5263.749409391361 + ], + [ + 2170.782995349907, + 5263.411293618167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.100243745588, + "min_y": 5263.411293618167, + "max_x": 2169.100243745588, + "max_y": 5264.418827057218, + "center": [ + 2169.100243745588, + 5263.915060337693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.100243745588, + 5263.411293618167 + ], + [ + 2169.100243745588, + 5264.418827057218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.100243745588, + "min_y": 5263.411293618167, + "max_x": 2169.664954392143, + "max_y": 5263.749409391361, + "center": [ + 2169.3825990688656, + 5263.580351504765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.664954392143, + 5263.749409391361 + ], + [ + 2169.100243745588, + 5263.411293618167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2169.6191542870647, + "min_y": 5263.59259507701, + "max_x": 2170.2640848084293, + "max_y": 5264.237525598374, + "center": [ + 2169.941619547747, + 5263.915060337692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.941619547747, + 5263.915060337692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2171.061342928156, + "min_y": 5263.411601226334, + "max_x": 2171.061342928156, + "max_y": 5264.419134665384, + "center": [ + 2171.061342928156, + 5263.9153679458595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.061342928156, + 5264.419134665384 + ], + [ + 2171.061342928156, + 5263.411601226334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.793732980558, + "min_y": 5263.411601226334, + "max_x": 2168.793732980558, + "max_y": 5264.419134665384, + "center": [ + 2168.793732980558, + 5263.9153679458595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.793732980558, + 5264.419134665384 + ], + [ + 2168.793732980558, + 5263.411601226334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2170.218284703353, + "min_y": 5264.08071128402, + "max_x": 2170.782995349907, + "max_y": 5264.418827057218, + "center": [ + 2170.50064002663, + 5264.249769170619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.782995349907, + 5264.418827057218 + ], + [ + 2170.218284703353, + 5264.08071128402 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.100243745588, + "min_y": 5264.080711284024, + "max_x": 2169.664954392143, + "max_y": 5264.418827057218, + "center": [ + 2169.3825990688656, + 5264.249769170621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.100243745588, + 5264.418827057218 + ], + [ + 2169.664954392143, + 5264.080711284024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.89634158484, + "min_y": 5263.411293618167, + "max_x": 2174.89634158484, + "max_y": 5264.418827057218, + "center": [ + 2174.89634158484, + 5263.915060337693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.89634158484, + 5263.411293618167 + ], + [ + 2174.89634158484, + 5264.418827057218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.331630938286, + "min_y": 5263.411293618167, + "max_x": 2174.89634158484, + "max_y": 5263.749409391361, + "center": [ + 2174.613986261563, + 5263.580351504765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.331630938286, + 5263.749409391361 + ], + [ + 2174.89634158484, + 5263.411293618167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.213589980521, + "min_y": 5263.411293618167, + "max_x": 2173.213589980521, + "max_y": 5264.418827057218, + "center": [ + 2173.213589980521, + 5263.915060337693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.213589980521, + 5263.411293618167 + ], + [ + 2173.213589980521, + 5264.418827057218 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.213589980521, + "min_y": 5263.411293618167, + "max_x": 2173.778300627075, + "max_y": 5263.749409391361, + "center": [ + 2173.495945303798, + 5263.580351504765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.778300627075, + 5263.749409391361 + ], + [ + 2173.213589980521, + 5263.411293618167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2173.7325005219977, + "min_y": 5263.59259507701, + "max_x": 2174.3774310433623, + "max_y": 5264.237525598374, + "center": [ + 2174.05496578268, + 5263.915060337692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.05496578268, + 5263.915060337692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2175.174689163089, + "min_y": 5263.411601226334, + "max_x": 2175.174689163089, + "max_y": 5264.419134665384, + "center": [ + 2175.174689163089, + 5263.9153679458595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2175.174689163089, + 5264.419134665384 + ], + [ + 2175.174689163089, + 5263.411601226334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.90707921549, + "min_y": 5263.411601226334, + "max_x": 2172.90707921549, + "max_y": 5264.419134665384, + "center": [ + 2172.90707921549, + 5263.9153679458595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.90707921549, + 5264.419134665384 + ], + [ + 2172.90707921549, + 5263.411601226334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2174.331630938286, + "min_y": 5264.08071128402, + "max_x": 2174.89634158484, + "max_y": 5264.418827057218, + "center": [ + 2174.613986261563, + 5264.249769170619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2174.89634158484, + 5264.418827057218 + ], + [ + 2174.331630938286, + 5264.08071128402 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.213589980521, + "min_y": 5264.080711284024, + "max_x": 2173.778300627075, + "max_y": 5264.418827057218, + "center": [ + 2173.495945303798, + 5264.249769170621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.213589980521, + 5264.418827057218 + ], + [ + 2173.778300627075, + 5264.080711284024 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BEB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5263.915367945859, + "max_x": 2168.793732980558, + "max_y": 5263.915367945859, + "center": [ + 2148.0200154255144, + 5263.915367945859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.793732980558, + 5263.915367945859 + ], + [ + 2127.246297870471, + 5263.915367945859 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2205.02518215972, + "min_y": 5228.46743127202, + "max_x": 2205.025184242948, + "max_y": 5229.512218716632, + "center": [ + 2205.0251832013337, + 5228.989824994325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2205.025184242948, + 5229.512218716632 + ], + [ + 2205.02518215972, + 5228.46743127202 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2204.631584009371, + "min_y": 5228.486059059612, + "max_x": 2204.631586018318, + "max_y": 5229.493592498657, + "center": [ + 2204.6315850138444, + 5228.989825779134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2204.631586018318, + 5229.493592498657 + ], + [ + 2204.631584009371, + 5228.486059059612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BEE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2200.080505741449, + "min_y": 5228.989825779135, + "max_x": 2204.631585013845, + "max_y": 5228.989825779135, + "center": [ + 2202.356045377647, + 5228.989825779135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2200.080505741449, + 5228.989825779135 + ], + [ + 2204.631585013845, + 5228.989825779135 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BEF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2245.520975748908, + "min_y": 5304.278350505258, + "max_x": 2258.9595519536288, + "max_y": 5305.398231855651, + "center": [ + 2252.2402638512685, + 5304.838291180455 + ] + }, + "raw_value": "ST-10521-65A-S1A-H50", + "clean_value": "ST-10521-65A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.299681322348, + "min_y": 5295.290809747363, + "max_x": 2259.063851600733, + "max_y": 5295.446893234121, + "center": [ + 2258.6817664615405, + 5295.368851490742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.063851600733, + 5295.290809747363 + ], + [ + 2258.299681322348, + 5295.446893234121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.29978506317, + "min_y": 5296.070718844582, + "max_x": 2259.064007211966, + "max_y": 5296.226548163054, + "center": [ + 2258.681896137568, + 5296.148633503818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.064007211966, + 5296.226548163054 + ], + [ + 2258.29978506317, + 5296.070718844582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2258.299681322348, + "min_y": 5295.446893234121, + "max_x": 2258.29978506317, + "max_y": 5296.070718844582, + "center": [ + 2258.299733192759, + 5295.758806039352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2258.29978506317, + 5296.070718844582 + ], + [ + 2258.299681322348, + 5295.446893234121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.063851600733, + "min_y": 5295.290809747363, + "max_x": 2259.064007211966, + "max_y": 5296.226548163054, + "center": [ + 2259.0639294063494, + 5295.758678955208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.064007211966, + 5296.226548163054 + ], + [ + 2259.063851600733, + 5295.290809747363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.063861838521, + "min_y": 5295.352372732362, + "max_x": 2259.063996974175, + "max_y": 5296.164985178051, + "center": [ + 2259.063929406348, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.063861838521, + 5295.352372732362 + ], + [ + 2259.063996974175, + 5296.164985178051 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2259.063929406348, + "min_y": 5295.758678955206, + "max_x": 2259.741871128662, + "max_y": 5295.758678955206, + "center": [ + 2259.402900267505, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.063929406348, + 5295.758678955206 + ], + [ + 2259.741871128662, + 5295.758678955206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556BF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.209088586339, + "min_y": 5342.288827395567, + "max_x": 2353.502690752018, + "max_y": 5342.288827395567, + "center": [ + 2352.8558896691784, + 5342.288827395567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.502690752018, + 5342.288827395567 + ], + [ + 2352.209088586339, + 5342.288827395567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.209088586339, + "min_y": 5342.660040138241, + "max_x": 2353.502690752018, + "max_y": 5342.660040138241, + "center": [ + 2352.8558896691784, + 5342.660040138241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.502690752018, + 5342.660040138241 + ], + [ + 2352.209088586339, + 5342.660040138241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.207023534376, + "min_y": 5338.858830356308, + "max_x": 2353.500625700052, + "max_y": 5338.858830356308, + "center": [ + 2352.853824617214, + 5338.858830356308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.500625700052, + 5338.858830356308 + ], + [ + 2352.207023534376, + 5338.858830356308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BF9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.608824207047, + "min_y": 5341.7988352783095, + "max_x": 2353.0988250273836, + "max_y": 5342.288836098646, + "center": [ + 2352.853824617215, + 5342.043835688478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5342.043835688478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5341.308834457978, + "max_x": 2353.0988250273817, + "max_y": 5341.798835278311, + "center": [ + 2352.853824617215, + 5341.553834868145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5341.553834868145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5340.818833637648, + "max_x": 2353.0988250273817, + "max_y": 5341.308834457981, + "center": [ + 2352.853824617215, + 5341.063834047814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5341.063834047814 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070464, + "min_y": 5340.818833637643, + "max_x": 2353.098825027384, + "max_y": 5341.30883445798, + "center": [ + 2352.853824617215, + 5341.063834047812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5341.063834047812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5340.328832817307, + "max_x": 2353.0988250273817, + "max_y": 5340.81883363764, + "center": [ + 2352.853824617215, + 5340.573833227473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5340.573833227473 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.608824207046, + "min_y": 5339.83883199697, + "max_x": 2353.0988250273845, + "max_y": 5340.3288328173085, + "center": [ + 2352.853824617215, + 5340.083832407139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5340.083832407139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556BFF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5339.348831176637, + "max_x": 2353.0988250273817, + "max_y": 5339.83883199697, + "center": [ + 2352.853824617215, + 5339.593831586803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5339.593831586803 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C00", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2352.6088242070487, + "min_y": 5338.858830356306, + "max_x": 2353.0988250273817, + "max_y": 5339.348831176639, + "center": [ + 2352.853824617215, + 5339.103830766472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617215, + 5339.103830766472 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C01", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5348.396163256422, + "max_x": 2352.853824617213, + "max_y": 5348.396163256422, + "center": [ + 2350.3019693949254, + 5348.396163256422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617213, + 5348.396163256422 + ], + [ + 2347.750114172638, + 5348.396163256422 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5343.710359440562, + "max_x": 2348.320167953133, + "max_y": 5343.710359440562, + "center": [ + 2347.750114172638, + 5343.710359440562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.180060392143, + 5343.710359440562 + ], + [ + 2348.320167953133, + 5343.710359440562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.320167953133, + "min_y": 5343.710359440562, + "max_x": 2348.320167953133, + "max_y": 5344.336432379583, + "center": [ + 2348.320167953133, + 5344.023395910072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.320167953133, + 5344.336432379583 + ], + [ + 2348.320167953133, + 5343.710359440562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5343.710359440562, + "max_x": 2347.180060392143, + "max_y": 5344.336432379583, + "center": [ + 2347.180060392143, + 5344.023395910072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.180060392143, + 5344.336432379583 + ], + [ + 2347.180060392143, + 5343.710359440562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C05", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5351.294165407725, + "max_x": 2347.750114172638, + "max_y": 5351.771919068195, + "center": [ + 2347.750114172638, + 5351.533042237959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5351.294165407725 + ], + [ + 2347.750114172638, + 5351.771919068195 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5351.294165407725, + "max_x": 2347.750114172638, + "max_y": 5351.771919068195, + "center": [ + 2347.750114172638, + 5351.533042237959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5351.294165407725 + ], + [ + 2347.750114172638, + 5351.771919068195 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.93087811402, + "min_y": 5349.130723825948, + "max_x": 2348.299841534759, + "max_y": 5349.746955272082, + "center": [ + 2348.115359824389, + 5349.438839549015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5349.130723825948 + ], + [ + 2347.93087811402, + 5349.746955272082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5349.130723825948, + "max_x": 2348.299841534759, + "max_y": 5349.130723825948, + "center": [ + 2347.750114172638, + 5349.130723825948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.200386810517, + 5349.130723825948 + ], + [ + 2348.299841534759, + 5349.130723825948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5349.130723825948, + "max_x": 2347.569350231257, + "max_y": 5349.746955272082, + "center": [ + 2347.384868520887, + 5349.438839549015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.569350231257, + 5349.746955272082 + ], + [ + 2347.200386810517, + 5349.130723825948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.930878114023, + "min_y": 5350.350768109605, + "max_x": 2348.299841534759, + "max_y": 5350.966999555746, + "center": [ + 2348.115359824391, + 5350.658883832675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5350.966999555746 + ], + [ + 2347.930878114023, + 5350.350768109605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5350.966999555746, + "max_x": 2348.299841534759, + "max_y": 5350.966999555746, + "center": [ + 2347.750114172638, + 5350.966999555746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.200386810517, + 5350.966999555746 + ], + [ + 2348.299841534759, + 5350.966999555746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5350.350768109605, + "max_x": 2347.569350231254, + "max_y": 5350.966999555746, + "center": [ + 2347.3848685208854, + 5350.658883832675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.569350231254, + 5350.350768109605 + ], + [ + 2347.200386810517, + 5350.966999555746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.192398835585, + "min_y": 5351.294165407725, + "max_x": 2348.304189470393, + "max_y": 5351.294165407725, + "center": [ + 2347.748294152989, + 5351.294165407725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.192398835585, + 5351.294165407725 + ], + [ + 2348.304189470393, + 5351.294165407725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.192398835585, + "min_y": 5351.294165407725, + "max_x": 2348.304189470393, + "max_y": 5351.294165407725, + "center": [ + 2347.748294152989, + 5351.294165407725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.192398835585, + 5351.294165407725 + ], + [ + 2348.304189470393, + 5351.294165407725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.194218855236, + "min_y": 5348.803557973964, + "max_x": 2348.306009490041, + "max_y": 5348.803557973964, + "center": [ + 2347.750114172639, + 5348.803557973964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.194218855236, + 5348.803557973964 + ], + [ + 2348.306009490041, + 5348.803557973964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.194218855236, + "min_y": 5349.130723825948, + "max_x": 2348.306009490041, + "max_y": 5349.130723825948, + "center": [ + 2347.750114172639, + 5349.130723825948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.194218855236, + 5349.130723825948 + ], + [ + 2348.306009490041, + 5349.130723825948 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5348.803557973964, + "max_x": 2348.299841534759, + "max_y": 5348.803557973964, + "center": [ + 2347.750114172638, + 5348.803557973964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5348.803557973964 + ], + [ + 2347.200386810517, + 5348.803557973964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5351.294165407725, + "max_x": 2348.299841534759, + "max_y": 5351.294165407725, + "center": [ + 2347.750114172638, + 5351.294165407725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5351.294165407725 + ], + [ + 2347.200386810517, + 5351.294165407725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C13", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2347.3982291229513, + "min_y": 5349.69697664116, + "max_x": 2348.1019992223246, + "max_y": 5350.400746740534, + "center": [ + 2347.750114172638, + 5350.048861690847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5350.048861690847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5348.803557973964, + "max_x": 2348.320167953133, + "max_y": 5348.803557973964, + "center": [ + 2347.750114172638, + 5348.803557973964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.180060392143, + 5348.803557973964 + ], + [ + 2348.320167953133, + 5348.803557973964 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.93087811402, + "min_y": 5345.825326957104, + "max_x": 2348.299841534759, + "max_y": 5346.441558403238, + "center": [ + 2348.115359824389, + 5346.133442680171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5345.825326957104 + ], + [ + 2347.93087811402, + 5346.441558403238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5345.825326957104, + "max_x": 2348.299841534759, + "max_y": 5345.825326957104, + "center": [ + 2347.750114172638, + 5345.825326957104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.200386810517, + 5345.825326957104 + ], + [ + 2348.299841534759, + 5345.825326957104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5345.825326957104, + "max_x": 2347.569350231257, + "max_y": 5346.441558403238, + "center": [ + 2347.384868520887, + 5346.133442680171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.569350231257, + 5346.441558403238 + ], + [ + 2347.200386810517, + 5345.825326957104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.930878114023, + "min_y": 5347.045371240762, + "max_x": 2348.299841534759, + "max_y": 5347.661602686902, + "center": [ + 2348.115359824391, + 5347.3534869638315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5347.661602686902 + ], + [ + 2347.930878114023, + 5347.045371240762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5347.661602686902, + "max_x": 2348.299841534759, + "max_y": 5347.661602686902, + "center": [ + 2347.750114172638, + 5347.661602686902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.200386810517, + 5347.661602686902 + ], + [ + 2348.299841534759, + 5347.661602686902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5347.045371240762, + "max_x": 2347.569350231254, + "max_y": 5347.661602686902, + "center": [ + 2347.3848685208854, + 5347.3534869638315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.569350231254, + 5347.045371240762 + ], + [ + 2347.200386810517, + 5347.661602686902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.192398835585, + "min_y": 5347.988768538881, + "max_x": 2348.304189470393, + "max_y": 5347.988768538881, + "center": [ + 2347.748294152989, + 5347.988768538881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.192398835585, + 5347.988768538881 + ], + [ + 2348.304189470393, + 5347.988768538881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.192398835585, + "min_y": 5347.988768538881, + "max_x": 2348.304189470393, + "max_y": 5347.988768538881, + "center": [ + 2347.748294152989, + 5347.988768538881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.192398835585, + 5347.988768538881 + ], + [ + 2348.304189470393, + 5347.988768538881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.194218855236, + "min_y": 5345.49816110512, + "max_x": 2348.306009490041, + "max_y": 5345.49816110512, + "center": [ + 2347.750114172639, + 5345.49816110512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.194218855236, + 5345.49816110512 + ], + [ + 2348.306009490041, + 5345.49816110512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.194218855236, + "min_y": 5345.825326957104, + "max_x": 2348.306009490041, + "max_y": 5345.825326957104, + "center": [ + 2347.750114172639, + 5345.825326957104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.194218855236, + 5345.825326957104 + ], + [ + 2348.306009490041, + 5345.825326957104 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5345.49816110512, + "max_x": 2348.299841534759, + "max_y": 5345.49816110512, + "center": [ + 2347.750114172638, + 5345.49816110512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5345.49816110512 + ], + [ + 2347.200386810517, + 5345.49816110512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.200386810517, + "min_y": 5347.988768538881, + "max_x": 2348.299841534759, + "max_y": 5347.988768538881, + "center": [ + 2347.750114172638, + 5347.988768538881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.299841534759, + 5347.988768538881 + ], + [ + 2347.200386810517, + 5347.988768538881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C21", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2347.3982291229513, + "min_y": 5346.3915797723175, + "max_x": 2348.1019992223246, + "max_y": 5347.095349871691, + "center": [ + 2347.750114172638, + 5346.743464822004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5346.743464822004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.180060392143, + "min_y": 5345.49816110512, + "max_x": 2348.320167953133, + "max_y": 5345.49816110512, + "center": [ + 2347.750114172638, + 5345.49816110512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.180060392143, + 5345.49816110512 + ], + [ + 2348.320167953133, + 5345.49816110512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C23", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5347.988768538881, + "max_x": 2347.750114172638, + "max_y": 5348.803557973964, + "center": [ + 2347.750114172638, + 5348.396163256422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5347.988768538881 + ], + [ + 2347.750114172638, + 5348.803557973964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C24", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5347.988768538881, + "max_x": 2347.750114172638, + "max_y": 5348.803557973964, + "center": [ + 2347.750114172638, + 5348.396163256422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5347.988768538881 + ], + [ + 2347.750114172638, + 5348.803557973964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C25", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2347.750114172638, + "min_y": 5344.334287495703, + "max_x": 2347.750114172638, + "max_y": 5345.49816110512, + "center": [ + 2347.750114172638, + 5344.916224300412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172638, + 5344.334287495703 + ], + [ + 2347.750114172638, + 5345.49816110512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C26", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2345.576698079368, + "min_y": 5354.539064144488, + "max_x": 2349.4954108912107, + "max_y": 5355.845301748436, + "center": [ + 2347.5360544852892, + 5355.192182946463 + ] + }, + "raw_value": "10214", + "clean_value": "10214", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C27", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2346.68588974076, + "min_y": 5356.855529348928, + "max_x": 2348.2533748654973, + "max_y": 5358.161766952876, + "center": [ + 2347.4696323031285, + 5357.508648150902 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C28", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2344.8880497778096, + "min_y": 5353.358450426471, + "max_x": 2350.6121785674645, + "max_y": 5359.082579216127, + "center": [ + 2347.750114172637, + 5356.220514821299 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172637, + 5356.220514821299 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C29", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2342.537289238245, + "min_y": 5349.585366625579, + "max_x": 2349.9285061508417, + "max_y": 5350.705247975972, + "center": [ + 2346.2328976945437, + 5350.145307300776 + ] + }, + "raw_value": "P10214BA-06", + "clean_value": "P10214BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556C2A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2342.446632176546, + "min_y": 5346.383993901461, + "max_x": 2349.8378490891423, + "max_y": 5347.503875251854, + "center": [ + 2346.142240632844, + 5346.943934576657 + ] + }, + "raw_value": "P10214BA-07", + "clean_value": "P10214BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2347.750114172637, + "min_y": 5352.782620888874, + "max_x": 2347.750114172637, + "max_y": 5353.358450426472, + "center": [ + 2347.750114172637, + 5353.070535657673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172637, + 5352.782620888874 + ], + [ + 2347.750114172637, + 5353.358450426472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C2C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2345.087855000256, + "min_y": 5347.184087235515, + "max_x": 2350.4123733450183, + "max_y": 5352.5086055802785, + "center": [ + 2347.750114172637, + 5349.846346407897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.750114172637, + 5349.846346407897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2346.664649067416, + "min_y": 5352.782620888874, + "max_x": 2348.835579277861, + "max_y": 5352.782620888874, + "center": [ + 2347.750114172639, + 5352.782620888874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.664649067416, + 5352.782620888874 + ], + [ + 2348.835579277861, + 5352.782620888874 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.835579277861, + "min_y": 5351.771919068195, + "max_x": 2348.835579277861, + "max_y": 5352.782620888874, + "center": [ + 2348.835579277861, + 5352.277269978535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.835579277861, + 5352.782620888874 + ], + [ + 2348.835579277861, + 5351.771919068195 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2346.664649067416, + "min_y": 5351.771919068195, + "max_x": 2348.835579277861, + "max_y": 5351.771919068195, + "center": [ + 2347.750114172639, + 5351.771919068195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.835579277861, + 5351.771919068195 + ], + [ + 2346.664649067416, + 5351.771919068195 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2346.664649067416, + "min_y": 5351.771919068195, + "max_x": 2346.664649067416, + "max_y": 5352.782620888874, + "center": [ + 2346.664649067416, + 5352.277269978535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.664649067416, + 5351.771919068195 + ], + [ + 2346.664649067416, + 5352.782620888874 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556C31", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2352.853824617213, + "min_y": 5345.544685129445, + "max_x": 2352.853824617213, + "max_y": 5346.319678272306, + "center": [ + 2352.853824617213, + 5345.932181700875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853824617213, + 5345.544685129445 + ], + [ + 2352.853824617213, + 5346.319678272306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2353.291443002731, + "min_y": 5346.319644169044, + "max_x": 2353.510335749552, + "max_y": 5347.39180596869, + "center": [ + 2353.400889376141, + 5346.855725068867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.510335749552, + 5347.39180596869 + ], + [ + 2353.291443002731, + 5346.319644169044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.197480592998, + "min_y": 5346.319712375568, + "max_x": 2352.416206231694, + "max_y": 5347.391908278474, + "center": [ + 2352.306843412346, + 5346.855810327021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.197480592998, + 5347.391908278474 + ], + [ + 2352.416206231694, + 5346.319712375568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.416206231694, + "min_y": 5346.319644169044, + "max_x": 2353.291443002731, + "max_y": 5346.319712375568, + "center": [ + 2352.8538246172125, + 5346.319678272306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.416206231694, + 5346.319712375568 + ], + [ + 2353.291443002731, + 5346.319644169044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.197480592998, + "min_y": 5347.39180596869, + "max_x": 2353.510335749552, + "max_y": 5347.391908278474, + "center": [ + 2352.853908171275, + 5347.391857123583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.197480592998, + 5347.391908278474 + ], + [ + 2353.510335749552, + 5347.39180596869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.283854392514, + "min_y": 5347.391812699729, + "max_x": 2353.423961950045, + "max_y": 5347.391901547428, + "center": [ + 2352.8539081712797, + 5347.391857123578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.423961950045, + 5347.391812699729 + ], + [ + 2352.283854392514, + 5347.391901547428 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C37", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2356.219641123273, + "min_y": 5362.621854284062, + "max_x": 2356.219641123273, + "max_y": 5365.316229388894, + "center": [ + 2356.219641123273, + 5363.969041836477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.219641123273, + 5362.621854284062 + ], + [ + 2356.219641123273, + 5365.316229388894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C38", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2356.219641123273, + "min_y": 5367.806836822653, + "max_x": 2356.219641123273, + "max_y": 5376.949108772237, + "center": [ + 2356.219641123273, + 5372.377972797445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.219641123273, + 5367.806836822653 + ], + [ + 2356.219641123273, + 5376.949108772237 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.334369204152, + "min_y": 5335.634883794769, + "max_x": 2364.406531003798, + "max_y": 5335.85377654159, + "center": [ + 2363.870450103975, + 5335.74433016818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.406531003798, + 5335.634883794769 + ], + [ + 2363.334369204152, + 5335.85377654159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.334437410677, + "min_y": 5336.729013312627, + "max_x": 2364.406633313583, + "max_y": 5336.947738951322, + "center": [ + 2363.87053536213, + 5336.838376131975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.406633313583, + 5336.947738951322 + ], + [ + 2363.334437410677, + 5336.729013312627 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.334369204152, + "min_y": 5335.85377654159, + "max_x": 2363.334437410677, + "max_y": 5336.729013312627, + "center": [ + 2363.3344033074145, + 5336.291394927109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.334437410677, + 5336.729013312627 + ], + [ + 2363.334369204152, + 5335.85377654159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.406531003798, + "min_y": 5335.634883794769, + "max_x": 2364.406633313583, + "max_y": 5336.947738951322, + "center": [ + 2364.4065821586905, + 5336.291311373046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.406633313583, + 5336.947738951322 + ], + [ + 2364.406531003798, + 5335.634883794769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.406537734838, + "min_y": 5335.721257594276, + "max_x": 2364.406626582537, + "max_y": 5336.861365151806, + "center": [ + 2364.4065821586873, + 5336.291311373041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.406537734838, + 5335.721257594276 + ], + [ + 2364.406626582537, + 5336.861365151806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C3E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2372.345720523996, + "min_y": 5337.223298603166, + "max_x": 2383.768510298009, + "max_y": 5338.343179953559, + "center": [ + 2378.0571154110025, + 5337.783239278362 + ] + }, + "raw_value": "P-10229-40A-F2A-n", + "clean_value": "P-10229-40A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C3F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2311.690200955684, + "min_y": 5374.842513108749, + "max_x": 2313.504005586035, + "max_y": 5375.850182347833, + "center": [ + 2312.5971032708594, + 5375.346347728291 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C40", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5390.288964680365, + "max_x": 2312.522932874385, + "max_y": 5390.288964680374, + "center": [ + 2311.065807572309, + 5390.28896468037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5390.288964680374 + ], + [ + 2309.608682270233, + 5390.288964680365 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C41", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.608682270233, + "min_y": 5387.374714076219, + "max_x": 2309.608682270233, + "max_y": 5390.288964680365, + "center": [ + 2309.608682270233, + 5388.831839378292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.608682270233, + 5387.374714076219 + ], + [ + 2309.608682270233, + 5390.288964680365 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C42", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2312.522932874385, + "min_y": 5390.288964680365, + "max_x": 2315.43718347854, + "max_y": 5390.288964680374, + "center": [ + 2313.9800581764625, + 5390.28896468037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.522932874385, + 5390.288964680374 + ], + [ + 2315.43718347854, + 5390.288964680365 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C43", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2315.43718347854, + "min_y": 5387.374714076219, + "max_x": 2315.43718347854, + "max_y": 5390.288964680365, + "center": [ + 2315.43718347854, + 5388.831839378292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.43718347854, + 5387.374714076219 + ], + [ + 2315.43718347854, + 5390.288964680365 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556C44", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2364.45519352488, + "min_y": 5337.197144852559, + "max_x": 2369.1586951965323, + "max_y": 5338.317026202953, + "center": [ + 2366.8069443607064, + 5337.757085527755 + ] + }, + "raw_value": "25Ax40A", + "clean_value": "25Ax40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556C45", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.769051177602, + "min_y": 5345.701925233178, + "max_x": 2359.472552849254, + "max_y": 5346.821806583572, + "center": [ + 2357.120802013428, + 5346.261865908375 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556C46", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2387.359551255591, + "min_y": 5327.954186564598, + "max_x": 2388.568754342492, + "max_y": 5328.961855803682, + "center": [ + 2387.9641527990416, + 5328.45802118414 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C47", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2396.132245426874, + "min_y": 5317.883268384171, + "max_x": 2396.132245426874, + "max_y": 5324.968994762789, + "center": [ + 2396.132245426874, + 5321.42613157348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2396.132245426874, + 5317.883268384171 + ], + [ + 2396.132245426874, + 5324.968994762789 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C48", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2408.085284236478, + "min_y": 5316.370384761285, + "max_x": 2419.508074010491, + "max_y": 5317.4902661116785, + "center": [ + 2413.7966791234844, + 5316.930325436482 + ] + }, + "raw_value": "P-10235-15A-F1A-n", + "clean_value": "P-10235-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C49", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2406.288716646079, + "min_y": 5315.890675873323, + "max_x": 2426.814813876021, + "max_y": 5315.890675873323, + "center": [ + 2416.55176526105, + 5315.890675873323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.288716646079, + 5315.890675873323 + ], + [ + 2426.814813876021, + 5315.890675873323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C4A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2407.964337050636, + "min_y": 5325.426863266587, + "max_x": 2419.387126824649, + "max_y": 5326.5467446169805, + "center": [ + 2413.6757319376425, + 5325.986803941783 + ] + }, + "raw_value": "P-10234-15A-F1A-n", + "clean_value": "P-10234-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.646653237276, + "min_y": 5307.305720853106, + "max_x": 2479.646653237276, + "max_y": 5307.88124171368, + "center": [ + 2479.646653237276, + 5307.593481283393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.646653237276, + 5307.305720853106 + ], + [ + 2479.646653237276, + 5307.88124171368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C4C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2479.4286667210545, + "min_y": 5308.434698653559, + "max_x": 2479.8646397534976, + "max_y": 5308.870671686002, + "center": [ + 2479.646653237276, + 5308.652685169781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.646653237276, + 5308.652685169781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.293515080996, + "min_y": 5307.88124171368, + "max_x": 2479.999791393558, + "max_y": 5307.88124171368, + "center": [ + 2479.646653237277, + 5307.88124171368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.999791393558, + 5307.88124171368 + ], + [ + 2479.293515080996, + 5307.88124171368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.293515080996, + "min_y": 5309.424128625883, + "max_x": 2479.999791393558, + "max_y": 5309.424128625883, + "center": [ + 2479.646653237277, + 5309.424128625883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.999791393558, + 5309.424128625883 + ], + [ + 2479.293515080996, + 5309.424128625883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.306106934878, + "min_y": 5308.083915127524, + "max_x": 2479.534673197557, + "max_y": 5308.465659524589, + "center": [ + 2479.4203900662174, + 5308.274787326056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.534673197557, + 5308.465659524589 + ], + [ + 2479.306106934878, + 5308.083915127524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.306106934878, + "min_y": 5308.083915127524, + "max_x": 2479.987199539676, + "max_y": 5308.083915127524, + "center": [ + 2479.646653237277, + 5308.083915127524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.306106934878, + 5308.083915127524 + ], + [ + 2479.987199539676, + 5308.083915127524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.758633276994, + "min_y": 5308.083915127524, + "max_x": 2479.987199539676, + "max_y": 5308.465659524589, + "center": [ + 2479.872916408335, + 5308.274787326056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.987199539676, + 5308.083915127524 + ], + [ + 2479.758633276994, + 5308.465659524589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.306106934878, + "min_y": 5308.839710814974, + "max_x": 2479.534673197557, + "max_y": 5309.221455212042, + "center": [ + 2479.4203900662174, + 5309.030583013508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.534673197557, + 5308.839710814974 + ], + [ + 2479.306106934878, + 5309.221455212042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.306106934878, + "min_y": 5309.221455212042, + "max_x": 2479.987199539676, + "max_y": 5309.221455212042, + "center": [ + 2479.646653237277, + 5309.221455212042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.306106934878, + 5309.221455212042 + ], + [ + 2479.987199539676, + 5309.221455212042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.758633276994, + "min_y": 5308.839710814974, + "max_x": 2479.987199539676, + "max_y": 5309.221455212042, + "center": [ + 2479.872916408335, + 5309.030583013508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.987199539676, + 5309.221455212042 + ], + [ + 2479.758633276994, + 5308.839710814974 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.646653237276, + "min_y": 5295.303505964355, + "max_x": 2479.646653237276, + "max_y": 5307.305720853106, + "center": [ + 2479.646653237276, + 5301.304613408731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.646653237276, + 5307.305720853106 + ], + [ + 2479.646653237276, + 5295.303505964355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.801003720879, + "min_y": 5306.988808361861, + "max_x": 2478.801003720879, + "max_y": 5307.564329222435, + "center": [ + 2478.801003720879, + 5307.276568792147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.801003720879, + 5306.988808361861 + ], + [ + 2478.801003720879, + 5307.564329222435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C57", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2478.5830172046576, + "min_y": 5308.1177861623155, + "max_x": 2479.0189902371008, + "max_y": 5308.553759194759, + "center": [ + 2478.801003720879, + 5308.335772678537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.801003720879, + 5308.335772678537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.4478655646, + "min_y": 5307.564329222435, + "max_x": 2479.154141877161, + "max_y": 5307.564329222435, + "center": [ + 2478.8010037208805, + 5307.564329222435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.154141877161, + 5307.564329222435 + ], + [ + 2478.4478655646, + 5307.564329222435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.4478655646, + "min_y": 5309.107216134639, + "max_x": 2479.154141877161, + "max_y": 5309.107216134639, + "center": [ + 2478.8010037208805, + 5309.107216134639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.154141877161, + 5309.107216134639 + ], + [ + 2478.4478655646, + 5309.107216134639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.460457418482, + "min_y": 5307.76700263628, + "max_x": 2478.689023681161, + "max_y": 5308.148747033345, + "center": [ + 2478.5747405498214, + 5307.957874834812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.689023681161, + 5308.148747033345 + ], + [ + 2478.460457418482, + 5307.76700263628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.460457418482, + "min_y": 5307.76700263628, + "max_x": 2479.14155002328, + "max_y": 5307.76700263628, + "center": [ + 2478.801003720881, + 5307.76700263628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.460457418482, + 5307.76700263628 + ], + [ + 2479.14155002328, + 5307.76700263628 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.912983760598, + "min_y": 5307.76700263628, + "max_x": 2479.14155002328, + "max_y": 5308.148747033345, + "center": [ + 2479.027266891939, + 5307.957874834812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.14155002328, + 5307.76700263628 + ], + [ + 2478.912983760598, + 5308.148747033345 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.460457418482, + "min_y": 5308.522798323729, + "max_x": 2478.689023681161, + "max_y": 5308.904542720796, + "center": [ + 2478.5747405498214, + 5308.713670522262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.689023681161, + 5308.522798323729 + ], + [ + 2478.460457418482, + 5308.904542720796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.460457418482, + "min_y": 5308.904542720796, + "max_x": 2479.14155002328, + "max_y": 5308.904542720796, + "center": [ + 2478.801003720881, + 5308.904542720796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.460457418482, + 5308.904542720796 + ], + [ + 2479.14155002328, + 5308.904542720796 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.912983760598, + "min_y": 5308.522798323729, + "max_x": 2479.14155002328, + "max_y": 5308.904542720796, + "center": [ + 2479.027266891939, + 5308.713670522262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.14155002328, + 5308.904542720796 + ], + [ + 2478.912983760598, + 5308.522798323729 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.801003720879, + "min_y": 5295.303505964355, + "max_x": 2478.801003720879, + "max_y": 5306.988808361861, + "center": [ + 2478.801003720879, + 5301.146157163108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.801003720879, + 5306.988808361861 + ], + [ + 2478.801003720879, + 5295.303505964355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.956712673299, + "min_y": 5306.590738611658, + "max_x": 2477.956712673299, + "max_y": 5307.166259472232, + "center": [ + 2477.956712673299, + 5306.878499041944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.956712673299, + 5306.590738611658 + ], + [ + 2477.956712673299, + 5307.166259472232 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C62", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2477.7387261570775, + "min_y": 5307.719716412113, + "max_x": 2478.1746991895207, + "max_y": 5308.155689444556, + "center": [ + 2477.956712673299, + 5307.937702928334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.956712673299, + 5307.937702928334 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.603574517019, + "min_y": 5307.166259472232, + "max_x": 2478.30985082958, + "max_y": 5307.166259472232, + "center": [ + 2477.956712673299, + 5307.166259472232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.30985082958, + 5307.166259472232 + ], + [ + 2477.603574517019, + 5307.166259472232 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.603574517019, + "min_y": 5308.709146384435, + "max_x": 2478.30985082958, + "max_y": 5308.709146384435, + "center": [ + 2477.956712673299, + 5308.709146384435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.30985082958, + 5308.709146384435 + ], + [ + 2477.603574517019, + 5308.709146384435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.616166370901, + "min_y": 5307.368932886078, + "max_x": 2477.84473263358, + "max_y": 5307.750677283141, + "center": [ + 2477.7304495022404, + 5307.559805084609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.84473263358, + 5307.750677283141 + ], + [ + 2477.616166370901, + 5307.368932886078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.616166370901, + "min_y": 5307.368932886078, + "max_x": 2478.297258975699, + "max_y": 5307.368932886078, + "center": [ + 2477.9567126733, + 5307.368932886078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.616166370901, + 5307.368932886078 + ], + [ + 2478.297258975699, + 5307.368932886078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.068692713017, + "min_y": 5307.368932886078, + "max_x": 2478.297258975699, + "max_y": 5307.750677283141, + "center": [ + 2478.182975844358, + 5307.559805084609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.297258975699, + 5307.368932886078 + ], + [ + 2478.068692713017, + 5307.750677283141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.616166370901, + "min_y": 5308.124728573525, + "max_x": 2477.84473263358, + "max_y": 5308.506472970592, + "center": [ + 2477.7304495022404, + 5308.315600772059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.84473263358, + 5308.124728573525 + ], + [ + 2477.616166370901, + 5308.506472970592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.616166370901, + "min_y": 5308.506472970592, + "max_x": 2478.297258975699, + "max_y": 5308.506472970592, + "center": [ + 2477.9567126733, + 5308.506472970592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.616166370901, + 5308.506472970592 + ], + [ + 2478.297258975699, + 5308.506472970592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.068692713017, + "min_y": 5308.124728573525, + "max_x": 2478.297258975699, + "max_y": 5308.506472970592, + "center": [ + 2478.182975844358, + 5308.315600772059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.297258975699, + 5308.506472970592 + ], + [ + 2478.068692713017, + 5308.124728573525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.956712673299, + "min_y": 5295.303505964355, + "max_x": 2477.956712673299, + "max_y": 5306.590738611658, + "center": [ + 2477.956712673299, + 5300.9471222880065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.956712673299, + 5306.590738611658 + ], + [ + 2477.956712673299, + 5295.303505964355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C6C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2482.57423528915, + "min_y": 5289.20453494501, + "max_x": 2483.726880875652, + "max_y": 5289.20453494501, + "center": [ + 2483.150558082401, + 5289.20453494501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.57423528915, + 5289.20453494501 + ], + [ + 2483.726880875652, + 5289.20453494501 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.716143245002, + "min_y": 5288.700460617318, + "max_x": 2485.716143245002, + "max_y": 5289.70799405637, + "center": [ + 2485.716143245002, + 5289.204227336844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.716143245002, + 5288.700460617318 + ], + [ + 2485.716143245002, + 5289.70799405637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.151432598447, + "min_y": 5288.700460617318, + "max_x": 2485.716143245002, + "max_y": 5289.038576390513, + "center": [ + 2485.4337879217246, + 5288.869518503916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.151432598447, + 5289.038576390513 + ], + [ + 2485.716143245002, + 5288.700460617318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.033391640682, + "min_y": 5288.700460617318, + "max_x": 2484.033391640682, + "max_y": 5289.70799405637, + "center": [ + 2484.033391640682, + 5289.204227336844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.033391640682, + 5288.700460617318 + ], + [ + 2484.033391640682, + 5289.70799405637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.033391640682, + "min_y": 5288.700460617318, + "max_x": 2484.598102287236, + "max_y": 5289.038576390513, + "center": [ + 2484.315746963959, + 5288.869518503916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.598102287236, + 5289.038576390513 + ], + [ + 2484.033391640682, + 5288.700460617318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C71", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2484.5523021821596, + "min_y": 5288.881762076163, + "max_x": 2485.197232703524, + "max_y": 5289.5266925975275, + "center": [ + 2484.874767442842, + 5289.204227336845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.874767442842, + 5289.204227336845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.994490823251, + "min_y": 5288.700768225485, + "max_x": 2485.994490823251, + "max_y": 5289.708301664536, + "center": [ + 2485.994490823251, + 5289.204534945011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.994490823251, + 5289.708301664536 + ], + [ + 2485.994490823251, + 5288.700768225485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2483.726880875652, + "min_y": 5288.700768225485, + "max_x": 2483.726880875652, + "max_y": 5289.708301664536, + "center": [ + 2483.726880875652, + 5289.204534945011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.726880875652, + 5289.708301664536 + ], + [ + 2483.726880875652, + 5288.700768225485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.151432598447, + "min_y": 5289.369878283173, + "max_x": 2485.716143245002, + "max_y": 5289.70799405637, + "center": [ + 2485.4337879217246, + 5289.538936169772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.716143245002, + 5289.70799405637 + ], + [ + 2485.151432598447, + 5289.369878283173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.033391640682, + "min_y": 5289.369878283175, + "max_x": 2484.598102287236, + "max_y": 5289.70799405637, + "center": [ + 2484.315746963959, + 5289.538936169773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.033391640682, + 5289.70799405637 + ], + [ + 2484.598102287236, + 5289.369878283175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2482.295887710901, + "min_y": 5288.700460617318, + "max_x": 2482.295887710901, + "max_y": 5289.70799405637, + "center": [ + 2482.295887710901, + 5289.204227336844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.295887710901, + 5288.700460617318 + ], + [ + 2482.295887710901, + 5289.70799405637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.731177064346, + "min_y": 5288.700460617318, + "max_x": 2482.295887710901, + "max_y": 5289.038576390513, + "center": [ + 2482.0135323876234, + 5288.869518503916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.731177064346, + 5289.038576390513 + ], + [ + 2482.295887710901, + 5288.700460617318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.613136106581, + "min_y": 5288.700460617318, + "max_x": 2480.613136106581, + "max_y": 5289.70799405637, + "center": [ + 2480.613136106581, + 5289.204227336844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.613136106581, + 5288.700460617318 + ], + [ + 2480.613136106581, + 5289.70799405637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.613136106581, + "min_y": 5288.700460617318, + "max_x": 2481.177846753136, + "max_y": 5289.038576390513, + "center": [ + 2480.8954914298583, + 5288.869518503916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.177846753136, + 5289.038576390513 + ], + [ + 2480.613136106581, + 5288.700460617318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2481.132046648059, + "min_y": 5288.881762076163, + "max_x": 2481.7769771694234, + "max_y": 5289.5266925975275, + "center": [ + 2481.454511908741, + 5289.204227336845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.454511908741, + 5289.204227336845 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2482.57423528915, + "min_y": 5288.700768225485, + "max_x": 2482.57423528915, + "max_y": 5289.708301664536, + "center": [ + 2482.57423528915, + 5289.204534945011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.57423528915, + 5289.708301664536 + ], + [ + 2482.57423528915, + 5288.700768225485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.306625341551, + "min_y": 5288.700768225485, + "max_x": 2480.306625341551, + "max_y": 5289.708301664536, + "center": [ + 2480.306625341551, + 5289.204534945011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.306625341551, + 5289.708301664536 + ], + [ + 2480.306625341551, + 5288.700768225485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.731177064346, + "min_y": 5289.369878283173, + "max_x": 2482.295887710901, + "max_y": 5289.70799405637, + "center": [ + 2482.0135323876234, + 5289.538936169772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.295887710901, + 5289.70799405637 + ], + [ + 2481.731177064346, + 5289.369878283173 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.613136106581, + "min_y": 5289.369878283175, + "max_x": 2481.177846753136, + "max_y": 5289.70799405637, + "center": [ + 2480.8954914298583, + 5289.538936169773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.613136106581, + 5289.70799405637 + ], + [ + 2481.177846753136, + 5289.369878283175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C7F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2485.994490823251, + "min_y": 5289.20453494501, + "max_x": 2489.836095160468, + "max_y": 5289.20453494501, + "center": [ + 2487.9152929918596, + 5289.20453494501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.994490823251, + 5289.20453494501 + ], + [ + 2489.836095160468, + 5289.20453494501 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2483.1505580824, + "min_y": 5289.20453494501, + "max_x": 2483.1505580824, + "max_y": 5291.144279830561, + "center": [ + 2483.1505580824, + 5290.174407387785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.1505580824, + 5291.144279830561 + ], + [ + 2483.1505580824, + 5289.20453494501 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C81", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2483.761184394613, + "min_y": 5285.835613735245, + "max_x": 2495.183974168626, + "max_y": 5286.955495085638, + "center": [ + 2489.4725792816193, + 5286.395554410441 + ] + }, + "raw_value": "P-10236-40A-F1A-n", + "clean_value": "P-10236-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5334.392138020742, + "max_x": 2421.483664564889, + "max_y": 5334.392138020742, + "center": [ + 2411.614610945418, + 5334.392138020742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.745557325947, + 5334.392138020742 + ], + [ + 2421.483664564889, + 5334.392138020742 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5331.779081536491, + "max_x": 2421.483664564889, + "max_y": 5331.779081536491, + "center": [ + 2411.614610945418, + 5331.779081536491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.745557325947, + 5331.779081536491 + ], + [ + 2421.483664564889, + 5331.779081536491 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C84", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2406.51616604485, + "min_y": 5335.138725587672, + "max_x": 2415.475216847997, + "max_y": 5336.63190072153, + "center": [ + 2410.9956914464237, + 5335.8853131546 + ] + }, + "raw_value": "LIGHT ENDS", + "clean_value": "LIGHT ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C85", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2402.446816362026, + "min_y": 5332.525669103421, + "max_x": 2405.806460413206, + "max_y": 5333.645550453814, + "center": [ + 2404.126638387616, + 5333.085609778618 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C86", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.780436630467, + "min_y": 5332.525669103421, + "max_x": 2414.8277959225916, + "max_y": 5333.645550453814, + "center": [ + 2411.8041162765294, + 5333.085609778618 + ] + }, + "raw_value": "20~40%%DC", + "clean_value": "20~40%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C87", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2402.310830769479, + "min_y": 5329.912612619168, + "max_x": 2406.342403630895, + "max_y": 5331.032493969561, + "center": [ + 2404.326617200187, + 5330.472553294365 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C88", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2408.64445103792, + "min_y": 5329.912612619168, + "max_x": 2417.379525570989, + "max_y": 5331.032493969561, + "center": [ + 2413.0119883044545, + 5330.472553294365 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.884999476429, + "min_y": 5329.166025052239, + "max_x": 2407.884999476429, + "max_y": 5334.392138020742, + "center": [ + 2407.884999476429, + 5331.779081536491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.884999476429, + 5334.392138020742 + ], + [ + 2407.884999476429, + 5329.166025052239 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C8A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2401.745557325947, + "min_y": 5329.166025052239, + "max_x": 2421.483664564889, + "max_y": 5337.378488288458, + "center": [ + 2411.614610945418, + 5333.272256670349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.745557325947, + 5329.166025052239 + ], + [ + 2421.483664564889, + 5329.166025052239 + ], + [ + 2421.483664564889, + 5337.378488288458 + ], + [ + 2401.745557325947, + 5337.378488288458 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556C8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.450405975593, + "min_y": 5311.719186788064, + "max_x": 2401.549860699833, + "max_y": 5311.719186788064, + "center": [ + 2401.000133337713, + 5311.719186788064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.549860699833, + 5311.719186788064 + ], + [ + 2400.450405975593, + 5311.719186788064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.450405975593, + "min_y": 5312.021586465086, + "max_x": 2401.549860699833, + "max_y": 5312.021586465086, + "center": [ + 2401.000133337713, + 5312.021586465086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.549860699833, + 5312.021586465086 + ], + [ + 2400.450405975593, + 5312.021586465086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.56849547379, + "min_y": 5279.067619225584, + "max_x": 2306.640674328317, + "max_y": 5279.286428419003, + "center": [ + 2306.1045849010534, + 5279.177023822293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.56849547379, + 5279.286428419003 + ], + [ + 2306.640674328317, + 5279.067619225584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.56849547379, + "min_y": 5277.973573258464, + "max_x": 2306.640674328317, + "max_y": 5278.19238245189, + "center": [ + 2306.1045849010534, + 5278.082977855177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.56849547379, + 5277.973573258464 + ], + [ + 2306.640674328317, + 5278.19238245189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2306.640674328317, + "min_y": 5278.19238245189, + "max_x": 2306.640674328317, + "max_y": 5279.067619225584, + "center": [ + 2306.640674328317, + 5278.630000838737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2306.640674328317, + 5278.19238245189 + ], + [ + 2306.640674328317, + 5279.067619225584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.56849547379, + "min_y": 5277.973573258464, + "max_x": 2305.56849547379, + "max_y": 5279.286428419003, + "center": [ + 2305.56849547379, + 5278.630000838733 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.56849547379, + 5277.973573258464 + ], + [ + 2305.56849547379, + 5279.286428419003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471452, + "min_y": 5285.796026835269, + "max_x": 2316.988521638754, + "max_y": 5285.796026835269, + "center": [ + 2316.353252055103, + 5285.796026835269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.988521638754, + 5285.796026835269 + ], + [ + 2315.717982471452, + 5285.796026835269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471455, + "min_y": 5287.879523464996, + "max_x": 2316.965458640372, + "max_y": 5287.879523464996, + "center": [ + 2316.3417205559135, + 5287.879523464996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.965458640372, + 5287.879523464996 + ], + [ + 2315.717982471455, + 5287.879523464996 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471455, + "min_y": 5285.796026835269, + "max_x": 2316.965458640378, + "max_y": 5285.796026835269, + "center": [ + 2316.3417205559163, + 5285.796026835269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.965458640378, + 5285.796026835269 + ], + [ + 2315.717982471455, + 5285.796026835269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471452, + "min_y": 5285.796026835269, + "max_x": 2316.965458640372, + "max_y": 5287.879523464996, + "center": [ + 2316.341720555912, + 5286.837775150132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.717982471452, + 5285.796026835269 + ], + [ + 2316.965458640372, + 5287.879523464996 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.71798247145, + "min_y": 5285.424814092586, + "max_x": 2316.988521638754, + "max_y": 5285.424814092586, + "center": [ + 2316.3532520551016, + 5285.424814092586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.988521638754, + 5285.424814092586 + ], + [ + 2315.71798247145, + 5285.424814092586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471452, + "min_y": 5285.424814092586, + "max_x": 2316.965458640375, + "max_y": 5285.424814092586, + "center": [ + 2316.3417205559135, + 5285.424814092586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.965458640375, + 5285.424814092586 + ], + [ + 2315.717982471452, + 5285.424814092586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.71798247145, + "min_y": 5288.309459083789, + "max_x": 2316.988521638754, + "max_y": 5288.309459083789, + "center": [ + 2316.3532520551016, + 5288.309459083789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.988521638754, + 5288.309459083789 + ], + [ + 2315.71798247145, + 5288.309459083789 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.717982471452, + "min_y": 5281.252391567977, + "max_x": 2316.988521638754, + "max_y": 5281.252391567977, + "center": [ + 2316.353252055103, + 5281.252391567977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.988521638754, + 5281.252391567977 + ], + [ + 2315.717982471452, + 5281.252391567977 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.708516024228, + "min_y": 5285.05360134991, + "max_x": 2317.002118189907, + "max_y": 5285.05360134991, + "center": [ + 2316.3553171070675, + 5285.05360134991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.002118189907, + 5285.05360134991 + ], + [ + 2315.708516024228, + 5285.05360134991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.708516024228, + "min_y": 5285.424814092586, + "max_x": 2317.002118189907, + "max_y": 5285.424814092586, + "center": [ + 2316.3553171070675, + 5285.424814092586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.002118189907, + 5285.424814092586 + ], + [ + 2315.708516024228, + 5285.424814092586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.706450972266, + "min_y": 5281.623604310652, + "max_x": 2317.000053137942, + "max_y": 5281.623604310652, + "center": [ + 2316.353252055104, + 5281.623604310652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.000053137942, + 5281.623604310652 + ], + [ + 2315.706450972266, + 5281.623604310652 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449346, + "min_y": 5284.563609232655, + "max_x": 2316.5982524652713, + "max_y": 5285.053610052992, + "center": [ + 2316.353252055103, + 5284.808609642823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5284.808609642823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5284.073608412324, + "max_x": 2316.5982524652695, + "max_y": 5284.563609232657, + "center": [ + 2316.353252055103, + 5284.31860882249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5284.31860882249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556C9F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5283.5836075919915, + "max_x": 2316.5982524652695, + "max_y": 5284.073608412325, + "center": [ + 2316.353252055103, + 5283.828608002158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5283.828608002158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.108251644934, + "min_y": 5283.583607591988, + "max_x": 2316.598252465272, + "max_y": 5284.073608412325, + "center": [ + 2316.353252055103, + 5283.828608002156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5283.828608002156 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5283.093606771651, + "max_x": 2316.5982524652695, + "max_y": 5283.583607591984, + "center": [ + 2316.353252055103, + 5283.338607181818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5283.338607181818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449337, + "min_y": 5282.603605951314, + "max_x": 2316.5982524652723, + "max_y": 5283.093606771653, + "center": [ + 2316.353252055103, + 5282.848606361484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5282.848606361484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5282.113605130981, + "max_x": 2316.5982524652695, + "max_y": 5282.603605951314, + "center": [ + 2316.353252055103, + 5282.358605541148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5282.358605541148 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2316.1082516449364, + "min_y": 5281.623604310649, + "max_x": 2316.5982524652695, + "max_y": 5282.113605130982, + "center": [ + 2316.353252055103, + 5281.868604720816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055103, + 5281.868604720816 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.353252055102, + "min_y": 5288.309459083789, + "max_x": 2316.353252055102, + "max_y": 5289.084452226649, + "center": [ + 2316.353252055102, + 5288.696955655219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.353252055102, + 5288.309459083789 + ], + [ + 2316.353252055102, + 5289.084452226649 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.790870440621, + "min_y": 5289.084418123388, + "max_x": 2317.009763187442, + "max_y": 5290.156579923034, + "center": [ + 2316.9003168140316, + 5289.620499023211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.009763187442, + 5290.156579923034 + ], + [ + 2316.790870440621, + 5289.084418123388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.696908030887, + "min_y": 5289.084486329913, + "max_x": 2315.915633669584, + "max_y": 5290.156682232818, + "center": [ + 2315.8062708502357, + 5289.620584281365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.696908030887, + 5290.156682232818 + ], + [ + 2315.915633669584, + 5289.084486329913 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.915633669584, + "min_y": 5289.084418123388, + "max_x": 2316.790870440621, + "max_y": 5289.084486329913, + "center": [ + 2316.3532520551025, + 5289.084452226651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.915633669584, + 5289.084486329913 + ], + [ + 2316.790870440621, + 5289.084418123388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.696908030887, + "min_y": 5290.156579923034, + "max_x": 2317.009763187442, + "max_y": 5290.156682232818, + "center": [ + 2316.3533356091643, + 5290.156631077925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.696908030887, + 5290.156682232818 + ], + [ + 2317.009763187442, + 5290.156579923034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.783281830404, + "min_y": 5290.156586654074, + "max_x": 2316.923389387933, + "max_y": 5290.156675501773, + "center": [ + 2316.3533356091684, + 5290.1566310779235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.923389387933, + 5290.156586654074 + ], + [ + 2315.783281830404, + 5290.156675501773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5286.693346501982, + "max_x": 2320.652443093926, + "max_y": 5286.693346501982, + "center": [ + 2320.082389313431, + 5286.693346501982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.512335532936, + 5286.693346501982 + ], + [ + 2320.652443093926, + 5286.693346501982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.652443093926, + "min_y": 5286.693346501982, + "max_x": 2320.652443093926, + "max_y": 5287.319419441003, + "center": [ + 2320.652443093926, + 5287.006382971493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.652443093926, + 5287.319419441003 + ], + [ + 2320.652443093926, + 5286.693346501982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5286.693346501982, + "max_x": 2319.512335532936, + "max_y": 5287.319419441003, + "center": [ + 2319.512335532936, + 5287.006382971493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.512335532936, + 5287.319419441003 + ], + [ + 2319.512335532936, + 5286.693346501982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CAE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2316.350646098032, + "min_y": 5291.379150317843, + "max_x": 2320.082389313431, + "max_y": 5291.379441129698, + "center": [ + 2318.2165177057313, + 5291.37929572377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5291.379150317843 + ], + [ + 2316.350646098032, + 5291.379441129698 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.082389313431, + "min_y": 5294.277152469145, + "max_x": 2320.082389313431, + "max_y": 5294.754906129615, + "center": [ + 2320.082389313431, + 5294.5160292993805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5294.277152469145 + ], + [ + 2320.082389313431, + 5294.754906129615 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.082389313431, + "min_y": 5294.277152469145, + "max_x": 2320.082389313431, + "max_y": 5294.754906129615, + "center": [ + 2320.082389313431, + 5294.5160292993805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5294.277152469145 + ], + [ + 2320.082389313431, + 5294.754906129615 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556CB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.263153254813, + "min_y": 5292.113710887368, + "max_x": 2320.632116675552, + "max_y": 5292.729942333504, + "center": [ + 2320.4476349651823, + 5292.421826610436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5292.113710887368 + ], + [ + 2320.263153254813, + 5292.729942333504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5292.113710887368, + "max_x": 2320.632116675552, + "max_y": 5292.113710887368, + "center": [ + 2320.08238931343, + 5292.113710887368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.532661951309, + 5292.113710887368 + ], + [ + 2320.632116675552, + 5292.113710887368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5292.113710887368, + "max_x": 2319.901625372049, + "max_y": 5292.729942333504, + "center": [ + 2319.717143661679, + 5292.421826610436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.901625372049, + 5292.729942333504 + ], + [ + 2319.532661951309, + 5292.113710887368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.263153254815, + "min_y": 5293.333755171026, + "max_x": 2320.632116675552, + "max_y": 5293.949986617167, + "center": [ + 2320.447634965183, + 5293.641870894096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5293.949986617167 + ], + [ + 2320.263153254815, + 5293.333755171026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5293.949986617167, + "max_x": 2320.632116675552, + "max_y": 5293.949986617167, + "center": [ + 2320.08238931343, + 5293.949986617167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.532661951309, + 5293.949986617167 + ], + [ + 2320.632116675552, + 5293.949986617167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5293.333755171026, + "max_x": 2319.901625372046, + "max_y": 5293.949986617167, + "center": [ + 2319.7171436616773, + 5293.641870894096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.901625372046, + 5293.333755171026 + ], + [ + 2319.532661951309, + 5293.949986617167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.524673976378, + "min_y": 5294.277152469145, + "max_x": 2320.636464611186, + "max_y": 5294.277152469145, + "center": [ + 2320.080569293782, + 5294.277152469145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.524673976378, + 5294.277152469145 + ], + [ + 2320.636464611186, + 5294.277152469145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.524673976378, + "min_y": 5294.277152469145, + "max_x": 2320.636464611186, + "max_y": 5294.277152469145, + "center": [ + 2320.080569293782, + 5294.277152469145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.524673976378, + 5294.277152469145 + ], + [ + 2320.636464611186, + 5294.277152469145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.526493996029, + "min_y": 5291.786545035385, + "max_x": 2320.638284630833, + "max_y": 5291.786545035385, + "center": [ + 2320.082389313431, + 5291.786545035385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.526493996029, + 5291.786545035385 + ], + [ + 2320.638284630833, + 5291.786545035385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.526493996029, + "min_y": 5292.113710887368, + "max_x": 2320.638284630833, + "max_y": 5292.113710887368, + "center": [ + 2320.082389313431, + 5292.113710887368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.526493996029, + 5292.113710887368 + ], + [ + 2320.638284630833, + 5292.113710887368 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5291.786545035385, + "max_x": 2320.632116675552, + "max_y": 5291.786545035385, + "center": [ + 2320.08238931343, + 5291.786545035385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5291.786545035385 + ], + [ + 2319.532661951309, + 5291.786545035385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5294.277152469145, + "max_x": 2320.632116675552, + "max_y": 5294.277152469145, + "center": [ + 2320.08238931343, + 5294.277152469145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5294.277152469145 + ], + [ + 2319.532661951309, + 5294.277152469145 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2319.7305042637445, + "min_y": 5292.679963702581, + "max_x": 2320.4342743631178, + "max_y": 5293.383733801954, + "center": [ + 2320.082389313431, + 5293.031848752267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5293.031848752267 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5291.786545035385, + "max_x": 2320.652443093926, + "max_y": 5291.786545035385, + "center": [ + 2320.082389313431, + 5291.786545035385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.512335532936, + 5291.786545035385 + ], + [ + 2320.652443093926, + 5291.786545035385 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.263153254813, + "min_y": 5288.808314018524, + "max_x": 2320.632116675552, + "max_y": 5289.42454546466, + "center": [ + 2320.4476349651823, + 5289.116429741592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5288.808314018524 + ], + [ + 2320.263153254813, + 5289.42454546466 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5288.808314018524, + "max_x": 2320.632116675552, + "max_y": 5288.808314018524, + "center": [ + 2320.08238931343, + 5288.808314018524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.532661951309, + 5288.808314018524 + ], + [ + 2320.632116675552, + 5288.808314018524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5288.808314018524, + "max_x": 2319.901625372049, + "max_y": 5289.42454546466, + "center": [ + 2319.717143661679, + 5289.116429741592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.901625372049, + 5289.42454546466 + ], + [ + 2319.532661951309, + 5288.808314018524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2320.263153254815, + "min_y": 5290.028358302182, + "max_x": 2320.632116675552, + "max_y": 5290.644589748324, + "center": [ + 2320.447634965183, + 5290.336474025253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5290.644589748324 + ], + [ + 2320.263153254815, + 5290.028358302182 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5290.644589748324, + "max_x": 2320.632116675552, + "max_y": 5290.644589748324, + "center": [ + 2320.08238931343, + 5290.644589748324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.532661951309, + 5290.644589748324 + ], + [ + 2320.632116675552, + 5290.644589748324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5290.028358302182, + "max_x": 2319.901625372046, + "max_y": 5290.644589748324, + "center": [ + 2319.7171436616773, + 5290.336474025253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.901625372046, + 5290.028358302182 + ], + [ + 2319.532661951309, + 5290.644589748324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.524673976378, + "min_y": 5290.971755600302, + "max_x": 2320.636464611186, + "max_y": 5290.971755600302, + "center": [ + 2320.080569293782, + 5290.971755600302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.524673976378, + 5290.971755600302 + ], + [ + 2320.636464611186, + 5290.971755600302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.524673976378, + "min_y": 5290.971755600302, + "max_x": 2320.636464611186, + "max_y": 5290.971755600302, + "center": [ + 2320.080569293782, + 5290.971755600302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.524673976378, + 5290.971755600302 + ], + [ + 2320.636464611186, + 5290.971755600302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.526493996029, + "min_y": 5288.481148166541, + "max_x": 2320.638284630833, + "max_y": 5288.481148166541, + "center": [ + 2320.082389313431, + 5288.481148166541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.526493996029, + 5288.481148166541 + ], + [ + 2320.638284630833, + 5288.481148166541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.526493996029, + "min_y": 5288.808314018524, + "max_x": 2320.638284630833, + "max_y": 5288.808314018524, + "center": [ + 2320.082389313431, + 5288.808314018524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.526493996029, + 5288.808314018524 + ], + [ + 2320.638284630833, + 5288.808314018524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5288.481148166541, + "max_x": 2320.632116675552, + "max_y": 5288.481148166541, + "center": [ + 2320.08238931343, + 5288.481148166541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5288.481148166541 + ], + [ + 2319.532661951309, + 5288.481148166541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.532661951309, + "min_y": 5290.971755600302, + "max_x": 2320.632116675552, + "max_y": 5290.971755600302, + "center": [ + 2320.08238931343, + 5290.971755600302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.632116675552, + 5290.971755600302 + ], + [ + 2319.532661951309, + 5290.971755600302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CCB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2319.7305042637445, + "min_y": 5289.374566833736, + "max_x": 2320.4342743631178, + "max_y": 5290.078336933109, + "center": [ + 2320.082389313431, + 5289.726451883423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5289.726451883423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.512335532936, + "min_y": 5288.481148166541, + "max_x": 2320.652443093926, + "max_y": 5288.481148166541, + "center": [ + 2320.082389313431, + 5288.481148166541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.512335532936, + 5288.481148166541 + ], + [ + 2320.652443093926, + 5288.481148166541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CCD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.082389313431, + "min_y": 5290.971755600302, + "max_x": 2320.082389313431, + "max_y": 5291.786545035385, + "center": [ + 2320.082389313431, + 5291.379150317844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5290.971755600302 + ], + [ + 2320.082389313431, + 5291.786545035385 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CCE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.082389313431, + "min_y": 5290.971755600302, + "max_x": 2320.082389313431, + "max_y": 5291.786545035385, + "center": [ + 2320.082389313431, + 5291.379150317844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5290.971755600302 + ], + [ + 2320.082389313431, + 5291.786545035385 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CCF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.082389313431, + "min_y": 5287.317274557124, + "max_x": 2320.082389313431, + "max_y": 5288.481148166541, + "center": [ + 2320.082389313431, + 5287.899211361832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5287.317274557124 + ], + [ + 2320.082389313431, + 5288.481148166541 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CD0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2317.908973220163, + "min_y": 5295.935519847631, + "max_x": 2321.8276860320057, + "max_y": 5297.241757451579, + "center": [ + 2319.8683296260842, + 5296.588638649606 + ] + }, + "raw_value": "10218", + "clean_value": "10218", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556CD1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2319.018164881555, + "min_y": 5298.25198505207, + "max_x": 2320.5856500062923, + "max_y": 5299.558222656018, + "center": [ + 2319.8019074439235, + 5298.905103854044 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556CD2", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2317.2203249186036, + "min_y": 5294.754906129614, + "max_x": 2322.9444537082586, + "max_y": 5300.47903491927, + "center": [ + 2320.082389313431, + 5297.616970524442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.082389313431, + 5297.616970524442 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556CD3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2320.849730483419, + "min_y": 5292.930980848222, + "max_x": 2328.2409473960156, + "max_y": 5294.0508621986155, + "center": [ + 2324.545338939717, + 5293.490921523418 + ] + }, + "raw_value": "P10218BA-05", + "clean_value": "P10218BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556CD4", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2320.75907342172, + "min_y": 5289.375588264247, + "max_x": 2328.1502903343167, + "max_y": 5290.495469614641, + "center": [ + 2324.454681878018, + 5289.935528939444 + ] + }, + "raw_value": "P10218BA-06", + "clean_value": "P10218BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556CD5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2315.495632167686, + "min_y": 5294.825000998326, + "max_x": 2322.8868490802824, + "max_y": 5295.944882348719, + "center": [ + 2319.1912406239844, + 5295.384941673523 + ] + }, + "raw_value": "P10218BA-03", + "clean_value": "P10218BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556CD6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2319.813919019768, + "min_y": 5306.526522907869, + "max_x": 2321.137042779239, + "max_y": 5306.526522907869, + "center": [ + 2320.4754808995035, + 5306.526522907869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.813919019768, + 5306.526522907869 + ], + [ + 2321.137042779239, + 5306.526522907869 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CD7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2327.827662764236, + "min_y": 5306.526893584419, + "max_x": 2329.132511630165, + "max_y": 5306.529567031826, + "center": [ + 2328.4800871972, + 5306.528230308122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.827662764236, + 5306.529567031826 + ], + [ + 2329.132511630165, + 5306.526893584419 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CD8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2331.827588430652, + "min_y": 5306.515994769863, + "max_x": 2334.451975098876, + "max_y": 5306.521371760192, + "center": [ + 2333.139781764764, + 5306.518683265027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.827588430652, + 5306.521371760192 + ], + [ + 2334.451975098876, + 5306.515994769863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CD9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2343.3700446572857, + "min_y": 5312.596760246912, + "max_x": 2349.0941734469407, + "max_y": 5318.320889036568, + "center": [ + 2346.232109052113, + 5315.45882464174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.232109052113, + 5315.45882464174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556CDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2340.89142270358, + "min_y": 5308.562615029493, + "max_x": 2344.087050472124, + "max_y": 5313.564059144756, + "center": [ + 2342.489236587852, + 5311.063337087125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2344.087050472124, + 5313.564059144756 + ], + [ + 2340.89142270358, + 5308.562615029493 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556CDB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2346.035881147559, + "min_y": 5300.607825223401, + "max_x": 2346.035881147559, + "max_y": 5306.516104783665, + "center": [ + 2346.035881147559, + 5303.561965003533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2346.035881147559, + 5306.516104783665 + ], + [ + 2346.035881147559, + 5300.607825223401 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CDC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2338.018661883057, + "min_y": 5309.034625581006, + "max_x": 2339.227864969958, + "max_y": 5310.04229482009, + "center": [ + 2338.6232634265075, + 5309.538460200549 + ] + }, + "raw_value": "FC", + "clean_value": "FC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CDD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2345.324071075179, + "min_y": 5306.529677045626, + "max_x": 2347.857565903403, + "max_y": 5306.529677045626, + "center": [ + 2346.590818489291, + 5306.529677045626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2347.857565903403, + 5306.529677045626 + ], + [ + 2345.324071075179, + 5306.529677045626 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CDE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2369.644285597022, + "min_y": 5272.259249149908, + "max_x": 2381.067075371035, + "max_y": 5273.3791305003015, + "center": [ + 2375.3556804840287, + 5272.819189825104 + ] + }, + "raw_value": "P-10222-25A-F2A-n", + "clean_value": "P-10222-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.507708857505, + "min_y": 5265.287753325748, + "max_x": 2353.515242296555, + "max_y": 5265.287753325748, + "center": [ + 2353.01147557703, + 5265.287753325748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.515242296555, + 5265.287753325748 + ], + [ + 2352.507708857505, + 5265.287753325748 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.507401249338, + "min_y": 5264.981242560718, + "max_x": 2353.514934688389, + "max_y": 5264.981242560718, + "center": [ + 2353.0111679688634, + 5264.981242560718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.507401249338, + 5264.981242560718 + ], + [ + 2353.514934688389, + 5264.981242560718 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2413.51618956434, + "min_y": 5240.489657004085, + "max_x": 2413.51618956434, + "max_y": 5251.449584843443, + "center": [ + 2413.51618956434, + 5245.969620923764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5240.489657004085 + ], + [ + 2413.51618956434, + 5251.449584843443 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5251.741593695541, + "max_x": 2418.441090472942, + "max_y": 5252.167601431096, + "center": [ + 2418.441090472942, + 5251.954597563319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5251.741593695541 + ], + [ + 2418.441090472942, + 5252.167601431096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5252.39915877409, + "max_x": 2418.441090472942, + "max_y": 5252.995815744434, + "center": [ + 2418.441090472942, + 5252.697487259262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5252.39915877409 + ], + [ + 2418.441090472942, + 5252.995815744434 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE4", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2418.114849119478, + "min_y": 5252.1676014311, + "max_x": 2418.767331826406, + "max_y": 5252.1676014311, + "center": [ + 2418.441090472942, + 5252.1676014311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.114849119478, + 5252.1676014311 + ], + [ + 2418.767331826406, + 5252.1676014311 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CE5", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2418.114849119478, + "min_y": 5252.39915877409, + "max_x": 2418.767331826406, + "max_y": 5252.39915877409, + "center": [ + 2418.441090472942, + 5252.39915877409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.114849119478, + 5252.39915877409 + ], + [ + 2418.767331826406, + 5252.39915877409 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5232.468792814695, + "max_x": 2418.441090472942, + "max_y": 5235.01788347312, + "center": [ + 2418.441090472942, + 5233.743338143908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5235.01788347312 + ], + [ + 2418.441090472942, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.434054482276, + "min_y": 5231.94639909239, + "max_x": 2431.434054482276, + "max_y": 5232.991186537001, + "center": [ + 2431.434054482276, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.434054482276, + 5232.991186537001 + ], + [ + 2431.434054482276, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.134241739905, + "min_y": 5231.94639909239, + "max_x": 2431.134241739905, + "max_y": 5232.991186537001, + "center": [ + 2431.134241739905, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.134241739905, + 5232.991186537001 + ], + [ + 2431.134241739905, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.204317192692, + "min_y": 5231.944731237756, + "max_x": 2434.204317192692, + "max_y": 5232.989518682374, + "center": [ + 2434.204317192692, + 5232.467124960065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.204317192692, + 5232.989518682374 + ], + [ + 2434.204317192692, + 5231.944731237756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.504129935062, + "min_y": 5231.944731237756, + "max_x": 2434.504129935062, + "max_y": 5232.989518682374, + "center": [ + 2434.504129935062, + 5232.467124960065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.504129935062, + 5232.989518682374 + ], + [ + 2434.504129935062, + 5231.944731237756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CEB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2431.4340474531664, + "min_y": 5232.269248550093, + "max_x": 2431.8298002731, + "max_y": 5232.665001370026, + "center": [ + 2431.631923863133, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.631923863133, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CEC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2431.8298002730985, + "min_y": 5232.269248550095, + "max_x": 2432.2255530930292, + "max_y": 5232.665001370025, + "center": [ + 2432.027676683064, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.027676683064, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2432.2255530930297, + "min_y": 5232.269248550095, + "max_x": 2432.6213059129605, + "max_y": 5232.665001370025, + "center": [ + 2432.423429502995, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.423429502995, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CEE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2432.2255530930306, + "min_y": 5232.269248550093, + "max_x": 2432.621305912965, + "max_y": 5232.665001370026, + "center": [ + 2432.423429502998, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.423429502998, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CEF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2432.6213059129636, + "min_y": 5232.269248550095, + "max_x": 2433.0170587328944, + "max_y": 5232.665001370025, + "center": [ + 2432.819182322929, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.819182322929, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2433.0170587328953, + "min_y": 5232.269248550092, + "max_x": 2433.4128115528306, + "max_y": 5232.665001370027, + "center": [ + 2433.214935142863, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.214935142863, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2433.4128115528315, + "min_y": 5232.269248550095, + "max_x": 2433.8085643727622, + "max_y": 5232.665001370025, + "center": [ + 2433.610687962797, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.610687962797, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2433.8085643727595, + "min_y": 5232.269248550095, + "max_x": 2434.2043171926903, + "max_y": 5232.665001370025, + "center": [ + 2434.006440782725, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.006440782725, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.504129935062, + "min_y": 5232.46712496006, + "max_x": 2437.650582120268, + "max_y": 5232.46712496006, + "center": [ + 2436.077356027665, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.504129935062, + 5232.46712496006 + ], + [ + 2437.650582120268, + 5232.46712496006 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.278923491511, + "min_y": 5231.448286969651, + "max_x": 2427.297761481921, + "max_y": 5232.46712496006, + "center": [ + 2426.788342486716, + 5231.957705964855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.278923491511, + 5232.46712496006 + ], + [ + 2427.297761481921, + 5231.448286969651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.043051984319, + "min_y": 5231.193577472047, + "max_x": 2427.565945599639, + "max_y": 5231.702996467255, + "center": [ + 2427.304498791979, + 5231.448286969651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.565945599639, + 5231.702996467255 + ], + [ + 2427.043051984319, + 5231.193577472047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.464723688313, + "min_y": 5231.94639909239, + "max_x": 2427.464723688313, + "max_y": 5232.991186537001, + "center": [ + 2427.464723688313, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.464723688313, + 5232.991186537001 + ], + [ + 2427.464723688313, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.743181856867, + "min_y": 5231.94639909239, + "max_x": 2427.743181856867, + "max_y": 5232.991186537001, + "center": [ + 2427.743181856867, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.743181856867, + 5232.991186537001 + ], + [ + 2427.743181856867, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.771462207633, + "min_y": 5231.94639909239, + "max_x": 2425.771462207633, + "max_y": 5232.991186537001, + "center": [ + 2425.771462207633, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.771462207633, + 5232.991186537001 + ], + [ + 2425.771462207633, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.49300403908, + "min_y": 5231.94639909239, + "max_x": 2425.49300403908, + "max_y": 5232.991186537001, + "center": [ + 2425.49300403908, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.49300403908, + 5232.991186537001 + ], + [ + 2425.49300403908, + 5231.94639909239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556CFA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2421.876287779449, + "min_y": 5232.468792814695, + "max_x": 2425.49300403908, + "max_y": 5232.468792814695, + "center": [ + 2423.6846459092644, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.876287779449, + 5232.468792814695 + ], + [ + 2425.49300403908, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CFB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2427.743181856867, + "min_y": 5232.468792814695, + "max_x": 2429.402773968408, + "max_y": 5232.468792814695, + "center": [ + 2428.5729779126377, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.743181856867, + 5232.468792814695 + ], + [ + 2429.402773968408, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CFC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2430.474952826196, + "min_y": 5232.468792814695, + "max_x": 2431.134241739905, + "max_y": 5232.468792814695, + "center": [ + 2430.8045972830505, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.474952826196, + 5232.468792814695 + ], + [ + 2431.134241739905, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.771462207636, + "min_y": 5232.468792814695, + "max_x": 2427.464723688313, + "max_y": 5232.468792814695, + "center": [ + 2426.618092947974, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.464723688313, + 5232.468792814695 + ], + [ + 2425.771462207636, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CFE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2428.425024542214, + "min_y": 5231.150771589038, + "max_x": 2428.425024542214, + "max_y": 5232.468792814695, + "center": [ + 2428.425024542214, + 5231.809782201866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.425024542214, + 5231.150771589038 + ], + [ + 2428.425024542214, + 5232.468792814695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556CFF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2428.167052333668, + "min_y": 5229.97984854487, + "max_x": 2428.68299675076, + "max_y": 5230.495792961961, + "center": [ + 2428.425024542214, + 5230.237820753416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.425024542214, + 5230.237820753416 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5231.150771589038, + "max_x": 2428.828037917836, + "max_y": 5231.150771589038, + "center": [ + 2428.4250245422145, + 5231.150771589038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5231.150771589038 + ], + [ + 2428.828037917836, + 5231.150771589038 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5229.324869917792, + "max_x": 2428.828037917836, + "max_y": 5229.324869917792, + "center": [ + 2428.4250245422145, + 5229.324869917792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5229.324869917792 + ], + [ + 2428.828037917836, + 5229.324869917792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5229.564720111688, + "max_x": 2428.292503785149, + "max_y": 5230.016488628923, + "center": [ + 2428.157257475871, + 5229.790604370306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.292503785149, + 5230.016488628923 + ], + [ + 2428.022011166593, + 5229.564720111688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5229.564720111688, + "max_x": 2428.828037917836, + "max_y": 5229.564720111688, + "center": [ + 2428.4250245422145, + 5229.564720111688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5229.564720111688 + ], + [ + 2428.828037917836, + 5229.564720111688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.557545299277, + "min_y": 5229.564720111688, + "max_x": 2428.828037917836, + "max_y": 5230.016488628923, + "center": [ + 2428.6927916085565, + 5229.790604370306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.828037917836, + 5229.564720111688 + ], + [ + 2428.557545299277, + 5230.016488628923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5230.459152877898, + "max_x": 2428.292503785149, + "max_y": 5230.910921395138, + "center": [ + 2428.157257475871, + 5230.685037136518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.292503785149, + 5230.459152877898 + ], + [ + 2428.022011166593, + 5230.910921395138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5230.910921395138, + "max_x": 2428.828037917836, + "max_y": 5230.910921395138, + "center": [ + 2428.4250245422145, + 5230.910921395138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5230.910921395138 + ], + [ + 2428.828037917836, + 5230.910921395138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.557545299277, + "min_y": 5230.459152877898, + "max_x": 2428.828037917836, + "max_y": 5230.910921395138, + "center": [ + 2428.6927916085565, + 5230.685037136518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.828037917836, + 5230.910921395138 + ], + [ + 2428.557545299277, + 5230.459152877898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D08", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2428.425024542214, + "min_y": 5228.665859304962, + "max_x": 2428.425024542214, + "max_y": 5229.324869917792, + "center": [ + 2428.425024542214, + 5228.995364611377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.425024542214, + 5228.665859304962 + ], + [ + 2428.425024542214, + 5229.324869917792 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5228.1135423077, + "max_x": 2428.022011166593, + "max_y": 5228.769160353387, + "center": [ + 2428.022011166593, + 5228.4413513305435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5228.769160353387 + ], + [ + 2428.022011166593, + 5228.1135423077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.828037917836, + "min_y": 5228.1135423077, + "max_x": 2428.828037917836, + "max_y": 5228.769160353387, + "center": [ + 2428.828037917836, + 5228.4413513305435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.828037917836, + 5228.769160353387 + ], + [ + 2428.828037917836, + 5228.1135423077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.022011166593, + "min_y": 5228.1135423077, + "max_x": 2428.828037917836, + "max_y": 5228.1135423077, + "center": [ + 2428.4250245422145, + 5228.1135423077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.022011166593, + 5228.1135423077 + ], + [ + 2428.828037917836, + 5228.1135423077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.074014190082, + "min_y": 5239.122133337328, + "max_x": 2440.195615352913, + "max_y": 5239.122133337328, + "center": [ + 2439.6348147714975, + 5239.122133337328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.074014190082, + 5239.122133337328 + ], + [ + 2440.195615352913, + 5239.122133337328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.09616062867, + "min_y": 5240.958409067127, + "max_x": 2440.195615352908, + "max_y": 5240.958409067133, + "center": [ + 2439.645887990789, + 5240.958409067131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.09616062867, + 5240.958409067133 + ], + [ + 2440.195615352908, + 5240.958409067127 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094340608458, + "min_y": 5239.122133337328, + "max_x": 2440.193795332698, + "max_y": 5239.122133337328, + "center": [ + 2439.644067970578, + 5239.122133337328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094340608458, + 5239.122133337328 + ], + [ + 2440.193795332698, + 5239.122133337328 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.09616062867, + "min_y": 5239.122133337335, + "max_x": 2440.195615352908, + "max_y": 5240.958409067133, + "center": [ + 2439.645887990789, + 5240.040271202234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.195615352908, + 5239.122133337335 + ], + [ + 2439.09616062867, + 5240.958409067133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.074014190084, + "min_y": 5238.761038236179, + "max_x": 2440.195615352916, + "max_y": 5238.761038236179, + "center": [ + 2439.6348147715, + 5238.761038236179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.074014190084, + 5238.761038236179 + ], + [ + 2440.195615352916, + 5238.761038236179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094340608461, + "min_y": 5238.761038236179, + "max_x": 2440.1937953327, + "max_y": 5238.761038236179, + "center": [ + 2439.6440679705806, + 5238.761038236179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094340608461, + 5238.761038236179 + ], + [ + 2440.1937953327, + 5238.761038236179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094340608461, + "min_y": 5241.342356617556, + "max_x": 2440.1937953327, + "max_y": 5241.342356617556, + "center": [ + 2439.6440679705806, + 5241.342356617556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094340608461, + 5241.342356617556 + ], + [ + 2440.1937953327, + 5241.342356617556 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D14", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2439.646040155805, + "min_y": 5234.731382477997, + "max_x": 2439.646040155805, + "max_y": 5235.391150041026, + "center": [ + 2439.646040155805, + 5235.061266259511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155805, + 5234.731382477997 + ], + [ + 2439.646040155805, + 5235.391150041026 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.125314288131, + "min_y": 5238.461225493812, + "max_x": 2440.170101732742, + "max_y": 5238.461225493812, + "center": [ + 2439.6477080104364, + 5238.461225493812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.170101732742, + 5238.461225493812 + ], + [ + 2439.125314288131, + 5238.461225493812 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.125314288131, + "min_y": 5238.761038236179, + "max_x": 2440.170101732742, + "max_y": 5238.761038236179, + "center": [ + 2439.6477080104364, + 5238.761038236179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.170101732742, + 5238.761038236179 + ], + [ + 2439.125314288131, + 5238.761038236179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.123646433495, + "min_y": 5235.690962783393, + "max_x": 2440.168433878115, + "max_y": 5235.690962783393, + "center": [ + 2439.646040155805, + 5235.690962783393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.168433878115, + 5235.690962783393 + ], + [ + 2439.123646433495, + 5235.690962783393 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.123646433495, + "min_y": 5235.391150041026, + "max_x": 2440.168433878115, + "max_y": 5235.391150041026, + "center": [ + 2439.646040155805, + 5235.391150041026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.168433878115, + 5235.391150041026 + ], + [ + 2439.123646433495, + 5235.391150041026 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D19", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458352, + "min_y": 5238.065479702988, + "max_x": 2439.8439165657687, + "max_y": 5238.461232522922, + "center": [ + 2439.646040155802, + 5238.263356112955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5238.263356112955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458366, + "min_y": 5237.669726883056, + "max_x": 2439.8439165657674, + "max_y": 5238.065479702986, + "center": [ + 2439.646040155802, + 5237.867603293021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5237.867603293021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458366, + "min_y": 5237.273974063128, + "max_x": 2439.8439165657674, + "max_y": 5237.669726883058, + "center": [ + 2439.646040155802, + 5237.471850473093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5237.471850473093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.448163745835, + "min_y": 5237.2739740631205, + "max_x": 2439.843916565769, + "max_y": 5237.669726883054, + "center": [ + 2439.646040155802, + 5237.471850473087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5237.471850473087 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458366, + "min_y": 5236.878221243194, + "max_x": 2439.8439165657674, + "max_y": 5237.273974063124, + "center": [ + 2439.646040155802, + 5237.076097653159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5237.076097653159 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458343, + "min_y": 5236.482468423256, + "max_x": 2439.8439165657696, + "max_y": 5236.878221243192, + "center": [ + 2439.646040155802, + 5236.680344833224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5236.680344833224 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D1F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458366, + "min_y": 5236.086715603326, + "max_x": 2439.8439165657674, + "max_y": 5236.482468423256, + "center": [ + 2439.646040155802, + 5236.284592013291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5236.284592013291 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D20", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.4481637458366, + "min_y": 5235.6909627833975, + "max_x": 2439.8439165657674, + "max_y": 5236.086715603327, + "center": [ + 2439.646040155802, + 5235.888839193362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155802, + 5235.888839193362 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.206489034912, + "min_y": 5251.601568181857, + "max_x": 2420.206489034912, + "max_y": 5252.803466915045, + "center": [ + 2420.206489034912, + 5252.2025175484505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.206489034912, + 5251.601568181857 + ], + [ + 2420.206489034912, + 5252.803466915045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D22", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2419.9885025186904, + "min_y": 5253.356923854924, + "max_x": 2420.4244755511336, + "max_y": 5253.7928968873675, + "center": [ + 2420.206489034912, + 5253.574910371146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.206489034912, + 5253.574910371146 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.853350878632, + "min_y": 5252.803466915045, + "max_x": 2420.559627191194, + "max_y": 5252.803466915045, + "center": [ + 2420.206489034913, + 5252.803466915045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.559627191194, + 5252.803466915045 + ], + [ + 2419.853350878632, + 5252.803466915045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.853350878632, + "min_y": 5254.346353827248, + "max_x": 2420.559627191194, + "max_y": 5254.346353827248, + "center": [ + 2420.206489034913, + 5254.346353827248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.559627191194, + 5254.346353827248 + ], + [ + 2419.853350878632, + 5254.346353827248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.865942732514, + "min_y": 5253.00614032889, + "max_x": 2420.094508995193, + "max_y": 5253.387884725953, + "center": [ + 2419.980225863854, + 5253.197012527422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.094508995193, + 5253.387884725953 + ], + [ + 2419.865942732514, + 5253.00614032889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.865942732514, + "min_y": 5253.00614032889, + "max_x": 2420.547035337312, + "max_y": 5253.00614032889, + "center": [ + 2420.206489034913, + 5253.00614032889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.865942732514, + 5253.00614032889 + ], + [ + 2420.547035337312, + 5253.00614032889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.31846907463, + "min_y": 5253.00614032889, + "max_x": 2420.547035337312, + "max_y": 5253.387884725953, + "center": [ + 2420.432752205971, + 5253.197012527422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.547035337312, + 5253.00614032889 + ], + [ + 2420.31846907463, + 5253.387884725953 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.865942732514, + "min_y": 5253.761936016339, + "max_x": 2420.094508995193, + "max_y": 5254.143680413406, + "center": [ + 2419.980225863854, + 5253.952808214873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.094508995193, + 5253.761936016339 + ], + [ + 2419.865942732514, + 5254.143680413406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.865942732514, + "min_y": 5254.143680413406, + "max_x": 2420.547035337312, + "max_y": 5254.143680413406, + "center": [ + 2420.206489034913, + 5254.143680413406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.865942732514, + 5254.143680413406 + ], + [ + 2420.547035337312, + 5254.143680413406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.31846907463, + "min_y": 5253.761936016339, + "max_x": 2420.547035337312, + "max_y": 5254.143680413406, + "center": [ + 2420.432752205971, + 5253.952808214873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.547035337312, + 5254.143680413406 + ], + [ + 2420.31846907463, + 5253.761936016339 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2413.2982030481176, + "min_y": 5252.003041783322, + "max_x": 2413.7341760805607, + "max_y": 5252.439014815765, + "center": [ + 2413.516189564339, + 5252.221028299544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.516189564339, + 5252.221028299544 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.163051408059, + "min_y": 5251.449584843443, + "max_x": 2413.869327720621, + "max_y": 5251.449584843443, + "center": [ + 2413.51618956434, + 5251.449584843443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.869327720621, + 5251.449584843443 + ], + [ + 2413.163051408059, + 5251.449584843443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.163051408059, + "min_y": 5252.992471755645, + "max_x": 2413.869327720621, + "max_y": 5252.992471755645, + "center": [ + 2413.51618956434, + 5252.992471755645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.869327720621, + 5252.992471755645 + ], + [ + 2413.163051408059, + 5252.992471755645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.175643261941, + "min_y": 5251.652258257287, + "max_x": 2413.40420952462, + "max_y": 5252.034002654352, + "center": [ + 2413.2899263932804, + 5251.84313045582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.40420952462, + 5252.034002654352 + ], + [ + 2413.175643261941, + 5251.652258257287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.175643261941, + "min_y": 5251.652258257287, + "max_x": 2413.856735866739, + "max_y": 5251.652258257287, + "center": [ + 2413.51618956434, + 5251.652258257287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.175643261941, + 5251.652258257287 + ], + [ + 2413.856735866739, + 5251.652258257287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.628169604058, + "min_y": 5251.652258257287, + "max_x": 2413.856735866739, + "max_y": 5252.034002654352, + "center": [ + 2413.7424527353987, + 5251.84313045582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.856735866739, + 5251.652258257287 + ], + [ + 2413.628169604058, + 5252.034002654352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.175643261941, + "min_y": 5252.408053944736, + "max_x": 2413.40420952462, + "max_y": 5252.789798341804, + "center": [ + 2413.2899263932804, + 5252.59892614327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.40420952462, + 5252.408053944736 + ], + [ + 2413.175643261941, + 5252.789798341804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.175643261941, + "min_y": 5252.789798341804, + "max_x": 2413.856735866739, + "max_y": 5252.789798341804, + "center": [ + 2413.51618956434, + 5252.789798341804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.175643261941, + 5252.789798341804 + ], + [ + 2413.856735866739, + 5252.789798341804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.628169604058, + "min_y": 5252.408053944736, + "max_x": 2413.856735866739, + "max_y": 5252.789798341804, + "center": [ + 2413.7424527353987, + 5252.59892614327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.856735866739, + 5252.789798341804 + ], + [ + 2413.628169604058, + 5252.408053944736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D34", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2413.51618956434, + "min_y": 5252.992471755645, + "max_x": 2413.51618956434, + "max_y": 5256.180261571154, + "center": [ + 2413.51618956434, + 5254.5863666633995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5252.992471755645 + ], + [ + 2413.51618956434, + 5256.180261571154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5238.795626949353, + "max_x": 2437.229118245521, + "max_y": 5238.795626949353, + "center": [ + 2436.659064465026, + 5238.795626949353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.229118245521, + 5238.795626949353 + ], + [ + 2436.089010684531, + 5238.795626949353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5238.795626949353, + "max_x": 2436.089010684531, + "max_y": 5239.421699888374, + "center": [ + 2436.089010684531, + 5239.108663418863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.089010684531, + 5239.421699888374 + ], + [ + 2436.089010684531, + 5238.795626949353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.229118245521, + "min_y": 5238.795626949353, + "max_x": 2437.229118245521, + "max_y": 5239.421699888374, + "center": [ + 2437.229118245521, + 5239.108663418863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.229118245521, + 5239.421699888374 + ], + [ + 2437.229118245521, + 5238.795626949353 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D38", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5243.481430765213, + "max_x": 2439.644220136159, + "max_y": 5243.481430765213, + "center": [ + 2438.1516423005924, + 5243.481430765213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5243.481430765213 + ], + [ + 2439.644220136159, + 5243.481430765213 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5246.379432916515, + "max_x": 2436.659064465026, + "max_y": 5246.857186576985, + "center": [ + 2436.659064465026, + 5246.61830974675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5246.379432916515 + ], + [ + 2436.659064465026, + 5246.857186576985 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556D3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5246.379432916515, + "max_x": 2436.659064465026, + "max_y": 5246.857186576985, + "center": [ + 2436.659064465026, + 5246.61830974675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5246.379432916515 + ], + [ + 2436.659064465026, + 5246.857186576985 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556D3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5244.215991334738, + "max_x": 2436.478300523644, + "max_y": 5244.832222780874, + "center": [ + 2436.293818813275, + 5244.524107057806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5244.215991334738 + ], + [ + 2436.478300523644, + 5244.832222780874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5244.215991334738, + "max_x": 2437.208791827147, + "max_y": 5244.215991334738, + "center": [ + 2436.659064465026, + 5244.215991334738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.208791827147, + 5244.215991334738 + ], + [ + 2436.109337102905, + 5244.215991334738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.839828406407, + "min_y": 5244.215991334738, + "max_x": 2437.208791827147, + "max_y": 5244.832222780874, + "center": [ + 2437.024310116777, + 5244.524107057806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.839828406407, + 5244.832222780874 + ], + [ + 2437.208791827147, + 5244.215991334738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5245.436035618396, + "max_x": 2436.478300523642, + "max_y": 5246.052267064537, + "center": [ + 2436.2938188132734, + 5245.744151341467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5246.052267064537 + ], + [ + 2436.478300523642, + 5245.436035618396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5246.052267064537, + "max_x": 2437.208791827147, + "max_y": 5246.052267064537, + "center": [ + 2436.659064465026, + 5246.052267064537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.208791827147, + 5246.052267064537 + ], + [ + 2436.109337102905, + 5246.052267064537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.839828406411, + "min_y": 5245.436035618396, + "max_x": 2437.208791827147, + "max_y": 5246.052267064537, + "center": [ + 2437.024310116779, + 5245.744151341467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.839828406411, + 5245.436035618396 + ], + [ + 2437.208791827147, + 5246.052267064537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.104989167271, + "min_y": 5246.379432916515, + "max_x": 2437.216779802079, + "max_y": 5246.379432916515, + "center": [ + 2436.660884484675, + 5246.379432916515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.216779802079, + 5246.379432916515 + ], + [ + 2436.104989167271, + 5246.379432916515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.104989167271, + "min_y": 5246.379432916515, + "max_x": 2437.216779802079, + "max_y": 5246.379432916515, + "center": [ + 2436.660884484675, + 5246.379432916515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.216779802079, + 5246.379432916515 + ], + [ + 2436.104989167271, + 5246.379432916515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.103169147623, + "min_y": 5243.888825482755, + "max_x": 2437.214959782429, + "max_y": 5243.888825482755, + "center": [ + 2436.659064465026, + 5243.888825482755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.214959782429, + 5243.888825482755 + ], + [ + 2436.103169147623, + 5243.888825482755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.103169147623, + "min_y": 5244.215991334738, + "max_x": 2437.214959782429, + "max_y": 5244.215991334738, + "center": [ + 2436.659064465026, + 5244.215991334738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.214959782429, + 5244.215991334738 + ], + [ + 2436.103169147623, + 5244.215991334738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5243.888825482755, + "max_x": 2437.208791827147, + "max_y": 5243.888825482755, + "center": [ + 2436.659064465026, + 5243.888825482755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5243.888825482755 + ], + [ + 2437.208791827147, + 5243.888825482755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5246.379432916515, + "max_x": 2437.208791827147, + "max_y": 5246.379432916515, + "center": [ + 2436.659064465026, + 5246.379432916515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5246.379432916515 + ], + [ + 2437.208791827147, + 5246.379432916515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D47", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2436.3071794153393, + "min_y": 5244.78224414995, + "max_x": 2437.0109495147126, + "max_y": 5245.4860142493235, + "center": [ + 2436.659064465026, + 5245.134129199637 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5245.134129199637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5243.888825482755, + "max_x": 2437.229118245521, + "max_y": 5243.888825482755, + "center": [ + 2436.659064465026, + 5243.888825482755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.229118245521, + 5243.888825482755 + ], + [ + 2436.089010684531, + 5243.888825482755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5240.910594465894, + "max_x": 2436.478300523644, + "max_y": 5241.52682591203, + "center": [ + 2436.293818813275, + 5241.218710188962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5240.910594465894 + ], + [ + 2436.478300523644, + 5241.52682591203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5240.910594465894, + "max_x": 2437.208791827147, + "max_y": 5240.910594465894, + "center": [ + 2436.659064465026, + 5240.910594465894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.208791827147, + 5240.910594465894 + ], + [ + 2436.109337102905, + 5240.910594465894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.839828406407, + "min_y": 5240.910594465894, + "max_x": 2437.208791827147, + "max_y": 5241.52682591203, + "center": [ + 2437.024310116777, + 5241.218710188962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.839828406407, + 5241.52682591203 + ], + [ + 2437.208791827147, + 5240.910594465894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5242.130638749553, + "max_x": 2436.478300523642, + "max_y": 5242.746870195693, + "center": [ + 2436.2938188132734, + 5242.438754472623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5242.746870195693 + ], + [ + 2436.478300523642, + 5242.130638749553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5242.746870195693, + "max_x": 2437.208791827147, + "max_y": 5242.746870195693, + "center": [ + 2436.659064465026, + 5242.746870195693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.208791827147, + 5242.746870195693 + ], + [ + 2436.109337102905, + 5242.746870195693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.839828406411, + "min_y": 5242.130638749553, + "max_x": 2437.208791827147, + "max_y": 5242.746870195693, + "center": [ + 2437.024310116779, + 5242.438754472623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.839828406411, + 5242.130638749553 + ], + [ + 2437.208791827147, + 5242.746870195693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.104989167271, + "min_y": 5243.074036047671, + "max_x": 2437.216779802079, + "max_y": 5243.074036047671, + "center": [ + 2436.660884484675, + 5243.074036047671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.216779802079, + 5243.074036047671 + ], + [ + 2436.104989167271, + 5243.074036047671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.104989167271, + "min_y": 5243.074036047671, + "max_x": 2437.216779802079, + "max_y": 5243.074036047671, + "center": [ + 2436.660884484675, + 5243.074036047671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.216779802079, + 5243.074036047671 + ], + [ + 2436.104989167271, + 5243.074036047671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.103169147623, + "min_y": 5240.583428613911, + "max_x": 2437.214959782429, + "max_y": 5240.583428613911, + "center": [ + 2436.659064465026, + 5240.583428613911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.214959782429, + 5240.583428613911 + ], + [ + 2436.103169147623, + 5240.583428613911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.103169147623, + "min_y": 5240.910594465894, + "max_x": 2437.214959782429, + "max_y": 5240.910594465894, + "center": [ + 2436.659064465026, + 5240.910594465894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.214959782429, + 5240.910594465894 + ], + [ + 2436.103169147623, + 5240.910594465894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5240.583428613911, + "max_x": 2437.208791827147, + "max_y": 5240.583428613911, + "center": [ + 2436.659064465026, + 5240.583428613911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5240.583428613911 + ], + [ + 2437.208791827147, + 5240.583428613911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.109337102905, + "min_y": 5243.074036047671, + "max_x": 2437.208791827147, + "max_y": 5243.074036047671, + "center": [ + 2436.659064465026, + 5243.074036047671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.109337102905, + 5243.074036047671 + ], + [ + 2437.208791827147, + 5243.074036047671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D55", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2436.3071794153393, + "min_y": 5241.476847281107, + "max_x": 2437.0109495147126, + "max_y": 5242.180617380481, + "center": [ + 2436.659064465026, + 5241.828732330794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5241.828732330794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.089010684531, + "min_y": 5240.583428613911, + "max_x": 2437.229118245521, + "max_y": 5240.583428613911, + "center": [ + 2436.659064465026, + 5240.583428613911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.229118245521, + 5240.583428613911 + ], + [ + 2436.089010684531, + 5240.583428613911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D57", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5243.074036047671, + "max_x": 2436.659064465026, + "max_y": 5243.888825482755, + "center": [ + 2436.659064465026, + 5243.481430765213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5243.074036047671 + ], + [ + 2436.659064465026, + 5243.888825482755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D58", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5243.074036047671, + "max_x": 2436.659064465026, + "max_y": 5243.888825482755, + "center": [ + 2436.659064465026, + 5243.481430765213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5243.074036047671 + ], + [ + 2436.659064465026, + 5243.888825482755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D59", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2436.659064465026, + "min_y": 5239.419555004494, + "max_x": 2436.659064465026, + "max_y": 5240.583428613911, + "center": [ + 2436.659064465026, + 5240.001491809202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5239.419555004494 + ], + [ + 2436.659064465026, + 5240.583428613911 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D5A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2434.739199601062, + "min_y": 5247.702405016599, + "max_x": 2439.447635809434, + "max_y": 5249.01030396337, + "center": [ + 2437.0934177052477, + 5248.356354489984 + ] + }, + "raw_value": "10221C", + "clean_value": "10221C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D5B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2434.3235269578176, + "min_y": 5246.8571865769845, + "max_x": 2438.9946019722342, + "max_y": 5251.528261591402, + "center": [ + 2436.659064465026, + 5249.192724084193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.659064465026, + 5249.192724084193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D5C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2439.646040155807, + "min_y": 5253.814660310315, + "max_x": 2439.646040155807, + "max_y": 5255.907452523136, + "center": [ + 2439.646040155807, + 5254.861056416726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155807, + 5255.907452523136 + ], + [ + 2439.646040155807, + 5253.814660310315 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D5D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2439.646040155807, + "min_y": 5242.840896229324, + "max_x": 2439.646040155807, + "max_y": 5251.324052876554, + "center": [ + 2439.646040155807, + 5247.082474552939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155807, + 5251.324052876554 + ], + [ + 2439.646040155807, + 5242.840896229324 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D5E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2423.332279509884, + "min_y": 5258.689368169076, + "max_x": 2435.4269980941326, + "max_y": 5259.80924951947, + "center": [ + 2429.3796388020082, + 5259.249308844273 + ] + }, + "raw_value": "N2-10711-15A-F1A-n", + "clean_value": "N2-10711-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D5F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2435.677398631961, + "min_y": 5249.645699855529, + "max_x": 2437.246877368085, + "max_y": 5250.953598802299, + "center": [ + 2436.4621380000226, + 5250.299649328914 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D60", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2423.217135988807, + "min_y": 5262.605864173843, + "max_x": 2435.311854573056, + "max_y": 5263.725745524236, + "center": [ + 2429.2644952809314, + 5263.165804849039 + ] + }, + "raw_value": "VG-10432-50A-F1A-n", + "clean_value": "VG-10432-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D61", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2445.661872398936, + "min_y": 5248.084659199683, + "max_x": 2445.661872398936, + "max_y": 5250.094372804969, + "center": [ + 2445.661872398936, + 5249.0895160023265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.661872398936, + 5250.094372804969 + ], + [ + 2445.661872398936, + 5248.084659199683 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D62", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2419.630169642688, + "min_y": 5261.924395044166, + "max_x": 2440.242634343726, + "max_y": 5261.924395044166, + "center": [ + 2429.9364019932073, + 5261.924395044166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.630169642688, + 5261.924395044166 + ], + [ + 2440.242634343726, + 5261.924395044166 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2441.537496494142, + "min_y": 5261.200433277381, + "max_x": 2448.70473713666, + "max_y": 5262.693608411239, + "center": [ + 2445.121116815401, + 5261.947020844311 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D64", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2440.242634343726, + "min_y": 5260.435243337468, + "max_x": 2451.021817346751, + "max_y": 5260.435243337468, + "center": [ + 2445.6322258452383, + 5260.435243337468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.242634343726, + 5260.435243337468 + ], + [ + 2451.021817346751, + 5260.435243337468 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D65", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2440.242634343726, + "min_y": 5263.413546750864, + "max_x": 2451.021817346759, + "max_y": 5263.413546750864, + "center": [ + 2445.6322258452424, + 5263.413546750864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.021817346759, + 5263.413546750864 + ], + [ + 2440.242634343726, + 5263.413546750864 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D66", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2451.021817346754, + "min_y": 5260.435243337471, + "max_x": 2452.510969053451, + "max_y": 5261.924395044168, + "center": [ + 2451.7663932001024, + 5261.179819190819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.021817346754, + 5260.435243337471 + ], + [ + 2452.510969053451, + 5261.924395044168 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D67", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2451.021817346754, + "min_y": 5261.924395044168, + "max_x": 2452.510969053451, + "max_y": 5263.413546750865, + "center": [ + 2451.7663932001024, + 5262.668970897516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.510969053451, + 5261.924395044168 + ], + [ + 2451.021817346754, + 5263.413546750865 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D68", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2420.195452942664, + "min_y": 5258.310220278033, + "max_x": 2440.242634343726, + "max_y": 5258.317081502084, + "center": [ + 2430.2190436431947, + 5258.313650890059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.195452942664, + 5258.317081502084 + ], + [ + 2440.242634343726, + 5258.310220278033 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2447.364734102634, + "min_y": 5257.305963988764, + "max_x": 2447.364734102634, + "max_y": 5259.314476567296, + "center": [ + 2447.364734102634, + 5258.31022027803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.364734102634, + 5259.314476567296 + ], + [ + 2447.364734102634, + 5257.305963988764 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2442.888336645735, + "min_y": 5257.55969250227, + "max_x": 2443.7842417260495, + "max_y": 5259.052867636128, + "center": [ + 2443.3362891858924, + 5258.306280069199 + ] + }, + "raw_value": "N", + "clean_value": "N", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D6B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2441.582870879757, + "min_y": 5259.650456814064, + "max_x": 2447.364734102634, + "max_y": 5259.650456814064, + "center": [ + 2444.473802491196, + 5259.650456814064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.364734102634, + 5259.650456814064 + ], + [ + 2441.582870879757, + 5259.650456814064 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2447.364734102634, + "min_y": 5256.969983742006, + "max_x": 2447.364734102634, + "max_y": 5259.650456814064, + "center": [ + 2447.364734102634, + 5258.310220278035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.364734102634, + 5256.969983742006 + ], + [ + 2447.364734102634, + 5259.650456814064 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556D6D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2440.242634343726, + "min_y": 5258.310220278033, + "max_x": 2441.582870879752, + "max_y": 5259.650456814058, + "center": [ + 2440.912752611739, + 5258.9803385460455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.582870879752, + 5259.650456814058 + ], + [ + 2440.242634343726, + 5258.310220278033 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D6E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2440.242634343726, + "min_y": 5256.969983742004, + "max_x": 2441.582870879752, + "max_y": 5258.310220278033, + "center": [ + 2440.912752611739, + 5257.640102010018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.242634343726, + 5258.310220278033 + ], + [ + 2441.582870879752, + 5256.969983742004 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2444.346141727361, + "min_y": 5257.578227194315, + "max_x": 2445.2420468076757, + "max_y": 5259.0714023281735, + "center": [ + 2444.7940942675186, + 5258.324814761245 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D70", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2441.582870879752, + "min_y": 5256.969983742004, + "max_x": 2447.364734102637, + "max_y": 5256.969983742004, + "center": [ + 2444.473802491195, + 5256.969983742004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.582870879752, + 5256.969983742004 + ], + [ + 2447.364734102637, + 5256.969983742004 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556D71", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2440.061320220328, + "min_y": 5263.894906396163, + "max_x": 2450.8121811841047, + "max_y": 5265.014787746556, + "center": [ + 2445.436750702216, + 5264.45484707136 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D72", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2426.896370837602, + "min_y": 5244.740392924843, + "max_x": 2428.464204638562, + "max_y": 5246.04692109231, + "center": [ + 2427.680287738082, + 5245.393657008577 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D73", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2425.933575818877, + "min_y": 5242.862283031254, + "max_x": 2430.637077221758, + "max_y": 5244.168811198721, + "center": [ + 2428.2853265203175, + 5243.515547114988 + ] + }, + "raw_value": "10221B", + "clean_value": "10221B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D74", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2408.106010687516, + "min_y": 5237.00315761229, + "max_x": 2409.6738356190162, + "max_y": 5238.30967838854, + "center": [ + 2408.889923153266, + 5237.656418000415 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D75", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2407.644970101005, + "min_y": 5235.157140921194, + "max_x": 2411.5636614159043, + "max_y": 5236.463371359493, + "center": [ + 2409.6043157584545, + 5235.810256140343 + ] + }, + "raw_value": "10221", + "clean_value": "10221", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5246.842343655682, + "max_x": 2412.841683720975, + "max_y": 5246.842343655682, + "center": [ + 2412.337080180669, + 5246.842343655682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.841683720975, + 5246.842343655682 + ], + [ + 2411.832476640363, + 5246.842343655682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5239.917133512978, + "max_x": 2412.841683720975, + "max_y": 5239.917133512978, + "center": [ + 2412.337080180669, + 5239.917133512978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.841683720975, + 5239.917133512978 + ], + [ + 2411.832476640363, + 5239.917133512978 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5246.489205499397, + "max_x": 2411.832476640363, + "max_y": 5247.170298104196, + "center": [ + 2411.832476640363, + 5246.829751801797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5246.489205499397 + ], + [ + 2411.832476640363, + 5247.170298104196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5246.489205499397, + "max_x": 2411.832476640363, + "max_y": 5247.195481811958, + "center": [ + 2411.832476640363, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5246.489205499397 + ], + [ + 2411.832476640363, + 5247.195481811958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2410.8430466680406, + "min_y": 5246.624357139457, + "max_x": 2411.279019700484, + "max_y": 5247.0603301719, + "center": [ + 2411.061033184262, + 5246.842343655679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.061033184262, + 5246.842343655679 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5246.489205499397, + "max_x": 2411.832476640363, + "max_y": 5247.195481811958, + "center": [ + 2411.832476640363, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5246.489205499397 + ], + [ + 2411.832476640363, + 5247.195481811958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.289589728159, + "min_y": 5246.489205499397, + "max_x": 2410.289589728159, + "max_y": 5247.195481811958, + "center": [ + 2410.289589728159, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.289589728159, + 5246.489205499397 + ], + [ + 2410.289589728159, + 5247.195481811958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.248058829454, + "min_y": 5246.954323695398, + "max_x": 2411.629803226521, + "max_y": 5247.182889958077, + "center": [ + 2411.4389310279876, + 5247.068606826737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.248058829454, + 5246.954323695398 + ], + [ + 2411.629803226521, + 5247.182889958077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.629803226521, + "min_y": 5246.501797353278, + "max_x": 2411.629803226521, + "max_y": 5247.182889958077, + "center": [ + 2411.629803226521, + 5246.842343655677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.629803226521, + 5247.182889958077 + ], + [ + 2411.629803226521, + 5246.501797353278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.248058829454, + "min_y": 5246.501797353278, + "max_x": 2411.629803226521, + "max_y": 5246.730363615959, + "center": [ + 2411.4389310279876, + 5246.616080484619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.629803226521, + 5246.501797353278 + ], + [ + 2411.248058829454, + 5246.730363615959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5246.954323695398, + "max_x": 2410.874007539075, + "max_y": 5247.182889958077, + "center": [ + 2410.6831353405387, + 5247.068606826737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.874007539075, + 5246.954323695398 + ], + [ + 2410.492263142002, + 5247.182889958077 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5246.501797353278, + "max_x": 2410.492263142002, + "max_y": 5247.182889958077, + "center": [ + 2410.492263142002, + 5246.842343655677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.492263142002, + 5247.182889958077 + ], + [ + 2410.492263142002, + 5246.501797353278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5246.501797353278, + "max_x": 2410.874007539075, + "max_y": 5246.730363615959, + "center": [ + 2410.6831353405387, + 5246.616080484619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.492263142002, + 5246.501797353278 + ], + [ + 2410.874007539075, + 5246.730363615959 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5239.5639953567, + "max_x": 2411.832476640363, + "max_y": 5240.245087961497, + "center": [ + 2411.832476640363, + 5239.904541659098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5239.5639953567 + ], + [ + 2411.832476640363, + 5240.245087961497 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5239.5639953567, + "max_x": 2411.832476640363, + "max_y": 5240.270271669261, + "center": [ + 2411.832476640363, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5239.5639953567 + ], + [ + 2411.832476640363, + 5240.270271669261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D85", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2410.8430466680406, + "min_y": 5239.699146996761, + "max_x": 2411.279019700484, + "max_y": 5240.135120029204, + "center": [ + 2411.061033184262, + 5239.917133512982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.061033184262, + 5239.917133512982 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.832476640363, + "min_y": 5239.5639953567, + "max_x": 2411.832476640363, + "max_y": 5240.270271669261, + "center": [ + 2411.832476640363, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.832476640363, + 5239.5639953567 + ], + [ + 2411.832476640363, + 5240.270271669261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.289589728159, + "min_y": 5239.5639953567, + "max_x": 2410.289589728159, + "max_y": 5240.270271669261, + "center": [ + 2410.289589728159, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.289589728159, + 5239.5639953567 + ], + [ + 2410.289589728159, + 5240.270271669261 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.248058829454, + "min_y": 5240.029113552701, + "max_x": 2411.629803226521, + "max_y": 5240.257679815379, + "center": [ + 2411.4389310279876, + 5240.1433966840395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.248058829454, + 5240.029113552701 + ], + [ + 2411.629803226521, + 5240.257679815379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.629803226521, + "min_y": 5239.576587210581, + "max_x": 2411.629803226521, + "max_y": 5240.257679815379, + "center": [ + 2411.629803226521, + 5239.9171335129795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.629803226521, + 5240.257679815379 + ], + [ + 2411.629803226521, + 5239.576587210581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.248058829454, + "min_y": 5239.576587210581, + "max_x": 2411.629803226521, + "max_y": 5239.80515347326, + "center": [ + 2411.4389310279876, + 5239.690870341921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.629803226521, + 5239.576587210581 + ], + [ + 2411.248058829454, + 5239.80515347326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5240.029113552701, + "max_x": 2410.874007539075, + "max_y": 5240.257679815379, + "center": [ + 2410.6831353405387, + 5240.1433966840395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.874007539075, + 5240.029113552701 + ], + [ + 2410.492263142002, + 5240.257679815379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5239.576587210581, + "max_x": 2410.492263142002, + "max_y": 5240.257679815379, + "center": [ + 2410.492263142002, + 5239.9171335129795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.492263142002, + 5240.257679815379 + ], + [ + 2410.492263142002, + 5239.576587210581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.492263142002, + "min_y": 5239.576587210581, + "max_x": 2410.874007539075, + "max_y": 5239.80515347326, + "center": [ + 2410.6831353405387, + 5239.690870341921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.492263142002, + 5239.576587210581 + ], + [ + 2410.874007539075, + 5239.80515347326 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2424.056319027951, + "min_y": 5239.28708380895, + "max_x": 2425.201380331941, + "max_y": 5239.28708380895, + "center": [ + 2424.628849679946, + 5239.28708380895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.056319027951, + 5239.28708380895 + ], + [ + 2425.201380331941, + 5239.28708380895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.201380331941, + "min_y": 5238.959129360432, + "max_x": 2425.201380331941, + "max_y": 5239.64022196523, + "center": [ + 2425.201380331941, + 5239.299675662831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.201380331941, + 5239.64022196523 + ], + [ + 2425.201380331941, + 5238.959129360432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.201380331941, + "min_y": 5238.933945652668, + "max_x": 2425.201380331941, + "max_y": 5239.64022196523, + "center": [ + 2425.201380331941, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.201380331941, + 5239.64022196523 + ], + [ + 2425.201380331941, + 5238.933945652668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D91", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2425.7548372718206, + "min_y": 5239.069097292728, + "max_x": 2426.190810304264, + "max_y": 5239.505070325171, + "center": [ + 2425.972823788042, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.972823788042, + 5239.287083808949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.201380331941, + "min_y": 5238.933945652668, + "max_x": 2425.201380331941, + "max_y": 5239.64022196523, + "center": [ + 2425.201380331941, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.201380331941, + 5239.64022196523 + ], + [ + 2425.201380331941, + 5238.933945652668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.744267244144, + "min_y": 5238.933945652668, + "max_x": 2426.744267244144, + "max_y": 5239.64022196523, + "center": [ + 2426.744267244144, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.744267244144, + 5239.64022196523 + ], + [ + 2426.744267244144, + 5238.933945652668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.404053745783, + "min_y": 5238.946537506551, + "max_x": 2425.78579814285, + "max_y": 5239.17510376923, + "center": [ + 2425.594925944317, + 5239.060820637891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.78579814285, + 5239.17510376923 + ], + [ + 2425.404053745783, + 5238.946537506551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.404053745783, + "min_y": 5238.946537506551, + "max_x": 2425.404053745783, + "max_y": 5239.627630111347, + "center": [ + 2425.404053745783, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.404053745783, + 5238.946537506551 + ], + [ + 2425.404053745783, + 5239.627630111347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2425.404053745783, + "min_y": 5239.399063848669, + "max_x": 2425.78579814285, + "max_y": 5239.627630111347, + "center": [ + 2425.594925944317, + 5239.513346980008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2425.404053745783, + 5239.627630111347 + ], + [ + 2425.78579814285, + 5239.399063848669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.159849433229, + "min_y": 5238.946537506551, + "max_x": 2426.541593830302, + "max_y": 5239.17510376923, + "center": [ + 2426.3507216317657, + 5239.060820637891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.159849433229, + 5239.17510376923 + ], + [ + 2426.541593830302, + 5238.946537506551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.541593830302, + "min_y": 5238.946537506551, + "max_x": 2426.541593830302, + "max_y": 5239.627630111347, + "center": [ + 2426.541593830302, + 5239.287083808949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.541593830302, + 5238.946537506551 + ], + [ + 2426.541593830302, + 5239.627630111347 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.159849433229, + "min_y": 5239.399063848669, + "max_x": 2426.541593830302, + "max_y": 5239.627630111347, + "center": [ + 2426.3507216317657, + 5239.513346980008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.541593830302, + 5239.627630111347 + ], + [ + 2426.159849433229, + 5239.399063848669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D9A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2425.7189748882365, + "min_y": 5241.984913639645, + "max_x": 2430.1524555626893, + "max_y": 5246.418394314099, + "center": [ + 2427.935715225463, + 5244.201653976872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225463, + 5244.201653976872 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556D9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.506942094509, + "min_y": 5251.510723778313, + "max_x": 2415.506942094509, + "max_y": 5252.086244638887, + "center": [ + 2415.506942094509, + 5251.798484208601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.506942094509, + 5251.510723778313 + ], + [ + 2415.506942094509, + 5252.086244638887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D9C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2415.2889555782876, + "min_y": 5252.639701578765, + "max_x": 2415.724928610731, + "max_y": 5253.075674611208, + "center": [ + 2415.506942094509, + 5252.857688094987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.506942094509, + 5252.857688094987 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.153803938229, + "min_y": 5252.086244638887, + "max_x": 2415.860080250791, + "max_y": 5252.086244638887, + "center": [ + 2415.50694209451, + 5252.086244638887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.860080250791, + 5252.086244638887 + ], + [ + 2415.153803938229, + 5252.086244638887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.153803938229, + "min_y": 5253.629131551089, + "max_x": 2415.860080250791, + "max_y": 5253.629131551089, + "center": [ + 2415.50694209451, + 5253.629131551089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.860080250791, + 5253.629131551089 + ], + [ + 2415.153803938229, + 5253.629131551089 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556D9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.166395792111, + "min_y": 5252.28891805273, + "max_x": 2415.39496205479, + "max_y": 5252.670662449795, + "center": [ + 2415.2806789234505, + 5252.479790251262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.39496205479, + 5252.670662449795 + ], + [ + 2415.166395792111, + 5252.28891805273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.166395792111, + "min_y": 5252.28891805273, + "max_x": 2415.847488396909, + "max_y": 5252.28891805273, + "center": [ + 2415.50694209451, + 5252.28891805273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.166395792111, + 5252.28891805273 + ], + [ + 2415.847488396909, + 5252.28891805273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.618922134227, + "min_y": 5252.28891805273, + "max_x": 2415.847488396909, + "max_y": 5252.670662449795, + "center": [ + 2415.733205265568, + 5252.479790251262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.847488396909, + 5252.28891805273 + ], + [ + 2415.618922134227, + 5252.670662449795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.166395792111, + "min_y": 5253.04471374018, + "max_x": 2415.39496205479, + "max_y": 5253.426458137248, + "center": [ + 2415.2806789234505, + 5253.2355859387135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.39496205479, + 5253.04471374018 + ], + [ + 2415.166395792111, + 5253.426458137248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.166395792111, + "min_y": 5253.426458137248, + "max_x": 2415.847488396909, + "max_y": 5253.426458137248, + "center": [ + 2415.50694209451, + 5253.426458137248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.166395792111, + 5253.426458137248 + ], + [ + 2415.847488396909, + 5253.426458137248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.618922134227, + "min_y": 5253.04471374018, + "max_x": 2415.847488396909, + "max_y": 5253.426458137248, + "center": [ + 2415.733205265568, + 5253.2355859387135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.847488396909, + 5253.426458137248 + ], + [ + 2415.618922134227, + 5253.04471374018 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.50694209451, + "min_y": 5253.629131551089, + "max_x": 2415.50694209451, + "max_y": 5254.065994391405, + "center": [ + 2415.50694209451, + 5253.847562971247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.50694209451, + 5253.629131551089 + ], + [ + 2415.50694209451, + 5254.065994391405 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.50694209451, + "min_y": 5254.60795546245, + "max_x": 2415.50694209451, + "max_y": 5254.986903852424, + "center": [ + 2415.50694209451, + 5254.7974296574375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.50694209451, + 5254.60795546245 + ], + [ + 2415.50694209451, + 5254.986903852424 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DA7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2414.442717480194, + "min_y": 5257.635138497403, + "max_x": 2416.010202873643, + "max_y": 5258.941376325277, + "center": [ + 2415.2264601769184, + 5258.28825741134 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556DA8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2414.0793787885686, + "min_y": 5251.605895672958, + "max_x": 2416.9345054004516, + "max_y": 5254.4610222848405, + "center": [ + 2415.50694209451, + 5253.033458978899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.50694209451, + 5253.033458978899 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.924891267089, + "min_y": 5254.60795546245, + "max_x": 2416.088992921932, + "max_y": 5254.60795546245, + "center": [ + 2415.5069420945106, + 5254.60795546245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.924891267089, + 5254.60795546245 + ], + [ + 2416.088992921932, + 5254.60795546245 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.924891267089, + "min_y": 5254.065994391405, + "max_x": 2416.088992921932, + "max_y": 5254.065994391405, + "center": [ + 2415.5069420945106, + 5254.065994391405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.088992921932, + 5254.065994391405 + ], + [ + 2414.924891267089, + 5254.065994391405 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DAB", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2413.627918979112, + "min_y": 5255.595590894492, + "max_x": 2418.330375159459, + "max_y": 5256.901828722365, + "center": [ + 2415.9791470692853, + 5256.248709808428 + ] + }, + "raw_value": "10221A", + "clean_value": "10221A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556DAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.924891267089, + "min_y": 5254.065994391405, + "max_x": 2414.924891267089, + "max_y": 5254.60795546245, + "center": [ + 2414.924891267089, + 5254.336974926928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.924891267089, + 5254.065994391405 + ], + [ + 2414.924891267089, + 5254.60795546245 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556DAD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2413.249782235117, + "min_y": 5254.986903852424, + "max_x": 2417.7641019539033, + "max_y": 5259.50122357121, + "center": [ + 2415.50694209451, + 5257.244063711817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.50694209451, + 5257.244063711817 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556DAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.402825129812, + "min_y": 5232.906411200214, + "max_x": 2430.474986929458, + "max_y": 5233.125303947034, + "center": [ + 2429.938906029635, + 5233.015857573624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.402825129812, + 5233.125303947034 + ], + [ + 2430.474986929458, + 5232.906411200214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.402722820028, + "min_y": 5231.812448790481, + "max_x": 2430.474918722934, + "max_y": 5232.031174429176, + "center": [ + 2429.938820771481, + 5231.921811609828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.402722820028, + 5231.812448790481 + ], + [ + 2430.474918722934, + 5232.031174429176 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.474918722934, + "min_y": 5232.031174429176, + "max_x": 2430.474986929458, + "max_y": 5232.906411200214, + "center": [ + 2430.474952826196, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.474918722934, + 5232.031174429176 + ], + [ + 2430.474986929458, + 5232.906411200214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.402722820028, + "min_y": 5231.812448790481, + "max_x": 2429.402825129812, + "max_y": 5233.125303947034, + "center": [ + 2429.40277397492, + 5232.468876368757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.402722820028, + 5231.812448790481 + ], + [ + 2429.402825129812, + 5233.125303947034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.832474355071, + "min_y": 5231.920021535226, + "max_x": 2421.447634055037, + "max_y": 5232.288343256914, + "center": [ + 2421.140054205054, + 5232.1041823960695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.447634055037, + 5231.920021535226 + ], + [ + 2420.832474355071, + 5232.288343256914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.614551965387, + "min_y": 5232.649242372477, + "max_x": 2420.229711665352, + "max_y": 5233.017564094161, + "center": [ + 2419.9221318153695, + 5232.833403233319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.229711665352, + 5232.649242372477 + ], + [ + 2419.614551965387, + 5233.017564094161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.447634055037, + "min_y": 5231.920021535226, + "max_x": 2421.447634055037, + "max_y": 5233.017564094161, + "center": [ + 2421.447634055037, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.447634055037, + 5233.017564094161 + ], + [ + 2421.447634055037, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.614551965387, + "min_y": 5231.920021535226, + "max_x": 2419.614551965387, + "max_y": 5233.017564094161, + "center": [ + 2419.614551965387, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.614551965387, + 5233.017564094161 + ], + [ + 2419.614551965387, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.832474355071, + "min_y": 5232.649242372477, + "max_x": 2421.447634055037, + "max_y": 5233.017564094161, + "center": [ + 2421.140054205054, + 5232.833403233319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.447634055037, + 5233.017564094161 + ], + [ + 2420.832474355071, + 5232.649242372477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.614551965387, + "min_y": 5231.920021535226, + "max_x": 2420.229711665352, + "max_y": 5232.288343256914, + "center": [ + 2419.9221318153695, + 5232.1041823960695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.229711665352, + 5232.288343256914 + ], + [ + 2419.614551965387, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.185898240975, + "min_y": 5231.899730468443, + "max_x": 2419.185898240975, + "max_y": 5233.037855160949, + "center": [ + 2419.185898240975, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.185898240975, + 5233.037855160949 + ], + [ + 2419.185898240975, + 5231.899730468443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.876287779449, + "min_y": 5231.899730468443, + "max_x": 2421.876287779449, + "max_y": 5233.037855160949, + "center": [ + 2421.876287779449, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.876287779449, + 5233.037855160949 + ], + [ + 2421.876287779449, + 5231.899730468443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2420.179819956974, + "min_y": 5232.117519761454, + "max_x": 2420.8823660634525, + "max_y": 5232.8200658679325, + "center": [ + 2420.531093010213, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.531093010213, + 5232.468792814693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2440.081838521677, + "min_y": 5241.768683410107, + "max_x": 2440.300731268498, + "max_y": 5242.840845209753, + "center": [ + 2440.191284895088, + 5242.30476430993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.300731268498, + 5242.840845209753 + ], + [ + 2440.081838521677, + 5241.768683410107 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.987876111943, + "min_y": 5241.768751616632, + "max_x": 2439.20660175064, + "max_y": 5242.840947519538, + "center": [ + 2439.0972389312915, + 5242.304849568085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.987876111943, + 5242.840947519538 + ], + [ + 2439.20660175064, + 5241.768751616632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.20660175064, + "min_y": 5241.768683410107, + "max_x": 2440.081838521677, + "max_y": 5241.768751616632, + "center": [ + 2439.6442201361588, + 5241.768717513369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.20660175064, + 5241.768751616632 + ], + [ + 2440.081838521677, + 5241.768683410107 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.987876111943, + "min_y": 5242.840845209753, + "max_x": 2440.300731268498, + "max_y": 5242.840947519538, + "center": [ + 2439.6443036902206, + 5242.840896364645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.987876111943, + 5242.840947519538 + ], + [ + 2440.300731268498, + 5242.840845209753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DBF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2435.6665062746206, + "min_y": 5230.483049114412, + "max_x": 2439.6346579659157, + "max_y": 5234.451200805707, + "center": [ + 2437.650582120268, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.650582120268, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2435.345102743406, + "min_y": 5228.940337831331, + "max_x": 2436.446872007684, + "max_y": 5230.889899888571, + "center": [ + 2435.895987375545, + 5229.915118859951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.446872007684, + 5230.889899888571 + ], + [ + 2435.345102743406, + 5228.940337831331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2438.85429223285, + "min_y": 5228.940337831331, + "max_x": 2439.95606149713, + "max_y": 5230.889899888571, + "center": [ + 2439.40517686499, + 5229.915118859951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.85429223285, + 5230.889899888571 + ], + [ + 2439.95606149713, + 5228.940337831331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2435.345102743406, + "min_y": 5228.940337831331, + "max_x": 2439.95606149713, + "max_y": 5228.940337831331, + "center": [ + 2437.650582120268, + 5228.940337831331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.95606149713, + 5228.940337831331 + ], + [ + 2435.345102743406, + 5228.940337831331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2437.210052601293, + "min_y": 5232.026595441084, + "max_x": 2438.0911116392435, + "max_y": 5232.907654479035, + "center": [ + 2437.650582120268, + 5232.46712496006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.650582120268, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.646040155803, + "min_y": 5232.46712496006, + "max_x": 2439.646216607635, + "max_y": 5234.731382477997, + "center": [ + 2439.646128381719, + 5233.599253719029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155803, + 5234.731382477997 + ], + [ + 2439.646216607635, + 5232.46712496006 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.087123342948, + "min_y": 5234.731382477997, + "max_x": 2440.204956968664, + "max_y": 5234.731382477997, + "center": [ + 2439.646040155806, + 5234.731382477997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.204956968664, + 5234.731382477997 + ], + [ + 2439.087123342948, + 5234.731382477997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DC6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2419.630169642688, + "min_y": 5255.224188793262, + "max_x": 2419.630169642688, + "max_y": 5261.924395044166, + "center": [ + 2419.630169642688, + 5258.574291918714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.630169642688, + 5255.224188793262 + ], + [ + 2419.630169642688, + 5261.924395044166 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2440.242634343726, + "min_y": 5260.435243337468, + "max_x": 2440.242634343726, + "max_y": 5263.413546750864, + "center": [ + 2440.242634343726, + 5261.924395044166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.242634343726, + 5263.413546750864 + ], + [ + 2440.242634343726, + 5260.435243337468 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DC8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2439.644220136159, + "min_y": 5241.342356617556, + "max_x": 2439.644220136159, + "max_y": 5241.76871751337, + "center": [ + 2439.644220136159, + 5241.555537065463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.644220136159, + 5241.76871751337 + ], + [ + 2439.644220136159, + 5241.342356617556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DC9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2441.318989743724, + "min_y": 5255.508183705302, + "max_x": 2446.6944202256127, + "max_y": 5256.6280650556955, + "center": [ + 2444.0067049846684, + 5256.068124380499 + ] + }, + "raw_value": "UFD-9005", + "clean_value": "UFD-9005", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DCA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2420.193974215433, + "min_y": 5254.285806403624, + "max_x": 2420.195452942664, + "max_y": 5258.317081502084, + "center": [ + 2420.1947135790488, + 5256.301443952854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.193974215433, + 5254.285806403624 + ], + [ + 2420.195452942664, + 5258.317081502084 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.484111374627, + "min_y": 5240.489657004085, + "max_x": 2423.484111374627, + "max_y": 5251.192158911514, + "center": [ + 2423.484111374627, + 5245.8409079578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.484111374627, + 5240.489657004085 + ], + [ + 2423.484111374627, + 5251.192158911514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DCC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2423.2661248584054, + "min_y": 5251.745615851394, + "max_x": 2423.7020978908486, + "max_y": 5252.181588883837, + "center": [ + 2423.484111374627, + 5251.963602367616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.484111374627, + 5251.963602367616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.130973218347, + "min_y": 5251.192158911514, + "max_x": 2423.837249530909, + "max_y": 5251.192158911514, + "center": [ + 2423.484111374628, + 5251.192158911514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.837249530909, + 5251.192158911514 + ], + [ + 2423.130973218347, + 5251.192158911514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.130973218347, + "min_y": 5252.735045823717, + "max_x": 2423.837249530909, + "max_y": 5252.735045823717, + "center": [ + 2423.484111374628, + 5252.735045823717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.837249530909, + 5252.735045823717 + ], + [ + 2423.130973218347, + 5252.735045823717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.143565072229, + "min_y": 5251.39483232536, + "max_x": 2423.372131334908, + "max_y": 5251.776576722424, + "center": [ + 2423.2578482035688, + 5251.585704523892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.372131334908, + 5251.776576722424 + ], + [ + 2423.143565072229, + 5251.39483232536 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.143565072229, + "min_y": 5251.39483232536, + "max_x": 2423.824657677027, + "max_y": 5251.39483232536, + "center": [ + 2423.484111374628, + 5251.39483232536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.143565072229, + 5251.39483232536 + ], + [ + 2423.824657677027, + 5251.39483232536 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.596091414345, + "min_y": 5251.39483232536, + "max_x": 2423.824657677027, + "max_y": 5251.776576722424, + "center": [ + 2423.710374545686, + 5251.585704523892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.824657677027, + 5251.39483232536 + ], + [ + 2423.596091414345, + 5251.776576722424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.143565072229, + "min_y": 5252.150628012808, + "max_x": 2423.372131334908, + "max_y": 5252.532372409875, + "center": [ + 2423.2578482035688, + 5252.341500211342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.372131334908, + 5252.150628012808 + ], + [ + 2423.143565072229, + 5252.532372409875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.143565072229, + "min_y": 5252.532372409875, + "max_x": 2423.824657677027, + "max_y": 5252.532372409875, + "center": [ + 2423.484111374628, + 5252.532372409875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.143565072229, + 5252.532372409875 + ], + [ + 2423.824657677027, + 5252.532372409875 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2423.596091414345, + "min_y": 5252.150628012808, + "max_x": 2423.824657677027, + "max_y": 5252.532372409875, + "center": [ + 2423.710374545686, + 5252.341500211342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.824657677027, + 5252.532372409875 + ], + [ + 2423.596091414345, + 5252.150628012808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DD5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2423.484111374627, + "min_y": 5252.735045823717, + "max_x": 2423.484111374627, + "max_y": 5255.907452523136, + "center": [ + 2423.484111374627, + 5254.321249173427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.484111374627, + 5252.735045823717 + ], + [ + 2423.484111374627, + 5255.907452523136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DD6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2423.484111374627, + "min_y": 5255.907452523136, + "max_x": 2439.646040155807, + "max_y": 5255.907452523136, + "center": [ + 2431.565075765217, + 5255.907452523136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.484111374627, + 5255.907452523136 + ], + [ + 2439.646040155807, + 5255.907452523136 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DD7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2426.104603962063, + "min_y": 5256.189864792369, + "max_x": 2437.5273937360757, + "max_y": 5257.309746142762, + "center": [ + 2431.8159988490693, + 5256.749805467565 + ] + }, + "raw_value": "P-10226-25A-F2A-n", + "clean_value": "P-10226-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DD8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2419.089643435548, + "min_y": 5233.33816441573, + "max_x": 2426.4808603481447, + "max_y": 5234.458045766123, + "center": [ + 2422.785251891846, + 5233.898105090926 + ] + }, + "raw_value": "T10221BA-03", + "clean_value": "T10221BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556DD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.458291352534, + "min_y": 5264.232597866348, + "max_x": 2428.808813348867, + "max_y": 5264.232597866348, + "center": [ + 2422.6335523507005, + 5264.232597866348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.808813348867, + 5264.232597866348 + ], + [ + 2416.458291352534, + 5264.232597866348 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.458291352534, + "min_y": 5257.032456661066, + "max_x": 2418.463644501319, + "max_y": 5264.232597866348, + "center": [ + 2417.4609679269265, + 5260.632527263708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.458291352534, + 5264.232597866348 + ], + [ + 2418.463644501319, + 5257.032456661066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.463644501319, + "min_y": 5257.032456661066, + "max_x": 2418.463644501319, + "max_y": 5258.030407936864, + "center": [ + 2418.463644501319, + 5257.531432298965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.463644501319, + 5257.032456661066 + ], + [ + 2418.463644501319, + 5258.030407936864 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.144754477251, + "min_y": 5257.915210672204, + "max_x": 2418.463644501319, + "max_y": 5258.030407936864, + "center": [ + 2418.3041994892847, + 5257.972809304534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.463644501319, + 5258.030407936864 + ], + [ + 2418.144754477251, + 5257.915210672204 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DDD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2417.894791742862, + "min_y": 5264.640746380609, + "max_x": 2425.754611807717, + "max_y": 5265.648415619693, + "center": [ + 2421.824701775289, + 5265.144581000151 + ] + }, + "raw_value": "-200~400mmH2O", + "clean_value": "-200~400mmH2O", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DDE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2419.1427303632, + "min_y": 5266.348521531927, + "max_x": 2423.979542710803, + "max_y": 5267.356190771011, + "center": [ + 2421.5611365370014, + 5266.8523561514685 + ] + }, + "raw_value": "BV-10221", + "clean_value": "BV-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DDF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2408.050898024008, + "min_y": 5225.515768106703, + "max_x": 2419.473687798021, + "max_y": 5226.635649457096, + "center": [ + 2413.7622929110144, + 5226.0757087819 + ] + }, + "raw_value": "P-10224-40A-F2A-n", + "clean_value": "P-10224-40A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2430.316716856549, + "min_y": 5233.419578374663, + "max_x": 2435.0202185282014, + "max_y": 5234.539459725056, + "center": [ + 2432.668467692375, + 5233.979519049859 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556DE1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2440.512257724444, + "min_y": 5241.918089385708, + "max_x": 2445.2157593960965, + "max_y": 5243.037970736102, + "center": [ + 2442.86400856027, + 5242.478030060905 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556DE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5236.847097373703, + "max_x": 2412.841683720975, + "max_y": 5249.912379794959, + "center": [ + 2412.841683720975, + 5243.379738584331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.841683720975, + 5249.912379794959 + ], + [ + 2412.841683720975, + 5236.847097373703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2424.040497224908, + "min_y": 5236.847097373703, + "max_x": 2424.040497224908, + "max_y": 5249.912379794959, + "center": [ + 2424.040497224908, + 5243.379738584331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.040497224908, + 5249.912379794959 + ], + [ + 2424.040497224908, + 5236.847097373703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5249.352439119762, + "max_x": 2413.9615650713686, + "max_y": 5250.472320470156, + "center": [ + 2413.401624396172, + 5249.912379794959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.401624396172, + 5249.912379794959 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2422.9206158745164, + "min_y": 5249.352439119762, + "max_x": 2424.04049722491, + "max_y": 5250.472320470156, + "center": [ + 2423.480556549713, + 5249.912379794959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.480556549713, + 5249.912379794959 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2407.242276969008, + "min_y": 5229.343966687673, + "max_x": 2429.639903976876, + "max_y": 5251.74159369554, + "center": [ + 2418.441090472942, + 5240.542780191607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5240.542780191607 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5236.287156698506, + "max_x": 2413.9615650713686, + "max_y": 5237.4070380489, + "center": [ + 2413.401624396172, + 5236.847097373703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.401624396172, + 5236.847097373703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2422.9206158745164, + "min_y": 5236.287156698506, + "max_x": 2424.04049722491, + "max_y": 5237.4070380489, + "center": [ + 2423.480556549713, + 5236.847097373703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2423.480556549713, + 5236.847097373703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DE9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2407.242276969008, + "min_y": 5235.0178834731205, + "max_x": 2429.639903976876, + "max_y": 5257.415510480988, + "center": [ + 2418.441090472942, + 5246.216696977054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5246.216696977054 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.551151330434, + "min_y": 5292.973493731143, + "max_x": 2477.551151330434, + "max_y": 5306.038776152399, + "center": [ + 2477.551151330434, + 5299.506134941771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.551151330434, + 5306.038776152399 + ], + [ + 2477.551151330434, + 5292.973493731143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5292.973493731143, + "max_x": 2488.749964834367, + "max_y": 5306.038776152399, + "center": [ + 2488.749964834367, + 5299.506134941771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.749964834367, + 5306.038776152399 + ], + [ + 2488.749964834367, + 5292.973493731143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DEC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2477.551151330433, + "min_y": 5305.478835477202, + "max_x": 2478.6710326808266, + "max_y": 5306.598716827596, + "center": [ + 2478.11109200563, + 5306.038776152399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.11109200563, + 5306.038776152399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2487.6300834839744, + "min_y": 5305.478835477202, + "max_x": 2488.749964834368, + "max_y": 5306.598716827596, + "center": [ + 2488.190024159171, + 5306.038776152399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.190024159171, + 5306.038776152399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DEE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2471.951744578466, + "min_y": 5285.470363045114, + "max_x": 2494.349371586334, + "max_y": 5307.867990052981, + "center": [ + 2483.1505580824, + 5296.669176549048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.1505580824, + 5296.669176549048 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DEF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2477.551151330433, + "min_y": 5292.413553055946, + "max_x": 2478.6710326808266, + "max_y": 5293.53343440634, + "center": [ + 2478.11109200563, + 5292.973493731143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.11109200563, + 5292.973493731143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2487.6300834839744, + "min_y": 5292.413553055946, + "max_x": 2488.749964834368, + "max_y": 5293.53343440634, + "center": [ + 2488.190024159171, + 5292.973493731143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.190024159171, + 5292.973493731143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2471.951744578466, + "min_y": 5291.144279830562, + "max_x": 2494.349371586334, + "max_y": 5313.541906838429, + "center": [ + 2483.1505580824, + 5302.343093334495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.1505580824, + 5302.343093334495 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2500.550606377367, + "min_y": 5315.321845503479, + "max_x": 2507.7178470198846, + "max_y": 5316.8150206373375, + "center": [ + 2504.1342266986258, + 5316.068433070408 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DF3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2499.451226971251, + "min_y": 5314.566538773653, + "max_x": 2509.732248367704, + "max_y": 5314.566538773653, + "center": [ + 2504.5917376694774, + 5314.566538773653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.451226971251, + 5314.566538773653 + ], + [ + 2509.732248367704, + 5314.566538773653 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DF4", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2499.451226971251, + "min_y": 5317.544097611194, + "max_x": 2509.732248367704, + "max_y": 5317.544097611194, + "center": [ + 2504.5917376694774, + 5317.544097611194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2509.732248367704, + 5317.544097611194 + ], + [ + 2499.451226971251, + 5317.544097611194 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2499.451226971251, + "min_y": 5314.566538773653, + "max_x": 2499.451226971251, + "max_y": 5317.544097611194, + "center": [ + 2499.451226971251, + 5316.055318192423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.451226971251, + 5317.544097611194 + ], + [ + 2499.451226971251, + 5314.566538773653 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2495.959343687949, + "min_y": 5318.506168276774, + "max_x": 2506.7102046517257, + "max_y": 5319.626049627167, + "center": [ + 2501.334774169837, + 5319.066108951971 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DF7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2485.640287193337, + "min_y": 5311.35058360793, + "max_x": 2485.640287193337, + "max_y": 5316.055318192423, + "center": [ + 2485.640287193337, + 5313.702950900177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.640287193337, + 5311.35058360793 + ], + [ + 2485.640287193337, + 5316.055318192423 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF8", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2485.640287193337, + "min_y": 5316.055318192423, + "max_x": 2499.451226971251, + "max_y": 5316.055318192423, + "center": [ + 2492.5457570822937, + 5316.055318192423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.640287193337, + 5316.055318192423 + ], + [ + 2499.451226971251, + 5316.055318192423 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DF9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2500.670026724065, + "min_y": 5314.263830757998, + "max_x": 2506.451889946942, + "max_y": 5314.263830757998, + "center": [ + 2503.5609583355035, + 5314.263830757998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.451889946942, + 5314.263830757998 + ], + [ + 2500.670026724065, + 5314.263830757998 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DFA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2500.670026724057, + "min_y": 5311.583357685941, + "max_x": 2506.451889946942, + "max_y": 5311.583357685941, + "center": [ + 2503.5609583355, + 5311.583357685941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.670026724057, + 5311.583357685941 + ], + [ + 2506.451889946942, + 5311.583357685941 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.451889946942, + "min_y": 5311.583357685941, + "max_x": 2506.451889946942, + "max_y": 5314.263830757998, + "center": [ + 2506.451889946942, + 5312.923594221969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.451889946942, + 5311.583357685941 + ], + [ + 2506.451889946942, + 5314.263830757998 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556DFC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2499.329790188033, + "min_y": 5312.923594221969, + "max_x": 2500.67002672406, + "max_y": 5314.263830757993, + "center": [ + 2499.9999084560463, + 5313.593712489981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.67002672406, + 5314.263830757993 + ], + [ + 2499.329790188033, + 5312.923594221969 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DFD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2499.329790188033, + "min_y": 5311.58335768594, + "max_x": 2500.67002672406, + "max_y": 5312.923594221969, + "center": [ + 2499.9999084560463, + 5312.253475953955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.329790188033, + 5312.923594221969 + ], + [ + 2500.67002672406, + 5311.58335768594 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556DFE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2501.979332593695, + "min_y": 5312.161098499973, + "max_x": 2503.7711427543245, + "max_y": 5313.6542736338315, + "center": [ + 2502.8752376740094, + 5312.907686066903 + ] + }, + "raw_value": "N2", + "clean_value": "N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556DFF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2498.897333193546, + "min_y": 5309.721256121372, + "max_x": 2504.2727636754344, + "max_y": 5310.841137471765, + "center": [ + 2501.58504843449, + 5310.281196796568 + ] + }, + "raw_value": "UFD-9005", + "clean_value": "UFD-9005", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E00", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2477.956712673301, + "min_y": 5308.709146384435, + "max_x": 2477.956712673301, + "max_y": 5311.594538733078, + "center": [ + 2477.956712673301, + 5310.1518425587565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.956712673301, + 5308.709146384435 + ], + [ + 2477.956712673301, + 5311.594538733078 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E01", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2478.801003720881, + "min_y": 5309.107216134639, + "max_x": 2478.801003720881, + "max_y": 5312.167567404757, + "center": [ + 2478.801003720881, + 5310.637391769698 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.801003720881, + 5309.107216134639 + ], + [ + 2478.801003720881, + 5312.167567404757 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E02", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2479.647045597772, + "min_y": 5309.424128625883, + "max_x": 2479.647100355097, + "max_y": 5311.478291798239, + "center": [ + 2479.647072976434, + 5310.451210212061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.647100355097, + 5309.424128625883 + ], + [ + 2479.647045597772, + 5311.478291798239 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E03", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2475.119098776316, + "min_y": 5314.119248832395, + "max_x": 2478.134832872841, + "max_y": 5314.119248832395, + "center": [ + 2476.6269658245783, + 5314.119248832395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.134832872841, + 5314.119248832395 + ], + [ + 2475.119098776316, + 5314.119248832395 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E04", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2465.980440926531, + "min_y": 5313.385200814231, + "max_x": 2472.2517764887343, + "max_y": 5314.878375948089, + "center": [ + 2469.1161087076325, + 5314.131788381161 + ] + }, + "raw_value": "E-10219", + "clean_value": "E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E05", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5312.630097125696, + "max_x": 2473.629947069615, + "max_y": 5312.630097125696, + "center": [ + 2469.577818931627, + 5312.630097125696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.525690793639, + 5312.630097125696 + ], + [ + 2473.629947069615, + 5312.630097125696 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556E06", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5315.60840053909, + "max_x": 2473.629947069623, + "max_y": 5315.60840053909, + "center": [ + 2469.577818931631, + 5315.60840053909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.629947069623, + 5315.60840053909 + ], + [ + 2465.525690793639, + 5315.60840053909 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556E07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2465.525690793639, + "min_y": 5312.630097125696, + "max_x": 2465.525690793639, + "max_y": 5315.60840053909, + "center": [ + 2465.525690793639, + 5314.119248832393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.525690793639, + 5315.60840053909 + ], + [ + 2465.525690793639, + 5312.630097125696 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E08", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.629947069618, + "min_y": 5312.630097125698, + "max_x": 2475.119098776316, + "max_y": 5314.119248832395, + "center": [ + 2474.374522922967, + 5313.374672979046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.629947069618, + 5312.630097125698 + ], + [ + 2475.119098776316, + 5314.119248832395 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556E09", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2473.629947069618, + "min_y": 5314.119248832395, + "max_x": 2475.119098776316, + "max_y": 5315.608400539093, + "center": [ + 2474.374522922967, + 5314.8638246857445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2475.119098776316, + 5314.119248832395 + ], + [ + 2473.629947069618, + 5315.608400539093 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "556E0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2480.42343596212, + "min_y": 5310.215902618286, + "max_x": 2480.42343596212, + "max_y": 5310.757863689329, + "center": [ + 2480.42343596212, + 5310.486883153808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.42343596212, + 5310.215902618286 + ], + [ + 2480.42343596212, + 5310.757863689329 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556E0B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2485.633567905234, + "min_y": 5316.392672001892, + "max_x": 2497.728286489483, + "max_y": 5317.512553352285, + "center": [ + 2491.6809271973584, + 5316.952612677089 + ] + }, + "raw_value": "VG-10431-50A-F1A-n", + "clean_value": "VG-10431-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2482.103011917255, + "min_y": 5313.210293259654, + "max_x": 2484.473762051967, + "max_y": 5319.773023457755, + "center": [ + 2483.288386984611, + 5316.491658358704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.103011917255, + 5319.773023457755 + ], + [ + 2484.473762051967, + 5313.210293259654 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.473762051967, + "min_y": 5313.210293259654, + "max_x": 2484.473762051967, + "max_y": 5314.208244535453, + "center": [ + 2484.473762051967, + 5313.709268897554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.473762051967, + 5313.210293259654 + ], + [ + 2484.473762051967, + 5314.208244535453 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.154872027899, + "min_y": 5314.093047270794, + "max_x": 2484.473762051967, + "max_y": 5314.208244535453, + "center": [ + 2484.3143170399326, + 5314.150645903123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.473762051967, + 5314.208244535453 + ], + [ + 2484.154872027899, + 5314.093047270794 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E0F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2483.22505687727, + "min_y": 5320.013941082164, + "max_x": 2491.0848769421254, + "max_y": 5321.021610321248, + "center": [ + 2487.1549669096976, + 5320.517775701706 + ] + }, + "raw_value": "-200~400mmH2O", + "clean_value": "-200~400mmH2O", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E10", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2485.49440357888, + "min_y": 5321.668996123155, + "max_x": 2490.331215926483, + "max_y": 5322.676665362239, + "center": [ + 2487.9128097526814, + 5322.1728307426965 + ] + }, + "raw_value": "BV-10200", + "clean_value": "BV-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2482.103011917255, + "min_y": 5319.773023457755, + "max_x": 2494.347484849537, + "max_y": 5319.773023457755, + "center": [ + 2488.2252483833963, + 5319.773023457755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.347484849537, + 5319.773023457755 + ], + [ + 2482.103011917255, + 5319.773023457755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E12", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2320.670577053962, + "min_y": 5214.542818621044, + "max_x": 2320.670577053962, + "max_y": 5220.521165174691, + "center": [ + 2320.670577053962, + 5217.531991897868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.670577053962, + 5214.542818621044 + ], + [ + 2320.670577053962, + 5220.521165174691 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E13", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2273.229401442199, + "min_y": 5201.317590546777, + "max_x": 2280.6206183547956, + "max_y": 5202.43747189717, + "center": [ + 2276.9250098984976, + 5201.877531221973 + ] + }, + "raw_value": "P10216BA-02", + "clean_value": "P10216BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556E14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5214.432650959248, + "max_x": 2281.388792354475, + "max_y": 5214.432650959248, + "center": [ + 2280.81873857398, + 5214.432650959248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.248684793485, + 5214.432650959248 + ], + [ + 2281.388792354475, + 5214.432650959248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.388792354475, + "min_y": 5214.432650959248, + "max_x": 2281.388792354475, + "max_y": 5215.05872389827, + "center": [ + 2281.388792354475, + 5214.745687428759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.388792354475, + 5215.05872389827 + ], + [ + 2281.388792354475, + 5214.432650959248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5214.432650959248, + "max_x": 2280.248684793485, + "max_y": 5215.05872389827, + "center": [ + 2280.248684793485, + 5214.745687428759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.248684793485, + 5215.05872389827 + ], + [ + 2280.248684793485, + 5214.432650959248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5222.016456926411, + "max_x": 2280.81873857398, + "max_y": 5222.494210586881, + "center": [ + 2280.81873857398, + 5222.255333756646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5222.016456926411 + ], + [ + 2280.81873857398, + 5222.494210586881 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556E18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5222.016456926411, + "max_x": 2280.81873857398, + "max_y": 5222.494210586881, + "center": [ + 2280.81873857398, + 5222.255333756646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5222.016456926411 + ], + [ + 2280.81873857398, + 5222.494210586881 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556E19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.999502515362, + "min_y": 5219.853015344635, + "max_x": 2281.3684659361, + "max_y": 5220.469246790769, + "center": [ + 2281.1839842257314, + 5220.161131067702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5219.853015344635 + ], + [ + 2280.999502515362, + 5220.469246790769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5219.853015344635, + "max_x": 2281.3684659361, + "max_y": 5219.853015344635, + "center": [ + 2280.8187385739793, + 5219.853015344635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.269011211859, + 5219.853015344635 + ], + [ + 2281.3684659361, + 5219.853015344635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5219.853015344635, + "max_x": 2280.637974632598, + "max_y": 5220.469246790769, + "center": [ + 2280.453492922228, + 5220.161131067702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.637974632598, + 5220.469246790769 + ], + [ + 2280.269011211859, + 5219.853015344635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.999502515364, + "min_y": 5221.073059628292, + "max_x": 2281.3684659361, + "max_y": 5221.689291074433, + "center": [ + 2281.1839842257323, + 5221.381175351362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5221.689291074433 + ], + [ + 2280.999502515364, + 5221.073059628292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5221.689291074433, + "max_x": 2281.3684659361, + "max_y": 5221.689291074433, + "center": [ + 2280.8187385739793, + 5221.689291074433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.269011211859, + 5221.689291074433 + ], + [ + 2281.3684659361, + 5221.689291074433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5221.073059628292, + "max_x": 2280.637974632595, + "max_y": 5221.689291074433, + "center": [ + 2280.4534929222273, + 5221.381175351362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.637974632595, + 5221.073059628292 + ], + [ + 2280.269011211859, + 5221.689291074433 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.261023236926, + "min_y": 5222.016456926411, + "max_x": 2281.372813871735, + "max_y": 5222.016456926411, + "center": [ + 2280.8169185543306, + 5222.016456926411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.261023236926, + 5222.016456926411 + ], + [ + 2281.372813871735, + 5222.016456926411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.261023236926, + "min_y": 5222.016456926411, + "max_x": 2281.372813871735, + "max_y": 5222.016456926411, + "center": [ + 2280.8169185543306, + 5222.016456926411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.261023236926, + 5222.016456926411 + ], + [ + 2281.372813871735, + 5222.016456926411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.262843256577, + "min_y": 5219.525849492651, + "max_x": 2281.374633891382, + "max_y": 5219.525849492651, + "center": [ + 2280.8187385739793, + 5219.525849492651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.262843256577, + 5219.525849492651 + ], + [ + 2281.374633891382, + 5219.525849492651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.262843256577, + "min_y": 5219.853015344635, + "max_x": 2281.374633891382, + "max_y": 5219.853015344635, + "center": [ + 2280.8187385739793, + 5219.853015344635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.262843256577, + 5219.853015344635 + ], + [ + 2281.374633891382, + 5219.853015344635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5219.525849492651, + "max_x": 2281.3684659361, + "max_y": 5219.525849492651, + "center": [ + 2280.8187385739793, + 5219.525849492651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5219.525849492651 + ], + [ + 2280.269011211859, + 5219.525849492651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5222.016456926411, + "max_x": 2281.3684659361, + "max_y": 5222.016456926411, + "center": [ + 2280.8187385739793, + 5222.016456926411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5222.016456926411 + ], + [ + 2280.269011211859, + 5222.016456926411 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E25", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2280.4668535242936, + "min_y": 5220.419268159846, + "max_x": 2281.170623623667, + "max_y": 5221.123038259219, + "center": [ + 2280.81873857398, + 5220.771153209533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5220.771153209533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5219.525849492651, + "max_x": 2281.388792354475, + "max_y": 5219.525849492651, + "center": [ + 2280.81873857398, + 5219.525849492651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.248684793485, + 5219.525849492651 + ], + [ + 2281.388792354475, + 5219.525849492651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.999502515362, + "min_y": 5216.54761847579, + "max_x": 2281.3684659361, + "max_y": 5217.163849921925, + "center": [ + 2281.1839842257314, + 5216.855734198858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5216.54761847579 + ], + [ + 2280.999502515362, + 5217.163849921925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5216.54761847579, + "max_x": 2281.3684659361, + "max_y": 5216.54761847579, + "center": [ + 2280.8187385739793, + 5216.54761847579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.269011211859, + 5216.54761847579 + ], + [ + 2281.3684659361, + 5216.54761847579 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5216.54761847579, + "max_x": 2280.637974632598, + "max_y": 5217.163849921925, + "center": [ + 2280.453492922228, + 5216.855734198858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.637974632598, + 5217.163849921925 + ], + [ + 2280.269011211859, + 5216.54761847579 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.999502515364, + "min_y": 5217.767662759449, + "max_x": 2281.3684659361, + "max_y": 5218.383894205589, + "center": [ + 2281.1839842257323, + 5218.075778482519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5218.383894205589 + ], + [ + 2280.999502515364, + 5217.767662759449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5218.383894205589, + "max_x": 2281.3684659361, + "max_y": 5218.383894205589, + "center": [ + 2280.8187385739793, + 5218.383894205589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.269011211859, + 5218.383894205589 + ], + [ + 2281.3684659361, + 5218.383894205589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5217.767662759449, + "max_x": 2280.637974632595, + "max_y": 5218.383894205589, + "center": [ + 2280.4534929222273, + 5218.075778482519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.637974632595, + 5217.767662759449 + ], + [ + 2280.269011211859, + 5218.383894205589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.261023236926, + "min_y": 5218.711060057568, + "max_x": 2281.372813871735, + "max_y": 5218.711060057568, + "center": [ + 2280.8169185543306, + 5218.711060057568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.261023236926, + 5218.711060057568 + ], + [ + 2281.372813871735, + 5218.711060057568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.261023236926, + "min_y": 5218.711060057568, + "max_x": 2281.372813871735, + "max_y": 5218.711060057568, + "center": [ + 2280.8169185543306, + 5218.711060057568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.261023236926, + 5218.711060057568 + ], + [ + 2281.372813871735, + 5218.711060057568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.262843256577, + "min_y": 5216.220452623806, + "max_x": 2281.374633891382, + "max_y": 5216.220452623806, + "center": [ + 2280.8187385739793, + 5216.220452623806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.262843256577, + 5216.220452623806 + ], + [ + 2281.374633891382, + 5216.220452623806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.262843256577, + "min_y": 5216.54761847579, + "max_x": 2281.374633891382, + "max_y": 5216.54761847579, + "center": [ + 2280.8187385739793, + 5216.54761847579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.262843256577, + 5216.54761847579 + ], + [ + 2281.374633891382, + 5216.54761847579 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5216.220452623806, + "max_x": 2281.3684659361, + "max_y": 5216.220452623806, + "center": [ + 2280.8187385739793, + 5216.220452623806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5216.220452623806 + ], + [ + 2280.269011211859, + 5216.220452623806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.269011211859, + "min_y": 5218.711060057568, + "max_x": 2281.3684659361, + "max_y": 5218.711060057568, + "center": [ + 2280.8187385739793, + 5218.711060057568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.3684659361, + 5218.711060057568 + ], + [ + 2280.269011211859, + 5218.711060057568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E33", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2280.4668535242936, + "min_y": 5217.113871291003, + "max_x": 2281.170623623667, + "max_y": 5217.817641390377, + "center": [ + 2280.81873857398, + 5217.46575634069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5217.46575634069 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.248684793485, + "min_y": 5216.220452623806, + "max_x": 2281.388792354475, + "max_y": 5216.220452623806, + "center": [ + 2280.81873857398, + 5216.220452623806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.248684793485, + 5216.220452623806 + ], + [ + 2281.388792354475, + 5216.220452623806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E35", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5218.711060057568, + "max_x": 2280.81873857398, + "max_y": 5219.525849492651, + "center": [ + 2280.81873857398, + 5219.118454775109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5218.711060057568 + ], + [ + 2280.81873857398, + 5219.525849492651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E36", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5218.711060057568, + "max_x": 2280.81873857398, + "max_y": 5219.525849492651, + "center": [ + 2280.81873857398, + 5219.118454775109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5218.711060057568 + ], + [ + 2280.81873857398, + 5219.525849492651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E37", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5215.056579014389, + "max_x": 2280.81873857398, + "max_y": 5216.220452623806, + "center": [ + 2280.81873857398, + 5215.638515819097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.81873857398, + 5215.056579014389 + ], + [ + 2280.81873857398, + 5216.220452623806 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E38", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2278.645322480713, + "min_y": 5223.674824304897, + "max_x": 2282.5640352925557, + "max_y": 5224.981061908845, + "center": [ + 2280.6046788866342, + 5224.327943106871 + ] + }, + "raw_value": "10216", + "clean_value": "10216", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E39", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.754514142105, + "min_y": 5225.991289509336, + "max_x": 2281.3219992668423, + "max_y": 5227.297527113284, + "center": [ + 2280.5382567044735, + 5226.644408311309 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E3A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2277.9566741791537, + "min_y": 5222.494210586881, + "max_x": 2283.6808029688086, + "max_y": 5228.218339376537, + "center": [ + 2280.818738573981, + 5225.356274981709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.818738573981, + 5225.356274981709 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5213.840260056662, + "max_x": 2285.783200120292, + "max_y": 5213.840260056662, + "center": [ + 2285.224667953128, + 5213.840260056662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.666135785965, + 5213.840260056662 + ], + [ + 2285.783200120292, + 5213.840260056662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5214.103285366228, + "max_x": 2285.783200120292, + "max_y": 5215.968972129426, + "center": [ + 2285.224667953128, + 5215.036128747827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.666135785965, + 5214.103285366228 + ], + [ + 2285.783200120292, + 5215.968972129426 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5214.103285366228, + "max_x": 2285.783200120292, + "max_y": 5214.103285366228, + "center": [ + 2285.224667953128, + 5214.103285366228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.666135785965, + 5214.103285366228 + ], + [ + 2285.783200120292, + 5214.103285366228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5215.968972129426, + "max_x": 2285.783200120292, + "max_y": 5215.968972129426, + "center": [ + 2285.224667953128, + 5215.968972129426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.783200120292, + 5215.968972129426 + ], + [ + 2284.666135785965, + 5215.968972129426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.104615903746, + "min_y": 5215.377814087403, + "max_x": 2285.783200120265, + "max_y": 5215.96897212939, + "center": [ + 2285.4439080120055, + 5215.673393108396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.783200120265, + 5215.96897212939 + ], + [ + 2285.104615903746, + 5215.377814087403 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.104615903746, + "min_y": 5215.234735196148, + "max_x": 2285.343581901796, + "max_y": 5215.377814087403, + "center": [ + 2285.224098902771, + 5215.306274641775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.104615903746, + 5215.377814087403 + ], + [ + 2285.343581901796, + 5215.234735196148 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.582547899813, + "min_y": 5215.091656304863, + "max_x": 2285.783200120303, + "max_y": 5215.968972129366, + "center": [ + 2285.682874010058, + 5215.530314217114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.783200120303, + 5215.968972129366 + ], + [ + 2285.582547899813, + 5215.091656304863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.343581901782, + "min_y": 5215.091656304863, + "max_x": 2285.582547899813, + "max_y": 5215.234735196154, + "center": [ + 2285.4630649007977, + 5215.163195750509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.582547899813, + 5215.091656304863 + ], + [ + 2285.343581901782, + 5215.234735196154 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.666135785965, + "min_y": 5216.231997438991, + "max_x": 2285.783200120292, + "max_y": 5216.231997438991, + "center": [ + 2285.224667953128, + 5216.231997438991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.666135785965, + 5216.231997438991 + ], + [ + 2285.783200120292, + 5216.231997438991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.702274230822, + "min_y": 5213.540447314293, + "max_x": 2285.747061675434, + "max_y": 5213.540447314293, + "center": [ + 2285.224667953128, + 5213.540447314293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.747061675434, + 5213.540447314293 + ], + [ + 2284.702274230822, + 5213.540447314293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.702274230822, + "min_y": 5213.840260056662, + "max_x": 2285.747061675434, + "max_y": 5213.840260056662, + "center": [ + 2285.224667953128, + 5213.840260056662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.747061675434, + 5213.840260056662 + ], + [ + 2284.702274230822, + 5213.840260056662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.700606376188, + "min_y": 5210.770184603876, + "max_x": 2285.745393820807, + "max_y": 5210.770184603876, + "center": [ + 2285.2230000984973, + 5210.770184603876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.745393820807, + 5210.770184603876 + ], + [ + 2284.700606376188, + 5210.770184603876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.025123688526, + "min_y": 5213.144701523468, + "max_x": 2285.4208765084595, + "max_y": 5213.5404543434015, + "center": [ + 2285.223000098493, + 5213.342577933435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5213.342577933435 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885274, + "min_y": 5212.74894870354, + "max_x": 2285.420876508458, + "max_y": 5213.14470152347, + "center": [ + 2285.223000098493, + 5212.946825113505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5212.946825113505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885274, + "min_y": 5212.353195883609, + "max_x": 2285.420876508458, + "max_y": 5212.748948703539, + "center": [ + 2285.223000098493, + 5212.551072293574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5212.551072293574 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885256, + "min_y": 5212.353195883603, + "max_x": 2285.42087650846, + "max_y": 5212.748948703536, + "center": [ + 2285.223000098493, + 5212.55107229357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5212.55107229357 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E4F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885274, + "min_y": 5211.957443063674, + "max_x": 2285.420876508458, + "max_y": 5212.353195883604, + "center": [ + 2285.223000098493, + 5212.155319473639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5212.155319473639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E50", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.025123688525, + "min_y": 5211.561690243738, + "max_x": 2285.4208765084604, + "max_y": 5211.957443063673, + "center": [ + 2285.223000098493, + 5211.759566653705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5211.759566653705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E51", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885274, + "min_y": 5211.165937423806, + "max_x": 2285.420876508458, + "max_y": 5211.561690243736, + "center": [ + 2285.223000098493, + 5211.363813833771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5211.363813833771 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E52", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2285.0251236885274, + "min_y": 5210.770184603879, + "max_x": 2285.420876508458, + "max_y": 5211.165937423809, + "center": [ + 2285.223000098493, + 5210.968061013844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.223000098493, + 5210.968061013844 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E53", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2280.81873857398, + "min_y": 5219.118454775109, + "max_x": 2285.224667953128, + "max_y": 5219.118454775109, + "center": [ + 2283.021703263554, + 5219.118454775109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.224667953128, + 5219.118454775109 + ], + [ + 2280.81873857398, + 5219.118454775109 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E54", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2284.017702572334, + "min_y": 5235.831054000254, + "max_x": 2291.4089194849307, + "max_y": 5236.950935350647, + "center": [ + 2287.7133110286322, + 5236.39099467545 + ] + }, + "raw_value": "P10216BA-05", + "clean_value": "P10216BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556E55", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2286.97057563442, + "min_y": 5218.265213390844, + "max_x": 2299.7372230289047, + "max_y": 5219.3850947412375, + "center": [ + 2293.3538993316624, + 5218.82515406604 + ] + }, + "raw_value": "P-10211-20A-F1A-H50", + "clean_value": "P-10211-20A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E56", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2352.369978664452, + "min_y": 5282.121943597677, + "max_x": 2363.792768438465, + "max_y": 5283.241824948071, + "center": [ + 2358.0813735514585, + 5282.6818842728735 + ] + }, + "raw_value": "P-10219-25A-F2A-n", + "clean_value": "P-10219-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.641871294347, + "min_y": 5282.541459554597, + "max_x": 2169.206089862527, + "max_y": 5282.541881386464, + "center": [ + 2168.923980578437, + 5282.541670470531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.641871294347, + 5282.541459554597 + ], + [ + 2169.206089862527, + 5282.541881386464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.640941913656, + "min_y": 5283.78454686004, + "max_x": 2169.205160481837, + "max_y": 5283.784968691918, + "center": [ + 2168.9230511977466, + 5283.7847577759785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.205160481837, + 5283.784968691918 + ], + [ + 2168.640941913656, + 5283.78454686004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E59", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2168.744305939888, + "min_y": 5282.962848413422, + "max_x": 2169.105467031852, + "max_y": 5283.324009505387, + "center": [ + 2168.92488648587, + 5283.143428959404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.92488648587, + 5283.143428959404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.015530528978, + "min_y": 5283.299611516164, + "max_x": 2169.205286006773, + "max_y": 5283.617073603112, + "center": [ + 2169.1104082678758, + 5283.4583425596375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.015530528978, + 5283.299611516164 + ], + [ + 2169.205286006773, + 5283.617073603112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.641067438593, + "min_y": 5283.616651771243, + "max_x": 2169.205286006773, + "max_y": 5283.617073603112, + "center": [ + 2168.923176722683, + 5283.616862687177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.205286006773, + 5283.617073603112 + ], + [ + 2168.641067438593, + 5283.616651771243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.641067438593, + "min_y": 5283.29829204887, + "max_x": 2168.832006148297, + "max_y": 5283.616651771243, + "center": [ + 2168.736536793445, + 5283.4574719100565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.641067438593, + 5283.616651771243 + ], + [ + 2168.832006148297, + 5283.29829204887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2169.016409325612, + "min_y": 5282.674732968058, + "max_x": 2169.205990537486, + "max_y": 5282.990829280182, + "center": [ + 2169.111199931549, + 5282.83278112412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.016409325612, + 5282.990829280182 + ], + [ + 2169.205990537486, + 5282.674732968058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.641771969308, + "min_y": 5282.674311136193, + "max_x": 2169.205990537486, + "max_y": 5282.674732968058, + "center": [ + 2168.9238812533968, + 5282.674522052126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2169.205990537486, + 5282.674732968058 + ], + [ + 2168.641771969308, + 5282.674311136193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2168.641771969308, + "min_y": 5282.674311136193, + "max_x": 2168.830880317576, + "max_y": 5282.990690571438, + "center": [ + 2168.736326143442, + 5282.832500853816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.641771969308, + 5282.674311136193 + ], + [ + 2168.830880317576, + 5282.990690571438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E60", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2138.444056157775, + "min_y": 5202.989070157965, + "max_x": 2143.147557829427, + "max_y": 5204.108951508359, + "center": [ + 2140.795806993601, + 5203.549010833161 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556E61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5287.660896881206, + "max_x": 2349.034840124117, + "max_y": 5287.660896881206, + "center": [ + 2339.1657865046454, + 5287.660896881206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2329.296732885174, + 5287.660896881206 + ], + [ + 2349.034840124117, + 5287.660896881206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5285.047840396955, + "max_x": 2349.034840124117, + "max_y": 5285.047840396955, + "center": [ + 2339.1657865046454, + 5285.047840396955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2329.296732885174, + 5285.047840396955 + ], + [ + 2349.034840124117, + 5285.047840396955 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2335.020509950775, + "min_y": 5288.407484448134, + "max_x": 2341.291845512978, + "max_y": 5289.900659581992, + "center": [ + 2338.1561777318766, + 5289.154072015062 + ] + }, + "raw_value": "PRODUCT", + "clean_value": "PRODUCT", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E64", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2329.997991921255, + "min_y": 5285.794427963883, + "max_x": 2333.357635972435, + "max_y": 5286.914309314277, + "center": [ + 2331.677813946845, + 5286.35436863908 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E65", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2336.331612189693, + "min_y": 5285.794427963883, + "max_x": 2342.378971481817, + "max_y": 5286.914309314277, + "center": [ + 2339.355291835755, + 5286.35436863908 + ] + }, + "raw_value": "15~38%%DC", + "clean_value": "15~38%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2329.862006328706, + "min_y": 5283.181371479631, + "max_x": 2333.893579190122, + "max_y": 5284.301252830024, + "center": [ + 2331.8777927594138, + 5283.741312154827 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2336.195626597147, + "min_y": 5283.181371479631, + "max_x": 2344.9307011302158, + "max_y": 5284.301252830024, + "center": [ + 2340.5631638636814, + 5283.741312154827 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2335.436175035658, + "min_y": 5282.434783912703, + "max_x": 2335.436175035658, + "max_y": 5287.660896881206, + "center": [ + 2335.436175035658, + 5285.047840396955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2335.436175035658, + 5287.660896881206 + ], + [ + 2335.436175035658, + 5282.434783912703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E69", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2329.296732885174, + "min_y": 5282.434783912703, + "max_x": 2349.034840124117, + "max_y": 5290.647247148921, + "center": [ + 2339.1657865046454, + 5286.541015530813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2329.296732885174, + 5282.434783912703 + ], + [ + 2349.034840124117, + 5282.434783912703 + ], + [ + 2349.034840124117, + 5290.647247148921 + ], + [ + 2329.296732885174, + 5290.647247148921 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E6A", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2125.8930963603098, + "min_y": 5341.666254461189, + "max_x": 2127.5729183859003, + "max_y": 5343.346076486779, + "center": [ + 2126.733007373105, + 5342.506165473984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.733007373105, + 5342.506165473984 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E6B", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2125.8930963603098, + "min_y": 5342.506165473985, + "max_x": 2127.5729183859003, + "max_y": 5344.185987499574, + "center": [ + 2126.733007373105, + 5343.34607648678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.733007373105, + 5343.34607648678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E6C", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2126.3130518667076, + "min_y": 5342.506165473985, + "max_x": 2127.1529628795024, + "max_y": 5343.3460764867805, + "center": [ + 2126.733007373105, + 5342.926120980383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.733007373105, + 5342.926120980383 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E6D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2124.715831676947, + "min_y": 5344.134179790508, + "max_x": 2130.4300050948527, + "max_y": 5349.848353208414, + "center": [ + 2127.5729183859, + 5346.991266499461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.5729183859, + 5346.991266499461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E6E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2126.508693954024, + "min_y": 5347.564914950318, + "max_x": 2128.076179078761, + "max_y": 5348.871152554266, + "center": [ + 2127.2924365163926, + 5348.218033752291 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E6F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2124.910969428755, + "min_y": 5345.242839067077, + "max_x": 2129.613424802966, + "max_y": 5346.5490766710245, + "center": [ + 2127.2621971158605, + 5345.89595786905 + ] + }, + "raw_value": "10215A", + "clean_value": "10215A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E70", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2138.045681139412, + "min_y": 5344.134179790508, + "max_x": 2143.759854557318, + "max_y": 5349.848353208414, + "center": [ + 2140.902767848365, + 5346.991266499461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.902767848365, + 5346.991266499461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E71", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2139.838543416489, + "min_y": 5347.564914950318, + "max_x": 2141.406028541226, + "max_y": 5348.871152554266, + "center": [ + 2140.6222859788577, + 5348.218033752291 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E72", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2138.21750254999, + "min_y": 5345.240879710672, + "max_x": 2142.9199579242013, + "max_y": 5346.54711731462, + "center": [ + 2140.5687302370957, + 5345.893998512645 + ] + }, + "raw_value": "10215B", + "clean_value": "10215B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E73", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2127.5729183859, + "min_y": 5343.34607648678, + "max_x": 2127.5729183859, + "max_y": 5344.134179790509, + "center": [ + 2127.5729183859, + 5343.740128138645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.5729183859, + 5344.134179790509 + ], + [ + 2127.5729183859, + 5343.34607648678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E74", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2127.5729183859, + "min_y": 5341.718062170256, + "max_x": 2127.5729183859, + "max_y": 5342.506165473984, + "center": [ + 2127.5729183859, + 5342.112113822121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.5729183859, + 5342.506165473984 + ], + [ + 2127.5729183859, + 5341.718062170256 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E75", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2139.222945822775, + "min_y": 5341.666254461189, + "max_x": 2140.9027678483653, + "max_y": 5343.346076486779, + "center": [ + 2140.06285683557, + 5342.506165473984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.06285683557, + 5342.506165473984 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E76", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2139.222945822775, + "min_y": 5342.506165473985, + "max_x": 2140.9027678483653, + "max_y": 5344.185987499574, + "center": [ + 2140.06285683557, + 5343.34607648678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.06285683557, + 5343.34607648678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E77", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2139.6429013291727, + "min_y": 5342.506165473985, + "max_x": 2140.4828123419675, + "max_y": 5343.3460764867805, + "center": [ + 2140.06285683557, + 5342.926120980383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.06285683557, + 5342.926120980383 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E78", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2140.902767848365, + "min_y": 5343.34607648678, + "max_x": 2140.902767848365, + "max_y": 5344.134179790509, + "center": [ + 2140.902767848365, + 5343.740128138645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.902767848365, + 5344.134179790509 + ], + [ + 2140.902767848365, + 5343.34607648678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E79", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2140.902767848365, + "min_y": 5341.718062170256, + "max_x": 2140.902767848365, + "max_y": 5342.506165473984, + "center": [ + 2140.902767848365, + 5342.112113822121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.902767848365, + 5342.506165473984 + ], + [ + 2140.902767848365, + 5341.718062170256 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7A", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2207.322869974305, + "min_y": 5341.651338867881, + "max_x": 2209.0026919998954, + "max_y": 5343.331160893471, + "center": [ + 2208.1627809871, + 5342.491249880676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.1627809871, + 5342.491249880676 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7B", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2207.322869974305, + "min_y": 5342.491249880675, + "max_x": 2209.0026919998954, + "max_y": 5344.171071906265, + "center": [ + 2208.1627809871, + 5343.33116089347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.1627809871, + 5343.33116089347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7C", + "entity_type": "ARC", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2207.742825480703, + "min_y": 5342.491249880675, + "max_x": 2208.5827364934976, + "max_y": 5343.331160893471, + "center": [ + 2208.1627809871, + 5342.911205387073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.1627809871, + 5342.911205387073 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2209.002691999895, + "min_y": 5343.33116089347, + "max_x": 2209.002691999895, + "max_y": 5344.1192641972, + "center": [ + 2209.002691999895, + 5343.725212545335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.002691999895, + 5344.1192641972 + ], + [ + 2209.002691999895, + 5343.33116089347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2209.002691999895, + "min_y": 5341.703146576946, + "max_x": 2209.002691999895, + "max_y": 5342.491249880676, + "center": [ + 2209.002691999895, + 5342.097198228811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2209.002691999895, + 5342.491249880676 + ], + [ + 2209.002691999895, + 5341.703146576946 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E7F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2341.214054171921, + "min_y": 5324.968591065143, + "max_x": 2341.214054171921, + "max_y": 5374.263562901479, + "center": [ + 2341.214054171921, + 5349.616076983311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.214054171921, + 5374.263562901479 + ], + [ + 2341.214054171921, + 5324.968591065143 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E80", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2306.714113999754, + "min_y": 5275.117094840984, + "max_x": 2311.417615671406, + "max_y": 5276.236976191377, + "center": [ + 2309.06586483558, + 5275.677035516181 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556E81", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2369.820358070467, + "min_y": 5281.218299953055, + "max_x": 2381.24314784448, + "max_y": 5282.338181303448, + "center": [ + 2375.5317529574736, + 5281.778240628251 + ] + }, + "raw_value": "P-10220-25A-F1A-n", + "clean_value": "P-10220-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5382.817538988273, + "max_x": 2381.051940777394, + "max_y": 5382.817538988273, + "center": [ + 2380.5654250715133, + 5382.817538988273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.051940777394, + 5382.817538988273 + ], + [ + 2380.078909365633, + 5382.817538988273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E83", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2380.565425071515, + "min_y": 5382.817538988273, + "max_x": 2380.565425071515, + "max_y": 5383.305191928954, + "center": [ + 2380.565425071515, + 5383.061365458613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.565425071515, + 5382.817538988273 + ], + [ + 2380.565425071515, + 5383.305191928954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5380.673754533138, + "max_x": 2381.051940777394, + "max_y": 5380.673754533138, + "center": [ + 2380.5654250715133, + 5380.673754533138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.078909365633, + 5380.673754533138 + ], + [ + 2381.051940777394, + 5380.673754533138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E85", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2380.2516641547613, + "min_y": 5381.468346559902, + "max_x": 2380.8745096419366, + "max_y": 5382.091192047076, + "center": [ + 2380.563086898349, + 5381.779769303489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.563086898349, + 5381.779769303489 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5380.963300472426, + "max_x": 2380.406564096789, + "max_y": 5381.510539405784, + "center": [ + 2380.242736731211, + 5381.236919939105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.406564096789, + 5381.510539405784 + ], + [ + 2380.078909365633, + 5380.963300472426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5380.963300472426, + "max_x": 2381.051940777394, + "max_y": 5380.963300472426, + "center": [ + 2380.5654250715133, + 5380.963300472426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.078909365633, + 5380.963300472426 + ], + [ + 2381.051940777394, + 5380.963300472426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.72306528509, + "min_y": 5380.963300472426, + "max_x": 2381.051940777394, + "max_y": 5381.5125782838, + "center": [ + 2380.887503031242, + 5381.237939378114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.051940777394, + 5380.963300472426 + ], + [ + 2380.72306528509, + 5381.5125782838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5382.043055177703, + "max_x": 2380.405446684774, + "max_y": 5382.588427843611, + "center": [ + 2380.2421780252034, + 5382.315741510656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.405446684774, + 5382.043055177703 + ], + [ + 2380.078909365633, + 5382.588427843611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.078909365633, + "min_y": 5382.588427843611, + "max_x": 2381.051940777394, + "max_y": 5382.588427843611, + "center": [ + 2380.5654250715133, + 5382.588427843611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.078909365633, + 5382.588427843611 + ], + [ + 2381.051940777394, + 5382.588427843611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.725403458257, + "min_y": 5382.043055177703, + "max_x": 2381.051940777394, + "max_y": 5382.588427843611, + "center": [ + 2380.8886721178255, + 5382.315741510656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.051940777394, + 5382.588427843611 + ], + [ + 2380.725403458257, + 5382.043055177703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E8C", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2380.565425071515, + "min_y": 5380.186101592457, + "max_x": 2380.565425071515, + "max_y": 5380.673754533138, + "center": [ + 2380.565425071515, + 5380.429928062797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.565425071515, + 5380.673754533138 + ], + [ + 2380.565425071515, + 5380.186101592457 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.179439016385, + "min_y": 5379.675654502378, + "max_x": 2380.179439016385, + "max_y": 5380.195976483576, + "center": [ + 2380.179439016385, + 5379.935815492977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.179439016385, + 5380.195976483576 + ], + [ + 2380.179439016385, + 5379.675654502378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.947718807635, + "min_y": 5379.675654502378, + "max_x": 2380.947718807635, + "max_y": 5380.195976483576, + "center": [ + 2380.947718807635, + 5379.935815492977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.947718807635, + 5380.195976483576 + ], + [ + 2380.947718807635, + 5379.675654502378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.179439016385, + "min_y": 5379.675654502378, + "max_x": 2380.947718807635, + "max_y": 5379.675654502378, + "center": [ + 2380.5635789120097, + 5379.675654502378 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.179439016385, + 5379.675654502378 + ], + [ + 2380.947718807635, + 5379.675654502378 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853369423109, + "min_y": 5210.186028981015, + "max_x": 2120.86090286216, + "max_y": 5210.186028981015, + "center": [ + 2120.3571361426348, + 5210.186028981015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.86090286216, + 5210.186028981015 + ], + [ + 2119.853369423109, + 5210.186028981015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.522787088966, + "min_y": 5209.621318334461, + "max_x": 2120.86090286216, + "max_y": 5210.186028981015, + "center": [ + 2120.691844975563, + 5209.903673657738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.522787088966, + 5209.621318334461 + ], + [ + 2120.86090286216, + 5210.186028981015 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853369423109, + "min_y": 5208.503277376696, + "max_x": 2120.86090286216, + "max_y": 5208.503277376696, + "center": [ + 2120.3571361426348, + 5208.503277376696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.86090286216, + 5208.503277376696 + ], + [ + 2119.853369423109, + 5208.503277376696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.522787088966, + "min_y": 5208.503277376696, + "max_x": 2120.86090286216, + "max_y": 5209.067988023249, + "center": [ + 2120.691844975563, + 5208.785632699973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.522787088966, + 5209.067988023249 + ], + [ + 2120.86090286216, + 5208.503277376696 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E94", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2120.034670881953, + "min_y": 5209.022187918173, + "max_x": 2120.6796014033175, + "max_y": 5209.667118439537, + "center": [ + 2120.357136142635, + 5209.344653178855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.357136142635, + 5209.344653178855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853061814943, + "min_y": 5210.464376559265, + "max_x": 2120.860595253994, + "max_y": 5210.464376559265, + "center": [ + 2120.356828534468, + 5210.464376559265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.853061814943, + 5210.464376559265 + ], + [ + 2120.860595253994, + 5210.464376559265 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853061814943, + "min_y": 5208.196766611666, + "max_x": 2120.860595253994, + "max_y": 5208.196766611666, + "center": [ + 2120.356828534468, + 5208.196766611666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.853061814943, + 5208.196766611666 + ], + [ + 2120.860595253994, + 5208.196766611666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853369423109, + "min_y": 5209.621318334461, + "max_x": 2120.191485196306, + "max_y": 5210.186028981015, + "center": [ + 2120.0224273097074, + 5209.903673657738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.853369423109, + 5210.186028981015 + ], + [ + 2120.191485196306, + 5209.621318334461 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.853369423109, + "min_y": 5208.503277376696, + "max_x": 2120.191485196304, + "max_y": 5209.067988023249, + "center": [ + 2120.0224273097065, + 5208.785632699973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.853369423109, + 5208.503277376696 + ], + [ + 2120.191485196304, + 5209.067988023249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E99", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2120.356828534468, + "min_y": 5206.162515971279, + "max_x": 2120.356828534468, + "max_y": 5208.196766611666, + "center": [ + 2120.356828534468, + 5207.179641291473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.356828534468, + 5208.196766611666 + ], + [ + 2120.356828534468, + 5206.162515971279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556E9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.323738673833, + "min_y": 5206.162619358399, + "max_x": 2137.476548973527, + "max_y": 5206.162746442545, + "center": [ + 2136.40014382368, + 5206.162682900472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.476548973527, + 5206.162746442545 + ], + [ + 2135.323738673833, + 5206.162619358399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556E9B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2147.9763486871198, + "min_y": 5222.661188000724, + "max_x": 2148.6212792084843, + "max_y": 5223.306118522089, + "center": [ + 2148.298813947802, + 5222.983653261406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.298813947802, + 5222.983653261406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5224.124841805932, + "max_x": 2148.802580667327, + "max_y": 5224.124841805932, + "center": [ + 2148.2988139478007, + 5224.124841805932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.795047228274, + 5224.124841805932 + ], + [ + 2148.802580667327, + 5224.124841805932 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5221.842464716878, + "max_x": 2148.802580667327, + "max_y": 5221.842464716878, + "center": [ + 2148.2988139478007, + 5221.842464716878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.795047228274, + 5221.842464716878 + ], + [ + 2148.802580667327, + 5221.842464716878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5222.142277459245, + "max_x": 2148.133163001468, + "max_y": 5222.706988105801, + "center": [ + 2147.964105114871, + 5222.424632782523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.133163001468, + 5222.706988105801 + ], + [ + 2147.795047228274, + 5222.142277459245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556E9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5222.142277459245, + "max_x": 2148.802580667327, + "max_y": 5222.142277459245, + "center": [ + 2148.2988139478007, + 5222.142277459245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.795047228274, + 5222.142277459245 + ], + [ + 2148.802580667327, + 5222.142277459245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.464464894131, + "min_y": 5222.142277459245, + "max_x": 2148.802580667327, + "max_y": 5222.706988105801, + "center": [ + 2148.6335227807294, + 5222.424632782523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.802580667327, + 5222.142277459245 + ], + [ + 2148.464464894131, + 5222.706988105801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5223.260318417016, + "max_x": 2148.133163001471, + "max_y": 5223.825029063565, + "center": [ + 2147.964105114873, + 5223.54267374029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.133163001471, + 5223.260318417016 + ], + [ + 2147.795047228274, + 5223.825029063565 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.795047228274, + "min_y": 5223.825029063565, + "max_x": 2148.802580667327, + "max_y": 5223.825029063565, + "center": [ + 2148.2988139478007, + 5223.825029063565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.795047228274, + 5223.825029063565 + ], + [ + 2148.802580667327, + 5223.825029063565 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2148.464464894128, + "min_y": 5223.260318417016, + "max_x": 2148.802580667327, + "max_y": 5223.825029063565, + "center": [ + 2148.6335227807276, + 5223.54267374029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2148.802580667327, + 5223.825029063565 + ], + [ + 2148.464464894128, + 5223.260318417016 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2151.285800425501, + "min_y": 5213.685592791701, + "max_x": 2151.285800425501, + "max_y": 5214.736397196662, + "center": [ + 2151.285800425501, + 5214.210994994182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.285800425501, + 5214.736397196662 + ], + [ + 2151.285800425501, + 5213.685592791701 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.901660529877, + "min_y": 5213.385615328885, + "max_x": 2150.901660529877, + "max_y": 5213.905937310082, + "center": [ + 2150.901660529877, + 5213.645776319483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.901660529877, + 5213.905937310082 + ], + [ + 2150.901660529877, + 5213.385615328885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2151.669940321127, + "min_y": 5213.385615328885, + "max_x": 2151.669940321127, + "max_y": 5213.905937310082, + "center": [ + 2151.669940321127, + 5213.645776319483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2151.669940321127, + 5213.905937310082 + ], + [ + 2151.669940321127, + 5213.385615328885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.901660529877, + "min_y": 5213.385615328885, + "max_x": 2151.669940321127, + "max_y": 5213.385615328885, + "center": [ + 2151.285800425502, + 5213.385615328885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.901660529877, + 5213.385615328885 + ], + [ + 2151.669940321127, + 5213.385615328885 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5219.331862366555, + "max_x": 2159.754495055841, + "max_y": 5221.114403762545, + "center": [ + 2159.754495055841, + 5220.22313306455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5219.331862366555 + ], + [ + 2159.754495055841, + 5221.114403762545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5223.39906322869, + "max_x": 2159.754495055842, + "max_y": 5224.167751665575, + "center": [ + 2159.7544950558413, + 5223.783407447132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055842, + 5223.39906322869 + ], + [ + 2159.754495055841, + 5224.167751665575 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.754495055841, + "min_y": 5224.73916227415, + "max_x": 2159.754495055841, + "max_y": 5225.488892102378, + "center": [ + 2159.754495055841, + 5225.114027188263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5224.73916227415 + ], + [ + 2159.754495055841, + 5225.488892102378 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EAC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2159.4317073298976, + "min_y": 5221.933945769669, + "max_x": 2160.077282781784, + "max_y": 5222.579521221555, + "center": [ + 2159.754495055841, + 5222.256733495612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5222.256733495612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5223.39906322869, + "max_x": 2160.258765542089, + "max_y": 5223.39906322869, + "center": [ + 2159.754495055842, + 5223.39906322869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5223.39906322869 + ], + [ + 2160.258765542089, + 5223.39906322869 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5221.114403762545, + "max_x": 2160.258765542089, + "max_y": 5221.114403762545, + "center": [ + 2159.754495055842, + 5221.114403762545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5221.114403762545 + ], + [ + 2160.258765542089, + 5221.114403762545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EAF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.8535387950656, + "min_y": 5225.488870607187, + "max_x": 2162.6661392369383, + "max_y": 5231.301471049059, + "center": [ + 2159.759839016002, + 5228.395170828123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.759839016002, + 5228.395170828123 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556EB0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2158.249359611581, + "min_y": 5221.573974029153, + "max_x": 2161.2596305001007, + "max_y": 5224.5842449176735, + "center": [ + 2159.754495055841, + 5223.079109473413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.754495055841, + 5223.079109473413 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5224.73916227415, + "max_x": 2160.36817385178, + "max_y": 5224.73916227415, + "center": [ + 2159.754495055843, + 5224.73916227415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.140816259907, + 5224.73916227415 + ], + [ + 2160.36817385178, + 5224.73916227415 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2160.36817385178, + "min_y": 5224.167751665575, + "max_x": 2160.36817385178, + "max_y": 5224.73916227415, + "center": [ + 2160.36817385178, + 5224.453456969863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.36817385178, + 5224.73916227415 + ], + [ + 2160.36817385178, + 5224.167751665575 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5224.167751665575, + "max_x": 2160.36817385178, + "max_y": 5224.167751665575, + "center": [ + 2159.754495055843, + 5224.167751665575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.36817385178, + 5224.167751665575 + ], + [ + 2159.140816259907, + 5224.167751665575 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.140816259907, + "min_y": 5224.167751665575, + "max_x": 2159.140816259907, + "max_y": 5224.73916227415, + "center": [ + 2159.140816259907, + 5224.453456969863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.140816259907, + 5224.167751665575 + ], + [ + 2159.140816259907, + 5224.73916227415 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5221.414516317651, + "max_x": 2159.588678458561, + "max_y": 5221.979791674853, + "center": [ + 2159.419451514078, + 5221.697153996252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.588678458561, + 5221.979791674853 + ], + [ + 2159.250224569595, + 5221.414516317651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5221.414516317651, + "max_x": 2160.258765542089, + "max_y": 5221.414516317651, + "center": [ + 2159.754495055842, + 5221.414516317651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5221.414516317651 + ], + [ + 2160.258765542089, + 5221.414516317651 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.920311653118, + "min_y": 5221.414516317651, + "max_x": 2160.258765542089, + "max_y": 5221.979791674853, + "center": [ + 2160.0895385976037, + 5221.697153996252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.258765542089, + 5221.414516317651 + ], + [ + 2159.920311653118, + 5221.979791674853 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5222.533675316379, + "max_x": 2159.588678458566, + "max_y": 5223.098950673573, + "center": [ + 2159.4194515140807, + 5222.816312994976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.588678458566, + 5222.533675316379 + ], + [ + 2159.250224569595, + 5223.098950673573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.250224569595, + "min_y": 5223.098950673573, + "max_x": 2160.258765542089, + "max_y": 5223.098950673573, + "center": [ + 2159.754495055842, + 5223.098950673573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2159.250224569595, + 5223.098950673573 + ], + [ + 2160.258765542089, + 5223.098950673573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2159.920311653118, + "min_y": 5222.533675316379, + "max_x": 2160.258765542089, + "max_y": 5223.098950673573, + "center": [ + 2160.0895385976037, + 5222.816312994976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2160.258765542089, + 5223.098950673573 + ], + [ + 2159.920311653118, + 5222.533675316379 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.158573637192, + "min_y": 5228.486052724346, + "max_x": 2179.158575646138, + "max_y": 5229.493586163393, + "center": [ + 2179.158574641665, + 5228.98981944387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.158575646138, + 5229.493586163393 + ], + [ + 2179.158573637192, + 5228.486052724346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.764975412561, + "min_y": 5228.467426506367, + "max_x": 2178.764977495787, + "max_y": 5229.512213950982, + "center": [ + 2178.764976454174, + 5228.989820228675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.764977495787, + 5229.512213950982 + ], + [ + 2178.764975412561, + 5228.467426506367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2203.023353234669, + "min_y": 5232.356678475657, + "max_x": 2203.361469007859, + "max_y": 5232.921389122203, + "center": [ + 2203.192411121264, + 5232.6390337989305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2203.361469007859, + 5232.921389122203 + ], + [ + 2203.023353234669, + 5232.356678475657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.353935568812, + "min_y": 5231.238637517886, + "max_x": 2202.692051342006, + "max_y": 5231.80334816444, + "center": [ + 2202.522993455409, + 5231.520992841162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.692051342006, + 5231.80334816444 + ], + [ + 2202.353935568812, + 5231.238637517886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.353935568812, + "min_y": 5232.921389122203, + "max_x": 2203.361469007859, + "max_y": 5232.921389122203, + "center": [ + 2202.8577022883355, + 5232.921389122203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.353935568812, + 5232.921389122203 + ], + [ + 2203.361469007859, + 5232.921389122203 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.353935568812, + "min_y": 5231.238637517886, + "max_x": 2203.361469007859, + "max_y": 5231.238637517886, + "center": [ + 2202.8577022883355, + 5231.238637517886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.353935568812, + 5231.238637517886 + ], + [ + 2203.361469007859, + 5231.238637517886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.353935568812, + "min_y": 5232.356678475657, + "max_x": 2202.692051342006, + "max_y": 5232.921389122203, + "center": [ + 2202.522993455409, + 5232.6390337989305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.353935568812, + 5232.921389122203 + ], + [ + 2202.692051342006, + 5232.356678475657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2203.023353234666, + "min_y": 5231.238637517886, + "max_x": 2203.361469007859, + "max_y": 5231.80334816444, + "center": [ + 2203.1924111212625, + 5231.520992841162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2203.023353234666, + 5231.80334816444 + ], + [ + 2203.361469007859, + 5231.238637517886 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.335308566026, + "min_y": 5230.845137550524, + "max_x": 2203.380096010643, + "max_y": 5230.845137550524, + "center": [ + 2202.8577022883346, + 5230.845137550524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.335308566026, + 5230.845137550524 + ], + [ + 2203.380096010643, + 5230.845137550524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2202.335308566026, + "min_y": 5233.314889089566, + "max_x": 2203.380096010643, + "max_y": 5233.314889089566, + "center": [ + 2202.8577022883346, + 5233.314889089566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.335308566026, + 5233.314889089566 + ], + [ + 2203.380096010643, + 5233.314889089566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2202.535237027652, + "min_y": 5231.7575480593605, + "max_x": 2203.1801675490165, + "max_y": 5232.402478580725, + "center": [ + 2202.857702288334, + 5232.080013320043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2202.857702288334, + 5232.080013320043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742838759113, + "min_y": 5210.186172300065, + "max_x": 2127.750372198164, + "max_y": 5210.186172300065, + "center": [ + 2127.2466054786382, + 5210.186172300065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.750372198164, + 5210.186172300065 + ], + [ + 2126.742838759113, + 5210.186172300065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.412256424969, + "min_y": 5209.621461653511, + "max_x": 2127.750372198164, + "max_y": 5210.186172300065, + "center": [ + 2127.5813143115665, + 5209.903816976788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.412256424969, + 5209.621461653511 + ], + [ + 2127.750372198164, + 5210.186172300065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742838759113, + "min_y": 5208.503420695746, + "max_x": 2127.750372198164, + "max_y": 5208.503420695746, + "center": [ + 2127.2466054786382, + 5208.503420695746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.750372198164, + 5208.503420695746 + ], + [ + 2126.742838759113, + 5208.503420695746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.412256424969, + "min_y": 5208.503420695746, + "max_x": 2127.750372198164, + "max_y": 5209.0681313423, + "center": [ + 2127.5813143115665, + 5208.785776019024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.412256424969, + 5209.0681313423 + ], + [ + 2127.750372198164, + 5208.503420695746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2126.9241402179555, + "min_y": 5209.022331237223, + "max_x": 2127.56907073932, + "max_y": 5209.667261758587, + "center": [ + 2127.246605478638, + 5209.344796497905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246605478638, + 5209.344796497905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742531150946, + "min_y": 5210.464519878314, + "max_x": 2127.750064589996, + "max_y": 5210.464519878314, + "center": [ + 2127.2462978704707, + 5210.464519878314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.742531150946, + 5210.464519878314 + ], + [ + 2127.750064589996, + 5210.464519878314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742531150946, + "min_y": 5208.196909930716, + "max_x": 2127.750064589996, + "max_y": 5208.196909930716, + "center": [ + 2127.2462978704707, + 5208.196909930716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.742531150946, + 5208.196909930716 + ], + [ + 2127.750064589996, + 5208.196909930716 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742838759113, + "min_y": 5209.621461653511, + "max_x": 2127.08095453231, + "max_y": 5210.186172300065, + "center": [ + 2126.9118966457117, + 5209.903816976788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.742838759113, + 5210.186172300065 + ], + [ + 2127.08095453231, + 5209.621461653511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2126.742838759113, + "min_y": 5208.503420695746, + "max_x": 2127.080954532307, + "max_y": 5209.0681313423, + "center": [ + 2126.91189664571, + 5208.785776019024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.742838759113, + 5208.503420695746 + ], + [ + 2127.080954532307, + 5209.0681313423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ECF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2135.320126306598, + "min_y": 5295.817947181827, + "max_x": 2143.3832720294304, + "max_y": 5296.93782853222, + "center": [ + 2139.3516991680144, + 5296.377887857023 + ] + }, + "raw_value": "DP10201ST-01", + "clean_value": "DP10201ST-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556ED0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2150.053772274498, + "min_y": 5312.802489904683, + "max_x": 2158.1169179973303, + "max_y": 5313.9223712550765, + "center": [ + 2154.0853451359144, + 5313.36243057988 + ] + }, + "raw_value": "DP10201CV-01", + "clean_value": "DP10201CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556ED1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.939518747847, + "min_y": 5282.962735859268, + "max_x": 2173.503737316028, + "max_y": 5282.963157691137, + "center": [ + 2173.2216280319376, + 5282.962946775202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.939518747847, + 5282.962735859268 + ], + [ + 2173.503737316028, + 5282.963157691137 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.221628031938, + "min_y": 5282.39740934109, + "max_x": 2173.222050849842, + "max_y": 5282.962946775202, + "center": [ + 2173.22183944089, + 5282.680178058146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.221628031938, + 5282.962946775202 + ], + [ + 2173.222050849842, + 5282.39740934109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.938589367157, + "min_y": 5284.205823164712, + "max_x": 2173.502807935337, + "max_y": 5284.20624499659, + "center": [ + 2173.220698651247, + 5284.206034080651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.502807935337, + 5284.20624499659 + ], + [ + 2172.938589367157, + 5284.205823164712 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2173.0419533933878, + "min_y": 5283.384124718093, + "max_x": 2173.403114485352, + "max_y": 5283.745285810058, + "center": [ + 2173.22253393937, + 5283.564705264075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.22253393937, + 5283.564705264075 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.313177982478, + "min_y": 5283.720887820836, + "max_x": 2173.502933460274, + "max_y": 5284.038349907782, + "center": [ + 2173.408055721376, + 5283.879618864308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.313177982478, + 5283.720887820836 + ], + [ + 2173.502933460274, + 5284.038349907782 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.938714892094, + "min_y": 5284.037928075914, + "max_x": 2173.502933460274, + "max_y": 5284.038349907782, + "center": [ + 2173.220824176184, + 5284.0381389918475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.502933460274, + 5284.038349907782 + ], + [ + 2172.938714892094, + 5284.037928075914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.938714892094, + "min_y": 5283.719568353542, + "max_x": 2173.129653601797, + "max_y": 5284.037928075914, + "center": [ + 2173.0341842469456, + 5283.878748214728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.938714892094, + 5284.037928075914 + ], + [ + 2173.129653601797, + 5283.719568353542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2173.314056779113, + "min_y": 5283.09600927273, + "max_x": 2173.503637990987, + "max_y": 5283.412105584853, + "center": [ + 2173.4088473850497, + 5283.254057428791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.314056779113, + 5283.412105584853 + ], + [ + 2173.503637990987, + 5283.09600927273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556ED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.939419422809, + "min_y": 5283.095587440864, + "max_x": 2173.503637990987, + "max_y": 5283.09600927273, + "center": [ + 2173.221528706898, + 5283.095798356797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.503637990987, + 5283.09600927273 + ], + [ + 2172.939419422809, + 5283.095587440864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2172.939419422809, + "min_y": 5283.095587440864, + "max_x": 2173.128527771077, + "max_y": 5283.411966876111, + "center": [ + 2173.033973596943, + 5283.2537771584875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.939419422809, + 5283.095587440864 + ], + [ + 2173.128527771077, + 5283.411966876111 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EDB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2173.220698651247, + "min_y": 5284.20603408065, + "max_x": 2173.220698651253, + "max_y": 5300.908539244173, + "center": [ + 2173.22069865125, + 5292.557286662412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.220698651247, + 5284.20603408065 + ], + [ + 2173.220698651253, + 5300.908539244173 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EDC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2173.220698651253, + "min_y": 5300.908539244173, + "max_x": 2174.587843381795, + "max_y": 5300.908539244173, + "center": [ + 2173.904271016524, + 5300.908539244173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2173.220698651253, + 5300.908539244173 + ], + [ + 2174.587843381795, + 5300.908539244173 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EDD", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2174.676895713511, + "min_y": 5282.647522672053, + "max_x": 2182.0681126261074, + "max_y": 5283.7674040224465, + "center": [ + 2178.372504169809, + 5283.207463347249 + ] + }, + "raw_value": "T10201BA-09", + "clean_value": "T10201BA-09", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EDE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2179.533900861406, + "min_y": 5283.158985068244, + "max_x": 2186.9251177740025, + "max_y": 5284.278866418637, + "center": [ + 2183.2295093177045, + 5283.71892574344 + ] + }, + "raw_value": "T10201BA-06", + "clean_value": "T10201BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EDF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2167.369173855494, + "min_y": 5274.875341300627, + "max_x": 2174.7603907680905, + "max_y": 5275.99522265102, + "center": [ + 2171.0647823117924, + 5275.435281975824 + ] + }, + "raw_value": "T10201BA-05", + "clean_value": "T10201BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EE0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2167.332823202992, + "min_y": 5270.12725176958, + "max_x": 2174.7240401155887, + "max_y": 5271.247133119973, + "center": [ + 2171.0284316592906, + 5270.687192444777 + ] + }, + "raw_value": "T10201BA-04", + "clean_value": "T10201BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EE1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2285.23061112304, + "min_y": 5234.7433712222, + "max_x": 2287.385946185914, + "max_y": 5234.7433712222, + "center": [ + 2286.308278654477, + 5234.7433712222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.23061112304, + 5234.7433712222 + ], + [ + 2287.385946185914, + 5234.7433712222 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EE2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2288.2778110245185, + "min_y": 5234.392098168962, + "max_x": 2288.980357130997, + "max_y": 5235.09464427544, + "center": [ + 2288.629084077758, + 5234.743371222201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.629084077758, + 5234.743371222201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.385946185914, + "min_y": 5234.194599942735, + "max_x": 2287.385946185914, + "max_y": 5235.292142501664, + "center": [ + 2287.385946185914, + 5234.743371222199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.385946185914, + 5234.194599942735 + ], + [ + 2287.385946185914, + 5235.292142501664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.872221969605, + "min_y": 5234.194599942735, + "max_x": 2289.872221969605, + "max_y": 5235.292142501664, + "center": [ + 2289.872221969605, + 5234.743371222199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.872221969605, + 5234.194599942735 + ], + [ + 2289.872221969605, + 5235.292142501664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.712543032931, + "min_y": 5234.194599942735, + "max_x": 2288.327702732897, + "max_y": 5234.562921664418, + "center": [ + 2288.0201228829137, + 5234.378760803576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.327702732897, + 5234.562921664418 + ], + [ + 2287.712543032931, + 5234.194599942735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.712543032931, + "min_y": 5234.194599942735, + "max_x": 2287.712543032931, + "max_y": 5235.292142501664, + "center": [ + 2287.712543032931, + 5234.743371222199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.712543032931, + 5234.194599942735 + ], + [ + 2287.712543032931, + 5235.292142501664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2287.712543032931, + "min_y": 5234.923820779984, + "max_x": 2288.327702732897, + "max_y": 5235.292142501664, + "center": [ + 2288.0201228829137, + 5235.107981640824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2287.712543032931, + 5235.292142501664 + ], + [ + 2288.327702732897, + 5234.923820779984 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.930465422616, + "min_y": 5234.194599942735, + "max_x": 2289.545625122586, + "max_y": 5234.562921664423, + "center": [ + 2289.238045272601, + 5234.378760803579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.930465422616, + 5234.562921664423 + ], + [ + 2289.545625122586, + 5234.194599942735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.545625122586, + "min_y": 5234.194599942735, + "max_x": 2289.545625122586, + "max_y": 5235.292142501664, + "center": [ + 2289.545625122586, + 5234.743371222199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.545625122586, + 5234.194599942735 + ], + [ + 2289.545625122586, + 5235.292142501664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.930465422616, + "min_y": 5234.923820779976, + "max_x": 2289.545625122586, + "max_y": 5235.292142501664, + "center": [ + 2289.238045272601, + 5235.10798164082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.545625122586, + 5235.292142501664 + ], + [ + 2288.930465422616, + 5234.923820779976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EEB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2289.872221969605, + "min_y": 5234.7433712222, + "max_x": 2293.053788043593, + "max_y": 5234.7433712222, + "center": [ + 2291.463005006599, + 5234.7433712222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.872221969605, + 5234.7433712222 + ], + [ + 2293.053788043593, + 5234.7433712222 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EEC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.053788043593, + "min_y": 5220.52298202896, + "max_x": 2293.053788043593, + "max_y": 5234.7433712222, + "center": [ + 2293.053788043593, + 5227.63317662558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.053788043593, + 5234.7433712222 + ], + [ + 2293.053788043593, + 5220.52298202896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556EED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.452611818912, + "min_y": 5336.602260035456, + "max_x": 2124.254469113151, + "max_y": 5336.602260035456, + "center": [ + 2122.8535404660315, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.254469113151, + 5336.602260035456 + ], + [ + 2121.452611818912, + 5336.602260035456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2124.254469113151, + "min_y": 5336.031380834924, + "max_x": 2124.254469113151, + "max_y": 5337.169505527426, + "center": [ + 2124.254469113151, + 5336.600443181174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.254469113151, + 5337.169505527426 + ], + [ + 2124.254469113151, + 5336.031380834924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2124.58106596017, + "min_y": 5336.031380834924, + "max_x": 2124.58106596017, + "max_y": 5337.169505527426, + "center": [ + 2124.58106596017, + 5336.600443181174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.58106596017, + 5337.169505527426 + ], + [ + 2124.58106596017, + 5336.031380834924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.452611818912, + "min_y": 5336.602260035456, + "max_x": 2124.254469113151, + "max_y": 5336.602260035456, + "center": [ + 2122.8535404660315, + 5336.602260035456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.254469113151, + 5336.602260035456 + ], + [ + 2121.452611818912, + 5336.602260035456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.126014971893, + "min_y": 5336.04733152798, + "max_x": 2121.126014971893, + "max_y": 5337.157188542931, + "center": [ + 2121.126014971893, + 5336.602260035455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.126014971893, + 5337.157188542931 + ], + [ + 2121.126014971893, + 5336.04733152798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.589683590722, + "min_y": 5335.492403020505, + "max_x": 2123.699540605676, + "max_y": 5336.602260035456, + "center": [ + 2123.144612098199, + 5336.0473315279805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.589683590722, + 5336.602260035456 + ], + [ + 2123.699540605676, + 5335.492403020505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.422076351934, + "min_y": 5335.214938766762, + "max_x": 2123.977004859415, + "max_y": 5335.769867274247, + "center": [ + 2123.6995406056744, + 5335.492403020505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.977004859415, + 5335.769867274247 + ], + [ + 2123.422076351934, + 5335.214938766762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.452611818912, + "min_y": 5336.031380834924, + "max_x": 2121.452611818912, + "max_y": 5337.169505527426, + "center": [ + 2121.452611818912, + 5336.600443181174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.452611818912, + 5337.169505527426 + ], + [ + 2121.452611818912, + 5336.031380834924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2288.961686385085, + "min_y": 5229.305477030363, + "max_x": 2296.3529032976817, + "max_y": 5230.425358380757, + "center": [ + 2292.657294841383, + 5229.86541770556 + ] + }, + "raw_value": "P10216BA-06", + "clean_value": "P10216BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EF6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2260.957512030705, + "min_y": 5271.350410717556, + "max_x": 2268.3487289433015, + "max_y": 5272.470292067949, + "center": [ + 2264.6531204870034, + 5271.910351392753 + ] + }, + "raw_value": "C10211BA-03", + "clean_value": "C10211BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EF7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2260.983115237712, + "min_y": 5262.042096239264, + "max_x": 2268.3743321503084, + "max_y": 5263.161977589657, + "center": [ + 2264.67872369401, + 5262.602036914461 + ] + }, + "raw_value": "C10211BA-02", + "clean_value": "C10211BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556EF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.486241059726, + "min_y": 5276.626614577134, + "max_x": 2282.486241059726, + "max_y": 5277.60704890865, + "center": [ + 2282.486241059726, + 5277.116831742892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5276.626614577134 + ], + [ + 2282.486241059726, + 5277.60704890865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.486241059726, + "min_y": 5280.093324692344, + "max_x": 2282.486241059726, + "max_y": 5281.888034838766, + "center": [ + 2282.486241059726, + 5280.990679765555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5280.093324692344 + ], + [ + 2282.486241059726, + 5281.888034838766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.486241059726, + "min_y": 5282.777260853835, + "max_x": 2282.486241059726, + "max_y": 5283.283881693535, + "center": [ + 2282.486241059726, + 5283.0305712736845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5282.777260853835 + ], + [ + 2282.486241059726, + 5283.283881693535 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EFB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2282.134968006487, + "min_y": 5278.4989137472585, + "max_x": 2282.8375141129654, + "max_y": 5279.201459853737, + "center": [ + 2282.486241059726, + 5278.850186800498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5278.850186800498 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5280.093324692344, + "max_x": 2283.035012339192, + "max_y": 5280.093324692344, + "center": [ + 2282.4862410597243, + 5280.093324692344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.937469780257, + 5280.093324692344 + ], + [ + 2283.035012339192, + 5280.093324692344 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5277.60704890865, + "max_x": 2283.035012339192, + "max_y": 5277.60704890865, + "center": [ + 2282.4862410597243, + 5277.60704890865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.937469780257, + 5277.60704890865 + ], + [ + 2283.035012339192, + 5277.60704890865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556EFE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2280.1439576419043, + "min_y": 5277.851612488562, + "max_x": 2284.828524477548, + "max_y": 5282.5361793242055, + "center": [ + 2282.486241059726, + 5280.193895906384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5280.193895906384 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556EFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.486241059726, + "min_y": 5281.012950439581, + "max_x": 2283.867989730242, + "max_y": 5281.012950439587, + "center": [ + 2283.177115394984, + 5281.0129504395845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.486241059726, + 5281.012950439587 + ], + [ + 2283.867989730242, + 5281.012950439581 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.072032008379, + "min_y": 5276.626614577134, + "max_x": 2282.486241059726, + "max_y": 5276.626614577134, + "center": [ + 2281.2791365340527, + 5276.626614577134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.072032008379, + 5276.626614577134 + ], + [ + 2282.486241059726, + 5276.626614577134 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.531237526277, + "min_y": 5282.777260853835, + "max_x": 2283.441244593174, + "max_y": 5282.777260853835, + "center": [ + 2282.486241059725, + 5282.777260853835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.531237526277, + 5282.777260853835 + ], + [ + 2283.441244593174, + 5282.777260853835 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.441244593174, + "min_y": 5281.888034838766, + "max_x": 2283.441244593174, + "max_y": 5282.777260853835, + "center": [ + 2283.441244593174, + 5282.3326478463005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.441244593174, + 5282.777260853835 + ], + [ + 2283.441244593174, + 5281.888034838766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.531237526277, + "min_y": 5281.888034838766, + "max_x": 2283.441244593174, + "max_y": 5281.888034838766, + "center": [ + 2282.486241059725, + 5281.888034838766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.441244593174, + 5281.888034838766 + ], + [ + 2281.531237526277, + 5281.888034838766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.531237526277, + "min_y": 5281.888034838766, + "max_x": 2281.531237526277, + "max_y": 5282.777260853835, + "center": [ + 2281.531237526277, + 5282.3326478463005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.531237526277, + 5281.888034838766 + ], + [ + 2281.531237526277, + 5282.777260853835 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5277.933645755673, + "max_x": 2282.305791501945, + "max_y": 5278.548805455637, + "center": [ + 2282.1216306411006, + 5278.241225605655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.305791501945, + 5278.548805455637 + ], + [ + 2281.937469780257, + 5277.933645755673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5277.933645755673, + "max_x": 2283.035012339192, + "max_y": 5277.933645755673, + "center": [ + 2282.4862410597243, + 5277.933645755673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.937469780257, + 5277.933645755673 + ], + [ + 2283.035012339192, + 5277.933645755673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.666690617507, + "min_y": 5277.933645755673, + "max_x": 2283.035012339192, + "max_y": 5278.548805455637, + "center": [ + 2282.8508514783493, + 5278.241225605655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.035012339192, + 5277.933645755673 + ], + [ + 2282.666690617507, + 5278.548805455637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5279.151568145358, + "max_x": 2282.305791501945, + "max_y": 5279.76672784532, + "center": [ + 2282.1216306411006, + 5279.45914799534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.305791501945, + 5279.151568145358 + ], + [ + 2281.937469780257, + 5279.76672784532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.937469780257, + "min_y": 5279.76672784532, + "max_x": 2283.035012339192, + "max_y": 5279.76672784532, + "center": [ + 2282.4862410597243, + 5279.76672784532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.937469780257, + 5279.76672784532 + ], + [ + 2283.035012339192, + 5279.76672784532 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.666690617504, + "min_y": 5279.151568145358, + "max_x": 2283.035012339192, + "max_y": 5279.76672784532, + "center": [ + 2282.850851478348, + 5279.45914799534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.035012339192, + 5279.76672784532 + ], + [ + 2282.666690617504, + 5279.151568145358 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.867989730242, + "min_y": 5280.366149356737, + "max_x": 2283.867989730242, + "max_y": 5281.659751522419, + "center": [ + 2283.867989730242, + 5281.012950439578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.867989730242, + 5281.659751522419 + ], + [ + 2283.867989730242, + 5280.366149356737 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.693911845321, + "min_y": 5280.389212355119, + "max_x": 2286.693911845321, + "max_y": 5281.636688524042, + "center": [ + 2286.693911845321, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.693911845321, + 5280.389212355119 + ], + [ + 2286.693911845321, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.867989730242, + "min_y": 5280.389212355119, + "max_x": 2283.867989730242, + "max_y": 5281.636688524042, + "center": [ + 2283.867989730242, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.867989730242, + 5280.389212355119 + ], + [ + 2283.867989730242, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2284.8851398468937, + "min_y": 5280.615755563877, + "max_x": 2285.683659702246, + "max_y": 5281.41427541923, + "center": [ + 2285.28439977457, + 5281.015015491554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.28439977457, + 5281.015015491554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.239202472915, + "min_y": 5280.382213997611, + "max_x": 2284.239202472915, + "max_y": 5281.64368688155, + "center": [ + 2284.239202472915, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.239202472915, + 5281.64368688155 + ], + [ + 2284.239202472915, + 5280.382213997611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.867989730242, + "min_y": 5280.382213997611, + "max_x": 2283.867989730242, + "max_y": 5281.64368688155, + "center": [ + 2283.867989730242, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.867989730242, + 5281.64368688155 + ], + [ + 2283.867989730242, + 5280.382213997611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.693911845321, + "min_y": 5280.384279049576, + "max_x": 2286.693911845321, + "max_y": 5281.645751933517, + "center": [ + 2286.693911845321, + 5281.015015491546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.693911845321, + 5281.645751933517 + ], + [ + 2286.693911845321, + 5280.384279049576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.693911845321, + "min_y": 5280.384279049576, + "max_x": 2286.693911845321, + "max_y": 5281.645751933517, + "center": [ + 2286.693911845321, + 5281.015015491546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.693911845321, + 5281.645751933517 + ], + [ + 2286.693911845321, + 5280.384279049576 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.623503377121, + "min_y": 5281.218050935405, + "max_x": 2286.322699102643, + "max_y": 5281.636688524042, + "center": [ + 2285.973101239882, + 5281.427369729723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.623503377121, + 5281.218050935405 + ], + [ + 2286.322699102643, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.322699102643, + "min_y": 5280.389212355119, + "max_x": 2286.322699102643, + "max_y": 5281.636688524042, + "center": [ + 2286.322699102643, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.322699102643, + 5281.636688524042 + ], + [ + 2286.322699102643, + 5280.389212355119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.623503377121, + "min_y": 5280.389212355119, + "max_x": 2286.322699102643, + "max_y": 5280.807849943757, + "center": [ + 2285.973101239882, + 5280.598531149438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.322699102643, + 5280.389212355119 + ], + [ + 2285.623503377121, + 5280.807849943757 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.239202472915, + "min_y": 5281.217067696243, + "max_x": 2284.940040374482, + "max_y": 5281.636688524042, + "center": [ + 2284.5896214236986, + 5281.426878110143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.940040374482, + 5281.217067696243 + ], + [ + 2284.239202472915, + 5281.636688524042 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.239202472915, + "min_y": 5280.389212355119, + "max_x": 2284.239202472915, + "max_y": 5281.636688524042, + "center": [ + 2284.239202472915, + 5281.012950439581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.239202472915, + 5281.636688524042 + ], + [ + 2284.239202472915, + 5280.389212355119 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2284.239202472915, + "min_y": 5280.389212355119, + "max_x": 2284.941847185233, + "max_y": 5280.809914995733, + "center": [ + 2284.590524829074, + 5280.599563675426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.239202472915, + 5280.389212355119 + ], + [ + 2284.941847185233, + 5280.809914995733 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5378.667591358647, + "max_x": 2274.680088808278, + "max_y": 5379.648025690162, + "center": [ + 2274.680088808278, + 5379.157808524405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5378.667591358647 + ], + [ + 2274.680088808278, + 5379.648025690162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5382.134301473857, + "max_x": 2274.680088808278, + "max_y": 5383.929011620278, + "center": [ + 2274.680088808278, + 5383.0316565470675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5382.134301473857 + ], + [ + 2274.680088808278, + 5383.929011620278 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5384.818237635347, + "max_x": 2274.680088808278, + "max_y": 5385.324858475049, + "center": [ + 2274.680088808278, + 5385.071548055198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5384.818237635347 + ], + [ + 2274.680088808278, + 5385.324858475049 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F1C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2274.3288157550387, + "min_y": 5380.539890528771, + "max_x": 2275.0313618615173, + "max_y": 5381.24243663525, + "center": [ + 2274.680088808278, + 5380.89116358201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5380.89116358201 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5382.134301473857, + "max_x": 2275.228860087745, + "max_y": 5382.134301473857, + "center": [ + 2274.680088808277, + 5382.134301473857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5382.134301473857 + ], + [ + 2275.228860087745, + 5382.134301473857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5379.648025690162, + "max_x": 2275.228860087745, + "max_y": 5379.648025690162, + "center": [ + 2274.680088808277, + 5379.648025690162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5379.648025690162 + ], + [ + 2275.228860087745, + 5379.648025690162 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F1F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.615864376402, + "min_y": 5388.608610734298, + "max_x": 2275.183349501139, + "max_y": 5389.914848338246, + "center": [ + 2274.3996069387704, + 5389.2617295362725 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556F20", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2271.823002099325, + "min_y": 5385.324858475053, + "max_x": 2277.537175517231, + "max_y": 5391.0390318929585, + "center": [ + 2274.680088808278, + 5388.181945184006 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5388.181945184006 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556F21", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2272.337805390456, + "min_y": 5379.8925892700745, + "max_x": 2277.0223722261, + "max_y": 5384.577156105718, + "center": [ + 2274.680088808278, + 5382.234872687896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5382.234872687896 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.680088808278, + "min_y": 5383.053927221093, + "max_x": 2276.061837478795, + "max_y": 5383.053927221099, + "center": [ + 2275.3709631435368, + 5383.053927221095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.680088808278, + 5383.053927221099 + ], + [ + 2276.061837478795, + 5383.053927221093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.020180759637, + "min_y": 5378.667591358647, + "max_x": 2271.837226032519, + "max_y": 5378.667591358647, + "center": [ + 2271.428703396078, + 5378.667591358647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.020180759637, + 5378.667591358647 + ], + [ + 2271.837226032519, + 5378.667591358647 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5378.667591358647, + "max_x": 2274.680088808278, + "max_y": 5378.667591358647, + "center": [ + 2273.4729842826046, + 5378.667591358647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756931, + 5378.667591358647 + ], + [ + 2274.680088808278, + 5378.667591358647 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5384.818237635347, + "max_x": 2275.635092341727, + "max_y": 5384.818237635347, + "center": [ + 2274.6800888082785, + 5384.818237635347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.72508527483, + 5384.818237635347 + ], + [ + 2275.635092341727, + 5384.818237635347 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2275.635092341727, + "min_y": 5383.929011620278, + "max_x": 2275.635092341727, + "max_y": 5384.818237635347, + "center": [ + 2275.635092341727, + 5384.373624627813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.635092341727, + 5384.818237635347 + ], + [ + 2275.635092341727, + 5383.929011620278 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5383.929011620278, + "max_x": 2275.635092341727, + "max_y": 5383.929011620278, + "center": [ + 2274.6800888082785, + 5383.929011620278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.635092341727, + 5383.929011620278 + ], + [ + 2273.72508527483, + 5383.929011620278 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2273.72508527483, + "min_y": 5383.929011620278, + "max_x": 2273.72508527483, + "max_y": 5384.818237635347, + "center": [ + 2273.72508527483, + 5384.373624627813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.72508527483, + 5383.929011620278 + ], + [ + 2273.72508527483, + 5384.818237635347 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5379.974622537186, + "max_x": 2274.499639250498, + "max_y": 5380.589782237149, + "center": [ + 2274.3154783896534, + 5380.282202387168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.499639250498, + 5380.589782237149 + ], + [ + 2274.131317528809, + 5379.974622537186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5379.974622537186, + "max_x": 2275.228860087745, + "max_y": 5379.974622537186, + "center": [ + 2274.680088808277, + 5379.974622537186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5379.974622537186 + ], + [ + 2275.228860087745, + 5379.974622537186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.860538366059, + "min_y": 5379.974622537186, + "max_x": 2275.228860087745, + "max_y": 5380.589782237149, + "center": [ + 2275.0446992269017, + 5380.282202387168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.228860087745, + 5379.974622537186 + ], + [ + 2274.860538366059, + 5380.589782237149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5381.19254492687, + "max_x": 2274.499639250498, + "max_y": 5381.807704626833, + "center": [ + 2274.3154783896534, + 5381.500124776851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.499639250498, + 5381.19254492687 + ], + [ + 2274.131317528809, + 5381.807704626833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.131317528809, + "min_y": 5381.807704626833, + "max_x": 2275.228860087745, + "max_y": 5381.807704626833, + "center": [ + 2274.680088808277, + 5381.807704626833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2274.131317528809, + 5381.807704626833 + ], + [ + 2275.228860087745, + 5381.807704626833 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2274.860538366056, + "min_y": 5381.19254492687, + "max_x": 2275.228860087745, + "max_y": 5381.807704626833, + "center": [ + 2275.044699226901, + 5381.500124776851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.228860087745, + 5381.807704626833 + ], + [ + 2274.860538366056, + 5381.19254492687 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F2F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2272.018139851137, + "min_y": 5386.257400232892, + "max_x": 2276.7205952253485, + "max_y": 5387.56363783684, + "center": [ + 2274.369367538243, + 5386.9105190348655 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556F30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2272.265879756931, + "min_y": 5378.118820079181, + "max_x": 2272.265879756931, + "max_y": 5379.216362638113, + "center": [ + 2272.265879756931, + 5378.667591358648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2272.265879756931, + 5379.216362638113 + ], + [ + 2272.265879756931, + 5378.118820079181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2271.837226032519, + "min_y": 5378.0985290124, + "max_x": 2271.837226032519, + "max_y": 5379.236653704901, + "center": [ + 2271.837226032519, + 5378.6675913586505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2271.837226032519, + 5379.236653704901 + ], + [ + 2271.837226032519, + 5378.0985290124 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5382.40712613825, + "max_x": 2276.061837478795, + "max_y": 5383.700728303931, + "center": [ + 2276.061837478795, + 5383.05392722109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5383.700728303931 + ], + [ + 2276.061837478795, + 5382.40712613825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5382.430189136633, + "max_x": 2276.061837478795, + "max_y": 5383.677665305555, + "center": [ + 2276.061837478795, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5382.430189136633 + ], + [ + 2276.061837478795, + 5383.677665305555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F34", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2277.0789875954456, + "min_y": 5382.656732345391, + "max_x": 2277.877507450798, + "max_y": 5383.455252200743, + "center": [ + 2277.478247523122, + 5383.055992273067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.478247523122, + 5383.055992273067 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5382.423190779126, + "max_x": 2276.433050221468, + "max_y": 5383.684663663062, + "center": [ + 2276.433050221468, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5383.684663663062 + ], + [ + 2276.433050221468, + 5382.423190779126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.061837478795, + "min_y": 5382.423190779126, + "max_x": 2276.061837478795, + "max_y": 5383.684663663062, + "center": [ + 2276.061837478795, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.061837478795, + 5383.684663663062 + ], + [ + 2276.061837478795, + 5382.423190779126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5383.258044477756, + "max_x": 2277.133888123033, + "max_y": 5383.677665305555, + "center": [ + 2276.7834691722505, + 5383.467854891655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.133888123033, + 5383.258044477756 + ], + [ + 2276.433050221468, + 5383.677665305555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5382.430189136633, + "max_x": 2276.433050221468, + "max_y": 5383.677665305555, + "center": [ + 2276.433050221468, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5383.677665305555 + ], + [ + 2276.433050221468, + 5382.430189136633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.433050221468, + "min_y": 5382.430189136633, + "max_x": 2277.135694933785, + "max_y": 5382.850891777247, + "center": [ + 2276.7843725776265, + 5382.64054045694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.433050221468, + 5382.430189136633 + ], + [ + 2277.135694933785, + 5382.850891777247 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F3A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2275.324921589159, + "min_y": 5380.266786624207, + "max_x": 2279.0205300454572, + "max_y": 5380.826727299404, + "center": [ + 2277.172725817308, + 5380.546756961806 + ] + }, + "raw_value": "C10211BA-12", + "clean_value": "C10211BA-12", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F3B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2276.245338695172, + "min_y": 5384.032786450728, + "max_x": 2279.94094715147, + "max_y": 5384.592727125925, + "center": [ + 2278.093142923321, + 5384.312756788327 + ] + }, + "raw_value": "C10211BA-13", + "clean_value": "C10211BA-13", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5382.430189136633, + "max_x": 2278.887759593873, + "max_y": 5383.677665305555, + "center": [ + 2278.887759593873, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5382.430189136633 + ], + [ + 2278.887759593873, + 5383.677665305555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5382.425255831088, + "max_x": 2278.887759593873, + "max_y": 5383.686728715031, + "center": [ + 2278.887759593873, + 5383.055992273059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5383.686728715031 + ], + [ + 2278.887759593873, + 5382.425255831088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.887759593873, + "min_y": 5382.425255831088, + "max_x": 2278.887759593873, + "max_y": 5383.686728715031, + "center": [ + 2278.887759593873, + 5383.055992273059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.887759593873, + 5383.686728715031 + ], + [ + 2278.887759593873, + 5382.425255831088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5383.259027716917, + "max_x": 2278.516546851195, + "max_y": 5383.677665305555, + "center": [ + 2278.1669489884343, + 5383.468346511236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.817351125673, + 5383.259027716917 + ], + [ + 2278.516546851195, + 5383.677665305555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2278.516546851195, + "min_y": 5382.430189136633, + "max_x": 2278.516546851195, + "max_y": 5383.677665305555, + "center": [ + 2278.516546851195, + 5383.0539272210935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.516546851195, + 5383.677665305555 + ], + [ + 2278.516546851195, + 5382.430189136633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2277.817351125673, + "min_y": 5382.430189136633, + "max_x": 2278.516546851195, + "max_y": 5382.848826725269, + "center": [ + 2278.1669489884343, + 5382.639507930951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.516546851195, + 5382.430189136633 + ], + [ + 2277.817351125673, + 5382.848826725269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5378.663751428671, + "max_x": 2282.057936384658, + "max_y": 5379.644185760187, + "center": [ + 2282.057936384658, + 5379.153968594429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5378.663751428671 + ], + [ + 2282.057936384658, + 5379.644185760187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5382.130461543881, + "max_x": 2282.057936384658, + "max_y": 5383.925171690303, + "center": [ + 2282.057936384658, + 5383.027816617092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5382.130461543881 + ], + [ + 2282.057936384658, + 5383.925171690303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5384.814397705373, + "max_x": 2282.057936384658, + "max_y": 5385.321018545073, + "center": [ + 2282.057936384658, + 5385.067708125223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5384.814397705373 + ], + [ + 2282.057936384658, + 5385.321018545073 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F45", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2281.706663331419, + "min_y": 5380.536050598795, + "max_x": 2282.4092094378975, + "max_y": 5381.238596705273, + "center": [ + 2282.057936384658, + 5380.887323652034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5380.887323652034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5382.130461543881, + "max_x": 2282.606707664124, + "max_y": 5382.130461543881, + "center": [ + 2282.057936384656, + 5382.130461543881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.509165105188, + 5382.130461543881 + ], + [ + 2282.606707664124, + 5382.130461543881 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5379.644185760187, + "max_x": 2282.606707664124, + "max_y": 5379.644185760187, + "center": [ + 2282.057936384656, + 5379.644185760187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.509165105188, + 5379.644185760187 + ], + [ + 2282.606707664124, + 5379.644185760187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F48", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2279.7156529668364, + "min_y": 5379.888749340099, + "max_x": 2284.40021980248, + "max_y": 5384.573316175743, + "center": [ + 2282.057936384658, + 5382.231032757921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5382.231032757921 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5383.050087291118, + "max_x": 2283.439685055174, + "max_y": 5383.050087291124, + "center": [ + 2282.748810719916, + 5383.050087291122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5383.050087291124 + ], + [ + 2283.439685055174, + 5383.050087291118 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2279.64372733331, + "min_y": 5378.663751428671, + "max_x": 2282.057936384658, + "max_y": 5378.663751428671, + "center": [ + 2280.850831858984, + 5378.663751428671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.64372733331, + 5378.663751428671 + ], + [ + 2282.057936384658, + 5378.663751428671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.102932851209, + "min_y": 5384.814397705373, + "max_x": 2283.012939918106, + "max_y": 5384.814397705373, + "center": [ + 2282.0579363846573, + 5384.814397705373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.102932851209, + 5384.814397705373 + ], + [ + 2283.012939918106, + 5384.814397705373 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.012939918106, + "min_y": 5383.925171690303, + "max_x": 2283.012939918106, + "max_y": 5384.814397705373, + "center": [ + 2283.012939918106, + 5384.3697846978375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.012939918106, + 5384.814397705373 + ], + [ + 2283.012939918106, + 5383.925171690303 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.102932851209, + "min_y": 5383.925171690303, + "max_x": 2283.012939918106, + "max_y": 5383.925171690303, + "center": [ + 2282.0579363846573, + 5383.925171690303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.012939918106, + 5383.925171690303 + ], + [ + 2281.102932851209, + 5383.925171690303 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.102932851209, + "min_y": 5383.925171690303, + "max_x": 2281.102932851209, + "max_y": 5384.814397705373, + "center": [ + 2281.102932851209, + 5384.3697846978375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.102932851209, + 5383.925171690303 + ], + [ + 2281.102932851209, + 5384.814397705373 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556F4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5379.970782607211, + "max_x": 2281.877486826877, + "max_y": 5380.585942307174, + "center": [ + 2281.6933259660327, + 5380.278362457193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.877486826877, + 5380.585942307174 + ], + [ + 2281.509165105188, + 5379.970782607211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5379.970782607211, + "max_x": 2282.606707664124, + "max_y": 5379.970782607211, + "center": [ + 2282.057936384656, + 5379.970782607211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.509165105188, + 5379.970782607211 + ], + [ + 2282.606707664124, + 5379.970782607211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F51", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.238385942438, + "min_y": 5379.970782607211, + "max_x": 2282.606707664124, + "max_y": 5380.585942307174, + "center": [ + 2282.422546803281, + 5380.278362457193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.606707664124, + 5379.970782607211 + ], + [ + 2282.238385942438, + 5380.585942307174 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5381.188704996894, + "max_x": 2281.877486826877, + "max_y": 5381.803864696857, + "center": [ + 2281.6933259660327, + 5381.496284846875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.877486826877, + 5381.188704996894 + ], + [ + 2281.509165105188, + 5381.803864696857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2281.509165105188, + "min_y": 5381.803864696857, + "max_x": 2282.606707664124, + "max_y": 5381.803864696857, + "center": [ + 2282.057936384656, + 5381.803864696857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.509165105188, + 5381.803864696857 + ], + [ + 2282.606707664124, + 5381.803864696857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2282.238385942436, + "min_y": 5381.188704996894, + "max_x": 2282.606707664124, + "max_y": 5381.803864696857, + "center": [ + 2282.42254680328, + 5381.496284846875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.606707664124, + 5381.803864696857 + ], + [ + 2282.238385942436, + 5381.188704996894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.439685055174, + "min_y": 5382.403286208274, + "max_x": 2283.439685055174, + "max_y": 5383.696888373957, + "center": [ + 2283.439685055174, + 5383.050087291116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.439685055174, + 5383.696888373957 + ], + [ + 2283.439685055174, + 5382.403286208274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.439685055174, + "min_y": 5382.426349206657, + "max_x": 2283.439685055174, + "max_y": 5383.673825375578, + "center": [ + 2283.439685055174, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.439685055174, + 5382.426349206657 + ], + [ + 2283.439685055174, + 5383.673825375578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F57", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2284.456835171825, + "min_y": 5382.652892415415, + "max_x": 2285.2553550271773, + "max_y": 5383.451412270768, + "center": [ + 2284.856095099501, + 5383.052152343092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.856095099501, + 5383.052152343092 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.810897797847, + "min_y": 5382.419350849149, + "max_x": 2283.810897797847, + "max_y": 5383.680823733087, + "center": [ + 2283.810897797847, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.810897797847, + 5383.680823733087 + ], + [ + 2283.810897797847, + 5382.419350849149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.439685055174, + "min_y": 5382.419350849149, + "max_x": 2283.439685055174, + "max_y": 5383.680823733087, + "center": [ + 2283.439685055174, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.439685055174, + 5383.680823733087 + ], + [ + 2283.439685055174, + 5382.419350849149 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.810897797847, + "min_y": 5383.254204547779, + "max_x": 2284.511735699413, + "max_y": 5383.673825375578, + "center": [ + 2284.16131674863, + 5383.464014961679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2284.511735699413, + 5383.254204547779 + ], + [ + 2283.810897797847, + 5383.673825375578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.810897797847, + "min_y": 5382.426349206657, + "max_x": 2283.810897797847, + "max_y": 5383.673825375578, + "center": [ + 2283.810897797847, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.810897797847, + 5383.673825375578 + ], + [ + 2283.810897797847, + 5382.426349206657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2283.810897797847, + "min_y": 5382.426349206657, + "max_x": 2284.513542510165, + "max_y": 5382.847051847271, + "center": [ + 2284.162220154006, + 5382.636700526964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2283.810897797847, + 5382.426349206657 + ], + [ + 2284.513542510165, + 5382.847051847271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F5D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2282.702769165537, + "min_y": 5380.26294669423, + "max_x": 2286.398377621835, + "max_y": 5380.822887369427, + "center": [ + 2284.550573393686, + 5380.542917031828 + ] + }, + "raw_value": "C10211BA-14", + "clean_value": "C10211BA-14", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F5E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2283.623186271551, + "min_y": 5384.02894652075, + "max_x": 2287.318794727849, + "max_y": 5384.588887195947, + "center": [ + 2285.4709904997, + 5384.308916858348 + ] + }, + "raw_value": "C10211BA-15", + "clean_value": "C10211BA-15", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.265607170252, + "min_y": 5382.426349206657, + "max_x": 2286.265607170252, + "max_y": 5383.673825375578, + "center": [ + 2286.265607170252, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.265607170252, + 5382.426349206657 + ], + [ + 2286.265607170252, + 5383.673825375578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.265607170252, + "min_y": 5382.421415901113, + "max_x": 2286.265607170252, + "max_y": 5383.682888785054, + "center": [ + 2286.265607170252, + 5383.052152343083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.265607170252, + 5383.682888785054 + ], + [ + 2286.265607170252, + 5382.421415901113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2286.265607170252, + "min_y": 5382.421415901113, + "max_x": 2286.265607170252, + "max_y": 5383.682888785054, + "center": [ + 2286.265607170252, + 5383.052152343083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.265607170252, + 5383.682888785054 + ], + [ + 2286.265607170252, + 5382.421415901113 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.195198702052, + "min_y": 5383.255187786942, + "max_x": 2285.894394427574, + "max_y": 5383.673825375578, + "center": [ + 2285.5447965648127, + 5383.46450658126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.195198702052, + 5383.255187786942 + ], + [ + 2285.894394427574, + 5383.673825375578 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.894394427574, + "min_y": 5382.426349206657, + "max_x": 2285.894394427574, + "max_y": 5383.673825375578, + "center": [ + 2285.894394427574, + 5383.050087291118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.894394427574, + 5383.673825375578 + ], + [ + 2285.894394427574, + 5382.426349206657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.195198702052, + "min_y": 5382.426349206657, + "max_x": 2285.894394427574, + "max_y": 5382.844986795294, + "center": [ + 2285.5447965648127, + 5382.635668000976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.894394427574, + 5382.426349206657 + ], + [ + 2285.195198702052, + 5382.844986795294 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F65", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2307.065654444901, + "min_y": 5330.067807711532, + "max_x": 2314.4568713574977, + "max_y": 5331.187689061925, + "center": [ + 2310.761262901199, + 5330.627748386729 + ] + }, + "raw_value": "E10217BA-07", + "clean_value": "E10217BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556F66", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2311.487423419532, + "min_y": 5286.173224744354, + "max_x": 2318.8786403321287, + "max_y": 5287.293106094748, + "center": [ + 2315.1830318758302, + 5286.733165419551 + ] + }, + "raw_value": "P10218CV-01", + "clean_value": "P10218CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556F67", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2312.952150654906, + "min_y": 5289.097794778674, + "max_x": 2317.655652326558, + "max_y": 5290.2176761290675, + "center": [ + 2315.3039014907317, + 5289.657735453871 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556F68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2330.78195644917, + "min_y": 5305.979839669704, + "max_x": 2331.398187895309, + "max_y": 5306.348803090443, + "center": [ + 2331.0900721722396, + 5306.1643213800735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.398187895309, + 5305.979839669704 + ], + [ + 2330.78195644917, + 5306.348803090443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.561912165511, + "min_y": 5306.71033097321, + "max_x": 2330.178143611648, + "max_y": 5307.079294393949, + "center": [ + 2329.8700278885794, + 5306.894812683579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.178143611648, + 5306.71033097321 + ], + [ + 2329.561912165511, + 5307.079294393949 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.398187895309, + "min_y": 5305.979839669704, + "max_x": 2331.398187895309, + "max_y": 5307.079294393949, + "center": [ + 2331.398187895309, + 5306.529567031826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.398187895309, + 5307.079294393949 + ], + [ + 2331.398187895309, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.561912165511, + "min_y": 5305.979839669704, + "max_x": 2329.561912165511, + "max_y": 5307.079294393949, + "center": [ + 2329.561912165511, + 5306.529567031826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2329.561912165511, + 5307.079294393949 + ], + [ + 2329.561912165511, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2330.78195644917, + "min_y": 5306.71033097321, + "max_x": 2331.398187895309, + "max_y": 5307.079294393949, + "center": [ + 2331.0900721722396, + 5306.894812683579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.398187895309, + 5307.079294393949 + ], + [ + 2330.78195644917, + 5306.71033097321 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.561912165511, + "min_y": 5305.979839669704, + "max_x": 2330.178143611648, + "max_y": 5306.348803090443, + "center": [ + 2329.8700278885794, + 5306.1643213800735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.178143611648, + 5306.348803090443 + ], + [ + 2329.561912165511, + 5305.979839669704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2329.132511630165, + "min_y": 5305.95951325133, + "max_x": 2329.132511630165, + "max_y": 5307.09962081232, + "center": [ + 2329.132511630165, + 5306.529567031825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2329.132511630165, + 5307.09962081232 + ], + [ + 2329.132511630165, + 5305.95951325133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2331.827588430652, + "min_y": 5305.95951325133, + "max_x": 2331.827588430652, + "max_y": 5307.09962081232, + "center": [ + 2331.827588430652, + 5306.529567031825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2331.827588430652, + 5307.09962081232 + ], + [ + 2331.827588430652, + 5305.95951325133 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F70", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2330.1281649807233, + "min_y": 5306.177681982142, + "max_x": 2330.8319350800966, + "max_y": 5306.881452081515, + "center": [ + 2330.48005003041, + 5306.529567031828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2330.48005003041, + 5306.529567031828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.451714234308, + "min_y": 5322.371159787516, + "max_x": 2319.451714234308, + "max_y": 5323.891592500679, + "center": [ + 2319.451714234308, + 5323.131376144098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.451714234308, + 5323.891592500679 + ], + [ + 2319.451714234308, + 5322.371159787516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.945881037639, + "min_y": 5322.371159787516, + "max_x": 2319.957547430975, + "max_y": 5322.371159787516, + "center": [ + 2319.451714234307, + 5322.371159787516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.945881037639, + 5322.371159787516 + ], + [ + 2319.957547430975, + 5322.371159787516 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5320.16113686868, + "max_x": 2319.939510927167, + "max_y": 5320.16113686868, + "center": [ + 2319.4517142343084, + 5320.16113686868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.939510927167, + 5320.16113686868 + ], + [ + 2318.96391754145, + 5320.16113686868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5322.371159787516, + "max_x": 2319.939510927167, + "max_y": 5322.371159787516, + "center": [ + 2319.4517142343084, + 5322.371159787516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.939510927167, + 5322.371159787516 + ], + [ + 2318.96391754145, + 5322.371159787516 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F75", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2319.1394715203173, + "min_y": 5320.953905614108, + "max_x": 2319.7639569482985, + "max_y": 5321.57839104209, + "center": [ + 2319.451714234308, + 5321.266148328099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.451714234308, + 5321.266148328099 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.958444449886, + "min_y": 5322.080851479054, + "max_x": 2319.94498401873, + "max_y": 5322.080851479054, + "center": [ + 2319.451714234308, + 5322.080851479054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.958444449886, + 5322.080851479054 + ], + [ + 2319.94498401873, + 5322.080851479054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.9568294683, + "min_y": 5320.16113686868, + "max_x": 2319.943369037146, + "max_y": 5320.16113686868, + "center": [ + 2319.450099252723, + 5320.16113686868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.9568294683, + 5320.16113686868 + ], + [ + 2319.943369037146, + 5320.16113686868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.9568294683, + "min_y": 5320.16113686868, + "max_x": 2319.943369037146, + "max_y": 5320.16113686868, + "center": [ + 2319.450099252723, + 5320.16113686868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.9568294683, + 5320.16113686868 + ], + [ + 2319.943369037146, + 5320.16113686868 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5320.451445177144, + "max_x": 2319.291314627395, + "max_y": 5320.998253799337, + "center": [ + 2319.1276160844227, + 5320.724849488241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.291314627395, + 5320.998253799337 + ], + [ + 2318.96391754145, + 5320.451445177144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5320.451445177144, + "max_x": 2319.939510927167, + "max_y": 5320.451445177144, + "center": [ + 2319.4517142343084, + 5320.451445177144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.96391754145, + 5320.451445177144 + ], + [ + 2319.939510927167, + 5320.451445177144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.612113841224, + "min_y": 5320.451445177144, + "max_x": 2319.939510927167, + "max_y": 5320.998253799337, + "center": [ + 2319.7758123841954, + 5320.724849488241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.939510927167, + 5320.451445177144 + ], + [ + 2319.612113841224, + 5320.998253799337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5321.534042856862, + "max_x": 2319.291314627395, + "max_y": 5322.080851479054, + "center": [ + 2319.1276160844227, + 5321.807447167957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.291314627395, + 5321.534042856862 + ], + [ + 2318.96391754145, + 5322.080851479054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.96391754145, + "min_y": 5322.080851479054, + "max_x": 2319.939510927167, + "max_y": 5322.080851479054, + "center": [ + 2319.4517142343084, + 5322.080851479054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.96391754145, + 5322.080851479054 + ], + [ + 2319.939510927167, + 5322.080851479054 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.612113841224, + "min_y": 5321.534042856862, + "max_x": 2319.939510927167, + "max_y": 5322.080851479054, + "center": [ + 2319.7758123841954, + 5321.807447167957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.939510927167, + 5322.080851479054 + ], + [ + 2319.612113841224, + 5321.534042856862 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F7F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2318.435376307041, + "min_y": 5318.855532335529, + "max_x": 2325.8265932196377, + "max_y": 5319.975413685922, + "center": [ + 2322.1309847633393, + 5319.415473010726 + ] + }, + "raw_value": "E10217BA-08", + "clean_value": "E10217BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556F80", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2319.449076863587, + "min_y": 5319.110332463719, + "max_x": 2319.449076863587, + "max_y": 5320.16113686868, + "center": [ + 2319.449076863587, + 5319.635734666199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.449076863587, + 5320.16113686868 + ], + [ + 2319.449076863587, + 5319.110332463719 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.064936967961, + "min_y": 5318.652734340158, + "max_x": 2319.064936967961, + "max_y": 5319.173056321356, + "center": [ + 2319.064936967961, + 5318.912895330757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.064936967961, + 5319.173056321356 + ], + [ + 2319.064936967961, + 5318.652734340158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.833216759212, + "min_y": 5318.652734340158, + "max_x": 2319.833216759212, + "max_y": 5319.173056321356, + "center": [ + 2319.833216759212, + 5318.912895330757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.833216759212, + 5319.173056321356 + ], + [ + 2319.833216759212, + 5318.652734340158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.064936967961, + "min_y": 5318.652734340158, + "max_x": 2319.833216759212, + "max_y": 5318.652734340158, + "center": [ + 2319.4490768635865, + 5318.652734340158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.064936967961, + 5318.652734340158 + ], + [ + 2319.833216759212, + 5318.652734340158 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F84", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5268.897132137602, + "max_x": 2354.729905854248, + "max_y": 5268.897132137602, + "center": [ + 2353.8706907156393, + 5268.897132137602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5268.897132137602 + ], + [ + 2353.01147557703, + 5268.897132137602 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556F85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5268.394960704585, + "max_x": 2356.953572622779, + "max_y": 5269.40424949287, + "center": [ + 2356.953572622779, + 5268.899605098728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5268.394960704585 + ], + [ + 2356.953572622779, + 5269.40424949287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F86", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.4833181442295, + "min_y": 5268.574152732386, + "max_x": 2356.1293722792166, + "max_y": 5269.220206867374, + "center": [ + 2355.806345211723, + 5268.89717979988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.806345211723, + 5268.89717979988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.085607231361, + "min_y": 5268.394960704585, + "max_x": 2356.653237539366, + "max_y": 5268.734824600632, + "center": [ + 2356.3694223853636, + 5268.564892652608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.085607231361, + 5268.734824600632 + ], + [ + 2356.653237539366, + 5268.394960704585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.653237539366, + "min_y": 5268.394960704585, + "max_x": 2356.653237539366, + "max_y": 5269.40424949287, + "center": [ + 2356.653237539366, + 5268.899605098728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5268.394960704585 + ], + [ + 2356.653237539366, + 5269.40424949287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.083492380083, + "min_y": 5269.063119347314, + "max_x": 2356.653237539366, + "max_y": 5269.40424949287, + "center": [ + 2356.368364959724, + 5269.233684420092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.653237539366, + 5269.40424949287 + ], + [ + 2356.083492380083, + 5269.063119347314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5268.394960704585, + "max_x": 2355.533248703484, + "max_y": 5268.733665551293, + "center": [ + 2355.2504014539036, + 5268.564313127939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.533248703484, + 5268.733665551293 + ], + [ + 2354.967554204323, + 5268.394960704585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5268.394960704585, + "max_x": 2354.967554204323, + "max_y": 5269.40424949287, + "center": [ + 2354.967554204323, + 5268.899605098728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5268.394960704585 + ], + [ + 2354.967554204323, + 5269.40424949287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.967554204323, + "min_y": 5269.06554464616, + "max_x": 2355.533248703484, + "max_y": 5269.40424949287, + "center": [ + 2355.2504014539036, + 5269.234897069515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.967554204323, + 5269.40424949287 + ], + [ + 2355.533248703484, + 5269.06554464616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2354.729905854248, + "min_y": 5268.394960704585, + "max_x": 2354.729905854248, + "max_y": 5269.40424949287, + "center": [ + 2354.729905854248, + 5268.899605098728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2354.729905854248, + 5269.40424949287 + ], + [ + 2354.729905854248, + 5268.394960704585 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F8E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2354.611364448747, + "min_y": 5269.627155836619, + "max_x": 2362.674510171579, + "max_y": 5270.747037187012, + "center": [ + 2358.642937310163, + 5270.187096511816 + ] + }, + "raw_value": "HD10218BA-06", + "clean_value": "HD10218BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "556F8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.078451172802, + "min_y": 5251.134429309427, + "max_x": 2422.078451172802, + "max_y": 5252.336328042614, + "center": [ + 2422.078451172802, + 5251.73537867602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.078451172802, + 5251.134429309427 + ], + [ + 2422.078451172802, + 5252.336328042614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F90", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2421.8604646565805, + "min_y": 5252.889784982495, + "max_x": 2422.2964376890236, + "max_y": 5253.325758014938, + "center": [ + 2422.078451172802, + 5253.107771498717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.078451172802, + 5253.107771498717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.725313016522, + "min_y": 5252.336328042614, + "max_x": 2422.431589329085, + "max_y": 5252.336328042614, + "center": [ + 2422.0784511728034, + 5252.336328042614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.431589329085, + 5252.336328042614 + ], + [ + 2421.725313016522, + 5252.336328042614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.725313016522, + "min_y": 5253.879214954817, + "max_x": 2422.431589329085, + "max_y": 5253.879214954817, + "center": [ + 2422.0784511728034, + 5253.879214954817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.431589329085, + 5253.879214954817 + ], + [ + 2421.725313016522, + 5253.879214954817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.737904870405, + "min_y": 5252.53900145646, + "max_x": 2421.966471133084, + "max_y": 5252.920745853525, + "center": [ + 2421.8521880017443, + 5252.729873654993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.966471133084, + 5252.920745853525 + ], + [ + 2421.737904870405, + 5252.53900145646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.737904870405, + "min_y": 5252.53900145646, + "max_x": 2422.418997475202, + "max_y": 5252.53900145646, + "center": [ + 2422.0784511728034, + 5252.53900145646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.737904870405, + 5252.53900145646 + ], + [ + 2422.418997475202, + 5252.53900145646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.19043121252, + "min_y": 5252.53900145646, + "max_x": 2422.418997475202, + "max_y": 5252.920745853525, + "center": [ + 2422.3047143438607, + 5252.729873654993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.418997475202, + 5252.53900145646 + ], + [ + 2422.19043121252, + 5252.920745853525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.737904870405, + "min_y": 5253.294797143909, + "max_x": 2421.966471133084, + "max_y": 5253.676541540976, + "center": [ + 2421.8521880017443, + 5253.485669342443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.966471133084, + 5253.294797143909 + ], + [ + 2421.737904870405, + 5253.676541540976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F97", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2421.737904870405, + "min_y": 5253.676541540976, + "max_x": 2422.418997475202, + "max_y": 5253.676541540976, + "center": [ + 2422.0784511728034, + 5253.676541540976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2421.737904870405, + 5253.676541540976 + ], + [ + 2422.418997475202, + 5253.676541540976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.19043121252, + "min_y": 5253.294797143909, + "max_x": 2422.418997475202, + "max_y": 5253.676541540976, + "center": [ + 2422.3047143438607, + 5253.485669342443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.418997475202, + 5253.676541540976 + ], + [ + 2422.19043121252, + 5253.294797143909 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5251.651218728537, + "max_x": 2439.463456194777, + "max_y": 5252.267450174673, + "center": [ + 2439.2789744844067, + 5251.959334451605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094492774037, + 5251.651218728537 + ], + [ + 2439.463456194777, + 5252.267450174673 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5251.651218728537, + "max_x": 2440.19394749828, + "max_y": 5251.651218728537, + "center": [ + 2439.6442201361588, + 5251.651218728537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.19394749828, + 5251.651218728537 + ], + [ + 2439.094492774037, + 5251.651218728537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.824984077541, + "min_y": 5251.651218728537, + "max_x": 2440.19394749828, + "max_y": 5252.267450174673, + "center": [ + 2440.009465787911, + 5251.959334451605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.824984077541, + 5252.267450174673 + ], + [ + 2440.19394749828, + 5251.651218728537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5252.871263012194, + "max_x": 2439.463456194774, + "max_y": 5253.487494458337, + "center": [ + 2439.278974484406, + 5253.179378735265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094492774037, + 5253.487494458337 + ], + [ + 2439.463456194774, + 5252.871263012194 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5253.487494458337, + "max_x": 2440.19394749828, + "max_y": 5253.487494458337, + "center": [ + 2439.6442201361588, + 5253.487494458337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.19394749828, + 5253.487494458337 + ], + [ + 2439.094492774037, + 5253.487494458337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.824984077543, + "min_y": 5252.871263012194, + "max_x": 2440.19394749828, + "max_y": 5253.487494458337, + "center": [ + 2440.0094657879117, + 5253.179378735265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.824984077543, + 5252.871263012194 + ], + [ + 2440.19394749828, + 5253.487494458337 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556F9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.090144838404, + "min_y": 5253.814660310315, + "max_x": 2440.201935473211, + "max_y": 5253.814660310315, + "center": [ + 2439.6460401558074, + 5253.814660310315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.201935473211, + 5253.814660310315 + ], + [ + 2439.090144838404, + 5253.814660310315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.090144838404, + "min_y": 5253.814660310315, + "max_x": 2440.201935473211, + "max_y": 5253.814660310315, + "center": [ + 2439.6460401558074, + 5253.814660310315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.201935473211, + 5253.814660310315 + ], + [ + 2439.090144838404, + 5253.814660310315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.088324818756, + "min_y": 5251.324052876554, + "max_x": 2440.200115453561, + "max_y": 5251.324052876554, + "center": [ + 2439.6442201361588, + 5251.324052876554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.200115453561, + 5251.324052876554 + ], + [ + 2439.088324818756, + 5251.324052876554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.088324818756, + "min_y": 5251.651218728537, + "max_x": 2440.200115453561, + "max_y": 5251.651218728537, + "center": [ + 2439.6442201361588, + 5251.651218728537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.200115453561, + 5251.651218728537 + ], + [ + 2439.088324818756, + 5251.651218728537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5251.324052876554, + "max_x": 2440.19394749828, + "max_y": 5251.324052876554, + "center": [ + 2439.6442201361588, + 5251.324052876554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094492774037, + 5251.324052876554 + ], + [ + 2440.19394749828, + 5251.324052876554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.094492774037, + "min_y": 5253.814660310315, + "max_x": 2440.19394749828, + "max_y": 5253.814660310315, + "center": [ + 2439.6442201361588, + 5253.814660310315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.094492774037, + 5253.814660310315 + ], + [ + 2440.19394749828, + 5253.814660310315 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2439.2923350864726, + "min_y": 5252.21747154375, + "max_x": 2439.996105185846, + "max_y": 5252.921241643124, + "center": [ + 2439.644220136159, + 5252.569356593437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.644220136159, + 5252.569356593437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.074166355663, + "min_y": 5251.324052876554, + "max_x": 2440.214273916654, + "max_y": 5251.324052876554, + "center": [ + 2439.6442201361583, + 5251.324052876554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.214273916654, + 5251.324052876554 + ], + [ + 2439.074166355663, + 5251.324052876554 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2452.485513724714, + "min_y": 5250.139709225328, + "max_x": 2452.485513724714, + "max_y": 5252.149422830614, + "center": [ + 2452.485513724714, + 5251.144566027971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.485513724714, + 5252.149422830614 + ], + [ + 2452.485513724714, + 5250.139709225328 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5245.921217617906, + "max_x": 2445.479288437905, + "max_y": 5246.537449064041, + "center": [ + 2445.2948067275356, + 5246.229333340973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.110325017166, + 5245.921217617906 + ], + [ + 2445.479288437905, + 5246.537449064041 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5245.921217617906, + "max_x": 2446.209779741409, + "max_y": 5245.921217617906, + "center": [ + 2445.6600523792877, + 5245.921217617906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.209779741409, + 5245.921217617906 + ], + [ + 2445.110325017166, + 5245.921217617906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.840816320669, + "min_y": 5245.921217617906, + "max_x": 2446.209779741409, + "max_y": 5246.537449064041, + "center": [ + 2446.025298031039, + 5246.229333340973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.840816320669, + 5246.537449064041 + ], + [ + 2446.209779741409, + 5245.921217617906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5247.141261901564, + "max_x": 2445.479288437903, + "max_y": 5247.757493347705, + "center": [ + 2445.2948067275347, + 5247.4493776246345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.110325017166, + 5247.757493347705 + ], + [ + 2445.479288437903, + 5247.141261901564 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5247.757493347705, + "max_x": 2446.209779741409, + "max_y": 5247.757493347705, + "center": [ + 2445.6600523792877, + 5247.757493347705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.209779741409, + 5247.757493347705 + ], + [ + 2445.110325017166, + 5247.757493347705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.840816320672, + "min_y": 5247.141261901564, + "max_x": 2446.209779741409, + "max_y": 5247.757493347705, + "center": [ + 2446.0252980310406, + 5247.4493776246345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.840816320672, + 5247.141261901564 + ], + [ + 2446.209779741409, + 5247.757493347705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.105977081532, + "min_y": 5248.084659199683, + "max_x": 2446.217767716341, + "max_y": 5248.084659199683, + "center": [ + 2445.6618723989363, + 5248.084659199683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.217767716341, + 5248.084659199683 + ], + [ + 2445.105977081532, + 5248.084659199683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.105977081532, + "min_y": 5248.084659199683, + "max_x": 2446.217767716341, + "max_y": 5248.084659199683, + "center": [ + 2445.6618723989363, + 5248.084659199683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.217767716341, + 5248.084659199683 + ], + [ + 2445.105977081532, + 5248.084659199683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.104157061884, + "min_y": 5245.594051765923, + "max_x": 2446.21594769669, + "max_y": 5245.594051765923, + "center": [ + 2445.6600523792868, + 5245.594051765923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.21594769669, + 5245.594051765923 + ], + [ + 2445.104157061884, + 5245.594051765923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.104157061884, + "min_y": 5245.921217617906, + "max_x": 2446.21594769669, + "max_y": 5245.921217617906, + "center": [ + 2445.6600523792868, + 5245.921217617906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.21594769669, + 5245.921217617906 + ], + [ + 2445.104157061884, + 5245.921217617906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5245.594051765923, + "max_x": 2446.209779741409, + "max_y": 5245.594051765923, + "center": [ + 2445.6600523792877, + 5245.594051765923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.110325017166, + 5245.594051765923 + ], + [ + 2446.209779741409, + 5245.594051765923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.110325017166, + "min_y": 5248.084659199683, + "max_x": 2446.209779741409, + "max_y": 5248.084659199683, + "center": [ + 2445.6600523792877, + 5248.084659199683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.110325017166, + 5248.084659199683 + ], + [ + 2446.209779741409, + 5248.084659199683 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2445.3081673296006, + "min_y": 5246.48747043312, + "max_x": 2446.011937428974, + "max_y": 5247.191240532493, + "center": [ + 2445.660052379287, + 5246.839355482806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.660052379287, + 5246.839355482806 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.089998598792, + "min_y": 5245.594051765923, + "max_x": 2446.230106159783, + "max_y": 5245.594051765923, + "center": [ + 2445.6600523792877, + 5245.594051765923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2446.230106159783, + 5245.594051765923 + ], + [ + 2445.089998598792, + 5245.594051765923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2451.934447008162, + "min_y": 5252.152385784189, + "max_x": 2453.033901732404, + "max_y": 5252.152385784189, + "center": [ + 2452.4841743702827, + 5252.152385784189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2453.033901732404, + 5252.152385784189 + ], + [ + 2451.934447008162, + 5252.152385784189 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2451.930099072528, + "min_y": 5252.479551636167, + "max_x": 2453.041889707336, + "max_y": 5252.479551636167, + "center": [ + 2452.485994389932, + 5252.479551636167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2453.041889707336, + 5252.479551636167 + ], + [ + 2451.930099072528, + 5252.479551636167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2451.930099072528, + "min_y": 5252.479551636167, + "max_x": 2453.041889707336, + "max_y": 5252.479551636167, + "center": [ + 2452.485994389932, + 5252.479551636167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2453.041889707336, + 5252.479551636167 + ], + [ + 2451.930099072528, + 5252.479551636167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2451.934447008162, + "min_y": 5252.479551636167, + "max_x": 2453.033901732404, + "max_y": 5252.479551636167, + "center": [ + 2452.4841743702827, + 5252.479551636167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.934447008162, + 5252.479551636167 + ], + [ + 2453.033901732404, + 5252.479551636167 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FBB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2420.051508364041, + "min_y": 5225.86617862843, + "max_x": 2424.184550203618, + "max_y": 5231.646585590866, + "center": [ + 2422.11802928383, + 5228.756382109648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.184550203618, + 5231.646585590866 + ], + [ + 2420.952500653197, + 5225.86617862843 + ], + [ + 2420.051508364041, + 5225.86617862843 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.508060472484, + "min_y": 5237.128186600838, + "max_x": 2412.841683720975, + "max_y": 5237.128186600838, + "center": [ + 2412.17487209673, + 5237.128186600838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.508060472484, + 5237.128186600838 + ], + [ + 2412.841683720975, + 5237.128186600838 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FBD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2407.0746048788674, + "min_y": 5234.911458804028, + "max_x": 2411.508060472485, + "max_y": 5239.344914397647, + "center": [ + 2409.291332675676, + 5237.128186600838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.291332675676, + 5237.128186600838 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556FBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.744267244144, + "min_y": 5239.28708380895, + "max_x": 2427.935715225463, + "max_y": 5239.28708380895, + "center": [ + 2427.339991234803, + 5239.28708380895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.744267244144, + 5239.28708380895 + ], + [ + 2427.935715225463, + 5239.28708380895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556FBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.935715225463, + "min_y": 5237.947026279587, + "max_x": 2427.935715225463, + "max_y": 5240.42446792447, + "center": [ + 2427.935715225463, + 5239.1857471020285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225463, + 5240.42446792447 + ], + [ + 2427.935715225463, + 5237.947026279587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "556FC0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2427.7177287092404, + "min_y": 5236.957596307263, + "max_x": 2428.1537017416836, + "max_y": 5237.393569339706, + "center": [ + 2427.935715225462, + 5237.175582823485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225462, + 5237.175582823485 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.582577069183, + "min_y": 5236.404139367383, + "max_x": 2428.288853381744, + "max_y": 5236.404139367383, + "center": [ + 2427.9357152254634, + 5236.404139367383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.288853381744, + 5236.404139367383 + ], + [ + 2427.582577069183, + 5236.404139367383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.582577069183, + "min_y": 5237.947026279587, + "max_x": 2428.288853381744, + "max_y": 5237.947026279587, + "center": [ + 2427.9357152254634, + 5237.947026279587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.288853381744, + 5237.947026279587 + ], + [ + 2427.582577069183, + 5237.947026279587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.595168923065, + "min_y": 5236.606812781228, + "max_x": 2427.823735185744, + "max_y": 5236.988557178293, + "center": [ + 2427.7094520544047, + 5236.797684979761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.823735185744, + 5236.988557178293 + ], + [ + 2427.595168923065, + 5236.606812781228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.595168923065, + "min_y": 5236.606812781228, + "max_x": 2428.276261527862, + "max_y": 5236.606812781228, + "center": [ + 2427.9357152254634, + 5236.606812781228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.595168923065, + 5236.606812781228 + ], + [ + 2428.276261527862, + 5236.606812781228 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.04769526518, + "min_y": 5236.606812781228, + "max_x": 2428.276261527862, + "max_y": 5236.988557178293, + "center": [ + 2428.161978396521, + 5236.797684979761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.276261527862, + 5236.606812781228 + ], + [ + 2428.04769526518, + 5236.988557178293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.595168923065, + "min_y": 5237.362608468678, + "max_x": 2427.823735185744, + "max_y": 5237.744352865745, + "center": [ + 2427.7094520544047, + 5237.553480667211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.823735185744, + 5237.362608468678 + ], + [ + 2427.595168923065, + 5237.744352865745 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.595168923065, + "min_y": 5237.744352865745, + "max_x": 2428.276261527862, + "max_y": 5237.744352865745, + "center": [ + 2427.9357152254634, + 5237.744352865745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.595168923065, + 5237.744352865745 + ], + [ + 2428.276261527862, + 5237.744352865745 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.04769526518, + "min_y": 5237.362608468678, + "max_x": 2428.276261527862, + "max_y": 5237.744352865745, + "center": [ + 2428.161978396521, + 5237.553480667211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.276261527862, + 5237.744352865745 + ], + [ + 2428.04769526518, + 5237.362608468678 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.935715225463, + "min_y": 5240.627141338312, + "max_x": 2427.935715225463, + "max_y": 5241.064004178628, + "center": [ + 2427.935715225463, + 5240.84557275847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225463, + 5240.627141338312 + ], + [ + 2427.935715225463, + 5241.064004178628 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.935715225463, + "min_y": 5241.605965249672, + "max_x": 2427.935715225463, + "max_y": 5241.984913639647, + "center": [ + 2427.935715225463, + 5241.79543944466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225463, + 5241.605965249672 + ], + [ + 2427.935715225463, + 5241.984913639647 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2426.5081519195205, + "min_y": 5238.603905460181, + "max_x": 2429.3632785314035, + "max_y": 5241.459032072064, + "center": [ + 2427.935715225462, + 5240.031468766122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225462, + 5240.031468766122 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.353664398042, + "min_y": 5241.605965249672, + "max_x": 2428.517766052885, + "max_y": 5241.605965249672, + "center": [ + 2427.9357152254634, + 5241.605965249672 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.353664398042, + 5241.605965249672 + ], + [ + 2428.517766052885, + 5241.605965249672 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.353664398042, + "min_y": 5241.064004178628, + "max_x": 2428.517766052885, + "max_y": 5241.064004178628, + "center": [ + 2427.9357152254634, + 5241.064004178628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.517766052885, + 5241.064004178628 + ], + [ + 2427.353664398042, + 5241.064004178628 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.517766052885, + "min_y": 5241.064004178628, + "max_x": 2428.517766052885, + "max_y": 5241.605965249672, + "center": [ + 2428.517766052885, + 5241.334984714151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.517766052885, + 5241.064004178628 + ], + [ + 2428.517766052885, + 5241.605965249672 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.353664398042, + "min_y": 5241.064004178628, + "max_x": 2427.353664398042, + "max_y": 5241.605965249672, + "center": [ + 2427.353664398042, + 5241.334984714151 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.353664398042, + 5241.064004178628 + ], + [ + 2427.353664398042, + 5241.605965249672 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "556FD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.582577069183, + "min_y": 5240.627141338312, + "max_x": 2428.288853381744, + "max_y": 5240.627141338312, + "center": [ + 2427.9357152254634, + 5240.627141338312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.288853381744, + 5240.627141338312 + ], + [ + 2427.582577069183, + 5240.627141338312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.595168923065, + "min_y": 5240.42446792447, + "max_x": 2428.276261527862, + "max_y": 5240.42446792447, + "center": [ + 2427.9357152254634, + 5240.42446792447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.595168923065, + 5240.42446792447 + ], + [ + 2428.276261527862, + 5240.42446792447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FD2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2427.935715225463, + "min_y": 5235.745128754555, + "max_x": 2427.935715225463, + "max_y": 5236.404139367383, + "center": [ + 2427.935715225463, + 5236.074634060969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.935715225463, + 5235.745128754555 + ], + [ + 2427.935715225463, + 5236.404139367383 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.532701849842, + "min_y": 5235.192811757293, + "max_x": 2427.532701849842, + "max_y": 5235.848429802979, + "center": [ + 2427.532701849842, + 5235.520620780137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.532701849842, + 5235.848429802979 + ], + [ + 2427.532701849842, + 5235.192811757293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.338728601085, + "min_y": 5235.192811757293, + "max_x": 2428.338728601085, + "max_y": 5235.848429802979, + "center": [ + 2428.338728601085, + 5235.520620780137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.338728601085, + 5235.848429802979 + ], + [ + 2428.338728601085, + 5235.192811757293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.532701849842, + "min_y": 5235.192811757293, + "max_x": 2428.338728601085, + "max_y": 5235.192811757293, + "center": [ + 2427.9357152254634, + 5235.192811757293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.532701849842, + 5235.192811757293 + ], + [ + 2428.338728601085, + 5235.192811757293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FD6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2362.568336924212, + "min_y": 5336.289246321083, + "max_x": 2363.334403307415, + "max_y": 5336.291394927108, + "center": [ + 2362.9513701158135, + 5336.290320624095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.334403307415, + 5336.291394927108 + ], + [ + 2362.568336924212, + 5336.289246321083 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FD7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2352.853908171275, + "min_y": 5362.621854284062, + "max_x": 2359.585374075269, + "max_y": 5362.621854284062, + "center": [ + 2356.219641123272, + 5362.621854284062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.585374075269, + 5362.621854284062 + ], + [ + 2352.853908171275, + 5362.621854284062 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FD8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.585164104708, + "min_y": 5362.621854284062, + "max_x": 2359.585374075269, + "max_y": 5365.316229388894, + "center": [ + 2359.5852690899883, + 5363.969041836477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.585164104708, + 5362.621854284062 + ], + [ + 2359.585374075269, + 5365.316229388894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FD9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2352.853908171275, + "min_y": 5347.391857123579, + "max_x": 2352.853908171275, + "max_y": 5365.316229388894, + "center": [ + 2352.853908171275, + 5356.354043256237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853908171275, + 5347.391857123579 + ], + [ + 2352.853908171275, + 5365.316229388894 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.766138016651, + "min_y": 5365.643395240876, + "max_x": 2360.135101437391, + "max_y": 5366.259626687012, + "center": [ + 2359.950619727021, + 5365.951510963944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.135101437391, + 5365.643395240876 + ], + [ + 2359.766138016651, + 5366.259626687012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.035646713148, + "min_y": 5365.643395240876, + "max_x": 2360.135101437391, + "max_y": 5365.643395240876, + "center": [ + 2359.585374075269, + 5365.643395240876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.035646713148, + 5365.643395240876 + ], + [ + 2360.135101437391, + 5365.643395240876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.035646713148, + "min_y": 5365.643395240876, + "max_x": 2359.404610133887, + "max_y": 5366.259626687012, + "center": [ + 2359.2201284235175, + 5365.951510963944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.404610133887, + 5366.259626687012 + ], + [ + 2359.035646713148, + 5365.643395240876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.766138016654, + "min_y": 5366.863439524535, + "max_x": 2360.135101437391, + "max_y": 5367.479670970675, + "center": [ + 2359.9506197270225, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.135101437391, + 5367.479670970675 + ], + [ + 2359.766138016654, + 5366.863439524535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.035646713148, + "min_y": 5367.479670970675, + "max_x": 2360.135101437391, + "max_y": 5367.479670970675, + "center": [ + 2359.585374075269, + 5367.479670970675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.035646713148, + 5367.479670970675 + ], + [ + 2360.135101437391, + 5367.479670970675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.035646713148, + "min_y": 5366.863439524535, + "max_x": 2359.404610133885, + "max_y": 5367.479670970675, + "center": [ + 2359.220128423516, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.404610133885, + 5366.863439524535 + ], + [ + 2359.035646713148, + 5367.479670970675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.027658738217, + "min_y": 5367.806836822653, + "max_x": 2360.139449373025, + "max_y": 5367.806836822653, + "center": [ + 2359.583554055621, + 5367.806836822653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.027658738217, + 5367.806836822653 + ], + [ + 2360.139449373025, + 5367.806836822653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.029478757868, + "min_y": 5365.316229388894, + "max_x": 2360.141269392673, + "max_y": 5365.316229388894, + "center": [ + 2359.585374075271, + 5365.316229388894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.029478757868, + 5365.316229388894 + ], + [ + 2360.141269392673, + 5365.316229388894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2359.2334890255825, + "min_y": 5366.20964805609, + "max_x": 2359.9372591249557, + "max_y": 5366.913418155464, + "center": [ + 2359.585374075269, + 5366.561533105777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.585374075269, + 5366.561533105777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.400405064655, + "min_y": 5365.643395240876, + "max_x": 2356.769368485394, + "max_y": 5366.259626687012, + "center": [ + 2356.5848867750246, + 5365.951510963944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.769368485394, + 5365.643395240876 + ], + [ + 2356.400405064655, + 5366.259626687012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.669913761152, + "min_y": 5365.643395240876, + "max_x": 2356.769368485394, + "max_y": 5365.643395240876, + "center": [ + 2356.219641123273, + 5365.643395240876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.669913761152, + 5365.643395240876 + ], + [ + 2356.769368485394, + 5365.643395240876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.669913761152, + "min_y": 5365.643395240876, + "max_x": 2356.038877181891, + "max_y": 5366.259626687012, + "center": [ + 2355.8543954715215, + 5365.951510963944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.038877181891, + 5366.259626687012 + ], + [ + 2355.669913761152, + 5365.643395240876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.400405064658, + "min_y": 5366.863439524535, + "max_x": 2356.769368485394, + "max_y": 5367.479670970675, + "center": [ + 2356.584886775026, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.769368485394, + 5367.479670970675 + ], + [ + 2356.400405064658, + 5366.863439524535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.669913761152, + "min_y": 5367.479670970675, + "max_x": 2356.769368485394, + "max_y": 5367.479670970675, + "center": [ + 2356.219641123273, + 5367.479670970675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.669913761152, + 5367.479670970675 + ], + [ + 2356.769368485394, + 5367.479670970675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.669913761152, + "min_y": 5366.863439524535, + "max_x": 2356.038877181889, + "max_y": 5367.479670970675, + "center": [ + 2355.8543954715205, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.038877181889, + 5366.863439524535 + ], + [ + 2355.669913761152, + 5367.479670970675 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.66192578622, + "min_y": 5367.806836822653, + "max_x": 2356.773716421028, + "max_y": 5367.806836822653, + "center": [ + 2356.217821103624, + 5367.806836822653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.66192578622, + 5367.806836822653 + ], + [ + 2356.773716421028, + 5367.806836822653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2355.663745805871, + "min_y": 5365.316229388894, + "max_x": 2356.775536440676, + "max_y": 5365.316229388894, + "center": [ + 2356.2196411232735, + 5365.316229388894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.663745805871, + 5365.316229388894 + ], + [ + 2356.775536440676, + 5365.316229388894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FEB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2355.8677560735864, + "min_y": 5366.20964805609, + "max_x": 2356.5715261729597, + "max_y": 5366.913418155464, + "center": [ + 2356.219641123273, + 5366.561533105777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.219641123273, + 5366.561533105777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2353.034672112657, + "min_y": 5365.643395240878, + "max_x": 2353.403635533396, + "max_y": 5366.259626687012, + "center": [ + 2353.2191538230263, + 5365.951510963945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.403635533396, + 5365.643395240878 + ], + [ + 2353.034672112657, + 5366.259626687012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.304180809154, + "min_y": 5365.643395240878, + "max_x": 2353.403635533396, + "max_y": 5365.643395240878, + "center": [ + 2352.853908171275, + 5365.643395240878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.304180809154, + 5365.643395240878 + ], + [ + 2353.403635533396, + 5365.643395240878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.304180809154, + "min_y": 5365.643395240878, + "max_x": 2352.673144229894, + "max_y": 5366.259626687012, + "center": [ + 2352.488662519524, + 5365.951510963945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.673144229894, + 5366.259626687012 + ], + [ + 2352.304180809154, + 5365.643395240878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FEF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2353.03467211266, + "min_y": 5366.863439524535, + "max_x": 2353.403635533396, + "max_y": 5367.479670970676, + "center": [ + 2353.219153823028, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.403635533396, + 5367.479670970676 + ], + [ + 2353.03467211266, + 5366.863439524535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.304180809154, + "min_y": 5367.479670970676, + "max_x": 2353.403635533396, + "max_y": 5367.479670970676, + "center": [ + 2352.853908171275, + 5367.479670970676 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.304180809154, + 5367.479670970676 + ], + [ + 2353.403635533396, + 5367.479670970676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.304180809154, + "min_y": 5366.863439524535, + "max_x": 2352.673144229891, + "max_y": 5367.479670970676, + "center": [ + 2352.488662519522, + 5367.171555247605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.673144229891, + 5366.863439524535 + ], + [ + 2352.304180809154, + 5367.479670970676 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.296192834222, + "min_y": 5367.806836822654, + "max_x": 2353.407983469031, + "max_y": 5367.806836822654, + "center": [ + 2352.8520881516265, + 5367.806836822654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.296192834222, + 5367.806836822654 + ], + [ + 2353.407983469031, + 5367.806836822654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.298012853873, + "min_y": 5365.316229388894, + "max_x": 2353.409803488678, + "max_y": 5365.316229388894, + "center": [ + 2352.853908171275, + 5365.316229388894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.298012853873, + 5365.316229388894 + ], + [ + 2353.409803488678, + 5365.316229388894 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2352.5020231215885, + "min_y": 5366.20964805609, + "max_x": 2353.205793220962, + "max_y": 5366.913418155464, + "center": [ + 2352.853908171275, + 5366.561533105777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.853908171275, + 5366.561533105777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.583554055621, + "min_y": 5367.806836822653, + "max_x": 2359.583554055621, + "max_y": 5374.327567039411, + "center": [ + 2359.583554055621, + 5371.067201931032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.583554055621, + 5367.806836822653 + ], + [ + 2359.583554055621, + 5374.327567039411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FF6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2352.852088151626, + "min_y": 5367.806836822654, + "max_x": 2352.852088151626, + "max_y": 5374.263562901479, + "center": [ + 2352.852088151626, + 5371.035199862066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.852088151626, + 5367.806836822654 + ], + [ + 2352.852088151626, + 5374.263562901479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FF7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2341.224359228392, + "min_y": 5374.263562901479, + "max_x": 2352.852088151626, + "max_y": 5374.263562901479, + "center": [ + 2347.038223690009, + 5374.263562901479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.852088151626, + 5374.263562901479 + ], + [ + 2341.224359228392, + 5374.263562901479 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "556FF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.270610052524, + "min_y": 5307.229444759679, + "max_x": 2489.270610052524, + "max_y": 5307.575981200883, + "center": [ + 2489.270610052524, + 5307.402712980281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.270610052524, + 5307.229444759679 + ], + [ + 2489.270610052524, + 5307.575981200883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FF9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2489.0526235363022, + "min_y": 5308.129438140763, + "max_x": 2489.4885965687454, + "max_y": 5308.5654111732065, + "center": [ + 2489.270610052524, + 5308.347424656985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.270610052524, + 5308.347424656985 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.917471896245, + "min_y": 5307.575981200883, + "max_x": 2489.623748208807, + "max_y": 5307.575981200883, + "center": [ + 2489.2706100525256, + 5307.575981200883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.623748208807, + 5307.575981200883 + ], + [ + 2488.917471896245, + 5307.575981200883 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.917471896245, + "min_y": 5309.118868113086, + "max_x": 2489.623748208807, + "max_y": 5309.118868113086, + "center": [ + 2489.2706100525256, + 5309.118868113086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.623748208807, + 5309.118868113086 + ], + [ + 2488.917471896245, + 5309.118868113086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.930063750127, + "min_y": 5307.778654614728, + "max_x": 2489.158630012806, + "max_y": 5308.160399011792, + "center": [ + 2489.0443468814665, + 5307.96952681326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.158630012806, + 5308.160399011792 + ], + [ + 2488.930063750127, + 5307.778654614728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.930063750127, + "min_y": 5307.778654614728, + "max_x": 2489.611156354925, + "max_y": 5307.778654614728, + "center": [ + 2489.2706100525256, + 5307.778654614728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.930063750127, + 5307.778654614728 + ], + [ + 2489.611156354925, + 5307.778654614728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.382590092243, + "min_y": 5307.778654614728, + "max_x": 2489.611156354925, + "max_y": 5308.160399011792, + "center": [ + 2489.496873223584, + 5307.96952681326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.611156354925, + 5307.778654614728 + ], + [ + 2489.382590092243, + 5308.160399011792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "556FFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.930063750127, + "min_y": 5308.534450302175, + "max_x": 2489.158630012806, + "max_y": 5308.916194699243, + "center": [ + 2489.0443468814665, + 5308.725322500709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.158630012806, + 5308.534450302175 + ], + [ + 2488.930063750127, + 5308.916194699243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557000", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.930063750127, + "min_y": 5308.916194699243, + "max_x": 2489.611156354925, + "max_y": 5308.916194699243, + "center": [ + 2489.2706100525256, + 5308.916194699243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.930063750127, + 5308.916194699243 + ], + [ + 2489.611156354925, + 5308.916194699243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557001", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.382590092243, + "min_y": 5308.534450302175, + "max_x": 2489.611156354925, + "max_y": 5308.916194699243, + "center": [ + 2489.496873223584, + 5308.725322500709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.611156354925, + 5308.916194699243 + ], + [ + 2489.382590092243, + 5308.534450302175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557002", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2487.207736058125, + "min_y": 5307.524928477816, + "max_x": 2487.207736058125, + "max_y": 5307.87146491902, + "center": [ + 2487.207736058125, + 5307.698196698418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.207736058125, + 5307.524928477816 + ], + [ + 2487.207736058125, + 5307.87146491902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557003", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2486.9897495419036, + "min_y": 5308.4249218589, + "max_x": 2487.4257225743468, + "max_y": 5308.860894891343, + "center": [ + 2487.207736058125, + 5308.642908375122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.207736058125, + 5308.642908375122 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557004", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.854597901845, + "min_y": 5307.87146491902, + "max_x": 2487.560874214408, + "max_y": 5307.87146491902, + "center": [ + 2487.2077360581266, + 5307.87146491902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.560874214408, + 5307.87146491902 + ], + [ + 2486.854597901845, + 5307.87146491902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557005", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.854597901845, + "min_y": 5309.414351831223, + "max_x": 2487.560874214408, + "max_y": 5309.414351831223, + "center": [ + 2487.2077360581266, + 5309.414351831223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.560874214408, + 5309.414351831223 + ], + [ + 2486.854597901845, + 5309.414351831223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557006", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.867189755728, + "min_y": 5308.074138332865, + "max_x": 2487.095756018407, + "max_y": 5308.455882729929, + "center": [ + 2486.9814728870674, + 5308.265010531397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.095756018407, + 5308.455882729929 + ], + [ + 2486.867189755728, + 5308.074138332865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557007", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.867189755728, + "min_y": 5308.074138332865, + "max_x": 2487.548282360525, + "max_y": 5308.074138332865, + "center": [ + 2487.207736058126, + 5308.074138332865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.867189755728, + 5308.074138332865 + ], + [ + 2487.548282360525, + 5308.074138332865 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557008", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2487.319716097843, + "min_y": 5308.074138332865, + "max_x": 2487.548282360525, + "max_y": 5308.455882729929, + "center": [ + 2487.433999229184, + 5308.265010531397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.548282360525, + 5308.074138332865 + ], + [ + 2487.319716097843, + 5308.455882729929 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557009", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.867189755728, + "min_y": 5308.829934020312, + "max_x": 2487.095756018407, + "max_y": 5309.21167841738, + "center": [ + 2486.9814728870674, + 5309.020806218847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.095756018407, + 5308.829934020312 + ], + [ + 2486.867189755728, + 5309.21167841738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55700A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.867189755728, + "min_y": 5309.21167841738, + "max_x": 2487.548282360525, + "max_y": 5309.21167841738, + "center": [ + 2487.207736058126, + 5309.21167841738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.867189755728, + 5309.21167841738 + ], + [ + 2487.548282360525, + 5309.21167841738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55700B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2487.319716097843, + "min_y": 5308.829934020312, + "max_x": 2487.548282360525, + "max_y": 5309.21167841738, + "center": [ + 2487.433999229184, + 5309.020806218847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.548282360525, + 5309.21167841738 + ], + [ + 2487.319716097843, + 5308.829934020312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55700C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2487.207736058128, + "min_y": 5309.414351831223, + "max_x": 2487.207736058128, + "max_y": 5312.923594221969, + "center": [ + 2487.207736058128, + 5311.168973026596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2487.207736058128, + 5309.414351831223 + ], + [ + 2487.207736058128, + 5312.923594221969 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55700D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2491.227195285944, + "min_y": 5293.750001895332, + "max_x": 2492.7950290869044, + "max_y": 5295.0565300627995, + "center": [ + 2492.0111121864243, + 5294.403265979066 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55700E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2490.766152091247, + "min_y": 5291.903974760995, + "max_x": 2494.6848655748695, + "max_y": 5293.210212588869, + "center": [ + 2492.7255088330585, + 5292.557093674932 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55700F", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2490.0835880828586, + "min_y": 5291.264310215995, + "max_x": 2494.5170687573113, + "max_y": 5295.697790890448, + "center": [ + 2492.300328420085, + 5293.481050553221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.300328420085, + 5293.481050553221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557010", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.749964834367, + "min_y": 5293.481050553221, + "max_x": 2490.083588082858, + "max_y": 5293.481050553221, + "center": [ + 2489.4167764586127, + 5293.481050553221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.083588082858, + 5293.481050553221 + ], + [ + 2488.749964834367, + 5293.481050553221 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557013", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2470.211522022659, + "min_y": 5305.126547306204, + "max_x": 2477.6027389352557, + "max_y": 5306.246428656597, + "center": [ + 2473.9071304789577, + 5305.6864879814 + ] + }, + "raw_value": "T10200BA-02", + "clean_value": "T10200BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557014", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2469.322139698383, + "min_y": 5306.391287765855, + "max_x": 2476.7133566109796, + "max_y": 5307.511169116248, + "center": [ + 2473.0177481546816, + 5306.951228441052 + ] + }, + "raw_value": "T10200BA-01", + "clean_value": "T10200BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557016", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2469.026431736596, + "min_y": 5307.919685576322, + "max_x": 2476.4176486491924, + "max_y": 5309.039566926715, + "center": [ + 2472.7220401928944, + 5308.479626251519 + ] + }, + "raw_value": "T10200BA-03", + "clean_value": "T10200BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557017", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2176.6801414327356, + "min_y": 5271.454706602272, + "max_x": 2181.362965512045, + "max_y": 5276.137530681582, + "center": [ + 2179.02155347239, + 5273.796118641927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5273.796118641927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557018", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.830105491072, + "min_y": 5268.756876771576, + "max_x": 2179.02155347239, + "max_y": 5268.756876771576, + "center": [ + 2178.425829481731, + 5268.756876771576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.830105491072, + 5268.756876771576 + ], + [ + 2179.02155347239, + 5268.756876771576 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.02155347239, + "min_y": 5267.416819242213, + "max_x": 2179.02155347239, + "max_y": 5269.894260887095, + "center": [ + 2179.02155347239, + 5268.655540064654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5269.894260887095 + ], + [ + 2179.02155347239, + 5267.416819242213 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55701A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2178.8035669561673, + "min_y": 5266.42738926989, + "max_x": 2179.2395399886104, + "max_y": 5266.863362302333, + "center": [ + 2179.021553472389, + 5266.645375786112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.021553472389, + 5266.645375786112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55701B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.66841531611, + "min_y": 5265.873932330009, + "max_x": 2179.374691628671, + "max_y": 5265.873932330009, + "center": [ + 2179.02155347239, + 5265.873932330009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.374691628671, + 5265.873932330009 + ], + [ + 2178.66841531611, + 5265.873932330009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55701C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.66841531611, + "min_y": 5267.416819242213, + "max_x": 2179.374691628671, + "max_y": 5267.416819242213, + "center": [ + 2179.02155347239, + 5267.416819242213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.374691628671, + 5267.416819242213 + ], + [ + 2178.66841531611, + 5267.416819242213 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55701D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.681007169991, + "min_y": 5266.076605743855, + "max_x": 2178.909573432671, + "max_y": 5266.458350140919, + "center": [ + 2178.795290301331, + 5266.267477942387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.909573432671, + 5266.458350140919 + ], + [ + 2178.681007169991, + 5266.076605743855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55701E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.681007169991, + "min_y": 5266.076605743855, + "max_x": 2179.362099774789, + "max_y": 5266.076605743855, + "center": [ + 2179.02155347239, + 5266.076605743855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.681007169991, + 5266.076605743855 + ], + [ + 2179.362099774789, + 5266.076605743855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55701F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.133533512108, + "min_y": 5266.076605743855, + "max_x": 2179.362099774789, + "max_y": 5266.458350140919, + "center": [ + 2179.2478166434485, + 5266.267477942387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.362099774789, + 5266.076605743855 + ], + [ + 2179.133533512108, + 5266.458350140919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557020", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.681007169991, + "min_y": 5266.832401431303, + "max_x": 2178.909573432671, + "max_y": 5267.21414582837, + "center": [ + 2178.795290301331, + 5267.023273629837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.909573432671, + 5266.832401431303 + ], + [ + 2178.681007169991, + 5267.21414582837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557021", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.681007169991, + "min_y": 5267.21414582837, + "max_x": 2179.362099774789, + "max_y": 5267.21414582837, + "center": [ + 2179.02155347239, + 5267.21414582837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.681007169991, + 5267.21414582837 + ], + [ + 2179.362099774789, + 5267.21414582837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.133533512108, + "min_y": 5266.832401431303, + "max_x": 2179.362099774789, + "max_y": 5267.21414582837, + "center": [ + 2179.2478166434485, + 5267.023273629837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.362099774789, + 5267.21414582837 + ], + [ + 2179.133533512108, + 5266.832401431303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.02155347239, + "min_y": 5270.096934300938, + "max_x": 2179.02155347239, + "max_y": 5270.533797141254, + "center": [ + 2179.02155347239, + 5270.315365721096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5270.096934300938 + ], + [ + 2179.02155347239, + 5270.533797141254 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557024", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.02155347239, + "min_y": 5271.075758212298, + "max_x": 2179.02155347239, + "max_y": 5271.454706602272, + "center": [ + 2179.02155347239, + 5271.265232407285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5271.075758212298 + ], + [ + 2179.02155347239, + 5271.454706602272 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557025", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2177.5939901664487, + "min_y": 5268.073698422805, + "max_x": 2180.4491167783317, + "max_y": 5270.928825034688, + "center": [ + 2179.02155347239, + 5269.501261728747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5269.501261728747 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557026", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.439502644969, + "min_y": 5271.075758212298, + "max_x": 2179.603604299812, + "max_y": 5271.075758212298, + "center": [ + 2179.02155347239, + 5271.075758212298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.439502644969, + 5271.075758212298 + ], + [ + 2179.603604299812, + 5271.075758212298 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557027", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.439502644969, + "min_y": 5270.533797141254, + "max_x": 2179.603604299812, + "max_y": 5270.533797141254, + "center": [ + 2179.02155347239, + 5270.533797141254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.603604299812, + 5270.533797141254 + ], + [ + 2178.439502644969, + 5270.533797141254 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557028", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.439502644969, + "min_y": 5270.533797141254, + "max_x": 2178.439502644969, + "max_y": 5271.075758212298, + "center": [ + 2178.439502644969, + 5270.804777676776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.439502644969, + 5270.533797141254 + ], + [ + 2178.439502644969, + 5271.075758212298 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557029", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.66841531611, + "min_y": 5270.096934300938, + "max_x": 2179.374691628671, + "max_y": 5270.096934300938, + "center": [ + 2179.02155347239, + 5270.096934300938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.374691628671, + 5270.096934300938 + ], + [ + 2178.66841531611, + 5270.096934300938 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55702A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.681007169991, + "min_y": 5269.894260887095, + "max_x": 2179.362099774789, + "max_y": 5269.894260887095, + "center": [ + 2179.02155347239, + 5269.894260887095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.681007169991, + 5269.894260887095 + ], + [ + 2179.362099774789, + 5269.894260887095 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55702B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2179.02155347239, + "min_y": 5265.214921717181, + "max_x": 2179.02155347239, + "max_y": 5265.873932330009, + "center": [ + 2179.02155347239, + 5265.544427023595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.02155347239, + 5265.214921717181 + ], + [ + 2179.02155347239, + 5265.873932330009 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55702C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.618540096769, + "min_y": 5264.662604719919, + "max_x": 2178.618540096769, + "max_y": 5265.318222765605, + "center": [ + 2178.618540096769, + 5264.990413742762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.618540096769, + 5265.318222765605 + ], + [ + 2178.618540096769, + 5264.662604719919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55702D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.424566848012, + "min_y": 5264.662604719919, + "max_x": 2179.424566848012, + "max_y": 5265.318222765605, + "center": [ + 2179.424566848012, + 5264.990413742762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.424566848012, + 5265.318222765605 + ], + [ + 2179.424566848012, + 5264.662604719919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55702E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.618540096769, + "min_y": 5264.662604719919, + "max_x": 2179.424566848012, + "max_y": 5264.662604719919, + "center": [ + 2179.02155347239, + 5264.662604719919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.618540096769, + 5264.662604719919 + ], + [ + 2179.424566848012, + 5264.662604719919 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55702F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2179.599532355397, + "min_y": 5266.251330738626, + "max_x": 2186.9907492679936, + "max_y": 5267.3712120890195, + "center": [ + 2183.295140811695, + 5266.811271413822 + ] + }, + "raw_value": "T10201BA-08", + "clean_value": "T10201BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557030", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2118.79612555081, + "min_y": 5204.844274289669, + "max_x": 2118.79612555081, + "max_y": 5206.162295515326, + "center": [ + 2118.79612555081, + 5205.503284902497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.79612555081, + 5204.844274289669 + ], + [ + 2118.79612555081, + 5206.162295515326 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557031", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2118.5381533422637, + "min_y": 5203.6733512455, + "max_x": 2119.054097759356, + "max_y": 5204.189295662592, + "center": [ + 2118.79612555081, + 5203.931323454046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.79612555081, + 5203.931323454046 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557032", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5204.844274289669, + "max_x": 2119.199138926431, + "max_y": 5204.844274289669, + "center": [ + 2118.79612555081, + 5204.844274289669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5204.844274289669 + ], + [ + 2119.199138926431, + 5204.844274289669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557033", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5203.018372618423, + "max_x": 2119.199138926431, + "max_y": 5203.018372618423, + "center": [ + 2118.79612555081, + 5203.018372618423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5203.018372618423 + ], + [ + 2119.199138926431, + 5203.018372618423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557034", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5203.258222812319, + "max_x": 2118.663604793745, + "max_y": 5203.709991329553, + "center": [ + 2118.528358484467, + 5203.484107070936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.663604793745, + 5203.709991329553 + ], + [ + 2118.393112175189, + 5203.258222812319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557035", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5203.258222812319, + "max_x": 2119.199138926431, + "max_y": 5203.258222812319, + "center": [ + 2118.79612555081, + 5203.258222812319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5203.258222812319 + ], + [ + 2119.199138926431, + 5203.258222812319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557036", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.928646307873, + "min_y": 5203.258222812319, + "max_x": 2119.199138926431, + "max_y": 5203.709991329553, + "center": [ + 2119.063892617152, + 5203.484107070936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.199138926431, + 5203.258222812319 + ], + [ + 2118.928646307873, + 5203.709991329553 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557037", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5204.152655578529, + "max_x": 2118.663604793745, + "max_y": 5204.604424095769, + "center": [ + 2118.528358484467, + 5204.378539837149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.663604793745, + 5204.152655578529 + ], + [ + 2118.393112175189, + 5204.604424095769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557038", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5204.604424095769, + "max_x": 2119.199138926431, + "max_y": 5204.604424095769, + "center": [ + 2118.79612555081, + 5204.604424095769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5204.604424095769 + ], + [ + 2119.199138926431, + 5204.604424095769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557039", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.928646307873, + "min_y": 5204.152655578529, + "max_x": 2119.199138926431, + "max_y": 5204.604424095769, + "center": [ + 2119.063892617152, + 5204.378539837149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.199138926431, + 5204.604424095769 + ], + [ + 2118.928646307873, + 5204.152655578529 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55703A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2118.79612555081, + "min_y": 5202.359362005593, + "max_x": 2118.79612555081, + "max_y": 5203.018372618423, + "center": [ + 2118.79612555081, + 5202.688867312008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.79612555081, + 5202.359362005593 + ], + [ + 2118.79612555081, + 5203.018372618423 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55703B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5201.807045008331, + "max_x": 2118.393112175189, + "max_y": 5202.462663054018, + "center": [ + 2118.393112175189, + 5202.134854031175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5202.462663054018 + ], + [ + 2118.393112175189, + 5201.807045008331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55703C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.199138926431, + "min_y": 5201.807045008331, + "max_x": 2119.199138926431, + "max_y": 5202.462663054018, + "center": [ + 2119.199138926431, + 5202.134854031175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.199138926431, + 5202.462663054018 + ], + [ + 2119.199138926431, + 5201.807045008331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55703D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.393112175189, + "min_y": 5201.807045008331, + "max_x": 2119.199138926431, + "max_y": 5201.807045008331, + "center": [ + 2118.79612555081, + 5201.807045008331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.393112175189, + 5201.807045008331 + ], + [ + 2119.199138926431, + 5201.807045008331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55703E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5387.788723926037, + "max_x": 2370.62626231742, + "max_y": 5393.625648800863, + "center": [ + 2370.62626231742, + 5390.70718636345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5393.625648800863 + ], + [ + 2370.62626231742, + 5387.788723926037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55703F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5392.154800557705, + "max_x": 2371.60682781286, + "max_y": 5393.135366053144, + "center": [ + 2371.1165450651397, + 5392.645083305424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5392.154800557705 + ], + [ + 2371.60682781286, + 5393.135366053144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557040", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5391.461436046481, + "max_x": 2371.60682781286, + "max_y": 5392.442001541921, + "center": [ + 2371.1165450651397, + 5391.951718794201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5391.461436046481 + ], + [ + 2371.60682781286, + 5392.442001541921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557041", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5390.768071535259, + "max_x": 2371.60682781286, + "max_y": 5391.748637030699, + "center": [ + 2371.1165450651397, + 5391.258354282979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5390.768071535259 + ], + [ + 2371.60682781286, + 5391.748637030699 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557042", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5390.074707024037, + "max_x": 2371.60682781286, + "max_y": 5391.055272519476, + "center": [ + 2371.1165450651397, + 5390.564989771756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5390.074707024037 + ], + [ + 2371.60682781286, + 5391.055272519476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557043", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5389.381342512812, + "max_x": 2371.60682781286, + "max_y": 5390.361908008252, + "center": [ + 2371.1165450651397, + 5389.871625260532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5389.381342512812 + ], + [ + 2371.60682781286, + 5390.361908008252 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557044", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.62626231742, + "min_y": 5388.687978001591, + "max_x": 2371.60682781286, + "max_y": 5389.66854349703, + "center": [ + 2371.1165450651397, + 5389.1782607493105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.62626231742, + 5388.687978001591 + ], + [ + 2371.60682781286, + 5389.66854349703 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557045", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2370.042483151893, + "min_y": 5388.108301485149, + "max_x": 2372.7301983928373, + "max_y": 5389.601476619007, + "center": [ + 2371.386340772365, + 5388.854889052078 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557046", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2471.136485291439, + "min_y": 5361.390956561534, + "max_x": 2481.56145702684, + "max_y": 5366.544421631686, + "center": [ + 2476.348971159139, + 5363.96768909661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.56145702684, + 5366.544421631686 + ], + [ + 2471.136485291439, + 5361.390956561534 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557047", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2471.136485291439, + "min_y": 5346.031405203508, + "max_x": 2471.136485291439, + "max_y": 5361.390956561534, + "center": [ + 2471.136485291439, + 5353.711180882521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2471.136485291439, + 5361.390956561534 + ], + [ + 2471.136485291439, + 5346.031405203508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557048", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.56145702684, + "min_y": 5361.390956561534, + "max_x": 2491.792521439869, + "max_y": 5366.544421631686, + "center": [ + 2486.676989233354, + 5363.96768909661 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.56145702684, + 5366.544421631686 + ], + [ + 2491.792521439869, + 5361.390956561534 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557049", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.792521439869, + "min_y": 5346.031405203508, + "max_x": 2491.792521439869, + "max_y": 5361.390956561534, + "center": [ + 2491.792521439869, + 5353.711180882521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5361.390956561534 + ], + [ + 2491.792521439869, + 5346.031405203508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2471.136485291439, + "min_y": 5346.031405203508, + "max_x": 2491.792521439869, + "max_y": 5346.031405203508, + "center": [ + 2481.464503365654, + 5346.031405203508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5346.031405203508 + ], + [ + 2471.136485291439, + 5346.031405203508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.564188415571, + "min_y": 5366.543045810384, + "max_x": 2481.564188415571, + "max_y": 5368.779741409625, + "center": [ + 2481.564188415571, + 5367.661393610004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.564188415571, + 5366.543045810384 + ], + [ + 2481.564188415571, + 5368.779741409625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2481.064744930413, + "min_y": 5367.434765222194, + "max_x": 2482.063631900663, + "max_y": 5367.434765222194, + "center": [ + 2481.564188415538, + 5367.434765222194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2482.063631900663, + 5367.434765222194 + ], + [ + 2481.064744930413, + 5367.434765222194 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2480.906666288829, + "min_y": 5350.274555068748, + "max_x": 2481.7894685064907, + "max_y": 5351.010223583466, + "center": [ + 2481.34806739766, + 5350.642389326107 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2479.9293694939756, + "min_y": 5348.828623662757, + "max_x": 2483.1990073371667, + "max_y": 5352.098261505949, + "center": [ + 2481.564188415571, + 5350.463442584353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2481.564188415571, + 5350.463442584353 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55704F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2472.555181031151, + "min_y": 5363.230886073695, + "max_x": 2473.554068001453, + "max_y": 5363.230886073695, + "center": [ + 2473.054624516302, + 5363.230886073695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.554068001453, + 5363.230886073695 + ], + [ + 2472.555181031151, + 5363.230886073695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557050", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2473.054624516299, + "min_y": 5347.691751021603, + "max_x": 2473.054624516299, + "max_y": 5363.230886073695, + "center": [ + 2473.054624516299, + 5355.461318547648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.054624516299, + 5363.230886073695 + ], + [ + 2473.054624516299, + 5347.691751021603 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557051", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2473.054624516299, + "min_y": 5363.230886073695, + "max_x": 2473.054624516299, + "max_y": 5365.137491307063, + "center": [ + 2473.054624516299, + 5364.1841886903785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.054624516299, + 5363.230886073695 + ], + [ + 2473.054624516299, + 5365.137491307063 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557052", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2474.946413129642, + "min_y": 5368.567785894407, + "max_x": 2478.9190231091197, + "max_y": 5369.303454409125, + "center": [ + 2476.932718119381, + 5368.935620151766 + ] + }, + "raw_value": "EMERGENCY", + "clean_value": "EMERGENCY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557053", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2477.139589173332, + "min_y": 5364.345876981898, + "max_x": 2477.139589173332, + "max_y": 5365.937832452745, + "center": [ + 2477.139589173332, + 5365.141854717322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2477.139589173332, + 5365.937832452745 + ], + [ + 2477.139589173332, + 5364.345876981898 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557054", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2478.489244161332, + "min_y": 5365.025708479064, + "max_x": 2478.489244161332, + "max_y": 5365.937832452745, + "center": [ + 2478.489244161332, + 5365.481770465904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2478.489244161332, + 5365.937832452745 + ], + [ + 2478.489244161332, + 5365.025708479064 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557055", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2476.87901431515, + "min_y": 5365.937832452745, + "max_x": 2478.749819019512, + "max_y": 5365.937832452863, + "center": [ + 2477.814416667331, + 5365.937832452804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2476.87901431515, + 5365.937832452863 + ], + [ + 2478.749819019512, + 5365.937832452745 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557056", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2476.87901431515, + "min_y": 5366.383692158706, + "max_x": 2478.749819019512, + "max_y": 5366.383692158706, + "center": [ + 2477.814416667331, + 5366.383692158706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2476.87901431515, + 5366.383692158706 + ], + [ + 2478.749819019512, + 5366.383692158706 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557057", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2476.310713134922, + "min_y": 5367.507405881463, + "max_x": 2478.517718679076, + "max_y": 5368.24307439618, + "center": [ + 2477.414215906999, + 5367.875240138821 + ] + }, + "raw_value": "HATCH", + "clean_value": "HATCH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557058", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2480.55461212111, + "min_y": 5347.650892408904, + "max_x": 2482.3202165564335, + "max_y": 5348.386560923622, + "center": [ + 2481.4374143387718, + 5348.018726666263 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557059", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.571932279813, + "min_y": 5363.233481592929, + "max_x": 2490.570819250117, + "max_y": 5363.233481592929, + "center": [ + 2490.071375764965, + 5363.233481592929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.570819250117, + 5363.233481592929 + ], + [ + 2489.571932279813, + 5363.233481592929 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.071375764967, + "min_y": 5347.694346540844, + "max_x": 2490.071375764967, + "max_y": 5363.233481592929, + "center": [ + 2490.071375764967, + 5355.463914066886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.071375764967, + 5363.233481592929 + ], + [ + 2490.071375764967, + 5347.694346540844 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.071375764967, + "min_y": 5363.233481592929, + "max_x": 2490.071375764967, + "max_y": 5366.592245104294, + "center": [ + 2490.071375764967, + 5364.912863348612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.071375764967, + 5363.233481592929 + ], + [ + 2490.071375764967, + 5366.592245104294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2465.404489523623, + "min_y": 5348.367279360728, + "max_x": 2466.2872917412847, + "max_y": 5349.102947875446, + "center": [ + 2465.845890632454, + 5348.735113618088 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2464.3690381326805, + "min_y": 5346.364629721645, + "max_x": 2467.6386759758716, + "max_y": 5349.634267564837, + "center": [ + 2466.003857054276, + 5347.999448643241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2466.003857054276, + 5347.999448643241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2467.638675975835, + "min_y": 5347.999448643241, + "max_x": 2471.136485291439, + "max_y": 5347.999448643241, + "center": [ + 2469.3875806336373, + 5347.999448643241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2467.638675975835, + 5347.999448643241 + ], + [ + 2471.136485291439, + 5347.999448643241 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55705F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2470.122382046408, + "min_y": 5347.500005158149, + "max_x": 2470.122382046408, + "max_y": 5348.498892128326, + "center": [ + 2470.122382046408, + 5347.999448643237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2470.122382046408, + 5347.500005158149 + ], + [ + 2470.122382046408, + 5348.498892128326 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557060", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2464.987281102658, + "min_y": 5346.918925438941, + "max_x": 2466.7528855379815, + "max_y": 5347.654593953659, + "center": [ + 2465.8700833203197, + 5347.286759696301 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557061", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2476.783399585769, + "min_y": 5363.086582874877, + "max_x": 2478.5490040210925, + "max_y": 5363.822251389595, + "center": [ + 2477.666201803431, + 5363.454417132236 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557062", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2487.741905815865, + "min_y": 5364.610774992066, + "max_x": 2488.740792786169, + "max_y": 5364.610774992066, + "center": [ + 2488.241349301017, + 5364.610774992066 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.740792786169, + 5364.610774992066 + ], + [ + 2487.741905815865, + 5364.610774992066 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557063", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.241349301019, + "min_y": 5347.694346540844, + "max_x": 2488.241349301019, + "max_y": 5364.610774992066, + "center": [ + 2488.241349301019, + 5356.152560766455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.241349301019, + 5364.610774992066 + ], + [ + 2488.241349301019, + 5347.694346540844 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557064", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.241349301019, + "min_y": 5364.610774992066, + "max_x": 2488.241349301019, + "max_y": 5371.558294615507, + "center": [ + 2488.241349301019, + 5368.0845348037865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.241349301019, + 5364.610774992066 + ], + [ + 2488.241349301019, + 5371.558294615507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557065", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.47891073902, + "min_y": 5344.236508642754, + "max_x": 2491.272087211854, + "max_y": 5344.236508642754, + "center": [ + 2490.875498975437, + 5344.236508642754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.47891073902, + 5344.236508642754 + ], + [ + 2491.272087211854, + 5344.236508642754 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557066", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.868343959903, + "min_y": 5343.704507813584, + "max_x": 2493.46470437944, + "max_y": 5344.061573623455, + "center": [ + 2493.1665241696714, + 5343.88304071852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.46470437944, + 5343.704507813584 + ], + [ + 2492.868343959903, + 5344.061573623455 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557067", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.687641278447, + "min_y": 5344.411443662043, + "max_x": 2492.284001697982, + "max_y": 5344.768509471915, + "center": [ + 2491.9858214882142, + 5344.589976566979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.284001697982, + 5344.411443662043 + ], + [ + 2491.687641278447, + 5344.768509471915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557068", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.46470437944, + "min_y": 5343.704507813584, + "max_x": 2493.46470437944, + "max_y": 5344.768509471915, + "center": [ + 2493.46470437944, + 5344.23650864275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.46470437944, + 5344.768509471915 + ], + [ + 2493.46470437944, + 5343.704507813584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557069", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.687641278447, + "min_y": 5343.704507813584, + "max_x": 2491.687641278447, + "max_y": 5344.768509471915, + "center": [ + 2491.687641278447, + 5344.23650864275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.687641278447, + 5344.768509471915 + ], + [ + 2491.687641278447, + 5343.704507813584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.868343959903, + "min_y": 5344.411443662043, + "max_x": 2493.46470437944, + "max_y": 5344.768509471915, + "center": [ + 2493.1665241696714, + 5344.589976566979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.46470437944, + 5344.768509471915 + ], + [ + 2492.868343959903, + 5344.411443662043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.687641278447, + "min_y": 5343.704507813584, + "max_x": 2492.284001697982, + "max_y": 5344.061573623458, + "center": [ + 2491.9858214882142, + 5343.883040718521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.284001697982, + 5344.061573623458 + ], + [ + 2491.687641278447, + 5343.704507813584 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.272087211854, + "min_y": 5343.684836841804, + "max_x": 2491.272087211854, + "max_y": 5344.788180443702, + "center": [ + 2491.272087211854, + 5344.236508642753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.272087211854, + 5344.788180443702 + ], + [ + 2491.272087211854, + 5343.684836841804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.880258446035, + "min_y": 5343.684836841804, + "max_x": 2493.880258446035, + "max_y": 5344.788180443702, + "center": [ + 2493.880258446035, + 5344.236508642753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.880258446035, + 5344.788180443702 + ], + [ + 2493.880258446035, + 5343.684836841804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2492.2356346802117, + "min_y": 5343.895970494017, + "max_x": 2492.9167109776763, + "max_y": 5344.577046791483, + "center": [ + 2492.576172828944, + 5344.23650864275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.576172828944, + 5344.23650864275 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55706F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.47891073902, + "min_y": 5344.236508642754, + "max_x": 2490.47891073902, + "max_y": 5346.031405203508, + "center": [ + 2490.47891073902, + 5345.133956923131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.47891073902, + 5344.236508642754 + ], + [ + 2490.47891073902, + 5346.031405203508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557070", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2492.662911617962, + "min_y": 5345.301754442988, + "max_x": 2494.075395166221, + "max_y": 5346.086467525353, + "center": [ + 2493.3691533920914, + 5345.69411098417 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557071", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.308271640009, + "min_y": 5368.054622688071, + "max_x": 2506.265762012997, + "max_y": 5368.054622688071, + "center": [ + 2500.287016826503, + 5368.054622688071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.265762012997, + 5368.054622688071 + ], + [ + 2494.308271640009, + 5368.054622688071 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557072", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.308271640009, + "min_y": 5365.129867520515, + "max_x": 2506.265762012997, + "max_y": 5365.129867520515, + "center": [ + 2500.287016826503, + 5365.129867520515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5365.129867520515 + ], + [ + 2506.265762012997, + 5365.129867520515 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557073", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5366.592245104294, + "max_x": 2494.308271640009, + "max_y": 5368.054622688071, + "center": [ + 2493.5770828481195, + 5367.323433896183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5368.054622688071 + ], + [ + 2492.84589405623, + 5366.592245104294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557074", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5365.129867520515, + "max_x": 2494.308271640009, + "max_y": 5366.592245104294, + "center": [ + 2493.5770828481195, + 5365.861056312405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5365.129867520515 + ], + [ + 2492.84589405623, + 5366.592245104294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557075", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.265762012997, + "min_y": 5365.129867520519, + "max_x": 2506.265762012997, + "max_y": 5368.054622688071, + "center": [ + 2506.265762012997, + 5366.592245104295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.265762012997, + 5368.054622688071 + ], + [ + 2506.265762012997, + 5365.129867520519 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557076", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.071375764967, + "min_y": 5366.592245104294, + "max_x": 2492.84589405623, + "max_y": 5366.592245104294, + "center": [ + 2491.4586349105984, + 5366.592245104294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.071375764967, + 5366.592245104294 + ], + [ + 2492.84589405623, + 5366.592245104294 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557077", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.308271640009, + "min_y": 5373.020672199285, + "max_x": 2506.265762012997, + "max_y": 5373.020672199285, + "center": [ + 2500.287016826503, + 5373.020672199285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.265762012997, + 5373.020672199285 + ], + [ + 2494.308271640009, + 5373.020672199285 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557078", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.308271640009, + "min_y": 5370.095917031728, + "max_x": 2506.265762012997, + "max_y": 5370.095917031728, + "center": [ + 2500.287016826503, + 5370.095917031728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5370.095917031728 + ], + [ + 2506.265762012997, + 5370.095917031728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557079", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5371.558294615507, + "max_x": 2494.308271640009, + "max_y": 5373.020672199285, + "center": [ + 2493.5770828481195, + 5372.289483407396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5373.020672199285 + ], + [ + 2492.84589405623, + 5371.558294615507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.84589405623, + "min_y": 5370.095917031728, + "max_x": 2494.308271640009, + "max_y": 5371.558294615507, + "center": [ + 2493.5770828481195, + 5370.827105823618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.308271640009, + 5370.095917031728 + ], + [ + 2492.84589405623, + 5371.558294615507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2506.265762012997, + "min_y": 5370.095917031732, + "max_x": 2506.265762012997, + "max_y": 5373.020672199285, + "center": [ + 2506.265762012997, + 5371.558294615508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2506.265762012997, + 5373.020672199285 + ], + [ + 2506.265762012997, + 5370.095917031732 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.241349301019, + "min_y": 5371.558294615507, + "max_x": 2492.84589405623, + "max_y": 5371.558294615507, + "center": [ + 2490.5436216786247, + 5371.558294615507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.241349301019, + 5371.558294615507 + ], + [ + 2492.84589405623, + 5371.558294615507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2495.333959193356, + "min_y": 5365.980056366857, + "max_x": 2502.9025653118547, + "max_y": 5367.12681486966, + "center": [ + 2499.1182622526053, + 5366.553435618258 + ] + }, + "raw_value": "WASTE WATER", + "clean_value": "WASTE WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2495.333959193356, + "min_y": 5370.946105878069, + "max_x": 2502.9025653118547, + "max_y": 5372.092864380872, + "center": [ + 2499.1182622526053, + 5371.519485129471 + ] + }, + "raw_value": "WASTE WATER", + "clean_value": "WASTE WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55707F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2485.820462385315, + "min_y": 5365.844020203936, + "max_x": 2486.819349355617, + "max_y": 5365.844020203936, + "center": [ + 2486.319905870466, + 5365.844020203936 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.819349355617, + 5365.844020203936 + ], + [ + 2485.820462385315, + 5365.844020203936 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557080", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2486.319905870467, + "min_y": 5364.147554706235, + "max_x": 2486.319905870467, + "max_y": 5365.844020203936, + "center": [ + 2486.319905870467, + 5364.9957874550855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2486.319905870467, + 5365.844020203936 + ], + [ + 2486.319905870467, + 5364.147554706235 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557081", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2459.69820935101, + "min_y": 5368.186541525555, + "max_x": 2465.4305684168958, + "max_y": 5369.380782997615, + "center": [ + 2462.564388883953, + 5368.783662261585 + ] + }, + "raw_value": "SC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557082", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2456.90196118856, + "min_y": 5367.175232127917, + "max_x": 2468.396881942988, + "max_y": 5367.175232127917, + "center": [ + 2462.649421565774, + 5367.175232127917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.90196118856, + 5367.175232127917 + ], + [ + 2468.396881942988, + 5367.175232127917 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557083", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2456.90196118856, + "min_y": 5370.351294887962, + "max_x": 2468.396881942996, + "max_y": 5370.351294887962, + "center": [ + 2462.649421565778, + 5370.351294887962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2468.396881942996, + 5370.351294887962 + ], + [ + 2456.90196118856, + 5370.351294887962 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557084", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2456.90196118856, + "min_y": 5367.175232127917, + "max_x": 2456.90196118856, + "max_y": 5370.351294887962, + "center": [ + 2456.90196118856, + 5368.763263507939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.90196118856, + 5370.351294887962 + ], + [ + 2456.90196118856, + 5367.175232127917 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557085", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2468.396881942991, + "min_y": 5367.17523212792, + "max_x": 2469.984913323013, + "max_y": 5368.763263507942, + "center": [ + 2469.1908976330024, + 5367.969247817931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2468.396881942991, + 5367.17523212792 + ], + [ + 2469.984913323013, + 5368.763263507942 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557086", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2468.396881942991, + "min_y": 5368.763263507942, + "max_x": 2469.984913323013, + "max_y": 5370.351294887964, + "center": [ + 2469.1908976330024, + 5369.557279197953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2469.984913323013, + 5368.763263507942 + ], + [ + 2468.396881942991, + 5370.351294887964 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557087", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2456.756909889844, + "min_y": 5370.622631931941, + "max_x": 2465.3575986608653, + "max_y": 5371.518537012256, + "center": [ + 2461.0572542753544, + 5371.070584472099 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557088", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2469.984913323013, + "min_y": 5368.763263507942, + "max_x": 2473.054624516299, + "max_y": 5368.763263507942, + "center": [ + 2471.519768919656, + 5368.763263507942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2469.984913323013, + 5368.763263507942 + ], + [ + 2473.054624516299, + 5368.763263507942 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557089", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2473.054624516299, + "min_y": 5365.137491307063, + "max_x": 2473.054624516299, + "max_y": 5368.763263507942, + "center": [ + 2473.054624516299, + 5366.950377407502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.054624516299, + 5368.763263507942 + ], + [ + 2473.054624516299, + 5365.137491307063 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55708A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2469.130894278424, + "min_y": 5367.909244463352, + "max_x": 2473.692369090208, + "max_y": 5367.909244463352, + "center": [ + 2471.411631684316, + 5367.909244463352 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2469.130894278424, + 5367.909244463352 + ], + [ + 2473.692369090208, + 5367.909244463352 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55708B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2473.692369090208, + "min_y": 5362.654428368906, + "max_x": 2473.692369090208, + "max_y": 5367.909244463352, + "center": [ + 2473.692369090208, + 5365.2818364161285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2473.692369090208, + 5367.909244463352 + ], + [ + 2473.692369090208, + 5362.654428368906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55708C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.838432908135, + "min_y": 5361.871538221823, + "max_x": 2490.838432908135, + "max_y": 5365.93122300588, + "center": [ + 2490.838432908135, + 5363.901380613852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.838432908135, + 5365.93122300588 + ], + [ + 2490.838432908135, + 5361.871538221823 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55708D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.838432908135, + "min_y": 5365.93122300588, + "max_x": 2493.506916154644, + "max_y": 5365.93122300588, + "center": [ + 2492.1726745313895, + 5365.93122300588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.838432908135, + 5365.93122300588 + ], + [ + 2493.506916154644, + 5365.93122300588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55708E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.876286875547, + "min_y": 5362.859886123199, + "max_x": 2488.876286875547, + "max_y": 5370.817693087627, + "center": [ + 2488.876286875547, + 5366.838789605414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.876286875547, + 5370.817693087627 + ], + [ + 2488.876286875547, + 5362.859886123199 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55708F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2488.876286875547, + "min_y": 5370.817693087627, + "max_x": 2493.586495584109, + "max_y": 5370.817693087627, + "center": [ + 2491.2313912298278, + 5370.817693087627 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2488.876286875547, + 5370.817693087627 + ], + [ + 2493.586495584109, + 5370.817693087627 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557090", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.792521439869, + "min_y": 5350.309866685655, + "max_x": 2492.585697912703, + "max_y": 5350.309866685655, + "center": [ + 2492.1891096762856, + 5350.309866685655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5350.309866685655 + ], + [ + 2492.585697912703, + 5350.309866685655 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557091", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2495.193869146884, + "min_y": 5350.33261305099, + "max_x": 2496.259011273228, + "max_y": 5350.33261305099, + "center": [ + 2495.7264402100564, + 5350.33261305099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2495.193869146884, + 5350.33261305099 + ], + [ + 2496.259011273228, + 5350.33261305099 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557092", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2496.259011273228, + "min_y": 5349.405508569407, + "max_x": 2497.122259831891, + "max_y": 5351.259717532697, + "center": [ + 2496.69063555256, + 5350.332613051052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.122259831891, + 5351.259717532697 + ], + [ + 2497.122259831891, + 5349.405508569407 + ], + [ + 2496.259011273228, + 5349.405508569407 + ], + [ + 2496.259011273228, + 5351.259717532697 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557093", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2492.3405071843545, + "min_y": 5348.058756067313, + "max_x": 2496.8882211517093, + "max_y": 5352.606470034668, + "center": [ + 2494.614364168032, + 5350.33261305099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.614364168032, + 5350.33261305099 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557094", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2493.075846270806, + "min_y": 5351.282241975305, + "max_x": 2494.488329819065, + "max_y": 5352.06695505767, + "center": [ + 2493.7820880449353, + 5351.674598516487 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557095", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2499.419948616949, + "min_y": 5350.724965816366, + "max_x": 2500.361604315788, + "max_y": 5351.509678898732, + "center": [ + 2499.8907764663686, + 5351.11732235755 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557096", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2498.187401958236, + "min_y": 5348.588806201351, + "max_x": 2501.6750156576404, + "max_y": 5352.076419900755, + "center": [ + 2499.931208807938, + 5350.332613051053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.931208807938, + 5350.332613051053 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557097", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2498.886677224001, + "min_y": 5349.164247856023, + "max_x": 2500.769988621679, + "max_y": 5349.948960938389, + "center": [ + 2499.8283329228398, + 5349.556604397207 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557098", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.122259831891, + "min_y": 5350.332613051053, + "max_x": 2498.187401958235, + "max_y": 5350.332613051053, + "center": [ + 2497.6548308950632, + 5350.332613051053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.122259831891, + 5350.332613051053 + ], + [ + 2498.187401958235, + 5350.332613051053 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557099", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.181954660753, + "min_y": 5349.777865856486, + "max_x": 2494.778315080289, + "max_y": 5350.134931666357, + "center": [ + 2494.480134870521, + 5349.956398761422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.778315080289, + 5349.777865856486 + ], + [ + 2494.181954660753, + 5350.134931666357 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.001251979297, + "min_y": 5350.484801704944, + "max_x": 2493.597612398832, + "max_y": 5350.841867514818, + "center": [ + 2493.2994321890646, + 5350.663334609881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.597612398832, + 5350.484801704944 + ], + [ + 2493.001251979297, + 5350.841867514818 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.778315080289, + "min_y": 5349.777865856486, + "max_x": 2494.778315080289, + "max_y": 5350.841867514818, + "center": [ + 2494.778315080289, + 5350.309866685651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.778315080289, + 5350.841867514818 + ], + [ + 2494.778315080289, + 5349.777865856486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.001251979297, + "min_y": 5349.777865856486, + "max_x": 2493.001251979297, + "max_y": 5350.841867514818, + "center": [ + 2493.001251979297, + 5350.309866685651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.001251979297, + 5350.841867514818 + ], + [ + 2493.001251979297, + 5349.777865856486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.181954660753, + "min_y": 5350.484801704944, + "max_x": 2494.778315080289, + "max_y": 5350.841867514818, + "center": [ + 2494.480134870521, + 5350.663334609881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.778315080289, + 5350.841867514818 + ], + [ + 2494.181954660753, + 5350.484801704944 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.001251979297, + "min_y": 5349.777865856486, + "max_x": 2493.597612398832, + "max_y": 5350.134931666359, + "center": [ + 2493.2994321890646, + 5349.956398761422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.597612398832, + 5350.134931666359 + ], + [ + 2493.001251979297, + 5349.777865856486 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55709F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.585697912703, + "min_y": 5349.758194884705, + "max_x": 2492.585697912703, + "max_y": 5350.861538486603, + "center": [ + 2492.585697912703, + 5350.309866685654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.585697912703, + 5350.861538486603 + ], + [ + 2492.585697912703, + 5349.758194884705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2495.193869146884, + "min_y": 5349.758194884705, + "max_x": 2495.193869146884, + "max_y": 5350.861538486603, + "center": [ + 2495.193869146884, + 5350.309866685654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2495.193869146884, + 5350.861538486603 + ], + [ + 2495.193869146884, + 5349.758194884705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2493.5492453810607, + "min_y": 5349.969328536919, + "max_x": 2494.2303216785253, + "max_y": 5350.650404834385, + "center": [ + 2493.889783529793, + 5350.309866685652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.889783529793, + 5350.309866685652 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.792521439869, + "min_y": 5347.345355869404, + "max_x": 2499.407411311395, + "max_y": 5347.345355869404, + "center": [ + 2495.599966375632, + 5347.345355869404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5347.345355869404 + ], + [ + 2499.407411311395, + 5347.345355869404 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5570A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2501.003668059444, + "min_y": 5346.813355040236, + "max_x": 2501.600028478981, + "max_y": 5347.170420850106, + "center": [ + 2501.3018482692123, + 5346.991887945171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.600028478981, + 5346.813355040236 + ], + [ + 2501.003668059444, + 5347.170420850106 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2499.822965377988, + "min_y": 5347.520290888694, + "max_x": 2500.419325797523, + "max_y": 5347.877356698567, + "center": [ + 2500.1211455877556, + 5347.698823793631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.419325797523, + 5347.520290888694 + ], + [ + 2499.822965377988, + 5347.877356698567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2501.600028478981, + "min_y": 5346.813355040236, + "max_x": 2501.600028478981, + "max_y": 5347.877356698567, + "center": [ + 2501.600028478981, + 5347.345355869402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.600028478981, + 5347.877356698567 + ], + [ + 2501.600028478981, + 5346.813355040236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2499.822965377988, + "min_y": 5346.813355040236, + "max_x": 2499.822965377988, + "max_y": 5347.877356698567, + "center": [ + 2499.822965377988, + 5347.345355869402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.822965377988, + 5347.877356698567 + ], + [ + 2499.822965377988, + 5346.813355040236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2501.003668059444, + "min_y": 5347.520290888694, + "max_x": 2501.600028478981, + "max_y": 5347.877356698567, + "center": [ + 2501.3018482692123, + 5347.698823793631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.600028478981, + 5347.877356698567 + ], + [ + 2501.003668059444, + 5347.520290888694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2499.822965377988, + "min_y": 5346.813355040236, + "max_x": 2500.419325797523, + "max_y": 5347.170420850108, + "center": [ + 2500.1211455877556, + 5346.9918879451725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.419325797523, + 5347.170420850108 + ], + [ + 2499.822965377988, + 5346.813355040236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2499.407411311395, + "min_y": 5346.793684068455, + "max_x": 2499.407411311395, + "max_y": 5347.897027670353, + "center": [ + 2499.407411311395, + 5347.345355869404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.407411311395, + 5347.897027670353 + ], + [ + 2499.407411311395, + 5346.793684068455 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2502.015582545576, + "min_y": 5346.793684068455, + "max_x": 2502.015582545576, + "max_y": 5347.897027670353, + "center": [ + 2502.015582545576, + 5347.345355869404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2502.015582545576, + 5347.897027670353 + ], + [ + 2502.015582545576, + 5346.793684068455 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570AB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2500.3709587797525, + "min_y": 5347.004817720668, + "max_x": 2501.052035077217, + "max_y": 5347.685894018134, + "center": [ + 2500.711496928485, + 5347.345355869401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.711496928485, + 5347.345355869401 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.792521439869, + "min_y": 5346.848129145911, + "max_x": 2499.407411311395, + "max_y": 5346.848129145911, + "center": [ + 2495.599966375632, + 5346.848129145911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5346.848129145911 + ], + [ + 2499.407411311395, + 5346.848129145911 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.792521439869, + "min_y": 5349.781413049835, + "max_x": 2496.259011273228, + "max_y": 5349.781413049835, + "center": [ + 2494.0257663565485, + 5349.781413049835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.792521439869, + 5349.781413049835 + ], + [ + 2496.259011273228, + 5349.781413049835 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.93055775271, + "min_y": 5343.738772163221, + "max_x": 2489.93055775271, + "max_y": 5346.031405203508, + "center": [ + 2489.93055775271, + 5344.885088683364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.93055775271, + 5346.031405203508 + ], + [ + 2489.93055775271, + 5343.738772163221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2467.558888129217, + "min_y": 5347.494957550775, + "max_x": 2471.136485291439, + "max_y": 5347.494957550775, + "center": [ + 2469.347686710328, + 5347.494957550775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2467.558888129217, + 5347.494957550775 + ], + [ + 2471.136485291439, + 5347.494957550775 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2489.93055775271, + "min_y": 5343.738772163221, + "max_x": 2491.272087211854, + "max_y": 5343.738772163221, + "center": [ + 2490.601322482282, + 5343.738772163221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2489.93055775271, + 5343.738772163221 + ], + [ + 2491.272087211854, + 5343.738772163221 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.191434068143, + "min_y": 5176.049844255125, + "max_x": 2376.191434068143, + "max_y": 5180.155653766251, + "center": [ + 2376.191434068143, + 5178.102749010688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.191434068143, + 5176.049844255125 + ], + [ + 2376.191434068143, + 5180.155653766251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5179.609866310915, + "max_x": 2376.191434068143, + "max_y": 5179.609866310915, + "center": [ + 2370.658466519583, + 5179.609866310915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.191434068143, + 5179.609866310915 + ], + [ + 2365.125498971023, + 5179.609866310915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5176.595631710457, + "max_x": 2376.191434068143, + "max_y": 5176.595631710457, + "center": [ + 2370.658466519583, + 5176.595631710457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.191434068143, + 5176.595631710457 + ], + [ + 2365.125498971023, + 5176.595631710457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5176.049844255125, + "max_x": 2365.125498971023, + "max_y": 5180.155653766251, + "center": [ + 2365.125498971023, + 5178.102749010688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5176.049844255125 + ], + [ + 2365.125498971023, + 5180.155653766251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.191434068145, + "min_y": 5179.609866310915, + "max_x": 2377.217867389196, + "max_y": 5179.609866310915, + "center": [ + 2376.7046507286705, + 5179.609866310915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.191434068145, + 5179.609866310915 + ], + [ + 2377.217867389196, + 5179.609866310915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.191434068143, + "min_y": 5176.595631710457, + "max_x": 2377.249064163431, + "max_y": 5176.595631710457, + "center": [ + 2376.720249115787, + 5176.595631710457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.191434068143, + 5176.595631710457 + ], + [ + 2377.249064163431, + 5176.595631710457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5179.007019390824, + "max_x": 2376.191434068143, + "max_y": 5179.007019390824, + "center": [ + 2370.658466519583, + 5179.007019390824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5179.007019390824 + ], + [ + 2376.191434068143, + 5179.007019390824 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5178.404172470731, + "max_x": 2376.191434068143, + "max_y": 5178.404172470731, + "center": [ + 2370.658466519583, + 5178.404172470731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5178.404172470731 + ], + [ + 2376.191434068143, + 5178.404172470731 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5177.801325550643, + "max_x": 2376.191434068143, + "max_y": 5177.801325550643, + "center": [ + 2370.658466519583, + 5177.801325550643 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5177.801325550643 + ], + [ + 2376.191434068143, + 5177.801325550643 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.125498971023, + "min_y": 5177.198478630547, + "max_x": 2376.191434068143, + "max_y": 5177.198478630547, + "center": [ + 2370.658466519583, + 5177.198478630547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5177.198478630547 + ], + [ + 2376.191434068143, + 5177.198478630547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.099065649969, + "min_y": 5179.609866310915, + "max_x": 2365.125498971023, + "max_y": 5179.609866310915, + "center": [ + 2364.612282310496, + 5179.609866310915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5179.609866310915 + ], + [ + 2364.099065649969, + 5179.609866310915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.067868875733, + "min_y": 5176.595631710457, + "max_x": 2365.125498971023, + "max_y": 5176.595631710457, + "center": [ + 2364.596683923378, + 5176.595631710457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.125498971023, + 5176.595631710457 + ], + [ + 2364.067868875733, + 5176.595631710457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.477464964615, + "min_y": 5179.609866310915, + "max_x": 2367.477464964615, + "max_y": 5180.424665392582, + "center": [ + 2367.477464964615, + 5180.017265851749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.477464964615, + 5179.609866310915 + ], + [ + 2367.477464964615, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.824736440257, + "min_y": 5180.814421957663, + "max_x": 2368.134529911023, + "max_y": 5180.814421957663, + "center": [ + 2367.4796331756397, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.134529911023, + 5180.814421957663 + ], + [ + 2366.824736440257, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.824736440257, + "min_y": 5180.424665392582, + "max_x": 2368.134529911023, + "max_y": 5180.424665392582, + "center": [ + 2367.4796331756397, + 5180.424665392582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.134529911023, + 5180.424665392582 + ], + [ + 2366.824736440257, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.81522027085, + "min_y": 5180.814421957663, + "max_x": 2368.139709658381, + "max_y": 5180.814421957663, + "center": [ + 2367.4774649646156, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.81522027085, + 5180.814421957663 + ], + [ + 2368.139709658381, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.81522027085, + "min_y": 5180.814421957663, + "max_x": 2368.139709658381, + "max_y": 5180.814421957663, + "center": [ + 2367.4774649646156, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.81522027085, + 5180.814421957663 + ], + [ + 2368.139709658381, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C4", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2372.928819270323, + "min_y": 5201.059783865528, + "max_x": 2374.49630439506, + "max_y": 5202.3660214694755, + "center": [ + 2373.712561832692, + 5201.712902667501 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570C5", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2371.3286294515483, + "min_y": 5197.908431495775, + "max_x": 2376.574185305598, + "max_y": 5203.153987349825, + "center": [ + 2373.951407378573, + 5200.5312094228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.951407378573, + 5200.5312094228 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570C6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2371.777991285306, + "min_y": 5198.782142187044, + "max_x": 2375.696704097149, + "max_y": 5200.088379790992, + "center": [ + 2373.7373476912276, + 5199.4352609890175 + ] + }, + "raw_value": "10219", + "clean_value": "10219", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570C7", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2367.477464964615, + "min_y": 5180.814421957663, + "max_x": 2367.477464964615, + "max_y": 5195.71840765251, + "center": [ + 2367.477464964615, + 5188.266414805086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.477464964615, + 5180.814421957663 + ], + [ + 2367.477464964615, + 5195.71840765251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5570C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.377805289724, + "min_y": 5174.919141519924, + "max_x": 2371.672462667073, + "max_y": 5175.411269279898, + "center": [ + 2371.5251339783986, + 5175.165205399911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.672462667073, + 5175.411269279898 + ], + [ + 2371.377805289724, + 5174.919141519924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.794428619925, + "min_y": 5173.944803608179, + "max_x": 2371.089085997274, + "max_y": 5174.436931368148, + "center": [ + 2370.9417573085993, + 5174.190867488163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.089085997274, + 5174.436931368148 + ], + [ + 2370.794428619925, + 5173.944803608179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.794428619925, + "min_y": 5175.411269279898, + "max_x": 2371.672462667073, + "max_y": 5175.411269279898, + "center": [ + 2371.233445643499, + 5175.411269279898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.794428619925, + 5175.411269279898 + ], + [ + 2371.672462667073, + 5175.411269279898 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.794428619925, + "min_y": 5173.944803608179, + "max_x": 2371.672462667073, + "max_y": 5173.944803608179, + "center": [ + 2371.233445643499, + 5173.944803608179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.794428619925, + 5173.944803608179 + ], + [ + 2371.672462667073, + 5173.944803608179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.794428619925, + "min_y": 5174.919141519924, + "max_x": 2371.089085997274, + "max_y": 5175.411269279898, + "center": [ + 2370.9417573085993, + 5175.165205399911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.794428619925, + 5175.411269279898 + ], + [ + 2371.089085997274, + 5174.919141519924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.377805289724, + "min_y": 5173.944803608179, + "max_x": 2371.672462667073, + "max_y": 5174.436931368148, + "center": [ + 2371.5251339783986, + 5174.190867488163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.377805289724, + 5174.436931368148 + ], + [ + 2371.672462667073, + 5173.944803608179 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.778195766495, + "min_y": 5173.601880628647, + "max_x": 2371.6886955205, + "max_y": 5173.601880628647, + "center": [ + 2371.2334456434974, + 5173.601880628647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.778195766495, + 5173.601880628647 + ], + [ + 2371.6886955205, + 5173.601880628647 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.778195766495, + "min_y": 5175.754192259425, + "max_x": 2371.6886955205, + "max_y": 5175.754192259425, + "center": [ + 2371.2334456434974, + 5175.754192259425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.778195766495, + 5175.754192259425 + ], + [ + 2371.6886955205, + 5175.754192259425 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2370.9524272009103, + "min_y": 5174.397018001448, + "max_x": 2371.5144640860935, + "max_y": 5174.959054886631, + "center": [ + 2371.233445643502, + 5174.678036444039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.233445643502, + 5174.678036444039 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.233445643499, + "min_y": 5175.754192259425, + "max_x": 2371.233445643499, + "max_y": 5176.595631710457, + "center": [ + 2371.233445643499, + 5176.174911984941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.233445643499, + 5175.754192259425 + ], + [ + 2371.233445643499, + 5176.595631710457 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.058216121271, + "min_y": 5180.794228741473, + "max_x": 2377.352873498624, + "max_y": 5181.286356501448, + "center": [ + 2377.2055448099472, + 5181.04029262146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.352873498624, + 5180.794228741473 + ], + [ + 2377.058216121271, + 5181.286356501448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451475, + "min_y": 5181.768566653224, + "max_x": 2376.769496828824, + "max_y": 5182.260694413193, + "center": [ + 2376.6221681401494, + 5182.014630533209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.769496828824, + 5181.768566653224 + ], + [ + 2376.474839451475, + 5182.260694413193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451475, + "min_y": 5180.794228741473, + "max_x": 2377.352873498624, + "max_y": 5180.794228741473, + "center": [ + 2376.913856475049, + 5180.794228741473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451475, + 5180.794228741473 + ], + [ + 2377.352873498624, + 5180.794228741473 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451475, + "min_y": 5182.260694413193, + "max_x": 2377.352873498624, + "max_y": 5182.260694413193, + "center": [ + 2376.913856475049, + 5182.260694413193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451475, + 5182.260694413193 + ], + [ + 2377.352873498624, + 5182.260694413193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451475, + "min_y": 5180.794228741473, + "max_x": 2376.769496828824, + "max_y": 5181.286356501448, + "center": [ + 2376.6221681401494, + 5181.04029262146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451475, + 5180.794228741473 + ], + [ + 2376.769496828824, + 5181.286356501448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.058216121271, + "min_y": 5181.768566653224, + "max_x": 2377.352873498624, + "max_y": 5182.260694413193, + "center": [ + 2377.2055448099472, + 5182.014630533209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.058216121271, + 5181.768566653224 + ], + [ + 2377.352873498624, + 5182.260694413193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.458606598045, + "min_y": 5182.603617392725, + "max_x": 2377.369106352051, + "max_y": 5182.603617392725, + "center": [ + 2376.9138564750483, + 5182.603617392725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.458606598045, + 5182.603617392725 + ], + [ + 2377.369106352051, + 5182.603617392725 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.458606598045, + "min_y": 5180.451305761947, + "max_x": 2377.369106352051, + "max_y": 5180.451305761947, + "center": [ + 2376.9138564750483, + 5180.451305761947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.458606598045, + 5180.451305761947 + ], + [ + 2377.369106352051, + 5180.451305761947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2376.6328380324576, + "min_y": 5181.246443134742, + "max_x": 2377.194874917641, + "max_y": 5181.808480019925, + "center": [ + 2376.913856475049, + 5181.527461577333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475049, + 5181.527461577333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.913856475047, + "min_y": 5179.609866310915, + "max_x": 2376.913856475047, + "max_y": 5180.451305761947, + "center": [ + 2376.913856475047, + 5180.0305860364315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475047, + 5180.451305761947 + ], + [ + 2376.913856475047, + 5179.609866310915 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.913856475047, + "min_y": 5182.603617392725, + "max_x": 2376.913856475047, + "max_y": 5183.999475244775, + "center": [ + 2376.913856475047, + 5183.301546318749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475047, + 5182.603617392725 + ], + [ + 2376.913856475047, + 5183.999475244775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.913856475047, + "min_y": 5183.999475244775, + "max_x": 2377.997389324948, + "max_y": 5183.999475244775, + "center": [ + 2377.4556228999973, + 5183.999475244775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475047, + 5183.999475244775 + ], + [ + 2377.997389324948, + 5183.999475244775 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.997389324948, + "min_y": 5183.191636171791, + "max_x": 2377.997389324948, + "max_y": 5183.999475244775, + "center": [ + 2377.997389324948, + 5183.595555708283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.997389324948, + 5183.999475244775 + ], + [ + 2377.997389324948, + 5183.191636171791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.837262521007, + "min_y": 5195.16963637304, + "max_x": 2384.452422220972, + "max_y": 5195.537958094727, + "center": [ + 2384.1448423709894, + 5195.353797233884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.452422220972, + 5195.16963637304 + ], + [ + 2383.837262521007, + 5195.537958094727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.619340131323, + "min_y": 5195.898857210289, + "max_x": 2383.234499831289, + "max_y": 5196.267178931975, + "center": [ + 2382.926919981306, + 5196.083018071132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.234499831289, + 5195.898857210289 + ], + [ + 2382.619340131323, + 5196.267178931975 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.452422220972, + "min_y": 5195.16963637304, + "max_x": 2384.452422220972, + "max_y": 5196.267178931975, + "center": [ + 2384.452422220972, + 5195.718407652507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.452422220972, + 5196.267178931975 + ], + [ + 2384.452422220972, + 5195.16963637304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.619340131323, + "min_y": 5195.16963637304, + "max_x": 2382.619340131323, + "max_y": 5196.267178931975, + "center": [ + 2382.619340131323, + 5195.718407652507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.619340131323, + 5196.267178931975 + ], + [ + 2382.619340131323, + 5195.16963637304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2383.83726252101, + "min_y": 5195.898857210289, + "max_x": 2384.452422220972, + "max_y": 5196.267178931975, + "center": [ + 2384.144842370991, + 5196.083018071132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.452422220972, + 5196.267178931975 + ], + [ + 2383.83726252101, + 5195.898857210289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.619340131323, + "min_y": 5195.16963637304, + "max_x": 2383.234499831289, + "max_y": 5195.537958094727, + "center": [ + 2382.926919981306, + 5195.353797233884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.234499831289, + 5195.537958094727 + ], + [ + 2382.619340131323, + 5195.16963637304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.190686406911, + "min_y": 5195.149345306255, + "max_x": 2382.190686406911, + "max_y": 5196.287469998761, + "center": [ + 2382.190686406911, + 5195.718407652508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.190686406911, + 5196.287469998761 + ], + [ + 2382.190686406911, + 5195.149345306255 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2384.881075945384, + "min_y": 5195.149345306255, + "max_x": 2384.881075945384, + "max_y": 5196.287469998761, + "center": [ + 2384.881075945384, + 5195.718407652508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.881075945384, + 5196.287469998761 + ], + [ + 2384.881075945384, + 5195.149345306255 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2383.1846081229096, + "min_y": 5195.367134599266, + "max_x": 2383.887154229388, + "max_y": 5196.069680705745, + "center": [ + 2383.535881176149, + 5195.718407652505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.535881176149, + 5195.718407652505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2373.951407378573, + "min_y": 5195.71840765251, + "max_x": 2373.951407378577, + "max_y": 5197.908431495774, + "center": [ + 2373.951407378575, + 5196.813419574142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2373.951407378573, + 5197.908431495774 + ], + [ + 2373.951407378577, + 5195.71840765251 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5570E9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5197.058644188534, + "max_x": 2401.442471392891, + "max_y": 5197.058644188534, + "center": [ + 2396.591839041528, + 5197.058644188534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.741206690165, + 5197.058644188534 + ], + [ + 2401.442471392891, + 5197.058644188534 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5570EA", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5194.378171116477, + "max_x": 2401.442471392899, + "max_y": 5194.378171116477, + "center": [ + 2396.591839041532, + 5194.378171116477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.442471392899, + 5194.378171116477 + ], + [ + 2391.741206690165, + 5194.378171116477 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5570EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5194.378171116477, + "max_x": 2391.741206690165, + "max_y": 5197.058644188534, + "center": [ + 2391.741206690165, + 5195.718407652505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.741206690165, + 5194.378171116477 + ], + [ + 2391.741206690165, + 5197.058644188534 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5570EC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2401.442471392897, + "min_y": 5195.718407652504, + "max_x": 2402.782707928924, + "max_y": 5197.058644188531, + "center": [ + 2402.1125896609105, + 5196.388525920517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.442471392897, + 5197.058644188531 + ], + [ + 2402.782707928924, + 5195.718407652504 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5570ED", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2401.442471392897, + "min_y": 5194.378171116475, + "max_x": 2402.782707928924, + "max_y": 5195.718407652504, + "center": [ + 2402.1125896609105, + 5195.048289384489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.782707928924, + 5195.718407652504 + ], + [ + 2401.442471392897, + 5194.378171116475 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5570EE", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2367.477464964615, + "min_y": 5195.71840765251, + "max_x": 2382.190686406911, + "max_y": 5195.71840765251, + "center": [ + 2374.8340756857633, + 5195.71840765251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.477464964615, + 5195.71840765251 + ], + [ + 2382.190686406911, + 5195.71840765251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5570EF", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2384.881075945384, + "min_y": 5195.718407652508, + "max_x": 2391.741206690165, + "max_y": 5195.71840765251, + "center": [ + 2388.311141317775, + 5195.718407652509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.881075945384, + 5195.71840765251 + ], + [ + 2391.741206690165, + 5195.718407652508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5570F0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2394.604249526012, + "min_y": 5195.063771344822, + "max_x": 2397.2919647669564, + "max_y": 5196.55694647868, + "center": [ + 2395.9481071464843, + 5195.810358911751 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570F1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2392.718814979403, + "min_y": 5197.569908630128, + "max_x": 2402.7977471329436, + "max_y": 5198.689789980522, + "center": [ + 2397.7582810561735, + 5198.1298493053255 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570F2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2381.306026277943, + "min_y": 5194.05662451059, + "max_x": 2388.6972431905397, + "max_y": 5195.1765058609835, + "center": [ + 2385.0016347342416, + 5194.616565185786 + ] + }, + "raw_value": "E10219BA-02", + "clean_value": "E10219BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5570F3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2377.262216436925, + "min_y": 5181.120973931836, + "max_x": 2384.6534333495215, + "max_y": 5182.240855282229, + "center": [ + 2380.957824893223, + 5181.680914607032 + ] + }, + "raw_value": "E10219BA-05", + "clean_value": "E10219BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5570F4", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2371.73145354982, + "min_y": 5174.412851525695, + "max_x": 2379.1226704624164, + "max_y": 5175.532732876089, + "center": [ + 2375.427062006118, + 5174.9727922008915 + ] + }, + "raw_value": "E10219BA-06", + "clean_value": "E10219BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5570F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.874211415636, + "min_y": 5199.770510068226, + "max_x": 2369.874211415636, + "max_y": 5201.275707835198, + "center": [ + 2369.874211415636, + 5200.523108951712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.874211415636, + 5199.770510068226 + ], + [ + 2369.874211415636, + 5201.275707835198 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5570F6", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2367.700795322368, + "min_y": 5202.456321553214, + "max_x": 2371.6195081342107, + "max_y": 5203.762559157162, + "center": [ + 2369.6601517282893, + 5203.109440355189 + ] + }, + "raw_value": "10219", + "clean_value": "10219", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570F7", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2368.80998698376, + "min_y": 5204.772786757653, + "max_x": 2370.3774721084974, + "max_y": 5206.079024361601, + "center": [ + 2369.593729546129, + 5205.425905559627 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570F8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2367.0121470208087, + "min_y": 5201.275707835197, + "max_x": 2372.7362758104637, + "max_y": 5206.999836624853, + "center": [ + 2369.874211415636, + 5204.137772230025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.874211415636, + 5204.137772230025 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5570F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.305149069383, + "min_y": 5199.770510068226, + "max_x": 2370.443273761886, + "max_y": 5199.770510068226, + "center": [ + 2369.8742114156344, + 5199.770510068226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.305149069383, + 5199.770510068226 + ], + [ + 2370.443273761886, + 5199.770510068226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2369.522938362397, + "min_y": 5198.176099123143, + "max_x": 2370.2254844688755, + "max_y": 5198.878645229622, + "center": [ + 2369.874211415636, + 5198.527372176382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.874211415636, + 5198.527372176382 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.325440136166, + "min_y": 5197.284234284537, + "max_x": 2370.422982695105, + "max_y": 5197.284234284537, + "center": [ + 2369.8742114156357, + 5197.284234284537 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.422982695105, + 5197.284234284537 + ], + [ + 2369.325440136166, + 5197.284234284537 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.31928290816, + "min_y": 5199.443913221205, + "max_x": 2370.429139923111, + "max_y": 5199.443913221205, + "center": [ + 2369.8742114156357, + 5199.443913221205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.31928290816, + 5199.443913221205 + ], + [ + 2370.429139923111, + 5199.443913221205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.325440136166, + "min_y": 5197.610831131555, + "max_x": 2369.693761857855, + "max_y": 5198.225990831522, + "center": [ + 2369.5096009970102, + 5197.918410981538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.693761857855, + 5198.225990831522 + ], + [ + 2369.325440136166, + 5197.610831131555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.325440136166, + "min_y": 5197.610831131555, + "max_x": 2370.422982695105, + "max_y": 5197.610831131555, + "center": [ + 2369.8742114156357, + 5197.610831131555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.325440136166, + 5197.610831131555 + ], + [ + 2370.422982695105, + 5197.610831131555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5570FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.054660973416, + "min_y": 5197.610831131555, + "max_x": 2370.422982695105, + "max_y": 5198.225990831522, + "center": [ + 2370.2388218342603, + 5197.918410981538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.422982695105, + 5197.610831131555 + ], + [ + 2370.054660973416, + 5198.225990831522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.325440136166, + "min_y": 5198.828753521239, + "max_x": 2369.693761857855, + "max_y": 5199.443913221205, + "center": [ + 2369.5096009970102, + 5199.136333371222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.693761857855, + 5198.828753521239 + ], + [ + 2369.325440136166, + 5199.443913221205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.054660973416, + "min_y": 5198.828753521239, + "max_x": 2370.422982695105, + "max_y": 5199.443913221205, + "center": [ + 2370.2388218342603, + 5199.136333371222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.422982695105, + 5199.443913221205 + ], + [ + 2370.054660973416, + 5198.828753521239 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557102", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2369.874211415636, + "min_y": 5195.71840765251, + "max_x": 2369.874211415636, + "max_y": 5197.284234284537, + "center": [ + 2369.874211415636, + 5196.501320968524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.874211415636, + 5197.284234284537 + ], + [ + 2369.874211415636, + 5195.71840765251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.924223672695, + "min_y": 5196.902770083069, + "max_x": 2377.218881050047, + "max_y": 5197.394897843043, + "center": [ + 2377.071552361371, + 5197.148833963056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.218881050047, + 5196.902770083069 + ], + [ + 2376.924223672695, + 5197.394897843043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.340847002898, + "min_y": 5197.87710799482, + "max_x": 2376.635504380248, + "max_y": 5198.369235754788, + "center": [ + 2376.488175691573, + 5198.123171874804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.635504380248, + 5197.87710799482 + ], + [ + 2376.340847002898, + 5198.369235754788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557105", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.340847002898, + "min_y": 5196.902770083069, + "max_x": 2377.218881050047, + "max_y": 5196.902770083069, + "center": [ + 2376.7798640264728, + 5196.902770083069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.340847002898, + 5196.902770083069 + ], + [ + 2377.218881050047, + 5196.902770083069 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557106", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.340847002898, + "min_y": 5198.369235754788, + "max_x": 2377.218881050047, + "max_y": 5198.369235754788, + "center": [ + 2376.7798640264728, + 5198.369235754788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.340847002898, + 5198.369235754788 + ], + [ + 2377.218881050047, + 5198.369235754788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557107", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.340847002898, + "min_y": 5196.902770083069, + "max_x": 2376.635504380248, + "max_y": 5197.394897843043, + "center": [ + 2376.488175691573, + 5197.148833963056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.340847002898, + 5196.902770083069 + ], + [ + 2376.635504380248, + 5197.394897843043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557108", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.924223672695, + "min_y": 5197.87710799482, + "max_x": 2377.218881050047, + "max_y": 5198.369235754788, + "center": [ + 2377.071552361371, + 5198.123171874804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.924223672695, + 5197.87710799482 + ], + [ + 2377.218881050047, + 5198.369235754788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557109", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.324614149468, + "min_y": 5198.71215873432, + "max_x": 2377.235113903474, + "max_y": 5198.71215873432, + "center": [ + 2376.779864026471, + 5198.71215873432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.324614149468, + 5198.71215873432 + ], + [ + 2377.235113903474, + 5198.71215873432 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.324614149468, + "min_y": 5196.559847103542, + "max_x": 2377.235113903474, + "max_y": 5196.559847103542, + "center": [ + 2376.779864026471, + 5196.559847103542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.324614149468, + 5196.559847103542 + ], + [ + 2377.235113903474, + 5196.559847103542 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2376.4988455838816, + "min_y": 5197.3549844763365, + "max_x": 2377.060882469065, + "max_y": 5197.91702136152, + "center": [ + 2376.779864026473, + 5197.636002918928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.779864026473, + 5197.636002918928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.77986402647, + "min_y": 5195.71840765251, + "max_x": 2376.77986402647, + "max_y": 5196.559847103542, + "center": [ + 2376.77986402647, + 5196.139127378026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.77986402647, + 5196.559847103542 + ], + [ + 2376.77986402647, + 5195.71840765251 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.77986402647, + "min_y": 5198.71215873432, + "max_x": 2376.77986402647, + "max_y": 5200.108016586369, + "center": [ + 2376.77986402647, + 5199.410087660344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.77986402647, + 5198.71215873432 + ], + [ + 2376.77986402647, + 5200.108016586369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.77986402647, + "min_y": 5200.108016586369, + "max_x": 2377.863396876371, + "max_y": 5200.108016586369, + "center": [ + 2377.321630451421, + 5200.108016586369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.77986402647, + 5200.108016586369 + ], + [ + 2377.863396876371, + 5200.108016586369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55710F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.863396876371, + "min_y": 5199.300177513386, + "max_x": 2377.863396876371, + "max_y": 5200.108016586369, + "center": [ + 2377.863396876371, + 5199.704097049877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.863396876371, + 5200.108016586369 + ], + [ + 2377.863396876371, + 5199.300177513386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557110", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.815048768146, + "min_y": 5199.410089012292, + "max_x": 2379.815048768146, + "max_y": 5201.16180190999, + "center": [ + 2379.815048768146, + 5200.285945461141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.815048768146, + 5199.410089012292 + ], + [ + 2379.815048768146, + 5201.16180190999 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557111", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2379.815048768149, + "min_y": 5195.71840765251, + "max_x": 2379.815048768149, + "max_y": 5197.713984408823, + "center": [ + 2379.815048768149, + 5196.716196030667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.815048768149, + 5197.713984408823 + ], + [ + 2379.815048768149, + 5195.71840765251 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557112", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.500014277592, + "min_y": 5199.905105056417, + "max_x": 2380.1300832587, + "max_y": 5200.53517403753, + "center": [ + 2379.815048768146, + 5200.220139546973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.500014277592, + 5200.53517403753 + ], + [ + 2380.1300832587, + 5199.905105056417 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557113", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.500014277592, + "min_y": 5200.220139546971, + "max_x": 2380.1300832587, + "max_y": 5200.850208528084, + "center": [ + 2379.815048768146, + 5200.535174037528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.1300832587, + 5200.220139546971 + ], + [ + 2379.500014277592, + 5200.850208528084 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557114", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.500014277592, + "min_y": 5200.53517403753, + "max_x": 2380.1300832587, + "max_y": 5201.165243018639, + "center": [ + 2379.815048768146, + 5200.850208528084 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.500014277592, + 5201.165243018639 + ], + [ + 2380.1300832587, + 5200.53517403753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557115", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.815048768146, + "min_y": 5199.410089012292, + "max_x": 2379.815048768146, + "max_y": 5201.165243018639, + "center": [ + 2379.815048768146, + 5200.287666015465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.815048768146, + 5199.410089012292 + ], + [ + 2379.815048768146, + 5201.165243018639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557116", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.184979787031, + "min_y": 5198.149951050073, + "max_x": 2379.815048768146, + "max_y": 5199.410089012292, + "center": [ + 2379.5000142775884, + 5198.780020031182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.815048768146, + 5199.410089012292 + ], + [ + 2379.184979787031, + 5198.149951050073 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557117", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.184979787031, + "min_y": 5198.149951050073, + "max_x": 2380.445117749259, + "max_y": 5198.149951050073, + "center": [ + 2379.815048768145, + 5198.149951050073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.184979787031, + 5198.149951050073 + ], + [ + 2380.445117749259, + 5198.149951050073 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557118", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.815048768146, + "min_y": 5198.149951050073, + "max_x": 2380.445117749259, + "max_y": 5199.410089012292, + "center": [ + 2380.1300832587026, + 5198.780020031182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.445117749259, + 5198.149951050073 + ], + [ + 2379.815048768146, + 5199.410089012292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557119", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.815048768146, + "min_y": 5199.410089012292, + "max_x": 2381.075186730368, + "max_y": 5200.040157993409, + "center": [ + 2380.445117749257, + 5199.725123502851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.815048768146, + 5199.410089012292 + ], + [ + 2381.075186730368, + 5200.040157993409 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55711A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.075186730368, + "min_y": 5198.780020031188, + "max_x": 2381.075186730368, + "max_y": 5200.040157993409, + "center": [ + 2381.075186730368, + 5199.410089012298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.075186730368, + 5200.040157993409 + ], + [ + 2381.075186730368, + 5198.780020031188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55711B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.815048768146, + "min_y": 5198.780020031188, + "max_x": 2381.075186730368, + "max_y": 5199.410089012292, + "center": [ + 2380.445117749257, + 5199.09505452174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.075186730368, + 5198.780020031188 + ], + [ + 2379.815048768146, + 5199.410089012292 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55711C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.184979787031, + "min_y": 5197.713984408823, + "max_x": 2380.445117749259, + "max_y": 5197.713984408823, + "center": [ + 2379.815048768145, + 5197.713984408823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.184979787031, + 5197.713984408823 + ], + [ + 2380.445117749259, + 5197.713984408823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55711D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.501984937608, + "min_y": 5198.780020031188, + "max_x": 2381.501984937608, + "max_y": 5200.040157993409, + "center": [ + 2381.501984937608, + 5199.410089012298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.501984937608, + 5200.040157993409 + ], + [ + 2381.501984937608, + 5198.780020031188 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55711E", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2381.501984937608, + "min_y": 5199.410089012298, + "max_x": 2387.565556166906, + "max_y": 5199.410089012298, + "center": [ + 2384.533770552257, + 5199.410089012298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.501984937608, + 5199.410089012298 + ], + [ + 2387.565556166906, + 5199.410089012298 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55711F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2377.103609639041, + "min_y": 5205.154952930504, + "max_x": 2383.149625073545, + "max_y": 5206.162622169588, + "center": [ + 2380.126617356293, + 5205.658787550046 + ] + }, + "raw_value": "PSV-10219A", + "clean_value": "PSV-10219A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557120", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2378.2260775992, + "min_y": 5203.521617532643, + "max_x": 2382.4582884033525, + "max_y": 5204.529286771727, + "center": [ + 2380.342183001276, + 5204.025452152186 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557121", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2377.4140697298, + "min_y": 5201.988918553983, + "max_x": 2383.4600851643036, + "max_y": 5202.996587793067, + "center": [ + 2380.4370774470517, + 5202.492753173525 + ] + }, + "raw_value": "SP: 0.5MPa", + "clean_value": "SP: 0.5MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557122", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2371.233445643497, + "min_y": 5172.942870015818, + "max_x": 2371.233445643497, + "max_y": 5173.601880628647, + "center": [ + 2371.233445643497, + 5173.272375322233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.233445643497, + 5172.942870015818 + ], + [ + 2371.233445643497, + 5173.601880628647 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557123", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.830432267876, + "min_y": 5172.390553018557, + "max_x": 2370.830432267876, + "max_y": 5173.046171064243, + "center": [ + 2370.830432267876, + 5172.7183620414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.830432267876, + 5173.046171064243 + ], + [ + 2370.830432267876, + 5172.390553018557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557124", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2371.636459019119, + "min_y": 5172.390553018557, + "max_x": 2371.636459019119, + "max_y": 5173.046171064243, + "center": [ + 2371.636459019119, + 5172.7183620414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2371.636459019119, + 5173.046171064243 + ], + [ + 2371.636459019119, + 5172.390553018557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557125", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.830432267876, + "min_y": 5172.390553018557, + "max_x": 2371.636459019119, + "max_y": 5172.390553018557, + "center": [ + 2371.2334456434974, + 5172.390553018557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.830432267876, + 5172.390553018557 + ], + [ + 2371.636459019119, + 5172.390553018557 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557126", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2362.988515427421, + "min_y": 5201.471973157586, + "max_x": 2374.411305201434, + "max_y": 5202.591854507979, + "center": [ + 2368.6999103144276, + 5202.031913832783 + ] + }, + "raw_value": "P-10213-20A-F1A-n", + "clean_value": "P-10213-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557127", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2402.782707928924, + "min_y": 5189.076043817427, + "max_x": 2402.782707928924, + "max_y": 5191.084556395958, + "center": [ + 2402.782707928924, + 5190.080300106692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.782707928924, + 5191.084556395958 + ], + [ + 2402.782707928924, + 5189.076043817427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557128", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2393.081443226198, + "min_y": 5191.420536642723, + "max_x": 2402.782707928924, + "max_y": 5191.420536642723, + "center": [ + 2397.932075577561, + 5191.420536642723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.782707928924, + 5191.420536642723 + ], + [ + 2393.081443226198, + 5191.420536642723 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557129", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2393.08144322619, + "min_y": 5188.740063570668, + "max_x": 2402.782707928924, + "max_y": 5188.740063570668, + "center": [ + 2397.932075577557, + 5188.740063570668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.08144322619, + 5188.740063570668 + ], + [ + 2402.782707928924, + 5188.740063570668 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55712A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2402.782707928924, + "min_y": 5188.740063570668, + "max_x": 2402.782707928924, + "max_y": 5191.420536642723, + "center": [ + 2402.782707928924, + 5190.080300106696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.782707928924, + 5188.740063570668 + ], + [ + 2402.782707928924, + 5191.420536642723 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55712B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5190.080300106695, + "max_x": 2393.081443226192, + "max_y": 5191.420536642719, + "center": [ + 2392.4113249581787, + 5190.750418374707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.081443226192, + 5191.420536642719 + ], + [ + 2391.741206690165, + 5190.080300106695 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55712C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2391.741206690165, + "min_y": 5188.740063570666, + "max_x": 2393.081443226192, + "max_y": 5190.080300106695, + "center": [ + 2392.4113249581787, + 5189.410181838681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.741206690165, + 5190.080300106695 + ], + [ + 2393.081443226192, + 5188.740063570666 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55712D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.013396771771, + "min_y": 5181.741926283859, + "max_x": 2375.30805414912, + "max_y": 5182.234054043834, + "center": [ + 2375.1607254604455, + 5181.987990163847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.30805414912, + 5182.234054043834 + ], + [ + 2375.013396771771, + 5181.741926283859 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55712E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.430020101972, + "min_y": 5180.767588372114, + "max_x": 2374.724677479321, + "max_y": 5181.259716132082, + "center": [ + 2374.5773487906463, + 5181.013652252098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.724677479321, + 5181.259716132082 + ], + [ + 2374.430020101972, + 5180.767588372114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55712F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.430020101972, + "min_y": 5182.234054043834, + "max_x": 2375.30805414912, + "max_y": 5182.234054043834, + "center": [ + 2374.869037125546, + 5182.234054043834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.430020101972, + 5182.234054043834 + ], + [ + 2375.30805414912, + 5182.234054043834 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557130", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.430020101972, + "min_y": 5180.767588372114, + "max_x": 2375.30805414912, + "max_y": 5180.767588372114, + "center": [ + 2374.869037125546, + 5180.767588372114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.430020101972, + 5180.767588372114 + ], + [ + 2375.30805414912, + 5180.767588372114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557131", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.430020101972, + "min_y": 5181.741926283859, + "max_x": 2374.724677479321, + "max_y": 5182.234054043834, + "center": [ + 2374.5773487906463, + 5181.987990163847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.430020101972, + 5182.234054043834 + ], + [ + 2374.724677479321, + 5181.741926283859 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557132", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2375.013396771771, + "min_y": 5180.767588372114, + "max_x": 2375.30805414912, + "max_y": 5181.259716132082, + "center": [ + 2375.1607254604455, + 5181.013652252098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2375.013396771771, + 5181.259716132082 + ], + [ + 2375.30805414912, + 5180.767588372114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557133", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.413787248542, + "min_y": 5180.424665392582, + "max_x": 2375.324287002547, + "max_y": 5180.424665392582, + "center": [ + 2374.8690371255443, + 5180.424665392582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.413787248542, + 5180.424665392582 + ], + [ + 2375.324287002547, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557134", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.413787248542, + "min_y": 5182.576977023359, + "max_x": 2375.324287002547, + "max_y": 5182.576977023359, + "center": [ + 2374.8690371255443, + 5182.576977023359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.413787248542, + 5182.576977023359 + ], + [ + 2375.324287002547, + 5182.576977023359 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557135", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2374.588018682957, + "min_y": 5181.219802765381, + "max_x": 2375.1500555681405, + "max_y": 5181.7818396505645, + "center": [ + 2374.869037125549, + 5181.500821207973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.869037125549, + 5181.500821207973 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557136", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2396.34142939301, + "min_y": 5189.592527418486, + "max_x": 2398.357215823718, + "max_y": 5190.712408768879, + "center": [ + 2397.3493226083638, + 5190.152468093682 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557137", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2392.574146434681, + "min_y": 5191.673829502649, + "max_x": 2402.653078588222, + "max_y": 5192.793710853042, + "center": [ + 2397.6136125114517, + 5192.233770177845 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557138", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.869037125544, + "min_y": 5179.609866310915, + "max_x": 2374.869037125544, + "max_y": 5180.424665392582, + "center": [ + 2374.869037125544, + 5180.017265851749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.869037125544, + 5179.609866310915 + ], + [ + 2374.869037125544, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557139", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2374.871205336569, + "min_y": 5182.576977023359, + "max_x": 2374.871205336569, + "max_y": 5190.080300106695, + "center": [ + 2374.871205336569, + 5186.328638565027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.871205336569, + 5182.576977023359 + ], + [ + 2374.871205336569, + 5190.080300106695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55713A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.484833738051, + "min_y": 5179.609866310915, + "max_x": 2364.484833738051, + "max_y": 5180.424665392582, + "center": [ + 2364.484833738051, + 5180.017265851749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738051, + 5179.609866310915 + ], + [ + 2364.484833738051, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55713B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.832105213693, + "min_y": 5180.814421957663, + "max_x": 2365.141898684457, + "max_y": 5180.814421957663, + "center": [ + 2364.487001949075, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.141898684457, + 5180.814421957663 + ], + [ + 2363.832105213693, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55713C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.832105213693, + "min_y": 5180.424665392582, + "max_x": 2365.141898684457, + "max_y": 5180.424665392582, + "center": [ + 2364.487001949075, + 5180.424665392582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.141898684457, + 5180.424665392582 + ], + [ + 2363.832105213693, + 5180.424665392582 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55713D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.822589044286, + "min_y": 5180.814421957663, + "max_x": 2365.147078431816, + "max_y": 5180.814421957663, + "center": [ + 2364.484833738051, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.822589044286, + 5180.814421957663 + ], + [ + 2365.147078431816, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55713E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.822589044286, + "min_y": 5180.814421957663, + "max_x": 2365.147078431816, + "max_y": 5180.814421957663, + "center": [ + 2364.484833738051, + 5180.814421957663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.822589044286, + 5180.814421957663 + ], + [ + 2365.147078431816, + 5180.814421957663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55713F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.484833738051, + "min_y": 5175.780832628791, + "max_x": 2364.484833738051, + "max_y": 5176.595631710457, + "center": [ + 2364.484833738051, + 5176.188232169625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738051, + 5176.595631710457 + ], + [ + 2364.484833738051, + 5175.780832628791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557140", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.827768791644, + "min_y": 5175.391076063709, + "max_x": 2365.137562262409, + "max_y": 5175.391076063709, + "center": [ + 2364.4826655270263, + 5175.391076063709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.827768791644, + 5175.391076063709 + ], + [ + 2365.137562262409, + 5175.391076063709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557141", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.827768791644, + "min_y": 5175.780832628791, + "max_x": 2365.137562262409, + "max_y": 5175.780832628791, + "center": [ + 2364.4826655270263, + 5175.780832628791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.827768791644, + 5175.780832628791 + ], + [ + 2365.137562262409, + 5175.780832628791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557142", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.822589044286, + "min_y": 5175.391076063709, + "max_x": 2365.147078431816, + "max_y": 5175.391076063709, + "center": [ + 2364.484833738051, + 5175.391076063709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.147078431816, + 5175.391076063709 + ], + [ + 2363.822589044286, + 5175.391076063709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557143", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.822589044286, + "min_y": 5175.391076063709, + "max_x": 2365.147078431816, + "max_y": 5175.391076063709, + "center": [ + 2364.484833738051, + 5175.391076063709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.147078431816, + 5175.391076063709 + ], + [ + 2363.822589044286, + 5175.391076063709 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557144", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.913856475047, + "min_y": 5175.780832628791, + "max_x": 2376.913856475047, + "max_y": 5176.595631710457, + "center": [ + 2376.913856475047, + 5176.188232169625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475047, + 5176.595631710457 + ], + [ + 2376.913856475047, + 5175.780832628791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557145", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2367.195947436599, + "min_y": 5184.676548450826, + "max_x": 2379.9625948310836, + "max_y": 5185.796429801219, + "center": [ + 2373.5792711338413, + 5185.236489126022 + ] + }, + "raw_value": "CWR-10627-25A-F1A-n", + "clean_value": "CWR-10627-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557146", + "entity_type": "LINE", + "layer": "VA NO", + "bbox": { + "min_x": 2374.871205336569, + "min_y": 5190.080300106695, + "max_x": 2391.741206690165, + "max_y": 5190.080300106695, + "center": [ + 2383.306206013367, + 5190.080300106695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2391.741206690165, + 5190.080300106695 + ], + [ + 2374.871205336569, + 5190.080300106695 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557147", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2375.204154741662, + "min_y": 5190.861537748165, + "max_x": 2387.9708021361466, + "max_y": 5191.981419098558, + "center": [ + 2381.5874784389043, + 5191.421478423361 + ] + }, + "raw_value": "CWS-10617-25A-F1A-n", + "clean_value": "CWS-10617-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557148", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2364.450530875347, + "min_y": 5180.814421957663, + "max_x": 2364.450530875349, + "max_y": 5215.873091299481, + "center": [ + 2364.450530875348, + 5198.343756628572 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.450530875349, + 5180.814421957663 + ], + [ + 2364.450530875347, + 5215.873091299481 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557149", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2364.482665527026, + "min_y": 5171.680618496471, + "max_x": 2364.482665527026, + "max_y": 5175.391076063709, + "center": [ + 2364.482665527026, + 5173.53584728009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.482665527026, + 5175.391076063709 + ], + [ + 2364.482665527026, + 5171.680618496471 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55714A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2362.036828728253, + "min_y": 5171.680618496471, + "max_x": 2427.027750485948, + "max_y": 5171.680618496471, + "center": [ + 2394.5322896071007, + 5171.680618496471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2362.036828728253, + 5171.680618496471 + ], + [ + 2427.027750485948, + 5171.680618496471 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55714B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2422.499137741829, + "min_y": 5174.971025916223, + "max_x": 2433.921927515842, + "max_y": 5176.090907266616, + "center": [ + 2428.2105326288356, + 5175.530966591419 + ] + }, + "raw_value": "P-10216-20A-F1A-n", + "clean_value": "P-10216-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55714C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2400.742694573685, + "min_y": 5171.680618496472, + "max_x": 2400.742694573685, + "max_y": 5173.942817670412, + "center": [ + 2400.742694573685, + 5172.8117180834415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.742694573685, + 5173.942817670412 + ], + [ + 2400.742694573685, + 5171.680618496472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55714D", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2397.8819902526075, + "min_y": 5173.9428176704105, + "max_x": 2403.603398894763, + "max_y": 5179.664226312566, + "center": [ + 2400.742694573685, + 5176.803521991488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2400.742694573685, + 5176.803521991488 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55714E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.720106465434, + "min_y": 5177.33693502901, + "max_x": 2401.2875915901714, + "max_y": 5178.643172632958, + "center": [ + 2400.503849027803, + 5177.990053830985 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55714F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2398.569278480417, + "min_y": 5175.239251510589, + "max_x": 2402.4879912922597, + "max_y": 5176.545489114537, + "center": [ + 2400.5286348863383, + 5175.892370312564 + ] + }, + "raw_value": "10220", + "clean_value": "10220", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557150", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2385.961942649171, + "min_y": 5172.009546397988, + "max_x": 2397.384732423184, + "max_y": 5173.129427748381, + "center": [ + 2391.6733375361773, + 5172.569487073184 + ] + }, + "raw_value": "P-10214-20A-F1A-n", + "clean_value": "P-10214-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557151", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2411.200507676225, + "min_y": 5190.58054447047, + "max_x": 2430.623685343624, + "max_y": 5190.581621201863, + "center": [ + 2420.9120965099246, + 5190.581082836166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.200507676225, + 5190.581621201863 + ], + [ + 2430.623685343624, + 5190.58054447047 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557152", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5191.129259286006, + "max_x": 2431.922624024675, + "max_y": 5192.2491406364, + "center": [ + 2426.2112291376684, + 5191.6891999612035 + ] + }, + "raw_value": "P-10215-20A-F1A-n", + "clean_value": "P-10215-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557153", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2435.30339226045, + "min_y": 5189.743586696281, + "max_x": 2441.574727822653, + "max_y": 5191.23676183014, + "center": [ + 2438.439060041552, + 5190.49017426321 + ] + }, + "raw_value": "T-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557154", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5189.045811472732, + "max_x": 2443.974119964197, + "max_y": 5189.045811472732, + "center": [ + 2438.584528462685, + 5189.045811472732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5189.045811472732 + ], + [ + 2443.974119964197, + 5189.045811472732 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557155", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5192.024114886128, + "max_x": 2443.974119964205, + "max_y": 5192.024114886128, + "center": [ + 2438.5845284626885, + 5192.024114886128 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.974119964205, + 5192.024114886128 + ], + [ + 2433.194936961172, + 5192.024114886128 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557156", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5189.045811472732, + "max_x": 2433.194936961172, + "max_y": 5192.024114886128, + "center": [ + 2433.194936961172, + 5190.53496317943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5192.024114886128 + ], + [ + 2433.194936961172, + 5189.045811472732 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557157", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2443.9741199642, + "min_y": 5189.045811472737, + "max_x": 2445.463271670897, + "max_y": 5190.534963179434, + "center": [ + 2444.7186958175485, + 5189.790387326086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.9741199642, + 5189.045811472737 + ], + [ + 2445.463271670897, + 5190.534963179434 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557158", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2443.9741199642, + "min_y": 5190.534963179434, + "max_x": 2445.463271670897, + "max_y": 5192.02411488613, + "center": [ + 2444.7186958175485, + 5191.279539032782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.463271670897, + 5190.534963179434 + ], + [ + 2443.9741199642, + 5192.02411488613 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557159", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2417.173208211656, + "min_y": 5182.196031917092, + "max_x": 2433.194936961172, + "max_y": 5182.196031917092, + "center": [ + 2425.184072586414, + 5182.196031917092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.173208211656, + 5182.196031917092 + ], + [ + 2433.194936961172, + 5182.196031917092 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55715A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.584775343583, + "min_y": 5182.196031917097, + "max_x": 2443.250814945822, + "max_y": 5183.827745358552, + "center": [ + 2442.4177951447027, + 5183.011888637824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.584775343583, + 5183.827745358552 + ], + [ + 2443.250814945822, + 5182.196031917097 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55715B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.584775343583, + "min_y": 5180.564318475632, + "max_x": 2443.250814945822, + "max_y": 5182.196031917097, + "center": [ + 2442.4177951447027, + 5181.380175196364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.584775343583, + 5180.564318475632 + ], + [ + 2443.250814945822, + 5182.196031917097 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55715C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5180.564318475632, + "max_x": 2433.194936961172, + "max_y": 5183.827745358552, + "center": [ + 2433.194936961172, + 5182.196031917092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5183.827745358552 + ], + [ + 2433.194936961172, + 5180.564318475632 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55715D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5183.827745358552, + "max_x": 2441.584775343583, + "max_y": 5183.827745358552, + "center": [ + 2437.3898561523774, + 5183.827745358552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5183.827745358552 + ], + [ + 2441.584775343583, + 5183.827745358552 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55715E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5180.564318475632, + "max_x": 2441.584775343583, + "max_y": 5180.564318475632, + "center": [ + 2437.3898561523774, + 5180.564318475632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.584775343583, + 5180.564318475632 + ], + [ + 2433.194936961172, + 5180.564318475632 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55715F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2434.435435695736, + "min_y": 5181.353090974248, + "max_x": 2439.8108661776246, + "max_y": 5182.846266108106, + "center": [ + 2437.1231509366803, + 5182.099678541177 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557160", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5182.49076621985, + "max_x": 2432.5945528349107, + "max_y": 5183.610647570244, + "center": [ + 2426.5471935427863, + 5183.0507068950465 + ] + }, + "raw_value": "SAM-9954-10A-F2A-n", + "clean_value": "SAM-9954-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557161", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.463595056995, + "min_y": 5175.372299856256, + "max_x": 2404.463595056995, + "max_y": 5177.124012753955, + "center": [ + 2404.463595056995, + 5176.248156305106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.463595056995, + 5175.372299856256 + ], + [ + 2404.463595056995, + 5177.124012753955 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557162", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2404.463595056997, + "min_y": 5171.680618496472, + "max_x": 2404.463595056997, + "max_y": 5173.676195252787, + "center": [ + 2404.463595056997, + 5172.678406874629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.463595056997, + 5173.676195252787 + ], + [ + 2404.463595056997, + 5171.680618496472 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557163", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.148560566441, + "min_y": 5175.867315900381, + "max_x": 2404.778629547548, + "max_y": 5176.497384881495, + "center": [ + 2404.4635950569946, + 5176.182350390938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.148560566441, + 5176.497384881495 + ], + [ + 2404.778629547548, + 5175.867315900381 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557164", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.148560566441, + "min_y": 5176.182350390935, + "max_x": 2404.778629547548, + "max_y": 5176.812419372048, + "center": [ + 2404.4635950569946, + 5176.497384881492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.778629547548, + 5176.182350390935 + ], + [ + 2404.148560566441, + 5176.812419372048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557165", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.148560566441, + "min_y": 5176.497384881495, + "max_x": 2404.778629547548, + "max_y": 5177.127453862603, + "center": [ + 2404.4635950569946, + 5176.812419372049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.148560566441, + 5177.127453862603 + ], + [ + 2404.778629547548, + 5176.497384881495 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557166", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.463595056995, + "min_y": 5175.372299856256, + "max_x": 2404.463595056995, + "max_y": 5177.127453862603, + "center": [ + 2404.463595056995, + 5176.24987685943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.463595056995, + 5175.372299856256 + ], + [ + 2404.463595056995, + 5177.127453862603 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557167", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.83352607588, + "min_y": 5174.112161894036, + "max_x": 2404.463595056995, + "max_y": 5175.372299856256, + "center": [ + 2404.1485605664375, + 5174.742230875147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.463595056995, + 5175.372299856256 + ], + [ + 2403.83352607588, + 5174.112161894036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557168", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.83352607588, + "min_y": 5174.112161894036, + "max_x": 2405.093664038107, + "max_y": 5174.112161894036, + "center": [ + 2404.4635950569937, + 5174.112161894036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.83352607588, + 5174.112161894036 + ], + [ + 2405.093664038107, + 5174.112161894036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557169", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.463595056995, + "min_y": 5174.112161894036, + "max_x": 2405.093664038107, + "max_y": 5175.372299856256, + "center": [ + 2404.7786295475507, + 5174.742230875147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.093664038107, + 5174.112161894036 + ], + [ + 2404.463595056995, + 5175.372299856256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.463595056995, + "min_y": 5175.372299856256, + "max_x": 2405.723733019218, + "max_y": 5176.002368837372, + "center": [ + 2405.0936640381065, + 5175.687334346814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.463595056995, + 5175.372299856256 + ], + [ + 2405.723733019218, + 5176.002368837372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.723733019218, + "min_y": 5174.742230875152, + "max_x": 2405.723733019218, + "max_y": 5176.002368837372, + "center": [ + 2405.723733019218, + 5175.3722998562625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.723733019218, + 5176.002368837372 + ], + [ + 2405.723733019218, + 5174.742230875152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.463595056995, + "min_y": 5174.742230875152, + "max_x": 2405.723733019218, + "max_y": 5175.372299856256, + "center": [ + 2405.0936640381065, + 5175.057265365704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.723733019218, + 5174.742230875152 + ], + [ + 2404.463595056995, + 5175.372299856256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.83352607588, + "min_y": 5173.676195252787, + "max_x": 2405.093664038107, + "max_y": 5173.676195252787, + "center": [ + 2404.4635950569937, + 5173.676195252787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.83352607588, + 5173.676195252787 + ], + [ + 2405.093664038107, + 5173.676195252787 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2406.150531226458, + "min_y": 5174.742230875152, + "max_x": 2406.150531226458, + "max_y": 5176.002368837372, + "center": [ + 2406.150531226458, + 5175.3722998562625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.150531226458, + 5176.002368837372 + ], + [ + 2406.150531226458, + 5174.742230875152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55716F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2406.150531226458, + "min_y": 5175.372299856261, + "max_x": 2408.454869957031, + "max_y": 5175.372299856261, + "center": [ + 2407.3027005917447, + 5175.372299856261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2406.150531226458, + 5175.372299856261 + ], + [ + 2408.454869957031, + 5175.372299856261 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557170", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2408.454869957031, + "min_y": 5175.372299856261, + "max_x": 2408.454869957031, + "max_y": 5194.633147943218, + "center": [ + 2408.454869957031, + 5185.002723899739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2408.454869957031, + 5175.372299856261 + ], + [ + 2408.454869957031, + 5194.633147943218 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557171", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.381271617607, + "min_y": 5173.171657957873, + "max_x": 2411.750235038346, + "max_y": 5173.787889404008, + "center": [ + 2411.5657533279764, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.750235038346, + 5173.171657957873 + ], + [ + 2411.381271617607, + 5173.787889404008 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557172", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5173.171657957873, + "max_x": 2411.750235038346, + "max_y": 5173.171657957873, + "center": [ + 2411.2005076762252, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.650780314104, + 5173.171657957873 + ], + [ + 2411.750235038346, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557173", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5173.171657957873, + "max_x": 2411.019743734843, + "max_y": 5173.787889404008, + "center": [ + 2410.835262024473, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.019743734843, + 5173.787889404008 + ], + [ + 2410.650780314104, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557174", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.38127161761, + "min_y": 5174.391702241531, + "max_x": 2411.750235038346, + "max_y": 5175.007933687671, + "center": [ + 2411.565753327978, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.750235038346, + 5175.007933687671 + ], + [ + 2411.38127161761, + 5174.391702241531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557175", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5175.007933687671, + "max_x": 2411.750235038346, + "max_y": 5175.007933687671, + "center": [ + 2411.2005076762252, + 5175.007933687671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.650780314104, + 5175.007933687671 + ], + [ + 2411.750235038346, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557176", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5174.391702241531, + "max_x": 2411.019743734841, + "max_y": 5175.007933687671, + "center": [ + 2410.8352620244723, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.019743734841, + 5174.391702241531 + ], + [ + 2410.650780314104, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557177", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.642792339172, + "min_y": 5175.335099539649, + "max_x": 2411.75458297398, + "max_y": 5175.335099539649, + "center": [ + 2411.198687656576, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.642792339172, + 5175.335099539649 + ], + [ + 2411.75458297398, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557178", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.642792339172, + "min_y": 5175.335099539649, + "max_x": 2411.75458297398, + "max_y": 5175.335099539649, + "center": [ + 2411.198687656576, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.642792339172, + 5175.335099539649 + ], + [ + 2411.75458297398, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557179", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.644612358822, + "min_y": 5172.844492105889, + "max_x": 2411.756402993628, + "max_y": 5172.844492105889, + "center": [ + 2411.2005076762252, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.644612358822, + 5172.844492105889 + ], + [ + 2411.756402993628, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.644612358822, + "min_y": 5173.171657957873, + "max_x": 2411.756402993628, + "max_y": 5173.171657957873, + "center": [ + 2411.2005076762252, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.644612358822, + 5173.171657957873 + ], + [ + 2411.756402993628, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5172.844492105889, + "max_x": 2411.750235038346, + "max_y": 5172.844492105889, + "center": [ + 2411.2005076762252, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.750235038346, + 5172.844492105889 + ], + [ + 2410.650780314104, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.650780314104, + "min_y": 5175.335099539649, + "max_x": 2411.750235038346, + "max_y": 5175.335099539649, + "center": [ + 2411.2005076762252, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.750235038346, + 5175.335099539649 + ], + [ + 2410.650780314104, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2410.848622626538, + "min_y": 5173.737910773086, + "max_x": 2411.5523927259114, + "max_y": 5174.441680872459, + "center": [ + 2411.200507676225, + 5174.089795822772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.200507676225, + 5174.089795822772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.630453895731, + "min_y": 5172.844492105889, + "max_x": 2411.77056145672, + "max_y": 5172.844492105889, + "center": [ + 2411.2005076762252, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.630453895731, + 5172.844492105889 + ], + [ + 2411.77056145672, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55717F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2411.200507676225, + "min_y": 5171.680618496472, + "max_x": 2411.200507676225, + "max_y": 5172.844492105889, + "center": [ + 2411.200507676225, + 5172.26255530118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.200507676225, + 5171.680618496472 + ], + [ + 2411.200507676225, + 5172.844492105889 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557180", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.367621885323, + "min_y": 5173.171657957873, + "max_x": 2414.736585306062, + "max_y": 5173.787889404008, + "center": [ + 2414.5521035956926, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.736585306062, + 5173.171657957873 + ], + [ + 2414.367621885323, + 5173.787889404008 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557181", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5173.171657957873, + "max_x": 2414.736585306062, + "max_y": 5173.171657957873, + "center": [ + 2414.186857943941, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.63713058182, + 5173.171657957873 + ], + [ + 2414.736585306062, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557182", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5173.171657957873, + "max_x": 2414.006094002559, + "max_y": 5173.787889404008, + "center": [ + 2413.8216122921895, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.006094002559, + 5173.787889404008 + ], + [ + 2413.63713058182, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557183", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.367621885325, + "min_y": 5174.391702241531, + "max_x": 2414.736585306062, + "max_y": 5175.007933687671, + "center": [ + 2414.5521035956936, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.736585306062, + 5175.007933687671 + ], + [ + 2414.367621885325, + 5174.391702241531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557184", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5175.007933687671, + "max_x": 2414.736585306062, + "max_y": 5175.007933687671, + "center": [ + 2414.186857943941, + 5175.007933687671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.63713058182, + 5175.007933687671 + ], + [ + 2414.736585306062, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557185", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5174.391702241531, + "max_x": 2414.006094002556, + "max_y": 5175.007933687671, + "center": [ + 2413.821612292188, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.006094002556, + 5174.391702241531 + ], + [ + 2413.63713058182, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557186", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.629142606888, + "min_y": 5175.335099539649, + "max_x": 2414.740933241696, + "max_y": 5175.335099539649, + "center": [ + 2414.185037924292, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.629142606888, + 5175.335099539649 + ], + [ + 2414.740933241696, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557187", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.629142606888, + "min_y": 5175.335099539649, + "max_x": 2414.740933241696, + "max_y": 5175.335099539649, + "center": [ + 2414.185037924292, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.629142606888, + 5175.335099539649 + ], + [ + 2414.740933241696, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557188", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.630962626538, + "min_y": 5172.844492105889, + "max_x": 2414.742753261343, + "max_y": 5172.844492105889, + "center": [ + 2414.1868579439406, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.630962626538, + 5172.844492105889 + ], + [ + 2414.742753261343, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557189", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.630962626538, + "min_y": 5173.171657957873, + "max_x": 2414.742753261343, + "max_y": 5173.171657957873, + "center": [ + 2414.1868579439406, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.630962626538, + 5173.171657957873 + ], + [ + 2414.742753261343, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55718A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5172.844492105889, + "max_x": 2414.736585306062, + "max_y": 5172.844492105889, + "center": [ + 2414.186857943941, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.736585306062, + 5172.844492105889 + ], + [ + 2413.63713058182, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55718B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.63713058182, + "min_y": 5175.335099539649, + "max_x": 2414.736585306062, + "max_y": 5175.335099539649, + "center": [ + 2414.186857943941, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.736585306062, + 5175.335099539649 + ], + [ + 2413.63713058182, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55718C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2413.8349728942544, + "min_y": 5173.737910773086, + "max_x": 2414.5387429936277, + "max_y": 5174.441680872459, + "center": [ + 2414.186857943941, + 5174.089795822772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.186857943941, + 5174.089795822772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55718D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.616804163446, + "min_y": 5172.844492105889, + "max_x": 2414.756911724436, + "max_y": 5172.844492105889, + "center": [ + 2414.186857943941, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.616804163446, + 5172.844492105889 + ], + [ + 2414.756911724436, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55718E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2414.186857943941, + "min_y": 5171.680618496472, + "max_x": 2414.186857943941, + "max_y": 5172.844492105889, + "center": [ + 2414.186857943941, + 5172.26255530118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.186857943941, + 5171.680618496472 + ], + [ + 2414.186857943941, + 5172.844492105889 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55718F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.353972153038, + "min_y": 5173.171657957873, + "max_x": 2417.722935573777, + "max_y": 5173.787889404008, + "center": [ + 2417.538453863407, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.722935573777, + 5173.171657957873 + ], + [ + 2417.353972153038, + 5173.787889404008 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557190", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5173.171657957873, + "max_x": 2417.722935573777, + "max_y": 5173.171657957873, + "center": [ + 2417.1732082116564, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.623480849536, + 5173.171657957873 + ], + [ + 2417.722935573777, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557191", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5173.171657957873, + "max_x": 2416.992444270275, + "max_y": 5173.787889404008, + "center": [ + 2416.8079625599057, + 5173.4797736809405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.992444270275, + 5173.787889404008 + ], + [ + 2416.623480849536, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557192", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.353972153041, + "min_y": 5174.391702241531, + "max_x": 2417.722935573777, + "max_y": 5175.007933687671, + "center": [ + 2417.538453863409, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.722935573777, + 5175.007933687671 + ], + [ + 2417.353972153041, + 5174.391702241531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5175.007933687671, + "max_x": 2417.722935573777, + "max_y": 5175.007933687671, + "center": [ + 2417.1732082116564, + 5175.007933687671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.623480849536, + 5175.007933687671 + ], + [ + 2417.722935573777, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5174.391702241531, + "max_x": 2416.992444270272, + "max_y": 5175.007933687671, + "center": [ + 2416.807962559904, + 5174.699817964601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.992444270272, + 5174.391702241531 + ], + [ + 2416.623480849536, + 5175.007933687671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.615492874604, + "min_y": 5175.335099539649, + "max_x": 2417.727283509412, + "max_y": 5175.335099539649, + "center": [ + 2417.1713881920077, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.615492874604, + 5175.335099539649 + ], + [ + 2417.727283509412, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557196", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.615492874604, + "min_y": 5175.335099539649, + "max_x": 2417.727283509412, + "max_y": 5175.335099539649, + "center": [ + 2417.1713881920077, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.615492874604, + 5175.335099539649 + ], + [ + 2417.727283509412, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557197", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.617312894254, + "min_y": 5172.844492105889, + "max_x": 2417.729103529059, + "max_y": 5172.844492105889, + "center": [ + 2417.173208211657, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.617312894254, + 5172.844492105889 + ], + [ + 2417.729103529059, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.617312894254, + "min_y": 5173.171657957873, + "max_x": 2417.729103529059, + "max_y": 5173.171657957873, + "center": [ + 2417.173208211657, + 5173.171657957873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.617312894254, + 5173.171657957873 + ], + [ + 2417.729103529059, + 5173.171657957873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5172.844492105889, + "max_x": 2417.722935573777, + "max_y": 5172.844492105889, + "center": [ + 2417.1732082116564, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.722935573777, + 5172.844492105889 + ], + [ + 2416.623480849536, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55719A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.623480849536, + "min_y": 5175.335099539649, + "max_x": 2417.722935573777, + "max_y": 5175.335099539649, + "center": [ + 2417.1732082116564, + 5175.335099539649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.722935573777, + 5175.335099539649 + ], + [ + 2416.623480849536, + 5175.335099539649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55719B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2416.8213231619693, + "min_y": 5173.737910773086, + "max_x": 2417.5250932613426, + "max_y": 5174.441680872459, + "center": [ + 2417.173208211656, + 5174.089795822772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.173208211656, + 5174.089795822772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55719C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.603154431161, + "min_y": 5172.844492105889, + "max_x": 2417.743261992152, + "max_y": 5172.844492105889, + "center": [ + 2417.1732082116564, + 5172.844492105889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.603154431161, + 5172.844492105889 + ], + [ + 2417.743261992152, + 5172.844492105889 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55719D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2417.173208211656, + "min_y": 5171.680618496472, + "max_x": 2417.173208211656, + "max_y": 5172.844492105889, + "center": [ + 2417.173208211656, + 5172.26255530118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.173208211656, + 5171.680618496472 + ], + [ + 2417.173208211656, + 5172.844492105889 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55719E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.456404210357, + "min_y": 5171.131847217001, + "max_x": 2427.456404210357, + "max_y": 5172.229389775939, + "center": [ + 2427.456404210357, + 5171.68061849647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.456404210357, + 5172.229389775939 + ], + [ + 2427.456404210357, + 5171.131847217001 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55719F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.027750485948, + "min_y": 5171.111556150219, + "max_x": 2427.027750485948, + "max_y": 5172.249680842725, + "center": [ + 2427.027750485948, + 5171.680618496472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.027750485948, + 5172.249680842725 + ], + [ + 2427.027750485948, + 5171.111556150219 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571A0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2408.454869957031, + "min_y": 5194.633147943218, + "max_x": 2433.194936961172, + "max_y": 5194.633147943218, + "center": [ + 2420.8249034591017, + 5194.633147943218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2408.454869957031, + 5194.633147943218 + ], + [ + 2433.194936961172, + 5194.633147943218 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571A1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2434.70551099902, + "min_y": 5193.838972675118, + "max_x": 2440.0809414809087, + "max_y": 5195.3321478089765, + "center": [ + 2437.3932262399644, + 5194.585560242047 + ] + }, + "raw_value": "T-3210", + "clean_value": "T-3210", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571A2", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5193.143996236521, + "max_x": 2443.974119964197, + "max_y": 5193.143996236521, + "center": [ + 2438.584528462685, + 5193.143996236521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5193.143996236521 + ], + [ + 2443.974119964197, + 5193.143996236521 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5571A3", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5196.122299649915, + "max_x": 2443.974119964205, + "max_y": 5196.122299649915, + "center": [ + 2438.5845284626885, + 5196.122299649915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.974119964205, + 5196.122299649915 + ], + [ + 2433.194936961172, + 5196.122299649915 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5571A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.194936961172, + "min_y": 5193.190654258959, + "max_x": 2433.194936961172, + "max_y": 5196.168957672353, + "center": [ + 2433.194936961172, + 5194.679805965656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.194936961172, + 5196.168957672353 + ], + [ + 2433.194936961172, + 5193.190654258959 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571A5", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2443.9741199642, + "min_y": 5193.143996236524, + "max_x": 2445.463271670897, + "max_y": 5194.633147943221, + "center": [ + 2444.7186958175485, + 5193.8885720898725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.9741199642, + 5193.143996236524 + ], + [ + 2445.463271670897, + 5194.633147943221 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5571A6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2443.9741199642, + "min_y": 5194.633147943221, + "max_x": 2445.463271670897, + "max_y": 5196.122299649919, + "center": [ + 2444.7186958175485, + 5195.37772379657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.463271670897, + 5194.633147943221 + ], + [ + 2443.9741199642, + 5196.122299649919 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5571A7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2433.013622837774, + "min_y": 5196.603659295216, + "max_x": 2439.7329109401344, + "max_y": 5197.723540645609, + "center": [ + 2436.3732668889543, + 5197.163599970412 + ] + }, + "raw_value": "P&ID-10200", + "clean_value": "P&ID-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571A8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2420.499834250662, + "min_y": 5195.053489965602, + "max_x": 2432.5945528349107, + "max_y": 5196.173371315996, + "center": [ + 2426.5471935427863, + 5195.6134306407985 + ] + }, + "raw_value": "VG-10444-25A-F1A-n", + "clean_value": "VG-10444-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571A9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2410.265850117092, + "min_y": 5171.982722598445, + "max_x": 2418.3289958399246, + "max_y": 5173.102603948839, + "center": [ + 2414.2974229785086, + 5172.542663273642 + ] + }, + "raw_value": "HD10219BA-01", + "clean_value": "HD10219BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571AA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2417.173208211656, + "min_y": 5175.335099539649, + "max_x": 2417.173208211656, + "max_y": 5182.196031917092, + "center": [ + 2417.173208211656, + 5178.76556572837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.173208211656, + 5175.335099539649 + ], + [ + 2417.173208211656, + 5182.196031917092 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5571AB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2411.200507676225, + "min_y": 5175.335099539649, + "max_x": 2411.200507676225, + "max_y": 5190.581621201863, + "center": [ + 2411.200507676225, + 5182.958360370756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.200507676225, + 5175.335099539649 + ], + [ + 2411.200507676225, + 5190.581621201863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2361.201777988752, + "min_y": 5171.241601472896, + "max_x": 2361.693905748727, + "max_y": 5171.536258850245, + "center": [ + 2361.4478418687395, + 5171.388930161571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2361.693905748727, + 5171.241601472896 + ], + [ + 2361.201777988752, + 5171.536258850245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2360.227440077007, + "min_y": 5171.824978142694, + "max_x": 2360.719567836977, + "max_y": 5172.119635520044, + "center": [ + 2360.4735039569923, + 5171.972306831369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.719567836977, + 5171.824978142694 + ], + [ + 2360.227440077007, + 5172.119635520044 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2361.693905748727, + "min_y": 5171.241601472896, + "max_x": 2361.693905748727, + "max_y": 5172.119635520044, + "center": [ + 2361.693905748727, + 5171.68061849647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2361.693905748727, + 5172.119635520044 + ], + [ + 2361.693905748727, + 5171.241601472896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2360.227440077007, + "min_y": 5171.241601472896, + "max_x": 2360.227440077007, + "max_y": 5172.119635520044, + "center": [ + 2360.227440077007, + 5171.68061849647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.227440077007, + 5172.119635520044 + ], + [ + 2360.227440077007, + 5171.241601472896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2361.201777988752, + "min_y": 5171.824978142694, + "max_x": 2361.693905748727, + "max_y": 5172.119635520044, + "center": [ + 2361.4478418687395, + 5171.972306831369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2361.693905748727, + 5172.119635520044 + ], + [ + 2361.201777988752, + 5171.824978142694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2360.227440077007, + "min_y": 5171.241601472896, + "max_x": 2360.719567836977, + "max_y": 5171.536258850245, + "center": [ + 2360.4735039569923, + 5171.388930161571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.719567836977, + 5171.536258850245 + ], + [ + 2360.227440077007, + 5171.241601472896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2359.884517097476, + "min_y": 5171.225368619468, + "max_x": 2359.884517097476, + "max_y": 5172.135868373473, + "center": [ + 2359.884517097476, + 5171.680618496471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.884517097476, + 5172.135868373473 + ], + [ + 2359.884517097476, + 5171.225368619468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2362.036828728253, + "min_y": 5171.225368619468, + "max_x": 2362.036828728253, + "max_y": 5172.135868373473, + "center": [ + 2362.036828728253, + 5171.680618496471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2362.036828728253, + 5172.135868373473 + ], + [ + 2362.036828728253, + 5171.225368619468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2360.679654470275, + "min_y": 5171.3996000538755, + "max_x": 2361.2416913554584, + "max_y": 5171.961636939059, + "center": [ + 2360.960672912867, + 5171.680618496467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2360.960672912867, + 5171.680618496467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2359.225506484647, + "min_y": 5171.680618496471, + "max_x": 2359.884517097476, + "max_y": 5171.680618496471, + "center": [ + 2359.5550117910616, + 5171.680618496471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.225506484647, + 5171.680618496471 + ], + [ + 2359.884517097476, + 5171.680618496471 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2358.669362199318, + "min_y": 5172.083631872093, + "max_x": 2359.324980245005, + "max_y": 5172.083631872093, + "center": [ + 2358.9971712221613, + 5172.083631872093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.324980245005, + 5172.083631872093 + ], + [ + 2358.669362199318, + 5172.083631872093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2358.669467644353, + "min_y": 5171.27760512085, + "max_x": 2359.32508569004, + "max_y": 5171.27760512085, + "center": [ + 2358.9972766671963, + 5171.27760512085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2359.32508569004, + 5171.27760512085 + ], + [ + 2358.669467644353, + 5171.27760512085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2358.669519934447, + "min_y": 5171.277653188783, + "max_x": 2358.669519934447, + "max_y": 5172.083679940026, + "center": [ + 2358.669519934447, + 5171.680666564404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2358.669519934447, + 5172.083679940026 + ], + [ + 2358.669519934447, + 5171.277653188783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.058216121273, + "min_y": 5174.945781889289, + "max_x": 2377.352873498622, + "max_y": 5175.437909649264, + "center": [ + 2377.2055448099472, + 5175.191845769276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.352873498622, + 5175.437909649264 + ], + [ + 2377.058216121273, + 5174.945781889289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451474, + "min_y": 5173.971443977545, + "max_x": 2376.769496828823, + "max_y": 5174.463571737514, + "center": [ + 2376.6221681401485, + 5174.217507857529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.769496828823, + 5174.463571737514 + ], + [ + 2376.474839451474, + 5173.971443977545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451474, + "min_y": 5175.437909649264, + "max_x": 2377.352873498622, + "max_y": 5175.437909649264, + "center": [ + 2376.9138564750483, + 5175.437909649264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451474, + 5175.437909649264 + ], + [ + 2377.352873498622, + 5175.437909649264 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451474, + "min_y": 5173.971443977545, + "max_x": 2377.352873498622, + "max_y": 5173.971443977545, + "center": [ + 2376.9138564750483, + 5173.971443977545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451474, + 5173.971443977545 + ], + [ + 2377.352873498622, + 5173.971443977545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.474839451474, + "min_y": 5174.945781889289, + "max_x": 2376.769496828823, + "max_y": 5175.437909649264, + "center": [ + 2376.6221681401485, + 5175.191845769276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.474839451474, + 5175.437909649264 + ], + [ + 2376.769496828823, + 5174.945781889289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.058216121273, + "min_y": 5173.971443977545, + "max_x": 2377.352873498622, + "max_y": 5174.463571737514, + "center": [ + 2377.2055448099472, + 5174.217507857529 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.058216121273, + 5174.463571737514 + ], + [ + 2377.352873498622, + 5173.971443977545 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.458606598044, + "min_y": 5173.628520998012, + "max_x": 2377.369106352049, + "max_y": 5173.628520998012, + "center": [ + 2376.9138564750465, + 5173.628520998012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.458606598044, + 5173.628520998012 + ], + [ + 2377.369106352049, + 5173.628520998012 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.458606598044, + "min_y": 5175.780832628791, + "max_x": 2377.369106352049, + "max_y": 5175.780832628791, + "center": [ + 2376.9138564750465, + 5175.780832628791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.458606598044, + 5175.780832628791 + ], + [ + 2377.369106352049, + 5175.780832628791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2376.6328380324585, + "min_y": 5174.4236583708125, + "max_x": 2377.1948749176418, + "max_y": 5174.985695255996, + "center": [ + 2376.91385647505, + 5174.704676813404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.91385647505, + 5174.704676813404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2377.411864381369, + "min_y": 5174.439491895061, + "max_x": 2384.8030812939655, + "max_y": 5175.5593732454545, + "center": [ + 2381.107472837667, + 5174.999432570257 + ] + }, + "raw_value": "E10219BA-07", + "clean_value": "E10219BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571C3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2376.913856475047, + "min_y": 5172.969510385184, + "max_x": 2376.913856475047, + "max_y": 5173.628520998012, + "center": [ + 2376.913856475047, + 5173.2990156915985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.913856475047, + 5172.969510385184 + ], + [ + 2376.913856475047, + 5173.628520998012 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.510843099425, + "min_y": 5172.417193387921, + "max_x": 2376.510843099425, + "max_y": 5173.072811433608, + "center": [ + 2376.510843099425, + 5172.745002410764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.510843099425, + 5173.072811433608 + ], + [ + 2376.510843099425, + 5172.417193387921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2377.316869850668, + "min_y": 5172.417193387921, + "max_x": 2377.316869850668, + "max_y": 5173.072811433608, + "center": [ + 2377.316869850668, + 5172.745002410764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2377.316869850668, + 5173.072811433608 + ], + [ + 2377.316869850668, + 5172.417193387921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.510843099425, + "min_y": 5172.417193387921, + "max_x": 2377.316869850668, + "max_y": 5172.417193387921, + "center": [ + 2376.9138564750465, + 5172.417193387921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.510843099425, + 5172.417193387921 + ], + [ + 2377.316869850668, + 5172.417193387921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2422.267595527879, + "min_y": 5171.680618496471, + "max_x": 2422.267595527879, + "max_y": 5174.152730861512, + "center": [ + 2422.267595527879, + 5172.9166746789915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.267595527879, + 5171.680618496471 + ], + [ + 2422.267595527879, + 5174.152730861512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571C8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2369.694085488921, + "min_y": 5181.120973931836, + "max_x": 2377.0853024015173, + "max_y": 5182.240855282229, + "center": [ + 2373.389693945219, + 5181.680914607032 + ] + }, + "raw_value": "E10219BA-01", + "clean_value": "E10219BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571C9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2378.105447997445, + "min_y": 5194.454981149763, + "max_x": 2385.4966649100415, + "max_y": 5195.574862500156, + "center": [ + 2381.8010564537435, + 5195.014921824959 + ] + }, + "raw_value": "E10219BA-04", + "clean_value": "E10219BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571CA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2369.026328382181, + "min_y": 5196.324748217098, + "max_x": 2376.4175452947775, + "max_y": 5197.444629567492, + "center": [ + 2372.7219368384795, + 5196.884688892294 + ] + }, + "raw_value": "E10219BA-03", + "clean_value": "E10219BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571CB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2413.252200384807, + "min_y": 5171.982722598445, + "max_x": 2421.3153461076395, + "max_y": 5173.102603948839, + "center": [ + 2417.283773246223, + 5172.542663273642 + ] + }, + "raw_value": "HD10219BA-02", + "clean_value": "HD10219BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571CC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2416.238550652523, + "min_y": 5171.982722598445, + "max_x": 2424.3016963753553, + "max_y": 5173.102603948839, + "center": [ + 2420.2701235139393, + 5172.542663273642 + ] + }, + "raw_value": "HD10219BA-03", + "clean_value": "HD10219BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5571CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.086533518354, + "min_y": 5178.121290999972, + "max_x": 2365.125498971023, + "max_y": 5178.121290999972, + "center": [ + 2364.1060162446884, + 5178.121290999972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.086533518354, + 5178.121290999972 + ], + [ + 2365.125498971023, + 5178.121290999972 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5571CE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2439.646040155807, + "min_y": 5250.121847807017, + "max_x": 2441.237215211853, + "max_y": 5250.121847807017, + "center": [ + 2440.44162768383, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.646040155807, + 5250.121847807017 + ], + [ + 2441.237215211853, + 5250.121847807017 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.564381063837, + "min_y": 5250.302611748399, + "max_x": 2442.180612509972, + "max_y": 5250.671575169138, + "center": [ + 2441.872496786905, + 5250.487093458769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.564381063837, + 5250.671575169138 + ], + [ + 2442.180612509972, + 5250.302611748399 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.564381063837, + "min_y": 5249.572120444895, + "max_x": 2441.564381063837, + "max_y": 5250.671575169138, + "center": [ + 2441.564381063837, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.564381063837, + 5249.572120444895 + ], + [ + 2441.564381063837, + 5250.671575169138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.564381063837, + "min_y": 5249.572120444895, + "max_x": 2442.180612509972, + "max_y": 5249.941083865635, + "center": [ + 2441.872496786905, + 5249.756602155265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.180612509972, + 5249.941083865635 + ], + [ + 2441.564381063837, + 5249.572120444895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2442.784425347495, + "min_y": 5250.302611748401, + "max_x": 2443.400656793635, + "max_y": 5250.671575169138, + "center": [ + 2443.092541070565, + 5250.48709345877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.400656793635, + 5250.671575169138 + ], + [ + 2442.784425347495, + 5250.302611748401 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2443.400656793635, + "min_y": 5249.572120444895, + "max_x": 2443.400656793635, + "max_y": 5250.671575169138, + "center": [ + 2443.400656793635, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.400656793635, + 5249.572120444895 + ], + [ + 2443.400656793635, + 5250.671575169138 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2442.784425347495, + "min_y": 5249.572120444895, + "max_x": 2443.400656793635, + "max_y": 5249.941083865632, + "center": [ + 2443.092541070565, + 5249.756602155263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.784425347495, + 5249.941083865632 + ], + [ + 2443.400656793635, + 5249.572120444895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2443.727822645614, + "min_y": 5249.564132469964, + "max_x": 2443.727822645614, + "max_y": 5250.675923104772, + "center": [ + 2443.727822645614, + 5250.120027787368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.727822645614, + 5249.564132469964 + ], + [ + 2443.727822645614, + 5250.675923104772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2443.727822645614, + "min_y": 5249.564132469964, + "max_x": 2443.727822645614, + "max_y": 5250.675923104772, + "center": [ + 2443.727822645614, + 5250.120027787368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.727822645614, + 5249.564132469964 + ], + [ + 2443.727822645614, + 5250.675923104772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.237215211853, + "min_y": 5249.565952489614, + "max_x": 2441.237215211853, + "max_y": 5250.67774312442, + "center": [ + 2441.237215211853, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.237215211853, + 5249.565952489614 + ], + [ + 2441.237215211853, + 5250.67774312442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.564381063837, + "min_y": 5249.565952489614, + "max_x": 2441.564381063837, + "max_y": 5250.67774312442, + "center": [ + 2441.564381063837, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.564381063837, + 5249.565952489614 + ], + [ + 2441.564381063837, + 5250.67774312442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.237215211853, + "min_y": 5249.572120444895, + "max_x": 2441.237215211853, + "max_y": 5250.671575169138, + "center": [ + 2441.237215211853, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.237215211853, + 5250.671575169138 + ], + [ + 2441.237215211853, + 5249.572120444895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2443.727822645614, + "min_y": 5249.572120444895, + "max_x": 2443.727822645614, + "max_y": 5250.671575169138, + "center": [ + 2443.727822645614, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.727822645614, + 5250.671575169138 + ], + [ + 2443.727822645614, + 5249.572120444895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571DB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2442.1306338790496, + "min_y": 5249.76996275733, + "max_x": 2442.834403978423, + "max_y": 5250.4737328567035, + "center": [ + 2442.482518928736, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.482518928736, + 5250.121847807017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.237215211853, + "min_y": 5249.551794026522, + "max_x": 2441.237215211853, + "max_y": 5250.691901587511, + "center": [ + 2441.237215211853, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.237215211853, + 5249.551794026522 + ], + [ + 2441.237215211853, + 5250.691901587511 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5571DD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2443.727822645614, + "min_y": 5250.121847807017, + "max_x": 2455.948172305467, + "max_y": 5250.121847807017, + "center": [ + 2449.8379974755408, + 5250.121847807017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.727822645614, + 5250.121847807017 + ], + [ + 2455.948172305467, + 5250.121847807017 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5571DE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950882, + "min_y": 5280.845006169591, + "max_x": 2394.70968862543, + "max_y": 5281.204410399424, + "center": [ + 2393.6905472881563, + 5281.024708284507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862543, + 5280.845006169591 + ], + [ + 2392.671405950882, + 5281.204410399424 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571DF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950882, + "min_y": 5280.485601939757, + "max_x": 2394.70968862543, + "max_y": 5280.845006169591, + "center": [ + 2393.6905472881563, + 5280.6653040546735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862543, + 5280.845006169591 + ], + [ + 2392.671405950882, + 5280.485601939757 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950882, + "min_y": 5280.485601939757, + "max_x": 2392.671405950882, + "max_y": 5281.204410399424, + "center": [ + 2392.671405950882, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.671405950882, + 5280.485601939757 + ], + [ + 2392.671405950882, + 5281.204410399424 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950882, + "min_y": 5280.845006169591, + "max_x": 2394.70968862543, + "max_y": 5281.023332796674, + "center": [ + 2393.6905472881563, + 5280.934169483133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862543, + 5280.845006169591 + ], + [ + 2392.671405950882, + 5281.023332796674 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950882, + "min_y": 5280.666679542505, + "max_x": 2394.70968862543, + "max_y": 5280.845006169591, + "center": [ + 2393.6905472881563, + 5280.755842856048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862543, + 5280.845006169591 + ], + [ + 2392.671405950882, + 5280.666679542505 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.789906702745, + "max_x": 2233.028339698793, + "max_y": 5296.149310932579, + "center": [ + 2232.0091983615193, + 5295.969608817662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2233.028339698793, + 5295.789906702745 + ], + [ + 2230.990057024246, + 5296.149310932579 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.430502472912, + "max_x": 2233.028339698793, + "max_y": 5295.789906702745, + "center": [ + 2232.0091983615193, + 5295.610204587829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2233.028339698793, + 5295.789906702745 + ], + [ + 2230.990057024246, + 5295.430502472912 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.430502472912, + "max_x": 2230.990057024246, + "max_y": 5296.149310932579, + "center": [ + 2230.990057024246, + 5295.789906702746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2230.990057024246, + 5295.430502472912 + ], + [ + 2230.990057024246, + 5296.149310932579 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.789906702745, + "max_x": 2233.028339698793, + "max_y": 5295.96823332983, + "center": [ + 2232.0091983615193, + 5295.879070016287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2233.028339698793, + 5295.789906702745 + ], + [ + 2230.990057024246, + 5295.96823332983 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2230.990057024246, + "min_y": 5295.611580075661, + "max_x": 2233.028339698793, + "max_y": 5295.789906702745, + "center": [ + 2232.0091983615193, + 5295.700743389203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2233.028339698793, + 5295.789906702745 + ], + [ + 2230.990057024246, + 5295.611580075661 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2413.51618956434, + "min_y": 5263.372974896196, + "max_x": 2413.875593794175, + "max_y": 5265.411257570744, + "center": [ + 2413.6958916792573, + 5264.39211623347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5263.372974896196 + ], + [ + 2413.875593794175, + 5265.411257570744 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571E9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2413.156785334507, + "min_y": 5263.372974896196, + "max_x": 2413.51618956434, + "max_y": 5265.411257570744, + "center": [ + 2413.3364874494237, + 5264.39211623347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5263.372974896196 + ], + [ + 2413.156785334507, + 5265.411257570744 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571EA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2413.156785334507, + "min_y": 5265.411257570744, + "max_x": 2413.875593794175, + "max_y": 5265.411257570744, + "center": [ + 2413.516189564341, + 5265.411257570744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.156785334507, + 5265.411257570744 + ], + [ + 2413.875593794175, + 5265.411257570744 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571EB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2413.51618956434, + "min_y": 5263.372974896196, + "max_x": 2413.694516191425, + "max_y": 5265.411257570744, + "center": [ + 2413.6053528778825, + 5264.39211623347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5263.372974896196 + ], + [ + 2413.694516191425, + 5265.411257570744 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571EC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2413.337862937257, + "min_y": 5263.372974896196, + "max_x": 2413.51618956434, + "max_y": 5265.411257570744, + "center": [ + 2413.4270262507985, + 5264.39211623347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5263.372974896196 + ], + [ + 2413.337862937257, + 5265.411257570744 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571ED", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2450.182068809763, + "min_y": 5280.845006169591, + "max_x": 2452.220351484311, + "max_y": 5281.204410399424, + "center": [ + 2451.2012101470373, + 5281.024708284507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.220351484311, + 5280.845006169591 + ], + [ + 2450.182068809763, + 5281.204410399424 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571EE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2450.182068809763, + "min_y": 5280.485601939757, + "max_x": 2452.220351484311, + "max_y": 5280.845006169591, + "center": [ + 2451.2012101470373, + 5280.6653040546735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.220351484311, + 5280.845006169591 + ], + [ + 2450.182068809763, + 5280.485601939757 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571EF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2450.182068809763, + "min_y": 5280.485601939757, + "max_x": 2450.182068809763, + "max_y": 5281.204410399424, + "center": [ + 2450.182068809763, + 5280.84500616959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.182068809763, + 5280.485601939757 + ], + [ + 2450.182068809763, + 5281.204410399424 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F0", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2450.182068809763, + "min_y": 5280.845006169591, + "max_x": 2452.220351484311, + "max_y": 5281.023332796674, + "center": [ + 2451.2012101470373, + 5280.934169483133 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.220351484311, + 5280.845006169591 + ], + [ + 2450.182068809763, + 5281.023332796674 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F1", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2450.182068809763, + "min_y": 5280.666679542505, + "max_x": 2452.220351484311, + "max_y": 5280.845006169591, + "center": [ + 2451.2012101470373, + 5280.755842856048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2452.220351484311, + 5280.845006169591 + ], + [ + 2450.182068809763, + 5280.666679542505 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F2", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2262.021284269714, + "min_y": 5215.477019724002, + "max_x": 2262.380688499549, + "max_y": 5217.51530239855, + "center": [ + 2262.2009863846315, + 5216.496161061276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.021284269714, + 5215.477019724002 + ], + [ + 2262.380688499549, + 5217.51530239855 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F3", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2261.661880039881, + "min_y": 5215.477019724002, + "max_x": 2262.021284269714, + "max_y": 5217.51530239855, + "center": [ + 2261.841582154798, + 5216.496161061276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.021284269714, + 5215.477019724002 + ], + [ + 2261.661880039881, + 5217.51530239855 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F4", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2261.661880039881, + "min_y": 5217.51530239855, + "max_x": 2262.380688499549, + "max_y": 5217.51530239855, + "center": [ + 2262.0212842697147, + 5217.51530239855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.661880039881, + 5217.51530239855 + ], + [ + 2262.380688499549, + 5217.51530239855 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F5", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2262.021284269714, + "min_y": 5215.477019724002, + "max_x": 2262.199610896798, + "max_y": 5217.51530239855, + "center": [ + 2262.1104475832562, + 5216.496161061276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.021284269714, + 5215.477019724002 + ], + [ + 2262.199610896798, + 5217.51530239855 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F6", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2261.842957642631, + "min_y": 5215.477019724002, + "max_x": 2262.021284269714, + "max_y": 5217.51530239855, + "center": [ + 2261.9321209561726, + 5216.496161061276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2262.021284269714, + 5215.477019724002 + ], + [ + 2261.842957642631, + 5217.51530239855 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F7", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2364.484833738049, + "min_y": 5201.0488453393, + "max_x": 2364.844237967883, + "max_y": 5203.087128013848, + "center": [ + 2364.664535852966, + 5202.067986676574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738049, + 5201.0488453393 + ], + [ + 2364.844237967883, + 5203.087128013848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F8", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2364.125429508217, + "min_y": 5201.0488453393, + "max_x": 2364.484833738049, + "max_y": 5203.087128013848, + "center": [ + 2364.305131623133, + 5202.067986676574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738049, + 5201.0488453393 + ], + [ + 2364.125429508217, + 5203.087128013848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571F9", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2364.125429508217, + "min_y": 5203.087128013848, + "max_x": 2364.844237967883, + "max_y": 5203.087128013848, + "center": [ + 2364.48483373805, + 5203.087128013848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.125429508217, + 5203.087128013848 + ], + [ + 2364.844237967883, + 5203.087128013848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FA", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2364.484833738049, + "min_y": 5201.0488453393, + "max_x": 2364.663160365134, + "max_y": 5203.087128013848, + "center": [ + 2364.5739970515915, + 5202.067986676574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738049, + 5201.0488453393 + ], + [ + 2364.663160365134, + 5203.087128013848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FB", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2364.306507110965, + "min_y": 5201.0488453393, + "max_x": 2364.484833738049, + "max_y": 5203.087128013848, + "center": [ + 2364.395670424507, + 5202.067986676574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.484833738049, + 5201.0488453393 + ], + [ + 2364.306507110965, + 5203.087128013848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FC", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2279.87911334702, + "min_y": 5262.690241051417, + "max_x": 2281.917396021569, + "max_y": 5263.049645281251, + "center": [ + 2280.8982546842944, + 5262.8699431663335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.87911334702, + 5263.049645281251 + ], + [ + 2281.917396021569, + 5262.690241051417 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FD", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2279.87911334702, + "min_y": 5263.049645281251, + "max_x": 2281.917396021569, + "max_y": 5263.409049511084, + "center": [ + 2280.8982546842944, + 5263.229347396167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.87911334702, + 5263.049645281251 + ], + [ + 2281.917396021569, + 5263.409049511084 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FE", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2281.917396021569, + "min_y": 5262.690241051417, + "max_x": 2281.917396021569, + "max_y": 5263.409049511084, + "center": [ + 2281.917396021569, + 5263.04964528125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.917396021569, + 5263.409049511084 + ], + [ + 2281.917396021569, + 5262.690241051417 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5571FF", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2279.87911334702, + "min_y": 5262.871318654165, + "max_x": 2281.917396021569, + "max_y": 5263.049645281251, + "center": [ + 2280.8982546842944, + 5262.960481967708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.87911334702, + 5263.049645281251 + ], + [ + 2281.917396021569, + 5262.871318654165 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557200", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2279.87911334702, + "min_y": 5263.049645281251, + "max_x": 2281.917396021569, + "max_y": 5263.227971908334, + "center": [ + 2280.8982546842944, + 5263.138808594793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.87911334702, + 5263.049645281251 + ], + [ + 2281.917396021569, + 5263.227971908334 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557201", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5254.970950754857, + "max_x": 2127.605702100304, + "max_y": 5257.009233429405, + "center": [ + 2127.4259999853875, + 5255.990092092131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5254.970950754857 + ], + [ + 2127.605702100304, + 5257.009233429405 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557202", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2126.886893640637, + "min_y": 5254.970950754857, + "max_x": 2127.246297870471, + "max_y": 5257.009233429405, + "center": [ + 2127.066595755554, + 5255.990092092131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5254.970950754857 + ], + [ + 2126.886893640637, + 5257.009233429405 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557203", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2126.886893640637, + "min_y": 5257.009233429405, + "max_x": 2127.605702100304, + "max_y": 5257.009233429405, + "center": [ + 2127.2462978704707, + 5257.009233429405 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.886893640637, + 5257.009233429405 + ], + [ + 2127.605702100304, + 5257.009233429405 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557204", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2127.246297870471, + "min_y": 5254.970950754857, + "max_x": 2127.424624497554, + "max_y": 5257.009233429405, + "center": [ + 2127.3354611840123, + 5255.990092092131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5254.970950754857 + ], + [ + 2127.424624497554, + 5257.009233429405 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557205", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2127.067971243387, + "min_y": 5254.970950754857, + "max_x": 2127.246297870471, + "max_y": 5257.009233429405, + "center": [ + 2127.157134556929, + 5255.990092092131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.246297870471, + 5254.970950754857 + ], + [ + 2127.067971243387, + 5257.009233429405 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557206", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.885955366443, + "max_x": 2432.465804628081, + "max_y": 5272.245359596277, + "center": [ + 2431.446663290807, + 5272.06565748136 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.465804628081, + 5271.885955366443 + ], + [ + 2430.427521953533, + 5272.245359596277 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557207", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.526551136609, + "max_x": 2432.465804628081, + "max_y": 5271.885955366443, + "center": [ + 2431.446663290807, + 5271.7062532515265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.465804628081, + 5271.885955366443 + ], + [ + 2430.427521953533, + 5271.526551136609 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557208", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.526551136609, + "max_x": 2430.427521953533, + "max_y": 5272.245359596277, + "center": [ + 2430.427521953533, + 5271.885955366442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.427521953533, + 5271.526551136609 + ], + [ + 2430.427521953533, + 5272.245359596277 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557209", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.885955366443, + "max_x": 2432.465804628081, + "max_y": 5272.064281993526, + "center": [ + 2431.446663290807, + 5271.975118679984 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.465804628081, + 5271.885955366443 + ], + [ + 2430.427521953533, + 5272.064281993526 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720A", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2430.427521953533, + "min_y": 5271.707628739358, + "max_x": 2432.465804628081, + "max_y": 5271.885955366443, + "center": [ + 2431.446663290807, + 5271.796792052901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.465804628081, + 5271.885955366443 + ], + [ + 2430.427521953533, + 5271.707628739358 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720B", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5240.740567047243, + "max_x": 2242.024136864247, + "max_y": 5241.099971277076, + "center": [ + 2241.004995526973, + 5240.9202691621595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5241.099971277076 + ], + [ + 2242.024136864247, + 5240.740567047243 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720C", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5241.099971277076, + "max_x": 2242.024136864247, + "max_y": 5241.459375506909, + "center": [ + 2241.004995526973, + 5241.279673391993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5241.099971277076 + ], + [ + 2242.024136864247, + 5241.459375506909 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720D", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2242.024136864247, + "min_y": 5240.740567047243, + "max_x": 2242.024136864247, + "max_y": 5241.459375506909, + "center": [ + 2242.024136864247, + 5241.099971277075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2242.024136864247, + 5241.459375506909 + ], + [ + 2242.024136864247, + 5240.740567047243 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5240.921644649993, + "max_x": 2242.024136864247, + "max_y": 5241.099971277076, + "center": [ + 2241.004995526973, + 5241.010807963535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5241.099971277076 + ], + [ + 2242.024136864247, + 5240.921644649993 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55720F", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2239.985854189699, + "min_y": 5241.099971277076, + "max_x": 2242.024136864247, + "max_y": 5241.278297904162, + "center": [ + 2241.004995526973, + 5241.189134590619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.985854189699, + 5241.099971277076 + ], + [ + 2242.024136864247, + 5241.278297904162 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557210", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2293.640567105641, + "min_y": 5305.092428105367, + "max_x": 2293.999971335474, + "max_y": 5307.130710779915, + "center": [ + 2293.8202692205577, + 5306.111569442641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105641, + 5305.092428105367 + ], + [ + 2293.999971335474, + 5307.130710779915 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557211", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2293.281162875808, + "min_y": 5305.092428105367, + "max_x": 2293.640567105641, + "max_y": 5307.130710779915, + "center": [ + 2293.4608649907245, + 5306.111569442641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105641, + 5305.092428105367 + ], + [ + 2293.281162875808, + 5307.130710779915 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557212", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2293.281162875808, + "min_y": 5307.130710779915, + "max_x": 2293.999971335474, + "max_y": 5307.130710779915, + "center": [ + 2293.640567105641, + 5307.130710779915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.281162875808, + 5307.130710779915 + ], + [ + 2293.999971335474, + 5307.130710779915 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557213", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2293.640567105641, + "min_y": 5305.092428105367, + "max_x": 2293.818893732725, + "max_y": 5307.130710779915, + "center": [ + 2293.729730419183, + 5306.111569442641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105641, + 5305.092428105367 + ], + [ + 2293.818893732725, + 5307.130710779915 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557214", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2293.462240478556, + "min_y": 5305.092428105367, + "max_x": 2293.640567105641, + "max_y": 5307.130710779915, + "center": [ + 2293.5514037920984, + 5306.111569442641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.640567105641, + 5305.092428105367 + ], + [ + 2293.462240478556, + 5307.130710779915 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557215", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5299.493021353399, + "max_x": 2353.370879806863, + "max_y": 5301.531304027948, + "center": [ + 2353.1911776919465, + 5300.512162690673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5299.493021353399 + ], + [ + 2353.370879806863, + 5301.531304027948 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557216", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2352.652071347197, + "min_y": 5299.493021353399, + "max_x": 2353.01147557703, + "max_y": 5301.531304027948, + "center": [ + 2352.8317734621132, + 5300.512162690673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5299.493021353399 + ], + [ + 2352.652071347197, + 5301.531304027948 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557217", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2352.652071347197, + "min_y": 5301.531304027948, + "max_x": 2353.370879806863, + "max_y": 5301.531304027948, + "center": [ + 2353.01147557703, + 5301.531304027948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.652071347197, + 5301.531304027948 + ], + [ + 2353.370879806863, + 5301.531304027948 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557218", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2353.01147557703, + "min_y": 5299.493021353399, + "max_x": 2353.189802204115, + "max_y": 5301.531304027948, + "center": [ + 2353.1006388905726, + 5300.512162690673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5299.493021353399 + ], + [ + 2353.189802204115, + 5301.531304027948 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557219", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2352.833148949946, + "min_y": 5299.493021353399, + "max_x": 2353.01147557703, + "max_y": 5301.531304027948, + "center": [ + 2352.922312263488, + 5300.512162690673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5299.493021353399 + ], + [ + 2352.833148949946, + 5301.531304027948 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721A", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2343.93227774124, + "min_y": 5376.589921330205, + "max_x": 2345.970560415789, + "max_y": 5376.949325560038, + "center": [ + 2344.9514190785144, + 5376.769623445121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.93227774124, + 5376.949325560038 + ], + [ + 2345.970560415789, + 5376.589921330205 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721B", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2343.93227774124, + "min_y": 5376.949325560038, + "max_x": 2345.970560415789, + "max_y": 5377.308729789872, + "center": [ + 2344.9514190785144, + 5377.129027674955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.93227774124, + 5376.949325560038 + ], + [ + 2345.970560415789, + 5377.308729789872 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721C", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2345.970560415789, + "min_y": 5376.589921330205, + "max_x": 2345.970560415789, + "max_y": 5377.308729789872, + "center": [ + 2345.970560415789, + 5376.949325560038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2345.970560415789, + 5377.308729789872 + ], + [ + 2345.970560415789, + 5376.589921330205 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721D", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2343.93227774124, + "min_y": 5376.770998932954, + "max_x": 2345.970560415789, + "max_y": 5376.949325560038, + "center": [ + 2344.9514190785144, + 5376.860162246496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.93227774124, + 5376.949325560038 + ], + [ + 2345.970560415789, + 5376.770998932954 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2343.93227774124, + "min_y": 5376.949325560038, + "max_x": 2345.970560415789, + "max_y": 5377.127652187123, + "center": [ + 2344.9514190785144, + 5377.038488873581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2343.93227774124, + 5376.949325560038 + ], + [ + 2345.970560415789, + 5377.127652187123 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55721F", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.870862341539, + "max_x": 2394.70968862537, + "max_y": 5379.230266571372, + "center": [ + 2393.6905472880962, + 5379.0505644564555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862537, + 5378.870862341539 + ], + [ + 2392.671405950822, + 5379.230266571372 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557220", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.511458111706, + "max_x": 2394.70968862537, + "max_y": 5378.870862341539, + "center": [ + 2393.6905472880962, + 5378.691160226623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862537, + 5378.870862341539 + ], + [ + 2392.671405950822, + 5378.511458111706 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557221", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.511458111706, + "max_x": 2392.671405950822, + "max_y": 5379.230266571372, + "center": [ + 2392.671405950822, + 5378.870862341539 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.671405950822, + 5378.511458111706 + ], + [ + 2392.671405950822, + 5379.230266571372 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557222", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.870862341539, + "max_x": 2394.70968862537, + "max_y": 5379.049188968624, + "center": [ + 2393.6905472880962, + 5378.960025655081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862537, + 5378.870862341539 + ], + [ + 2392.671405950822, + 5379.049188968624 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557223", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2392.671405950822, + "min_y": 5378.692535714455, + "max_x": 2394.70968862537, + "max_y": 5378.870862341539, + "center": [ + 2393.6905472880962, + 5378.781699027997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2394.70968862537, + 5378.870862341539 + ], + [ + 2392.671405950822, + 5378.692535714455 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557224", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2341.22250923144, + "min_y": 5363.333030550919, + "max_x": 2341.581913461274, + "max_y": 5365.371313225468, + "center": [ + 2341.402211346357, + 5364.352171888193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.22250923144, + 5363.333030550919 + ], + [ + 2341.581913461274, + 5365.371313225468 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557225", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2340.863105001607, + "min_y": 5363.333030550919, + "max_x": 2341.22250923144, + "max_y": 5365.371313225468, + "center": [ + 2341.0428071165234, + 5364.352171888193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.22250923144, + 5363.333030550919 + ], + [ + 2340.863105001607, + 5365.371313225468 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557226", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2340.863105001607, + "min_y": 5365.371313225468, + "max_x": 2341.581913461274, + "max_y": 5365.371313225468, + "center": [ + 2341.22250923144, + 5365.371313225468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2340.863105001607, + 5365.371313225468 + ], + [ + 2341.581913461274, + 5365.371313225468 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557227", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2341.22250923144, + "min_y": 5363.333030550919, + "max_x": 2341.400835858525, + "max_y": 5365.371313225468, + "center": [ + 2341.3116725449827, + 5364.352171888193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.22250923144, + 5363.333030550919 + ], + [ + 2341.400835858525, + 5365.371313225468 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557228", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2341.044182604356, + "min_y": 5363.333030550919, + "max_x": 2341.22250923144, + "max_y": 5365.371313225468, + "center": [ + 2341.133345917898, + 5364.352171888193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2341.22250923144, + 5363.333030550919 + ], + [ + 2341.044182604356, + 5365.371313225468 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557229", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5163.648285602587, + "max_x": 2511.398898666235, + "max_y": 5163.648285602587, + "center": [ + 2479.771351290383, + 5163.648285602587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5163.648285602587 + ], + [ + 2448.143803914531, + 5163.648285602587 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5174.333093018728, + "max_x": 2511.398898666235, + "max_y": 5174.333093018728, + "center": [ + 2479.771351290383, + 5174.333093018728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5174.333093018728 + ], + [ + 2448.143803914531, + 5174.333093018728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722B", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5152.963478186449, + "max_x": 2511.398898666235, + "max_y": 5152.963478186449, + "center": [ + 2479.771351290383, + 5152.963478186449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5152.963478186449 + ], + [ + 2448.143803914531, + 5152.963478186449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5152.963478186449, + "max_x": 2511.398898666235, + "max_y": 5152.963478186449, + "center": [ + 2479.771351290383, + 5152.963478186449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5152.963478186449 + ], + [ + 2448.143803914531, + 5152.963478186449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5163.648285602587, + "max_x": 2511.398898666235, + "max_y": 5163.648285602587, + "center": [ + 2479.771351290383, + 5163.648285602587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5163.648285602587 + ], + [ + 2448.143803914531, + 5163.648285602587 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5174.333093018728, + "max_x": 2511.398898666235, + "max_y": 5174.333093018728, + "center": [ + 2479.771351290383, + 5174.333093018728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5174.333093018728 + ], + [ + 2448.143803914531, + 5174.333093018728 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55722F", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5142.278670770318, + "max_x": 2511.398898666235, + "max_y": 5142.278670770318, + "center": [ + 2479.771351290383, + 5142.278670770318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5142.278670770318 + ], + [ + 2448.143803914531, + 5142.278670770318 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557230", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2478.539755216433, + "min_y": 5137.498278272065, + "max_x": 2495.9252045715034, + "max_y": 5139.309262579885, + "center": [ + 2487.232479893968, + 5138.403770425975 + ] + }, + "raw_value": "SARF-#10-PID-002", + "clean_value": "SARF-#10-PID-002", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557231", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5142.278670770318, + "max_x": 2511.398898666235, + "max_y": 5142.278670770318, + "center": [ + 2479.771351290383, + 5142.278670770318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5142.278670770318 + ], + [ + 2448.143803914531, + 5142.278670770318 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557232", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5139.077109226135, + "max_x": 2470.535331320506, + "max_y": 5139.077109226135, + "center": [ + 2459.3395676175187, + 5139.077109226135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2448.143803914531, + 5139.077109226135 + ], + [ + 2470.535331320506, + 5139.077109226135 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557233", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2461.382793364842, + "min_y": 5136.918860768942, + "max_x": 2464.3035488564938, + "max_y": 5138.135842223797, + "center": [ + 2462.8431711106678, + 5137.52735149637 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557234", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2461.382793364842, + "min_y": 5136.918860768942, + "max_x": 2464.3035488564938, + "max_y": 5138.135842223797, + "center": [ + 2462.8431711106678, + 5137.52735149637 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557235", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2463.450441498352, + "min_y": 5139.833941800855, + "max_x": 2464.4520762220436, + "max_y": 5141.503333007008, + "center": [ + 2463.951258860198, + 5140.668637403932 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557236", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.591440928211, + "min_y": 5139.887505780061, + "max_x": 2454.7027630386015, + "max_y": 5141.104487234916, + "center": [ + 2452.147101983406, + 5140.495996507489 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557237", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.591440928211, + "min_y": 5139.887505780061, + "max_x": 2454.7027630386015, + "max_y": 5141.104487234916, + "center": [ + 2452.147101983406, + 5140.495996507489 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557238", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2450.117219391995, + "min_y": 5136.944864234503, + "max_x": 2453.7681637565597, + "max_y": 5138.161845689358, + "center": [ + 2451.9426915742774, + 5137.55335496193 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557239", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2450.117219391995, + "min_y": 5136.944864234503, + "max_x": 2453.7681637565597, + "max_y": 5138.161845689358, + "center": [ + 2451.9426915742774, + 5137.55335496193 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55723A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2457.03056262505, + "min_y": 5135.882015483047, + "max_x": 2457.03056262505, + "max_y": 5142.278670770318, + "center": [ + 2457.03056262505, + 5139.080343126683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2457.03056262505, + 5142.278670770318 + ], + [ + 2457.03056262505, + 5135.882015483047 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55723B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2471.983182348405, + "min_y": 5140.249702641623, + "max_x": 2477.0945044587957, + "max_y": 5141.466684096478, + "center": [ + 2474.5388434036004, + 5140.858193369051 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55723C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2471.983182348405, + "min_y": 5140.249702641623, + "max_x": 2477.0945044587957, + "max_y": 5141.466684096478, + "center": [ + 2474.5388434036004, + 5140.858193369051 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55723D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2470.535331320506, + "min_y": 5135.882015483047, + "max_x": 2470.535331320506, + "max_y": 5142.278670770318, + "center": [ + 2470.535331320506, + 5139.080343126683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2470.535331320506, + 5142.278670770318 + ], + [ + 2470.535331320506, + 5135.882015483047 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55723E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5150.732719469253, + "max_x": 2454.3329915459285, + "max_y": 5151.949700924109, + "center": [ + 2451.777330490733, + 5151.341210196681 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55723F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5172.102334301533, + "max_x": 2454.3329915459285, + "max_y": 5173.319315756388, + "center": [ + 2451.777330490733, + 5172.71082502896 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557240", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5182.093936913858, + "max_x": 2457.983935910493, + "max_y": 5183.310918368713, + "center": [ + 2453.6028026730155, + 5182.702427641285 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557241", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2505.377375842739, + "min_y": 5137.279060520518, + "max_x": 2510.346796507351, + "max_y": 5137.279060520518, + "center": [ + 2507.862086175045, + 5137.279060520518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2505.377375842739, + 5137.279060520518 + ], + [ + 2510.346796507351, + 5137.279060520518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557242", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2505.377375842739, + "min_y": 5137.279060520518, + "max_x": 2507.835140260495, + "max_y": 5141.586616052689, + "center": [ + 2506.6062580516173, + 5139.432838286604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2505.377375842739, + 5137.279060520518 + ], + [ + 2507.835140260495, + 5141.586616052689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557243", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2505.377375842739, + "min_y": 5137.279060520518, + "max_x": 2507.835140260495, + "max_y": 5141.586616052689, + "center": [ + 2506.6062580516173, + 5139.432838286604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2505.377375842739, + 5137.279060520518 + ], + [ + 2507.835140260495, + 5141.586616052689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557244", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2504.646514318513, + "min_y": 5135.882015483047, + "max_x": 2504.646514318513, + "max_y": 5142.278670770318, + "center": [ + 2504.646514318513, + 5139.080343126683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2504.646514318513, + 5142.278670770318 + ], + [ + 2504.646514318513, + 5135.882015483047 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557245", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2507.835140260495, + "min_y": 5137.279060520518, + "max_x": 2510.346796507351, + "max_y": 5141.586616052689, + "center": [ + 2509.0909683839227, + 5139.432838286604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2507.835140260495, + 5141.586616052689 + ], + [ + 2510.346796507351, + 5137.279060520518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557246", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5184.125343883149, + "max_x": 2511.398898666235, + "max_y": 5184.125343883149, + "center": [ + 2479.771351290383, + 5184.125343883149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5184.125343883149 + ], + [ + 2448.143803914531, + 5184.125343883149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557247", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5184.125343883149, + "max_x": 2511.398898666235, + "max_y": 5184.125343883149, + "center": [ + 2479.771351290383, + 5184.125343883149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.398898666235, + 5184.125343883149 + ], + [ + 2448.143803914531, + 5184.125343883149 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557248", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2507.237070523745, + "min_y": 5138.087938102849, + "max_x": 2508.4012747216293, + "max_y": 5140.0282784326555, + "center": [ + 2507.819172622687, + 5139.058108267753 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557249", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5135.882015483047, + "max_x": 2448.143803914531, + "max_y": 5184.125343883149, + "center": [ + 2448.143803914531, + 5160.003679683098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2448.143803914531, + 5184.125343883149 + ], + [ + 2448.143803914531, + 5135.882015483047 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55724A", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2466.733843804391, + "min_y": 5177.930946689333, + "max_x": 2490.251352162653, + "max_y": 5180.544003173584, + "center": [ + 2478.492597983522, + 5179.237474931459 + ] + }, + "raw_value": "10th PLANT 증설공사", + "clean_value": "10th PLANT 증설공사", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55724B", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2467.077841245032, + "min_y": 5167.655165870765, + "max_x": 2512.545024071004, + "max_y": 5170.268222355016, + "center": [ + 2489.811432658018, + 5168.961694112891 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557254", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.534265959983, + "min_y": 5170.455094466419, + "max_x": 2461.883925811341, + "max_y": 5170.455094466419, + "center": [ + 2461.709095885662, + 5170.455094466419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.534265959983, + 5170.455094466419 + ], + [ + 2461.883925811341, + 5170.455094466419 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557255", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.584191297804, + "min_y": 5169.274994535845, + "max_x": 2461.883925811341, + "max_y": 5169.274994535845, + "center": [ + 2461.7340585545726, + 5169.274994535845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.274994535845 + ], + [ + 2461.584191297804, + 5169.274994535845 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557256", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.781478069954, + "min_y": 5169.571681652768, + "max_x": 2461.883925811341, + "max_y": 5169.571681652768, + "center": [ + 2461.832701940648, + 5169.571681652768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.571681652768 + ], + [ + 2461.781478069954, + 5169.571681652768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557257", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.187459193002, + "min_y": 5169.067867398506, + "max_x": 2461.544939425989, + "max_y": 5169.067867398506, + "center": [ + 2461.3661993094956, + 5169.067867398506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.544939425989, + 5169.067867398506 + ], + [ + 2461.187459193002, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557258", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.187459193002, + "min_y": 5169.067867398506, + "max_x": 2461.534265959983, + "max_y": 5170.455094466419, + "center": [ + 2461.3608625764923, + 5169.761480932462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.534265959983, + 5170.455094466419 + ], + [ + 2461.187459193002, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557259", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.781478069954, + "min_y": 5169.571681652768, + "max_x": 2461.883925811341, + "max_y": 5169.981472618324, + "center": [ + 2461.832701940648, + 5169.776577135546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.981472618324 + ], + [ + 2461.781478069954, + 5169.571681652768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.544939425989, + "min_y": 5169.067867398506, + "max_x": 2461.584191297804, + "max_y": 5169.274994535845, + "center": [ + 2461.5645653618967, + 5169.171430967175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.584191297804, + 5169.274994535845 + ], + [ + 2461.544939425989, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.883925811341, + "min_y": 5170.455094466419, + "max_x": 2462.2335856627, + "max_y": 5170.455094466419, + "center": [ + 2462.058755737021, + 5170.455094466419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.2335856627, + 5170.455094466419 + ], + [ + 2461.883925811341, + 5170.455094466419 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.883925811341, + "min_y": 5169.274994535845, + "max_x": 2462.183660324882, + "max_y": 5169.274994535845, + "center": [ + 2462.0337930681117, + 5169.274994535845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.274994535845 + ], + [ + 2462.183660324882, + 5169.274994535845 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.883925811341, + "min_y": 5169.571681652768, + "max_x": 2461.986373552731, + "max_y": 5169.571681652768, + "center": [ + 2461.9351496820364, + 5169.571681652768 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.571681652768 + ], + [ + 2461.986373552731, + 5169.571681652768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2462.222912196696, + "min_y": 5169.067867398506, + "max_x": 2462.580392429677, + "max_y": 5169.067867398506, + "center": [ + 2462.401652313187, + 5169.067867398506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.222912196696, + 5169.067867398506 + ], + [ + 2462.580392429677, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55725F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2462.2335856627, + "min_y": 5169.067867398506, + "max_x": 2462.580392429677, + "max_y": 5170.455094466419, + "center": [ + 2462.4069890461888, + 5169.761480932462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.2335856627, + 5170.455094466419 + ], + [ + 2462.580392429677, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557260", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2461.883925811341, + "min_y": 5169.571681652768, + "max_x": 2461.986373552731, + "max_y": 5169.981472618324, + "center": [ + 2461.9351496820364, + 5169.776577135546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.883925811341, + 5169.981472618324 + ], + [ + 2461.986373552731, + 5169.571681652768 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557261", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2462.183660324882, + "min_y": 5169.067867398506, + "max_x": 2462.222912196696, + "max_y": 5169.274994535845, + "center": [ + 2462.2032862607894, + 5169.171430967175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.183660324882, + 5169.274994535845 + ], + [ + 2462.222912196696, + 5169.067867398506 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557262", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2462.034371083869, + "min_y": 5166.581436352014, + "max_x": 2468.959623799635, + "max_y": 5167.69121800634, + "center": [ + 2465.496997441752, + 5167.136327179177 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557263", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2094.355083779731, + "min_y": 5135.882015483047, + "max_x": 2511.398898666235, + "max_y": 5432.883441965493, + "center": [ + 2302.8769912229827, + 5284.38272872427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2094.355083779731, + 5432.883441965493 + ], + [ + 2511.398898666235, + 5432.883441965493 + ], + [ + 2511.398898666235, + 5135.882015483047 + ], + [ + 2094.355083779731, + 5135.882015483047 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557264", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2449.221669435538, + "min_y": 5161.417526885391, + "max_x": 2457.983935910493, + "max_y": 5162.634508340247, + "center": [ + 2453.6028026730155, + 5162.0260176128195 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557265", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2476.673769114484, + "min_y": 5156.51607960038, + "max_x": 2487.539674961403, + "max_y": 5159.103200040123, + "center": [ + 2482.1067220379437, + 5157.8096398202515 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "557268", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2464.12225978127, + "min_y": 5160.910025325025, + "max_x": 2464.741801422495, + "max_y": 5160.910025325025, + "center": [ + 2464.4320306018826, + 5160.910025325025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2464.741801422495, + 5160.910025325025 + ], + [ + 2464.12225978127, + 5160.910025325025 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2461.821105113851, + "min_y": 5160.910025325025, + "max_x": 2462.44064675508, + "max_y": 5160.910025325025, + "center": [ + 2462.1308759344656, + 5160.910025325025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.44064675508, + 5160.910025325025 + ], + [ + 2461.821105113851, + 5160.910025325025 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55726A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2461.821105113851, + "min_y": 5160.024965837555, + "max_x": 2464.741801422495, + "max_y": 5160.024965837555, + "center": [ + 2463.281453268173, + 5160.024965837555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2464.741801422495, + 5160.024965837555 + ], + [ + 2461.821105113851, + 5160.024965837555 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55726B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2462.44064675508, + "min_y": 5160.910025325025, + "max_x": 2462.44064675508, + "max_y": 5161.441061017516, + "center": [ + 2462.44064675508, + 5161.175543171271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2462.44064675508, + 5161.441061017516 + ], + [ + 2462.44064675508, + 5160.910025325025 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55726C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2461.821105113851, + "min_y": 5160.024965837555, + "max_x": 2461.821105113851, + "max_y": 5160.910025325025, + "center": [ + 2461.821105113851, + 5160.46749558129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2461.821105113851, + 5160.910025325025 + ], + [ + 2461.821105113851, + 5160.024965837555 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55726D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2464.12225978127, + "min_y": 5160.910025325025, + "max_x": 2464.12225978127, + "max_y": 5161.441061017516, + "center": [ + 2464.12225978127, + 5161.175543171271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2464.12225978127, + 5161.441061017516 + ], + [ + 2464.12225978127, + 5160.910025325025 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "55726E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2464.741801422495, + "min_y": 5160.024965837555, + "max_x": 2464.741801422495, + "max_y": 5160.910025325025, + "center": [ + 2464.741801422495, + 5160.46749558129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2464.741801422495, + 5160.910025325025 + ], + [ + 2464.741801422495, + 5160.024965837555 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557271", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2462.6619116269444, + "min_y": 5157.336832669736, + "max_x": 2463.9009949093975, + "max_y": 5158.5759159521895, + "center": [ + 2463.281453268171, + 5157.956374310963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2463.281453268171, + 5157.956374310963 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557273", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2465.5167276554266, + "min_y": 5157.3083485070065, + "max_x": 2466.7558109378797, + "max_y": 5158.54743178946, + "center": [ + 2466.136269296653, + 5157.927890148233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2466.136269296653, + 5157.927890148233 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557274", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2465.468731976933, + "min_y": 5158.383649338734, + "max_x": 2465.968448598885, + "max_y": 5158.524269271456, + "center": [ + 2465.718590287909, + 5158.453959305096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.968448598885, + 5158.524269271456 + ], + [ + 2465.468731976933, + 5158.383649338734 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557275", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2463.900838303245, + "min_y": 5157.942445077726, + "max_x": 2465.468731976933, + "max_y": 5158.383649338734, + "center": [ + 2464.684785140089, + 5158.163047208231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2465.468731976933, + 5158.383649338734 + ], + [ + 2463.900838303245, + 5157.942445077726 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557276", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2463.449273965938, + "min_y": 5157.359995187745, + "max_x": 2463.948990587892, + "max_y": 5157.500615120461, + "center": [ + 2463.699132276915, + 5157.430305154103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2463.449273965938, + 5157.359995187745 + ], + [ + 2463.948990587892, + 5157.500615120461 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557277", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2463.948990587892, + "min_y": 5157.500615120461, + "max_x": 2465.516884261575, + "max_y": 5157.941819381477, + "center": [ + 2464.7329374247333, + 5157.721217250969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2463.948990587892, + 5157.500615120461 + ], + [ + 2465.516884261575, + 5157.941819381477 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557278", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2131.772771660668, + "min_y": 5195.646083142797, + "max_x": 2165.36921217247, + "max_y": 5197.446083142797, + "center": [ + 2148.570991916569, + 5196.546083142797 + ] + }, + "raw_value": "\\pi12.40092;{\\W0.9;\\LC-10211\\P\\pi12.20639;\\lCOLUMN}", + "clean_value": "\\pi12.40092; .9; C-10211 \\pi12.20639;\\lCOLUMN", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55727C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2133.316101342914, + "min_y": 5189.796049420471, + "max_x": 2175.328116110578, + "max_y": 5191.596049420471, + "center": [ + 2154.3221087267457, + 5190.69604942047 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C1,000 x 30,614H (24.3m3)\\PDP : 0.19 MPa / OP : 0.009 MPa\\PDT : 200 %%DC / OT : 98 %%DC \\PMATERIAL : STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C1,000 x 30,614H (24.3m3) DP : 0.19 MPa / OP : 0.009 MPa DT : 200 %%DC / OT : 98 %%DC MATERIAL : STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557280", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2169.10076562657, + "min_y": 5195.34032142933, + "max_x": 2202.697206138372, + "max_y": 5197.1403214293305, + "center": [ + 2185.898985882471, + 5196.24032142933 + ] + }, + "raw_value": "\\pi12.32838;{\\W0.9;\\LE-10212\\P\\pi7.36178;\\lTOP CONDENSER}", + "clean_value": "\\pi12.32838; .9; E-10212 \\pi7.36178;\\lTOP CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557284", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2286.824720524368, + "min_y": 5197.351557350092, + "max_x": 2320.42116103617, + "max_y": 5199.151557350092, + "center": [ + 2303.622940780269, + 5198.251557350091 + ] + }, + "raw_value": "\\pi12.32289;{\\W0.9;\\LE-10217\\P\\pi7.0969;SIDE CONDENSER}", + "clean_value": "\\pi12.32289; .9; E-10217 \\pi7.0969;SIDE CONDENSER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557288", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2286.824720524368, + "min_y": 5190.801136369824, + "max_x": 2326.2934683350086, + "max_y": 5192.601136369824, + "center": [ + 2306.5590944296882, + 5191.701136369824 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C497 x 2,978H (0.74m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.1 MPa\\PDT(S/T) : 180 %%DC / 180 %%DC\\POT(S/T) : 15 %%DC / 86 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C497 x 2,978H (0.74m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.1 MPa DT(S/T) : 180 %%DC / 180 %%DC OT(S/T) : 15 %%DC / 86 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55728C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2324.823030372946, + "min_y": 5197.976150682761, + "max_x": 2358.419470884748, + "max_y": 5199.776150682761, + "center": [ + 2341.621250628847, + 5198.876150682761 + ] + }, + "raw_value": "\\pi12.32289;{\\W0.9;\\LE-10219\\P\\pi7.34639;BOTTOM COOLER}", + "clean_value": "\\pi12.32289; .9; E-10219 \\pi7.34639;BOTTOM COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557290", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2327.060099820123, + "min_y": 5191.292889459734, + "max_x": 2365.31710168021, + "max_y": 5193.092889459735, + "center": [ + 2346.188600750166, + 5192.192889459735 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C259.4 x 982H (0.077m3)\\PDP(S/T) : 0.5 MPa / 0.5 MPa\\POP(S/T) : 0.3 MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 35 %%DC / 99 %%DC \\PMATERIAL(S/T) : STS304 / STS304\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C259.4 x 982H (0.077m3) DP(S/T) : 0.5 MPa / 0.5 MPa OP(S/T) : 0.3 MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 35 %%DC / 99 %%DC MATERIAL(S/T) : STS304 / STS304 INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557294", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2202.552815331356, + "min_y": 5195.764199124655, + "max_x": 2236.1492558431582, + "max_y": 5197.564199124655, + "center": [ + 2219.3510355872572, + 5196.664199124654 + ] + }, + "raw_value": "\\pi12.22287;{\\W0.9;\\LD-10213\\P\\pi9.10157;\\lREFLUX DRUM}", + "clean_value": "\\pi12.22287; .9; D-10213 \\pi9.10157;\\lREFLUX DRUM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557298", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2207.389727917043, + "min_y": 5189.648440234981, + "max_x": 2248.4915306283715, + "max_y": 5191.448440234981, + "center": [ + 2227.940629272707, + 5190.548440234981 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 4,306H (2.3m3)\\PDP : 0.3 MPa / OP : 0.01 MPa\\PDT : 180 %%DC / OT : 45 %%DC \\PMATERIAL : STS316L\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C800 x 4,306H (2.3m3) DP : 0.3 MPa / OP : 0.01 MPa DT : 180 %%DC / OT : 45 %%DC MATERIAL : STS316L INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55729C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2171.205511387575, + "min_y": 5189.788577738084, + "max_x": 2220.034137253918, + "max_y": 5191.5885777380845, + "center": [ + 2195.6198243207464, + 5190.688577738085 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C800 x 2,982H (1.4m3)\\PDP(S/T) : 0.7 MPa / 0.3 MPa\\POP(S/T) : 0.3 MPa / 0.01 MPa\\PDT(S/T) : 120 %%DC / 180 %%DC\\POT(S/T) : 25 %%DC / 85 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H50", + "clean_value": ".9;SIZE : %%C800 x 2,982H (1.4m3) DP(S/T) : 0.7 MPa / 0.3 MPa OP(S/T) : 0.3 MPa / 0.01 MPa DT(S/T) : 120 %%DC / 180 %%DC OT(S/T) : 25 %%DC / 85 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572A0", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2244.460274059793, + "min_y": 5196.821974253914, + "max_x": 2278.056714571595, + "max_y": 5198.621974253914, + "center": [ + 2261.258494315694, + 5197.721974253915 + ] + }, + "raw_value": "\\pi12.32179;{\\W0.9;\\LE-10215\\P\\pi11.53817;\\lREBOILER}", + "clean_value": "\\pi12.32179; .9; E-10215 \\pi11.53817;\\lREBOILER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572A4", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2248.919296390885, + "min_y": 5190.575073904445, + "max_x": 2287.2695094779374, + "max_y": 5192.375073904445, + "center": [ + 2268.094402934411, + 5191.475073904445 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C700 x 2,482H (1.4m3)\\PDP(S/T) : 1.0 MPa / 0.3 MPa\\POP(S/T) : 0.45MPa / 0.01 MPa\\PDT(S/T) : 220 %%DC / 220 %%DC\\POT(S/T) : 147 %%DC / 98 %%DC \\PMATERIAL(S/T) :STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C700 x 2,482H (1.4m3) DP(S/T) : 1.0 MPa / 0.3 MPa OP(S/T) : 0.45MPa / 0.01 MPa DT(S/T) : 220 %%DC / 220 %%DC OT(S/T) : 147 %%DC / 98 %%DC MATERIAL(S/T) :STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572A8", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2091.213109986126, + "min_y": 5194.794648547065, + "max_x": 2124.809550497928, + "max_y": 5196.594648547065, + "center": [ + 2108.011330242027, + 5195.694648547065 + ] + }, + "raw_value": "\\pi12.33058;{\\W0.9;\\LE-10203\\P\\pi10.39515;\\lPREHEATER}", + "clean_value": "\\pi12.33058; .9; E-10203 \\pi10.39515;\\lPREHEATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572AC", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2095.817108658918, + "min_y": 5188.931119336428, + "max_x": 2145.5573638526507, + "max_y": 5190.7311193364285, + "center": [ + 2120.6872362557842, + 5189.831119336428 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C208.3 x 1,482H (0.062m3)\\PDP(S/T) : 1.0 MPa / 0.5 MPa\\POP(S/T) : 0.3MPa / 0.3 MPa\\PDT(S/T) : 180 %%DC / 150 %%DC\\POT(S/T) : 140 %%DC / 60 %%DC \\PMATERIAL(S/T) : STS304 / STS316L\\PINSULATION : H100", + "clean_value": ".9;SIZE : %%C208.3 x 1,482H (0.062m3) DP(S/T) : 1.0 MPa / 0.5 MPa OP(S/T) : 0.3MPa / 0.3 MPa DT(S/T) : 180 %%DC / 150 %%DC OT(S/T) : 140 %%DC / 60 %%DC MATERIAL(S/T) : STS304 / STS316L INSULATION : H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5206.528577696377, + "max_x": 2424.567283619953, + "max_y": 5206.528577696377, + "center": [ + 2414.698230000482, + 5206.528577696377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.829176381011, + 5206.528577696377 + ], + [ + 2424.567283619953, + 5206.528577696377 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5203.915521212125, + "max_x": 2424.567283619953, + "max_y": 5203.915521212125, + "center": [ + 2414.698230000482, + 5203.915521212125 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.829176381011, + 5203.915521212125 + ], + [ + 2424.567283619953, + 5203.915521212125 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572B2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2409.312946156699, + "min_y": 5207.275165263306, + "max_x": 2418.2719969598465, + "max_y": 5208.768340397164, + "center": [ + 2413.792471558273, + 5208.021752830235 + ] + }, + "raw_value": "HEAVY ENDS", + "clean_value": "HEAVY ENDS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2405.53043541709, + "min_y": 5204.662108779054, + "max_x": 2408.89007946827, + "max_y": 5205.781990129447, + "center": [ + 2407.21025744268, + 5205.222049454251 + ] + }, + "raw_value": "TEMP.", + "clean_value": "TEMP.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2411.864055685531, + "min_y": 5204.662108779054, + "max_x": 2417.9114149776556, + "max_y": 5205.781990129447, + "center": [ + 2414.8877353315934, + 5205.222049454251 + ] + }, + "raw_value": "20~45%%DC", + "clean_value": "20~45%%DC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2405.394449824543, + "min_y": 5202.049052294803, + "max_x": 2409.426022685959, + "max_y": 5203.168933645196, + "center": [ + 2407.410236255251, + 5202.608992969999 + ] + }, + "raw_value": "PRESS.", + "clean_value": "PRESS.", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2411.728070092983, + "min_y": 5202.049052294803, + "max_x": 2420.463144626052, + "max_y": 5203.168933645196, + "center": [ + 2416.0956073595175, + 5202.608992969999 + ] + }, + "raw_value": "0.1~0.25 MPaG", + "clean_value": "0.1~0.25 MPaG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2410.968618531493, + "min_y": 5201.302464727874, + "max_x": 2410.968618531493, + "max_y": 5206.528577696377, + "center": [ + 2410.968618531493, + 5203.915521212126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2410.968618531493, + 5206.528577696377 + ], + [ + 2410.968618531493, + 5201.302464727874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572B8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2404.829176381011, + "min_y": 5201.302464727874, + "max_x": 2424.567283619953, + "max_y": 5209.514927964093, + "center": [ + 2414.698230000482, + 5205.408696345983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2404.829176381011, + 5201.302464727874 + ], + [ + 2424.567283619953, + 5201.302464727874 + ], + [ + 2424.567283619953, + 5209.514927964093 + ], + [ + 2404.829176381011, + 5209.514927964093 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572B9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2180.136288374308, + "min_y": 5160.528701628647, + "max_x": 2202.533915382176, + "max_y": 5162.328701628647, + "center": [ + 2191.3351018782423, + 5161.428701628647 + ] + }, + "raw_value": "\\pi4.76827;{\\W0.9;\\LF-10202A/B\\P\\pi2.22617;FILTER HOUSING}", + "clean_value": "\\pi4.76827; .9; F-10202A/B \\pi2.22617;FILTER HOUSING", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572BD", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2180.114157797168, + "min_y": 5153.918571598192, + "max_x": 2209.977770658168, + "max_y": 5155.718571598192, + "center": [ + 2195.0459642276683, + 5154.818571598193 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C89.1 x 366 H\\PVOLUME : 0.002M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.99MPa / 0.5MPa\\PDT/ OT : 40}\\H0.999999x;%%DC{\\A0; / AMB\\PMATERIAL : }STS304", + "clean_value": ".9; SIZE : %%C89.1 x 366 H VOLUME : 0.002M .7x; ^ ; .42857x; DP /OP : 0.99MPa / 0.5MPa DT/ OT : 40 .999999x;%%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572C1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2208.811578216539, + "min_y": 5160.663419648956, + "max_x": 2231.209205224407, + "max_y": 5162.463419648956, + "center": [ + 2220.0103917204733, + 5161.5634196489555 + ] + }, + "raw_value": "\\pi5.96074;{\\W0.9;\\LSP-10602\\P\\pi4.85619;SEPERATER}", + "clean_value": "\\pi5.96074; .9; SP-10602 \\pi4.85619;SEPERATER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572C5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2211.293990733262, + "min_y": 5154.275281733205, + "max_x": 2255.0923498173315, + "max_y": 5156.075281733205, + "center": [ + 2233.193170275297, + 5155.175281733205 + ] + }, + "raw_value": "\\W0.9;\\A1;SIZE : %%C 396.4 x 500 H\\PVOLUME : 0.098M\\H0.7x;\\S3^ ;\\H1.42857x;\\A0;\\PDP /OP : 0.18 MPa / 0.009 MPa\\PDT/ OT : 200%%DC / 98%%DC \\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C 396.4 x 500 H VOLUME : 0.098M .7x; ^ ; .42857x; DP /OP : 0.18 MPa / 0.009 MPa DT/ OT : 200%%DC / 98%%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572C9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2448.676162051699, + "min_y": 5184.890367203665, + "max_x": 2450.8536718811247, + "max_y": 5185.797662965926, + "center": [ + 2449.764916966412, + 5185.3440150847955 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2451.682299751707, + "min_y": 5184.125343883149, + "max_x": 2451.682299751857, + "max_y": 5207.491153804078, + "center": [ + 2451.682299751782, + 5195.808248843614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751707, + 5184.125343883149 + ], + [ + 2451.682299751857, + 5207.491153804078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914586, + "min_y": 5187.076999152139, + "max_x": 2511.39889866624, + "max_y": 5187.076999152139, + "center": [ + 2479.771351290413, + 5187.076999152139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5187.076999152139 + ], + [ + 2448.143803914586, + 5187.076999152139 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5187.076999152181, + "max_x": 2451.682299751791, + "max_y": 5190.47935826065, + "center": [ + 2449.9811201975763, + 5188.778178706416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751791, + 5188.778178706395 + ], + [ + 2449.981120197535, + 5190.47935826065 + ], + [ + 2448.279940643362, + 5188.778178706395 + ], + [ + 2449.981120197535, + 5187.076999152181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5190.47935826065, + "max_x": 2451.682299751791, + "max_y": 5193.881717369119, + "center": [ + 2449.9811201975763, + 5192.180537814884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751791, + 5192.180537814905 + ], + [ + 2449.981120197535, + 5193.881717369119 + ], + [ + 2448.279940643362, + 5192.180537814905 + ], + [ + 2449.981120197535, + 5190.47935826065 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5193.881717369119, + "max_x": 2451.682299751791, + "max_y": 5197.28407647759, + "center": [ + 2449.9811201975763, + 5195.582896923354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751791, + 5195.582896923374 + ], + [ + 2449.981120197535, + 5197.28407647759 + ], + [ + 2448.279940643362, + 5195.582896923374 + ], + [ + 2449.981120197535, + 5193.881717369119 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572CF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643362, + "min_y": 5197.28407647759, + "max_x": 2451.682299751791, + "max_y": 5200.686435586099, + "center": [ + 2449.9811201975763, + 5198.985256031845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751791, + 5198.985256031844 + ], + [ + 2449.981120197535, + 5200.686435586099 + ], + [ + 2448.279940643362, + 5198.985256031844 + ], + [ + 2449.981120197535, + 5197.28407647759 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2455.737952262153, + "min_y": 5184.890367203665, + "max_x": 2458.3705149629563, + "max_y": 5185.987268329, + "center": [ + 2457.0542336125545, + 5185.438817766332 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2500.950126335991, + "min_y": 5184.12534388319, + "max_x": 2500.950126336139, + "max_y": 5207.491153802643, + "center": [ + 2500.9501263360653, + 5195.808248842916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.950126335991, + 5184.12534388319 + ], + [ + 2500.950126336139, + 5207.491153802643 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2495.917472134639, + "min_y": 5184.125343883149, + "max_x": 2495.917472134696, + "max_y": 5207.491153802791, + "center": [ + 2495.917472134667, + 5195.80824884297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2495.917472134639, + 5184.125343883149 + ], + [ + 2495.917472134696, + 5207.491153802791 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2496.595294504166, + "min_y": 5184.890367203665, + "max_x": 2499.227857204969, + "max_y": 5185.987268329, + "center": [ + 2497.9115758545677, + 5185.438817766332 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2490.246873620511, + "min_y": 5184.125343883149, + "max_x": 2490.246873620569, + "max_y": 5207.491153802957, + "center": [ + 2490.24687362054, + 5195.808248843054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2490.246873620511, + 5184.125343883149 + ], + [ + 2490.246873620569, + 5207.491153802957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2491.248780996727, + "min_y": 5184.890367203665, + "max_x": 2493.88134369753, + "max_y": 5185.987268329, + "center": [ + 2492.5650623471283, + 5185.438817766332 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2484.576275106381, + "min_y": 5184.125343883149, + "max_x": 2484.576275106529, + "max_y": 5207.49115380312, + "center": [ + 2484.576275106455, + 5195.808248843135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.576275106381, + 5184.125343883149 + ], + [ + 2484.576275106529, + 5207.49115380312 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2485.531172434423, + "min_y": 5184.890367203665, + "max_x": 2488.163735135226, + "max_y": 5185.987268329, + "center": [ + 2486.847453784824, + 5185.438817766332 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2469.387842069888, + "min_y": 5184.890367203665, + "max_x": 2476.627389497097, + "max_y": 5185.987268329, + "center": [ + 2473.0076157834924, + 5185.438817766332 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2463.272348341274, + "min_y": 5184.12534388319, + "max_x": 2463.272348341333, + "max_y": 5207.49115380374, + "center": [ + 2463.2723483413038, + 5195.808248843465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2463.272348341333, + 5207.49115380374 + ], + [ + 2463.272348341274, + 5184.12534388319 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2503.646416574241, + "min_y": 5184.83812711743, + "max_x": 2507.595260625446, + "max_y": 5185.935028242765, + "center": [ + 2505.6208385998434, + 5185.386577680098 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643365, + "min_y": 5200.686435586099, + "max_x": 2451.682299751794, + "max_y": 5204.088794694611, + "center": [ + 2449.9811201975795, + 5202.387615140355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751794, + 5202.387615140356 + ], + [ + 2449.981120197537, + 5204.088794694611 + ], + [ + 2448.279940643365, + 5202.387615140356 + ], + [ + 2449.981120197537, + 5200.686435586099 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2448.279940643414, + "min_y": 5204.088794695088, + "max_x": 2451.682299751843, + "max_y": 5207.4911538036, + "center": [ + 2449.9811201976286, + 5205.789974249345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2451.682299751843, + 5205.789974249344 + ], + [ + 2449.981120197586, + 5207.4911538036 + ], + [ + 2448.279940643414, + 5205.789974249344 + ], + [ + 2449.981120197586, + 5204.088794695088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914536, + "min_y": 5184.125343883252, + "max_x": 2448.143803914685, + "max_y": 5207.491153804181, + "center": [ + 2448.1438039146105, + 5195.808248843716 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2448.143803914536, + 5184.125343883252 + ], + [ + 2448.143803914685, + 5207.491153804181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914576, + "min_y": 5190.47935826065, + "max_x": 2511.39889866624, + "max_y": 5190.47935826065, + "center": [ + 2479.771351290408, + 5190.47935826065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5190.47935826065 + ], + [ + 2448.143803914576, + 5190.47935826065 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914568, + "min_y": 5193.881717369162, + "max_x": 2511.39889866624, + "max_y": 5193.881717369162, + "center": [ + 2479.771351290404, + 5193.881717369162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5193.881717369162 + ], + [ + 2448.143803914568, + 5193.881717369162 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914558, + "min_y": 5197.284076477671, + "max_x": 2511.39889866624, + "max_y": 5197.284076477671, + "center": [ + 2479.771351290399, + 5197.284076477671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5197.284076477671 + ], + [ + 2448.143803914558, + 5197.284076477671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914549, + "min_y": 5200.686435586183, + "max_x": 2511.39889866624, + "max_y": 5200.686435586183, + "center": [ + 2479.7713512903947, + 5200.686435586183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5200.686435586183 + ], + [ + 2448.143803914549, + 5200.686435586183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914541, + "min_y": 5204.088794694694, + "max_x": 2511.39889866624, + "max_y": 5204.088794694694, + "center": [ + 2479.77135129039, + 5204.088794694694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5204.088794694694 + ], + [ + 2448.143803914541, + 5204.088794694694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2448.143803914531, + "min_y": 5207.491153803204, + "max_x": 2511.39889866624, + "max_y": 5207.491153803204, + "center": [ + 2479.7713512903856, + 5207.491153803204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.39889866624, + 5207.491153803204 + ], + [ + 2448.143803914531, + 5207.491153803204 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.935136439401, + "min_y": 5336.124871657686, + "max_x": 2132.935138522629, + "max_y": 5337.169659102308, + "center": [ + 2132.935137481015, + 5336.647265379997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.935138522629, + 5337.169659102308 + ], + [ + 2132.935136439401, + 5336.124871657686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.555316683905, + "min_y": 5336.12487008828, + "max_x": 2135.555318767134, + "max_y": 5337.169657532892, + "center": [ + 2135.5553177255197, + 5336.647263810586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.555318767134, + 5337.169657532892 + ], + [ + 2135.555316683905, + 5336.12487008828 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5572E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2254.772366872077, + "min_y": 5253.235691507461, + "max_x": 2259.733596782822, + "max_y": 5253.235691507461, + "center": [ + 2257.2529818274497, + 5253.235691507461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.733596782822, + 5253.235691507461 + ], + [ + 2254.772366872077, + 5253.235691507461 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5572E7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2291.635448245453, + "min_y": 5274.886003774958, + "max_x": 2291.635448245454, + "max_y": 5289.761142169826, + "center": [ + 2291.6354482454535, + 5282.323572972392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.635448245453, + 5289.761142169826 + ], + [ + 2291.635448245454, + 5274.886003774958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572E8", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2301.270076040137, + "min_y": 5254.566191195072, + "max_x": 2307.2427765755688, + "max_y": 5260.538891730503, + "center": [ + 2304.256426307853, + 5257.552541462787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.256426307853, + 5257.552541462787 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572E9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.655464120702, + "min_y": 5258.076318289057, + "max_x": 2305.2669106705625, + "max_y": 5259.419190413941, + "center": [ + 2304.4611873956324, + 5258.747754351499 + ] + }, + "raw_value": "FI", + "clean_value": "FI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572EA", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.212852119809, + "min_y": 5255.687238074885, + "max_x": 2306.2414684944606, + "max_y": 5257.030110199768, + "center": [ + 2304.227160307135, + 5256.3586741373265 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572EB", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.953553808892, + "min_y": 5257.552541462789, + "max_x": 2309.511357310984, + "max_y": 5260.009785074376, + "center": [ + 2307.732455559938, + 5258.7811632685825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.511357310984, + 5257.552541462789 + ], + [ + 2305.953553808892, + 5260.009785074376 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572EC", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.953553808892, + "min_y": 5255.095297851202, + "max_x": 2309.511357310984, + "max_y": 5257.552541462789, + "center": [ + 2307.732455559938, + 5256.323919656996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.511357310984, + 5257.552541462789 + ], + [ + 2305.953553808892, + 5255.095297851202 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572ED", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2315.021197458115, + "min_y": 5257.552541462787, + "max_x": 2333.389040835131, + "max_y": 5257.552541462789, + "center": [ + 2324.2051191466226, + 5257.552541462788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.021197458115, + 5257.552541462789 + ], + [ + 2333.389040835131, + 5257.552541462787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5572EE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2302.167360934382, + "min_y": 5252.524337795242, + "max_x": 2312.246293087923, + "max_y": 5253.644219145635, + "center": [ + 2307.206827011152, + 5253.084278470438 + ] + }, + "raw_value": "BALL FLOW METER", + "clean_value": "BALL FLOW METER", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5572EF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2335.138920958542, + "min_y": 5391.426456370563, + "max_x": 2338.2738912080163, + "max_y": 5392.732693974511, + "center": [ + 2336.706406083279, + 5392.079575172536 + ] + }, + "raw_value": "PICA", + "clean_value": "PICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F0", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.9939385500434, + "min_y": 5387.9267649729045, + "max_x": 2339.7180673396983, + "max_y": 5393.65089376256, + "center": [ + 2336.856002944871, + 5390.788829367732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5390.788829367732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F1", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5393.703079971887, + "max_x": 2336.856002944871, + "max_y": 5393.703079971887, + "center": [ + 2335.3988776427955, + 5393.703079971887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5393.703079971887 + ], + [ + 2333.94175234072, + 5393.703079971887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F2", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5390.788829367732, + "max_x": 2333.94175234072, + "max_y": 5393.703079971887, + "center": [ + 2333.94175234072, + 5392.24595466981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.94175234072, + 5390.788829367732 + ], + [ + 2333.94175234072, + 5393.703079971887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F3", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2336.856002944871, + "min_y": 5393.703079971887, + "max_x": 2339.770253549026, + "max_y": 5393.703079971887, + "center": [ + 2338.3131282469485, + 5393.703079971887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5393.703079971887 + ], + [ + 2339.770253549026, + 5393.703079971887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F4", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2339.770253549026, + "min_y": 5390.788829367732, + "max_x": 2339.770253549026, + "max_y": 5393.703079971887, + "center": [ + 2339.770253549026, + 5392.24595466981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.770253549026, + 5390.788829367732 + ], + [ + 2339.770253549026, + 5393.703079971887 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F5", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5387.874578763568, + "max_x": 2336.856002944871, + "max_y": 5387.874578763574, + "center": [ + 2335.3988776427955, + 5387.874578763571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5387.874578763568 + ], + [ + 2333.94175234072, + 5387.874578763574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F6", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5387.874578763574, + "max_x": 2333.94175234072, + "max_y": 5390.788829367723, + "center": [ + 2333.94175234072, + 5389.331704065649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2333.94175234072, + 5390.788829367723 + ], + [ + 2333.94175234072, + 5387.874578763574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F7", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2336.856002944871, + "min_y": 5387.874578763568, + "max_x": 2339.770253549026, + "max_y": 5387.874578763574, + "center": [ + 2338.3131282469485, + 5387.874578763571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5387.874578763568 + ], + [ + 2339.770253549026, + 5387.874578763574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F8", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2339.770253549026, + "min_y": 5387.874578763574, + "max_x": 2339.770253549026, + "max_y": 5390.788829367723, + "center": [ + 2339.770253549026, + 5389.331704065649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.770253549026, + 5390.788829367723 + ], + [ + 2339.770253549026, + 5387.874578763574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572F9", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2334.194053987726, + "min_y": 5389.107019772653, + "max_x": 2338.896509361937, + "max_y": 5390.413257376601, + "center": [ + 2336.5452816748316, + 5389.7601385746275 + ] + }, + "raw_value": "10211A", + "clean_value": "10211A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FA", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2333.94175234072, + "min_y": 5390.788829367723, + "max_x": 2339.770253549026, + "max_y": 5390.788829367732, + "center": [ + 2336.856002944873, + 5390.788829367728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2339.770253549026, + 5390.788829367723 + ], + [ + 2333.94175234072, + 5390.788829367732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FB", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5391.045147334729, + "max_x": 2282.057936384658, + "max_y": 5395.746750474568, + "center": [ + 2282.057936384658, + 5393.395948904648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5391.045147334729 + ], + [ + 2282.057936384658, + 5395.746750474568 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FC", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2336.856002944871, + "min_y": 5393.65089376256, + "max_x": 2336.856002944871, + "max_y": 5395.746750474568, + "center": [ + 2336.856002944871, + 5394.698822118564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.856002944871, + 5393.65089376256 + ], + [ + 2336.856002944871, + 5395.746750474568 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FD", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2282.057936384658, + "min_y": 5395.746750474568, + "max_x": 2336.856002944871, + "max_y": 5395.746750474568, + "center": [ + 2309.4569696647645, + 5395.746750474568 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2282.057936384658, + 5395.746750474568 + ], + [ + 2336.856002944871, + 5395.746750474568 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2410.220722402667, + "min_y": 5370.050933489915, + "max_x": 2414.923177776878, + "max_y": 5371.357171093863, + "center": [ + 2412.5719500897726, + 5370.704052291889 + ] + }, + "raw_value": "10217A", + "clean_value": "10217A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5572FF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2411.818446927936, + "min_y": 5372.365439337949, + "max_x": 2413.385932052673, + "max_y": 5373.671676941897, + "center": [ + 2412.602189490304, + 5373.018558139924 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557300", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2410.0206069649844, + "min_y": 5368.868360415493, + "max_x": 2415.7447357546394, + "max_y": 5374.592489205149, + "center": [ + 2412.882671359812, + 5371.730424810321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.882671359812, + 5371.730424810321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557301", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2385.799445827324, + "min_y": 5355.081522122803, + "max_x": 2388.9344160767982, + "max_y": 5356.387759726751, + "center": [ + 2387.366930952061, + 5355.734640924777 + ] + }, + "raw_value": "LICA", + "clean_value": "LICA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557302", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.5834040931713, + "min_y": 5351.581830725142, + "max_x": 2390.3075328828263, + "max_y": 5357.305959514798, + "center": [ + 2387.445468487999, + 5354.44389511997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5354.44389511997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557303", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5357.358145724126, + "max_x": 2387.445468487999, + "max_y": 5357.358145724126, + "center": [ + 2385.9883431859234, + 5357.358145724126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5357.358145724126 + ], + [ + 2384.531217883848, + 5357.358145724126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557304", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5354.44389511997, + "max_x": 2384.531217883848, + "max_y": 5357.358145724126, + "center": [ + 2384.531217883848, + 5355.9010204220485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.531217883848, + 5354.44389511997 + ], + [ + 2384.531217883848, + 5357.358145724126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557305", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2387.445468487999, + "min_y": 5357.358145724126, + "max_x": 2390.359719092153, + "max_y": 5357.358145724126, + "center": [ + 2388.902593790076, + 5357.358145724126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5357.358145724126 + ], + [ + 2390.359719092153, + 5357.358145724126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557306", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2390.359719092153, + "min_y": 5354.44389511997, + "max_x": 2390.359719092153, + "max_y": 5357.358145724126, + "center": [ + 2390.359719092153, + 5355.9010204220485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.359719092153, + 5354.44389511997 + ], + [ + 2390.359719092153, + 5357.358145724126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557307", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5351.529644515807, + "max_x": 2387.445468487999, + "max_y": 5351.529644515812, + "center": [ + 2385.9883431859234, + 5351.529644515809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5351.529644515807 + ], + [ + 2384.531217883848, + 5351.529644515812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557308", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5351.529644515812, + "max_x": 2384.531217883848, + "max_y": 5354.443895119961, + "center": [ + 2384.531217883848, + 5352.986769817886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.531217883848, + 5354.443895119961 + ], + [ + 2384.531217883848, + 5351.529644515812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557309", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2387.445468487999, + "min_y": 5351.529644515807, + "max_x": 2390.359719092153, + "max_y": 5351.529644515812, + "center": [ + 2388.902593790076, + 5351.529644515809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5351.529644515807 + ], + [ + 2390.359719092153, + 5351.529644515812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2390.359719092153, + "min_y": 5351.529644515812, + "max_x": 2390.359719092153, + "max_y": 5354.443895119961, + "center": [ + 2390.359719092153, + 5352.986769817886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.359719092153, + 5354.443895119961 + ], + [ + 2390.359719092153, + 5351.529644515812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2385.27205239473, + "min_y": 5352.760126168488, + "max_x": 2389.190765206573, + "max_y": 5354.066363772436, + "center": [ + 2387.2314088006515, + 5353.413244970461 + ] + }, + "raw_value": "10213", + "clean_value": "10213", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2390.307532882827, + "min_y": 5354.443895119961, + "max_x": 2390.359719092153, + "max_y": 5354.443895119963, + "center": [ + 2390.33362598749, + 5354.443895119962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2390.359719092153, + 5354.443895119961 + ], + [ + 2390.307532882827, + 5354.443895119963 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.531217883848, + "min_y": 5354.44389511997, + "max_x": 2384.583404093171, + "max_y": 5354.44389511997, + "center": [ + 2384.5573109885095, + 5354.44389511997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.583404093171, + 5354.44389511997 + ], + [ + 2384.531217883848, + 5354.44389511997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2384.583404093171, + "min_y": 5354.443895119963, + "max_x": 2390.307532882827, + "max_y": 5354.44389511997, + "center": [ + 2387.4454684879993, + 5354.443895119966 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2384.583404093171, + 5354.44389511997 + ], + [ + 2390.307532882827, + 5354.443895119963 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55730F", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2384.984441298545, + "min_y": 5336.162350492564, + "max_x": 2389.699613587397, + "max_y": 5336.162350492568, + "center": [ + 2387.342027442971, + 5336.1623504925665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2389.699613587397, + 5336.162350492564 + ], + [ + 2384.984441298545, + 5336.162350492568 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557310", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2377.000466969933, + "min_y": 5340.101534185756, + "max_x": 2378.086739457692, + "max_y": 5340.101534185756, + "center": [ + 2377.5436032138123, + 5340.101534185756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.086739457692, + 5340.101534185756 + ], + [ + 2377.000466969933, + 5340.101534185756 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557311", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2387.445468487999, + "min_y": 5357.358145724126, + "max_x": 2387.445468488001, + "max_y": 5366.250820781871, + "center": [ + 2387.445468488, + 5361.804483252999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2387.445468487999, + 5357.358145724126 + ], + [ + 2387.445468488001, + 5366.250820781871 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557312", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2332.550945923403, + "min_y": 5316.8910568113, + "max_x": 2340.24717178546, + "max_y": 5316.8910568113, + "center": [ + 2336.3990588544316, + 5316.8910568113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2332.550945923403, + 5316.8910568113 + ], + [ + 2340.24717178546, + 5316.8910568113 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557313", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2311.203931454798, + "min_y": 5231.141723949083, + "max_x": 2314.502662918148, + "max_y": 5231.141723949083, + "center": [ + 2312.853297186473, + 5231.141723949083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.203931454798, + 5231.141723949083 + ], + [ + 2314.502662918148, + 5231.141723949083 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557314", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2163.294600824066, + "min_y": 5266.908576014319, + "max_x": 2164.8620859488033, + "max_y": 5268.214813618267, + "center": [ + 2164.0783433864344, + 5267.561694816293 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557315", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2162.1512479519156, + "min_y": 5264.423437136935, + "max_x": 2166.5837426485846, + "max_y": 5268.855931833603, + "center": [ + 2164.36749530025, + 5266.639684485269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2164.36749530025, + 5266.639684485269 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557316", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2162.833319234414, + "min_y": 5265.062817625278, + "max_x": 2166.7520320462568, + "max_y": 5266.3690552292255, + "center": [ + 2164.7926756403353, + 5265.715936427252 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557317", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328812, + "min_y": 5273.890104793739, + "max_x": 2156.474004328812, + "max_y": 5276.146762675205, + "center": [ + 2156.474004328812, + 5275.018433734472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.474004328812, + 5273.890104793739 + ], + [ + 2156.474004328812, + 5276.146762675205 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557318", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5271.633446912275, + "max_x": 2156.474004328805, + "max_y": 5273.890104793736, + "center": [ + 2156.474004328805, + 5272.761775853005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2156.474004328805, + 5273.890104793736 + ], + [ + 2156.474004328805, + 5271.633446912275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557319", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2176.267470384576, + "min_y": 5280.176625827162, + "max_x": 2188.132027179632, + "max_y": 5281.716462683953, + "center": [ + 2182.199748782104, + 5280.9465442555575 + ] + }, + "raw_value": "\\pi0.82833;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10201}", + "clean_value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55731D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2274.986366867339, + "min_y": 5243.190106671126, + "max_x": 2277.3375945544444, + "max_y": 5244.496344275074, + "center": [ + 2276.161980710892, + 5243.8432254731 + ] + }, + "raw_value": "LIA", + "clean_value": "LIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55731E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5245.81833281891, + "max_x": 2276.143678267783, + "max_y": 5245.818332818917, + "center": [ + 2274.6890871896194, + 5245.818332818913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.143678267783, + 5245.818332818917 + ], + [ + 2273.234496111456, + 5245.81833281891 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55731F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5242.909150662593, + "max_x": 2273.234496111456, + "max_y": 5245.81833281891, + "center": [ + 2273.234496111456, + 5244.363741740752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.234496111456, + 5242.909150662593 + ], + [ + 2273.234496111456, + 5245.81833281891 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557320", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2276.143678267783, + "min_y": 5245.81833281891, + "max_x": 2279.052860424112, + "max_y": 5245.818332818917, + "center": [ + 2277.5982693459473, + 5245.818332818913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.143678267783, + 5245.818332818917 + ], + [ + 2279.052860424112, + 5245.81833281891 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557321", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5239.999968506257, + "max_x": 2276.143678267783, + "max_y": 5239.999968506261, + "center": [ + 2274.6890871896194, + 5239.999968506259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.143678267783, + 5239.999968506257 + ], + [ + 2273.234496111456, + 5239.999968506261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557322", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.234496111456, + "min_y": 5239.999968506261, + "max_x": 2273.234496111456, + "max_y": 5242.909150662583, + "center": [ + 2273.234496111456, + 5241.454559584422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.234496111456, + 5242.909150662583 + ], + [ + 2273.234496111456, + 5239.999968506261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557323", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2276.143678267783, + "min_y": 5239.999968506257, + "max_x": 2279.052860424112, + "max_y": 5239.999968506261, + "center": [ + 2277.5982693459473, + 5239.999968506259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.143678267783, + 5239.999968506257 + ], + [ + 2279.052860424112, + 5239.999968506261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557324", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.2344961114622, + "min_y": 5239.999968506272, + "max_x": 2279.0528604241035, + "max_y": 5245.818332818913, + "center": [ + 2276.143678267783, + 5242.909150662593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.143678267783, + 5242.909150662593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557325", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.970262174521, + "min_y": 5241.01442582937, + "max_x": 2277.888974986364, + "max_y": 5242.320663433318, + "center": [ + 2275.9296185804424, + 5241.667544631344 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557326", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.052860424112, + "min_y": 5242.909150662593, + "max_x": 2279.052860424112, + "max_y": 5245.81833281891, + "center": [ + 2279.052860424112, + 5244.363741740752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.052860424112, + 5242.909150662593 + ], + [ + 2279.052860424112, + 5245.81833281891 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557327", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2279.052860424112, + "min_y": 5239.999968506261, + "max_x": 2279.052860424112, + "max_y": 5242.909150662583, + "center": [ + 2279.052860424112, + 5241.454559584422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.052860424112, + 5242.909150662583 + ], + [ + 2279.052860424112, + 5239.999968506261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557328", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2273.234496111464, + "min_y": 5242.909150662583, + "max_x": 2279.052860424112, + "max_y": 5242.909150662593, + "center": [ + 2276.1436782677883, + 5242.909150662588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2273.234496111464, + 5242.909150662593 + ], + [ + 2279.052860424112, + 5242.909150662583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557329", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2279.052860424105, + "min_y": 5242.909150662593, + "max_x": 2281.219483133599, + "max_y": 5242.909150662593, + "center": [ + 2280.1361717788523, + 5242.909150662593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.052860424105, + 5242.909150662593 + ], + [ + 2281.219483133599, + 5242.909150662593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55732A", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2281.219483133599, + "min_y": 5242.909150662593, + "max_x": 2281.219483133599, + "max_y": 5254.768312374864, + "center": [ + 2281.219483133599, + 5248.838731518728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.219483133599, + 5242.909150662593 + ], + [ + 2281.219483133599, + 5254.768312374864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55732B", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2279.389295027567, + "min_y": 5254.768312374864, + "max_x": 2281.219483133599, + "max_y": 5254.768312374864, + "center": [ + 2280.304389080583, + 5254.768312374864 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2279.389295027567, + 5254.768312374864 + ], + [ + 2281.219483133599, + 5254.768312374864 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55732C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2401.547416616619, + "min_y": 5169.960734256733, + "max_x": 2407.593432051123, + "max_y": 5170.968403495817, + "center": [ + 2404.570424333871, + 5170.464568876276 + ] + }, + "raw_value": "PSV-10219B", + "clean_value": "PSV-10219B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55732D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2402.687871475708, + "min_y": 5168.328910326868, + "max_x": 2406.9200822798607, + "max_y": 5169.336579565952, + "center": [ + 2404.8039768777844, + 5168.8327449464105 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55732E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2401.913206984437, + "min_y": 5166.796211348207, + "max_x": 2407.9592224189405, + "max_y": 5167.803880587291, + "center": [ + 2404.9362147016886, + 5167.30004596775 + ] + }, + "raw_value": "SP: 0.4MPa", + "clean_value": "SP: 0.4MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55732F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2417.21290627094, + "min_y": 5251.638588134858, + "max_x": 2422.725223947061, + "max_y": 5252.473787782755, + "center": [ + 2419.9690651090004, + 5252.056187958806 + ] + }, + "raw_value": "T10221BA-07", + "clean_value": "T10221BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557330", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2413.51618956434, + "min_y": 5258.30786585248, + "max_x": 2413.51618956434, + "max_y": 5268.89717979988, + "center": [ + 2413.51618956434, + 5263.602522826181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.51618956434, + 5258.30786585248 + ], + [ + 2413.51618956434, + 5268.89717979988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557331", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2401.310241594277, + "min_y": 5245.63689844373, + "max_x": 2403.567401453677, + "max_y": 5245.63689844373, + "center": [ + 2402.438821523977, + 5245.63689844373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.310241594277, + 5245.63689844373 + ], + [ + 2403.567401453677, + 5245.63689844373 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557332", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2403.567401453677, + "min_y": 5243.37973858433, + "max_x": 2403.567401453677, + "max_y": 5245.63689844373, + "center": [ + 2403.567401453677, + 5244.50831851403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.567401453677, + 5243.37973858433 + ], + [ + 2403.567401453677, + 5245.63689844373 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557333", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5245.63689844373, + "max_x": 2401.310241594277, + "max_y": 5245.63689844373, + "center": [ + 2400.181661664579, + 5245.63689844373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.310241594277, + 5245.63689844373 + ], + [ + 2399.053081734881, + 5245.63689844373 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557334", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5243.37973858433, + "max_x": 2399.053081734881, + "max_y": 5245.63689844373, + "center": [ + 2399.053081734881, + 5244.50831851403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.053081734881, + 5243.37973858433 + ], + [ + 2399.053081734881, + 5245.63689844373 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557335", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2403.567401453677, + "min_y": 5241.12257872493, + "max_x": 2403.567401453677, + "max_y": 5243.379738584326, + "center": [ + 2403.567401453677, + 5242.251158654628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.567401453677, + 5243.379738584326 + ], + [ + 2403.567401453677, + 5241.12257872493 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557336", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5241.12257872493, + "max_x": 2403.567401453677, + "max_y": 5241.12257872493, + "center": [ + 2401.310241594279, + 5241.12257872493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.567401453677, + 5241.12257872493 + ], + [ + 2399.053081734881, + 5241.12257872493 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557337", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5241.12257872493, + "max_x": 2399.053081734881, + "max_y": 5243.379738584326, + "center": [ + 2399.053081734881, + 5242.251158654628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2399.053081734881, + 5243.379738584326 + ], + [ + 2399.053081734881, + 5241.12257872493 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557338", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734884, + "min_y": 5241.122578724937, + "max_x": 2403.5674014536703, + "max_y": 5245.636898443723, + "center": [ + 2401.310241594277, + 5243.37973858433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2401.310241594277, + 5243.37973858433 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557339", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2403.56740145368, + "min_y": 5241.122578724937, + "max_x": 2408.081721172466, + "max_y": 5245.636898443723, + "center": [ + 2405.824561313073, + 5243.37973858433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.824561313073, + 5243.37973858433 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2404.931252675192, + "min_y": 5243.452542345699, + "max_x": 2406.499086476152, + "max_y": 5244.759070513166, + "center": [ + 2405.715169575672, + 5244.105806429432 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2404.279170600338, + "min_y": 5241.766683995447, + "max_x": 2408.1978840839606, + "max_y": 5243.072921823321, + "center": [ + 2406.2385273421496, + 5242.419802909384 + ] + }, + "raw_value": "10221", + "clean_value": "10221", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2400.653479881116, + "min_y": 5243.825836129158, + "max_x": 2402.221313682076, + "max_y": 5245.132364296625, + "center": [ + 2401.437396781596, + 5244.479100212891 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.053081734881, + "min_y": 5243.379738584326, + "max_x": 2403.567401453677, + "max_y": 5243.37973858433, + "center": [ + 2401.310241594279, + 5243.379738584328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.567401453677, + 5243.37973858433 + ], + [ + 2399.053081734881, + 5243.379738584326 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2399.764850881541, + "min_y": 5241.766683995442, + "max_x": 2403.6835643651634, + "max_y": 5243.0729218233155, + "center": [ + 2401.7242076233524, + 5242.419802909379 + ] + }, + "raw_value": "10221", + "clean_value": "10221", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55733F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5239.917133512981, + "max_x": 2410.289589728159, + "max_y": 5239.917133512981, + "center": [ + 2408.0570755206163, + 5239.917133512981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.824561313073, + 5239.917133512981 + ], + [ + 2410.289589728159, + 5239.917133512981 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557340", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.169104095761, + "min_y": 5239.543428131509, + "max_x": 2407.91651485871, + "max_y": 5240.290838894452, + "center": [ + 2407.5428094772356, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.169104095761, + 5240.290838894452 + ], + [ + 2407.91651485871, + 5239.543428131509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557341", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.169104095761, + "min_y": 5239.543428131509, + "max_x": 2407.91651485871, + "max_y": 5240.290838894452, + "center": [ + 2407.5428094772356, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.169104095761, + 5239.543428131509 + ], + [ + 2407.91651485871, + 5240.290838894452 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557342", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2409.201764500712, + "min_y": 5239.543428131509, + "max_x": 2409.949175263661, + "max_y": 5240.290838894452, + "center": [ + 2409.5754698821866, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.201764500712, + 5240.290838894452 + ], + [ + 2409.949175263661, + 5239.543428131509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557343", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2409.201764500712, + "min_y": 5239.543428131509, + "max_x": 2409.949175263661, + "max_y": 5240.290838894452, + "center": [ + 2409.5754698821866, + 5239.91713351298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.201764500712, + 5239.543428131509 + ], + [ + 2409.949175263661, + 5240.290838894452 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557344", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5246.842343655678, + "max_x": 2410.289589728159, + "max_y": 5246.842343655678, + "center": [ + 2408.0570755206163, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.824561313073, + 5246.842343655678 + ], + [ + 2410.289589728159, + 5246.842343655678 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557345", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.169104095761, + "min_y": 5246.468638274206, + "max_x": 2407.91651485871, + "max_y": 5247.21604903715, + "center": [ + 2407.5428094772356, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.169104095761, + 5247.21604903715 + ], + [ + 2407.91651485871, + 5246.468638274206 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557346", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2407.169104095761, + "min_y": 5246.468638274206, + "max_x": 2407.91651485871, + "max_y": 5247.21604903715, + "center": [ + 2407.5428094772356, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2407.169104095761, + 5246.468638274206 + ], + [ + 2407.91651485871, + 5247.21604903715 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557347", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2409.201764500712, + "min_y": 5246.468638274206, + "max_x": 2409.949175263661, + "max_y": 5247.21604903715, + "center": [ + 2409.5754698821866, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.201764500712, + 5247.21604903715 + ], + [ + 2409.949175263661, + 5246.468638274206 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557348", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2409.201764500712, + "min_y": 5246.468638274206, + "max_x": 2409.949175263661, + "max_y": 5247.21604903715, + "center": [ + 2409.5754698821866, + 5246.842343655678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2409.201764500712, + 5246.468638274206 + ], + [ + 2409.949175263661, + 5247.21604903715 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557349", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5239.917133512981, + "max_x": 2405.824561313073, + "max_y": 5241.122578724936, + "center": [ + 2405.824561313073, + 5240.519856118959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.824561313073, + 5241.122578724936 + ], + [ + 2405.824561313073, + 5239.917133512981 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55734A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2405.824561313073, + "min_y": 5245.636898443724, + "max_x": 2405.824561313073, + "max_y": 5246.842343655679, + "center": [ + 2405.824561313073, + 5246.239621049701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2405.824561313073, + 5246.842343655679 + ], + [ + 2405.824561313073, + 5245.636898443724 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55734B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2478.262149346839, + "min_y": 5287.332233354494, + "max_x": 2485.6533662594356, + "max_y": 5288.452114704887, + "center": [ + 2481.9577578031376, + 5287.89217402969 + ] + }, + "raw_value": "T10200BA-05", + "clean_value": "T10200BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55734C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2483.980569532676, + "min_y": 5287.279041352373, + "max_x": 2491.3717864452724, + "max_y": 5288.398922702766, + "center": [ + 2487.676177988974, + 5287.83898202757 + ] + }, + "raw_value": "T10200BA-04", + "clean_value": "T10200BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55734D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2501.140741674974, + "min_y": 5300.358142654418, + "max_x": 2502.708575475934, + "max_y": 5301.664670821885, + "center": [ + 2501.924658575454, + 5301.011406738151 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55734E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5302.542498752454, + "max_x": 2501.797503388139, + "max_y": 5302.542498752454, + "center": [ + 2500.668923458439, + 5302.542498752454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.797503388139, + 5302.542498752454 + ], + [ + 2499.540343528739, + 5302.542498752454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55734F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5300.285338893053, + "max_x": 2499.540343528739, + "max_y": 5302.542498752454, + "center": [ + 2499.540343528739, + 5301.413918822754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.540343528739, + 5300.285338893053 + ], + [ + 2499.540343528739, + 5302.542498752454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557350", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2501.797503388139, + "min_y": 5302.542498752454, + "max_x": 2504.054663247536, + "max_y": 5302.542498752454, + "center": [ + 2502.9260833178378, + 5302.542498752454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.797503388139, + 5302.542498752454 + ], + [ + 2504.054663247536, + 5302.542498752454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557351", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2504.054663247536, + "min_y": 5300.285338893053, + "max_x": 2504.054663247536, + "max_y": 5302.542498752454, + "center": [ + 2504.054663247536, + 5301.413918822754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2504.054663247536, + 5300.285338893053 + ], + [ + 2504.054663247536, + 5302.542498752454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557352", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5298.028179033654, + "max_x": 2499.540343528739, + "max_y": 5300.285338893049, + "center": [ + 2499.540343528739, + 5299.156758963351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.540343528739, + 5300.285338893049 + ], + [ + 2499.540343528739, + 5298.028179033654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557353", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5298.028179033654, + "max_x": 2504.054663247536, + "max_y": 5298.028179033654, + "center": [ + 2501.7975033881376, + 5298.028179033654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.540343528739, + 5298.028179033654 + ], + [ + 2504.054663247536, + 5298.028179033654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557354", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2504.054663247536, + "min_y": 5298.028179033654, + "max_x": 2504.054663247536, + "max_y": 5300.285338893049, + "center": [ + 2504.054663247536, + 5299.156758963351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2504.054663247536, + 5300.285338893049 + ], + [ + 2504.054663247536, + 5298.028179033654 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557355", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528739, + "min_y": 5300.285338893049, + "max_x": 2504.054663247536, + "max_y": 5300.285338893053, + "center": [ + 2501.7975033881376, + 5300.285338893051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2504.054663247536, + 5300.285338893053 + ], + [ + 2499.540343528739, + 5300.285338893049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557356", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2499.540343528746, + "min_y": 5298.02817903366, + "max_x": 2504.054663247532, + "max_y": 5302.542498752447, + "center": [ + 2501.797503388139, + 5300.285338893053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.797503388139, + 5300.285338893053 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557357", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2500.2521126754, + "min_y": 5298.672284304165, + "max_x": 2504.1708261590225, + "max_y": 5299.978522132039, + "center": [ + 2502.2114694172114, + 5299.325403218102 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557358", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2496.389875031462, + "min_y": 5300.358142654418, + "max_x": 2497.957708832422, + "max_y": 5301.664670821885, + "center": [ + 2497.173791931942, + 5301.011406738151 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557359", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2495.026023809951, + "min_y": 5298.02817903366, + "max_x": 2499.540343528737, + "max_y": 5302.542498752447, + "center": [ + 2497.283183669344, + 5300.285338893053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.283183669344, + 5300.285338893053 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55735A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2495.737792956608, + "min_y": 5298.672284304165, + "max_x": 2499.6565064402303, + "max_y": 5299.978522132039, + "center": [ + 2497.697149698419, + 5299.325403218102 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55735B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.283183669344, + "min_y": 5302.542498752447, + "max_x": 2497.283183669344, + "max_y": 5303.748060349429, + "center": [ + 2497.283183669344, + 5303.145279550938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.283183669344, + 5303.748060349429 + ], + [ + 2497.283183669344, + 5302.542498752447 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55735C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.302058827182, + "min_y": 5303.748060349429, + "max_x": 2497.283183669344, + "max_y": 5303.748060349429, + "center": [ + 2494.292621248263, + 5303.748060349429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.302058827182, + 5303.748060349429 + ], + [ + 2497.283183669344, + 5303.748060349429 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55735D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5303.374354967949, + "max_x": 2492.819157718176, + "max_y": 5304.121765730893, + "center": [ + 2492.4454523367012, + 5303.7480603494205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.071746955227, + 5304.121765730893 + ], + [ + 2492.819157718176, + 5303.374354967949 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55735E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5303.374354967949, + "max_x": 2492.819157718176, + "max_y": 5304.121765730893, + "center": [ + 2492.4454523367012, + 5303.7480603494205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.071746955227, + 5303.374354967949 + ], + [ + 2492.819157718176, + 5304.121765730893 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55735F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.162698036943, + "min_y": 5303.374354967956, + "max_x": 2494.910108799892, + "max_y": 5304.1217657309, + "center": [ + 2494.5364034184176, + 5303.748060349428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.162698036943, + 5304.1217657309 + ], + [ + 2494.910108799892, + 5303.374354967956 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557360", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.162698036943, + "min_y": 5303.374354967956, + "max_x": 2494.910108799892, + "max_y": 5304.1217657309, + "center": [ + 2494.5364034184176, + 5303.748060349428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.162698036943, + 5303.374354967956 + ], + [ + 2494.910108799892, + 5304.1217657309 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557361", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5303.374354967956, + "max_x": 2496.942769204845, + "max_y": 5304.1217657309, + "center": [ + 2496.5690638233705, + 5303.748060349428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.195358441896, + 5304.1217657309 + ], + [ + 2496.942769204845, + 5303.374354967956 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557362", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5303.374354967956, + "max_x": 2496.942769204845, + "max_y": 5304.1217657309, + "center": [ + 2496.5690638233705, + 5303.748060349428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.195358441896, + 5303.374354967956 + ], + [ + 2496.942769204845, + 5304.1217657309 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557363", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.283183669344, + "min_y": 5296.822617436678, + "max_x": 2497.283183669344, + "max_y": 5298.028179033661, + "center": [ + 2497.283183669344, + 5297.425398235169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.283183669344, + 5296.822617436678 + ], + [ + 2497.283183669344, + 5298.028179033661 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557364", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2491.302058827182, + "min_y": 5296.822617436678, + "max_x": 2497.283183669344, + "max_y": 5296.822617436678, + "center": [ + 2494.292621248263, + 5296.822617436678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.302058827182, + 5296.822617436678 + ], + [ + 2497.283183669344, + 5296.822617436678 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557365", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5296.448912055214, + "max_x": 2492.819157718176, + "max_y": 5297.196322818156, + "center": [ + 2492.4454523367012, + 5296.822617436685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.071746955227, + 5296.448912055214 + ], + [ + 2492.819157718176, + 5297.196322818156 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557366", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.071746955227, + "min_y": 5296.448912055214, + "max_x": 2492.819157718176, + "max_y": 5297.196322818156, + "center": [ + 2492.4454523367012, + 5296.822617436685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.071746955227, + 5297.196322818156 + ], + [ + 2492.819157718176, + 5296.448912055214 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557367", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.162698036943, + "min_y": 5296.448912055208, + "max_x": 2494.910108799892, + "max_y": 5297.196322818149, + "center": [ + 2494.5364034184176, + 5296.822617436679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.162698036943, + 5296.448912055208 + ], + [ + 2494.910108799892, + 5297.196322818149 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557368", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.162698036943, + "min_y": 5296.448912055208, + "max_x": 2494.910108799892, + "max_y": 5297.196322818149, + "center": [ + 2494.5364034184176, + 5296.822617436679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.162698036943, + 5297.196322818149 + ], + [ + 2494.910108799892, + 5296.448912055208 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557369", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5296.448912055208, + "max_x": 2496.942769204845, + "max_y": 5297.196322818149, + "center": [ + 2496.5690638233705, + 5296.822617436679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.195358441896, + 5296.448912055208 + ], + [ + 2496.942769204845, + 5297.196322818149 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55736A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.195358441896, + "min_y": 5296.448912055208, + "max_x": 2496.942769204845, + "max_y": 5297.196322818149, + "center": [ + 2496.5690638233705, + 5296.822617436679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.195358441896, + 5297.196322818149 + ], + [ + 2496.942769204845, + 5296.448912055208 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55736B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2489.357049495294, + "min_y": 5297.259689664512, + "max_x": 2496.7482664078907, + "max_y": 5298.379571014905, + "center": [ + 2493.0526579515927, + 5297.819630339709 + ] + }, + "raw_value": "T10200BA-06", + "clean_value": "T10200BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55736C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2490.812034865306, + "min_y": 5307.387985801756, + "max_x": 2498.2032517779026, + "max_y": 5308.50786715215, + "center": [ + 2494.5076433216045, + 5307.9479264769525 + ] + }, + "raw_value": "T10200BA-12", + "clean_value": "T10200BA-12", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55736D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2488.749160870907, + "min_y": 5307.683469519894, + "max_x": 2496.1403777835035, + "max_y": 5308.803350870287, + "center": [ + 2492.444769327205, + 5308.243410195091 + ] + }, + "raw_value": "T10200BA-11", + "clean_value": "T10200BA-11", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55736E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2481.974911278634, + "min_y": 5303.025512513825, + "max_x": 2489.3661281912305, + "max_y": 5304.145393864218, + "center": [ + 2485.670519734932, + 5303.585453189022 + ] + }, + "raw_value": "T10200BA-08", + "clean_value": "T10200BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55736F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2324.639263704276, + "min_y": 5334.658372593708, + "max_x": 2332.0304806168724, + "max_y": 5335.778253944101, + "center": [ + 2328.3348721605744, + 5335.218313268904 + ] + }, + "raw_value": "E10217BA-05", + "clean_value": "E10217BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557370", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2329.323064591177, + "min_y": 5334.658372593708, + "max_x": 2336.7142815037737, + "max_y": 5335.778253944101, + "center": [ + 2333.018673047475, + 5335.218313268904 + ] + }, + "raw_value": "E10217BA-04", + "clean_value": "E10217BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557371", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2334.737267692447, + "min_y": 5334.658372593708, + "max_x": 2342.1284846050435, + "max_y": 5335.778253944101, + "center": [ + 2338.432876148745, + 5335.218313268904 + ] + }, + "raw_value": "E10217BA-02", + "clean_value": "E10217BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557372", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2340.427378506249, + "min_y": 5334.601763436733, + "max_x": 2347.8185954188457, + "max_y": 5335.721644787126, + "center": [ + 2344.1229869625477, + 5335.16170411193 + ] + }, + "raw_value": "E10217BA-03", + "clean_value": "E10217BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557373", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2342.832113570292, + "min_y": 5331.599332093148, + "max_x": 2354.6966703653484, + "max_y": 5333.13916894994, + "center": [ + 2348.7643919678203, + 5332.369250521544 + ] + }, + "raw_value": "\\pi0.56294;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10214}", + "clean_value": "\\pi0.56294; \\fArial|b1|i1|c238|p34; .3333x; P-10214", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "557377", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2140.969046275678, + "min_y": 5201.681555731301, + "max_x": 2152.833603070734, + "max_y": 5203.221392588092, + "center": [ + 2146.901324673206, + 5202.451474159697 + ] + }, + "raw_value": "\\pi0.63366;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10201}", + "clean_value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55737B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2157.882297434829, + "min_y": 5209.802294316815, + "max_x": 2169.7468542298852, + "max_y": 5211.3421311736065, + "center": [ + 2163.814575832357, + 5210.572212745211 + ] + }, + "raw_value": "\\pi-1.80523;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-10202A/B}", + "clean_value": "\\pi-1.80523; \\fArial|b1|i1|c238|p34; .3333x; F-10202A/B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55737F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2150.409116431307, + "min_y": 5221.116969913977, + "max_x": 2150.409116431307, + "max_y": 5221.933270783381, + "center": [ + 2150.409116431307, + 5221.525120348679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2150.409116431307, + 5221.933270783381 + ], + [ + 2150.409116431307, + 5221.116969913977 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557380", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2129.193047294254, + "min_y": 5206.162636161612, + "max_x": 2129.193047294254, + "max_y": 5220.593758773192, + "center": [ + 2129.193047294254, + 5213.378197467402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.193047294254, + 5206.162636161612 + ], + [ + 2129.193047294254, + 5220.593758773192 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557381", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2184.591368235604, + "min_y": 5238.797452411242, + "max_x": 2191.625367179135, + "max_y": 5238.797459069574, + "center": [ + 2188.1083677073693, + 5238.797455740409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2184.591368235604, + 5238.797459069574 + ], + [ + 2191.625367179135, + 5238.797452411242 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557382", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2278.226446100726, + "min_y": 5203.950628238079, + "max_x": 2290.0910028957824, + "max_y": 5205.49046509487, + "center": [ + 2284.1587244982543, + 5204.720546666475 + ] + }, + "raw_value": "\\pi0.54053;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10216}", + "clean_value": "\\pi0.54053; \\fArial|b1|i1|c238|p34; .3333x; P-10216", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "557386", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2220.664419732103, + "min_y": 5278.581049383569, + "max_x": 2232.528976527159, + "max_y": 5280.12088624036, + "center": [ + 2226.596698129631, + 5279.350967811964 + ] + }, + "raw_value": "\\pi0.53843;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10215}", + "clean_value": "\\pi0.53843; \\fArial|b1|i1|c238|p34; .3333x; E-10215", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55738A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2203.59976425771, + "min_y": 5240.695910455022, + "max_x": 2215.464321052766, + "max_y": 5242.235747311814, + "center": [ + 2209.532042655238, + 5241.465828883418 + ] + }, + "raw_value": "\\pi0.56364;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10203}", + "clean_value": "\\pi0.56364; \\fArial|b1|i1|c238|p34; .3333x; E-10203", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55738E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2246.856898794113, + "min_y": 5360.423438146407, + "max_x": 2258.721455589169, + "max_y": 5361.963275003198, + "center": [ + 2252.789177191641, + 5361.193356574802 + ] + }, + "raw_value": "\\pi0.63226;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LC-10211}", + "clean_value": "\\pi0.63226; \\fArial|b1|i1|c238|p34; .3333x; C-10211", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "557392", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2276.54400790516, + "min_y": 5335.999395489337, + "max_x": 2288.408564700216, + "max_y": 5337.539232346128, + "center": [ + 2282.476286302688, + 5336.769313917733 + ] + }, + "raw_value": "\\pi0.50272;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10217}", + "clean_value": "\\pi0.50272; \\fArial|b1|i1|c238|p34; .3333x; E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "557396", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2379.902927182275, + "min_y": 5179.403996294939, + "max_x": 2391.7674839773313, + "max_y": 5180.94383315173, + "center": [ + 2385.835205579803, + 5180.173914723335 + ] + }, + "raw_value": "\\pi0.56644;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10219}", + "clean_value": "\\pi0.56644; \\fArial|b1|i1|c238|p34; .3333x; E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55739A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2412.841683720975, + "min_y": 5239.799036848601, + "max_x": 2424.7062405160314, + "max_y": 5241.338873705392, + "center": [ + 2418.7739621185033, + 5240.568955276996 + ] + }, + "raw_value": "\\pi0.82833;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10221}", + "clean_value": "\\pi0.82833; \\fArial|b1|i1|c238|p34; .3333x; T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55739E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2477.567173496766, + "min_y": 5295.511354447538, + "max_x": 2489.431730291822, + "max_y": 5297.051191304329, + "center": [ + 2483.499451894294, + 5296.281272875934 + ] + }, + "raw_value": "\\pi0.7415;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-10200}", + "clean_value": "\\pi0.7415; \\fArial|b1|i1|c238|p34; .3333x; T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573A2", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2475.725718559071, + "min_y": 5344.987399761596, + "max_x": 2487.5902753541272, + "max_y": 5346.527236618387, + "center": [ + 2481.657996956599, + 5345.757318189992 + ] + }, + "raw_value": "\\pi1.53906;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LT-3210}", + "clean_value": "\\pi1.53906; \\fArial|b1|i1|c238|p34; .3333x; T-3210", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573A6", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2442.933488947535, + "min_y": 5355.958318532231, + "max_x": 2454.798045742591, + "max_y": 5357.498155389022, + "center": [ + 2448.865767345063, + 5356.728236960626 + ] + }, + "raw_value": "\\pi-0.35015;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LVP-10217}", + "clean_value": "\\pi-0.35015; \\fArial|b1|i1|c238|p34; .3333x; VP-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573AA", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2410.252145805424, + "min_y": 5353.365318958459, + "max_x": 2422.11670260048, + "max_y": 5354.9051558152505, + "center": [ + 2416.184424202952, + 5354.135237386855 + ] + }, + "raw_value": "\\pi-0.37886;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LSP-10602}\\P", + "clean_value": "\\pi-0.37886; \\fArial|b1|i1|c238|p34; .3333x; SP-10602", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573AE", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2356.628137148163, + "min_y": 5384.273045501285, + "max_x": 2368.4926939432194, + "max_y": 5385.812882358076, + "center": [ + 2362.5604155456913, + 5385.042963929681 + ] + }, + "raw_value": "\\pi0.48802;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LD-10213}", + "clean_value": "\\pi0.48802; \\fArial|b1|i1|c238|p34; .3333x; D-10213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573B2", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2356.628137148163, + "min_y": 5388.110906378851, + "max_x": 2368.4926939432194, + "max_y": 5389.650743235642, + "center": [ + 2362.5604155456913, + 5388.880824807246 + ] + }, + "raw_value": "\\pi0.54824;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LE-10212}", + "clean_value": "\\pi0.54824; \\fArial|b1|i1|c238|p34; .3333x; E-10212", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573B6", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2357.760494126829, + "min_y": 5375.559960628528, + "max_x": 2369.183283900842, + "max_y": 5376.679841978921, + "center": [ + 2363.4718890138356, + 5376.119901303724 + ] + }, + "raw_value": "P-10231-15A-F2A-n", + "clean_value": "P-10231-15A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573B7", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2309.307732721169, + "min_y": 5273.650142623236, + "max_x": 2321.172289516225, + "max_y": 5275.189979480027, + "center": [ + 2315.240011118697, + 5274.420061051632 + ] + }, + "raw_value": "\\pi0.55314;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10218}", + "clean_value": "\\pi0.55314; \\fArial|b1|i1|c238|p34; .3333x; P-10218", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573BB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2170.574368751427, + "min_y": 5258.861574570659, + "max_x": 2177.9655856640234, + "max_y": 5259.981455921053, + "center": [ + 2174.269977207725, + 5259.421515245856 + ] + }, + "raw_value": "T10201BA-02", + "clean_value": "T10201BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5573BC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2174.813084081782, + "min_y": 5258.825059278697, + "max_x": 2182.2043009943786, + "max_y": 5259.9449406290905, + "center": [ + 2178.50869253808, + 5259.384999953894 + ] + }, + "raw_value": "T10201BA-03", + "clean_value": "T10201BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5573BD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2132.59851051845, + "min_y": 5334.08803789688, + "max_x": 2146.037086723171, + "max_y": 5335.207919247274, + "center": [ + 2139.31779862081, + 5334.647978572077 + ] + }, + "raw_value": "ST-10521-65A-S1A-H50", + "clean_value": "ST-10521-65A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573BE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2286.867361201329, + "min_y": 5243.916867960924, + "max_x": 2299.6340085958136, + "max_y": 5245.036749311317, + "center": [ + 2293.2506848985713, + 5244.47680863612 + ] + }, + "raw_value": "P-10212-20A-F1A-H50", + "clean_value": "P-10212-20A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573BF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2509.732248367704, + "min_y": 5314.566538773653, + "max_x": 2511.221027786475, + "max_y": 5316.055318192423, + "center": [ + 2510.47663807709, + 5315.310928483038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2509.732248367704, + 5314.566538773653 + ], + [ + 2511.221027786475, + 5316.055318192423 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5573C0", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2509.732248367704, + "min_y": 5316.055318192423, + "max_x": 2511.221027786475, + "max_y": 5317.544097611194, + "center": [ + 2510.47663807709, + 5316.799707901809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2511.221027786475, + 5316.055318192423 + ], + [ + 2509.732248367704, + 5317.544097611194 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5573C1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2479.646910648868, + "min_y": 5316.540757429099, + "max_x": 2479.646940530518, + "max_y": 5320.698139861556, + "center": [ + 2479.6469255896927, + 5318.619448645328 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.646910648868, + 5316.540757429099 + ], + [ + 2479.646940530518, + 5320.698139861556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573C2", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2431.748200246448, + "min_y": 5228.060007078521, + "max_x": 2443.612757041504, + "max_y": 5229.5998439353125, + "center": [ + 2437.680478643976, + 5228.829925506917 + ] + }, + "raw_value": "\\pi0.63366;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LP-10221}", + "clean_value": "\\pi0.63366; \\fArial|b1|i1|c238|p34; .3333x; P-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573C6", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2137.694725109574, + "min_y": 5297.891086753597, + "max_x": 2149.55928190463, + "max_y": 5299.430923610388, + "center": [ + 2143.627003507102, + 5298.661005181993 + ] + }, + "raw_value": "\\pi-0.39777;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LDP-10201}", + "clean_value": "\\pi-0.39777; \\fArial|b1|i1|c238|p34; .3333x; DP-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5573CA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2135.276654617871, + "min_y": 5347.693512628874, + "max_x": 2146.923420661962, + "max_y": 5349.186687762732, + "center": [ + 2141.1000376399165, + 5348.440100195803 + ] + }, + "raw_value": "0.65->0.35MPa", + "clean_value": "0.65->0.35MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5573CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5407.860441589807, + "max_x": 2280.13879521484, + "max_y": 5407.860441589807, + "center": [ + 2268.7533348191737, + 5407.860441589807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2257.367874423507, + 5407.860441589807 + ], + [ + 2280.13879521484, + 5407.860441589807 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2257.367874423507, + "min_y": 5405.247385105556, + "max_x": 2280.13879521484, + "max_y": 5405.247385105556, + "center": [ + 2268.7533348191737, + 5405.247385105556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2257.367874423507, + 5405.247385105556 + ], + [ + 2280.13879521484, + 5405.247385105556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2235.160193662729, + "min_y": 5235.818105730746, + "max_x": 2236.204981107341, + "max_y": 5235.818105730746, + "center": [ + 2235.682587385035, + 5235.818105730746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2236.204981107341, + 5235.818105730746 + ], + [ + 2235.160193662729, + 5235.818105730746 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.544071776682, + "min_y": 5236.829360863367, + "max_x": 2227.544071776682, + "max_y": 5237.880165268327, + "center": [ + 2227.544071776682, + 5237.354763065847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776682, + 5237.880165268327 + ], + [ + 2227.544071776682, + 5236.829360863367 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.995300497218, + "min_y": 5236.175649258281, + "max_x": 2226.995300497218, + "max_y": 5236.918966374277, + "center": [ + 2226.995300497218, + 5236.5473078162795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.995300497218, + 5236.918966374277 + ], + [ + 2226.995300497218, + 5236.175649258281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2228.092843056148, + "min_y": 5236.175649258281, + "max_x": 2228.092843056148, + "max_y": 5236.918966374277, + "center": [ + 2228.092843056148, + 5236.5473078162795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.092843056148, + 5236.918966374277 + ], + [ + 2228.092843056148, + 5236.175649258281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2226.995300497218, + "min_y": 5236.175649258281, + "max_x": 2228.092843056148, + "max_y": 5236.175649258281, + "center": [ + 2227.5440717766833, + 5236.175649258281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2226.995300497218, + 5236.175649258281 + ], + [ + 2228.092843056148, + 5236.175649258281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.023345909007, + "min_y": 5240.950240721114, + "max_x": 2228.068133353618, + "max_y": 5240.950240721114, + "center": [ + 2227.5457396313122, + 5240.950240721114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.068133353618, + 5240.950240721114 + ], + [ + 2227.023345909007, + 5240.950240721114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.023345909007, + "min_y": 5241.250053463484, + "max_x": 2228.068133353618, + "max_y": 5241.250053463484, + "center": [ + 2227.5457396313122, + 5241.250053463484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.068133353618, + 5241.250053463484 + ], + [ + 2227.023345909007, + 5241.250053463484 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.021678054372, + "min_y": 5238.179978010697, + "max_x": 2228.066465498992, + "max_y": 5238.179978010697, + "center": [ + 2227.544071776682, + 5238.179978010697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.066465498992, + 5238.179978010697 + ], + [ + 2227.021678054372, + 5238.179978010697 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2227.021678054372, + "min_y": 5237.880165268327, + "max_x": 2228.066465498992, + "max_y": 5237.880165268327, + "center": [ + 2227.544071776682, + 5237.880165268327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2228.066465498992, + 5237.880165268327 + ], + [ + 2227.021678054372, + 5237.880165268327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.34619536671, + "min_y": 5240.554494930289, + "max_x": 2227.7419481866436, + "max_y": 5240.950247750223, + "center": [ + 2227.544071776677, + 5240.752371340256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5240.752371340256 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667115, + "min_y": 5240.15874211036, + "max_x": 2227.7419481866423, + "max_y": 5240.55449493029, + "center": [ + 2227.544071776677, + 5240.356618520325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5240.356618520325 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667115, + "min_y": 5239.762989290429, + "max_x": 2227.7419481866423, + "max_y": 5240.158742110359, + "center": [ + 2227.544071776677, + 5239.960865700394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5239.960865700394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573D9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667097, + "min_y": 5239.762989290424, + "max_x": 2227.741948186644, + "max_y": 5240.158742110358, + "center": [ + 2227.544071776677, + 5239.960865700391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5239.960865700391 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573DA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667115, + "min_y": 5239.367236470495, + "max_x": 2227.7419481866423, + "max_y": 5239.762989290425, + "center": [ + 2227.544071776677, + 5239.56511288046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5239.56511288046 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573DB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667093, + "min_y": 5238.971483650557, + "max_x": 2227.7419481866445, + "max_y": 5239.367236470493, + "center": [ + 2227.544071776677, + 5239.169360060525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5239.169360060525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573DC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667115, + "min_y": 5238.575730830627, + "max_x": 2227.7419481866423, + "max_y": 5238.971483650557, + "center": [ + 2227.544071776677, + 5238.773607240592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5238.773607240592 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573DD", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2227.3461953667115, + "min_y": 5238.179978010699, + "max_x": 2227.7419481866423, + "max_y": 5238.575730830629, + "center": [ + 2227.544071776677, + 5238.377854420664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2227.544071776677, + 5238.377854420664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573DE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2225.533176665646, + "min_y": 5234.547273619519, + "max_x": 2231.5805359577703, + "max_y": 5235.667154969912, + "center": [ + 2228.556856311708, + 5235.107214294716 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5573DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.84472200753, + "min_y": 5242.490420201732, + "max_x": 2220.84472200753, + "max_y": 5243.541224606691, + "center": [ + 2220.84472200753, + 5243.015822404212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.84472200753, + 5243.541224606691 + ], + [ + 2220.84472200753, + 5242.490420201732 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.295950728067, + "min_y": 5241.836708596646, + "max_x": 2220.295950728067, + "max_y": 5242.580025712642, + "center": [ + 2220.295950728067, + 5242.208367154644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.295950728067, + 5242.580025712642 + ], + [ + 2220.295950728067, + 5241.836708596646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2221.393493286996, + "min_y": 5241.836708596646, + "max_x": 2221.393493286996, + "max_y": 5242.580025712642, + "center": [ + 2221.393493286996, + 5242.208367154644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.393493286996, + 5242.580025712642 + ], + [ + 2221.393493286996, + 5241.836708596646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.295950728067, + "min_y": 5241.836708596646, + "max_x": 2221.393493286996, + "max_y": 5241.836708596646, + "center": [ + 2220.8447220075313, + 5241.836708596646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.295950728067, + 5241.836708596646 + ], + [ + 2221.393493286996, + 5241.836708596646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.323996139855, + "min_y": 5246.611300059479, + "max_x": 2221.368783584466, + "max_y": 5246.611300059479, + "center": [ + 2220.8463898621603, + 5246.611300059479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.368783584466, + 5246.611300059479 + ], + [ + 2220.323996139855, + 5246.611300059479 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.323996139855, + "min_y": 5246.911112801848, + "max_x": 2221.368783584466, + "max_y": 5246.911112801848, + "center": [ + 2220.8463898621603, + 5246.911112801848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.368783584466, + 5246.911112801848 + ], + [ + 2220.323996139855, + 5246.911112801848 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.32232828522, + "min_y": 5243.841037349062, + "max_x": 2221.36711572984, + "max_y": 5243.841037349062, + "center": [ + 2220.84472200753, + 5243.841037349062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.36711572984, + 5243.841037349062 + ], + [ + 2220.32232828522, + 5243.841037349062 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.32232828522, + "min_y": 5243.541224606691, + "max_x": 2221.36711572984, + "max_y": 5243.541224606691, + "center": [ + 2220.84472200753, + 5243.541224606691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2221.36711572984, + 5243.541224606691 + ], + [ + 2220.32232828522, + 5243.541224606691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.646845597559, + "min_y": 5246.215554268654, + "max_x": 2221.0425984174926, + "max_y": 5246.611307088588, + "center": [ + 2220.844722007526, + 5246.413430678621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5246.413430678621 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975605, + "min_y": 5245.819801448726, + "max_x": 2221.0425984174913, + "max_y": 5246.215554268656, + "center": [ + 2220.844722007526, + 5246.017677858691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5246.017677858691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573E9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975605, + "min_y": 5245.424048628795, + "max_x": 2221.0425984174913, + "max_y": 5245.819801448725, + "center": [ + 2220.844722007526, + 5245.62192503876 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5245.62192503876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975587, + "min_y": 5245.424048628789, + "max_x": 2221.042598417493, + "max_y": 5245.8198014487225, + "center": [ + 2220.844722007526, + 5245.621925038756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5245.621925038756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573EB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975605, + "min_y": 5245.02829580886, + "max_x": 2221.0425984174913, + "max_y": 5245.42404862879, + "center": [ + 2220.844722007526, + 5245.226172218825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5245.226172218825 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975582, + "min_y": 5244.632542988923, + "max_x": 2221.0425984174935, + "max_y": 5245.028295808858, + "center": [ + 2220.844722007526, + 5244.830419398891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5244.830419398891 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573ED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975605, + "min_y": 5244.236790168992, + "max_x": 2221.0425984174913, + "max_y": 5244.632542988922, + "center": [ + 2220.844722007526, + 5244.434666578957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5244.434666578957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573EE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2220.6468455975605, + "min_y": 5243.841037349064, + "max_x": 2221.0425984174913, + "max_y": 5244.236790168994, + "center": [ + 2220.844722007526, + 5244.038913759029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.844722007526, + 5244.038913759029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.968962833835, + "min_y": 5242.689251396587, + "max_x": 2207.968962833835, + "max_y": 5243.740055801549, + "center": [ + 2207.968962833835, + 5243.214653599068 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.968962833835, + 5243.740055801549 + ], + [ + 2207.968962833835, + 5242.689251396587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2208.5177341133, + "min_y": 5241.945934280592, + "max_x": 2208.5177341133, + "max_y": 5242.689251396587, + "center": [ + 2208.5177341133, + 5242.31759283859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.5177341133, + 5241.945934280592 + ], + [ + 2208.5177341133, + 5242.689251396587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5241.945934280592, + "max_x": 2207.42019155437, + "max_y": 5242.689251396587, + "center": [ + 2207.42019155437, + 5242.31759283859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2207.42019155437, + 5241.945934280592 + ], + [ + 2207.42019155437, + 5242.689251396587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.42019155437, + "min_y": 5242.689251396587, + "max_x": 2208.5177341133, + "max_y": 5242.689251396587, + "center": [ + 2207.9689628338347, + 5242.689251396587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.5177341133, + 5242.689251396587 + ], + [ + 2207.42019155437, + 5242.689251396587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2207.446569111529, + "min_y": 5243.740055801549, + "max_x": 2208.491356556141, + "max_y": 5243.740055801549, + "center": [ + 2207.9689628338347, + 5243.740055801549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2208.491356556141, + 5243.740055801549 + ], + [ + 2207.446569111529, + 5243.740055801549 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5573F4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2216.222788479699, + "min_y": 5240.452282350007, + "max_x": 2222.2701477718233, + "max_y": 5241.572163700401, + "center": [ + 2219.246468125761, + 5241.012223025204 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5573F5", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2216.131854580731, + "min_y": 5244.768269163497, + "max_x": 2220.101597905907, + "max_y": 5244.7682691635, + "center": [ + 2218.116726243319, + 5244.768269163498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.101597905907, + 5244.768269163497 + ], + [ + 2216.131854580731, + 5244.7682691635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573F6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2097.544217241776, + "min_y": 5405.95165948763, + "max_x": 2130.104991880252, + "max_y": 5430.076401863726, + "center": [ + 2113.824604561014, + 5418.014030675678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.544217241776, + 5430.076401863726 + ], + [ + 2130.104991880252, + 5430.076401863726 + ], + [ + 2130.104991880252, + 5405.95165948763 + ], + [ + 2097.544217241776, + 5405.95165948763 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5573F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5427.946770273928, + "max_x": 2134.679324701183, + "max_y": 5427.946770273928, + "center": [ + 2132.3921582907174, + 5427.946770273928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5427.946770273928 + ], + [ + 2134.679324701183, + 5427.946770273928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5573F8", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2106.039498551103, + "min_y": 5423.986156071601, + "max_x": 2122.837718807004, + "max_y": 5428.185711135576, + "center": [ + 2114.4386086790537, + 5426.085933603588 + ] + }, + "raw_value": "\\pi-5.02801;{\\fArial|b0|i1|c0|p34;\\W0.9;\\LSAMPLING\\P\\pi-0.95707;BOOTH}", + "clean_value": "\\pi-5.02801; \\fArial|b0|i1|c0|p34; .9; SAMPLING \\pi-0.95707;BOOTH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5573FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5425.147066897944, + "max_x": 2134.679324701183, + "max_y": 5425.147066897944, + "center": [ + 2132.3921582907174, + 5425.147066897944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5425.147066897944 + ], + [ + 2134.679324701183, + 5425.147066897944 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5573FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5422.347363521961, + "max_x": 2134.679324701183, + "max_y": 5422.347363521961, + "center": [ + 2132.3921582907174, + 5422.347363521961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5422.347363521961 + ], + [ + 2134.679324701183, + 5422.347363521961 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5573FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5419.547660145978, + "max_x": 2134.679324701183, + "max_y": 5419.547660145978, + "center": [ + 2132.3921582907174, + 5419.547660145978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5419.547660145978 + ], + [ + 2134.679324701183, + 5419.547660145978 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5573FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5416.747956769995, + "max_x": 2134.679324701183, + "max_y": 5416.747956769995, + "center": [ + 2132.3921582907174, + 5416.747956769995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5416.747956769995 + ], + [ + 2134.679324701183, + 5416.747956769995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557400", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5413.948253394011, + "max_x": 2134.679324701183, + "max_y": 5413.948253394011, + "center": [ + 2132.3921582907174, + 5413.948253394011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5413.948253394011 + ], + [ + 2134.679324701183, + 5413.948253394011 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557401", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5411.148550018027, + "max_x": 2134.679324701183, + "max_y": 5411.148550018027, + "center": [ + 2132.3921582907174, + 5411.148550018027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5411.148550018027 + ], + [ + 2134.679324701183, + 5411.148550018027 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557402", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.104991880252, + "min_y": 5408.348846642043, + "max_x": 2134.679324701183, + "max_y": 5408.348846642043, + "center": [ + 2132.3921582907174, + 5408.348846642043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.104991880252, + 5408.348846642043 + ], + [ + 2134.679324701183, + 5408.348846642043 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557403", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5410.58860934283, + "max_x": 2142.45058300282, + "max_y": 5411.708490693223, + "center": [ + 2139.426903356758, + 5411.148550018026 + ] + }, + "raw_value": "10116 btm", + "clean_value": "10116 btm", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557404", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5407.788905966846, + "max_x": 2142.45058300282, + "max_y": 5408.908787317239, + "center": [ + 2139.426903356758, + 5408.348846642042 + ] + }, + "raw_value": "10216 btm", + "clean_value": "10216 btm", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557405", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5427.386829598731, + "max_x": 2143.122511813056, + "max_y": 5428.506710949125, + "center": [ + 2139.762867761876, + 5427.9467702739275 + ] + }, + "raw_value": "10101 feed", + "clean_value": "10101 feed", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557406", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5424.587126222747, + "max_x": 2143.122511813056, + "max_y": 5425.707007573141, + "center": [ + 2139.762867761876, + 5425.147066897944 + ] + }, + "raw_value": "10201 feed", + "clean_value": "10201 feed", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557407", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5421.787422846763, + "max_x": 2143.122511813056, + "max_y": 5422.907304197156, + "center": [ + 2139.762867761876, + 5422.34736352196 + ] + }, + "raw_value": "10118 side", + "clean_value": "10118 side", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557408", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5418.987719470781, + "max_x": 2142.45058300282, + "max_y": 5420.107600821174, + "center": [ + 2139.426903356758, + 5419.547660145978 + ] + }, + "raw_value": "10114 top", + "clean_value": "10114 top", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557409", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5416.188016094798, + "max_x": 2142.45058300282, + "max_y": 5417.307897445191, + "center": [ + 2139.426903356758, + 5416.747956769994 + ] + }, + "raw_value": "10214 top", + "clean_value": "10214 top", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55740A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2136.403223710696, + "min_y": 5413.388312718814, + "max_x": 2143.122511813056, + "max_y": 5414.508194069207, + "center": [ + 2139.762867761876, + 5413.94825339401 + ] + }, + "raw_value": "10218 side", + "clean_value": "10218 side", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55741B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2187.819332067145, + "min_y": 5220.461091659507, + "max_x": 2189.485371669384, + "max_y": 5222.09280510096, + "center": [ + 2188.6523518682643, + 5221.276948380233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.819332067145, + 5222.09280510096 + ], + [ + 2189.485371669384, + 5220.461091659507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55741C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2187.819332067145, + "min_y": 5218.829378218042, + "max_x": 2189.485371669384, + "max_y": 5220.461091659507, + "center": [ + 2188.6523518682643, + 5219.645234938775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.819332067145, + 5218.829378218042 + ], + [ + 2189.485371669384, + 5220.461091659507 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55741D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.429493684734, + "min_y": 5218.829378218042, + "max_x": 2179.429493684734, + "max_y": 5222.09280510096, + "center": [ + 2179.429493684734, + 5220.461091659501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.429493684734, + 5222.09280510096 + ], + [ + 2179.429493684734, + 5218.829378218042 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55741E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.429493684734, + "min_y": 5222.09280510096, + "max_x": 2187.819332067145, + "max_y": 5222.09280510096, + "center": [ + 2183.6244128759395, + 5222.09280510096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2179.429493684734, + 5222.09280510096 + ], + [ + 2187.819332067145, + 5222.09280510096 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55741F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2179.429493684734, + "min_y": 5218.829378218042, + "max_x": 2187.819332067145, + "max_y": 5218.829378218042, + "center": [ + 2183.6244128759395, + 5218.829378218042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2187.819332067145, + 5218.829378218042 + ], + [ + 2179.429493684734, + 5218.829378218042 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557420", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2180.971555885205, + "min_y": 5219.76927406321, + "max_x": 2186.3469863670935, + "max_y": 5221.262449197068, + "center": [ + 2183.659271126149, + 5220.51586163014 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557421", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2177.063160700489, + "min_y": 5220.461091659502, + "max_x": 2179.429493684734, + "max_y": 5220.461091659502, + "center": [ + 2178.2463271926117, + 5220.461091659502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.063160700489, + 5220.461091659502 + ], + [ + 2179.429493684734, + 5220.461091659502 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557422", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2178.453254595048, + "min_y": 5217.187476054601, + "max_x": 2191.2199019895324, + "max_y": 5218.307357404994, + "center": [ + 2184.83657829229, + 5217.747416729797 + ] + }, + "raw_value": "SAM-10951-10A-F2A-n", + "clean_value": "SAM-10951-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557423", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2291.635448245456, + "min_y": 5257.552541462787, + "max_x": 2291.635448245456, + "max_y": 5265.068287161887, + "center": [ + 2291.635448245456, + 5261.310414312337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.635448245456, + 5265.068287161887 + ], + [ + 2291.635448245456, + 5257.552541462787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557424", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2275.292306703212, + "min_y": 5267.629482781295, + "max_x": 2277.30809313392, + "max_y": 5269.309304806886, + "center": [ + 2276.3001999185662, + 5268.46939379409 + ] + }, + "raw_value": "EA", + "clean_value": "EA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557425", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2267.469241447676, + "min_y": 5298.417405664084, + "max_x": 2269.485027878384, + "max_y": 5300.097227689675, + "center": [ + 2268.4771346630296, + 5299.25731667688 + ] + }, + "raw_value": "EL", + "clean_value": "EL", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557426", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2220.963616699837, + "min_y": 5348.022429563865, + "max_x": 2224.659036619112, + "max_y": 5351.717849483139, + "center": [ + 2222.8113266594746, + 5349.870139523502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.963616699837, + 5349.870139523501 + ], + [ + 2222.811326659474, + 5351.717849483139 + ], + [ + 2224.659036619112, + 5349.870139523501 + ], + [ + 2222.811326659474, + 5348.022429563865 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557427", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2224.150670359377, + "min_y": 5348.022429563865, + "max_x": 2224.777803915597, + "max_y": 5349.067652157566, + "center": [ + 2224.4642371374866, + 5348.545040860716 + ] + }, + "raw_value": "H", + "clean_value": "H", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557428", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2225.27055170977, + "min_y": 5348.022429563865, + "max_x": 2227.151952378431, + "max_y": 5349.067652157566, + "center": [ + 2226.2112520441005, + 5348.545040860716 + ] + }, + "raw_value": "150", + "clean_value": "150", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557429", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2170.473380963203, + "min_y": 5349.870139523501, + "max_x": 2220.963616699837, + "max_y": 5349.870139523501, + "center": [ + 2195.7184988315203, + 5349.870139523501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.963616699837, + 5349.870139523501 + ], + [ + 2170.473380963203, + 5349.870139523501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742A", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2422.812952065085, + "min_y": 5388.941119408088, + "max_x": 2426.508371984359, + "max_y": 5392.636539327362, + "center": [ + 2424.660662024722, + 5390.788829367724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.812952065085, + 5390.788829367725 + ], + [ + 2424.660662024722, + 5392.636539327362 + ], + [ + 2426.508371984359, + 5390.788829367725 + ], + [ + 2424.660662024722, + 5388.941119408088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2426.000005724624, + "min_y": 5388.941119408088, + "max_x": 2426.627139280844, + "max_y": 5389.986342001788, + "center": [ + 2426.313572502734, + 5389.463730704938 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2427.119887075018, + "min_y": 5388.941119408088, + "max_x": 2428.3741541874588, + "max_y": 5389.986342001788, + "center": [ + 2427.7470206312382, + 5389.463730704938 + ] + }, + "raw_value": "30", + "clean_value": "30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742D", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2447.763784972582, + "min_y": 5363.139580976221, + "max_x": 2447.763784972582, + "max_y": 5390.788829367725, + "center": [ + 2447.763784972582, + 5376.964205171973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.763784972582, + 5363.139580976221 + ], + [ + 2447.763784972582, + 5390.788829367725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742E", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2426.508371984359, + "min_y": 5390.788829367725, + "max_x": 2447.763784972582, + "max_y": 5390.788829367725, + "center": [ + 2437.1360784784706, + 5390.788829367725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2447.763784972582, + 5390.788829367725 + ], + [ + 2426.508371984359, + 5390.788829367725 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55742F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2452.241838956657, + "min_y": 5369.614005587271, + "max_x": 2464.3365575409057, + "max_y": 5370.7338869376645, + "center": [ + 2458.2891982487813, + 5370.173946262468 + ] + }, + "raw_value": "VG-10412-50A-F1A-n", + "clean_value": "VG-10412-50A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557430", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2376.239029498055, + "min_y": 5340.280006116709, + "max_x": 2379.93444941733, + "max_y": 5343.975426035983, + "center": [ + 2378.0867394576926, + 5342.127716076346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.239029498055, + 5342.127716076346 + ], + [ + 2378.086739457692, + 5343.975426035983 + ], + [ + 2379.93444941733, + 5342.127716076346 + ], + [ + 2378.086739457692, + 5340.280006116709 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557431", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2379.426083157595, + "min_y": 5340.280006116709, + "max_x": 2380.053216713815, + "max_y": 5341.32522871041, + "center": [ + 2379.7396499357046, + 5340.802617413559 + ] + }, + "raw_value": "L", + "clean_value": "L", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557432", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2380.545964507988, + "min_y": 5340.280006116709, + "max_x": 2381.1730980642083, + "max_y": 5341.32522871041, + "center": [ + 2380.859531286098, + 5340.802617413559 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557433", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2355.108942028963, + "min_y": 5342.127716076346, + "max_x": 2371.24372160549, + "max_y": 5342.127716076346, + "center": [ + 2363.1763318172266, + 5342.127716076346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2355.108942028963, + 5342.127716076346 + ], + [ + 2371.24372160549, + 5342.127716076346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557434", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2378.086739457692, + "min_y": 5340.1008694757, + "max_x": 2378.086739457692, + "max_y": 5340.308631347412, + "center": [ + 2378.086739457692, + 5340.204750411556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.086739457692, + 5340.308631347412 + ], + [ + 2378.086739457692, + 5340.1008694757 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557435", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2379.93444941733, + "min_y": 5342.127716076346, + "max_x": 2387.445468488001, + "max_y": 5342.127716076346, + "center": [ + 2383.6899589526656, + 5342.127716076346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.93444941733, + 5342.127716076346 + ], + [ + 2387.445468488001, + 5342.127716076346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557436", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2374.206735384621, + "min_y": 5342.127716076346, + "max_x": 2376.239029498055, + "max_y": 5342.127716076346, + "center": [ + 2375.222882441338, + 5342.127716076346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.206735384621, + 5342.127716076346 + ], + [ + 2376.239029498055, + 5342.127716076346 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557437", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.088992921932, + "min_y": 5254.065994391405, + "max_x": 2416.088992921932, + "max_y": 5254.60795546245, + "center": [ + 2416.088992921932, + 5254.336974926928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.088992921932, + 5254.065994391405 + ], + [ + 2416.088992921932, + 5254.60795546245 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557438", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.508535386095, + "min_y": 5284.741839194303, + "max_x": 2172.048599684586, + "max_y": 5285.28190349279, + "center": [ + 2171.7785675353407, + 5285.011871343546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684586, + 5285.28190349279 + ], + [ + 2171.508535386095, + 5284.741839194303 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557439", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.508535386095, + "min_y": 5284.201774895818, + "max_x": 2172.048599684586, + "max_y": 5284.741839194303, + "center": [ + 2171.7785675353407, + 5284.47180704506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.508535386095, + 5284.741839194303 + ], + [ + 2172.048599684586, + 5284.201774895818 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743A", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.868578251757, + "min_y": 5284.561817761475, + "max_x": 2172.084603971151, + "max_y": 5284.921860627132, + "center": [ + 2171.9765911114537, + 5284.741839194304 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684586, + "min_y": 5284.201774895818, + "max_x": 2172.588663983068, + "max_y": 5284.741839194303, + "center": [ + 2172.3186318338267, + 5284.47180704506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684586, + 5284.201774895818 + ], + [ + 2172.588663983068, + 5284.741839194303 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684586, + "min_y": 5284.741839194303, + "max_x": 2172.588663983068, + "max_y": 5285.28190349279, + "center": [ + 2172.3186318338267, + 5285.011871343546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.588663983068, + 5284.741839194303 + ], + [ + 2172.048599684586, + 5285.28190349279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.708562982461, + "min_y": 5285.28190349279, + "max_x": 2172.38863638671, + "max_y": 5285.28190349279, + "center": [ + 2172.0485996845855, + 5285.28190349279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.708562982461, + 5285.28190349279 + ], + [ + 2172.38863638671, + 5285.28190349279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.708562982461, + "min_y": 5284.201774895818, + "max_x": 2172.38863638671, + "max_y": 5284.201774895818, + "center": [ + 2172.0485996845855, + 5284.201774895818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.708562982461, + 5284.201774895818 + ], + [ + 2172.38863638671, + 5284.201774895818 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55743F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.455425597916, + "min_y": 5286.074243492646, + "max_x": 2172.641773771254, + "max_y": 5286.786052396649, + "center": [ + 2172.048599684585, + 5286.430147944648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.641773771254, + 5286.786052396649 + ], + [ + 2171.455425597916, + 5286.074243492646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557440", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.455425597916, + "min_y": 5286.074243492646, + "max_x": 2172.641773771254, + "max_y": 5286.786052396649, + "center": [ + 2172.048599684585, + 5286.430147944648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.455425597916, + 5286.786052396649 + ], + [ + 2172.641773771254, + 5286.074243492646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557441", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.455425597916, + "min_y": 5286.074243492646, + "max_x": 2171.455425597916, + "max_y": 5286.786052396649, + "center": [ + 2171.455425597916, + 5286.430147944648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.455425597916, + 5286.786052396649 + ], + [ + 2171.455425597916, + 5286.074243492646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557442", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.455425597916, + "min_y": 5286.079261173473, + "max_x": 2171.455425597916, + "max_y": 5286.781034715821, + "center": [ + 2171.455425597916, + 5286.430147944648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.455425597916, + 5286.079261173473 + ], + [ + 2171.455425597916, + 5286.781034715821 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557443", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.641773771254, + "min_y": 5286.074243492646, + "max_x": 2172.641773771254, + "max_y": 5286.786052396649, + "center": [ + 2172.641773771254, + 5286.430147944648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.641773771254, + 5286.786052396649 + ], + [ + 2172.641773771254, + 5286.074243492646 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557444", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.692695232583, + "min_y": 5285.836973857978, + "max_x": 2172.404504136588, + "max_y": 5285.836973857978, + "center": [ + 2172.0485996845855, + 5285.836973857978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.692695232583, + 5285.836973857978 + ], + [ + 2172.404504136588, + 5285.836973857978 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557445", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5285.836973857978, + "max_x": 2172.048599684584, + "max_y": 5285.836973857978, + "center": [ + 2172.048599684584, + 5285.836973857978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5285.836973857978 + ], + [ + 2172.048599684584, + 5285.836973857978 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557446", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2171.692695232583, + "min_y": 5285.836973857978, + "max_x": 2172.048599684584, + "max_y": 5286.430147944647, + "center": [ + 2171.8706474585833, + 5286.133560901312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.692695232583, + 5285.836973857978 + ], + [ + 2172.048599684584, + 5286.430147944647 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557447", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5285.836973857978, + "max_x": 2172.404504136588, + "max_y": 5286.430147944647, + "center": [ + 2172.226551910586, + 5286.133560901312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5286.430147944647 + ], + [ + 2172.404504136588, + 5285.836973857978 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557448", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5286.430147944647, + "max_x": 2172.048599684584, + "max_y": 5287.22121947608, + "center": [ + 2172.048599684584, + 5286.825683710364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5286.430147944647 + ], + [ + 2172.048599684584, + 5287.22121947608 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557449", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.641773771254, + "min_y": 5286.430147944647, + "max_x": 2173.27170703085, + "max_y": 5286.430147944647, + "center": [ + 2172.9567404010522, + 5286.430147944647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.641773771254, + 5286.430147944647 + ], + [ + 2173.27170703085, + 5286.430147944647 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55744A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2172.048599684584, + "min_y": 5285.28190349279, + "max_x": 2172.048599684584, + "max_y": 5285.816037669018, + "center": [ + 2172.048599684584, + 5285.548970580904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2172.048599684584, + 5285.816037669018 + ], + [ + 2172.048599684584, + 5285.28190349279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55744B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2170.540682532323, + "min_y": 5286.430147944647, + "max_x": 2171.455425597916, + "max_y": 5286.430147944647, + "center": [ + 2170.9980540651195, + 5286.430147944647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2171.455425597916, + 5286.430147944647 + ], + [ + 2170.540682532323, + 5286.430147944647 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55744C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2170.540682532323, + "min_y": 5286.430147944647, + "max_x": 2170.540682532323, + "max_y": 5307.517709964271, + "center": [ + 2170.540682532323, + 5296.973928954459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2170.540682532323, + 5286.430147944647 + ], + [ + 2170.540682532323, + 5307.517709964271 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55744D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.901026174452, + "min_y": 5253.535880042918, + "max_x": 2418.441090472944, + "max_y": 5254.075944341404, + "center": [ + 2418.171058323698, + 5253.805912192161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472944, + 5254.075944341404 + ], + [ + 2417.901026174452, + 5253.535880042918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55744E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.901026174452, + "min_y": 5252.995815744434, + "max_x": 2418.441090472944, + "max_y": 5253.535880042918, + "center": [ + 2418.171058323698, + 5253.2658478936755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.901026174452, + 5253.535880042918 + ], + [ + 2418.441090472944, + 5252.995815744434 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55744F", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.261069040115, + "min_y": 5253.35585861009, + "max_x": 2418.4770947595093, + "max_y": 5253.715901475747, + "center": [ + 2418.369081899812, + 5253.5358800429185 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557450", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472944, + "min_y": 5252.995815744434, + "max_x": 2418.981154771425, + "max_y": 5253.535880042918, + "center": [ + 2418.711122622184, + 5253.2658478936755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472944, + 5252.995815744434 + ], + [ + 2418.981154771425, + 5253.535880042918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557451", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472944, + "min_y": 5253.535880042918, + "max_x": 2418.981154771425, + "max_y": 5254.075944341404, + "center": [ + 2418.711122622184, + 5253.805912192161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.981154771425, + 5253.535880042918 + ], + [ + 2418.441090472944, + 5254.075944341404 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557452", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.101053770818, + "min_y": 5254.075944341404, + "max_x": 2418.781127175068, + "max_y": 5254.075944341404, + "center": [ + 2418.441090472943, + 5254.075944341404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.101053770818, + 5254.075944341404 + ], + [ + 2418.781127175068, + 5254.075944341404 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557453", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.101053770818, + "min_y": 5252.995815744434, + "max_x": 2418.781127175068, + "max_y": 5252.995815744434, + "center": [ + 2418.441090472943, + 5252.995815744434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.101053770818, + 5252.995815744434 + ], + [ + 2418.781127175068, + 5252.995815744434 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557454", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.847916386274, + "min_y": 5254.868284341259, + "max_x": 2419.034264559611, + "max_y": 5255.580093245264, + "center": [ + 2418.4410904729425, + 5255.224188793261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.034264559611, + 5255.580093245264 + ], + [ + 2417.847916386274, + 5254.868284341259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557455", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.847916386274, + "min_y": 5254.868284341259, + "max_x": 2419.034264559611, + "max_y": 5255.580093245264, + "center": [ + 2418.4410904729425, + 5255.224188793261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.847916386274, + 5255.580093245264 + ], + [ + 2419.034264559611, + 5254.868284341259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557456", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.847916386274, + "min_y": 5254.868284341259, + "max_x": 2417.847916386274, + "max_y": 5255.580093245264, + "center": [ + 2417.847916386274, + 5255.224188793261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.847916386274, + 5255.580093245264 + ], + [ + 2417.847916386274, + 5254.868284341259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557457", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.847916386274, + "min_y": 5254.873302022089, + "max_x": 2417.847916386274, + "max_y": 5255.575075564436, + "center": [ + 2417.847916386274, + 5255.224188793262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.847916386274, + 5254.873302022089 + ], + [ + 2417.847916386274, + 5255.575075564436 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557458", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2419.034264559611, + "min_y": 5254.868284341259, + "max_x": 2419.034264559611, + "max_y": 5255.580093245264, + "center": [ + 2419.034264559611, + 5255.224188793261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.034264559611, + 5255.580093245264 + ], + [ + 2419.034264559611, + 5254.868284341259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557459", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.08518602094, + "min_y": 5254.631014706593, + "max_x": 2418.796994924945, + "max_y": 5254.631014706593, + "center": [ + 2418.4410904729425, + 5254.631014706593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.08518602094, + 5254.631014706593 + ], + [ + 2418.796994924945, + 5254.631014706593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5254.631014706593, + "max_x": 2418.441090472942, + "max_y": 5254.631014706593, + "center": [ + 2418.441090472942, + 5254.631014706593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5254.631014706593 + ], + [ + 2418.441090472942, + 5254.631014706593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.08518602094, + "min_y": 5254.631014706593, + "max_x": 2418.441090472942, + "max_y": 5255.224188793262, + "center": [ + 2418.263138246941, + 5254.927601749928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.08518602094, + 5254.631014706593 + ], + [ + 2418.441090472942, + 5255.224188793262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5254.631014706593, + "max_x": 2418.796994924945, + "max_y": 5255.224188793262, + "center": [ + 2418.6190426989433, + 5254.927601749928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5255.224188793262 + ], + [ + 2418.796994924945, + 5254.631014706593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5255.224188793262, + "max_x": 2418.441090472942, + "max_y": 5256.015260324696, + "center": [ + 2418.441090472942, + 5255.619724558979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5255.224188793262 + ], + [ + 2418.441090472942, + 5256.015260324696 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2419.034264559611, + "min_y": 5255.224188793262, + "max_x": 2419.630169642688, + "max_y": 5255.224188793262, + "center": [ + 2419.3322171011496, + 5255.224188793262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.034264559611, + 5255.224188793262 + ], + [ + 2419.630169642688, + 5255.224188793262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55745F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5254.075944341405, + "max_x": 2418.441090472942, + "max_y": 5254.610078517632, + "center": [ + 2418.441090472942, + 5254.343011429519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5254.610078517632 + ], + [ + 2418.441090472942, + 5254.075944341405 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557460", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2417.217983126677, + "min_y": 5255.224188793262, + "max_x": 2417.847916386274, + "max_y": 5255.224188793262, + "center": [ + 2417.5329497564753, + 5255.224188793262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.217983126677, + 5255.224188793262 + ], + [ + 2417.847916386274, + 5255.224188793262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557461", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.911143725098, + "min_y": 5309.662274857587, + "max_x": 2484.45120802359, + "max_y": 5310.202339156074, + "center": [ + 2484.1811758743443, + 5309.932307006831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5310.202339156074 + ], + [ + 2483.911143725098, + 5309.662274857587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557462", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.911143725098, + "min_y": 5309.122210559102, + "max_x": 2484.45120802359, + "max_y": 5309.662274857587, + "center": [ + 2484.1811758743443, + 5309.392242708345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.911143725098, + 5309.662274857587 + ], + [ + 2484.45120802359, + 5309.122210559102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557463", + "entity_type": "TEXT", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.271186590762, + "min_y": 5309.482253424759, + "max_x": 2484.4872123101563, + "max_y": 5309.842296290416, + "center": [ + 2484.379199450459, + 5309.662274857587 + ] + }, + "raw_value": "F", + "clean_value": "F", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557464", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5309.122210559102, + "max_x": 2484.991272322073, + "max_y": 5309.662274857587, + "center": [ + 2484.7212401728316, + 5309.392242708345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5309.122210559102 + ], + [ + 2484.991272322073, + 5309.662274857587 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557465", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5309.662274857587, + "max_x": 2484.991272322073, + "max_y": 5310.202339156074, + "center": [ + 2484.7212401728316, + 5309.932307006831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.991272322073, + 5309.662274857587 + ], + [ + 2484.45120802359, + 5310.202339156074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557466", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.111171321466, + "min_y": 5310.202339156074, + "max_x": 2484.791244725714, + "max_y": 5310.202339156074, + "center": [ + 2484.45120802359, + 5310.202339156074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.111171321466, + 5310.202339156074 + ], + [ + 2484.791244725714, + 5310.202339156074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557467", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.111171321466, + "min_y": 5309.122210559102, + "max_x": 2484.791244725714, + "max_y": 5309.122210559102, + "center": [ + 2484.45120802359, + 5309.122210559102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.111171321466, + 5309.122210559102 + ], + [ + 2484.791244725714, + 5309.122210559102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557468", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.85803393692, + "min_y": 5310.994679155929, + "max_x": 2485.04438211026, + "max_y": 5311.706488059932, + "center": [ + 2484.45120802359, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.04438211026, + 5311.706488059932 + ], + [ + 2483.85803393692, + 5310.994679155929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557469", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.85803393692, + "min_y": 5310.994679155929, + "max_x": 2485.04438211026, + "max_y": 5311.706488059932, + "center": [ + 2484.45120802359, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.85803393692, + 5311.706488059932 + ], + [ + 2485.04438211026, + 5310.994679155929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746A", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.85803393692, + "min_y": 5310.994679155929, + "max_x": 2483.85803393692, + "max_y": 5311.706488059932, + "center": [ + 2483.85803393692, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.85803393692, + 5311.706488059932 + ], + [ + 2483.85803393692, + 5310.994679155929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746B", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2483.85803393692, + "min_y": 5310.999696836756, + "max_x": 2483.85803393692, + "max_y": 5311.701470379105, + "center": [ + 2483.85803393692, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.85803393692, + 5310.999696836756 + ], + [ + 2483.85803393692, + 5311.701470379105 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746C", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2485.04438211026, + "min_y": 5310.994679155929, + "max_x": 2485.04438211026, + "max_y": 5311.706488059932, + "center": [ + 2485.04438211026, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.04438211026, + 5311.706488059932 + ], + [ + 2485.04438211026, + 5310.994679155929 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.095303571587, + "min_y": 5310.757409521261, + "max_x": 2484.807112475591, + "max_y": 5310.757409521261, + "center": [ + 2484.451208023589, + 5310.757409521261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.095303571587, + 5310.757409521261 + ], + [ + 2484.807112475591, + 5310.757409521261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5310.757409521261, + "max_x": 2484.45120802359, + "max_y": 5310.757409521261, + "center": [ + 2484.45120802359, + 5310.757409521261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5310.757409521261 + ], + [ + 2484.45120802359, + 5310.757409521261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55746F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.095303571587, + "min_y": 5310.757409521261, + "max_x": 2484.45120802359, + "max_y": 5311.35058360793, + "center": [ + 2484.2732557975887, + 5311.053996564596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.095303571587, + 5310.757409521261 + ], + [ + 2484.45120802359, + 5311.35058360793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557470", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5310.757409521261, + "max_x": 2484.807112475591, + "max_y": 5311.35058360793, + "center": [ + 2484.6291602495903, + 5311.053996564596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5311.35058360793 + ], + [ + 2484.807112475591, + 5310.757409521261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557471", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5311.35058360793, + "max_x": 2484.45120802359, + "max_y": 5312.141655139364, + "center": [ + 2484.45120802359, + 5311.746119373647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5311.35058360793 + ], + [ + 2484.45120802359, + 5312.141655139364 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557472", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2485.04438211026, + "min_y": 5311.35058360793, + "max_x": 2485.640287193337, + "max_y": 5311.35058360793, + "center": [ + 2485.3423346517984, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2485.04438211026, + 5311.35058360793 + ], + [ + 2485.640287193337, + 5311.35058360793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557473", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2484.45120802359, + "min_y": 5310.202339156074, + "max_x": 2484.45120802359, + "max_y": 5310.736473332301, + "center": [ + 2484.45120802359, + 5310.469406244188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2484.45120802359, + 5310.736473332301 + ], + [ + 2484.45120802359, + 5310.202339156074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557474", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2482.943290871328, + "min_y": 5311.35058360793, + "max_x": 2483.85803393692, + "max_y": 5311.35058360793, + "center": [ + 2483.400662404124, + 5311.35058360793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2483.85803393692, + 5311.35058360793 + ], + [ + 2482.943290871328, + 5311.35058360793 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557475", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2208.931430892471, + "min_y": 5241.681963104981, + "max_x": 2210.275288512943, + "max_y": 5242.8018444553745, + "center": [ + 2209.603359702707, + 5242.241903780177 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557476", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.834820155529, + "min_y": 5301.240909907304, + "max_x": 2132.834820155529, + "max_y": 5302.248443346361, + "center": [ + 2132.834820155529, + 5301.744676626832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.834820155529, + 5301.240909907304 + ], + [ + 2132.834820155529, + 5302.248443346361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557477", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.270109508977, + "min_y": 5301.240909907304, + "max_x": 2132.834820155529, + "max_y": 5301.579025680504, + "center": [ + 2132.552464832253, + 5301.409967793904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.270109508977, + 5301.579025680504 + ], + [ + 2132.834820155529, + 5301.240909907304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557478", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.152068551213, + "min_y": 5301.240909907304, + "max_x": 2131.152068551213, + "max_y": 5302.248443346361, + "center": [ + 2131.152068551213, + 5301.744676626832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.152068551213, + 5301.240909907304 + ], + [ + 2131.152068551213, + 5302.248443346361 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557479", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.152068551213, + "min_y": 5301.240909907304, + "max_x": 2131.716779197764, + "max_y": 5301.579025680504, + "center": [ + 2131.4344238744884, + 5301.409967793904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.716779197764, + 5301.579025680504 + ], + [ + 2131.152068551213, + 5301.240909907304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2131.67097909269, + "min_y": 5301.42221136615, + "max_x": 2132.3159096140544, + "max_y": 5302.0671418875145, + "center": [ + 2131.993444353372, + 5301.744676626832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.993444353372, + 5301.744676626832 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2133.113167733784, + "min_y": 5301.241217515475, + "max_x": 2133.113167733784, + "max_y": 5302.248750954524, + "center": [ + 2133.113167733784, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2133.113167733784, + 5302.248750954524 + ], + [ + 2133.113167733784, + 5301.241217515475 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.84555778618, + "min_y": 5301.241217515475, + "max_x": 2130.84555778618, + "max_y": 5302.248750954524, + "center": [ + 2130.84555778618, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.84555778618, + 5302.248750954524 + ], + [ + 2130.84555778618, + 5301.241217515475 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2132.270109508977, + "min_y": 5301.910327573164, + "max_x": 2132.834820155529, + "max_y": 5302.248443346361, + "center": [ + 2132.552464832253, + 5302.079385459762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2132.834820155529, + 5302.248443346361 + ], + [ + 2132.270109508977, + 5301.910327573164 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2131.152068551213, + "min_y": 5301.910327573164, + "max_x": 2131.716779197764, + "max_y": 5302.248443346361, + "center": [ + 2131.4344238744884, + 5302.079385459762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.152068551213, + 5302.248443346361 + ], + [ + 2131.716779197764, + 5301.910327573164 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55747F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.151363450672, + "min_y": 5298.882438024071, + "max_x": 2130.158896889728, + "max_y": 5298.882438024071, + "center": [ + 2129.6551301702, + 5298.882438024071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.151363450672, + 5298.882438024071 + ], + [ + 2130.158896889728, + 5298.882438024071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557480", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.151363450672, + "min_y": 5298.882438024071, + "max_x": 2129.489479223871, + "max_y": 5299.447148670622, + "center": [ + 2129.3204213372715, + 5299.164793347347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.489479223871, + 5299.447148670622 + ], + [ + 2129.151363450672, + 5298.882438024071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557481", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.151363450672, + "min_y": 5300.565189628386, + "max_x": 2130.158896889728, + "max_y": 5300.565189628386, + "center": [ + 2129.6551301702, + 5300.565189628386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.151363450672, + 5300.565189628386 + ], + [ + 2130.158896889728, + 5300.565189628386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557482", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.151363450672, + "min_y": 5300.000478981835, + "max_x": 2129.489479223871, + "max_y": 5300.565189628386, + "center": [ + 2129.3204213372715, + 5300.282834305111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.489479223871, + 5300.000478981835 + ], + [ + 2129.151363450672, + 5300.565189628386 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557483", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2129.3326649095166, + "min_y": 5299.401348565545, + "max_x": 2129.977595430881, + "max_y": 5300.04627908691, + "center": [ + 2129.655130170199, + 5299.723813826227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.655130170199, + 5299.723813826227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557484", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.820781116531, + "min_y": 5298.882438024071, + "max_x": 2130.158896889728, + "max_y": 5299.447148670622, + "center": [ + 2129.9898390031294, + 5299.164793347347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.158896889728, + 5298.882438024071 + ], + [ + 2129.820781116531, + 5299.447148670622 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557485", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.820781116531, + "min_y": 5300.000478981835, + "max_x": 2130.158896889728, + "max_y": 5300.565189628386, + "center": [ + 2129.9898390031294, + 5300.282834305111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.158896889728, + 5300.565189628386 + ], + [ + 2129.820781116531, + 5300.000478981835 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557486", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2129.5161101001704, + "min_y": 5298.604090360829, + "max_x": 2129.7944578483975, + "max_y": 5298.882438109057, + "center": [ + 2129.655283974284, + 5298.743264234943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.655283974284, + 5298.743264234943 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557487", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2129.5161101001704, + "min_y": 5300.565189628387, + "max_x": 2129.7944578483975, + "max_y": 5300.843537376615, + "center": [ + 2129.655283974284, + 5300.704363502501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.655283974284, + 5300.704363502501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557488", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2128.465010162386, + "min_y": 5301.744984235, + "max_x": 2130.84555778618, + "max_y": 5301.744984235, + "center": [ + 2129.655283974283, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.84555778618, + 5301.744984235 + ], + [ + 2128.465010162386, + 5301.744984235 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557489", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2129.655283974284, + "min_y": 5300.843537376614, + "max_x": 2129.655283974284, + "max_y": 5301.744984235, + "center": [ + 2129.655283974284, + 5301.294260805807 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.655283974284, + 5301.744984235 + ], + [ + 2129.655283974284, + 5300.843537376614 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55748A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2129.655283974284, + "min_y": 5297.553285955869, + "max_x": 2129.655283974284, + "max_y": 5298.604090360829, + "center": [ + 2129.655283974284, + 5298.078688158349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.655283974284, + 5298.604090360829 + ], + [ + 2129.655283974284, + 5297.553285955869 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55748B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.10651269482, + "min_y": 5296.899574350783, + "max_x": 2129.10651269482, + "max_y": 5297.642891466779, + "center": [ + 2129.10651269482, + 5297.271232908781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.10651269482, + 5297.642891466779 + ], + [ + 2129.10651269482, + 5296.899574350783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55748C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2130.20405525375, + "min_y": 5296.899574350783, + "max_x": 2130.20405525375, + "max_y": 5297.642891466779, + "center": [ + 2130.20405525375, + 5297.271232908781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2130.20405525375, + 5297.642891466779 + ], + [ + 2130.20405525375, + 5296.899574350783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55748D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2129.10651269482, + "min_y": 5296.899574350783, + "max_x": 2130.20405525375, + "max_y": 5296.899574350783, + "center": [ + 2129.6552839742853, + 5296.899574350783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2129.10651269482, + 5296.899574350783 + ], + [ + 2130.20405525375, + 5296.899574350783 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55748E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2127.042547199428, + "min_y": 5301.744984235, + "max_x": 2128.093351604388, + "max_y": 5301.744984235, + "center": [ + 2127.5679494019078, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2127.042547199428, + 5301.744984235 + ], + [ + 2128.093351604388, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55748F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2128.093351604388, + "min_y": 5302.293755514465, + "max_x": 2128.836668720385, + "max_y": 5302.293755514465, + "center": [ + 2128.4650101623865, + 5302.293755514465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.836668720385, + 5302.293755514465 + ], + [ + 2128.093351604388, + 5302.293755514465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557490", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2128.093351604388, + "min_y": 5301.196212955535, + "max_x": 2128.836668720385, + "max_y": 5301.196212955535, + "center": [ + 2128.4650101623865, + 5301.196212955535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.836668720385, + 5301.196212955535 + ], + [ + 2128.093351604388, + 5301.196212955535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557491", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2128.093351604388, + "min_y": 5301.196212955535, + "max_x": 2128.093351604388, + "max_y": 5302.293755514465, + "center": [ + 2128.093351604388, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2128.093351604388, + 5302.293755514465 + ], + [ + 2128.093351604388, + 5301.196212955535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557492", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2124.272277459904, + "min_y": 5301.547107825033, + "max_x": 2124.6680302798377, + "max_y": 5301.9428606449665, + "center": [ + 2124.470153869871, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.470153869871, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557493", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2124.668030279837, + "min_y": 5301.547107825035, + "max_x": 2125.0637830997675, + "max_y": 5301.942860644965, + "center": [ + 2124.865906689802, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.865906689802, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557494", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2125.0637830997675, + "min_y": 5301.547107825035, + "max_x": 2125.4595359196983, + "max_y": 5301.942860644965, + "center": [ + 2125.261659509733, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.261659509733, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557495", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2125.063783099769, + "min_y": 5301.547107825033, + "max_x": 2125.4595359197033, + "max_y": 5301.9428606449665, + "center": [ + 2125.261659509736, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.261659509736, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557496", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2125.4595359197015, + "min_y": 5301.547107825035, + "max_x": 2125.855288739632, + "max_y": 5301.942860644965, + "center": [ + 2125.657412329667, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.657412329667, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557497", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2125.855288739632, + "min_y": 5301.547107825032, + "max_x": 2126.2510415595675, + "max_y": 5301.942860644967, + "center": [ + 2126.0531651496, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.0531651496, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557498", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2126.2510415595684, + "min_y": 5301.547107825035, + "max_x": 2126.646794379499, + "max_y": 5301.942860644965, + "center": [ + 2126.448917969534, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.448917969534, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557499", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2126.6467943794964, + "min_y": 5301.547107825035, + "max_x": 2127.042547199427, + "max_y": 5301.942860644965, + "center": [ + 2126.844670789462, + 5301.744984235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.844670789462, + 5301.744984235 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55749A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.221480084052, + "min_y": 5301.746652090152, + "max_x": 2124.272284489013, + "max_y": 5301.746652090152, + "center": [ + 2123.7468822865326, + 5301.746652090152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2124.272284489013, + 5301.746652090152 + ], + [ + 2123.221480084052, + 5301.746652090152 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55749B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.478162968057, + "min_y": 5301.197880810686, + "max_x": 2123.221480084052, + "max_y": 5301.197880810686, + "center": [ + 2122.8498215260543, + 5301.197880810686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.478162968057, + 5301.197880810686 + ], + [ + 2123.221480084052, + 5301.197880810686 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55749C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.478162968057, + "min_y": 5302.295423369617, + "max_x": 2123.221480084052, + "max_y": 5302.295423369617, + "center": [ + 2122.8498215260543, + 5302.295423369617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.478162968057, + 5302.295423369617 + ], + [ + 2123.221480084052, + 5302.295423369617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55749D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.221480084052, + "min_y": 5301.197880810686, + "max_x": 2123.221480084052, + "max_y": 5302.295423369617, + "center": [ + 2123.221480084052, + 5301.746652090152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.221480084052, + 5301.197880810686 + ], + [ + 2123.221480084052, + 5302.295423369617 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55749E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2128.862671463612, + "min_y": 5302.557763717708, + "max_x": 2130.206529084084, + "max_y": 5303.677645068102, + "center": [ + 2129.534600273848, + 5303.117704392906 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55749F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2123.574322430934, + "min_y": 5302.611538650145, + "max_x": 2124.918180051406, + "max_y": 5303.7314200005385, + "center": [ + 2124.2462512411703, + 5303.171479325341 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574A0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2422.267595527879, + "min_y": 5174.152730861512, + "max_x": 2430.98481967715, + "max_y": 5174.152730861512, + "center": [ + 2426.6262076025146, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.267595527879, + 5174.152730861512 + ], + [ + 2430.98481967715, + 5174.152730861512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574A1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2424.978329306947, + "min_y": 5324.968567763614, + "max_x": 2479.646685912309, + "max_y": 5324.971512074332, + "center": [ + 2452.312507609628, + 5324.970039918973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2424.978329306947, + 5324.968567763614 + ], + [ + 2479.646685912309, + 5324.971512074332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.115904669374, + "min_y": 5275.007152703762, + "max_x": 2497.12343810843, + "max_y": 5275.007152703762, + "center": [ + 2496.619671388902, + 5275.007152703762 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.12343810843, + 5275.007152703762 + ], + [ + 2496.115904669374, + 5275.007152703762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.78532233523, + "min_y": 5275.007152703762, + "max_x": 2497.12343810843, + "max_y": 5275.571863350313, + "center": [ + 2496.95438022183, + 5275.289508027037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.78532233523, + 5275.571863350313 + ], + [ + 2497.12343810843, + 5275.007152703762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.115904669374, + "min_y": 5276.689904308078, + "max_x": 2497.12343810843, + "max_y": 5276.689904308078, + "center": [ + 2496.619671388902, + 5276.689904308078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.12343810843, + 5276.689904308078 + ], + [ + 2496.115904669374, + 5276.689904308078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.78532233523, + "min_y": 5276.125193661527, + "max_x": 2497.12343810843, + "max_y": 5276.689904308078, + "center": [ + 2496.95438022183, + 5276.407548984803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.78532233523, + 5276.125193661527 + ], + [ + 2497.12343810843, + 5276.689904308078 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2496.29720612822, + "min_y": 5275.5260632452355, + "max_x": 2496.9421366495844, + "max_y": 5276.1709937666, + "center": [ + 2496.619671388902, + 5275.848528505918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.619671388902, + 5275.848528505918 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.115904669374, + "min_y": 5275.007152703762, + "max_x": 2496.454020442571, + "max_y": 5275.571863350313, + "center": [ + 2496.2849625559725, + 5275.289508027037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.115904669374, + 5275.007152703762 + ], + [ + 2496.454020442571, + 5275.571863350313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.115904669374, + "min_y": 5276.125193661527, + "max_x": 2496.454020442571, + "max_y": 5276.689904308078, + "center": [ + 2496.2849625559725, + 5276.407548984803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.115904669374, + 5276.689904308078 + ], + [ + 2496.454020442571, + 5276.125193661527 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574A9", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2496.4803437107043, + "min_y": 5274.728805040521, + "max_x": 2496.7586914589315, + "max_y": 5275.007152788749, + "center": [ + 2496.619517584818, + 5274.867978914635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.619517584818, + 5274.867978914635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574AA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2496.4803437107043, + "min_y": 5276.6899043080775, + "max_x": 2496.7586914589315, + "max_y": 5276.968252056306, + "center": [ + 2496.619517584818, + 5276.829078182192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.619517584818, + 5276.829078182192 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574AB", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2496.619517584818, + "min_y": 5276.968252056304, + "max_x": 2496.619517584818, + "max_y": 5277.869698914691, + "center": [ + 2496.619517584818, + 5277.418975485498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.619517584818, + 5277.869698914691 + ], + [ + 2496.619517584818, + 5276.968252056304 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574AC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2496.619517584818, + "min_y": 5273.67800063556, + "max_x": 2496.619517584818, + "max_y": 5274.72880504052, + "center": [ + 2496.619517584818, + 5274.20340283804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.619517584818, + 5274.72880504052 + ], + [ + 2496.619517584818, + 5273.67800063556 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.168288864281, + "min_y": 5273.024289030473, + "max_x": 2497.168288864281, + "max_y": 5273.767606146471, + "center": [ + 2497.168288864281, + 5273.395947588471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.168288864281, + 5273.767606146471 + ], + [ + 2497.168288864281, + 5273.024289030473 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.070746305351, + "min_y": 5273.024289030473, + "max_x": 2496.070746305351, + "max_y": 5273.767606146471, + "center": [ + 2496.070746305351, + 5273.395947588471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2496.070746305351, + 5273.767606146471 + ], + [ + 2496.070746305351, + 5273.024289030473 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2496.070746305351, + "min_y": 5273.024289030473, + "max_x": 2497.168288864281, + "max_y": 5273.024289030473, + "center": [ + 2496.619517584816, + 5273.024289030473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.168288864281, + 5273.024289030473 + ], + [ + 2496.070746305351, + 5273.024289030473 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2498.181449954712, + "min_y": 5277.869698914691, + "max_x": 2499.232254359673, + "max_y": 5277.869698914691, + "center": [ + 2498.7068521571928, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.232254359673, + 5277.869698914691 + ], + [ + 2498.181449954712, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.438132838717, + "min_y": 5278.418470194157, + "max_x": 2498.181449954712, + "max_y": 5278.418470194157, + "center": [ + 2497.809791396715, + 5278.418470194157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.438132838717, + 5278.418470194157 + ], + [ + 2498.181449954712, + 5278.418470194157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2497.438132838717, + "min_y": 5277.320927635226, + "max_x": 2498.181449954712, + "max_y": 5277.320927635226, + "center": [ + 2497.809791396715, + 5277.320927635226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.438132838717, + 5277.320927635226 + ], + [ + 2498.181449954712, + 5277.320927635226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2498.181449954712, + "min_y": 5277.320927635226, + "max_x": 2498.181449954712, + "max_y": 5278.418470194157, + "center": [ + 2498.181449954712, + 5277.869698914692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2498.181449954712, + 5278.418470194157 + ], + [ + 2498.181449954712, + 5277.320927635226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2501.606771279264, + "min_y": 5277.671822504724, + "max_x": 2502.0025240991977, + "max_y": 5278.067575324658, + "center": [ + 2501.804647689231, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.804647689231, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2501.211018459335, + "min_y": 5277.671822504726, + "max_x": 2501.6067712792656, + "max_y": 5278.067575324656, + "center": [ + 2501.4088948693, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.4088948693, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2500.8152656394036, + "min_y": 5277.671822504726, + "max_x": 2501.2110184593344, + "max_y": 5278.067575324656, + "center": [ + 2501.013142049369, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.013142049369, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2500.8152656393986, + "min_y": 5277.671822504724, + "max_x": 2501.211018459333, + "max_y": 5278.067575324658, + "center": [ + 2501.013142049366, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.013142049366, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2500.4195128194688, + "min_y": 5277.671822504726, + "max_x": 2500.8152656393995, + "max_y": 5278.067575324656, + "center": [ + 2500.617389229434, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.617389229434, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574B9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2500.0237599995335, + "min_y": 5277.671822504723, + "max_x": 2500.4195128194688, + "max_y": 5278.067575324659, + "center": [ + 2500.221636409501, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2500.221636409501, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2499.628007179602, + "min_y": 5277.671822504726, + "max_x": 2500.0237599995326, + "max_y": 5278.067575324656, + "center": [ + 2499.825883589567, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.825883589567, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2499.2322543596724, + "min_y": 5277.671822504726, + "max_x": 2499.628007179603, + "max_y": 5278.067575324656, + "center": [ + 2499.430130769638, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2499.430130769638, + 5277.869698914691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2502.002517070088, + "min_y": 5277.871366769842, + "max_x": 2503.053321475048, + "max_y": 5277.871366769842, + "center": [ + 2502.527919272568, + 5277.871366769842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2502.002517070088, + 5277.871366769842 + ], + [ + 2503.053321475048, + 5277.871366769842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2503.053321475048, + "min_y": 5277.322595490377, + "max_x": 2503.796638591044, + "max_y": 5277.322595490377, + "center": [ + 2503.4249800330463, + 5277.322595490377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2503.796638591044, + 5277.322595490377 + ], + [ + 2503.053321475048, + 5277.322595490377 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2503.053321475048, + "min_y": 5278.420138049308, + "max_x": 2503.796638591044, + "max_y": 5278.420138049308, + "center": [ + 2503.4249800330463, + 5278.420138049308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2503.796638591044, + 5278.420138049308 + ], + [ + 2503.053321475048, + 5278.420138049308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2503.053321475048, + "min_y": 5277.322595490377, + "max_x": 2503.053321475048, + "max_y": 5278.420138049308, + "center": [ + 2503.053321475048, + 5277.871366769843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2503.053321475048, + 5277.322595490377 + ], + [ + 2503.053321475048, + 5278.420138049308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2497.703325232563, + "min_y": 5277.164954015669, + "max_x": 2499.0471828530353, + "max_y": 5278.284835366062, + "center": [ + 2498.3752540427995, + 5277.724894690866 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574C1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2502.991674265241, + "min_y": 5277.218728948107, + "max_x": 2504.335531885713, + "max_y": 5278.3386102985005, + "center": [ + 2503.663603075477, + 5277.778669623303 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574C2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2504.969284836458, + "min_y": 5277.209914809028, + "max_x": 2509.0008576978744, + "max_y": 5278.329796159422, + "center": [ + 2506.985071267166, + 5277.7698554842245 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574C3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2495.081656695486, + "min_y": 5277.869698914691, + "max_x": 2497.809791396714, + "max_y": 5277.869698914691, + "center": [ + 2496.4457240460997, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2497.809791396714, + 5277.869698914691 + ], + [ + 2495.081656695486, + 5277.869698914691 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.803309117236, + "min_y": 5277.365624587, + "max_x": 2494.803309117236, + "max_y": 5278.37315802605, + "center": [ + 2494.803309117236, + 5277.869391306525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.803309117236, + 5277.365624587 + ], + [ + 2494.803309117236, + 5278.37315802605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.238598470682, + "min_y": 5277.365624587, + "max_x": 2494.803309117236, + "max_y": 5277.703740360194, + "center": [ + 2494.520953793959, + 5277.534682473597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.238598470682, + 5277.703740360194 + ], + [ + 2494.803309117236, + 5277.365624587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.120557512918, + "min_y": 5277.365624587, + "max_x": 2493.120557512918, + "max_y": 5278.37315802605, + "center": [ + 2493.120557512918, + 5277.869391306525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.120557512918, + 5277.365624587 + ], + [ + 2493.120557512918, + 5278.37315802605 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.120557512918, + "min_y": 5277.365624587, + "max_x": 2493.685268159472, + "max_y": 5277.703740360194, + "center": [ + 2493.402912836195, + 5277.534682473597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.685268159472, + 5277.703740360194 + ], + [ + 2493.120557512918, + 5277.365624587 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2493.639468054395, + "min_y": 5277.546926045842, + "max_x": 2494.2843985757595, + "max_y": 5278.191856567207, + "center": [ + 2493.961933315077, + 5277.869391306524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.961933315077, + 5277.869391306524 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2495.081656695486, + "min_y": 5277.365932195166, + "max_x": 2495.081656695486, + "max_y": 5278.373465634217, + "center": [ + 2495.081656695486, + 5277.869698914692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2495.081656695486, + 5278.373465634217 + ], + [ + 2495.081656695486, + 5277.365932195166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2492.814046747888, + "min_y": 5277.365932195166, + "max_x": 2492.814046747888, + "max_y": 5278.373465634217, + "center": [ + 2492.814046747888, + 5277.869698914692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2492.814046747888, + 5278.373465634217 + ], + [ + 2492.814046747888, + 5277.365932195166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2494.238598470682, + "min_y": 5278.035042252852, + "max_x": 2494.803309117236, + "max_y": 5278.37315802605, + "center": [ + 2494.520953793959, + 5278.204100139451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2494.803309117236, + 5278.37315802605 + ], + [ + 2494.238598470682, + 5278.035042252852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.120557512918, + "min_y": 5278.035042252856, + "max_x": 2493.685268159472, + "max_y": 5278.37315802605, + "center": [ + 2493.402912836195, + 5278.204100139454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.120557512918, + 5278.37315802605 + ], + [ + 2493.685268159472, + 5278.035042252856 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574CD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5277.869698914691, + "max_x": 2492.814046747888, + "max_y": 5277.869698914691, + "center": [ + 2424.8838096853333, + 5277.869698914691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5277.869698914691 + ], + [ + 2492.814046747888, + 5277.869698914691 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574CE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2369.551868194454, + "min_y": 5269.020156517935, + "max_x": 2380.974657968467, + "max_y": 5270.140037868328, + "center": [ + 2375.2632630814605, + 5269.580097193131 + ] + }, + "raw_value": "P-10223-25A-F2A-n", + "clean_value": "P-10223-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.286677598636, + "min_y": 5171.290184650583, + "max_x": 2435.294211037692, + "max_y": 5171.290184650583, + "center": [ + 2434.790444318164, + 5171.290184650583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.294211037692, + 5171.290184650583 + ], + [ + 2434.286677598636, + 5171.290184650583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.956095264493, + "min_y": 5171.290184650583, + "max_x": 2435.294211037692, + "max_y": 5171.854895297135, + "center": [ + 2435.1251531510925, + 5171.5725399738585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.956095264493, + 5171.854895297135 + ], + [ + 2435.294211037692, + 5171.290184650583 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.286677598636, + "min_y": 5172.972936254899, + "max_x": 2435.294211037692, + "max_y": 5172.972936254899, + "center": [ + 2434.790444318164, + 5172.972936254899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.294211037692, + 5172.972936254899 + ], + [ + 2434.286677598636, + 5172.972936254899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.956095264493, + "min_y": 5172.408225608348, + "max_x": 2435.294211037692, + "max_y": 5172.972936254899, + "center": [ + 2435.1251531510925, + 5172.690580931623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.956095264493, + 5172.408225608348 + ], + [ + 2435.294211037692, + 5172.972936254899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2434.467979057482, + "min_y": 5171.809095192058, + "max_x": 2435.1129095788465, + "max_y": 5172.454025713422, + "center": [ + 2434.790444318164, + 5172.13156045274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.790444318164, + 5172.13156045274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.286677598636, + "min_y": 5171.290184650583, + "max_x": 2434.624793371833, + "max_y": 5171.854895297135, + "center": [ + 2434.4557354852345, + 5171.5725399738585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.286677598636, + 5171.290184650583 + ], + [ + 2434.624793371833, + 5171.854895297135 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.286677598636, + "min_y": 5172.408225608348, + "max_x": 2434.624793371833, + "max_y": 5172.972936254899, + "center": [ + 2434.4557354852345, + 5172.690580931623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.286677598636, + 5172.972936254899 + ], + [ + 2434.624793371833, + 5172.408225608348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574D6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2434.6511166399664, + "min_y": 5171.011836987342, + "max_x": 2434.9294643881935, + "max_y": 5171.29018473557, + "center": [ + 2434.79029051408, + 5171.151010861456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.79029051408, + 5171.151010861456 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574D7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2434.6511166399664, + "min_y": 5172.972936254899, + "max_x": 2434.9294643881935, + "max_y": 5173.251284003127, + "center": [ + 2434.79029051408, + 5173.112110129013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.79029051408, + 5173.112110129013 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574D8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2434.79029051408, + "min_y": 5173.251284003127, + "max_x": 2434.79029051408, + "max_y": 5174.152730861512, + "center": [ + 2434.79029051408, + 5173.702007432319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.79029051408, + 5174.152730861512 + ], + [ + 2434.79029051408, + 5173.251284003127 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574D9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2434.79029051408, + "min_y": 5169.961032582381, + "max_x": 2434.79029051408, + "max_y": 5171.011836987342, + "center": [ + 2434.79029051408, + 5170.486434784862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.79029051408, + 5171.011836987342 + ], + [ + 2434.79029051408, + 5169.961032582381 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2435.339061793543, + "min_y": 5169.307320977296, + "max_x": 2435.339061793543, + "max_y": 5170.050638093292, + "center": [ + 2435.339061793543, + 5169.678979535294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.339061793543, + 5170.050638093292 + ], + [ + 2435.339061793543, + 5169.307320977296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.241519234613, + "min_y": 5169.307320977296, + "max_x": 2434.241519234613, + "max_y": 5170.050638093292, + "center": [ + 2434.241519234613, + 5169.678979535294 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.241519234613, + 5170.050638093292 + ], + [ + 2434.241519234613, + 5169.307320977296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2434.241519234613, + "min_y": 5169.307320977296, + "max_x": 2435.339061793543, + "max_y": 5169.307320977296, + "center": [ + 2434.790290514078, + 5169.307320977296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.339061793543, + 5169.307320977296 + ], + [ + 2434.241519234613, + 5169.307320977296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.352222883975, + "min_y": 5174.152730861512, + "max_x": 2437.403027288935, + "max_y": 5174.152730861512, + "center": [ + 2436.877625086455, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.403027288935, + 5174.152730861512 + ], + [ + 2436.352222883975, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2435.608905767979, + "min_y": 5174.701502140978, + "max_x": 2436.352222883975, + "max_y": 5174.701502140978, + "center": [ + 2435.980564325977, + 5174.701502140978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.608905767979, + 5174.701502140978 + ], + [ + 2436.352222883975, + 5174.701502140978 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2435.608905767979, + "min_y": 5173.603959582048, + "max_x": 2436.352222883975, + "max_y": 5173.603959582048, + "center": [ + 2435.980564325977, + 5173.603959582048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.608905767979, + 5173.603959582048 + ], + [ + 2436.352222883975, + 5173.603959582048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.352222883975, + "min_y": 5173.603959582048, + "max_x": 2436.352222883975, + "max_y": 5174.701502140978, + "center": [ + 2436.352222883975, + 5174.152730861513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.352222883975, + 5174.701502140978 + ], + [ + 2436.352222883975, + 5173.603959582048 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.7775442085263, + "min_y": 5173.9548544515455, + "max_x": 2440.1732970284597, + "max_y": 5174.350607271479, + "center": [ + 2439.975420618493, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.975420618493, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2439.3817913885964, + "min_y": 5173.954854451547, + "max_x": 2439.777544208527, + "max_y": 5174.350607271477, + "center": [ + 2439.579667798562, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.579667798562, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2438.9860385686657, + "min_y": 5173.954854451547, + "max_x": 2439.3817913885964, + "max_y": 5174.350607271477, + "center": [ + 2439.183914978631, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.183914978631, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2438.9860385686607, + "min_y": 5173.9548544515455, + "max_x": 2439.381791388595, + "max_y": 5174.350607271479, + "center": [ + 2439.183914978628, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.183914978628, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2438.5902857487317, + "min_y": 5173.954854451547, + "max_x": 2438.9860385686625, + "max_y": 5174.350607271477, + "center": [ + 2438.788162158697, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.788162158697, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2438.1945329287964, + "min_y": 5173.954854451545, + "max_x": 2438.5902857487317, + "max_y": 5174.35060727148, + "center": [ + 2438.392409338764, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2438.392409338764, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2437.798780108865, + "min_y": 5173.954854451547, + "max_x": 2438.1945329287955, + "max_y": 5174.350607271477, + "center": [ + 2437.99665651883, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.99665651883, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2437.403027288936, + "min_y": 5173.954854451547, + "max_x": 2437.7987801088666, + "max_y": 5174.350607271477, + "center": [ + 2437.600903698901, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.600903698901, + 5174.152730861512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2440.17328999935, + "min_y": 5174.154398716663, + "max_x": 2441.224094404311, + "max_y": 5174.154398716663, + "center": [ + 2440.6986922018305, + 5174.154398716663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.17328999935, + 5174.154398716663 + ], + [ + 2441.224094404311, + 5174.154398716663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.224094404311, + "min_y": 5173.605627437199, + "max_x": 2441.967411520307, + "max_y": 5173.605627437199, + "center": [ + 2441.5957529623092, + 5173.605627437199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.967411520307, + 5173.605627437199 + ], + [ + 2441.224094404311, + 5173.605627437199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.224094404311, + "min_y": 5174.703169996129, + "max_x": 2441.967411520307, + "max_y": 5174.703169996129, + "center": [ + 2441.5957529623092, + 5174.703169996129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.967411520307, + 5174.703169996129 + ], + [ + 2441.224094404311, + 5174.703169996129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.224094404311, + "min_y": 5173.605627437199, + "max_x": 2441.224094404311, + "max_y": 5174.703169996129, + "center": [ + 2441.224094404311, + 5174.154398716664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.224094404311, + 5173.605627437199 + ], + [ + 2441.224094404311, + 5174.703169996129 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574ED", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2435.874098161825, + "min_y": 5173.447985962491, + "max_x": 2437.217955782297, + "max_y": 5174.567867312884, + "center": [ + 2436.5460269720606, + 5174.007926637687 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574EE", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2441.162447194503, + "min_y": 5173.501760894929, + "max_x": 2442.506304814975, + "max_y": 5174.621642245323, + "center": [ + 2441.834376004739, + 5174.061701570126 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574EF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2443.14005776572, + "min_y": 5173.49294675585, + "max_x": 2447.1716306271364, + "max_y": 5174.612828106244, + "center": [ + 2445.155844196428, + 5174.052887431048 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574F0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2433.252429624748, + "min_y": 5174.152730861512, + "max_x": 2435.980564325977, + "max_y": 5174.152730861512, + "center": [ + 2434.6164969753627, + 5174.152730861512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.980564325977, + 5174.152730861512 + ], + [ + 2433.252429624748, + 5174.152730861512 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5574F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.974082046499, + "min_y": 5173.648656533821, + "max_x": 2432.974082046499, + "max_y": 5174.656189972871, + "center": [ + 2432.974082046499, + 5174.152423253347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.974082046499, + 5173.648656533821 + ], + [ + 2432.974082046499, + 5174.656189972871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.409371399945, + "min_y": 5173.648656533821, + "max_x": 2432.974082046499, + "max_y": 5173.986772307014, + "center": [ + 2432.691726723222, + 5173.817714420417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.409371399945, + 5173.986772307014 + ], + [ + 2432.974082046499, + 5173.648656533821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.29133044218, + "min_y": 5173.648656533821, + "max_x": 2431.29133044218, + "max_y": 5174.656189972871, + "center": [ + 2431.29133044218, + 5174.152423253347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.29133044218, + 5173.648656533821 + ], + [ + 2431.29133044218, + 5174.656189972871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.29133044218, + "min_y": 5173.648656533821, + "max_x": 2431.856041088734, + "max_y": 5173.986772307014, + "center": [ + 2431.573685765457, + 5173.817714420417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.856041088734, + 5173.986772307014 + ], + [ + 2431.29133044218, + 5173.648656533821 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2431.810240983658, + "min_y": 5173.829957992663, + "max_x": 2432.4551715050225, + "max_y": 5174.474888514028, + "center": [ + 2432.13270624434, + 5174.152423253346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.13270624434, + 5174.152423253346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2433.252429624748, + "min_y": 5173.648964141988, + "max_x": 2433.252429624748, + "max_y": 5174.656497581038, + "center": [ + 2433.252429624748, + 5174.152730861513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.252429624748, + 5174.656497581038 + ], + [ + 2433.252429624748, + 5173.648964141988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.98481967715, + "min_y": 5173.648964141988, + "max_x": 2430.98481967715, + "max_y": 5174.656497581038, + "center": [ + 2430.98481967715, + 5174.152730861513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.98481967715, + 5174.656497581038 + ], + [ + 2430.98481967715, + 5173.648964141988 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.409371399945, + "min_y": 5174.318074199674, + "max_x": 2432.974082046499, + "max_y": 5174.656189972871, + "center": [ + 2432.691726723222, + 5174.487132086273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.974082046499, + 5174.656189972871 + ], + [ + 2432.409371399945, + 5174.318074199674 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.29133044218, + "min_y": 5174.318074199677, + "max_x": 2431.856041088734, + "max_y": 5174.656189972871, + "center": [ + 2431.573685765457, + 5174.487132086274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.29133044218, + 5174.656189972871 + ], + [ + 2431.856041088734, + 5174.318074199677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5574FA", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2429.338074638283, + "min_y": 5172.006874519148, + "max_x": 2437.4012203611155, + "max_y": 5173.126755869542, + "center": [ + 2433.3696474996996, + 5172.566815194345 + ] + }, + "raw_value": "HD10219BA-04", + "clean_value": "HD10219BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5574FB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2190.500658757608, + "min_y": 5340.614574688448, + "max_x": 2203.250507931837, + "max_y": 5341.795116278654, + "center": [ + 2196.8755833447226, + 5341.204845483551 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5574FC", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402807024, + "min_y": 5188.298937564525, + "max_x": 2450.162343482221, + "max_y": 5189.232172023186, + "center": [ + 2449.8823731446228, + 5188.765554793856 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574FD", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402807015, + "min_y": 5191.701296673034, + "max_x": 2450.162343482212, + "max_y": 5192.634531131695, + "center": [ + 2449.8823731446137, + 5192.167913902365 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574FE", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402807006, + "min_y": 5195.116747246898, + "max_x": 2450.1623434822027, + "max_y": 5196.049981705559, + "center": [ + 2449.8823731446046, + 5195.583364476228 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5574FF", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2487.028649001982, + "min_y": 5195.14841937895, + "max_x": 2487.588589677179, + "max_y": 5196.081653837611, + "center": [ + 2487.30861933958, + 5195.61503660828 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557500", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2492.699247516058, + "min_y": 5195.148419378945, + "max_x": 2493.259188191255, + "max_y": 5196.081653837606, + "center": [ + 2492.9792178536563, + 5195.615036608275 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557501", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2498.045761023497, + "min_y": 5195.148419378931, + "max_x": 2498.605701698694, + "max_y": 5196.081653837592, + "center": [ + 2498.3257313610957, + 5195.615036608262 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557502", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402806997, + "min_y": 5198.519106355409, + "max_x": 2450.1623434821936, + "max_y": 5199.45234081407, + "center": [ + 2449.8823731445955, + 5198.985723584739 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557503", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2487.028649001973, + "min_y": 5198.550778487461, + "max_x": 2487.5885896771697, + "max_y": 5199.484012946122, + "center": [ + 2487.308619339571, + 5199.017395716792 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557504", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2492.699247516048, + "min_y": 5198.550778487455, + "max_x": 2493.259188191245, + "max_y": 5199.484012946116, + "center": [ + 2492.9792178536463, + 5199.017395716786 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557505", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2498.045761023487, + "min_y": 5198.550778487441, + "max_x": 2498.605701698684, + "max_y": 5199.484012946102, + "center": [ + 2498.3257313610857, + 5199.017395716772 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557506", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402806988, + "min_y": 5201.934556929271, + "max_x": 2450.1623434821845, + "max_y": 5202.867791387932, + "center": [ + 2449.8823731445864, + 5202.401174158602 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557507", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2487.028649001963, + "min_y": 5201.953137595971, + "max_x": 2487.5885896771597, + "max_y": 5202.886372054632, + "center": [ + 2487.308619339561, + 5202.419754825301 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557508", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2492.699247516039, + "min_y": 5201.953137595966, + "max_x": 2493.259188191236, + "max_y": 5202.886372054627, + "center": [ + 2492.9792178536372, + 5202.419754825296 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557509", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2498.045761023478, + "min_y": 5201.953137595952, + "max_x": 2498.6057016986747, + "max_y": 5202.886372054613, + "center": [ + 2498.3257313610766, + 5202.419754825283 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55750A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2449.602402806979, + "min_y": 5205.324759677099, + "max_x": 2450.162343482176, + "max_y": 5206.25799413576, + "center": [ + 2449.8823731445773, + 5205.791376906429 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55750B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2487.028649001955, + "min_y": 5205.355496704483, + "max_x": 2487.5885896771515, + "max_y": 5206.288731163144, + "center": [ + 2487.308619339553, + 5205.822113933813 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55750C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2492.699247516031, + "min_y": 5205.355496704477, + "max_x": 2493.2591881912276, + "max_y": 5206.288731163138, + "center": [ + 2492.979217853629, + 5205.8221139338075 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55750D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2498.045761023469, + "min_y": 5205.355496704464, + "max_x": 2498.6057016986656, + "max_y": 5206.288731163125, + "center": [ + 2498.3257313610675, + 5205.822113933795 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55750E", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2154.094416766249, + "min_y": 5345.297974020525, + "max_x": 2158.9472359512874, + "max_y": 5346.119220344146, + "center": [ + 2156.5208263587683, + 5345.708597182335 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 1000\\P H 900\\P L 150\\P LL 100", + "clean_value": "\\Fmonotxt.shx; .6; HH 1000 H 900 L 150 LL 100", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557512", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2184.59136291063, + "min_y": 5236.126850790272, + "max_x": 2189.444182095668, + "max_y": 5236.948097113894, + "center": [ + 2187.017772503149, + 5236.537473952083 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 1700\\P H 1600\\P L 950\\P LL 750", + "clean_value": "\\Fmonotxt.shx; .6; HH 1700 H 1600 L 950 LL 750", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557516", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2197.147971087336, + "min_y": 5291.983097871021, + "max_x": 2202.000790272374, + "max_y": 5292.804344194642, + "center": [ + 2199.574380679855, + 5292.393721032831 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 60\\P L 4\\P LL 2", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 60 L 4 LL 2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55751A", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2254.785991014418, + "min_y": 5264.090172567567, + "max_x": 2258.8663027367766, + "max_y": 5264.911418891188, + "center": [ + 2256.8261468755973, + 5264.500795729377 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6;\\P HH 101\\P H 90\\P L 78\\P LL 73", + "clean_value": "\\Fmonotxt.shx; .6; HH 101 H 90 L 78 LL 73", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55751E", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2247.87939394386, + "min_y": 5310.938023911671, + "max_x": 2252.7322131288984, + "max_y": 5311.759270235292, + "center": [ + 2250.3058035363792, + 5311.3486470734815 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 102\\P H 89\\P L 77\\P LL 72", + "clean_value": "\\Fmonotxt.shx; .6; HH 102 H 89 L 77 LL 72", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557522", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2239.876551152874, + "min_y": 5266.023501947103, + "max_x": 2249.006116590495, + "max_y": 5266.023501947103, + "center": [ + 2244.4413338716845, + 5266.023501947103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2249.006116590495, + 5266.023501947103 + ], + [ + 2239.876551152874, + 5266.023501947103 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557523", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2239.876551152874, + "min_y": 5266.023501947103, + "max_x": 2239.876551152874, + "max_y": 5269.21380881706, + "center": [ + 2239.876551152874, + 5267.618655382082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.876551152874, + 5266.023501947103 + ], + [ + 2239.876551152874, + 5269.21380881706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557524", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2224.659036619112, + "min_y": 5349.870139523501, + "max_x": 2239.876551152874, + "max_y": 5349.870139523501, + "center": [ + 2232.2677938859933, + 5349.870139523501 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2224.659036619112, + 5349.870139523501 + ], + [ + 2239.876551152874, + 5349.870139523501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557525", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2239.876551152874, + "min_y": 5281.187095309126, + "max_x": 2239.876551152874, + "max_y": 5294.297298123417, + "center": [ + 2239.876551152874, + 5287.742196716272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.876551152874, + 5281.187095309126 + ], + [ + 2239.876551152874, + 5294.297298123417 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557526", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2239.876551152874, + "min_y": 5299.101169907469, + "max_x": 2239.876551152874, + "max_y": 5335.995612272359, + "center": [ + 2239.876551152874, + 5317.548391089914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.876551152874, + 5299.101169907469 + ], + [ + 2239.876551152874, + 5335.995612272359 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557527", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 2239.876551152874, + "min_y": 5337.191381222933, + "max_x": 2239.876551152874, + "max_y": 5349.870139523501, + "center": [ + 2239.876551152874, + 5343.530760373217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2239.876551152874, + 5337.191381222933 + ], + [ + 2239.876551152874, + 5349.870139523501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557528", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2247.862588914678, + "min_y": 5348.39028653543, + "max_x": 2252.715408099716, + "max_y": 5349.211532859052, + "center": [ + 2250.288998507197, + 5348.800909697241 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 89\\P H 88\\P L 76\\P LL 71", + "clean_value": "\\Fmonotxt.shx; .6; HH 89 H 88 L 76 LL 71", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55752C", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2247.879393943957, + "min_y": 5375.130651819478, + "max_x": 2252.732213128995, + "max_y": 5375.951898143099, + "center": [ + 2250.305803536476, + 5375.541274981289 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 88\\P H 87\\P L 75\\P LL 70", + "clean_value": "\\Fmonotxt.shx; .6; HH 88 H 87 L 75 LL 70", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557530", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2156.474004328805, + "min_y": 5265.967741956631, + "max_x": 2161.3268235138435, + "max_y": 5266.788988280252, + "center": [ + 2158.9004139213243, + 5266.378365118441 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 64\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557534", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2315.43718347854, + "min_y": 5384.460463472056, + "max_x": 2320.2900026635784, + "max_y": 5385.431027309064, + "center": [ + 2317.8635930710593, + 5384.94574539056 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 2600\\P H 2500\\P L 400\\P LL 300", + "clean_value": "\\Fmonotxt.shx; .6; HH 2600 H 2500 L 400 LL 300", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557538", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2339.770253549026, + "min_y": 5387.874578763574, + "max_x": 2344.6230727340644, + "max_y": 5388.845142600582, + "center": [ + 2342.1966631415453, + 5388.359860682078 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 130\\P H 125\\P L 45\\P LL 30", + "clean_value": "\\Fmonotxt.shx; .6; HH 130 H 125 L 45 LL 30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55753C", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2291.161692081333, + "min_y": 5283.231786246158, + "max_x": 2296.0145112663713, + "max_y": 5284.202350083166, + "center": [ + 2293.588101673852, + 5283.717068164662 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 100\\P H 70\\P L 40\\P LL 30", + "clean_value": "\\Fmonotxt.shx; .6; HH 100 H 70 L 40 LL 30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557540", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2309.027069162612, + "min_y": 5314.942341319929, + "max_x": 2313.87988834765, + "max_y": 5315.912905156937, + "center": [ + 2311.453478755131, + 5315.427623238433 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 45\\P H 35\\P L 2\\P LL 1", + "clean_value": "\\Fmonotxt.shx; .6; HH 45 H 35 L 2 LL 1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557544", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2327.405285913044, + "min_y": 5313.993796970089, + "max_x": 2332.258105098082, + "max_y": 5314.964360807096, + "center": [ + 2329.831695505563, + 5314.479078888593 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 1600\\P H 1500\\P L 180\\P LL 150", + "clean_value": "\\Fmonotxt.shx; .6; HH 1600 H 1500 L 180 LL 150", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557548", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2390.127127182306, + "min_y": 5349.854982764917, + "max_x": 2394.9799463673444, + "max_y": 5350.8255466019245, + "center": [ + 2392.5535367748253, + 5350.34026468342 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 60\\P H 50\\P L 20\\P LL 5\\P ", + "clean_value": "\\Fmonotxt.shx; .6; HH 60 H 50 L 20 LL 5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55754C", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2379.695333376039, + "min_y": 5333.46748408642, + "max_x": 2384.548152561077, + "max_y": 5334.438047923428, + "center": [ + 2382.121742968558, + 5333.952766004924 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 200\\P H 180\\P L 13\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 200 H 180 L 13 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557550", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2504.054663247536, + "min_y": 5298.028179033654, + "max_x": 2507.9369185955666, + "max_y": 5298.80463010326, + "center": [ + 2505.9957909215514, + 5298.416404568457 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 64\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557554", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2395.783624268458, + "min_y": 5241.12257872493, + "max_x": 2399.6658796164884, + "max_y": 5241.899029794536, + "center": [ + 2397.724751942473, + 5241.510804259733 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 64\\P L 20\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 64 L 20 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557558", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2305.914971020383, + "min_y": 5228.297581775977, + "max_x": 2310.767790205421, + "max_y": 5229.268145612985, + "center": [ + 2308.341380612902, + 5228.782863694481 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 80\\P H 75\\P L 11\\P LL 10", + "clean_value": "\\Fmonotxt.shx; .6; HH 80 H 75 L 11 LL 10", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55755C", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2501.675015657641, + "min_y": 5348.588806201349, + "max_x": 2505.4061141998573, + "max_y": 5352.319904743565, + "center": [ + 2503.540564928749, + 5350.454355472457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2503.540564928749, + 5350.454355472457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55755D", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2501.67501565764, + "min_y": 5348.588806201352, + "max_x": 2505.406114199857, + "max_y": 5352.319904743565, + "center": [ + 2503.5405649287486, + 5350.454355472459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2503.540564928749, + 5352.319904743565 + ], + [ + 2501.67501565764, + 5352.319904743564 + ], + [ + 2501.675015657645, + 5348.588806201352 + ], + [ + 2505.406114199857, + 5348.588806201352 + ], + [ + 2505.406114199856, + 5352.319904743565 + ], + [ + 2503.540564928749, + 5352.319904743565 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55755E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2501.675015657645, + "min_y": 5350.454355472457, + "max_x": 2505.406114199856, + "max_y": 5350.454355472457, + "center": [ + 2503.5405649287504, + 5350.454355472457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2501.675015657645, + 5350.454355472457 + ], + [ + 2505.406114199856, + 5350.454355472457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55755F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2503.049197644788, + "min_y": 5350.781715988877, + "max_x": 2504.0563517384508, + "max_y": 5351.62101106693, + "center": [ + 2503.5527746916196, + 5351.201363527904 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557560", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2502.519697480943, + "min_y": 5349.288540855019, + "max_x": 2504.5340056682685, + "max_y": 5350.127835933072, + "center": [ + 2503.5268515746056, + 5349.7081883940455 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557561", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2505.406114199857, + "min_y": 5348.588806201352, + "max_x": 2507.832523792376, + "max_y": 5349.186076254895, + "center": [ + 2506.6193189961164, + 5348.887441228124 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 90\\P H 80\\P L 10\\P LL 5", + "clean_value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557565", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2497.42950223667, + "min_y": 5368.415832950807, + "max_x": 2503.880018814936, + "max_y": 5369.132557015059, + "center": [ + 2500.654760525803, + 5368.774194982933 + ] + }, + "raw_value": "SARF-#8-PID-002", + "clean_value": "SARF-#8-PID-002", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557566", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2497.453195841369, + "min_y": 5373.421583538871, + "max_x": 2503.903712419635, + "max_y": 5374.138307603123, + "center": [ + 2500.6784541305024, + 5373.779945570997 + ] + }, + "raw_value": "SARF-#6-PID-003", + "clean_value": "SARF-#6-PID-003", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557567", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2418.441090472942, + "min_y": 5232.468792814695, + "max_x": 2419.185898240975, + "max_y": 5232.468792814695, + "center": [ + 2418.8134943569585, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5232.468792814695 + ], + [ + 2419.185898240975, + 5232.468792814695 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557568", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2496.283083595034, + "min_y": 5230.194182271478, + "max_x": 2501.6585140769225, + "max_y": 5231.687357405336, + "center": [ + 2498.9707988359783, + 5230.9407698384075 + ] + }, + "raw_value": "T-8121", + "clean_value": "T-8121", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557569", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2493.28299498358, + "min_y": 5232.447997270674, + "max_x": 2504.328790203681, + "max_y": 5232.447997270674, + "center": [ + 2498.8058925936302, + 5232.447997270674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.28299498358, + 5232.447997270674 + ], + [ + 2504.328790203681, + 5232.447997270674 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55756A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2504.328790203681, + "min_y": 5230.958845563977, + "max_x": 2505.817941910379, + "max_y": 5232.447997270674, + "center": [ + 2505.07336605703, + 5231.703421417325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2504.328790203681, + 5232.447997270674 + ], + [ + 2505.817941910379, + 5230.958845563977 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55756B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2504.328790203681, + "min_y": 5229.469693857279, + "max_x": 2505.817941910379, + "max_y": 5230.958845563977, + "center": [ + 2505.07336605703, + 5230.214269710628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2505.817941910379, + 5230.958845563977 + ], + [ + 2504.328790203681, + 5229.469693857279 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55756C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2493.28299498358, + "min_y": 5229.469693857279, + "max_x": 2504.328790203681, + "max_y": 5229.469693857279, + "center": [ + 2498.8058925936302, + 5229.469693857279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.28299498358, + 5229.469693857279 + ], + [ + 2504.328790203681, + 5229.469693857279 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55756D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2493.28299498358, + "min_y": 5229.469693857279, + "max_x": 2493.28299498358, + "max_y": 5232.447997270674, + "center": [ + 2493.28299498358, + 5230.958845563977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.28299498358, + 5229.469693857279 + ], + [ + 2493.28299498358, + 5232.447997270674 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55756E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.958845563977, + "max_x": 2493.342392543917, + "max_y": 5231.31824979381, + "center": [ + 2492.323251206643, + 5231.138547678893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.342392543917, + 5230.958845563977 + ], + [ + 2491.304109869369, + 5231.31824979381 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55756F", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.599441334142, + "max_x": 2493.342392543917, + "max_y": 5230.958845563977, + "center": [ + 2492.323251206643, + 5230.779143449059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.342392543917, + 5230.958845563977 + ], + [ + 2491.304109869369, + 5230.599441334142 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557570", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.599441334142, + "max_x": 2491.304109869369, + "max_y": 5231.31824979381, + "center": [ + 2491.304109869369, + 5230.958845563976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2491.304109869369, + 5230.599441334142 + ], + [ + 2491.304109869369, + 5231.31824979381 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557571", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.958845563977, + "max_x": 2493.342392543917, + "max_y": 5231.137172191061, + "center": [ + 2492.323251206643, + 5231.048008877518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.342392543917, + 5230.958845563977 + ], + [ + 2491.304109869369, + 5231.137172191061 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557572", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2491.304109869369, + "min_y": 5230.780518936892, + "max_x": 2493.342392543917, + "max_y": 5230.958845563977, + "center": [ + 2492.323251206643, + 5230.869682250434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2493.342392543917, + 5230.958845563977 + ], + [ + 2491.304109869369, + 5230.780518936892 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557573", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2449.460760995787, + "min_y": 5230.913053893899, + "max_x": 2493.28892069187, + "max_y": 5230.913053893899, + "center": [ + 2471.3748408438287, + 5230.913053893899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.460760995787, + 5230.913053893899 + ], + [ + 2493.28892069187, + 5230.913053893899 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557574", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.660052379287, + "min_y": 5230.958845563977, + "max_x": 2445.660052379287, + "max_y": 5245.594051765923, + "center": [ + 2445.660052379287, + 5238.27644866495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.660052379287, + 5245.594051765923 + ], + [ + 2445.660052379287, + 5230.958845563977 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557575", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2445.660052379287, + "min_y": 5230.958845563977, + "max_x": 2475.84527584098, + "max_y": 5230.958845563977, + "center": [ + 2460.7526641101335, + 5230.958845563977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2445.660052379287, + 5230.958845563977 + ], + [ + 2475.84527584098, + 5230.958845563977 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557576", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.116671797506, + "min_y": 5312.938378117376, + "max_x": 2431.124205236563, + "max_y": 5312.938378117376, + "center": [ + 2430.6204385170345, + 5312.938378117376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.124205236563, + 5312.938378117376 + ], + [ + 2430.116671797506, + 5312.938378117376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557577", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.786089463363, + "min_y": 5312.938378117376, + "max_x": 2431.124205236563, + "max_y": 5313.503088763926, + "center": [ + 2430.955147349963, + 5313.22073344065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.786089463363, + 5313.503088763926 + ], + [ + 2431.124205236563, + 5312.938378117376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557578", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.116671797506, + "min_y": 5314.621129721692, + "max_x": 2431.124205236563, + "max_y": 5314.621129721692, + "center": [ + 2430.6204385170345, + 5314.621129721692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.124205236563, + 5314.621129721692 + ], + [ + 2430.116671797506, + 5314.621129721692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557579", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.786089463363, + "min_y": 5314.05641907514, + "max_x": 2431.124205236563, + "max_y": 5314.621129721692, + "center": [ + 2430.955147349963, + 5314.338774398417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.786089463363, + 5314.05641907514 + ], + [ + 2431.124205236563, + 5314.621129721692 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55757A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2430.2979732563526, + "min_y": 5313.45728865885, + "max_x": 2430.942903777717, + "max_y": 5314.102219180215, + "center": [ + 2430.620438517035, + 5313.779753919533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.620438517035, + 5313.779753919533 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55757B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.116671797506, + "min_y": 5312.938378117376, + "max_x": 2430.454787570704, + "max_y": 5313.503088763926, + "center": [ + 2430.285729684105, + 5313.22073344065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.116671797506, + 5312.938378117376 + ], + [ + 2430.454787570704, + 5313.503088763926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55757C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.116671797506, + "min_y": 5314.05641907514, + "max_x": 2430.454787570704, + "max_y": 5314.621129721692, + "center": [ + 2430.285729684105, + 5314.338774398417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.116671797506, + 5314.621129721692 + ], + [ + 2430.454787570704, + 5314.05641907514 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55757D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2430.4811108388362, + "min_y": 5312.660030454134, + "max_x": 2430.7594585870634, + "max_y": 5312.938378202362, + "center": [ + 2430.62028471295, + 5312.799204328248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.62028471295, + 5312.799204328248 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55757E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2430.4811108388362, + "min_y": 5314.621129721691, + "max_x": 2430.7594585870634, + "max_y": 5314.8994774699195, + "center": [ + 2430.62028471295, + 5314.760303595805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.62028471295, + 5314.760303595805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55757F", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2430.62028471295, + "min_y": 5314.899477469919, + "max_x": 2430.62028471295, + "max_y": 5315.800924328305, + "center": [ + 2430.62028471295, + 5315.350200899112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.62028471295, + 5315.800924328305 + ], + [ + 2430.62028471295, + 5314.899477469919 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557580", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2430.62028471295, + "min_y": 5311.609226049174, + "max_x": 2430.62028471295, + "max_y": 5312.660030454134, + "center": [ + 2430.62028471295, + 5312.134628251654 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.62028471295, + 5312.660030454134 + ], + [ + 2430.62028471295, + 5311.609226049174 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557581", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.169055992414, + "min_y": 5310.955514444088, + "max_x": 2431.169055992414, + "max_y": 5311.698831560085, + "center": [ + 2431.169055992414, + 5311.327173002086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.169055992414, + 5311.698831560085 + ], + [ + 2431.169055992414, + 5310.955514444088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557582", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.071513433484, + "min_y": 5310.955514444088, + "max_x": 2430.071513433484, + "max_y": 5311.698831560085, + "center": [ + 2430.071513433484, + 5311.327173002086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.071513433484, + 5311.698831560085 + ], + [ + 2430.071513433484, + 5310.955514444088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557583", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.071513433484, + "min_y": 5310.955514444088, + "max_x": 2431.169055992414, + "max_y": 5310.955514444088, + "center": [ + 2430.620284712949, + 5310.955514444088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.169055992414, + 5310.955514444088 + ], + [ + 2430.071513433484, + 5310.955514444088 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557584", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.182217082845, + "min_y": 5315.800924328305, + "max_x": 2433.233021487806, + "max_y": 5315.800924328305, + "center": [ + 2432.7076192853256, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.233021487806, + 5315.800924328305 + ], + [ + 2432.182217082845, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557585", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.438899966849, + "min_y": 5316.349695607771, + "max_x": 2432.182217082845, + "max_y": 5316.349695607771, + "center": [ + 2431.810558524847, + 5316.349695607771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.438899966849, + 5316.349695607771 + ], + [ + 2432.182217082845, + 5316.349695607771 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557586", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.438899966849, + "min_y": 5315.25215304884, + "max_x": 2432.182217082845, + "max_y": 5315.25215304884, + "center": [ + 2431.810558524847, + 5315.25215304884 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.438899966849, + 5315.25215304884 + ], + [ + 2432.182217082845, + 5315.25215304884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557587", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2432.182217082845, + "min_y": 5315.25215304884, + "max_x": 2432.182217082845, + "max_y": 5316.349695607771, + "center": [ + 2432.182217082845, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2432.182217082845, + 5316.349695607771 + ], + [ + 2432.182217082845, + 5315.25215304884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557588", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2435.6075384073974, + "min_y": 5315.603047918338, + "max_x": 2436.003291227331, + "max_y": 5315.998800738272, + "center": [ + 2435.805414817364, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.805414817364, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557589", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2435.2117855874667, + "min_y": 5315.60304791834, + "max_x": 2435.6075384073974, + "max_y": 5315.99880073827, + "center": [ + 2435.409661997432, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.409661997432, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2434.8160327675355, + "min_y": 5315.60304791834, + "max_x": 2435.2117855874662, + "max_y": 5315.99880073827, + "center": [ + 2435.013909177501, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.013909177501, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2434.816032767532, + "min_y": 5315.603047918338, + "max_x": 2435.2117855874662, + "max_y": 5315.998800738272, + "center": [ + 2435.013909177499, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2435.013909177499, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2434.4202799476016, + "min_y": 5315.60304791834, + "max_x": 2434.8160327675323, + "max_y": 5315.99880073827, + "center": [ + 2434.618156357567, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.618156357567, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2434.0245271276663, + "min_y": 5315.603047918337, + "max_x": 2434.4202799476016, + "max_y": 5315.998800738273, + "center": [ + 2434.222403537634, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2434.222403537634, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2433.6287743077346, + "min_y": 5315.60304791834, + "max_x": 2434.0245271276654, + "max_y": 5315.99880073827, + "center": [ + 2433.8266507177, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.8266507177, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55758F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2433.2330214878057, + "min_y": 5315.60304791834, + "max_x": 2433.6287743077364, + "max_y": 5315.99880073827, + "center": [ + 2433.430897897771, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2433.430897897771, + 5315.800924328305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557590", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2436.003284198221, + "min_y": 5315.802592183456, + "max_x": 2437.054088603181, + "max_y": 5315.802592183456, + "center": [ + 2436.528686400701, + 5315.802592183456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2436.003284198221, + 5315.802592183456 + ], + [ + 2437.054088603181, + 5315.802592183456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557591", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.054088603181, + "min_y": 5315.253820903991, + "max_x": 2437.797405719178, + "max_y": 5315.253820903991, + "center": [ + 2437.4257471611795, + 5315.253820903991 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.797405719178, + 5315.253820903991 + ], + [ + 2437.054088603181, + 5315.253820903991 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557592", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.054088603181, + "min_y": 5316.351363462922, + "max_x": 2437.797405719178, + "max_y": 5316.351363462922, + "center": [ + 2437.4257471611795, + 5316.351363462922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.797405719178, + 5316.351363462922 + ], + [ + 2437.054088603181, + 5316.351363462922 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557593", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2437.054088603181, + "min_y": 5315.253820903991, + "max_x": 2437.054088603181, + "max_y": 5316.351363462922, + "center": [ + 2437.054088603181, + 5315.802592183456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2437.054088603181, + 5315.253820903991 + ], + [ + 2437.054088603181, + 5316.351363462922 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557594", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2431.704092360696, + "min_y": 5315.096179429283, + "max_x": 2433.047949981168, + "max_y": 5316.216060779677, + "center": [ + 2432.3760211709323, + 5315.656120104481 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557595", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2436.992441393373, + "min_y": 5315.149954361721, + "max_x": 2438.3362990138453, + "max_y": 5316.269835712114, + "center": [ + 2437.664370203609, + 5315.709895036918 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557596", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2438.970051964591, + "min_y": 5315.141140222642, + "max_x": 2443.0016248260076, + "max_y": 5316.261021573036, + "center": [ + 2440.9858383952997, + 5315.701080897839 + ] + }, + "raw_value": "TO IBC", + "clean_value": "TO IBC", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557597", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2429.082423823619, + "min_y": 5315.800924328305, + "max_x": 2431.810558524848, + "max_y": 5315.800924328305, + "center": [ + 2430.4464911742334, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.810558524848, + 5315.800924328305 + ], + [ + 2429.082423823619, + 5315.800924328305 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557598", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.804076245369, + "min_y": 5315.296850000613, + "max_x": 2428.804076245369, + "max_y": 5316.304383439664, + "center": [ + 2428.804076245369, + 5315.800616720138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.804076245369, + 5315.296850000613 + ], + [ + 2428.804076245369, + 5316.304383439664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557599", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.239365598815, + "min_y": 5315.296850000613, + "max_x": 2428.804076245369, + "max_y": 5315.634965773807, + "center": [ + 2428.521720922092, + 5315.46590788721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.239365598815, + 5315.634965773807 + ], + [ + 2428.804076245369, + 5315.296850000613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.121324641051, + "min_y": 5315.296850000613, + "max_x": 2427.121324641051, + "max_y": 5316.304383439664, + "center": [ + 2427.121324641051, + 5315.800616720138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.121324641051, + 5315.296850000613 + ], + [ + 2427.121324641051, + 5316.304383439664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.121324641051, + "min_y": 5315.296850000613, + "max_x": 2427.686035287604, + "max_y": 5315.634965773807, + "center": [ + 2427.4036799643277, + 5315.46590788721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.686035287604, + 5315.634965773807 + ], + [ + 2427.121324641051, + 5315.296850000613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2427.6402351825277, + "min_y": 5315.478151459457, + "max_x": 2428.2851657038923, + "max_y": 5316.123081980822, + "center": [ + 2427.96270044321, + 5315.800616720139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.96270044321, + 5315.800616720139 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2429.082423823619, + "min_y": 5315.29715760878, + "max_x": 2429.082423823619, + "max_y": 5316.304691047831, + "center": [ + 2429.082423823619, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2429.082423823619, + 5316.304691047831 + ], + [ + 2429.082423823619, + 5315.29715760878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2426.814813876021, + "min_y": 5315.29715760878, + "max_x": 2426.814813876021, + "max_y": 5316.304691047831, + "center": [ + 2426.814813876021, + 5315.800924328305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2426.814813876021, + 5316.304691047831 + ], + [ + 2426.814813876021, + 5315.29715760878 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55759F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2428.239365598815, + "min_y": 5315.966267666467, + "max_x": 2428.804076245369, + "max_y": 5316.304383439664, + "center": [ + 2428.521720922092, + 5316.135325553065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2428.804076245369, + 5316.304383439664 + ], + [ + 2428.239365598815, + 5315.966267666467 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2427.121324641051, + "min_y": 5315.96626766647, + "max_x": 2427.686035287604, + "max_y": 5316.304383439664, + "center": [ + 2427.4036799643277, + 5316.135325553067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2427.121324641051, + 5316.304383439664 + ], + [ + 2427.686035287604, + 5315.96626766647 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575A1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2114.988805686211, + "min_y": 5284.334417743187, + "max_x": 2126.808352199522, + "max_y": 5296.385720070484, + "center": [ + 2120.898578942866, + 5290.360068906835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2114.988805686211, + 5296.385720070484 + ], + [ + 2126.808352199522, + 5296.385720070484 + ], + [ + 2126.808352199522, + 5284.334417743187 + ], + [ + 2114.988805686211, + 5284.334417743187 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.392719204139, + "min_y": 5284.450295650189, + "max_x": 2118.392719204139, + "max_y": 5296.269842163487, + "center": [ + 2118.392719204139, + 5290.360068906838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.392719204139, + 5284.450295650189 + ], + [ + 2118.392719204139, + 5296.269842163487 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.404438681595, + "min_y": 5284.450295650189, + "max_x": 2123.404438681595, + "max_y": 5296.269842163487, + "center": [ + 2123.404438681595, + 5290.360068906838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.404438681595, + 5284.450295650189 + ], + [ + 2123.404438681595, + 5296.269842163487 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2114.988805686211, + "min_y": 5292.865928645567, + "max_x": 2126.808352199522, + "max_y": 5292.865928645567, + "center": [ + 2120.898578942866, + 5292.865928645567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.808352199522, + 5292.865928645567 + ], + [ + 2114.988805686211, + 5292.865928645567 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2114.988805686211, + "min_y": 5287.854209168113, + "max_x": 2126.808352199522, + "max_y": 5287.854209168113, + "center": [ + 2120.898578942866, + 5287.854209168113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2126.808352199522, + 5287.854209168113 + ], + [ + 2114.988805686211, + 5287.854209168113 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2118.764003028611, + "min_y": 5290.194315919896, + "max_x": 2122.123647079791, + "max_y": 5292.060784837218, + "center": [ + 2120.443825054201, + 5291.127550378557 + ] + }, + "raw_value": "IBC", + "clean_value": "IBC", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575A7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2120.435154435132, + "min_y": 5301.832181273616, + "max_x": 2122.792528651383, + "max_y": 5301.832181273616, + "center": [ + 2121.6138415432574, + 5301.832181273616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.792528651383, + 5301.832181273616 + ], + [ + 2120.435154435132, + 5301.832181273616 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2120.435154435132, + "min_y": 5285.855113266965, + "max_x": 2120.435154435132, + "max_y": 5301.832181273616, + "center": [ + 2120.435154435132, + 5293.843647270291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.435154435132, + 5301.832181273616 + ], + [ + 2120.435154435132, + 5285.855113266965 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2395.160007150567, + "min_y": 5324.96852435784, + "max_x": 2396.755196107198, + "max_y": 5324.96852435784, + "center": [ + 2395.9576016288825, + 5324.96852435784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2396.755196107198, + 5324.96852435784 + ], + [ + 2395.160007150567, + 5324.96852435784 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5575AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.598542604375, + "min_y": 5205.654888962155, + "max_x": 2117.598542604375, + "max_y": 5206.752431521091, + "center": [ + 2117.598542604375, + 5206.203660241623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.598542604375, + 5206.752431521091 + ], + [ + 2117.598542604375, + 5205.654888962155 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.169888879966, + "min_y": 5205.634597895372, + "max_x": 2117.169888879966, + "max_y": 5206.772722587878, + "center": [ + 2117.169888879966, + 5206.203660241625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.169888879966, + 5206.772722587878 + ], + [ + 2117.169888879966, + 5205.634597895372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2213.642077037841, + "min_y": 5295.758678955206, + "max_x": 2220.133575382496, + "max_y": 5295.758678955206, + "center": [ + 2216.8878262101684, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.133575382496, + 5295.758678955206 + ], + [ + 2213.642077037841, + 5295.758678955206 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5575AD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2162.585671048455, + "min_y": 5248.560693694278, + "max_x": 2170.2050804298433, + "max_y": 5249.830595257842, + "center": [ + 2166.395375739149, + 5249.19564447606 + ] + }, + "raw_value": "OGDEN PUMP", + "clean_value": "OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575AE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2292.769657638035, + "min_y": 5268.680912730068, + "max_x": 2294.0597547919915, + "max_y": 5269.755993691698, + "center": [ + 2293.414706215013, + 5269.218453210882 + ] + }, + "raw_value": "FO", + "clean_value": "FO", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "5575AF", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2296.485224570917, + "min_y": 5267.1844996353475, + "max_x": 2302.0846045794087, + "max_y": 5272.783879643838, + "center": [ + 2299.284914575163, + 5269.984189639593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2299.284914575163, + 5269.984189639593 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575B0", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2298.49303335944, + "min_y": 5270.475228068948, + "max_x": 2300.003757284491, + "max_y": 5271.7341646731575, + "center": [ + 2299.2483953219653, + 5271.104696371052 + ] + }, + "raw_value": "XV", + "clean_value": "XV", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575B1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2297.369072924219, + "min_y": 5268.235476065552, + "max_x": 2301.1458827368465, + "max_y": 5269.494412669761, + "center": [ + 2299.2574778305325, + 5268.864944367657 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.635448245461, + "min_y": 5269.661833963612, + "max_x": 2296.472443688555, + "max_y": 5270.675979237314, + "center": [ + 2294.053945967008, + 5270.168906600463 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.635448245461, + 5269.661833963612 + ], + [ + 2296.472443688555, + 5270.675979237314 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.697007451368, + "min_y": 5264.371672359253, + "max_x": 2291.635448245456, + "max_y": 5264.371672359253, + "center": [ + 2288.666227848412, + 5264.371672359253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.635448245456, + 5264.371672359253 + ], + [ + 2285.697007451368, + 5264.371672359253 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5575B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.697007451368, + "min_y": 5264.371672359253, + "max_x": 2285.697007451368, + "max_y": 5268.933854490536, + "center": [ + 2285.697007451368, + 5266.652763424894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.697007451368, + 5264.371672359253 + ], + [ + 2285.697007451368, + 5268.933854490536 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5575B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.697007451368, + "min_y": 5275.369906268818, + "max_x": 2291.635448245454, + "max_y": 5275.369906268818, + "center": [ + 2288.666227848411, + 5275.369906268818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.697007451368, + 5275.369906268818 + ], + [ + 2291.635448245454, + 5275.369906268818 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5575B6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2285.3451224016812, + "min_y": 5269.827273157734, + "max_x": 2286.0488925010545, + "max_y": 5270.531043257108, + "center": [ + 2285.697007451368, + 5270.179158207421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.697007451368, + 5270.179158207421 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5271.424461924301, + "max_x": 2286.246734813489, + "max_y": 5271.424461924301, + "center": [ + 2285.6970074513697, + 5271.424461924301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.14728008925, + 5271.424461924301 + ], + [ + 2286.246734813489, + 5271.424461924301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5268.933854490536, + "max_x": 2286.246734813489, + "max_y": 5268.933854490536, + "center": [ + 2285.6970074513697, + 5268.933854490536 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.14728008925, + 5268.933854490536 + ], + [ + 2286.246734813489, + 5268.933854490536 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5269.261020342519, + "max_x": 2285.516243509983, + "max_y": 5269.877251788656, + "center": [ + 2285.3317617996163, + 5269.569136065587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.516243509983, + 5269.877251788656 + ], + [ + 2285.14728008925, + 5269.261020342519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5269.261020342519, + "max_x": 2286.246734813489, + "max_y": 5269.261020342519, + "center": [ + 2285.6970074513697, + 5269.261020342519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.14728008925, + 5269.261020342519 + ], + [ + 2286.246734813489, + 5269.261020342519 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.877771392753, + "min_y": 5269.261020342519, + "max_x": 2286.246734813489, + "max_y": 5269.877251788656, + "center": [ + 2286.0622531031213, + 5269.569136065587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.246734813489, + 5269.261020342519 + ], + [ + 2285.877771392753, + 5269.877251788656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5270.481064626177, + "max_x": 2285.516243509986, + "max_y": 5271.097296072317, + "center": [ + 2285.331761799618, + 5270.789180349247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.516243509986, + 5270.481064626177 + ], + [ + 2285.14728008925, + 5271.097296072317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.14728008925, + "min_y": 5271.097296072317, + "max_x": 2286.246734813489, + "max_y": 5271.097296072317, + "center": [ + 2285.6970074513697, + 5271.097296072317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.14728008925, + 5271.097296072317 + ], + [ + 2286.246734813489, + 5271.097296072317 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.87777139275, + "min_y": 5270.481064626177, + "max_x": 2286.246734813489, + "max_y": 5271.097296072317, + "center": [ + 2286.0622531031195, + 5270.789180349247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2286.246734813489, + 5271.097296072317 + ], + [ + 2285.87777139275, + 5270.481064626177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2285.697007451368, + "min_y": 5271.424461924301, + "max_x": 2285.697007451368, + "max_y": 5275.369906268818, + "center": [ + 2285.697007451368, + 5273.39718409656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2285.697007451368, + 5275.369906268818 + ], + [ + 2285.697007451368, + 5271.424461924301 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5575C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2352.133247008618, + "min_y": 5265.862109458666, + "max_x": 2352.133247008618, + "max_y": 5266.871398246951, + "center": [ + 2352.133247008618, + 5266.366753852808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2352.133247008618, + 5265.862109458666 + ], + [ + 2352.133247008618, + 5266.871398246951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2350.6629925300685, + "min_y": 5266.041301486468, + "max_x": 2351.3090466650556, + "max_y": 5266.687355621456, + "center": [ + 2350.986019597562, + 5266.364328553962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2350.986019597562, + 5266.364328553962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2351.2652816172, + "min_y": 5265.862109458666, + "max_x": 2351.832911925205, + "max_y": 5266.201973354714, + "center": [ + 2351.549096771202, + 5266.03204140669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2351.2652816172, + 5266.201973354714 + ], + [ + 2351.832911925205, + 5265.862109458666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2351.832911925205, + "min_y": 5265.862109458666, + "max_x": 2351.832911925205, + "max_y": 5266.871398246951, + "center": [ + 2351.832911925205, + 5266.366753852808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2351.832911925205, + 5265.862109458666 + ], + [ + 2351.832911925205, + 5266.871398246951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2351.263166765922, + "min_y": 5266.530268101395, + "max_x": 2351.832911925205, + "max_y": 5266.871398246951, + "center": [ + 2351.5480393455637, + 5266.700833174173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2351.832911925205, + 5266.871398246951 + ], + [ + 2351.263166765922, + 5266.530268101395 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2350.147228590161, + "min_y": 5265.862109458666, + "max_x": 2350.712923089323, + "max_y": 5266.200814305374, + "center": [ + 2350.430075839742, + 5266.031461882019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2350.712923089323, + 5266.200814305374 + ], + [ + 2350.147228590161, + 5265.862109458666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2350.147228590161, + "min_y": 5265.862109458666, + "max_x": 2350.147228590161, + "max_y": 5266.871398246951, + "center": [ + 2350.147228590161, + 5266.366753852808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2350.147228590161, + 5265.862109458666 + ], + [ + 2350.147228590161, + 5266.871398246951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2350.147228590161, + "min_y": 5266.532693400241, + "max_x": 2350.712923089323, + "max_y": 5266.871398246951, + "center": [ + 2350.430075839742, + 5266.702045823597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2350.147228590161, + 5266.871398246951 + ], + [ + 2350.712923089323, + 5266.532693400241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2349.909580240087, + "min_y": 5265.862109458666, + "max_x": 2349.909580240087, + "max_y": 5266.871398246951, + "center": [ + 2349.909580240087, + 5266.366753852808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.909580240087, + 5266.871398246951 + ], + [ + 2349.909580240087, + 5265.862109458666 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575C9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2352.133247008618, + "min_y": 5266.319159374706, + "max_x": 2353.01147557703, + "max_y": 5266.319159374706, + "center": [ + 2352.572361292824, + 5266.319159374706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2353.01147557703, + 5266.319159374706 + ], + [ + 2352.133247008618, + 5266.319159374706 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575CA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2349.027427215266, + "min_y": 5266.34171397444, + "max_x": 2349.905655783677, + "max_y": 5266.34171397444, + "center": [ + 2349.4665414994715, + 5266.34171397444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.905655783677, + 5266.34171397444 + ], + [ + 2349.027427215266, + 5266.34171397444 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.73801573361, + "min_y": 5266.687807741942, + "max_x": 2349.258337714807, + "max_y": 5266.687807741942, + "center": [ + 2348.998176724209, + 5266.687807741942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.258337714807, + 5266.687807741942 + ], + [ + 2348.73801573361, + 5266.687807741942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.73801573361, + "min_y": 5265.919527950693, + "max_x": 2349.258337714807, + "max_y": 5265.919527950693, + "center": [ + 2348.998176724209, + 5265.919527950693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.258337714807, + 5265.919527950693 + ], + [ + 2348.73801573361, + 5265.919527950693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.73801573361, + "min_y": 5265.919527950693, + "max_x": 2348.73801573361, + "max_y": 5266.687807741942, + "center": [ + 2348.73801573361, + 5266.303667846318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.73801573361, + 5266.687807741942 + ], + [ + 2348.73801573361, + 5265.919527950693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575CE", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2454.016001123932, + "min_y": 5188.312029029876, + "max_x": 2459.6154078758987, + "max_y": 5189.245263488537, + "center": [ + 2456.8157044999152, + 5188.778646259207 + ] + }, + "raw_value": "2024.04.04", + "clean_value": "2024.04.04", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575CF", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2485.747990165114, + "min_y": 5188.345103818931, + "max_x": 2488.5476935410975, + "max_y": 5189.278338277592, + "center": [ + 2487.147841853106, + 5188.8117210482615 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D0", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2491.457863075245, + "min_y": 5188.345103818924, + "max_x": 2494.2575664512283, + "max_y": 5189.278338277585, + "center": [ + 2492.857714763237, + 5188.811721048254 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D1", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2497.045633587027, + "min_y": 5188.357260179595, + "max_x": 2499.8453369630106, + "max_y": 5189.290494638256, + "center": [ + 2498.4454852750187, + 5188.823877408926 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D2", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.106340812854, + "min_y": 5188.413159294003, + "max_x": 2475.5858662144274, + "max_y": 5189.346393752664, + "center": [ + 2473.3461035136406, + 5188.879776523334 + ] + }, + "raw_value": "AS BUILT", + "clean_value": "AS BUILT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D3", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2487.084254735664, + "min_y": 5191.449993662302, + "max_x": 2487.644195410861, + "max_y": 5192.383228120963, + "center": [ + 2487.364225073263, + 5191.916610891632 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D4", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2492.754853249739, + "min_y": 5191.449993662295, + "max_x": 2493.3147939249357, + "max_y": 5192.383228120956, + "center": [ + 2493.034823587337, + 5191.916610891625 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D5", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2498.101366757178, + "min_y": 5191.449993662281, + "max_x": 2498.6613074323745, + "max_y": 5192.383228120942, + "center": [ + 2498.3813370947764, + 5191.916610891611 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5575D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.807893770788, + "min_y": 5251.836911739554, + "max_x": 2190.807893770788, + "max_y": 5280.515738664553, + "center": [ + 2190.807893770788, + 5266.176325202054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.807893770788, + 5280.515738664553 + ], + [ + 2190.807893770788, + 5251.836911739554 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5575D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2213.642077037838, + "min_y": 5278.48776094968, + "max_x": 2213.642077037838, + "max_y": 5280.31696855501, + "center": [ + 2213.642077037838, + 5279.4023647523445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2213.642077037838, + 5278.48776094968 + ], + [ + 2213.642077037838, + 5280.31696855501 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5575D8", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2229.705502766761, + "min_y": 5297.187556410197, + "max_x": 2242.4721501612457, + "max_y": 5298.307437760591, + "center": [ + 2236.0888264640034, + 5297.747497085395 + ] + }, + "raw_value": "P-10207-25A-F1A-H50", + "clean_value": "P-10207-25A-F1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.129490093963, + "min_y": 5295.758678955206, + "max_x": 2225.398772077408, + "max_y": 5295.758678955206, + "center": [ + 2222.764131085685, + 5295.758678955206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2225.398772077408, + 5295.758678955206 + ], + [ + 2220.129490093963, + 5295.758678955206 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5575DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.597958266417, + "min_y": 5282.541459554597, + "max_x": 2168.162176834598, + "max_y": 5282.541881386464, + "center": [ + 2167.8800675505076, + 5282.541670470531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.597958266417, + 5282.541459554597 + ], + [ + 2168.162176834598, + 5282.541881386464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.597028885727, + "min_y": 5283.78454686004, + "max_x": 2168.161247453908, + "max_y": 5283.784968691918, + "center": [ + 2167.8791381698175, + 5283.7847577759785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.161247453908, + 5283.784968691918 + ], + [ + 2167.597028885727, + 5283.78454686004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575DC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2167.700392911958, + "min_y": 5282.962848413422, + "max_x": 2168.061554003922, + "max_y": 5283.324009505387, + "center": [ + 2167.88097345794, + 5283.143428959404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.88097345794, + 5283.143428959404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.971617501049, + "min_y": 5283.299611516164, + "max_x": 2168.161372978844, + "max_y": 5283.617073603112, + "center": [ + 2168.0664952399466, + 5283.4583425596375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.971617501049, + 5283.299611516164 + ], + [ + 2168.161372978844, + 5283.617073603112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.597154410664, + "min_y": 5283.616651771243, + "max_x": 2168.161372978844, + "max_y": 5283.617073603112, + "center": [ + 2167.879263694754, + 5283.616862687177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.161372978844, + 5283.617073603112 + ], + [ + 2167.597154410664, + 5283.616651771243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.597154410664, + "min_y": 5283.29829204887, + "max_x": 2167.788093120368, + "max_y": 5283.616651771243, + "center": [ + 2167.692623765516, + 5283.4574719100565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.597154410664, + 5283.616651771243 + ], + [ + 2167.788093120368, + 5283.29829204887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.972496297683, + "min_y": 5282.674732968058, + "max_x": 2168.162077509557, + "max_y": 5282.990829280182, + "center": [ + 2168.06728690362, + 5282.83278112412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.972496297683, + 5282.990829280182 + ], + [ + 2168.162077509557, + 5282.674732968058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.59785894138, + "min_y": 5282.674311136193, + "max_x": 2168.162077509557, + "max_y": 5282.674732968058, + "center": [ + 2167.8799682254685, + 5282.674522052126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2168.162077509557, + 5282.674732968058 + ], + [ + 2167.59785894138, + 5282.674311136193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2167.59785894138, + "min_y": 5282.674311136193, + "max_x": 2167.786967289647, + "max_y": 5282.990690571438, + "center": [ + 2167.6924131155133, + 5282.832500853816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.59785894138, + 5282.674311136193 + ], + [ + 2167.786967289647, + 5282.990690571438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.491917866141, + "min_y": 5282.541459554597, + "max_x": 2167.056136434321, + "max_y": 5282.541881386464, + "center": [ + 2166.774027150231, + 5282.541670470531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.491917866141, + 5282.541459554597 + ], + [ + 2167.056136434321, + 5282.541881386464 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.49098848545, + "min_y": 5283.78454686004, + "max_x": 2167.055207053631, + "max_y": 5283.784968691918, + "center": [ + 2166.7730977695405, + 5283.7847577759785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.055207053631, + 5283.784968691918 + ], + [ + 2166.49098848545, + 5283.78454686004 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2166.594352511682, + "min_y": 5282.962848413422, + "max_x": 2166.955513603646, + "max_y": 5283.324009505387, + "center": [ + 2166.774933057664, + 5283.143428959404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.774933057664, + 5283.143428959404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.865577100772, + "min_y": 5283.299611516164, + "max_x": 2167.055332578567, + "max_y": 5283.617073603112, + "center": [ + 2166.960454839669, + 5283.4583425596375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.865577100772, + 5283.299611516164 + ], + [ + 2167.055332578567, + 5283.617073603112 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.491114010387, + "min_y": 5283.616651771243, + "max_x": 2167.055332578567, + "max_y": 5283.617073603112, + "center": [ + 2166.773223294477, + 5283.616862687177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.055332578567, + 5283.617073603112 + ], + [ + 2166.491114010387, + 5283.616651771243 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.491114010387, + "min_y": 5283.29829204887, + "max_x": 2166.682052720091, + "max_y": 5283.616651771243, + "center": [ + 2166.5865833652388, + 5283.4574719100565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.491114010387, + 5283.616651771243 + ], + [ + 2166.682052720091, + 5283.29829204887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.866455897406, + "min_y": 5282.674732968058, + "max_x": 2167.05603710928, + "max_y": 5282.990829280182, + "center": [ + 2166.9612465033433, + 5282.83278112412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.866455897406, + 5282.990829280182 + ], + [ + 2167.05603710928, + 5282.674732968058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.491818541103, + "min_y": 5282.674311136193, + "max_x": 2167.05603710928, + "max_y": 5282.674732968058, + "center": [ + 2166.7739278251915, + 5282.674522052126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2167.05603710928, + 5282.674732968058 + ], + [ + 2166.491818541103, + 5282.674311136193 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2166.491818541103, + "min_y": 5282.674311136193, + "max_x": 2166.68092688937, + "max_y": 5282.990690571438, + "center": [ + 2166.5863727152364, + 5282.832500853816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2166.491818541103, + 5282.674311136193 + ], + [ + 2166.68092688937, + 5282.990690571438 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575EC", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2363.755292749057, + "min_y": 5324.358471887034, + "max_x": 2363.755292749057, + "max_y": 5324.966929710813, + "center": [ + 2363.755292749057, + 5324.662700798924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.755292749057, + 5324.966929710813 + ], + [ + 2363.755292749057, + 5324.358471887034 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5575ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.920943695391, + "min_y": 5323.400261273126, + "max_x": 2364.259059468582, + "max_y": 5323.964971919671, + "center": [ + 2364.0900015819866, + 5323.6826165963985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.259059468582, + 5323.964971919671 + ], + [ + 2363.920943695391, + 5323.400261273126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.251526029535, + "min_y": 5322.282220315355, + "max_x": 2363.589641802728, + "max_y": 5322.846930961909, + "center": [ + 2363.4205839161314, + 5322.564575638631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.589641802728, + 5322.846930961909 + ], + [ + 2363.251526029535, + 5322.282220315355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.251526029535, + "min_y": 5323.964971919671, + "max_x": 2364.259059468582, + "max_y": 5323.964971919671, + "center": [ + 2363.7552927490588, + 5323.964971919671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.251526029535, + 5323.964971919671 + ], + [ + 2364.259059468582, + 5323.964971919671 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.251526029535, + "min_y": 5322.282220315355, + "max_x": 2364.259059468582, + "max_y": 5322.282220315355, + "center": [ + 2363.7552927490588, + 5322.282220315355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.251526029535, + 5322.282220315355 + ], + [ + 2364.259059468582, + 5322.282220315355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.251526029535, + "min_y": 5323.400261273126, + "max_x": 2363.589641802728, + "max_y": 5323.964971919671, + "center": [ + 2363.4205839161314, + 5323.6826165963985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.251526029535, + 5323.964971919671 + ], + [ + 2363.589641802728, + 5323.400261273126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.920943695388, + "min_y": 5322.282220315355, + "max_x": 2364.259059468582, + "max_y": 5322.846930961909, + "center": [ + 2364.0900015819852, + 5322.564575638631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.920943695388, + 5322.846930961909 + ], + [ + 2364.259059468582, + 5322.282220315355 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.232899026749, + "min_y": 5321.888720347993, + "max_x": 2364.277686471366, + "max_y": 5321.888720347993, + "center": [ + 2363.7552927490574, + 5321.888720347993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.232899026749, + 5321.888720347993 + ], + [ + 2364.277686471366, + 5321.888720347993 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.232899026749, + "min_y": 5324.358471887034, + "max_x": 2364.277686471366, + "max_y": 5324.358471887034, + "center": [ + 2363.7552927490574, + 5324.358471887034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.232899026749, + 5324.358471887034 + ], + [ + 2364.277686471366, + 5324.358471887034 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2363.4328274883746, + "min_y": 5322.801130856829, + "max_x": 2364.0777580097392, + "max_y": 5323.446061378194, + "center": [ + 2363.755292749057, + 5323.123596117512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.755292749057, + 5323.123596117512 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575F6", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2363.755292749057, + "min_y": 5313.306711117832, + "max_x": 2363.755292749057, + "max_y": 5321.888720347993, + "center": [ + 2363.755292749057, + 5317.597715732913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.755292749057, + 5321.888720347993 + ], + [ + 2363.755292749057, + 5313.306711117832 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5575F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.511464115714, + "min_y": 5313.306711117838, + "max_x": 2376.177503717953, + "max_y": 5314.938424559292, + "center": [ + 2375.3444839168333, + 5314.122567838565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.511464115714, + 5314.938424559292 + ], + [ + 2376.177503717953, + 5313.306711117838 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2374.511464115714, + "min_y": 5311.674997676373, + "max_x": 2376.177503717953, + "max_y": 5313.306711117838, + "center": [ + 2375.3444839168333, + 5312.490854397105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.511464115714, + 5311.674997676373 + ], + [ + 2376.177503717953, + 5313.306711117838 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.121625733302, + "min_y": 5311.674997676373, + "max_x": 2366.121625733302, + "max_y": 5314.938424559292, + "center": [ + 2366.121625733302, + 5313.3067111178325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.121625733302, + 5314.938424559292 + ], + [ + 2366.121625733302, + 5311.674997676373 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.121625733302, + "min_y": 5314.938424559292, + "max_x": 2374.511464115714, + "max_y": 5314.938424559292, + "center": [ + 2370.316544924508, + 5314.938424559292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.121625733302, + 5314.938424559292 + ], + [ + 2374.511464115714, + 5314.938424559292 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.121625733302, + "min_y": 5311.674997676373, + "max_x": 2374.511464115714, + "max_y": 5311.674997676373, + "center": [ + 2370.316544924508, + 5311.674997676373 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2374.511464115714, + 5311.674997676373 + ], + [ + 2366.121625733302, + 5311.674997676373 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575FC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2367.663687933774, + "min_y": 5312.614893521542, + "max_x": 2373.0391184156624, + "max_y": 5314.1080686554005, + "center": [ + 2370.351403174718, + 5313.361481088472 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5575FD", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2363.755292749057, + "min_y": 5313.306711117832, + "max_x": 2366.121625733302, + "max_y": 5313.306711117832, + "center": [ + 2364.9384592411798, + 5313.306711117832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.755292749057, + 5313.306711117832 + ], + [ + 2366.121625733302, + 5313.306711117832 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5575FE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2365.145386643616, + "min_y": 5310.082124551685, + "max_x": 2377.9120340381005, + "max_y": 5311.202005902079, + "center": [ + 2371.528710340858, + 5310.642065226883 + ] + }, + "raw_value": "SAM-10952-10A-F2A-n", + "clean_value": "SAM-10952-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5575FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.268942194567, + "min_y": 5296.075592025662, + "max_x": 2337.934981796805, + "max_y": 5297.707305467116, + "center": [ + 2337.101961995686, + 5296.89144874639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.268942194567, + 5297.707305467116 + ], + [ + 2337.934981796805, + 5296.075592025662 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557600", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2336.268942194567, + "min_y": 5294.443878584196, + "max_x": 2337.934981796805, + "max_y": 5296.075592025662, + "center": [ + 2337.101961995686, + 5295.25973530493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.268942194567, + 5294.443878584196 + ], + [ + 2337.934981796805, + 5296.075592025662 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557601", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.879103812155, + "min_y": 5294.443878584196, + "max_x": 2327.879103812155, + "max_y": 5297.707305467116, + "center": [ + 2327.879103812155, + 5296.075592025656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.879103812155, + 5297.707305467116 + ], + [ + 2327.879103812155, + 5294.443878584196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557602", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.879103812155, + "min_y": 5297.707305467116, + "max_x": 2336.268942194567, + "max_y": 5297.707305467116, + "center": [ + 2332.0740230033607, + 5297.707305467116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2327.879103812155, + 5297.707305467116 + ], + [ + 2336.268942194567, + 5297.707305467116 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557603", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2327.879103812155, + "min_y": 5294.443878584196, + "max_x": 2336.268942194567, + "max_y": 5294.443878584196, + "center": [ + 2332.0740230033607, + 5294.443878584196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2336.268942194567, + 5294.443878584196 + ], + [ + 2327.879103812155, + 5294.443878584196 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557604", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2329.421166012626, + "min_y": 5295.383774429365, + "max_x": 2334.7965964945147, + "max_y": 5296.876949563223, + "center": [ + 2332.1088812535704, + 5296.130361996295 + ] + }, + "raw_value": "SAMPLE", + "clean_value": "SAMPLE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557605", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2325.512770827909, + "min_y": 5296.075592025656, + "max_x": 2327.879103812155, + "max_y": 5296.075592025656, + "center": [ + 2326.695937320032, + 5296.075592025656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2325.512770827909, + 5296.075592025656 + ], + [ + 2327.879103812155, + 5296.075592025656 + ] + ], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557606", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.664021104123, + "min_y": 5303.0702226755, + "max_x": 2319.664021104123, + "max_y": 5304.21033023649, + "center": [ + 2319.664021104123, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.664021104123, + 5304.21033023649 + ], + [ + 2319.664021104123, + 5303.0702226755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557607", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2318.0668323375585, + "min_y": 5303.288391406308, + "max_x": 2318.7706024369318, + "max_y": 5303.992161505681, + "center": [ + 2318.418717387245, + 5303.640276455994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.418717387245, + 5303.640276455994 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557608", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.664021104123, + "min_y": 5303.090549093876, + "max_x": 2319.664021104123, + "max_y": 5304.190003818114, + "center": [ + 2319.664021104123, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.664021104123, + 5303.090549093876 + ], + [ + 2319.664021104123, + 5304.190003818114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557609", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.17268983174, + "min_y": 5303.0702226755, + "max_x": 2317.17268983174, + "max_y": 5304.21033023649, + "center": [ + 2317.17268983174, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.17268983174, + 5304.21033023649 + ], + [ + 2317.17268983174, + 5303.0702226755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.17268983174, + "min_y": 5303.090549093876, + "max_x": 2317.17268983174, + "max_y": 5304.190003818114, + "center": [ + 2317.17268983174, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.17268983174, + 5303.090549093876 + ], + [ + 2317.17268983174, + 5304.190003818114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.17268983174, + "min_y": 5303.084381138594, + "max_x": 2317.17268983174, + "max_y": 5304.196171773394, + "center": [ + 2317.17268983174, + 5303.640276455993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.17268983174, + 5304.196171773394 + ], + [ + 2317.17268983174, + 5303.084381138594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.336855252145, + "min_y": 5303.084381138594, + "max_x": 2319.336855252145, + "max_y": 5304.196171773394, + "center": [ + 2319.336855252145, + 5303.640276455993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.336855252145, + 5304.196171773394 + ], + [ + 2319.336855252145, + 5303.084381138594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.664021104126, + "min_y": 5303.084381138594, + "max_x": 2319.664021104126, + "max_y": 5304.196171773394, + "center": [ + 2319.664021104126, + 5303.640276455993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.664021104126, + 5304.196171773394 + ], + [ + 2319.664021104126, + 5303.084381138594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.500579522344, + "min_y": 5303.821040397382, + "max_x": 2318.116810968482, + "max_y": 5304.190003818114, + "center": [ + 2317.808695245413, + 5304.005522107747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.116810968482, + 5303.821040397382 + ], + [ + 2317.500579522344, + 5304.190003818114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55760F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.500579522344, + "min_y": 5303.090549093876, + "max_x": 2317.500579522344, + "max_y": 5304.190003818114, + "center": [ + 2317.500579522344, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.500579522344, + 5304.190003818114 + ], + [ + 2317.500579522344, + 5303.090549093876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557610", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2317.500579522344, + "min_y": 5303.090549093876, + "max_x": 2318.116810968482, + "max_y": 5303.459512514609, + "center": [ + 2317.808695245413, + 5303.275030804242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.500579522344, + 5303.090549093876 + ], + [ + 2318.116810968482, + 5303.459512514609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557611", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.720623806004, + "min_y": 5303.821040397377, + "max_x": 2319.336855252145, + "max_y": 5304.190003818114, + "center": [ + 2319.0287395290743, + 5304.0055221077455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.720623806004, + 5303.821040397377 + ], + [ + 2319.336855252145, + 5304.190003818114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557612", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.336855252145, + "min_y": 5303.090549093876, + "max_x": 2319.336855252145, + "max_y": 5304.190003818114, + "center": [ + 2319.336855252145, + 5303.640276455995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.336855252145, + 5304.190003818114 + ], + [ + 2319.336855252145, + 5303.090549093876 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557613", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.720623806004, + "min_y": 5303.090549093876, + "max_x": 2319.336855252145, + "max_y": 5303.459512514609, + "center": [ + 2319.0287395290743, + 5303.275030804242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.336855252145, + 5303.090549093876 + ], + [ + 2318.720623806004, + 5303.459512514609 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557614", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.351277376954, + "min_y": 5303.640276455994, + "max_x": 2317.17268983174, + "max_y": 5303.640276455994, + "center": [ + 2316.761983604347, + 5303.640276455994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2317.17268983174, + 5303.640276455994 + ], + [ + 2316.351277376954, + 5303.640276455994 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "557615", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.664021104126, + "min_y": 5303.640276455994, + "max_x": 2325.512770827909, + "max_y": 5303.640276455994, + "center": [ + 2322.5883959660177, + 5303.640276455994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.664021104126, + 5303.640276455994 + ], + [ + 2325.512770827909, + 5303.640276455994 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "557616", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2325.512770827909, + "min_y": 5296.075592025656, + "max_x": 2325.512770827909, + "max_y": 5303.640276455994, + "center": [ + 2325.512770827909, + 5299.857934240825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2325.512770827909, + 5303.640276455994 + ], + [ + 2325.512770827909, + 5296.075592025656 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "557617", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2327.521788979409, + "min_y": 5292.851005459509, + "max_x": 2340.2884363738935, + "max_y": 5293.970886809902, + "center": [ + 2333.9051126766512, + 5293.410946134705 + ] + }, + "raw_value": "SAM-10953-10A-F2A-n", + "clean_value": "SAM-10953-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557618", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2369.798399057156, + "min_y": 5278.830763818422, + "max_x": 2381.221188831169, + "max_y": 5279.950645168816, + "center": [ + 2375.5097939441625, + 5279.390704493619 + ] + }, + "raw_value": "P-10221-25A-F2A-n", + "clean_value": "P-10221-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557619", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2468.310358703049, + "min_y": 5229.047735457302, + "max_x": 2479.733148477062, + "max_y": 5230.167616807696, + "center": [ + 2474.0217535900556, + 5229.607676132498 + ] + }, + "raw_value": "P-10227-25A-F2A-n", + "clean_value": "P-10227-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55761A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2215.924030378448, + "min_y": 5253.77140839322, + "max_x": 2229.362606583169, + "max_y": 5254.891289743613, + "center": [ + 2222.6433184808084, + 5254.331349068416 + ] + }, + "raw_value": "CD-10522-40A-S1A-H50", + "clean_value": "CD-10522-40A-S1A-H50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55761B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.977384033734, + "min_y": 5257.732991020565, + "max_x": 2314.592543733703, + "max_y": 5258.101312742249, + "center": [ + 2314.284963883719, + 5257.917151881407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.592543733703, + 5258.101312742249 + ], + [ + 2313.977384033734, + 5257.732991020565 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55761C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.759461644051, + "min_y": 5257.003770183314, + "max_x": 2313.374621344016, + "max_y": 5257.372091905003, + "center": [ + 2313.067041494033, + 5257.187931044158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.374621344016, + 5257.372091905003 + ], + [ + 2312.759461644051, + 5257.003770183314 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55761D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2314.592543733703, + "min_y": 5257.003770183314, + "max_x": 2314.592543733703, + "max_y": 5258.101312742249, + "center": [ + 2314.592543733703, + 5257.552541462782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.592543733703, + 5257.003770183314 + ], + [ + 2314.592543733703, + 5258.101312742249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55761E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.759461644051, + "min_y": 5257.003770183314, + "max_x": 2312.759461644051, + "max_y": 5258.101312742249, + "center": [ + 2312.759461644051, + 5257.552541462782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.759461644051, + 5257.003770183314 + ], + [ + 2312.759461644051, + 5258.101312742249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55761F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.977384033734, + "min_y": 5257.003770183314, + "max_x": 2314.592543733703, + "max_y": 5257.372091905003, + "center": [ + 2314.284963883719, + 5257.187931044158 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2314.592543733703, + 5257.003770183314 + ], + [ + 2313.977384033734, + 5257.372091905003 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557620", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.759461644051, + "min_y": 5257.732991020562, + "max_x": 2313.374621344016, + "max_y": 5258.101312742249, + "center": [ + 2313.067041494033, + 5257.9171518814055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.374621344016, + 5257.732991020562 + ], + [ + 2312.759461644051, + 5258.101312742249 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557621", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.330807919639, + "min_y": 5256.983479116536, + "max_x": 2312.330807919639, + "max_y": 5258.121603809037, + "center": [ + 2312.330807919639, + 5257.552541462786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.330807919639, + 5256.983479116536 + ], + [ + 2312.330807919639, + 5258.121603809037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557622", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.021197458115, + "min_y": 5256.983479116536, + "max_x": 2315.021197458115, + "max_y": 5258.121603809037, + "center": [ + 2315.021197458115, + 5257.552541462786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.021197458115, + 5256.983479116536 + ], + [ + 2315.021197458115, + 5258.121603809037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557623", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2313.3247296356376, + "min_y": 5257.201268409542, + "max_x": 2314.027275742116, + "max_y": 5257.90381451602, + "center": [ + 2313.676002688877, + 5257.552541462781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.676002688877, + 5257.552541462781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557624", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2439.250823638467, + "min_y": 5401.775294118899, + "max_x": 2449.3297557920077, + "max_y": 5402.895175469293, + "center": [ + 2444.290289715237, + 5402.335234794096 + ] + }, + "raw_value": "SARF-#10-UFD-N2", + "clean_value": "SARF-#10-UFD-N2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557625", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.741627519148, + "min_y": 5307.03472345855, + "max_x": 2319.813806373675, + "max_y": 5307.253532651969, + "center": [ + 2319.2777169464116, + 5307.144128055259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.741627519148, + 5307.253532651969 + ], + [ + 2319.813806373675, + 5307.03472345855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557626", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.741627519148, + "min_y": 5305.940677491431, + "max_x": 2319.813806373675, + "max_y": 5306.159486684858, + "center": [ + 2319.2777169464116, + 5306.050082088144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.741627519148, + 5305.940677491431 + ], + [ + 2319.813806373675, + 5306.159486684858 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557627", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2319.813806373675, + "min_y": 5306.159486684858, + "max_x": 2319.813806373675, + "max_y": 5307.03472345855, + "center": [ + 2319.813806373675, + 5306.5971050717035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2319.813806373675, + 5306.159486684858 + ], + [ + 2319.813806373675, + 5307.03472345855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557628", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.741627519148, + "min_y": 5305.940677491431, + "max_x": 2318.741627519148, + "max_y": 5307.253532651969, + "center": [ + 2318.741627519148, + 5306.5971050717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.741627519148, + 5305.940677491431 + ], + [ + 2318.741627519148, + 5307.253532651969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557629", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.537217539082, + "min_y": 5307.037877596308, + "max_x": 2349.609396393612, + "max_y": 5307.256686789727, + "center": [ + 2349.073306966347, + 5307.147282193017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.609396393612, + 5307.256686789727 + ], + [ + 2348.537217539082, + 5307.037877596308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55762A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.537217539082, + "min_y": 5305.943831629188, + "max_x": 2349.609396393612, + "max_y": 5306.162640822614, + "center": [ + 2349.073306966347, + 5306.053236225901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.609396393612, + 5305.943831629188 + ], + [ + 2348.537217539082, + 5306.162640822614 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55762B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2348.537217539082, + "min_y": 5306.162640822614, + "max_x": 2348.537217539082, + "max_y": 5307.037877596308, + "center": [ + 2348.537217539082, + 5306.600259209461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2348.537217539082, + 5306.162640822614 + ], + [ + 2348.537217539082, + 5307.037877596308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55762C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2349.609396393612, + "min_y": 5305.943831629188, + "max_x": 2349.609396393612, + "max_y": 5307.256686789727, + "center": [ + 2349.609396393612, + 5306.600259209457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2349.609396393612, + 5305.943831629188 + ], + [ + 2349.609396393612, + 5307.256686789727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55762D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2349.59496251511, + "min_y": 5303.09210477726, + "max_x": 2354.2984641867624, + "max_y": 5304.211986127653, + "center": [ + 2351.946713350936, + 5303.652045452456 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55762E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2319.905816202158, + "min_y": 5307.512944905114, + "max_x": 2324.60931787381, + "max_y": 5308.632826255507, + "center": [ + 2322.257567037984, + 5308.07288558031 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55762F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.6554686029, + "min_y": 5229.359139781689, + "max_x": 2178.419638881285, + "max_y": 5229.515223268448, + "center": [ + 2178.0375537420923, + 5229.437181525069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.6554686029, + 5229.515223268448 + ], + [ + 2178.419638881285, + 5229.359139781689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557630", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.655312991667, + "min_y": 5228.579484852756, + "max_x": 2178.419535140463, + "max_y": 5228.735314171229, + "center": [ + 2178.037424066065, + 5228.6573995119925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.655312991667, + 5228.579484852756 + ], + [ + 2178.419535140463, + 5228.735314171229 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557631", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.419535140463, + "min_y": 5228.735314171229, + "max_x": 2178.419638881285, + "max_y": 5229.359139781689, + "center": [ + 2178.4195870108742, + 5229.04722697646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.419535140463, + 5228.735314171229 + ], + [ + 2178.419638881285, + 5229.359139781689 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557632", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.655312991667, + "min_y": 5228.579484852756, + "max_x": 2177.6554686029, + "max_y": 5229.515223268448, + "center": [ + 2177.6553907972834, + 5229.047354060602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.655312991667, + 5228.579484852756 + ], + [ + 2177.6554686029, + 5229.515223268448 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557633", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2177.655323229458, + "min_y": 5228.64104783776, + "max_x": 2177.655458365113, + "max_y": 5229.45366028345, + "center": [ + 2177.6553907972857, + 5229.047354060605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.655458365113, + 5229.45366028345 + ], + [ + 2177.655323229458, + 5228.64104783776 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557634", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2200.763899543357, + "min_y": 5228.579374180851, + "max_x": 2201.528069821741, + "max_y": 5228.73545766761, + "center": [ + 2201.145984682549, + 5228.65741592423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.528069821741, + 5228.579374180851 + ], + [ + 2200.763899543357, + 5228.73545766761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557635", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2200.764003284179, + "min_y": 5229.35928327807, + "max_x": 2201.528225432974, + "max_y": 5229.515112596543, + "center": [ + 2201.1461143585766, + 5229.437197937306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.528225432974, + 5229.515112596543 + ], + [ + 2200.764003284179, + 5229.35928327807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557636", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2200.763899543357, + "min_y": 5228.73545766761, + "max_x": 2200.764003284179, + "max_y": 5229.35928327807, + "center": [ + 2200.763951413768, + 5229.047370472839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2200.764003284179, + 5229.35928327807 + ], + [ + 2200.763899543357, + 5228.73545766761 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557637", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2201.528069821741, + "min_y": 5228.579374180851, + "max_x": 2201.528225432974, + "max_y": 5229.515112596543, + "center": [ + 2201.5281476273576, + 5229.047243388697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.528225432974, + 5229.515112596543 + ], + [ + 2201.528069821741, + 5228.579374180851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557638", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2201.528080059529, + "min_y": 5228.64093716585, + "max_x": 2201.528215195184, + "max_y": 5229.453549611539, + "center": [ + 2201.5281476273567, + 5229.047243388694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2201.528080059529, + 5228.64093716585 + ], + [ + 2201.528215195184, + 5229.453549611539 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557639", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2178.624899566518, + "min_y": 5225.930242089748, + "max_x": 2183.32840123817, + "max_y": 5227.050123440142, + "center": [ + 2180.9766504023437, + 5226.490182764945 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55763A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2201.73560065285, + "min_y": 5225.707524815669, + "max_x": 2206.439102324502, + "max_y": 5226.827406166062, + "center": [ + 2204.087351488676, + 5226.267465490866 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55763B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.916681009076, + "min_y": 5220.815960081888, + "max_x": 2298.680851287461, + "max_y": 5220.972043568646, + "center": [ + 2298.2987661482684, + 5220.894001825267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.916681009076, + 5220.972043568646 + ], + [ + 2298.680851287461, + 5220.815960081888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55763C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.916525397843, + "min_y": 5220.036305152955, + "max_x": 2298.680747546638, + "max_y": 5220.192134471427, + "center": [ + 2298.2986364722406, + 5220.114219812191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.916525397843, + 5220.036305152955 + ], + [ + 2298.680747546638, + 5220.192134471427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55763D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.680747546638, + "min_y": 5220.192134471427, + "max_x": 2298.680851287461, + "max_y": 5220.815960081888, + "center": [ + 2298.6807994170495, + 5220.504047276658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.680747546638, + 5220.192134471427 + ], + [ + 2298.680851287461, + 5220.815960081888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55763E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.916525397843, + "min_y": 5220.036305152955, + "max_x": 2297.916681009076, + "max_y": 5220.972043568646, + "center": [ + 2297.9166032034595, + 5220.5041743608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.916525397843, + 5220.036305152955 + ], + [ + 2297.916681009076, + 5220.972043568646 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55763F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.916535635633, + "min_y": 5220.097868137958, + "max_x": 2297.916670771289, + "max_y": 5220.910480583648, + "center": [ + 2297.916603203461, + 5220.5041743608035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.916670771289, + 5220.910480583648 + ], + [ + 2297.916535635633, + 5220.097868137958 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557640", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.150845977768, + "min_y": 5220.03619448105, + "max_x": 2322.915016256153, + "max_y": 5220.192277967807, + "center": [ + 2322.5329311169608, + 5220.114236224428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.915016256153, + 5220.03619448105 + ], + [ + 2322.150845977768, + 5220.192277967807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.15094971859, + "min_y": 5220.816103578268, + "max_x": 2322.915171867385, + "max_y": 5220.971932896741, + "center": [ + 2322.5330607929873, + 5220.8940182375045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.915171867385, + 5220.971932896741 + ], + [ + 2322.15094971859, + 5220.816103578268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557642", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.150845977768, + "min_y": 5220.192277967807, + "max_x": 2322.15094971859, + "max_y": 5220.816103578268, + "center": [ + 2322.150897848179, + 5220.504190773037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.15094971859, + 5220.816103578268 + ], + [ + 2322.150845977768, + 5220.192277967807 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557643", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.915016256153, + "min_y": 5220.03619448105, + "max_x": 2322.915171867385, + "max_y": 5220.971932896741, + "center": [ + 2322.915094061769, + 5220.504063688895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.915171867385, + 5220.971932896741 + ], + [ + 2322.915016256153, + 5220.03619448105 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557644", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2322.91502649394, + "min_y": 5220.097757466048, + "max_x": 2322.915161629595, + "max_y": 5220.910369911738, + "center": [ + 2322.9150940617674, + 5220.504063688893 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2322.91502649394, + 5220.097757466048 + ], + [ + 2322.915161629595, + 5220.910369911738 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557645", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2298.629967759714, + "min_y": 5216.880453333459, + "max_x": 2303.333469431366, + "max_y": 5218.000334683852, + "center": [ + 2300.98171859554, + 5217.440394008656 + ] + }, + "raw_value": "20Ax15A", + "clean_value": "20Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557646", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2322.99805846338, + "min_y": 5217.127925508267, + "max_x": 2327.701560135032, + "max_y": 5218.247806858661, + "center": [ + 2325.349809299206, + 5217.6878661834635 + ] + }, + "raw_value": "15Ax20A", + "clean_value": "15Ax20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557647", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2354.752103174935, + "min_y": 5349.230605024436, + "max_x": 2366.174892948948, + "max_y": 5350.350486374829, + "center": [ + 2360.4634980619417, + 5349.790545699632 + ] + }, + "raw_value": "P-10230-25A-F2A-n", + "clean_value": "P-10230-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557648", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.807893772412, + "min_y": 5280.49143202358, + "max_x": 2193.624553625302, + "max_y": 5280.49143202358, + "center": [ + 2192.216223698857, + 5280.49143202358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.624553625302, + 5280.49143202358 + ], + [ + 2190.807893772412, + 5280.49143202358 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557649", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.392941100982, + "min_y": 5232.468792814695, + "max_x": 2418.441090472942, + "max_y": 5232.468792814695, + "center": [ + 2417.417015786962, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2418.441090472942, + 5232.468792814695 + ], + [ + 2416.392941100982, + 5232.468792814695 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "55764A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.34776205853, + "min_y": 5231.920021535226, + "max_x": 2415.962921758496, + "max_y": 5232.288343256914, + "center": [ + 2415.655341908513, + 5232.1041823960695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.962921758496, + 5231.920021535226 + ], + [ + 2415.34776205853, + 5232.288343256914 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55764B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.129839668846, + "min_y": 5232.649242372477, + "max_x": 2414.744999368812, + "max_y": 5233.017564094161, + "center": [ + 2414.4374195188293, + 5232.833403233319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.744999368812, + 5232.649242372477 + ], + [ + 2414.129839668846, + 5233.017564094161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55764C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.962921758496, + "min_y": 5231.920021535226, + "max_x": 2415.962921758496, + "max_y": 5233.017564094161, + "center": [ + 2415.962921758496, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.962921758496, + 5233.017564094161 + ], + [ + 2415.962921758496, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55764D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.129839668846, + "min_y": 5231.920021535226, + "max_x": 2414.129839668846, + "max_y": 5233.017564094161, + "center": [ + 2414.129839668846, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.129839668846, + 5233.017564094161 + ], + [ + 2414.129839668846, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55764E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.34776205853, + "min_y": 5232.649242372477, + "max_x": 2415.962921758496, + "max_y": 5233.017564094161, + "center": [ + 2415.655341908513, + 5232.833403233319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.962921758496, + 5233.017564094161 + ], + [ + 2415.34776205853, + 5232.649242372477 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55764F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.129839668846, + "min_y": 5231.920021535226, + "max_x": 2414.744999368812, + "max_y": 5232.288343256914, + "center": [ + 2414.4374195188293, + 5232.1041823960695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.744999368812, + 5232.288343256914 + ], + [ + 2414.129839668846, + 5231.920021535226 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557650", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.701185944435, + "min_y": 5231.899730468443, + "max_x": 2413.701185944435, + "max_y": 5233.037855160949, + "center": [ + 2413.701185944435, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.701185944435, + 5233.037855160949 + ], + [ + 2413.701185944435, + 5231.899730468443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557651", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.391575482908, + "min_y": 5231.899730468443, + "max_x": 2416.391575482908, + "max_y": 5233.037855160949, + "center": [ + 2416.391575482908, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.391575482908, + 5233.037855160949 + ], + [ + 2416.391575482908, + 5231.899730468443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557652", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2414.6951076604328, + "min_y": 5232.117519761454, + "max_x": 2415.3976537669114, + "max_y": 5232.8200658679325, + "center": [ + 2415.046380713672, + 5232.468792814693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.046380713672, + 5232.468792814693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557653", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.310063963525, + "min_y": 5232.468792814695, + "max_x": 2413.704883827404, + "max_y": 5232.468792814695, + "center": [ + 2408.5074738954645, + 5232.468792814695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.704883827404, + 5232.468792814695 + ], + [ + 2403.310063963525, + 5232.468792814695 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557654", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.310063963525, + "min_y": 5231.464536525426, + "max_x": 2403.310063963525, + "max_y": 5233.473049103958, + "center": [ + 2403.310063963525, + 5232.468792814692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.310063963525, + 5233.473049103958 + ], + [ + 2403.310063963525, + 5231.464536525426 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557655", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2393.608799260799, + "min_y": 5233.809029350724, + "max_x": 2403.310063963525, + "max_y": 5233.809029350724, + "center": [ + 2398.459431612162, + 5233.809029350724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.310063963525, + 5233.809029350724 + ], + [ + 2393.608799260799, + 5233.809029350724 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557656", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2393.608799260791, + "min_y": 5231.128556278668, + "max_x": 2403.310063963525, + "max_y": 5231.128556278668, + "center": [ + 2398.459431612158, + 5231.128556278668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.608799260791, + 5231.128556278668 + ], + [ + 2403.310063963525, + 5231.128556278668 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557657", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2403.310063963525, + "min_y": 5231.128556278668, + "max_x": 2403.310063963525, + "max_y": 5233.809029350724, + "center": [ + 2403.310063963525, + 5232.468792814696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2403.310063963525, + 5231.128556278668 + ], + [ + 2403.310063963525, + 5233.809029350724 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557658", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2392.268562724766, + "min_y": 5232.468792814695, + "max_x": 2393.608799260793, + "max_y": 5233.809029350719, + "center": [ + 2392.9386809927796, + 5233.138911082708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2393.608799260793, + 5233.809029350719 + ], + [ + 2392.268562724766, + 5232.468792814695 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557659", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2392.268562724766, + "min_y": 5231.128556278665, + "max_x": 2393.608799260793, + "max_y": 5232.468792814695, + "center": [ + 2392.9386809927796, + 5231.798674546681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2392.268562724766, + 5232.468792814695 + ], + [ + 2393.608799260793, + 5231.128556278665 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55765A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2396.868785427611, + "min_y": 5231.981020126486, + "max_x": 2401.572287099263, + "max_y": 5233.10090147688, + "center": [ + 2399.2205362634368, + 5232.5409608016835 + ] + }, + "raw_value": "P-10201", + "clean_value": "P-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55765B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2122.609060571132, + "min_y": 5210.464376559265, + "max_x": 2122.609060571132, + "max_y": 5220.593758773192, + "center": [ + 2122.609060571132, + 5215.529067666228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.609060571132, + 5210.464376559265 + ], + [ + 2122.609060571132, + 5220.593758773192 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "55765C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2108.385091588533, + "min_y": 5220.593758773192, + "max_x": 2122.609060571132, + "max_y": 5220.593758773192, + "center": [ + 2115.4970760798324, + 5220.593758773192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2122.609060571132, + 5220.593758773192 + ], + [ + 2108.385091588533, + 5220.593758773192 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "55765D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5221.933995309222, + "max_x": 2107.044855052501, + "max_y": 5221.933995309222, + "center": [ + 2102.1942227011377, + 5221.933995309222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.343590349775, + 5221.933995309222 + ], + [ + 2107.044855052501, + 5221.933995309222 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55765E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5219.253522237165, + "max_x": 2107.044855052509, + "max_y": 5219.253522237165, + "center": [ + 2102.194222701142, + 5219.253522237165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.044855052509, + 5219.253522237165 + ], + [ + 2097.343590349775, + 5219.253522237165 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55765F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5219.253522237165, + "max_x": 2097.343590349775, + "max_y": 5221.933995309222, + "center": [ + 2097.343590349775, + 5220.593758773193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.343590349775, + 5219.253522237165 + ], + [ + 2097.343590349775, + 5221.933995309222 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557660", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.044855052506, + "min_y": 5220.593758773192, + "max_x": 2108.385091588533, + "max_y": 5221.933995309218, + "center": [ + 2107.7149733205197, + 5221.263877041205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.044855052506, + 5221.933995309218 + ], + [ + 2108.385091588533, + 5220.593758773192 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557661", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.044855052506, + "min_y": 5219.253522237162, + "max_x": 2108.385091588533, + "max_y": 5220.593758773192, + "center": [ + 2107.7149733205197, + 5219.923640505177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.385091588533, + 5220.593758773192 + ], + [ + 2107.044855052506, + 5219.253522237162 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557662", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2098.687228347438, + "min_y": 5219.93912246551, + "max_x": 2104.9585639096413, + "max_y": 5221.432297599368, + "center": [ + 2101.8228961285395, + 5220.68571003244 + ] + }, + "raw_value": "T-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557663", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2356.953572622779, + "min_y": 5268.89717979988, + "max_x": 2413.51618956434, + "max_y": 5268.89717979988, + "center": [ + 2385.2348810935596, + 5268.89717979988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2356.953572622779, + 5268.89717979988 + ], + [ + 2413.51618956434, + 5268.89717979988 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557664", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.165445399204, + "min_y": 5248.903589294704, + "max_x": 2311.165445399204, + "max_y": 5257.552541462789, + "center": [ + 2311.165445399204, + 5253.228065378747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.165445399204, + 5257.552541462789 + ], + [ + 2311.165445399204, + 5248.903589294704 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "557665", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.979438304471, + "min_y": 5248.903589294704, + "max_x": 2303.154619530608, + "max_y": 5248.903589294704, + "center": [ + 2300.5670289175396, + 5248.903589294704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.154619530608, + 5248.903589294704 + ], + [ + 2297.979438304471, + 5248.903589294704 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "557666", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.979438304471, + "min_y": 5248.903589294704, + "max_x": 2297.979438304471, + "max_y": 5257.552541462786, + "center": [ + 2297.979438304471, + 5253.228065378746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.979438304471, + 5248.903589294704 + ], + [ + 2297.979438304471, + 5257.552541462786 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "557667", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.801195644704, + "min_y": 5249.084038852487, + "max_x": 2305.416355344672, + "max_y": 5249.452360574172, + "center": [ + 2305.108775494688, + 5249.2681997133295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.416355344672, + 5249.452360574172 + ], + [ + 2304.801195644704, + 5249.084038852487 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557668", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.58327325502, + "min_y": 5248.354818015237, + "max_x": 2304.198432954986, + "max_y": 5248.723139736926, + "center": [ + 2303.890853105003, + 5248.538978876081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.198432954986, + 5248.723139736926 + ], + [ + 2303.58327325502, + 5248.354818015237 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557669", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.416355344672, + "min_y": 5248.354818015237, + "max_x": 2305.416355344672, + "max_y": 5249.452360574172, + "center": [ + 2305.416355344672, + 5248.903589294705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.416355344672, + 5248.354818015237 + ], + [ + 2305.416355344672, + 5249.452360574172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.58327325502, + "min_y": 5248.354818015237, + "max_x": 2303.58327325502, + "max_y": 5249.452360574172, + "center": [ + 2303.58327325502, + 5248.903589294705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.58327325502, + 5248.354818015237 + ], + [ + 2303.58327325502, + 5249.452360574172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2304.801195644704, + "min_y": 5248.354818015237, + "max_x": 2305.416355344672, + "max_y": 5248.723139736926, + "center": [ + 2305.108775494688, + 5248.538978876081 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.416355344672, + 5248.354818015237 + ], + [ + 2304.801195644704, + 5248.723139736926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.58327325502, + "min_y": 5249.084038852485, + "max_x": 2304.198432954986, + "max_y": 5249.452360574172, + "center": [ + 2303.890853105003, + 5249.268199713329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.198432954986, + 5249.084038852485 + ], + [ + 2303.58327325502, + 5249.452360574172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.154619530608, + "min_y": 5248.334526948458, + "max_x": 2303.154619530608, + "max_y": 5249.47265164096, + "center": [ + 2303.154619530608, + 5248.903589294709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.154619530608, + 5248.334526948458 + ], + [ + 2303.154619530608, + 5249.47265164096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.845009069084, + "min_y": 5248.334526948458, + "max_x": 2305.845009069084, + "max_y": 5249.47265164096, + "center": [ + 2305.845009069084, + 5248.903589294709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.845009069084, + 5248.334526948458 + ], + [ + 2305.845009069084, + 5249.47265164096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55766F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2304.148541246607, + "min_y": 5248.552316241465, + "max_x": 2304.8510873530854, + "max_y": 5249.254862347943, + "center": [ + 2304.499814299846, + 5248.903589294704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.499814299846, + 5248.903589294704 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557670", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2305.845009069084, + "min_y": 5248.903589294704, + "max_x": 2311.165445399204, + "max_y": 5248.903589294704, + "center": [ + 2308.505227234144, + 5248.903589294704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2305.845009069084, + 5248.903589294704 + ], + [ + 2311.165445399204, + 5248.903589294704 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "557671", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2383.148653157322, + "min_y": 5265.128987316614, + "max_x": 2412.063948492694, + "max_y": 5265.128987316614, + "center": [ + 2397.606300825008, + 5265.128987316614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.148653157322, + 5265.128987316614 + ], + [ + 2412.063948492694, + 5265.128987316614 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557672", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.063948492694, + "min_y": 5250.354482381282, + "max_x": 2412.063948492694, + "max_y": 5251.449584843443, + "center": [ + 2412.063948492694, + 5250.902033612362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5250.354482381282 + ], + [ + 2412.063948492694, + 5251.449584843443 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557673", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2411.8459619764712, + "min_y": 5252.003041783322, + "max_x": 2412.2819350089144, + "max_y": 5252.439014815765, + "center": [ + 2412.063948492693, + 5252.221028299544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492693, + 5252.221028299544 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557674", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.710810336414, + "min_y": 5251.449584843443, + "max_x": 2412.417086648975, + "max_y": 5251.449584843443, + "center": [ + 2412.063948492694, + 5251.449584843443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.417086648975, + 5251.449584843443 + ], + [ + 2411.710810336414, + 5251.449584843443 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557675", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.710810336414, + "min_y": 5252.992471755645, + "max_x": 2412.417086648975, + "max_y": 5252.992471755645, + "center": [ + 2412.063948492694, + 5252.992471755645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.417086648975, + 5252.992471755645 + ], + [ + 2411.710810336414, + 5252.992471755645 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557676", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.723402190296, + "min_y": 5251.652258257287, + "max_x": 2411.951968452974, + "max_y": 5252.034002654352, + "center": [ + 2411.837685321635, + 5251.84313045582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.951968452974, + 5252.034002654352 + ], + [ + 2411.723402190296, + 5251.652258257287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557677", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.723402190296, + "min_y": 5251.652258257287, + "max_x": 2412.404494795093, + "max_y": 5251.652258257287, + "center": [ + 2412.063948492694, + 5251.652258257287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.723402190296, + 5251.652258257287 + ], + [ + 2412.404494795093, + 5251.652258257287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557678", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.175928532412, + "min_y": 5251.652258257287, + "max_x": 2412.404494795093, + "max_y": 5252.034002654352, + "center": [ + 2412.2902116637524, + 5251.84313045582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.404494795093, + 5251.652258257287 + ], + [ + 2412.175928532412, + 5252.034002654352 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557679", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.723402190296, + "min_y": 5252.408053944736, + "max_x": 2411.951968452974, + "max_y": 5252.789798341804, + "center": [ + 2411.837685321635, + 5252.59892614327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.951968452974, + 5252.408053944736 + ], + [ + 2411.723402190296, + 5252.789798341804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55767A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2411.723402190296, + "min_y": 5252.789798341804, + "max_x": 2412.404494795093, + "max_y": 5252.789798341804, + "center": [ + 2412.063948492694, + 5252.789798341804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.723402190296, + 5252.789798341804 + ], + [ + 2412.404494795093, + 5252.789798341804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55767B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.175928532412, + "min_y": 5252.408053944736, + "max_x": 2412.404494795093, + "max_y": 5252.789798341804, + "center": [ + 2412.2902116637524, + 5252.59892614327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.404494795093, + 5252.789798341804 + ], + [ + 2412.175928532412, + 5252.408053944736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55767C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.063948492694, + "min_y": 5252.992471755645, + "max_x": 2412.063948492694, + "max_y": 5258.30786585248, + "center": [ + 2412.063948492694, + 5255.650168804063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5252.992471755645 + ], + [ + 2412.063948492694, + 5258.30786585248 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55767D", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2412.063948492694, + "min_y": 5254.997241347471, + "max_x": 2412.423352722529, + "max_y": 5257.035524022018, + "center": [ + 2412.243650607612, + 5256.016382684744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5254.997241347471 + ], + [ + 2412.423352722529, + 5257.035524022018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55767E", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2411.704544262861, + "min_y": 5254.997241347471, + "max_x": 2412.063948492694, + "max_y": 5257.035524022018, + "center": [ + 2411.8842463777773, + 5256.016382684744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5254.997241347471 + ], + [ + 2411.704544262861, + 5257.035524022018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55767F", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2411.704544262861, + "min_y": 5257.035524022018, + "max_x": 2412.423352722529, + "max_y": 5257.035524022018, + "center": [ + 2412.063948492695, + 5257.035524022018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2411.704544262861, + 5257.035524022018 + ], + [ + 2412.423352722529, + 5257.035524022018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557680", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2412.063948492694, + "min_y": 5254.997241347471, + "max_x": 2412.242275119779, + "max_y": 5257.035524022018, + "center": [ + 2412.1531118062367, + 5256.016382684744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5254.997241347471 + ], + [ + 2412.242275119779, + 5257.035524022018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557681", + "entity_type": "LINE", + "layer": "건축", + "bbox": { + "min_x": 2411.885621865611, + "min_y": 5254.997241347471, + "max_x": 2412.063948492694, + "max_y": 5257.035524022018, + "center": [ + 2411.9747851791526, + 5256.016382684744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5254.997241347471 + ], + [ + 2411.885621865611, + 5257.035524022018 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557682", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.063948492694, + "min_y": 5258.30786585248, + "max_x": 2412.063948492694, + "max_y": 5265.128987316614, + "center": [ + 2412.063948492694, + 5261.718426584547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.063948492694, + 5258.30786585248 + ], + [ + 2412.063948492694, + 5265.128987316614 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557683", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2372.54833658326, + "min_y": 5264.364324024116, + "max_x": 2379.715577225778, + "max_y": 5265.857499157974, + "center": [ + 2376.131956904519, + 5265.110911591046 + ] + }, + "raw_value": "DP-10201", + "clean_value": "DP-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557684", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2370.613706230523, + "min_y": 5266.618139023313, + "max_x": 2381.659501450624, + "max_y": 5266.618139023313, + "center": [ + 2376.136603840573, + 5266.618139023313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.613706230523, + 5266.618139023313 + ], + [ + 2381.659501450624, + 5266.618139023313 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557685", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2381.659501450624, + "min_y": 5265.128987316614, + "max_x": 2383.148653157322, + "max_y": 5266.618139023313, + "center": [ + 2382.404077303973, + 5265.873563169964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.659501450624, + 5266.618139023313 + ], + [ + 2383.148653157322, + 5265.128987316614 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557686", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2381.659501450624, + "min_y": 5263.639835609918, + "max_x": 2383.148653157322, + "max_y": 5265.128987316614, + "center": [ + 2382.404077303973, + 5264.384411463267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.148653157322, + 5265.128987316614 + ], + [ + 2381.659501450624, + 5263.639835609918 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557687", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2370.613706230523, + "min_y": 5263.639835609918, + "max_x": 2381.659501450624, + "max_y": 5263.639835609918, + "center": [ + 2376.136603840573, + 5263.639835609918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.613706230523, + 5263.639835609918 + ], + [ + 2381.659501450624, + 5263.639835609918 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557688", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2370.613706230523, + "min_y": 5263.639835609918, + "max_x": 2370.613706230523, + "max_y": 5266.618139023313, + "center": [ + 2370.613706230523, + 5265.128987316615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.613706230523, + 5263.639835609918 + ], + [ + 2370.613706230523, + 5266.618139023313 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557689", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2481.350778761235, + "min_y": 5340.100510214207, + "max_x": 2484.216958294178, + "max_y": 5341.294751686267, + "center": [ + 2482.7838685277065, + 5340.697630950237 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55768A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2120.337310464699, + "min_y": 5204.15661828277, + "max_x": 2131.760100238712, + "max_y": 5205.276499633163, + "center": [ + 2126.0487053517054, + 5204.716558957967 + ] + }, + "raw_value": "P-10203-40A-F1A-n", + "clean_value": "P-10203-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55768B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2108.385091588533, + "min_y": 5214.803311655213, + "max_x": 2120.356828534468, + "max_y": 5214.803311655213, + "center": [ + 2114.3709600615007, + 5214.803311655213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.356828534468, + 5214.803311655213 + ], + [ + 2108.385091588533, + 5214.803311655213 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "55768C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5216.143548191242, + "max_x": 2107.044855052501, + "max_y": 5216.143548191242, + "center": [ + 2102.1942227011377, + 5216.143548191242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.343590349775, + 5216.143548191242 + ], + [ + 2107.044855052501, + 5216.143548191242 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55768D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5213.463075119186, + "max_x": 2107.044855052509, + "max_y": 5213.463075119186, + "center": [ + 2102.194222701142, + 5213.463075119186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.044855052509, + 5213.463075119186 + ], + [ + 2097.343590349775, + 5213.463075119186 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55768E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2097.343590349775, + "min_y": 5213.463075119186, + "max_x": 2097.343590349775, + "max_y": 5216.143548191242, + "center": [ + 2097.343590349775, + 5214.803311655214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2097.343590349775, + 5213.463075119186 + ], + [ + 2097.343590349775, + 5216.143548191242 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55768F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.044855052506, + "min_y": 5214.803311655213, + "max_x": 2108.385091588533, + "max_y": 5216.143548191238, + "center": [ + 2107.7149733205197, + 5215.473429923226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.044855052506, + 5216.143548191238 + ], + [ + 2108.385091588533, + 5214.803311655213 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557690", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.044855052506, + "min_y": 5213.463075119182, + "max_x": 2108.385091588533, + "max_y": 5214.803311655213, + "center": [ + 2107.7149733205197, + 5214.133193387197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.385091588533, + 5214.803311655213 + ], + [ + 2107.044855052506, + 5213.463075119182 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557691", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2098.687228347438, + "min_y": 5214.14867534753, + "max_x": 2104.9585639096413, + "max_y": 5215.641850481388, + "center": [ + 2101.8228961285395, + 5214.895262914459 + ] + }, + "raw_value": "T-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557692", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.356828534468, + "min_y": 5210.464376559265, + "max_x": 2120.356828534468, + "max_y": 5214.803311655213, + "center": [ + 2120.356828534468, + 5212.6338441072385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.356828534468, + 5210.464376559265 + ], + [ + 2120.356828534468, + 5214.803311655213 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557693", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2097.758976131478, + "min_y": 5211.516087144424, + "max_x": 2109.181765905491, + "max_y": 5212.6359684948175, + "center": [ + 2103.4703710184845, + 5212.076027819621 + ] + }, + "raw_value": "P-10236-40A-F1A-n", + "clean_value": "P-10236-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557694", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2403.448881310325, + "min_y": 5232.827180792713, + "max_x": 2414.871671084338, + "max_y": 5233.947062143106, + "center": [ + 2409.1602761973313, + 5233.387121467909 + ] + }, + "raw_value": "P-10237-40A-F1A-n", + "clean_value": "P-10237-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557695", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2098.003556011425, + "min_y": 5217.584340881169, + "max_x": 2109.426345785438, + "max_y": 5218.704222231562, + "center": [ + 2103.7149508984317, + 5218.144281556366 + ] + }, + "raw_value": "P-10237-40A-F1A-n", + "clean_value": "P-10237-40A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557696", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2220.995784049793, + "min_y": 5349.873881476824, + "max_x": 2224.691203969067, + "max_y": 5349.873881476824, + "center": [ + 2222.8434940094303, + 5349.873881476824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2220.995784049793, + 5349.873881476824 + ], + [ + 2224.691203969067, + 5349.873881476824 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "557697", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2222.496459723624, + "min_y": 5348.568586540347, + "max_x": 2223.123593279844, + "max_y": 5349.613809134047, + "center": [ + 2222.810026501734, + 5349.091197837197 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557698", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2422.834763702683, + "min_y": 5390.778760621248, + "max_x": 2426.530183621958, + "max_y": 5390.778760621248, + "center": [ + 2424.6824736623203, + 5390.778760621248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2422.834763702683, + 5390.778760621248 + ], + [ + 2426.530183621958, + 5390.778760621248 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "557699", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2424.327957081954, + "min_y": 5389.516201305173, + "max_x": 2424.955090638174, + "max_y": 5390.561423898874, + "center": [ + 2424.641523860064, + 5390.038812602023 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55769A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2222.718783022846, + "min_y": 5350.087317310109, + "max_x": 2223.345916579066, + "max_y": 5351.13253990381, + "center": [ + 2223.0323498009557, + 5350.609928606959 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55769B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2424.560217625649, + "min_y": 5391.035551024367, + "max_x": 2425.187351181869, + "max_y": 5392.080773618068, + "center": [ + 2424.8737844037587, + 5391.558162321217 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55769C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2377.954429928459, + "min_y": 5342.347586824209, + "max_x": 2378.581563484679, + "max_y": 5343.39280941791, + "center": [ + 2378.2679967065687, + 5342.87019812106 + ] + }, + "raw_value": "I", + "clean_value": "I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55769D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2376.256996817628, + "min_y": 5342.127040855925, + "max_x": 2379.952416736902, + "max_y": 5342.127040855925, + "center": [ + 2378.104706777265, + 5342.127040855925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2376.256996817628, + 5342.127040855925 + ], + [ + 2379.952416736902, + 5342.127040855925 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "55769E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2377.781489539342, + "min_y": 5340.815721649573, + "max_x": 2378.4086230955622, + "max_y": 5341.8609442432735, + "center": [ + 2378.095056317452, + 5341.338332946423 + ] + }, + "raw_value": "6", + "clean_value": "6", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55769F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.249974252425, + "min_y": 5305.005870455595, + "max_x": 2142.549561560947, + "max_y": 5305.005870455595, + "center": [ + 2142.399767906686, + 5305.005870455595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.249974252425, + 5305.005870455595 + ], + [ + 2142.549561560947, + 5305.005870455595 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A0", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2142.983606123717, + "min_y": 5305.185026541166, + "max_x": 2143.588773864911, + "max_y": 5305.79019428236, + "center": [ + 2143.286189994314, + 5305.487610411763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.286189994314, + 5305.487610411763 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A1", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 2143.179243811982, + "min_y": 5304.591527437725, + "max_x": 2143.581179049464, + "max_y": 5304.989860445136, + "center": [ + 2143.3802114307227, + 5304.790693941431 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2143.898337080646, + "min_y": 5305.005870455595, + "max_x": 2144.289236147995, + "max_y": 5305.005870455595, + "center": [ + 2144.0937866143204, + 5305.005870455595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.289236147995, + 5305.005870455595 + ], + [ + 2143.898337080646, + 5305.005870455595 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.549561560947, + "min_y": 5305.005870455595, + "max_x": 2142.674042907982, + "max_y": 5305.005870455595, + "center": [ + 2142.6118022344644, + 5305.005870455595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.549561560947, + 5305.005870455595 + ], + [ + 2142.674042907982, + 5305.005870455595 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2142.944248732457, + "min_y": 5305.79019428236, + "max_x": 2143.62813125617, + "max_y": 5305.79019428236, + "center": [ + 2143.2861899943136, + 5305.79019428236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.62813125617, + 5305.79019428236 + ], + [ + 2143.286189994314, + 5305.79019428236 + ], + [ + 2142.944248732457, + 5305.79019428236 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2142.674042907982, + "min_y": 5304.055538550641, + "max_x": 2143.898337080646, + "max_y": 5305.185026541163, + "center": [ + 2143.2861899943136, + 5304.620282545902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.933914111795, + 5304.826714370029 + ], + [ + 2142.674042907982, + 5304.826714370029 + ], + [ + 2142.674042907982, + 5305.185026541163 + ], + [ + 2142.933914111795, + 5305.185026541163 + ], + [ + 2143.638465876832, + 5305.185026541163 + ], + [ + 2143.898337080646, + 5305.185026541163 + ], + [ + 2143.898337080646, + 5304.826714370029 + ], + [ + 2142.933914111795, + 5304.826714370029 + ], + [ + 2142.933914111795, + 5304.055538550641 + ], + [ + 2143.638465876832, + 5304.055538550641 + ], + [ + 2143.638465876832, + 5304.826714370029 + ], + [ + 2143.638465876832, + 5304.826714370029 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.249974252425, + "min_y": 5302.846963680897, + "max_x": 2142.249974252425, + "max_y": 5305.005870455595, + "center": [ + 2142.249974252425, + 5303.926417068245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.249974252425, + 5302.846963680897 + ], + [ + 2142.249974252425, + 5305.005870455595 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.289236147995, + "min_y": 5305.005870455595, + "max_x": 2144.289236147995, + "max_y": 5311.664734284866, + "center": [ + 2144.289236147995, + 5308.335302370231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.289236147995, + 5305.005870455595 + ], + [ + 2144.289236147995, + 5311.664734284866 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2108.716918781086, + "min_y": 5311.664734284866, + "max_x": 2144.289236147995, + "max_y": 5311.664734284866, + "center": [ + 2126.50307746454, + 5311.664734284866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.289236147995, + 5311.664734284866 + ], + [ + 2108.716918781086, + 5311.664734284866 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576AC", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2096.181971854287, + "min_y": 5313.153885991564, + "max_x": 2107.227767074388, + "max_y": 5313.153885991564, + "center": [ + 2101.704869464337, + 5313.153885991564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.181971854287, + 5313.153885991564 + ], + [ + 2107.227767074388, + 5313.153885991564 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576AD", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.227767074388, + "min_y": 5311.664734284866, + "max_x": 2108.716918781086, + "max_y": 5313.153885991564, + "center": [ + 2107.972342927737, + 5312.409310138215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.227767074388, + 5313.153885991564 + ], + [ + 2108.716918781086, + 5311.664734284866 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576AE", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2107.227767074388, + "min_y": 5310.175582578168, + "max_x": 2108.716918781086, + "max_y": 5311.664734284866, + "center": [ + 2107.972342927737, + 5310.920158431518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2108.716918781086, + 5311.664734284866 + ], + [ + 2107.227767074388, + 5310.175582578168 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576AF", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2096.181971854287, + "min_y": 5310.175582578168, + "max_x": 2107.227767074388, + "max_y": 5310.175582578168, + "center": [ + 2101.704869464337, + 5310.175582578168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.181971854287, + 5310.175582578168 + ], + [ + 2107.227767074388, + 5310.175582578168 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2096.181971854287, + "min_y": 5310.175582578168, + "max_x": 2096.181971854287, + "max_y": 5313.153885991564, + "center": [ + 2096.181971854287, + 5311.664734284866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2096.181971854287, + 5310.175582578168 + ], + [ + 2096.181971854287, + 5313.153885991564 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576B1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2096.384973147129, + "min_y": 5310.880499366216, + "max_x": 2108.0317391912204, + "max_y": 5312.373674500074, + "center": [ + 2102.2083561691747, + 5311.627086933146 + ] + }, + "raw_value": "K-10901 (Air)", + "clean_value": "K-10901 (Air)", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5576B2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2140.735186393059, + "min_y": 5301.116443913603, + "max_x": 2143.776449295188, + "max_y": 5302.846963680897, + "center": [ + 2142.255817844123, + 5301.98170379725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.776449295188, + 5302.846963680897 + ], + [ + 2142.672962025523, + 5302.846963680897 + ], + [ + 2141.838673662714, + 5302.846963680897 + ], + [ + 2140.735186393059, + 5302.846963680897 + ], + [ + 2140.735186393059, + 5301.116443913603 + ], + [ + 2141.838673662714, + 5301.116443913603 + ], + [ + 2142.672962025523, + 5301.116443913603 + ], + [ + 2143.776449295188, + 5301.116443913603 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.005680558186, + "min_y": 5300.495968209327, + "max_x": 2142.25581784412, + "max_y": 5300.495968209327, + "center": [ + 2141.130749201153, + 5300.495968209327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.25581784412, + 5300.495968209327 + ], + [ + 2140.005680558186, + 5300.495968209327 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.005680558186, + "min_y": 5298.772806271879, + "max_x": 2140.005680558186, + "max_y": 5300.495968209327, + "center": [ + 2140.005680558186, + 5299.634387240603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.005680558186, + 5300.495968209327 + ], + [ + 2140.005680558186, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.168746253499, + "min_y": 5298.772806271879, + "max_x": 2140.168746253499, + "max_y": 5300.332902514023, + "center": [ + 2140.168746253499, + 5299.55285439295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.168746253499, + 5300.332902514023 + ], + [ + 2140.168746253499, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.005680558186, + "min_y": 5300.332902514023, + "max_x": 2142.25581784412, + "max_y": 5300.332902514023, + "center": [ + 2141.130749201153, + 5300.332902514023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.25581784412, + 5300.332902514023 + ], + [ + 2140.005680558186, + 5300.332902514023 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.533145464159, + "min_y": 5298.772806271879, + "max_x": 2140.641281347521, + "max_y": 5298.772806271879, + "center": [ + 2140.08721340584, + 5298.772806271879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.641281347521, + 5298.772806271879 + ], + [ + 2139.533145464159, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.533145464159, + "min_y": 5298.670860555573, + "max_x": 2140.641281347521, + "max_y": 5298.670860555573, + "center": [ + 2140.08721340584, + 5298.670860555573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.533145464159, + 5298.670860555573 + ], + [ + 2140.641281347521, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2140.641281347521, + "min_y": 5298.670860555573, + "max_x": 2140.641281347521, + "max_y": 5298.772806271879, + "center": [ + 2140.641281347521, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2140.641281347521, + 5298.772806271879 + ], + [ + 2140.641281347521, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.25581784412, + "min_y": 5300.495968209327, + "max_x": 2144.505955130061, + "max_y": 5300.495968209327, + "center": [ + 2143.3808864870907, + 5300.495968209327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.25581784412, + 5300.495968209327 + ], + [ + 2144.505955130061, + 5300.495968209327 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.505955130061, + "min_y": 5298.772806271879, + "max_x": 2144.505955130061, + "max_y": 5300.495968209327, + "center": [ + 2144.505955130061, + 5299.634387240603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.505955130061, + 5300.495968209327 + ], + [ + 2144.505955130061, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.342889434748, + "min_y": 5298.772806271879, + "max_x": 2144.342889434748, + "max_y": 5300.332902514023, + "center": [ + 2144.342889434748, + 5299.55285439295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.342889434748, + 5300.332902514023 + ], + [ + 2144.342889434748, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2142.25581784412, + "min_y": 5300.332902514023, + "max_x": 2144.505955130061, + "max_y": 5300.332902514023, + "center": [ + 2143.3808864870907, + 5300.332902514023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.25581784412, + 5300.332902514023 + ], + [ + 2144.505955130061, + 5300.332902514023 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2143.870354340721, + "min_y": 5298.772806271879, + "max_x": 2144.978490224096, + "max_y": 5298.772806271879, + "center": [ + 2144.424422282408, + 5298.772806271879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.870354340721, + 5298.772806271879 + ], + [ + 2144.978490224096, + 5298.772806271879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.978490224096, + "min_y": 5298.670860555573, + "max_x": 2144.978490224096, + "max_y": 5298.772806271879, + "center": [ + 2144.978490224096, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.978490224096, + 5298.772806271879 + ], + [ + 2144.978490224096, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2143.870354340721, + "min_y": 5298.670860555573, + "max_x": 2144.978490224096, + "max_y": 5298.670860555573, + "center": [ + 2144.424422282408, + 5298.670860555573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.978490224096, + 5298.670860555573 + ], + [ + 2143.870354340721, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2143.870354340721, + "min_y": 5298.670860555573, + "max_x": 2143.870354340721, + "max_y": 5298.772806271879, + "center": [ + 2143.870354340721, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2143.870354340721, + 5298.772806271879 + ], + [ + 2143.870354340721, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.978490224096, + "min_y": 5298.670860555573, + "max_x": 2144.978490224096, + "max_y": 5298.772806271879, + "center": [ + 2144.978490224096, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.978490224096, + 5298.772806271879 + ], + [ + 2144.978490224096, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.533145464159, + "min_y": 5298.670860555573, + "max_x": 2139.533145464159, + "max_y": 5298.772806271879, + "center": [ + 2139.533145464159, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.533145464159, + 5298.772806271879 + ], + [ + 2139.533145464159, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2139.533145464159, + "min_y": 5298.670860555573, + "max_x": 2139.533145464159, + "max_y": 5298.772806271879, + "center": [ + 2139.533145464159, + 5298.721833413726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2139.533145464159, + 5298.772806271879 + ], + [ + 2139.533145464159, + 5298.670860555573 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576C5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2096.111531317347, + "min_y": 5307.956847344737, + "max_x": 2108.8781787118314, + "max_y": 5309.07672869513, + "center": [ + 2102.494855014589, + 5308.516788019933 + ] + }, + "raw_value": "SARF-UTILITY-UFD-IA", + "clean_value": "SARF-UTILITY-UFD-IA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2453.845342403552, + "min_y": 5395.918682015735, + "max_x": 2486.319905870467, + "max_y": 5395.918682015735, + "center": [ + 2470.0826241370096, + 5395.918682015735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2453.845342403552, + 5395.918682015735 + ], + [ + 2486.319905870467, + 5395.918682015735 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576C7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2128.271242611756, + "min_y": 5307.395694576622, + "max_x": 2133.7126565028093, + "max_y": 5308.403363815706, + "center": [ + 2130.9919495572826, + 5307.899529196164 + ] + }, + "raw_value": "PSV-10201", + "clean_value": "PSV-10201", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5576C8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2128.932291319986, + "min_y": 5306.100261755191, + "max_x": 2133.1645021241384, + "max_y": 5307.107930994275, + "center": [ + 2131.048396722062, + 5306.604096374733 + ] + }, + "raw_value": "15Ax15A", + "clean_value": "15Ax15A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5576C9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2128.193343094241, + "min_y": 5304.712051578839, + "max_x": 2134.2393585287446, + "max_y": 5305.719720817923, + "center": [ + 2131.2163508114927, + 5305.215886198381 + ] + }, + "raw_value": "SP: 0.3MPa", + "clean_value": "SP: 0.3MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5576CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.462788973731, + "min_y": 5304.293090560009, + "max_x": 2136.539770488254, + "max_y": 5304.293090560009, + "center": [ + 2136.001279730993, + 5304.293090560009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.539770488254, + 5304.293090560009 + ], + [ + 2135.462788973731, + 5304.293090560009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.848049958001, + "min_y": 5304.099402243157, + "max_x": 2136.235426591708, + "max_y": 5304.486778876861, + "center": [ + 2136.0417382748547, + 5304.293090560009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.848049958001, + 5304.099402243157 + ], + [ + 2136.235426591708, + 5304.486778876861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.654361641149, + "min_y": 5304.099402243157, + "max_x": 2136.041738274856, + "max_y": 5304.486778876861, + "center": [ + 2135.848049958003, + 5304.293090560009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.041738274856, + 5304.486778876861 + ], + [ + 2135.654361641149, + 5304.099402243157 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.460673324295, + "min_y": 5304.099402243157, + "max_x": 2135.848049958001, + "max_y": 5304.486778876861, + "center": [ + 2135.654361641148, + 5304.293090560009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2135.460673324295, + 5304.099402243157 + ], + [ + 2135.848049958001, + 5304.486778876861 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2135.460673324295, + "min_y": 5304.293090560009, + "max_x": 2136.539770488254, + "max_y": 5304.293090560009, + "center": [ + 2136.0002219062744, + 5304.293090560009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.539770488254, + 5304.293090560009 + ], + [ + 2135.460673324295, + 5304.293090560009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.539770488254, + "min_y": 5303.905713926299, + "max_x": 2137.314523755665, + "max_y": 5304.293090560009, + "center": [ + 2136.9271471219595, + 5304.099402243153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.539770488254, + 5304.293090560009 + ], + [ + 2137.314523755665, + 5303.905713926299 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2137.314523755665, + "min_y": 5303.905713926299, + "max_x": 2137.314523755665, + "max_y": 5304.680467193717, + "center": [ + 2137.314523755665, + 5304.293090560008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.314523755665, + 5303.905713926299 + ], + [ + 2137.314523755665, + 5304.680467193717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.539770488254, + "min_y": 5304.293090560009, + "max_x": 2137.314523755665, + "max_y": 5304.680467193717, + "center": [ + 2136.9271471219595, + 5304.486778876862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.314523755665, + 5304.680467193717 + ], + [ + 2136.539770488254, + 5304.293090560009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.152393854544, + "min_y": 5304.293090560009, + "max_x": 2136.539770488254, + "max_y": 5305.067843827423, + "center": [ + 2136.346082171399, + 5304.680467193715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.539770488254, + 5304.293090560009 + ], + [ + 2136.152393854544, + 5305.067843827423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.152393854544, + "min_y": 5305.067843827423, + "max_x": 2136.927147121956, + "max_y": 5305.067843827423, + "center": [ + 2136.53977048825, + 5305.067843827423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.152393854544, + 5305.067843827423 + ], + [ + 2136.927147121956, + 5305.067843827423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.539770488254, + "min_y": 5304.293090560009, + "max_x": 2136.927147121956, + "max_y": 5305.067843827423, + "center": [ + 2136.733458805105, + 5304.680467193715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.927147121956, + 5305.067843827423 + ], + [ + 2136.539770488254, + 5304.293090560009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2137.582563121129, + "min_y": 5303.905713926299, + "max_x": 2137.582563121129, + "max_y": 5304.680467193717, + "center": [ + 2137.582563121129, + 5304.293090560008 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2137.582563121129, + 5303.905713926299 + ], + [ + 2137.582563121129, + 5304.680467193717 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.152393854544, + "min_y": 5305.330246290882, + "max_x": 2136.927147121956, + "max_y": 5305.330246290882, + "center": [ + 2136.53977048825, + 5305.330246290882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.152393854544, + 5305.330246290882 + ], + [ + 2136.927147121956, + 5305.330246290882 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2137.60335159512, + "min_y": 5304.30945825759, + "max_x": 2142.248270574301, + "max_y": 5304.30945825759, + "center": [ + 2139.9258110847104, + 5304.30945825759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2142.248270574301, + 5304.30945825759 + ], + [ + 2137.60335159512, + 5304.30945825759 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2136.525327628038, + "min_y": 5305.331120614076, + "max_x": 2136.525327628038, + "max_y": 5307.630164663052, + "center": [ + 2136.525327628038, + 5306.480642638564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.525327628038, + 5305.331120614076 + ], + [ + 2136.525327628038, + 5307.630164663052 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5576D9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2138.324108269241, + "min_y": 5306.329031576153, + "max_x": 2146.457445075969, + "max_y": 5307.458661688199, + "center": [ + 2142.390776672605, + 5306.893846632176 + ] + }, + "raw_value": "0.7->0.29MPa", + "clean_value": "0.7->0.29MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5576DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2225.235464563925, + "min_y": 5295.760389704937, + "max_x": 2258.290375268585, + "max_y": 5295.760389704937, + "center": [ + 2241.7629199162548, + 5295.760389704937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2225.235464563925, + 5295.760389704937 + ], + [ + 2258.290375268585, + 5295.760389704937 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5576DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.88741173592, + "min_y": 5219.945708730997, + "max_x": 2365.025536428424, + "max_y": 5219.945708730997, + "center": [ + 2364.456474082172, + 5219.945708730997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.88741173592, + 5219.945708730997 + ], + [ + 2365.025536428424, + 5219.945708730997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576DC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2364.1052010289336, + "min_y": 5218.351297785914, + "max_x": 2364.8077471354122, + "max_y": 5219.053843892392, + "center": [ + 2364.456474082173, + 5218.702570839153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.456474082173, + 5218.702570839153 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.907702802704, + "min_y": 5217.459432947308, + "max_x": 2365.005245361642, + "max_y": 5217.459432947308, + "center": [ + 2364.4564740821734, + 5217.459432947308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.005245361642, + 5217.459432947308 + ], + [ + 2363.907702802704, + 5217.459432947308 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.901545574697, + "min_y": 5219.619111883976, + "max_x": 2365.011402589649, + "max_y": 5219.619111883976, + "center": [ + 2364.4564740821734, + 5219.619111883976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.901545574697, + 5219.619111883976 + ], + [ + 2365.011402589649, + 5219.619111883976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.907702802704, + "min_y": 5217.786029794327, + "max_x": 2364.276024524392, + "max_y": 5218.401189494293, + "center": [ + 2364.091863663548, + 5218.09360964431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.276024524392, + 5218.401189494293 + ], + [ + 2363.907702802704, + 5217.786029794327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.907702802704, + "min_y": 5217.786029794327, + "max_x": 2365.005245361642, + "max_y": 5217.786029794327, + "center": [ + 2364.4564740821734, + 5217.786029794327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.907702802704, + 5217.786029794327 + ], + [ + 2365.005245361642, + 5217.786029794327 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.636923639954, + "min_y": 5217.786029794327, + "max_x": 2365.005245361642, + "max_y": 5218.401189494293, + "center": [ + 2364.821084500798, + 5218.09360964431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.005245361642, + 5217.786029794327 + ], + [ + 2364.636923639954, + 5218.401189494293 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.907702802704, + "min_y": 5219.00395218401, + "max_x": 2364.276024524392, + "max_y": 5219.619111883976, + "center": [ + 2364.091863663548, + 5219.311532033993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.276024524392, + 5219.00395218401 + ], + [ + 2363.907702802704, + 5219.619111883976 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.636923639954, + "min_y": 5219.00395218401, + "max_x": 2365.005245361642, + "max_y": 5219.619111883976, + "center": [ + 2364.821084500798, + 5219.311532033993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.005245361642, + 5219.619111883976 + ], + [ + 2364.636923639954, + 5219.00395218401 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.463363540354, + "min_y": 5219.945385025801, + "max_x": 2364.463363540354, + "max_y": 5220.519930335252, + "center": [ + 2364.463363540354, + 5220.232657680526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.463363540354, + 5220.519930335252 + ], + [ + 2364.463363540354, + 5219.945385025801 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5576E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.457824873087, + "min_y": 5220.520975433002, + "max_x": 2365.695536713587, + "max_y": 5220.520975433002, + "center": [ + 2365.076680793337, + 5220.520975433002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.457824873087, + 5220.520975433002 + ], + [ + 2365.695536713587, + 5220.520975433002 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5576E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.003019653403, + "min_y": 5219.931150612129, + "max_x": 2366.003019653403, + "max_y": 5220.938684051186, + "center": [ + 2366.003019653403, + 5220.434917331658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.003019653403, + 5219.931150612129 + ], + [ + 2366.003019653403, + 5220.938684051186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.696508888371, + "min_y": 5219.931458220301, + "max_x": 2365.696508888371, + "max_y": 5220.938991659349, + "center": [ + 2365.696508888371, + 5220.435224939825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.696508888371, + 5220.938991659349 + ], + [ + 2365.696508888371, + 5219.931458220301 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576E8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2364.450530875347, + "min_y": 5215.783385909958, + "max_x": 2364.450530875347, + "max_y": 5217.463033684914, + "center": [ + 2364.450530875347, + 5216.623209797436 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.450530875347, + 5215.783385909958 + ], + [ + 2364.450530875347, + 5217.463033684914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576E9", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2245.860148817657, + "min_y": 5277.068938855731, + "max_x": 2245.860148817657, + "max_y": 5295.685689636433, + "center": [ + 2245.860148817657, + 5286.377314246082 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2245.860148817657, + 5295.685689636433 + ], + [ + 2245.860148817657, + 5277.068938855731 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5576EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.447082033731, + "min_y": 5271.039579386862, + "max_x": 2240.447082033731, + "max_y": 5272.137121945795, + "center": [ + 2240.447082033731, + 5271.588350666329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.447082033731, + 5271.039579386862 + ], + [ + 2240.447082033731, + 5272.137121945795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.773678880753, + "min_y": 5271.039579386862, + "max_x": 2240.773678880753, + "max_y": 5272.137121945795, + "center": [ + 2240.773678880753, + 5271.588350666329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.773678880753, + 5271.039579386862 + ], + [ + 2240.773678880753, + 5272.137121945795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2240.447082033731, + "min_y": 5271.039579386862, + "max_x": 2240.447082033731, + "max_y": 5272.137121945795, + "center": [ + 2240.447082033731, + 5271.588350666329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2240.447082033731, + 5271.039579386862 + ], + [ + 2240.447082033731, + 5272.137121945795 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576ED", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2115.734325691654, + "min_y": 5203.004277087577, + "max_x": 2117.548130322005, + "max_y": 5204.011946326661, + "center": [ + 2116.6412280068294, + 5203.508111707119 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576EE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2140.915789496535, + "min_y": 5221.505335974699, + "max_x": 2142.7295941268862, + "max_y": 5222.513005213783, + "center": [ + 2141.8226918117107, + 5222.009170594241 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576EF", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2132.425209944837, + "min_y": 5207.030731861579, + "max_x": 2139.8164268574337, + "max_y": 5208.150613211972, + "center": [ + 2136.1208184011357, + 5207.590672536775 + ] + }, + "raw_value": "P10201BA-05", + "clean_value": "P10201BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F0", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2135.148846619352, + "min_y": 5206.985936607565, + "max_x": 2142.5400635319484, + "max_y": 5208.105817957959, + "center": [ + 2138.8444550756503, + 5207.545877282762 + ] + }, + "raw_value": "P10201ST-01", + "clean_value": "P10201ST-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F1", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2119.392754889369, + "min_y": 5207.542378508811, + "max_x": 2126.7839718019654, + "max_y": 5208.662259859205, + "center": [ + 2123.088363345667, + 5208.102319184009 + ] + }, + "raw_value": "P10201BA-03", + "clean_value": "P10201BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F2", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2124.400732000571, + "min_y": 5207.571664924665, + "max_x": 2131.7919489131677, + "max_y": 5208.6915462750585, + "center": [ + 2128.0963404568693, + 5208.131605599861 + ] + }, + "raw_value": "P10201BA-02", + "clean_value": "P10201BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F3", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2126.421494694565, + "min_y": 5207.60095134052, + "max_x": 2133.8127116071614, + "max_y": 5208.720832690913, + "center": [ + 2130.117103150863, + 5208.160892015716 + ] + }, + "raw_value": "P10201BA-01", + "clean_value": "P10201BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2133.434565248279, + "min_y": 5202.816109937985, + "max_x": 2135.24836987863, + "max_y": 5203.823779177069, + "center": [ + 2134.3414675634544, + 5203.3199445575265 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576F5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2136.794193654105, + "min_y": 5197.51011421434, + "max_x": 2144.1854105667016, + "max_y": 5198.629995564734, + "center": [ + 2140.4898021104036, + 5198.070054889537 + ] + }, + "raw_value": "P10201BA-06", + "clean_value": "P10201BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2119.264853908678, + "min_y": 5197.467721615197, + "max_x": 2126.6560708212746, + "max_y": 5198.58760296559, + "center": [ + 2122.9604623649766, + 5198.027662290393 + ] + }, + "raw_value": "P10201BA-04", + "clean_value": "P10201BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2144.859798991083, + "min_y": 5216.046355523396, + "max_x": 2149.5633006627354, + "max_y": 5217.16623687379, + "center": [ + 2147.2115498269095, + 5216.606296198594 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F8", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2140.110470300484, + "min_y": 5218.471835224558, + "max_x": 2147.5016872130805, + "max_y": 5219.5917165749515, + "center": [ + 2143.806078756782, + 5219.031775899755 + ] + }, + "raw_value": "P10102CV-08", + "clean_value": "P10102CV-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576F9", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2143.607673961737, + "min_y": 5213.587311102643, + "max_x": 2150.9988908743335, + "max_y": 5214.707192453036, + "center": [ + 2147.3032824180355, + 5214.14725177784 + ] + }, + "raw_value": "P10201CV-01", + "clean_value": "P10201CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576FA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2151.918700160142, + "min_y": 5218.905090868368, + "max_x": 2153.7325047904933, + "max_y": 5219.9127601074515, + "center": [ + 2152.8256024753177, + 5219.408925487909 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576FB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2152.005407688934, + "min_y": 5215.523497245502, + "max_x": 2153.8192123192853, + "max_y": 5216.531166484586, + "center": [ + 2152.9123100041097, + 5216.027331865043 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576FC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2147.351198494232, + "min_y": 5221.285009085258, + "max_x": 2154.7424154068285, + "max_y": 5222.404890435651, + "center": [ + 2151.0468069505305, + 5221.844949760454 + ] + }, + "raw_value": "P10201BA-07", + "clean_value": "P10201BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5576FD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2156.753512416024, + "min_y": 5241.313297500654, + "max_x": 2158.567317046375, + "max_y": 5242.320966739738, + "center": [ + 2157.6604147311996, + 5241.817132120195 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576FE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2164.926148673016, + "min_y": 5241.489244141734, + "max_x": 2167.3445548468176, + "max_y": 5242.496913380818, + "center": [ + 2166.135351759917, + 5241.993078761276 + ] + }, + "raw_value": "1/4\"", + "clean_value": "1/4\"", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5576FF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2165.070357195214, + "min_y": 5222.05700187154, + "max_x": 2167.4887633690155, + "max_y": 5223.064671110624, + "center": [ + 2166.2795602821147, + 5222.560836491082 + ] + }, + "raw_value": "1/4\"", + "clean_value": "1/4\"", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557700", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2164.244571206725, + "min_y": 5232.320342014197, + "max_x": 2166.6629773805266, + "max_y": 5233.328011253281, + "center": [ + 2165.453774293626, + 5232.82417663374 + ] + }, + "raw_value": "1/4\"", + "clean_value": "1/4\"", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557701", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2164.067617066334, + "min_y": 5212.973355998155, + "max_x": 2166.4860232401356, + "max_y": 5213.981025237239, + "center": [ + 2165.276820153235, + 5213.4771906176975 + ] + }, + "raw_value": "1/4\"", + "clean_value": "1/4\"", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557702", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2156.989451269879, + "min_y": 5221.848342057683, + "max_x": 2158.80325590023, + "max_y": 5222.856011296767, + "center": [ + 2157.8963535850544, + 5222.352176677225 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557703", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2173.092278045427, + "min_y": 5230.755033790678, + "max_x": 2174.906082675778, + "max_y": 5231.762703029762, + "center": [ + 2173.9991803606026, + 5231.258868410219 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557704", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2171.593051336913, + "min_y": 5226.272195567449, + "max_x": 2173.406855967264, + "max_y": 5227.279864806533, + "center": [ + 2172.4999536520886, + 5226.776030186991 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557705", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2186.067877177622, + "min_y": 5225.813022436376, + "max_x": 2187.881681807973, + "max_y": 5226.82069167546, + "center": [ + 2186.9747794927976, + 5226.316857055917 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557706", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2239.877041193064, + "min_y": 5269.796353878512, + "max_x": 2241.690845823415, + "max_y": 5270.8040231175955, + "center": [ + 2240.7839435082396, + 5270.300188498053 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557707", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2229.890034188273, + "min_y": 5251.449260916715, + "max_x": 2231.7038388186243, + "max_y": 5252.456930155799, + "center": [ + 2230.7969365034487, + 5251.953095536257 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557708", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2212.576027358847, + "min_y": 5275.810132856611, + "max_x": 2212.576027358847, + "max_y": 5276.907675415541, + "center": [ + 2212.576027358847, + 5276.358904136076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2212.576027358847, + 5275.810132856611 + ], + [ + 2212.576027358847, + 5276.907675415541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557709", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.157919733286, + "min_y": 5275.810132856611, + "max_x": 2210.157919733286, + "max_y": 5276.907675415541, + "center": [ + 2210.157919733286, + 5276.358904136076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.157919733286, + 5276.907675415541 + ], + [ + 2210.157919733286, + 5275.810132856611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2211.0541894279977, + "min_y": 5276.010268453559, + "max_x": 2211.7567355344763, + "max_y": 5276.712814560037, + "center": [ + 2211.405462481237, + 5276.361541506798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2211.405462481237, + 5276.361541506798 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.484516580304, + "min_y": 5276.538093295449, + "max_x": 2211.101781359233, + "max_y": 5276.907675415541, + "center": [ + 2210.7931489697685, + 5276.722884355495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2211.101781359233, + 5276.538093295449 + ], + [ + 2210.484516580304, + 5276.907675415541 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.484516580304, + "min_y": 5275.810132856611, + "max_x": 2210.484516580304, + "max_y": 5276.907675415541, + "center": [ + 2210.484516580304, + 5276.358904136076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.484516580304, + 5276.907675415541 + ], + [ + 2210.484516580304, + 5275.810132856611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2210.484516580304, + "min_y": 5275.810132856611, + "max_x": 2211.104081136371, + "max_y": 5276.18109194902, + "center": [ + 2210.7942988583372, + 5275.995612402816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.484516580304, + 5275.810132856611 + ], + [ + 2211.104081136371, + 5276.18109194902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2212.317598669951, + "min_y": 5275.810132856611, + "max_x": 2212.317598669951, + "max_y": 5276.907675415541, + "center": [ + 2212.317598669951, + 5276.358904136076 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2212.317598669951, + 5276.907675415541 + ], + [ + 2212.317598669951, + 5275.810132856611 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55770F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2211.702438969988, + "min_y": 5275.810132856611, + "max_x": 2212.317598669951, + "max_y": 5276.178454578296, + "center": [ + 2212.0100188199694, + 5275.994293717453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2212.317598669951, + 5275.810132856611 + ], + [ + 2211.702438969988, + 5276.178454578296 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557710", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2211.702438969988, + "min_y": 5276.544628435302, + "max_x": 2212.317598669951, + "max_y": 5276.912950156988, + "center": [ + 2212.0100188199694, + 5276.728789296145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2212.317598669951, + 5276.912950156988 + ], + [ + 2211.702438969988, + 5276.544628435302 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557712", + "entity_type": "LINE", + "layer": "STEAM LINE", + "bbox": { + "min_x": 2209.600869482681, + "min_y": 5276.384082252523, + "max_x": 2210.157307415433, + "max_y": 5276.384082252523, + "center": [ + 2209.8790884490572, + 5276.384082252523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2210.157307415433, + 5276.384082252523 + ], + [ + 2209.600869482681, + 5276.384082252523 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557713", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2203.626963564729, + "min_y": 5249.89766000711, + "max_x": 2205.642749995437, + "max_y": 5251.017541357503, + "center": [ + 2204.6348567800833, + 5250.457600682306 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557714", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2209.719891991861, + "min_y": 5279.651190568439, + "max_x": 2211.735678422569, + "max_y": 5280.771071918833, + "center": [ + 2210.7277852072148, + 5280.2111312436355 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557715", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2259.095137991963, + "min_y": 5296.927431909771, + "max_x": 2261.110924422671, + "max_y": 5298.047313260165, + "center": [ + 2260.103031207317, + 5297.487372584968 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557716", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2259.286977341542, + "min_y": 5292.339287316009, + "max_x": 2263.990479013194, + "max_y": 5293.459168666403, + "center": [ + 2261.6387281773677, + 5292.899227991205 + ] + }, + "raw_value": "25Ax40A", + "clean_value": "25Ax40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557717", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2267.108627464359, + "min_y": 5255.916884999721, + "max_x": 2269.5270336381604, + "max_y": 5256.924554238805, + "center": [ + 2268.3178305512597, + 5256.420719619264 + ] + }, + "raw_value": "200A", + "clean_value": "200A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557718", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2238.625315561419, + "min_y": 5239.084598880699, + "max_x": 2241.3130308023633, + "max_y": 5240.204480231092, + "center": [ + 2239.969173181891, + 5239.644539555895 + ] + }, + "raw_value": "200A", + "clean_value": "200A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557719", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2258.512911942474, + "min_y": 5274.623198744621, + "max_x": 2261.2006271834184, + "max_y": 5275.743080095014, + "center": [ + 2259.8567695629463, + 5275.183139419818 + ] + }, + "raw_value": "400A", + "clean_value": "400A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55771A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2277.663674255883, + "min_y": 5216.920060042349, + "max_x": 2279.477478886234, + "max_y": 5217.927729281433, + "center": [ + 2278.5705765710586, + 5217.423894661892 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55771B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2277.663674255883, + "min_y": 5220.268230112429, + "max_x": 2279.477478886234, + "max_y": 5221.275899351513, + "center": [ + 2278.5705765710586, + 5220.772064731971 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55771C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2286.148965231391, + "min_y": 5214.502916823614, + "max_x": 2293.5401821439873, + "max_y": 5215.622798174008, + "center": [ + 2289.8445736876893, + 5215.062857498811 + ] + }, + "raw_value": "P10216CV-01", + "clean_value": "P10216CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55771D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2275.410980063123, + "min_y": 5204.180612001624, + "max_x": 2277.426766493831, + "max_y": 5205.300493352017, + "center": [ + 2276.418873278477, + 5204.74055267682 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55771E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.053788043593, + "min_y": 5220.52298202896, + "max_x": 2297.916708174294, + "max_y": 5220.522982028962, + "center": [ + 2295.485248108944, + 5220.5229820289605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.916708174294, + 5220.522982028962 + ], + [ + 2293.053788043593, + 5220.52298202896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55771F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2309.697662699575, + "min_y": 5216.897992716388, + "max_x": 2311.15265165305, + "max_y": 5217.706319912763, + "center": [ + 2310.4251571763125, + 5217.302156314576 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557720", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2327.613726374516, + "min_y": 5218.524038611914, + "max_x": 2339.036516148529, + "max_y": 5219.643919962307, + "center": [ + 2333.3251212615223, + 5219.08397928711 + ] + }, + "raw_value": "P-10213-20A-F1A-n", + "clean_value": "P-10213-20A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557721", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2298.848256324711, + "min_y": 5374.024187477051, + "max_x": 2300.6620609550623, + "max_y": 5375.031856716135, + "center": [ + 2299.7551586398868, + 5374.528022096592 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557722", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2320.229055326751, + "min_y": 5320.790442146318, + "max_x": 2322.0428599571023, + "max_y": 5321.798111385402, + "center": [ + 2321.135957641927, + 5321.294276765861 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557723", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2294.617346447837, + "min_y": 5337.610259239249, + "max_x": 2296.431151078188, + "max_y": 5338.617928478333, + "center": [ + 2295.5242487630126, + 5338.1140938587905 + ] + }, + "raw_value": "65A", + "clean_value": "65A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557724", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2294.478213172677, + "min_y": 5312.226761436986, + "max_x": 2296.292017803028, + "max_y": 5313.23443067607, + "center": [ + 2295.3851154878525, + 5312.730596056528 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557725", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2301.451378569998, + "min_y": 5274.837781242328, + "max_x": 2303.265183200349, + "max_y": 5275.845450481412, + "center": [ + 2302.3582808851734, + 5275.341615861869 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557726", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2317.406887815367, + "min_y": 5292.661641251035, + "max_x": 2319.220692445718, + "max_y": 5293.669310490119, + "center": [ + 2318.3137901305427, + 5293.165475870577 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557727", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2317.369908852694, + "min_y": 5289.333534610404, + "max_x": 2319.1837134830453, + "max_y": 5290.341203849488, + "center": [ + 2318.2768111678697, + 5289.8373692299465 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557728", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2334.600621394162, + "min_y": 5303.366715186127, + "max_x": 2336.414426024513, + "max_y": 5304.374384425211, + "center": [ + 2335.5075237093374, + 5303.87054980567 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557729", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2381.39291817879, + "min_y": 5381.274076038834, + "max_x": 2383.206722809141, + "max_y": 5382.281745277918, + "center": [ + 2382.2998204939654, + 5381.777910658377 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55772A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2410.024004946001, + "min_y": 5363.435250683894, + "max_x": 2411.837809576352, + "max_y": 5364.442919922978, + "center": [ + 2410.9309072611763, + 5363.9390853034365 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55772B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2431.291191377522, + "min_y": 5349.283241608439, + "max_x": 2433.104996007873, + "max_y": 5350.290910847523, + "center": [ + 2432.1980936926975, + 5349.787076227982 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55772C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2432.715286548473, + "min_y": 5344.321877787063, + "max_x": 2434.5290911788243, + "max_y": 5345.329547026147, + "center": [ + 2433.6221888636487, + 5344.825712406606 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55772D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2434.832540916476, + "min_y": 5363.59276446482, + "max_x": 2436.646345546827, + "max_y": 5364.600433703904, + "center": [ + 2435.7394432316514, + 5364.0965990843615 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55772E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2420.90440846862, + "min_y": 5345.182341957094, + "max_x": 2428.9675541914526, + "max_y": 5346.302223307487, + "center": [ + 2424.935981330036, + 5345.742282632291 + ] + }, + "raw_value": "SP10602BA-01", + "clean_value": "SP10602BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55772F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2434.122844862981, + "min_y": 5349.236100699279, + "max_x": 2442.185990585813, + "max_y": 5350.355982049672, + "center": [ + 2438.154417724397, + 5349.796041374475 + ] + }, + "raw_value": "SP10602BA-02", + "clean_value": "SP10602BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557730", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2435.315489220989, + "min_y": 5344.255056615833, + "max_x": 2443.3786349438215, + "max_y": 5345.374937966227, + "center": [ + 2439.3470620824055, + 5344.8149972910305 + ] + }, + "raw_value": "SP10602BA-03", + "clean_value": "SP10602BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557731", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2426.256022990341, + "min_y": 5345.365971907169, + "max_x": 2428.069827620692, + "max_y": 5346.373641146253, + "center": [ + 2427.1629253055166, + 5345.869806526711 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557732", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2439.936495286759, + "min_y": 5357.490232943342, + "max_x": 2444.6399969584113, + "max_y": 5358.610114293735, + "center": [ + 2442.2882461225854, + 5358.050173618538 + ] + }, + "raw_value": "80Ax50A", + "clean_value": "80Ax50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557733", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2450.029386150022, + "min_y": 5363.419403777506, + "max_x": 2450.029386150022, + "max_y": 5365.269776957727, + "center": [ + 2450.029386150022, + 5364.344590367617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.029386150022, + 5363.419403777506 + ], + [ + 2450.029386150022, + 5365.269776957727 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557734", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.372086094295, + "min_y": 5363.419403777506, + "max_x": 2450.665688259971, + "max_y": 5363.419403777506, + "center": [ + 2450.018887177133, + 5363.419403777506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.372086094295, + 5363.419403777506 + ], + [ + 2450.665688259971, + 5363.419403777506 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557735", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.460323803779, + "min_y": 5365.601038863808, + "max_x": 2450.598448496281, + "max_y": 5365.601038863808, + "center": [ + 2450.02938615003, + 5365.601038863808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.598448496281, + 5365.601038863808 + ], + [ + 2449.460323803779, + 5365.601038863808 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557736", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.460323803779, + "min_y": 5365.274442016789, + "max_x": 2450.598448496281, + "max_y": 5365.274442016789, + "center": [ + 2450.02938615003, + 5365.274442016789 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.598448496281, + 5365.274442016789 + ], + [ + 2449.460323803779, + 5365.274442016789 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557737", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.458506949497, + "min_y": 5368.618786073245, + "max_x": 2450.596631641998, + "max_y": 5368.618786073245, + "center": [ + 2450.0275692957475, + 5368.618786073245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.596631641998, + 5368.618786073245 + ], + [ + 2449.458506949497, + 5368.618786073245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557738", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.81201537671, + "min_y": 5365.601031206744, + "max_x": 2450.243123214784, + "max_y": 5366.032139044818, + "center": [ + 2450.027569295747, + 5365.816585125781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5365.816585125781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557739", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5366.032139044818, + "max_x": 2450.2431232147815, + "max_y": 5366.463246882887, + "center": [ + 2450.027569295747, + 5366.247692963852 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5366.247692963852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773A", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5366.4632468828895, + "max_x": 2450.2431232147815, + "max_y": 5366.894354720958, + "center": [ + 2450.027569295747, + 5366.678800801924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5366.678800801924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767104, + "min_y": 5366.463246882887, + "max_x": 2450.2431232147837, + "max_y": 5366.894354720961, + "center": [ + 2450.027569295747, + 5366.678800801924 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5366.678800801924 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5366.894354720964, + "max_x": 2450.2431232147815, + "max_y": 5367.3254625590325, + "center": [ + 2450.027569295747, + 5367.109908639998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5367.109908639998 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.81201537671, + "min_y": 5367.325462559027, + "max_x": 2450.243123214784, + "max_y": 5367.756570397101, + "center": [ + 2450.027569295747, + 5367.541016478064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5367.541016478064 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773E", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5367.756570397107, + "max_x": 2450.2431232147815, + "max_y": 5368.187678235176, + "center": [ + 2450.027569295747, + 5367.972124316141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5367.972124316141 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55773F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2449.8120153767127, + "min_y": 5368.187678235173, + "max_x": 2450.2431232147815, + "max_y": 5368.618786073242, + "center": [ + 2450.027569295747, + 5368.403232154207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.027569295747, + 5368.403232154207 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557740", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2450.029386150033, + "min_y": 5368.942685249535, + "max_x": 2450.029386150033, + "max_y": 5369.367204075999, + "center": [ + 2450.029386150033, + 5369.154944662767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.029386150033, + 5368.942685249535 + ], + [ + 2450.029386150033, + 5369.367204075999 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557741", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.475169370909, + "min_y": 5368.945382920262, + "max_x": 2450.613294063411, + "max_y": 5368.945382920262, + "center": [ + 2450.04423171716, + 5368.945382920262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.613294063411, + 5368.945382920262 + ], + [ + 2449.475169370909, + 5368.945382920262 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557742", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.468723058302, + "min_y": 5370.231978104836, + "max_x": 2450.595419802798, + "max_y": 5370.231978104836, + "center": [ + 2450.03207143055, + 5370.231978104836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.595419802798, + 5370.231978104836 + ], + [ + 2449.468723058302, + 5370.231978104836 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557743", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.731192186286, + "min_y": 5369.369244337782, + "max_x": 2450.332950674822, + "max_y": 5369.369244337782, + "center": [ + 2450.032071430554, + 5369.369244337782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.332950674822, + 5369.369244337782 + ], + [ + 2449.731192186286, + 5369.369244337782 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557744", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2450.332950674822, + "min_y": 5369.369244337782, + "max_x": 2450.595419802798, + "max_y": 5370.231978104836, + "center": [ + 2450.46418523881, + 5369.80061122131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.332950674822, + 5369.369244337782 + ], + [ + 2450.595419802798, + 5370.231978104836 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557745", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.468723058302, + "min_y": 5369.369244337782, + "max_x": 2449.731192186286, + "max_y": 5370.231978104836, + "center": [ + 2449.599957622294, + 5369.80061122131 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.731192186286, + 5369.369244337782 + ], + [ + 2449.468723058302, + 5370.231978104836 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557746", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2449.109081088232, + "min_y": 5368.248489945917, + "max_x": 2453.812582759884, + "max_y": 5369.36837129631, + "center": [ + 2451.460831924058, + 5368.808430621113 + ] + }, + "raw_value": "40Ax50A", + "clean_value": "40Ax50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557747", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2450.029386150033, + "min_y": 5370.231474079414, + "max_x": 2450.029386150033, + "max_y": 5383.226600454587, + "center": [ + 2450.029386150033, + 5376.729037267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.029386150033, + 5370.231474079414 + ], + [ + 2450.029386150033, + 5383.226600454587 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557748", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2362.266686728889, + "min_y": 5331.312809437716, + "max_x": 2364.08049135924, + "max_y": 5332.3204786768, + "center": [ + 2363.1735890440646, + 5331.816644057259 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557749", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2368.547596412286, + "min_y": 5333.986553558103, + "max_x": 2375.9388133248826, + "max_y": 5335.106434908496, + "center": [ + 2372.243204868584, + 5334.5464942333 + ] + }, + "raw_value": "P10214BA-01", + "clean_value": "P10214BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55774A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2366.448570895933, + "min_y": 5331.443503413291, + "max_x": 2373.8397878085293, + "max_y": 5332.563384763685, + "center": [ + 2370.144179352231, + 5332.003444088488 + ] + }, + "raw_value": "P10214BA-02", + "clean_value": "P10214BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55774B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2348.366603943124, + "min_y": 5349.576848421264, + "max_x": 2350.1804085734752, + "max_y": 5350.584517660348, + "center": [ + 2349.2735062582997, + 5350.0806830408055 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55774C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2348.483054657569, + "min_y": 5346.316228416821, + "max_x": 2350.29685928792, + "max_y": 5347.323897655905, + "center": [ + 2349.3899569727446, + 5346.820063036363 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55774D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2369.071560384047, + "min_y": 5324.968591065145, + "max_x": 2369.886740081347, + "max_y": 5324.968591065145, + "center": [ + 2369.479150232697, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.071560384047, + 5324.968591065145 + ], + [ + 2369.886740081347, + 5324.968591065145 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55774E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2384.212696356016, + "min_y": 5321.570220148728, + "max_x": 2386.026500986367, + "max_y": 5322.577889387812, + "center": [ + 2385.1195986711914, + 5322.074054768271 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55774F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2385.178914381434, + "min_y": 5262.82153626813, + "max_x": 2396.601704155447, + "max_y": 5263.941417618524, + "center": [ + 2390.8903092684404, + 5263.381476943327 + ] + }, + "raw_value": "P-10201-25A-F1A-n", + "clean_value": "P-10201-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557750", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2413.33034245179, + "min_y": 5233.345225117072, + "max_x": 2420.7215593643864, + "max_y": 5234.465106467465, + "center": [ + 2417.025950908088, + 5233.905165792268 + ] + }, + "raw_value": "T10221BA-04", + "clean_value": "T10221BA-04", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557751", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2429.216981935623, + "min_y": 5229.576948798827, + "max_x": 2431.0307865659743, + "max_y": 5230.584618037911, + "center": [ + 2430.1238842507987, + 5230.080783418369 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557752", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2433.853330254815, + "min_y": 5244.618367281088, + "max_x": 2435.667134885166, + "max_y": 5245.6260365201715, + "center": [ + 2434.7602325699904, + 5245.122201900629 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557753", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2433.73570643468, + "min_y": 5241.364108257374, + "max_x": 2435.5495110650313, + "max_y": 5242.371777496458, + "center": [ + 2434.6426087498558, + 5241.867942876916 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557754", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2440.507146205581, + "min_y": 5239.288232722706, + "max_x": 2447.8983631181777, + "max_y": 5240.4081140731, + "center": [ + 2444.202754661879, + 5239.848173397902 + ] + }, + "raw_value": "P10221CV-01", + "clean_value": "P10221CV-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557755", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2447.551778865147, + "min_y": 5247.919898216622, + "max_x": 2458.9745686391598, + "max_y": 5249.039779567015, + "center": [ + 2453.2631737521533, + 5248.479838891819 + ] + }, + "raw_value": "P-10225-25A-F2A-n", + "clean_value": "P-10225-25A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557756", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2428.739739602951, + "min_y": 5236.922978327164, + "max_x": 2436.1309565155475, + "max_y": 5238.042859677557, + "center": [ + 2432.435348059249, + 5237.482919002361 + ] + }, + "raw_value": "T10221BA-08", + "clean_value": "T10221BA-08", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557757", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2426.51559611367, + "min_y": 5234.887599627278, + "max_x": 2433.9068130262667, + "max_y": 5236.007480977672, + "center": [ + 2430.2112045699687, + 5235.447540302475 + ] + }, + "raw_value": "T10221BA-07", + "clean_value": "T10221BA-07", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557758", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2426.475994793775, + "min_y": 5227.420104491372, + "max_x": 2433.8672117063716, + "max_y": 5228.539985841765, + "center": [ + 2430.1716032500735, + 5227.980045166569 + ] + }, + "raw_value": "P10221ST-01", + "clean_value": "P10221ST-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557759", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2411.412946388048, + "min_y": 5243.866643540876, + "max_x": 2415.978138038289, + "max_y": 5244.558339245458, + "center": [ + 2413.6955422131687, + 5244.2124913931675 + ] + }, + "raw_value": "T10221BA-06", + "clean_value": "T10221BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2411.411173302349, + "min_y": 5240.459782779056, + "max_x": 2416.123248633363, + "max_y": 5241.173733586786, + "center": [ + 2413.767210967856, + 5240.81675818292 + ] + }, + "raw_value": "T10221BA-05", + "clean_value": "T10221BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2411.196881548113, + "min_y": 5250.92814142212, + "max_x": 2415.7620731983543, + "max_y": 5251.619837126702, + "center": [ + 2413.4794773732337, + 5251.27398927441 + ] + }, + "raw_value": "T10221BA-02", + "clean_value": "T10221BA-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775C", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2413.166128525693, + "min_y": 5250.997237807298, + "max_x": 2417.731320175934, + "max_y": 5251.68893351188, + "center": [ + 2415.4487243508133, + 5251.34308565959 + ] + }, + "raw_value": "T10221BA-01", + "clean_value": "T10221BA-01", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775D", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2419.695736925035, + "min_y": 5252.137328162739, + "max_x": 2424.260928575276, + "max_y": 5252.829023867322, + "center": [ + 2421.9783327501555, + 5252.48317601503 + ] + }, + "raw_value": "T10221BA-09", + "clean_value": "T10221BA-09", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775E", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2421.595887517436, + "min_y": 5251.515460696135, + "max_x": 2426.161079167677, + "max_y": 5252.207156400717, + "center": [ + 2423.8784833425566, + 5251.861308548427 + ] + }, + "raw_value": "T10221BA-10", + "clean_value": "T10221BA-10", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "55775F", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2424.843417620813, + "min_y": 5250.617207688818, + "max_x": 2429.408609271054, + "max_y": 5251.3089033934, + "center": [ + 2427.1260134459335, + 5250.9630555411095 + ] + }, + "raw_value": "T10221BA-11", + "clean_value": "T10221BA-11", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557760", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2402.679651984974, + "min_y": 5324.968811791375, + "max_x": 2403.463092208285, + "max_y": 5324.96884980111, + "center": [ + 2403.0713720966296, + 5324.968830796242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2402.679651984974, + 5324.968811791375 + ], + [ + 2403.463092208285, + 5324.96884980111 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557761", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2275.880022300137, + "min_y": 5351.045132824236, + "max_x": 2276.662997987386, + "max_y": 5351.045132824236, + "center": [ + 2276.2715101437616, + 5351.045132824236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2275.880022300137, + 5351.045132824236 + ], + [ + 2276.662997987386, + 5351.045132824236 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557762", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.676542532015, + "min_y": 5337.526359630141, + "max_x": 2293.677135709732, + "max_y": 5338.514466925079, + "center": [ + 2293.6768391208734, + 5338.020413277611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.676542532015, + 5337.526359630141 + ], + [ + 2293.677135709732, + 5338.514466925079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557763", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.681584755345, + "min_y": 5338.896874224707, + "max_x": 2293.681584755345, + "max_y": 5340.136971824085, + "center": [ + 2293.681584755345, + 5339.5169230243955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.681584755345, + 5338.896874224707 + ], + [ + 2293.681584755345, + 5340.136971824085 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557764", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2293.681584755345, + "min_y": 5339.341266048709, + "max_x": 2293.681584755345, + "max_y": 5351.045132824223, + "center": [ + 2293.681584755345, + 5345.193199436466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.681584755345, + 5339.341266048709 + ], + [ + 2293.681584755345, + 5351.045132824223 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557765", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.023041772731, + "min_y": 5338.514466925079, + "max_x": 2294.364987344488, + "max_y": 5338.514466925079, + "center": [ + 2293.6940145586095, + 5338.514466925079 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.023041772731, + 5338.514466925079 + ], + [ + 2294.364987344488, + 5338.514466925079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557766", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2279.496610945746, + "min_y": 5346.219815120909, + "max_x": 2290.919400719759, + "max_y": 5347.339696471302, + "center": [ + 2285.2080058327524, + 5346.779755796106 + ] + }, + "raw_value": "P-10217-65A-F2A-n", + "clean_value": "P-10217-65A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557767", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.023041772731, + "min_y": 5338.896874224707, + "max_x": 2294.364987344488, + "max_y": 5338.896874224707, + "center": [ + 2293.6940145586095, + 5338.896874224707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.023041772731, + 5338.896874224707 + ], + [ + 2294.364987344488, + 5338.896874224707 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557768", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2292.013192271296, + "min_y": 5350.49540546211, + "max_x": 2292.013192271296, + "max_y": 5351.594860186352, + "center": [ + 2292.013192271296, + 5351.045132824231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.013192271296, + 5351.594860186352 + ], + [ + 2292.013192271296, + 5350.49540546211 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557769", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.583791735953, + "min_y": 5350.475079043736, + "max_x": 2291.583791735953, + "max_y": 5351.615186604726, + "center": [ + 2291.583791735953, + 5351.045132824231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.583791735953, + 5351.615186604726 + ], + [ + 2291.583791735953, + 5350.475079043736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55776A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2293.19842437674, + "min_y": 5339.860493947988, + "max_x": 2294.223582409264, + "max_y": 5349.605402552299, + "center": [ + 2293.711003393002, + 5344.732948250144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.19842437674, + 5339.860493947988 + ], + [ + 2294.223582409264, + 5339.860493947988 + ], + [ + 2294.223582409264, + 5349.605402552299 + ], + [ + 2293.19842437674, + 5349.605402552299 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55776B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.094864618575, + "min_y": 5350.063211554664, + "max_x": 2294.436810190332, + "max_y": 5350.063211554664, + "center": [ + 2293.765837404453, + 5350.063211554664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.094864618575, + 5350.063211554664 + ], + [ + 2294.436810190332, + 5350.063211554664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55776C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2293.094864618575, + "min_y": 5350.328120009823, + "max_x": 2294.436810190332, + "max_y": 5350.328120009823, + "center": [ + 2293.765837404453, + 5350.328120009823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2293.094864618575, + 5350.328120009823 + ], + [ + 2294.436810190332, + 5350.328120009823 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55776D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.226086920258, + "min_y": 5352.219745184565, + "max_x": 2281.201680305974, + "max_y": 5352.219745184565, + "center": [ + 2280.713883613116, + 5352.219745184565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.201680305974, + 5352.219745184565 + ], + [ + 2280.226086920258, + 5352.219745184565 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55776E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.226086920258, + "min_y": 5352.510053493027, + "max_x": 2281.201680305974, + "max_y": 5352.510053493027, + "center": [ + 2280.713883613116, + 5352.510053493027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.226086920258, + 5352.510053493027 + ], + [ + 2281.201680305974, + 5352.510053493027 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55776F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.060942039306, + "min_y": 5341.584399519895, + "max_x": 2295.060942039306, + "max_y": 5342.559992905613, + "center": [ + 2295.060942039306, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2295.060942039306, + 5342.559992905613 + ], + [ + 2295.060942039306, + 5341.584399519895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557770", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.770633730844, + "min_y": 5341.584399519895, + "max_x": 2294.770633730844, + "max_y": 5342.559992905613, + "center": [ + 2294.770633730844, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.770633730844, + 5341.584399519895 + ], + [ + 2294.770633730844, + 5342.559992905613 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557771", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.512954624144, + "min_y": 5341.566363016084, + "max_x": 2296.512954624144, + "max_y": 5342.57802940942, + "center": [ + 2296.512954624144, + 5342.072196212752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.512954624144, + 5341.566363016084 + ], + [ + 2296.512954624144, + 5342.57802940942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557772", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.722977542981, + "min_y": 5341.584399519895, + "max_x": 2298.722977542981, + "max_y": 5342.559992905612, + "center": [ + 2298.722977542981, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.722977542981, + 5342.559992905612 + ], + [ + 2298.722977542981, + 5341.584399519895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557773", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.512954624144, + "min_y": 5341.584399519895, + "max_x": 2296.512954624144, + "max_y": 5342.559992905612, + "center": [ + 2296.512954624144, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.512954624144, + 5342.559992905612 + ], + [ + 2296.512954624144, + 5341.584399519895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557774", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2297.3057233695713, + "min_y": 5341.759953498762, + "max_x": 2297.9302087975525, + "max_y": 5342.384438926743, + "center": [ + 2297.617966083562, + 5342.072196212753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.617966083562, + 5342.072196212753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557775", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.803262932606, + "min_y": 5341.578926428331, + "max_x": 2296.803262932606, + "max_y": 5342.565465997175, + "center": [ + 2296.803262932606, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.803262932606, + 5341.578926428331 + ], + [ + 2296.803262932606, + 5342.565465997175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557776", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.722977542981, + "min_y": 5341.577311446744, + "max_x": 2298.722977542981, + "max_y": 5342.56385101559, + "center": [ + 2298.722977542981, + 5342.070581231167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.722977542981, + 5341.577311446744 + ], + [ + 2298.722977542981, + 5342.56385101559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557777", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.722977542981, + "min_y": 5341.577311446744, + "max_x": 2298.722977542981, + "max_y": 5342.56385101559, + "center": [ + 2298.722977542981, + 5342.070581231167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.722977542981, + 5341.577311446744 + ], + [ + 2298.722977542981, + 5342.56385101559 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557778", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.885860612325, + "min_y": 5341.584399519895, + "max_x": 2298.432669234517, + "max_y": 5341.91179660584, + "center": [ + 2298.159264923421, + 5341.748098062868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.885860612325, + 5341.91179660584 + ], + [ + 2298.432669234517, + 5341.584399519895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557779", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.432669234517, + "min_y": 5341.584399519895, + "max_x": 2298.432669234517, + "max_y": 5342.559992905612, + "center": [ + 2298.432669234517, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.432669234517, + 5341.584399519895 + ], + [ + 2298.432669234517, + 5342.559992905612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2297.885860612325, + "min_y": 5342.232595819669, + "max_x": 2298.432669234517, + "max_y": 5342.559992905612, + "center": [ + 2298.159264923421, + 5342.39629436264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2298.432669234517, + 5342.559992905612 + ], + [ + 2297.885860612325, + 5342.232595819669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.803262932606, + "min_y": 5341.584399519895, + "max_x": 2297.350071554799, + "max_y": 5341.91179660584, + "center": [ + 2297.076667243702, + 5341.748098062868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2297.350071554799, + 5341.91179660584 + ], + [ + 2296.803262932606, + 5341.584399519895 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.803262932606, + "min_y": 5341.584399519895, + "max_x": 2296.803262932606, + "max_y": 5342.559992905612, + "center": [ + 2296.803262932606, + 5342.072196212754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.803262932606, + 5341.584399519895 + ], + [ + 2296.803262932606, + 5342.559992905612 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2296.803262932606, + "min_y": 5342.232595819669, + "max_x": 2297.350071554799, + "max_y": 5342.559992905612, + "center": [ + 2297.076667243702, + 5342.39629436264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.803262932606, + 5342.559992905612 + ], + [ + 2297.350071554799, + 5342.232595819669 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5353.527366067897, + "max_x": 2281.203295287559, + "max_y": 5353.527366067897, + "center": [ + 2280.715498594701, + 5353.527366067897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.203295287559, + 5353.527366067897 + ], + [ + 2280.227701901843, + 5353.527366067897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55777F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5355.737388986735, + "max_x": 2281.203295287559, + "max_y": 5355.737388986735, + "center": [ + 2280.715498594701, + 5355.737388986735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.203295287559, + 5355.737388986735 + ], + [ + 2280.227701901843, + 5355.737388986735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557780", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2280.403255880711, + "min_y": 5354.320134813327, + "max_x": 2281.0277413086924, + "max_y": 5354.944620241308, + "center": [ + 2280.715498594702, + 5354.632377527318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.715498594702, + 5354.632377527318 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557781", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.222228810279, + "min_y": 5355.447080678273, + "max_x": 2281.208768379123, + "max_y": 5355.447080678273, + "center": [ + 2280.715498594701, + 5355.447080678273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.222228810279, + 5355.447080678273 + ], + [ + 2281.208768379123, + 5355.447080678273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557782", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.220613828692, + "min_y": 5353.527366067897, + "max_x": 2281.207153397539, + "max_y": 5353.527366067897, + "center": [ + 2280.7138836131153, + 5353.527366067897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.220613828692, + 5353.527366067897 + ], + [ + 2281.207153397539, + 5353.527366067897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557783", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.220613828692, + "min_y": 5353.527366067897, + "max_x": 2281.207153397539, + "max_y": 5353.527366067897, + "center": [ + 2280.7138836131153, + 5353.527366067897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.220613828692, + 5353.527366067897 + ], + [ + 2281.207153397539, + 5353.527366067897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557784", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5353.817674376363, + "max_x": 2280.555098987788, + "max_y": 5354.364482998555, + "center": [ + 2280.391400444815, + 5354.091078687459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.555098987788, + 5354.364482998555 + ], + [ + 2280.227701901843, + 5353.817674376363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557785", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5353.817674376363, + "max_x": 2281.203295287559, + "max_y": 5353.817674376363, + "center": [ + 2280.715498594701, + 5353.817674376363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.227701901843, + 5353.817674376363 + ], + [ + 2281.203295287559, + 5353.817674376363 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557786", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.875898201617, + "min_y": 5353.817674376363, + "max_x": 2281.203295287559, + "max_y": 5354.364482998555, + "center": [ + 2281.039596744588, + 5354.091078687459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.203295287559, + 5353.817674376363 + ], + [ + 2280.875898201617, + 5354.364482998555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557787", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5354.90027205608, + "max_x": 2280.555098987788, + "max_y": 5355.447080678273, + "center": [ + 2280.391400444815, + 5355.173676367176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.555098987788, + 5354.90027205608 + ], + [ + 2280.227701901843, + 5355.447080678273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557788", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.227701901843, + "min_y": 5355.447080678273, + "max_x": 2281.203295287559, + "max_y": 5355.447080678273, + "center": [ + 2280.715498594701, + 5355.447080678273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.227701901843, + 5355.447080678273 + ], + [ + 2281.203295287559, + 5355.447080678273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557789", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.875898201617, + "min_y": 5354.90027205608, + "max_x": 2281.203295287559, + "max_y": 5355.447080678273, + "center": [ + 2281.039596744588, + 5355.173676367176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2281.203295287559, + 5355.447080678273 + ], + [ + 2280.875898201617, + 5354.90027205608 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55778A", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2280.713883613116, + "min_y": 5352.510053493027, + "max_x": 2280.713883613116, + "max_y": 5353.527366067897, + "center": [ + 2280.713883613116, + 5353.018709780462 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.713883613116, + 5353.527366067897 + ], + [ + 2280.713883613116, + 5352.510053493027 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "55778B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.425772269106, + "min_y": 5371.85277081562, + "max_x": 2317.657452911919, + "max_y": 5371.85277081562, + "center": [ + 2316.541612590512, + 5371.85277081562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.425772269106, + 5371.85277081562 + ], + [ + 2317.657452911919, + 5371.85277081562 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55778C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2315.052460883813, + "min_y": 5361.073587812597, + "max_x": 2315.052460883813, + "max_y": 5371.85277081562, + "center": [ + 2315.052460883813, + 5366.463179314109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.052460883813, + 5371.85277081562 + ], + [ + 2315.052460883813, + 5361.073587812597 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55778D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2315.052460883813, + "min_y": 5371.85277081562, + "max_x": 2318.030764297208, + "max_y": 5371.85277081562, + "center": [ + 2316.5416125905103, + 5371.85277081562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.030764297208, + 5371.85277081562 + ], + [ + 2315.052460883813, + 5371.85277081562 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55778E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2315.052460883816, + "min_y": 5359.584436105897, + "max_x": 2316.541612590513, + "max_y": 5361.07358781259, + "center": [ + 2315.7970367371645, + 5360.329011959244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2315.052460883816, + 5361.07358781259 + ], + [ + 2316.541612590513, + 5359.584436105897 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55778F", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2316.541612590513, + "min_y": 5359.584436105897, + "max_x": 2318.03076429721, + "max_y": 5361.07358781259, + "center": [ + 2317.2861884438616, + 5360.329011959244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.541612590513, + 5359.584436105897 + ], + [ + 2318.03076429721, + 5361.07358781259 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557790", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2317.308721310905, + "min_y": 5363.224344171644, + "max_x": 2319.9964365518495, + "max_y": 5364.717519305502, + "center": [ + 2318.6525789313773, + 5363.970931738573 + ] + }, + "raw_value": "CWS", + "clean_value": "CWS", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557791", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.030764297208, + "min_y": 5361.07358781259, + "max_x": 2318.03076429721, + "max_y": 5371.85277081562, + "center": [ + 2318.0307642972093, + 5366.463179314105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.030764297208, + 5371.85277081562 + ], + [ + 2318.03076429721, + 5361.07358781259 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557792", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2476.498802638582, + "min_y": 5320.512319000116, + "max_x": 2481.2023043102345, + "max_y": 5321.632200350509, + "center": [ + 2478.850553474408, + 5321.072259675313 + ] + }, + "raw_value": "15Ax25A", + "clean_value": "15Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "557793", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2400.031658372115, + "min_y": 5310.013654110934, + "max_x": 2401.845463002466, + "max_y": 5311.021323350018, + "center": [ + 2400.9385606872906, + 5310.5174887304765 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557794", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2417.680594068507, + "min_y": 5229.94310120104, + "max_x": 2417.680594068507, + "max_y": 5232.475921124471, + "center": [ + 2417.680594068507, + 5231.209511162755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.680594068507, + 5232.475921124471 + ], + [ + 2417.680594068507, + 5229.94310120104 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557795", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.432056828024, + "min_y": 5229.94310120104, + "max_x": 2417.680594068507, + "max_y": 5229.94310120104, + "center": [ + 2417.056325448266, + 5229.94310120104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2417.680594068507, + 5229.94310120104 + ], + [ + 2416.432056828024, + 5229.94310120104 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557796", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.389043721008, + "min_y": 5229.407805962036, + "max_x": 2416.004203420974, + "max_y": 5229.776127683726, + "center": [ + 2415.696623570991, + 5229.591966822882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.004203420974, + 5229.407805962036 + ], + [ + 2415.389043721008, + 5229.776127683726 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557797", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.171121331325, + "min_y": 5230.137026799288, + "max_x": 2414.78628103129, + "max_y": 5230.505348520972, + "center": [ + 2414.4787011813078, + 5230.32118766013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.78628103129, + 5230.137026799288 + ], + [ + 2414.171121331325, + 5230.505348520972 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557798", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.004203420974, + "min_y": 5229.407805962036, + "max_x": 2416.004203420974, + "max_y": 5230.505348520972, + "center": [ + 2416.004203420974, + 5229.956577241504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.004203420974, + 5230.505348520972 + ], + [ + 2416.004203420974, + 5229.407805962036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557799", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.171121331325, + "min_y": 5229.407805962036, + "max_x": 2414.171121331325, + "max_y": 5230.505348520972, + "center": [ + 2414.171121331325, + 5229.956577241504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.171121331325, + 5230.505348520972 + ], + [ + 2414.171121331325, + 5229.407805962036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2415.389043721008, + "min_y": 5230.137026799288, + "max_x": 2416.004203420974, + "max_y": 5230.505348520972, + "center": [ + 2415.696623570991, + 5230.32118766013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.004203420974, + 5230.505348520972 + ], + [ + 2415.389043721008, + 5230.137026799288 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2414.171121331325, + "min_y": 5229.407805962036, + "max_x": 2414.78628103129, + "max_y": 5229.776127683726, + "center": [ + 2414.4787011813078, + 5229.591966822882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2414.78628103129, + 5229.776127683726 + ], + [ + 2414.171121331325, + 5229.407805962036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.742467606912, + "min_y": 5229.387514895254, + "max_x": 2413.742467606912, + "max_y": 5230.52563958776, + "center": [ + 2413.742467606912, + 5229.956577241507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.742467606912, + 5230.52563958776 + ], + [ + 2413.742467606912, + 5229.387514895254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2416.432857145386, + "min_y": 5229.387514895254, + "max_x": 2416.432857145386, + "max_y": 5230.52563958776, + "center": [ + 2416.432857145386, + 5229.956577241507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2416.432857145386, + 5230.52563958776 + ], + [ + 2416.432857145386, + 5229.387514895254 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2414.736389322911, + "min_y": 5229.605304188265, + "max_x": 2415.4389354293894, + "max_y": 5230.307850294744, + "center": [ + 2415.08766237615, + 5229.956577241504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2415.08766237615, + 5229.956577241504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55779F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.047187410942, + "min_y": 5254.634577495119, + "max_x": 2455.047187410942, + "max_y": 5271.863318713062, + "center": [ + 2455.047187410942, + 5263.24894810409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.047187410942, + 5271.863318713062 + ], + [ + 2455.047187410942, + 5254.634577495119 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5577A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.957671749806, + "min_y": 5249.556607871086, + "max_x": 2455.957671749806, + "max_y": 5250.656062595329, + "center": [ + 2455.957671749806, + 5250.106335233208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.957671749806, + 5249.556607871086 + ], + [ + 2455.957671749806, + 5250.656062595329 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2456.284837601784, + "min_y": 5249.548619896154, + "max_x": 2456.284837601784, + "max_y": 5250.660410530962, + "center": [ + 2456.284837601784, + 5250.1045152135575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.284837601784, + 5249.548619896154 + ], + [ + 2456.284837601784, + 5250.660410530962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2456.284837601784, + "min_y": 5249.548619896154, + "max_x": 2456.284837601784, + "max_y": 5250.660410530962, + "center": [ + 2456.284837601784, + 5250.1045152135575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.284837601784, + 5249.548619896154 + ], + [ + 2456.284837601784, + 5250.660410530962 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2456.284837601784, + "min_y": 5249.556607871086, + "max_x": 2456.284837601784, + "max_y": 5250.656062595329, + "center": [ + 2456.284837601784, + 5250.106335233208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2456.284837601784, + 5250.656062595329 + ], + [ + 2456.284837601784, + 5249.556607871086 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5252.469176181911, + "max_x": 2454.872507251062, + "max_y": 5253.085407628045, + "center": [ + 2454.6880255406923, + 5252.7772919049785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2454.503543830322, + 5252.469176181911 + ], + [ + 2454.872507251062, + 5253.085407628045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5252.469176181911, + "max_x": 2455.602998554565, + "max_y": 5252.469176181911, + "center": [ + 2455.0532711924434, + 5252.469176181911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.602998554565, + 5252.469176181911 + ], + [ + 2454.503543830322, + 5252.469176181911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.234035133825, + "min_y": 5252.469176181911, + "max_x": 2455.602998554565, + "max_y": 5253.085407628045, + "center": [ + 2455.418516844195, + 5252.7772919049785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.234035133825, + 5253.085407628045 + ], + [ + 2455.602998554565, + 5252.469176181911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5253.689220465568, + "max_x": 2454.872507251059, + "max_y": 5254.30545191171, + "center": [ + 2454.6880255406904, + 5253.997336188639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2454.503543830322, + 5254.30545191171 + ], + [ + 2454.872507251059, + 5253.689220465568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5254.30545191171, + "max_x": 2455.602998554565, + "max_y": 5254.30545191171, + "center": [ + 2455.0532711924434, + 5254.30545191171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.602998554565, + 5254.30545191171 + ], + [ + 2454.503543830322, + 5254.30545191171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.234035133828, + "min_y": 5253.689220465568, + "max_x": 2455.602998554565, + "max_y": 5254.30545191171, + "center": [ + 2455.4185168441963, + 5253.997336188639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.234035133828, + 5253.689220465568 + ], + [ + 2455.602998554565, + 5254.30545191171 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.499195894689, + "min_y": 5254.632617763688, + "max_x": 2455.610986529497, + "max_y": 5254.632617763688, + "center": [ + 2455.055091212093, + 5254.632617763688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.610986529497, + 5254.632617763688 + ], + [ + 2454.499195894689, + 5254.632617763688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.499195894689, + "min_y": 5254.632617763688, + "max_x": 2455.610986529497, + "max_y": 5254.632617763688, + "center": [ + 2455.055091212093, + 5254.632617763688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.610986529497, + 5254.632617763688 + ], + [ + 2454.499195894689, + 5254.632617763688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.497375875041, + "min_y": 5252.142010329927, + "max_x": 2455.609166509846, + "max_y": 5252.142010329927, + "center": [ + 2455.0532711924434, + 5252.142010329927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.609166509846, + 5252.142010329927 + ], + [ + 2454.497375875041, + 5252.142010329927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.497375875041, + "min_y": 5252.469176181911, + "max_x": 2455.609166509846, + "max_y": 5252.469176181911, + "center": [ + 2455.0532711924434, + 5252.469176181911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.609166509846, + 5252.469176181911 + ], + [ + 2454.497375875041, + 5252.469176181911 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5252.142010329927, + "max_x": 2455.602998554565, + "max_y": 5252.142010329927, + "center": [ + 2455.0532711924434, + 5252.142010329927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2454.503543830322, + 5252.142010329927 + ], + [ + 2455.602998554565, + 5252.142010329927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.503543830322, + "min_y": 5254.632617763688, + "max_x": 2455.602998554565, + "max_y": 5254.632617763688, + "center": [ + 2455.0532711924434, + 5254.632617763688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2454.503543830322, + 5254.632617763688 + ], + [ + 2455.602998554565, + 5254.632617763688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577B0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2454.7013861427563, + "min_y": 5253.035428997124, + "max_x": 2455.4051562421296, + "max_y": 5253.739199096497, + "center": [ + 2455.053271192443, + 5253.38731404681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.053271192443, + 5253.38731404681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2454.483217411949, + "min_y": 5252.142010329927, + "max_x": 2455.623324972938, + "max_y": 5252.142010329927, + "center": [ + 2455.0532711924434, + 5252.142010329927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.623324972938, + 5252.142010329927 + ], + [ + 2454.483217411949, + 5252.142010329927 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2455.040392336999, + "min_y": 5250.182360751068, + "max_x": 2455.047187410942, + "max_y": 5252.135836882126, + "center": [ + 2455.0437898739706, + 5251.159098816597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2455.040392336999, + 5252.135836882126 + ], + [ + 2455.047187410942, + 5250.182360751068 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5577B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.623426077441, + "min_y": 5189.989314804616, + "max_x": 2431.724525319089, + "max_y": 5190.251789727665, + "center": [ + 2431.173975698265, + 5190.12055226614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.623426077441, + 5190.251789727665 + ], + [ + 2431.724525319089, + 5189.989314804616 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.623428477162, + "min_y": 5190.853548216197, + "max_x": 2431.724529812183, + "max_y": 5191.116011549104, + "center": [ + 2431.1739791446726, + 5190.98477988265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.623428477162, + 5190.853548216197 + ], + [ + 2431.724529812183, + 5191.116011549104 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2430.623426077441, + "min_y": 5190.251789727665, + "max_x": 2430.623428477162, + "max_y": 5190.853548216197, + "center": [ + 2430.6234272773017, + 5190.552668971931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2430.623428477162, + 5190.853548216197 + ], + [ + 2430.623426077441, + 5190.251789727665 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2431.724525319089, + "min_y": 5189.989314804616, + "max_x": 2431.724529812183, + "max_y": 5191.116011549104, + "center": [ + 2431.724527565636, + 5190.55266317686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.724529812183, + 5191.116011549104 + ], + [ + 2431.724525319089, + 5189.989314804616 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577B7", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2429.940404490964, + "min_y": 5188.633606333755, + "max_x": 2434.643906162616, + "max_y": 5189.753487684148, + "center": [ + 2432.2921553267897, + 5189.193547008952 + ] + }, + "raw_value": "20Ax25A", + "clean_value": "20Ax25A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5577B8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2431.725580556742, + "min_y": 5190.581621201863, + "max_x": 2433.194936961172, + "max_y": 5190.581621201863, + "center": [ + 2432.460258758957, + 5190.581621201863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2431.725580556742, + 5190.581621201863 + ], + [ + 2433.194936961172, + 5190.581621201863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.195380565954, + "min_y": 5280.981477543011, + "max_x": 2261.858239912095, + "max_y": 5280.981477543016, + "center": [ + 2261.0268102390246, + 5280.981477543013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2261.858239912095, + 5280.981477543011 + ], + [ + 2260.195380565954, + 5280.981477543016 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2260.195380565954, + "min_y": 5280.412415196766, + "max_x": 2260.195380565954, + "max_y": 5281.550539889266, + "center": [ + 2260.195380565954, + 5280.981477543016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2260.195380565954, + 5281.550539889266 + ], + [ + 2260.195380565954, + 5280.412415196766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2259.905663823836, + "min_y": 5280.434497040768, + "max_x": 2259.905663823836, + "max_y": 5281.5320395997, + "center": [ + 2259.905663823836, + 5280.983268320234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2259.905663823836, + 5281.5320395997 + ], + [ + 2259.905663823836, + 5280.434497040768 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577BC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2259.199908372452, + "min_y": 5279.131693949628, + "max_x": 2261.013713002803, + "max_y": 5280.139363188712, + "center": [ + 2260.1068106876273, + 5279.63552856917 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577BD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2239.893203312735, + "min_y": 5244.637665667987, + "max_x": 2241.908989743443, + "max_y": 5245.75754701838, + "center": [ + 2240.9010965280886, + 5245.197606343183 + ] + }, + "raw_value": "80A", + "clean_value": "80A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5577BE", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2272.182182715777, + "min_y": 5272.058612376917, + "max_x": 2274.197969146485, + "max_y": 5273.1784937273105, + "center": [ + 2273.190075931131, + 5272.618553052114 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5577BF", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2390.698928707033, + "min_y": 5376.427594591181, + "max_x": 2402.7936472912816, + "max_y": 5377.547475941575, + "center": [ + 2396.746287999157, + 5376.9875352663785 + ] + }, + "raw_value": "P-10313-100A-F1A-n", + "clean_value": "P-10313-100A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577C0", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2408.469115699797, + "min_y": 5359.062027850902, + "max_x": 2420.5638342840457, + "max_y": 5360.181909201296, + "center": [ + 2414.5164749919213, + 5359.6219685260985 + ] + }, + "raw_value": "P-10313-100A-F1A-n", + "clean_value": "P-10313-100A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5577C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2439.855543042217, + "min_y": 5360.868007006903, + "max_x": 2440.983837707371, + "max_y": 5360.868007006904, + "center": [ + 2440.4196903747943, + 5360.868007006904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2439.855543042217, + 5360.868007006904 + ], + [ + 2440.983837707371, + 5360.868007006903 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2444.163837985316, + "min_y": 5360.237518378045, + "max_x": 2444.163837985316, + "max_y": 5361.375643070546, + "center": [ + 2444.163837985316, + 5360.806580724296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.163837985316, + 5361.375643070546 + ], + [ + 2444.163837985316, + 5360.237518378045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2441.14609077588, + "min_y": 5360.235701523762, + "max_x": 2441.14609077588, + "max_y": 5361.373826216263, + "center": [ + 2441.14609077588, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.14609077588, + 5361.373826216263 + ], + [ + 2441.14609077588, + 5360.235701523762 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2443.732737804306, + "min_y": 5360.589209950976, + "max_x": 2444.1638456423802, + "max_y": 5361.02031778905, + "center": [ + 2443.948291723343, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.948291723343, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2443.3016299662377, + "min_y": 5360.589209950978, + "max_x": 2443.7327378043065, + "max_y": 5361.020317789047, + "center": [ + 2443.517183885272, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.517183885272, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2442.8705221281657, + "min_y": 5360.589209950978, + "max_x": 2443.3016299662345, + "max_y": 5361.020317789047, + "center": [ + 2443.0860760472, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.0860760472, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2442.8705221281634, + "min_y": 5360.589209950976, + "max_x": 2443.3016299662368, + "max_y": 5361.02031778905, + "center": [ + 2443.0860760472, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2443.0860760472, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2442.439414290093, + "min_y": 5360.589209950978, + "max_x": 2442.8705221281616, + "max_y": 5361.020317789047, + "center": [ + 2442.654968209127, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.654968209127, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577C9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2442.0083064520227, + "min_y": 5360.589209950976, + "max_x": 2442.439414290097, + "max_y": 5361.02031778905, + "center": [ + 2442.22386037106, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2442.22386037106, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577CA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2441.5771986139484, + "min_y": 5360.589209950978, + "max_x": 2442.008306452017, + "max_y": 5361.020317789047, + "center": [ + 2441.792752532983, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.792752532983, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577CB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2441.1460907758824, + "min_y": 5360.589209950978, + "max_x": 2441.577198613951, + "max_y": 5361.020317789047, + "center": [ + 2441.361644694917, + 5360.804763870013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2441.361644694917, + 5360.804763870013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2444.40992060194, + "min_y": 5360.241299878147, + "max_x": 2444.40992060194, + "max_y": 5361.379424570648, + "center": [ + 2444.40992060194, + 5360.810362224398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2444.40992060194, + 5361.379424570648 + ], + [ + 2444.40992060194, + 5360.241299878147 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2440.984115774588, + "min_y": 5360.239943514635, + "max_x": 2440.984115774588, + "max_y": 5361.378068207136, + "center": [ + 2440.984115774588, + 5360.809005860885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2440.984115774588, + 5361.378068207136 + ], + [ + 2440.984115774588, + 5360.239943514635 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2193.6245536258, + "min_y": 5251.832093953312, + "max_x": 2193.6245536258, + "max_y": 5280.491432022843, + "center": [ + 2193.6245536258, + 5266.1617629880775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.6245536258, + 5280.491432022843 + ], + [ + 2193.6245536258, + 5251.832093953312 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5577CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2193.62442016599, + "min_y": 5251.832024308227, + "max_x": 2194.173443567008, + "max_y": 5251.832024308227, + "center": [ + 2193.898931866499, + 5251.832024308227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.62442016599, + 5251.832024308227 + ], + [ + 2194.173443567008, + 5251.832024308227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5577D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2213.546605011688, + "min_y": 5250.434453469035, + "max_x": 2213.546605011688, + "max_y": 5276.387154146472, + "center": [ + 2213.546605011688, + 5263.410803807754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2213.546605011688, + 5250.434453469035 + ], + [ + 2213.546605011688, + 5276.387154146472 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5577D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2212.57555417614, + "min_y": 5276.387154146472, + "max_x": 2213.546605011688, + "max_y": 5276.387154146472, + "center": [ + 2213.0610795939137, + 5276.387154146472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2213.546605011688, + 5276.387154146472 + ], + [ + 2212.57555417614, + 5276.387154146472 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5577D2", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2210.448548618288, + "min_y": 5274.369055502756, + "max_x": 2212.464335048996, + "max_y": 5275.488936853149, + "center": [ + 2211.456441833642, + 5274.928996177952 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5577D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.047271822145, + "min_y": 5249.411132861478, + "max_x": 2192.098076227106, + "max_y": 5249.411132861478, + "center": [ + 2191.5726740246255, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.098076227106, + 5249.411132861478 + ], + [ + 2191.047271822145, + 5249.411132861478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5249.959904140942, + "max_x": 2191.136877333056, + "max_y": 5249.959904140942, + "center": [ + 2190.765218775058, + 5249.959904140942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.136877333056, + 5249.959904140942 + ], + [ + 2190.39356021706, + 5249.959904140942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5248.862361582013, + "max_x": 2191.136877333056, + "max_y": 5248.862361582013, + "center": [ + 2190.765218775058, + 5248.862361582013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.136877333056, + 5248.862361582013 + ], + [ + 2190.39356021706, + 5248.862361582013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5248.862361582013, + "max_x": 2190.39356021706, + "max_y": 5249.959904140942, + "center": [ + 2190.39356021706, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.39356021706, + 5249.959904140942 + ], + [ + 2190.39356021706, + 5248.862361582013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.098076227106, + "min_y": 5248.888739139169, + "max_x": 2192.098076227106, + "max_y": 5249.933526583788, + "center": [ + 2192.098076227106, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.098076227106, + 5248.888739139169 + ], + [ + 2192.098076227106, + 5249.933526583788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.886072047825, + "min_y": 5248.860693727383, + "max_x": 2197.886072047825, + "max_y": 5249.958236286313, + "center": [ + 2197.886072047825, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.886072047825, + 5248.860693727383 + ], + [ + 2197.886072047825, + 5249.958236286313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.467964422263, + "min_y": 5248.860693727383, + "max_x": 2195.467964422263, + "max_y": 5249.958236286313, + "center": [ + 2195.467964422263, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.467964422263, + 5249.958236286313 + ], + [ + 2195.467964422263, + 5248.860693727383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DA", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2196.364234116975, + "min_y": 5249.0608293243295, + "max_x": 2197.0667802234534, + "max_y": 5249.763375430808, + "center": [ + 2196.715507170214, + 5249.412102377569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.715507170214, + 5249.412102377569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.794561269281, + "min_y": 5249.58865416622, + "max_x": 2196.411826048209, + "max_y": 5249.958236286313, + "center": [ + 2196.103193658745, + 5249.773445226267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2196.411826048209, + 5249.58865416622 + ], + [ + 2195.794561269281, + 5249.958236286313 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.794561269281, + "min_y": 5248.860693727383, + "max_x": 2195.794561269281, + "max_y": 5249.958236286313, + "center": [ + 2195.794561269281, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.794561269281, + 5249.958236286313 + ], + [ + 2195.794561269281, + 5248.860693727383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.794561269281, + "min_y": 5248.860693727383, + "max_x": 2196.414125825349, + "max_y": 5249.231652819791, + "center": [ + 2196.104343547315, + 5249.046173273587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.794561269281, + 5248.860693727383 + ], + [ + 2196.414125825349, + 5249.231652819791 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.627643358927, + "min_y": 5248.860693727383, + "max_x": 2197.627643358927, + "max_y": 5249.958236286313, + "center": [ + 2197.627643358927, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.627643358927, + 5249.958236286313 + ], + [ + 2197.627643358927, + 5248.860693727383 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.012483658965, + "min_y": 5248.860693727383, + "max_x": 2197.627643358927, + "max_y": 5249.229015449068, + "center": [ + 2197.320063508946, + 5249.0448545882255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.627643358927, + 5248.860693727383 + ], + [ + 2197.012483658965, + 5249.229015449068 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.012483658965, + "min_y": 5249.595189306074, + "max_x": 2197.627643358927, + "max_y": 5249.963511027759, + "center": [ + 2197.320063508946, + 5249.779350166917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2197.627643358927, + 5249.963511027759 + ], + [ + 2197.012483658965, + 5249.595189306074 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2191.047271822145, + "min_y": 5249.411132861478, + "max_x": 2192.098076227106, + "max_y": 5249.411132861478, + "center": [ + 2191.5726740246255, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.098076227106, + 5249.411132861478 + ], + [ + 2191.047271822145, + 5249.411132861478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5249.959904140942, + "max_x": 2191.136877333056, + "max_y": 5249.959904140942, + "center": [ + 2190.765218775058, + 5249.959904140942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.136877333056, + 5249.959904140942 + ], + [ + 2190.39356021706, + 5249.959904140942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5248.862361582013, + "max_x": 2191.136877333056, + "max_y": 5248.862361582013, + "center": [ + 2190.765218775058, + 5248.862361582013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.136877333056, + 5248.862361582013 + ], + [ + 2190.39356021706, + 5248.862361582013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2190.39356021706, + "min_y": 5248.862361582013, + "max_x": 2190.39356021706, + "max_y": 5249.959904140942, + "center": [ + 2190.39356021706, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2190.39356021706, + 5249.959904140942 + ], + [ + 2190.39356021706, + 5248.862361582013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.168151679893, + "min_y": 5248.887071284542, + "max_x": 2195.168151679893, + "max_y": 5249.931858729154, + "center": [ + 2195.168151679893, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.168151679893, + 5248.887071284542 + ], + [ + 2195.168151679893, + 5249.931858729154 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2195.467964422263, + "min_y": 5248.887071284542, + "max_x": 2195.467964422263, + "max_y": 5249.931858729154, + "center": [ + 2195.467964422263, + 5249.409465006847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2195.467964422263, + 5248.887071284542 + ], + [ + 2195.467964422263, + 5249.931858729154 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.397888969476, + "min_y": 5248.888739139169, + "max_x": 2192.397888969476, + "max_y": 5249.933526583788, + "center": [ + 2192.397888969476, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.397888969476, + 5248.888739139169 + ], + [ + 2192.397888969476, + 5249.933526583788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2192.098076227106, + "min_y": 5248.888739139169, + "max_x": 2192.098076227106, + "max_y": 5249.933526583788, + "center": [ + 2192.098076227106, + 5249.411132861478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.098076227106, + 5248.888739139169 + ], + [ + 2192.098076227106, + 5249.933526583788 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577EA", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2194.7724058890694, + "min_y": 5249.213256451515, + "max_x": 2195.168158709003, + "max_y": 5249.6090092714485, + "center": [ + 2194.970282299036, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.970282299036, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577EB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2194.3766530691387, + "min_y": 5249.213256451517, + "max_x": 2194.7724058890694, + "max_y": 5249.609009271447, + "center": [ + 2194.574529479104, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.574529479104, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577EC", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2193.9809002492075, + "min_y": 5249.213256451517, + "max_x": 2194.3766530691382, + "max_y": 5249.609009271447, + "center": [ + 2194.178776659173, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.178776659173, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577ED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2193.980900249204, + "min_y": 5249.213256451515, + "max_x": 2194.3766530691382, + "max_y": 5249.6090092714485, + "center": [ + 2194.178776659171, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2194.178776659171, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577EE", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2193.5851474292735, + "min_y": 5249.213256451517, + "max_x": 2193.9809002492043, + "max_y": 5249.609009271447, + "center": [ + 2193.783023839239, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.783023839239, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577EF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2193.1893946093383, + "min_y": 5249.213256451514, + "max_x": 2193.5851474292735, + "max_y": 5249.609009271449, + "center": [ + 2193.387271019306, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2193.387271019306, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577F0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2192.7936417894066, + "min_y": 5249.213256451517, + "max_x": 2193.1893946093373, + "max_y": 5249.609009271447, + "center": [ + 2192.991518199372, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.991518199372, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577F1", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2192.3978889694786, + "min_y": 5249.213256451517, + "max_x": 2192.7936417894093, + "max_y": 5249.609009271447, + "center": [ + 2192.595765379444, + 5249.411132861482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2192.595765379444, + 5249.411132861482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5577F2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2189.040669992034, + "min_y": 5246.995837104091, + "max_x": 2195.0880292841584, + "max_y": 5248.1157184544845, + "center": [ + 2192.0643496380962, + 5247.555777779287 + ] + }, + "raw_value": "FOR DRAIN", + "clean_value": "FOR DRAIN", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5577F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2197.888262343214, + "min_y": 5249.415356658186, + "max_x": 2200.217672967766, + "max_y": 5249.415356658186, + "center": [ + 2199.0529676554897, + 5249.415356658186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2200.217672967766, + 5249.415356658186 + ], + [ + 2197.888262343214, + 5249.415356658186 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5577F4", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2195.77938443776, + "min_y": 5246.908572124153, + "max_x": 2197.795170868468, + "max_y": 5248.028453474546, + "center": [ + 2196.787277653114, + 5247.468512799349 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5577F5", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.379387376734, + "min_y": 5268.841146913922, + "max_x": 2290.379387376734, + "max_y": 5270.894135185662, + "center": [ + 2290.379387376734, + 5269.867641049792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.379387376734, + 5268.841146913922 + ], + [ + 2290.379387376734, + 5270.894135185662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577F6", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5268.773301444706, + "center": [ + 2291.602403346157, + 5268.773301444706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5268.773301444706 + ], + [ + 2292.284919431768, + 5268.773301444706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577F7", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.379387376734, + "min_y": 5269.867641049793, + "max_x": 2291.60240334616, + "max_y": 5269.867641049793, + "center": [ + 2290.9908953614467, + 5269.867641049793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.60240334616, + 5269.867641049793 + ], + [ + 2290.379387376734, + 5269.867641049793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577F8", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5270.961980654877, + "max_x": 2292.284919431768, + "max_y": 5270.961980654877, + "center": [ + 2291.602403346157, + 5270.961980654877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5270.961980654877 + ], + [ + 2292.284919431768, + 5270.961980654877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577F9", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5270.961980654877, + "center": [ + 2291.602403346157, + 5269.867641049792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.284919431768, + 5268.773301444706 + ], + [ + 2290.919887260546, + 5270.961980654877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FA", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5270.961980654877, + "center": [ + 2291.602403346157, + 5269.867641049792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5268.773301444706 + ], + [ + 2292.284919431768, + 5270.961980654877 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FB", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5268.773301444706, + "center": [ + 2291.602403346157, + 5268.773301444706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5268.773301444706 + ], + [ + 2292.284919431768, + 5268.773301444706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FC", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5268.773301444706, + "center": [ + 2291.602403346157, + 5268.773301444706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5268.773301444706 + ], + [ + 2292.284919431768, + 5268.773301444706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FD", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2290.919887260546, + "min_y": 5268.773301444706, + "max_x": 2292.284919431768, + "max_y": 5268.773301444706, + "center": [ + 2291.602403346157, + 5268.773301444706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2290.919887260546, + 5268.773301444706 + ], + [ + 2292.284919431768, + 5268.773301444706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FE", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2289.930126778677, + "min_y": 5268.841146913922, + "max_x": 2289.930126778677, + "max_y": 5270.894135185662, + "center": [ + 2289.930126778677, + 5269.867641049792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.930126778677, + 5268.841146913922 + ], + [ + 2289.930126778677, + 5270.894135185662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5577FF", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2289.480866180621, + "min_y": 5268.841146913922, + "max_x": 2289.480866180621, + "max_y": 5270.894135185662, + "center": [ + 2289.480866180621, + 5269.867641049792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.480866180621, + 5268.841146913922 + ], + [ + 2289.480866180621, + 5270.894135185662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557800", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2289.480866180621, + "min_y": 5268.841146913922, + "max_x": 2290.379387376734, + "max_y": 5268.841146913922, + "center": [ + 2289.9301267786777, + 5268.841146913922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.480866180621, + 5268.841146913922 + ], + [ + 2290.379387376734, + 5268.841146913922 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557801", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2289.480866180621, + "min_y": 5270.894135185662, + "max_x": 2290.379387376734, + "max_y": 5270.894135185662, + "center": [ + 2289.9301267786777, + 5270.894135185662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.480866180621, + 5270.894135185662 + ], + [ + 2290.379387376734, + 5270.894135185662 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557802", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2291.377773047126, + "min_y": 5268.324040846638, + "max_x": 2291.8270336451837, + "max_y": 5268.773301444696, + "center": [ + 2291.602403346155, + 5268.548671145667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.602403346155, + 5268.548671145667 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557803", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2291.377773047126, + "min_y": 5270.961980654879, + "max_x": 2291.8270336451837, + "max_y": 5271.411241252937, + "center": [ + 2291.602403346155, + 5271.186610953908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.602403346155, + 5271.186610953908 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557804", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2291.2507997594134, + "min_y": 5273.287371746847, + "max_x": 2291.9545698587867, + "max_y": 5273.991141846221, + "center": [ + 2291.6026848091, + 5273.639256796534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.6026848091, + 5273.639256796534 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5274.884560513413, + "max_x": 2292.152412171221, + "max_y": 5274.884560513413, + "center": [ + 2291.6026848091014, + 5274.884560513413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.052957446982, + 5274.884560513413 + ], + [ + 2292.152412171221, + 5274.884560513413 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.093553804119, + "min_y": 5272.393953079649, + "max_x": 2292.193008528358, + "max_y": 5272.393953079649, + "center": [ + 2291.6432811662385, + 5272.393953079649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.093553804119, + 5272.393953079649 + ], + [ + 2292.193008528358, + 5272.393953079649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557807", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5272.721118931632, + "max_x": 2291.421920867716, + "max_y": 5273.337350377769, + "center": [ + 2291.237439157349, + 5273.029234654701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.421920867716, + 5273.337350377769 + ], + [ + 2291.052957446982, + 5272.721118931632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557808", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5272.721118931632, + "max_x": 2292.152412171221, + "max_y": 5272.721118931632, + "center": [ + 2291.6026848091014, + 5272.721118931632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.052957446982, + 5272.721118931632 + ], + [ + 2292.152412171221, + 5272.721118931632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557809", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.783448750485, + "min_y": 5272.721118931632, + "max_x": 2292.152412171221, + "max_y": 5273.337350377769, + "center": [ + 2291.967930460853, + 5273.029234654701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.152412171221, + 5272.721118931632 + ], + [ + 2291.783448750485, + 5273.337350377769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5273.941163215289, + "max_x": 2291.421920867718, + "max_y": 5274.557394661431, + "center": [ + 2291.2374391573503, + 5274.24927893836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.421920867718, + 5273.941163215289 + ], + [ + 2291.052957446982, + 5274.557394661431 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.052957446982, + "min_y": 5274.557394661431, + "max_x": 2292.152412171221, + "max_y": 5274.557394661431, + "center": [ + 2291.6026848091014, + 5274.557394661431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.052957446982, + 5274.557394661431 + ], + [ + 2292.152412171221, + 5274.557394661431 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.783448750482, + "min_y": 5273.941163215289, + "max_x": 2292.152412171221, + "max_y": 5274.557394661431, + "center": [ + 2291.9679304608517, + 5274.24927893836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.152412171221, + 5274.557394661431 + ], + [ + 2291.783448750482, + 5273.941163215289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2291.2713214277455, + "min_y": 5265.96046947836, + "max_x": 2291.975091527119, + "max_y": 5266.6642395777335, + "center": [ + 2291.623206477432, + 5266.312354528047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.623206477432, + 5266.312354528047 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5267.557658244926, + "max_x": 2292.172933839553, + "max_y": 5267.557658244926, + "center": [ + 2291.6232064774335, + 5267.557658244926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.073479115314, + 5267.557658244926 + ], + [ + 2292.172933839553, + 5267.557658244926 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55780F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5265.067050811161, + "max_x": 2292.172933839553, + "max_y": 5265.067050811161, + "center": [ + 2291.6232064774335, + 5265.067050811161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.073479115314, + 5265.067050811161 + ], + [ + 2292.172933839553, + 5265.067050811161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557810", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5265.394216663144, + "max_x": 2291.442442536047, + "max_y": 5266.010448109281, + "center": [ + 2291.2579608256806, + 5265.702332386212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.442442536047, + 5266.010448109281 + ], + [ + 2291.073479115314, + 5265.394216663144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5265.394216663144, + "max_x": 2292.172933839553, + "max_y": 5265.394216663144, + "center": [ + 2291.6232064774335, + 5265.394216663144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.073479115314, + 5265.394216663144 + ], + [ + 2292.172933839553, + 5265.394216663144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557812", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.803970418817, + "min_y": 5265.394216663144, + "max_x": 2292.172933839553, + "max_y": 5266.010448109281, + "center": [ + 2291.988452129185, + 5265.702332386212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.172933839553, + 5265.394216663144 + ], + [ + 2291.803970418817, + 5266.010448109281 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557813", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5266.614260946802, + "max_x": 2291.44244253605, + "max_y": 5267.230492392942, + "center": [ + 2291.257960825682, + 5266.922376669872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.44244253605, + 5266.614260946802 + ], + [ + 2291.073479115314, + 5267.230492392942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557814", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.073479115314, + "min_y": 5267.230492392942, + "max_x": 2292.172933839553, + "max_y": 5267.230492392942, + "center": [ + 2291.6232064774335, + 5267.230492392942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.073479115314, + 5267.230492392942 + ], + [ + 2292.172933839553, + 5267.230492392942 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557815", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.803970418814, + "min_y": 5266.614260946802, + "max_x": 2292.172933839553, + "max_y": 5267.230492392942, + "center": [ + 2291.9884521291833, + 5266.922376669872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2292.172933839553, + 5267.230492392942 + ], + [ + 2291.803970418814, + 5266.614260946802 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557816", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.621591369414, + "min_y": 5267.554637195155, + "max_x": 2291.621591369414, + "max_y": 5268.317368189777, + "center": [ + 2291.621591369414, + 5267.936002692466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.621591369414, + 5267.554637195155 + ], + [ + 2291.621591369414, + 5268.317368189777 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "557817", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.068795155553, + "min_y": 5267.833382604482, + "max_x": 2292.168249879791, + "max_y": 5267.833382604482, + "center": [ + 2291.618522517672, + 5267.833382604482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.068795155553, + 5267.833382604482 + ], + [ + 2292.168249879791, + 5267.833382604482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557818", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 2291.622959047811, + "min_y": 5271.414604804999, + "max_x": 2291.622959047812, + "max_y": 5272.392060841628, + "center": [ + 2291.6229590478115, + 5271.903332823314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.622959047811, + 5272.392060841628 + ], + [ + 2291.622959047812, + 5271.414604804999 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557819", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.101957910337, + "min_y": 5272.131690651863, + "max_x": 2292.201412634575, + "max_y": 5272.131690651863, + "center": [ + 2291.6516852724562, + 5272.131690651863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.101957910337, + 5272.131690651863 + ], + [ + 2292.201412634575, + 5272.131690651863 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55781A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2131.63674413048, + "min_y": 5309.009192731381, + "max_x": 2140.27674413048, + "max_y": 5309.809192731381, + "center": [ + 2135.95674413048, + 5309.40919273138 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55781B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2385.485064914944, + "min_y": 5200.622406944123, + "max_x": 2394.125064914944, + "max_y": 5201.422406944123, + "center": [ + 2389.8050649149436, + 5201.022406944123 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55781C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2381.434676658221, + "min_y": 5424.967746930249, + "max_x": 2390.074676658221, + "max_y": 5425.767746930249, + "center": [ + 2385.754676658221, + 5425.367746930249 + ] + }, + "raw_value": "SAFETY AREA TO ATM", + "clean_value": "SAFETY AREA TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55781D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2479.646685912309, + "min_y": 5321.46260055295, + "max_x": 2479.64678038956, + "max_y": 5324.971512074332, + "center": [ + 2479.6467331509343, + 5323.217056313641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.64678038956, + 5321.46260055295 + ], + [ + 2479.646685912309, + 5324.971512074332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55781E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2479.643127494347, + "min_y": 5321.462642698175, + "max_x": 2479.643127494347, + "max_y": 5321.462768565191, + "center": [ + 2479.643127494347, + 5321.462705631683 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.643127494347, + 5321.462768565191 + ], + [ + 2479.643127494347, + 5321.462642698175 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55781F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.194065954662, + "min_y": 5320.698702027629, + "max_x": 2479.35014944142, + "max_y": 5321.462872306013, + "center": [ + 2479.272107698041, + 5321.080787166821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.194065954662, + 5320.698702027629 + ], + [ + 2479.35014944142, + 5321.462872306013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557820", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.973975051881, + "min_y": 5320.698546416396, + "max_x": 2480.129804370353, + "max_y": 5321.462768565191, + "center": [ + 2480.051889711117, + 5321.080657490794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.129804370353, + 5320.698546416396 + ], + [ + 2479.973975051881, + 5321.462768565191 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557821", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.35014944142, + "min_y": 5321.462768565191, + "max_x": 2479.973975051881, + "max_y": 5321.462872306013, + "center": [ + 2479.6620622466507, + 5321.462820435602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.973975051881, + 5321.462768565191 + ], + [ + 2479.35014944142, + 5321.462872306013 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557822", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.194065954662, + "min_y": 5320.698546416396, + "max_x": 2480.129804370353, + "max_y": 5320.698702027629, + "center": [ + 2479.6619351625077, + 5320.698624222013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2480.129804370353, + 5320.698546416396 + ], + [ + 2479.194065954662, + 5320.698702027629 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557823", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2479.255628939661, + "min_y": 5320.698556654187, + "max_x": 2480.06824138535, + "max_y": 5320.698691789842, + "center": [ + 2479.661935162506, + 5320.698624222015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2479.255628939661, + 5320.698691789842 + ], + [ + 2480.06824138535, + 5320.698556654187 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557824", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2114.367537962891, + "min_y": 5312.301001221121, + "max_x": 2126.46225654714, + "max_y": 5313.420882571514, + "center": [ + 2120.4148972550156, + 5312.860941896317 + ] + }, + "raw_value": "IA-10904-15A-F1A-n", + "clean_value": "IA-10904-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557825", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2303.780498435891, + "min_y": 5272.857533351441, + "max_x": 2304.879953160131, + "max_y": 5272.857533351441, + "center": [ + 2304.3302257980113, + 5272.857533351441 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2303.780498435891, + 5272.857533351441 + ], + [ + 2304.879953160131, + 5272.857533351441 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557826", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.0809929533534, + "min_y": 5267.569949144224, + "max_x": 2307.326548807403, + "max_y": 5272.815504998273, + "center": [ + 2304.703770880378, + 5270.192727071249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.703770880378, + 5270.192727071249 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557827", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.033175162208, + "min_y": 5272.863328114397, + "max_x": 2304.703776205352, + "max_y": 5272.863333439371, + "center": [ + 2303.36847568378, + 5272.863330776883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.703776205352, + 5272.863328114397 + ], + [ + 2302.033175162208, + 5272.863333439371 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557828", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.033169837229, + "min_y": 5270.192732396231, + "max_x": 2302.033175162208, + "max_y": 5272.863333439371, + "center": [ + 2302.0331724997186, + 5271.5280329178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.033169837229, + 5270.192732396231 + ], + [ + 2302.033175162208, + 5272.863333439371 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557829", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2304.703776205352, + "min_y": 5272.863322789414, + "max_x": 2307.374377248503, + "max_y": 5272.863328114397, + "center": [ + 2306.0390767269273, + 5272.863325451905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.703776205352, + 5272.863328114397 + ], + [ + 2307.374377248503, + 5272.863322789414 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782A", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2307.374371923526, + "min_y": 5270.192721746275, + "max_x": 2307.374377248503, + "max_y": 5272.863322789414, + "center": [ + 2307.3743745860147, + 5271.528022267845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.374371923526, + 5270.192721746275 + ], + [ + 2307.374377248503, + 5272.863322789414 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782B", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.033164512255, + "min_y": 5267.522126028088, + "max_x": 2304.703765555399, + "max_y": 5267.522131353074, + "center": [ + 2303.3684650338273, + 5267.522128690581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.703765555399, + 5267.522126028088 + ], + [ + 2302.033164512255, + 5267.522131353074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782C", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.033164512255, + "min_y": 5267.522131353074, + "max_x": 2302.033169837229, + "max_y": 5270.192732396221, + "center": [ + 2302.0331671747417, + 5268.857431874647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2302.033169837229, + 5270.192732396221 + ], + [ + 2302.033164512255, + 5267.522131353074 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782D", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2304.703765555399, + "min_y": 5267.522120703127, + "max_x": 2307.374366598548, + "max_y": 5267.522126028088, + "center": [ + 2306.0390660769735, + 5267.5221233656075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2304.703765555399, + 5267.522126028088 + ], + [ + 2307.374366598548, + 5267.522120703127 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782E", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2307.374366598548, + "min_y": 5267.522120703127, + "max_x": 2307.374371923526, + "max_y": 5270.192721746262, + "center": [ + 2307.374369261037, + 5268.857421224695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.374371923526, + 5270.192721746262 + ], + [ + 2307.374366598548, + 5267.522120703127 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55782F", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2303.671747154381, + "min_y": 5270.532071774155, + "max_x": 2305.2392322791184, + "max_y": 5271.838309378103, + "center": [ + 2304.45548971675, + 5271.185190576129 + ] + }, + "raw_value": "HS", + "clean_value": "HS", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557830", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.080992953355, + "min_y": 5270.192721841636, + "max_x": 2307.326548807396, + "max_y": 5270.192732300873, + "center": [ + 2304.7037708803755, + 5270.192727071255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2307.326548807396, + 5270.192721841636 + ], + [ + 2302.080992953355, + 5270.192732300873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557831", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2302.896408312273, + "min_y": 5268.444192930812, + "max_x": 2306.256408312273, + "max_y": 5269.564192930812, + "center": [ + 2304.576408312273, + 5269.004192930812 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557832", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2309.28154529694, + "min_y": 5359.876206002478, + "max_x": 2309.28154529694, + "max_y": 5370.655389005501, + "center": [ + 2309.28154529694, + 5365.265797503989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.28154529694, + 5359.876206002478 + ], + [ + 2309.28154529694, + 5370.655389005501 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557833", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2312.259848710335, + "min_y": 5359.876206002478, + "max_x": 2312.259848710335, + "max_y": 5370.655389005512, + "center": [ + 2312.259848710335, + 5365.265797503995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.259848710335, + 5370.655389005512 + ], + [ + 2312.259848710335, + 5359.876206002478 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557834", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.28154529694, + "min_y": 5359.876206002478, + "max_x": 2312.259848710335, + "max_y": 5359.876206002478, + "center": [ + 2310.7706970036375, + 5359.876206002478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.259848710335, + 5359.876206002478 + ], + [ + 2309.28154529694, + 5359.876206002478 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557835", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2309.281545296943, + "min_y": 5370.655389005507, + "max_x": 2310.77069700364, + "max_y": 5372.144540712201, + "center": [ + 2310.0261211502916, + 5371.399964858854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.281545296943, + 5370.655389005507 + ], + [ + 2310.77069700364, + 5372.144540712201 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557836", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2310.77069700364, + "min_y": 5370.655389005507, + "max_x": 2312.259848710338, + "max_y": 5372.144540712201, + "center": [ + 2311.515272856989, + 5371.399964858854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.77069700364, + 5372.144540712201 + ], + [ + 2312.259848710338, + 5370.655389005507 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557837", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2311.537805724031, + "min_y": 5362.292413011272, + "max_x": 2314.225520964975, + "max_y": 5363.7855881451305, + "center": [ + 2312.881663344503, + 5363.039000578201 + ] + }, + "raw_value": "CWR", + "clean_value": "CWR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557838", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2315.1364704703, + "min_y": 5359.441081212331, + "max_x": 2325.215402623841, + "max_y": 5360.560962562724, + "center": [ + 2320.1759365470707, + 5360.001021887527 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557839", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2308.9501198741, + "min_y": 5359.22457277586, + "max_x": 2319.029052027641, + "max_y": 5360.344454126253, + "center": [ + 2313.9895859508706, + 5359.784513451057 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55783A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.005337737842, + "min_y": 5191.581226826525, + "max_x": 2475.4848631394157, + "max_y": 5192.514461285186, + "center": [ + 2473.245100438629, + 5192.047844055856 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55783B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2454.042813960667, + "min_y": 5191.706805990044, + "max_x": 2459.642220712634, + "max_y": 5192.640040448705, + "center": [ + 2456.8425173366504, + 5192.173423219374 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55783C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.176418980864, + "min_y": 5396.9324527704, + "max_x": 2383.706747887894, + "max_y": 5396.9324527704, + "center": [ + 2382.941583434379, + 5396.9324527704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2383.706747887894, + 5396.9324527704 + ], + [ + 2382.176418980864, + 5396.9324527704 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "55783D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2379.687416025625, + "min_y": 5396.358499155552, + "max_x": 2379.687416025625, + "max_y": 5397.496623848055, + "center": [ + 2379.687416025625, + 5396.927561501803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.687416025625, + 5396.358499155552 + ], + [ + 2379.687416025625, + 5397.496623848055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55783E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2380.579280864231, + "min_y": 5396.576288448565, + "max_x": 2381.2818269707095, + "max_y": 5397.278834555043, + "center": [ + 2380.93055391747, + 5396.927561501804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.93055391747, + 5396.927561501804 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55783F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2382.173691809315, + "min_y": 5396.378790222335, + "max_x": 2382.173691809315, + "max_y": 5397.476332781273, + "center": [ + 2382.173691809315, + 5396.927561501804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2382.173691809315, + 5397.476332781273 + ], + [ + 2382.173691809315, + 5396.378790222335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557840", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.014012872647, + "min_y": 5396.372632994329, + "max_x": 2380.014012872647, + "max_y": 5397.48249000928, + "center": [ + 2380.014012872647, + 5396.927561501805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.014012872647, + 5396.372632994329 + ], + [ + 2380.014012872647, + 5397.48249000928 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557841", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.231935262331, + "min_y": 5396.378790222335, + "max_x": 2381.847094962296, + "max_y": 5396.747111944024, + "center": [ + 2381.5395151123134, + 5396.5629510831795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.231935262331, + 5396.747111944024 + ], + [ + 2381.847094962296, + 5396.378790222335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557842", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.847094962296, + "min_y": 5396.378790222335, + "max_x": 2381.847094962296, + "max_y": 5397.476332781273, + "center": [ + 2381.847094962296, + 5396.927561501804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.847094962296, + 5396.378790222335 + ], + [ + 2381.847094962296, + 5397.476332781273 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557843", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2381.231935262331, + "min_y": 5397.108011059586, + "max_x": 2381.847094962296, + "max_y": 5397.476332781273, + "center": [ + 2381.5395151123134, + 5397.29217192043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2381.847094962296, + 5397.476332781273 + ], + [ + 2381.231935262331, + 5397.108011059586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557844", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.014012872647, + "min_y": 5396.378790222335, + "max_x": 2380.629172572612, + "max_y": 5396.747111944024, + "center": [ + 2380.3215927226292, + 5396.5629510831795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.629172572612, + 5396.747111944024 + ], + [ + 2380.014012872647, + 5396.378790222335 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557845", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2380.014012872647, + "min_y": 5397.108011059586, + "max_x": 2380.629172572612, + "max_y": 5397.476332781273, + "center": [ + 2380.3215927226292, + 5397.29217192043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2380.014012872647, + 5397.476332781273 + ], + [ + 2380.629172572612, + 5397.108011059586 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557846", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.54096395221, + "min_y": 5396.9324527704, + "max_x": 2379.692643548974, + "max_y": 5396.9324527704, + "center": [ + 2379.116803750592, + 5396.9324527704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2379.692643548974, + 5396.9324527704 + ], + [ + 2378.54096395221, + 5396.9324527704 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "557847", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.538997201806, + "min_y": 5396.258634304084, + "max_x": 2378.538997201806, + "max_y": 5396.931864319203, + "center": [ + 2378.538997201806, + 5396.595249311644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.538997201806, + 5396.931864319203 + ], + [ + 2378.538997201806, + 5396.258634304084 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "557848", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.174765065474, + "min_y": 5395.933359042794, + "max_x": 2378.174765065474, + "max_y": 5396.453681023992, + "center": [ + 2378.174765065474, + 5396.193520033394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.174765065474, + 5396.453681023992 + ], + [ + 2378.174765065474, + 5395.933359042794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557849", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.943044856724, + "min_y": 5395.933359042794, + "max_x": 2378.943044856724, + "max_y": 5396.453681023992, + "center": [ + 2378.943044856724, + 5396.193520033394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.943044856724, + 5396.453681023992 + ], + [ + 2378.943044856724, + 5395.933359042794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55784A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2378.174765065474, + "min_y": 5395.933359042794, + "max_x": 2378.943044856724, + "max_y": 5395.933359042794, + "center": [ + 2378.558904961099, + 5395.933359042794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2378.174765065474, + 5395.933359042794 + ], + [ + 2378.943044856724, + 5395.933359042794 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55784B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2308.014183115416, + "min_y": 5332.0609454581, + "max_x": 2309.472352711853, + "max_y": 5332.0609454581, + "center": [ + 2308.7432679136346, + 5332.0609454581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2308.014183115416, + 5332.0609454581 + ], + [ + 2309.472352711853, + 5332.0609454581 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "55784C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.961355667091, + "min_y": 5331.486991843251, + "max_x": 2311.961355667091, + "max_y": 5332.625116535755, + "center": [ + 2311.961355667091, + 5332.056054189503 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.961355667091, + 5331.486991843251 + ], + [ + 2311.961355667091, + 5332.625116535755 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55784D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2310.3669447220077, + "min_y": 5331.7047811362645, + "max_x": 2311.0694908284863, + "max_y": 5332.407327242743, + "center": [ + 2310.718217775247, + 5332.056054189504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.718217775247, + 5332.056054189504 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55784E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.475079883402, + "min_y": 5331.507282910036, + "max_x": 2309.475079883402, + "max_y": 5332.604825468973, + "center": [ + 2309.475079883402, + 5332.056054189505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.475079883402, + 5332.604825468973 + ], + [ + 2309.475079883402, + 5331.507282910036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55784F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.634758820069, + "min_y": 5331.501125682029, + "max_x": 2311.634758820069, + "max_y": 5332.61098269698, + "center": [ + 2311.634758820069, + 5332.056054189505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.634758820069, + 5331.501125682029 + ], + [ + 2311.634758820069, + 5332.61098269698 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557850", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.801676730421, + "min_y": 5331.507282910036, + "max_x": 2310.416836430385, + "max_y": 5331.875604631724, + "center": [ + 2310.109256580403, + 5331.69144377088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.416836430385, + 5331.875604631724 + ], + [ + 2309.801676730421, + 5331.507282910036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557851", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.801676730421, + "min_y": 5331.507282910036, + "max_x": 2309.801676730421, + "max_y": 5332.604825468973, + "center": [ + 2309.801676730421, + 5332.056054189505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.801676730421, + 5331.507282910036 + ], + [ + 2309.801676730421, + 5332.604825468973 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557852", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2309.801676730421, + "min_y": 5332.236503747285, + "max_x": 2310.416836430385, + "max_y": 5332.604825468973, + "center": [ + 2310.109256580403, + 5332.420664608129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2309.801676730421, + 5332.604825468973 + ], + [ + 2310.416836430385, + 5332.236503747285 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557853", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.019599120105, + "min_y": 5331.507282910036, + "max_x": 2311.634758820069, + "max_y": 5331.875604631724, + "center": [ + 2311.3271789700866, + 5331.69144377088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.019599120105, + 5331.875604631724 + ], + [ + 2311.634758820069, + 5331.507282910036 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557854", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.019599120105, + "min_y": 5332.236503747285, + "max_x": 2311.634758820069, + "max_y": 5332.604825468973, + "center": [ + 2311.3271789700866, + 5332.420664608129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.634758820069, + 5332.604825468973 + ], + [ + 2311.019599120105, + 5332.236503747285 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557855", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2311.956128143743, + "min_y": 5332.0609454581, + "max_x": 2313.107807740506, + "max_y": 5332.0609454581, + "center": [ + 2312.5319679421245, + 5332.0609454581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2311.956128143743, + 5332.0609454581 + ], + [ + 2313.107807740506, + 5332.0609454581 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "557856", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.10977449091, + "min_y": 5331.723741999343, + "max_x": 2313.10977449091, + "max_y": 5332.060357006902, + "center": [ + 2313.10977449091, + 5331.8920495031225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.10977449091, + 5332.060357006902 + ], + [ + 2313.10977449091, + 5331.723741999343 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "557857", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2313.476424489016, + "min_y": 5331.405805092289, + "max_x": 2313.476424489016, + "max_y": 5331.926127073487, + "center": [ + 2313.476424489016, + 5331.665966082888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.476424489016, + 5331.926127073487 + ], + [ + 2313.476424489016, + 5331.405805092289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557858", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.708144697765, + "min_y": 5331.405805092289, + "max_x": 2312.708144697765, + "max_y": 5331.926127073487, + "center": [ + 2312.708144697765, + 5331.665966082888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2312.708144697765, + 5331.926127073487 + ], + [ + 2312.708144697765, + 5331.405805092289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557859", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2312.708144697765, + "min_y": 5331.405805092289, + "max_x": 2313.476424489016, + "max_y": 5331.405805092289, + "center": [ + 2313.0922845933906, + 5331.405805092289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2313.476424489016, + 5331.405805092289 + ], + [ + 2312.708144697765, + 5331.405805092289 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55785A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2309.770403772783, + "min_y": 5330.150873724113, + "max_x": 2311.584208403134, + "max_y": 5331.158542963197, + "center": [ + 2310.6773060879586, + 5330.654708343654 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55785B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2379.87045320825, + "min_y": 5395.03909816856, + "max_x": 2381.6842578386013, + "max_y": 5396.0467674076435, + "center": [ + 2380.7773555234257, + 5395.542932788101 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55785C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2380.778288873055, + "min_y": 5398.625049044539, + "max_x": 2382.592093503406, + "max_y": 5399.632718283623, + "center": [ + 2381.6851911882304, + 5399.1288836640815 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55785D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2308.605092613392, + "min_y": 5333.18300001232, + "max_x": 2310.4188972437432, + "max_y": 5334.190669251404, + "center": [ + 2309.5119949285677, + 5333.686834631862 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55785E", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2287.491560690713, + "min_y": 5340.017728798851, + "max_x": 2289.05904581545, + "max_y": 5341.323966402799, + "center": [ + 2288.275303253082, + 5340.670847600824 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55785F", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.6520844041356, + "min_y": 5336.586201075277, + "max_x": 2291.3762131937906, + "max_y": 5342.310329864933, + "center": [ + 2288.514148798963, + 5339.448265470105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.514148798963, + 5339.448265470105 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557860", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2285.852199841818, + "min_y": 5337.907398598186, + "max_x": 2290.5546552160295, + "max_y": 5339.213636202134, + "center": [ + 2288.203427528924, + 5338.560517400159 + ] + }, + "raw_value": "10217A", + "clean_value": "10217A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557861", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.368091195663, + "min_y": 5339.373742658992, + "max_x": 2293.681584755345, + "max_y": 5339.373742658992, + "center": [ + 2292.524837975504, + 5339.373742658992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.368091195663, + 5339.373742658992 + ], + [ + 2293.681584755345, + 5339.373742658992 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557862", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.898712542952, + "min_y": 5323.72285730107, + "max_x": 2123.89871502199, + "max_y": 5324.966154360152, + "center": [ + 2123.898713782471, + 5324.3445058306115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.89871502199, + 5324.966154360152 + ], + [ + 2123.898712542952, + 5323.72285730107 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557863", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2120.959591329548, + "min_y": 5323.722863161446, + "max_x": 2120.959593808589, + "max_y": 5324.966160220546, + "center": [ + 2120.9595925690683, + 5324.344511690996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2120.959593808589, + 5324.966160220546 + ], + [ + 2120.959591329548, + 5323.722863161446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557864", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.430330744038, + "min_y": 5323.437708183694, + "max_x": 2123.430333134685, + "max_y": 5325.235943253032, + "center": [ + 2123.4303319393616, + 5324.336825718363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.430333134685, + 5325.235943253032 + ], + [ + 2123.430330744038, + 5323.437708183694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557865", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.427856334905, + "min_y": 5323.437712176478, + "max_x": 2121.427858745963, + "max_y": 5325.251301043117, + "center": [ + 2121.427857540434, + 5324.3445066097975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.427858745963, + 5325.251301043117 + ], + [ + 2121.427856334905, + 5323.437712176478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557866", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.427856334909, + "min_y": 5323.437708183694, + "max_x": 2123.430330744038, + "max_y": 5323.437712176478, + "center": [ + 2122.429093539474, + 5323.437710180086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.427856334909, + 5323.437712176478 + ], + [ + 2123.430330744038, + 5323.437708183694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557867", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2121.427856334909, + "min_y": 5325.251301043103, + "max_x": 2123.430330744038, + "max_y": 5325.251305035887, + "center": [ + 2122.429093539474, + 5325.251303039495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2121.427856334909, + 5325.251301043103 + ], + [ + 2123.430330744038, + 5325.251305035887 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557868", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2121.932009792394, + "min_y": 5323.791818030318, + "max_x": 2122.6026550012707, + "max_y": 5324.909560045112, + "center": [ + 2122.2673323968324, + 5324.350689037715 + ] + }, + "raw_value": "T", + "clean_value": "T", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557869", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2121.300240509278, + "min_y": 5321.781598666496, + "max_x": 2123.316026939986, + "max_y": 5322.90148001689, + "center": [ + 2122.308133724632, + 5322.341539341693 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55786A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2125.182687124764, + "min_y": 5325.515818261244, + "max_x": 2136.750603872014, + "max_y": 5325.515818261244, + "center": [ + 2130.966645498389, + 5325.515818261244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.750603872014, + 5325.515818261244 + ], + [ + 2125.182687124764, + 5325.515818261244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55786B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2125.182687124764, + "min_y": 5322.794773066814, + "max_x": 2136.750603872016, + "max_y": 5322.794773066814, + "center": [ + 2130.96664549839, + 5322.794773066814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.182687124764, + 5322.794773066814 + ], + [ + 2136.750603872016, + 5322.794773066814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55786C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2125.182687124764, + "min_y": 5322.794773066814, + "max_x": 2125.182687124764, + "max_y": 5325.515818261244, + "center": [ + 2125.182687124764, + 5324.155295664029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2125.182687124764, + 5322.794773066814 + ], + [ + 2125.182687124764, + 5325.515818261244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55786D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2136.750603872016, + "min_y": 5322.794773066814, + "max_x": 2138.111126469232, + "max_y": 5324.155295664032, + "center": [ + 2137.430865170624, + 5323.475034365423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2136.750603872016, + 5322.794773066814 + ], + [ + 2138.111126469232, + 5324.155295664032 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55786E", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2136.750603872014, + "min_y": 5324.155295664032, + "max_x": 2138.111126469229, + "max_y": 5325.515818261244, + "center": [ + 2137.4308651706215, + 5324.835556962638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2138.111126469229, + 5324.155295664032 + ], + [ + 2136.750603872014, + 5325.515818261244 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55786F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2126.230111898236, + "min_y": 5323.456473805279, + "max_x": 2134.7705038487447, + "max_y": 5324.879872463697, + "center": [ + 2130.5003078734903, + 5324.168173134488 + ] + }, + "raw_value": "CONDENSATE", + "clean_value": "CONDENSATE", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557870", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2125.355617610122, + "min_y": 5326.29101967, + "max_x": 2137.525676139597, + "max_y": 5327.358568663814, + "center": [ + 2131.4406468748593, + 5326.824794166907 + ] + }, + "raw_value": "SARF-UTILITY-UFD-ST", + "clean_value": "SARF-UTILITY-UFD-ST", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557871", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2126.058526106315, + "min_y": 5320.952034248525, + "max_x": 2133.321878438862, + "max_y": 5322.162592970616, + "center": [ + 2129.6902022725885, + 5321.55731360957 + ] + }, + "raw_value": "OGDEN PUMP", + "clean_value": "OGDEN PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557872", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.409073402697, + "min_y": 5323.841404696766, + "max_x": 2119.409075485926, + "max_y": 5324.886192141379, + "center": [ + 2119.4090744443115, + 5324.363798419073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.409075485926, + 5324.886192141379 + ], + [ + 2119.409073402697, + 5323.841404696766 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557873", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2116.939223643534, + "min_y": 5323.841409621458, + "max_x": 2116.939225726762, + "max_y": 5324.886197066081, + "center": [ + 2116.939224685148, + 5324.363803343769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2116.939225726762, + 5324.886197066081 + ], + [ + 2116.939223643534, + 5323.841409621458 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557874", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.332725656985, + "min_y": 5324.529452379505, + "max_x": 2117.897435629356, + "max_y": 5324.867569278689, + "center": [ + 2117.6150806431706, + 5324.698510829097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.332725656985, + 5324.867569278689 + ], + [ + 2117.897435629356, + 5324.529452379505 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557875", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.450765279978, + "min_y": 5323.860032484359, + "max_x": 2119.015475252349, + "max_y": 5324.198149383537, + "center": [ + 2118.7331202661635, + 5324.029090933948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.450765279978, + 5324.198149383537 + ], + [ + 2119.015475252349, + 5323.860032484359 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557876", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.015475252349, + "min_y": 5323.860032484359, + "max_x": 2119.015477261296, + "max_y": 5324.867565923403, + "center": [ + 2119.0154762568227, + 5324.363799203881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.015477261296, + 5324.867565923403 + ], + [ + 2119.015475252349, + 5323.860032484359 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557877", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.332723648036, + "min_y": 5323.860035839639, + "max_x": 2117.332725656985, + "max_y": 5324.867569278689, + "center": [ + 2117.3327246525105, + 5324.3638025591645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.332725656985, + 5324.867569278689 + ], + [ + 2117.332723648036, + 5323.860035839639 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557878", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2117.332723648036, + "min_y": 5323.860035839639, + "max_x": 2117.897434968765, + "max_y": 5324.198150486843, + "center": [ + 2117.6150793084007, + 5324.029093163241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2117.332723648036, + 5323.860035839639 + ], + [ + 2117.897434968765, + 5324.198150486843 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557879", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2118.45076594057, + "min_y": 5324.529451276205, + "max_x": 2119.015477261296, + "max_y": 5324.867565923403, + "center": [ + 2118.733121600933, + 5324.698508599804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.45076594057, + 5324.529451276205 + ], + [ + 2119.015477261296, + 5324.867565923403 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55787B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2117.851635193984, + "min_y": 5324.041335620838, + "max_x": 2118.4965657153484, + "max_y": 5324.686266142203, + "center": [ + 2118.174100454666, + 5324.363800881521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2118.174100454666, + 5324.363800881521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55787C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2119.409350895575, + "min_y": 5324.378696274123, + "max_x": 2120.957916445469, + "max_y": 5324.378696274123, + "center": [ + 2120.183633670522, + 5324.378696274123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2119.409350895575, + 5324.378696274123 + ], + [ + 2120.957916445469, + 5324.378696274123 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55787D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2123.897720612582, + "min_y": 5324.340746039999, + "max_x": 2125.185673992908, + "max_y": 5324.340746039999, + "center": [ + 2124.541697302745, + 5324.340746039999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2123.897720612582, + 5324.340746039999 + ], + [ + 2125.185673992908, + 5324.340746039999 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55787E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2115.578127497575, + "min_y": 5324.334206360657, + "max_x": 2115.578127497575, + "max_y": 5336.601872339837, + "center": [ + 2115.578127497575, + 5330.468039350248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.578127497575, + 5336.601872339837 + ], + [ + 2115.578127497575, + 5324.334206360657 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55787F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2115.578127497575, + "min_y": 5324.334206360657, + "max_x": 2116.939305270728, + "max_y": 5324.334206360657, + "center": [ + 2116.2587163841517, + 5324.334206360657 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2115.578127497575, + 5324.334206360657 + ], + [ + 2116.939305270728, + 5324.334206360657 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557880", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2453.959671454424, + "min_y": 5195.003195262011, + "max_x": 2459.559078206391, + "max_y": 5195.936429720672, + "center": [ + 2456.7593748304075, + 5195.469812491341 + ] + }, + "raw_value": "2025.06.20", + "clean_value": "2025.06.20", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557881", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.095083203988, + "min_y": 5195.028443088047, + "max_x": 2475.5746086055615, + "max_y": 5195.961677546708, + "center": [ + 2473.3348459047747, + 5195.495060317378 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557882", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2450.02938057616, + "min_y": 5383.226572498015, + "max_x": 2450.02938057616, + "max_y": 5385.183050813078, + "center": [ + 2450.02938057616, + 5384.204811655547 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.02938057616, + 5383.226572498015 + ], + [ + 2450.02938057616, + 5385.183050813078 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557883", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2450.02938057616, + "min_y": 5387.274509540151, + "max_x": 2450.02938057616, + "max_y": 5389.23615559069, + "center": [ + 2450.02938057616, + 5388.255332565421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.02938057616, + 5387.274509540151 + ], + [ + 2450.02938057616, + 5389.23615559069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557884", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2448.965156144283, + "min_y": 5393.10446646797, + "max_x": 2450.53264126902, + "max_y": 5394.410704071918, + "center": [ + 2449.7488987066517, + 5393.757585269945 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557885", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2446.8617304410905, + "min_y": 5389.234609326506, + "max_x": 2453.1970307112274, + "max_y": 5395.569909596643, + "center": [ + 2450.029380576159, + 5392.402259461574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.029380576159, + 5392.402259461574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557886", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2447.313026822792, + "min_y": 5390.893159177007, + "max_x": 2452.015482197003, + "max_y": 5392.199396780955, + "center": [ + 2449.6642545098975, + 5391.546277978981 + ] + }, + "raw_value": "10217C", + "clean_value": "10217C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557887", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2449.63364442256, + "min_y": 5385.83381636476, + "max_x": 2450.4321642779123, + "max_y": 5386.632336220113, + "center": [ + 2450.032904350236, + 5386.233076292437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.032904350236, + 5386.233076292437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557888", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.409166265775, + "min_y": 5385.191327977567, + "max_x": 2449.827803854413, + "max_y": 5385.890523703094, + "center": [ + 2449.618485060094, + 5385.540925840331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.827803854413, + 5385.890523703094 + ], + [ + 2449.409166265775, + 5385.191327977567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557889", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.409166265775, + "min_y": 5385.191327977567, + "max_x": 2450.6566424347, + "max_y": 5385.191327977567, + "center": [ + 2450.032904350238, + 5385.191327977567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.409166265775, + 5385.191327977567 + ], + [ + 2450.6566424347, + 5385.191327977567 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55788A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2450.238004846062, + "min_y": 5385.191327977567, + "max_x": 2450.6566424347, + "max_y": 5385.890523703094, + "center": [ + 2450.447323640381, + 5385.540925840331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.6566424347, + 5385.191327977567 + ], + [ + 2450.238004846062, + 5385.890523703094 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55788B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.409166265775, + "min_y": 5386.57562888177, + "max_x": 2449.827803854415, + "max_y": 5387.274824607295, + "center": [ + 2449.618485060095, + 5386.925226744533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.827803854415, + 5386.57562888177 + ], + [ + 2449.409166265775, + 5387.274824607295 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55788C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2449.409166265775, + "min_y": 5387.274824607295, + "max_x": 2450.6566424347, + "max_y": 5387.274824607295, + "center": [ + 2450.032904350238, + 5387.274824607295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2449.409166265775, + 5387.274824607295 + ], + [ + 2450.6566424347, + 5387.274824607295 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55788D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2450.238004846057, + "min_y": 5386.57562888177, + "max_x": 2450.6566424347, + "max_y": 5387.274824607295, + "center": [ + 2450.4473236403783, + 5386.925226744533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2450.6566424347, + 5387.274824607295 + ], + [ + 2450.238004846057, + 5386.57562888177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55788E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.165166156731, + "min_y": 5198.283838139404, + "max_x": 2475.6446915583047, + "max_y": 5199.217072598065, + "center": [ + 2473.404928857518, + 5198.750455368734 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55788F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2453.981039484839, + "min_y": 5198.436934791538, + "max_x": 2459.580446236806, + "max_y": 5199.370169250199, + "center": [ + 2456.7807428608226, + 5198.903552020869 + ] + }, + "raw_value": "2025.06.23", + "clean_value": "2025.06.23", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557890", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2412.3341631199037, + "min_y": 5381.705653282592, + "max_x": 2413.132682975256, + "max_y": 5382.504173137944, + "center": [ + 2412.73342304758, + 5382.104913210268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.73342304758, + 5382.104913210268 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557891", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.109684963119, + "min_y": 5381.063164895398, + "max_x": 2412.528322551757, + "max_y": 5381.762360620925, + "center": [ + 2412.3190037574377, + 5381.412762758162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.528322551757, + 5381.762360620925 + ], + [ + 2412.109684963119, + 5381.063164895398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557892", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.109684963119, + "min_y": 5381.063164895398, + "max_x": 2413.357161132045, + "max_y": 5381.063164895398, + "center": [ + 2412.7334230475817, + 5381.063164895398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.109684963119, + 5381.063164895398 + ], + [ + 2413.357161132045, + 5381.063164895398 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557893", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.938523543406, + "min_y": 5381.063164895398, + "max_x": 2413.357161132045, + "max_y": 5381.762360620925, + "center": [ + 2413.1478423377257, + 5381.412762758162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.357161132045, + 5381.063164895398 + ], + [ + 2412.938523543406, + 5381.762360620925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557894", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.109684963119, + "min_y": 5382.447465799601, + "max_x": 2412.528322551759, + "max_y": 5383.146661525126, + "center": [ + 2412.319003757439, + 5382.797063662363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.528322551759, + 5382.447465799601 + ], + [ + 2412.109684963119, + 5383.146661525126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557895", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.109684963119, + "min_y": 5383.146661525126, + "max_x": 2413.357161132045, + "max_y": 5383.146661525126, + "center": [ + 2412.7334230475817, + 5383.146661525126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.109684963119, + 5383.146661525126 + ], + [ + 2413.357161132045, + 5383.146661525126 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557896", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.938523543401, + "min_y": 5382.447465799601, + "max_x": 2413.357161132045, + "max_y": 5383.146661525126, + "center": [ + 2413.147842337723, + 5382.797063662363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.357161132045, + 5383.146661525126 + ], + [ + 2412.938523543401, + 5382.447465799601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557897", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.152844699464, + "min_y": 5379.279034583653, + "max_x": 2413.292952260454, + "max_y": 5379.279034583653, + "center": [ + 2412.722898479959, + 5379.279034583653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.292952260454, + 5379.279034583653 + ], + [ + 2412.152844699464, + 5379.279034583653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557898", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2412.152844699464, + "min_y": 5379.279034583653, + "max_x": 2412.152844699464, + "max_y": 5379.905107522674, + "center": [ + 2412.152844699464, + 5379.592071053164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.152844699464, + 5379.905107522674 + ], + [ + 2412.152844699464, + 5379.279034583653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557899", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2413.292952260454, + "min_y": 5379.279034583653, + "max_x": 2413.292952260454, + "max_y": 5379.905107522674, + "center": [ + 2413.292952260454, + 5379.592071053164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2413.292952260454, + 5379.905107522674 + ], + [ + 2413.292952260454, + 5379.279034583653 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55789A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.722898479959, + "min_y": 5379.902962638794, + "max_x": 2412.722898479959, + "max_y": 5381.063151603172, + "center": [ + 2412.722898479959, + 5380.483057120982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.722898479959, + 5379.902962638794 + ], + [ + 2412.722898479959, + 5381.063151603172 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55789B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2412.722898479959, + "min_y": 5383.14653615061, + "max_x": 2412.722898479959, + "max_y": 5385.021030205283, + "center": [ + 2412.722898479959, + 5384.083783177946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2412.722898479959, + 5383.14653615061 + ], + [ + 2412.722898479959, + 5385.021030205283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55789C", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2146.464896857866, + "min_y": 5314.655003370618, + "max_x": 2146.464896857871, + "max_y": 5315.668531415074, + "center": [ + 2146.4648968578686, + 5315.161767392846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.464896857866, + 5314.655003370618 + ], + [ + 2146.464896857871, + 5315.668531415074 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55789D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5312.26326788801, + "max_x": 2147.024710464502, + "max_y": 5312.26326788801, + "center": [ + 2146.4661782973385, + 5312.26326788801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.907646130175, + 5312.26326788801 + ], + [ + 2147.024710464502, + 5312.26326788801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5312.526293197573, + "max_x": 2147.024710464502, + "max_y": 5314.391979960773, + "center": [ + 2146.4661782973385, + 5313.459136579173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.907646130175, + 5312.526293197573 + ], + [ + 2147.024710464502, + 5314.391979960773 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5312.526293197573, + "max_x": 2147.024710464502, + "max_y": 5312.526293197573, + "center": [ + 2146.4661782973385, + 5312.526293197573 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.907646130175, + 5312.526293197573 + ], + [ + 2147.024710464502, + 5312.526293197573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5314.391979960773, + "max_x": 2147.024710464502, + "max_y": 5314.391979960773, + "center": [ + 2146.4661782973385, + 5314.391979960773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.024710464502, + 5314.391979960773 + ], + [ + 2145.907646130175, + 5314.391979960773 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.346126247956, + "min_y": 5313.800821918751, + "max_x": 2147.024710464475, + "max_y": 5314.391979960735, + "center": [ + 2146.6854183562155, + 5314.096400939743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.024710464475, + 5314.391979960735 + ], + [ + 2146.346126247956, + 5313.800821918751 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.346126247956, + "min_y": 5313.657743027493, + "max_x": 2146.585092246006, + "max_y": 5313.800821918751, + "center": [ + 2146.465609246981, + 5313.729282473122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.346126247956, + 5313.800821918751 + ], + [ + 2146.585092246006, + 5313.657743027493 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.824058244023, + "min_y": 5313.514664136208, + "max_x": 2147.024710464513, + "max_y": 5314.391979960713, + "center": [ + 2146.924384354268, + 5313.953322048461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.024710464513, + 5314.391979960713 + ], + [ + 2146.824058244023, + 5313.514664136208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.585092245992, + "min_y": 5313.514664136208, + "max_x": 2146.824058244023, + "max_y": 5313.657743027498, + "center": [ + 2146.7045752450076, + 5313.586203581854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.824058244023, + 5313.514664136208 + ], + [ + 2146.585092245992, + 5313.657743027498 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.907646130175, + "min_y": 5314.655005270336, + "max_x": 2147.024710464502, + "max_y": 5314.655005270336, + "center": [ + 2146.4661782973385, + 5314.655005270336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.907646130175, + 5314.655005270336 + ], + [ + 2147.024710464502, + 5314.655005270336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961437746506, + "min_y": 5317.657793784424, + "max_x": 2146.968971185562, + "max_y": 5317.657793784424, + "center": [ + 2146.4652044660343, + 5317.657793784424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.968971185562, + 5317.657793784424 + ], + [ + 2145.961437746506, + 5317.657793784424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.630855412363, + "min_y": 5317.093083137873, + "max_x": 2146.968971185562, + "max_y": 5317.657793784424, + "center": [ + 2146.7999132989626, + 5317.375438461148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.630855412363, + 5317.093083137873 + ], + [ + 2146.968971185562, + 5317.657793784424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961437746506, + "min_y": 5315.975042180109, + "max_x": 2146.968971185562, + "max_y": 5315.975042180109, + "center": [ + 2146.4652044660343, + 5315.975042180109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.968971185562, + 5315.975042180109 + ], + [ + 2145.961437746506, + 5315.975042180109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.630855412363, + "min_y": 5315.975042180109, + "max_x": 2146.968971185562, + "max_y": 5316.539752826662, + "center": [ + 2146.7999132989626, + 5316.257397503386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.630855412363, + 5316.539752826662 + ], + [ + 2146.968971185562, + 5315.975042180109 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2146.1427392053506, + "min_y": 5316.493952721584, + "max_x": 2146.787669726715, + "max_y": 5317.138883242948, + "center": [ + 2146.465204466033, + 5316.816417982266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.465204466033, + 5316.816417982266 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961130138342, + "min_y": 5317.936141362682, + "max_x": 2146.96866357739, + "max_y": 5317.936141362682, + "center": [ + 2146.464896857866, + 5317.936141362682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.961130138342, + 5317.936141362682 + ], + [ + 2146.96866357739, + 5317.936141362682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961130138342, + "min_y": 5315.668531415075, + "max_x": 2146.96866357739, + "max_y": 5315.668531415075, + "center": [ + 2146.464896857866, + 5315.668531415075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.961130138342, + 5315.668531415075 + ], + [ + 2146.96866357739, + 5315.668531415075 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961437746506, + "min_y": 5317.093083137873, + "max_x": 2146.299553519702, + "max_y": 5317.657793784424, + "center": [ + 2146.130495633104, + 5317.375438461148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.961437746506, + 5317.657793784424 + ], + [ + 2146.299553519702, + 5317.093083137873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2145.961437746506, + "min_y": 5315.975042180109, + "max_x": 2146.299553519702, + "max_y": 5316.539752826662, + "center": [ + 2146.130495633104, + 5316.257397503386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.961437746506, + 5315.975042180109 + ], + [ + 2146.299553519702, + 5316.539752826662 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.434197841328, + "min_y": 5317.936141362739, + "max_x": 2146.434197841328, + "max_y": 5321.474304210019, + "center": [ + 2146.434197841328, + 5319.705222786379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.434197841328, + 5317.936141362739 + ], + [ + 2146.434197841328, + 5321.474304210019 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5578B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.434197841328, + "min_y": 5321.474304210019, + "max_x": 2178.924360967501, + "max_y": 5321.474304210019, + "center": [ + 2162.6792794044145, + 5321.474304210019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.434197841328, + 5321.474304210019 + ], + [ + 2178.924360967501, + 5321.474304210019 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5578B5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2181.492824728518, + "min_y": 5320.531664118823, + "max_x": 2187.764160290721, + "max_y": 5322.024839252681, + "center": [ + 2184.6284925096197, + 5321.2782516857515 + ] + }, + "raw_value": "T-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578B6", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2178.947196985711, + "min_y": 5322.785479118019, + "max_x": 2189.992992205812, + "max_y": 5322.785479118019, + "center": [ + 2184.470094595761, + 5322.785479118019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.947196985711, + 5322.785479118019 + ], + [ + 2189.992992205812, + 5322.785479118019 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5578B7", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2189.992992205812, + "min_y": 5321.296327411322, + "max_x": 2191.48214391251, + "max_y": 5322.785479118019, + "center": [ + 2190.737568059161, + 5322.04090326467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2189.992992205812, + 5322.785479118019 + ], + [ + 2191.48214391251, + 5321.296327411322 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5578B8", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2189.992992205812, + "min_y": 5319.807175704625, + "max_x": 2191.48214391251, + "max_y": 5321.296327411322, + "center": [ + 2190.737568059161, + 5320.551751557973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2191.48214391251, + 5321.296327411322 + ], + [ + 2189.992992205812, + 5319.807175704625 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5578B9", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2178.947196985711, + "min_y": 5319.807175704625, + "max_x": 2189.992992205812, + "max_y": 5319.807175704625, + "center": [ + 2184.470094595761, + 5319.807175704625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.947196985711, + 5319.807175704625 + ], + [ + 2189.992992205812, + 5319.807175704625 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5578BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2178.947196985711, + "min_y": 5319.807175704625, + "max_x": 2178.947196985711, + "max_y": 5322.785479118019, + "center": [ + 2178.947196985711, + 5321.296327411322 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2178.947196985711, + 5319.807175704625 + ], + [ + 2178.947196985711, + 5322.785479118019 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578BB", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2141.160842684071, + "min_y": 5316.336337527975, + "max_x": 2149.2239884069036, + "max_y": 5317.456218878368, + "center": [ + 2145.192415545487, + 5316.896278203172 + ] + }, + "raw_value": "DP10201BA-03", + "clean_value": "DP10201BA-03", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5578BC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2141.082925221736, + "min_y": 5312.780455832475, + "max_x": 2149.1460709445682, + "max_y": 5313.9003371828685, + "center": [ + 2145.1144980831523, + 5313.340396507672 + ] + }, + "raw_value": "DP10201CV-02", + "clean_value": "DP10201CV-02", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5578BD", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2153.794844433587, + "min_y": 5322.037806359523, + "max_x": 2165.2176342076, + "max_y": 5323.157687709916, + "center": [ + 2159.5062393205935, + 5322.597747034719 + ] + }, + "raw_value": "P-10201-25A-F1A-n", + "clean_value": "P-10201-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.689718688947, + "min_y": 5301.220925368728, + "max_x": 2144.689718688947, + "max_y": 5302.265712813338, + "center": [ + 2144.689718688947, + 5301.743319091032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.689718688947, + 5302.265712813338 + ], + [ + 2144.689718688947, + 5301.220925368728 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2144.389905946577, + "min_y": 5301.220922627852, + "max_x": 2144.389905946577, + "max_y": 5302.265710072462, + "center": [ + 2144.389905946577, + 5301.743316350157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.389905946577, + 5302.265710072462 + ], + [ + 2144.389905946577, + 5301.220922627852 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.459981399363, + "min_y": 5301.219257514091, + "max_x": 2147.459981399363, + "max_y": 5302.264044958711, + "center": [ + 2147.459981399363, + 5301.741651236401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.459981399363, + 5302.264044958711 + ], + [ + 2147.459981399363, + 5301.219257514091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2147.759794141734, + "min_y": 5301.219257514091, + "max_x": 2147.759794141734, + "max_y": 5302.264044958711, + "center": [ + 2147.759794141734, + 5301.741651236401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.759794141734, + 5302.264044958711 + ], + [ + 2147.759794141734, + 5301.219257514091 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2144.6897116598384, + "min_y": 5301.54377482643, + "max_x": 2145.085464479772, + "max_y": 5301.939527646364, + "center": [ + 2144.887588069805, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2144.887588069805, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C3", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2145.0854644797696, + "min_y": 5301.543774826432, + "max_x": 2145.4812172997003, + "max_y": 5301.939527646362, + "center": [ + 2145.283340889735, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.283340889735, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2145.4812172997017, + "min_y": 5301.543774826432, + "max_x": 2145.8769701196325, + "max_y": 5301.939527646362, + "center": [ + 2145.679093709667, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.679093709667, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C5", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2145.4812172997017, + "min_y": 5301.54377482643, + "max_x": 2145.876970119636, + "max_y": 5301.939527646364, + "center": [ + 2145.679093709669, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2145.679093709669, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2145.8769701196347, + "min_y": 5301.543774826432, + "max_x": 2146.2727229395655, + "max_y": 5301.939527646362, + "center": [ + 2146.0748465296, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.0748465296, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2146.2727229395664, + "min_y": 5301.543774826429, + "max_x": 2146.6684757595017, + "max_y": 5301.939527646365, + "center": [ + 2146.470599349534, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.470599349534, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C8", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2146.6684757595026, + "min_y": 5301.543774826432, + "max_x": 2147.0642285794333, + "max_y": 5301.939527646362, + "center": [ + 2146.866352169468, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.866352169468, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578C9", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2147.0642285794306, + "min_y": 5301.543774826432, + "max_x": 2147.4599813993614, + "max_y": 5301.939527646362, + "center": [ + 2147.262104989396, + 5301.741651236397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.262104989396, + 5301.741651236397 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578CA", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2147.759794141576, + "min_y": 5301.74331638037, + "max_x": 2149.206652428729, + "max_y": 5301.74331638037, + "center": [ + 2148.4832232851522, + 5301.74331638037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2147.759794141576, + 5301.74331638037 + ], + [ + 2149.206652428729, + 5301.74331638037 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.426781025651, + "min_y": 5309.151205854783, + "max_x": 2146.426781025651, + "max_y": 5312.263267888008, + "center": [ + 2146.426781025651, + 5310.707236871396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.426781025651, + 5312.263267888008 + ], + [ + 2146.426781025651, + 5309.151205854783 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5578CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2146.426781025651, + "min_y": 5309.151205854783, + "max_x": 2149.206652428708, + "max_y": 5309.151205854783, + "center": [ + 2147.8167167271795, + 5309.151205854783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2146.426781025651, + 5309.151205854783 + ], + [ + 2149.206652428708, + 5309.151205854783 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5578CD", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2453.859252369304, + "min_y": 5201.737765413992, + "max_x": 2459.458659121271, + "max_y": 5202.670999872653, + "center": [ + 2456.6589557452876, + 5202.204382643322 + ] + }, + "raw_value": "2025.07.02", + "clean_value": "2025.07.02", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5578CE", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.208060331363, + "min_y": 5201.798321383987, + "max_x": 2475.6875857329364, + "max_y": 5202.731555842648, + "center": [ + 2473.4478230321497, + 5202.264938613318 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5578CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.22844507376, + "min_y": 5175.524587804638, + "max_x": 2370.285182056468, + "max_y": 5175.524587804638, + "center": [ + 2367.756813565114, + 5175.524587804638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2370.285182056468, + 5175.524587804638 + ], + [ + 2365.22844507376, + 5175.524587804638 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2369.563851303982, + "min_y": 5175.52458780575, + "max_x": 2370.634895208676, + "max_y": 5176.595631710447, + "center": [ + 2370.0993732563293, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2369.563851303982, + 5175.52458780575 + ], + [ + 2370.634895208676, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2368.806508896023, + "min_y": 5175.52458780575, + "max_x": 2369.877552800719, + "max_y": 5176.595631710447, + "center": [ + 2369.342030848371, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.806508896023, + 5175.52458780575 + ], + [ + 2369.877552800719, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2368.049166488065, + "min_y": 5175.52458780575, + "max_x": 2369.120210392759, + "max_y": 5176.595631710447, + "center": [ + 2368.584688440412, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2368.049166488065, + 5175.52458780575 + ], + [ + 2369.120210392759, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.291824080107, + "min_y": 5175.52458780575, + "max_x": 2368.362867984802, + "max_y": 5176.595631710447, + "center": [ + 2367.8273460324544, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.291824080107, + 5175.52458780575 + ], + [ + 2368.362867984802, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.534481672149, + "min_y": 5175.52458780575, + "max_x": 2367.605525576845, + "max_y": 5176.595631710447, + "center": [ + 2367.070003624497, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.534481672149, + 5175.52458780575 + ], + [ + 2367.605525576845, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2365.777139264192, + "min_y": 5175.52458780575, + "max_x": 2366.848183168886, + "max_y": 5176.595631710447, + "center": [ + 2366.312661216539, + 5176.060109758098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.777139264192, + 5175.52458780575 + ], + [ + 2366.848183168886, + 5176.595631710447 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2366.911010513622, + "min_y": 5174.273185607204, + "max_x": 2368.463911828425, + "max_y": 5175.135908559872, + "center": [ + 2367.6874611710236, + 5174.704547083538 + ] + }, + "raw_value": "H50", + "clean_value": "H50", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.341461429544, + "min_y": 5173.243312280407, + "max_x": 2420.710424850283, + "max_y": 5173.859543726543, + "center": [ + 2420.5259431399136, + 5173.551428003475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.710424850283, + 5173.243312280407 + ], + [ + 2420.341461429544, + 5173.859543726543 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5173.243312280407, + "max_x": 2420.710424850283, + "max_y": 5173.243312280407, + "center": [ + 2420.160697488162, + 5173.243312280407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.610970126041, + 5173.243312280407 + ], + [ + 2420.710424850283, + 5173.243312280407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5173.243312280407, + "max_x": 2419.97993354678, + "max_y": 5173.859543726543, + "center": [ + 2419.7954518364104, + 5173.551428003475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.97993354678, + 5173.859543726543 + ], + [ + 2419.610970126041, + 5173.243312280407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.341461429546, + "min_y": 5174.463356564065, + "max_x": 2420.710424850283, + "max_y": 5175.079588010206, + "center": [ + 2420.5259431399145, + 5174.771472287135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.710424850283, + 5175.079588010206 + ], + [ + 2420.341461429546, + 5174.463356564065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5175.079588010206, + "max_x": 2420.710424850283, + "max_y": 5175.079588010206, + "center": [ + 2420.160697488162, + 5175.079588010206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.610970126041, + 5175.079588010206 + ], + [ + 2420.710424850283, + 5175.079588010206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5174.463356564065, + "max_x": 2419.979933546777, + "max_y": 5175.079588010206, + "center": [ + 2419.795451836409, + 5174.771472287135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.979933546777, + 5174.463356564065 + ], + [ + 2419.610970126041, + 5175.079588010206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.602982151109, + "min_y": 5175.406753862183, + "max_x": 2420.714772785917, + "max_y": 5175.406753862183, + "center": [ + 2420.158877468513, + 5175.406753862183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.602982151109, + 5175.406753862183 + ], + [ + 2420.714772785917, + 5175.406753862183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.602982151109, + "min_y": 5175.406753862183, + "max_x": 2420.714772785917, + "max_y": 5175.406753862183, + "center": [ + 2420.158877468513, + 5175.406753862183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.602982151109, + 5175.406753862183 + ], + [ + 2420.714772785917, + 5175.406753862183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.604802170759, + "min_y": 5172.916146428423, + "max_x": 2420.716592805565, + "max_y": 5172.916146428423, + "center": [ + 2420.160697488162, + 5172.916146428423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.604802170759, + 5172.916146428423 + ], + [ + 2420.716592805565, + 5172.916146428423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.604802170759, + "min_y": 5173.243312280407, + "max_x": 2420.716592805565, + "max_y": 5173.243312280407, + "center": [ + 2420.160697488162, + 5173.243312280407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.604802170759, + 5173.243312280407 + ], + [ + 2420.716592805565, + 5173.243312280407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5172.916146428423, + "max_x": 2420.710424850283, + "max_y": 5172.916146428423, + "center": [ + 2420.160697488162, + 5172.916146428423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.710424850283, + 5172.916146428423 + ], + [ + 2419.610970126041, + 5172.916146428423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.610970126041, + "min_y": 5175.406753862183, + "max_x": 2420.710424850283, + "max_y": 5175.406753862183, + "center": [ + 2420.160697488162, + 5175.406753862183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.710424850283, + 5175.406753862183 + ], + [ + 2419.610970126041, + 5175.406753862183 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2419.8088124384753, + "min_y": 5173.809565095618, + "max_x": 2420.5125825378486, + "max_y": 5174.513335194992, + "center": [ + 2420.160697488162, + 5174.161450145305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.160697488162, + 5174.161450145305 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2419.590643707667, + "min_y": 5172.916146428423, + "max_x": 2420.730751268657, + "max_y": 5172.916146428423, + "center": [ + 2420.160697488162, + 5172.916146428423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2419.590643707667, + 5172.916146428423 + ], + [ + 2420.730751268657, + 5172.916146428423 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5578E5", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2419.292597384047, + "min_y": 5171.939595311584, + "max_x": 2427.3557431068793, + "max_y": 5173.059476661977, + "center": [ + 2423.3241702454634, + 5172.499535986781 + ] + }, + "raw_value": "HD10219BA-05", + "clean_value": "HD10219BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5578E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2420.160697488162, + "min_y": 5171.680618496471, + "max_x": 2420.160697488162, + "max_y": 5172.916146428423, + "center": [ + 2420.160697488162, + 5172.298382462447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2420.160697488162, + 5172.916146428423 + ], + [ + 2420.160697488162, + 5171.680618496471 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5578E7", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2300.024359281488, + "min_y": 5342.863729902013, + "max_x": 2312.7910066759728, + "max_y": 5343.983611252406, + "center": [ + 2306.4076829787305, + 5343.423670577209 + ] + }, + "raw_value": "CWS-10615-50A-S2A-n", + "clean_value": "CWS-10615-50A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2316.529878194228, + "min_y": 5342.121459611078, + "max_x": 2316.529878194228, + "max_y": 5359.584436105897, + "center": [ + 2316.529878194228, + 5350.852947858488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.529878194228, + 5359.584436105897 + ], + [ + 2316.529878194228, + 5342.121459611078 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2298.722977542981, + "min_y": 5342.121459611078, + "max_x": 2316.529878194228, + "max_y": 5342.121459611078, + "center": [ + 2307.6264278686044, + 5342.121459611078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2316.529878194228, + 5342.121459611078 + ], + [ + 2298.722977542981, + 5342.121459611078 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2294.223582409264, + "min_y": 5342.121459611078, + "max_x": 2294.770633730844, + "max_y": 5342.121459611078, + "center": [ + 2294.4971080700543, + 5342.121459611078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2294.770633730844, + 5342.121459611078 + ], + [ + 2294.223582409264, + 5342.121459611078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5578EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2295.060942039306, + "min_y": 5342.121459611078, + "max_x": 2296.512954624144, + "max_y": 5342.121459611078, + "center": [ + 2295.7869483317254, + 5342.121459611078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2296.512954624144, + 5342.121459611078 + ], + [ + 2295.060942039306, + 5342.121459611078 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578EC", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2282.086183744064, + "min_y": 5358.259376445259, + "max_x": 2294.8528311385485, + "max_y": 5359.379257795652, + "center": [ + 2288.469507441306, + 5358.819317120455 + ] + }, + "raw_value": "CWR-10625-50A-S2A-n", + "clean_value": "CWR-10625-50A-S2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578ED", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2453.847248081588, + "min_y": 5205.263107738431, + "max_x": 2459.446654833555, + "max_y": 5206.196342197092, + "center": [ + 2456.6469514575715, + 5205.729724967761 + ] + }, + "raw_value": "2025.07.07", + "clean_value": "2025.07.07", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5578EE", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2471.136634413468, + "min_y": 5205.369153807961, + "max_x": 2475.6161598150416, + "max_y": 5206.302388266622, + "center": [ + 2473.376397114255, + 5205.835771037291 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5578EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.7154985947, + "min_y": 5355.737388986735, + "max_x": 2280.7154985947, + "max_y": 5357.458086979029, + "center": [ + 2280.7154985947, + 5356.597737982882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.7154985947, + 5355.737388986735 + ], + [ + 2280.7154985947, + 5357.458086979029 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2280.7154985947, + "min_y": 5357.458086979029, + "max_x": 2310.794264311174, + "max_y": 5357.458086979029, + "center": [ + 2295.7548814529373, + 5357.458086979029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.7154985947, + 5357.458086979029 + ], + [ + 2310.794264311174, + 5357.458086979029 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2310.794264311174, + "min_y": 5357.458086979029, + "max_x": 2310.794264311174, + "max_y": 5359.876206002478, + "center": [ + 2310.794264311174, + 5358.667146490754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2310.794264311174, + 5357.458086979029 + ], + [ + 2310.794264311174, + 5359.876206002478 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "5578F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3084.56668073894, + "min_y": 5227.902562622761, + "max_x": 3115.459673725612, + "max_y": 5227.902562622761, + "center": [ + 3100.0131772322757, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3084.56668073894, + 5227.902562622761 + ], + [ + 3115.459673725612, + 5227.902562622761 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.774984411618, + "min_y": 5227.902562622761, + "max_x": 3123.97807106253, + "max_y": 5227.902562622761, + "center": [ + 3121.376527737074, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3118.774984411618, + 5227.902562622761 + ], + [ + 3123.97807106253, + 5227.902562622761 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3038.588843393519, + "min_y": 5257.358163153245, + "max_x": 3038.588843393521, + "max_y": 5325.401019785918, + "center": [ + 3038.5888433935197, + 5291.379591469582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3038.588843393521, + 5257.358163153245 + ], + [ + 3038.588843393519, + 5325.401019785918 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3038.588843393519, + "min_y": 5325.401019785918, + "max_x": 3376.81561653091, + "max_y": 5325.401019785918, + "center": [ + 3207.7022299622145, + 5325.401019785918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3038.588843393519, + 5325.401019785918 + ], + [ + 3376.81561653091, + 5325.401019785918 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578F7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3154.585194672269, + "min_y": 5326.085801726029, + "max_x": 3172.5032962785635, + "max_y": 5327.578976859887, + "center": [ + 3163.5442454754166, + 5326.832389292958 + ] + }, + "raw_value": "CWS-10601-300A-S2A-N", + "clean_value": "CWS-10601-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5578F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.923483278835, + "min_y": 5312.493518889562, + "max_x": 3376.81561653091, + "max_y": 5312.493518889562, + "center": [ + 3245.3695499048727, + 5312.493518889562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.923483278835, + 5312.493518889562 + ], + [ + 3376.81561653091, + 5312.493518889562 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3198.133638398234, + "min_y": 5311.563943191344, + "max_x": 3198.133638398234, + "max_y": 5312.493518889562, + "center": [ + 3198.133638398234, + 5312.028731040453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3198.133638398234, + 5312.493518889562 + ], + [ + 3198.133638398234, + 5311.563943191344 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3191.45664182382, + "min_y": 5324.716188979554, + "max_x": 3191.45664182382, + "max_y": 5325.401019785918, + "center": [ + 3191.45664182382, + 5325.058604382736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3191.45664182382, + 5325.401019785918 + ], + [ + 3191.45664182382, + 5324.716188979554 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3191.45664182382, + "min_y": 5251.400755044797, + "max_x": 3191.45664182382, + "max_y": 5311.781935178506, + "center": [ + 3191.45664182382, + 5281.591345111651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3191.45664182382, + 5311.781935178506 + ], + [ + 3191.45664182382, + 5251.400755044797 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5578FD", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3115.166050519189, + "min_y": 5229.269962585291, + "max_x": 3118.749670840448, + "max_y": 5230.763137719149, + "center": [ + 3116.9578606798186, + 5230.016550152221 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5578FE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3218.234149528494, + "min_y": 5201.170000857427, + "max_x": 3242.45649620142, + "max_y": 5211.284515060323, + "center": [ + 3230.345322864957, + 5206.227257958875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3218.234149528494, + 5201.170000857427 + ], + [ + 3242.45649620142, + 5201.170000857427 + ], + [ + 3242.45649620142, + 5211.284515060323 + ], + [ + 3218.234149528494, + 5211.284515060323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5578FF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3224.55404624357, + "min_y": 5205.106762810402, + "max_x": 3239.336480068763, + "max_y": 5207.346525511189, + "center": [ + 3231.9452631561667, + 5206.226644160795 + ] + }, + "raw_value": "%%UVP-10217", + "clean_value": "VP-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557900", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3187.339957654994, + "min_y": 5201.170000857427, + "max_x": 3211.56230432792, + "max_y": 5211.284515060323, + "center": [ + 3199.451130991457, + 5206.227257958875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3187.339957654994, + 5201.170000857427 + ], + [ + 3211.56230432792, + 5201.170000857427 + ], + [ + 3211.56230432792, + 5211.284515060323 + ], + [ + 3187.339957654994, + 5211.284515060323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557901", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3193.65985437007, + "min_y": 5205.106762810402, + "max_x": 3208.4422881952632, + "max_y": 5207.346525511189, + "center": [ + 3201.0510712826667, + 5206.226644160795 + ] + }, + "raw_value": "%%UVP-10117", + "clean_value": "VP-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557902", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3194.871961539446, + "min_y": 5211.284515060323, + "max_x": 3194.871961539446, + "max_y": 5251.360886452685, + "center": [ + 3194.871961539446, + 5231.322700756504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3194.871961539446, + 5211.284515060323 + ], + [ + 3194.871961539446, + 5251.360886452685 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557903", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3237.573725457927, + "min_y": 5258.772558204604, + "max_x": 3254.595921983907, + "max_y": 5260.265733338462, + "center": [ + 3246.084823720917, + 5259.519145771534 + ] + }, + "raw_value": "CWR-10625-50A-F1A-N", + "clean_value": "CWR-10625-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557904", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3237.135374264564, + "min_y": 5252.05123320473, + "max_x": 3254.1575707905436, + "max_y": 5253.544408338588, + "center": [ + 3245.6464725275537, + 5252.797820771659 + ] + }, + "raw_value": "CWS-10615-50A-F1A-N", + "clean_value": "CWS-10615-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557905", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3154.726204112821, + "min_y": 5313.178300829672, + "max_x": 3172.6443057191154, + "max_y": 5314.67147596353, + "center": [ + 3163.6852549159685, + 5313.924888396601 + ] + }, + "raw_value": "CWR-10620-300A-S2A-N", + "clean_value": "CWR-10620-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557906", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3187.54305240155, + "min_y": 5269.929512936849, + "max_x": 3224.730883360586, + "max_y": 5269.929512936849, + "center": [ + 3206.136967881068, + 5269.929512936849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3187.54305240155, + 5269.929512936849 + ], + [ + 3224.730883360586, + 5269.929512936849 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557907", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3204.346812017756, + "min_y": 5270.725523257399, + "max_x": 3207.0345272587, + "max_y": 5272.965285958186, + "center": [ + 3205.690669638228, + 5271.845404607792 + ] + }, + "raw_value": "2F", + "clean_value": "2F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55790E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3340.693504251073, + "min_y": 5326.085801726029, + "max_x": 3358.6116058573675, + "max_y": 5327.578976859887, + "center": [ + 3349.65255505422, + 5326.832389292958 + ] + }, + "raw_value": "CWS-10601-300A-S2A-N", + "clean_value": "CWS-10601-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55790F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3340.861390844036, + "min_y": 5313.178300829672, + "max_x": 3358.7794924503305, + "max_y": 5314.67147596353, + "center": [ + 3349.8204416471835, + 5313.924888396601 + ] + }, + "raw_value": "CWS-10620-300A-S2A-N", + "clean_value": "CWS-10620-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557912", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3037.904061453409, + "min_y": 5266.841223220684, + "max_x": 3055.8221630597036, + "max_y": 5268.334398354542, + "center": [ + 3046.8631122565566, + 5267.587810787612 + ] + }, + "raw_value": "CWS-10601-300A-S2A-N", + "clean_value": "CWS-10601-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557913", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3116.249724805593, + "min_y": 5238.36349439279, + "max_x": 3118.814981548143, + "max_y": 5238.36349439279, + "center": [ + 3117.532353176868, + 5238.36349439279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3116.249724805593, + 5238.36349439279 + ], + [ + 3118.814981548143, + 5238.36349439279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557914", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3079.285442473614, + "min_y": 5278.473571406016, + "max_x": 3086.931209834896, + "max_y": 5278.473571406016, + "center": [ + 3083.108326154255, + 5278.473571406016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3079.285442473614, + 5278.473571406016 + ], + [ + 3086.931209834896, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557915", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5238.36349439279, + "max_x": 3112.838421472631, + "max_y": 5238.36349439279, + "center": [ + 3110.6497565440513, + 5238.36349439279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3108.461091615472, + 5238.36349439279 + ], + [ + 3112.838421472631, + 5238.36349439279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557916", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3053.839593957435, + "min_y": 5280.75853638067, + "max_x": 3077.00047749896, + "max_y": 5280.75853638067, + "center": [ + 3065.420035728198, + 5280.75853638067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.839593957435, + 5280.75853638067 + ], + [ + 3077.00047749896, + 5280.75853638067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557917", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3053.839593957435, + "min_y": 5276.188606431365, + "max_x": 3077.00047749896, + "max_y": 5276.188606431365, + "center": [ + 3065.420035728198, + 5276.188606431365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3077.00047749896, + 5276.188606431365 + ], + [ + 3053.839593957435, + 5276.188606431365 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557918", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3077.00047749896, + "min_y": 5278.473571406016, + "max_x": 3079.285442473614, + "max_y": 5280.75853638067, + "center": [ + 3078.1429599862868, + 5279.616053893344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3077.00047749896, + 5280.75853638067 + ], + [ + 3079.285442473614, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557919", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3077.00047749896, + "min_y": 5276.188606431365, + "max_x": 3079.285442473614, + "max_y": 5278.473571406016, + "center": [ + 3078.1429599862868, + 5277.3310889186905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3077.00047749896, + 5276.188606431365 + ], + [ + 3079.285442473614, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55791A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3056.08464385266, + "min_y": 5277.506253512225, + "max_x": 3071.1358492019476, + "max_y": 5279.298063672854, + "center": [ + 3063.610246527304, + 5278.40215859254 + ] + }, + "raw_value": "CITY RAW WATER", + "clean_value": "CITY RAW WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55791B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3053.839593957435, + "min_y": 5276.188606431368, + "max_x": 3053.839593957435, + "max_y": 5280.75853638067, + "center": [ + 3053.839593957435, + 5278.473571406019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.839593957435, + 5280.75853638067 + ], + [ + 3053.839593957435, + 5276.188606431368 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55791D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.776190980222, + "min_y": 5256.794269744265, + "max_x": 3121.306904589622, + "max_y": 5256.795501212057, + "center": [ + 3120.041547784922, + 5256.794885478161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3121.306904589622, + 5256.795501212057 + ], + [ + 3118.776190980222, + 5256.794269744265 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55791E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.922996462834, + "min_y": 5256.795501212057, + "max_x": 3113.922996462834, + "max_y": 5297.872419393598, + "center": [ + 3113.922996462834, + 5277.333960302827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.922996462834, + 5256.795501212057 + ], + [ + 3113.922996462834, + 5297.872419393598 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55791F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5238.36349439292, + "max_x": 3108.461091615472, + "max_y": 5250.26994533108, + "center": [ + 3108.461091615472, + 5244.316719861999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3108.461091615472, + 5238.36349439292 + ], + [ + 3108.461091615472, + 5250.26994533108 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557920", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3258.796396026934, + "min_y": 5201.170000857427, + "max_x": 3283.018742699861, + "max_y": 5211.284515060323, + "center": [ + 3270.9075693633977, + 5206.227257958875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3258.796396026934, + 5201.170000857427 + ], + [ + 3283.018742699861, + 5201.170000857427 + ], + [ + 3283.018742699861, + 5211.284515060323 + ], + [ + 3258.796396026934, + 5211.284515060323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557921", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3265.116292742011, + "min_y": 5205.106762810402, + "max_x": 3278.554868946732, + "max_y": 5207.346525511189, + "center": [ + 3271.835580844371, + 5206.226644160795 + ] + }, + "raw_value": "%%UE-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557922", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3294.281737778424, + "min_y": 5201.170000857427, + "max_x": 3318.504084451349, + "max_y": 5211.284515060323, + "center": [ + 3306.3929111148864, + 5206.227257958875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3294.281737778424, + 5201.170000857427 + ], + [ + 3318.504084451349, + 5201.170000857427 + ], + [ + 3318.504084451349, + 5211.284515060323 + ], + [ + 3294.281737778424, + 5211.284515060323 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557923", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3300.601634493499, + "min_y": 5205.106762810402, + "max_x": 3314.04021069822, + "max_y": 5207.346525511189, + "center": [ + 3307.32092259586, + 5206.226644160795 + ] + }, + "raw_value": "%%UE-10219", + "clean_value": "E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557924", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3198.133638398234, + "min_y": 5258.077751619208, + "max_x": 3318.189573646122, + "max_y": 5258.077751619208, + "center": [ + 3258.1616060221777, + 5258.077751619208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3198.133638398234, + 5258.077751619208 + ], + [ + 3318.189573646122, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557925", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3191.45664182382, + "min_y": 5251.400755044797, + "max_x": 3318.189573646122, + "max_y": 5251.400755044797, + "center": [ + 3254.823107734971, + 5251.400755044797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3191.45664182382, + 5251.400755044797 + ], + [ + 3318.189573646122, + 5251.400755044797 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557926", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3263.461574029584, + "min_y": 5211.284515060323, + "max_x": 3263.461574029584, + "max_y": 5251.400755044797, + "center": [ + 3263.461574029584, + 5231.342635052561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3263.461574029584, + 5211.284515060323 + ], + [ + 3263.461574029584, + 5251.400755044797 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557927", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3278.353564697211, + "min_y": 5211.284515060323, + "max_x": 3278.353564697211, + "max_y": 5258.077751619208, + "center": [ + 3278.353564697211, + 5234.681133339765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3278.353564697211, + 5211.284515060323 + ], + [ + 3278.353564697211, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557928", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3298.946915781074, + "min_y": 5211.284515060323, + "max_x": 3298.946915781074, + "max_y": 5251.400755044797, + "center": [ + 3298.946915781074, + 5231.342635052561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3298.946915781074, + 5211.284515060323 + ], + [ + 3298.946915781074, + 5251.400755044797 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557929", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3313.8389064487, + "min_y": 5211.284515060323, + "max_x": 3313.8389064487, + "max_y": 5258.077751619208, + "center": [ + 3313.8389064487, + 5234.681133339765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3313.8389064487, + 5211.284515060323 + ], + [ + 3313.8389064487, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55792A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3206.861567326541, + "min_y": 5211.284515060323, + "max_x": 3206.861567326543, + "max_y": 5258.077751619208, + "center": [ + 3206.861567326542, + 5234.681133339765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3206.861567326541, + 5211.284515060323 + ], + [ + 3206.861567326543, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55792D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3277.938228206934, + "min_y": 5223.221522866425, + "max_x": 3294.960424732914, + "max_y": 5224.7146980002835, + "center": [ + 3286.449326469924, + 5223.968110433354 + ] + }, + "raw_value": "CWR-10626-25A-F1A-N", + "clean_value": "CWR-10626-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55792E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3262.965873895449, + "min_y": 5223.412136264798, + "max_x": 3279.988070421429, + "max_y": 5224.9053113986565, + "center": [ + 3271.476972158439, + 5224.158723831728 + ] + }, + "raw_value": "CWS-10616-25A-F1A-N", + "clean_value": "CWS-10616-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557931", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3313.423569958422, + "min_y": 5223.221522866425, + "max_x": 3330.4457664844017, + "max_y": 5224.7146980002835, + "center": [ + 3321.934668221412, + 5223.968110433354 + ] + }, + "raw_value": "CWR-10627-25A-F1A-N", + "clean_value": "CWR-10627-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557932", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3298.451215646938, + "min_y": 5223.412136264798, + "max_x": 3315.473412172918, + "max_y": 5224.9053113986565, + "center": [ + 3306.962313909928, + 5224.158723831728 + ] + }, + "raw_value": "CWS-10617-25A-F1A-N", + "clean_value": "CWS-10617-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557934", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3194.376261405311, + "min_y": 5223.412136264798, + "max_x": 3211.398457931291, + "max_y": 5224.9053113986565, + "center": [ + 3202.887359668301, + 5224.158723831728 + ] + }, + "raw_value": "CWS-10618-15A-F1A-N", + "clean_value": "CWS-10618-15A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557936", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3206.446230836263, + "min_y": 5223.221522866425, + "max_x": 3223.468427362243, + "max_y": 5224.7146980002835, + "center": [ + 3214.957329099253, + 5223.968110433354 + ] + }, + "raw_value": "CWR-10628-15A-F1A-N", + "clean_value": "CWR-10628-15A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557937", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3122.786794191116, + "min_y": 5206.986058045594, + "max_x": 3137.569228016309, + "max_y": 5209.225820746381, + "center": [ + 3130.1780111037124, + 5208.105939395988 + ] + }, + "raw_value": "%%UCT-10601", + "clean_value": "CT-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557938", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3025.107242194924, + "min_y": 5162.803841073004, + "max_x": 3042.577391261061, + "max_y": 5165.043603773791, + "center": [ + 3033.8423167279925, + 5163.9237224233975 + ] + }, + "raw_value": "%%UP-10602A/B", + "clean_value": "P-10602A/B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557939", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3025.402232387392, + "min_y": 5158.928833586464, + "max_x": 3053.354670080411, + "max_y": 5160.720656515504, + "center": [ + 3039.3784512339016, + 5159.824745050984 + ] + }, + "raw_value": "COOLING WATER FEEDING PUMP", + "clean_value": "COOLING WATER FEEDING PUMP", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55793A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2991.615169876359, + "min_y": 5162.731667446603, + "max_x": 3006.397603701552, + "max_y": 5164.97143014739, + "center": [ + 2999.0063867889553, + 5163.851548796996 + ] + }, + "raw_value": "%%UCT-10601", + "clean_value": "CT-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55793B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2992.123358297595, + "min_y": 5158.628758578024, + "max_x": 3006.099577144105, + "max_y": 5160.420581507064, + "center": [ + 2999.1114677208498, + 5159.524670042543 + ] + }, + "raw_value": "COOLING TOWER", + "clean_value": "COOLING TOWER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55793C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3376.81561653091, + "min_y": 5312.493518889562, + "max_x": 3376.81561653091, + "max_y": 5317.475100955114, + "center": [ + 3376.81561653091, + 5314.984309922338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3376.81561653091, + 5312.493518889562 + ], + [ + 3376.81561653091, + 5317.475100955114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55793D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3376.81561653091, + "min_y": 5320.790411641119, + "max_x": 3376.81561653091, + "max_y": 5325.401019785918, + "center": [ + 3376.81561653091, + 5323.095715713518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3376.81561653091, + 5320.790411641119 + ], + [ + 3376.81561653091, + 5325.401019785918 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55793F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3051.2796760914953, + "min_y": 5224.140621354317, + "max_x": 3058.803558628385, + "max_y": 5231.664503891206, + "center": [ + 3055.04161735994, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3055.04161735994, + 5227.902562622761 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557940", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3057.323932704693, + "min_y": 5221.215536986291, + "max_x": 3059.412961343741, + "max_y": 5224.912037790279, + "center": [ + 3058.368447024217, + 5223.063787388285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3057.323932704693, + 5224.912037790279 + ], + [ + 3059.412961343741, + 5221.215536986291 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557941", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.670273376144, + "min_y": 5221.215536986291, + "max_x": 3052.75930201519, + "max_y": 5224.912037790279, + "center": [ + 3051.714787695667, + 5223.063787388285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.75930201519, + 5224.912037790279 + ], + [ + 3050.670273376144, + 5221.215536986291 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557942", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.670273376144, + "min_y": 5221.215536986291, + "max_x": 3059.412961343741, + "max_y": 5221.215536986291, + "center": [ + 3055.0416173599424, + 5221.215536986291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.670273376144, + 5221.215536986291 + ], + [ + 3059.412961343741, + 5221.215536986291 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557943", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3054.2063437583606, + "min_y": 5227.067289021182, + "max_x": 3055.8768909615196, + "max_y": 5228.737836224341, + "center": [ + 3055.04161735994, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3055.04161735994, + 5227.902562622761 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557944", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.279676091497, + "min_y": 5227.902562622761, + "max_x": 3051.279676091497, + "max_y": 5233.265518737209, + "center": [ + 3051.279676091497, + 5230.584040679985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.279676091497, + 5227.902562622761 + ], + [ + 3051.279676091497, + 5233.265518737209 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557945", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3055.04161735994, + "min_y": 5227.902562622761, + "max_x": 3060.854222968425, + "max_y": 5227.902562622761, + "center": [ + 3057.9479201641825, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3055.04161735994, + 5227.902562622761 + ], + [ + 3060.854222968425, + 5227.902562622761 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557946", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.533088524567, + "min_y": 5233.265518737209, + "max_x": 3052.026263658424, + "max_y": 5233.265518737209, + "center": [ + 3051.2796760914953, + 5233.265518737209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.026263658424, + 5233.265518737209 + ], + [ + 3050.533088524567, + 5233.265518737209 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557947", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3060.854222968425, + "min_y": 5227.155975055832, + "max_x": 3060.854222968425, + "max_y": 5228.649150189689, + "center": [ + 3060.854222968425, + 5227.90256262276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3060.854222968425, + 5227.155975055832 + ], + [ + 3060.854222968425, + 5228.649150189689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557949", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.652854088052, + "min_y": 5207.659055925442, + "max_x": 3050.151543030747, + "max_y": 5207.659055925442, + "center": [ + 3046.9021985593995, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.652854088052, + 5207.659055925442 + ], + [ + 3050.151543030747, + 5207.659055925442 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55794A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3053.436528325235, + "min_y": 5207.659055925442, + "max_x": 3055.869704656981, + "max_y": 5207.659055925442, + "center": [ + 3054.653116491108, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3053.436528325235, + 5207.659055925442 + ], + [ + 3055.869704656981, + 5207.659055925442 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55794B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3047.922667077076, + "min_y": 5205.339657481388, + "max_x": 3047.922667077076, + "max_y": 5207.659055925442, + "center": [ + 3047.922667077076, + 5206.499356703414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3047.922667077076, + 5207.659055925442 + ], + [ + 3047.922667077076, + 5205.339657481388 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55794D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3025.8980106955423, + "min_y": 5203.8971146569975, + "max_x": 3033.421893232432, + "max_y": 5211.420997193886, + "center": [ + 3029.659951963987, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3029.659951963987, + 5207.659055925442 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55794E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3031.94226730874, + "min_y": 5200.972030288972, + "max_x": 3034.031295947788, + "max_y": 5204.668531092959, + "center": [ + 3032.986781628264, + 5202.820280690965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3031.94226730874, + 5204.668531092959 + ], + [ + 3034.031295947788, + 5200.972030288972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55794F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.288607980191, + "min_y": 5200.972030288972, + "max_x": 3027.377636619235, + "max_y": 5204.668531092959, + "center": [ + 3026.333122299713, + 5202.820280690965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3027.377636619235, + 5204.668531092959 + ], + [ + 3025.288607980191, + 5200.972030288972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557950", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.288607980191, + "min_y": 5200.972030288972, + "max_x": 3034.031295947788, + "max_y": 5200.972030288972, + "center": [ + 3029.6599519639894, + 5200.972030288972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.288607980191, + 5200.972030288972 + ], + [ + 3034.031295947788, + 5200.972030288972 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557951", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3028.8246783624077, + "min_y": 5206.823782323862, + "max_x": 3030.4952255655667, + "max_y": 5208.494329527021, + "center": [ + 3029.659951963987, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3029.659951963987, + 5207.659055925442 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557952", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.898010695542, + "min_y": 5207.659055925442, + "max_x": 3025.898010695542, + "max_y": 5217.884877405098, + "center": [ + 3025.898010695542, + 5212.77196666527 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.898010695542, + 5207.659055925442 + ], + [ + 3025.898010695542, + 5217.884877405098 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557953", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3029.659951963987, + "min_y": 5207.659055925442, + "max_x": 3035.472557572473, + "max_y": 5207.659055925442, + "center": [ + 3032.56625476823, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3029.659951963987, + 5207.659055925442 + ], + [ + 3035.472557572473, + 5207.659055925442 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557954", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.151423128614, + "min_y": 5217.883501964369, + "max_x": 3026.644598262471, + "max_y": 5217.883501964369, + "center": [ + 3025.8980106955423, + 5217.883501964369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3026.644598262471, + 5217.883501964369 + ], + [ + 3025.151423128614, + 5217.883501964369 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557955", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3035.472557572473, + "min_y": 5206.912468358513, + "max_x": 3035.472557572473, + "max_y": 5208.405643492372, + "center": [ + 3035.472557572473, + 5207.659055925443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3035.472557572473, + 5206.912468358513 + ], + [ + 3035.472557572473, + 5208.405643492372 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557957", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3059.185015342985, + "min_y": 5207.659055925442, + "max_x": 3087.059436190867, + "max_y": 5207.659055925442, + "center": [ + 3073.122225766926, + 5207.659055925442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3059.185015342985, + 5207.659055925442 + ], + [ + 3087.059436190867, + 5207.659055925442 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557958", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3087.059436190867, + "min_y": 5207.659055925442, + "max_x": 3087.059436190867, + "max_y": 5227.902562622761, + "center": [ + 3087.059436190867, + 5217.780809274102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3087.059436190867, + 5227.902562622761 + ], + [ + 3087.059436190867, + 5207.659055925442 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557959", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.898010695544, + "min_y": 5257.358067246602, + "max_x": 3051.279676091497, + "max_y": 5257.358067246602, + "center": [ + 3038.5888433935206, + 5257.358067246602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.279676091497, + 5257.358067246602 + ], + [ + 3025.898010695544, + 5257.358067246602 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55795A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.898010695544, + "min_y": 5229.586745621255, + "max_x": 3025.898010695544, + "max_y": 5235.880519029937, + "center": [ + 3025.898010695544, + 5232.733632325597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.898010695544, + 5229.586745621255 + ], + [ + 3025.898010695544, + 5235.880519029937 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55795B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3047.922667077076, + "min_y": 5201.021307232071, + "max_x": 3047.922667077076, + "max_y": 5202.522071840002, + "center": [ + 3047.922667077076, + 5201.771689536037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3047.922667077076, + 5202.522071840002 + ], + [ + 3047.922667077076, + 5201.021307232071 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55795C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3048.485848006791, + "min_y": 5200.657951954176, + "max_x": 3048.485848006791, + "max_y": 5201.357670513031, + "center": [ + 3048.485848006791, + 5201.007811233603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3048.485848006791, + 5201.357670513031 + ], + [ + 3048.485848006791, + 5200.657951954176 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55795D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3047.359486147361, + "min_y": 5200.657951954176, + "max_x": 3048.485848006791, + "max_y": 5200.657951954176, + "center": [ + 3047.922667077076, + 5200.657951954176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3048.485848006791, + 5200.657951954176 + ], + [ + 3047.359486147361, + 5200.657951954176 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55795E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3047.359486147361, + "min_y": 5200.657951954176, + "max_x": 3047.359486147361, + "max_y": 5201.357670513031, + "center": [ + 3047.359486147361, + 5201.007811233603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3047.359486147361, + 5201.357670513031 + ], + [ + 3047.359486147361, + 5200.657951954176 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557963", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3027.179031872656, + "min_y": 5236.740409147553, + "max_x": 3030.762652193915, + "max_y": 5238.233584281411, + "center": [ + 3028.9708420332854, + 5237.486996714482 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557964", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3043.843322645112, + "min_y": 5203.18594482458, + "max_x": 3046.5310378860563, + "max_y": 5204.679119958438, + "center": [ + 3045.187180265584, + 5203.932532391509 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557965", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3023.790212814757, + "min_y": 5195.588547594515, + "max_x": 3038.57264663995, + "max_y": 5197.828310295302, + "center": [ + 3031.1814297273536, + 5196.7084289449085 + ] + }, + "raw_value": "%%UP-10602B", + "clean_value": "P-10602B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557967", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3049.140231309587, + "min_y": 5216.825877970141, + "max_x": 3063.92266513478, + "max_y": 5219.065640670928, + "center": [ + 3056.5314482221834, + 5217.945759320534 + ] + }, + "raw_value": "%%UP-10602A", + "clean_value": "P-10602A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557968", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3027.16714127924, + "min_y": 5223.933608445612, + "max_x": 3035.230287002072, + "max_y": 5225.42678357947, + "center": [ + 3031.198714140656, + 5224.680196012541 + ] + }, + "raw_value": "300Ax200A", + "clean_value": "300Ax200A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557969", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3026.230442864481, + "min_y": 5223.700099477266, + "max_x": 3026.644598262602, + "max_y": 5225.509357954095, + "center": [ + 3026.4375205635415, + 5224.604728715681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3026.644598262602, + 5225.509357954095 + ], + [ + 3026.230442864481, + 5223.700099477266 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55796A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.151423128745, + "min_y": 5223.700099477266, + "max_x": 3025.565578526606, + "max_y": 5225.509357954095, + "center": [ + 3025.3585008276755, + 5224.604728715681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.151423128745, + 5225.509357954095 + ], + [ + 3025.565578526606, + 5223.700099477266 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55796B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.565578526606, + "min_y": 5223.700099477266, + "max_x": 3026.230442864481, + "max_y": 5223.700099477266, + "center": [ + 3025.8980106955432, + 5223.700099477266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.565578526606, + 5223.700099477266 + ], + [ + 3026.230442864481, + 5223.700099477266 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55796C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.151423128745, + "min_y": 5225.509357954095, + "max_x": 3026.644598262602, + "max_y": 5225.509357954095, + "center": [ + 3025.8980106956733, + 5225.509357954095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3026.644598262602, + 5225.509357954095 + ], + [ + 3025.151423128745, + 5225.509357954095 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55796D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.898010695542, + "min_y": 5225.510251955444, + "max_x": 3025.898010695572, + "max_y": 5226.218814521966, + "center": [ + 3025.898010695557, + 5225.864533238705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.898010695542, + 5226.218814521966 + ], + [ + 3025.898010695572, + 5225.510251955444 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55796E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3035.721420094781, + "min_y": 5206.912468358513, + "max_x": 3035.721420094781, + "max_y": 5208.405643492372, + "center": [ + 3035.721420094781, + 5207.659055925443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3035.721420094781, + 5206.912468358513 + ], + [ + 3035.721420094781, + 5208.405643492372 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55796F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3068.463733997232, + "min_y": 5227.902562622761, + "max_x": 3075.5332084267, + "max_y": 5227.902562622761, + "center": [ + 3071.998471211966, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3068.463733997232, + 5227.902562622761 + ], + [ + 3075.5332084267, + 5227.902562622761 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557970", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3078.818193721188, + "min_y": 5227.902562622761, + "max_x": 3081.251370052934, + "max_y": 5227.902562622761, + "center": [ + 3080.034781887061, + 5227.902562622761 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3078.818193721188, + 5227.902562622761 + ], + [ + 3081.251370052934, + 5227.902562622761 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557971", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3073.304332473031, + "min_y": 5225.583164178708, + "max_x": 3073.304332473031, + "max_y": 5227.902562622761, + "center": [ + 3073.304332473031, + 5226.742863400735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.304332473031, + 5227.902562622761 + ], + [ + 3073.304332473031, + 5225.583164178708 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557973", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3073.304332473031, + "min_y": 5221.26481392939, + "max_x": 3073.304332473031, + "max_y": 5222.765578537321, + "center": [ + 3073.304332473031, + 5222.015196233355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.304332473031, + 5222.765578537321 + ], + [ + 3073.304332473031, + 5221.26481392939 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557974", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3073.867513402745, + "min_y": 5220.901458651495, + "max_x": 3073.867513402745, + "max_y": 5221.60117721035, + "center": [ + 3073.867513402745, + 5221.251317930923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.867513402745, + 5221.60117721035 + ], + [ + 3073.867513402745, + 5220.901458651495 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557975", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3072.741151543314, + "min_y": 5220.901458651495, + "max_x": 3073.867513402745, + "max_y": 5220.901458651495, + "center": [ + 3073.3043324730297, + 5220.901458651495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3073.867513402745, + 5220.901458651495 + ], + [ + 3072.741151543314, + 5220.901458651495 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557976", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3072.741151543314, + "min_y": 5220.901458651495, + "max_x": 3072.741151543314, + "max_y": 5221.60117721035, + "center": [ + 3072.741151543314, + 5221.251317930923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3072.741151543314, + 5221.60117721035 + ], + [ + 3072.741151543314, + 5220.901458651495 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557979", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3081.081456471633, + "min_y": 5229.269962585293, + "max_x": 3084.665076792892, + "max_y": 5230.763137719151, + "center": [ + 3082.873266632262, + 5230.016550152222 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55797A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3075.469121992476, + "min_y": 5229.269962585293, + "max_x": 3079.052742313735, + "max_y": 5230.763137719151, + "center": [ + 3077.2609321531054, + 5230.016550152222 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55797B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3069.224988041065, + "min_y": 5223.429451521899, + "max_x": 3071.9127032820093, + "max_y": 5224.922626655757, + "center": [ + 3070.568845661537, + 5224.1760390888285 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55797C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3061.103085490736, + "min_y": 5227.155975055832, + "max_x": 3061.103085490736, + "max_y": 5228.649150189689, + "center": [ + 3061.103085490736, + 5227.90256262276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3061.103085490736, + 5227.155975055832 + ], + [ + 3061.103085490736, + 5228.649150189689 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55797D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2989.347622491164, + "min_y": 5156.784751970023, + "max_x": 3020.4925977398952, + "max_y": 5158.576562130652, + "center": [ + 3004.9201101155295, + 5157.680657050338 + ] + }, + "raw_value": "\\W0.9;SIZE : L2,800 x W5,160\\PCAPA : 500RT\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 32 %%DC \\PMATERIAL : F.R.P/P.V.C", + "clean_value": ".9;SIZE : L2,800 x W5,160 CAPA : 500RT DP/OP : F.W / ATM DT/OT : 60 %%DC / 32 %%DC MATERIAL : F.R.P/P.V.C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557981", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3025.52560798759, + "min_y": 5156.349326289095, + "max_x": 3058.7342067994105, + "max_y": 5158.141136449724, + "center": [ + 3042.1299073935, + 5157.24523136941 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 8,400L/min\\PPRESSURE : 0.4MPa\\PRPM: 1,750}\\PMATERIAL : GC200/SM45C", + "clean_value": ".9; CAPA : 8,400L/min PRESSURE : 0.4MPa RPM: 1,750 MATERIAL : GC200/SM45C", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557985", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3115.7071142542227, + "min_y": 5271.572570517412, + "max_x": 3120.1228717584154, + "max_y": 5275.988328021605, + "center": [ + 3117.914993006319, + 5273.780449269509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3117.914993006319, + 5273.780449269509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557986", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3117.163849335382, + "min_y": 5274.093646017721, + "max_x": 3118.373052422283, + "max_y": 5275.101315256805, + "center": [ + 3117.7684508788325, + 5274.597480637263 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557987", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.932755134181, + "min_y": 5273.780449269515, + "max_x": 3114.539159157843, + "max_y": 5273.780449269515, + "center": [ + 3114.235957146012, + 5273.780449269515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.932755134181, + 5273.780449269515 + ], + [ + 3114.539159157843, + 5273.780449269515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557988", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3114.903751922846, + "min_y": 5273.230721907391, + "max_x": 3114.903751922846, + "max_y": 5274.330176631633, + "center": [ + 3114.903751922846, + 5273.780449269512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.903751922846, + 5273.230721907391 + ], + [ + 3114.903751922846, + 5274.330176631633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557989", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3114.539159157843, + "min_y": 5273.230721907391, + "max_x": 3114.539159157843, + "max_y": 5274.330176631633, + "center": [ + 3114.539159157843, + 5273.780449269512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.539159157843, + 5273.230721907391 + ], + [ + 3114.539159157843, + 5274.330176631633 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55798A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3114.903751922846, + "min_y": 5273.780449269509, + "max_x": 3115.707114254224, + "max_y": 5273.780449269509, + "center": [ + 3115.305433088535, + 5273.780449269509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.903751922846, + 5273.780449269509 + ], + [ + 3115.707114254224, + 5273.780449269509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55798B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3116.376442817264, + "min_y": 5272.497048893686, + "max_x": 3119.399450534516, + "max_y": 5273.50471813277, + "center": [ + 3117.88794667589, + 5273.0008835132285 + ] + }, + "raw_value": "10650", + "clean_value": "10650", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55798C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3121.833969575645, + "min_y": 5274.27031773136, + "max_x": 3123.0431726625457, + "max_y": 5275.277986970444, + "center": [ + 3122.4385711190953, + 5274.774152350901 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55798D", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3120.1228717584167, + "min_y": 5271.572570517412, + "max_x": 3124.5386292626094, + "max_y": 5275.988328021605, + "center": [ + 3122.330750510513, + 5273.780449269509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3122.330750510513, + 5273.780449269509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55798E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5276.028585963717, + "max_x": 3122.330750510513, + "max_y": 5276.028585963721, + "center": [ + 3121.2066821634107, + 5276.028585963719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3122.330750510513, + 5276.028585963721 + ], + [ + 3120.082613816308, + 5276.028585963717 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55798F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5273.780449269509, + "max_x": 3120.082613816308, + "max_y": 5276.028585963717, + "center": [ + 3120.082613816308, + 5274.904517616613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3120.082613816308, + 5273.780449269509 + ], + [ + 3120.082613816308, + 5276.028585963717 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557990", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3122.330750510513, + "min_y": 5276.028585963717, + "max_x": 3124.578887204719, + "max_y": 5276.028585963721, + "center": [ + 3123.4548188576164, + 5276.028585963719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3122.330750510513, + 5276.028585963721 + ], + [ + 3124.578887204719, + 5276.028585963717 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557991", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3124.578887204719, + "min_y": 5273.780449269509, + "max_x": 3124.578887204719, + "max_y": 5276.028585963717, + "center": [ + 3124.578887204719, + 5274.904517616613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3124.578887204719, + 5273.780449269509 + ], + [ + 3124.578887204719, + 5276.028585963717 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557992", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5271.532312575295, + "max_x": 3122.330750510513, + "max_y": 5271.532312575301, + "center": [ + 3121.2066821634107, + 5271.532312575298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3122.330750510513, + 5271.532312575295 + ], + [ + 3120.082613816308, + 5271.532312575301 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557993", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5271.532312575301, + "max_x": 3120.082613816308, + "max_y": 5273.780449269507, + "center": [ + 3120.082613816308, + 5272.656380922404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3120.082613816308, + 5273.780449269507 + ], + [ + 3120.082613816308, + 5271.532312575301 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557994", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3122.330750510513, + "min_y": 5271.532312575295, + "max_x": 3124.578887204719, + "max_y": 5271.532312575301, + "center": [ + 3123.4548188576164, + 5271.532312575298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3122.330750510513, + 5271.532312575295 + ], + [ + 3124.578887204719, + 5271.532312575301 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557995", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3124.578887204719, + "min_y": 5271.532312575301, + "max_x": 3124.578887204719, + "max_y": 5273.780449269507, + "center": [ + 3124.578887204719, + 5272.656380922404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3124.578887204719, + 5273.780449269507 + ], + [ + 3124.578887204719, + 5271.532312575301 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557996", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3120.654114855332, + "min_y": 5272.481541495757, + "max_x": 3123.677122572584, + "max_y": 5273.4892107348405, + "center": [ + 3122.165618713958, + 5272.985376115299 + ] + }, + "raw_value": "10650", + "clean_value": "10650", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557997", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3120.082613816308, + "min_y": 5273.780449269507, + "max_x": 3124.578887204719, + "max_y": 5273.780449269509, + "center": [ + 3122.3307505105136, + 5273.780449269508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3124.578887204719, + 5273.780449269507 + ], + [ + 3120.082613816308, + 5273.780449269509 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557998", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3100.372079331362, + "min_y": 5229.676921742802, + "max_x": 3104.7878368355546, + "max_y": 5234.092679246995, + "center": [ + 3102.579958083458, + 5231.884800494899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3102.579958083458, + 5231.884800494899 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557999", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3101.828814412519, + "min_y": 5232.197997243111, + "max_x": 3103.0380174994198, + "max_y": 5233.205666482195, + "center": [ + 3102.4334159559694, + 5232.701831862652 + ] + }, + "raw_value": "TE", + "clean_value": "TE", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55799A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3102.579958083453, + "min_y": 5227.902562622761, + "max_x": 3102.579958083453, + "max_y": 5228.508966646421, + "center": [ + 3102.579958083453, + 5228.205764634591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3102.579958083453, + 5227.902562622761 + ], + [ + 3102.579958083453, + 5228.508966646421 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55799B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3102.030230721334, + "min_y": 5228.873559411424, + "max_x": 3103.129685445577, + "max_y": 5228.873559411424, + "center": [ + 3102.5799580834555, + 5228.873559411424 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3103.129685445577, + 5228.873559411424 + ], + [ + 3102.030230721334, + 5228.873559411424 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55799C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3102.030230721334, + "min_y": 5228.508966646421, + "max_x": 3103.129685445577, + "max_y": 5228.508966646421, + "center": [ + 3102.5799580834555, + 5228.508966646421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3103.129685445577, + 5228.508966646421 + ], + [ + 3102.030230721334, + 5228.508966646421 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55799D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3102.579958083458, + "min_y": 5228.873559411424, + "max_x": 3102.579958083458, + "max_y": 5229.676921742803, + "center": [ + 3102.579958083458, + 5229.275240577113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3102.579958083458, + 5228.873559411424 + ], + [ + 3102.579958083458, + 5229.676921742803 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55799E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3101.041407894401, + "min_y": 5230.601400119077, + "max_x": 3104.0644156116527, + "max_y": 5231.609069358161, + "center": [ + 3102.552911753027, + 5231.105234738619 + ] + }, + "raw_value": "10600", + "clean_value": "10600", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55799F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3106.498934652782, + "min_y": 5232.374668956751, + "max_x": 3107.7081377396826, + "max_y": 5233.382338195835, + "center": [ + 3107.103536196232, + 5232.878503576292 + ] + }, + "raw_value": "TI", + "clean_value": "TI", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3104.7878368355537, + "min_y": 5229.676921742802, + "max_x": 3109.2035943397464, + "max_y": 5234.092679246995, + "center": [ + 3106.99571558765, + 5231.884800494899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.99571558765, + 5231.884800494899 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5234.132937189106, + "max_x": 3106.99571558765, + "max_y": 5234.13293718911, + "center": [ + 3105.8716472405476, + 5234.132937189108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.99571558765, + 5234.13293718911 + ], + [ + 3104.747578893445, + 5234.132937189106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5231.884800494899, + "max_x": 3104.747578893445, + "max_y": 5234.132937189106, + "center": [ + 3104.747578893445, + 5233.008868842002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3104.747578893445, + 5231.884800494899 + ], + [ + 3104.747578893445, + 5234.132937189106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3106.99571558765, + "min_y": 5234.132937189106, + "max_x": 3109.243852281859, + "max_y": 5234.13293718911, + "center": [ + 3108.119783934754, + 5234.132937189108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.99571558765, + 5234.13293718911 + ], + [ + 3109.243852281859, + 5234.132937189106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3109.243852281859, + "min_y": 5231.884800494899, + "max_x": 3109.243852281859, + "max_y": 5234.132937189106, + "center": [ + 3109.243852281859, + 5233.008868842002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3109.243852281859, + 5231.884800494899 + ], + [ + 3109.243852281859, + 5234.132937189106 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5229.636663800683, + "max_x": 3106.99571558765, + "max_y": 5229.636663800691, + "center": [ + 3105.8716472405476, + 5229.6366638006875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.99571558765, + 5229.636663800683 + ], + [ + 3104.747578893445, + 5229.636663800691 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5229.636663800691, + "max_x": 3104.747578893445, + "max_y": 5231.884800494896, + "center": [ + 3104.747578893445, + 5230.7607321477935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3104.747578893445, + 5231.884800494896 + ], + [ + 3104.747578893445, + 5229.636663800691 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3106.99571558765, + "min_y": 5229.636663800683, + "max_x": 3109.243852281859, + "max_y": 5229.636663800691, + "center": [ + 3108.119783934754, + 5229.6366638006875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3106.99571558765, + 5229.636663800683 + ], + [ + 3109.243852281859, + 5229.636663800691 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3109.243852281859, + "min_y": 5229.636663800691, + "max_x": 3109.243852281859, + "max_y": 5231.884800494896, + "center": [ + 3109.243852281859, + 5230.7607321477935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3109.243852281859, + 5231.884800494896 + ], + [ + 3109.243852281859, + 5229.636663800691 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579A9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3105.319079932469, + "min_y": 5230.585892721147, + "max_x": 3108.3420876497207, + "max_y": 5231.5935619602305, + "center": [ + 3106.830583791095, + 5231.089727340688 + ] + }, + "raw_value": "10600", + "clean_value": "10600", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3104.747578893445, + "min_y": 5231.884800494896, + "max_x": 3109.243852281859, + "max_y": 5231.884800494899, + "center": [ + 3106.995715587652, + 5231.884800494898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3109.243852281859, + 5231.884800494896 + ], + [ + 3104.747578893445, + 5231.884800494899 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579AB", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3088.571898965473, + "min_y": 5225.102351353672, + "max_x": 3106.4900005717673, + "max_y": 5226.59552648753, + "center": [ + 3097.5309497686203, + 5225.848938920601 + ] + }, + "raw_value": "CWS-10600-300A-S2A-N", + "clean_value": "CWS-10600-300A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3331.947646979837, + "min_y": 5312.493518889562, + "max_x": 3331.947646979837, + "max_y": 5323.692830004664, + "center": [ + 3331.947646979837, + 5318.093174447113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3331.947646979837, + 5312.493518889562 + ], + [ + 3331.947646979837, + 5323.692830004664 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3338.624643554251, + "min_y": 5325.401019785918, + "max_x": 3338.624643554251, + "max_y": 5371.626091437114, + "center": [ + 3338.624643554251, + 5348.5135556115165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3338.624643554251, + 5325.401019785918 + ], + [ + 3338.624643554251, + 5371.626091437114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3331.947646979837, + "min_y": 5327.109209567174, + "max_x": 3331.947646979837, + "max_y": 5391.333520765783, + "center": [ + 3331.947646979837, + 5359.221365166479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3331.947646979837, + 5327.109209567174 + ], + [ + 3331.947646979837, + 5391.333520765783 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579AF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3344.82618568645, + "min_y": 5369.368632764985, + "max_x": 3354.940699889346, + "max_y": 5393.590979437912, + "center": [ + 3349.8834427878983, + 5381.479806101448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3354.940699889346, + 5369.368632764985 + ], + [ + 3354.940699889346, + 5393.590979437912 + ], + [ + 3344.82618568645, + 5393.590979437912 + ], + [ + 3344.82618568645, + 5369.368632764985 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579B0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3351.003937936371, + "min_y": 5375.688529480062, + "max_x": 3364.442514141092, + "max_y": 5377.928292180849, + "center": [ + 3357.723226038732, + 5376.808410830456 + ] + }, + "raw_value": "%%UE-10117", + "clean_value": "E-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3337.479737377427, + "min_y": 5384.689768063386, + "max_x": 3344.82618568645, + "max_y": 5384.689768063386, + "center": [ + 3341.1529615319387, + 5384.689768063386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3337.479737377427, + 5384.689768063386 + ], + [ + 3344.82618568645, + 5384.689768063386 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5579B2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3339.830135451902, + "min_y": 5385.485778383936, + "max_x": 3342.5178506928464, + "max_y": 5387.725541084723, + "center": [ + 3341.1739930723743, + 5386.6056597343295 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3338.624643554251, + "min_y": 5371.626091437114, + "max_x": 3344.82618568645, + "max_y": 5371.626091437114, + "center": [ + 3341.7254146203504, + 5371.626091437114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3338.624643554251, + 5371.626091437114 + ], + [ + 3344.82618568645, + 5371.626091437114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3331.947646979837, + "min_y": 5391.333520765783, + "max_x": 3344.82618568645, + "max_y": 5391.333520765783, + "center": [ + 3338.3869163331437, + 5391.333520765783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3331.947646979837, + 5391.333520765783 + ], + [ + 3344.82618568645, + 5391.333520765783 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579B5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3378.939307427157, + "min_y": 5369.368632764985, + "max_x": 3389.053821630053, + "max_y": 5393.590979437912, + "center": [ + 3383.9965645286047, + 5381.479806101448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3389.053821630053, + 5369.368632764985 + ], + [ + 3389.053821630053, + 5393.590979437912 + ], + [ + 3378.939307427157, + 5393.590979437912 + ], + [ + 3378.939307427157, + 5369.368632764985 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579B6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3385.117059677078, + "min_y": 5375.688529480062, + "max_x": 3398.555635881799, + "max_y": 5377.928292180849, + "center": [ + 3391.8363477794383, + 5376.808410830456 + ] + }, + "raw_value": "%%UE-10112", + "clean_value": "E-10112", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3371.592859118134, + "min_y": 5384.689768063386, + "max_x": 3378.939307427157, + "max_y": 5384.689768063386, + "center": [ + 3375.2660832726456, + 5384.689768063386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3371.592859118134, + 5384.689768063386 + ], + [ + 3378.939307427157, + 5384.689768063386 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5579B8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3373.943257192608, + "min_y": 5385.485778383936, + "max_x": 3376.6309724335524, + "max_y": 5387.725541084723, + "center": [ + 3375.2871148130803, + 5386.6056597343295 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3372.737765294956, + "min_y": 5371.626091437114, + "max_x": 3378.939307427157, + "max_y": 5371.626091437114, + "center": [ + 3375.8385363610564, + 5371.626091437114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3372.737765294956, + 5371.626091437114 + ], + [ + 3378.939307427157, + 5371.626091437114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3366.060768720544, + "min_y": 5391.333520765783, + "max_x": 3378.939307427157, + "max_y": 5391.333520765783, + "center": [ + 3372.50003807385, + 5391.333520765783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3366.060768720544, + 5391.333520765783 + ], + [ + 3378.939307427157, + 5391.333520765783 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3366.060768720544, + "min_y": 5312.493518889562, + "max_x": 3366.060768720544, + "max_y": 5323.692830004664, + "center": [ + 3366.060768720544, + 5318.093174447113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3366.060768720544, + 5312.493518889562 + ], + [ + 3366.060768720544, + 5323.692830004664 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3372.737765294956, + "min_y": 5325.401019785918, + "max_x": 3372.737765294956, + "max_y": 5371.626091437114, + "center": [ + 3372.737765294956, + 5348.5135556115165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3372.737765294956, + 5325.401019785918 + ], + [ + 3372.737765294956, + 5371.626091437114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3366.060768720544, + "min_y": 5327.109209567174, + "max_x": 3366.060768720544, + "max_y": 5391.333520765783, + "center": [ + 3366.060768720544, + 5359.221365166479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3366.060768720544, + 5327.109209567174 + ], + [ + 3366.060768720544, + 5391.333520765783 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3372.737765294956, + "min_y": 5371.626091437114, + "max_x": 3378.939307427157, + "max_y": 5371.626091437114, + "center": [ + 3375.8385363610564, + 5371.626091437114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3372.737765294956, + 5371.626091437114 + ], + [ + 3378.939307427157, + 5371.626091437114 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3366.060768720544, + "min_y": 5391.333520765783, + "max_x": 3378.939307427157, + "max_y": 5391.333520765783, + "center": [ + 3372.50003807385, + 5391.333520765783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3366.060768720544, + 5391.333520765783 + ], + [ + 3378.939307427157, + 5391.333520765783 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579C4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3338.073430140312, + "min_y": 5334.133181790072, + "max_x": 3355.095626666292, + "max_y": 5335.62635692393, + "center": [ + 3346.584528403302, + 5334.879769357001 + ] + }, + "raw_value": "CWS-10611-80A-S2A-N", + "clean_value": "CWS-10611-80A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579C5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3331.430875178413, + "min_y": 5334.270040883627, + "max_x": 3348.4530717043926, + "max_y": 5335.763216017485, + "center": [ + 3339.9419734414028, + 5335.016628450556 + ] + }, + "raw_value": "CWR-10621-80A-S2A-N", + "clean_value": "CWR-10621-80A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579C6", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3372.186551881017, + "min_y": 5333.665519338147, + "max_x": 3390.104653487311, + "max_y": 5335.158694472005, + "center": [ + 3381.1456026841643, + 5334.412106905076 + ] + }, + "raw_value": "CWS-10612-200A-S2A-N", + "clean_value": "CWS-10612-200A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579C7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3365.543996919121, + "min_y": 5333.802378431702, + "max_x": 3383.4620985254155, + "max_y": 5335.29555356556, + "center": [ + 3374.503047722268, + 5334.548965998631 + ] + }, + "raw_value": "CWR-10622-200A-S2A-N", + "clean_value": "CWR-10622-200A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579C8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3226.914630876212, + "min_y": 5385.14954311034, + "max_x": 3237.029145079109, + "max_y": 5409.371889783267, + "center": [ + 3231.9718879776606, + 5397.260716446804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3237.029145079109, + 5385.14954311034 + ], + [ + 3237.029145079109, + 5409.371889783267 + ], + [ + 3226.914630876212, + 5409.371889783267 + ], + [ + 3226.914630876212, + 5385.14954311034 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579C9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3233.092383126134, + "min_y": 5391.469439825417, + "max_x": 3246.530959330855, + "max_y": 5393.709202526204, + "center": [ + 3239.8116712284946, + 5392.58932117581 + ] + }, + "raw_value": "%%UE-10212", + "clean_value": "E-10212", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3219.568182567188, + "min_y": 5400.470678408742, + "max_x": 3226.914630876212, + "max_y": 5400.470678408742, + "center": [ + 3223.2414067217, + 5400.470678408742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3219.568182567188, + 5400.470678408742 + ], + [ + 3226.914630876212, + 5400.470678408742 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5579CB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3221.918580641663, + "min_y": 5401.266688729291, + "max_x": 3224.6062958826074, + "max_y": 5403.5064514300775, + "center": [ + 3223.262438262135, + 5402.386570079684 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.713088744011, + "min_y": 5387.40700178247, + "max_x": 3226.914630876212, + "max_y": 5387.40700178247, + "center": [ + 3223.8138598101114, + 5387.40700178247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.713088744011, + 5387.40700178247 + ], + [ + 3226.914630876212, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3214.036092169597, + "min_y": 5407.114431111138, + "max_x": 3226.914630876212, + "max_y": 5407.114431111138, + "center": [ + 3220.4753615229047, + 5407.114431111138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3214.036092169597, + 5407.114431111138 + ], + [ + 3226.914630876212, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.713088744011, + "min_y": 5325.401019785918, + "max_x": 3220.713088744011, + "max_y": 5387.40700178247, + "center": [ + 3220.713088744011, + 5356.404010784194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.713088744011, + 5325.401019785918 + ], + [ + 3220.713088744011, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3220.713088744011, + "min_y": 5387.40700178247, + "max_x": 3226.914630876212, + "max_y": 5387.40700178247, + "center": [ + 3223.8138598101114, + 5387.40700178247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3220.713088744011, + 5387.40700178247 + ], + [ + 3226.914630876212, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3214.036092169597, + "min_y": 5407.114431111138, + "max_x": 3226.914630876212, + "max_y": 5407.114431111138, + "center": [ + 3220.4753615229047, + 5407.114431111138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3214.036092169597, + 5407.114431111138 + ], + [ + 3226.914630876212, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579D3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3220.161875330072, + "min_y": 5349.446429683503, + "max_x": 3238.079976936366, + "max_y": 5350.939604817361, + "center": [ + 3229.1209261332187, + 5350.193017250433 + ] + }, + "raw_value": "CWS-10614-150A-S2A-N", + "clean_value": "CWS-10614-150A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579D4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3213.519320368176, + "min_y": 5349.583288777057, + "max_x": 3231.4374219744705, + "max_y": 5351.076463910915, + "center": [ + 3222.4783711713235, + 5350.329876343985 + ] + }, + "raw_value": "CWR-10624-150A-S2A-N", + "clean_value": "CWR-10624-150A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579D5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3253.624778024672, + "min_y": 5385.14954311034, + "max_x": 3263.739292227569, + "max_y": 5409.371889783267, + "center": [ + 3258.6820351261204, + 5397.260716446804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3263.739292227569, + 5385.14954311034 + ], + [ + 3263.739292227569, + 5409.371889783267 + ], + [ + 3253.624778024672, + 5409.371889783267 + ], + [ + 3253.624778024672, + 5385.14954311034 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579D6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3259.802530274594, + "min_y": 5391.469439825417, + "max_x": 3273.241106479315, + "max_y": 5393.709202526204, + "center": [ + 3266.521818376955, + 5392.58932117581 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3246.278329715649, + "min_y": 5400.470678408742, + "max_x": 3253.624778024672, + "max_y": 5400.470678408742, + "center": [ + 3249.9515538701608, + 5400.470678408742 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3246.278329715649, + 5400.470678408742 + ], + [ + 3253.624778024672, + 5400.470678408742 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "5579D8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3248.628727790125, + "min_y": 5401.266688729291, + "max_x": 3251.3164430310694, + "max_y": 5403.5064514300775, + "center": [ + 3249.9725854105973, + 5402.386570079684 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3247.423235892473, + "min_y": 5387.40700178247, + "max_x": 3253.624778024672, + "max_y": 5387.40700178247, + "center": [ + 3250.5240069585725, + 5387.40700178247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3247.423235892473, + 5387.40700178247 + ], + [ + 3253.624778024672, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3240.74623931806, + "min_y": 5407.114431111138, + "max_x": 3253.624778024672, + "max_y": 5407.114431111138, + "center": [ + 3247.185508671366, + 5407.114431111138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3240.74623931806, + 5407.114431111138 + ], + [ + 3253.624778024672, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3247.423235892473, + "min_y": 5325.401019785918, + "max_x": 3247.423235892473, + "max_y": 5387.40700178247, + "center": [ + 3247.423235892473, + 5356.404010784194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3247.423235892473, + 5325.401019785918 + ], + [ + 3247.423235892473, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3247.423235892473, + "min_y": 5387.40700178247, + "max_x": 3253.624778024672, + "max_y": 5387.40700178247, + "center": [ + 3250.5240069585725, + 5387.40700178247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3247.423235892473, + 5387.40700178247 + ], + [ + 3253.624778024672, + 5387.40700178247 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3240.74623931806, + "min_y": 5407.114431111138, + "max_x": 3253.624778024672, + "max_y": 5407.114431111138, + "center": [ + 3247.185508671366, + 5407.114431111138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3240.74623931806, + 5407.114431111138 + ], + [ + 3253.624778024672, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579E0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3246.872022478534, + "min_y": 5349.914092135428, + "max_x": 3263.8942190045136, + "max_y": 5351.407267269286, + "center": [ + 3255.3831207415237, + 5350.660679702358 + ] + }, + "raw_value": "CWS-10613-50A-S2A-N", + "clean_value": "CWS-10613-50A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579E1", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3240.229467516636, + "min_y": 5350.050951228981, + "max_x": 3257.2516640426156, + "max_y": 5351.544126362839, + "center": [ + 3248.7405657796257, + 5350.79753879591 + ] + }, + "raw_value": "CWR-10623-50A-S2A-N", + "clean_value": "CWR-10623-50A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3240.74623931806, + "min_y": 5312.493518889562, + "max_x": 3240.74623931806, + "max_y": 5323.418709689534, + "center": [ + 3240.74623931806, + 5317.956114289548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3240.74623931806, + 5312.493518889562 + ], + [ + 3240.74623931806, + 5323.418709689534 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3214.036092169597, + "min_y": 5312.493518889562, + "max_x": 3214.036092169597, + "max_y": 5322.872780132398, + "center": [ + 3214.036092169597, + 5317.68314951098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3214.036092169597, + 5312.493518889562 + ], + [ + 3214.036092169597, + 5322.872780132398 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3318.18957364612, + "min_y": 5251.400755044797, + "max_x": 3318.18957364612, + "max_y": 5253.081597988999, + "center": [ + 3318.18957364612, + 5252.241176516898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3318.18957364612, + 5251.400755044797 + ], + [ + 3318.18957364612, + 5253.081597988999 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3318.18957364612, + "min_y": 5256.396908675005, + "max_x": 3318.18957364612, + "max_y": 5258.077751619208, + "center": [ + 3318.18957364612, + 5257.237330147107 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3318.18957364612, + 5256.396908675005 + ], + [ + 3318.18957364612, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5579E7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3160.207869653247, + "min_y": 5274.751293334436, + "max_x": 3163.791489974506, + "max_y": 5276.244468468294, + "center": [ + 3161.9996798138764, + 5275.497880901365 + ] + }, + "raw_value": "VVVF", + "clean_value": "VVVF", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579E8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3159.626601676398, + "min_y": 5273.468268759231, + "max_x": 3164.714457750491, + "max_y": 5277.582795845234, + "center": [ + 3162.1705297134445, + 5275.525532302232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3159.626601676398, + 5277.582795845234 + ], + [ + 3164.714457750491, + 5277.582795845234 + ], + [ + 3164.714457750491, + 5273.468268759231 + ], + [ + 3159.626601676398, + 5273.468268759231 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5579E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3150.603000422952, + "min_y": 5272.375290405171, + "max_x": 3155.040413690296, + "max_y": 5275.525532302232, + "center": [ + 3152.8217070566243, + 5273.950411353701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3150.603000422952, + 5272.375290405171 + ], + [ + 3155.040413690296, + 5275.525532302232 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5579EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3155.040413690296, + "min_y": 5275.525532302232, + "max_x": 3159.626601676398, + "max_y": 5275.525532302232, + "center": [ + 3157.3335076833473, + 5275.525532302232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3155.040413690296, + 5275.525532302232 + ], + [ + 3159.626601676398, + 5275.525532302232 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5579EB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3153.664765986026, + "min_y": 5269.463551955978, + "max_x": 3169.791057431691, + "max_y": 5271.703314656765, + "center": [ + 3161.7279117088583, + 5270.583433306371 + ] + }, + "raw_value": "%%UFAN-10601", + "clean_value": "FAN-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579EC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3064.632228651805, + "min_y": 5158.928833586464, + "max_x": 3089.3593850725524, + "max_y": 5160.720656515504, + "center": [ + 3076.9958068621786, + 5159.824745050984 + ] + }, + "raw_value": "COOLING WATER FAN MOTOR", + "clean_value": "COOLING WATER FAN MOTOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579ED", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3064.755604252004, + "min_y": 5156.349326289095, + "max_x": 3110.5061805568052, + "max_y": 5158.141136449724, + "center": [ + 3087.6308924044047, + 5157.24523136941 + ] + }, + "raw_value": "\\W0.9;{\\A1;RPM: 1,780}\\PMATERIAL : GC150/P.P(Motor Cooling Fan)", + "clean_value": ".9; RPM: 1,780 MATERIAL : GC150/P.P(Motor Cooling Fan)", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579F1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3064.632228651805, + "min_y": 5162.945356442134, + "max_x": 3080.75852009747, + "max_y": 5165.1851191429205, + "center": [ + 3072.695374374637, + 5164.065237792527 + ] + }, + "raw_value": "%%UFAN-10601", + "clean_value": "FAN-10601", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5579F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3116.211163459571, + "min_y": 5244.468475554304, + "max_x": 3118.813920148801, + "max_y": 5244.468475554304, + "center": [ + 3117.512541804186, + 5244.468475554304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3116.211163459571, + 5244.468475554304 + ], + [ + 3118.813920148801, + 5244.468475554304 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579F3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3113.167405157861, + "min_y": 5241.796039662378, + "max_x": 3115.8551203988054, + "max_y": 5243.289214796236, + "center": [ + 3114.5112627783333, + 5242.542627229306 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5244.468475554304, + "max_x": 3112.796751056889, + "max_y": 5244.468475554304, + "center": [ + 3110.6289213361806, + 5244.468475554304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3108.461091615472, + 5244.468475554304 + ], + [ + 3112.796751056889, + 5244.468475554304 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3082.970165285285, + "min_y": 5272.665480493286, + "max_x": 3082.970165285285, + "max_y": 5278.473571406016, + "center": [ + 3082.970165285285, + 5275.5695259496515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3082.970165285285, + 5278.473571406016 + ], + [ + 3082.970165285285, + 5272.665480493286 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3105.061955097094, + "min_y": 5272.665480493286, + "max_x": 3105.061955097094, + "max_y": 5278.473571406016, + "center": [ + 3105.061955097094, + 5275.5695259496515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3105.061955097094, + 5272.665480493286 + ], + [ + 3105.061955097094, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579F7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3082.677794161814, + "min_y": 5282.782890290771, + "max_x": 3100.595895768108, + "max_y": 5284.276065424629, + "center": [ + 3091.636844964961, + 5283.529477857701 + ] + }, + "raw_value": "PW-10903-25A-F1A-E40", + "clean_value": "PW-10903-25A-F1A-E40", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5579F8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3092.626344105525, + "min_y": 5276.265692653919, + "max_x": 3097.0421016097175, + "max_y": 5280.681450158113, + "center": [ + 3094.834222857621, + 5278.473571406016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3094.834222857621, + 5278.473571406016 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579F9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3093.769141663641, + "min_y": 5277.981828817343, + "max_x": 3095.5829462939923, + "max_y": 5278.989498056427, + "center": [ + 3094.676043978817, + 5278.485663436884 + ] + }, + "raw_value": "F/M", + "clean_value": "F/M", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5579FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3097.042101609716, + "min_y": 5278.473571406016, + "max_x": 3099.838482949435, + "max_y": 5278.473571406016, + "center": [ + 3098.4402922795753, + 5278.473571406016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3097.042101609716, + 5278.473571406016 + ], + [ + 3099.838482949435, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3089.748795476283, + "min_y": 5278.473571406016, + "max_x": 3092.626344105525, + "max_y": 5278.473571406016, + "center": [ + 3091.1875697909036, + 5278.473571406016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3089.748795476283, + 5278.473571406016 + ], + [ + 3092.626344105525, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3102.656068590821, + "min_y": 5278.473571406016, + "max_x": 3108.461091615472, + "max_y": 5278.473571406017, + "center": [ + 3105.5585801031466, + 5278.473571406017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3102.656068590821, + 5278.473571406017 + ], + [ + 3108.461091615472, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5579FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3082.970165285285, + "min_y": 5272.665480493286, + "max_x": 3092.607267370496, + "max_y": 5272.665480493286, + "center": [ + 3087.7887163278906, + 5272.665480493286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3082.970165285285, + 5272.665480493286 + ], + [ + 3092.607267370496, + 5272.665480493286 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3095.424853011883, + "min_y": 5272.665480493286, + "max_x": 3105.061955097093, + "max_y": 5272.665480493286, + "center": [ + 3100.2434040544877, + 5272.665480493286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3095.424853011883, + 5272.665480493286 + ], + [ + 3105.061955097093, + 5272.665480493286 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.535902073674, + "min_y": 5224.19053996594, + "max_x": 3126.535902073674, + "max_y": 5225.790282416366, + "center": [ + 3126.535902073674, + 5224.990411191153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3126.535902073674, + 5225.790282416366 + ], + [ + 3126.535902073674, + 5224.19053996594 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3144.464649422079, + "min_y": 5201.643640620321, + "max_x": 3144.464649422079, + "max_y": 5216.84763545864, + "center": [ + 3144.464649422079, + 5209.245638039481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3144.464649422079, + 5216.84763545864 + ], + [ + 3144.464649422079, + 5201.643640620321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.535902073674, + "min_y": 5220.543488419762, + "max_x": 3126.535902073674, + "max_y": 5221.366913936193, + "center": [ + 3126.535902073674, + 5220.955201177978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3126.535902073674, + 5221.366913936193 + ], + [ + 3126.535902073674, + 5220.543488419762 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.53562024574, + "min_y": 5216.849496585183, + "max_x": 3144.461117484714, + "max_y": 5216.849496585183, + "center": [ + 3135.4983688652273, + 5216.849496585183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3126.53562024574, + 5216.849496585183 + ], + [ + 3144.461117484714, + 5216.849496585183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.01669811374, + "min_y": 5251.928280242504, + "max_x": 3056.01669811374, + "max_y": 5254.183869961845, + "center": [ + 3056.01669811374, + 5253.056075102175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.01669811374, + 5251.928280242504 + ], + [ + 3056.01669811374, + 5254.183869961845 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A08", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3053.3080511601624, + "min_y": 5254.175676305483, + "max_x": 3058.9074579121293, + "max_y": 5259.7750830574505, + "center": [ + 3056.107754536146, + 5256.975379681467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.107754536146, + 5256.975379681467 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.01669811374, + "min_y": 5245.829114263383, + "max_x": 3056.01669811374, + "max_y": 5249.110694601117, + "center": [ + 3056.01669811374, + 5247.46990443225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.01669811374, + 5249.110694601117 + ], + [ + 3056.01669811374, + 5245.829114263383 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A0B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3058.764344964272, + "min_y": 5249.771154764779, + "max_x": 3061.452060205216, + "max_y": 5251.264329898637, + "center": [ + 3060.108202584744, + 5250.517742331707 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A0C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3054.949597293517, + "min_y": 5257.44862922098, + "max_x": 3056.7414074541466, + "max_y": 5258.9418043548385, + "center": [ + 3055.8455023738316, + 5258.19521678791 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A0D", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 3053.817870436783, + "min_y": 5255.32625577649, + "max_x": 3059.1933009186714, + "max_y": 5256.819430910348, + "center": [ + 3056.505585677727, + 5256.07284334342 + ] + }, + "raw_value": "10602A", + "clean_value": "10602A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.036178866566, + "min_y": 5241.508958357767, + "max_x": 3056.036178866566, + "max_y": 5243.009722965698, + "center": [ + 3056.036178866566, + 5242.2593406617325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.036178866566, + 5243.009722965698 + ], + [ + 3056.036178866566, + 5241.508958357767 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3056.599359796284, + "min_y": 5241.145603079875, + "max_x": 3056.599359796284, + "max_y": 5241.845321638729, + "center": [ + 3056.599359796284, + 5241.495462359302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.599359796284, + 5241.845321638729 + ], + [ + 3056.599359796284, + 5241.145603079875 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3055.47299793685, + "min_y": 5241.145603079875, + "max_x": 3056.599359796284, + "max_y": 5241.145603079875, + "center": [ + 3056.036178866567, + 5241.145603079875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3056.599359796284, + 5241.145603079875 + ], + [ + 3055.47299793685, + 5241.145603079875 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3055.47299793685, + "min_y": 5241.145603079875, + "max_x": 3055.47299793685, + "max_y": 5241.845321638729, + "center": [ + 3055.47299793685, + 5241.495462359302 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3055.47299793685, + 5241.845321638729 + ], + [ + 3055.47299793685, + 5241.145603079875 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A13", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3058.240491312213, + "min_y": 5243.506647201571, + "max_x": 3060.9282065531575, + "max_y": 5244.999822335429, + "center": [ + 3059.5843489326853, + 5244.253234768499 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.828007645372, + "min_y": 5237.354774422888, + "max_x": 3020.828007645372, + "max_y": 5239.61036414223, + "center": [ + 3020.828007645372, + 5238.482569282559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.828007645372, + 5237.354774422888 + ], + [ + 3020.828007645372, + 5239.61036414223 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A15", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 3018.0142373350527, + "min_y": 5239.604601936902, + "max_x": 3023.6136440870196, + "max_y": 5245.20400868887, + "center": [ + 3020.813940711036, + 5242.404305312886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.813940711036, + 5242.404305312886 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.828007645372, + "min_y": 5231.255608443767, + "max_x": 3020.828007645372, + "max_y": 5234.537188781502, + "center": [ + 3020.828007645372, + 5232.896398612635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.828007645372, + 5234.537188781502 + ], + [ + 3020.828007645372, + 5231.255608443767 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A18", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3019.760906825147, + "min_y": 5242.62223773026, + "max_x": 3021.5527169857764, + "max_y": 5244.115412864118, + "center": [ + 3020.656811905462, + 5243.36882529719 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557A19", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 3018.610365961726, + "min_y": 5240.499864285769, + "max_x": 3023.9857964436146, + "max_y": 5241.993039419627, + "center": [ + 3021.2980812026703, + 5241.246451852698 + ] + }, + "raw_value": "10602B", + "clean_value": "10602B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.847488398198, + "min_y": 5226.935452538151, + "max_x": 3020.847488398198, + "max_y": 5228.436217146082, + "center": [ + 3020.847488398198, + 5227.6858348421165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.847488398198, + 5228.436217146082 + ], + [ + 3020.847488398198, + 5226.935452538151 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3021.410669327913, + "min_y": 5226.572097260259, + "max_x": 3021.410669327913, + "max_y": 5227.271815819113, + "center": [ + 3021.410669327913, + 5226.921956539686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3021.410669327913, + 5227.271815819113 + ], + [ + 3021.410669327913, + 5226.572097260259 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.284307468481, + "min_y": 5226.572097260259, + "max_x": 3021.410669327913, + "max_y": 5226.572097260259, + "center": [ + 3020.847488398197, + 5226.572097260259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3021.410669327913, + 5226.572097260259 + ], + [ + 3020.284307468481, + 5226.572097260259 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.284307468481, + "min_y": 5226.572097260259, + "max_x": 3020.284307468481, + "max_y": 5227.271815819113, + "center": [ + 3020.284307468481, + 5226.921956539686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.284307468481, + 5227.271815819113 + ], + [ + 3020.284307468481, + 5226.572097260259 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A1F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3016.390797145093, + "min_y": 5234.573087031616, + "max_x": 3019.0785123860373, + "max_y": 5236.066262165474, + "center": [ + 3017.734654765565, + 5235.319674598544 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A20", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3015.866943493034, + "min_y": 5228.308579468407, + "max_x": 3018.554658733978, + "max_y": 5229.801754602265, + "center": [ + 3017.210801113506, + 5229.055167035336 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A21", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5163.756898747077, + "max_x": 3393.334171849957, + "max_y": 5163.756898747077, + "center": [ + 3361.706624474105, + 5163.756898747077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5163.756898747077 + ], + [ + 3330.079077098253, + 5163.756898747077 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A22", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5174.441706163218, + "max_x": 3393.334171849957, + "max_y": 5174.441706163218, + "center": [ + 3361.706624474105, + 5174.441706163218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5174.441706163218 + ], + [ + 3330.079077098253, + 5174.441706163218 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A23", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5153.072091330938, + "max_x": 3393.334171849957, + "max_y": 5153.072091330938, + "center": [ + 3361.706624474105, + 5153.072091330938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5153.072091330938 + ], + [ + 3330.079077098253, + 5153.072091330938 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A24", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5153.072091330938, + "max_x": 3393.334171849957, + "max_y": 5153.072091330938, + "center": [ + 3361.706624474105, + 5153.072091330938 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5153.072091330938 + ], + [ + 3330.079077098253, + 5153.072091330938 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A25", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5163.756898747077, + "max_x": 3393.334171849957, + "max_y": 5163.756898747077, + "center": [ + 3361.706624474105, + 5163.756898747077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5163.756898747077 + ], + [ + 3330.079077098253, + 5163.756898747077 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A26", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5174.441706163218, + "max_x": 3393.334171849957, + "max_y": 5174.441706163218, + "center": [ + 3361.706624474105, + 5174.441706163218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5174.441706163218 + ], + [ + 3330.079077098253, + 5174.441706163218 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A27", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5142.387283914808, + "max_x": 3393.334171849957, + "max_y": 5142.387283914808, + "center": [ + 3361.706624474105, + 5142.387283914808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5142.387283914808 + ], + [ + 3330.079077098253, + 5142.387283914808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A28", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5142.387283914808, + "max_x": 3393.334171849957, + "max_y": 5142.387283914808, + "center": [ + 3361.706624474105, + 5142.387283914808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5142.387283914808 + ], + [ + 3330.079077098253, + 5142.387283914808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A29", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5139.185722370624, + "max_x": 3352.470604504226, + "max_y": 5139.185722370624, + "center": [ + 3341.2748408012394, + 5139.185722370624 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3330.079077098253, + 5139.185722370624 + ], + [ + 3352.470604504226, + 5139.185722370624 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A2A", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3343.318066548562, + "min_y": 5137.027473913432, + "max_x": 3346.2388220402136, + "max_y": 5138.244455368287, + "center": [ + 3344.7784442943876, + 5137.63596464086 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A2B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3343.318066548562, + "min_y": 5137.027473913432, + "max_x": 3346.2388220402136, + "max_y": 5138.244455368287, + "center": [ + 3344.7784442943876, + 5137.63596464086 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A2C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3345.385714682072, + "min_y": 5139.942554945346, + "max_x": 3346.3873494057634, + "max_y": 5141.611946151499, + "center": [ + 3345.8865320439177, + 5140.777250548423 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A2D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.526714111933, + "min_y": 5139.99611892455, + "max_x": 3336.6380362223235, + "max_y": 5141.213100379405, + "center": [ + 3334.0823751671282, + 5140.604609651977 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A2E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.526714111933, + "min_y": 5139.99611892455, + "max_x": 3336.6380362223235, + "max_y": 5141.213100379405, + "center": [ + 3334.0823751671282, + 5140.604609651977 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A2F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3332.052492575717, + "min_y": 5137.053477378991, + "max_x": 3335.703436940282, + "max_y": 5138.2704588338465, + "center": [ + 3333.8779647579995, + 5137.6619681064185 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A30", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3332.052492575717, + "min_y": 5137.053477378991, + "max_x": 3335.703436940282, + "max_y": 5138.2704588338465, + "center": [ + 3333.8779647579995, + 5137.6619681064185 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A31", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3338.965835808771, + "min_y": 5135.990628627536, + "max_x": 3338.965835808771, + "max_y": 5142.387283914808, + "center": [ + 3338.965835808771, + 5139.188956271172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3338.965835808771, + 5142.387283914808 + ], + [ + 3338.965835808771, + 5135.990628627536 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A32", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3353.918455532128, + "min_y": 5140.358315786112, + "max_x": 3359.0297776425186, + "max_y": 5141.575297240967, + "center": [ + 3356.4741165873234, + 5140.966806513539 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A33", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3352.470604504226, + "min_y": 5135.990628627536, + "max_x": 3352.470604504226, + "max_y": 5142.387283914808, + "center": [ + 3352.470604504226, + 5139.188956271172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3352.470604504226, + 5142.387283914808 + ], + [ + 3352.470604504226, + 5135.990628627536 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A34", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5150.841332613744, + "max_x": 3336.2682647296515, + "max_y": 5152.058314068599, + "center": [ + 3333.712603674456, + 5151.449823341172 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A35", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5172.210947446023, + "max_x": 3336.2682647296515, + "max_y": 5173.427928900878, + "center": [ + 3333.712603674456, + 5172.81943817345 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A36", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5182.202550058349, + "max_x": 3339.919209094216, + "max_y": 5183.419531513204, + "center": [ + 3335.5380758567385, + 5182.811040785777 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A37", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3387.312649026461, + "min_y": 5137.387673665007, + "max_x": 3392.282069691072, + "max_y": 5137.387673665007, + "center": [ + 3389.7973593587667, + 5137.387673665007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3387.312649026461, + 5137.387673665007 + ], + [ + 3392.282069691072, + 5137.387673665007 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A38", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3387.312649026461, + "min_y": 5137.387673665007, + "max_x": 3389.770413444217, + "max_y": 5141.695229197178, + "center": [ + 3388.541531235339, + 5139.541451431092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3387.312649026461, + 5137.387673665007 + ], + [ + 3389.770413444217, + 5141.695229197178 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A39", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3387.312649026461, + "min_y": 5137.387673665007, + "max_x": 3389.770413444217, + "max_y": 5141.695229197178, + "center": [ + 3388.541531235339, + 5139.541451431092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3387.312649026461, + 5137.387673665007 + ], + [ + 3389.770413444217, + 5141.695229197178 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A3A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3386.581787502234, + "min_y": 5135.990628627536, + "max_x": 3386.581787502234, + "max_y": 5142.387283914808, + "center": [ + 3386.581787502234, + 5139.188956271172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3386.581787502234, + 5142.387283914808 + ], + [ + 3386.581787502234, + 5135.990628627536 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A3B", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3389.770413444217, + "min_y": 5137.387673665007, + "max_x": 3392.282069691072, + "max_y": 5141.695229197178, + "center": [ + 3391.0262415676443, + 5139.541451431092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3389.770413444217, + 5141.695229197178 + ], + [ + 3392.282069691072, + 5137.387673665007 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A3C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5184.23395702764, + "max_x": 3393.334171849957, + "max_y": 5184.23395702764, + "center": [ + 3361.706624474105, + 5184.23395702764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5184.23395702764 + ], + [ + 3330.079077098253, + 5184.23395702764 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A3D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5184.23395702764, + "max_x": 3393.334171849957, + "max_y": 5184.23395702764, + "center": [ + 3361.706624474105, + 5184.23395702764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849957, + 5184.23395702764 + ], + [ + 3330.079077098253, + 5184.23395702764 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A3E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3389.172343707468, + "min_y": 5138.196551247339, + "max_x": 3390.3365479053523, + "max_y": 5140.136891577145, + "center": [ + 3389.7544458064103, + 5139.166721412243 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A3F", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5135.990628627536, + "max_x": 3330.079077098253, + "max_y": 5184.23395702764, + "center": [ + 3330.079077098253, + 5160.112292827588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3330.079077098253, + 5184.23395702764 + ], + [ + 3330.079077098253, + 5135.990628627536 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A40", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2978.322374834986, + "min_y": 5135.990628627536, + "max_x": 3395.366189721491, + "max_y": 5432.992055109983, + "center": [ + 3186.8442822782386, + 5284.491341868759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2978.322374834986, + 5432.992055109983 + ], + [ + 3395.366189721491, + 5432.992055109983 + ], + [ + 3395.366189721491, + 5135.990628627536 + ], + [ + 2978.322374834986, + 5135.990628627536 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A41", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 3331.156942619261, + "min_y": 5161.526140029881, + "max_x": 3339.919209094216, + "max_y": 5162.743121484737, + "center": [ + 3335.5380758567385, + 5162.134630757309 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557A42", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3330.57705201792, + "min_y": 5184.998980348154, + "max_x": 3332.7545618473455, + "max_y": 5185.906276110415, + "center": [ + 3331.6658069326327, + 5185.4526282292845 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3333.61757293543, + "min_y": 5184.23395702764, + "max_x": 3333.617572935545, + "max_y": 5207.599766947694, + "center": [ + 3333.6175729354873, + 5195.916861987667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.61757293543, + 5184.23395702764 + ], + [ + 3333.617572935545, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098307, + "min_y": 5187.185612296629, + "max_x": 3393.334171849963, + "max_y": 5187.185612296629, + "center": [ + 3361.706624474135, + 5187.185612296629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5187.185612296629 + ], + [ + 3330.079077098307, + 5187.185612296629 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A45", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5187.185612296671, + "max_x": 3333.617572935513, + "max_y": 5190.587971405141, + "center": [ + 3331.9163933812997, + 5188.886791850906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935513, + 5188.886791850884 + ], + [ + 3331.916393381257, + 5190.587971405141 + ], + [ + 3330.215213827086, + 5188.886791850884 + ], + [ + 3331.916393381257, + 5187.185612296671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A46", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5190.587971405141, + "max_x": 3333.617572935513, + "max_y": 5193.99033051361, + "center": [ + 3331.9163933812997, + 5192.289150959376 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935513, + 5192.289150959396 + ], + [ + 3331.916393381257, + 5193.99033051361 + ], + [ + 3330.215213827086, + 5192.289150959396 + ], + [ + 3331.916393381257, + 5190.587971405141 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A47", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5193.99033051361, + "max_x": 3333.617572935513, + "max_y": 5197.39268962208, + "center": [ + 3331.9163933812997, + 5195.691510067845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935513, + 5195.691510067866 + ], + [ + 3331.916393381257, + 5197.39268962208 + ], + [ + 3330.215213827086, + 5195.691510067866 + ], + [ + 3331.916393381257, + 5193.99033051361 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A48", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5197.39268962208, + "max_x": 3333.617572935513, + "max_y": 5200.79504873059, + "center": [ + 3331.9163933812997, + 5199.093869176335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935513, + 5199.093869176334 + ], + [ + 3331.916393381257, + 5200.79504873059 + ], + [ + 3330.215213827086, + 5199.093869176334 + ], + [ + 3331.916393381257, + 5197.39268962208 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A49", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3337.673225445874, + "min_y": 5184.998980348154, + "max_x": 3340.305788146677, + "max_y": 5186.095881473489, + "center": [ + 3338.9895067962752, + 5185.547430910821 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3382.885399519712, + "min_y": 5184.23395702768, + "max_x": 3382.885399519827, + "max_y": 5207.599766947694, + "center": [ + 3382.8853995197696, + 5195.916861987687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3382.885399519712, + 5184.23395702768 + ], + [ + 3382.885399519827, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3377.852745318359, + "min_y": 5184.23395702764, + "max_x": 3377.852745318406, + "max_y": 5207.599766947694, + "center": [ + 3377.8527453183824, + 5195.916861987667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3377.852745318359, + 5184.23395702764 + ], + [ + 3377.852745318406, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3378.530567687886, + "min_y": 5184.998980348154, + "max_x": 3381.1631303886893, + "max_y": 5186.095881473489, + "center": [ + 3379.8468490382875, + 5185.547430910821 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3372.182146804231, + "min_y": 5184.23395702764, + "max_x": 3372.182146804276, + "max_y": 5207.599766947694, + "center": [ + 3372.1821468042535, + 5195.916861987667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3372.182146804231, + 5184.23395702764 + ], + [ + 3372.182146804276, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3373.184054180448, + "min_y": 5184.998980348154, + "max_x": 3375.8166168812513, + "max_y": 5186.095881473489, + "center": [ + 3374.50033553085, + 5185.547430910821 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3366.511548290103, + "min_y": 5184.23395702764, + "max_x": 3366.511548290216, + "max_y": 5207.599766947694, + "center": [ + 3366.511548290159, + 5195.916861987667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3366.511548290103, + 5184.23395702764 + ], + [ + 3366.511548290216, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A50", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3367.466445618145, + "min_y": 5184.998980348154, + "max_x": 3370.099008318948, + "max_y": 5186.095881473489, + "center": [ + 3368.7827269685467, + 5185.547430910821 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A51", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3351.323115253608, + "min_y": 5184.998980348154, + "max_x": 3358.562662680817, + "max_y": 5186.095881473489, + "center": [ + 3354.9428889672126, + 5185.547430910821 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A52", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3345.207621524997, + "min_y": 5184.23395702768, + "max_x": 3345.207621525041, + "max_y": 5207.599766947694, + "center": [ + 3345.207621525019, + 5195.916861987687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3345.207621525041, + 5207.599766947694 + ], + [ + 3345.207621524997, + 5184.23395702768 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A53", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3385.581689757964, + "min_y": 5184.94674026192, + "max_x": 3389.530533809169, + "max_y": 5186.043641387255, + "center": [ + 3387.5561117835664, + 5185.495190824588 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A54", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827086, + "min_y": 5200.79504873059, + "max_x": 3333.617572935513, + "max_y": 5204.1974078391, + "center": [ + 3331.9163933812997, + 5202.496228284845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935513, + 5202.496228284845 + ], + [ + 3331.916393381257, + 5204.1974078391 + ], + [ + 3330.215213827086, + 5202.496228284845 + ], + [ + 3331.916393381257, + 5200.79504873059 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A55", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3330.215213827133, + "min_y": 5204.197407839579, + "max_x": 3333.617572935567, + "max_y": 5207.59976694809, + "center": [ + 3331.9163933813497, + 5205.8985873938345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3333.617572935567, + 5205.898587393834 + ], + [ + 3331.916393381306, + 5207.59976694809 + ], + [ + 3330.215213827133, + 5205.898587393834 + ], + [ + 3331.916393381306, + 5204.197407839579 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098258, + "min_y": 5184.233957027742, + "max_x": 3330.079077098373, + "max_y": 5207.599766947694, + "center": [ + 3330.079077098316, + 5195.916861987718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3330.079077098258, + 5184.233957027742 + ], + [ + 3330.079077098373, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098299, + "min_y": 5190.587971405141, + "max_x": 3393.334171849963, + "max_y": 5190.587971405141, + "center": [ + 3361.706624474131, + 5190.587971405141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5190.587971405141 + ], + [ + 3330.079077098299, + 5190.587971405141 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098289, + "min_y": 5193.99033051365, + "max_x": 3393.334171849963, + "max_y": 5193.99033051365, + "center": [ + 3361.706624474126, + 5193.99033051365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5193.99033051365 + ], + [ + 3330.079077098289, + 5193.99033051365 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098279, + "min_y": 5197.392689622162, + "max_x": 3393.334171849963, + "max_y": 5197.392689622162, + "center": [ + 3361.706624474121, + 5197.392689622162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5197.392689622162 + ], + [ + 3330.079077098279, + 5197.392689622162 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098272, + "min_y": 5200.795048730673, + "max_x": 3393.334171849963, + "max_y": 5200.795048730673, + "center": [ + 3361.7066244741172, + 5200.795048730673 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5200.795048730673 + ], + [ + 3330.079077098272, + 5200.795048730673 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098262, + "min_y": 5204.197407839183, + "max_x": 3393.334171849963, + "max_y": 5204.197407839183, + "center": [ + 3361.7066244741127, + 5204.197407839183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5204.197407839183 + ], + [ + 3330.079077098262, + 5204.197407839183 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3330.079077098253, + "min_y": 5207.599766947694, + "max_x": 3393.334171849963, + "max_y": 5207.599766947694, + "center": [ + 3361.706624474108, + 5207.599766947694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3393.334171849963, + 5207.599766947694 + ], + [ + 3330.079077098253, + 5207.599766947694 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5191.809909817032, + "max_x": 3332.0976166659416, + "max_y": 5192.743144275693, + "center": [ + 3331.8176463283435, + 5192.276527046362 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5195.212268925515, + "max_x": 3332.0976166659416, + "max_y": 5196.145503384176, + "center": [ + 3331.8176463283435, + 5195.678886154845 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A5F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5198.627719499337, + "max_x": 3332.0976166659416, + "max_y": 5199.560953957998, + "center": [ + 3331.8176463283435, + 5199.094336728667 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A60", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5202.030078607821, + "max_x": 3332.0976166659416, + "max_y": 5202.963313066482, + "center": [ + 3331.8176463283435, + 5202.4966958371515 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A61", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.53767599075, + "min_y": 5205.445529181683, + "max_x": 3332.0976166659466, + "max_y": 5206.378763640344, + "center": [ + 3331.817646328348, + 5205.912146411014 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A62", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3331.537675990745, + "min_y": 5188.420642173902, + "max_x": 3332.0976166659416, + "max_y": 5189.353876632563, + "center": [ + 3331.8176463283435, + 5188.887259403233 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A63", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3352.986008262916, + "min_y": 5188.422044830904, + "max_x": 3357.4655336644896, + "max_y": 5189.355279289565, + "center": [ + 3355.225770963703, + 5188.888662060235 + ] + }, + "raw_value": "AS BUILT", + "clean_value": "AS BUILT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A64", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3335.895668573995, + "min_y": 5188.420642173902, + "max_x": 3341.495075325962, + "max_y": 5189.353876632563, + "center": [ + 3338.6953719499784, + 5188.887259403233 + ] + }, + "raw_value": "2024.04.15", + "clean_value": "2024.04.15", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A65", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3367.627657615114, + "min_y": 5188.453716963421, + "max_x": 3370.4273609910974, + "max_y": 5189.386951422082, + "center": [ + 3369.027509303106, + 5188.920334192751 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A66", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3373.879423680349, + "min_y": 5188.4658733241, + "max_x": 3375.5592457059392, + "max_y": 5189.399107782761, + "center": [ + 3374.7193346931444, + 5188.93249055343 + ] + }, + "raw_value": "J.W", + "clean_value": "J.W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A67", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3378.925301037025, + "min_y": 5188.465873324086, + "max_x": 3381.7250044130083, + "max_y": 5189.399107782747, + "center": [ + 3380.325152725017, + 5188.932490553416 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3347.666516658826, + "min_y": 5148.431571973157, + "max_x": 3375.2624680160798, + "max_y": 5150.731234586261, + "center": [ + 3361.4644923374526, + 5149.581403279709 + ] + }, + "raw_value": "UTILITY FLOW DIAGRAM", + "clean_value": "UTILITY FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A69", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3348.811336175615, + "min_y": 5144.450420808997, + "max_x": 3373.6476923971436, + "max_y": 5146.750083422101, + "center": [ + 3361.2295142863795, + 5145.600252115549 + ] + }, + "raw_value": "COOLING WATER LINE", + "clean_value": "COOLING WATER LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A6A", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 3348.669116988113, + "min_y": 5178.039559833822, + "max_x": 3372.1866253463745, + "max_y": 5180.652616318073, + "center": [ + 3360.4278711672437, + 5179.346088075948 + ] + }, + "raw_value": "10th PLANT 증설공사", + "clean_value": "10th PLANT 증설공사", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A6B", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 3349.013114428755, + "min_y": 5167.763779015255, + "max_x": 3394.4802972547272, + "max_y": 5170.376835499506, + "center": [ + 3371.7467058417415, + 5169.070307257381 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A74", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.469539143705, + "min_y": 5170.563707610909, + "max_x": 3343.819198995062, + "max_y": 5170.563707610909, + "center": [ + 3343.644369069383, + 5170.563707610909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.469539143705, + 5170.563707610909 + ], + [ + 3343.819198995062, + 5170.563707610909 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A75", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.519464481525, + "min_y": 5169.383607680334, + "max_x": 3343.819198995062, + "max_y": 5169.383607680334, + "center": [ + 3343.6693317382933, + 5169.383607680334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5169.383607680334 + ], + [ + 3343.519464481525, + 5169.383607680334 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A76", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.716751253675, + "min_y": 5169.680294797257, + "max_x": 3343.819198995062, + "max_y": 5169.680294797257, + "center": [ + 3343.7679751243686, + 5169.680294797257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5169.680294797257 + ], + [ + 3343.716751253675, + 5169.680294797257 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A77", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.122732376722, + "min_y": 5169.176480542997, + "max_x": 3343.480212609711, + "max_y": 5169.176480542997, + "center": [ + 3343.3014724932164, + 5169.176480542997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.480212609711, + 5169.176480542997 + ], + [ + 3343.122732376722, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A78", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.122732376722, + "min_y": 5169.176480542997, + "max_x": 3343.469539143705, + "max_y": 5170.563707610909, + "center": [ + 3343.2961357602135, + 5169.870094076952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.469539143705, + 5170.563707610909 + ], + [ + 3343.122732376722, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A79", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.716751253675, + "min_y": 5169.680294797257, + "max_x": 3343.819198995062, + "max_y": 5170.090085762814, + "center": [ + 3343.7679751243686, + 5169.885190280036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5170.090085762814 + ], + [ + 3343.716751253675, + 5169.680294797257 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.480212609711, + "min_y": 5169.176480542997, + "max_x": 3343.519464481525, + "max_y": 5169.383607680334, + "center": [ + 3343.4998385456183, + 5169.280044111665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.519464481525, + 5169.383607680334 + ], + [ + 3343.480212609711, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.819198995062, + "min_y": 5170.563707610909, + "max_x": 3344.168858846421, + "max_y": 5170.563707610909, + "center": [ + 3343.9940289207416, + 5170.563707610909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3344.168858846421, + 5170.563707610909 + ], + [ + 3343.819198995062, + 5170.563707610909 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.819198995062, + "min_y": 5169.383607680334, + "max_x": 3344.118933508603, + "max_y": 5169.383607680334, + "center": [ + 3343.9690662518324, + 5169.383607680334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5169.383607680334 + ], + [ + 3344.118933508603, + 5169.383607680334 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.819198995062, + "min_y": 5169.680294797257, + "max_x": 3343.921646736453, + "max_y": 5169.680294797257, + "center": [ + 3343.8704228657575, + 5169.680294797257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5169.680294797257 + ], + [ + 3343.921646736453, + 5169.680294797257 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3344.158185380417, + "min_y": 5169.176480542997, + "max_x": 3344.515665613398, + "max_y": 5169.176480542997, + "center": [ + 3344.3369254969075, + 5169.176480542997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3344.158185380417, + 5169.176480542997 + ], + [ + 3344.515665613398, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A7F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3344.168858846421, + "min_y": 5169.176480542997, + "max_x": 3344.515665613398, + "max_y": 5170.563707610909, + "center": [ + 3344.3422622299095, + 5169.870094076952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3344.168858846421, + 5170.563707610909 + ], + [ + 3344.515665613398, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A80", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3343.819198995062, + "min_y": 5169.680294797257, + "max_x": 3343.921646736453, + "max_y": 5170.090085762814, + "center": [ + 3343.8704228657575, + 5169.885190280036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.819198995062, + 5170.090085762814 + ], + [ + 3343.921646736453, + 5169.680294797257 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A81", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 3344.118933508603, + "min_y": 5169.176480542997, + "max_x": 3344.158185380417, + "max_y": 5169.383607680334, + "center": [ + 3344.13855944451, + 5169.280044111665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3344.118933508603, + 5169.383607680334 + ], + [ + 3344.158185380417, + 5169.176480542997 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A82", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 3343.96964426759, + "min_y": 5166.690049496505, + "max_x": 3350.8948969833564, + "max_y": 5167.799831150831, + "center": [ + 3347.4322706254734, + 5167.244940323668 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A83", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 3358.609042298206, + "min_y": 5156.62469274487, + "max_x": 3369.474948145125, + "max_y": 5159.211813184613, + "center": [ + 3364.0419952216653, + 5157.918252964741 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "557A86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3343.756378297573, + "min_y": 5160.133578982045, + "max_x": 3346.677074606217, + "max_y": 5160.133578982045, + "center": [ + 3345.216726451895, + 5160.133578982045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3346.677074606217, + 5160.133578982045 + ], + [ + 3343.756378297573, + 5160.133578982045 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3343.756378297573, + "min_y": 5160.133578982045, + "max_x": 3343.756378297573, + "max_y": 5161.018638469515, + "center": [ + 3343.756378297573, + 5160.57610872578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3343.756378297573, + 5161.018638469515 + ], + [ + 3343.756378297573, + 5160.133578982045 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3346.677074606217, + "min_y": 5160.133578982045, + "max_x": 3346.677074606217, + "max_y": 5161.018638469515, + "center": [ + 3346.677074606217, + 5160.57610872578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3346.677074606217, + 5161.018638469515 + ], + [ + 3346.677074606217, + 5160.133578982045 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3344.5971848106665, + "min_y": 5157.4454458142245, + "max_x": 3345.8362680931195, + "max_y": 5158.684529096678, + "center": [ + 3345.216726451893, + 5158.064987455451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3345.216726451893, + 5158.064987455451 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A8D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 3347.4520008391473, + "min_y": 5157.416961651497, + "max_x": 3348.6910841216004, + "max_y": 5158.65604493395, + "center": [ + 3348.071542480374, + 5158.036503292724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3348.071542480374, + 5158.036503292724 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3347.404005160655, + "min_y": 5158.492262483224, + "max_x": 3347.903721782607, + "max_y": 5158.632882415944, + "center": [ + 3347.6538634716308, + 5158.562572449584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3347.903721782607, + 5158.632882415944 + ], + [ + 3347.404005160655, + 5158.492262483224 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557A8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3345.836111486967, + "min_y": 5158.051058222216, + "max_x": 3347.404005160655, + "max_y": 5158.492262483224, + "center": [ + 3346.620058323811, + 5158.271660352721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3347.404005160655, + 5158.492262483224 + ], + [ + 3345.836111486967, + 5158.051058222216 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3345.38454714966, + "min_y": 5157.468608332234, + "max_x": 3345.884263771615, + "max_y": 5157.609228264952, + "center": [ + 3345.634405460638, + 5157.538918298593 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3345.38454714966, + 5157.468608332234 + ], + [ + 3345.884263771615, + 5157.609228264952 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557A91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3345.884263771615, + "min_y": 5157.609228264952, + "max_x": 3347.452157445296, + "max_y": 5158.050432525966, + "center": [ + 3346.6682106084554, + 5157.82983039546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3345.884263771615, + 5157.609228264952 + ], + [ + 3347.452157445296, + 5158.050432525966 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557A92", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3109.243852281859, + "min_y": 5229.636663800691, + "max_x": 3113.6958342636126, + "max_y": 5230.353387864943, + "center": [ + 3111.4698432727355, + 5229.995025832817 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 35\\P H 30\\P L 10\\P LL 7", + "clean_value": "\\Fmonotxt.shx; .6; HH 35 H 30 L 10 LL 7", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A96", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 3124.578887204719, + "min_y": 5271.532312575301, + "max_x": 3129.030869186473, + "max_y": 5272.249036639553, + "center": [ + 3126.804878195596, + 5271.890674607427 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 35\\P H 30\\P L 10\\P LL 7", + "clean_value": "\\Fmonotxt.shx; .6; HH 35 H 30 L 10 LL 7", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A9A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3361.848883230747, + "min_y": 5137.833242704812, + "max_x": 3378.147742001125, + "max_y": 5139.644227012632, + "center": [ + 3369.998312615936, + 5138.738734858722 + ] + }, + "raw_value": "SARF-#10-UFD-CW", + "clean_value": "SARF-#10-UFD-CW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557A9B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3373.29082444816, + "min_y": 5188.417317562792, + "max_x": 3376.0905278241435, + "max_y": 5189.350552021453, + "center": [ + 3374.6906761361515, + 5188.883934792122 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A9C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3378.878594959942, + "min_y": 5188.429473923462, + "max_x": 3381.6782983359253, + "max_y": 5189.362708382123, + "center": [ + 3380.2784466479334, + 5188.896091152792 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557A9D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3063.989921453338, + "min_y": 5229.393503017847, + "max_x": 3072.0530671761703, + "max_y": 5230.886678151705, + "center": [ + 3068.021494314754, + 5230.140090584777 + ] + }, + "raw_value": "300Ax250A", + "clean_value": "300Ax250A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557A9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.095615414313, + "min_y": 5207.658903405267, + "max_x": 3043.691005679141, + "max_y": 5207.658903405267, + "center": [ + 3043.393310546727, + 5207.658903405267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.691005679141, + 5207.658903405267 + ], + [ + 3043.095615414313, + 5207.658903405267 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557A9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3041.286338279272, + "min_y": 5206.922062233033, + "max_x": 3043.095596756101, + "max_y": 5207.336217631155, + "center": [ + 3042.1909675176867, + 5207.129139932094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.095596756101, + 5206.922062233033 + ], + [ + 3041.286338279272, + 5207.336217631155 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3041.286338279272, + "min_y": 5208.00108196903, + "max_x": 3043.095596756101, + "max_y": 5208.415237366892, + "center": [ + 3042.1909675176867, + 5208.208159667961 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.095596756101, + 5208.415237366892 + ], + [ + 3041.286338279272, + 5208.00108196903 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3041.286338279272, + "min_y": 5207.336217631155, + "max_x": 3041.286338279272, + "max_y": 5208.00108196903, + "center": [ + 3041.286338279272, + 5207.668649800093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3041.286338279272, + 5208.00108196903 + ], + [ + 3041.286338279272, + 5207.336217631155 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.095596756101, + "min_y": 5206.922062233033, + "max_x": 3043.095596756101, + "max_y": 5208.415237366892, + "center": [ + 3043.095596756101, + 5207.668649799963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.095596756101, + 5206.922062233033 + ], + [ + 3043.095596756101, + 5208.415237366892 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AA3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3038.372385914244, + "min_y": 5209.003394932423, + "max_x": 3046.4355316370766, + "max_y": 5210.4965700662815, + "center": [ + 3042.4039587756606, + 5209.749982499352 + ] + }, + "raw_value": "300Ax250A", + "clean_value": "300Ax250A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AA4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3055.45639911179, + "min_y": 5209.341483340782, + "max_x": 3059.0400194330487, + "max_y": 5210.8346584746405, + "center": [ + 3057.2482092724194, + 5210.088070907712 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AA5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3049.844064632632, + "min_y": 5209.341483340782, + "max_x": 3053.427684953891, + "max_y": 5210.8346584746405, + "center": [ + 3051.635874793262, + 5210.088070907712 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AA6", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3027.208290404456, + "min_y": 5227.404680339891, + "max_x": 3030.791910725715, + "max_y": 5228.897855473749, + "center": [ + 3029.0001005650856, + 5228.15126790682 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.27998715649, + "min_y": 5252.113278663679, + "max_x": 3051.27998715649, + "max_y": 5257.358020874254, + "center": [ + 3051.27998715649, + 5254.735649768967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.27998715649, + 5257.358020874254 + ], + [ + 3051.27998715649, + 5252.113278663679 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557AA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3020.832865212003, + "min_y": 5232.914308730846, + "max_x": 3025.898012560461, + "max_y": 5232.914308730846, + "center": [ + 3023.3654388862324, + 5232.914308730846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3020.832865212003, + 5232.914308730846 + ], + [ + 3025.898012560461, + 5232.914308730846 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.887781510841, + "min_y": 5239.209213018765, + "max_x": 3025.898010695544, + "max_y": 5257.358750948993, + "center": [ + 3025.8928961031925, + 5248.283981983879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.887781510841, + 5239.209213018765 + ], + [ + 3025.898010695544, + 5257.358750948993 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AAA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3041.431045304745, + "min_y": 5239.194560230055, + "max_x": 3049.4941910275775, + "max_y": 5240.687735363913, + "center": [ + 3045.4626181661615, + 5239.941147796984 + ] + }, + "raw_value": "300Ax200A", + "clean_value": "300Ax200A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3114.240366237206, + "min_y": 5297.872525129649, + "max_x": 3114.654521635328, + "max_y": 5299.681783606478, + "center": [ + 3114.447443936267, + 5298.777154368064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.654521635328, + 5299.681783606478 + ], + [ + 3114.240366237206, + 5297.872525129649 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.16134650147, + "min_y": 5297.872525129649, + "max_x": 3113.575501899332, + "max_y": 5299.681783606478, + "center": [ + 3113.368424200401, + 5298.777154368064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.16134650147, + 5299.681783606478 + ], + [ + 3113.575501899332, + 5297.872525129649 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.575501899332, + "min_y": 5297.872525129649, + "max_x": 3114.240366237206, + "max_y": 5297.872525129649, + "center": [ + 3113.9079340682692, + 5297.872525129649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.575501899332, + 5297.872525129649 + ], + [ + 3114.240366237206, + 5297.872525129649 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.16134650147, + "min_y": 5299.681783606478, + "max_x": 3114.654521635328, + "max_y": 5299.681783606478, + "center": [ + 3113.907934068399, + 5299.681783606478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.654521635328, + 5299.681783606478 + ], + [ + 3113.16134650147, + 5299.681783606478 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AAF", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3115.287610481364, + "min_y": 5298.296625988223, + "max_x": 3123.3507562041964, + "max_y": 5299.789801122081, + "center": [ + 3119.31918334278, + 5299.043213555153 + ] + }, + "raw_value": "300Ax250A", + "clean_value": "300Ax250A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.922996462834, + "min_y": 5299.680699540717, + "max_x": 3113.922996462834, + "max_y": 5312.493518889562, + "center": [ + 3113.922996462834, + 5306.087109215139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.922996462834, + 5299.680699540717 + ], + [ + 3113.922996462834, + 5312.493518889562 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3190.708997373028, + "min_y": 5324.467325610878, + "max_x": 3192.202172506885, + "max_y": 5324.467325610878, + "center": [ + 3191.4555849399567, + 5324.467325610878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3190.708997373028, + 5324.467325610878 + ], + [ + 3192.202172506885, + 5324.467325610878 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3190.708997373028, + "min_y": 5324.716188133188, + "max_x": 3192.202172506885, + "max_y": 5324.716188133188, + "center": [ + 3191.4555849399567, + 5324.716188133188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3190.708997373028, + 5324.716188133188 + ], + [ + 3192.202172506885, + 5324.716188133188 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3197.388348205738, + "min_y": 5311.31495571388, + "max_x": 3198.881523339596, + "max_y": 5311.31495571388, + "center": [ + 3198.1349357726667, + 5311.31495571388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3197.388348205738, + 5311.31495571388 + ], + [ + 3198.881523339596, + 5311.31495571388 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3197.388348205738, + "min_y": 5311.56381823619, + "max_x": 3198.881523339596, + "max_y": 5311.56381823619, + "center": [ + 3198.1349357726667, + 5311.56381823619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3197.388348205738, + 5311.56381823619 + ], + [ + 3198.881523339596, + 5311.56381823619 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3191.45664182382, + "min_y": 5313.109958123778, + "max_x": 3191.45664182382, + "max_y": 5324.467199244735, + "center": [ + 3191.45664182382, + 5318.788578684256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3191.45664182382, + 5324.467199244735 + ], + [ + 3191.45664182382, + 5313.109958123778 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3198.133638398234, + "min_y": 5258.077751619208, + "max_x": 3198.133638398234, + "max_y": 5311.314438599419, + "center": [ + 3198.133638398234, + 5284.696095109313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3198.133638398234, + 5311.314438599419 + ], + [ + 3198.133638398234, + 5258.077751619208 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AB7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3146.033113462263, + "min_y": 5210.11185029863, + "max_x": 3154.0962591850953, + "max_y": 5211.605025432488, + "center": [ + 3150.064686323679, + 5210.85843786556 + ] + }, + "raw_value": "DRAIN OUT", + "clean_value": "DRAIN OUT", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AB8", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3122.301808553059, + "min_y": 5222.172778573259, + "max_x": 3124.989523794003, + "max_y": 5223.665953707117, + "center": [ + 3123.645666173531, + 5222.919366140188 + ] + }, + "raw_value": "80A", + "clean_value": "80A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AB9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3113.196797272816, + "min_y": 5235.645804423231, + "max_x": 3115.8845125137605, + "max_y": 5237.138979557089, + "center": [ + 3114.5406548932883, + 5236.392391990161 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557ABA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3108.461091615472, + "min_y": 5249.791206048046, + "max_x": 3108.461091615472, + "max_y": 5278.473571406016, + "center": [ + 3108.461091615472, + 5264.132388727031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3108.461091615472, + 5249.791206048046 + ], + [ + 3108.461091615472, + 5278.473571406016 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557ABB", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3117.204969913163, + "min_y": 5242.150391439032, + "max_x": 3122.244969913163, + "max_y": 5243.350391439032, + "center": [ + 3119.724969913163, + 5242.750391439033 + ] + }, + "raw_value": "25Ax50A", + "clean_value": "25Ax50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557ABC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814819171373, + "min_y": 5237.649793210951, + "max_x": 3119.8869980259, + "max_y": 5237.868602404369, + "center": [ + 3119.3509085986366, + 5237.75919780766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.8869980259, + 5237.649793210951 + ], + [ + 3118.814819171373, + 5237.868602404369 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ABD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814819171373, + "min_y": 5238.743839178063, + "max_x": 3119.8869980259, + "max_y": 5238.962648371489, + "center": [ + 3119.3509085986366, + 5238.853243774776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.8869980259, + 5238.962648371489 + ], + [ + 3118.814819171373, + 5238.743839178063 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ABE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814819171373, + "min_y": 5237.868602404369, + "max_x": 3118.814819171373, + "max_y": 5238.743839178063, + "center": [ + 3118.814819171373, + 5238.306220791216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3118.814819171373, + 5238.743839178063 + ], + [ + 3118.814819171373, + 5237.868602404369 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ABF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3119.8869980259, + "min_y": 5237.649793210951, + "max_x": 3119.8869980259, + "max_y": 5238.962648371489, + "center": [ + 3119.8869980259, + 5238.306220791221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.8869980259, + 5238.962648371489 + ], + [ + 3119.8869980259, + 5237.649793210951 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AC0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3117.241752784533, + "min_y": 5236.093257661238, + "max_x": 3122.281752784533, + "max_y": 5237.2932576612375, + "center": [ + 3119.761752784533, + 5236.693257661238 + ] + }, + "raw_value": "25Ax50A", + "clean_value": "25Ax50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3223.998907677318, + "min_y": 5211.272922520786, + "max_x": 3223.998907677318, + "max_y": 5251.349293913148, + "center": [ + 3223.998907677318, + 5231.311108216967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3223.998907677318, + 5211.272922520786 + ], + [ + 3223.998907677318, + 5251.349293913148 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AC3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3223.503207543183, + "min_y": 5223.400543725261, + "max_x": 3240.525404069163, + "max_y": 5224.893718859119, + "center": [ + 3232.014305806173, + 5224.147131292189 + ] + }, + "raw_value": "CWS-10619-15A-F1A-N", + "clean_value": "CWS-10619-15A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3235.929137593013, + "min_y": 5211.260331024806, + "max_x": 3235.929137593016, + "max_y": 5258.05356758369, + "center": [ + 3235.9291375930143, + 5234.656949304248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3235.929137593016, + 5211.260331024806 + ], + [ + 3235.929137593013, + 5258.05356758369 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AC5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3235.164997174796, + "min_y": 5223.197338830908, + "max_x": 3252.187193700776, + "max_y": 5224.690513964766, + "center": [ + 3243.676095437786, + 5223.943926397837 + ] + }, + "raw_value": "CWR-10629-15A-F1A-N", + "clean_value": "CWR-10629-15A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.898010695645, + "min_y": 5222.962423404318, + "max_x": 3025.898010695674, + "max_y": 5223.69989082665, + "center": [ + 3025.8980106956597, + 5223.331157115484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.898010695645, + 5223.69989082665 + ], + [ + 3025.898010695674, + 5222.962423404318 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.525400608454, + "min_y": 5233.264870776982, + "max_x": 3052.018575742311, + "max_y": 5233.264870776982, + "center": [ + 3051.271988175383, + 5233.264870776982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.018575742311, + 5233.264870776982 + ], + [ + 3050.525400608454, + 5233.264870776982 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557ACA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.599287110605, + "min_y": 5239.091734757312, + "max_x": 3052.013442508725, + "max_y": 5240.900993234141, + "center": [ + 3051.806364809665, + 5239.996363995727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.013442508725, + 5240.900993234141 + ], + [ + 3051.599287110605, + 5239.091734757312 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ACB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.520267374868, + "min_y": 5239.091734757312, + "max_x": 3050.934422772729, + "max_y": 5240.900993234141, + "center": [ + 3050.7273450737985, + 5239.996363995727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.520267374868, + 5240.900993234141 + ], + [ + 3050.934422772729, + 5239.091734757312 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ACC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.934422772729, + "min_y": 5239.091734757312, + "max_x": 3051.599287110605, + "max_y": 5239.091734757312, + "center": [ + 3051.2668549416667, + 5239.091734757312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3050.934422772729, + 5239.091734757312 + ], + [ + 3051.599287110605, + 5239.091734757312 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ACD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3050.520267374868, + "min_y": 5240.900993234141, + "max_x": 3052.013442508725, + "max_y": 5240.900993234141, + "center": [ + 3051.2668549417967, + 5240.900993234141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3052.013442508725, + 5240.900993234141 + ], + [ + 3050.520267374868, + 5240.900993234141 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.266854941768, + "min_y": 5238.354058684365, + "max_x": 3051.266854941798, + "max_y": 5239.091526106696, + "center": [ + 3051.266854941783, + 5238.722792395531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.266854941768, + 5239.091526106696 + ], + [ + 3051.266854941798, + 5238.354058684365 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ACF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.242179363196, + "min_y": 5240.900860831438, + "max_x": 3051.242179363227, + "max_y": 5241.609423397961, + "center": [ + 3051.2421793632116, + 5241.2551421147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.242179363196, + 5241.609423397961 + ], + [ + 3051.242179363227, + 5240.900860831438 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AD0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.229216586911, + "min_y": 5244.982754178269, + "max_x": 3051.229216586911, + "max_y": 5248.815058164741, + "center": [ + 3051.229216586911, + 5246.898906171505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.229216586911, + 5244.982754178269 + ], + [ + 3051.229216586911, + 5248.815058164741 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AD3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3045.85901754958, + "min_y": 5249.693114831054, + "max_x": 3049.442637870839, + "max_y": 5251.186289964912, + "center": [ + 3047.6508277102093, + 5250.439702397984 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AD4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3046.042031380656, + "min_y": 5242.730823682764, + "max_x": 3049.625651701915, + "max_y": 5244.223998816622, + "center": [ + 3047.8338415412854, + 5243.4774112496925 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3051.229243399611, + "min_y": 5247.648249919834, + "max_x": 3056.005213553936, + "max_y": 5247.648249919834, + "center": [ + 3053.6172284767736, + 5247.648249919834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3051.229243399611, + 5247.648249919834 + ], + [ + 3056.005213553936, + 5247.648249919834 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3040.568477976894, + "min_y": 5207.658903405267, + "max_x": 3041.286282087073, + "max_y": 5207.658903405267, + "center": [ + 3040.9273800319834, + 5207.658903405267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3041.286282087073, + 5207.658903405267 + ], + [ + 3040.568477976894, + 5207.658903405267 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3066.657397134534, + "min_y": 5227.184173744061, + "max_x": 3068.466655611363, + "max_y": 5227.598329142184, + "center": [ + 3067.562026372949, + 5227.391251443123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3068.466655611363, + 5227.184173744061 + ], + [ + 3066.657397134534, + 5227.598329142184 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3066.657397134534, + "min_y": 5228.263193480057, + "max_x": 3068.466655611363, + "max_y": 5228.67734887792, + "center": [ + 3067.562026372949, + 5228.470271178989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3068.466655611363, + 5228.67734887792 + ], + [ + 3066.657397134534, + 5228.263193480057 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ADA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3066.657397134534, + "min_y": 5227.598329142184, + "max_x": 3066.657397134534, + "max_y": 5228.263193480057, + "center": [ + 3066.657397134534, + 5227.930761311121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3066.657397134534, + 5228.263193480057 + ], + [ + 3066.657397134534, + 5227.598329142184 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ADB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3068.466655611363, + "min_y": 5227.184173744061, + "max_x": 3068.466655611363, + "max_y": 5228.67734887792, + "center": [ + 3068.466655611363, + 5227.93076131099 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3068.466655611363, + 5227.184173744061 + ], + [ + 3068.466655611363, + 5228.67734887792 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ADC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3065.939536832155, + "min_y": 5227.921014916295, + "max_x": 3066.657340942335, + "max_y": 5227.921014916295, + "center": [ + 3066.298438887245, + 5227.921014916295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3066.657340942335, + 5227.921014916295 + ], + [ + 3065.939536832155, + 5227.921014916295 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ADD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3025.991497450596, + "min_y": 5232.032910472383, + "max_x": 3027.921059896063, + "max_y": 5232.032910472383, + "center": [ + 3026.9562786733295, + 5232.032910472383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3025.991497450596, + 5232.032910472383 + ], + [ + 3027.921059896063, + 5232.032910472383 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557ADE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3030.74425917656, + "min_y": 5232.16463262744, + "max_x": 3032.858007354318, + "max_y": 5232.16463262744, + "center": [ + 3031.8011332654387, + 5232.16463262744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3032.858007354318, + 5232.16463262744 + ], + [ + 3030.74425917656, + 5232.16463262744 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3033.728769523543, + "min_y": 5231.531012306771, + "max_x": 3036.4164847644874, + "max_y": 5233.024187440629, + "center": [ + 3035.0726271440153, + 5232.2775998737 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3032.744982845285, + "min_y": 5231.601451697724, + "max_x": 3033.444701404138, + "max_y": 5231.601451697724, + "center": [ + 3033.0948421247112, + 5231.601451697724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3032.744982845285, + 5231.601451697724 + ], + [ + 3033.444701404138, + 5231.601451697724 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3033.444701404138, + "min_y": 5231.601451697724, + "max_x": 3033.444701404138, + "max_y": 5232.727813557157, + "center": [ + 3033.444701404138, + 5232.16463262744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3033.444701404138, + 5231.601451697724 + ], + [ + 3033.444701404138, + 5232.727813557157 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3032.744982845285, + "min_y": 5232.727813557157, + "max_x": 3033.444701404138, + "max_y": 5232.727813557157, + "center": [ + 3033.0948421247112, + 5232.727813557157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3032.744982845285, + 5232.727813557157 + ], + [ + 3033.444701404138, + 5232.727813557157 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3048.854127176545, + "min_y": 5246.77856110962, + "max_x": 3051.173525620598, + "max_y": 5246.77856110962, + "center": [ + 3050.0138263985714, + 5246.77856110962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3048.854127176545, + 5246.77856110962 + ], + [ + 3051.173525620598, + 5246.77856110962 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3044.535776927226, + "min_y": 5246.77856110962, + "max_x": 3046.036541535158, + "max_y": 5246.77856110962, + "center": [ + 3045.286159231192, + 5246.77856110962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3044.535776927226, + 5246.77856110962 + ], + [ + 3046.036541535158, + 5246.77856110962 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3040.412928460328, + "min_y": 5246.0090994706, + "max_x": 3043.1006437012725, + "max_y": 5247.502274604458, + "center": [ + 3041.7567860808003, + 5246.755687037528 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.949082877406, + "min_y": 5247.341742039336, + "max_x": 3044.648801436259, + "max_y": 5247.341742039336, + "center": [ + 3044.2989421568327, + 5247.341742039336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3044.648801436259, + 5247.341742039336 + ], + [ + 3043.949082877406, + 5247.341742039336 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AE9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.949082877406, + "min_y": 5246.215380179903, + "max_x": 3043.949082877406, + "max_y": 5247.341742039336, + "center": [ + 3043.949082877406, + 5246.77856110962 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3043.949082877406, + 5247.341742039336 + ], + [ + 3043.949082877406, + 5246.215380179903 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3043.949082877406, + "min_y": 5246.215380179903, + "max_x": 3044.648801436259, + "max_y": 5246.215380179903, + "center": [ + 3044.2989421568327, + 5246.215380179903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3044.648801436259, + 5246.215380179903 + ], + [ + 3043.949082877406, + 5246.215380179903 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3113.922722244181, + "min_y": 5256.795501212057, + "max_x": 3115.459750566041, + "max_y": 5256.795501212057, + "center": [ + 3114.691236405111, + 5256.795501212057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3115.459750566041, + 5256.795501212057 + ], + [ + 3113.922722244181, + 5256.795501212057 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AED", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3115.204968870695, + "min_y": 5254.070646304274, + "max_x": 3118.788589191954, + "max_y": 5255.563821438132, + "center": [ + 3116.996779031325, + 5254.817233871203 + ] + }, + "raw_value": "250A", + "clean_value": "250A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AEE", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3335.924996595478, + "min_y": 5191.655818577658, + "max_x": 3341.524403347445, + "max_y": 5192.589053036319, + "center": [ + 3338.7246999714616, + 5192.1224358069885 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557AEF", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3352.901114200085, + "min_y": 5191.645374641473, + "max_x": 3357.3806396016585, + "max_y": 5192.578609100134, + "center": [ + 3355.1408769008717, + 5192.111991870803 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557AF0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3119.935879847457, + "min_y": 5218.836670249323, + "max_x": 3125.3113103293454, + "max_y": 5220.329845383181, + "center": [ + 3122.623595088401, + 5219.583257816252 + ] + }, + "raw_value": "80x50A", + "clean_value": "80x50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557AF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.881645085156, + "min_y": 5218.733844776579, + "max_x": 3127.295800483277, + "max_y": 5220.543103253408, + "center": [ + 3127.0887227842168, + 5219.638474014993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.295800483277, + 5220.543103253408 + ], + [ + 3126.881645085156, + 5218.733844776579 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3125.80262534942, + "min_y": 5218.733844776579, + "max_x": 3126.21678074728, + "max_y": 5220.543103253408, + "center": [ + 3126.0097030483503, + 5219.638474014993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3125.80262534942, + 5220.543103253408 + ], + [ + 3126.21678074728, + 5218.733844776579 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.21678074728, + "min_y": 5218.733844776579, + "max_x": 3126.881645085156, + "max_y": 5218.733844776579, + "center": [ + 3126.549212916218, + 5218.733844776579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3126.21678074728, + 5218.733844776579 + ], + [ + 3126.881645085156, + 5218.733844776579 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3125.80262534942, + "min_y": 5220.543103253408, + "max_x": 3127.295800483277, + "max_y": 5220.543103253408, + "center": [ + 3126.5492129163486, + 5220.543103253408 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3127.295800483277, + 5220.543103253408 + ], + [ + 3125.80262534942, + 5220.543103253408 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3126.535902073674, + "min_y": 5216.849324444889, + "max_x": 3126.535902073674, + "max_y": 5218.734016090641, + "center": [ + 3126.535902073674, + 5217.791670267765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3126.535902073674, + 5218.734016090641 + ], + [ + 3126.535902073674, + 5216.849324444889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557AF6", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3335.904732399385, + "min_y": 5195.14826633052, + "max_x": 3341.504139151352, + "max_y": 5196.081500789181, + "center": [ + 3338.7044357753684, + 5195.614883559851 + ] + }, + "raw_value": "2025.06.19", + "clean_value": "2025.06.19", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557AF7", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3352.828431829138, + "min_y": 5195.105701694942, + "max_x": 3357.3079572307115, + "max_y": 5196.038936153603, + "center": [ + 3355.0681945299248, + 5195.572318924273 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557AF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814496316208, + "min_y": 5243.755718518337, + "max_x": 3119.886675170735, + "max_y": 5243.974527711755, + "center": [ + 3119.3505857434716, + 5243.865123115046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.886675170735, + 5243.755718518337 + ], + [ + 3118.814496316208, + 5243.974527711755 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814496316208, + "min_y": 5244.84976448545, + "max_x": 3119.886675170735, + "max_y": 5245.068573678875, + "center": [ + 3119.3505857434716, + 5244.959169082162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.886675170735, + 5245.068573678875 + ], + [ + 3118.814496316208, + 5244.84976448545 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3118.814496316208, + "min_y": 5243.974527711755, + "max_x": 3118.814496316208, + "max_y": 5244.84976448545, + "center": [ + 3118.814496316208, + 5244.4121460986025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3118.814496316208, + 5244.84976448545 + ], + [ + 3118.814496316208, + 5243.974527711755 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3119.886675170735, + "min_y": 5243.755718518337, + "max_x": 3119.886675170735, + "max_y": 5245.068573678875, + "center": [ + 3119.886675170735, + 5244.412146098606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.886675170735, + 5245.068573678875 + ], + [ + 3119.886675170735, + 5243.755718518337 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557AFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3119.886696681655, + "min_y": 5244.468475554304, + "max_x": 3123.54666726801, + "max_y": 5244.468475554304, + "center": [ + 3121.7166819748327, + 5244.468475554304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.886696681655, + 5244.468475554304 + ], + [ + 3123.54666726801, + 5244.468475554304 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557AFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3119.886977525445, + "min_y": 5238.36349439279, + "max_x": 3123.54666726801, + "max_y": 5238.36349439279, + "center": [ + 3121.7168223967274, + 5238.36349439279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3119.886977525445, + 5238.36349439279 + ], + [ + 3123.54666726801, + 5238.36349439279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557AFE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.293400682642, + "min_y": 5243.674518981194, + "max_x": 3113.293400682642, + "max_y": 5245.18529310775, + "center": [ + 3113.293400682642, + 5244.429906044472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.293400682642, + 5243.674518981194 + ], + [ + 3113.293400682642, + 5245.18529310775 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557AFF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3115.715761116192, + "min_y": 5243.674518981194, + "max_x": 3115.715761116192, + "max_y": 5245.18529310775, + "center": [ + 3115.715761116192, + 5244.429906044472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3115.715761116192, + 5243.674518981194 + ], + [ + 3115.715761116192, + 5245.18529310775 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B00", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.293400682642, + "min_y": 5244.670395237824, + "max_x": 3114.118982882852, + "max_y": 5245.18529310775, + "center": [ + 3113.706191782747, + 5244.927844172787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.293400682642, + 5245.18529310775 + ], + [ + 3114.118982882852, + 5244.670395237824 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B01", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.293400682642, + "min_y": 5243.674518981194, + "max_x": 3114.118982882852, + "max_y": 5244.18941685112, + "center": [ + 3113.706191782747, + 5243.931967916156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.293400682642, + 5243.674518981194 + ], + [ + 3114.118982882852, + 5244.18941685112 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B02", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.0501352123456, + "min_y": 5243.975460357403, + "max_x": 3114.9590265864845, + "max_y": 5244.884351731543, + "center": [ + 3114.504580899415, + 5244.429906044473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.504580899415, + 5244.429906044473 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B03", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.890178915978, + "min_y": 5244.670395237824, + "max_x": 3115.715761116192, + "max_y": 5245.18529310775, + "center": [ + 3115.302970016085, + 5244.927844172787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.890178915978, + 5244.670395237824 + ], + [ + 3115.715761116192, + 5245.18529310775 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B04", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.890178915978, + "min_y": 5243.674518981194, + "max_x": 3115.715761116192, + "max_y": 5244.18941685112, + "center": [ + 3115.302970016085, + 5243.931967916156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.890178915978, + 5244.18941685112 + ], + [ + 3115.715761116192, + 5243.674518981194 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B05", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3116.212988435766, + "min_y": 5243.674518981194, + "max_x": 3116.212988435766, + "max_y": 5245.18529310775, + "center": [ + 3116.212988435766, + 5244.429906044472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3116.212988435766, + 5243.674518981194 + ], + [ + 3116.212988435766, + 5245.18529310775 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B06", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3112.796173363068, + "min_y": 5243.674518981194, + "max_x": 3112.796173363068, + "max_y": 5245.18529310775, + "center": [ + 3112.796173363068, + 5244.429906044472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3112.796173363068, + 5243.674518981194 + ], + [ + 3112.796173363068, + 5245.18529310775 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B07", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.335651167803, + "min_y": 5237.619332979722, + "max_x": 3113.335651167803, + "max_y": 5239.130107106277, + "center": [ + 3113.335651167803, + 5238.374720042999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.335651167803, + 5237.619332979722 + ], + [ + 3113.335651167803, + 5239.130107106277 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B08", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3115.758011601353, + "min_y": 5237.619332979722, + "max_x": 3115.758011601353, + "max_y": 5239.130107106277, + "center": [ + 3115.758011601353, + 5238.374720042999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3115.758011601353, + 5237.619332979722 + ], + [ + 3115.758011601353, + 5239.130107106277 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B09", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.335651167803, + "min_y": 5238.615209236351, + "max_x": 3114.161233368014, + "max_y": 5239.130107106277, + "center": [ + 3113.7484422679086, + 5238.8726581713145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.335651167803, + 5239.130107106277 + ], + [ + 3114.161233368014, + 5238.615209236351 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3113.335651167803, + "min_y": 5237.619332979722, + "max_x": 3114.161233368014, + "max_y": 5238.134230849647, + "center": [ + 3113.7484422679086, + 5237.876781914684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3113.335651167803, + 5237.619332979722 + ], + [ + 3114.161233368014, + 5238.134230849647 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.0923856975064, + "min_y": 5237.92027435593, + "max_x": 3115.0012770716453, + "max_y": 5238.82916573007, + "center": [ + 3114.546831384576, + 5238.374720043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.546831384576, + 5238.374720043 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.932429401139, + "min_y": 5238.615209236351, + "max_x": 3115.758011601353, + "max_y": 5239.130107106277, + "center": [ + 3115.345220501246, + 5238.8726581713145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.932429401139, + 5238.615209236351 + ], + [ + 3115.758011601353, + 5239.130107106277 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3114.932429401139, + "min_y": 5237.619332979722, + "max_x": 3115.758011601353, + "max_y": 5238.134230849647, + "center": [ + 3115.345220501246, + 5237.876781914684 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3114.932429401139, + 5238.134230849647 + ], + [ + 3115.758011601353, + 5237.619332979722 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3116.255238920928, + "min_y": 5237.619332979722, + "max_x": 3116.255238920928, + "max_y": 5239.130107106277, + "center": [ + 3116.255238920928, + 5238.374720042999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3116.255238920928, + 5237.619332979722 + ], + [ + 3116.255238920928, + 5239.130107106277 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B0F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 3112.838423848229, + "min_y": 5237.619332979722, + "max_x": 3112.838423848229, + "max_y": 5239.130107106277, + "center": [ + 3112.838423848229, + 5238.374720042999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3112.838423848229, + 5237.619332979722 + ], + [ + 3112.838423848229, + 5239.130107106277 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5312.493518889562, + "max_x": 3281.164733886757, + "max_y": 5323.692830004664, + "center": [ + 3281.164733886757, + 5318.093174447113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5312.493518889562 + ], + [ + 3281.164733886757, + 5323.692830004664 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5325.401019785918, + "max_x": 3287.84173046117, + "max_y": 5391.477773793244, + "center": [ + 3287.84173046117, + 5358.439396789581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5325.401019785918 + ], + [ + 3287.84173046117, + 5391.477773793244 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5327.109209567174, + "max_x": 3281.164733886757, + "max_y": 5391.477773793242, + "center": [ + 3281.164733886757, + 5359.293491680208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5327.109209567174 + ], + [ + 3281.164733886757, + 5391.477773793242 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5410.374316626895, + "max_x": 3314.787628856742, + "max_y": 5410.374316626895, + "center": [ + 3301.314679658956, + 5410.374316626895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5410.374316626895 + ], + [ + 3314.787628856742, + 5410.374316626895 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5429.556959983339, + "max_x": 3314.787628856742, + "max_y": 5429.556959983339, + "center": [ + 3297.9761813717496, + 5429.556959983339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5429.556959983339 + ], + [ + 3314.787628856742, + 5429.556959983339 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B17", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3286.546152500913, + "min_y": 5326.377246272428, + "max_x": 3303.568349026893, + "max_y": 5327.870421406286, + "center": [ + 3295.057250763903, + 5327.123833839358 + ] + }, + "raw_value": "CWS-10615-50A-S2A-N", + "clean_value": "CWS-10615-50A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B18", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3280.186502409854, + "min_y": 5326.04105215158, + "max_x": 3297.2086989358336, + "max_y": 5327.534227285438, + "center": [ + 3288.6976006728437, + 5326.787639718508 + ] + }, + "raw_value": "CWR-10625-50A-S2A-N", + "clean_value": "CWR-10625-50A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3214.036092169597, + "min_y": 5327.949925013762, + "max_x": 3214.036092169597, + "max_y": 5407.114431111138, + "center": [ + 3214.036092169597, + 5367.532178062451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3214.036092169597, + 5327.949925013762 + ], + [ + 3214.036092169597, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3240.74623931806, + "min_y": 5328.550447526612, + "max_x": 3240.74623931806, + "max_y": 5407.114431111138, + "center": [ + 3240.74623931806, + 5367.832439318875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3240.74623931806, + 5328.550447526612 + ], + [ + 3240.74623931806, + 5407.114431111138 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.089634477955, + "min_y": 5407.332281018194, + "max_x": 3287.503789876077, + "max_y": 5409.141539495024, + "center": [ + 3287.296712177016, + 5408.236910256609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.089634477955, + 5407.332281018194 + ], + [ + 3287.503789876077, + 5409.141539495024 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3288.168654213951, + "min_y": 5407.332281018194, + "max_x": 3288.582809611814, + "max_y": 5409.141539495024, + "center": [ + 3288.3757319128827, + 5408.236910256609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3288.582809611814, + 5407.332281018194 + ], + [ + 3288.168654213951, + 5409.141539495024 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.503789876077, + "min_y": 5409.141539495024, + "max_x": 3288.168654213951, + "max_y": 5409.141539495024, + "center": [ + 3287.836222045014, + 5409.141539495024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3288.168654213951, + 5409.141539495024 + ], + [ + 3287.503789876077, + 5409.141539495024 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.089634477955, + "min_y": 5407.332281018194, + "max_x": 3288.582809611814, + "max_y": 5407.332281018194, + "center": [ + 3287.8362220448844, + 5407.332281018194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.089634477955, + 5407.332281018194 + ], + [ + 3288.582809611814, + 5407.332281018194 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3280.418067116127, + "min_y": 5407.332281018193, + "max_x": 3280.83222251425, + "max_y": 5409.141539495022, + "center": [ + 3280.625144815189, + 5408.236910256607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3280.418067116127, + 5407.332281018193 + ], + [ + 3280.83222251425, + 5409.141539495022 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.497086852124, + "min_y": 5407.332281018193, + "max_x": 3281.911242249986, + "max_y": 5409.141539495022, + "center": [ + 3281.7041645510553, + 5408.236910256607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.911242249986, + 5407.332281018193 + ], + [ + 3281.497086852124, + 5409.141539495022 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3280.83222251425, + "min_y": 5409.141539495022, + "max_x": 3281.497086852124, + "max_y": 5409.141539495022, + "center": [ + 3281.164654683187, + 5409.141539495022 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.497086852124, + 5409.141539495022 + ], + [ + 3280.83222251425, + 5409.141539495022 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3280.418067116127, + "min_y": 5407.332281018193, + "max_x": 3281.911242249986, + "max_y": 5407.332281018193, + "center": [ + 3281.1646546830566, + 5407.332281018193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3280.418067116127, + 5407.332281018193 + ], + [ + 3281.911242249986, + 5407.332281018193 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B23", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3272.978483970638, + "min_y": 5407.548809186559, + "max_x": 3279.2498195328412, + "max_y": 5409.041984320417, + "center": [ + 3276.11415175174, + 5408.295396753489 + ] + }, + "raw_value": "50Ax25A", + "clean_value": "50Ax25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B24", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3289.128581392371, + "min_y": 5407.489918635377, + "max_x": 3295.399916954574, + "max_y": 5408.983093769235, + "center": [ + 3292.2642491734723, + 5408.2365062023055 + ] + }, + "raw_value": "50Ax25A", + "clean_value": "50Ax25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B25", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3318.466516240687, + "min_y": 5364.119966069509, + "max_x": 3328.1834730471596, + "max_y": 5365.739458870588, + "center": [ + 3323.324994643923, + 5364.929712470049 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B26", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3322.298549628718, + "min_y": 5357.37274739127, + "max_x": 3340.760767561016, + "max_y": 5358.9922401923495, + "center": [ + 3331.529658594867, + 5358.18249379181 + ] + }, + "raw_value": "Double Jacket Pipe2", + "clean_value": "Double Jacket Pipe2", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B27", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3314.72918113888, + "min_y": 5355.978646030003, + "max_x": 3324.442231273945, + "max_y": 5379.69362558055, + "center": [ + 3319.5857062064124, + 5367.836135805277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.72918113888, + 5379.69362558055 + ], + [ + 3324.442231273945, + 5379.69362558055 + ], + [ + 3324.442231273945, + 5355.978646030003 + ], + [ + 3314.72918113888, + 5355.978646030003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557B28", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3318.471885236874, + "min_y": 5338.46806366613, + "max_x": 3328.188842043347, + "max_y": 5340.087556467209, + "center": [ + 3323.3303636401106, + 5339.277810066669 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3322.303918624905, + "min_y": 5330.924701009985, + "max_x": 3340.766136557203, + "max_y": 5332.544193811064, + "center": [ + 3331.535027591054, + 5331.734447410525 + ] + }, + "raw_value": "Double Jacket Pipe1", + "clean_value": "Double Jacket Pipe1", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B2A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3314.734550135066, + "min_y": 5329.394017592523, + "max_x": 3324.447600270132, + "max_y": 5353.10899714307, + "center": [ + 3319.5910752025993, + 5341.251507367797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.734550135066, + 5353.10899714307 + ], + [ + 3324.447600270132, + 5353.10899714307 + ], + [ + 3324.447600270132, + 5329.394017592523 + ], + [ + 3314.734550135066, + 5329.394017592523 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557B2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5331.725452513143, + "max_x": 3314.734550135066, + "max_y": 5331.725452513143, + "center": [ + 3301.288140298118, + 5331.725452513143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.734550135066, + 5331.725452513143 + ], + [ + 3287.84173046117, + 5331.725452513143 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5358.827207752856, + "max_x": 3314.72918113888, + "max_y": 5358.827207752856, + "center": [ + 3301.285455800025, + 5358.827207752856 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5358.827207752856 + ], + [ + 3314.72918113888, + 5358.827207752856 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5374.581133821163, + "max_x": 3314.72918113888, + "max_y": 5374.581133821163, + "center": [ + 3301.285455800025, + 5374.581133821163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.72918113888, + 5374.581133821163 + ], + [ + 3287.84173046117, + 5374.581133821163 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5348.600276429969, + "max_x": 3314.734550135066, + "max_y": 5348.600276429969, + "center": [ + 3301.288140298118, + 5348.600276429969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.734550135066, + 5348.600276429969 + ], + [ + 3287.84173046117, + 5348.600276429969 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5374.581133821163, + "max_x": 3285.717616982289, + "max_y": 5374.581133821163, + "center": [ + 3283.441175434523, + 5374.581133821163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3285.717616982289, + 5374.581133821163 + ], + [ + 3281.164733886757, + 5374.581133821163 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5348.600276429969, + "max_x": 3285.28485841354, + "max_y": 5348.600276429969, + "center": [ + 3283.2247961501484, + 5348.600276429969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3285.28485841354, + 5348.600276429969 + ], + [ + 3281.164733886757, + 5348.600276429969 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "557B35", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.31937988202, + "min_y": 5328.527161146712, + "max_x": 3307.3415764079996, + "max_y": 5330.0203362805705, + "center": [ + 3298.8304781450097, + 5329.273748713642 + ] + }, + "raw_value": "CWS-10616-25A-S2A-N", + "clean_value": "CWS-10616-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B36", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.303719196405, + "min_y": 5361.056527938548, + "max_x": 3307.3259157223847, + "max_y": 5362.549703072406, + "center": [ + 3298.814817459395, + 5361.803115505478 + ] + }, + "raw_value": "CWS-10617-25A-S2A-N", + "clean_value": "CWS-10617-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B37", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.231025295203, + "min_y": 5345.068533420814, + "max_x": 3307.2532218211827, + "max_y": 5346.561708554672, + "center": [ + 3298.742123558193, + 5345.815120987743 + ] + }, + "raw_value": "CWR-10626-25A-S2A-N", + "clean_value": "CWR-10626-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B38", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.231025295204, + "min_y": 5376.597505167339, + "max_x": 3307.2532218211836, + "max_y": 5378.090680301197, + "center": [ + 3298.7421235581937, + 5377.344092734267 + ] + }, + "raw_value": "CWR-10627-25A-S2A-N", + "clean_value": "CWR-10627-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B39", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.334080652471, + "min_y": 5411.868216868047, + "max_x": 3307.356277178451, + "max_y": 5413.361392001905, + "center": [ + 3298.845178915461, + 5412.614804434976 + ] + }, + "raw_value": "CWS-10618-25A-S2A-N", + "clean_value": "CWS-10618-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B3A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.641286826588, + "min_y": 5430.183900630282, + "max_x": 3307.6634833525677, + "max_y": 5431.67707576414, + "center": [ + 3299.152385089578, + 5430.930488197211 + ] + }, + "raw_value": "CWR-10628-25A-S2A-N", + "clean_value": "CWR-10628-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5391.477773793242, + "max_x": 3281.164733886757, + "max_y": 5398.164390253801, + "center": [ + 3281.164733886757, + 5394.821082023522 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5391.477773793242 + ], + [ + 3281.164733886757, + 5398.164390253801 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5391.477773793244, + "max_x": 3287.84173046117, + "max_y": 5398.164390253802, + "center": [ + 3287.84173046117, + 5394.821082023523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5391.477773793244 + ], + [ + 3287.84173046117, + 5398.164390253802 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B3D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3318.524963958548, + "min_y": 5415.914006615432, + "max_x": 3328.241920765021, + "max_y": 5417.533499416511, + "center": [ + 3323.3834423617845, + 5416.723753015972 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B3E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3322.35699734658, + "min_y": 5409.166787937195, + "max_x": 3340.8192152788783, + "max_y": 5410.786280738274, + "center": [ + 3331.588106312729, + 5409.976534337735 + ] + }, + "raw_value": "Double Jacket Pipe4", + "clean_value": "Double Jacket Pipe4", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B3F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3314.787628856742, + "min_y": 5407.772686575927, + "max_x": 3324.500678991807, + "max_y": 5431.487666126475, + "center": [ + 3319.644153924274, + 5419.630176351201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.787628856742, + 5431.487666126475 + ], + [ + 3324.500678991807, + 5431.487666126475 + ], + [ + 3324.500678991807, + 5407.772686575927 + ], + [ + 3314.787628856742, + 5407.772686575927 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557B42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5398.164390253802, + "max_x": 3287.84173046117, + "max_y": 5407.332281018194, + "center": [ + 3287.84173046117, + 5402.748335635998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5398.164390253802 + ], + [ + 3287.84173046117, + 5407.332281018194 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5398.164390253801, + "max_x": 3281.164733886757, + "max_y": 5407.332281018193, + "center": [ + 3281.164733886757, + 5402.748335635997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5398.164390253801 + ], + [ + 3281.164733886757, + 5407.332281018193 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B44", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3335.925069847495, + "min_y": 5198.683172823941, + "max_x": 3341.5244765994617, + "max_y": 5199.616407282602, + "center": [ + 3338.724773223478, + 5199.149790053272 + ] + }, + "raw_value": "2025.07.07", + "clean_value": "2025.07.07", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557B45", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 3352.903463650354, + "min_y": 5198.606580188664, + "max_x": 3357.3829890519273, + "max_y": 5199.539814647325, + "center": [ + 3355.1432263511406, + 5199.073197417994 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557B46", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2919.15577381936, + "min_y": 5136.515210304252, + "max_x": 2936.5412231744303, + "max_y": 5138.326194612072, + "center": [ + 2927.8484984968954, + 5137.420702458162 + ] + }, + "raw_value": "SARF-#10-PID-003", + "clean_value": "SARF-#10-PID-003", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B47", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2906.34726207803, + "min_y": 5147.339890860854, + "max_x": 2933.9432134352837, + "max_y": 5149.639553473959, + "center": [ + 2920.1452377566566, + 5148.489722167406 + ] + }, + "raw_value": "UTILITY FLOW DIAGRAM", + "clean_value": "UTILITY FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B48", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2540.23945149377, + "min_y": 5192.932352371632, + "max_x": 2566.370016336283, + "max_y": 5194.732352371632, + "center": [ + 2553.304733915026, + 5193.832352371632 + ] + }, + "raw_value": "\\pi7.73599;{\\W0.9;\\LSC-10128\\P\\pi7.11173;\\lSCRUBBER}", + "clean_value": "\\pi7.73599; .9; SC-10128 \\pi7.11173;\\lSCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B4C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2542.28176579566, + "min_y": 5185.163208412376, + "max_x": 2583.031756162582, + "max_y": 5186.963208412376, + "center": [ + 2562.656760979121, + 5186.063208412375 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C750 x 3,641L (30m3/min)\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 30 %%DC \\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B50", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2542.177867267708, + "min_y": 5166.782232079711, + "max_x": 2562.7090253582537, + "max_y": 5168.5822320797115, + "center": [ + 2552.443446312981, + 5167.682232079711 + ] + }, + "raw_value": "\\pi3.78668;{\\W0.9;\\LP-10128A/B\\P\\pi0.77308;SCRUBBER PUMP}", + "clean_value": "\\pi3.78668; .9; P-10128A/B \\pi0.77308;SCRUBBER PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B54", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2543.560205761963, + "min_y": 5159.10740338812, + "max_x": 2567.885927792983, + "max_y": 5160.90740338812, + "center": [ + 2555.723066777473, + 5160.007403388119 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 100L/min\\PSIZE : 50A/40A}\\PMATERIAL : STS316\\PPRESSURE : 0.2MPa\\PRPM: 3,600", + "clean_value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,600", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B58", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2912.035124998057, + "min_y": 5143.110495670952, + "max_x": 2929.972493380272, + "max_y": 5145.410158284057, + "center": [ + 2921.0038091891647, + 5144.2603269775045 + ] + }, + "raw_value": "VENT GAS LINE", + "clean_value": "VENT GAS LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.397190762271, + "min_y": 5183.518189071128, + "max_x": 2686.686209098836, + "max_y": 5191.570478243239, + "center": [ + 2678.5416999305535, + 5187.544333657184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.686209098836, + 5191.570478243239 + ], + [ + 2670.397190762271, + 5183.518189071128 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.397190762271, + "min_y": 5159.518890074213, + "max_x": 2670.397190762271, + "max_y": 5183.518189071128, + "center": [ + 2670.397190762271, + 5171.518539572671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.397190762271, + 5183.518189071128 + ], + [ + 2670.397190762271, + 5159.518890074213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.686209098836, + "min_y": 5183.518189071128, + "max_x": 2702.672247244196, + "max_y": 5191.570478243239, + "center": [ + 2694.679228171516, + 5187.544333657184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.686209098836, + 5191.570478243239 + ], + [ + 2702.672247244196, + 5183.518189071128 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2702.672247244196, + "min_y": 5159.518890074213, + "max_x": 2702.672247244196, + "max_y": 5183.518189071128, + "center": [ + 2702.672247244196, + 5171.518539572671 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2702.672247244196, + 5183.518189071128 + ], + [ + 2702.672247244196, + 5159.518890074213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.613902855572, + "min_y": 5186.393078933879, + "max_x": 2674.17466374667, + "max_y": 5186.393078933879, + "center": [ + 2673.394283301121, + 5186.393078933879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.17466374667, + 5186.393078933879 + ], + [ + 2672.613902855572, + 5186.393078933879 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.394283301116, + "min_y": 5162.113180414985, + "max_x": 2673.394283301116, + "max_y": 5186.393078933879, + "center": [ + 2673.394283301116, + 5174.253129674433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.394283301116, + 5186.393078933879 + ], + [ + 2673.394283301116, + 5162.113180414985 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B5F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.394283301116, + "min_y": 5186.393078933879, + "max_x": 2673.394283301116, + "max_y": 5189.372149611017, + "center": [ + 2673.394283301116, + 5187.882614272448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.394283301116, + 5186.393078933879 + ], + [ + 2673.394283301116, + 5189.372149611017 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2676.350203009464, + "min_y": 5194.731984903741, + "max_x": 2682.557406102398, + "max_y": 5195.881466957988, + "center": [ + 2679.453804555931, + 5195.306725930865 + ] + }, + "raw_value": "EMERGENCY", + "clean_value": "EMERGENCY", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.777040577731, + "min_y": 5188.135252227947, + "max_x": 2679.777040577731, + "max_y": 5190.622682651145, + "center": [ + 2679.777040577731, + 5189.378967439546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.777040577731, + 5190.622682651145 + ], + [ + 2679.777040577731, + 5188.135252227947 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2681.88587649648, + "min_y": 5189.197488942267, + "max_x": 2681.88587649648, + "max_y": 5190.622682651145, + "center": [ + 2681.88587649648, + 5189.910085796706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2681.88587649648, + 5190.622682651145 + ], + [ + 2681.88587649648, + 5189.197488942267 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.369892361819, + "min_y": 5190.622682651145, + "max_x": 2682.293024712388, + "max_y": 5190.62268265133, + "center": [ + 2680.8314585371036, + 5190.6226826512375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.369892361819, + 5190.62268265133 + ], + [ + 2682.293024712388, + 5190.622682651145 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.369892361819, + "min_y": 5191.319338441707, + "max_x": 2682.293024712388, + "max_y": 5191.319338441707, + "center": [ + 2680.8314585371036, + 5191.319338441707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.369892361819, + 5191.319338441707 + ], + [ + 2682.293024712388, + 5191.319338441707 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B65", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2678.481921767714, + "min_y": 5193.075141133515, + "max_x": 2681.9303679304553, + "max_y": 5194.224623187762, + "center": [ + 2680.206144849085, + 5193.649882160638 + ] + }, + "raw_value": "HATCH", + "clean_value": "HATCH", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2675.73468461893, + "min_y": 5188.406745899907, + "max_x": 2677.295445510028, + "max_y": 5188.406745899907, + "center": [ + 2676.515065064479, + 5188.406745899907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2677.295445510028, + 5188.406745899907 + ], + [ + 2675.73468461893, + 5188.406745899907 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.515065064482, + "min_y": 5164.126847381024, + "max_x": 2676.515065064482, + "max_y": 5188.406745899907, + "center": [ + 2676.515065064482, + 5176.266796640466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.515065064482, + 5188.406745899907 + ], + [ + 2676.515065064482, + 5164.126847381024 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2679.220494347164, + "min_y": 5186.167605185725, + "max_x": 2681.9792512773565, + "max_y": 5187.317087239971, + "center": [ + 2680.5998728122604, + 5186.742346212848 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.02517986668, + "min_y": 5200.180952825399, + "max_x": 2819.553594293437, + "max_y": 5200.180952825399, + "center": [ + 2786.7893870800585, + 5200.180952825399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.02517986668, + 5200.180952825399 + ], + [ + 2819.553594293437, + 5200.180952825399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5242.415607721483, + "max_x": 2867.225952892818, + "max_y": 5242.415607721483, + "center": [ + 2827.055934225666, + 5242.415607721483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2786.885915558514, + 5242.415607721483 + ], + [ + 2867.225952892818, + 5242.415607721483 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557B6B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2861.764109019785, + "min_y": 5147.269416101522, + "max_x": 2865.3477293410438, + "max_y": 5150.255766369238, + "center": [ + 2863.555919180414, + 5148.76259123538 + ] + }, + "raw_value": "1F", + "clean_value": "1F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B6C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5243.883022740477, + "max_x": 2865.621078278011, + "max_y": 5246.869373008192, + "center": [ + 2863.8292681173816, + 5245.376197874335 + ] + }, + "raw_value": "3F", + "clean_value": "3F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5299.333635951863, + "max_x": 2865.621078278011, + "max_y": 5302.319986219578, + "center": [ + 2863.8292681173816, + 5300.826811085721 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5298.537625631313, + "max_x": 2867.225952892818, + "max_y": 5298.537625631313, + "center": [ + 2827.055934225666, + 5298.537625631313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2786.885915558514, + 5298.537625631313 + ], + [ + 2867.225952892818, + 5298.537625631313 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557B6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5204.212811282579, + "max_x": 2865.621078278011, + "max_y": 5207.199161550295, + "center": [ + 2863.8292681173816, + 5205.705986416437 + ] + }, + "raw_value": "2F", + "clean_value": "2F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5203.136416767941, + "max_x": 2867.225952892818, + "max_y": 5203.136416767941, + "center": [ + 2827.055934225666, + 5203.136416767941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2786.885915558514, + 5203.136416767941 + ], + [ + 2867.225952892818, + 5203.136416767941 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557B71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5142.304702005471, + "max_x": 2867.225952892818, + "max_y": 5142.304702005471, + "center": [ + 2827.055934225666, + 5142.304702005471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2786.885915558514, + 5142.304702005471 + ], + [ + 2867.225952892818, + 5142.304702005471 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557B72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2801.057162696168, + "min_y": 5216.421134403325, + "max_x": 2801.057162696169, + "max_y": 5280.886960700914, + "center": [ + 2801.0571626961682, + 5248.65404755212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.057162696168, + 5216.421134403325 + ], + [ + 2801.057162696169, + 5280.886960700914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B73", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2809.611617347769, + "min_y": 5256.673039228059, + "max_x": 2825.737908793434, + "max_y": 5258.166214361917, + "center": [ + 2817.6747630706013, + 5257.419626794988 + ] + }, + "raw_value": "VG-10421-50A-F1A-N", + "clean_value": "VG-10421-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B74", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2798.2574593201844, + "min_y": 5210.821727651357, + "max_x": 2803.856866072151, + "max_y": 5216.421134403325, + "center": [ + 2801.057162696168, + 5213.621431027341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.057162696168, + 5213.621431027341 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B75", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2800.114811250886, + "min_y": 5214.180125616461, + "max_x": 2801.9066214115155, + "max_y": 5215.673300750319, + "center": [ + 2801.0107163312005, + 5214.926713183389 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B76", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2799.25253325455, + "min_y": 5211.771556048633, + "max_x": 2803.7320586561236, + "max_y": 5213.264731182491, + "center": [ + 2801.492295955337, + 5212.518143615562 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B77", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2807.5068699339236, + "min_y": 5248.420679070166, + "max_x": 2813.1062766858904, + "max_y": 5254.020085822134, + "center": [ + 2810.306573309907, + 5251.22038244615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.306573309907, + 5251.22038244615 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B78", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2809.364221864624, + "min_y": 5251.779077035271, + "max_x": 2811.156032025254, + "max_y": 5253.272252169129, + "center": [ + 2810.2601269449387, + 5252.525664602201 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B79", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2808.501943868288, + "min_y": 5249.370507467443, + "max_x": 2812.9814692698615, + "max_y": 5250.863682601301, + "center": [ + 2810.7417065690747, + 5250.117095034371 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557B7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2660.546675070676, + "min_y": 5388.61262801203, + "max_x": 2660.546675070676, + "max_y": 5397.745228107389, + "center": [ + 2660.546675070676, + 5393.1789280597095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.546675070676, + 5388.61262801203 + ], + [ + 2660.546675070676, + 5397.745228107389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.670600507544, + "min_y": 5298.15567070841, + "max_x": 2653.68795193884, + "max_y": 5365.683008269349, + "center": [ + 2653.6792762231917, + 5331.919339488879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.68795193884, + 5365.683008269349 + ], + [ + 2653.670600507544, + 5298.15567070841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357932, + "min_y": 5298.15567070841, + "max_x": 2667.405398201845, + "max_y": 5365.683008269349, + "center": [ + 2667.4033072798884, + 5331.919339488879 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.405398201845, + 5365.683008269349 + ], + [ + 2667.401216357932, + 5298.15567070841 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.679436942857, + "min_y": 5319.543326848196, + "max_x": 2667.40565580715, + "max_y": 5319.544316277108, + "center": [ + 2660.5425463750034, + 5319.543821562652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.679436942857, + 5319.544316277108 + ], + [ + 2667.40565580715, + 5319.543326848196 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.683885261666, + "min_y": 5319.543326848196, + "max_x": 2667.40565580715, + "max_y": 5360.72655882657, + "center": [ + 2660.544770534408, + 5340.134942837383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.40565580715, + 5319.543326848196 + ], + [ + 2653.683885261666, + 5360.72655882657 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.679436942857, + "min_y": 5319.544316277108, + "max_x": 2667.411905343403, + "max_y": 5360.725568557449, + "center": [ + 2660.5456711431298, + 5340.134942417279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.411905343403, + 5360.725568557449 + ], + [ + 2653.679436942857, + 5319.544316277108 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.683885261666, + "min_y": 5360.725568557449, + "max_x": 2667.411905343403, + "max_y": 5360.72655882657, + "center": [ + 2660.5478953025345, + 5360.726063692009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.683885261666, + 5360.72655882657 + ], + [ + 2667.411905343403, + 5360.725568557449 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.68795193884, + "min_y": 5365.683008269349, + "max_x": 2656.803920223096, + "max_y": 5368.416084344217, + "center": [ + 2655.245936080968, + 5367.049546306783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.803920223096, + 5368.416084344217 + ], + [ + 2653.68795193884, + 5365.683008269349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2664.28942991759, + "min_y": 5365.683008269349, + "max_x": 2667.405398201845, + "max_y": 5368.416084344217, + "center": [ + 2665.8474140597173, + 5367.049546306783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.28942991759, + 5368.416084344217 + ], + [ + 2667.405398201845, + 5365.683008269349 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5368.416084344217, + "max_x": 2656.803920223096, + "max_y": 5386.198725063241, + "center": [ + 2656.803920223096, + 5377.307404703729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.803920223096, + 5368.416084344217 + ], + [ + 2656.803920223096, + 5386.198725063241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2664.28942991759, + "min_y": 5368.416084344217, + "max_x": 2664.28942991759, + "max_y": 5386.198725063241, + "center": [ + 2664.28942991759, + 5377.307404703729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.28942991759, + 5368.416084344217 + ], + [ + 2664.28942991759, + 5386.198725063241 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5368.416084344217, + "max_x": 2664.28942991759, + "max_y": 5379.106304763691, + "center": [ + 2660.546675070343, + 5373.761194553954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.28942991759, + 5368.416084344217 + ], + [ + 2656.803920223096, + 5379.106304763691 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5368.416084344217, + "max_x": 2664.28942991759, + "max_y": 5379.10531533478, + "center": [ + 2660.546675070343, + 5373.760699839499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.28942991759, + 5379.10531533478 + ], + [ + 2656.803920223096, + 5368.416084344217 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5379.10531533478, + "max_x": 2664.28942991759, + "max_y": 5379.106304763691, + "center": [ + 2660.546675070343, + 5379.1058100492355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.803920223096, + 5379.106304763691 + ], + [ + 2664.28942991759, + 5379.10531533478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5368.415094915304, + "max_x": 2664.28942991759, + "max_y": 5368.416084344217, + "center": [ + 2660.546675070343, + 5368.41558962976 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.803920223096, + 5368.416084344217 + ], + [ + 2664.28942991759, + 5368.415094915304 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B8B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2659.884406599852, + "min_y": 5383.644163119214, + "max_x": 2661.208943540834, + "max_y": 5384.791245758353, + "center": [ + 2660.5466750703426, + 5384.217704438784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.546675070345, + 5384.791245758353 + ], + [ + 2659.884406599852, + 5383.644163119214 + ], + [ + 2661.208943540834, + 5383.644163119214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B8C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2659.884406599852, + "min_y": 5361.793287123209, + "max_x": 2661.208943540834, + "max_y": 5362.940369762349, + "center": [ + 2660.5466750703426, + 5362.366828442779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.546675070345, + 5362.940369762349 + ], + [ + 2659.884406599852, + 5361.793287123209 + ], + [ + 2661.208943540834, + 5361.793287123209 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B8D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2659.034162464957, + "min_y": 5391.199553842515, + "max_x": 2662.059939861584, + "max_y": 5391.199553842515, + "center": [ + 2660.54705116327, + 5391.199553842515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2659.034162464957, + 5391.199553842515 + ], + [ + 2662.059939861584, + 5391.199553842515 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.803920223096, + "min_y": 5384.791245758353, + "max_x": 2660.546675070345, + "max_y": 5384.79124575901, + "center": [ + 2658.6752976467205, + 5384.791245758682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.546675070345, + 5384.791245758353 + ], + [ + 2656.803920223096, + 5384.79124575901 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B8F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2658.641176424773, + "min_y": 5302.397072734706, + "max_x": 2661.8094363367914, + "max_y": 5305.037289328055, + "center": [ + 2660.225306380782, + 5303.71718103138 + ] + }, + "raw_value": "SG", + "clean_value": "SG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B90", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2656.2735089696625, + "min_y": 5299.34400489171, + "max_x": 2664.7983078958114, + "max_y": 5307.868803817858, + "center": [ + 2660.535908432737, + 5303.606404354784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.535908432737, + 5303.606404354784 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B91", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2657.1259888622776, + "min_y": 5300.196484784325, + "max_x": 2663.9458280031963, + "max_y": 5307.016323925243, + "center": [ + 2660.535908432737, + 5303.606404354784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.535908432737, + 5303.606404354784 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B92", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2660.546675070677, + "min_y": 5396.2059018207565, + "max_x": 2663.6253276439434, + "max_y": 5399.284554394022, + "center": [ + 2662.08600135731, + 5397.745228107389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.08600135731, + 5397.745228107389 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.225290331875, + "min_y": 5362.940369762349, + "max_x": 2660.546675070345, + "max_y": 5362.940369762349, + "center": [ + 2655.88598270111, + 5362.940369762349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.546675070345, + 5362.940369762349 + ], + [ + 2651.225290331875, + 5362.940369762349 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.225290331875, + "min_y": 5362.19378219542, + "max_x": 2651.225290331875, + "max_y": 5363.686957329279, + "center": [ + 2651.225290331875, + 5362.940369762349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.225290331875, + 5363.686957329279 + ], + [ + 2651.225290331875, + 5362.19378219542 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2650.976427809566, + "min_y": 5362.19378219542, + "max_x": 2650.976427809566, + "max_y": 5363.686957329279, + "center": [ + 2650.976427809566, + 5362.940369762349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.976427809566, + 5363.686957329279 + ], + [ + 2650.976427809566, + 5362.19378219542 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557B96", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2610.257205609104, + "min_y": 5236.119351492239, + "max_x": 2625.039639434297, + "max_y": 5238.359114193026, + "center": [ + 2617.6484225217005, + 5237.239232842632 + ] + }, + "raw_value": "%%UP-10128B", + "clean_value": "P-10128B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557B97", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2617.849451658805, + "min_y": 5242.66916262624, + "max_x": 2620.537166899749, + "max_y": 5244.162337760098, + "center": [ + 2619.193309279277, + 5243.4157501931695 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B98", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2624.760079697646, + "min_y": 5248.77048749288, + "max_x": 2627.44779493859, + "max_y": 5250.263662626739, + "center": [ + 2626.103937318118, + 5249.51707505981 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B99", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2619.529381219328, + "min_y": 5248.444204687199, + "max_x": 2622.2170964602724, + "max_y": 5249.937379821057, + "center": [ + 2620.8732388398003, + 5249.190792254129 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B9A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2601.430528402824, + "min_y": 5269.236339332047, + "max_x": 2604.1182436437684, + "max_y": 5270.729514465905, + "center": [ + 2602.7743860232963, + 5269.982926898976 + ] + }, + "raw_value": "32A", + "clean_value": "32A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557B9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2609.464064762262, + "min_y": 5246.685783572811, + "max_x": 2609.464064762262, + "max_y": 5248.178958706668, + "center": [ + 2609.464064762262, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2609.464064762262, + 5246.685783572811 + ], + [ + 2609.464064762262, + 5248.178958706668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.299961295783, + "min_y": 5247.43237113974, + "max_x": 2618.98939176165, + "max_y": 5247.43237113974, + "center": [ + 2616.6446765287164, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.299961295783, + 5247.43237113974 + ], + [ + 2618.98939176165, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2622.274377056135, + "min_y": 5247.43237113974, + "max_x": 2624.707553387882, + "max_y": 5247.43237113974, + "center": [ + 2623.4909652220085, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2622.274377056135, + 5247.43237113974 + ], + [ + 2624.707553387882, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557B9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2616.760515807977, + "min_y": 5245.112972695686, + "max_x": 2616.760515807977, + "max_y": 5247.43237113974, + "center": [ + 2616.760515807977, + 5246.2726719177135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.760515807977, + 5247.43237113974 + ], + [ + 2616.760515807977, + 5245.112972695686 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2616.760515807979, + "min_y": 5240.29689740175, + "max_x": 2616.760515807979, + "max_y": 5241.79766200968, + "center": [ + 2616.760515807979, + 5241.0472797057155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.760515807979, + 5241.79766200968 + ], + [ + 2616.760515807979, + 5240.29689740175 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2617.323696737694, + "min_y": 5239.933542123854, + "max_x": 2617.323696737694, + "max_y": 5240.633260682709, + "center": [ + 2617.323696737694, + 5240.2834014032815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.323696737694, + 5240.633260682709 + ], + [ + 2617.323696737694, + 5239.933542123854 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2616.197334878263, + "min_y": 5239.933542123853, + "max_x": 2617.323696737694, + "max_y": 5239.933542123854, + "center": [ + 2616.7605158079787, + 5239.933542123854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.323696737694, + 5239.933542123854 + ], + [ + 2616.197334878263, + 5239.933542123853 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2616.197334878263, + "min_y": 5239.933542123854, + "max_x": 2616.197334878263, + "max_y": 5240.633260682709, + "center": [ + 2616.197334878263, + 5240.2834014032815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.197334878263, + 5240.633260682709 + ], + [ + 2616.197334878263, + 5239.933542123854 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655362894, + "min_y": 5265.923270761903, + "max_x": 2599.640655362895, + "max_y": 5268.199106058293, + "center": [ + 2599.6406553628944, + 5267.061188410098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655362894, + 5265.923270761903 + ], + [ + 2599.640655362895, + 5268.199106058293 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655362895, + "min_y": 5265.923270761903, + "max_x": 2599.640655362895, + "max_y": 5268.199106058293, + "center": [ + 2599.640655362895, + 5267.061188410098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655362895, + 5265.923270761903 + ], + [ + 2599.640655362895, + 5268.199106058293 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2599.6406553630222, + "min_y": 5243.670429871296, + "max_x": 2607.164537899912, + "max_y": 5251.1943124081845, + "center": [ + 2603.402596631467, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2603.402596631467, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2605.68491197622, + "min_y": 5240.74534550327, + "max_x": 2607.773940615269, + "max_y": 5244.441846307257, + "center": [ + 2606.729426295745, + 5242.593595905264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2605.68491197622, + 5244.441846307257 + ], + [ + 2607.773940615269, + 5240.74534550327 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.031252647673, + "min_y": 5240.74534550327, + "max_x": 2601.120281286717, + "max_y": 5244.441846307257, + "center": [ + 2600.075766967195, + 5242.593595905264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2601.120281286717, + 5244.441846307257 + ], + [ + 2599.031252647673, + 5240.74534550327 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.031252647673, + "min_y": 5240.74534550327, + "max_x": 2607.773940615269, + "max_y": 5240.74534550327, + "center": [ + 2603.402596631471, + 5240.74534550327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.031252647673, + 5240.74534550327 + ], + [ + 2607.773940615269, + 5240.74534550327 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAB", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2602.5673230298876, + "min_y": 5246.597097538161, + "max_x": 2604.2378702330466, + "max_y": 5248.26764474132, + "center": [ + 2603.402596631467, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2603.402596631467, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655363024, + "min_y": 5247.43237113974, + "max_x": 2599.640655363024, + "max_y": 5252.795327254189, + "center": [ + 2599.640655363024, + 5250.113849196965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655363024, + 5247.43237113974 + ], + [ + 2599.640655363024, + 5252.795327254189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2603.402596631467, + "min_y": 5247.43237113974, + "max_x": 2609.215202239952, + "max_y": 5247.43237113974, + "center": [ + 2606.3088994357095, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2603.402596631467, + 5247.43237113974 + ], + [ + 2609.215202239952, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2609.464064762262, + "min_y": 5246.685783572811, + "max_x": 2609.464064762262, + "max_y": 5248.178958706668, + "center": [ + 2609.464064762262, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2609.464064762262, + 5246.685783572811 + ], + [ + 2609.464064762262, + 5248.178958706668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2609.215202239952, + "min_y": 5246.685783572811, + "max_x": 2609.215202239952, + "max_y": 5248.178958706668, + "center": [ + 2609.215202239952, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2609.215202239952, + 5246.685783572811 + ], + [ + 2609.215202239952, + 5248.178958706668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.022864073888, + "min_y": 5247.43237113974, + "max_x": 2650.577294763286, + "max_y": 5247.43237113974, + "center": [ + 2639.300079418587, + 5247.43237113974 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.022864073888, + 5247.43237113974 + ], + [ + 2650.577294763286, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BB3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2624.893415455107, + "min_y": 5253.650211024758, + "max_x": 2639.6758492803, + "max_y": 5255.889973725545, + "center": [ + 2632.2846323677036, + 5254.770092375152 + ] + }, + "raw_value": "%%UP-10128A", + "clean_value": "P-10128A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557BB4", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2632.672152858471, + "min_y": 5260.013530805099, + "max_x": 2635.359868099415, + "max_y": 5261.506705938958, + "center": [ + 2634.016010478943, + 5260.760118372029 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BB5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2639.582780897312, + "min_y": 5266.394592702233, + "max_x": 2642.2704961382565, + "max_y": 5267.887767836091, + "center": [ + 2640.9266385177843, + 5267.141180269162 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BB6", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2634.165591065331, + "min_y": 5265.97506421972, + "max_x": 2636.853306306275, + "max_y": 5267.468239353578, + "center": [ + 2635.509448685803, + 5266.721651786649 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.100274608265, + "min_y": 5264.21664310533, + "max_x": 2624.100274608265, + "max_y": 5265.709818239189, + "center": [ + 2624.100274608265, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.100274608265, + 5264.21664310533 + ], + [ + 2624.100274608265, + 5265.709818239189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.936171141786, + "min_y": 5264.963230672259, + "max_x": 2633.625601607653, + "max_y": 5264.963230672259, + "center": [ + 2631.2808863747196, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.936171141786, + 5264.963230672259 + ], + [ + 2633.625601607653, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2636.91058690214, + "min_y": 5264.963230672259, + "max_x": 2639.343763233885, + "max_y": 5264.963230672259, + "center": [ + 2638.1271750680125, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.91058690214, + 5264.963230672259 + ], + [ + 2639.343763233885, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2631.396725653982, + "min_y": 5262.643832228206, + "max_x": 2631.396725653982, + "max_y": 5264.963230672259, + "center": [ + 2631.396725653982, + 5263.803531450232 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.396725653982, + 5264.963230672259 + ], + [ + 2631.396725653982, + 5262.643832228206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2631.396725653982, + "min_y": 5257.827756934268, + "max_x": 2631.396725653982, + "max_y": 5259.3285215422, + "center": [ + 2631.396725653982, + 5258.578139238234 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.396725653982, + 5259.3285215422 + ], + [ + 2631.396725653982, + 5257.827756934268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2631.959906583697, + "min_y": 5257.464401656374, + "max_x": 2631.959906583697, + "max_y": 5258.16412021523, + "center": [ + 2631.959906583697, + 5257.814260935802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.959906583697, + 5258.16412021523 + ], + [ + 2631.959906583697, + 5257.464401656374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2630.833544724266, + "min_y": 5257.464401656374, + "max_x": 2631.959906583697, + "max_y": 5257.464401656374, + "center": [ + 2631.396725653982, + 5257.464401656374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.959906583697, + 5257.464401656374 + ], + [ + 2630.833544724266, + 5257.464401656374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2630.833544724266, + "min_y": 5257.464401656374, + "max_x": 2630.833544724266, + "max_y": 5258.16412021523, + "center": [ + 2630.833544724266, + 5257.814260935802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.833544724266, + 5258.16412021523 + ], + [ + 2630.833544724266, + 5257.464401656374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2614.2768652090253, + "min_y": 5261.201289403814, + "max_x": 2621.800747745915, + "max_y": 5268.725171940703, + "center": [ + 2618.03880647747, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.03880647747, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2620.321121822223, + "min_y": 5258.276205035791, + "max_x": 2622.410150461272, + "max_y": 5261.972705839776, + "center": [ + 2621.365636141748, + 5260.124455437783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.321121822223, + 5261.972705839776 + ], + [ + 2622.410150461272, + 5258.276205035791 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.667462493675, + "min_y": 5258.276205035791, + "max_x": 2615.75649113272, + "max_y": 5261.972705839776, + "center": [ + 2614.7119768131975, + 5260.124455437783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.75649113272, + 5261.972705839776 + ], + [ + 2613.667462493675, + 5258.276205035791 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.667462493675, + "min_y": 5258.276205035791, + "max_x": 2622.410150461272, + "max_y": 5258.276205035791, + "center": [ + 2618.0388064774734, + 5258.276205035791 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.667462493675, + 5258.276205035791 + ], + [ + 2622.410150461272, + 5258.276205035791 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC4", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2617.2035328758907, + "min_y": 5264.127957070679, + "max_x": 2618.8740800790497, + "max_y": 5265.798504273838, + "center": [ + 2618.03880647747, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.03880647747, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865209026, + "min_y": 5264.963230672259, + "max_x": 2614.276865209026, + "max_y": 5270.326186786708, + "center": [ + 2614.276865209026, + 5267.644708729484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865209026, + 5264.963230672259 + ], + [ + 2614.276865209026, + 5270.326186786708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2618.03880647747, + "min_y": 5264.963230672259, + "max_x": 2623.851412085955, + "max_y": 5264.963230672259, + "center": [ + 2620.9451092817126, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.03880647747, + 5264.963230672259 + ], + [ + 2623.851412085955, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5270.575049309019, + "max_x": 2615.023452775954, + "max_y": 5270.575049309019, + "center": [ + 2614.2768652090253, + 5270.575049309019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.023452775954, + 5270.575049309019 + ], + [ + 2613.530277642097, + 5270.575049309019 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5270.326186786708, + "max_x": 2615.023452775954, + "max_y": 5270.326186786708, + "center": [ + 2614.2768652090253, + 5270.326186786708 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.023452775954, + 5270.326186786708 + ], + [ + 2613.530277642097, + 5270.326186786708 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.100274608265, + "min_y": 5264.21664310533, + "max_x": 2624.100274608265, + "max_y": 5265.709818239189, + "center": [ + 2624.100274608265, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.100274608265, + 5264.21664310533 + ], + [ + 2624.100274608265, + 5265.709818239189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.851412085955, + "min_y": 5264.21664310533, + "max_x": 2623.851412085955, + "max_y": 5265.709818239189, + "center": [ + 2623.851412085955, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.851412085955, + 5264.21664310533 + ], + [ + 2623.851412085955, + 5265.709818239189 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2642.659073919892, + "min_y": 5264.963230672259, + "max_x": 2660.535908432475, + "max_y": 5264.963230672259, + "center": [ + 2651.597491176183, + 5264.963230672259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.659073919892, + 5264.963230672259 + ], + [ + 2660.535908432475, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2660.535908432475, + "min_y": 5291.003166541201, + "max_x": 2660.535908432475, + "max_y": 5293.438715937487, + "center": [ + 2660.535908432475, + 5292.220941239344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.535908432475, + 5293.438715937487 + ], + [ + 2660.535908432475, + 5291.003166541201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BCE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2659.789320865546, + "min_y": 5290.754304018896, + "max_x": 2661.282495999404, + "max_y": 5290.754304018896, + "center": [ + 2660.535908432475, + 5290.754304018896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.282495999404, + 5290.754304018896 + ], + [ + 2659.789320865546, + 5290.754304018896 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2659.789320865546, + "min_y": 5291.003166541206, + "max_x": 2661.282495999404, + "max_y": 5291.003166541206, + "center": [ + 2660.535908432475, + 5291.003166541206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.282495999404, + 5291.003166541206 + ], + [ + 2659.789320865546, + 5291.003166541206 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BD0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2655.611751071383, + "min_y": 5290.093064823841, + "max_x": 2658.2994663123272, + "max_y": 5291.586239957699, + "center": [ + 2656.955608691855, + 5290.83965239077 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2660.535908432475, + "min_y": 5264.963230672259, + "max_x": 2660.535908432475, + "max_y": 5290.754304018896, + "center": [ + 2660.535908432475, + 5277.858767345577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2660.535908432475, + 5290.754304018896 + ], + [ + 2660.535908432475, + 5264.963230672259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2650.577294763286, + "min_y": 5247.43237113974, + "max_x": 2650.577294763286, + "max_y": 5264.963230672259, + "center": [ + 2650.577294763286, + 5256.197800905999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.577294763286, + 5264.963230672259 + ], + [ + 2650.577294763286, + 5247.43237113974 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655362895, + "min_y": 5271.514416744299, + "max_x": 2599.640655362895, + "max_y": 5290.638931397567, + "center": [ + 2599.640655362895, + 5281.076674070933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655362895, + 5271.514416744299 + ], + [ + 2599.640655362895, + 5290.638931397567 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5289.058482927966, + "max_x": 2614.276865208897, + "max_y": 5362.953576413495, + "center": [ + 2614.276865208897, + 5326.006029670731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208897, + 5289.058482927966 + ], + [ + 2614.276865208897, + 5362.953576413495 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5362.940369762349, + "max_x": 2650.976427809566, + "max_y": 5362.940369762349, + "center": [ + 2632.6266465092313, + 5362.940369762349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.976427809566, + 5362.940369762349 + ], + [ + 2614.276865208897, + 5362.940369762349 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.341963348544, + "min_y": 5384.79124575901, + "max_x": 2656.803920223096, + "max_y": 5384.79124575901, + "center": [ + 2655.57294178582, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.341963348544, + 5384.79124575901 + ], + [ + 2656.803920223096, + 5384.79124575901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.341963348544, + "min_y": 5384.044658192081, + "max_x": 2654.341963348544, + "max_y": 5385.537833325939, + "center": [ + 2654.341963348544, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.341963348544, + 5384.044658192081 + ], + [ + 2654.341963348544, + 5385.537833325939 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.093100826234, + "min_y": 5384.044658192081, + "max_x": 2654.093100826234, + "max_y": 5385.537833325939, + "center": [ + 2654.093100826234, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.093100826234, + 5384.044658192081 + ], + [ + 2654.093100826234, + 5385.537833325939 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BD9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2637.171883576614, + "min_y": 5384.79124575901, + "max_x": 2654.093100826234, + "max_y": 5384.79124575901, + "center": [ + 2645.632492201424, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.093100826234, + 5384.79124575901 + ], + [ + 2637.171883576614, + 5384.79124575901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.636843562555, + "min_y": 5384.791247306247, + "max_x": 2638.013673249624, + "max_y": 5384.791247306247, + "center": [ + 2636.8252584060892, + 5384.791247306247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.013673249624, + 5384.791247306247 + ], + [ + 2635.636843562555, + 5384.791247306247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2587.196470737082, + "min_y": 5384.79124730625, + "max_x": 2613.10257338516, + "max_y": 5384.79124730625, + "center": [ + 2600.1495220611214, + 5384.79124730625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2587.196470737082, + 5384.79124730625 + ], + [ + 2613.10257338516, + 5384.79124730625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2612.872265548166, + "min_y": 5384.79124730625, + "max_x": 2615.249095235236, + "max_y": 5384.79124730625, + "center": [ + 2614.0606803917008, + 5384.79124730625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2612.872265548166, + 5384.79124730625 + ], + [ + 2615.249095235236, + 5384.79124730625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2609.859770470269, + "min_y": 5376.968043496161, + "max_x": 2609.859770470269, + "max_y": 5384.79124730625, + "center": [ + 2609.859770470269, + 5380.879645401205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2609.859770470269, + 5384.79124730625 + ], + [ + 2609.859770470269, + 5376.968043496161 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.999820631696, + "min_y": 5376.922146571317, + "max_x": 2640.999820631696, + "max_y": 5384.791248853487, + "center": [ + 2640.999820631696, + 5380.856697712402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.999820631696, + 5384.791248853487 + ], + [ + 2640.999820631696, + 5376.922146571317 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2609.859770470269, + "min_y": 5376.959553583471, + "max_x": 2624.729124471759, + "max_y": 5376.959553583471, + "center": [ + 2617.294447471014, + 5376.959553583471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2609.859770470269, + 5376.959553583471 + ], + [ + 2624.729124471759, + 5376.959553583471 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.044435157765, + "min_y": 5376.913658205865, + "max_x": 2640.999820631713, + "max_y": 5376.913658205865, + "center": [ + 2634.5221278947392, + 5376.913658205865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.044435157765, + 5376.913658205865 + ], + [ + 2640.999820631713, + 5376.913658205865 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE1", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2624.86062180578, + "min_y": 5373.911030730934, + "max_x": 2627.548337046724, + "max_y": 5375.404205864792, + "center": [ + 2626.204479426252, + 5374.657618297862 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BE2", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2615.060272338293, + "min_y": 5379.574423649653, + "max_x": 2617.7479875792374, + "max_y": 5381.067598783511, + "center": [ + 2616.404129958765, + 5380.321011216582 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.813710737909, + "min_y": 5295.139025083086, + "max_x": 2665.813710737909, + "max_y": 5307.224605876021, + "center": [ + 2665.813710737909, + 5301.181815479554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.813710737909, + 5307.224605876021 + ], + [ + 2665.813710737909, + 5295.139025083086 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5292.672846330233, + "max_x": 2665.814350558482, + "max_y": 5295.139025062601, + "center": [ + 2665.814350558482, + 5293.905935696417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5295.139025062601 + ], + [ + 2665.814350558482, + 5292.672846330233 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.273245001605, + "min_y": 5311.56961294657, + "max_x": 2669.273245001605, + "max_y": 5313.062788080427, + "center": [ + 2669.273245001605, + 5312.316200513498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.273245001605, + 5313.062788080427 + ], + [ + 2669.273245001605, + 5311.56961294657 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.522107523914, + "min_y": 5311.56961294657, + "max_x": 2669.522107523914, + "max_y": 5313.062788080427, + "center": [ + 2669.522107523914, + 5312.316200513498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.522107523914, + 5313.062788080427 + ], + [ + 2669.522107523914, + 5311.56961294657 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557BE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.214592476812, + "min_y": 5299.043771851896, + "max_x": 2653.679864394724, + "max_y": 5299.043771851896, + "center": [ + 2652.447228435768, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.679864394724, + 5299.043771851896 + ], + [ + 2651.214592476812, + 5299.043771851896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE8", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2639.469626392026, + "min_y": 5299.043771852091, + "max_x": 2644.852423849651, + "max_y": 5299.043771852091, + "center": [ + 2642.1610251208385, + 5299.043771852091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2644.852423849651, + 5299.043771852091 + ], + [ + 2639.469626392026, + 5299.043771852091 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BE9", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2645.931484547977, + "min_y": 5299.043771851896, + "max_x": 2647.899281790807, + "max_y": 5299.043771851896, + "center": [ + 2646.915383169392, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2645.931484547977, + 5299.043771851896 + ], + [ + 2647.899281790807, + 5299.043771851896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BEA", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2644.852423849651, + "min_y": 5297.884891249927, + "max_x": 2644.852423849651, + "max_y": 5300.202652454029, + "center": [ + 2644.852423849651, + 5299.043771851978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2644.852423849651, + 5297.884891249927 + ], + [ + 2644.852423849651, + 5300.202652454029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BEB", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2644.852423849651, + "min_y": 5300.202652454029, + "max_x": 2645.931484547977, + "max_y": 5300.202652454029, + "center": [ + 2645.3919541988143, + 5300.202652454029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2644.852423849651, + 5300.202652454029 + ], + [ + 2645.931484547977, + 5300.202652454029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BEC", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2645.931484547977, + "min_y": 5297.884891249927, + "max_x": 2645.931484547977, + "max_y": 5300.202652454029, + "center": [ + 2645.931484547977, + 5299.043771851978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2645.931484547977, + 5300.202652454029 + ], + [ + 2645.931484547977, + 5297.884891249927 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BED", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2644.852423849651, + "min_y": 5297.884891249927, + "max_x": 2645.931484547977, + "max_y": 5297.884891249927, + "center": [ + 2645.3919541988143, + 5297.884891249927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2645.931484547977, + 5297.884891249927 + ], + [ + 2644.852423849651, + 5297.884891249927 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BEE", + "entity_type": "ARC", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2645.144972199876, + "min_y": 5296.2014506222995, + "max_x": 2650.82961465907, + "max_y": 5301.886093081493, + "center": [ + 2647.987293429473, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.987293429473, + 5299.043771851896 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BEF", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2641.441239956297, + "min_y": 5298.644790884811, + "max_x": 2642.239201890549, + "max_y": 5299.44275281899, + "center": [ + 2641.8402209234227, + 5299.043771851901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.239201890549, + 5298.644790884811 + ], + [ + 2641.441239956297, + 5299.44275281899 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF0", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2641.441239956297, + "min_y": 5298.644790884811, + "max_x": 2642.239201890549, + "max_y": 5299.44275281899, + "center": [ + 2641.8402209234227, + 5299.043771851901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.239201890549, + 5299.44275281899 + ], + [ + 2641.441239956297, + 5298.644790884811 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF1", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2643.387124291666, + "min_y": 5298.644790884811, + "max_x": 2644.185086225924, + "max_y": 5299.44275281899, + "center": [ + 2643.786105258795, + 5299.043771851901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2644.185086225924, + 5298.644790884811 + ], + [ + 2643.387124291666, + 5299.44275281899 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF2", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2643.387124291666, + "min_y": 5298.644790884811, + "max_x": 2644.185086225924, + "max_y": 5299.44275281899, + "center": [ + 2643.786105258795, + 5299.043771851901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2644.185086225924, + 5299.44275281899 + ], + [ + 2643.387124291666, + 5298.644790884811 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF3", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2633.8702196400586, + "min_y": 5296.244068476107, + "max_x": 2639.4696263920255, + "max_y": 5301.843475228075, + "center": [ + 2636.669923016042, + 5299.043771852091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.669923016042, + 5299.043771852091 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF4", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2635.850609201789, + "min_y": 5299.602466441212, + "max_x": 2637.642419362419, + "max_y": 5301.09564157507, + "center": [ + 2636.746514282104, + 5300.34905400814 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF5", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2634.865293574421, + "min_y": 5297.193896873383, + "max_x": 2639.3448189759943, + "max_y": 5298.687072007241, + "center": [ + 2637.1050562752075, + 5297.9404844403125 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF6", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.2708128880968, + "min_y": 5296.244068476107, + "max_x": 2633.8702196400636, + "max_y": 5301.843475228075, + "center": [ + 2631.07051626408, + 5299.043771852091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.07051626408, + 5299.043771852091 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF7", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2630.505639492638, + "min_y": 5299.602466441212, + "max_x": 2632.2974496532674, + "max_y": 5301.09564157507, + "center": [ + 2631.401544572953, + 5300.34905400814 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF8", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2629.265886822462, + "min_y": 5297.193896873383, + "max_x": 2633.7454122240356, + "max_y": 5298.687072007241, + "center": [ + 2631.505649523249, + 5297.9404844403125 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BF9", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5299.043771852091, + "max_x": 2633.870219640058, + "max_y": 5299.043771852091, + "center": [ + 2631.070516264077, + 5299.043771852091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.270812888096, + 5299.043771852091 + ], + [ + 2633.870219640058, + 5299.043771852091 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BFA", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5296.244068476108, + "max_x": 2633.870219640058, + "max_y": 5296.244068476108, + "center": [ + 2631.070516264077, + 5296.244068476108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2633.870219640058, + 5296.244068476108 + ], + [ + 2628.270812888096, + 5296.244068476108 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BFB", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5296.244068476108, + "max_x": 2628.270812888096, + "max_y": 5301.843475228075, + "center": [ + 2628.270812888096, + 5299.043771852092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.270812888096, + 5301.843475228075 + ], + [ + 2628.270812888096, + 5296.244068476108 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BFC", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2633.870219640058, + "min_y": 5296.244068476108, + "max_x": 2633.870219640058, + "max_y": 5301.843475228075, + "center": [ + 2633.870219640058, + 5299.043771852092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2633.870219640058, + 5296.244068476108 + ], + [ + 2633.870219640058, + 5301.843475228075 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BFD", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.270812888096, + "min_y": 5301.843475228075, + "max_x": 2633.870219640058, + "max_y": 5301.843475228075, + "center": [ + 2631.070516264077, + 5301.843475228075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.270812888096, + 5301.843475228075 + ], + [ + 2633.870219640058, + 5301.843475228075 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557BFE", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2615.488112898662, + "min_y": 5387.528047264618, + "max_x": 2618.1758281396064, + "max_y": 5389.021222398476, + "center": [ + 2616.8319705191343, + 5388.274634831547 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557BFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2630.89819540783, + "min_y": 5384.791247306247, + "max_x": 2632.321532876549, + "max_y": 5384.791247306247, + "center": [ + 2631.6098641421895, + 5384.791247306247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.321532876549, + 5384.791247306247 + ], + [ + 2630.89819540783, + 5384.791247306247 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2618.564405921242, + "min_y": 5384.79124575901, + "max_x": 2619.987743389962, + "max_y": 5384.79124575901, + "center": [ + 2619.276074655602, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2619.987743389962, + 5384.79124575901 + ], + [ + 2618.564405921242, + 5384.79124575901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C01", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2625.442986824331, + "min_y": 5385.81415874748, + "max_x": 2625.442990596756, + "max_y": 5387.706119531406, + "center": [ + 2625.4429887105434, + 5386.760139139444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.442986824331, + 5385.81415874748 + ], + [ + 2625.442990596756, + 5387.706119531406 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2621.707872508316, + "min_y": 5383.768143239744, + "max_x": 2629.178068777742, + "max_y": 5383.768174274191, + "center": [ + 2625.442970643029, + 5383.768158756968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.178068777742, + 5383.768143239744 + ], + [ + 2621.707872508316, + 5383.768174274191 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2621.707872508316, + "min_y": 5383.768174274191, + "max_x": 2621.707876587963, + "max_y": 5385.814211775652, + "center": [ + 2621.7078745481394, + 5384.791193024921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2621.707872508316, + 5383.768174274191 + ], + [ + 2621.707876587963, + 5385.814211775652 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2621.707876587963, + "min_y": 5385.814105719169, + "max_x": 2629.178106915962, + "max_y": 5385.814211775652, + "center": [ + 2625.4429917519624, + 5385.814158747411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2621.707876587963, + 5385.814211775652 + ], + [ + 2629.178106915962, + 5385.814105719169 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2629.178069817883, + "min_y": 5384.791164716165, + "max_x": 2630.64933288552, + "max_y": 5384.791164768005, + "center": [ + 2629.9137013517015, + 5384.791164742085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.64933288552, + 5384.791164716165 + ], + [ + 2629.178069817883, + 5384.791164768005 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C06", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.6432872207724, + "min_y": 5387.706119531405, + "max_x": 2628.2426939727393, + "max_y": 5393.305526283373, + "center": [ + 2625.442990596756, + 5390.505822907389 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.442990596756, + 5390.505822907389 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C07", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2624.264419173373, + "min_y": 5390.741180184922, + "max_x": 2626.9521344143172, + "max_y": 5392.23435531878, + "center": [ + 2625.608276793845, + 5391.487767751851 + ] + }, + "raw_value": "FIT", + "clean_value": "FIT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C08", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2623.638361155138, + "min_y": 5388.655947928683, + "max_x": 2628.1178865567117, + "max_y": 5390.149123062542, + "center": [ + 2625.878123855925, + 5389.402535495612 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2630.89819540783, + "min_y": 5384.044577149237, + "max_x": 2630.89819540783, + "max_y": 5385.537752283095, + "center": [ + 2630.89819540783, + 5384.791164716165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.89819540783, + 5385.537752283095 + ], + [ + 2630.89819540783, + 5384.044577149237 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2630.64933288552, + "min_y": 5384.044577149237, + "max_x": 2630.64933288552, + "max_y": 5385.537752283095, + "center": [ + 2630.64933288552, + 5384.791164716165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.64933288552, + 5385.537752283095 + ], + [ + 2630.64933288552, + 5384.044577149237 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2619.987743389962, + "min_y": 5384.044575602001, + "max_x": 2619.987743389962, + "max_y": 5385.537750735857, + "center": [ + 2619.987743389962, + 5384.791163168929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2619.987743389962, + 5385.537750735857 + ], + [ + 2619.987743389962, + 5384.044575602001 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2620.23660591227, + "min_y": 5384.044575602001, + "max_x": 2620.23660591227, + "max_y": 5385.537750735857, + "center": [ + 2620.23660591227, + 5384.791163168929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.23660591227, + 5385.537750735857 + ], + [ + 2620.23660591227, + 5384.044575602001 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2620.23660591227, + "min_y": 5384.791163168929, + "max_x": 2621.707868979908, + "max_y": 5384.791163220767, + "center": [ + 2620.972237446089, + 5384.791163194848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.23660591227, + 5384.791163168929 + ], + [ + 2621.707868979908, + 5384.791163220767 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C0E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2632.560550539976, + "min_y": 5387.528048811855, + "max_x": 2635.24826578092, + "max_y": 5389.021223945713, + "center": [ + 2633.904408160448, + 5388.274636378785 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C0F", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.6432872207715, + "min_y": 5393.305526283373, + "max_x": 2628.2426939727384, + "max_y": 5398.904933035341, + "center": [ + 2625.442990596755, + 5396.105229659357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.442990596755, + 5396.105229659357 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C10", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2624.212456678714, + "min_y": 5396.340586936889, + "max_x": 2626.900171919658, + "max_y": 5397.833762070747, + "center": [ + 2625.556314299186, + 5397.0871745038185 + ] + }, + "raw_value": "FIA", + "clean_value": "FIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C11", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2623.638361155137, + "min_y": 5394.255354680648, + "max_x": 2628.1178865567103, + "max_y": 5395.748529814507, + "center": [ + 2625.8781238559236, + 5395.001942247578 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C12", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5396.105229659357, + "max_x": 2628.242693972738, + "max_y": 5396.105229659357, + "center": [ + 2625.442990596756, + 5396.105229659357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2622.643287220774, + 5396.105229659357 + ], + [ + 2628.242693972738, + 5396.105229659357 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C13", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5393.305526283374, + "max_x": 2628.242693972738, + "max_y": 5393.305526283374, + "center": [ + 2625.442990596756, + 5393.305526283374 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.242693972738, + 5393.305526283374 + ], + [ + 2622.643287220774, + 5393.305526283374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C14", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5393.305526283374, + "max_x": 2622.643287220774, + "max_y": 5398.904933035341, + "center": [ + 2622.643287220774, + 5396.105229659357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2622.643287220774, + 5398.904933035341 + ], + [ + 2622.643287220774, + 5393.305526283374 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C15", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.242693972738, + "min_y": 5393.305526283374, + "max_x": 2628.242693972738, + "max_y": 5398.904933035341, + "center": [ + 2628.242693972738, + 5396.105229659357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.242693972738, + 5393.305526283374 + ], + [ + 2628.242693972738, + 5398.904933035341 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C16", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.643287220774, + "min_y": 5398.904933035341, + "max_x": 2628.242693972738, + "max_y": 5398.904933035341, + "center": [ + 2625.442990596756, + 5398.904933035341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2622.643287220774, + 5398.904933035341 + ], + [ + 2628.242693972738, + 5398.904933035341 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.214592476812, + "min_y": 5310.133641049411, + "max_x": 2653.679864394724, + "max_y": 5310.133641049411, + "center": [ + 2652.447228435768, + 5310.133641049411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.679864394724, + 5310.133641049411 + ], + [ + 2651.214592476812, + 5310.133641049411 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.214592476812, + "min_y": 5309.387053482481, + "max_x": 2651.214592476812, + "max_y": 5310.880228616341, + "center": [ + 2651.214592476812, + 5310.133641049411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.214592476812, + 5310.880228616341 + ], + [ + 2651.214592476812, + 5309.387053482481 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2650.965729954502, + "min_y": 5309.387053482481, + "max_x": 2650.965729954502, + "max_y": 5310.880228616341, + "center": [ + 2650.965729954502, + 5310.133641049411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.965729954502, + 5310.880228616341 + ], + [ + 2650.965729954502, + 5309.387053482481 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.210539460547, + "min_y": 5293.568773988795, + "max_x": 2655.003982812421, + "max_y": 5295.362217340668, + "center": [ + 2654.107261136484, + 5294.465495664732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2655.003982812421, + 5295.362217340668 + ], + [ + 2653.210539460547, + 5293.568773988795 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.682622329221, + "min_y": 5293.04085685747, + "max_x": 2653.738456591872, + "max_y": 5294.09669112012, + "center": [ + 2653.2105394605464, + 5293.568773988795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.682622329221, + 5294.09669112012 + ], + [ + 2653.738456591872, + 5293.04085685747 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.506649952113, + "min_y": 5292.864884480362, + "max_x": 2653.562484214765, + "max_y": 5293.920718743011, + "center": [ + 2653.034567083439, + 5293.392801611686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.506649952113, + 5293.920718743011 + ], + [ + 2653.562484214765, + 5292.864884480362 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C1D", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2646.9275576874697, + "min_y": 5287.285792215717, + "max_x": 2652.5269644394366, + "max_y": 5292.885198967685, + "center": [ + 2649.727261063453, + 5290.085495591701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.727261063453, + 5290.085495591701 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C1E", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2648.831265710804, + "min_y": 5290.320852869233, + "max_x": 2650.6230758714337, + "max_y": 5291.814028003091, + "center": [ + 2649.7271707911186, + 5291.067440436162 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C1F", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2647.922631621835, + "min_y": 5288.235620612994, + "max_x": 2652.4021570234086, + "max_y": 5289.7287957468525, + "center": [ + 2650.162394322622, + 5288.982208179923 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C20", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2651.706950305921, + "min_y": 5292.06518483417, + "max_x": 2653.03456708344, + "max_y": 5293.392801611688, + "center": [ + 2652.3707586946803, + 5292.728993222929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.706950305921, + 5292.06518483417 + ], + [ + 2653.03456708344, + 5293.392801611688 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C21", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2648.138299454233, + "min_y": 5301.780573357504, + "max_x": 2650.8260146951775, + "max_y": 5303.273748491362, + "center": [ + 2649.4821570747054, + 5302.527160924434 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2664.289429918262, + "min_y": 5384.79124575901, + "max_x": 2666.751386792812, + "max_y": 5384.79124575901, + "center": [ + 2665.5204083555373, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.751386792812, + 5384.79124575901 + ], + [ + 2664.289429918262, + 5384.79124575901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C23", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2666.610271486435, + "min_y": 5386.390163997049, + "max_x": 2670.193891807694, + "max_y": 5387.883339130907, + "center": [ + 2668.4020816470647, + 5387.136751563978 + ] + }, + "raw_value": "150A", + "clean_value": "150A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.066697478818, + "min_y": 5384.79124575901, + "max_x": 2673.828616745691, + "max_y": 5384.79124575901, + "center": [ + 2671.947657112254, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.066697478818, + 5384.79124575901 + ], + [ + 2673.828616745691, + 5384.79124575901 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C25", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2675.170797182685, + "min_y": 5384.067349823731, + "max_x": 2684.1298479858324, + "max_y": 5385.560524957589, + "center": [ + 2679.650322584259, + 5384.81393739066 + ] + }, + "raw_value": "FOR SAMPLE", + "clean_value": "FOR SAMPLE", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5286.683727126201, + "max_x": 2665.814350558482, + "max_y": 5288.553065787531, + "center": [ + 2665.814350558482, + 5287.618396456866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5288.553065787531 + ], + [ + 2665.814350558482, + 5286.683727126201 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5189.372149611017, + "max_x": 2673.394283301116, + "max_y": 5189.372149611017, + "center": [ + 2669.604316929799, + 5189.372149611017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5189.372149611017 + ], + [ + 2673.394283301116, + 5189.372149611017 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2771.651434422504, + "min_y": 5278.416211941356, + "max_x": 2771.651504328231, + "max_y": 5290.636939406067, + "center": [ + 2771.6514693753675, + 5284.526575673712 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2771.651504328231, + 5278.416211941356 + ], + [ + 2771.651434422504, + 5290.636939406067 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2867.225952892818, + "min_y": 5142.316236796443, + "max_x": 2867.225952892818, + "max_y": 5344.330863299241, + "center": [ + 2867.225952892818, + 5243.323550047842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2867.225952892818, + 5344.330863299241 + ], + [ + 2867.225952892818, + 5142.316236796443 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557C2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2566.227927054635, + "min_y": 5387.076212280902, + "max_x": 2584.91150576243, + "max_y": 5387.076212280902, + "center": [ + 2575.5697164085323, + 5387.076212280902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2566.227927054635, + 5387.076212280902 + ], + [ + 2584.91150576243, + 5387.076212280902 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2566.227927054635, + "min_y": 5382.506282331597, + "max_x": 2584.91150576243, + "max_y": 5382.506282331597, + "center": [ + 2575.5697164085323, + 5382.506282331597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2584.91150576243, + 5382.506282331597 + ], + [ + 2566.227927054635, + 5382.506282331597 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2584.91150576243, + "min_y": 5384.79124730625, + "max_x": 2587.196470737082, + "max_y": 5387.076212280902, + "center": [ + 2586.053988249756, + 5385.933729793576 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2584.91150576243, + 5387.076212280902 + ], + [ + 2587.196470737082, + 5384.79124730625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2584.91150576243, + "min_y": 5382.506282331597, + "max_x": 2587.196470737082, + "max_y": 5384.79124730625, + "center": [ + 2586.053988249756, + 5383.648764818923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2584.91150576243, + 5382.506282331597 + ], + [ + 2587.196470737082, + 5384.79124730625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2568.423784138119, + "min_y": 5383.823929412459, + "max_x": 2579.1746451018957, + "max_y": 5385.615739573088, + "center": [ + 2573.7992146200077, + 5384.719834492773 + ] + }, + "raw_value": "SOFT WATER", + "clean_value": "SOFT WATER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2566.227927054635, + "min_y": 5382.5062823316, + "max_x": 2566.227927054635, + "max_y": 5387.076212280902, + "center": [ + 2566.227927054635, + 5384.7912473062515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2566.227927054635, + 5387.076212280902 + ], + [ + 2566.227927054635, + 5382.5062823316 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C30", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2652.751558871278, + "min_y": 5386.140113170316, + "max_x": 2655.4392741122224, + "max_y": 5387.633288304174, + "center": [ + 2654.0954164917503, + 5386.886700737245 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C31", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2649.595364757143, + "min_y": 5364.274250866467, + "max_x": 2652.2830799980875, + "max_y": 5365.767426000325, + "center": [ + 2650.9392223776154, + 5365.020838433396 + ] + }, + "raw_value": "32A", + "clean_value": "32A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C32", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2588.543725760402, + "min_y": 5385.418037538975, + "max_x": 2606.4618273666965, + "max_y": 5386.911212672833, + "center": [ + 2597.5027765635496, + 5386.164625105905 + ] + }, + "raw_value": "SW-10809-15A-F1A-E50", + "clean_value": "SW-10809-15A-F1A-E50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C33", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2613.650074976171, + "min_y": 5313.002192455578, + "max_x": 2631.568176582465, + "max_y": 5314.495367589436, + "center": [ + 2622.6091257793178, + 5313.748780022506 + ] + }, + "raw_value": "SW-10822-32A-F1A-E50", + "clean_value": "SW-10822-32A-F1A-E50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C34", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2659.90911819975, + "min_y": 5267.356504925665, + "max_x": 2677.8272198060445, + "max_y": 5268.849680059523, + "center": [ + 2668.868169002897, + 5268.103092492594 + ] + }, + "raw_value": "SW-10821-50A-F1A-E50", + "clean_value": "SW-10821-50A-F1A-E50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C35", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2700.167577441216, + "min_y": 5291.805125248089, + "max_x": 2717.189773967196, + "max_y": 5293.298300381947, + "center": [ + 2708.678675704206, + 5292.551712815019 + ] + }, + "raw_value": "VG-10401-150A-F1A-N", + "clean_value": "VG-10401-150A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C36", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2796.855532720448, + "min_y": 5207.498206252129, + "max_x": 2807.6063936842247, + "max_y": 5209.290016412759, + "center": [ + 2802.230963202336, + 5208.394111332444 + ] + }, + "raw_value": "%%UT-10200", + "clean_value": "T-10200", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C37", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2806.104943334185, + "min_y": 5244.233761442617, + "max_x": 2816.8558042979616, + "max_y": 5246.025571603246, + "center": [ + 2811.4803738160736, + 5245.129666522931 + ] + }, + "raw_value": "%%UT-10100", + "clean_value": "T-10100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C38", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2670.640788289864, + "min_y": 5338.054787521459, + "max_x": 2685.423222115057, + "max_y": 5340.294550222246, + "center": [ + 2678.0320052024604, + 5339.174668871852 + ] + }, + "raw_value": "%%USC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C39", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2566.046612931238, + "min_y": 5387.563491227563, + "max_x": 2576.125545084779, + "max_y": 5388.683372577956, + "center": [ + 2571.0860790080087, + 5388.123431902759 + ] + }, + "raw_value": "SARF-#10-UFD-SW", + "clean_value": "SARF-#10-UFD-SW", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2629.178067778052, + "min_y": 5383.768143239748, + "max_x": 2629.17807185755, + "max_y": 5385.814105719711, + "center": [ + 2629.178069817801, + 5384.791124479729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.178067778052, + 5383.768143239748 + ], + [ + 2629.17807185755, + 5385.814105719711 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.709452090601, + "min_y": 5383.768164116902, + "max_x": 2624.709457622896, + "max_y": 5385.814174797146, + "center": [ + 2624.7094548567484, + 5384.791169457024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.709457622896, + 5385.814174797146 + ], + [ + 2624.709452090601, + 5383.768164116902 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.709452090601, + "min_y": 5383.768164116902, + "max_x": 2626.631532012021, + "max_y": 5384.791169625642, + "center": [ + 2625.670492051311, + 5384.279666871273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.709452090601, + 5383.768164116902 + ], + [ + 2626.631532012021, + 5384.791169625642 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.709457622896, + "min_y": 5384.791169625642, + "max_x": 2626.631532012021, + "max_y": 5385.814174797146, + "center": [ + 2625.6704948174583, + 5385.302672211394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.631532012021, + 5384.791169625642 + ], + [ + 2624.709457622896, + 5385.814174797146 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C3E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2624.114672300678, + "min_y": 5381.844480084296, + "max_x": 2626.8023875416225, + "max_y": 5383.337655218154, + "center": [ + 2625.4585299211503, + 5382.591067651225 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2693.340904971454, + "min_y": 5190.476101012379, + "max_x": 2694.901665862552, + "max_y": 5190.476101012379, + "center": [ + 2694.121285417003, + 5190.476101012379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.901665862552, + 5190.476101012379 + ], + [ + 2693.340904971454, + 5190.476101012379 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2694.121285417006, + "min_y": 5187.825373672224, + "max_x": 2694.121285417006, + "max_y": 5190.476101012379, + "center": [ + 2694.121285417006, + 5189.150737342301 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.121285417006, + 5190.476101012379 + ], + [ + 2694.121285417006, + 5187.825373672224 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C41", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2664.789041171391, + "min_y": 5230.075027922722, + "max_x": 2682.7071427776855, + "max_y": 5231.56820305658, + "center": [ + 2673.7480919745385, + 5230.821615489651 + ] + }, + "raw_value": "WW-10191-25A-F1A-E50", + "clean_value": "WW-10191-25A-F1A-E50", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2694.121285417006, + "min_y": 5190.476101012379, + "max_x": 2694.121285417006, + "max_y": 5192.084170605135, + "center": [ + 2694.121285417006, + 5191.280135808757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.121285417006, + 5190.476101012379 + ], + [ + 2694.121285417006, + 5192.084170605135 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.634249763969, + "min_y": 5207.534437812243, + "max_x": 2737.606892925093, + "max_y": 5207.534437812243, + "center": [ + 2719.1205713445306, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.634249763969, + 5207.534437812243 + ], + [ + 2737.606892925093, + 5207.534437812243 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C44", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2795.60509592307, + "min_y": 5185.596500769069, + "max_x": 2807.4310429832244, + "max_y": 5187.3883109296985, + "center": [ + 2801.5180694531473, + 5186.492405849383 + ] + }, + "raw_value": "%%UVP-10117", + "clean_value": "VP-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C45", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2812.535444264422, + "min_y": 5183.430943995374, + "max_x": 2826.571744322455, + "max_y": 5189.49965251711, + "center": [ + 2819.5535942934384, + 5186.465298256242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.535444264422, + 5183.430943995374 + ], + [ + 2826.571744322455, + 5183.430943995374 + ], + [ + 2826.571744322455, + 5189.49965251711 + ], + [ + 2812.535444264422, + 5189.49965251711 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C46", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2814.680611639245, + "min_y": 5185.344803107767, + "max_x": 2826.506558699399, + "max_y": 5187.136613268396, + "center": [ + 2820.593585169322, + 5186.240708188081 + ] + }, + "raw_value": "%%UVP-10217", + "clean_value": "VP-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2749.545103759858, + "min_y": 5195.044487027679, + "max_x": 2800.478078577262, + "max_y": 5195.044487027679, + "center": [ + 2775.01159116856, + 5195.044487027679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.545103759858, + 5195.044487027679 + ], + [ + 2800.478078577262, + 5195.044487027679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2800.478078577262, + "min_y": 5189.715656263279, + "max_x": 2800.478078577262, + "max_y": 5195.044487027679, + "center": [ + 2800.478078577262, + 5192.380071645479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2800.478078577262, + 5189.715656263279 + ], + [ + 2800.478078577262, + 5195.044487027679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2819.553594293437, + "min_y": 5189.49965251711, + "max_x": 2819.553594293437, + "max_y": 5200.180952825399, + "center": [ + 2819.553594293437, + 5194.840302671255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2819.553594293437, + 5189.49965251711 + ], + [ + 2819.553594293437, + 5200.180952825399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2860.520822235919, + "min_y": 5148.835393603751, + "max_x": 2860.520822235919, + "max_y": 5329.763697416868, + "center": [ + 2860.520822235919, + 5239.29954551031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.520822235919, + 5329.763697416868 + ], + [ + 2860.520822235919, + 5148.835393603751 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C4B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2752.8383503324776, + "min_y": 5139.873072614052, + "max_x": 2758.4377570844445, + "max_y": 5145.47247936602, + "center": [ + 2755.638053708461, + 5142.672775990036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.638053708461, + 5142.672775990036 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C4C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2754.212510789866, + "min_y": 5143.231470579157, + "max_x": 2756.9002260308102, + "max_y": 5144.724645713015, + "center": [ + 2755.556368410338, + 5143.9780581460855 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C4D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2753.42041202482, + "min_y": 5140.822901011329, + "max_x": 2758.7958425067086, + "max_y": 5142.316076145187, + "center": [ + 2756.1081272657643, + 5141.569488578258 + ] + }, + "raw_value": "10219B", + "clean_value": "10219B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C4E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2751.436423732742, + "min_y": 5136.549551214824, + "max_x": 2762.1872846965184, + "max_y": 5138.341361375453, + "center": [ + 2756.8118542146303, + 5137.445456295138 + ] + }, + "raw_value": "%%UE-10219", + "clean_value": "E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2855.905671791986, + "min_y": 5158.644210899137, + "max_x": 2856.004231116936, + "max_y": 5317.589539762316, + "center": [ + 2855.954951454461, + 5238.1168753307265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2856.004231116936, + 5317.589539762316 + ], + [ + 2855.905671791986, + 5158.644210899137 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C50", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2739.7731288103105, + "min_y": 5139.948242779052, + "max_x": 2745.3725355622773, + "max_y": 5145.5476495310195, + "center": [ + 2742.572832186294, + 5142.747946155036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.572832186294, + 5142.747946155036 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C51", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2741.147289267698, + "min_y": 5143.306640744156, + "max_x": 2743.835004508642, + "max_y": 5144.799815878014, + "center": [ + 2742.49114688817, + 5144.053228311084 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C52", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2740.355190502653, + "min_y": 5140.898071176327, + "max_x": 2745.7306209845415, + "max_y": 5142.391246310185, + "center": [ + 2743.042905743597, + 5141.6446587432565 + ] + }, + "raw_value": "10119B", + "clean_value": "10119B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C53", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2738.371202210575, + "min_y": 5136.624721379823, + "max_x": 2749.1220631743518, + "max_y": 5138.4165315404525, + "center": [ + 2743.746632692463, + 5137.520626460138 + ] + }, + "raw_value": "%%UE-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C54", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2807.9574530879804, + "min_y": 5175.282551104071, + "max_x": 2813.5568598399473, + "max_y": 5180.881957856039, + "center": [ + 2810.757156463964, + 5178.082254480055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.757156463964, + 5178.082254480055 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C55", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2809.331613545365, + "min_y": 5178.640949069176, + "max_x": 2812.0193287863094, + "max_y": 5180.134124203034, + "center": [ + 2810.6754711658373, + 5179.387536636104 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C56", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2808.952527022346, + "min_y": 5176.232379501347, + "max_x": 2813.4320524239197, + "max_y": 5177.725554635205, + "center": [ + 2811.192289723133, + 5176.978967068277 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C57", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2841.0266598304, + "min_y": 5329.097522399996, + "max_x": 2851.777520794177, + "max_y": 5330.889332560625, + "center": [ + 2846.4020903122882, + 5329.993427480311 + ] + }, + "raw_value": "%%UD-10113", + "clean_value": "D-10113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C58", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2789.5636824216117, + "min_y": 5175.3775519825585, + "max_x": 2795.1630891735786, + "max_y": 5180.976958734526, + "center": [ + 2792.363385797595, + 5178.177255358542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2792.363385797595, + 5178.177255358542 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C59", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2790.937842878999, + "min_y": 5178.911524849755, + "max_x": 2793.6255581199434, + "max_y": 5180.404699983613, + "center": [ + 2792.2817004994713, + 5179.658112416684 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C5A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2790.558756355979, + "min_y": 5176.502955281928, + "max_x": 2795.0382817575523, + "max_y": 5177.996130415786, + "center": [ + 2792.7985190567656, + 5177.249542848856 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C5B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2841.025956790178, + "min_y": 5316.675445781869, + "max_x": 2851.7768177539547, + "max_y": 5318.467255942498, + "center": [ + 2846.401387272066, + 5317.571350862183 + ] + }, + "raw_value": "%%UD-10213", + "clean_value": "D-10213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.490038817939, + "min_y": 5329.755685502112, + "max_x": 2860.520822235919, + "max_y": 5329.755685502112, + "center": [ + 2856.0054305269286, + 5329.755685502112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.490038817939, + 5329.755685502112 + ], + [ + 2860.520822235919, + 5329.755685502112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2851.361111865277, + "min_y": 5317.590056708861, + "max_x": 2856.004231116936, + "max_y": 5317.590056708861, + "center": [ + 2853.6826714911067, + 5317.590056708861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2851.361111865277, + 5317.590056708861 + ], + [ + 2856.004231116936, + 5317.590056708861 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C5E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2754.411110442268, + "min_y": 5146.848299497023, + "max_x": 2770.5374018879334, + "max_y": 5148.341474630881, + "center": [ + 2762.474256165101, + 5147.594887063951 + ] + }, + "raw_value": "VG-10444-25A-F1A-N", + "clean_value": "VG-10444-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C5F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2740.990504926608, + "min_y": 5146.762235626555, + "max_x": 2757.1167963722733, + "max_y": 5148.255410760413, + "center": [ + 2749.053650649441, + 5147.508823193484 + ] + }, + "raw_value": "VG-10443-25A-F1A-N", + "clean_value": "VG-10443-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C60", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2737.606892925093, + "min_y": 5206.787850245314, + "max_x": 2737.606892925093, + "max_y": 5208.281025379172, + "center": [ + 2737.606892925093, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.606892925093, + 5208.281025379172 + ], + [ + 2737.606892925093, + 5206.787850245314 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2737.855755447404, + "min_y": 5206.787850245314, + "max_x": 2737.855755447404, + "max_y": 5208.281025379172, + "center": [ + 2737.855755447404, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2737.855755447404, + 5208.281025379172 + ], + [ + 2737.855755447404, + 5206.787850245314 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2732.641355845791, + "min_y": 5171.992279893753, + "max_x": 2732.642981468461, + "max_y": 5206.787850245314, + "center": [ + 2732.642168657126, + 5189.390065069534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2732.641355845791, + 5206.787850245314 + ], + [ + 2732.642981468461, + 5171.992279893753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2728.283911451844, + "min_y": 5165.649165549815, + "max_x": 2728.285849773707, + "max_y": 5206.787850245314, + "center": [ + 2728.2848806127754, + 5186.218507897564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2728.283911451844, + 5206.787850245314 + ], + [ + 2728.285849773707, + 5165.649165549815 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C64", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2726.790736317986, + "min_y": 5206.0412626783855, + "max_x": 2728.2839114518442, + "max_y": 5207.534437812243, + "center": [ + 2727.537323884915, + 5206.787850245314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2727.537323884915, + 5206.787850245314 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C65", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2731.148180711932, + "min_y": 5206.0412626783855, + "max_x": 2732.6413558457903, + "max_y": 5207.534437812243, + "center": [ + 2731.894768278861, + 5206.787850245314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.894768278861, + 5206.787850245314 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2749.54516763191, + "min_y": 5195.044487027679, + "max_x": 2749.54516763191, + "max_y": 5326.818406181204, + "center": [ + 2749.54516763191, + 5260.931446604442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.54516763191, + 5326.818406181204 + ], + [ + 2749.54516763191, + 5195.044487027679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.025244011013, + "min_y": 5200.180952825399, + "max_x": 2754.025244011013, + "max_y": 5332.334070652462, + "center": [ + 2754.025244011013, + 5266.257511738931 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.025244011013, + 5332.334070652462 + ], + [ + 2754.025244011013, + 5200.180952825399 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C68", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2756.271228764397, + "min_y": 5195.498147466349, + "max_x": 2772.3975202100623, + "max_y": 5196.991322600207, + "center": [ + 2764.33437448723, + 5196.244735033279 + ] + }, + "raw_value": "VG-10411-65A-F1A-N", + "clean_value": "VG-10411-65A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C69", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2821.4590977934076, + "min_y": 5248.72757719997, + "max_x": 2827.0585045453745, + "max_y": 5254.326983951938, + "center": [ + 2824.258801169391, + 5251.527280575954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2824.258801169391, + 5251.527280575954 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C6A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2823.316449724109, + "min_y": 5252.085975165076, + "max_x": 2825.108259884739, + "max_y": 5253.579150298934, + "center": [ + 2824.2123548044237, + 5252.832562732005 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C6B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2822.534971939186, + "min_y": 5249.677405597246, + "max_x": 2827.0144973407596, + "max_y": 5251.170580731105, + "center": [ + 2824.774734639973, + 5250.423993164175 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.306573309907, + "min_y": 5255.890921973926, + "max_x": 2810.306573309907, + "max_y": 5280.721247464679, + "center": [ + 2810.306573309907, + 5268.306084719303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.306573309907, + 5280.721247464679 + ], + [ + 2810.306573309907, + 5255.890921973926 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2677.155842257342, + "min_y": 5318.831396722578, + "max_x": 2679.621114175251, + "max_y": 5318.831396722578, + "center": [ + 2678.388478216297, + 5318.831396722578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2677.155842257342, + 5318.831396722578 + ], + [ + 2679.621114175251, + 5318.831396722578 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.315934509958, + "min_y": 5318.18294428295, + "max_x": 2669.315934509958, + "max_y": 5319.505185217966, + "center": [ + 2669.315934509958, + 5318.844064750458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.315934509958, + 5319.505185217966 + ], + [ + 2669.315934509958, + 5318.18294428295 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.564797032267, + "min_y": 5318.18294428295, + "max_x": 2669.564797032267, + "max_y": 5319.505185217966, + "center": [ + 2669.564797032267, + 5318.844064750458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.564797032267, + 5319.505185217966 + ], + [ + 2669.564797032267, + 5318.18294428295 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C70", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2716.109603596937, + "min_y": 5208.196972216633, + "max_x": 2719.693223918196, + "max_y": 5209.690147350491, + "center": [ + 2717.901413757567, + 5208.943559783562 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C71", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2756.217901081046, + "min_y": 5200.80960292517, + "max_x": 2772.344192526711, + "max_y": 5202.302778059028, + "center": [ + 2764.281046803879, + 5201.5561904921 + ] + }, + "raw_value": "VG-10412-50A-F1A-N", + "clean_value": "VG-10412-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C72", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2800.493712504346, + "min_y": 5222.134534951811, + "max_x": 2816.6200039500113, + "max_y": 5223.627710085669, + "center": [ + 2808.556858227179, + 5222.88112251874 + ] + }, + "raw_value": "VG-10431-50A-F1A-N", + "clean_value": "VG-10431-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C73", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2709.645619330678, + "min_y": 5323.508694150434, + "max_x": 2725.7719107763432, + "max_y": 5325.001869284292, + "center": [ + 2717.7087650535104, + 5324.255281717364 + ] + }, + "raw_value": "VG-10411-65A-F1A-N", + "clean_value": "VG-10411-65A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C74", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2709.765558180846, + "min_y": 5329.717037408807, + "max_x": 2725.891849626511, + "max_y": 5331.210212542665, + "center": [ + 2717.8287039036786, + 5330.463624975737 + ] + }, + "raw_value": "VG-10412-50A-F1A-N", + "clean_value": "VG-10412-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2824.286739928506, + "min_y": 5256.198560413313, + "max_x": 2824.286739928506, + "max_y": 5280.721247464679, + "center": [ + 2824.286739928506, + 5268.459903938996 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2824.286739928506, + 5256.198560413313 + ], + [ + 2824.286739928506, + 5280.721247464679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C76", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2823.114174835963, + "min_y": 5258.869292898628, + "max_x": 2839.240466281628, + "max_y": 5260.3624680324865, + "center": [ + 2831.177320558795, + 5259.615880465557 + ] + }, + "raw_value": "VG-10433-50A-F1A-N", + "clean_value": "VG-10433-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2771.651434422504, + "min_y": 5278.414946649013, + "max_x": 2801.807708788326, + "max_y": 5278.414946649013, + "center": [ + 2786.729571605415, + 5278.414946649013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2771.651434422504, + 5278.414946649013 + ], + [ + 2801.807708788326, + 5278.414946649013 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2849.005430216264, + "min_y": 5277.612017075703, + "max_x": 2849.005430216264, + "max_y": 5279.10519220956, + "center": [ + 2849.005430216264, + 5278.358604642632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2849.005430216264, + 5279.10519220956 + ], + [ + 2849.005430216264, + 5277.612017075703 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2849.254292738575, + "min_y": 5277.612017075703, + "max_x": 2849.254292738575, + "max_y": 5279.10519220956, + "center": [ + 2849.254292738575, + 5278.358604642632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2849.254292738575, + 5279.10519220956 + ], + [ + 2849.254292738575, + 5277.612017075703 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557C7A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2820.112153289992, + "min_y": 5244.296063227469, + "max_x": 2830.8630142537686, + "max_y": 5246.087873388098, + "center": [ + 2825.48758377188, + 5245.191968307783 + ] + }, + "raw_value": "%%UT-10201", + "clean_value": "T-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C7B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2843.0527133359224, + "min_y": 5248.72757719997, + "max_x": 2848.652120087889, + "max_y": 5254.326983951938, + "center": [ + 2845.852416711906, + 5251.527280575954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2845.852416711906, + 5251.527280575954 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C7C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2844.910065266626, + "min_y": 5252.085975165076, + "max_x": 2846.701875427256, + "max_y": 5253.579150298934, + "center": [ + 2845.8059703469407, + 5252.832562732005 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C7D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2844.047787270289, + "min_y": 5249.677405597246, + "max_x": 2848.5273126718625, + "max_y": 5251.170580731105, + "center": [ + 2846.287549971076, + 5250.423993164175 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2845.852416711903, + "min_y": 5256.190321114727, + "max_x": 2845.852416711906, + "max_y": 5280.721247464679, + "center": [ + 2845.8524167119044, + 5268.455784289703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2845.852416711903, + 5256.190321114727 + ], + [ + 2845.852416711906, + 5280.721247464679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C7F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2845.157460749766, + "min_y": 5258.869292898628, + "max_x": 2861.283752195431, + "max_y": 5260.3624680324865, + "center": [ + 2853.220606472599, + 5259.615880465557 + ] + }, + "raw_value": "VG-10422-50A-F1A-N", + "clean_value": "VG-10422-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C80", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2841.828144373486, + "min_y": 5244.296063227469, + "max_x": 2852.5790053372625, + "max_y": 5246.087873388098, + "center": [ + 2847.2035748553744, + 5245.191968307783 + ] + }, + "raw_value": "%%UT-10101", + "clean_value": "T-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C81", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2831.8538998319887, + "min_y": 5248.72757719997, + "max_x": 2837.4533065839555, + "max_y": 5254.326983951938, + "center": [ + 2834.653603207972, + 5251.527280575954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.653603207972, + 5251.527280575954 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C82", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2833.711251762691, + "min_y": 5252.085975165076, + "max_x": 2835.5030619233207, + "max_y": 5253.579150298934, + "center": [ + 2834.607156843006, + 5252.832562732005 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C83", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2832.970174083476, + "min_y": 5249.677405597246, + "max_x": 2837.4496994850497, + "max_y": 5251.170580731105, + "center": [ + 2835.209936784263, + 5250.423993164175 + ] + }, + "raw_value": "10221", + "clean_value": "10221", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557C84", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2833.908888936271, + "min_y": 5259.234902886439, + "max_x": 2850.0351803819362, + "max_y": 5260.728078020297, + "center": [ + 2841.972034659104, + 5259.981490453369 + ] + }, + "raw_value": "VG-10432-50A-F1A-N", + "clean_value": "VG-10432-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.65360320797, + "min_y": 5256.207520805631, + "max_x": 2834.653603207972, + "max_y": 5280.804104082797, + "center": [ + 2834.653603207971, + 5268.505812444214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.65360320797, + 5256.207520805631 + ], + [ + 2834.653603207972, + 5280.804104082797 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C86", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2830.629330869552, + "min_y": 5244.296063227469, + "max_x": 2841.380191833329, + "max_y": 5246.087873388098, + "center": [ + 2836.0047613514407, + 5245.191968307783 + ] + }, + "raw_value": "%%UT-10221", + "clean_value": "T-10221", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557C87", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2765.127170231954, + "min_y": 5173.334835652897, + "max_x": 2782.149366757934, + "max_y": 5174.828010786755, + "center": [ + 2773.638268494944, + 5174.081423219826 + ] + }, + "raw_value": "VG-10441-200A-F1A-N", + "clean_value": "VG-10441-200A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C88", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2765.178656100812, + "min_y": 5162.815557733966, + "max_x": 2782.200852626792, + "max_y": 5164.308732867824, + "center": [ + 2773.689754363802, + 5163.562145300895 + ] + }, + "raw_value": "VG-10442-150A-F1A-N", + "clean_value": "VG-10442-150A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557C89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.521255955861, + "min_y": 5278.415462626646, + "max_x": 2797.521255955861, + "max_y": 5280.655225327432, + "center": [ + 2797.521255955861, + 5279.535343977039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.521255955861, + 5278.415462626646 + ], + [ + 2797.521255955861, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2798.26784352279, + "min_y": 5281.401812894361, + "max_x": 2800.31057512924, + "max_y": 5281.401812894361, + "center": [ + 2799.289209326015, + 5281.401812894361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2800.31057512924, + 5281.401812894361 + ], + [ + 2798.26784352279, + 5281.401812894361 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2799.563987562311, + "min_y": 5279.908637760504, + "max_x": 2801.057162696169, + "max_y": 5281.401812894361, + "center": [ + 2800.31057512924, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2800.31057512924, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2797.521255955861, + "min_y": 5279.908637760504, + "max_x": 2799.014431089719, + "max_y": 5281.401812894361, + "center": [ + 2798.26784352279, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2798.26784352279, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.750833188197, + "min_y": 5278.415462626646, + "max_x": 2820.750833188197, + "max_y": 5280.655225327432, + "center": [ + 2820.750833188197, + 5279.535343977039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.750833188197, + 5278.415462626646 + ], + [ + 2820.750833188197, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2821.497420755126, + "min_y": 5281.401812894361, + "max_x": 2823.540152361577, + "max_y": 5281.401812894361, + "center": [ + 2822.518786558351, + 5281.401812894361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.540152361577, + 5281.401812894361 + ], + [ + 2821.497420755126, + 5281.401812894361 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C8F", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2822.793564794648, + "min_y": 5279.908637760504, + "max_x": 2824.286739928506, + "max_y": 5281.401812894361, + "center": [ + 2823.540152361577, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.540152361577, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C90", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2820.750833188197, + "min_y": 5279.908637760504, + "max_x": 2822.244008322055, + "max_y": 5281.401812894361, + "center": [ + 2821.497420755126, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2821.497420755126, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2806.771009208208, + "min_y": 5278.415462626646, + "max_x": 2806.771009208208, + "max_y": 5280.655225327432, + "center": [ + 2806.771009208208, + 5279.535343977039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2806.771009208208, + 5278.415462626646 + ], + [ + 2806.771009208208, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2807.517596775137, + "min_y": 5281.401812894358, + "max_x": 2809.560328381587, + "max_y": 5281.401812894358, + "center": [ + 2808.538962578362, + 5281.401812894358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2809.560328381587, + 5281.401812894358 + ], + [ + 2807.517596775137, + 5281.401812894358 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C93", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2808.813740814658, + "min_y": 5279.908637760504, + "max_x": 2810.3069159485162, + "max_y": 5281.401812894361, + "center": [ + 2809.560328381587, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2809.560328381587, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C94", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2806.771009208208, + "min_y": 5279.908637760504, + "max_x": 2808.264184342066, + "max_y": 5281.401812894361, + "center": [ + 2807.517596775137, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2807.517596775137, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2831.117696467663, + "min_y": 5278.415462626646, + "max_x": 2831.117696467663, + "max_y": 5280.655225327432, + "center": [ + 2831.117696467663, + 5279.535343977039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.117696467663, + 5278.415462626646 + ], + [ + 2831.117696467663, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2831.864284034592, + "min_y": 5281.401812894358, + "max_x": 2833.907015641043, + "max_y": 5281.401812894358, + "center": [ + 2832.8856498378173, + 5281.401812894358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.907015641043, + 5281.401812894358 + ], + [ + 2831.864284034592, + 5281.401812894358 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C97", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2833.160428074114, + "min_y": 5279.908637760504, + "max_x": 2834.653603207972, + "max_y": 5281.401812894361, + "center": [ + 2833.907015641043, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.907015641043, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C98", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2831.117696467663, + "min_y": 5279.908637760504, + "max_x": 2832.610871601521, + "max_y": 5281.401812894361, + "center": [ + 2831.864284034592, + 5280.655225327432 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.864284034592, + 5280.655225327432 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C99", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.316509971596, + "min_y": 5278.415462626643, + "max_x": 2842.316509971596, + "max_y": 5280.655225327429, + "center": [ + 2842.316509971596, + 5279.535343977036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.316509971596, + 5278.415462626643 + ], + [ + 2842.316509971596, + 5280.655225327429 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2843.063097538524, + "min_y": 5281.401812894358, + "max_x": 2845.105829144977, + "max_y": 5281.401812894358, + "center": [ + 2844.0844633417505, + 5281.401812894358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2845.105829144977, + 5281.401812894358 + ], + [ + 2843.063097538524, + 5281.401812894358 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9B", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2844.359241578048, + "min_y": 5279.908637760501, + "max_x": 2845.8524167119062, + "max_y": 5281.401812894358, + "center": [ + 2845.105829144977, + 5280.655225327429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2845.105829144977, + 5280.655225327429 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9C", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2842.3165099715948, + "min_y": 5279.908637760501, + "max_x": 2843.809685105453, + "max_y": 5281.401812894358, + "center": [ + 2843.063097538524, + 5280.655225327429 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2843.063097538524, + 5280.655225327429 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2801.803750263098, + "min_y": 5278.415462626646, + "max_x": 2805.909981881208, + "max_y": 5278.415462626646, + "center": [ + 2803.856866072153, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.803750263098, + 5278.415462626646 + ], + [ + 2805.909981881208, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2805.909981881208, + "min_y": 5278.415462626646, + "max_x": 2817.108795385142, + "max_y": 5278.415462626646, + "center": [ + 2811.509388633175, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2805.909981881208, + 5278.415462626646 + ], + [ + 2817.108795385142, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557C9F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2818.075168946468, + "min_y": 5278.415462626646, + "max_x": 2822.708202137109, + "max_y": 5278.415462626646, + "center": [ + 2820.3916855417883, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2818.075168946468, + 5278.415462626646 + ], + [ + 2822.708202137109, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2822.708202137109, + "min_y": 5278.415462626646, + "max_x": 2828.307608889075, + "max_y": 5278.415462626646, + "center": [ + 2825.507905513092, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2822.708202137109, + 5278.415462626646 + ], + [ + 2828.307608889075, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2829.800784022934, + "min_y": 5278.415462626646, + "max_x": 2833.907015641043, + "max_y": 5278.415462626646, + "center": [ + 2831.853899831988, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2829.800784022934, + 5278.415462626646 + ], + [ + 2833.907015641043, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.4001907749, + "min_y": 5278.415462626646, + "max_x": 2839.383362275873, + "max_y": 5278.415462626646, + "center": [ + 2837.3917765253864, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.4001907749, + 5278.415462626646 + ], + [ + 2839.383362275873, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2839.383362275873, + "min_y": 5278.415462626646, + "max_x": 2845.105829144977, + "max_y": 5278.415462626646, + "center": [ + 2842.244595710425, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.383362275873, + 5278.415462626646 + ], + [ + 2845.105829144977, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.599004278835, + "min_y": 5278.415462626646, + "max_x": 2849.005430216264, + "max_y": 5278.415462626646, + "center": [ + 2847.8022172475494, + 5278.415462626646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.599004278835, + 5278.415462626646 + ], + [ + 2849.005430216264, + 5278.415462626646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2779.048640510676, + "min_y": 5274.82054197801, + "max_x": 2796.0708370366556, + "max_y": 5276.313717111868, + "center": [ + 2787.5597387736657, + 5275.567129544939 + ] + }, + "raw_value": "VG-10401-150A-F1A-N", + "clean_value": "VG-10401-150A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2650.577294763286, + "min_y": 5253.980991807517, + "max_x": 2652.545987995128, + "max_y": 5253.980991807517, + "center": [ + 2651.561641379207, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.577294763286, + 5253.980991807517 + ], + [ + 2652.545987995128, + 5253.980991807517 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CA7", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2656.417522760524, + "min_y": 5255.585232158341, + "max_x": 2659.1052380014685, + "max_y": 5257.078407292199, + "center": [ + 2657.7613803809963, + 5256.33181972527 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2598.894067796094, + "min_y": 5259.332332792203, + "max_x": 2599.308223194217, + "max_y": 5261.141591269033, + "center": [ + 2599.101145495156, + 5260.236962030618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.894067796094, + 5259.332332792203 + ], + [ + 2599.308223194217, + 5261.141591269033 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.973087532092, + "min_y": 5259.332332792203, + "max_x": 2600.387242929953, + "max_y": 5261.141591269033, + "center": [ + 2600.1801652310223, + 5260.236962030618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2600.387242929953, + 5259.332332792203 + ], + [ + 2599.973087532092, + 5261.141591269033 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.308223194217, + "min_y": 5261.141591269033, + "max_x": 2599.973087532092, + "max_y": 5261.141591269033, + "center": [ + 2599.6406553631546, + 5261.141591269033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.973087532092, + 5261.141591269033 + ], + [ + 2599.308223194217, + 5261.141591269033 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2598.894067796094, + "min_y": 5259.332332792203, + "max_x": 2600.387242929953, + "max_y": 5259.332332792203, + "center": [ + 2599.6406553630236, + 5259.332332792203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.894067796094, + 5259.332332792203 + ], + [ + 2600.387242929953, + 5259.332332792203 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655363154, + "min_y": 5261.141591269033, + "max_x": 2599.640655363154, + "max_y": 5262.607960075897, + "center": [ + 2599.640655363154, + 5261.874775672464 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655363154, + 5261.141591269033 + ], + [ + 2599.640655363154, + 5262.607960075897 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655363024, + "min_y": 5257.88008631002, + "max_x": 2599.640655363024, + "max_y": 5259.332332792203, + "center": [ + 2599.640655363024, + 5258.6062095511115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655363024, + 5257.88008631002 + ], + [ + 2599.640655363024, + 5259.332332792203 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CAE", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2591.519548656984, + "min_y": 5259.311448181565, + "max_x": 2597.7908842191873, + "max_y": 5260.804623315423, + "center": [ + 2594.6552164380855, + 5260.058035748494 + ] + }, + "raw_value": "40Ax32A", + "clean_value": "40Ax32A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557CAF", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2610.14367362834, + "min_y": 5286.723646918829, + "max_x": 2612.831388869284, + "max_y": 5288.216822052687, + "center": [ + 2611.487531248812, + 5287.470234485758 + ] + }, + "raw_value": "32A", + "clean_value": "32A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557CB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865208895, + "min_y": 5283.454130294424, + "max_x": 2614.276865208897, + "max_y": 5285.729965590814, + "center": [ + 2614.276865208896, + 5284.592047942619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208895, + 5283.454130294424 + ], + [ + 2614.276865208897, + 5285.729965590814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5283.454130294424, + "max_x": 2614.276865208897, + "max_y": 5285.729965590814, + "center": [ + 2614.276865208897, + 5284.592047942619 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208897, + 5283.454130294424 + ], + [ + 2614.276865208897, + 5285.729965590814 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5276.863192324723, + "max_x": 2613.944433040218, + "max_y": 5278.672450801552, + "center": [ + 2613.7373553411576, + 5277.767821563138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.530277642097, + 5276.863192324723 + ], + [ + 2613.944433040218, + 5278.672450801552 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.609297378094, + "min_y": 5276.863192324723, + "max_x": 2615.023452775954, + "max_y": 5278.672450801552, + "center": [ + 2614.816375077024, + 5277.767821563138 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.023452775954, + 5276.863192324723 + ], + [ + 2614.609297378094, + 5278.672450801552 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.944433040218, + "min_y": 5278.672450801552, + "max_x": 2614.609297378094, + "max_y": 5278.672450801552, + "center": [ + 2614.2768652091563, + 5278.672450801552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.609297378094, + 5278.672450801552 + ], + [ + 2613.944433040218, + 5278.672450801552 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.530277642097, + "min_y": 5276.863192324723, + "max_x": 2615.023452775954, + "max_y": 5276.863192324723, + "center": [ + 2614.2768652090253, + 5276.863192324723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.530277642097, + 5276.863192324723 + ], + [ + 2615.023452775954, + 5276.863192324723 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557CB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865209156, + "min_y": 5278.672450801552, + "max_x": 2614.276865209156, + "max_y": 5280.138819608417, + "center": [ + 2614.276865209156, + 5279.405635204985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865209156, + 5278.672450801552 + ], + [ + 2614.276865209156, + 5280.138819608417 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865209026, + "min_y": 5275.410945842541, + "max_x": 2614.276865209026, + "max_y": 5276.863192324723, + "center": [ + 2614.276865209026, + 5276.137069083632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865209026, + 5275.410945842541 + ], + [ + 2614.276865209026, + 5276.863192324723 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CBA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2606.037057163698, + "min_y": 5276.958216624311, + "max_x": 2612.3083927259013, + "max_y": 5278.451391758169, + "center": [ + 2609.1727249447995, + 5277.70480419124 + ] + }, + "raw_value": "40Ax32A", + "clean_value": "40Ax32A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557CBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2599.640655362895, + "min_y": 5290.638931397567, + "max_x": 2614.276865208897, + "max_y": 5290.638931397567, + "center": [ + 2606.958760285896, + 5290.638931397567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208897, + 5290.638931397567 + ], + [ + 2599.640655362895, + 5290.638931397567 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557CBC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.080124281034, + "min_y": 5264.292098485085, + "max_x": 2661.080124281034, + "max_y": 5293.453559492007, + "center": [ + 2661.080124281034, + 5278.872828988546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.080124281034, + 5293.453559492007 + ], + [ + 2661.080124281034, + 5264.292098485085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CBD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.572249458673, + "min_y": 5264.292098485085, + "max_x": 2661.080124281034, + "max_y": 5264.292098485085, + "center": [ + 2637.3261868698537, + 5264.292098485085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.080124281034, + 5264.292098485085 + ], + [ + 2613.572249458673, + 5264.292098485085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2598.54727205493, + "min_y": 5292.050059845466, + "max_x": 2612.887506420563, + "max_y": 5292.050059845466, + "center": [ + 2605.717389237747, + 5292.050059845466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2612.887506420563, + 5292.050059845466 + ], + [ + 2598.54727205493, + 5292.050059845466 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2598.54727205493, + "min_y": 5247.404249242618, + "max_x": 2598.54727205493, + "max_y": 5292.050059845466, + "center": [ + 2598.54727205493, + 5269.727154544042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.54727205493, + 5292.050059845466 + ], + [ + 2598.54727205493, + 5247.404249242618 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2607.074076955981, + "min_y": 5246.612350204681, + "max_x": 2651.396951826314, + "max_y": 5246.612350204681, + "center": [ + 2629.2355143911473, + 5246.612350204681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2607.074076955981, + 5246.612350204681 + ], + [ + 2651.396951826314, + 5246.612350204681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.396951826314, + "min_y": 5253.249097328381, + "max_x": 2666.560938125412, + "max_y": 5253.249097328381, + "center": [ + 2658.9789449758628, + 5253.249097328381 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.396951826314, + 5253.249097328381 + ], + [ + 2666.560938125412, + 5253.249097328381 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.560938125412, + "min_y": 5188.47767414617, + "max_x": 2666.560938125412, + "max_y": 5293.914386746823, + "center": [ + 2666.560938125412, + 5241.1960304464965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.560938125412, + 5293.914386746823 + ], + [ + 2666.560938125412, + 5188.47767414617 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.560938125412, + "min_y": 5188.460722866945, + "max_x": 2674.073286955899, + "max_y": 5188.460722866945, + "center": [ + 2670.3171125406557, + 5188.460722866945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.560938125412, + 5188.460722866945 + ], + [ + 2674.073286955899, + 5188.460722866945 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2674.073286955899, + "min_y": 5185.335425012789, + "max_x": 2674.073286955899, + "max_y": 5188.460722866945, + "center": [ + 2674.073286955899, + 5186.898073939867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.073286955899, + 5188.460722866945 + ], + [ + 2674.073286955899, + 5185.335425012789 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.396951826314, + "min_y": 5246.612350204681, + "max_x": 2651.396951826314, + "max_y": 5264.292098485085, + "center": [ + 2651.396951826314, + 5255.452224344883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.396951826314, + 5264.292098485085 + ], + [ + 2651.396951826314, + 5246.612350204681 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.572249458673, + "min_y": 5264.410246503508, + "max_x": 2613.572249458673, + "max_y": 5361.614993249562, + "center": [ + 2613.572249458673, + 5313.012619876535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.572249458673, + 5361.614993249562 + ], + [ + 2613.572249458673, + 5264.410246503508 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.572249458673, + "min_y": 5361.496845231139, + "max_x": 2664.824222066333, + "max_y": 5361.496845231139, + "center": [ + 2639.198235762503, + 5361.496845231139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.824222066333, + 5361.496845231139 + ], + [ + 2613.572249458673, + 5361.496845231139 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2587.196470737082, + "min_y": 5383.755827517989, + "max_x": 2656.803920223096, + "max_y": 5383.755827517989, + "center": [ + 2622.000195480089, + 5383.755827517989 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.803920223096, + 5383.755827517989 + ], + [ + 2587.196470737082, + 5383.755827517989 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CC9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2608.548381316083, + "min_y": 5375.109218039984, + "max_x": 2608.548381316083, + "max_y": 5383.755827517989, + "center": [ + 2608.548381316083, + 5379.432522778987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2608.548381316083, + 5383.755827517989 + ], + [ + 2608.548381316083, + 5375.109218039984 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CCA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2608.548381316083, + "min_y": 5375.113796433357, + "max_x": 2642.107616281828, + "max_y": 5375.113796433357, + "center": [ + 2625.3279987989554, + 5375.113796433357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2608.548381316083, + 5375.113796433357 + ], + [ + 2642.107616281828, + 5375.113796433357 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CCB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2642.108995496059, + "min_y": 5375.12369673006, + "max_x": 2642.108995496059, + "max_y": 5383.755827517989, + "center": [ + 2642.108995496059, + 5379.439762124024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.108995496059, + 5375.12369673006 + ], + [ + 2642.108995496059, + 5383.755827517989 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557CCC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.397190762271, + "min_y": 5159.518890074213, + "max_x": 2702.672247244196, + "max_y": 5159.518890074213, + "center": [ + 2686.5347190032335, + 5159.518890074213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2702.672247244196, + 5159.518890074213 + ], + [ + 2670.397190762271, + 5159.518890074213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CCD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2685.663098570694, + "min_y": 5166.148811738648, + "max_x": 2687.0424770357904, + "max_y": 5167.298293792895, + "center": [ + 2686.352787803242, + 5166.723552765771 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CCE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2684.1360723287344, + "min_y": 5163.889543916791, + "max_x": 2689.2448814587215, + "max_y": 5168.998353046777, + "center": [ + 2686.690476893728, + 5166.443948481784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.690476893728, + 5166.443948481784 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CCF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2702.672247244196, + "min_y": 5161.30675141866, + "max_x": 2708.137574299826, + "max_y": 5161.30675141866, + "center": [ + 2705.404910772011, + 5161.30675141866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.137574299826, + 5161.30675141866 + ], + [ + 2702.672247244196, + 5161.30675141866 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD0", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2685.113013933634, + "min_y": 5162.049338832645, + "max_x": 2687.871770863827, + "max_y": 5163.198820886892, + "center": [ + 2686.4923923987308, + 5162.624079859768 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2704.256783564555, + "min_y": 5160.526370973204, + "max_x": 2704.256783564555, + "max_y": 5162.087131864115, + "center": [ + 2704.256783564555, + 5161.30675141866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2704.256783564555, + 5160.526370973204 + ], + [ + 2704.256783564555, + 5162.087131864115 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD2", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2709.792106838593, + "min_y": 5161.881486914746, + "max_x": 2711.1714853036897, + "max_y": 5163.030968968993, + "center": [ + 2710.4817960711416, + 5162.45622794187 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2708.1375742997666, + "min_y": 5158.7523468536665, + "max_x": 2713.2463834297537, + "max_y": 5163.861155983653, + "center": [ + 2710.69197886476, + 5161.30675141866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.69197886476, + 5161.30675141866 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD4", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2709.220227664348, + "min_y": 5159.618433911953, + "max_x": 2711.9789845945406, + "max_y": 5160.767915966199, + "center": [ + 2710.5996061294445, + 5160.193174939076 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2709.104914633704, + "min_y": 5175.947481084929, + "max_x": 2710.4842930988007, + "max_y": 5177.096963139175, + "center": [ + 2709.794603866252, + 5176.522222112052 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD6", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2707.4870218353562, + "min_y": 5172.818341023862, + "max_x": 2712.5958309653433, + "max_y": 5177.927150153848, + "center": [ + 2710.04142640035, + 5175.372745588855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.04142640035, + 5175.372745588855 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.82172584471, + "min_y": 5170.923458744494, + "max_x": 2710.04142640035, + "max_y": 5170.923458744494, + "center": [ + 2709.43157612253, + 5170.923458744494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.04142640035, + 5170.923458744494 + ], + [ + 2708.82172584471, + 5170.923458744494 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2704.256783564555, + "min_y": 5170.143078299038, + "max_x": 2704.256783564555, + "max_y": 5171.703839189941, + "center": [ + 2704.256783564555, + 5170.92345874449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2704.256783564555, + 5170.143078299038 + ], + [ + 2704.256783564555, + 5171.703839189941 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CD9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2708.569675199936, + "min_y": 5173.684428082136, + "max_x": 2711.3284321301285, + "max_y": 5174.833910136383, + "center": [ + 2709.949053665032, + 5174.259169109259 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CDA", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2677.398602011692, + "min_y": 5175.041125931371, + "max_x": 2703.7912800108124, + "max_y": 5176.573768670368, + "center": [ + 2690.5949410112526, + 5175.807447300869 + ] + }, + "raw_value": "\\pi12.536;\\L\\fArial|b1|i1|c238|p34;\\H1.3333x;T-3210", + "clean_value": "\\pi12.536; \\fArial|b1|i1|c238|p34; .3333x;T-3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2671.210369243544, + "min_y": 5156.714364198032, + "max_x": 2672.449707482347, + "max_y": 5156.714364198032, + "center": [ + 2671.8300383629457, + 5156.714364198032 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.449707482347, + 5156.714364198032 + ], + [ + 2671.210369243544, + 5156.714364198032 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CDF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.784404919192, + "min_y": 5155.883112902457, + "max_x": 2668.716218074719, + "max_y": 5156.441028230379, + "center": [ + 2668.250311496956, + 5156.162070566417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.784404919192, + 5155.883112902457 + ], + [ + 2668.716218074719, + 5156.441028230379 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.629252858969, + "min_y": 5156.987700165672, + "max_x": 2670.561066014491, + "max_y": 5157.545615493599, + "center": [ + 2670.09515943673, + 5157.266657829636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.629252858969, + 5156.987700165672 + ], + [ + 2670.561066014491, + 5157.545615493599 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.784404919192, + "min_y": 5155.883112902457, + "max_x": 2667.784404919192, + "max_y": 5157.545615493599, + "center": [ + 2667.784404919192, + 5156.714364198027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.784404919192, + 5157.545615493599 + ], + [ + 2667.784404919192, + 5155.883112902457 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.561066014491, + "min_y": 5155.883112902457, + "max_x": 2670.561066014491, + "max_y": 5157.545615493599, + "center": [ + 2670.561066014491, + 5156.714364198027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.561066014491, + 5157.545615493599 + ], + [ + 2670.561066014491, + 5155.883112902457 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.784404919192, + "min_y": 5156.987700165672, + "max_x": 2668.716218074719, + "max_y": 5157.545615493599, + "center": [ + 2668.250311496956, + 5157.266657829636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.784404919192, + 5157.545615493599 + ], + [ + 2668.716218074719, + 5156.987700165672 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.629252858969, + "min_y": 5155.883112902457, + "max_x": 2670.561066014491, + "max_y": 5156.441028230385, + "center": [ + 2670.09515943673, + 5156.162070566421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.629252858969, + 5156.441028230385 + ], + [ + 2670.561066014491, + 5155.883112902457 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2671.210369243544, + "min_y": 5155.85237700905, + "max_x": 2671.210369243544, + "max_y": 5157.576351387015, + "center": [ + 2671.210369243544, + 5156.714364198033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2671.210369243544, + 5157.576351387015 + ], + [ + 2671.210369243544, + 5155.85237700905 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.135101690139, + "min_y": 5155.85237700905, + "max_x": 2667.135101690139, + "max_y": 5157.576351387015, + "center": [ + 2667.135101690139, + 5156.714364198033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.135101690139, + 5157.576351387015 + ], + [ + 2667.135101690139, + 5155.85237700905 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2668.6406446094466, + "min_y": 5156.182273340634, + "max_x": 2669.7048263242355, + "max_y": 5157.246455055424, + "center": [ + 2669.172735466841, + 5156.714364198029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.172735466841, + 5156.714364198029 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.449707482347, + "min_y": 5156.714364198032, + "max_x": 2672.449707482347, + "max_y": 5159.518890074213, + "center": [ + 2672.449707482347, + 5158.116627136123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.449707482347, + 5156.714364198032 + ], + [ + 2672.449707482347, + 5159.518890074213 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CE9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2666.487992094085, + "min_y": 5158.378810760899, + "max_x": 2668.694997638239, + "max_y": 5159.604924952096, + "center": [ + 2667.591494866162, + 5158.991867856497 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.157852523469, + "min_y": 5170.502192598253, + "max_x": 2670.397190762271, + "max_y": 5170.502192598253, + "center": [ + 2669.77752164287, + 5170.502192598253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.397190762271, + 5170.502192598253 + ], + [ + 2669.157852523469, + 5170.502192598253 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2663.418300397648, + "min_y": 5170.537733794091, + "max_x": 2665.082584970061, + "max_y": 5170.537733794091, + "center": [ + 2664.2504426838545, + 5170.537733794091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.082584970061, + 5170.537733794091 + ], + [ + 2663.418300397648, + 5170.537733794091 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CEC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2662.069474524737, + "min_y": 5169.089133041619, + "max_x": 2663.418300397648, + "max_y": 5171.986334546759, + "center": [ + 2662.7438874611926, + 5170.537733794189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.069474524737, + 5171.986334546759 + ], + [ + 2662.069474524737, + 5169.089133041619 + ], + [ + 2663.418300397648, + 5169.089133041619 + ], + [ + 2663.418300397648, + 5171.986334546759 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CED", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2662.4351599625197, + "min_y": 5166.984832257094, + "max_x": 2669.540963036512, + "max_y": 5174.0906353310875, + "center": [ + 2665.988061499516, + 5170.537733794091 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.988061499516, + 5170.537733794091 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CEE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2665.842781699016, + "min_y": 5172.021528988336, + "max_x": 2668.04978724317, + "max_y": 5173.247643179533, + "center": [ + 2666.9462844710933, + 5172.634586083935 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CEF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2656.881647701244, + "min_y": 5171.150784989993, + "max_x": 2658.3529847306804, + "max_y": 5172.376899181189, + "center": [ + 2657.617316215962, + 5171.763842085591 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2654.9557935470043, + "min_y": 5167.813035591529, + "max_x": 2660.4051899523233, + "max_y": 5173.262431996849, + "center": [ + 2657.680491749664, + 5170.537733794189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.680491749664, + 5170.537733794189 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2656.048411149761, + "min_y": 5168.712163176956, + "max_x": 2658.991085208633, + "max_y": 5169.938277368153, + "center": [ + 2657.519748179197, + 5169.325220272554 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2660.405189952324, + "min_y": 5170.537733794189, + "max_x": 2662.069474524737, + "max_y": 5170.537733794189, + "center": [ + 2661.23733223853, + 5170.537733794189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.069474524737, + 5170.537733794189 + ], + [ + 2660.405189952324, + 5170.537733794189 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.731888199115, + "min_y": 5169.670941302677, + "max_x": 2666.66370135464, + "max_y": 5170.2288566306, + "center": [ + 2666.1977947768773, + 5169.949898966639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.731888199115, + 5169.670941302677 + ], + [ + 2666.66370135464, + 5170.2288566306 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.576736138892, + "min_y": 5170.775528565894, + "max_x": 2668.508549294415, + "max_y": 5171.333443893821, + "center": [ + 2668.0426427166535, + 5171.0544862298575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.576736138892, + 5170.775528565894 + ], + [ + 2668.508549294415, + 5171.333443893821 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.731888199115, + "min_y": 5169.670941302677, + "max_x": 2665.731888199115, + "max_y": 5171.333443893821, + "center": [ + 2665.731888199115, + 5170.502192598249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.731888199115, + 5171.333443893821 + ], + [ + 2665.731888199115, + 5169.670941302677 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2668.508549294415, + "min_y": 5169.670941302677, + "max_x": 2668.508549294415, + "max_y": 5171.333443893821, + "center": [ + 2668.508549294415, + 5170.502192598249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.508549294415, + 5171.333443893821 + ], + [ + 2668.508549294415, + 5169.670941302677 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.731888199115, + "min_y": 5170.775528565894, + "max_x": 2666.66370135464, + "max_y": 5171.333443893821, + "center": [ + 2666.1977947768773, + 5171.0544862298575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.731888199115, + 5171.333443893821 + ], + [ + 2666.66370135464, + 5170.775528565894 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.576736138892, + "min_y": 5169.670941302677, + "max_x": 2668.508549294415, + "max_y": 5170.228856630605, + "center": [ + 2668.0426427166535, + 5169.949898966641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.576736138892, + 5170.228856630605 + ], + [ + 2668.508549294415, + 5169.670941302677 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.157852523469, + "min_y": 5169.640205409272, + "max_x": 2669.157852523469, + "max_y": 5171.364179787237, + "center": [ + 2669.157852523469, + 5170.502192598255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.157852523469, + 5171.364179787237 + ], + [ + 2669.157852523469, + 5169.640205409272 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.082584970061, + "min_y": 5169.640205409272, + "max_x": 2665.082584970061, + "max_y": 5171.364179787237, + "center": [ + 2665.082584970061, + 5170.502192598255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.082584970061, + 5171.364179787237 + ], + [ + 2665.082584970061, + 5169.640205409272 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2666.5881278893685, + "min_y": 5169.970101740855, + "max_x": 2667.6523096041574, + "max_y": 5171.034283455645, + "center": [ + 2667.120218746763, + 5170.50219259825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.120218746763, + 5170.50219259825 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.809112751215, + "min_y": 5162.573154238486, + "max_x": 2670.397190762271, + "max_y": 5162.573154238486, + "center": [ + 2668.6031517567426, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.397190762271, + 5162.573154238486 + ], + [ + 2666.809112751215, + 5162.573154238486 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.760059053278, + "min_y": 5161.74190294291, + "max_x": 2653.691872208805, + "max_y": 5162.299818270834, + "center": [ + 2653.2259656310416, + 5162.020860606872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.760059053278, + 5161.74190294291 + ], + [ + 2653.691872208805, + 5162.299818270834 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.604906993057, + "min_y": 5162.846490206127, + "max_x": 2655.536720148579, + "max_y": 5163.404405534054, + "center": [ + 2655.0708135708182, + 5163.12544787009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.604906993057, + 5162.846490206127 + ], + [ + 2655.536720148579, + 5163.404405534054 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557CFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.760059053278, + "min_y": 5161.74190294291, + "max_x": 2652.760059053278, + "max_y": 5163.404405534054, + "center": [ + 2652.760059053278, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.760059053278, + 5163.404405534054 + ], + [ + 2652.760059053278, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2655.536720148579, + "min_y": 5161.74190294291, + "max_x": 2655.536720148579, + "max_y": 5163.404405534054, + "center": [ + 2655.536720148579, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2655.536720148579, + 5163.404405534054 + ], + [ + 2655.536720148579, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.760059053278, + "min_y": 5162.846490206127, + "max_x": 2653.691872208805, + "max_y": 5163.404405534054, + "center": [ + 2653.2259656310416, + 5163.12544787009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.760059053278, + 5163.404405534054 + ], + [ + 2653.691872208805, + 5162.846490206127 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.604906993057, + "min_y": 5161.74190294291, + "max_x": 2655.536720148579, + "max_y": 5162.299818270838, + "center": [ + 2655.0708135708182, + 5162.020860606874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.604906993057, + 5162.299818270838 + ], + [ + 2655.536720148579, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.186023377632, + "min_y": 5161.711167049503, + "max_x": 2656.186023377632, + "max_y": 5163.435141427469, + "center": [ + 2656.186023377632, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.186023377632, + 5163.435141427469 + ], + [ + 2656.186023377632, + 5161.711167049503 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.110755824225, + "min_y": 5161.711167049503, + "max_x": 2652.110755824225, + "max_y": 5163.435141427469, + "center": [ + 2652.110755824225, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.110755824225, + 5163.435141427469 + ], + [ + 2652.110755824225, + 5161.711167049503 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D05", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2653.6162987435346, + "min_y": 5162.041063381087, + "max_x": 2654.6804804583235, + "max_y": 5163.105245095877, + "center": [ + 2654.148389600929, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.148389600929, + 5162.573154238482 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557D06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2663.418300397648, + "min_y": 5169.614638402222, + "max_x": 2670.397190762271, + "max_y": 5169.614638402222, + "center": [ + 2666.9077455799597, + 5169.614638402222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.397190762271, + 5169.614638402222 + ], + [ + 2663.418300397648, + 5169.614638402222 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.52007778746, + "min_y": 5161.717878633349, + "max_x": 2670.397190762271, + "max_y": 5161.717878633349, + "center": [ + 2663.4586342748653, + 5161.717878633349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.397190762271, + 5161.717878633349 + ], + [ + 2656.52007778746, + 5161.717878633349 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2702.672247244196, + "min_y": 5169.954602897827, + "max_x": 2709.933186117841, + "max_y": 5169.954602897827, + "center": [ + 2706.302716681019, + 5169.954602897827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.933186117841, + 5169.954602897827 + ], + [ + 2702.672247244196, + 5169.954602897827 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2702.672247244196, + "min_y": 5160.421293660828, + "max_x": 2708.295951477446, + "max_y": 5160.421293660828, + "center": [ + 2705.4840993608213, + 5160.421293660828 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.295951477446, + 5160.421293660828 + ], + [ + 2702.672247244196, + 5160.421293660828 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2671.210369243544, + "min_y": 5155.947289700953, + "max_x": 2673.40710829372, + "max_y": 5155.947289700953, + "center": [ + 2672.308738768632, + 5155.947289700953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.40710829372, + 5155.947289700953 + ], + [ + 2671.210369243544, + 5155.947289700953 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.40710829372, + "min_y": 5155.947289700953, + "max_x": 2673.40710829372, + "max_y": 5159.518890074213, + "center": [ + 2673.40710829372, + 5157.7330898875825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.40710829372, + 5159.518890074213 + ], + [ + 2673.40710829372, + 5155.947289700953 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D0C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5162.665217634773, + "max_x": 2952.014917269162, + "max_y": 5162.665217634773, + "center": [ + 2920.3873698933094, + 5162.665217634773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5162.665217634773 + ], + [ + 2888.759822517457, + 5162.665217634773 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D0D", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5173.350025050915, + "max_x": 2952.014917269162, + "max_y": 5173.350025050915, + "center": [ + 2920.3873698933094, + 5173.350025050915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5173.350025050915 + ], + [ + 2888.759822517457, + 5173.350025050915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D0E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5151.980410218635, + "max_x": 2952.014917269162, + "max_y": 5151.980410218635, + "center": [ + 2920.3873698933094, + 5151.980410218635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5151.980410218635 + ], + [ + 2888.759822517457, + 5151.980410218635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D0F", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5151.980410218635, + "max_x": 2952.014917269162, + "max_y": 5151.980410218635, + "center": [ + 2920.3873698933094, + 5151.980410218635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5151.980410218635 + ], + [ + 2888.759822517457, + 5151.980410218635 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D10", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5162.665217634773, + "max_x": 2952.014917269162, + "max_y": 5162.665217634773, + "center": [ + 2920.3873698933094, + 5162.665217634773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5162.665217634773 + ], + [ + 2888.759822517457, + 5162.665217634773 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D11", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5173.350025050915, + "max_x": 2952.014917269162, + "max_y": 5173.350025050915, + "center": [ + 2920.3873698933094, + 5173.350025050915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5173.350025050915 + ], + [ + 2888.759822517457, + 5173.350025050915 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D12", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5141.295602802505, + "max_x": 2952.014917269162, + "max_y": 5141.295602802505, + "center": [ + 2920.3873698933094, + 5141.295602802505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5141.295602802505 + ], + [ + 2888.759822517457, + 5141.295602802505 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D13", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5141.295602802505, + "max_x": 2952.014917269162, + "max_y": 5141.295602802505, + "center": [ + 2920.3873698933094, + 5141.295602802505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5141.295602802505 + ], + [ + 2888.759822517457, + 5141.295602802505 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D14", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5138.094041258321, + "max_x": 2911.151349923432, + "max_y": 5138.094041258321, + "center": [ + 2899.9555862204443, + 5138.094041258321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517457, + 5138.094041258321 + ], + [ + 2911.151349923432, + 5138.094041258321 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D15", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 5135.935792801128, + "max_x": 2904.9195674594193, + "max_y": 5137.152774255983, + "center": [ + 2903.4591897135933, + 5136.544283528556 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D16", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 5135.935792801128, + "max_x": 2904.9195674594193, + "max_y": 5137.152774255983, + "center": [ + 2903.4591897135933, + 5136.544283528556 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D17", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2904.066460101278, + "min_y": 5138.850873833042, + "max_x": 2905.0680948249696, + "max_y": 5140.520265039195, + "center": [ + 2904.567277463124, + 5139.685569436118 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D18", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 5138.904437812247, + "max_x": 2895.3187816415284, + "max_y": 5140.121419267102, + "center": [ + 2892.763120586333, + 5139.512928539674 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D19", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 5138.904437812247, + "max_x": 2895.3187816415284, + "max_y": 5140.121419267102, + "center": [ + 2892.763120586333, + 5139.512928539674 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D1A", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.733237994922, + "min_y": 5135.961796266689, + "max_x": 2894.3841823594867, + "max_y": 5137.178777721544, + "center": [ + 2892.5587101772044, + 5136.570286994116 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D1B", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.733237994922, + "min_y": 5135.961796266689, + "max_x": 2894.3841823594867, + "max_y": 5137.178777721544, + "center": [ + 2892.5587101772044, + 5136.570286994116 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D1C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2897.646581227977, + "min_y": 5134.898947515233, + "max_x": 2897.646581227977, + "max_y": 5141.295602802505, + "center": [ + 2897.646581227977, + 5138.097275158869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2897.646581227977, + 5141.295602802505 + ], + [ + 2897.646581227977, + 5134.898947515233 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D1D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2912.599200951331, + "min_y": 5139.266634673809, + "max_x": 2917.7105230617217, + "max_y": 5140.483616128664, + "center": [ + 2915.1548620065264, + 5139.875125401237 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D1E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2911.151349923432, + "min_y": 5134.898947515233, + "max_x": 2911.151349923432, + "max_y": 5141.295602802505, + "center": [ + 2911.151349923432, + 5138.097275158869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2911.151349923432, + 5141.295602802505 + ], + [ + 2911.151349923432, + 5134.898947515233 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D1F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5149.749651501441, + "max_x": 2894.9490101488555, + "max_y": 5150.966632956296, + "center": [ + 2892.39334909366, + 5150.358142228868 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D20", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5171.11926633372, + "max_x": 2894.9490101488555, + "max_y": 5172.336247788575, + "center": [ + 2892.39334909366, + 5171.727757061148 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D21", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5181.110868946046, + "max_x": 2898.59995451342, + "max_y": 5182.327850400901, + "center": [ + 2894.2188212759424, + 5181.719359673474 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D22", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 5136.295992552703, + "max_x": 2950.962815110278, + "max_y": 5136.295992552703, + "center": [ + 2948.478104777972, + 5136.295992552703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 5136.295992552703 + ], + [ + 2950.962815110278, + 5136.295992552703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D23", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 5136.295992552703, + "max_x": 2948.451158863421, + "max_y": 5140.603548084874, + "center": [ + 2947.2222766545437, + 5138.449770318788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 5136.295992552703 + ], + [ + 2948.451158863421, + 5140.603548084874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D24", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 5136.295992552703, + "max_x": 2948.451158863421, + "max_y": 5140.603548084874, + "center": [ + 2947.2222766545437, + 5138.449770318788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 5136.295992552703 + ], + [ + 2948.451158863421, + 5140.603548084874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D25", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.262532921439, + "min_y": 5134.898947515233, + "max_x": 2945.262532921439, + "max_y": 5141.295602802505, + "center": [ + 2945.262532921439, + 5138.097275158869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.262532921439, + 5141.295602802505 + ], + [ + 2945.262532921439, + 5134.898947515233 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D26", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2948.451158863421, + "min_y": 5136.295992552703, + "max_x": 2950.962815110278, + "max_y": 5140.603548084874, + "center": [ + 2949.706986986849, + 5138.449770318788 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2948.451158863421, + 5140.603548084874 + ], + [ + 2950.962815110278, + 5136.295992552703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D27", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5183.142275915336, + "max_x": 2952.014917269162, + "max_y": 5183.142275915336, + "center": [ + 2920.3873698933094, + 5183.142275915336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5183.142275915336 + ], + [ + 2888.759822517457, + 5183.142275915336 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D28", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5183.142275915336, + "max_x": 2952.014917269162, + "max_y": 5183.142275915336, + "center": [ + 2920.3873698933094, + 5183.142275915336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 5183.142275915336 + ], + [ + 2888.759822517457, + 5183.142275915336 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D29", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2947.853089126672, + "min_y": 5137.104870135035, + "max_x": 2949.0172933245562, + "max_y": 5139.045210464841, + "center": [ + 2948.4351912256143, + 5138.075040299938 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557D2A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5134.898947515233, + "max_x": 2888.759822517457, + "max_y": 5183.142275915336, + "center": [ + 2888.759822517457, + 5159.020611715285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517457, + 5183.142275915336 + ], + [ + 2888.759822517457, + 5134.898947515233 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D2B", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2907.349862407318, + "min_y": 5176.947878721518, + "max_x": 2930.86737076558, + "max_y": 5179.560935205769, + "center": [ + 2919.108616586449, + 5178.254406963643 + ] + }, + "raw_value": "10th PLANT 증설공사", + "clean_value": "10th PLANT 증설공사", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557D2C", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2907.693859847959, + "min_y": 5166.672097902951, + "max_x": 2953.161042673931, + "max_y": 5169.285154387202, + "center": [ + 2930.4274512609454, + 5167.978626145076 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557D35", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.150284562909, + "min_y": 5169.472026498605, + "max_x": 2902.499944414267, + "max_y": 5169.472026498605, + "center": [ + 2902.325114488588, + 5169.472026498605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.150284562909, + 5169.472026498605 + ], + [ + 2902.499944414267, + 5169.472026498605 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D36", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.200209900731, + "min_y": 5168.291926568031, + "max_x": 2902.499944414267, + "max_y": 5168.291926568031, + "center": [ + 2902.350077157499, + 5168.291926568031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.291926568031 + ], + [ + 2902.200209900731, + 5168.291926568031 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D37", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.39749667288, + "min_y": 5168.588613684954, + "max_x": 2902.499944414267, + "max_y": 5168.588613684954, + "center": [ + 2902.4487205435735, + 5168.588613684954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.588613684954 + ], + [ + 2902.39749667288, + 5168.588613684954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D38", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 5168.084799430692, + "max_x": 2902.160958028916, + "max_y": 5168.084799430692, + "center": [ + 2901.982217912423, + 5168.084799430692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.160958028916, + 5168.084799430692 + ], + [ + 2901.80347779593, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D39", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 5168.084799430692, + "max_x": 2902.150284562909, + "max_y": 5169.472026498605, + "center": [ + 2901.9768811794193, + 5168.778412964649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.150284562909, + 5169.472026498605 + ], + [ + 2901.80347779593, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.39749667288, + "min_y": 5168.588613684954, + "max_x": 2902.499944414267, + "max_y": 5168.998404650511, + "center": [ + 2902.4487205435735, + 5168.793509167732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.998404650511 + ], + [ + 2902.39749667288, + 5168.588613684954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.160958028916, + "min_y": 5168.084799430692, + "max_x": 2902.200209900731, + "max_y": 5168.291926568031, + "center": [ + 2902.180583964823, + 5168.188362999362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.200209900731, + 5168.291926568031 + ], + [ + 2902.160958028916, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 5169.472026498605, + "max_x": 2902.849604265627, + "max_y": 5169.472026498605, + "center": [ + 2902.674774339947, + 5169.472026498605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.849604265627, + 5169.472026498605 + ], + [ + 2902.499944414267, + 5169.472026498605 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 5168.291926568031, + "max_x": 2902.799678927808, + "max_y": 5168.291926568031, + "center": [ + 2902.6498116710372, + 5168.291926568031 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.291926568031 + ], + [ + 2902.799678927808, + 5168.291926568031 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 5168.588613684954, + "max_x": 2902.602392155658, + "max_y": 5168.588613684954, + "center": [ + 2902.5511682849624, + 5168.588613684954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.588613684954 + ], + [ + 2902.602392155658, + 5168.588613684954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D3F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.838930799624, + "min_y": 5168.084799430692, + "max_x": 2903.196411032603, + "max_y": 5168.084799430692, + "center": [ + 2903.0176709161133, + 5168.084799430692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.838930799624, + 5168.084799430692 + ], + [ + 2903.196411032603, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D40", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.849604265627, + "min_y": 5168.084799430692, + "max_x": 2903.196411032603, + "max_y": 5169.472026498605, + "center": [ + 2903.0230076491152, + 5168.778412964649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.849604265627, + 5169.472026498605 + ], + [ + 2903.196411032603, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D41", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 5168.588613684954, + "max_x": 2902.602392155658, + "max_y": 5168.998404650511, + "center": [ + 2902.5511682849624, + 5168.793509167732 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 5168.998404650511 + ], + [ + 2902.602392155658, + 5168.588613684954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D42", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.799678927808, + "min_y": 5168.084799430692, + "max_x": 2902.838930799624, + "max_y": 5168.291926568031, + "center": [ + 2902.819304863716, + 5168.188362999362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.799678927808, + 5168.291926568031 + ], + [ + 2902.838930799624, + 5168.084799430692 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D43", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2902.650389686795, + "min_y": 5165.598368384202, + "max_x": 2909.5756424025612, + "max_y": 5166.708150038528, + "center": [ + 2906.1130160446783, + 5166.153259211365 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557D44", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2534.971102382658, + "min_y": 5134.898947515233, + "max_x": 2952.014917269162, + "max_y": 5431.900373997681, + "center": [ + 2743.49300982591, + 5283.399660756457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2534.971102382658, + 5431.900373997681 + ], + [ + 2952.014917269162, + 5431.900373997681 + ], + [ + 2952.014917269162, + 5134.898947515233 + ], + [ + 2534.971102382658, + 5134.898947515233 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D45", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 5160.434458917578, + "max_x": 2898.59995451342, + "max_y": 5161.651440372433, + "center": [ + 2894.2188212759424, + 5161.042949645005 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557D46", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2917.289787717411, + "min_y": 5155.533011632567, + "max_x": 2928.15569356433, + "max_y": 5158.120132072309, + "center": [ + 2922.72274064087, + 5156.826571852438 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "557D49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.738278384197, + "min_y": 5159.926957357212, + "max_x": 2905.357820025422, + "max_y": 5159.926957357212, + "center": [ + 2905.0480492048096, + 5159.926957357212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 5159.926957357212 + ], + [ + 2904.738278384197, + 5159.926957357212 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 5159.926957357212, + "max_x": 2903.056665358006, + "max_y": 5159.926957357212, + "center": [ + 2902.746894537392, + 5159.926957357212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.056665358006, + 5159.926957357212 + ], + [ + 2902.437123716778, + 5159.926957357212 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 5159.041897869741, + "max_x": 2905.357820025422, + "max_y": 5159.041897869741, + "center": [ + 2903.8974718710997, + 5159.041897869741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 5159.041897869741 + ], + [ + 2902.437123716778, + 5159.041897869741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2903.056665358006, + "min_y": 5159.926957357212, + "max_x": 2903.056665358006, + "max_y": 5160.457993049702, + "center": [ + 2903.056665358006, + 5160.192475203457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.056665358006, + 5160.457993049702 + ], + [ + 2903.056665358006, + 5159.926957357212 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 5159.041897869741, + "max_x": 2902.437123716778, + "max_y": 5159.926957357212, + "center": [ + 2902.437123716778, + 5159.484427613476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.437123716778, + 5159.926957357212 + ], + [ + 2902.437123716778, + 5159.041897869741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.738278384197, + "min_y": 5159.926957357212, + "max_x": 2904.738278384197, + "max_y": 5160.457993049702, + "center": [ + 2904.738278384197, + 5160.192475203457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.738278384197, + 5160.457993049702 + ], + [ + 2904.738278384197, + 5159.926957357212 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2905.357820025422, + "min_y": 5159.041897869741, + "max_x": 2905.357820025422, + "max_y": 5159.926957357212, + "center": [ + 2905.357820025422, + 5159.484427613476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 5159.926957357212 + ], + [ + 2905.357820025422, + 5159.041897869741 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D52", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2903.2779302298704, + "min_y": 5156.35376470192, + "max_x": 2904.5170135123235, + "max_y": 5157.592847984373, + "center": [ + 2903.897471871097, + 5156.973306343147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.897471871097, + 5156.973306343147 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D54", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2906.1327462583527, + "min_y": 5156.325280539193, + "max_x": 2907.3718295408057, + "max_y": 5157.564363821646, + "center": [ + 2906.752287899579, + 5156.94482218042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.752287899579, + 5156.94482218042 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2906.08475057986, + "min_y": 5157.40058137092, + "max_x": 2906.584467201812, + "max_y": 5157.541201303642, + "center": [ + 2906.334608890836, + 5157.4708913372815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.584467201812, + 5157.541201303642 + ], + [ + 2906.08475057986, + 5157.40058137092 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.516856906171, + "min_y": 5156.959377109913, + "max_x": 2906.08475057986, + "max_y": 5157.40058137092, + "center": [ + 2905.3008037430154, + 5157.179979240416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.08475057986, + 5157.40058137092 + ], + [ + 2904.516856906171, + 5156.959377109913 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D57", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.065292568864, + "min_y": 5156.376927219931, + "max_x": 2904.565009190818, + "max_y": 5156.517547152648, + "center": [ + 2904.315150879841, + 5156.447237186289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.065292568864, + 5156.376927219931 + ], + [ + 2904.565009190818, + 5156.517547152648 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557D58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.565009190818, + "min_y": 5156.517547152648, + "max_x": 2906.132902864501, + "max_y": 5156.958751413663, + "center": [ + 2905.3489560276594, + 5156.7381492831555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.565009190818, + 5156.517547152648 + ], + [ + 2906.132902864501, + 5156.958751413663 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557D59", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2889.292180654626, + "min_y": 5183.907299235851, + "max_x": 2891.4696904840516, + "max_y": 5184.814594998112, + "center": [ + 2890.380935569339, + 5184.360947116981 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2892.298318354635, + "min_y": 5183.142275915336, + "max_x": 2892.298318354783, + "max_y": 5206.508085836265, + "center": [ + 2892.298318354709, + 5194.8251808758005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354635, + 5183.142275915336 + ], + [ + 2892.298318354783, + 5206.508085836265 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517512, + "min_y": 5186.093931184326, + "max_x": 2952.014917269167, + "max_y": 5186.093931184326, + "center": [ + 2920.3873698933394, + 5186.093931184326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5186.093931184326 + ], + [ + 2888.759822517512, + 5186.093931184326 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5186.093931184368, + "max_x": 2892.298318354719, + "max_y": 5189.496290292837, + "center": [ + 2890.5971388005037, + 5187.7951107386025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 5187.795110738582 + ], + [ + 2890.597138800462, + 5189.496290292837 + ], + [ + 2888.895959246289, + 5187.795110738582 + ], + [ + 2890.597138800462, + 5186.093931184368 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5189.496290292837, + "max_x": 2892.298318354719, + "max_y": 5192.898649401306, + "center": [ + 2890.5971388005037, + 5191.197469847071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 5191.197469847092 + ], + [ + 2890.597138800462, + 5192.898649401306 + ], + [ + 2888.895959246289, + 5191.197469847092 + ], + [ + 2890.597138800462, + 5189.496290292837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5192.898649401306, + "max_x": 2892.298318354719, + "max_y": 5196.301008509776, + "center": [ + 2890.5971388005037, + 5194.599828955541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 5194.599828955562 + ], + [ + 2890.597138800462, + 5196.301008509776 + ], + [ + 2888.895959246289, + 5194.599828955562 + ], + [ + 2890.597138800462, + 5192.898649401306 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D5F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 5196.301008509776, + "max_x": 2892.298318354719, + "max_y": 5199.703367618287, + "center": [ + 2890.5971388005037, + 5198.0021880640315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 5198.002188064031 + ], + [ + 2890.597138800462, + 5199.703367618287 + ], + [ + 2888.895959246289, + 5198.002188064031 + ], + [ + 2890.597138800462, + 5196.301008509776 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D60", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2896.353970865079, + "min_y": 5183.907299235851, + "max_x": 2898.9865335658824, + "max_y": 5185.004200361185, + "center": [ + 2897.670252215481, + 5184.455749798518 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2941.566144938917, + "min_y": 5183.142275915376, + "max_x": 2941.566144939067, + "max_y": 5206.508085834831, + "center": [ + 2941.566144938992, + 5194.825180875103 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2941.566144938917, + 5183.142275915376 + ], + [ + 2941.566144939067, + 5206.508085834831 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2936.533490737566, + "min_y": 5183.142275915336, + "max_x": 2936.533490737624, + "max_y": 5206.508085834976, + "center": [ + 2936.533490737595, + 5194.825180875156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2936.533490737566, + 5183.142275915336 + ], + [ + 2936.533490737624, + 5206.508085834976 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2937.211313107093, + "min_y": 5183.907299235851, + "max_x": 2939.843875807896, + "max_y": 5185.004200361185, + "center": [ + 2938.527594457494, + 5184.455749798518 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2930.862892223437, + "min_y": 5183.142275915336, + "max_x": 2930.862892223495, + "max_y": 5206.508085835142, + "center": [ + 2930.8628922234657, + 5194.825180875239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2930.862892223437, + 5183.142275915336 + ], + [ + 2930.862892223495, + 5206.508085835142 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D65", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2931.864799599653, + "min_y": 5183.907299235851, + "max_x": 2934.497362300456, + "max_y": 5185.004200361185, + "center": [ + 2933.181080950055, + 5184.455749798518 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2925.192293709308, + "min_y": 5183.142275915336, + "max_x": 2925.192293709457, + "max_y": 5206.508085835308, + "center": [ + 2925.1922937093823, + 5194.825180875321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2925.192293709308, + 5183.142275915336 + ], + [ + 2925.192293709457, + 5206.508085835308 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D67", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2926.14719103735, + "min_y": 5183.907299235851, + "max_x": 2928.779753738153, + "max_y": 5185.004200361185, + "center": [ + 2927.4634723877516, + 5184.455749798518 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2910.003860672814, + "min_y": 5183.907299235851, + "max_x": 2917.243408100023, + "max_y": 5185.004200361185, + "center": [ + 2913.6236343864184, + 5184.455749798518 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2903.888366944201, + "min_y": 5183.142275915376, + "max_x": 2903.88836694426, + "max_y": 5206.508085835928, + "center": [ + 2903.8883669442303, + 5194.825180875652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.88836694426, + 5206.508085835928 + ], + [ + 2903.888366944201, + 5183.142275915376 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2944.262435177169, + "min_y": 5183.855059149616, + "max_x": 2948.211279228374, + "max_y": 5184.951960274951, + "center": [ + 2946.2368572027717, + 5184.403509712283 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246291, + "min_y": 5199.703367618287, + "max_x": 2892.298318354721, + "max_y": 5203.105726726796, + "center": [ + 2890.597138800506, + 5201.404547172542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354721, + 5201.404547172541 + ], + [ + 2890.597138800464, + 5203.105726726796 + ], + [ + 2888.895959246291, + 5201.404547172541 + ], + [ + 2890.597138800464, + 5199.703367618287 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246341, + "min_y": 5203.105726727276, + "max_x": 2892.298318354771, + "max_y": 5206.508085835785, + "center": [ + 2890.597138800556, + 5204.80690628153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354771, + 5204.806906281532 + ], + [ + 2890.597138800512, + 5206.508085835785 + ], + [ + 2888.895959246341, + 5204.806906281532 + ], + [ + 2890.597138800512, + 5203.105726727276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517463, + "min_y": 5183.142275915439, + "max_x": 2888.759822517612, + "max_y": 5206.508085836368, + "center": [ + 2888.7598225175375, + 5194.825180875903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517463, + 5183.142275915439 + ], + [ + 2888.759822517612, + 5206.508085836368 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517503, + "min_y": 5189.496290292837, + "max_x": 2952.014917269167, + "max_y": 5189.496290292837, + "center": [ + 2920.387369893335, + 5189.496290292837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5189.496290292837 + ], + [ + 2888.759822517503, + 5189.496290292837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517495, + "min_y": 5192.898649401347, + "max_x": 2952.014917269167, + "max_y": 5192.898649401347, + "center": [ + 2920.387369893331, + 5192.898649401347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5192.898649401347 + ], + [ + 2888.759822517495, + 5192.898649401347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517485, + "min_y": 5196.301008509859, + "max_x": 2952.014917269167, + "max_y": 5196.301008509859, + "center": [ + 2920.387369893326, + 5196.301008509859 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5196.301008509859 + ], + [ + 2888.759822517485, + 5196.301008509859 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517477, + "min_y": 5199.70336761837, + "max_x": 2952.014917269167, + "max_y": 5199.70336761837, + "center": [ + 2920.387369893322, + 5199.70336761837 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5199.70336761837 + ], + [ + 2888.759822517477, + 5199.70336761837 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517468, + "min_y": 5203.10572672688, + "max_x": 2952.014917269167, + "max_y": 5203.10572672688, + "center": [ + 2920.3873698933176, + 5203.10572672688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5203.10572672688 + ], + [ + 2888.759822517468, + 5203.10572672688 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 5206.508085835391, + "max_x": 2952.014917269167, + "max_y": 5206.508085835391, + "center": [ + 2920.387369893312, + 5206.508085835391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 5206.508085835391 + ], + [ + 2888.759822517457, + 5206.508085835391 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D74", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2642.365198912021, + "min_y": 5264.207843608982, + "max_x": 2642.365198912021, + "max_y": 5265.718617735537, + "center": [ + 2642.365198912021, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.365198912021, + 5264.207843608982 + ], + [ + 2642.365198912021, + 5265.718617735537 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D75", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2639.942838478471, + "min_y": 5264.207843608982, + "max_x": 2639.942838478471, + "max_y": 5265.718617735537, + "center": [ + 2639.942838478471, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.942838478471, + 5264.207843608982 + ], + [ + 2639.942838478471, + 5265.718617735537 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D76", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2641.539616711812, + "min_y": 5265.203719865612, + "max_x": 2642.365198912021, + "max_y": 5265.718617735537, + "center": [ + 2641.9524078119166, + 5265.461168800574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.365198912021, + 5265.718617735537 + ], + [ + 2641.539616711812, + 5265.203719865612 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D77", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2641.539616711812, + "min_y": 5264.207843608982, + "max_x": 2642.365198912021, + "max_y": 5264.722741478909, + "center": [ + 2641.9524078119166, + 5264.465292543946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.365198912021, + 5264.207843608982 + ], + [ + 2641.539616711812, + 5264.722741478909 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D78", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2640.699573008181, + "min_y": 5264.508784985191, + "max_x": 2641.6084643823197, + "max_y": 5265.4176763593305, + "center": [ + 2641.15401869525, + 5264.963230672261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.15401869525, + 5264.963230672261 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D79", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2639.942838478471, + "min_y": 5265.203719865612, + "max_x": 2640.768420678686, + "max_y": 5265.718617735537, + "center": [ + 2640.3556295785784, + 5265.461168800574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.768420678686, + 5265.203719865612 + ], + [ + 2639.942838478471, + 5265.718617735537 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2639.942838478471, + "min_y": 5264.207843608982, + "max_x": 2640.768420678686, + "max_y": 5264.722741478909, + "center": [ + 2640.3556295785784, + 5264.465292543946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.768420678686, + 5264.722741478909 + ], + [ + 2639.942838478471, + 5264.207843608982 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2639.445611158898, + "min_y": 5264.207843608982, + "max_x": 2639.445611158898, + "max_y": 5265.718617735537, + "center": [ + 2639.445611158898, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.445611158898, + 5264.207843608982 + ], + [ + 2639.445611158898, + 5265.718617735537 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2642.862426231596, + "min_y": 5264.207843608982, + "max_x": 2642.862426231596, + "max_y": 5265.718617735537, + "center": [ + 2642.862426231596, + 5264.96323067226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.862426231596, + 5264.207843608982 + ], + [ + 2642.862426231596, + 5265.718617735537 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2659.098092850222, + "min_y": 5253.22560474424, + "max_x": 2659.098092850222, + "max_y": 5254.736378870795, + "center": [ + 2659.098092850222, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2659.098092850222, + 5253.22560474424 + ], + [ + 2659.098092850222, + 5254.736378870795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2656.675732416673, + "min_y": 5253.22560474424, + "max_x": 2656.675732416673, + "max_y": 5254.736378870795, + "center": [ + 2656.675732416673, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.675732416673, + 5253.22560474424 + ], + [ + 2656.675732416673, + 5254.736378870795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D7F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2658.272510650013, + "min_y": 5254.22148100087, + "max_x": 2659.098092850222, + "max_y": 5254.736378870795, + "center": [ + 2658.6853017501176, + 5254.478929935833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2659.098092850222, + 5254.736378870795 + ], + [ + 2658.272510650013, + 5254.22148100087 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D80", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2658.272510650013, + "min_y": 5253.22560474424, + "max_x": 2659.098092850222, + "max_y": 5253.740502614166, + "center": [ + 2658.6853017501176, + 5253.483053679203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2659.098092850222, + 5253.22560474424 + ], + [ + 2658.272510650013, + 5253.740502614166 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D81", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2657.4324669463795, + "min_y": 5253.526546120449, + "max_x": 2658.3413583205183, + "max_y": 5254.435437494589, + "center": [ + 2657.886912633449, + 5253.980991807519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.886912633449, + 5253.980991807519 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D82", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2656.675732416673, + "min_y": 5254.22148100087, + "max_x": 2657.501314616887, + "max_y": 5254.736378870795, + "center": [ + 2657.08852351678, + 5254.478929935833 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.501314616887, + 5254.22148100087 + ], + [ + 2656.675732416673, + 5254.736378870795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D83", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2656.675732416673, + "min_y": 5253.22560474424, + "max_x": 2657.501314616887, + "max_y": 5253.740502614166, + "center": [ + 2657.08852351678, + 5253.483053679203 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.501314616887, + 5253.740502614166 + ], + [ + 2656.675732416673, + 5253.22560474424 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D84", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2656.178505097097, + "min_y": 5253.22560474424, + "max_x": 2656.178505097097, + "max_y": 5254.736378870795, + "center": [ + 2656.178505097097, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.178505097097, + 5253.22560474424 + ], + [ + 2656.178505097097, + 5254.736378870795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D85", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2659.595320169797, + "min_y": 5253.22560474424, + "max_x": 2659.595320169797, + "max_y": 5254.736378870795, + "center": [ + 2659.595320169797, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2659.595320169797, + 5253.22560474424 + ], + [ + 2659.595320169797, + 5254.736378870795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D86", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2627.627141141006, + "min_y": 5246.676984076461, + "max_x": 2627.627141141006, + "max_y": 5248.187758203017, + "center": [ + 2627.627141141006, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.627141141006, + 5246.676984076461 + ], + [ + 2627.627141141006, + 5248.187758203017 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D87", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.204780707456, + "min_y": 5246.676984076461, + "max_x": 2625.204780707456, + "max_y": 5248.187758203017, + "center": [ + 2625.204780707456, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.204780707456, + 5246.676984076461 + ], + [ + 2625.204780707456, + 5248.187758203017 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D88", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2626.801558940797, + "min_y": 5247.672860333092, + "max_x": 2627.627141141006, + "max_y": 5248.187758203017, + "center": [ + 2627.2143500409015, + 5247.930309268055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.627141141006, + 5248.187758203017 + ], + [ + 2626.801558940797, + 5247.672860333092 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D89", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2626.801558940797, + "min_y": 5246.676984076461, + "max_x": 2627.627141141006, + "max_y": 5247.191881946388, + "center": [ + 2627.2143500409015, + 5246.9344330114245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.627141141006, + 5246.676984076461 + ], + [ + 2626.801558940797, + 5247.191881946388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.9615152371643, + "min_y": 5246.977925452671, + "max_x": 2626.870406611303, + "max_y": 5247.886816826811, + "center": [ + 2626.415960924234, + 5247.432371139741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.415960924234, + 5247.432371139741 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.204780707456, + "min_y": 5247.672860333092, + "max_x": 2626.03036290767, + "max_y": 5248.187758203017, + "center": [ + 2625.617571807563, + 5247.930309268055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.03036290767, + 5247.672860333092 + ], + [ + 2625.204780707456, + 5248.187758203017 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.204780707456, + "min_y": 5246.676984076461, + "max_x": 2626.03036290767, + "max_y": 5247.191881946388, + "center": [ + 2625.617571807563, + 5246.9344330114245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.03036290767, + 5247.191881946388 + ], + [ + 2625.204780707456, + 5246.676984076461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2624.707553387882, + "min_y": 5246.676984076461, + "max_x": 2624.707553387882, + "max_y": 5248.187758203017, + "center": [ + 2624.707553387882, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.707553387882, + 5246.676984076461 + ], + [ + 2624.707553387882, + 5248.187758203017 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2628.12436846058, + "min_y": 5246.676984076461, + "max_x": 2628.12436846058, + "max_y": 5248.187758203017, + "center": [ + 2628.12436846058, + 5247.432371139739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.12436846058, + 5246.676984076461 + ], + [ + 2628.12436846058, + 5248.187758203017 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D8F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2635.241120629673, + "min_y": 5384.035860242969, + "max_x": 2635.241120629673, + "max_y": 5385.546634369524, + "center": [ + 2635.241120629673, + 5384.791247306246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.241120629673, + 5384.035860242969 + ], + [ + 2635.241120629673, + 5385.546634369524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D90", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2632.818760196123, + "min_y": 5384.035860242969, + "max_x": 2632.818760196123, + "max_y": 5385.546634369524, + "center": [ + 2632.818760196123, + 5384.791247306246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.818760196123, + 5384.035860242969 + ], + [ + 2632.818760196123, + 5385.546634369524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D91", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2634.415538429464, + "min_y": 5385.031736499598, + "max_x": 2635.241120629673, + "max_y": 5385.546634369524, + "center": [ + 2634.8283295295687, + 5385.289185434562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.241120629673, + 5385.546634369524 + ], + [ + 2634.415538429464, + 5385.031736499598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D92", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2634.415538429464, + "min_y": 5384.035860242969, + "max_x": 2635.241120629673, + "max_y": 5384.550758112895, + "center": [ + 2634.8283295295687, + 5384.293309177932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.241120629673, + 5384.035860242969 + ], + [ + 2634.415538429464, + 5384.550758112895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D93", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2633.5754947258315, + "min_y": 5384.336801619178, + "max_x": 2634.4843860999704, + "max_y": 5385.245692993318, + "center": [ + 2634.029940412901, + 5384.791247306248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.029940412901, + 5384.791247306248 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D94", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2632.818760196123, + "min_y": 5385.031736499598, + "max_x": 2633.644342396338, + "max_y": 5385.546634369524, + "center": [ + 2633.2315512962305, + 5385.289185434562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2633.644342396338, + 5385.031736499598 + ], + [ + 2632.818760196123, + 5385.546634369524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D95", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2632.818760196123, + "min_y": 5384.035860242969, + "max_x": 2633.644342396338, + "max_y": 5384.550758112895, + "center": [ + 2633.2315512962305, + 5384.293309177932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2633.644342396338, + 5384.550758112895 + ], + [ + 2632.818760196123, + 5384.035860242969 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D96", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2632.321532876549, + "min_y": 5384.035860242969, + "max_x": 2632.321532876549, + "max_y": 5385.546634369524, + "center": [ + 2632.321532876549, + 5384.791247306246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.321532876549, + 5384.035860242969 + ], + [ + 2632.321532876549, + 5385.546634369524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D97", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2635.738347949249, + "min_y": 5384.035860242969, + "max_x": 2635.738347949249, + "max_y": 5385.546634369524, + "center": [ + 2635.738347949249, + 5384.791247306246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.738347949249, + 5384.035860242969 + ], + [ + 2635.738347949249, + 5385.546634369524 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D98", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.168682988359, + "min_y": 5384.035858695732, + "max_x": 2618.168682988359, + "max_y": 5385.546632822288, + "center": [ + 2618.168682988359, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.168682988359, + 5384.035858695732 + ], + [ + 2618.168682988359, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D99", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2615.746322554809, + "min_y": 5384.035858695732, + "max_x": 2615.746322554809, + "max_y": 5385.546632822288, + "center": [ + 2615.746322554809, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.746322554809, + 5384.035858695732 + ], + [ + 2615.746322554809, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2617.34310078815, + "min_y": 5385.031734952362, + "max_x": 2618.168682988359, + "max_y": 5385.546632822288, + "center": [ + 2617.755891888254, + 5385.289183887326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.168682988359, + 5385.546632822288 + ], + [ + 2617.34310078815, + 5385.031734952362 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2617.34310078815, + "min_y": 5384.035858695732, + "max_x": 2618.168682988359, + "max_y": 5384.550756565658, + "center": [ + 2617.755891888254, + 5384.2933076306945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.168682988359, + 5384.035858695732 + ], + [ + 2617.34310078815, + 5384.550756565658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.5030570845174, + "min_y": 5384.336800071942, + "max_x": 2617.4119484586563, + "max_y": 5385.245691446082, + "center": [ + 2616.957502771587, + 5384.791245759012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.957502771587, + 5384.791245759012 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2615.746322554809, + "min_y": 5385.031734952362, + "max_x": 2616.571904755023, + "max_y": 5385.546632822288, + "center": [ + 2616.159113654916, + 5385.289183887326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.571904755023, + 5385.031734952362 + ], + [ + 2615.746322554809, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2615.746322554809, + "min_y": 5384.035858695732, + "max_x": 2616.571904755023, + "max_y": 5384.550756565658, + "center": [ + 2616.159113654916, + 5384.2933076306945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.571904755023, + 5384.550756565658 + ], + [ + 2615.746322554809, + 5384.035858695732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557D9F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2615.249095235235, + "min_y": 5384.035858695732, + "max_x": 2615.249095235235, + "max_y": 5385.546632822288, + "center": [ + 2615.249095235235, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.249095235235, + 5384.035858695732 + ], + [ + 2615.249095235235, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.665910307934, + "min_y": 5384.035858695732, + "max_x": 2618.665910307934, + "max_y": 5385.546632822288, + "center": [ + 2618.665910307934, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.665910307934, + 5384.035858695732 + ], + [ + 2618.665910307934, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2627.648712224882, + "min_y": 5376.15826959535, + "max_x": 2627.648712224882, + "max_y": 5377.669043721906, + "center": [ + 2627.648712224882, + 5376.913656658628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.648712224882, + 5376.15826959535 + ], + [ + 2627.648712224882, + 5377.669043721906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.226351791332, + "min_y": 5376.15826959535, + "max_x": 2625.226351791332, + "max_y": 5377.669043721906, + "center": [ + 2625.226351791332, + 5376.913656658628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.226351791332, + 5376.15826959535 + ], + [ + 2625.226351791332, + 5377.669043721906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2626.823130024673, + "min_y": 5377.154145851981, + "max_x": 2627.648712224882, + "max_y": 5377.669043721906, + "center": [ + 2627.2359211247776, + 5377.411594786943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.648712224882, + 5377.669043721906 + ], + [ + 2626.823130024673, + 5377.154145851981 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2626.823130024673, + "min_y": 5376.15826959535, + "max_x": 2627.648712224882, + "max_y": 5376.673167465277, + "center": [ + 2627.2359211247776, + 5376.415718530314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.648712224882, + 5376.15826959535 + ], + [ + 2626.823130024673, + 5376.673167465277 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA5", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.9830863210414, + "min_y": 5376.4592109715595, + "max_x": 2626.8919776951802, + "max_y": 5377.368102345699, + "center": [ + 2626.437532008111, + 5376.913656658629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.437532008111, + 5376.913656658629 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.226351791332, + "min_y": 5377.154145851981, + "max_x": 2626.051933991547, + "max_y": 5377.669043721906, + "center": [ + 2625.6391428914394, + 5377.411594786943 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.051933991547, + 5377.154145851981 + ], + [ + 2625.226351791332, + 5377.669043721906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2625.226351791332, + "min_y": 5376.15826959535, + "max_x": 2626.051933991547, + "max_y": 5376.673167465277, + "center": [ + 2625.6391428914394, + 5376.415718530314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.051933991547, + 5376.673167465277 + ], + [ + 2625.226351791332, + 5376.15826959535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2624.729124471759, + "min_y": 5376.15826959535, + "max_x": 2624.729124471759, + "max_y": 5377.669043721906, + "center": [ + 2624.729124471759, + 5376.913656658628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.729124471759, + 5376.15826959535 + ], + [ + 2624.729124471759, + 5377.669043721906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DA9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2628.145939544457, + "min_y": 5376.15826959535, + "max_x": 2628.145939544457, + "max_y": 5377.669043721906, + "center": [ + 2628.145939544457, + 5376.913656658628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.145939544457, + 5376.15826959535 + ], + [ + 2628.145939544457, + 5377.669043721906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2669.670974545937, + "min_y": 5384.035858695732, + "max_x": 2669.670974545937, + "max_y": 5385.546632822288, + "center": [ + 2669.670974545937, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.670974545937, + 5384.035858695732 + ], + [ + 2669.670974545937, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2667.248614112387, + "min_y": 5384.035858695732, + "max_x": 2667.248614112387, + "max_y": 5385.546632822288, + "center": [ + 2667.248614112387, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.248614112387, + 5384.035858695732 + ], + [ + 2667.248614112387, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2668.845392345728, + "min_y": 5385.031734952362, + "max_x": 2669.670974545937, + "max_y": 5385.546632822288, + "center": [ + 2669.2581834458324, + 5385.289183887326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.670974545937, + 5385.546632822288 + ], + [ + 2668.845392345728, + 5385.031734952362 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2668.845392345728, + "min_y": 5384.035858695732, + "max_x": 2669.670974545937, + "max_y": 5384.550756565658, + "center": [ + 2669.2581834458324, + 5384.2933076306945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.670974545937, + 5384.035858695732 + ], + [ + 2668.845392345728, + 5384.550756565658 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAE", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2668.0053486420957, + "min_y": 5384.336800071942, + "max_x": 2668.9142400162345, + "max_y": 5385.245691446082, + "center": [ + 2668.459794329165, + 5384.791245759012 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.459794329165, + 5384.791245759012 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DAF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2667.248614112387, + "min_y": 5385.031734952362, + "max_x": 2668.074196312602, + "max_y": 5385.546632822288, + "center": [ + 2667.661405212494, + 5385.289183887326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.074196312602, + 5385.031734952362 + ], + [ + 2667.248614112387, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2667.248614112387, + "min_y": 5384.035858695732, + "max_x": 2668.074196312602, + "max_y": 5384.550756565658, + "center": [ + 2667.661405212494, + 5384.2933076306945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.074196312602, + 5384.550756565658 + ], + [ + 2667.248614112387, + 5384.035858695732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2666.751386792812, + "min_y": 5384.035858695732, + "max_x": 2666.751386792812, + "max_y": 5385.546632822288, + "center": [ + 2666.751386792812, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.751386792812, + 5384.035858695732 + ], + [ + 2666.751386792812, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2670.168201865513, + "min_y": 5384.035858695732, + "max_x": 2670.168201865513, + "max_y": 5385.546632822288, + "center": [ + 2670.168201865513, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.168201865513, + 5384.035858695732 + ], + [ + 2670.168201865513, + 5385.546632822288 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2650.81886954393, + "min_y": 5298.288384788618, + "max_x": 2650.81886954393, + "max_y": 5299.799158915174, + "center": [ + 2650.81886954393, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.81886954393, + 5298.288384788618 + ], + [ + 2650.81886954393, + 5299.799158915174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2648.39650911038, + "min_y": 5298.288384788618, + "max_x": 2648.39650911038, + "max_y": 5299.799158915174, + "center": [ + 2648.39650911038, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2648.39650911038, + 5298.288384788618 + ], + [ + 2648.39650911038, + 5299.799158915174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2649.993287343721, + "min_y": 5299.284261045248, + "max_x": 2650.81886954393, + "max_y": 5299.799158915174, + "center": [ + 2650.406078443825, + 5299.541709980211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.81886954393, + 5299.799158915174 + ], + [ + 2649.993287343721, + 5299.284261045248 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2649.993287343721, + "min_y": 5298.288384788618, + "max_x": 2650.81886954393, + "max_y": 5298.803282658544, + "center": [ + 2650.406078443825, + 5298.545833723581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.81886954393, + 5298.288384788618 + ], + [ + 2649.993287343721, + 5298.803282658544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB7", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2649.1532436400885, + "min_y": 5298.589326164827, + "max_x": 2650.0621350142274, + "max_y": 5299.498217538967, + "center": [ + 2649.607689327158, + 5299.043771851897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.607689327158, + 5299.043771851897 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2648.39650911038, + "min_y": 5299.284261045248, + "max_x": 2649.222091310595, + "max_y": 5299.799158915174, + "center": [ + 2648.8093002104874, + 5299.541709980211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.222091310595, + 5299.284261045248 + ], + [ + 2648.39650911038, + 5299.799158915174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DB9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2648.39650911038, + "min_y": 5298.288384788618, + "max_x": 2649.222091310595, + "max_y": 5298.803282658544, + "center": [ + 2648.8093002104874, + 5298.545833723581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.222091310595, + 5298.803282658544 + ], + [ + 2648.39650911038, + 5298.288384788618 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2647.899281790806, + "min_y": 5298.288384788618, + "max_x": 2647.899281790806, + "max_y": 5299.799158915174, + "center": [ + 2647.899281790806, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.899281790806, + 5298.288384788618 + ], + [ + 2647.899281790806, + 5299.799158915174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2651.316096863505, + "min_y": 5298.288384788618, + "max_x": 2651.316096863505, + "max_y": 5299.799158915174, + "center": [ + 2651.316096863505, + 5299.043771851896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.316096863505, + 5298.288384788618 + ], + [ + 2651.316096863505, + 5299.799158915174 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5286.227192910388, + "max_x": 2615.032252272174, + "max_y": 5286.227192910388, + "center": [ + 2614.276865208896, + 5286.227192910388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.521478145619, + 5286.227192910388 + ], + [ + 2615.032252272174, + 5286.227192910388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5288.649553343939, + "max_x": 2615.032252272174, + "max_y": 5288.649553343939, + "center": [ + 2614.276865208896, + 5288.649553343939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.521478145619, + 5288.649553343939 + ], + [ + 2615.032252272174, + 5288.649553343939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2614.51735440225, + "min_y": 5286.227192910388, + "max_x": 2615.032252272174, + "max_y": 5287.052775110598, + "center": [ + 2614.774803337212, + 5286.639984010493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.032252272174, + 5286.227192910388 + ], + [ + 2614.51735440225, + 5287.052775110598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DBF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5286.227192910388, + "max_x": 2614.036376015545, + "max_y": 5287.052775110598, + "center": [ + 2613.778927080582, + 5286.639984010493 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.521478145619, + 5286.227192910388 + ], + [ + 2614.036376015545, + 5287.052775110598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC0", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.8224195218286, + "min_y": 5286.983927440091, + "max_x": 2614.7313108959675, + "max_y": 5287.892818814231, + "center": [ + 2614.276865208898, + 5287.438373127161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208898, + 5287.438373127161 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2614.51735440225, + "min_y": 5287.823971143724, + "max_x": 2615.032252272174, + "max_y": 5288.649553343939, + "center": [ + 2614.774803337212, + 5288.236762243831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.51735440225, + 5287.823971143724 + ], + [ + 2615.032252272174, + 5288.649553343939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5287.823971143724, + "max_x": 2614.036376015545, + "max_y": 5288.649553343939, + "center": [ + 2613.778927080582, + 5288.236762243831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.036376015545, + 5287.823971143724 + ], + [ + 2613.521478145619, + 5288.649553343939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5289.146780663513, + "max_x": 2615.032252272174, + "max_y": 5289.146780663513, + "center": [ + 2614.276865208896, + 5289.146780663513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.521478145619, + 5289.146780663513 + ], + [ + 2615.032252272174, + 5289.146780663513 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.521478145619, + "min_y": 5285.729965590814, + "max_x": 2615.032252272174, + "max_y": 5285.729965590814, + "center": [ + 2614.276865208896, + 5285.729965590814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.521478145619, + 5285.729965590814 + ], + [ + 2615.032252272174, + 5285.729965590814 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5268.696333377868, + "max_x": 2600.396042426172, + "max_y": 5268.696333377868, + "center": [ + 2599.640655362894, + 5268.696333377868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.885268299616, + 5268.696333377868 + ], + [ + 2600.396042426172, + 5268.696333377868 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5271.118693811419, + "max_x": 2600.396042426172, + "max_y": 5271.118693811419, + "center": [ + 2599.640655362894, + 5271.118693811419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.885268299616, + 5271.118693811419 + ], + [ + 2600.396042426172, + 5271.118693811419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2599.881144556246, + "min_y": 5268.696333377868, + "max_x": 2600.396042426172, + "max_y": 5269.521915578078, + "center": [ + 2600.1385934912087, + 5269.109124477973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2600.396042426172, + 5268.696333377868 + ], + [ + 2599.881144556246, + 5269.521915578078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5268.696333377868, + "max_x": 2599.400166169544, + "max_y": 5269.521915578078, + "center": [ + 2599.1427172345802, + 5269.109124477973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.885268299616, + 5268.696333377868 + ], + [ + 2599.400166169544, + 5269.521915578078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DC9", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2599.1862096758255, + "min_y": 5269.4530679075715, + "max_x": 2600.0951010499643, + "max_y": 5270.361959281711, + "center": [ + 2599.640655362895, + 5269.907513594641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.640655362895, + 5269.907513594641 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2599.881144556246, + "min_y": 5270.293111611205, + "max_x": 2600.396042426172, + "max_y": 5271.118693811419, + "center": [ + 2600.1385934912087, + 5270.705902711312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.881144556246, + 5270.293111611205 + ], + [ + 2600.396042426172, + 5271.118693811419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5270.293111611205, + "max_x": 2599.400166169544, + "max_y": 5271.118693811419, + "center": [ + 2599.1427172345802, + 5270.705902711312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2599.400166169544, + 5270.293111611205 + ], + [ + 2598.885268299616, + 5271.118693811419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5271.615921130994, + "max_x": 2600.396042426172, + "max_y": 5271.615921130994, + "center": [ + 2599.640655362894, + 5271.615921130994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.885268299616, + 5271.615921130994 + ], + [ + 2600.396042426172, + 5271.615921130994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2598.885268299616, + "min_y": 5268.199106058293, + "max_x": 2600.396042426172, + "max_y": 5268.199106058293, + "center": [ + 2599.640655362894, + 5268.199106058293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2598.885268299616, + 5268.199106058293 + ], + [ + 2600.396042426172, + 5268.199106058293 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5242.294889329254, + "max_x": 2617.515902871256, + "max_y": 5242.294889329254, + "center": [ + 2616.7605158079778, + 5242.294889329254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.0051287447, + 5242.294889329254 + ], + [ + 2617.515902871256, + 5242.294889329254 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DCF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5244.717249762804, + "max_x": 2617.515902871256, + "max_y": 5244.717249762804, + "center": [ + 2616.7605158079778, + 5244.717249762804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.0051287447, + 5244.717249762804 + ], + [ + 2617.515902871256, + 5244.717249762804 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2617.001005001331, + "min_y": 5242.294889329254, + "max_x": 2617.515902871256, + "max_y": 5243.120471529465, + "center": [ + 2617.2584539362933, + 5242.707680429359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.515902871256, + 5242.294889329254 + ], + [ + 2617.001005001331, + 5243.120471529465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5242.294889329254, + "max_x": 2616.520026614627, + "max_y": 5243.120471529465, + "center": [ + 2616.2625776796635, + 5242.707680429359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.0051287447, + 5242.294889329254 + ], + [ + 2616.520026614627, + 5243.120471529465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD2", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.3060701209106, + "min_y": 5243.051623858957, + "max_x": 2617.2149614950495, + "max_y": 5243.960515233097, + "center": [ + 2616.76051580798, + 5243.506069546027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.76051580798, + 5243.506069546027 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2617.001005001331, + "min_y": 5243.89166756259, + "max_x": 2617.515902871256, + "max_y": 5244.717249762804, + "center": [ + 2617.2584539362933, + 5244.304458662697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.001005001331, + 5243.89166756259 + ], + [ + 2617.515902871256, + 5244.717249762804 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5243.89166756259, + "max_x": 2616.520026614627, + "max_y": 5244.717249762804, + "center": [ + 2616.2625776796635, + 5244.304458662697 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.520026614627, + 5243.89166756259 + ], + [ + 2616.0051287447, + 5244.717249762804 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5245.21447708238, + "max_x": 2617.515902871256, + "max_y": 5245.21447708238, + "center": [ + 2616.7605158079778, + 5245.21447708238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.0051287447, + 5245.21447708238 + ], + [ + 2617.515902871256, + 5245.21447708238 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2616.0051287447, + "min_y": 5241.79766200968, + "max_x": 2617.515902871256, + "max_y": 5241.79766200968, + "center": [ + 2616.7605158079778, + 5241.79766200968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2616.0051287447, + 5241.79766200968 + ], + [ + 2617.515902871256, + 5241.79766200968 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5259.825748861775, + "max_x": 2632.15211271726, + "max_y": 5259.825748861775, + "center": [ + 2631.3967256539827, + 5259.825748861775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.641338590705, + 5259.825748861775 + ], + [ + 2632.15211271726, + 5259.825748861775 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5262.248109295324, + "max_x": 2632.15211271726, + "max_y": 5262.248109295324, + "center": [ + 2631.3967256539827, + 5262.248109295324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.641338590705, + 5262.248109295324 + ], + [ + 2632.15211271726, + 5262.248109295324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DD9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2631.637214847334, + "min_y": 5259.825748861775, + "max_x": 2632.15211271726, + "max_y": 5260.651331061984, + "center": [ + 2631.894663782297, + 5260.23853996188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.15211271726, + 5259.825748861775 + ], + [ + 2631.637214847334, + 5260.651331061984 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5259.825748861775, + "max_x": 2631.156236460631, + "max_y": 5260.651331061984, + "center": [ + 2630.898787525668, + 5260.23853996188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.641338590705, + 5259.825748861775 + ], + [ + 2631.156236460631, + 5260.651331061984 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDB", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.9422799669146, + "min_y": 5260.5824833914785, + "max_x": 2631.8511713410535, + "max_y": 5261.491374765618, + "center": [ + 2631.396725653984, + 5261.036929078548 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.396725653984, + 5261.036929078548 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2631.637214847334, + "min_y": 5261.42252709511, + "max_x": 2632.15211271726, + "max_y": 5262.248109295324, + "center": [ + 2631.894663782297, + 5261.835318195217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.637214847334, + 5261.42252709511 + ], + [ + 2632.15211271726, + 5262.248109295324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5261.42252709511, + "max_x": 2631.156236460631, + "max_y": 5262.248109295324, + "center": [ + 2630.898787525668, + 5261.835318195217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.156236460631, + 5261.42252709511 + ], + [ + 2630.641338590705, + 5262.248109295324 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5262.745336614899, + "max_x": 2632.15211271726, + "max_y": 5262.745336614899, + "center": [ + 2631.3967256539827, + 5262.745336614899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.641338590705, + 5262.745336614899 + ], + [ + 2632.15211271726, + 5262.745336614899 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DDF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2630.641338590705, + "min_y": 5259.3285215422, + "max_x": 2632.15211271726, + "max_y": 5259.3285215422, + "center": [ + 2631.3967256539827, + 5259.3285215422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2630.641338590705, + 5259.3285215422 + ], + [ + 2632.15211271726, + 5259.3285215422 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5283.763866001224, + "max_x": 2666.569737621761, + "max_y": 5283.763866001224, + "center": [ + 2665.814350558483, + 5283.763866001224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.058963495205, + 5283.763866001224 + ], + [ + 2666.569737621761, + 5283.763866001224 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5286.186226434773, + "max_x": 2666.569737621761, + "max_y": 5286.186226434773, + "center": [ + 2665.814350558483, + 5286.186226434773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.058963495205, + 5286.186226434773 + ], + [ + 2666.569737621761, + 5286.186226434773 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2666.054839751835, + "min_y": 5283.763866001224, + "max_x": 2666.569737621761, + "max_y": 5284.589448201433, + "center": [ + 2666.3122886867977, + 5284.176657101329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.569737621761, + 5283.763866001224 + ], + [ + 2666.054839751835, + 5284.589448201433 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5283.763866001224, + "max_x": 2665.57386136513, + "max_y": 5284.589448201433, + "center": [ + 2665.3164124301675, + 5284.176657101329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.058963495205, + 5283.763866001224 + ], + [ + 2665.57386136513, + 5284.589448201433 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE4", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.3599048714145, + "min_y": 5284.520600530926, + "max_x": 2666.2687962455534, + "max_y": 5285.429491905065, + "center": [ + 2665.814350558484, + 5284.975046217995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558484, + 5284.975046217995 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2666.054839751835, + "min_y": 5285.360644234559, + "max_x": 2666.569737621761, + "max_y": 5286.186226434773, + "center": [ + 2666.3122886867977, + 5285.773435334666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.054839751835, + 5285.360644234559 + ], + [ + 2666.569737621761, + 5286.186226434773 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5285.360644234559, + "max_x": 2665.57386136513, + "max_y": 5286.186226434773, + "center": [ + 2665.3164124301675, + 5285.773435334666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.57386136513, + 5285.360644234559 + ], + [ + 2665.058963495205, + 5286.186226434773 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5286.683453754348, + "max_x": 2666.569737621761, + "max_y": 5286.683453754348, + "center": [ + 2665.814350558483, + 5286.683453754348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.058963495205, + 5286.683453754348 + ], + [ + 2666.569737621761, + 5286.683453754348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2665.058963495205, + "min_y": 5283.266638681649, + "max_x": 2666.569737621761, + "max_y": 5283.266638681649, + "center": [ + 2665.814350558483, + 5283.266638681649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.058963495205, + 5283.266638681649 + ], + [ + 2666.569737621761, + 5283.266638681649 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557DE9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2708.324498525135, + "min_y": 5170.168071681217, + "max_x": 2708.324498525135, + "max_y": 5171.678845807773, + "center": [ + 2708.324498525135, + 5170.923458744495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.324498525135, + 5170.168071681217 + ], + [ + 2708.324498525135, + 5171.678845807773 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DEA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2705.902138091586, + "min_y": 5170.168071681217, + "max_x": 2705.902138091586, + "max_y": 5171.678845807773, + "center": [ + 2705.902138091586, + 5170.923458744495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2705.902138091586, + 5170.168071681217 + ], + [ + 2705.902138091586, + 5171.678845807773 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DEB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2707.498916324925, + "min_y": 5171.163947937848, + "max_x": 2708.324498525135, + "max_y": 5171.678845807773, + "center": [ + 2707.91170742503, + 5171.421396872811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.324498525135, + 5171.678845807773 + ], + [ + 2707.498916324925, + 5171.163947937848 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DEC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2707.498916324925, + "min_y": 5170.168071681217, + "max_x": 2708.324498525135, + "max_y": 5170.682969551143, + "center": [ + 2707.91170742503, + 5170.42552061618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.324498525135, + 5170.168071681217 + ], + [ + 2707.498916324925, + 5170.682969551143 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DED", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2706.6588726212926, + "min_y": 5170.469013057426, + "max_x": 2707.5677639954315, + "max_y": 5171.377904431566, + "center": [ + 2707.113318308362, + 5170.923458744496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.113318308362, + 5170.923458744496 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DEE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2705.902138091586, + "min_y": 5171.163947937848, + "max_x": 2706.727720291799, + "max_y": 5171.678845807773, + "center": [ + 2706.3149291916925, + 5171.421396872811 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.727720291799, + 5171.163947937848 + ], + [ + 2705.902138091586, + 5171.678845807773 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DEF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2705.902138091586, + "min_y": 5170.168071681217, + "max_x": 2706.727720291799, + "max_y": 5170.682969551143, + "center": [ + 2706.3149291916925, + 5170.42552061618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.727720291799, + 5170.682969551143 + ], + [ + 2705.902138091586, + 5170.168071681217 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2705.404910772011, + "min_y": 5170.168071681217, + "max_x": 2705.404910772011, + "max_y": 5171.678845807773, + "center": [ + 2705.404910772011, + 5170.923458744495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2705.404910772011, + 5170.168071681217 + ], + [ + 2705.404910772011, + 5171.678845807773 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2708.82172584471, + "min_y": 5170.168071681217, + "max_x": 2708.82172584471, + "max_y": 5171.678845807773, + "center": [ + 2708.82172584471, + 5170.923458744495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.82172584471, + 5170.168071681217 + ], + [ + 2708.82172584471, + 5171.678845807773 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5165.776281527375, + "max_x": 2710.796813463626, + "max_y": 5165.776281527375, + "center": [ + 2710.0414264003493, + 5165.776281527375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.286039337073, + 5165.776281527375 + ], + [ + 2710.796813463626, + 5165.776281527375 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5168.198641960923, + "max_x": 2710.796813463626, + "max_y": 5168.198641960923, + "center": [ + 2710.0414264003493, + 5168.198641960923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.286039337073, + 5168.198641960923 + ], + [ + 2710.796813463626, + 5168.198641960923 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2710.281915593701, + "min_y": 5165.776281527375, + "max_x": 2710.796813463626, + "max_y": 5166.601863727584, + "center": [ + 2710.5393645286636, + 5166.18907262748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.796813463626, + 5165.776281527375 + ], + [ + 2710.281915593701, + 5166.601863727584 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5165.776281527375, + "max_x": 2709.800937206998, + "max_y": 5166.601863727584, + "center": [ + 2709.5434882720356, + 5166.18907262748 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.286039337073, + 5165.776281527375 + ], + [ + 2709.800937206998, + 5166.601863727584 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF6", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.5869807132817, + "min_y": 5166.5330160570775, + "max_x": 2710.4958720874206, + "max_y": 5167.441907431217, + "center": [ + 2710.041426400351, + 5166.987461744147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.041426400351, + 5166.987461744147 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2710.281915593701, + "min_y": 5167.373059760711, + "max_x": 2710.796813463626, + "max_y": 5168.198641960923, + "center": [ + 2710.5393645286636, + 5167.785850860817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.281915593701, + 5167.373059760711 + ], + [ + 2710.796813463626, + 5168.198641960923 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5167.373059760711, + "max_x": 2709.800937206998, + "max_y": 5168.198641960923, + "center": [ + 2709.5434882720356, + 5167.785850860817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.800937206998, + 5167.373059760711 + ], + [ + 2709.286039337073, + 5168.198641960923 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DF9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5168.695869280499, + "max_x": 2710.796813463626, + "max_y": 5168.695869280499, + "center": [ + 2710.0414264003493, + 5168.695869280499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.286039337073, + 5168.695869280499 + ], + [ + 2710.796813463626, + 5168.695869280499 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DFA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2709.286039337073, + "min_y": 5165.279054207799, + "max_x": 2710.796813463626, + "max_y": 5165.279054207799, + "center": [ + 2710.0414264003493, + 5165.279054207799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.286039337073, + 5165.279054207799 + ], + [ + 2710.796813463626, + 5165.279054207799 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557DFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.04142640035, + "min_y": 5164.528671903834, + "max_x": 2710.04142640035, + "max_y": 5165.279054207799, + "center": [ + 2710.04142640035, + 5164.903863055817 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.04142640035, + 5165.279054207799 + ], + [ + 2710.04142640035, + 5164.528671903834 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557DFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.604607330065, + "min_y": 5164.16531662594, + "max_x": 2710.604607330065, + "max_y": 5164.865035184795, + "center": [ + 2710.604607330065, + 5164.515175905368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.604607330065, + 5164.865035184795 + ], + [ + 2710.604607330065, + 5164.16531662594 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557DFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2709.478245470633, + "min_y": 5164.16531662594, + "max_x": 2710.604607330065, + "max_y": 5164.16531662594, + "center": [ + 2710.041426400349, + 5164.16531662594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.604607330065, + 5164.16531662594 + ], + [ + 2709.478245470633, + 5164.16531662594 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557DFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2709.478245470633, + "min_y": 5164.16531662594, + "max_x": 2709.478245470633, + "max_y": 5164.865035184795, + "center": [ + 2709.478245470633, + 5164.515175905368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.478245470633, + 5164.865035184795 + ], + [ + 2709.478245470633, + 5164.16531662594 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557DFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.04142640035, + "min_y": 5168.695869280499, + "max_x": 2710.04142640035, + "max_y": 5172.818341023861, + "center": [ + 2710.04142640035, + 5170.75710515218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.04142640035, + 5172.818341023861 + ], + [ + 2710.04142640035, + 5168.695869280499 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2702.672247244196, + "min_y": 5170.923458744494, + "max_x": 2705.404910772011, + "max_y": 5170.923458744494, + "center": [ + 2704.0385790081036, + 5170.923458744494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2705.404910772011, + 5170.923458744494 + ], + [ + 2702.672247244196, + 5170.923458744494 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2663.383148426861, + "min_y": 5161.74190294291, + "max_x": 2664.314961582388, + "max_y": 5162.299818270834, + "center": [ + 2663.8490550046245, + 5162.020860606872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.383148426861, + 5161.74190294291 + ], + [ + 2664.314961582388, + 5162.299818270834 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.227996366639, + "min_y": 5162.846490206127, + "max_x": 2666.159809522162, + "max_y": 5163.404405534054, + "center": [ + 2665.6939029444006, + 5163.12544787009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.227996366639, + 5162.846490206127 + ], + [ + 2666.159809522162, + 5163.404405534054 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2663.383148426861, + "min_y": 5161.74190294291, + "max_x": 2663.383148426861, + "max_y": 5163.404405534054, + "center": [ + 2663.383148426861, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.383148426861, + 5163.404405534054 + ], + [ + 2663.383148426861, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.159809522162, + "min_y": 5161.74190294291, + "max_x": 2666.159809522162, + "max_y": 5163.404405534054, + "center": [ + 2666.159809522162, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.159809522162, + 5163.404405534054 + ], + [ + 2666.159809522162, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2663.383148426861, + "min_y": 5162.846490206127, + "max_x": 2664.314961582388, + "max_y": 5163.404405534054, + "center": [ + 2663.8490550046245, + 5163.12544787009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.383148426861, + 5163.404405534054 + ], + [ + 2664.314961582388, + 5162.846490206127 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.227996366639, + "min_y": 5161.74190294291, + "max_x": 2666.159809522162, + "max_y": 5162.299818270838, + "center": [ + 2665.6939029444006, + 5162.020860606874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.227996366639, + 5162.299818270838 + ], + [ + 2666.159809522162, + 5161.74190294291 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.809112751215, + "min_y": 5161.711167049503, + "max_x": 2666.809112751215, + "max_y": 5163.435141427469, + "center": [ + 2666.809112751215, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.809112751215, + 5163.435141427469 + ], + [ + 2666.809112751215, + 5161.711167049503 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.733845197807, + "min_y": 5161.711167049503, + "max_x": 2662.733845197807, + "max_y": 5163.435141427469, + "center": [ + 2662.733845197807, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.733845197807, + 5163.435141427469 + ], + [ + 2662.733845197807, + 5161.711167049503 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E09", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2664.2393881171165, + "min_y": 5162.041063381087, + "max_x": 2665.3035698319054, + "max_y": 5163.105245095877, + "center": [ + 2664.771478974511, + 5162.573154238482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.771478974511, + 5162.573154238482 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5159.322408730158, + "max_x": 2661.812808361548, + "max_y": 5160.254221885685, + "center": [ + 2661.533850697587, + 5159.788315307922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.254893033625, + 5160.254221885685 + ], + [ + 2661.812808361548, + 5159.322408730158 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.35948029684, + "min_y": 5157.477560790383, + "max_x": 2662.917395624769, + "max_y": 5158.409373945907, + "center": [ + 2662.6384379608044, + 5157.943467368144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.35948029684, + 5158.409373945907 + ], + [ + 2662.917395624769, + 5157.477560790383 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5160.254221885685, + "max_x": 2662.917395624769, + "max_y": 5160.254221885685, + "center": [ + 2662.086144329197, + 5160.254221885685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.917395624769, + 5160.254221885685 + ], + [ + 2661.254893033625, + 5160.254221885685 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5157.477560790383, + "max_x": 2662.917395624769, + "max_y": 5157.477560790383, + "center": [ + 2662.086144329197, + 5157.477560790383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.917395624769, + 5157.477560790383 + ], + [ + 2661.254893033625, + 5157.477560790383 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.35948029684, + "min_y": 5159.322408730158, + "max_x": 2662.917395624769, + "max_y": 5160.254221885685, + "center": [ + 2662.6384379608044, + 5159.788315307922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.917395624769, + 5160.254221885685 + ], + [ + 2662.35948029684, + 5159.322408730158 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.254893033625, + "min_y": 5157.477560790383, + "max_x": 2661.812808361552, + "max_y": 5158.409373945907, + "center": [ + 2661.5338506975886, + 5157.943467368144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.812808361552, + 5158.409373945907 + ], + [ + 2661.254893033625, + 5157.477560790383 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E10", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2661.5540534718016, + "min_y": 5158.333800480639, + "max_x": 2662.6182351865905, + "max_y": 5159.397982195429, + "center": [ + 2662.086144329196, + 5158.865891338034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.086144329196, + 5158.865891338034 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E11", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2661.761492714671, + "min_y": 5156.828257561332, + "max_x": 2662.4107959437247, + "max_y": 5157.477560790385, + "center": [ + 2662.086144329198, + 5157.152909175858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.086144329198, + 5157.152909175858 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E12", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2661.761492714671, + "min_y": 5160.254221885684, + "max_x": 2662.4107959437247, + "max_y": 5160.903525114737, + "center": [ + 2662.086144329198, + 5160.578873500211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.086144329198, + 5160.578873500211 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.086144329198, + "min_y": 5156.077875257365, + "max_x": 2662.086144329198, + "max_y": 5156.828257561331, + "center": [ + 2662.086144329198, + 5156.453066409348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.086144329198, + 5156.828257561331 + ], + [ + 2662.086144329198, + 5156.077875257365 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.649325258913, + "min_y": 5155.714519979472, + "max_x": 2662.649325258913, + "max_y": 5156.414238538326, + "center": [ + 2662.649325258913, + 5156.064379258899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.649325258913, + 5156.414238538326 + ], + [ + 2662.649325258913, + 5155.714519979472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.522963399482, + "min_y": 5155.714519979472, + "max_x": 2662.649325258913, + "max_y": 5155.714519979472, + "center": [ + 2662.0861443291974, + 5155.714519979472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.649325258913, + 5155.714519979472 + ], + [ + 2661.522963399482, + 5155.714519979472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.522963399482, + "min_y": 5155.714519979472, + "max_x": 2661.522963399482, + "max_y": 5156.414238538326, + "center": [ + 2661.522963399482, + 5156.064379258899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.522963399482, + 5156.414238538326 + ], + [ + 2661.522963399482, + 5155.714519979472 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.086144329198, + "min_y": 5160.903525114739, + "max_x": 2662.086144329198, + "max_y": 5162.573154238486, + "center": [ + 2662.086144329198, + 5161.738339676613 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.086144329198, + 5162.573154238486 + ], + [ + 2662.086144329198, + 5160.903525114739 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.186023377632, + "min_y": 5162.573154238486, + "max_x": 2662.733845197807, + "max_y": 5162.573154238486, + "center": [ + 2659.4599342877195, + 5162.573154238486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.733845197807, + 5162.573154238486 + ], + [ + 2656.186023377632, + 5162.573154238486 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E19", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2650.6011426891487, + "min_y": 5162.142971189337, + "max_x": 2651.460060854581, + "max_y": 5163.0018893547685, + "center": [ + 2651.030601771865, + 5162.572430272053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.030601771865, + 5162.572430272053 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1A", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2649.742224523726, + "min_y": 5162.142971189343, + "max_x": 2650.601142689148, + "max_y": 5163.001889354766, + "center": [ + 2650.171683606437, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2650.171683606437, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1B", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2648.8833063582956, + "min_y": 5162.142971189339, + "max_x": 2649.742224523728, + "max_y": 5163.00188935477, + "center": [ + 2649.312765441012, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.312765441012, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1C", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2648.0243881928704, + "min_y": 5162.142971189343, + "max_x": 2648.883306358294, + "max_y": 5163.001889354766, + "center": [ + 2648.453847275582, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2648.453847275582, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1D", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2647.16547002745, + "min_y": 5162.142971189343, + "max_x": 2648.0243881928723, + "max_y": 5163.001889354766, + "center": [ + 2647.594929110161, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.594929110161, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1E", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2650.6011426891587, + "min_y": 5162.142971189343, + "max_x": 2651.460060854581, + "max_y": 5163.001889354766, + "center": [ + 2651.03060177187, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.03060177187, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E1F", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2651.460060244362, + "min_y": 5161.439382260128, + "max_x": 2651.460060244362, + "max_y": 5163.706926216845, + "center": [ + 2651.460060244362, + 5162.5731542384865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.460060244362, + 5163.706926216845 + ], + [ + 2651.460060244362, + 5161.439382260128 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E20", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2652.110755824225, + "min_y": 5161.439382260128, + "max_x": 2652.110755824225, + "max_y": 5163.706926216845, + "center": [ + 2652.110755824225, + 5162.5731542384865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.110755824225, + 5163.706926216845 + ], + [ + 2652.110755824225, + 5161.439382260128 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2646.415087723484, + "min_y": 5162.572430272055, + "max_x": 2647.165470027449, + "max_y": 5162.572430272055, + "center": [ + 2646.7902788754664, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.165470027449, + 5162.572430272055 + ], + [ + 2646.415087723484, + 5162.572430272055 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2645.71536916463, + "min_y": 5163.13561120177, + "max_x": 2646.415087723484, + "max_y": 5163.13561120177, + "center": [ + 2646.0652284440566, + 5163.13561120177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2645.71536916463, + 5163.13561120177 + ], + [ + 2646.415087723484, + 5163.13561120177 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2646.415087723484, + "min_y": 5162.009249342339, + "max_x": 2646.415087723484, + "max_y": 5163.13561120177, + "center": [ + 2646.415087723484, + 5162.572430272055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2646.415087723484, + 5163.13561120177 + ], + [ + 2646.415087723484, + 5162.009249342339 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2645.71536916463, + "min_y": 5162.009249342339, + "max_x": 2646.415087723484, + "max_y": 5162.009249342339, + "center": [ + 2646.0652284440566, + 5162.009249342339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2645.71536916463, + 5162.009249342339 + ], + [ + 2646.415087723484, + 5162.009249342339 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E25", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2646.679838469951, + "min_y": 5163.912477668434, + "max_x": 2648.023696090423, + "max_y": 5165.032359018827, + "center": [ + 2647.3517672801872, + 5164.47241834363 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E26", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2629.613142007716, + "min_y": 5161.526218832274, + "max_x": 2634.268404119707, + "max_y": 5164.175126002088, + "center": [ + 2631.9407730637113, + 5162.850672417181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.268404119707, + 5164.175126002088 + ], + [ + 2632.579295797656, + 5164.175126002088 + ], + [ + 2631.302250329753, + 5164.175126002088 + ], + [ + 2629.613142007716, + 5164.175126002088 + ], + [ + 2629.613142007716, + 5161.526218832274 + ], + [ + 2631.302250329753, + 5161.526218832274 + ], + [ + 2632.579295797656, + 5161.526218832274 + ], + [ + 2634.268404119707, + 5161.526218832274 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.496487189356, + "min_y": 5160.576456470228, + "max_x": 2631.940773063707, + "max_y": 5160.576456470228, + "center": [ + 2630.2186301265315, + 5160.576456470228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.940773063707, + 5160.576456470228 + ], + [ + 2628.496487189356, + 5160.576456470228 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.496487189356, + "min_y": 5157.938811932951, + "max_x": 2628.496487189356, + "max_y": 5160.576456470228, + "center": [ + 2628.496487189356, + 5159.257634201589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.496487189356, + 5160.576456470228 + ], + [ + 2628.496487189356, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.74609190213, + "min_y": 5157.938811932951, + "max_x": 2628.74609190213, + "max_y": 5160.326851757468, + "center": [ + 2628.74609190213, + 5159.132831845209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.74609190213, + 5160.326851757468 + ], + [ + 2628.74609190213, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.496487189356, + "min_y": 5160.326851757468, + "max_x": 2631.940773063707, + "max_y": 5160.326851757468, + "center": [ + 2630.2186301265315, + 5160.326851757468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.940773063707, + 5160.326851757468 + ], + [ + 2628.496487189356, + 5160.326851757468 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.773177567464, + "min_y": 5157.938811932951, + "max_x": 2629.469401524014, + "max_y": 5157.938811932951, + "center": [ + 2628.621289545739, + 5157.938811932951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.469401524014, + 5157.938811932951 + ], + [ + 2627.773177567464, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.773177567464, + "min_y": 5157.782763591892, + "max_x": 2629.469401524014, + "max_y": 5157.782763591892, + "center": [ + 2628.621289545739, + 5157.782763591892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.773177567464, + 5157.782763591892 + ], + [ + 2629.469401524014, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2629.469401524014, + "min_y": 5157.782763591892, + "max_x": 2629.469401524014, + "max_y": 5157.938811932951, + "center": [ + 2629.469401524014, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.469401524014, + 5157.938811932951 + ], + [ + 2629.469401524014, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2631.940773063707, + "min_y": 5160.576456470228, + "max_x": 2635.385058938066, + "max_y": 5160.576456470228, + "center": [ + 2633.6629160008865, + 5160.576456470228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.940773063707, + 5160.576456470228 + ], + [ + 2635.385058938066, + 5160.576456470228 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.385058938066, + "min_y": 5157.938811932951, + "max_x": 2635.385058938066, + "max_y": 5160.576456470228, + "center": [ + 2635.385058938066, + 5159.257634201589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.385058938066, + 5160.576456470228 + ], + [ + 2635.385058938066, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.135454225292, + "min_y": 5157.938811932951, + "max_x": 2635.135454225292, + "max_y": 5160.326851757468, + "center": [ + 2635.135454225292, + 5159.132831845209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.135454225292, + 5160.326851757468 + ], + [ + 2635.135454225292, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2631.940773063707, + "min_y": 5160.326851757468, + "max_x": 2635.385058938066, + "max_y": 5160.326851757468, + "center": [ + 2633.6629160008865, + 5160.326851757468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.940773063707, + 5160.326851757468 + ], + [ + 2635.385058938066, + 5160.326851757468 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2634.412144603401, + "min_y": 5157.938811932951, + "max_x": 2636.108368559971, + "max_y": 5157.938811932951, + "center": [ + 2635.260256581686, + 5157.938811932951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.412144603401, + 5157.938811932951 + ], + [ + 2636.108368559971, + 5157.938811932951 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2636.108368559971, + "min_y": 5157.782763591892, + "max_x": 2636.108368559971, + "max_y": 5157.938811932951, + "center": [ + 2636.108368559971, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.108368559971, + 5157.938811932951 + ], + [ + 2636.108368559971, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2634.412144603401, + "min_y": 5157.782763591892, + "max_x": 2636.108368559971, + "max_y": 5157.782763591892, + "center": [ + 2635.260256581686, + 5157.782763591892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.108368559971, + 5157.782763591892 + ], + [ + 2634.412144603401, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2634.412144603401, + "min_y": 5157.782763591892, + "max_x": 2634.412144603401, + "max_y": 5157.938811932951, + "center": [ + 2634.412144603401, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.412144603401, + 5157.938811932951 + ], + [ + 2634.412144603401, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2636.108368559971, + "min_y": 5157.782763591892, + "max_x": 2636.108368559971, + "max_y": 5157.938811932951, + "center": [ + 2636.108368559971, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.108368559971, + 5157.938811932951 + ], + [ + 2636.108368559971, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.773177567464, + "min_y": 5157.782763591892, + "max_x": 2627.773177567464, + "max_y": 5157.938811932951, + "center": [ + 2627.773177567464, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.773177567464, + 5157.938811932951 + ], + [ + 2627.773177567464, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.773177567464, + "min_y": 5157.782763591892, + "max_x": 2627.773177567464, + "max_y": 5157.938811932951, + "center": [ + 2627.773177567464, + 5157.860787762422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.773177567464, + 5157.938811932951 + ], + [ + 2627.773177567464, + 5157.782763591892 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2629.613142007716, + "min_y": 5161.526218832274, + "max_x": 2629.613142007716, + "max_y": 5164.175126002088, + "center": [ + 2629.613142007716, + 5162.850672417181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.613142007716, + 5164.175126002088 + ], + [ + 2629.613142007716, + 5161.526218832274 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E3A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2628.642578170709, + "min_y": 5162.850672417182, + "max_x": 2629.613142007716, + "max_y": 5162.850672417182, + "center": [ + 2629.1278600892124, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.613142007716, + 5162.850672417182 + ], + [ + 2628.642578170709, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E3B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2634.268404119707, + "min_y": 5162.850672417182, + "max_x": 2635.238967956714, + "max_y": 5162.850672417182, + "center": [ + 2634.7536860382106, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.268404119707, + 5162.850672417182 + ], + [ + 2635.238967956714, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E3C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2616.586104436041, + "min_y": 5160.451560775172, + "max_x": 2626.217333230796, + "max_y": 5161.991397631963, + "center": [ + 2621.4017188334183, + 5161.2214792035675 + ] + }, + "raw_value": "\\pi-0.8037;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LDP-3210}", + "clean_value": "\\pi-0.8037; \\fArial|b1|i1|c238|p34; .3333x; DP-3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E40", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2626.463236888842, + "min_y": 5162.421213334464, + "max_x": 2627.3221550542744, + "max_y": 5163.280131499895, + "center": [ + 2626.892695971558, + 5162.850672417179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.892695971558, + 5162.850672417179 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E41", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2625.60431872342, + "min_y": 5162.421213334471, + "max_x": 2626.4632368888424, + "max_y": 5163.280131499893, + "center": [ + 2626.033777806131, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.033777806131, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E42", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2624.745400557988, + "min_y": 5162.421213334466, + "max_x": 2625.6043187234204, + "max_y": 5163.280131499898, + "center": [ + 2625.174859640704, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.174859640704, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E43", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2623.8864823925633, + "min_y": 5162.421213334471, + "max_x": 2624.7454005579866, + "max_y": 5163.280131499893, + "center": [ + 2624.315941475275, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.315941475275, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E44", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2623.0275642271426, + "min_y": 5162.421213334471, + "max_x": 2623.886482392565, + "max_y": 5163.280131499893, + "center": [ + 2623.457023309854, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.457023309854, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E45", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2626.463236888852, + "min_y": 5162.421213334471, + "max_x": 2627.3221550542744, + "max_y": 5163.280131499893, + "center": [ + 2626.892695971563, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2626.892695971563, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2622.277181923177, + "min_y": 5162.850672417182, + "max_x": 2623.027564227142, + "max_y": 5162.850672417182, + "center": [ + 2622.6523730751596, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.027564227142, + 5162.850672417182 + ], + [ + 2622.277181923177, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2621.577463364322, + "min_y": 5163.413853346897, + "max_x": 2622.277181923177, + "max_y": 5163.413853346897, + "center": [ + 2621.9273226437494, + 5163.413853346897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2621.577463364322, + 5163.413853346897 + ], + [ + 2622.277181923177, + 5163.413853346897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2622.277181923177, + "min_y": 5162.287491487465, + "max_x": 2622.277181923177, + "max_y": 5163.413853346897, + "center": [ + 2622.277181923177, + 5162.85067241718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2622.277181923177, + 5163.413853346897 + ], + [ + 2622.277181923177, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2621.577463364322, + "min_y": 5162.287491487465, + "max_x": 2622.277181923177, + "max_y": 5162.287491487465, + "center": [ + 2621.9273226437494, + 5162.287491487465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2621.577463364322, + 5162.287491487465 + ], + [ + 2622.277181923177, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.238967956714, + "min_y": 5163.413853346897, + "max_x": 2635.938686515568, + "max_y": 5163.413853346897, + "center": [ + 2635.588827236141, + 5163.413853346897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.938686515568, + 5163.413853346897 + ], + [ + 2635.238967956714, + 5163.413853346897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.238967956714, + "min_y": 5162.287491487465, + "max_x": 2635.238967956714, + "max_y": 5163.413853346897, + "center": [ + 2635.238967956714, + 5162.85067241718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.238967956714, + 5163.413853346897 + ], + [ + 2635.238967956714, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2635.238967956714, + "min_y": 5162.287491487465, + "max_x": 2635.938686515568, + "max_y": 5162.287491487465, + "center": [ + 2635.588827236141, + 5162.287491487465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.938686515568, + 5162.287491487465 + ], + [ + 2635.238967956714, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E4D", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2636.5590223559757, + "min_y": 5162.403421147278, + "max_x": 2637.417940521408, + "max_y": 5163.26233931271, + "center": [ + 2636.988481438692, + 5162.832880229994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.988481438692, + 5162.832880229994 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E4E", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2637.4179405214068, + "min_y": 5162.403421147284, + "max_x": 2638.276858686829, + "max_y": 5163.262339312706, + "center": [ + 2637.847399604118, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.847399604118, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E4F", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2638.2768586868287, + "min_y": 5162.403421147279, + "max_x": 2639.135776852261, + "max_y": 5163.2623393127105, + "center": [ + 2638.706317769545, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.706317769545, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E50", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2639.1357768522626, + "min_y": 5162.403421147284, + "max_x": 2639.994695017686, + "max_y": 5163.262339312706, + "center": [ + 2639.565235934974, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.565235934974, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E51", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2639.994695017685, + "min_y": 5162.403421147284, + "max_x": 2640.8536131831074, + "max_y": 5163.262339312706, + "center": [ + 2640.424154100396, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.424154100396, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E52", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2636.5590223559757, + "min_y": 5162.403421147284, + "max_x": 2637.417940521398, + "max_y": 5163.262339312706, + "center": [ + 2636.988481438687, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.988481438687, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E53", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.853613183108, + "min_y": 5162.832880229995, + "max_x": 2641.603995487073, + "max_y": 5162.832880229995, + "center": [ + 2641.2288043350904, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.853613183108, + 5162.832880229995 + ], + [ + 2641.603995487073, + 5162.832880229995 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E54", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.603995487073, + "min_y": 5163.39606115971, + "max_x": 2642.303714045927, + "max_y": 5163.39606115971, + "center": [ + 2641.9538547664997, + 5163.39606115971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.303714045927, + 5163.39606115971 + ], + [ + 2641.603995487073, + 5163.39606115971 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.603995487073, + "min_y": 5162.269699300279, + "max_x": 2641.603995487073, + "max_y": 5163.39606115971, + "center": [ + 2641.603995487073, + 5162.832880229995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.603995487073, + 5163.39606115971 + ], + [ + 2641.603995487073, + 5162.269699300279 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.603995487073, + "min_y": 5162.269699300279, + "max_x": 2642.303714045927, + "max_y": 5162.269699300279, + "center": [ + 2641.9538547664997, + 5162.269699300279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.303714045927, + 5162.269699300279 + ], + [ + 2641.603995487073, + 5162.269699300279 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E57", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2635.588827236141, + "min_y": 5162.850672417182, + "max_x": 2636.559391073149, + "max_y": 5162.850672417182, + "center": [ + 2636.074109154645, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.588827236141, + 5162.850672417182 + ], + [ + 2636.559391073149, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E58", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.942859611855, + "min_y": 5163.413853346897, + "max_x": 2628.642578170709, + "max_y": 5163.413853346897, + "center": [ + 2628.2927188912818, + 5163.413853346897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.942859611855, + 5163.413853346897 + ], + [ + 2628.642578170709, + 5163.413853346897 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2628.642578170709, + "min_y": 5162.287491487465, + "max_x": 2628.642578170709, + "max_y": 5163.413853346897, + "center": [ + 2628.642578170709, + 5162.85067241718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.642578170709, + 5163.413853346897 + ], + [ + 2628.642578170709, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E5A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.942859611855, + "min_y": 5162.287491487465, + "max_x": 2628.642578170709, + "max_y": 5162.287491487465, + "center": [ + 2628.2927188912818, + 5162.287491487465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.942859611855, + 5162.287491487465 + ], + [ + 2628.642578170709, + 5162.287491487465 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E5B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2627.322155054275, + "min_y": 5162.850672417182, + "max_x": 2628.292718891282, + "max_y": 5162.850672417182, + "center": [ + 2627.8074369727783, + 5162.850672417182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2628.292718891282, + 5162.850672417182 + ], + [ + 2627.322155054275, + 5162.850672417182 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E5C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2622.621893842153, + "min_y": 5164.212408712478, + "max_x": 2623.965751462625, + "max_y": 5165.332290062871, + "center": [ + 2623.2938226523893, + 5164.772349387675 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E5D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2628.873752112965, + "min_y": 5164.212408712478, + "max_x": 2630.2176097334373, + "max_y": 5165.332290062871, + "center": [ + 2629.545680923201, + 5164.772349387675 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E5E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2636.095149901712, + "min_y": 5164.011814329456, + "max_x": 2637.439007522184, + "max_y": 5165.131695679849, + "center": [ + 2636.7670787119478, + 5164.571755004652 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E5F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2642.447305364035, + "min_y": 5164.078679123797, + "max_x": 2643.791162984507, + "max_y": 5165.19856047419, + "center": [ + 2643.119234174271, + 5164.638619798994 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E60", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2649.359145733679, + "min_y": 5167.813035591526, + "max_x": 2654.955793547003, + "max_y": 5173.40968340485, + "center": [ + 2652.157469640341, + 5170.611359498188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.157469640341, + 5170.611359498188 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E61", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2649.359145733678, + "min_y": 5167.81303559153, + "max_x": 2654.955793547003, + "max_y": 5173.40968340485, + "center": [ + 2652.1574696403404, + 5170.61135949819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.157469640341, + 5173.40968340485 + ], + [ + 2649.359145733678, + 5173.409683404848 + ], + [ + 2649.359145733686, + 5167.81303559153 + ], + [ + 2654.955793547003, + 5167.81303559153 + ], + [ + 2654.955793547002, + 5173.40968340485 + ], + [ + 2652.157469640341, + 5173.40968340485 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E62", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2649.359145733685, + "min_y": 5170.611359498188, + "max_x": 2654.955793547002, + "max_y": 5170.611359498188, + "center": [ + 2652.1574696403436, + 5170.611359498188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.359145733685, + 5170.611359498188 + ], + [ + 2654.955793547002, + 5170.611359498188 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E63", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2651.196193213213, + "min_y": 5171.102400272816, + "max_x": 2653.4622899239544, + "max_y": 5172.361342889895, + "center": [ + 2652.3292415685837, + 5171.731871581356 + ] + }, + "raw_value": "LIA", + "clean_value": "LIA", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E64", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2650.626168468632, + "min_y": 5168.862637572029, + "max_x": 2653.6476307496205, + "max_y": 5170.121580189108, + "center": [ + 2652.136899609126, + 5169.492108880568 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E65", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2645.498990724851, + "min_y": 5167.81303559153, + "max_x": 2649.1386051136296, + "max_y": 5168.708940671845, + "center": [ + 2647.3187979192403, + 5168.260988131688 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 90\\P H 80\\P L 10\\P LL 5", + "clean_value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E69", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2624.342039221149, + "min_y": 5296.244068476108, + "max_x": 2628.8915572071223, + "max_y": 5297.153972073303, + "center": [ + 2626.616798214136, + 5296.699020274706 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 70\\P H 68\\P L 50\\P LL 30", + "clean_value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E6D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2735.620774244483, + "min_y": 5290.579696162332, + "max_x": 2737.581444818367, + "max_y": 5290.579696162332, + "center": [ + 2736.601109531425, + 5290.579696162332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2735.620774244483, + 5290.579696162332 + ], + [ + 2737.581444818367, + 5290.579696162332 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E6E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2649.31811196888, + "min_y": 5384.79124575901, + "max_x": 2651.278782542764, + "max_y": 5384.79124575901, + "center": [ + 2650.298447255822, + 5384.79124575901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.278782542764, + 5384.79124575901 + ], + [ + 2649.31811196888, + 5384.79124575901 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E6F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2641.222551046401, + "min_y": 5362.940369762349, + "max_x": 2643.183221620285, + "max_y": 5362.940369762349, + "center": [ + 2642.202886333343, + 5362.940369762349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2643.183221620285, + 5362.940369762349 + ], + [ + 2641.222551046401, + 5362.940369762349 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E70", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5204.067105659143, + "max_x": 2665.814350558482, + "max_y": 5206.027776233028, + "center": [ + 2665.814350558482, + 5205.047440946086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5204.067105659143 + ], + [ + 2665.814350558482, + 5206.027776233028 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E71", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2661.26429640942, + "min_y": 5253.980991807517, + "max_x": 2663.224966983304, + "max_y": 5253.980991807517, + "center": [ + 2662.244631696362, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.224966983304, + 5253.980991807517 + ], + [ + 2661.26429640942, + 5253.980991807517 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E72", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2614.276865208897, + "min_y": 5326.143282297309, + "max_x": 2614.276865208897, + "max_y": 5328.103952871193, + "center": [ + 2614.276865208897, + 5327.123617584251 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.276865208897, + 5328.103952871193 + ], + [ + 2614.276865208897, + 5326.143282297309 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E73", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2754.025214949939, + "min_y": 5213.016000093115, + "max_x": 2754.025214949939, + "max_y": 5214.976670666999, + "center": [ + 2754.025214949939, + 5213.996335380057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.025214949939, + 5214.976670666999 + ], + [ + 2754.025214949939, + 5213.016000093115 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E74", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2749.54514466938, + "min_y": 5213.422325106298, + "max_x": 2749.54514466938, + "max_y": 5215.382995680183, + "center": [ + 2749.54514466938, + 5214.40266039324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.54514466938, + 5215.382995680183 + ], + [ + 2749.54514466938, + 5213.422325106298 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E75", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2732.641355845791, + "min_y": 5184.302265041891, + "max_x": 2732.641355845791, + "max_y": 5186.262935615776, + "center": [ + 2732.641355845791, + 5185.282600328834 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2732.641355845791, + 5186.262935615776 + ], + [ + 2732.641355845791, + 5184.302265041891 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E76", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2728.283911451844, + "min_y": 5184.573149331289, + "max_x": 2728.283911451844, + "max_y": 5186.533819905174, + "center": [ + 2728.283911451844, + 5185.553484618231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2728.283911451844, + 5186.533819905174 + ], + [ + 2728.283911451844, + 5184.573149331289 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E77", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2771.665976030512, + "min_y": 5283.40903610157, + "max_x": 2771.665976030512, + "max_y": 5285.369706675455, + "center": [ + 2771.665976030512, + 5284.389371388512 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2771.665976030512, + 5285.369706675455 + ], + [ + 2771.665976030512, + 5283.40903610157 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "557E78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.057875981651, + "min_y": 5257.787214010088, + "max_x": 2667.4020608352, + "max_y": 5257.787214010088, + "center": [ + 2664.7299684084255, + 5257.787214010088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.4020608352, + 5257.787214010088 + ], + [ + 2662.057875981651, + 5257.787214010088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.563883344148, + "min_y": 5318.831396722578, + "max_x": 2677.155842257342, + "max_y": 5318.831396722578, + "center": [ + 2673.359862800745, + 5318.831396722578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2677.155842257342, + 5318.831396722578 + ], + [ + 2669.563883344148, + 5318.831396722578 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2664.809666079103, + "min_y": 5369.216900463581, + "max_x": 2664.809666079103, + "max_y": 5372.504380836248, + "center": [ + 2664.809666079103, + 5370.860640649915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2664.809666079103, + 5372.504380836248 + ], + [ + 2664.809666079103, + 5369.216900463581 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.411905343403, + "min_y": 5360.725568557449, + "max_x": 2669.877177261313, + "max_y": 5360.725568557449, + "center": [ + 2668.644541302358, + 5360.725568557449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.411905343403, + 5360.725568557449 + ], + [ + 2669.877177261313, + 5360.725568557449 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2669.877177261313, + "min_y": 5359.97898099052, + "max_x": 2669.877177261313, + "max_y": 5361.472156124378, + "center": [ + 2669.877177261313, + 5360.725568557449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.877177261313, + 5361.472156124378 + ], + [ + 2669.877177261313, + 5359.97898099052 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557E7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2670.126039783623, + "min_y": 5359.97898099052, + "max_x": 2670.126039783623, + "max_y": 5361.472156124378, + "center": [ + 2670.126039783623, + 5360.725568557449 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.126039783623, + 5361.472156124378 + ], + [ + 2670.126039783623, + 5359.97898099052 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557E7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.385387241657, + "min_y": 5206.787850245314, + "max_x": 2700.385387241657, + "max_y": 5208.281025379172, + "center": [ + 2700.385387241657, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.385387241657, + 5208.281025379172 + ], + [ + 2700.385387241657, + 5206.787850245314 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.634249763969, + "min_y": 5206.787850245314, + "max_x": 2700.634249763969, + "max_y": 5208.281025379172, + "center": [ + 2700.634249763969, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.634249763969, + 5208.281025379172 + ], + [ + 2700.634249763969, + 5206.787850245314 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2694.121285417006, + "min_y": 5207.534437812243, + "max_x": 2700.385387241657, + "max_y": 5207.534437812243, + "center": [ + 2697.2533363293314, + 5207.534437812243 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.121285417006, + 5207.534437812243 + ], + [ + 2700.385387241657, + 5207.534437812243 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.656013499095, + "min_y": 5198.020371893214, + "max_x": 2694.121285417006, + "max_y": 5198.020371893214, + "center": [ + 2692.8886494580506, + 5198.020371893214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.121285417006, + 5198.020371893214 + ], + [ + 2691.656013499095, + 5198.020371893214 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.656013499095, + "min_y": 5197.273784326284, + "max_x": 2691.656013499095, + "max_y": 5198.766959460142, + "center": [ + 2691.656013499095, + 5198.020371893213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.656013499095, + 5198.766959460142 + ], + [ + 2691.656013499095, + 5197.273784326284 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.407150976784, + "min_y": 5197.273784326284, + "max_x": 2691.407150976784, + "max_y": 5198.766959460142, + "center": [ + 2691.407150976784, + 5198.020371893213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.407150976784, + 5198.766959460142 + ], + [ + 2691.407150976784, + 5197.273784326284 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.656013499095, + "min_y": 5195.620193417665, + "max_x": 2694.121285417006, + "max_y": 5195.620193417665, + "center": [ + 2692.8886494580506, + 5195.620193417665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.121285417006, + 5195.620193417665 + ], + [ + 2691.656013499095, + 5195.620193417665 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.656013499095, + "min_y": 5194.873605850736, + "max_x": 2691.656013499095, + "max_y": 5196.366780984593, + "center": [ + 2691.656013499095, + 5195.620193417664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.656013499095, + 5196.366780984593 + ], + [ + 2691.656013499095, + 5194.873605850736 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.407150976784, + "min_y": 5194.873605850736, + "max_x": 2691.407150976784, + "max_y": 5196.366780984593, + "center": [ + 2691.407150976784, + 5195.620193417664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.407150976784, + 5196.366780984593 + ], + [ + 2691.407150976784, + 5194.873605850736 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E87", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2862.037457956752, + "min_y": 5345.073685248138, + "max_x": 2865.621078278011, + "max_y": 5348.060035515853, + "center": [ + 2863.8292681173816, + 5346.566860381996 + ] + }, + "raw_value": "5F", + "clean_value": "5F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2786.885915558514, + "min_y": 5344.277674927589, + "max_x": 2867.225952892818, + "max_y": 5344.277674927589, + "center": [ + 2827.055934225666, + 5344.277674927589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2786.885915558514, + 5344.277674927589 + ], + [ + 2867.225952892818, + 5344.277674927589 + ] + ], + "properties": { + "color": 6, + "lineweight": 0 + } + }, + { + "entity_id": "557E89", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2668.381781853371, + "min_y": 5304.115461200419, + "max_x": 2668.381781853371, + "max_y": 5309.952386075245, + "center": [ + 2668.381781853371, + 5307.033923637832 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5309.952386075245 + ], + [ + 2668.381781853371, + 5304.115461200419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5308.481537832086, + "max_x": 2668.381781853371, + "max_y": 5309.462103327525, + "center": [ + 2667.891499105651, + 5308.971820579805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5308.481537832086 + ], + [ + 2667.401216357931, + 5309.462103327525 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5307.788173320863, + "max_x": 2668.381781853371, + "max_y": 5308.768738816303, + "center": [ + 2667.891499105651, + 5308.278456068583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5307.788173320863 + ], + [ + 2667.401216357931, + 5308.768738816303 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5307.094808809641, + "max_x": 2668.381781853371, + "max_y": 5308.075374305079, + "center": [ + 2667.891499105651, + 5307.58509155736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5307.094808809641 + ], + [ + 2667.401216357931, + 5308.075374305079 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5306.401444298418, + "max_x": 2668.381781853371, + "max_y": 5307.382009793857, + "center": [ + 2667.891499105651, + 5306.891727046137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5306.401444298418 + ], + [ + 2667.401216357931, + 5307.382009793857 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5305.708079787194, + "max_x": 2668.381781853371, + "max_y": 5306.688645282634, + "center": [ + 2667.891499105651, + 5306.198362534914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5305.708079787194 + ], + [ + 2667.401216357931, + 5306.688645282634 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401216357931, + "min_y": 5305.014715275973, + "max_x": 2668.381781853371, + "max_y": 5305.995280771412, + "center": [ + 2667.891499105651, + 5305.504998023693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5305.014715275973 + ], + [ + 2667.401216357931, + 5305.995280771412 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E90", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2670.693204015681, + "min_y": 5304.12483794407, + "max_x": 2674.27682433694, + "max_y": 5305.6180130779285, + "center": [ + 2672.485014176311, + 5304.871425510999 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557E91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.401946906835, + "min_y": 5309.952386075245, + "max_x": 2668.381781853371, + "max_y": 5309.952386075245, + "center": [ + 2667.891864380103, + 5309.952386075245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.381781853371, + 5309.952386075245 + ], + [ + 2667.401946906835, + 5309.952386075245 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E92", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2684.158935515301, + "min_y": 5151.63951657712, + "max_x": 2689.5343659971895, + "max_y": 5153.879279277907, + "center": [ + 2686.8466507562453, + 5152.759397927513 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557E93", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2931.927203497594, + "min_y": 5187.120422260067, + "max_x": 2934.7269068735773, + "max_y": 5188.053656718728, + "center": [ + 2933.327055185586, + 5187.587039489397 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E94", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2937.514974009376, + "min_y": 5187.132578620737, + "max_x": 2940.3146773853596, + "max_y": 5188.065813079398, + "center": [ + 2938.9148256973676, + 5187.599195850067 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557E95", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2917.684303703918, + "min_y": 4823.636406617815, + "max_x": 2937.2429342283717, + "max_y": 4825.447390925635, + "center": [ + 2927.463618966145, + 4824.541898771725 + ] + }, + "raw_value": "SARF-#9&10-UID-001", + "clean_value": "SARF-#9&10-UID-001", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E96", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2906.34726207803, + "min_y": 4834.461087174417, + "max_x": 2933.9432134352837, + "max_y": 4836.7607497875215, + "center": [ + 2920.1452377566566, + 4835.610918480969 + ] + }, + "raw_value": "UTILITY FLOW DIAGRAM", + "clean_value": "UTILITY FLOW DIAGRAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E97", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2547.414204121487, + "min_y": 4881.910870994321, + "max_x": 2573.5447689639996, + "max_y": 4883.710870994321, + "center": [ + 2560.479486542743, + 4882.810870994321 + ] + }, + "raw_value": "\\pi9.1164;{\\W0.9;\\LC-9128\\P\\pi7.11173;\\lSCRUBBER}", + "clean_value": "\\pi9.1164; .9; C-9128 \\pi7.11173;\\lSCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E9B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2549.207656133602, + "min_y": 4875.630849060747, + "max_x": 2583.102950349991, + "max_y": 4877.430849060747, + "center": [ + 2566.1553032417964, + 4876.530849060748 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C348.3/500 x 7,688H (25m3/min)\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 30 %%DC \\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C348.3/500 x 7,688H (25m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557E9F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2547.506190332262, + "min_y": 4854.449441019147, + "max_x": 2568.037348422808, + "max_y": 4856.2494410191475, + "center": [ + 2557.771769377535, + 4855.349441019147 + ] + }, + "raw_value": "\\pi4.44281;{\\W0.9;\\LP-9128A/B\\P\\pi0.77308;SCRUBBER PUMP}", + "clean_value": "\\pi4.44281; .9; P-9128A/B \\pi0.77308;SCRUBBER PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EA3", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2549.450434216747, + "min_y": 4847.405432413993, + "max_x": 2572.26880151372, + "max_y": 4849.205432413994, + "center": [ + 2560.8596178652333, + 4848.305432413994 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 50L/min\\PSIZE : 50A/40A\\A0;\\PMATERIAL : STS316\\PPRESSURE : 0.2MPa\\PRPM: 3,400", + "clean_value": ".9; CAPA : 50L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,400", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EA7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2912.035124998057, + "min_y": 4830.231691984515, + "max_x": 2929.972493380272, + "max_y": 4832.53135459762, + "center": [ + 2921.0038091891647, + 4831.381523291067 + ] + }, + "raw_value": "VENT GAS LINE", + "clean_value": "VENT GAS LINE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4907.152378469124, + "max_x": 2731.497081730159, + "max_y": 4915.204667641235, + "center": [ + 2723.352572561876, + 4911.1785230551795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.497081730159, + 4915.204667641235 + ], + [ + 2715.208063393593, + 4907.152378469124 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4883.153079472208, + "max_x": 2715.208063393593, + "max_y": 4907.152378469124, + "center": [ + 2715.208063393593, + 4895.152728970666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.208063393593, + 4907.152378469124 + ], + [ + 2715.208063393593, + 4883.153079472208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2731.497081730159, + "min_y": 4907.152378469124, + "max_x": 2747.483119875518, + "max_y": 4915.204667641235, + "center": [ + 2739.4901008028382, + 4911.1785230551795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.497081730159, + 4915.204667641235 + ], + [ + 2747.483119875518, + 4907.152378469124 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.483119875518, + "min_y": 4883.153079472208, + "max_x": 2747.483119875518, + "max_y": 4907.152378469124, + "center": [ + 2747.483119875518, + 4895.152728970666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.483119875518, + 4907.152378469124 + ], + [ + 2747.483119875518, + 4883.153079472208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2731.50134952505, + "min_y": 4915.202517920454, + "max_x": 2731.50134952505, + "max_y": 4918.697354794265, + "center": [ + 2731.50134952505, + 4916.94993635736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.50134952505, + 4915.202517920454 + ], + [ + 2731.50134952505, + 4918.697354794265 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2730.720969079493, + "min_y": 4916.595829501404, + "max_x": 2732.281729970509, + "max_y": 4916.595829501404, + "center": [ + 2731.501349525001, + 4916.595829501404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2732.281729970509, + 4916.595829501404 + ], + [ + 2730.720969079493, + 4916.595829501404 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2715.43803822918, + "min_y": 4910.027268331874, + "max_x": 2716.998799120279, + "max_y": 4910.027268331874, + "center": [ + 2716.2184186747295, + 4910.027268331874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.998799120279, + 4910.027268331874 + ], + [ + 2715.43803822918, + 4910.027268331874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.218418674724, + "min_y": 4885.747369812982, + "max_x": 2716.218418674724, + "max_y": 4910.027268331874, + "center": [ + 2716.218418674724, + 4897.887319072428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.218418674724, + 4910.027268331874 + ], + [ + 2716.218418674724, + 4885.747369812982 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.218418674724, + "min_y": 4910.027268331874, + "max_x": 2716.218418674724, + "max_y": 4913.006339009013, + "center": [ + 2716.218418674724, + 4911.516803670444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.218418674724, + 4910.027268331874 + ], + [ + 2716.218418674724, + 4913.006339009013 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2723.124323001595, + "min_y": 4918.366174301738, + "max_x": 2729.3315260945287, + "max_y": 4919.515656355985, + "center": [ + 2726.2279245480618, + 4918.940915328862 + ] + }, + "raw_value": "EMERGENCY", + "clean_value": "EMERGENCY", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2724.587913209053, + "min_y": 4911.769441625944, + "max_x": 2724.587913209053, + "max_y": 4914.25687204914, + "center": [ + 2724.587913209053, + 4913.013156837542 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2724.587913209053, + 4914.25687204914 + ], + [ + 2724.587913209053, + 4911.769441625944 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2726.696749127802, + "min_y": 4912.831678340262, + "max_x": 2726.696749127802, + "max_y": 4914.25687204914, + "center": [ + 2726.696749127802, + 4913.544275194701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2726.696749127802, + 4914.25687204914 + ], + [ + 2726.696749127802, + 4912.831678340262 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2724.180764993141, + "min_y": 4914.25687204914, + "max_x": 2727.10389734371, + "max_y": 4914.256872049326, + "center": [ + 2725.6423311684257, + 4914.256872049233 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2724.180764993141, + 4914.256872049326 + ], + [ + 2727.10389734371, + 4914.25687204914 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2724.180764993141, + "min_y": 4914.953527839703, + "max_x": 2727.10389734371, + "max_y": 4914.953527839703, + "center": [ + 2725.6423311684257, + 4914.953527839703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2724.180764993141, + 4914.953527839703 + ], + [ + 2727.10389734371, + 4914.953527839703 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2723.292794399036, + "min_y": 4916.709330531511, + "max_x": 2726.7412405617774, + "max_y": 4917.858812585758, + "center": [ + 2725.017017480407, + 4917.284071558634 + ] + }, + "raw_value": "HATCH", + "clean_value": "HATCH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2724.031366978486, + "min_y": 4909.801794583721, + "max_x": 2726.7901239086787, + "max_y": 4910.951276637968, + "center": [ + 2725.4107454435825, + 4910.376535610844 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2552.850083568522, + "min_y": 4965.893580457048, + "max_x": 2552.850083568523, + "max_y": 4996.116097598386, + "center": [ + 2552.8500835685227, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2552.850083568522, + 4965.893580457048 + ], + [ + 2552.850083568523, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2577.705283503731, + "min_y": 4965.893580457048, + "max_x": 2577.705283503732, + "max_y": 4996.116097598386, + "center": [ + 2577.7052835037316, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2577.705283503731, + 4965.893580457048 + ], + [ + 2577.705283503732, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EBA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2577.010327541594, + "min_y": 4968.439032169433, + "max_x": 2592.240713906944, + "max_y": 4969.932207303291, + "center": [ + 2584.6255207242693, + 4969.185619736361 + ] + }, + "raw_value": "VG-9423-50A-F1A-N", + "clean_value": "VG-9423-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557EBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2601.179638998095, + "min_y": 4965.893580457048, + "max_x": 2601.179638998095, + "max_y": 4996.116097598386, + "center": [ + 2601.179638998095, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2601.179638998095, + 4965.893580457048 + ], + [ + 2601.179638998095, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EBC", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2600.484683035958, + "min_y": 4968.439032169433, + "max_x": 2615.715069401308, + "max_y": 4969.932207303291, + "center": [ + 2608.0998762186327, + 4969.185619736361 + ] + }, + "raw_value": "VG-9424-50A-F1A-N", + "clean_value": "VG-9424-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557EBD", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2584.950183076452, + "min_y": 4968.546533862973, + "max_x": 2600.180569441802, + "max_y": 4970.039708996831, + "center": [ + 2592.5653762591273, + 4969.293121429902 + ] + }, + "raw_value": "VG-9431-50A-F1A-N", + "clean_value": "VG-9431-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557EBE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2550.050380192539, + "min_y": 4960.2941737050805, + "max_x": 2555.6497869445056, + "max_y": 4965.893580457048, + "center": [ + 2552.850083568522, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2552.850083568522, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EBF", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2551.90773212324, + "min_y": 4963.652571670185, + "max_x": 2553.6995422838695, + "max_y": 4965.1457468040435, + "center": [ + 2552.803637203555, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC0", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2551.396200965848, + "min_y": 4961.244002102358, + "max_x": 2554.979821287107, + "max_y": 4962.737177236216, + "center": [ + 2553.1880111264772, + 4961.990589669287 + ] + }, + "raw_value": "9201", + "clean_value": "9201", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2574.9055801277477, + "min_y": 4960.2941737050805, + "max_x": 2580.5049868797146, + "max_y": 4965.893580457048, + "center": [ + 2577.705283503731, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2577.705283503731, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC2", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2576.762932058449, + "min_y": 4963.652571670185, + "max_x": 2578.554742219079, + "max_y": 4965.1457468040435, + "center": [ + 2577.6588371387643, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC3", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2576.251400901056, + "min_y": 4961.244002102358, + "max_x": 2579.835021222315, + "max_y": 4962.737177236216, + "center": [ + 2578.0432110616857, + 4961.990589669287 + ] + }, + "raw_value": "9123", + "clean_value": "9123", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2598.3799356221116, + "min_y": 4960.2941737050805, + "max_x": 2603.9793423740784, + "max_y": 4965.893580457048, + "center": [ + 2601.179638998095, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2601.179638998095, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC5", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2600.237287552816, + "min_y": 4963.652571670185, + "max_x": 2602.0290977134455, + "max_y": 4965.1457468040435, + "center": [ + 2601.1331926331304, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC6", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2599.725756395422, + "min_y": 4961.244002102358, + "max_x": 2603.309376716681, + "max_y": 4962.737177236216, + "center": [ + 2601.517566556052, + 4961.990589669287 + ] + }, + "raw_value": "9101", + "clean_value": "9101", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC7", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2582.8454356626066, + "min_y": 4960.2941737050805, + "max_x": 2588.4448424145735, + "max_y": 4965.893580457048, + "center": [ + 2585.64513903859, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2585.64513903859, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC8", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2584.702787593307, + "min_y": 4963.652571670185, + "max_x": 2586.494597753937, + "max_y": 4965.1457468040435, + "center": [ + 2585.5986926736223, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557EC9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2584.191256435913, + "min_y": 4961.244002102357, + "max_x": 2587.774876757172, + "max_y": 4962.737177236215, + "center": [ + 2585.983066596543, + 4961.990589669285 + ] + }, + "raw_value": "9221", + "clean_value": "9221", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557ECA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2647.551312683948, + "min_y": 5072.936653674589, + "max_x": 2647.551312683948, + "max_y": 5082.069253769947, + "center": [ + 2647.551312683948, + 5077.502953722268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.551312683948, + 5072.936653674589 + ], + [ + 2647.551312683948, + 5082.069253769947 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ECB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.675238120816, + "min_y": 4982.479696370971, + "max_x": 2640.692589552112, + "max_y": 5050.007033931908, + "center": [ + 2640.683913836464, + 5016.24336515144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.692589552112, + 5050.007033931908 + ], + [ + 2640.675238120816, + 4982.479696370971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ECC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.405853971204, + "min_y": 4982.479696370971, + "max_x": 2654.410035815117, + "max_y": 5050.007033931908, + "center": [ + 2654.4079448931607, + 5016.24336515144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.410035815117, + 5050.007033931908 + ], + [ + 2654.405853971204, + 4982.479696370971 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ECE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.684074556129, + "min_y": 5003.867352510756, + "max_x": 2654.410293420422, + "max_y": 5003.868341939668, + "center": [ + 2647.5471839882757, + 5003.867847225212 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.684074556129, + 5003.868341939668 + ], + [ + 2654.410293420422, + 5003.867352510756 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ECF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.688522874937, + "min_y": 5003.867352510756, + "max_x": 2654.410293420422, + "max_y": 5045.050584489128, + "center": [ + 2647.5494081476795, + 5024.458968499942 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.410293420422, + 5003.867352510756 + ], + [ + 2640.688522874937, + 5045.050584489128 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.684074556129, + "min_y": 5003.868341939668, + "max_x": 2654.416542956675, + "max_y": 5045.049594220007, + "center": [ + 2647.550308756402, + 5024.458968079838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.416542956675, + 5045.049594220007 + ], + [ + 2640.684074556129, + 5003.868341939668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.688522874937, + "min_y": 5045.049594220007, + "max_x": 2654.416542956675, + "max_y": 5045.050584489128, + "center": [ + 2647.5525329158063, + 5045.050089354567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.688522874937, + 5045.050584489128 + ], + [ + 2654.416542956675, + 5045.049594220007 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.692589552112, + "min_y": 5050.007033931908, + "max_x": 2643.808557836368, + "max_y": 5052.740110006777, + "center": [ + 2642.2505736942403, + 5051.373571969343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2643.808557836368, + 5052.740110006777 + ], + [ + 2640.692589552112, + 5050.007033931908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.294067530861, + "min_y": 5050.007033931908, + "max_x": 2654.410035815117, + "max_y": 5052.740110006777, + "center": [ + 2652.852051672989, + 5051.373571969343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.294067530861, + 5052.740110006777 + ], + [ + 2654.410035815117, + 5050.007033931908 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5052.740110006777, + "max_x": 2643.808557836368, + "max_y": 5070.522750725801, + "center": [ + 2643.808557836368, + 5061.631430366289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2643.808557836368, + 5052.740110006777 + ], + [ + 2643.808557836368, + 5070.522750725801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.294067530861, + "min_y": 5052.740110006777, + "max_x": 2651.294067530861, + "max_y": 5070.522750725801, + "center": [ + 2651.294067530861, + 5061.631430366289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.294067530861, + 5052.740110006777 + ], + [ + 2651.294067530861, + 5070.522750725801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5052.740110006777, + "max_x": 2651.294067530861, + "max_y": 5063.43033042625, + "center": [ + 2647.5513126836145, + 5058.085220216513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.294067530861, + 5052.740110006777 + ], + [ + 2643.808557836368, + 5063.43033042625 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5052.740110006777, + "max_x": 2651.294067530861, + "max_y": 5063.429340997338, + "center": [ + 2647.5513126836145, + 5058.084725502058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2651.294067530861, + 5063.429340997338 + ], + [ + 2643.808557836368, + 5052.740110006777 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5063.429340997338, + "max_x": 2651.294067530861, + "max_y": 5063.43033042625, + "center": [ + 2647.5513126836145, + 5063.429835711794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2643.808557836368, + 5063.43033042625 + ], + [ + 2651.294067530861, + 5063.429340997338 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557ED9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5052.739120577864, + "max_x": 2651.294067530861, + "max_y": 5052.740110006777, + "center": [ + 2647.5513126836145, + 5052.739615292321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2643.808557836368, + 5052.740110006777 + ], + [ + 2651.294067530861, + 5052.739120577864 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EDB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2646.889044213123, + "min_y": 5067.968188781772, + "max_x": 2648.213581154105, + "max_y": 5069.115271420913, + "center": [ + 2647.551312683614, + 5068.541730101342 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.551312683616, + 5069.115271420913 + ], + [ + 2646.889044213123, + 5067.968188781772 + ], + [ + 2648.213581154105, + 5067.968188781772 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EDC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2646.889044213123, + "min_y": 5046.117312785767, + "max_x": 2648.213581154105, + "max_y": 5047.264395424909, + "center": [ + 2647.551312683614, + 5046.690854105338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.551312683616, + 5047.264395424909 + ], + [ + 2646.889044213123, + 5046.117312785767 + ], + [ + 2648.213581154105, + 5046.117312785767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EDD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2646.038800078228, + "min_y": 5075.523579505073, + "max_x": 2649.064577474855, + "max_y": 5075.523579505073, + "center": [ + 2647.5516887765416, + 5075.523579505073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2646.038800078228, + 5075.523579505073 + ], + [ + 2649.064577474855, + 5075.523579505073 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EDE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2643.808557836368, + "min_y": 5069.115271420913, + "max_x": 2647.551312683616, + "max_y": 5069.115271421569, + "center": [ + 2645.679935259992, + 5069.11527142124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.551312683616, + 5069.115271420913 + ], + [ + 2643.808557836368, + 5069.115271421569 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EDF", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2645.645814038044, + "min_y": 4986.721098397264, + "max_x": 2648.8140739500623, + "max_y": 4989.361314990612, + "center": [ + 2647.2299439940534, + 4988.041206693938 + ] + }, + "raw_value": "SG", + "clean_value": "SG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EE0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2643.2781465829344, + "min_y": 4983.668030554269, + "max_x": 2651.802945509083, + "max_y": 4992.192829480417, + "center": [ + 2647.540546046009, + 4987.930430017343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.540546046009, + 4987.930430017343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EE1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2644.1306264755494, + "min_y": 4984.520510446883, + "max_x": 2650.950465616468, + "max_y": 4991.340349587802, + "center": [ + 2647.540546046009, + 4987.930430017343 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.540546046009, + 4987.930430017343 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557EE2", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2647.551312683948, + "min_y": 5080.529927483314, + "max_x": 2650.6299652572143, + "max_y": 5083.60858005658, + "center": [ + 2649.090638970581, + 5082.069253769947 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2649.090638970581, + 5082.069253769947 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EE3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2638.229927945146, + "min_y": 5047.264395424909, + "max_x": 2647.551312683616, + "max_y": 5047.264395424909, + "center": [ + 2642.8906203143806, + 5047.264395424909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.551312683616, + 5047.264395424909 + ], + [ + 2638.229927945146, + 5047.264395424909 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EE4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2638.229927945146, + "min_y": 5046.51780785798, + "max_x": 2638.229927945146, + "max_y": 5048.010982991838, + "center": [ + 2638.229927945146, + 5047.264395424909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.229927945146, + 5048.010982991838 + ], + [ + 2638.229927945146, + 5046.51780785798 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EE5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2637.981065422837, + "min_y": 5046.51780785798, + "max_x": 2637.981065422837, + "max_y": 5048.010982991838, + "center": [ + 2637.981065422837, + 5047.264395424909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.981065422837, + 5048.010982991838 + ], + [ + 2637.981065422837, + 5046.51780785798 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EE6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2647.540546045747, + "min_y": 4975.327192203759, + "max_x": 2647.540546045747, + "max_y": 4977.762741600045, + "center": [ + 2647.540546045747, + 4976.544966901902 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2647.540546045747, + 4977.762741600045 + ], + [ + 2647.540546045747, + 4975.327192203759 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EE7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2646.793958478818, + "min_y": 4975.078329681455, + "max_x": 2648.287133612675, + "max_y": 4975.078329681455, + "center": [ + 2647.5405460457464, + 4975.078329681455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2648.287133612675, + 4975.078329681455 + ], + [ + 2646.793958478818, + 4975.078329681455 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EE8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2646.793958478818, + "min_y": 4975.327192203764, + "max_x": 2648.287133612675, + "max_y": 4975.327192203764, + "center": [ + 2647.5405460457464, + 4975.327192203764 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2648.287133612675, + 4975.327192203764 + ], + [ + 2646.793958478818, + 4975.327192203764 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EE9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2642.616388684654, + "min_y": 4974.4170904864, + "max_x": 2645.304103925598, + "max_y": 4975.9102656202585, + "center": [ + 2643.960246305126, + 4975.16367805333 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557EEA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.346600961816, + "min_y": 5069.115271421569, + "max_x": 2643.808557836368, + "max_y": 5069.115271421569, + "center": [ + 2642.577579399092, + 5069.115271421569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.346600961816, + 5069.115271421569 + ], + [ + 2643.808557836368, + 5069.115271421569 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EEB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.346600961816, + "min_y": 5068.36868385464, + "max_x": 2641.346600961816, + "max_y": 5069.861858988497, + "center": [ + 2641.346600961816, + 5069.115271421569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.346600961816, + 5068.36868385464 + ], + [ + 2641.346600961816, + 5069.861858988497 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EEC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.097738439505, + "min_y": 5068.36868385464, + "max_x": 2641.097738439505, + "max_y": 5069.861858988497, + "center": [ + 2641.097738439505, + 5069.115271421569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.097738439505, + 5068.36868385464 + ], + [ + 2641.097738439505, + 5069.861858988497 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.818348351181, + "min_y": 4979.463050745646, + "max_x": 2652.818348351181, + "max_y": 4991.54863153858, + "center": [ + 2652.818348351181, + 4985.505841142112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818348351181, + 4991.54863153858 + ], + [ + 2652.818348351181, + 4979.463050745646 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EEE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.818988171753, + "min_y": 4977.027501328874, + "max_x": 2652.818988171753, + "max_y": 4979.46305072516, + "center": [ + 2652.818988171753, + 4978.245276027017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171753, + 4979.46305072516 + ], + [ + 2652.818988171753, + 4977.027501328874 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EEF", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2654.727748082164, + "min_y": 4974.4170904864, + "max_x": 2657.4154633231083, + "max_y": 4975.9102656202585, + "center": [ + 2656.071605702636, + 4975.16367805333 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557EF0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2638.213470133129, + "min_y": 4996.116097598386, + "max_x": 2640.67874205104, + "max_y": 4996.116097598386, + "center": [ + 2639.4461060920844, + 4996.116097598386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.213470133129, + 4996.116097598386 + ], + [ + 2640.67874205104, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2637.96460761082, + "min_y": 4995.369510031458, + "max_x": 2637.96460761082, + "max_y": 4996.862685165315, + "center": [ + 2637.96460761082, + 4996.116097598387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.96460761082, + 4996.862685165315 + ], + [ + 2637.96460761082, + 4995.369510031458 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EF2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2638.213470133129, + "min_y": 4995.369510031458, + "max_x": 2638.213470133129, + "max_y": 4996.862685165315, + "center": [ + 2638.213470133129, + 4996.116097598387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.213470133129, + 4996.862685165315 + ], + [ + 2638.213470133129, + 4995.369510031458 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557EF3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2638.219230090084, + "min_y": 4983.367797514454, + "max_x": 2640.684502007995, + "max_y": 4983.367797514454, + "center": [ + 2639.4518660490394, + 4983.367797514454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2640.684502007995, + 4983.367797514454 + ], + [ + 2638.219230090084, + 4983.367797514454 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF4", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2626.474264005297, + "min_y": 4983.367797514651, + "max_x": 2631.857061462922, + "max_y": 4983.367797514651, + "center": [ + 2629.1656627341094, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.857061462922, + 4983.367797514651 + ], + [ + 2626.474264005297, + 4983.367797514651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF5", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2632.936122161249, + "min_y": 4983.367797514454, + "max_x": 2634.903919404079, + "max_y": 4983.367797514454, + "center": [ + 2633.920020782664, + 4983.367797514454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.936122161249, + 4983.367797514454 + ], + [ + 2634.903919404079, + 4983.367797514454 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF6", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2631.857061462922, + "min_y": 4982.208916912487, + "max_x": 2631.857061462922, + "max_y": 4984.526678116588, + "center": [ + 2631.857061462922, + 4983.367797514538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.857061462922, + 4982.208916912487 + ], + [ + 2631.857061462922, + 4984.526678116588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF7", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2631.857061462922, + "min_y": 4984.526678116588, + "max_x": 2632.936122161249, + "max_y": 4984.526678116588, + "center": [ + 2632.3965918120857, + 4984.526678116588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.857061462922, + 4984.526678116588 + ], + [ + 2632.936122161249, + 4984.526678116588 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF8", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2632.936122161249, + "min_y": 4982.208916912487, + "max_x": 2632.936122161249, + "max_y": 4984.526678116588, + "center": [ + 2632.936122161249, + 4983.367797514538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.936122161249, + 4984.526678116588 + ], + [ + 2632.936122161249, + 4982.208916912487 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EF9", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2631.857061462922, + "min_y": 4982.208916912487, + "max_x": 2632.936122161249, + "max_y": 4982.208916912487, + "center": [ + 2632.3965918120857, + 4982.208916912487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2632.936122161249, + 4982.208916912487 + ], + [ + 2631.857061462922, + 4982.208916912487 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFA", + "entity_type": "ARC", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2632.149609813147, + "min_y": 4980.525476284857, + "max_x": 2637.834252272341, + "max_y": 4986.21011874405, + "center": [ + 2634.991931042744, + 4983.367797514454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.991931042744, + 4983.367797514454 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFB", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.445877569568, + "min_y": 4982.968816547371, + "max_x": 2629.24383950382, + "max_y": 4983.766778481548, + "center": [ + 2628.844858536694, + 4983.367797514459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.24383950382, + 4982.968816547371 + ], + [ + 2628.445877569568, + 4983.766778481548 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFC", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2628.445877569568, + "min_y": 4982.968816547371, + "max_x": 2629.24383950382, + "max_y": 4983.766778481548, + "center": [ + 2628.844858536694, + 4983.367797514459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2629.24383950382, + 4983.766778481548 + ], + [ + 2628.445877569568, + 4982.968816547371 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFD", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2630.391761904938, + "min_y": 4982.968816547371, + "max_x": 2631.189723839196, + "max_y": 4983.766778481548, + "center": [ + 2630.7907428720673, + 4983.367797514459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.189723839196, + 4982.968816547371 + ], + [ + 2630.391761904938, + 4983.766778481548 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFE", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2630.391761904938, + "min_y": 4982.968816547371, + "max_x": 2631.189723839196, + "max_y": 4983.766778481548, + "center": [ + 2630.7907428720673, + 4983.367797514459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2631.189723839196, + 4983.766778481548 + ], + [ + 2630.391761904938, + 4982.968816547371 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557EFF", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2620.8748572533295, + "min_y": 4980.568094138667, + "max_x": 2626.4742640052964, + "max_y": 4986.167500890635, + "center": [ + 2623.674560629313, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.674560629313, + 4983.367797514651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F00", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.855246815061, + "min_y": 4983.926492103771, + "max_x": 2624.6470569756907, + "max_y": 4985.419667237629, + "center": [ + 2623.751151895376, + 4984.6730796707 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F01", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2622.220678026636, + "min_y": 4981.517922535942, + "max_x": 2625.804298347895, + "max_y": 4983.0110976698, + "center": [ + 2624.0124881872653, + 4982.26451010287 + ] + }, + "raw_value": "9128", + "clean_value": "9128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F02", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2615.2754505013686, + "min_y": 4980.568094138667, + "max_x": 2620.8748572533354, + "max_y": 4986.167500890635, + "center": [ + 2618.075153877352, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.075153877352, + 4983.367797514651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F03", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2617.510277105909, + "min_y": 4983.926492103771, + "max_x": 2619.302087266539, + "max_y": 4985.419667237629, + "center": [ + 2618.406182186224, + 4984.6730796707 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F04", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2616.621271274676, + "min_y": 4981.517922535942, + "max_x": 2620.204891595935, + "max_y": 4983.0110976698, + "center": [ + 2618.4130814353057, + 4982.26451010287 + ] + }, + "raw_value": "9128", + "clean_value": "9128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F05", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4983.367797514651, + "max_x": 2620.874857253329, + "max_y": 4983.367797514651, + "center": [ + 2618.0751538773484, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.275450501368, + 4983.367797514651 + ], + [ + 2620.874857253329, + 4983.367797514651 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F06", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4980.568094138668, + "max_x": 2620.874857253329, + "max_y": 4980.568094138668, + "center": [ + 2618.0751538773484, + 4980.568094138668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.874857253329, + 4980.568094138668 + ], + [ + 2615.275450501368, + 4980.568094138668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F07", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4980.568094138668, + "max_x": 2615.275450501368, + "max_y": 4986.167500890633, + "center": [ + 2615.275450501368, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.275450501368, + 4986.167500890633 + ], + [ + 2615.275450501368, + 4980.568094138668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F08", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2620.874857253329, + "min_y": 4980.568094138668, + "max_x": 2620.874857253329, + "max_y": 4986.167500890633, + "center": [ + 2620.874857253329, + 4983.367797514651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.874857253329, + 4980.568094138668 + ], + [ + 2620.874857253329, + 4986.167500890633 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F09", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2615.275450501368, + "min_y": 4986.167500890633, + "max_x": 2620.874857253329, + "max_y": 4986.167500890633, + "center": [ + 2618.0751538773484, + 4986.167500890633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2615.275450501368, + 4986.167500890633 + ], + [ + 2620.874857253329, + 4986.167500890633 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2640.215177073818, + "min_y": 4977.892799651353, + "max_x": 2642.008620425693, + "max_y": 4979.686243003227, + "center": [ + 2641.1118987497557, + 4978.78952132729 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.008620425693, + 4979.686243003227 + ], + [ + 2640.215177073818, + 4977.892799651353 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F0B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.687259942493, + "min_y": 4977.364882520029, + "max_x": 2640.743094205143, + "max_y": 4978.420716782679, + "center": [ + 2640.215177073818, + 4977.892799651354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.687259942493, + 4978.420716782679 + ], + [ + 2640.743094205143, + 4977.364882520029 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F0C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.511287565385, + "min_y": 4977.18891014292, + "max_x": 2640.567121828036, + "max_y": 4978.244744405571, + "center": [ + 2640.0392046967104, + 4977.716827274246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.511287565385, + 4978.244744405571 + ], + [ + 2640.567121828036, + 4977.18891014292 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F0D", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2633.9321953007416, + "min_y": 4971.609817878275, + "max_x": 2639.5316020527084, + "max_y": 4977.209224630243, + "center": [ + 2636.731898676725, + 4974.409521254259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.731898676725, + 4974.409521254259 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F0E", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2635.835903324076, + "min_y": 4974.644878531791, + "max_x": 2637.6277134847055, + "max_y": 4976.138053665649, + "center": [ + 2636.731808404391, + 4975.391466098719 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F0F", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2635.278016074049, + "min_y": 4972.559646275552, + "max_x": 2638.861636395308, + "max_y": 4974.05282140941, + "center": [ + 2637.0698262346787, + 4973.306233842481 + ] + }, + "raw_value": "9128", + "clean_value": "9128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F10", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2638.711587919192, + "min_y": 4976.389210496729, + "max_x": 2640.039204696711, + "max_y": 4977.716827274246, + "center": [ + 2639.3753963079516, + 4977.053018885487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.711587919192, + 4976.389210496729 + ], + [ + 2640.039204696711, + 4977.716827274246 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F11", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2635.142937067505, + "min_y": 4986.104599020063, + "max_x": 2637.8306523084493, + "max_y": 4987.597774153921, + "center": [ + 2636.486794687977, + 4986.851186586991 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2651.294067531534, + "min_y": 5069.115271421569, + "max_x": 2653.756024406084, + "max_y": 5069.115271421569, + "center": [ + 2652.525045968809, + 5069.115271421569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.756024406084, + 5069.115271421569 + ], + [ + 2651.294067531534, + 5069.115271421569 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F13", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2653.527379617586, + "min_y": 5071.852072927176, + "max_x": 2657.110999938845, + "max_y": 5073.345248061034, + "center": [ + 2655.3191897782153, + 5072.5986604941045 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2657.071335092089, + "min_y": 5069.115271421569, + "max_x": 2660.833254358962, + "max_y": 5069.115271421569, + "center": [ + 2658.9522947255255, + 5069.115271421569 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.071335092089, + 5069.115271421569 + ], + [ + 2660.833254358962, + 5069.115271421569 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F15", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2662.175434795956, + "min_y": 5068.39137548629, + "max_x": 2671.1344855991033, + "max_y": 5069.884550620148, + "center": [ + 2666.6549601975294, + 5069.137963053219 + ] + }, + "raw_value": "FOR SAMPLE", + "clean_value": "FOR SAMPLE", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4913.006339009013, + "max_x": 2652.818988171755, + "max_y": 4973.610686256176, + "center": [ + 2652.818988171755, + 4943.308512632595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171755, + 4973.610686256176 + ], + [ + 2652.818988171755, + 4913.006339009013 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F17", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4913.006339009013, + "max_x": 2716.218418674724, + "max_y": 4913.006339009013, + "center": [ + 2684.5187034232395, + 4913.006339009013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171755, + 4913.006339009013 + ], + [ + 2716.218418674724, + 4913.006339009013 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2545.364369877367, + "min_y": 4996.116097598386, + "max_x": 2637.96460761082, + "max_y": 4996.116097598386, + "center": [ + 2591.6644887440934, + 4996.116097598386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2545.364369877367, + 4996.116097598386 + ], + [ + 2637.96460761082, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F19", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2639.756196484549, + "min_y": 5070.464138832877, + "max_x": 2642.4439117254933, + "max_y": 5071.9573139667355, + "center": [ + 2641.100054105021, + 5071.210726399806 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F1A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2658.717462166158, + "min_y": 5024.191182114201, + "max_x": 2672.156038370879, + "max_y": 5026.430944814988, + "center": [ + 2665.436750268518, + 5025.311063464595 + ] + }, + "raw_value": "%%USC-9128", + "clean_value": "SC-9128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F1B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.712925291536, + "min_y": 4910.805390346306, + "max_x": 2746.273686182633, + "max_y": 4910.805390346306, + "center": [ + 2745.4933057370845, + 4910.805390346306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2746.273686182633, + 4910.805390346306 + ], + [ + 2744.712925291536, + 4910.805390346306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4908.15466300615, + "max_x": 2745.493305737087, + "max_y": 4910.805390346306, + "center": [ + 2745.493305737087, + 4909.480026676229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2745.493305737087, + 4910.805390346306 + ], + [ + 2745.493305737087, + 4908.15466300615 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F1D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2651.793678784663, + "min_y": 4950.074691447804, + "max_x": 2667.024065150013, + "max_y": 4951.567866581662, + "center": [ + 2659.408871967338, + 4950.821279014734 + ] + }, + "raw_value": "WW-9193-25A-F1A-N", + "clean_value": "WW-9193-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.590668428354, + "min_y": 4954.534070104285, + "max_x": 2731.50134952505, + "max_y": 4954.534070104285, + "center": [ + 2709.046008976702, + 4954.534070104285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.50134952505, + 4954.534070104285 + ], + [ + 2686.590668428354, + 4954.534070104285 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2731.50134952505, + "min_y": 4918.697354794265, + "max_x": 2731.50134952505, + "max_y": 4954.534070104285, + "center": [ + 2731.50134952505, + 4936.615712449275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.50134952505, + 4954.534070104285 + ], + [ + 2731.50134952505, + 4918.697354794265 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4910.805390346306, + "max_x": 2745.493305737087, + "max_y": 4931.168627210237, + "center": [ + 2745.493305737087, + 4920.987008778271 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2745.493305737087, + 4910.805390346306 + ], + [ + 2745.493305737087, + 4931.168627210237 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F21", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4931.168627210237, + "max_x": 2767.341753583826, + "max_y": 4931.168627210237, + "center": [ + 2756.4175296604567, + 4931.168627210237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2745.493305737087, + 4931.168627210237 + ], + [ + 2767.341753583826, + 4931.168627210237 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F22", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2731.692296514236, + "min_y": 5001.545556984761, + "max_x": 2745.728596572269, + "max_y": 5007.614265506497, + "center": [ + 2738.7104465432526, + 5004.579911245629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.692296514236, + 5001.545556984761 + ], + [ + 2745.728596572269, + 5001.545556984761 + ], + [ + 2745.728596572269, + 5007.614265506497 + ], + [ + 2731.692296514236, + 5007.614265506497 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F23", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2733.83746388906, + "min_y": 5003.459416097155, + "max_x": 2744.5883248528366, + "max_y": 5005.251226257784, + "center": [ + 2739.2128943709486, + 5004.355321177469 + ] + }, + "raw_value": "%%UVP-9117", + "clean_value": "VP-9117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F24", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2731.692296514236, + "min_y": 4993.687171271913, + "max_x": 2745.728596572269, + "max_y": 4999.755879793649, + "center": [ + 2738.7104465432526, + 4996.721525532781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.692296514236, + 4993.687171271913 + ], + [ + 2745.728596572269, + 4993.687171271913 + ], + [ + 2745.728596572269, + 4999.755879793649 + ], + [ + 2731.692296514236, + 4999.755879793649 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F25", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2733.83746388906, + "min_y": 4995.601030384307, + "max_x": 2744.5883248528366, + "max_y": 4997.392840544936, + "center": [ + 2739.2128943709486, + 4996.496935464622 + ] + }, + "raw_value": "%%UVP-9217", + "clean_value": "VP-9217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.352100901933, + "min_y": 4849.137134891769, + "max_x": 2764.827707693378, + "max_y": 4849.137134891769, + "center": [ + 2703.0899042976557, + 4849.137134891769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2764.827707693378, + 4849.137134891769 + ], + [ + 2641.352100901933, + 4849.137134891769 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F27", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2621.6423618899207, + "min_y": 4838.801908713011, + "max_x": 2627.2417686418876, + "max_y": 4844.401315464978, + "center": [ + 2624.442065265904, + 4841.601612088994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.442065265904, + 4841.601612088994 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F28", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2623.016522347308, + "min_y": 4842.160306678115, + "max_x": 2625.7042375882525, + "max_y": 4843.6534818119735, + "center": [ + 2624.3603799677803, + 4842.906894245045 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F29", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2622.575170421205, + "min_y": 4839.751737110286, + "max_x": 2627.0546958227783, + "max_y": 4841.244912244144, + "center": [ + 2624.8149331219915, + 4840.498324677215 + ] + }, + "raw_value": "9219B", + "clean_value": "9219B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F2A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2620.240435290185, + "min_y": 4835.478387313782, + "max_x": 2629.916210157584, + "max_y": 4837.270197474411, + "center": [ + 2625.0783227238844, + 4836.374292394097 + ] + }, + "raw_value": "%%UE-9219", + "clean_value": "E-9219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F2B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2621.6423618899207, + "min_y": 4872.031129880335, + "max_x": 2627.2417686418876, + "max_y": 4877.630536632303, + "center": [ + 2624.442065265904, + 4874.830833256319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.442065265904, + 4874.830833256319 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F2C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2623.016522347308, + "min_y": 4875.38952784544, + "max_x": 2625.7042375882525, + "max_y": 4876.882702979298, + "center": [ + 2624.3603799677803, + 4876.13611541237 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F2D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2622.575170421205, + "min_y": 4872.980958277612, + "max_x": 2627.0546958227783, + "max_y": 4874.474133411471, + "center": [ + 2624.8149331219915, + 4873.727545844542 + ] + }, + "raw_value": "9119B", + "clean_value": "9119B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F2E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2620.240435290185, + "min_y": 4868.707608481106, + "max_x": 2629.916210157584, + "max_y": 4870.499418641735, + "center": [ + 2625.0783227238844, + 4869.60351356142 + ] + }, + "raw_value": "%%UE-9119", + "clean_value": "E-9119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F2F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2601.1229888998005, + "min_y": 4861.022175525889, + "max_x": 2606.7223956517673, + "max_y": 4866.621582277857, + "center": [ + 2603.922692275784, + 4863.821878901873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2603.922692275784, + 4863.821878901873 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F30", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2602.497149357186, + "min_y": 4864.380573490993, + "max_x": 2605.1848645981304, + "max_y": 4865.873748624851, + "center": [ + 2603.8410069776583, + 4865.127161057922 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F31", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2602.468809673109, + "min_y": 4861.972003923165, + "max_x": 2606.0524299943677, + "max_y": 4863.465179057023, + "center": [ + 2604.260619833738, + 4862.718591490095 + ] + }, + "raw_value": "9111", + "clean_value": "9111", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F32", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2599.721062300063, + "min_y": 4858.17136281692, + "max_x": 2609.396837167462, + "max_y": 4859.963172977549, + "center": [ + 2604.5589497337623, + 4859.067267897235 + ] + }, + "raw_value": "%%UD-9113", + "clean_value": "D-9113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F33", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2601.1229888998005, + "min_y": 4846.337431515785, + "max_x": 2606.7223956517673, + "max_y": 4851.936838267753, + "center": [ + 2603.922692275784, + 4849.137134891769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2603.922692275784, + 4849.137134891769 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F34", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2602.497149357188, + "min_y": 4849.69582948089, + "max_x": 2605.184864598132, + "max_y": 4851.189004614748, + "center": [ + 2603.84100697766, + 4850.44241704782 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F35", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2602.46880967311, + "min_y": 4847.287259913063, + "max_x": 2606.052429994369, + "max_y": 4848.780435046921, + "center": [ + 2604.26061983374, + 4848.033847479992 + ] + }, + "raw_value": "9211", + "clean_value": "9211", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F36", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2599.456466961209, + "min_y": 4843.818353300747, + "max_x": 2609.132241828608, + "max_y": 4845.610163461376, + "center": [ + 2604.2943543949086, + 4844.714258381062 + ] + }, + "raw_value": "%%UD-9213", + "clean_value": "D-9213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.352100901933, + "min_y": 4863.821878901873, + "max_x": 2760.470263299432, + "max_y": 4863.821878901873, + "center": [ + 2700.9111821006827, + 4863.821878901873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.470263299432, + 4863.821878901873 + ], + [ + 2641.352100901933, + 4863.821878901873 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F38", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.341753583826, + "min_y": 4930.42203964331, + "max_x": 2767.341753583826, + "max_y": 4931.915214777167, + "center": [ + 2767.341753583826, + 4931.168627210239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.341753583826, + 4931.915214777167 + ], + [ + 2767.341753583826, + 4930.42203964331 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F39", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.590616106137, + "min_y": 4930.42203964331, + "max_x": 2767.590616106137, + "max_y": 4931.915214777167, + "center": [ + 2767.590616106137, + 4931.168627210239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.590616106137, + 4931.915214777167 + ], + [ + 2767.590616106137, + 4930.42203964331 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F3A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2764.827707693378, + "min_y": 4904.877339921812, + "max_x": 2764.827707693378, + "max_y": 4930.42203964331, + "center": [ + 2764.827707693378, + 4917.649689782561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2764.827707693378, + 4930.42203964331 + ], + [ + 2764.827707693378, + 4904.877339921812 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4863.071138907272, + "max_x": 2641.352100901933, + "max_y": 4863.485294305395, + "center": [ + 2640.4474716635186, + 4863.278216606333 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4863.071138907272 + ], + [ + 2639.542842425104, + 4863.485294305395 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4864.150158643269, + "max_x": 2641.352100901933, + "max_y": 4864.56431404113, + "center": [ + 2640.4474716635186, + 4864.357236342199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4864.56431404113 + ], + [ + 2639.542842425104, + 4864.150158643269 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4863.485294305395, + "max_x": 2639.542842425104, + "max_y": 4864.150158643269, + "center": [ + 2639.542842425104, + 4863.817726474332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.542842425104, + 4864.150158643269 + ], + [ + 2639.542842425104, + 4863.485294305395 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.352100901933, + "min_y": 4863.071138907272, + "max_x": 2641.352100901933, + "max_y": 4864.56431404113, + "center": [ + 2641.352100901933, + 4863.817726474201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4863.071138907272 + ], + [ + 2641.352100901933, + 4864.56431404113 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F3F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2641.449813898062, + "min_y": 4861.394791048558, + "max_x": 2649.5129596208944, + "max_y": 4862.887966182416, + "center": [ + 2645.4813867594785, + 4862.141378615486 + ] + }, + "raw_value": "125Ax150A", + "clean_value": "125Ax150A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F40", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2641.806338050238, + "min_y": 4849.879570031027, + "max_x": 2648.0776736124412, + "max_y": 4851.372745164885, + "center": [ + 2644.94200583134, + 4850.626157597955 + ] + }, + "raw_value": "65Ax80A", + "clean_value": "65Ax80A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F41", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2758.977088165574, + "min_y": 4929.675452076382, + "max_x": 2760.470263299432, + "max_y": 4931.168627210239, + "center": [ + 2759.723675732503, + 4930.42203964331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2759.723675732503, + 4930.42203964331 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F42", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2763.33453255952, + "min_y": 4929.675452076382, + "max_x": 2764.827707693378, + "max_y": 4931.168627210239, + "center": [ + 2764.081120126449, + 4930.42203964331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2764.081120126449, + 4930.42203964331 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F43", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2566.5342107051256, + "min_y": 4960.2941737050805, + "max_x": 2572.1336174570924, + "max_y": 4965.893580457048, + "center": [ + 2569.333914081109, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2569.333914081109, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F44", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2568.391562635827, + "min_y": 4963.652571670186, + "max_x": 2570.1833727964568, + "max_y": 4965.145746804044, + "center": [ + 2569.2874677161417, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F45", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2567.880031478433, + "min_y": 4961.244002102358, + "max_x": 2571.463651799692, + "max_y": 4962.737177236216, + "center": [ + 2569.671841639062, + 4961.990589669287 + ] + }, + "raw_value": "9121", + "clean_value": "9121", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F46", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2557.8176301722915, + "min_y": 4960.2941737050805, + "max_x": 2563.4170369242584, + "max_y": 4965.893580457048, + "center": [ + 2560.617333548275, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2560.617333548275, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F47", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2559.674982102993, + "min_y": 4963.652571670186, + "max_x": 2561.4667922636227, + "max_y": 4965.145746804044, + "center": [ + 2560.5708871833076, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F48", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2559.163450945599, + "min_y": 4961.244002102358, + "max_x": 2562.747071266858, + "max_y": 4962.737177236216, + "center": [ + 2560.955261106228, + 4961.990589669287 + ] + }, + "raw_value": "9122", + "clean_value": "9122", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F49", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2585.64513903859, + "min_y": 4965.893580457048, + "max_x": 2585.64513903859, + "max_y": 4996.116097598386, + "center": [ + 2585.64513903859, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2585.64513903859, + 4996.116097598386 + ], + [ + 2585.64513903859, + 4965.893580457048 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F4A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.405941387722, + "min_y": 4994.01588659594, + "max_x": 2656.871213305632, + "max_y": 4994.01588659594, + "center": [ + 2655.6385773466773, + 4994.01588659594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.405941387722, + 4994.01588659594 + ], + [ + 2656.871213305632, + 4994.01588659594 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F4B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2656.871213305632, + "min_y": 4993.269299029011, + "max_x": 2656.871213305632, + "max_y": 4994.76247416287, + "center": [ + 2656.871213305632, + 4994.01588659594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.871213305632, + 4994.76247416287 + ], + [ + 2656.871213305632, + 4993.269299029011 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2657.120075827941, + "min_y": 4993.269299029011, + "max_x": 2657.120075827941, + "max_y": 4994.76247416287, + "center": [ + 2657.120075827941, + 4994.01588659594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.120075827941, + 4994.76247416287 + ], + [ + 2657.120075827941, + 4993.269299029011 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2657.120075827941, + "min_y": 4994.01588659594, + "max_x": 2670.5980191116, + "max_y": 4994.01588659594, + "center": [ + 2663.8590474697703, + 4994.01588659594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.120075827941, + 4994.01588659594 + ], + [ + 2670.5980191116, + 4994.01588659594 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.590668428354, + "min_y": 4954.534070104285, + "max_x": 2686.590668428354, + "max_y": 4994.01588659594, + "center": [ + 2686.590668428354, + 4974.274978350113 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.590668428354, + 4954.534070104285 + ], + [ + 2686.590668428354, + 4994.01588659594 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F4F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2745.493305737087, + "min_y": 4931.831161614628, + "max_x": 2749.076926058346, + "max_y": 4933.3243367484865, + "center": [ + 2747.2851158977164, + 4932.577749181557 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F50", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2552.2866333767, + "min_y": 4967.287483399025, + "max_x": 2567.5170197420503, + "max_y": 4968.7806585328835, + "center": [ + 2559.901826559375, + 4968.034070965954 + ] + }, + "raw_value": "VG-9421-50A-F1A-N", + "clean_value": "VG-9421-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F51", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2544.422018432083, + "min_y": 4963.652571670186, + "max_x": 2546.2138285927126, + "max_y": 4965.145746804044, + "center": [ + 2545.317923512398, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F52", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2543.910487274691, + "min_y": 4961.244002102358, + "max_x": 2547.49410759595, + "max_y": 4962.737177236216, + "center": [ + 2545.7022974353204, + 4961.990589669287 + ] + }, + "raw_value": "9124", + "clean_value": "9124", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F53", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2542.5646665013837, + "min_y": 4960.2941737050805, + "max_x": 2548.1640732533506, + "max_y": 4965.893580457048, + "center": [ + 2545.364369877367, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2545.364369877367, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F54", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2685.773351357982, + "min_y": 4970.152858605358, + "max_x": 2701.899642803647, + "max_y": 4971.646033739216, + "center": [ + 2693.8364970808143, + 4970.899446172287 + ] + }, + "raw_value": "VG-9400-150A-F1A-N", + "clean_value": "VG-9400-150A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F55", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.110757127287, + "min_y": 4988.863679800473, + "max_x": 2683.32761580671, + "max_y": 4988.863679800473, + "center": [ + 2675.2191864669985, + 4988.863679800473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.110757127287, + 4988.863679800473 + ], + [ + 2683.32761580671, + 4988.863679800473 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F56", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.68292911329, + "min_y": 4984.435851786477, + "max_x": 2683.32761580671, + "max_y": 4984.435851786477, + "center": [ + 2673.00527246, + 4984.435851786477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.68292911329, + 4984.435851786477 + ], + [ + 2683.32761580671, + 4984.435851786477 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F57", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2690.224189189305, + "min_y": 4985.182439353405, + "max_x": 2705.454575554655, + "max_y": 4986.675614487263, + "center": [ + 2697.83938237198, + 4985.929026920334 + ] + }, + "raw_value": "VG-9411-50A-F1A-N", + "clean_value": "VG-9411-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F58", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2690.170861505953, + "min_y": 4989.765825132838, + "max_x": 2705.401247871303, + "max_y": 4991.259000266696, + "center": [ + 2697.7860546886277, + 4990.512412699767 + ] + }, + "raw_value": "VG-9412-50A-F1A-N", + "clean_value": "VG-9412-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F59", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2569.333914081109, + "min_y": 4965.755830668441, + "max_x": 2569.333914081109, + "max_y": 4996.116097598386, + "center": [ + 2569.333914081109, + 4980.935964133414 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2569.333914081109, + 4965.755830668441 + ], + [ + 2569.333914081109, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F5A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2568.638958118972, + "min_y": 4968.301282380824, + "max_x": 2583.869344484322, + "max_y": 4969.794457514682, + "center": [ + 2576.2541513016467, + 4969.0478699477535 + ] + }, + "raw_value": "VG-9433-50A-F1A-N", + "clean_value": "VG-9433-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F5B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2559.874972431571, + "min_y": 4968.286953345192, + "max_x": 2575.1053587969213, + "max_y": 4969.78012847905, + "center": [ + 2567.4901656142465, + 4969.033540912122 + ] + }, + "raw_value": "VG-9432-50A-F1A-N", + "clean_value": "VG-9432-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F5C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2545.364369877367, + "min_y": 4965.893580457048, + "max_x": 2545.364369877367, + "max_y": 4996.116097598386, + "center": [ + 2545.364369877367, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2545.364369877367, + 4965.893580457048 + ], + [ + 2545.364369877367, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F5D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2543.987203758246, + "min_y": 4968.247954697472, + "max_x": 2559.217590123596, + "max_y": 4969.74112983133, + "center": [ + 2551.6023969409207, + 4968.994542264401 + ] + }, + "raw_value": "VG-9434-50A-F1A-N", + "clean_value": "VG-9434-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2560.617333548275, + "min_y": 4965.893580457048, + "max_x": 2560.617333548275, + "max_y": 4996.116097598386, + "center": [ + 2560.617333548275, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2560.617333548275, + 4965.893580457048 + ], + [ + 2560.617333548275, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F5F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2605.1115522712316, + "min_y": 4960.2941737050805, + "max_x": 2610.7109590231985, + "max_y": 4965.893580457048, + "center": [ + 2607.911255647215, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2607.911255647215, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F60", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2606.968904201934, + "min_y": 4963.652571670186, + "max_x": 2608.7607143625637, + "max_y": 4965.145746804044, + "center": [ + 2607.8648092822486, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F61", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2606.45737304454, + "min_y": 4961.244002102358, + "max_x": 2610.040993365799, + "max_y": 4962.737177236216, + "center": [ + 2608.249183205169, + 4961.990589669287 + ] + }, + "raw_value": "9100", + "clean_value": "9100", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2607.911255647211, + "min_y": 4965.755830668441, + "max_x": 2607.911255647215, + "max_y": 4996.116097598383, + "center": [ + 2607.911255647213, + 4980.935964133412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2607.911255647211, + 4965.755830668441 + ], + [ + 2607.911255647215, + 4996.116097598383 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F63", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2607.216299685074, + "min_y": 4968.301282380824, + "max_x": 2622.446686050424, + "max_y": 4969.794457514682, + "center": [ + 2614.831492867749, + 4969.0478699477535 + ] + }, + "raw_value": "VG-9426-50A-F1A-N", + "clean_value": "VG-9426-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F64", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2590.9578967525704, + "min_y": 4960.2941737050805, + "max_x": 2596.5573035045372, + "max_y": 4965.893580457048, + "center": [ + 2593.757600128554, + 4963.093877081064 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2593.757600128554, + 4963.093877081064 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F65", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2592.815248683274, + "min_y": 4963.652571670186, + "max_x": 2594.607058843904, + "max_y": 4965.145746804044, + "center": [ + 2593.711153763589, + 4964.399159237115 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F66", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2592.303717525881, + "min_y": 4961.244002102358, + "max_x": 2595.88733784714, + "max_y": 4962.737177236216, + "center": [ + 2594.0955276865106, + 4961.990589669287 + ] + }, + "raw_value": "9200", + "clean_value": "9200", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "557F67", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2593.012885856854, + "min_y": 4968.666892368635, + "max_x": 2608.2432722222043, + "max_y": 4970.160067502493, + "center": [ + 2600.6280790395294, + 4969.413479935563 + ] + }, + "raw_value": "VG-9425-50A-F1A-N", + "clean_value": "VG-9425-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2593.757600128553, + "min_y": 4965.893580457048, + "max_x": 2593.757600128554, + "max_y": 4996.116097598386, + "center": [ + 2593.7576001285533, + 4981.004839027717 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2593.757600128553, + 4965.893580457048 + ], + [ + 2593.757600128554, + 4996.116097598386 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F69", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2614.250629752175, + "min_y": 4849.668478132961, + "max_x": 2629.481016117525, + "max_y": 4851.1616532668195, + "center": [ + 2621.8658229348503, + 4850.41506569989 + ] + }, + "raw_value": "VG-9442-65A-F1A-N", + "clean_value": "VG-9442-65A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F6A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2614.134887276752, + "min_y": 4864.526725360675, + "max_x": 2630.2611787224173, + "max_y": 4866.019900494533, + "center": [ + 2622.198032999585, + 4865.273312927604 + ] + }, + "raw_value": "VG-9441-125A-F1A-N", + "clean_value": "VG-9441-125A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557F6B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2670.5980191116, + "min_y": 4994.01588659594, + "max_x": 2674.330956946244, + "max_y": 4997.748824430585, + "center": [ + 2672.464488028922, + 4995.882355513262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.5980191116, + 4994.01588659594 + ], + [ + 2670.5980191116, + 4997.748824430585 + ], + [ + 2674.330956946244, + 4997.748824430585 + ], + [ + 2674.330956946244, + 4994.01588659594 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2674.330956946244, + "min_y": 4994.01588659594, + "max_x": 2686.590668428354, + "max_y": 4994.01588659594, + "center": [ + 2680.460812687299, + 4994.01588659594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.330956946244, + 4994.01588659594 + ], + [ + 2686.590668428354, + 4994.01588659594 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.110757127287, + "min_y": 4991.55061467803, + "max_x": 2667.110757127287, + "max_y": 4992.522711462083, + "center": [ + 2667.110757127287, + 4992.036663070056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.110757127287, + 4992.522711462083 + ], + [ + 2667.110757127287, + 4991.55061467803 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.364169560358, + "min_y": 4991.55061467803, + "max_x": 2667.857344694216, + "max_y": 4991.55061467803, + "center": [ + 2667.110757127287, + 4991.55061467803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.857344694216, + 4991.55061467803 + ], + [ + 2666.364169560358, + 4991.55061467803 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.364169560358, + "min_y": 4991.301752155719, + "max_x": 2667.857344694216, + "max_y": 4991.301752155719, + "center": [ + 2667.110757127287, + 4991.301752155719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.857344694216, + 4991.301752155719 + ], + [ + 2666.364169560358, + 4991.301752155719 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.68292911329, + "min_y": 4991.55061467803, + "max_x": 2662.68292911329, + "max_y": 4992.522711462083, + "center": [ + 2662.68292911329, + 4992.036663070056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.68292911329, + 4992.522711462083 + ], + [ + 2662.68292911329, + 4991.55061467803 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.936341546361, + "min_y": 4991.55061467803, + "max_x": 2663.429516680219, + "max_y": 4991.55061467803, + "center": [ + 2662.68292911329, + 4991.55061467803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.429516680219, + 4991.55061467803 + ], + [ + 2661.936341546361, + 4991.55061467803 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.936341546361, + "min_y": 4991.301752155719, + "max_x": 2663.429516680219, + "max_y": 4991.301752155719, + "center": [ + 2662.68292911329, + 4991.301752155719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2663.429516680219, + 4991.301752155719 + ], + [ + 2661.936341546361, + 4991.301752155719 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557F73", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2664.1244068595715, + "min_y": 4991.029536328225, + "max_x": 2667.110757127287, + "max_y": 4994.015886595941, + "center": [ + 2665.617581993429, + 4992.522711462083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.617581993429, + 4992.522711462083 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F74", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2659.6965788455745, + "min_y": 4991.029536328225, + "max_x": 2662.68292911329, + "max_y": 4994.015886595941, + "center": [ + 2661.189753979432, + 4992.522711462083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.189753979432, + 4992.522711462083 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.110757127287, + "min_y": 4988.863679800473, + "max_x": 2667.110757127287, + "max_y": 4991.301752155719, + "center": [ + 2667.110757127287, + 4990.0827159780965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.110757127287, + 4991.301752155719 + ], + [ + 2667.110757127287, + 4988.863679800473 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2662.68292911329, + "min_y": 4984.435851786477, + "max_x": 2662.68292911329, + "max_y": 4991.301752155719, + "center": [ + 2662.68292911329, + 4987.868801971098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2662.68292911329, + 4991.301752155719 + ], + [ + 2662.68292911329, + 4984.435851786477 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.087215765377, + "min_y": 4988.863679800473, + "max_x": 2710.973711996816, + "max_y": 4988.863679800473, + "center": [ + 2700.0304638810967, + 4988.863679800473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.087215765377, + 4988.863679800473 + ], + [ + 2710.973711996816, + 4988.863679800473 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F78", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2689.087215765377, + "min_y": 4984.435851786477, + "max_x": 2714.672402463365, + "max_y": 4984.435851786477, + "center": [ + 2701.879809114371, + 4984.435851786477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2689.087215765377, + 4984.435851786477 + ], + [ + 2714.672402463365, + 4984.435851786477 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F79", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2653.565575738685, + "min_y": 4913.006339009013, + "max_x": 2653.565575738685, + "max_y": 4979.175272590882, + "center": [ + 2653.565575738685, + 4946.090805799948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.565575738685, + 4979.175272590882 + ], + [ + 2653.565575738685, + 4913.006339009013 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557F7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4912.09491226494, + "max_x": 2716.897422329508, + "max_y": 4912.09491226494, + "center": [ + 2684.8582052506317, + 4912.09491226494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171755, + 4912.09491226494 + ], + [ + 2716.897422329508, + 4912.09491226494 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557F7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.897422329508, + "min_y": 4907.987493660623, + "max_x": 2716.897422329508, + "max_y": 4912.09491226494, + "center": [ + 2716.897422329508, + 4910.041202962781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.897422329508, + 4912.09491226494 + ], + [ + 2716.897422329508, + 4907.987493660623 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557F7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4883.153079472208, + "max_x": 2747.483119875518, + "max_y": 4883.153079472208, + "center": [ + 2731.3455916345556, + 4883.153079472208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.483119875518, + 4883.153079472208 + ], + [ + 2715.208063393593, + 4883.153079472208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F7D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2730.473971202016, + "min_y": 4889.783001136644, + "max_x": 2731.8533496671125, + "max_y": 4890.932483190891, + "center": [ + 2731.163660434564, + 4890.357742163767 + ] + }, + "raw_value": "MH", + "clean_value": "MH", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F7E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2728.9469449600565, + "min_y": 4887.523733314787, + "max_x": 2734.0557540900436, + "max_y": 4892.632542444773, + "center": [ + 2731.50134952505, + 4890.07813787978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2731.50134952505, + 4890.07813787978 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.483119875518, + "min_y": 4884.940940816655, + "max_x": 2752.948446931148, + "max_y": 4884.940940816655, + "center": [ + 2750.215783403333, + 4884.940940816655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2752.948446931148, + 4884.940940816655 + ], + [ + 2747.483119875518, + 4884.940940816655 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F80", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2729.923886564956, + "min_y": 4885.68352823064, + "max_x": 2732.6826434951486, + "max_y": 4886.833010284887, + "center": [ + 2731.303265030052, + 4886.2582692577635 + ] + }, + "raw_value": "500A", + "clean_value": "500A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2749.067656195878, + "min_y": 4884.160560371199, + "max_x": 2749.067656195878, + "max_y": 4885.721321262112, + "center": [ + 2749.067656195878, + 4884.940940816656 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.067656195878, + 4884.160560371199 + ], + [ + 2749.067656195878, + 4885.721321262112 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F82", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2754.602979469916, + "min_y": 4885.515676312741, + "max_x": 2755.9823579350127, + "max_y": 4886.665158366987, + "center": [ + 2755.2926687024647, + 4886.090417339864 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F83", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2752.9484469310905, + "min_y": 4882.386536251662, + "max_x": 2758.0572560610776, + "max_y": 4887.495345381648, + "center": [ + 2755.502851496084, + 4884.940940816655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.502851496084, + 4884.940940816655 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F84", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2754.03110029567, + "min_y": 4883.252623309948, + "max_x": 2756.7898572258628, + "max_y": 4884.4021053641945, + "center": [ + 2755.4104787607666, + 4883.827364337071 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F85", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2753.915787265026, + "min_y": 4899.581670482925, + "max_x": 2755.295165730123, + "max_y": 4900.7311525371715, + "center": [ + 2754.6054764975743, + 4900.156411510048 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F86", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2752.2978944666784, + "min_y": 4896.452530421857, + "max_x": 2757.4067035966655, + "max_y": 4901.561339551843, + "center": [ + 2754.852299031672, + 4899.00693498685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.852299031672, + 4899.00693498685 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2753.632598476033, + "min_y": 4894.557648142491, + "max_x": 2754.852299031672, + "max_y": 4894.557648142491, + "center": [ + 2754.2424487538524, + 4894.557648142491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.852299031672, + 4894.557648142491 + ], + [ + 2753.632598476033, + 4894.557648142491 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2749.067656195878, + "min_y": 4893.777267697035, + "max_x": 2749.067656195878, + "max_y": 4895.338028587936, + "center": [ + 2749.067656195878, + 4894.557648142485 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.067656195878, + 4893.777267697035 + ], + [ + 2749.067656195878, + 4895.338028587936 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F89", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2753.380547831259, + "min_y": 4897.318617480132, + "max_x": 2756.1393047614515, + "max_y": 4898.468099534379, + "center": [ + 2754.759926296355, + 4897.8933585072555 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F8A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2715.208063393593, + "min_y": 4898.675315329366, + "max_x": 2741.600741392713, + "max_y": 4900.207958068362, + "center": [ + 2728.404402393153, + 4899.441636698864 + ] + }, + "raw_value": "\\pi12.536;\\L\\fArial|b1|i1|c238|p34;\\H1.3333x;T-3210", + "clean_value": "\\pi12.536; \\fArial|b1|i1|c238|p34; .3333x;T-3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.021241874868, + "min_y": 4880.348553596029, + "max_x": 2717.260580113669, + "max_y": 4880.348553596029, + "center": [ + 2716.640910994269, + 4880.348553596029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2717.260580113669, + 4880.348553596029 + ], + [ + 2716.021241874868, + 4880.348553596029 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F8F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2712.595277550514, + "min_y": 4879.517302300452, + "max_x": 2713.527090706041, + "max_y": 4880.075217628375, + "center": [ + 2713.061184128277, + 4879.796259964413 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2712.595277550514, + 4879.517302300452 + ], + [ + 2713.527090706041, + 4880.075217628375 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F90", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2714.440125490292, + "min_y": 4880.621889563668, + "max_x": 2715.371938645814, + "max_y": 4881.179804891595, + "center": [ + 2714.906032068053, + 4880.900847227632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2714.440125490292, + 4880.621889563668 + ], + [ + 2715.371938645814, + 4881.179804891595 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F91", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2712.595277550514, + "min_y": 4879.517302300452, + "max_x": 2712.595277550514, + "max_y": 4881.179804891595, + "center": [ + 2712.595277550514, + 4880.3485535960235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2712.595277550514, + 4881.179804891595 + ], + [ + 2712.595277550514, + 4879.517302300452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F92", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2715.371938645814, + "min_y": 4879.517302300452, + "max_x": 2715.371938645814, + "max_y": 4881.179804891595, + "center": [ + 2715.371938645814, + 4880.3485535960235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.371938645814, + 4881.179804891595 + ], + [ + 2715.371938645814, + 4879.517302300452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F93", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2712.595277550514, + "min_y": 4880.621889563668, + "max_x": 2713.527090706041, + "max_y": 4881.179804891595, + "center": [ + 2713.061184128277, + 4880.900847227632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2712.595277550514, + 4881.179804891595 + ], + [ + 2713.527090706041, + 4880.621889563668 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F94", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2714.440125490292, + "min_y": 4879.517302300452, + "max_x": 2715.371938645814, + "max_y": 4880.075217628379, + "center": [ + 2714.906032068053, + 4879.796259964415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2714.440125490292, + 4880.075217628379 + ], + [ + 2715.371938645814, + 4879.517302300452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.021241874868, + "min_y": 4879.486566407045, + "max_x": 2716.021241874868, + "max_y": 4881.21054078501, + "center": [ + 2716.021241874868, + 4880.348553596028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2716.021241874868, + 4881.21054078501 + ], + [ + 2716.021241874868, + 4879.486566407045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F96", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2711.945974321462, + "min_y": 4879.486566407045, + "max_x": 2711.945974321462, + "max_y": 4881.21054078501, + "center": [ + 2711.945974321462, + 4880.348553596028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2711.945974321462, + 4881.21054078501 + ], + [ + 2711.945974321462, + 4879.486566407045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F97", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2713.4515172407696, + "min_y": 4879.81646273863, + "max_x": 2714.5156989555585, + "max_y": 4880.88064445342, + "center": [ + 2713.983608098164, + 4880.348553596025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2713.983608098164, + 4880.348553596025 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557F98", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2717.260580113669, + "min_y": 4880.348553596029, + "max_x": 2717.260580113669, + "max_y": 4883.153079472208, + "center": [ + 2717.260580113669, + 4881.750816534119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2717.260580113669, + 4880.348553596029 + ], + [ + 2717.260580113669, + 4883.153079472208 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F99", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2711.298864725408, + "min_y": 4882.013000158894, + "max_x": 2713.505870269562, + "max_y": 4883.239114350091, + "center": [ + 2712.402367497485, + 4882.6260572544925 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2713.968725154791, + "min_y": 4894.13638199625, + "max_x": 2715.208063393593, + "max_y": 4894.13638199625, + "center": [ + 2714.588394274192, + 4894.13638199625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.208063393593, + 4894.13638199625 + ], + [ + 2713.968725154791, + 4894.13638199625 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.22917302897, + "min_y": 4894.171923192087, + "max_x": 2709.893457601384, + "max_y": 4894.171923192087, + "center": [ + 2709.061315315177, + 4894.171923192087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.893457601384, + 4894.171923192087 + ], + [ + 2708.22917302897, + 4894.171923192087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2706.880347156059, + "min_y": 4892.723322439615, + "max_x": 2708.22917302897, + "max_y": 4895.620523944755, + "center": [ + 2707.5547600925147, + 4894.171923192185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.880347156059, + 4895.620523944755 + ], + [ + 2706.880347156059, + 4892.723322439615 + ], + [ + 2708.22917302897, + 4892.723322439615 + ], + [ + 2708.22917302897, + 4895.620523944755 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9D", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2707.2460325938428, + "min_y": 4890.61902165509, + "max_x": 2714.351835667835, + "max_y": 4897.724824729084, + "center": [ + 2710.798934130839, + 4894.171923192087 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.798934130839, + 4894.171923192087 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2710.653654330338, + "min_y": 4895.655718386332, + "max_x": 2712.8606598744923, + "max_y": 4896.881832577529, + "center": [ + 2711.7571571024155, + 4896.268775481931 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557F9F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2701.692520332566, + "min_y": 4894.784974387988, + "max_x": 2703.163857362002, + "max_y": 4896.011088579185, + "center": [ + 2702.428188847284, + 4895.398031483586 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FA0", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2699.7666661783264, + "min_y": 4891.447224989525, + "max_x": 2705.2160625836455, + "max_y": 4896.896621394845, + "center": [ + 2702.491364380986, + 4894.171923192185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2702.491364380986, + 4894.171923192185 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FA1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2700.859283781083, + "min_y": 4892.346352574951, + "max_x": 2703.8019578399553, + "max_y": 4893.572466766148, + "center": [ + 2702.330620810519, + 4892.95940967055 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FA2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2705.216062583645, + "min_y": 4894.171923192185, + "max_x": 2706.880347156059, + "max_y": 4894.171923192185, + "center": [ + 2706.0482048698523, + 4894.171923192185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.880347156059, + 4894.171923192185 + ], + [ + 2705.216062583645, + 4894.171923192185 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FA3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.542760830437, + "min_y": 4893.305130700674, + "max_x": 2711.474573985964, + "max_y": 4893.863046028597, + "center": [ + 2711.0086674082004, + 4893.584088364636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.542760830437, + 4893.305130700674 + ], + [ + 2711.474573985964, + 4893.863046028597 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2712.387608770213, + "min_y": 4894.40971796389, + "max_x": 2713.319421925737, + "max_y": 4894.967633291817, + "center": [ + 2712.853515347975, + 4894.688675627854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2712.387608770213, + 4894.40971796389 + ], + [ + 2713.319421925737, + 4894.967633291817 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.542760830437, + "min_y": 4893.305130700674, + "max_x": 2710.542760830437, + "max_y": 4894.967633291817, + "center": [ + 2710.542760830437, + 4894.136381996246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.542760830437, + 4894.967633291817 + ], + [ + 2710.542760830437, + 4893.305130700674 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2713.319421925737, + "min_y": 4893.305130700674, + "max_x": 2713.319421925737, + "max_y": 4894.967633291817, + "center": [ + 2713.319421925737, + 4894.136381996246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2713.319421925737, + 4894.967633291817 + ], + [ + 2713.319421925737, + 4893.305130700674 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.542760830437, + "min_y": 4894.40971796389, + "max_x": 2711.474573985964, + "max_y": 4894.967633291817, + "center": [ + 2711.0086674082004, + 4894.688675627854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.542760830437, + 4894.967633291817 + ], + [ + 2711.474573985964, + 4894.40971796389 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2712.387608770213, + "min_y": 4893.305130700674, + "max_x": 2713.319421925737, + "max_y": 4893.863046028601, + "center": [ + 2712.853515347975, + 4893.584088364638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2712.387608770213, + 4893.863046028601 + ], + [ + 2713.319421925737, + 4893.305130700674 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FA9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2713.968725154791, + "min_y": 4893.274394807267, + "max_x": 2713.968725154791, + "max_y": 4894.998369185232, + "center": [ + 2713.968725154791, + 4894.13638199625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2713.968725154791, + 4894.998369185232 + ], + [ + 2713.968725154791, + 4893.274394807267 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2709.893457601384, + "min_y": 4893.274394807267, + "max_x": 2709.893457601384, + "max_y": 4894.998369185232, + "center": [ + 2709.893457601384, + 4894.13638199625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.893457601384, + 4894.998369185232 + ], + [ + 2709.893457601384, + 4893.274394807267 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FAB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2711.3990005206915, + "min_y": 4893.60429113885, + "max_x": 2712.4631822354804, + "max_y": 4894.66847285364, + "center": [ + 2711.931091378086, + 4894.136381996245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2711.931091378086, + 4894.136381996245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FAC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2711.619985382537, + "min_y": 4886.207343636481, + "max_x": 2715.208063393593, + "max_y": 4886.207343636481, + "center": [ + 2713.4140243880647, + 4886.207343636481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.208063393593, + 4886.207343636481 + ], + [ + 2711.619985382537, + 4886.207343636481 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2697.570931684601, + "min_y": 4885.376092340906, + "max_x": 2698.502744840128, + "max_y": 4885.934007668829, + "center": [ + 2698.0368382623647, + 4885.655050004867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2697.570931684601, + 4885.376092340906 + ], + [ + 2698.502744840128, + 4885.934007668829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.415779624379, + "min_y": 4886.480679604122, + "max_x": 2700.347592779901, + "max_y": 4887.03859493205, + "center": [ + 2699.88168620214, + 4886.7596372680855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2699.415779624379, + 4886.480679604122 + ], + [ + 2700.347592779901, + 4887.03859493205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2697.570931684601, + "min_y": 4885.376092340906, + "max_x": 2697.570931684601, + "max_y": 4887.03859493205, + "center": [ + 2697.570931684601, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2697.570931684601, + 4887.03859493205 + ], + [ + 2697.570931684601, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.347592779901, + "min_y": 4885.376092340906, + "max_x": 2700.347592779901, + "max_y": 4887.03859493205, + "center": [ + 2700.347592779901, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.347592779901, + 4887.03859493205 + ], + [ + 2700.347592779901, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2697.570931684601, + "min_y": 4886.480679604122, + "max_x": 2698.502744840128, + "max_y": 4887.03859493205, + "center": [ + 2698.0368382623647, + 4886.7596372680855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2697.570931684601, + 4887.03859493205 + ], + [ + 2698.502744840128, + 4886.480679604122 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2699.415779624379, + "min_y": 4885.376092340906, + "max_x": 2700.347592779901, + "max_y": 4885.934007668833, + "center": [ + 2699.88168620214, + 4885.65505000487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2699.415779624379, + 4885.934007668833 + ], + [ + 2700.347592779901, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.996896008955, + "min_y": 4885.345356447499, + "max_x": 2700.996896008955, + "max_y": 4887.069330825465, + "center": [ + 2700.996896008955, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2700.996896008955, + 4887.069330825465 + ], + [ + 2700.996896008955, + 4885.345356447499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2696.921628455547, + "min_y": 4885.345356447499, + "max_x": 2696.921628455547, + "max_y": 4887.069330825465, + "center": [ + 2696.921628455547, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2696.921628455547, + 4887.069330825465 + ], + [ + 2696.921628455547, + 4885.345356447499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2698.4271713748567, + "min_y": 4885.675252779083, + "max_x": 2699.4913530896456, + "max_y": 4886.739434493873, + "center": [ + 2698.959262232251, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2698.959262232251, + 4886.207343636478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "557FB6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.22917302897, + "min_y": 4893.248827800218, + "max_x": 2715.208063393593, + "max_y": 4893.248827800218, + "center": [ + 2711.7186182112814, + 4893.248827800218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.208063393593, + 4893.248827800218 + ], + [ + 2708.22917302897, + 4893.248827800218 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FB7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2701.330950418782, + "min_y": 4885.352068031345, + "max_x": 2715.208063393593, + "max_y": 4885.352068031345, + "center": [ + 2708.2695069061874, + 4885.352068031345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2715.208063393593, + 4885.352068031345 + ], + [ + 2701.330950418782, + 4885.352068031345 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FB8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.483119875518, + "min_y": 4893.588792295822, + "max_x": 2754.744058749163, + "max_y": 4893.588792295822, + "center": [ + 2751.11358931234, + 4893.588792295822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.744058749163, + 4893.588792295822 + ], + [ + 2747.483119875518, + 4893.588792295822 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FB9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.483119875518, + "min_y": 4884.055483058824, + "max_x": 2753.106824108769, + "max_y": 4884.055483058824, + "center": [ + 2750.2949719921435, + 4884.055483058824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2753.106824108769, + 4884.055483058824 + ], + [ + 2747.483119875518, + 4884.055483058824 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FBA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2716.021241874868, + "min_y": 4879.581479098948, + "max_x": 2718.217980925043, + "max_y": 4879.581479098948, + "center": [ + 2717.1196113999554, + 4879.581479098948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2718.217980925043, + 4879.581479098948 + ], + [ + 2716.021241874868, + 4879.581479098948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FBB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2718.217980925043, + "min_y": 4879.581479098948, + "max_x": 2718.217980925043, + "max_y": 4883.153079472208, + "center": [ + 2718.217980925043, + 4881.367279285578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2718.217980925043, + 4883.153079472208 + ], + [ + 2718.217980925043, + 4879.581479098948 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FBC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4849.786413948337, + "max_x": 2952.014917269162, + "max_y": 4849.786413948337, + "center": [ + 2920.3873698933094, + 4849.786413948337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4849.786413948337 + ], + [ + 2888.759822517457, + 4849.786413948337 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FBD", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4860.471221364478, + "max_x": 2952.014917269162, + "max_y": 4860.471221364478, + "center": [ + 2920.3873698933094, + 4860.471221364478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4860.471221364478 + ], + [ + 2888.759822517457, + 4860.471221364478 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FBE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4839.101606532199, + "max_x": 2952.014917269162, + "max_y": 4839.101606532199, + "center": [ + 2920.3873698933094, + 4839.101606532199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4839.101606532199 + ], + [ + 2888.759822517457, + 4839.101606532199 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FBF", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4839.101606532199, + "max_x": 2952.014917269162, + "max_y": 4839.101606532199, + "center": [ + 2920.3873698933094, + 4839.101606532199 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4839.101606532199 + ], + [ + 2888.759822517457, + 4839.101606532199 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC0", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4849.786413948337, + "max_x": 2952.014917269162, + "max_y": 4849.786413948337, + "center": [ + 2920.3873698933094, + 4849.786413948337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4849.786413948337 + ], + [ + 2888.759822517457, + 4849.786413948337 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4860.471221364478, + "max_x": 2952.014917269162, + "max_y": 4860.471221364478, + "center": [ + 2920.3873698933094, + 4860.471221364478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4860.471221364478 + ], + [ + 2888.759822517457, + 4860.471221364478 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4828.416799116069, + "max_x": 2952.014917269162, + "max_y": 4828.416799116069, + "center": [ + 2920.3873698933094, + 4828.416799116069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4828.416799116069 + ], + [ + 2888.759822517457, + 4828.416799116069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4828.416799116069, + "max_x": 2952.014917269162, + "max_y": 4828.416799116069, + "center": [ + 2920.3873698933094, + 4828.416799116069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4828.416799116069 + ], + [ + 2888.759822517457, + 4828.416799116069 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4825.215237571885, + "max_x": 2911.151349923432, + "max_y": 4825.215237571885, + "center": [ + 2899.9555862204443, + 4825.215237571885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517457, + 4825.215237571885 + ], + [ + 2911.151349923432, + 4825.215237571885 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 4823.056989114691, + "max_x": 2904.9195674594193, + "max_y": 4824.273970569546, + "center": [ + 2903.4591897135933, + 4823.665479842119 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FC6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2901.998811967768, + "min_y": 4823.056989114691, + "max_x": 2904.9195674594193, + "max_y": 4824.273970569546, + "center": [ + 2903.4591897135933, + 4823.665479842119 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FC7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2904.066460101278, + "min_y": 4825.972070146605, + "max_x": 2905.0680948249696, + "max_y": 4827.641461352758, + "center": [ + 2904.567277463124, + 4826.806765749681 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FC8", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 4826.02563412581, + "max_x": 2895.3187816415284, + "max_y": 4827.242615580665, + "center": [ + 2892.763120586333, + 4826.634124853237 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FC9", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.207459531138, + "min_y": 4826.02563412581, + "max_x": 2895.3187816415284, + "max_y": 4827.242615580665, + "center": [ + 2892.763120586333, + 4826.634124853237 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FCA", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.733237994922, + "min_y": 4823.082992580252, + "max_x": 2894.3841823594867, + "max_y": 4824.299974035107, + "center": [ + 2892.5587101772044, + 4823.691483307679 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FCB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2890.733237994922, + "min_y": 4823.082992580252, + "max_x": 2894.3841823594867, + "max_y": 4824.299974035107, + "center": [ + 2892.5587101772044, + 4823.691483307679 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FCC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2897.646581227977, + "min_y": 4822.020143828796, + "max_x": 2897.646581227977, + "max_y": 4828.416799116069, + "center": [ + 2897.646581227977, + 4825.218471472433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2897.646581227977, + 4828.416799116069 + ], + [ + 2897.646581227977, + 4822.020143828796 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FCD", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2912.599200951331, + "min_y": 4826.387830987372, + "max_x": 2917.7105230617217, + "max_y": 4827.604812442227, + "center": [ + 2915.1548620065264, + 4826.9963217148 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FCE", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2911.151349923432, + "min_y": 4822.020143828796, + "max_x": 2911.151349923432, + "max_y": 4828.416799116069, + "center": [ + 2911.151349923432, + 4825.218471472433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2911.151349923432, + 4828.416799116069 + ], + [ + 2911.151349923432, + 4822.020143828796 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FCF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4836.870847815003, + "max_x": 2894.9490101488555, + "max_y": 4838.087829269858, + "center": [ + 2892.39334909366, + 4837.479338542431 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FD0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4858.240462647284, + "max_x": 2894.9490101488555, + "max_y": 4859.45744410214, + "center": [ + 2892.39334909366, + 4858.848953374712 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FD1", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4868.232065259608, + "max_x": 2898.59995451342, + "max_y": 4869.449046714463, + "center": [ + 2894.2188212759424, + 4868.840555987035 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FD2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 4823.417188866268, + "max_x": 2950.962815110278, + "max_y": 4823.417188866268, + "center": [ + 2948.478104777972, + 4823.417188866268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 4823.417188866268 + ], + [ + 2950.962815110278, + 4823.417188866268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 4823.417188866268, + "max_x": 2948.451158863421, + "max_y": 4827.724744398437, + "center": [ + 2947.2222766545437, + 4825.570966632353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 4823.417188866268 + ], + [ + 2948.451158863421, + 4827.724744398437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.993394445666, + "min_y": 4823.417188866268, + "max_x": 2948.451158863421, + "max_y": 4827.724744398437, + "center": [ + 2947.2222766545437, + 4825.570966632353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.993394445666, + 4823.417188866268 + ], + [ + 2948.451158863421, + 4827.724744398437 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2945.262532921439, + "min_y": 4822.020143828796, + "max_x": 2945.262532921439, + "max_y": 4828.416799116069, + "center": [ + 2945.262532921439, + 4825.218471472433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2945.262532921439, + 4828.416799116069 + ], + [ + 2945.262532921439, + 4822.020143828796 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD6", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2948.451158863421, + "min_y": 4823.417188866268, + "max_x": 2950.962815110278, + "max_y": 4827.724744398437, + "center": [ + 2949.706986986849, + 4825.570966632353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2948.451158863421, + 4827.724744398437 + ], + [ + 2950.962815110278, + 4823.417188866268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4870.263472228899, + "max_x": 2952.014917269162, + "max_y": 4870.263472228899, + "center": [ + 2920.3873698933094, + 4870.263472228899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4870.263472228899 + ], + [ + 2888.759822517457, + 4870.263472228899 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4870.263472228899, + "max_x": 2952.014917269162, + "max_y": 4870.263472228899, + "center": [ + 2920.3873698933094, + 4870.263472228899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269162, + 4870.263472228899 + ], + [ + 2888.759822517457, + 4870.263472228899 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FD9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2947.853089126672, + "min_y": 4824.226066448598, + "max_x": 2949.0172933245562, + "max_y": 4826.166406778405, + "center": [ + 2948.4351912256143, + 4825.196236613501 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "557FDA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4822.020143828796, + "max_x": 2888.759822517457, + "max_y": 4870.263472228899, + "center": [ + 2888.759822517457, + 4846.141808028848 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517457, + 4870.263472228899 + ], + [ + 2888.759822517457, + 4822.020143828796 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FDB", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2907.349862407318, + "min_y": 4864.069075035082, + "max_x": 2915.189031860072, + "max_y": 4866.682131519334, + "center": [ + 2911.2694471336954, + 4865.375603277208 + ] + }, + "raw_value": "PLANT", + "clean_value": "PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557FDC", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2907.693859847959, + "min_y": 4853.793294216515, + "max_x": 2953.161042673931, + "max_y": 4856.406350700767, + "center": [ + 2930.4274512609454, + 4855.099822458641 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "557FE5", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.150284562909, + "min_y": 4856.593222812169, + "max_x": 2902.499944414267, + "max_y": 4856.593222812169, + "center": [ + 2902.325114488588, + 4856.593222812169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.150284562909, + 4856.593222812169 + ], + [ + 2902.499944414267, + 4856.593222812169 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FE6", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.200209900731, + "min_y": 4855.413122881595, + "max_x": 2902.499944414267, + "max_y": 4855.413122881595, + "center": [ + 2902.350077157499, + 4855.413122881595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4855.413122881595 + ], + [ + 2902.200209900731, + 4855.413122881595 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FE7", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.39749667288, + "min_y": 4855.709809998518, + "max_x": 2902.499944414267, + "max_y": 4855.709809998518, + "center": [ + 2902.4487205435735, + 4855.709809998518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4855.709809998518 + ], + [ + 2902.39749667288, + 4855.709809998518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FE8", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 4855.205995744256, + "max_x": 2902.160958028916, + "max_y": 4855.205995744256, + "center": [ + 2901.982217912423, + 4855.205995744256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.160958028916, + 4855.205995744256 + ], + [ + 2901.80347779593, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FE9", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2901.80347779593, + "min_y": 4855.205995744256, + "max_x": 2902.150284562909, + "max_y": 4856.593222812169, + "center": [ + 2901.9768811794193, + 4855.899609278213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.150284562909, + 4856.593222812169 + ], + [ + 2901.80347779593, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FEA", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.39749667288, + "min_y": 4855.709809998518, + "max_x": 2902.499944414267, + "max_y": 4856.119600964074, + "center": [ + 2902.4487205435735, + 4855.914705481297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4856.119600964074 + ], + [ + 2902.39749667288, + 4855.709809998518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FEB", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.160958028916, + "min_y": 4855.205995744256, + "max_x": 2902.200209900731, + "max_y": 4855.413122881595, + "center": [ + 2902.180583964823, + 4855.309559312926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.200209900731, + 4855.413122881595 + ], + [ + 2902.160958028916, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FEC", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 4856.593222812169, + "max_x": 2902.849604265627, + "max_y": 4856.593222812169, + "center": [ + 2902.674774339947, + 4856.593222812169 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.849604265627, + 4856.593222812169 + ], + [ + 2902.499944414267, + 4856.593222812169 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FED", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 4855.413122881595, + "max_x": 2902.799678927808, + "max_y": 4855.413122881595, + "center": [ + 2902.6498116710372, + 4855.413122881595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4855.413122881595 + ], + [ + 2902.799678927808, + 4855.413122881595 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FEE", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 4855.709809998518, + "max_x": 2902.602392155658, + "max_y": 4855.709809998518, + "center": [ + 2902.5511682849624, + 4855.709809998518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4855.709809998518 + ], + [ + 2902.602392155658, + 4855.709809998518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FEF", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.838930799624, + "min_y": 4855.205995744256, + "max_x": 2903.196411032603, + "max_y": 4855.205995744256, + "center": [ + 2903.0176709161133, + 4855.205995744256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.838930799624, + 4855.205995744256 + ], + [ + 2903.196411032603, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FF0", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.849604265627, + "min_y": 4855.205995744256, + "max_x": 2903.196411032603, + "max_y": 4856.593222812169, + "center": [ + 2903.0230076491152, + 4855.899609278213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.849604265627, + 4856.593222812169 + ], + [ + 2903.196411032603, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FF1", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.499944414267, + "min_y": 4855.709809998518, + "max_x": 2902.602392155658, + "max_y": 4856.119600964074, + "center": [ + 2902.5511682849624, + 4855.914705481297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.499944414267, + 4856.119600964074 + ], + [ + 2902.602392155658, + 4855.709809998518 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FF2", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 2902.799678927808, + "min_y": 4855.205995744256, + "max_x": 2902.838930799624, + "max_y": 4855.413122881595, + "center": [ + 2902.819304863716, + 4855.309559312926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.799678927808, + 4855.413122881595 + ], + [ + 2902.838930799624, + 4855.205995744256 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FF3", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 2902.650389686795, + "min_y": 4852.719564697765, + "max_x": 2909.5756424025612, + "max_y": 4853.829346352091, + "center": [ + 2906.1130160446783, + 4853.274455524928 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "557FF4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2534.971102382658, + "min_y": 4822.020143828796, + "max_x": 2952.014917269162, + "max_y": 5119.021570311243, + "center": [ + 2743.49300982591, + 4970.52085707002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2534.971102382658, + 5119.021570311243 + ], + [ + 2952.014917269162, + 5119.021570311243 + ], + [ + 2952.014917269162, + 4822.020143828796 + ], + [ + 2534.971102382658, + 4822.020143828796 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "557FF5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 2889.837688038465, + "min_y": 4847.555655231141, + "max_x": 2898.59995451342, + "max_y": 4848.772636685996, + "center": [ + 2894.2188212759424, + 4848.164145958568 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "557FF6", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2917.289787717411, + "min_y": 4842.65420794613, + "max_x": 2928.15569356433, + "max_y": 4845.241328385872, + "center": [ + 2922.72274064087, + 4843.947768166001 + ] + }, + "raw_value": "주식회사 한울", + "clean_value": "주식회사 한울", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 15 + } + }, + { + "entity_id": "557FF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.738278384197, + "min_y": 4847.048153670775, + "max_x": 2905.357820025422, + "max_y": 4847.048153670775, + "center": [ + 2905.0480492048096, + 4847.048153670775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 4847.048153670775 + ], + [ + 2904.738278384197, + 4847.048153670775 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 4847.048153670775, + "max_x": 2903.056665358006, + "max_y": 4847.048153670775, + "center": [ + 2902.746894537392, + 4847.048153670775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.056665358006, + 4847.048153670775 + ], + [ + 2902.437123716778, + 4847.048153670775 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 4846.163094183305, + "max_x": 2905.357820025422, + "max_y": 4846.163094183305, + "center": [ + 2903.8974718710997, + 4846.163094183305 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 4846.163094183305 + ], + [ + 2902.437123716778, + 4846.163094183305 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2903.056665358006, + "min_y": 4847.048153670775, + "max_x": 2903.056665358006, + "max_y": 4847.579189363266, + "center": [ + 2903.056665358006, + 4847.31367151702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.056665358006, + 4847.579189363266 + ], + [ + 2903.056665358006, + 4847.048153670775 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2902.437123716778, + "min_y": 4846.163094183305, + "max_x": 2902.437123716778, + "max_y": 4847.048153670775, + "center": [ + 2902.437123716778, + 4846.60562392704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2902.437123716778, + 4847.048153670775 + ], + [ + 2902.437123716778, + 4846.163094183305 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.738278384197, + "min_y": 4847.048153670775, + "max_x": 2904.738278384197, + "max_y": 4847.579189363266, + "center": [ + 2904.738278384197, + 4847.31367151702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.738278384197, + 4847.579189363266 + ], + [ + 2904.738278384197, + 4847.048153670775 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "557FFF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2905.357820025422, + "min_y": 4846.163094183305, + "max_x": 2905.357820025422, + "max_y": 4847.048153670775, + "center": [ + 2905.357820025422, + 4846.60562392704 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2905.357820025422, + 4847.048153670775 + ], + [ + 2905.357820025422, + 4846.163094183305 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "558002", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2903.2779302298704, + "min_y": 4843.474961015484, + "max_x": 2904.5170135123235, + "max_y": 4844.714044297937, + "center": [ + 2903.897471871097, + 4844.094502656711 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.897471871097, + 4844.094502656711 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "558004", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2906.1327462583527, + "min_y": 4843.446476852757, + "max_x": 2907.3718295408057, + "max_y": 4844.68556013521, + "center": [ + 2906.752287899579, + 4844.066018493983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.752287899579, + 4844.066018493983 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558005", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2906.08475057986, + "min_y": 4844.521777684484, + "max_x": 2906.584467201812, + "max_y": 4844.662397617205, + "center": [ + 2906.334608890836, + 4844.592087650844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.584467201812, + 4844.662397617205 + ], + [ + 2906.08475057986, + 4844.521777684484 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558006", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.516856906171, + "min_y": 4844.080573423476, + "max_x": 2906.08475057986, + "max_y": 4844.521777684484, + "center": [ + 2905.3008037430154, + 4844.30117555398 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2906.08475057986, + 4844.521777684484 + ], + [ + 2904.516856906171, + 4844.080573423476 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "558007", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.065292568864, + "min_y": 4843.498123533494, + "max_x": 2904.565009190818, + "max_y": 4843.638743466212, + "center": [ + 2904.315150879841, + 4843.568433499853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.065292568864, + 4843.498123533494 + ], + [ + 2904.565009190818, + 4843.638743466212 + ] + ], + "properties": { + "color": 5, + "lineweight": -1 + } + }, + { + "entity_id": "558008", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2904.565009190818, + "min_y": 4843.638743466212, + "max_x": 2906.132902864501, + "max_y": 4844.079947727227, + "center": [ + 2905.3489560276594, + 4843.859345596719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2904.565009190818, + 4843.638743466212 + ], + [ + 2906.132902864501, + 4844.079947727227 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558009", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2889.292180654626, + "min_y": 4871.028495549415, + "max_x": 2891.4696904840516, + "max_y": 4871.935791311676, + "center": [ + 2890.380935569339, + 4871.482143430546 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2892.298318354635, + "min_y": 4870.263472228899, + "max_x": 2892.298318354783, + "max_y": 4893.629282149828, + "center": [ + 2892.298318354709, + 4881.946377189364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354635, + 4870.263472228899 + ], + [ + 2892.298318354783, + 4893.629282149828 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517512, + "min_y": 4873.215127497889, + "max_x": 2952.014917269167, + "max_y": 4873.215127497889, + "center": [ + 2920.3873698933394, + 4873.215127497889 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4873.215127497889 + ], + [ + 2888.759822517512, + 4873.215127497889 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4873.215127497932, + "max_x": 2892.298318354719, + "max_y": 4876.617486606401, + "center": [ + 2890.5971388005037, + 4874.916307052166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 4874.916307052145 + ], + [ + 2890.597138800462, + 4876.617486606401 + ], + [ + 2888.895959246289, + 4874.916307052145 + ], + [ + 2890.597138800462, + 4873.215127497932 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4876.617486606401, + "max_x": 2892.298318354719, + "max_y": 4880.019845714869, + "center": [ + 2890.5971388005037, + 4878.318666160635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 4878.318666160656 + ], + [ + 2890.597138800462, + 4880.019845714869 + ], + [ + 2888.895959246289, + 4878.318666160656 + ], + [ + 2890.597138800462, + 4876.617486606401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4880.019845714869, + "max_x": 2892.298318354719, + "max_y": 4883.422204823339, + "center": [ + 2890.5971388005037, + 4881.721025269104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 4881.721025269125 + ], + [ + 2890.597138800462, + 4883.422204823339 + ], + [ + 2888.895959246289, + 4881.721025269125 + ], + [ + 2890.597138800462, + 4880.019845714869 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55800F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246289, + "min_y": 4883.422204823339, + "max_x": 2892.298318354719, + "max_y": 4886.82456393185, + "center": [ + 2890.5971388005037, + 4885.123384377594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354719, + 4885.123384377594 + ], + [ + 2890.597138800462, + 4886.82456393185 + ], + [ + 2888.895959246289, + 4885.123384377594 + ], + [ + 2890.597138800462, + 4883.422204823339 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558010", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2896.353970865079, + "min_y": 4871.028495549415, + "max_x": 2898.9865335658824, + "max_y": 4872.12539667475, + "center": [ + 2897.670252215481, + 4871.576946112083 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558011", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2941.566144938917, + "min_y": 4870.26347222894, + "max_x": 2941.566144939067, + "max_y": 4893.629282148394, + "center": [ + 2941.566144938992, + 4881.946377188668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2941.566144938917, + 4870.26347222894 + ], + [ + 2941.566144939067, + 4893.629282148394 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558012", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2936.533490737566, + "min_y": 4870.263472228899, + "max_x": 2936.533490737624, + "max_y": 4893.62928214854, + "center": [ + 2936.533490737595, + 4881.94637718872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2936.533490737566, + 4870.263472228899 + ], + [ + 2936.533490737624, + 4893.62928214854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558013", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2937.211313107093, + "min_y": 4871.028495549415, + "max_x": 2939.843875807896, + "max_y": 4872.12539667475, + "center": [ + 2938.527594457494, + 4871.576946112083 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558014", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2930.862892223437, + "min_y": 4870.263472228899, + "max_x": 2930.862892223495, + "max_y": 4893.629282148705, + "center": [ + 2930.8628922234657, + 4881.946377188802 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2930.862892223437, + 4870.263472228899 + ], + [ + 2930.862892223495, + 4893.629282148705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558015", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2931.864799599653, + "min_y": 4871.028495549415, + "max_x": 2934.497362300456, + "max_y": 4872.12539667475, + "center": [ + 2933.181080950055, + 4871.576946112083 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558016", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2925.192293709308, + "min_y": 4870.263472228899, + "max_x": 2925.192293709457, + "max_y": 4893.629282148871, + "center": [ + 2925.1922937093823, + 4881.946377188886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2925.192293709308, + 4870.263472228899 + ], + [ + 2925.192293709457, + 4893.629282148871 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558017", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2926.14719103735, + "min_y": 4871.028495549415, + "max_x": 2928.779753738153, + "max_y": 4872.12539667475, + "center": [ + 2927.4634723877516, + 4871.576946112083 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558018", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2910.003860672814, + "min_y": 4871.028495549415, + "max_x": 2917.243408100023, + "max_y": 4872.12539667475, + "center": [ + 2913.6236343864184, + 4871.576946112083 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558019", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2903.888366944201, + "min_y": 4870.26347222894, + "max_x": 2903.88836694426, + "max_y": 4893.629282149491, + "center": [ + 2903.8883669442303, + 4881.946377189215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2903.88836694426, + 4893.629282149491 + ], + [ + 2903.888366944201, + 4870.26347222894 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2944.262435177169, + "min_y": 4870.97625546318, + "max_x": 2948.211279228374, + "max_y": 4872.073156588514, + "center": [ + 2946.2368572027717, + 4871.524706025847 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246291, + "min_y": 4886.82456393185, + "max_x": 2892.298318354721, + "max_y": 4890.226923040359, + "center": [ + 2890.597138800506, + 4888.525743486105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354721, + 4888.525743486106 + ], + [ + 2890.597138800464, + 4890.226923040359 + ], + [ + 2888.895959246291, + 4888.525743486106 + ], + [ + 2890.597138800464, + 4886.82456393185 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2888.895959246341, + "min_y": 4890.226923040839, + "max_x": 2892.298318354771, + "max_y": 4893.62928214935, + "center": [ + 2890.597138800556, + 4891.928102595095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2892.298318354771, + 4891.928102595095 + ], + [ + 2890.597138800512, + 4893.62928214935 + ], + [ + 2888.895959246341, + 4891.928102595095 + ], + [ + 2890.597138800512, + 4890.226923040839 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517463, + "min_y": 4870.263472229002, + "max_x": 2888.759822517612, + "max_y": 4893.629282149932, + "center": [ + 2888.7598225175375, + 4881.946377189467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2888.759822517463, + 4870.263472229002 + ], + [ + 2888.759822517612, + 4893.629282149932 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517503, + "min_y": 4876.617486606401, + "max_x": 2952.014917269167, + "max_y": 4876.617486606401, + "center": [ + 2920.387369893335, + 4876.617486606401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4876.617486606401 + ], + [ + 2888.759822517503, + 4876.617486606401 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55801F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517495, + "min_y": 4880.019845714911, + "max_x": 2952.014917269167, + "max_y": 4880.019845714911, + "center": [ + 2920.387369893331, + 4880.019845714911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4880.019845714911 + ], + [ + 2888.759822517495, + 4880.019845714911 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558020", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517485, + "min_y": 4883.422204823422, + "max_x": 2952.014917269167, + "max_y": 4883.422204823422, + "center": [ + 2920.387369893326, + 4883.422204823422 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4883.422204823422 + ], + [ + 2888.759822517485, + 4883.422204823422 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558021", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517477, + "min_y": 4886.824563931933, + "max_x": 2952.014917269167, + "max_y": 4886.824563931933, + "center": [ + 2920.387369893322, + 4886.824563931933 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4886.824563931933 + ], + [ + 2888.759822517477, + 4886.824563931933 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558022", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517468, + "min_y": 4890.226923040444, + "max_x": 2952.014917269167, + "max_y": 4890.226923040444, + "center": [ + 2920.3873698933176, + 4890.226923040444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4890.226923040444 + ], + [ + 2888.759822517468, + 4890.226923040444 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558023", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2888.759822517457, + "min_y": 4893.629282148954, + "max_x": 2952.014917269167, + "max_y": 4893.629282148954, + "center": [ + 2920.387369893312, + 4893.629282148954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2952.014917269167, + 4893.629282148954 + ], + [ + 2888.759822517457, + 4893.629282148954 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558024", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2656.675612159208, + "min_y": 5068.359884358291, + "max_x": 2656.675612159208, + "max_y": 5069.870658484847, + "center": [ + 2656.675612159208, + 5069.11527142157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.675612159208, + 5068.359884358291 + ], + [ + 2656.675612159208, + 5069.870658484847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558025", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2654.253251725658, + "min_y": 5068.359884358291, + "max_x": 2654.253251725658, + "max_y": 5069.870658484847, + "center": [ + 2654.253251725658, + 5069.11527142157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.253251725658, + 5068.359884358291 + ], + [ + 2654.253251725658, + 5069.870658484847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558026", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2655.850029958999, + "min_y": 5069.355760614921, + "max_x": 2656.675612159208, + "max_y": 5069.870658484847, + "center": [ + 2656.2628210591038, + 5069.613209549883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.675612159208, + 5069.870658484847 + ], + [ + 2655.850029958999, + 5069.355760614921 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558027", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2655.850029958999, + "min_y": 5068.359884358291, + "max_x": 2656.675612159208, + "max_y": 5068.874782228217, + "center": [ + 2656.2628210591038, + 5068.617333293254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2656.675612159208, + 5068.359884358291 + ], + [ + 2655.850029958999, + 5068.874782228217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558028", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2655.0099862553666, + "min_y": 5068.6608257345, + "max_x": 2655.9188776295055, + "max_y": 5069.569717108639, + "center": [ + 2655.464431942436, + 5069.11527142157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2655.464431942436, + 5069.11527142157 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558029", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2654.253251725658, + "min_y": 5069.355760614921, + "max_x": 2655.078833925873, + "max_y": 5069.870658484847, + "center": [ + 2654.6660428257655, + 5069.613209549883 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2655.078833925873, + 5069.355760614921 + ], + [ + 2654.253251725658, + 5069.870658484847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2654.253251725658, + "min_y": 5068.359884358291, + "max_x": 2655.078833925873, + "max_y": 5068.874782228217, + "center": [ + 2654.6660428257655, + 5068.617333293254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2655.078833925873, + 5068.874782228217 + ], + [ + 2654.253251725658, + 5068.359884358291 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2653.756024406084, + "min_y": 5068.359884358291, + "max_x": 2653.756024406084, + "max_y": 5069.870658484847, + "center": [ + 2653.756024406084, + 5069.11527142157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.756024406084, + 5068.359884358291 + ], + [ + 2653.756024406084, + 5069.870658484847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2657.172839478784, + "min_y": 5068.359884358291, + "max_x": 2657.172839478784, + "max_y": 5069.870658484847, + "center": [ + 2657.172839478784, + 5069.11527142157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2657.172839478784, + 5068.359884358291 + ], + [ + 2657.172839478784, + 5069.870658484847 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2637.823507157202, + "min_y": 4982.612410451176, + "max_x": 2637.823507157202, + "max_y": 4984.123184577732, + "center": [ + 2637.823507157202, + 4983.367797514455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.823507157202, + 4982.612410451176 + ], + [ + 2637.823507157202, + 4984.123184577732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2635.401146723651, + "min_y": 4982.612410451176, + "max_x": 2635.401146723651, + "max_y": 4984.123184577732, + "center": [ + 2635.401146723651, + 4983.367797514455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2635.401146723651, + 4982.612410451176 + ], + [ + 2635.401146723651, + 4984.123184577732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55802F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2636.997924956992, + "min_y": 4983.608286707807, + "max_x": 2637.823507157202, + "max_y": 4984.123184577732, + "center": [ + 2637.410716057097, + 4983.865735642769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.823507157202, + 4984.123184577732 + ], + [ + 2636.997924956992, + 4983.608286707807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558030", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2636.997924956992, + "min_y": 4982.612410451176, + "max_x": 2637.823507157202, + "max_y": 4983.127308321104, + "center": [ + 2637.410716057097, + 4982.86985938614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2637.823507157202, + 4982.612410451176 + ], + [ + 2636.997924956992, + 4983.127308321104 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558031", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2636.1578812533608, + "min_y": 4982.9133518273875, + "max_x": 2637.0667726274996, + "max_y": 4983.822243201527, + "center": [ + 2636.61232694043, + 4983.367797514457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.61232694043, + 4983.367797514457 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558032", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2635.401146723651, + "min_y": 4983.608286707807, + "max_x": 2636.226728923866, + "max_y": 4984.123184577732, + "center": [ + 2635.8139378237584, + 4983.865735642769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.226728923866, + 4983.608286707807 + ], + [ + 2635.401146723651, + 4984.123184577732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558033", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2635.401146723651, + "min_y": 4982.612410451176, + "max_x": 2636.226728923866, + "max_y": 4983.127308321104, + "center": [ + 2635.8139378237584, + 4982.86985938614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2636.226728923866, + 4983.127308321104 + ], + [ + 2635.401146723651, + 4982.612410451176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558034", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2634.903919404078, + "min_y": 4982.612410451176, + "max_x": 2634.903919404078, + "max_y": 4984.123184577732, + "center": [ + 2634.903919404078, + 4983.367797514455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2634.903919404078, + 4982.612410451176 + ], + [ + 2634.903919404078, + 4984.123184577732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558035", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2638.320734476776, + "min_y": 4982.612410451176, + "max_x": 2638.320734476776, + "max_y": 4984.123184577732, + "center": [ + 2638.320734476776, + 4983.367797514455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2638.320734476776, + 4982.612410451176 + ], + [ + 2638.320734476776, + 4984.123184577732 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558036", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4974.10791357575, + "max_x": 2653.574375235033, + "max_y": 4974.10791357575, + "center": [ + 2652.8189881717544, + 4974.10791357575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.063601108476, + 4974.10791357575 + ], + [ + 2653.574375235033, + 4974.10791357575 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558037", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4976.5302740093, + "max_x": 2653.574375235033, + "max_y": 4976.5302740093, + "center": [ + 2652.8189881717544, + 4976.5302740093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.063601108476, + 4976.5302740093 + ], + [ + 2653.574375235033, + 4976.5302740093 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558038", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2653.059477365106, + "min_y": 4974.10791357575, + "max_x": 2653.574375235033, + "max_y": 4974.933495775959, + "center": [ + 2653.3169263000696, + 4974.520704675855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.574375235033, + 4974.10791357575 + ], + [ + 2653.059477365106, + 4974.933495775959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558039", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4974.10791357575, + "max_x": 2652.578498978402, + "max_y": 4974.933495775959, + "center": [ + 2652.321050043439, + 4974.520704675855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.063601108476, + 4974.10791357575 + ], + [ + 2652.578498978402, + 4974.933495775959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.3645424846854, + "min_y": 4974.864648105453, + "max_x": 2653.2734338588243, + "max_y": 4975.773539479593, + "center": [ + 2652.818988171755, + 4975.319093792523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171755, + 4975.319093792523 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2653.059477365106, + "min_y": 4975.704691809085, + "max_x": 2653.574375235033, + "max_y": 4976.5302740093, + "center": [ + 2653.3169263000696, + 4976.117482909192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2653.059477365106, + 4975.704691809085 + ], + [ + 2653.574375235033, + 4976.5302740093 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4975.704691809085, + "max_x": 2652.578498978402, + "max_y": 4976.5302740093, + "center": [ + 2652.321050043439, + 4976.117482909192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.578498978402, + 4975.704691809085 + ], + [ + 2652.063601108476, + 4976.5302740093 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4977.027501328874, + "max_x": 2653.574375235033, + "max_y": 4977.027501328874, + "center": [ + 2652.8189881717544, + 4977.027501328874 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.063601108476, + 4977.027501328874 + ], + [ + 2653.574375235033, + 4977.027501328874 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2652.063601108476, + "min_y": 4973.610686256176, + "max_x": 2653.574375235033, + "max_y": 4973.610686256176, + "center": [ + 2652.8189881717544, + 4973.610686256176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.063601108476, + 4973.610686256176 + ], + [ + 2653.574375235033, + 4973.610686256176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55803F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2550.280114899739, + "min_y": 4907.322901372832, + "max_x": 2570.811272990285, + "max_y": 4909.1229013728325, + "center": [ + 2560.5456939450123, + 4908.222901372832 + ] + }, + "raw_value": "\\pi5.6133;{\\W0.9;\\LDP-3210\\P\\pi0.24444;DIAPHRAGM PUMP}", + "clean_value": "\\pi5.6133; .9; DP-3210 \\pi0.24444;DIAPHRAGM PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558043", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2550.145289935992, + "min_y": 4899.514522061343, + "max_x": 2573.9122471564724, + "max_y": 4901.314522061343, + "center": [ + 2562.028768546232, + 4900.414522061343 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 100 L/min\\PSIZE : 100A/100A\\PMATERIAL : STS304\\PPRESSURE : 0.3MPa\\PSPM : 135", + "clean_value": ".9; CAPA : 100 L/min SIZE : 100A/100A MATERIAL : STS304 PRESSURE : 0.3MPa SPM : 135", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558047", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2753.135371156458, + "min_y": 4893.802261079212, + "max_x": 2753.135371156458, + "max_y": 4895.313035205769, + "center": [ + 2753.135371156458, + 4894.5576481424905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2753.135371156458, + 4893.802261079212 + ], + [ + 2753.135371156458, + 4895.313035205769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558048", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2750.713010722908, + "min_y": 4893.802261079212, + "max_x": 2750.713010722908, + "max_y": 4895.313035205769, + "center": [ + 2750.713010722908, + 4894.5576481424905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2750.713010722908, + 4893.802261079212 + ], + [ + 2750.713010722908, + 4895.313035205769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558049", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2752.309788956248, + "min_y": 4894.798137335842, + "max_x": 2753.135371156458, + "max_y": 4895.313035205769, + "center": [ + 2752.722580056353, + 4895.055586270805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2753.135371156458, + 4895.313035205769 + ], + [ + 2752.309788956248, + 4894.798137335842 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2752.309788956248, + "min_y": 4893.802261079212, + "max_x": 2753.135371156458, + "max_y": 4894.317158949139, + "center": [ + 2752.722580056353, + 4894.059710014176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2753.135371156458, + 4893.802261079212 + ], + [ + 2752.309788956248, + 4894.317158949139 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2751.4697452526157, + "min_y": 4894.103202455422, + "max_x": 2752.3786366267545, + "max_y": 4895.012093829562, + "center": [ + 2751.924190939685, + 4894.557648142492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2751.924190939685, + 4894.557648142492 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2750.713010722908, + "min_y": 4894.798137335842, + "max_x": 2751.538592923122, + "max_y": 4895.313035205769, + "center": [ + 2751.125801823015, + 4895.055586270805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2751.538592923122, + 4894.798137335842 + ], + [ + 2750.713010722908, + 4895.313035205769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2750.713010722908, + "min_y": 4893.802261079212, + "max_x": 2751.538592923122, + "max_y": 4894.317158949139, + "center": [ + 2751.125801823015, + 4894.059710014176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2751.538592923122, + 4894.317158949139 + ], + [ + 2750.713010722908, + 4893.802261079212 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2750.215783403333, + "min_y": 4893.802261079212, + "max_x": 2750.215783403333, + "max_y": 4895.313035205769, + "center": [ + 2750.215783403333, + 4894.5576481424905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2750.215783403333, + 4893.802261079212 + ], + [ + 2750.215783403333, + 4895.313035205769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55804F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2753.632598476033, + "min_y": 4893.802261079212, + "max_x": 2753.632598476033, + "max_y": 4895.313035205769, + "center": [ + 2753.632598476033, + 4894.5576481424905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2753.632598476033, + 4893.802261079212 + ], + [ + 2753.632598476033, + 4895.313035205769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558050", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4889.410470925372, + "max_x": 2755.607686094949, + "max_y": 4889.410470925372, + "center": [ + 2754.852299031672, + 4889.410470925372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.096911968395, + 4889.410470925372 + ], + [ + 2755.607686094949, + 4889.410470925372 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558051", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4891.832831358919, + "max_x": 2755.607686094949, + "max_y": 4891.832831358919, + "center": [ + 2754.852299031672, + 4891.832831358919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.096911968395, + 4891.832831358919 + ], + [ + 2755.607686094949, + 4891.832831358919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558052", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2755.092788225023, + "min_y": 4889.410470925372, + "max_x": 2755.607686094949, + "max_y": 4890.23605312558, + "center": [ + 2755.350237159986, + 4889.823262025476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.607686094949, + 4889.410470925372 + ], + [ + 2755.092788225023, + 4890.23605312558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558053", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4889.410470925372, + "max_x": 2754.611809838321, + "max_y": 4890.23605312558, + "center": [ + 2754.3543609033577, + 4889.823262025476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.096911968395, + 4889.410470925372 + ], + [ + 2754.611809838321, + 4890.23605312558 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558054", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.3978533446048, + "min_y": 4890.167205455073, + "max_x": 2755.3067447187436, + "max_y": 4891.0760968292125, + "center": [ + 2754.852299031674, + 4890.621651142143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.852299031674, + 4890.621651142143 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558055", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2755.092788225023, + "min_y": 4891.007249158707, + "max_x": 2755.607686094949, + "max_y": 4891.832831358919, + "center": [ + 2755.350237159986, + 4891.420040258813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.092788225023, + 4891.007249158707 + ], + [ + 2755.607686094949, + 4891.832831358919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558056", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4891.007249158707, + "max_x": 2754.611809838321, + "max_y": 4891.832831358919, + "center": [ + 2754.3543609033577, + 4891.420040258813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.611809838321, + 4891.007249158707 + ], + [ + 2754.096911968395, + 4891.832831358919 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558057", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4892.330058678496, + "max_x": 2755.607686094949, + "max_y": 4892.330058678496, + "center": [ + 2754.852299031672, + 4892.330058678496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.096911968395, + 4892.330058678496 + ], + [ + 2755.607686094949, + 4892.330058678496 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558058", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2754.096911968395, + "min_y": 4888.913243605795, + "max_x": 2755.607686094949, + "max_y": 4888.913243605795, + "center": [ + 2754.852299031672, + 4888.913243605795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.096911968395, + 4888.913243605795 + ], + [ + 2755.607686094949, + 4888.913243605795 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558059", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.852299031672, + "min_y": 4888.162861301829, + "max_x": 2754.852299031672, + "max_y": 4888.913243605795, + "center": [ + 2754.852299031672, + 4888.538052453812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.852299031672, + 4888.913243605795 + ], + [ + 2754.852299031672, + 4888.162861301829 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55805A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2755.415479961387, + "min_y": 4887.799506023935, + "max_x": 2755.415479961387, + "max_y": 4888.49922458279, + "center": [ + 2755.415479961387, + 4888.149365303362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.415479961387, + 4888.49922458279 + ], + [ + 2755.415479961387, + 4887.799506023935 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55805B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.289118101956, + "min_y": 4887.799506023935, + "max_x": 2755.415479961387, + "max_y": 4887.799506023935, + "center": [ + 2754.8522990316715, + 4887.799506023935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.415479961387, + 4887.799506023935 + ], + [ + 2754.289118101956, + 4887.799506023935 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55805C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.289118101956, + "min_y": 4887.799506023935, + "max_x": 2754.289118101956, + "max_y": 4888.49922458279, + "center": [ + 2754.289118101956, + 4888.149365303362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.289118101956, + 4888.49922458279 + ], + [ + 2754.289118101956, + 4887.799506023935 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55805D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2754.852299031672, + "min_y": 4892.330058678496, + "max_x": 2754.852299031672, + "max_y": 4896.452530421857, + "center": [ + 2754.852299031672, + 4894.391294550176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.852299031672, + 4896.452530421857 + ], + [ + 2754.852299031672, + 4892.330058678496 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55805E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.483119875518, + "min_y": 4894.557648142491, + "max_x": 2750.215783403333, + "max_y": 4894.557648142491, + "center": [ + 2748.8494516394253, + 4894.557648142491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2750.215783403333, + 4894.557648142491 + ], + [ + 2747.483119875518, + 4894.557648142491 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55805F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.194021058183, + "min_y": 4885.376092340906, + "max_x": 2709.12583421371, + "max_y": 4885.934007668829, + "center": [ + 2708.6599276359466, + 4885.655050004867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.194021058183, + 4885.376092340906 + ], + [ + 2709.12583421371, + 4885.934007668829 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558060", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.038868997961, + "min_y": 4886.480679604122, + "max_x": 2710.970682153484, + "max_y": 4887.03859493205, + "center": [ + 2710.5047755757223, + 4886.7596372680855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.038868997961, + 4886.480679604122 + ], + [ + 2710.970682153484, + 4887.03859493205 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558061", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.194021058183, + "min_y": 4885.376092340906, + "max_x": 2708.194021058183, + "max_y": 4887.03859493205, + "center": [ + 2708.194021058183, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.194021058183, + 4887.03859493205 + ], + [ + 2708.194021058183, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558062", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.970682153484, + "min_y": 4885.376092340906, + "max_x": 2710.970682153484, + "max_y": 4887.03859493205, + "center": [ + 2710.970682153484, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.970682153484, + 4887.03859493205 + ], + [ + 2710.970682153484, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558063", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2708.194021058183, + "min_y": 4886.480679604122, + "max_x": 2709.12583421371, + "max_y": 4887.03859493205, + "center": [ + 2708.6599276359466, + 4886.7596372680855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2708.194021058183, + 4887.03859493205 + ], + [ + 2709.12583421371, + 4886.480679604122 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558064", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.038868997961, + "min_y": 4885.376092340906, + "max_x": 2710.970682153484, + "max_y": 4885.934007668833, + "center": [ + 2710.5047755757223, + 4885.65505000487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.038868997961, + 4885.934007668833 + ], + [ + 2710.970682153484, + 4885.376092340906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558065", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2711.619985382537, + "min_y": 4885.345356447499, + "max_x": 2711.619985382537, + "max_y": 4887.069330825465, + "center": [ + 2711.619985382537, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2711.619985382537, + 4887.069330825465 + ], + [ + 2711.619985382537, + 4885.345356447499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558066", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2707.54471782913, + "min_y": 4885.345356447499, + "max_x": 2707.54471782913, + "max_y": 4887.069330825465, + "center": [ + 2707.54471782913, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.54471782913, + 4887.069330825465 + ], + [ + 2707.54471782913, + 4885.345356447499 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558067", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2709.0502607484386, + "min_y": 4885.675252779083, + "max_x": 2710.1144424632275, + "max_y": 4886.739434493873, + "center": [ + 2709.582351605833, + 4886.207343636478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.582351605833, + 4886.207343636478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558068", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4882.956598128154, + "max_x": 2706.62368099287, + "max_y": 4883.888411283681, + "center": [ + 2706.344723328909, + 4883.422504705917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.065765664948, + 4883.888411283681 + ], + [ + 2706.62368099287, + 4882.956598128154 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558069", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2707.170352928163, + "min_y": 4881.11175018838, + "max_x": 2707.728268256091, + "max_y": 4882.043563343903, + "center": [ + 2707.449310592127, + 4881.577656766141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.170352928163, + 4882.043563343903 + ], + [ + 2707.728268256091, + 4881.11175018838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4883.888411283681, + "max_x": 2707.728268256091, + "max_y": 4883.888411283681, + "center": [ + 2706.897016960519, + 4883.888411283681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.728268256091, + 4883.888411283681 + ], + [ + 2706.065765664948, + 4883.888411283681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4881.11175018838, + "max_x": 2707.728268256091, + "max_y": 4881.11175018838, + "center": [ + 2706.897016960519, + 4881.11175018838 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.728268256091, + 4881.11175018838 + ], + [ + 2706.065765664948, + 4881.11175018838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2707.170352928163, + "min_y": 4882.956598128154, + "max_x": 2707.728268256091, + "max_y": 4883.888411283681, + "center": [ + 2707.449310592127, + 4883.422504705917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.728268256091, + 4883.888411283681 + ], + [ + 2707.170352928163, + 4882.956598128154 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.065765664948, + "min_y": 4881.11175018838, + "max_x": 2706.623680992875, + "max_y": 4882.043563343903, + "center": [ + 2706.3447233289116, + 4881.577656766141 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.623680992875, + 4882.043563343903 + ], + [ + 2706.065765664948, + 4881.11175018838 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806E", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2706.3649261031246, + "min_y": 4881.967989878635, + "max_x": 2707.4291078179135, + "max_y": 4883.032171593425, + "center": [ + 2706.897016960519, + 4882.50008073603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.897016960519, + 4882.50008073603 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55806F", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2706.572365345994, + "min_y": 4880.462446959327, + "max_x": 2707.2216685750477, + "max_y": 4881.11175018838, + "center": [ + 2706.897016960521, + 4880.787098573854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.897016960521, + 4880.787098573854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558070", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2706.572365345994, + "min_y": 4883.88841128368, + "max_x": 2707.2216685750477, + "max_y": 4884.537714512733, + "center": [ + 2706.897016960521, + 4884.213062898207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.897016960521, + 4884.213062898207 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558071", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.897016960521, + "min_y": 4879.712064655361, + "max_x": 2706.897016960521, + "max_y": 4880.462446959327, + "center": [ + 2706.897016960521, + 4880.087255807344 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.897016960521, + 4880.462446959327 + ], + [ + 2706.897016960521, + 4879.712064655361 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558072", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2707.460197890235, + "min_y": 4879.348709377467, + "max_x": 2707.460197890235, + "max_y": 4880.048427936322, + "center": [ + 2707.460197890235, + 4879.698568656894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.460197890235, + 4880.048427936322 + ], + [ + 2707.460197890235, + 4879.348709377467 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558073", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.333836030804, + "min_y": 4879.348709377467, + "max_x": 2707.460197890235, + "max_y": 4879.348709377467, + "center": [ + 2706.8970169605195, + 4879.348709377467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.460197890235, + 4879.348709377467 + ], + [ + 2706.333836030804, + 4879.348709377467 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558074", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.333836030804, + "min_y": 4879.348709377467, + "max_x": 2706.333836030804, + "max_y": 4880.048427936322, + "center": [ + 2706.333836030804, + 4879.698568656894 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.333836030804, + 4880.048427936322 + ], + [ + 2706.333836030804, + 4879.348709377467 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558075", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2706.897016960521, + "min_y": 4884.537714512735, + "max_x": 2706.897016960521, + "max_y": 4886.207343636481, + "center": [ + 2706.897016960521, + 4885.372529074608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2706.897016960521, + 4886.207343636481 + ], + [ + 2706.897016960521, + 4884.537714512735 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558076", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2700.996896008955, + "min_y": 4886.207343636481, + "max_x": 2707.54471782913, + "max_y": 4886.207343636481, + "center": [ + 2704.2708069190426, + 4886.207343636481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2707.54471782913, + 4886.207343636481 + ], + [ + 2700.996896008955, + 4886.207343636481 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558077", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2695.412015320471, + "min_y": 4885.777160587333, + "max_x": 2696.2709334859032, + "max_y": 4886.636078752765, + "center": [ + 2695.841474403187, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2695.841474403187, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558078", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2694.5530971550497, + "min_y": 4885.777160587338, + "max_x": 2695.412015320472, + "max_y": 4886.63607875276, + "center": [ + 2694.982556237761, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.982556237761, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558079", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2693.6941789896177, + "min_y": 4885.777160587333, + "max_x": 2694.55309715505, + "max_y": 4886.636078752765, + "center": [ + 2694.123638072334, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.123638072334, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807A", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2692.8352608241935, + "min_y": 4885.777160587338, + "max_x": 2693.694178989617, + "max_y": 4886.63607875276, + "center": [ + 2693.264719906905, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2693.264719906905, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807B", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2691.976342658772, + "min_y": 4885.777160587338, + "max_x": 2692.8352608241944, + "max_y": 4886.63607875276, + "center": [ + 2692.405801741483, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2692.405801741483, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807C", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2695.412015320481, + "min_y": 4885.777160587338, + "max_x": 2696.2709334859032, + "max_y": 4886.63607875276, + "center": [ + 2695.841474403192, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2695.841474403192, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807D", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2696.270932875685, + "min_y": 4885.073571658123, + "max_x": 2696.270932875685, + "max_y": 4887.341115614841, + "center": [ + 2696.270932875685, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2696.270932875685, + 4887.341115614841 + ], + [ + 2696.270932875685, + 4885.073571658123 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807E", + "entity_type": "LINE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2696.921628455547, + "min_y": 4885.073571658123, + "max_x": 2696.921628455547, + "max_y": 4887.341115614841, + "center": [ + 2696.921628455547, + 4886.207343636483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2696.921628455547, + 4887.341115614841 + ], + [ + 2696.921628455547, + 4885.073571658123 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55807F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.225960354806, + "min_y": 4886.206619670049, + "max_x": 2691.976342658771, + "max_y": 4886.206619670049, + "center": [ + 2691.6011515067885, + 4886.206619670049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.976342658771, + 4886.206619670049 + ], + [ + 2691.225960354806, + 4886.206619670049 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558080", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2690.526241795952, + "min_y": 4886.769800599765, + "max_x": 2691.225960354806, + "max_y": 4886.769800599765, + "center": [ + 2690.8761010753788, + 4886.769800599765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2690.526241795952, + 4886.769800599765 + ], + [ + 2691.225960354806, + 4886.769800599765 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558081", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2691.225960354806, + "min_y": 4885.643438740334, + "max_x": 2691.225960354806, + "max_y": 4886.769800599765, + "center": [ + 2691.225960354806, + 4886.20661967005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2691.225960354806, + 4886.769800599765 + ], + [ + 2691.225960354806, + 4885.643438740334 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558082", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2690.526241795952, + "min_y": 4885.643438740334, + "max_x": 2691.225960354806, + "max_y": 4885.643438740334, + "center": [ + 2690.8761010753788, + 4885.643438740334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2690.526241795952, + 4885.643438740334 + ], + [ + 2691.225960354806, + 4885.643438740334 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558083", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2691.490711101274, + "min_y": 4887.54666706643, + "max_x": 2692.834568721746, + "max_y": 4888.666548416823, + "center": [ + 2692.1626399115103, + 4888.106607741627 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558084", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2674.424014639039, + "min_y": 4885.160408230269, + "max_x": 2679.079276751029, + "max_y": 4887.809315400083, + "center": [ + 2676.751645695034, + 4886.4848618151755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.079276751029, + 4887.809315400083 + ], + [ + 2677.390168428979, + 4887.809315400083 + ], + [ + 2676.113122961075, + 4887.809315400083 + ], + [ + 2674.424014639039, + 4887.809315400083 + ], + [ + 2674.424014639039, + 4885.160408230269 + ], + [ + 2676.113122961075, + 4885.160408230269 + ], + [ + 2677.390168428979, + 4885.160408230269 + ], + [ + 2679.079276751029, + 4885.160408230269 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558085", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.307359820679, + "min_y": 4884.210645868225, + "max_x": 2676.751645695029, + "max_y": 4884.210645868225, + "center": [ + 2675.029502757854, + 4884.210645868225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.751645695029, + 4884.210645868225 + ], + [ + 2673.307359820679, + 4884.210645868225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558086", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.307359820679, + "min_y": 4881.573001330948, + "max_x": 2673.307359820679, + "max_y": 4884.210645868225, + "center": [ + 2673.307359820679, + 4882.891823599586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.307359820679, + 4884.210645868225 + ], + [ + 2673.307359820679, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558087", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.556964533452, + "min_y": 4881.573001330948, + "max_x": 2673.556964533452, + "max_y": 4883.961041155465, + "center": [ + 2673.556964533452, + 4882.767021243206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.556964533452, + 4883.961041155465 + ], + [ + 2673.556964533452, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558088", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.307359820679, + "min_y": 4883.961041155465, + "max_x": 2676.751645695029, + "max_y": 4883.961041155465, + "center": [ + 2675.029502757854, + 4883.961041155465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.751645695029, + 4883.961041155465 + ], + [ + 2673.307359820679, + 4883.961041155465 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558089", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.584050198788, + "min_y": 4881.573001330948, + "max_x": 2674.280274155336, + "max_y": 4881.573001330948, + "center": [ + 2673.4321621770623, + 4881.573001330948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.280274155336, + 4881.573001330948 + ], + [ + 2672.584050198788, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.584050198788, + "min_y": 4881.416952989886, + "max_x": 2674.280274155336, + "max_y": 4881.416952989886, + "center": [ + 2673.4321621770623, + 4881.416952989886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.584050198788, + 4881.416952989886 + ], + [ + 2674.280274155336, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2674.280274155336, + "min_y": 4881.416952989886, + "max_x": 2674.280274155336, + "max_y": 4881.573001330948, + "center": [ + 2674.280274155336, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.280274155336, + 4881.573001330948 + ], + [ + 2674.280274155336, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.751645695029, + "min_y": 4884.210645868225, + "max_x": 2680.195931569389, + "max_y": 4884.210645868225, + "center": [ + 2678.473788632209, + 4884.210645868225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.751645695029, + 4884.210645868225 + ], + [ + 2680.195931569389, + 4884.210645868225 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.195931569389, + "min_y": 4881.573001330948, + "max_x": 2680.195931569389, + "max_y": 4884.210645868225, + "center": [ + 2680.195931569389, + 4882.891823599586 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.195931569389, + 4884.210645868225 + ], + [ + 2680.195931569389, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.946326856616, + "min_y": 4881.573001330948, + "max_x": 2679.946326856616, + "max_y": 4883.961041155465, + "center": [ + 2679.946326856616, + 4882.767021243206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.946326856616, + 4883.961041155465 + ], + [ + 2679.946326856616, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55808F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.751645695029, + "min_y": 4883.961041155465, + "max_x": 2680.195931569389, + "max_y": 4883.961041155465, + "center": [ + 2678.473788632209, + 4883.961041155465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.751645695029, + 4883.961041155465 + ], + [ + 2680.195931569389, + 4883.961041155465 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558090", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.223017234724, + "min_y": 4881.573001330948, + "max_x": 2680.919241191294, + "max_y": 4881.573001330948, + "center": [ + 2680.071129213009, + 4881.573001330948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.223017234724, + 4881.573001330948 + ], + [ + 2680.919241191294, + 4881.573001330948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558091", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.919241191294, + "min_y": 4881.416952989886, + "max_x": 2680.919241191294, + "max_y": 4881.573001330948, + "center": [ + 2680.919241191294, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.919241191294, + 4881.573001330948 + ], + [ + 2680.919241191294, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558092", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.223017234724, + "min_y": 4881.416952989886, + "max_x": 2680.919241191294, + "max_y": 4881.416952989886, + "center": [ + 2680.071129213009, + 4881.416952989886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.919241191294, + 4881.416952989886 + ], + [ + 2679.223017234724, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558093", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.223017234724, + "min_y": 4881.416952989886, + "max_x": 2679.223017234724, + "max_y": 4881.573001330948, + "center": [ + 2679.223017234724, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.223017234724, + 4881.573001330948 + ], + [ + 2679.223017234724, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558094", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.919241191294, + "min_y": 4881.416952989886, + "max_x": 2680.919241191294, + "max_y": 4881.573001330948, + "center": [ + 2680.919241191294, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.919241191294, + 4881.573001330948 + ], + [ + 2680.919241191294, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558095", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.584050198788, + "min_y": 4881.416952989886, + "max_x": 2672.584050198788, + "max_y": 4881.573001330948, + "center": [ + 2672.584050198788, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.584050198788, + 4881.573001330948 + ], + [ + 2672.584050198788, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558096", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.584050198788, + "min_y": 4881.416952989886, + "max_x": 2672.584050198788, + "max_y": 4881.573001330948, + "center": [ + 2672.584050198788, + 4881.494977160417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.584050198788, + 4881.573001330948 + ], + [ + 2672.584050198788, + 4881.416952989886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558097", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2674.424014639039, + "min_y": 4885.160408230269, + "max_x": 2674.424014639039, + "max_y": 4887.809315400083, + "center": [ + 2674.424014639039, + 4886.4848618151755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.424014639039, + 4887.809315400083 + ], + [ + 2674.424014639039, + 4885.160408230269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558098", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2673.453450802032, + "min_y": 4886.484861815176, + "max_x": 2674.424014639039, + "max_y": 4886.484861815176, + "center": [ + 2673.9387327205354, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2674.424014639039, + 4886.484861815176 + ], + [ + 2673.453450802032, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558099", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2679.079276751029, + "min_y": 4886.484861815176, + "max_x": 2680.049840588036, + "max_y": 4886.484861815176, + "center": [ + 2679.5645586695327, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.079276751029, + 4886.484861815176 + ], + [ + 2680.049840588036, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55809A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2661.396977067365, + "min_y": 4884.085750173168, + "max_x": 2671.02820586212, + "max_y": 4885.625587029959, + "center": [ + 2666.212591464742, + 4884.855668601564 + ] + }, + "raw_value": "\\pi-0.8037;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LDP-3210}", + "clean_value": "\\pi-0.8037; \\fArial|b1|i1|c238|p34; .3333x; DP-3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55809E", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2671.2741095201636, + "min_y": 4886.055402732459, + "max_x": 2672.133027685596, + "max_y": 4886.91432089789, + "center": [ + 2671.70356860288, + 4886.484861815175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2671.70356860288, + 4886.484861815175 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55809F", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2670.4151913547416, + "min_y": 4886.055402732465, + "max_x": 2671.274109520164, + "max_y": 4886.914320897888, + "center": [ + 2670.844650437453, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2670.844650437453, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580A0", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2669.5562731893106, + "min_y": 4886.055402732461, + "max_x": 2670.415191354743, + "max_y": 4886.914320897892, + "center": [ + 2669.985732272027, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.985732272027, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580A1", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2668.6973550238863, + "min_y": 4886.055402732465, + "max_x": 2669.5562731893096, + "max_y": 4886.914320897888, + "center": [ + 2669.126814106598, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.126814106598, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580A2", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2667.838436858465, + "min_y": 4886.055402732465, + "max_x": 2668.697355023887, + "max_y": 4886.914320897888, + "center": [ + 2668.267895941176, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2668.267895941176, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580A3", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2671.274109520175, + "min_y": 4886.055402732465, + "max_x": 2672.1330276855974, + "max_y": 4886.914320897888, + "center": [ + 2671.703568602886, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2671.703568602886, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.088054554499, + "min_y": 4886.484861815176, + "max_x": 2667.838436858465, + "max_y": 4886.484861815176, + "center": [ + 2667.4632457064818, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.838436858465, + 4886.484861815176 + ], + [ + 2667.088054554499, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.388335995645, + "min_y": 4887.048042744892, + "max_x": 2667.088054554499, + "max_y": 4887.048042744892, + "center": [ + 2666.738195275072, + 4887.048042744892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.388335995645, + 4887.048042744892 + ], + [ + 2667.088054554499, + 4887.048042744892 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2667.088054554499, + "min_y": 4885.921680885461, + "max_x": 2667.088054554499, + "max_y": 4887.048042744892, + "center": [ + 2667.088054554499, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2667.088054554499, + 4887.048042744892 + ], + [ + 2667.088054554499, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.388335995645, + "min_y": 4885.921680885461, + "max_x": 2667.088054554499, + "max_y": 4885.921680885461, + "center": [ + 2666.738195275072, + 4885.921680885461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.388335995645, + 4885.921680885461 + ], + [ + 2667.088054554499, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.049840588036, + "min_y": 4887.048042744892, + "max_x": 2680.749559146891, + "max_y": 4887.048042744892, + "center": [ + 2680.399699867464, + 4887.048042744892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.749559146891, + 4887.048042744892 + ], + [ + 2680.049840588036, + 4887.048042744892 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.049840588036, + "min_y": 4885.921680885461, + "max_x": 2680.049840588036, + "max_y": 4887.048042744892, + "center": [ + 2680.049840588036, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.049840588036, + 4887.048042744892 + ], + [ + 2680.049840588036, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2680.049840588036, + "min_y": 4885.921680885461, + "max_x": 2680.749559146891, + "max_y": 4885.921680885461, + "center": [ + 2680.399699867464, + 4885.921680885461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.749559146891, + 4885.921680885461 + ], + [ + 2680.049840588036, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580AB", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2681.369894987298, + "min_y": 4886.037610545274, + "max_x": 2682.2288131527303, + "max_y": 4886.896528710706, + "center": [ + 2681.799354070014, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2681.799354070014, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580AC", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2682.22881315273, + "min_y": 4886.037610545279, + "max_x": 2683.0877313181522, + "max_y": 4886.896528710701, + "center": [ + 2682.658272235441, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.658272235441, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580AD", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2683.087731318151, + "min_y": 4886.037610545274, + "max_x": 2683.9466494835833, + "max_y": 4886.896528710706, + "center": [ + 2683.517190400867, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2683.517190400867, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580AE", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2683.946649483585, + "min_y": 4886.037610545279, + "max_x": 2684.8055676490085, + "max_y": 4886.896528710701, + "center": [ + 2684.376108566297, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2684.376108566297, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580AF", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2684.8055676490076, + "min_y": 4886.037610545279, + "max_x": 2685.66448581443, + "max_y": 4886.896528710701, + "center": [ + 2685.235026731719, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2685.235026731719, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580B0", + "entity_type": "ARC", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 2681.369894987298, + "min_y": 4886.037610545279, + "max_x": 2682.2288131527202, + "max_y": 4886.896528710701, + "center": [ + 2681.799354070009, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2681.799354070009, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2685.66448581443, + "min_y": 4886.46706962799, + "max_x": 2686.414868118395, + "max_y": 4886.46706962799, + "center": [ + 2686.0396769664126, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2685.66448581443, + 4886.46706962799 + ], + [ + 2686.414868118395, + 4886.46706962799 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.414868118395, + "min_y": 4887.030250557706, + "max_x": 2687.11458667725, + "max_y": 4887.030250557706, + "center": [ + 2686.7647273978228, + 4887.030250557706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2687.11458667725, + 4887.030250557706 + ], + [ + 2686.414868118395, + 4887.030250557706 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.414868118395, + "min_y": 4885.903888698274, + "max_x": 2686.414868118395, + "max_y": 4887.030250557706, + "center": [ + 2686.414868118395, + 4886.46706962799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.414868118395, + 4887.030250557706 + ], + [ + 2686.414868118395, + 4885.903888698274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.414868118395, + "min_y": 4885.903888698274, + "max_x": 2687.11458667725, + "max_y": 4885.903888698274, + "center": [ + 2686.7647273978228, + 4885.903888698274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2687.11458667725, + 4885.903888698274 + ], + [ + 2686.414868118395, + 4885.903888698274 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2680.399699867463, + "min_y": 4886.484861815176, + "max_x": 2681.37026370447, + "max_y": 4886.484861815176, + "center": [ + 2680.8849817859664, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2680.399699867463, + 4886.484861815176 + ], + [ + 2681.37026370447, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.753732243177, + "min_y": 4887.048042744892, + "max_x": 2673.453450802032, + "max_y": 4887.048042744892, + "center": [ + 2673.103591522605, + 4887.048042744892 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.753732243177, + 4887.048042744892 + ], + [ + 2673.453450802032, + 4887.048042744892 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.453450802032, + "min_y": 4885.921680885461, + "max_x": 2673.453450802032, + "max_y": 4887.048042744892, + "center": [ + 2673.453450802032, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.453450802032, + 4887.048042744892 + ], + [ + 2673.453450802032, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.753732243177, + "min_y": 4885.921680885461, + "max_x": 2673.453450802032, + "max_y": 4885.921680885461, + "center": [ + 2673.103591522605, + 4885.921680885461 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.753732243177, + 4885.921680885461 + ], + [ + 2673.453450802032, + 4885.921680885461 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580B9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2672.133027685598, + "min_y": 4886.484861815176, + "max_x": 2673.103591522604, + "max_y": 4886.484861815176, + "center": [ + 2672.618309604101, + 4886.484861815176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.103591522604, + 4886.484861815176 + ], + [ + 2672.133027685598, + 4886.484861815176 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580BA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2667.432766473475, + "min_y": 4887.846598110474, + "max_x": 2668.7766240939472, + "max_y": 4888.966479460867, + "center": [ + 2668.1046952837114, + 4888.40653878567 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5580BB", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2673.684624744287, + "min_y": 4887.846598110474, + "max_x": 2675.028482364759, + "max_y": 4888.966479460867, + "center": [ + 2674.356553554523, + 4888.40653878567 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5580BC", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2680.906022533035, + "min_y": 4887.646003727453, + "max_x": 2682.249880153507, + "max_y": 4888.765885077846, + "center": [ + 2681.577951343271, + 4888.205944402649 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5580BD", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2687.258177995357, + "min_y": 4887.712868521793, + "max_x": 2688.602035615829, + "max_y": 4888.8327498721865, + "center": [ + 2687.930106805593, + 4888.272809196989 + ] + }, + "raw_value": "CC", + "clean_value": "CC", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5580BE", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2694.170018365002, + "min_y": 4891.4472249895225, + "max_x": 2699.766666178326, + "max_y": 4897.043872802846, + "center": [ + 2696.968342271664, + 4894.245548896184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2696.968342271664, + 4894.245548896184 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580BF", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2694.170018365001, + "min_y": 4891.447224989526, + "max_x": 2699.766666178326, + "max_y": 4897.043872802846, + "center": [ + 2696.9683422716635, + 4894.245548896186 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2696.968342271664, + 4897.043872802846 + ], + [ + 2694.170018365001, + 4897.043872802843 + ], + [ + 2694.170018365009, + 4891.447224989526 + ], + [ + 2699.766666178326, + 4891.447224989526 + ], + [ + 2699.766666178325, + 4897.043872802846 + ], + [ + 2696.968342271664, + 4897.043872802846 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580C0", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2694.170018365007, + "min_y": 4894.245548896184, + "max_x": 2699.766666178325, + "max_y": 4894.245548896184, + "center": [ + 2696.968342271666, + 4894.245548896184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.170018365007, + 4894.245548896184 + ], + [ + 2699.766666178325, + 4894.245548896184 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580C1", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2696.007065844535, + "min_y": 4894.736589670811, + "max_x": 2698.2731625552765, + "max_y": 4895.99553228789, + "center": [ + 2697.140114199906, + 4895.36606097935 + ] + }, + "raw_value": "LIA", + "clean_value": "LIA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580C2", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2695.437041099954, + "min_y": 4892.496826970025, + "max_x": 2698.4585033809426, + "max_y": 4893.755769587104, + "center": [ + 2696.947772240448, + 4893.126298278565 + ] + }, + "raw_value": "3210", + "clean_value": "3210", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580C3", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2690.309863356174, + "min_y": 4891.447224989526, + "max_x": 2693.9494777449527, + "max_y": 4892.343130069841, + "center": [ + 2692.1296705505633, + 4891.895177529684 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 90\\P H 80\\P L 10\\P LL 5", + "clean_value": "\\Fmonotxt.shx; .6; HH 90 H 80 L 10 LL 5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580C7", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2611.346676834421, + "min_y": 4980.568094138668, + "max_x": 2615.896194820394, + "max_y": 4981.477997735863, + "center": [ + 2613.6214358274074, + 4981.023045937265 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 70\\P H 68\\P L 50\\P LL 30", + "clean_value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580CB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2703.978623147828, + "min_y": 4988.863679800473, + "max_x": 2705.939293721713, + "max_y": 4988.863679800473, + "center": [ + 2704.9589584347705, + 4988.863679800473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2703.978623147828, + 4988.863679800473 + ], + [ + 2705.939293721713, + 4988.863679800473 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5580CC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2703.079314061027, + "min_y": 4984.435851786477, + "max_x": 2705.03998463491, + "max_y": 4984.435851786477, + "center": [ + 2704.059649347969, + 4984.435851786477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2703.079314061027, + 4984.435851786477 + ], + [ + 2705.03998463491, + 4984.435851786477 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5580CD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2652.818988171755, + "min_y": 4946.349848463733, + "max_x": 2652.818988171755, + "max_y": 4948.310519037617, + "center": [ + 2652.818988171755, + 4947.330183750675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.818988171755, + 4946.349848463733 + ], + [ + 2652.818988171755, + 4948.310519037617 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5580CE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2764.827707693378, + "min_y": 4911.27879550685, + "max_x": 2764.827707693378, + "max_y": 4913.239466080735, + "center": [ + 2764.827707693378, + 4912.259130793793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2764.827707693378, + 4913.239466080735 + ], + [ + 2764.827707693378, + 4911.27879550685 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5580CF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2760.470263299432, + "min_y": 4911.27879550685, + "max_x": 2760.470263299432, + "max_y": 4913.239466080735, + "center": [ + 2760.470263299432, + 4912.259130793793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.470263299432, + 4913.239466080735 + ], + [ + 2760.470263299432, + 4911.27879550685 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5580D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.973711996816, + "min_y": 4988.863679800473, + "max_x": 2710.973711996816, + "max_y": 5004.271953915027, + "center": [ + 2710.973711996816, + 4996.56781685775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.973711996816, + 4988.863679800473 + ], + [ + 2710.973711996816, + 5004.271953915027 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2710.973711996816, + "min_y": 5004.271953915027, + "max_x": 2731.692296514236, + "max_y": 5004.271953915027, + "center": [ + 2721.3330042555262, + 5004.271953915027 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2710.973711996816, + 5004.271953915027 + ], + [ + 2731.692296514236, + 5004.271953915027 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2714.672402463365, + "min_y": 4984.435851786477, + "max_x": 2714.672402463365, + "max_y": 4996.7760398679, + "center": [ + 2714.672402463365, + 4990.605945827188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2714.672402463365, + 4984.435851786477 + ], + [ + 2714.672402463365, + 4996.7760398679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2714.672402463365, + "min_y": 4996.7760398679, + "max_x": 2731.692296514236, + "max_y": 4996.7760398679, + "center": [ + 2723.1823494888004, + 4996.7760398679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2714.672402463365, + 4996.7760398679 + ], + [ + 2731.692296514236, + 4996.7760398679 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2760.470263299432, + "min_y": 4863.821878901873, + "max_x": 2760.470263299432, + "max_y": 4930.42203964331, + "center": [ + 2760.470263299432, + 4897.121959272592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.470263299432, + 4930.42203964331 + ], + [ + 2760.470263299432, + 4863.821878901873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2764.827707693378, + "min_y": 4849.137134891769, + "max_x": 2764.827707693378, + "max_y": 4904.877339921812, + "center": [ + 2764.827707693378, + 4877.00723740679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2764.827707693378, + 4904.877339921812 + ], + [ + 2764.827707693378, + 4849.137134891769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.241768641888, + "min_y": 4874.830833256319, + "max_x": 2642.209224020394, + "max_y": 4874.830833256319, + "center": [ + 2634.7254963311407, + 4874.830833256319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.209224020394, + 4874.830833256319 + ], + [ + 2627.241768641888, + 4874.830833256319 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5580D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2741.587647849355, + "min_y": 4885.747369812982, + "max_x": 2741.587647849355, + "max_y": 4949.854093363596, + "center": [ + 2741.587647849355, + 4917.800731588289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2741.587647849355, + 4885.747369812982 + ], + [ + 2741.587647849355, + 4949.854093363596 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580D8", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2897.9533069730523, + "min_y": 4945.848118813163, + "max_x": 2903.552713725019, + "max_y": 4951.4475255651305, + "center": [ + 2900.753010349036, + 4948.647822189147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2900.753010349036, + 4948.647822189147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580D9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2899.810658903754, + "min_y": 4949.206516778268, + "max_x": 2901.6024690643835, + "max_y": 4950.699691912127, + "center": [ + 2900.7065639840685, + 4949.953104345197 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580DA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2898.948380907418, + "min_y": 4946.797947210439, + "max_x": 2903.4279063089916, + "max_y": 4948.291122344297, + "center": [ + 2901.188143608205, + 4947.5445347773675 + ] + }, + "raw_value": "10201", + "clean_value": "10201", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580DB", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2907.0520855207637, + "min_y": 4945.848118813163, + "max_x": 2912.6514922727306, + "max_y": 4951.4475255651305, + "center": [ + 2909.851788896747, + 4948.647822189147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.851788896747, + 4948.647822189147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580DC", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2908.909437451464, + "min_y": 4949.206516778268, + "max_x": 2910.7012476120935, + "max_y": 4950.699691912127, + "center": [ + 2909.8053425317785, + 4949.953104345197 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580DD", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2908.047159455128, + "min_y": 4946.797947210439, + "max_x": 2912.5266848567016, + "max_y": 4948.291122344297, + "center": [ + 2910.286922155915, + 4947.5445347773675 + ] + }, + "raw_value": "10221", + "clean_value": "10221", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5580DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.161655206963, + "min_y": 5091.034350235887, + "max_x": 2827.161655206963, + "max_y": 5100.166950331245, + "center": [ + 2827.161655206963, + 5095.600650283566 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.161655206963, + 5091.034350235887 + ], + [ + 2827.161655206963, + 5100.166950331245 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.28558064383, + "min_y": 5000.577392932267, + "max_x": 2820.302932075125, + "max_y": 5068.104730493206, + "center": [ + 2820.294256359478, + 5034.3410617127365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.302932075125, + 5068.104730493206 + ], + [ + 2820.28558064383, + 5000.577392932267 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494219, + "min_y": 5000.577392932267, + "max_x": 2834.020378338131, + "max_y": 5068.104730493206, + "center": [ + 2834.018287416175, + 5034.3410617127365 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.020378338131, + 5068.104730493206 + ], + [ + 2834.016196494219, + 5000.577392932267 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.294417079142, + "min_y": 5021.965049072053, + "max_x": 2834.020635943435, + "max_y": 5021.966038500965, + "center": [ + 2827.157526511289, + 5021.965543786509 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.294417079142, + 5021.966038500965 + ], + [ + 2834.020635943435, + 5021.965049072053 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.298865397953, + "min_y": 5021.965049072053, + "max_x": 2834.020635943435, + "max_y": 5063.148281050427, + "center": [ + 2827.159750670694, + 5042.55666506124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.020635943435, + 5021.965049072053 + ], + [ + 2820.298865397953, + 5063.148281050427 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.294417079142, + "min_y": 5021.966038500965, + "max_x": 2834.026885479688, + "max_y": 5063.147290781306, + "center": [ + 2827.160651279415, + 5042.556664641135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.026885479688, + 5063.147290781306 + ], + [ + 2820.294417079142, + 5021.966038500965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.298865397953, + "min_y": 5063.147290781306, + "max_x": 2834.026885479688, + "max_y": 5063.148281050427, + "center": [ + 2827.1628754388203, + 5063.147785915866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.298865397953, + 5063.148281050427 + ], + [ + 2834.026885479688, + 5063.147290781306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.302932075125, + "min_y": 5068.104730493206, + "max_x": 2823.418900359382, + "max_y": 5070.837806568073, + "center": [ + 2821.8609162172534, + 5069.4712685306395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.418900359382, + 5070.837806568073 + ], + [ + 2820.302932075125, + 5068.104730493206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2830.904410053877, + "min_y": 5068.104730493206, + "max_x": 2834.020378338131, + "max_y": 5070.837806568073, + "center": [ + 2832.4623941960044, + 5069.4712685306395 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2830.904410053877, + 5070.837806568073 + ], + [ + 2834.020378338131, + 5068.104730493206 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5070.837806568073, + "max_x": 2823.418900359382, + "max_y": 5088.620447287098, + "center": [ + 2823.418900359382, + 5079.729126927585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.418900359382, + 5070.837806568073 + ], + [ + 2823.418900359382, + 5088.620447287098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2830.904410053877, + "min_y": 5070.837806568073, + "max_x": 2830.904410053877, + "max_y": 5088.620447287098, + "center": [ + 2830.904410053877, + 5079.729126927585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2830.904410053877, + 5070.837806568073 + ], + [ + 2830.904410053877, + 5088.620447287098 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5070.837806568073, + "max_x": 2830.904410053877, + "max_y": 5081.528026987547, + "center": [ + 2827.16165520663, + 5076.18291677781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2830.904410053877, + 5070.837806568073 + ], + [ + 2823.418900359382, + 5081.528026987547 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5070.837806568073, + "max_x": 2830.904410053877, + "max_y": 5081.527037558637, + "center": [ + 2827.16165520663, + 5076.182422063355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2830.904410053877, + 5081.527037558637 + ], + [ + 2823.418900359382, + 5070.837806568073 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5081.527037558637, + "max_x": 2830.904410053877, + "max_y": 5081.528026987547, + "center": [ + 2827.16165520663, + 5081.527532273092 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.418900359382, + 5081.528026987547 + ], + [ + 2830.904410053877, + 5081.527037558637 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5070.836817139161, + "max_x": 2830.904410053877, + "max_y": 5070.837806568073, + "center": [ + 2827.16165520663, + 5070.8373118536165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2823.418900359382, + 5070.837806568073 + ], + [ + 2830.904410053877, + 5070.836817139161 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580EF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2826.499386736137, + "min_y": 5086.065885343071, + "max_x": 2827.823923677119, + "max_y": 5087.21296798221, + "center": [ + 2827.161655206628, + 5086.639426662641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.16165520663, + 5087.21296798221 + ], + [ + 2826.499386736137, + 5086.065885343071 + ], + [ + 2827.823923677119, + 5086.065885343071 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2826.499386736137, + "min_y": 5064.215009347066, + "max_x": 2827.823923677119, + "max_y": 5065.362091986206, + "center": [ + 2827.161655206628, + 5064.788550666636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.16165520663, + 5065.362091986206 + ], + [ + 2826.499386736137, + 5064.215009347066 + ], + [ + 2827.823923677119, + 5064.215009347066 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 2825.649142601242, + "min_y": 5093.621276066372, + "max_x": 2828.674919997869, + "max_y": 5093.621276066372, + "center": [ + 2827.1620312995556, + 5093.621276066372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.649142601242, + 5093.621276066372 + ], + [ + 2828.674919997869, + 5093.621276066372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2823.418900359382, + "min_y": 5087.21296798221, + "max_x": 2827.16165520663, + "max_y": 5087.212967982867, + "center": [ + 2825.290277783006, + 5087.212967982538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.16165520663, + 5087.21296798221 + ], + [ + 2823.418900359382, + 5087.212967982867 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2825.256156561059, + "min_y": 5004.818794958563, + "max_x": 2828.424416473077, + "max_y": 5007.459011551911, + "center": [ + 2826.8402865170683, + 5006.138903255237 + ] + }, + "raw_value": "SG", + "clean_value": "SG", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F4", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2822.888489105949, + "min_y": 5001.765727115567, + "max_x": 2831.4132880320976, + "max_y": 5010.290526041715, + "center": [ + 2827.150888569023, + 5006.028126578641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.150888569023, + 5006.028126578641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2823.740968998564, + "min_y": 5002.618207008181, + "max_x": 2830.5608081394826, + "max_y": 5009.4380461491, + "center": [ + 2827.150888569023, + 5006.028126578641 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.150888569023, + 5006.028126578641 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5580F6", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2827.1616552069627, + "min_y": 5098.627624044612, + "max_x": 2830.240307780229, + "max_y": 5101.706276617878, + "center": [ + 2828.700981493596, + 5100.166950331245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2828.700981493596, + 5100.166950331245 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.84027046816, + "min_y": 5065.362091986206, + "max_x": 2827.16165520663, + "max_y": 5065.362091986206, + "center": [ + 2822.5009628373946, + 5065.362091986206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.16165520663, + 5065.362091986206 + ], + [ + 2817.84027046816, + 5065.362091986206 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.84027046816, + "min_y": 5064.615504419277, + "max_x": 2817.84027046816, + "max_y": 5066.108679553135, + "center": [ + 2817.84027046816, + 5065.362091986206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.84027046816, + 5066.108679553135 + ], + [ + 2817.84027046816, + 5064.615504419277 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5580F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.591407945851, + "min_y": 5064.615504419277, + "max_x": 2817.591407945851, + "max_y": 5066.108679553135, + "center": [ + 2817.591407945851, + 5065.362091986206 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.591407945851, + 5066.108679553135 + ], + [ + 2817.591407945851, + 5064.615504419277 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5580FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.150888568761, + "min_y": 4993.424888765058, + "max_x": 2827.150888568761, + "max_y": 4995.860438161344, + "center": [ + 2827.150888568761, + 4994.642663463201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.150888568761, + 4995.860438161344 + ], + [ + 2827.150888568761, + 4993.424888765058 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2826.404301001832, + "min_y": 4993.176026242752, + "max_x": 2827.89747613569, + "max_y": 4993.176026242752, + "center": [ + 2827.150888568761, + 4993.176026242752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.89747613569, + 4993.176026242752 + ], + [ + 2826.404301001832, + 4993.176026242752 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5580FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2826.404301001832, + "min_y": 4993.424888765063, + "max_x": 2827.89747613569, + "max_y": 4993.424888765063, + "center": [ + 2827.150888568761, + 4993.424888765063 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.89747613569, + 4993.424888765063 + ], + [ + 2826.404301001832, + 4993.424888765063 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5580FD", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2822.226731207669, + "min_y": 4992.514787047698, + "max_x": 2824.9144464486135, + "max_y": 4994.007962181556, + "center": [ + 2823.5705888281414, + 4993.261374614627 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5580FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.95694348483, + "min_y": 5087.212967982867, + "max_x": 2823.418900359382, + "max_y": 5087.212967982867, + "center": [ + 2822.187921922106, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.95694348483, + 5087.212967982867 + ], + [ + 2823.418900359382, + 5087.212967982867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5580FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.95694348483, + "min_y": 5086.466380415937, + "max_x": 2820.95694348483, + "max_y": 5087.959555549796, + "center": [ + 2820.95694348483, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.95694348483, + 5086.466380415937 + ], + [ + 2820.95694348483, + 5087.959555549796 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2820.70808096252, + "min_y": 5086.466380415937, + "max_x": 2820.70808096252, + "max_y": 5087.959555549796, + "center": [ + 2820.70808096252, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.70808096252, + 5086.466380415937 + ], + [ + 2820.70808096252, + 5087.959555549796 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2832.428690874196, + "min_y": 4997.560747306943, + "max_x": 2832.428690874196, + "max_y": 5009.646328099877, + "center": [ + 2832.428690874196, + 5003.6035377034095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.428690874196, + 5009.646328099877 + ], + [ + 2832.428690874196, + 4997.560747306943 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558102", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2832.429330694768, + "min_y": 4995.125197890173, + "max_x": 2832.429330694768, + "max_y": 4997.560747286457, + "center": [ + 2832.429330694768, + 4996.342972588314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.429330694768, + 4997.560747286457 + ], + [ + 2832.429330694768, + 4995.125197890173 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558103", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2834.338090605179, + "min_y": 4992.514787047698, + "max_x": 2837.025805846123, + "max_y": 4994.007962181556, + "center": [ + 2835.681948225651, + 4993.261374614627 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.018317951708, + "min_y": 5016.104513784693, + "max_x": 2836.48358986962, + "max_y": 5016.104513784693, + "center": [ + 2835.250953910664, + 5016.104513784693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.018317951708, + 5016.104513784693 + ], + [ + 2836.48358986962, + 5016.104513784693 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558105", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.48358986962, + "min_y": 5015.357926217764, + "max_x": 2836.48358986962, + "max_y": 5016.851101351622, + "center": [ + 2836.48358986962, + 5016.104513784692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.48358986962, + 5016.851101351622 + ], + [ + 2836.48358986962, + 5015.357926217764 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558106", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.732452391928, + "min_y": 5015.357926217764, + "max_x": 2836.732452391928, + "max_y": 5016.851101351622, + "center": [ + 2836.732452391928, + 5016.104513784692 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.732452391928, + 5016.851101351622 + ], + [ + 2836.732452391928, + 5015.357926217764 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558107", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.829572613098, + "min_y": 5001.465494075753, + "max_x": 2820.294844531009, + "max_y": 5001.465494075753, + "center": [ + 2819.0622085720534, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.294844531009, + 5001.465494075753 + ], + [ + 2817.829572613098, + 5001.465494075753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558108", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2806.084606528311, + "min_y": 5001.465494075948, + "max_x": 2811.467403985937, + "max_y": 5001.465494075948, + "center": [ + 2808.776005257124, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.467403985937, + 5001.465494075948 + ], + [ + 2806.084606528311, + 5001.465494075948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558109", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2812.546464684264, + "min_y": 5001.465494075753, + "max_x": 2814.514261927093, + "max_y": 5001.465494075753, + "center": [ + 2813.5303633056783, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.546464684264, + 5001.465494075753 + ], + [ + 2814.514261927093, + 5001.465494075753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810A", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2811.467403985937, + "min_y": 5000.306613473783, + "max_x": 2811.467403985937, + "max_y": 5002.624374677886, + "center": [ + 2811.467403985937, + 5001.465494075835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.467403985937, + 5000.306613473783 + ], + [ + 2811.467403985937, + 5002.624374677886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810B", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2811.467403985937, + "min_y": 5002.624374677886, + "max_x": 2812.546464684264, + "max_y": 5002.624374677886, + "center": [ + 2812.0069343351006, + 5002.624374677886 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.467403985937, + 5002.624374677886 + ], + [ + 2812.546464684264, + 5002.624374677886 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810C", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2812.546464684264, + "min_y": 5000.306613473783, + "max_x": 2812.546464684264, + "max_y": 5002.624374677886, + "center": [ + 2812.546464684264, + 5001.465494075835 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.546464684264, + 5002.624374677886 + ], + [ + 2812.546464684264, + 5000.306613473783 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810D", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2811.467403985937, + "min_y": 5000.306613473783, + "max_x": 2812.546464684264, + "max_y": 5000.306613473783, + "center": [ + 2812.0069343351006, + 5000.306613473783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.546464684264, + 5000.306613473783 + ], + [ + 2811.467403985937, + 5000.306613473783 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810E", + "entity_type": "ARC", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2811.7599523361628, + "min_y": 4998.623172846156, + "max_x": 2817.444594795357, + "max_y": 5004.307815305349, + "center": [ + 2814.60227356576, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2814.60227356576, + 5001.465494075753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55810F", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2808.056220092582, + "min_y": 5001.066513108668, + "max_x": 2808.854182026835, + "max_y": 5001.864475042847, + "center": [ + 2808.4552010597085, + 5001.465494075757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2808.854182026835, + 5001.066513108668 + ], + [ + 2808.056220092582, + 5001.864475042847 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558110", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2808.056220092582, + "min_y": 5001.066513108668, + "max_x": 2808.854182026835, + "max_y": 5001.864475042847, + "center": [ + 2808.4552010597085, + 5001.465494075757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2808.854182026835, + 5001.864475042847 + ], + [ + 2808.056220092582, + 5001.066513108668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558111", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2810.002104427951, + "min_y": 5001.066513108668, + "max_x": 2810.80006636221, + "max_y": 5001.864475042847, + "center": [ + 2810.4010853950804, + 5001.465494075757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.80006636221, + 5001.066513108668 + ], + [ + 2810.002104427951, + 5001.864475042847 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558112", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2810.002104427951, + "min_y": 5001.066513108668, + "max_x": 2810.80006636221, + "max_y": 5001.864475042847, + "center": [ + 2810.4010853950804, + 5001.465494075757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.80006636221, + 5001.864475042847 + ], + [ + 2810.002104427951, + 5001.066513108668 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558113", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2800.4851997763444, + "min_y": 4998.665790699964, + "max_x": 2806.0846065283113, + "max_y": 5004.265197451932, + "center": [ + 2803.284903152328, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2803.284903152328, + 5001.465494075948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558114", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2802.465589338075, + "min_y": 5002.024188665069, + "max_x": 2804.2573994987047, + "max_y": 5003.517363798927, + "center": [ + 2803.36149441839, + 5002.770776231999 + ] + }, + "raw_value": "LT", + "clean_value": "LT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558115", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2801.480273710707, + "min_y": 4999.61561909724, + "max_x": 2805.9597991122805, + "max_y": 5001.108794231098, + "center": [ + 2803.7200364114938, + 5000.362206664169 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558116", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2794.8857930243826, + "min_y": 4998.665790699964, + "max_x": 2800.4851997763494, + "max_y": 5004.265197451932, + "center": [ + 2797.685496400366, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.685496400366, + 5001.465494075948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558117", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2797.120619628923, + "min_y": 5002.024188665069, + "max_x": 2798.912429789553, + "max_y": 5003.517363798927, + "center": [ + 2798.016524709238, + 5002.770776231999 + ] + }, + "raw_value": "LI", + "clean_value": "LI", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558118", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2795.880866958748, + "min_y": 4999.61561909724, + "max_x": 2800.3603923603214, + "max_y": 5001.108794231098, + "center": [ + 2798.1206296595346, + 5000.362206664169 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558119", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 5001.465494075948, + "max_x": 2800.485199776344, + "max_y": 5001.465494075948, + "center": [ + 2797.6854964003633, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.885793024383, + 5001.465494075948 + ], + [ + 2800.485199776344, + 5001.465494075948 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811A", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 4998.665790699964, + "max_x": 2800.485199776344, + "max_y": 4998.665790699964, + "center": [ + 2797.6854964003633, + 4998.665790699964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2800.485199776344, + 4998.665790699964 + ], + [ + 2794.885793024383, + 4998.665790699964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811B", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 4998.665790699964, + "max_x": 2794.885793024383, + "max_y": 5004.265197451932, + "center": [ + 2794.885793024383, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.885793024383, + 5004.265197451932 + ], + [ + 2794.885793024383, + 4998.665790699964 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811C", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2800.485199776344, + "min_y": 4998.665790699964, + "max_x": 2800.485199776344, + "max_y": 5004.265197451932, + "center": [ + 2800.485199776344, + 5001.465494075948 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2800.485199776344, + 4998.665790699964 + ], + [ + 2800.485199776344, + 5004.265197451932 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811D", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2794.885793024383, + "min_y": 5004.265197451932, + "max_x": 2800.485199776344, + "max_y": 5004.265197451932, + "center": [ + 2797.6854964003633, + 5004.265197451932 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2794.885793024383, + 5004.265197451932 + ], + [ + 2800.485199776344, + 5004.265197451932 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.829572613098, + "min_y": 5012.555363273268, + "max_x": 2820.294844531009, + "max_y": 5012.555363273268, + "center": [ + 2819.0622085720534, + 5012.555363273268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2820.294844531009, + 5012.555363273268 + ], + [ + 2817.829572613098, + 5012.555363273268 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55811F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.829572613098, + "min_y": 5011.808775706338, + "max_x": 2817.829572613098, + "max_y": 5013.301950840197, + "center": [ + 2817.829572613098, + 5012.555363273267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.829572613098, + 5013.301950840197 + ], + [ + 2817.829572613098, + 5011.808775706338 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558120", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2817.580710090788, + "min_y": 5011.808775706338, + "max_x": 2817.580710090788, + "max_y": 5013.301950840197, + "center": [ + 2817.580710090788, + 5012.555363273267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.580710090788, + 5013.301950840197 + ], + [ + 2817.580710090788, + 5011.808775706338 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558121", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2819.825519596833, + "min_y": 4995.990496212652, + "max_x": 2821.618962948708, + "max_y": 4997.783939564525, + "center": [ + 2820.7222412727706, + 4996.887217888589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2821.618962948708, + 4997.783939564525 + ], + [ + 2819.825519596833, + 4995.990496212652 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558122", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2819.297602465508, + "min_y": 4995.462579081327, + "max_x": 2820.353436728158, + "max_y": 4996.518413343977, + "center": [ + 2819.825519596833, + 4995.990496212652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2819.297602465508, + 4996.518413343977 + ], + [ + 2820.353436728158, + 4995.462579081327 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558123", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2819.121630088398, + "min_y": 4995.286606704219, + "max_x": 2820.177464351051, + "max_y": 4996.342440966867, + "center": [ + 2819.649547219725, + 4995.814523835543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2819.121630088398, + 4996.342440966867 + ], + [ + 2820.177464351051, + 4995.286606704219 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558124", + "entity_type": "CIRCLE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2813.5425378237546, + "min_y": 4989.707514439574, + "max_x": 2819.1419445757215, + "max_y": 4995.306921191542, + "center": [ + 2816.342241199738, + 4992.507217815558 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2816.342241199738, + 4992.507217815558 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558125", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2815.44624584709, + "min_y": 4992.74257509309, + "max_x": 2817.2380560077195, + "max_y": 4994.235750226948, + "center": [ + 2816.342150927405, + 4993.489162660018 + ] + }, + "raw_value": "TG", + "clean_value": "TG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558126", + "entity_type": "TEXT", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2814.537611758121, + "min_y": 4990.657342836851, + "max_x": 2819.0171371596944, + "max_y": 4992.150517970709, + "center": [ + 2816.7773744589076, + 4991.40393040378 + ] + }, + "raw_value": "10128", + "clean_value": "10128", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558127", + "entity_type": "LINE", + "layer": "1-SYMBOL", + "bbox": { + "min_x": 2818.321930442207, + "min_y": 4994.486907058026, + "max_x": 2819.649547219725, + "max_y": 4995.814523835544, + "center": [ + 2818.9857388309656, + 4995.150715446785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2818.321930442207, + 4994.486907058026 + ], + [ + 2819.649547219725, + 4995.814523835544 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558128", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2814.753279590519, + "min_y": 5004.202295581361, + "max_x": 2817.4409948314633, + "max_y": 5005.695470715219, + "center": [ + 2816.097137210991, + 5004.94888314829 + ] + }, + "raw_value": "50A", + "clean_value": "50A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558129", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2830.904410054549, + "min_y": 5087.212967982867, + "max_x": 2833.366366929098, + "max_y": 5087.212967982867, + "center": [ + 2832.1353884918235, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.366366929098, + 5087.212967982867 + ], + [ + 2830.904410054549, + 5087.212967982867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55812A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2833.1377221406, + "min_y": 5089.949769488475, + "max_x": 2836.721342461859, + "max_y": 5091.442944622333, + "center": [ + 2834.9295323012293, + 5090.6963570554035 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55812B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.681677615104, + "min_y": 5087.212967982867, + "max_x": 2840.443596881977, + "max_y": 5087.212967982867, + "center": [ + 2838.5626372485403, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.681677615104, + 5087.212967982867 + ], + [ + 2840.443596881977, + 5087.212967982867 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55812C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2841.785777318971, + "min_y": 5086.489072047587, + "max_x": 2850.7448281221186, + "max_y": 5087.982247181445, + "center": [ + 2846.265302720545, + 5087.235659614516 + ] + }, + "raw_value": "FOR SAMPLE", + "clean_value": "FOR SAMPLE", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55812D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2832.429330694768, + "min_y": 4949.854093363596, + "max_x": 2832.429330694768, + "max_y": 4991.809887204166, + "center": [ + 2832.429330694768, + 4970.831990283881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.429330694768, + 4991.809887204166 + ], + [ + 2832.429330694768, + 4949.854093363596 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55812E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2741.587647849355, + "min_y": 4949.854093363596, + "max_x": 2832.429330694768, + "max_y": 4949.854093363596, + "center": [ + 2787.0084892720615, + 4949.854093363596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.429330694768, + 4949.854093363596 + ], + [ + 2741.587647849355, + 4949.854093363596 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55812F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.688958920524, + "min_y": 4987.151345488808, + "max_x": 2855.263460293096, + "max_y": 4987.151345488808, + "center": [ + 2851.97620960681, + 4987.151345488808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.688958920524, + 4987.151345488808 + ], + [ + 2855.263460293096, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558130", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.688958920524, + "min_y": 4987.151345488807, + "max_x": 2935.840664649134, + "max_y": 4987.151345488808, + "center": [ + 2892.264811784829, + 4987.151345488808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.688958920524, + 4987.151345488808 + ], + [ + 2935.840664649134, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558131", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2864.356737762118, + "min_y": 4988.376774574563, + "max_x": 2881.3789342880978, + "max_y": 4989.869949708421, + "center": [ + 2872.867836025108, + 4989.123362141492 + ] + }, + "raw_value": "VG-10401-150A-F1A-N", + "clean_value": "VG-10401-150A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558132", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2838.327804689172, + "min_y": 5042.288878675498, + "max_x": 2853.110238514365, + "max_y": 5044.528641376285, + "center": [ + 2845.7190216017684, + 5043.408760025892 + ] + }, + "raw_value": "%%USC-10128", + "clean_value": "SC-10128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558133", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2831.404021307676, + "min_y": 4968.273892395795, + "max_x": 2847.530312753341, + "max_y": 4969.767067529653, + "center": [ + 2839.467167030509, + 4969.0204799627245 + ] + }, + "raw_value": "WW-10193-25A-F1A-N", + "clean_value": "WW-10193-25A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558134", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2931.204631755422, + "min_y": 5000.122172730327, + "max_x": 2945.240931813455, + "max_y": 5006.190881252063, + "center": [ + 2938.2227817844387, + 5003.156526991195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2931.204631755422, + 5000.122172730327 + ], + [ + 2945.240931813455, + 5000.122172730327 + ], + [ + 2945.240931813455, + 5006.190881252063 + ], + [ + 2931.204631755422, + 5006.190881252063 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558135", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2933.349799130244, + "min_y": 5002.03603184272, + "max_x": 2945.175746190398, + "max_y": 5003.827842003349, + "center": [ + 2939.262772660321, + 5002.931936923034 + ] + }, + "raw_value": "%%UVP-10117", + "clean_value": "VP-10117", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558136", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2931.204631755422, + "min_y": 5010.077242665618, + "max_x": 2945.240931813455, + "max_y": 5016.145951187354, + "center": [ + 2938.2227817844387, + 5013.111596926486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2931.204631755422, + 5010.077242665618 + ], + [ + 2945.240931813455, + 5010.077242665618 + ], + [ + 2945.240931813455, + 5016.145951187354 + ], + [ + 2931.204631755422, + 5016.145951187354 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558137", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2933.349799130244, + "min_y": 5011.991101778011, + "max_x": 2945.175746190398, + "max_y": 5013.782911938641, + "center": [ + 2939.262772660321, + 5012.887006858326 + ] + }, + "raw_value": "%%UVP-10217", + "clean_value": "VP-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558138", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2848.1040384646594, + "min_y": 4885.903803351469, + "max_x": 2853.7034452166263, + "max_y": 4891.503210103437, + "center": [ + 2850.903741840643, + 4888.703506727453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.903741840643, + 4888.703506727453 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558139", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2849.478198922047, + "min_y": 4889.262201316574, + "max_x": 2852.165914162991, + "max_y": 4890.755376450432, + "center": [ + 2850.822056542519, + 4890.008788883502 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55813A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2848.686100157002, + "min_y": 4886.853631748746, + "max_x": 2854.0615306388904, + "max_y": 4888.346806882604, + "center": [ + 2851.373815397946, + 4887.600219315675 + ] + }, + "raw_value": "10219B", + "clean_value": "10219B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55813B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2846.702111864923, + "min_y": 4882.580281952241, + "max_x": 2857.4529728287, + "max_y": 4884.372092112871, + "center": [ + 2852.0775423468112, + 4883.4761870325565 + ] + }, + "raw_value": "%%UE-10219", + "clean_value": "E-10219", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55813C", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2848.1040384646594, + "min_y": 4914.962694379973, + "max_x": 2853.7034452166263, + "max_y": 4920.562101131941, + "center": [ + 2850.903741840643, + 4917.762397755957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.903741840643, + 4917.762397755957 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55813D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2849.478198922047, + "min_y": 4918.321092345077, + "max_x": 2852.165914162991, + "max_y": 4919.814267478935, + "center": [ + 2850.822056542519, + 4919.0676799120065 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55813E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2848.686100157002, + "min_y": 4915.912522777251, + "max_x": 2854.0615306388904, + "max_y": 4917.405697911109, + "center": [ + 2851.373815397946, + 4916.659110344181 + ] + }, + "raw_value": "10119B", + "clean_value": "10119B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55813F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2846.702111864923, + "min_y": 4911.639172980745, + "max_x": 2857.4529728287, + "max_y": 4913.430983141374, + "center": [ + 2852.0775423468112, + 4912.535078061059 + ] + }, + "raw_value": "%%UE-10119", + "clean_value": "E-10119", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558140", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2871.2776426303158, + "min_y": 4905.597284651305, + "max_x": 2876.8770493822826, + "max_y": 4911.196691403273, + "center": [ + 2874.077346006299, + 4908.396988027289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2874.077346006299, + 4908.396988027289 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558141", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2872.6518030877, + "min_y": 4908.95568261641, + "max_x": 2875.3395183286443, + "max_y": 4910.448857750268, + "center": [ + 2873.995660708172, + 4909.702270183339 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558142", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2872.272716564681, + "min_y": 4906.547113048581, + "max_x": 2876.7522419662546, + "max_y": 4908.040288182439, + "center": [ + 2874.512479265468, + 4907.29370061551 + ] + }, + "raw_value": "10111", + "clean_value": "10111", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558143", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2869.875716030578, + "min_y": 4902.273763252076, + "max_x": 2880.6265769943548, + "max_y": 4904.065573412705, + "center": [ + 2875.251146512466, + 4903.16966833239 + ] + }, + "raw_value": "%%UD-10113", + "clean_value": "D-10113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558144", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2871.1487156776525, + "min_y": 4893.431655858054, + "max_x": 2876.7481224296193, + "max_y": 4899.031062610022, + "center": [ + 2873.948419053636, + 4896.231359234038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2873.948419053636, + 4896.231359234038 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558145", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2872.52287613504, + "min_y": 4896.790053823159, + "max_x": 2875.210591375984, + "max_y": 4898.283228957017, + "center": [ + 2873.866733755512, + 4897.536641390088 + ] + }, + "raw_value": "PSV", + "clean_value": "PSV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558146", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2872.14378961202, + "min_y": 4894.381484255331, + "max_x": 2876.6233150135936, + "max_y": 4895.874659389189, + "center": [ + 2874.383552312807, + 4895.128071822261 + ] + }, + "raw_value": "10211", + "clean_value": "10211", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558147", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2869.746789077917, + "min_y": 4890.108134458825, + "max_x": 2880.4976500416938, + "max_y": 4891.899944619454, + "center": [ + 2875.1222195598057, + 4891.004039539139 + ] + }, + "raw_value": "%%UD-10213", + "clean_value": "D-10213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558148", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2775.062729388087, + "min_y": 4908.396988027289, + "max_x": 2842.681033808511, + "max_y": 4908.396988027289, + "center": [ + 2808.8718815982993, + 4908.396988027289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2775.062729388087, + 4908.396988027289 + ], + [ + 2842.681033808511, + 4908.396988027289 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558149", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.705284994141, + "min_y": 4896.231359234038, + "max_x": 2842.771446242139, + "max_y": 4896.231359234038, + "center": [ + 2806.73836561814, + 4896.231359234038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.705284994141, + 4896.231359234038 + ], + [ + 2842.771446242139, + 4896.231359234038 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55814A", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2915.8179819264847, + "min_y": 4945.848118813163, + "max_x": 2921.4173886784515, + "max_y": 4951.4475255651305, + "center": [ + 2918.617685302468, + 4948.647822189147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2918.617685302468, + 4948.647822189147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55814B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2917.675333857186, + "min_y": 4949.20651677827, + "max_x": 2919.467144017816, + "max_y": 4950.699691912128, + "center": [ + 2918.571238937501, + 4949.953104345199 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55814C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2916.813055860849, + "min_y": 4946.797947210439, + "max_x": 2921.2925812624226, + "max_y": 4948.291122344297, + "center": [ + 2919.052818561636, + 4947.5445347773675 + ] + }, + "raw_value": "10101", + "clean_value": "10101", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55814D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.017300931222, + "min_y": 5018.411556984366, + "max_x": 2836.482572849133, + "max_y": 5018.411556984366, + "center": [ + 2835.249936890177, + 5018.411556984366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.017300931222, + 5018.411556984366 + ], + [ + 2836.482572849133, + 5018.411556984366 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55814E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.482572849133, + "min_y": 5017.835903616278, + "max_x": 2836.482572849133, + "max_y": 5019.158144551295, + "center": [ + 2836.482572849133, + 5018.4970240837865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.482572849133, + 5019.158144551295 + ], + [ + 2836.482572849133, + 5017.835903616278 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55814F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.731435371442, + "min_y": 5017.835903616278, + "max_x": 2836.731435371442, + "max_y": 5019.158144551295, + "center": [ + 2836.731435371442, + 5018.4970240837865 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.731435371442, + 5019.158144551295 + ], + [ + 2836.731435371442, + 5017.835903616278 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558150", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.731435371442, + "min_y": 5018.411556984366, + "max_x": 2860.27240850367, + "max_y": 5018.411556984366, + "center": [ + 2848.501921937556, + 5018.411556984366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.731435371442, + 5018.411556984366 + ], + [ + 2860.27240850367, + 5018.411556984366 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558151", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2861.765583637528, + "min_y": 5012.724669719297, + "max_x": 2877.982442316951, + "max_y": 5012.724669719297, + "center": [ + 2869.8740129772395, + 5012.724669719297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2861.765583637528, + 5012.724669719297 + ], + [ + 2877.982442316951, + 5012.724669719297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558152", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2857.337755623531, + "min_y": 5003.037897858863, + "max_x": 2877.982442316951, + "max_y": 5003.037897858863, + "center": [ + 2867.660098970241, + 5003.037897858863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2857.337755623531, + 5003.037897858863 + ], + [ + 2877.982442316951, + 5003.037897858863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558153", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2907.608908089362, + "min_y": 5003.784485425791, + "max_x": 2923.7351995350273, + "max_y": 5005.277660559649, + "center": [ + 2915.6720538121945, + 5004.5310729927205 + ] + }, + "raw_value": "VG-10411-65A-F1A-N", + "clean_value": "VG-10411-65A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558154", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2907.427604573025, + "min_y": 5013.626815051662, + "max_x": 2923.55389601869, + "max_y": 5015.11999018552, + "center": [ + 2915.4907502958577, + 5014.37340261859 + ] + }, + "raw_value": "VG-10412-50A-F1A-N", + "clean_value": "VG-10412-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558155", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2933.0409612731505, + "min_y": 4945.848118813163, + "max_x": 2938.6403680251174, + "max_y": 4951.4475255651305, + "center": [ + 2935.840664649134, + 4948.647822189147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2935.840664649134, + 4948.647822189147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558156", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2934.898313203854, + "min_y": 4949.20651677827, + "max_x": 2936.6901233644835, + "max_y": 4950.699691912128, + "center": [ + 2935.794218284169, + 4949.953104345199 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558157", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2934.036035207517, + "min_y": 4946.797947210439, + "max_x": 2938.5155606090907, + "max_y": 4948.291122344297, + "center": [ + 2936.275797908304, + 4947.5445347773675 + ] + }, + "raw_value": "10100", + "clean_value": "10100", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558158", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2924.4729176182095, + "min_y": 4945.848118813163, + "max_x": 2930.0723243701764, + "max_y": 4951.4475255651305, + "center": [ + 2927.272620994193, + 4948.647822189147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2927.272620994193, + 4948.647822189147 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558159", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2926.330269548912, + "min_y": 4949.20651677827, + "max_x": 2928.1220797095416, + "max_y": 4950.699691912128, + "center": [ + 2927.226174629227, + 4949.953104345199 + ] + }, + "raw_value": "BV", + "clean_value": "BV", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55815A", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2925.467991552576, + "min_y": 4946.797947210439, + "max_x": 2929.9475169541497, + "max_y": 4948.291122344297, + "center": [ + 2927.707754253363, + 4947.5445347773675 + ] + }, + "raw_value": "10200", + "clean_value": "10200", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55815B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2861.765583637528, + "min_y": 5015.946285066455, + "max_x": 2861.765583637528, + "max_y": 5016.918381850508, + "center": [ + 2861.765583637528, + 5016.4323334584815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2861.765583637528, + 5016.918381850508 + ], + [ + 2861.765583637528, + 5015.946285066455 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55815C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2861.018996070599, + "min_y": 5015.946285066455, + "max_x": 2862.512171204457, + "max_y": 5015.946285066455, + "center": [ + 2861.765583637528, + 5015.946285066455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2862.512171204457, + 5015.946285066455 + ], + [ + 2861.018996070599, + 5015.946285066455 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55815D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2861.018996070599, + "min_y": 5015.697422544145, + "max_x": 2862.512171204457, + "max_y": 5015.697422544145, + "center": [ + 2861.765583637528, + 5015.697422544145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2862.512171204457, + 5015.697422544145 + ], + [ + 2861.018996070599, + 5015.697422544145 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55815E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2857.337755623531, + "min_y": 5015.946285066455, + "max_x": 2857.337755623531, + "max_y": 5016.918381850508, + "center": [ + 2857.337755623531, + 5016.4323334584815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2857.337755623531, + 5016.918381850508 + ], + [ + 2857.337755623531, + 5015.946285066455 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55815F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2856.591168056602, + "min_y": 5015.946285066455, + "max_x": 2858.08434319046, + "max_y": 5015.946285066455, + "center": [ + 2857.337755623531, + 5015.946285066455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.08434319046, + 5015.946285066455 + ], + [ + 2856.591168056602, + 5015.946285066455 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558160", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2856.591168056602, + "min_y": 5015.697422544146, + "max_x": 2858.08434319046, + "max_y": 5015.697422544146, + "center": [ + 2857.337755623531, + 5015.697422544146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.08434319046, + 5015.697422544146 + ], + [ + 2856.591168056602, + 5015.697422544146 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558161", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2858.779233369812, + "min_y": 5015.42520671665, + "max_x": 2861.7655836375275, + "max_y": 5018.411556984366, + "center": [ + 2860.27240850367, + 5016.918381850508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.27240850367, + 5016.918381850508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558162", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2854.351405355815, + "min_y": 5015.42520671665, + "max_x": 2857.3377556235305, + "max_y": 5018.411556984366, + "center": [ + 2855.844580489673, + 5016.918381850508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.844580489673, + 5016.918381850508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558163", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2861.765583637528, + "min_y": 5012.724669719297, + "max_x": 2861.765583637528, + "max_y": 5015.697422544145, + "center": [ + 2861.765583637528, + 5014.211046131721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2861.765583637528, + 5015.697422544145 + ], + [ + 2861.765583637528, + 5012.724669719297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558164", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2857.337755623531, + "min_y": 5003.037897858863, + "max_x": 2857.337755623531, + "max_y": 5016.887086781888, + "center": [ + 2857.337755623531, + 5009.9624923203755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2857.337755623531, + 5016.887086781888 + ], + [ + 2857.337755623531, + 5003.037897858863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558165", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2877.982442316951, + "min_y": 5012.724669719297, + "max_x": 2931.204631755422, + "max_y": 5012.724669719297, + "center": [ + 2904.5935370361867, + 5012.724669719297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2877.982442316951, + 5012.724669719297 + ], + [ + 2931.204631755422, + 5012.724669719297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558166", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2877.982442316951, + "min_y": 5003.037897858863, + "max_x": 2931.204631755422, + "max_y": 5003.037897858863, + "center": [ + 2904.5935370361867, + 5003.037897858863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2877.982442316951, + 5003.037897858863 + ], + [ + 2931.204631755422, + 5003.037897858863 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558167", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2833.175918261698, + "min_y": 4948.942666619525, + "max_x": 2833.175918261698, + "max_y": 4997.374473538872, + "center": [ + 2833.175918261698, + 4973.158570079198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.175918261698, + 4997.374473538872 + ], + [ + 2833.175918261698, + 4948.942666619525 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558168", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.82997818693, + "min_y": 4948.942666619525, + "max_x": 2833.175918261698, + "max_y": 4948.942666619525, + "center": [ + 2788.002948224314, + 4948.942666619525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.175918261698, + 4948.942666619525 + ], + [ + 2742.82997818693, + 4948.942666619525 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558169", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.82997818693, + "min_y": 4909.496201378504, + "max_x": 2742.82997818693, + "max_y": 4948.942666619525, + "center": [ + 2742.82997818693, + 4929.219433999015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.82997818693, + 4948.942666619525 + ], + [ + 2742.82997818693, + 4909.496201378504 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2836.285954682223, + "min_y": 5086.457580919589, + "max_x": 2836.285954682223, + "max_y": 5087.968355046145, + "center": [ + 2836.285954682223, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.285954682223, + 5086.457580919589 + ], + [ + 2836.285954682223, + 5087.968355046145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2833.863594248673, + "min_y": 5086.457580919589, + "max_x": 2833.863594248673, + "max_y": 5087.968355046145, + "center": [ + 2833.863594248673, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.863594248673, + 5086.457580919589 + ], + [ + 2833.863594248673, + 5087.968355046145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2835.460372482013, + "min_y": 5087.453457176219, + "max_x": 2836.285954682223, + "max_y": 5087.968355046145, + "center": [ + 2835.8731635821177, + 5087.710906111182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.285954682223, + 5087.968355046145 + ], + [ + 2835.460372482013, + 5087.453457176219 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2835.460372482013, + "min_y": 5086.457580919589, + "max_x": 2836.285954682223, + "max_y": 5086.972478789515, + "center": [ + 2835.8731635821177, + 5086.715029854552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.285954682223, + 5086.457580919589 + ], + [ + 2835.460372482013, + 5086.972478789515 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2834.6203287783806, + "min_y": 5086.758522295799, + "max_x": 2835.5292201525194, + "max_y": 5087.6674136699385, + "center": [ + 2835.07477446545, + 5087.212967982869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.07477446545, + 5087.212967982869 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55816F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2833.863594248673, + "min_y": 5087.453457176219, + "max_x": 2834.689176448887, + "max_y": 5087.968355046145, + "center": [ + 2834.27638534878, + 5087.710906111182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.689176448887, + 5087.453457176219 + ], + [ + 2833.863594248673, + 5087.968355046145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558170", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2833.863594248673, + "min_y": 5086.457580919589, + "max_x": 2834.689176448887, + "max_y": 5086.972478789515, + "center": [ + 2834.27638534878, + 5086.715029854552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.689176448887, + 5086.972478789515 + ], + [ + 2833.863594248673, + 5086.457580919589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558171", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2833.366366929098, + "min_y": 5086.457580919589, + "max_x": 2833.366366929098, + "max_y": 5087.968355046145, + "center": [ + 2833.366366929098, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.366366929098, + 5086.457580919589 + ], + [ + 2833.366366929098, + 5087.968355046145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558172", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2836.783182001799, + "min_y": 5086.457580919589, + "max_x": 2836.783182001799, + "max_y": 5087.968355046145, + "center": [ + 2836.783182001799, + 5087.212967982867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.783182001799, + 5086.457580919589 + ], + [ + 2836.783182001799, + 5087.968355046145 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558173", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2817.433849680216, + "min_y": 5000.710107012475, + "max_x": 2817.433849680216, + "max_y": 5002.22088113903, + "center": [ + 2817.433849680216, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.433849680216, + 5000.710107012475 + ], + [ + 2817.433849680216, + 5002.22088113903 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558174", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2815.011489246666, + "min_y": 5000.710107012475, + "max_x": 2815.011489246666, + "max_y": 5002.22088113903, + "center": [ + 2815.011489246666, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2815.011489246666, + 5000.710107012475 + ], + [ + 2815.011489246666, + 5002.22088113903 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558175", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2816.608267480007, + "min_y": 5001.705983269104, + "max_x": 2817.433849680216, + "max_y": 5002.22088113903, + "center": [ + 2817.0210585801115, + 5001.963432204067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.433849680216, + 5002.22088113903 + ], + [ + 2816.608267480007, + 5001.705983269104 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558176", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2816.608267480007, + "min_y": 5000.710107012475, + "max_x": 2817.433849680216, + "max_y": 5001.2250048824, + "center": [ + 2817.0210585801115, + 5000.967555947438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.433849680216, + 5000.710107012475 + ], + [ + 2816.608267480007, + 5001.2250048824 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558177", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2815.7682237763747, + "min_y": 5001.011048388684, + "max_x": 2816.6771151505136, + "max_y": 5001.919939762824, + "center": [ + 2816.222669463444, + 5001.465494075754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2816.222669463444, + 5001.465494075754 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558178", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2815.011489246666, + "min_y": 5001.705983269104, + "max_x": 2815.83707144688, + "max_y": 5002.22088113903, + "center": [ + 2815.4242803467732, + 5001.963432204067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2815.83707144688, + 5001.705983269104 + ], + [ + 2815.011489246666, + 5002.22088113903 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558179", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2815.011489246666, + "min_y": 5000.710107012475, + "max_x": 2815.83707144688, + "max_y": 5001.2250048824, + "center": [ + 2815.4242803467732, + 5000.967555947438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2815.83707144688, + 5001.2250048824 + ], + [ + 2815.011489246666, + 5000.710107012475 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2814.514261927092, + "min_y": 5000.710107012475, + "max_x": 2814.514261927092, + "max_y": 5002.22088113903, + "center": [ + 2814.514261927092, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2814.514261927092, + 5000.710107012475 + ], + [ + 2814.514261927092, + 5002.22088113903 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2817.931076999792, + "min_y": 5000.710107012475, + "max_x": 2817.931076999792, + "max_y": 5002.22088113903, + "center": [ + 2817.931076999792, + 5001.465494075753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2817.931076999792, + 5000.710107012475 + ], + [ + 2817.931076999792, + 5002.22088113903 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4992.205610137048, + "max_x": 2833.184717758046, + "max_y": 4992.205610137048, + "center": [ + 2832.4293306947684, + 4992.205610137048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.673943631491, + 4992.205610137048 + ], + [ + 2833.184717758046, + 4992.205610137048 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4994.627970570598, + "max_x": 2833.184717758046, + "max_y": 4994.627970570598, + "center": [ + 2832.4293306947684, + 4994.627970570598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.673943631491, + 4994.627970570598 + ], + [ + 2833.184717758046, + 4994.627970570598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2832.66981988812, + "min_y": 4992.205610137048, + "max_x": 2833.184717758046, + "max_y": 4993.031192337258, + "center": [ + 2832.927268823083, + 4992.618401237153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2833.184717758046, + 4992.205610137048 + ], + [ + 2832.66981988812, + 4993.031192337258 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55817F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4992.205610137048, + "max_x": 2832.188841501416, + "max_y": 4993.031192337258, + "center": [ + 2831.9313925664537, + 4992.618401237153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.673943631491, + 4992.205610137048 + ], + [ + 2832.188841501416, + 4993.031192337258 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558180", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.9748850076994, + "min_y": 4992.96234466675, + "max_x": 2832.8837763818383, + "max_y": 4993.87123604089, + "center": [ + 2832.429330694769, + 4993.41679035382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.429330694769, + 4993.41679035382 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558181", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2832.66981988812, + "min_y": 4993.802388370383, + "max_x": 2833.184717758046, + "max_y": 4994.627970570598, + "center": [ + 2832.927268823083, + 4994.2151794704905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.66981988812, + 4993.802388370383 + ], + [ + 2833.184717758046, + 4994.627970570598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558182", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4993.802388370383, + "max_x": 2832.188841501416, + "max_y": 4994.627970570598, + "center": [ + 2831.9313925664537, + 4994.2151794704905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2832.188841501416, + 4993.802388370383 + ], + [ + 2831.673943631491, + 4994.627970570598 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558183", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4995.125197890173, + "max_x": 2833.184717758046, + "max_y": 4995.125197890173, + "center": [ + 2832.4293306947684, + 4995.125197890173 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.673943631491, + 4995.125197890173 + ], + [ + 2833.184717758046, + 4995.125197890173 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558184", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2831.673943631491, + "min_y": 4991.708382817472, + "max_x": 2833.184717758046, + "max_y": 4991.708382817472, + "center": [ + 2832.4293306947684, + 4991.708382817472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.673943631491, + 4991.708382817472 + ], + [ + 2833.184717758046, + 4991.708382817472 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558185", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2790.957019357434, + "min_y": 4998.665790699964, + "max_x": 2795.506537343407, + "max_y": 4999.575694297159, + "center": [ + 2793.2317783504204, + 4999.120742498562 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 70\\P H 68\\P L 50\\P LL 30", + "clean_value": "\\Fmonotxt.shx; .6; HH 70 H 68 L 50 LL 30", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558189", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2898.633449658069, + "min_y": 5012.724669719297, + "max_x": 2900.594120231954, + "max_y": 5012.724669719297, + "center": [ + 2899.6137849450115, + 5012.724669719297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2898.633449658069, + 5012.724669719297 + ], + [ + 2900.594120231954, + 5012.724669719297 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55818A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2897.734140571268, + "min_y": 5003.037897858863, + "max_x": 2899.694811145151, + "max_y": 5003.037897858863, + "center": [ + 2898.71447585821, + 5003.037897858863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2897.734140571268, + 5003.037897858863 + ], + [ + 2899.694811145151, + 5003.037897858863 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55818B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2831.192484905793, + "min_y": 5016.104513784693, + "max_x": 2834.018317951708, + "max_y": 5016.104513784693, + "center": [ + 2832.6054014287506, + 5016.104513784693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.018317951708, + 5016.104513784693 + ], + [ + 2831.192484905793, + 5016.104513784693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55818C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2831.425663235875, + "min_y": 5018.411556984366, + "max_x": 2834.017300931222, + "max_y": 5018.411556984366, + "center": [ + 2832.721482083549, + 5018.411556984366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.017300931222, + 5018.411556984366 + ], + [ + 2831.425663235875, + 5018.411556984366 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55818D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2831.192484905793, + "min_y": 5014.572034805702, + "max_x": 2831.192484905793, + "max_y": 5016.104513784693, + "center": [ + 2831.192484905793, + 5015.338274295198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2831.192484905793, + 5016.104513784693 + ], + [ + 2831.192484905793, + 5014.572034805702 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55818E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.026885479688, + "min_y": 5063.147290781306, + "max_x": 2836.4921573976, + "max_y": 5063.147290781306, + "center": [ + 2835.259521438644, + 5063.147290781306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.026885479688, + 5063.147290781306 + ], + [ + 2836.4921573976, + 5063.147290781306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55818F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.4921573976, + "min_y": 5062.400703214377, + "max_x": 2836.4921573976, + "max_y": 5063.893878348235, + "center": [ + 2836.4921573976, + 5063.147290781306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.4921573976, + 5063.893878348235 + ], + [ + 2836.4921573976, + 5062.400703214377 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558190", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.741019919908, + "min_y": 5062.400703214377, + "max_x": 2836.741019919908, + "max_y": 5063.893878348235, + "center": [ + 2836.741019919908, + 5063.147290781306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.741019919908, + 5063.893878348235 + ], + [ + 2836.741019919908, + 5062.400703214377 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558191", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.688958920524, + "min_y": 4987.151345488808, + "max_x": 2848.688958920524, + "max_y": 4994.914328269939, + "center": [ + 2848.688958920524, + 4991.0328368793735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.688958920524, + 4987.151345488808 + ], + [ + 2848.688958920524, + 4994.914328269939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558192", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.327288926797, + "min_y": 4994.914328269939, + "max_x": 2848.688958920524, + "max_y": 4994.914328269939, + "center": [ + 2846.5081239236606, + 4994.914328269939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.688958920524, + 4994.914328269939 + ], + [ + 2844.327288926797, + 4994.914328269939 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558193", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.327288926797, + "min_y": 4987.151345488808, + "max_x": 2844.327288926797, + "max_y": 4994.914328269939, + "center": [ + 2844.327288926797, + 4991.0328368793735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.327288926797, + 4994.914328269939 + ], + [ + 2844.327288926797, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558194", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2840.879856968894, + "min_y": 4987.151345488808, + "max_x": 2844.327288926797, + "max_y": 4987.151345488808, + "center": [ + 2842.6035729478454, + 4987.151345488808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.327288926797, + 4987.151345488808 + ], + [ + 2840.879856968894, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558195", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.996761989657, + "min_y": 5006.537183424276, + "max_x": 2834.996761989657, + "max_y": 5012.374108299102, + "center": [ + 2834.996761989657, + 5009.455645861689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5012.374108299102 + ], + [ + 2834.996761989657, + 5006.537183424276 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558196", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5010.903260055943, + "max_x": 2834.996761989657, + "max_y": 5011.883825551382, + "center": [ + 2834.5064792419375, + 5011.393542803662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5010.903260055943 + ], + [ + 2834.016196494218, + 5011.883825551382 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558197", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5010.20989554472, + "max_x": 2834.996761989657, + "max_y": 5011.19046104016, + "center": [ + 2834.5064792419375, + 5010.70017829244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5010.20989554472 + ], + [ + 2834.016196494218, + 5011.19046104016 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558198", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5009.516531033497, + "max_x": 2834.996761989657, + "max_y": 5010.497096528936, + "center": [ + 2834.5064792419375, + 5010.006813781216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5009.516531033497 + ], + [ + 2834.016196494218, + 5010.497096528936 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558199", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5008.823166522275, + "max_x": 2834.996761989657, + "max_y": 5009.803732017713, + "center": [ + 2834.5064792419375, + 5009.313449269994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5008.823166522275 + ], + [ + 2834.016196494218, + 5009.803732017713 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55819A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5008.129802011051, + "max_x": 2834.996761989657, + "max_y": 5009.110367506491, + "center": [ + 2834.5064792419375, + 5008.620084758771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5008.129802011051 + ], + [ + 2834.016196494218, + 5009.110367506491 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55819B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016196494218, + "min_y": 5007.43643749983, + "max_x": 2834.996761989657, + "max_y": 5008.417002995269, + "center": [ + 2834.5064792419375, + 5007.926720247549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5007.43643749983 + ], + [ + 2834.016196494218, + 5008.417002995269 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55819C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2837.097449530607, + "min_y": 5006.960121074651, + "max_x": 2840.6810698518657, + "max_y": 5008.4532962085095, + "center": [ + 2838.8892596912365, + 5007.706708641581 + ] + }, + "raw_value": "H100", + "clean_value": "H100", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55819D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2834.016927043121, + "min_y": 5012.374108299102, + "max_x": 2834.996761989657, + "max_y": 5012.374108299102, + "center": [ + 2834.506844516389, + 5012.374108299102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2834.996761989657, + 5012.374108299102 + ], + [ + 2834.016927043121, + 5012.374108299102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55819E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.888544688153, + "min_y": 4997.864840606681, + "max_x": 2860.028652249143, + "max_y": 4997.864840606681, + "center": [ + 2859.4585984686482, + 4997.864840606681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.028652249143, + 4997.864840606681 + ], + [ + 2858.888544688153, + 4997.864840606681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55819F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.888544688153, + "min_y": 4997.864840606681, + "max_x": 2858.888544688153, + "max_y": 4998.490913545702, + "center": [ + 2858.888544688153, + 4998.177877076192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.888544688153, + 4998.490913545702 + ], + [ + 2858.888544688153, + 4997.864840606681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2860.028652249143, + "min_y": 4997.864840606681, + "max_x": 2860.028652249143, + "max_y": 4998.490913545702, + "center": [ + 2860.028652249143, + 4998.177877076192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.028652249143, + 4998.490913545702 + ], + [ + 2860.028652249143, + 4997.864840606681 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 4999.979808123222, + "max_x": 2859.277834527266, + "max_y": 5000.596039569359, + "center": [ + 2859.093352816896, + 5000.28792384629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.908871106527, + 4999.979808123222 + ], + [ + 2859.277834527266, + 5000.596039569359 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 4999.979808123222, + "max_x": 2860.008325830769, + "max_y": 4999.979808123222, + "center": [ + 2859.4585984686482, + 4999.979808123222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.008325830769, + 4999.979808123222 + ], + [ + 2858.908871106527, + 4999.979808123222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2859.63936241003, + "min_y": 4999.979808123222, + "max_x": 2860.008325830769, + "max_y": 5000.596039569359, + "center": [ + 2859.8238441203994, + 5000.28792384629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.63936241003, + 5000.596039569359 + ], + [ + 2860.008325830769, + 4999.979808123222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 5001.19985240688, + "max_x": 2859.277834527263, + "max_y": 5001.816083853021, + "center": [ + 2859.0933528168953, + 5001.50796812995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.908871106527, + 5001.816083853021 + ], + [ + 2859.277834527263, + 5001.19985240688 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 5001.816083853021, + "max_x": 2860.008325830769, + "max_y": 5001.816083853021, + "center": [ + 2859.4585984686482, + 5001.816083853021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.008325830769, + 5001.816083853021 + ], + [ + 2858.908871106527, + 5001.816083853021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2859.639362410033, + "min_y": 5001.19985240688, + "max_x": 2860.008325830769, + "max_y": 5001.816083853021, + "center": [ + 2859.823844120401, + 5001.50796812995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.639362410033, + 5001.19985240688 + ], + [ + 2860.008325830769, + 5001.816083853021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.904523170893, + "min_y": 5002.143249705, + "max_x": 2860.016313805701, + "max_y": 5002.143249705, + "center": [ + 2859.460418488297, + 5002.143249705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.016313805701, + 5002.143249705 + ], + [ + 2858.904523170893, + 5002.143249705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.904523170893, + "min_y": 5002.143249705, + "max_x": 2860.016313805701, + "max_y": 5002.143249705, + "center": [ + 2859.460418488297, + 5002.143249705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.016313805701, + 5002.143249705 + ], + [ + 2858.904523170893, + 5002.143249705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581A9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.902703151246, + "min_y": 4999.652642271238, + "max_x": 2860.014493786051, + "max_y": 4999.652642271238, + "center": [ + 2859.4585984686482, + 4999.652642271238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.014493786051, + 4999.652642271238 + ], + [ + 2858.902703151246, + 4999.652642271238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.902703151246, + "min_y": 4999.979808123222, + "max_x": 2860.014493786051, + "max_y": 4999.979808123222, + "center": [ + 2859.4585984686482, + 4999.979808123222 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.014493786051, + 4999.979808123222 + ], + [ + 2858.902703151246, + 4999.979808123222 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 4999.652642271238, + "max_x": 2860.008325830769, + "max_y": 4999.652642271238, + "center": [ + 2859.4585984686482, + 4999.652642271238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.908871106527, + 4999.652642271238 + ], + [ + 2860.008325830769, + 4999.652642271238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.908871106527, + "min_y": 5002.143249705, + "max_x": 2860.008325830769, + "max_y": 5002.143249705, + "center": [ + 2859.4585984686482, + 5002.143249705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2858.908871106527, + 5002.143249705 + ], + [ + 2860.008325830769, + 5002.143249705 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AD", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2859.106713418961, + "min_y": 5000.5460609384345, + "max_x": 2859.8104835183344, + "max_y": 5001.249831037808, + "center": [ + 2859.458598468648, + 5000.897945988121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.458598468648, + 5000.897945988121 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2858.888544688153, + "min_y": 4999.652642271238, + "max_x": 2860.028652249143, + "max_y": 4999.652642271238, + "center": [ + 2859.4585984686482, + 4999.652642271238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2860.028652249143, + 4999.652642271238 + ], + [ + 2858.888544688153, + 4999.652642271238 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581AF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2859.458598468648, + "min_y": 5002.143249705, + "max_x": 2859.458598468648, + "max_y": 5002.958039140081, + "center": [ + 2859.458598468648, + 5002.550644422541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.458598468648, + 5002.143249705 + ], + [ + 2859.458598468648, + 5002.958039140081 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581B0", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2859.458598468648, + "min_y": 5002.143249705, + "max_x": 2859.458598468648, + "max_y": 5002.958039140081, + "center": [ + 2859.458598468648, + 5002.550644422541 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.458598468648, + 5002.143249705 + ], + [ + 2859.458598468648, + 5002.958039140081 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581B1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2859.458598468648, + "min_y": 4998.488768661822, + "max_x": 2859.458598468648, + "max_y": 4999.652642271238, + "center": [ + 2859.458598468648, + 4999.07070546653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2859.458598468648, + 4998.488768661822 + ], + [ + 2859.458598468648, + 4999.652642271238 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.082716435414, + "min_y": 4982.058146955406, + "max_x": 2855.222823996404, + "max_y": 4982.058146955406, + "center": [ + 2854.652770215909, + 4982.058146955406 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.222823996404, + 4982.058146955406 + ], + [ + 2854.082716435414, + 4982.058146955406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.082716435414, + "min_y": 4982.058146955406, + "max_x": 2854.082716435414, + "max_y": 4982.684219894427, + "center": [ + 2854.082716435414, + 4982.371183424917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.082716435414, + 4982.684219894427 + ], + [ + 2854.082716435414, + 4982.058146955406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2855.222823996404, + "min_y": 4982.058146955406, + "max_x": 2855.222823996404, + "max_y": 4982.684219894427, + "center": [ + 2855.222823996404, + 4982.371183424917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.222823996404, + 4982.684219894427 + ], + [ + 2855.222823996404, + 4982.058146955406 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4984.173114471946, + "max_x": 2854.472006274527, + "max_y": 4984.789345918083, + "center": [ + 2854.287524564157, + 4984.481230195015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.103042853788, + 4984.173114471946 + ], + [ + 2854.472006274527, + 4984.789345918083 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4984.173114471946, + "max_x": 2855.20249757803, + "max_y": 4984.173114471946, + "center": [ + 2854.652770215909, + 4984.173114471946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.20249757803, + 4984.173114471946 + ], + [ + 2854.103042853788, + 4984.173114471946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.833534157291, + "min_y": 4984.173114471946, + "max_x": 2855.20249757803, + "max_y": 4984.789345918083, + "center": [ + 2855.0180158676603, + 4984.481230195015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.833534157291, + 4984.789345918083 + ], + [ + 2855.20249757803, + 4984.173114471946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4985.393158755606, + "max_x": 2854.472006274524, + "max_y": 4986.009390201747, + "center": [ + 2854.2875245641562, + 4985.701274478677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.103042853788, + 4986.009390201747 + ], + [ + 2854.472006274524, + 4985.393158755606 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4986.009390201747, + "max_x": 2855.20249757803, + "max_y": 4986.009390201747, + "center": [ + 2854.652770215909, + 4986.009390201747 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.20249757803, + 4986.009390201747 + ], + [ + 2854.103042853788, + 4986.009390201747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.833534157294, + "min_y": 4985.393158755606, + "max_x": 2855.20249757803, + "max_y": 4986.009390201747, + "center": [ + 2855.018015867662, + 4985.701274478677 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.833534157294, + 4985.393158755606 + ], + [ + 2855.20249757803, + 4986.009390201747 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.098694918154, + "min_y": 4986.336556053724, + "max_x": 2855.210485552962, + "max_y": 4986.336556053724, + "center": [ + 2854.654590235558, + 4986.336556053724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.210485552962, + 4986.336556053724 + ], + [ + 2854.098694918154, + 4986.336556053724 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.098694918154, + "min_y": 4986.336556053724, + "max_x": 2855.210485552962, + "max_y": 4986.336556053724, + "center": [ + 2854.654590235558, + 4986.336556053724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.210485552962, + 4986.336556053724 + ], + [ + 2854.098694918154, + 4986.336556053724 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.096874898507, + "min_y": 4983.845948619965, + "max_x": 2855.208665533312, + "max_y": 4983.845948619965, + "center": [ + 2854.652770215909, + 4983.845948619965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.208665533312, + 4983.845948619965 + ], + [ + 2854.096874898507, + 4983.845948619965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.096874898507, + "min_y": 4984.173114471946, + "max_x": 2855.208665533312, + "max_y": 4984.173114471946, + "center": [ + 2854.652770215909, + 4984.173114471946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.208665533312, + 4984.173114471946 + ], + [ + 2854.096874898507, + 4984.173114471946 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4983.845948619965, + "max_x": 2855.20249757803, + "max_y": 4983.845948619965, + "center": [ + 2854.652770215909, + 4983.845948619965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.103042853788, + 4983.845948619965 + ], + [ + 2855.20249757803, + 4983.845948619965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.103042853788, + "min_y": 4986.336556053724, + "max_x": 2855.20249757803, + "max_y": 4986.336556053724, + "center": [ + 2854.652770215909, + 4986.336556053724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.103042853788, + 4986.336556053724 + ], + [ + 2855.20249757803, + 4986.336556053724 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C1", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2854.3008851662225, + "min_y": 4984.73936728716, + "max_x": 2855.004655265596, + "max_y": 4985.443137386534, + "center": [ + 2854.652770215909, + 4985.091252336847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.652770215909, + 4985.091252336847 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2854.082716435414, + "min_y": 4983.845948619965, + "max_x": 2855.222823996404, + "max_y": 4983.845948619965, + "center": [ + 2854.652770215909, + 4983.845948619965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.222823996404, + 4983.845948619965 + ], + [ + 2854.082716435414, + 4983.845948619965 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C3", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2854.652770215909, + "min_y": 4986.336556053724, + "max_x": 2854.652770215909, + "max_y": 4987.151345488808, + "center": [ + 2854.652770215909, + 4986.743950771266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.652770215909, + 4986.336556053724 + ], + [ + 2854.652770215909, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581C4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2854.652770215909, + "min_y": 4986.336556053724, + "max_x": 2854.652770215909, + "max_y": 4987.151345488808, + "center": [ + 2854.652770215909, + 4986.743950771266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.652770215909, + 4986.336556053724 + ], + [ + 2854.652770215909, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581C5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2854.652770215909, + "min_y": 4982.682075010547, + "max_x": 2854.652770215909, + "max_y": 4983.845948619965, + "center": [ + 2854.652770215909, + 4983.264011815256 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2854.652770215909, + 4982.682075010547 + ], + [ + 2854.652770215909, + 4983.845948619965 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.936276146823, + "min_y": 5007.631471185896, + "max_x": 2866.076383707813, + "max_y": 5007.631471185896, + "center": [ + 2865.506329927318, + 5007.631471185896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.076383707813, + 5007.631471185896 + ], + [ + 2864.936276146823, + 5007.631471185896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.936276146823, + "min_y": 5007.631471185896, + "max_x": 2864.936276146823, + "max_y": 5008.257544124917, + "center": [ + 2864.936276146823, + 5007.944507655407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2864.936276146823, + 5008.257544124917 + ], + [ + 2864.936276146823, + 5007.631471185896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2866.076383707813, + "min_y": 5007.631471185896, + "max_x": 2866.076383707813, + "max_y": 5008.257544124917, + "center": [ + 2866.076383707813, + 5007.944507655407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.076383707813, + 5008.257544124917 + ], + [ + 2866.076383707813, + 5007.631471185896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5009.746438702437, + "max_x": 2865.325565985937, + "max_y": 5010.362670148573, + "center": [ + 2865.1410842755668, + 5010.054554425506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2864.956602565197, + 5009.746438702437 + ], + [ + 2865.325565985937, + 5010.362670148573 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5009.746438702437, + "max_x": 2866.056057289439, + "max_y": 5009.746438702437, + "center": [ + 2865.506329927318, + 5009.746438702437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.056057289439, + 5009.746438702437 + ], + [ + 2864.956602565197, + 5009.746438702437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2865.687093868699, + "min_y": 5009.746438702437, + "max_x": 2866.056057289439, + "max_y": 5010.362670148573, + "center": [ + 2865.871575579069, + 5010.054554425506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.687093868699, + 5010.362670148573 + ], + [ + 2866.056057289439, + 5009.746438702437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5010.966482986096, + "max_x": 2865.325565985934, + "max_y": 5011.582714432236, + "center": [ + 2865.141084275566, + 5011.274598709166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2864.956602565197, + 5011.582714432236 + ], + [ + 2865.325565985934, + 5010.966482986096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5011.582714432236, + "max_x": 2866.056057289439, + "max_y": 5011.582714432236, + "center": [ + 2865.506329927318, + 5011.582714432236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.056057289439, + 5011.582714432236 + ], + [ + 2864.956602565197, + 5011.582714432236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2865.687093868702, + "min_y": 5010.966482986096, + "max_x": 2866.056057289439, + "max_y": 5011.582714432236, + "center": [ + 2865.871575579071, + 5011.274598709166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.687093868702, + 5010.966482986096 + ], + [ + 2866.056057289439, + 5011.582714432236 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.952254629562, + "min_y": 5011.909880284214, + "max_x": 2866.064045264371, + "max_y": 5011.909880284214, + "center": [ + 2865.5081499469666, + 5011.909880284214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.064045264371, + 5011.909880284214 + ], + [ + 2864.952254629562, + 5011.909880284214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.952254629562, + "min_y": 5011.909880284214, + "max_x": 2866.064045264371, + "max_y": 5011.909880284214, + "center": [ + 2865.5081499469666, + 5011.909880284214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.064045264371, + 5011.909880284214 + ], + [ + 2864.952254629562, + 5011.909880284214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.950434609916, + "min_y": 5009.419272850453, + "max_x": 2866.062225244721, + "max_y": 5009.419272850453, + "center": [ + 2865.506329927319, + 5009.419272850453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.062225244721, + 5009.419272850453 + ], + [ + 2864.950434609916, + 5009.419272850453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.950434609916, + "min_y": 5009.746438702437, + "max_x": 2866.062225244721, + "max_y": 5009.746438702437, + "center": [ + 2865.506329927319, + 5009.746438702437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.062225244721, + 5009.746438702437 + ], + [ + 2864.950434609916, + 5009.746438702437 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5009.419272850453, + "max_x": 2866.056057289439, + "max_y": 5009.419272850453, + "center": [ + 2865.506329927318, + 5009.419272850453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2864.956602565197, + 5009.419272850453 + ], + [ + 2866.056057289439, + 5009.419272850453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.956602565197, + "min_y": 5011.909880284214, + "max_x": 2866.056057289439, + "max_y": 5011.909880284214, + "center": [ + 2865.506329927318, + 5011.909880284214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2864.956602565197, + 5011.909880284214 + ], + [ + 2866.056057289439, + 5011.909880284214 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2865.1544448776303, + "min_y": 5010.312691517649, + "max_x": 2865.8582149770036, + "max_y": 5011.016461617022, + "center": [ + 2865.506329927317, + 5010.664576567336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.506329927317, + 5010.664576567336 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2864.936276146823, + "min_y": 5009.419272850453, + "max_x": 2866.076383707813, + "max_y": 5009.419272850453, + "center": [ + 2865.506329927318, + 5009.419272850453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2866.076383707813, + 5009.419272850453 + ], + [ + 2864.936276146823, + 5009.419272850453 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5581D7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2865.506329927317, + "min_y": 5011.909880284214, + "max_x": 2865.506329927317, + "max_y": 5012.724669719297, + "center": [ + 2865.506329927317, + 5012.317275001755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.506329927317, + 5011.909880284214 + ], + [ + 2865.506329927317, + 5012.724669719297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581D8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2865.506329927317, + "min_y": 5011.909880284214, + "max_x": 2865.506329927317, + "max_y": 5012.724669719297, + "center": [ + 2865.506329927317, + 5012.317275001755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.506329927317, + 5011.909880284214 + ], + [ + 2865.506329927317, + 5012.724669719297 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581D9", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2865.506329927317, + "min_y": 5008.255399241037, + "max_x": 2865.506329927317, + "max_y": 5009.419272850453, + "center": [ + 2865.506329927317, + 5008.837336045744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2865.506329927317, + 5008.255399241037 + ], + [ + 2865.506329927317, + 5009.419272850453 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2935.840664649134, + "min_y": 4951.44752556513, + "max_x": 2935.840664649134, + "max_y": 4987.151345488807, + "center": [ + 2935.840664649134, + 4969.299435526968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2935.840664649134, + 4951.44752556513 + ], + [ + 2935.840664649134, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2927.272620994193, + "min_y": 4951.44752556513, + "max_x": 2927.272620994193, + "max_y": 4987.151345488807, + "center": [ + 2927.272620994193, + 4969.299435526968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2927.272620994193, + 4951.44752556513 + ], + [ + 2927.272620994193, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2918.617685302468, + "min_y": 4951.44752556513, + "max_x": 2918.617685302468, + "max_y": 4987.151345488807, + "center": [ + 2918.617685302468, + 4969.299435526968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2918.617685302468, + 4951.44752556513 + ], + [ + 2918.617685302468, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2909.851788896747, + "min_y": 4951.44752556513, + "max_x": 2909.851788896747, + "max_y": 4987.151345488807, + "center": [ + 2909.851788896747, + 4969.299435526968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2909.851788896747, + 4951.44752556513 + ], + [ + 2909.851788896747, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2900.753010349036, + "min_y": 4951.44752556513, + "max_x": 2900.753010349036, + "max_y": 4987.151345488807, + "center": [ + 2900.753010349036, + 4969.299435526968 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2900.753010349036, + 4951.44752556513 + ], + [ + 2900.753010349036, + 4987.151345488807 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2642.209224020394, + "min_y": 4863.821878901873, + "max_x": 2642.209224020394, + "max_y": 4874.830833256319, + "center": [ + 2642.209224020394, + 4869.3263560790965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.209224020394, + 4874.830833256319 + ], + [ + 2642.209224020394, + 4863.821878901873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2627.241768641888, + "min_y": 4841.601612088994, + "max_x": 2642.209224020394, + "max_y": 4841.601612088994, + "center": [ + 2634.7254963311407, + 4841.601612088994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2627.241768641888, + 4841.601612088994 + ], + [ + 2642.209224020394, + 4841.601612088994 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2642.209224020394, + "min_y": 4841.601612088994, + "max_x": 2642.209224020394, + "max_y": 4849.137134891769, + "center": [ + 2642.209224020394, + 4845.369373490382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2642.209224020394, + 4841.601612088994 + ], + [ + 2642.209224020394, + 4849.137134891769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581E2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2760.470263299432, + "min_y": 4911.27879550685, + "max_x": 2760.470263299432, + "max_y": 4913.239466080735, + "center": [ + 2760.470263299432, + 4912.259130793793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.470263299432, + 4913.239466080735 + ], + [ + 2760.470263299432, + 4911.27879550685 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5581E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2606.722395651768, + "min_y": 4863.821878901873, + "max_x": 2639.542842425104, + "max_y": 4863.821878901873, + "center": [ + 2623.132619038436, + 4863.821878901873 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.542842425104, + 4863.821878901873 + ], + [ + 2606.722395651768, + 4863.821878901873 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4848.386394897168, + "max_x": 2641.352100901933, + "max_y": 4848.80055029529, + "center": [ + 2640.4474716635186, + 4848.593472596229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4848.386394897168 + ], + [ + 2639.542842425104, + 4848.80055029529 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4849.465414633165, + "max_x": 2641.352100901933, + "max_y": 4849.879570031027, + "center": [ + 2640.4474716635186, + 4849.672492332096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4849.879570031027 + ], + [ + 2639.542842425104, + 4849.465414633165 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2639.542842425104, + "min_y": 4848.80055029529, + "max_x": 2639.542842425104, + "max_y": 4849.465414633165, + "center": [ + 2639.542842425104, + 4849.132982464227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.542842425104, + 4849.465414633165 + ], + [ + 2639.542842425104, + 4848.80055029529 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2641.352100901933, + "min_y": 4848.386394897168, + "max_x": 2641.352100901933, + "max_y": 4849.879570031027, + "center": [ + 2641.352100901933, + 4849.132982464098 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2641.352100901933, + 4848.386394897168 + ], + [ + 2641.352100901933, + 4849.879570031027 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2606.722395651768, + "min_y": 4849.137134891769, + "max_x": 2639.542842425104, + "max_y": 4849.137134891769, + "center": [ + 2623.132619038436, + 4849.137134891769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2639.542842425104, + 4849.137134891769 + ], + [ + 2606.722395651768, + 4849.137134891769 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2740.807267403805, + "min_y": 4910.805390346306, + "max_x": 2742.368028294901, + "max_y": 4910.805390346306, + "center": [ + 2741.587647849353, + 4910.805390346306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.368028294901, + 4910.805390346306 + ], + [ + 2740.807267403805, + 4910.805390346306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581EA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2853.963898423726, + "min_y": 5019.296958163704, + "max_x": 2857.5475187449847, + "max_y": 5020.7901332975625, + "center": [ + 2855.7557085843555, + 5020.043545730634 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5581EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.590616106137, + "min_y": 4931.168627210237, + "max_x": 2777.576775278534, + "max_y": 4931.168627210237, + "center": [ + 2772.583695692336, + 4931.168627210237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.590616106137, + 4931.168627210237 + ], + [ + 2777.576775278534, + 4931.168627210237 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2777.576775278534, + "min_y": 4930.42203964331, + "max_x": 2777.576775278534, + "max_y": 4931.915214777167, + "center": [ + 2777.576775278534, + 4931.168627210239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2777.576775278534, + 4931.915214777167 + ], + [ + 2777.576775278534, + 4930.42203964331 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2777.825637800846, + "min_y": 4930.42203964331, + "max_x": 2777.825637800846, + "max_y": 4931.915214777167, + "center": [ + 2777.825637800846, + 4931.168627210239 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2777.825637800846, + 4931.915214777167 + ], + [ + 2777.825637800846, + 4930.42203964331 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2775.062729388087, + "min_y": 4908.396988027289, + "max_x": 2775.062729388087, + "max_y": 4930.42203964331, + "center": [ + 2775.062729388087, + 4919.4095138353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2775.062729388087, + 4930.42203964331 + ], + [ + 2775.062729388087, + 4908.396988027289 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581EF", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2769.212109860283, + "min_y": 4929.675452076382, + "max_x": 2770.705284994141, + "max_y": 4931.168627210239, + "center": [ + 2769.958697427212, + 4930.42203964331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2769.958697427212, + 4930.42203964331 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581F0", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2773.569554254229, + "min_y": 4929.675452076382, + "max_x": 2775.062729388087, + "max_y": 4931.168627210239, + "center": [ + 2774.316141821158, + 4930.42203964331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.316141821158, + 4930.42203964331 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5581F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2770.705284994141, + "min_y": 4896.231359234038, + "max_x": 2770.705284994141, + "max_y": 4930.42203964331, + "center": [ + 2770.705284994141, + 4913.326699438674 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.705284994141, + 4930.42203964331 + ], + [ + 2770.705284994141, + 4896.231359234038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581F2", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2770.521663754323, + "min_y": 4931.776828981544, + "max_x": 2774.105284075582, + "max_y": 4933.270004115402, + "center": [ + 2772.3134739149527, + 4932.523416548473 + ] + }, + "raw_value": "300A", + "clean_value": "300A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5581F3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2770.705284994141, + "min_y": 4911.27879550685, + "max_x": 2770.705284994141, + "max_y": 4913.239466080735, + "center": [ + 2770.705284994141, + 4912.259130793793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2770.705284994141, + 4913.239466080735 + ], + [ + 2770.705284994141, + 4911.27879550685 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5581F4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2775.062729388087, + "min_y": 4911.27879550685, + "max_x": 2775.062729388087, + "max_y": 4913.239466080735, + "center": [ + 2775.062729388087, + 4912.259130793793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2775.062729388087, + 4913.239466080735 + ], + [ + 2775.062729388087, + 4911.27879550685 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5581F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4917.762397755957, + "max_x": 2848.10403846466, + "max_y": 4917.762397755957, + "center": [ + 2844.878288633301, + 4917.762397755957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.10403846466, + 4917.762397755957 + ], + [ + 2841.652538801942, + 4917.762397755957 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4908.396988027289, + "max_x": 2841.652538801942, + "max_y": 4917.762397755957, + "center": [ + 2841.652538801942, + 4913.0796928916225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2841.652538801942, + 4917.762397755957 + ], + [ + 2841.652538801942, + 4908.396988027289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4888.703506727453, + "max_x": 2848.10403846466, + "max_y": 4888.703506727453, + "center": [ + 2844.878288633301, + 4888.703506727453 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.10403846466, + 4888.703506727453 + ], + [ + 2841.652538801942, + 4888.703506727453 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2841.652538801942, + "min_y": 4888.703506727453, + "max_x": 2841.652538801942, + "max_y": 4896.231359234038, + "center": [ + 2841.652538801942, + 4892.467432980746 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2841.652538801942, + 4888.703506727453 + ], + [ + 2841.652538801942, + 4896.231359234038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.771446242139, + "min_y": 4896.588629298986, + "max_x": 2844.580704718968, + "max_y": 4897.002784697107, + "center": [ + 2843.6760754805537, + 4896.795706998047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.771446242139, + 4897.002784697107 + ], + [ + 2844.580704718968, + 4896.588629298986 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.771446242139, + "min_y": 4895.509609563251, + "max_x": 2844.580704718968, + "max_y": 4895.923764961111, + "center": [ + 2843.6760754805537, + 4895.716687262181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.771446242139, + 4895.509609563251 + ], + [ + 2844.580704718968, + 4895.923764961111 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.580704718968, + "min_y": 4895.923764961111, + "max_x": 2844.580704718968, + "max_y": 4896.588629298986, + "center": [ + 2844.580704718968, + 4896.256197130049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.580704718968, + 4895.923764961111 + ], + [ + 2844.580704718968, + 4896.588629298986 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.771446242139, + "min_y": 4895.509609563251, + "max_x": 2842.771446242139, + "max_y": 4897.002784697107, + "center": [ + 2842.771446242139, + 4896.256197130178 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.771446242139, + 4897.002784697107 + ], + [ + 2842.771446242139, + 4895.509609563251 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5581FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.49029228534, + "min_y": 4908.396988027289, + "max_x": 2871.277642630316, + "max_y": 4908.396988027289, + "center": [ + 2857.883967457828, + 4908.396988027289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.49029228534, + 4908.396988027289 + ], + [ + 2871.277642630316, + 4908.396988027289 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.580704718968, + "min_y": 4896.231359234038, + "max_x": 2871.148715677654, + "max_y": 4896.231359234038, + "center": [ + 2857.8647101983106, + 4896.231359234038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.580704718968, + 4896.231359234038 + ], + [ + 2871.148715677654, + 4896.231359234038 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5581FF", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2838.047002893839, + "min_y": 4915.737964345703, + "max_x": 2840.734718134783, + "max_y": 4917.2311394795615, + "center": [ + 2839.390860514311, + 4916.484551912632 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558200", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2838.047002893839, + "min_y": 4893.744414984968, + "max_x": 2840.734718134783, + "max_y": 4895.237590118826, + "center": [ + 2839.390860514311, + 4894.491002551897 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558201", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.34262425671, + "min_y": 4959.287360489906, + "max_x": 2767.34262425671, + "max_y": 5113.332968995551, + "center": [ + 2767.34262425671, + 5036.310164742728 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.34262425671, + 5113.332968995551 + ], + [ + 2767.34262425671, + 4959.287360489906 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558202", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2720.561729986979, + "min_y": 5104.494722764538, + "max_x": 2742.161729986979, + "max_y": 5108.494722764538, + "center": [ + 2731.3617299869793, + 5106.494722764538 + ] + }, + "raw_value": "9th PLANT", + "clean_value": "9th PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558203", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 2774.235418949633, + "min_y": 5104.494722764538, + "max_x": 2798.235418949633, + "max_y": 5108.494722764538, + "center": [ + 2786.235418949633, + 5106.494722764538 + ] + }, + "raw_value": "10th PLANT", + "clean_value": "10th PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558204", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2848.388794186385, + "min_y": 4905.827676544608, + "max_x": 2865.4109907123648, + "max_y": 4907.320851678466, + "center": [ + 2856.899892449375, + 4906.574264111538 + ] + }, + "raw_value": "VG-10441-125A-F1A-N", + "clean_value": "VG-10441-125A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558205", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2848.593265382433, + "min_y": 4897.546593104656, + "max_x": 2865.6154619084127, + "max_y": 4899.039768238514, + "center": [ + 2857.104363645423, + 4898.293180671584 + ] + }, + "raw_value": "VG-10442-100A-F1A-N", + "clean_value": "VG-10442-100A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558206", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2837.764939805092, + "min_y": 4905.796219520847, + "max_x": 2845.8280855279245, + "max_y": 4907.289394654706, + "center": [ + 2841.7965126665085, + 4906.542807087777 + ] + }, + "raw_value": "200Ax125A", + "clean_value": "200Ax125A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558207", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2837.085386256077, + "min_y": 4897.424132524335, + "max_x": 2845.1485319789094, + "max_y": 4898.917307658193, + "center": [ + 2841.116959117493, + 4898.170720091264 + ] + }, + "raw_value": "150Ax100A", + "clean_value": "150Ax100A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558208", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2767.34262425671, + "min_y": 4826.776586694901, + "max_x": 2767.34262425671, + "max_y": 4938.049030049985, + "center": [ + 2767.34262425671, + 4882.412808372443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.34262425671, + 4938.049030049985 + ], + [ + 2767.34262425671, + 4826.776586694901 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558209", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2836.732452391928, + "min_y": 5016.104513784693, + "max_x": 2840.879856968894, + "max_y": 5016.104513784693, + "center": [ + 2838.806154680411, + 5016.104513784693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.732452391928, + 5016.104513784693 + ], + [ + 2840.879856968894, + 5016.104513784693 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55820A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2840.879856968894, + "min_y": 4987.151345488808, + "max_x": 2840.879856968894, + "max_y": 5016.104513784693, + "center": [ + 2840.879856968894, + 5001.62792963675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2840.879856968894, + 5016.104513784693 + ], + [ + 2840.879856968894, + 4987.151345488808 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55820B", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2632.295665090876, + "min_y": 4997.287311146461, + "max_x": 2635.879285412135, + "max_y": 4998.78048628032, + "center": [ + 2634.0874752515056, + 4998.033898713391 + ] + }, + "raw_value": "150A", + "clean_value": "150A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55820C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2899.277621925374, + "min_y": 4963.226775054758, + "max_x": 2915.4039133710394, + "max_y": 4964.719950188616, + "center": [ + 2907.3407676482066, + 4963.973362621688 + ] + }, + "raw_value": "VG-10426-50A-F1A-N", + "clean_value": "VG-10426-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55820D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2908.018830067239, + "min_y": 4963.226775054758, + "max_x": 2924.145121512904, + "max_y": 4964.719950188616, + "center": [ + 2916.0819757900717, + 4963.973362621688 + ] + }, + "raw_value": "VG-10425-50A-F1A-N", + "clean_value": "VG-10425-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55820E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2916.760038209101, + "min_y": 4963.226775054758, + "max_x": 2932.886329654766, + "max_y": 4964.719950188616, + "center": [ + 2924.8231839319333, + 4963.973362621688 + ] + }, + "raw_value": "VG-10424-50A-F1A-N", + "clean_value": "VG-10424-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55820F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2925.945714561569, + "min_y": 4963.078618984557, + "max_x": 2942.072006007234, + "max_y": 4964.571794118415, + "center": [ + 2934.0088602844016, + 4963.825206551486 + ] + }, + "raw_value": "VG-10423-50A-F1A-N", + "clean_value": "VG-10423-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558210", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2934.39061056303, + "min_y": 4963.37493112496, + "max_x": 2950.516902008695, + "max_y": 4964.868106258818, + "center": [ + 2942.4537562858623, + 4964.121518691889 + ] + }, + "raw_value": "VG-10422-50A-F1A-N", + "clean_value": "VG-10422-50A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558211", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2542.563165476119, + "min_y": 5104.542196863456, + "max_x": 2554.563165476119, + "max_y": 5109.542196863456, + "center": [ + 2548.563165476119, + 5107.042196863456 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558212", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2537.791456943033, + "min_y": 4828.273479308041, + "max_x": 2767.34262425671, + "max_y": 4828.273479308041, + "center": [ + 2652.5670405998717, + 4828.273479308041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2537.791456943033, + 4828.273479308041 + ], + [ + 2547.791456943033, + 4828.273479308041 + ], + [ + 2557.791456943033, + 4828.273479308041 + ], + [ + 2567.791456943033, + 4828.273479308041 + ], + [ + 2577.791456943033, + 4828.273479308041 + ], + [ + 2587.791456943033, + 4828.273479308041 + ], + [ + 2597.791456943033, + 4828.273479308041 + ], + [ + 2607.791456943033, + 4828.273479308041 + ], + [ + 2617.791456943033, + 4828.273479308041 + ], + [ + 2627.791456943033, + 4828.273479308041 + ], + [ + 2637.791456943033, + 4828.273479308041 + ], + [ + 2647.791456943033, + 4828.273479308041 + ], + [ + 2657.791456943033, + 4828.273479308041 + ], + [ + 2667.791456943033, + 4828.273479308041 + ], + [ + 2677.791456943033, + 4828.273479308041 + ], + [ + 2687.791456943033, + 4828.273479308041 + ], + [ + 2697.791456943033, + 4828.273479308041 + ], + [ + 2707.791456943033, + 4828.273479308041 + ], + [ + 2717.791456943033, + 4828.273479308041 + ], + [ + 2727.791456943033, + 4828.273479308041 + ], + [ + 2737.791456943033, + 4828.273479308041 + ], + [ + 2747.791456943033, + 4828.273479308041 + ], + [ + 2757.791456943033, + 4828.273479308041 + ], + [ + 2767.34262425671, + 4828.273479308041 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558213", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2537.791456943033, + "min_y": 4828.273479308041, + "max_x": 2537.791456943033, + "max_y": 5099.344662065845, + "center": [ + 2537.791456943033, + 4963.8090706869425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2537.791456943033, + 5099.344662065845 + ], + [ + 2537.791456943033, + 5089.344662065844 + ], + [ + 2537.791456943033, + 5079.344662065844 + ], + [ + 2537.791456943033, + 5069.344662065844 + ], + [ + 2537.791456943033, + 5059.344662065844 + ], + [ + 2537.791456943033, + 5049.344662065845 + ], + [ + 2537.791456943033, + 5039.344662065844 + ], + [ + 2537.791456943033, + 5029.344662065844 + ], + [ + 2537.791456943033, + 5019.344662065844 + ], + [ + 2537.791456943033, + 5009.344662065844 + ], + [ + 2537.791456943033, + 4999.344662065844 + ], + [ + 2537.791456943033, + 4989.344662065844 + ], + [ + 2537.791456943033, + 4979.344662065845 + ], + [ + 2537.791456943033, + 4969.344662065844 + ], + [ + 2537.791456943033, + 4959.344662065844 + ], + [ + 2537.791456943033, + 4949.344662065844 + ], + [ + 2537.791456943033, + 4939.344662065844 + ], + [ + 2537.791456943033, + 4929.344662065844 + ], + [ + 2537.791456943033, + 4919.344662065844 + ], + [ + 2537.791456943033, + 4909.344662065844 + ], + [ + 2537.791456943033, + 4899.344662065844 + ], + [ + 2537.791456943033, + 4889.344662065845 + ], + [ + 2537.791456943033, + 4879.344662065844 + ], + [ + 2537.791456943033, + 4869.344662065844 + ], + [ + 2537.791456943033, + 4859.344662065844 + ], + [ + 2537.791456943033, + 4849.344662065845 + ], + [ + 2537.791456943033, + 4839.344662065844 + ], + [ + 2537.791456943033, + 4829.344662065844 + ], + [ + 2537.791456943033, + 4828.273479308041 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558214", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2537.791456943033, + "min_y": 5099.344662065845, + "max_x": 2767.34262425671, + "max_y": 5099.344662065845, + "center": [ + 2652.5670405998717, + 5099.344662065845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.34262425671, + 5099.344662065845 + ], + [ + 2757.34262425671, + 5099.344662065845 + ], + [ + 2747.34262425671, + 5099.344662065845 + ], + [ + 2737.34262425671, + 5099.344662065845 + ], + [ + 2727.34262425671, + 5099.344662065845 + ], + [ + 2717.34262425671, + 5099.344662065845 + ], + [ + 2707.34262425671, + 5099.344662065845 + ], + [ + 2697.34262425671, + 5099.344662065845 + ], + [ + 2687.34262425671, + 5099.344662065845 + ], + [ + 2677.34262425671, + 5099.344662065845 + ], + [ + 2667.34262425671, + 5099.344662065845 + ], + [ + 2657.34262425671, + 5099.344662065845 + ], + [ + 2647.34262425671, + 5099.344662065845 + ], + [ + 2637.34262425671, + 5099.344662065845 + ], + [ + 2627.34262425671, + 5099.344662065845 + ], + [ + 2617.34262425671, + 5099.344662065845 + ], + [ + 2607.34262425671, + 5099.344662065845 + ], + [ + 2597.34262425671, + 5099.344662065845 + ], + [ + 2587.34262425671, + 5099.344662065845 + ], + [ + 2577.34262425671, + 5099.344662065845 + ], + [ + 2567.34262425671, + 5099.344662065845 + ], + [ + 2557.34262425671, + 5099.344662065845 + ], + [ + 2547.34262425671, + 5099.344662065845 + ], + [ + 2537.791456943033, + 5099.344662065845 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558215", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2767.34262425671, + "min_y": 4828.273479308041, + "max_x": 2767.34262425671, + "max_y": 5099.344662065845, + "center": [ + 2767.34262425671, + 4963.8090706869425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2767.34262425671, + 4828.273479308041 + ], + [ + 2767.34262425671, + 4838.273479308042 + ], + [ + 2767.34262425671, + 4848.273479308041 + ], + [ + 2767.34262425671, + 4858.273479308042 + ], + [ + 2767.34262425671, + 4868.273479308042 + ], + [ + 2767.34262425671, + 4878.273479308042 + ], + [ + 2767.34262425671, + 4888.273479308042 + ], + [ + 2767.34262425671, + 4898.273479308041 + ], + [ + 2767.34262425671, + 4908.273479308042 + ], + [ + 2767.34262425671, + 4918.273479308042 + ], + [ + 2767.34262425671, + 4928.273479308042 + ], + [ + 2767.34262425671, + 4938.273479308041 + ], + [ + 2767.34262425671, + 4948.273479308042 + ], + [ + 2767.34262425671, + 4958.273479308042 + ], + [ + 2767.34262425671, + 4968.273479308042 + ], + [ + 2767.34262425671, + 4978.273479308041 + ], + [ + 2767.34262425671, + 4988.273479308041 + ], + [ + 2767.34262425671, + 4998.273479308042 + ], + [ + 2767.34262425671, + 5008.273479308042 + ], + [ + 2767.34262425671, + 5018.273479308042 + ], + [ + 2767.34262425671, + 5028.273479308041 + ], + [ + 2767.34262425671, + 5038.273479308042 + ], + [ + 2767.34262425671, + 5048.273479308042 + ], + [ + 2767.34262425671, + 5058.273479308041 + ], + [ + 2767.34262425671, + 5068.273479308042 + ], + [ + 2767.34262425671, + 5078.273479308041 + ], + [ + 2767.34262425671, + 5088.273479308042 + ], + [ + 2767.34262425671, + 5098.273479308041 + ], + [ + 2767.34262425671, + 5099.344662065845 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558217", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.686209098836, + "min_y": 5191.570478243239, + "max_x": 2686.686209098836, + "max_y": 5219.578540862908, + "center": [ + 2686.686209098836, + 5205.574509553074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.686209098836, + 5191.570478243239 + ], + [ + 2686.686209098836, + 5219.578540862908 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558218", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2686.686209098836, + "min_y": 5219.578540862908, + "max_x": 2709.083926952461, + "max_y": 5219.578540862908, + "center": [ + 2697.8850680256483, + 5219.578540862908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2686.686209098836, + 5219.578540862908 + ], + [ + 2709.083926952461, + 5219.578540862908 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558219", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2711.419792304316, + "min_y": 5218.813877570409, + "max_x": 2717.6911278665193, + "max_y": 5220.307052704267, + "center": [ + 2714.5554600854175, + 5219.560465137338 + ] + }, + "raw_value": "SC-9128", + "clean_value": "SC-9128", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55821A", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2709.024529392123, + "min_y": 5221.067692569605, + "max_x": 2720.070324612225, + "max_y": 5221.067692569605, + "center": [ + 2714.547427002174, + 5221.067692569605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.024529392123, + 5221.067692569605 + ], + [ + 2720.070324612225, + 5221.067692569605 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55821B", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2720.070324612225, + "min_y": 5219.578540862908, + "max_x": 2721.559476318922, + "max_y": 5221.067692569605, + "center": [ + 2720.8149004655734, + 5220.323116716257 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2720.070324612225, + 5221.067692569605 + ], + [ + 2721.559476318922, + 5219.578540862908 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55821C", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2720.070324612225, + "min_y": 5218.089389156211, + "max_x": 2721.559476318922, + "max_y": 5219.578540862908, + "center": [ + 2720.8149004655734, + 5218.8339650095595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2721.559476318922, + 5219.578540862908 + ], + [ + 2720.070324612225, + 5218.089389156211 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55821D", + "entity_type": "LINE", + "layer": "TEXT", + "bbox": { + "min_x": 2709.024529392123, + "min_y": 5218.089389156211, + "max_x": 2720.070324612225, + "max_y": 5218.089389156211, + "center": [ + 2714.547427002174, + 5218.089389156211 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.024529392123, + 5218.089389156211 + ], + [ + 2720.070324612225, + 5218.089389156211 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "55821E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2709.024529392123, + "min_y": 5218.089389156211, + "max_x": 2709.024529392123, + "max_y": 5221.067692569605, + "center": [ + 2709.024529392123, + 5219.578540862908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2709.024529392123, + 5218.089389156211 + ], + [ + 2709.024529392123, + 5221.067692569605 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55821F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2671.876433323725, + "min_y": 5316.52013511201, + "max_x": 2675.460053644984, + "max_y": 5318.0133102458685, + "center": [ + 2673.668243484354, + 5317.26672267894 + ] + }, + "raw_value": "100A", + "clean_value": "100A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558220", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2681.263554843284, + "min_y": 5201.588535567383, + "max_x": 2684.847175164543, + "max_y": 5203.081710701241, + "center": [ + 2683.0553650039137, + 5202.335123134311 + ] + }, + "raw_value": "150A", + "clean_value": "150A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558221", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.681480001139, + "min_y": 4908.707909009546, + "max_x": 2844.490738477969, + "max_y": 4909.122064407668, + "center": [ + 2843.586109239554, + 4908.914986708607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.681480001139, + 4909.122064407668 + ], + [ + 2844.490738477969, + 4908.707909009546 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558222", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.681480001139, + "min_y": 4907.62888927381, + "max_x": 2844.490738477969, + "max_y": 4908.043044671671, + "center": [ + 2843.586109239554, + 4907.835966972741 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.681480001139, + 4907.62888927381 + ], + [ + 2844.490738477969, + 4908.043044671671 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558223", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2844.490738477969, + "min_y": 4908.043044671671, + "max_x": 2844.490738477969, + "max_y": 4908.707909009546, + "center": [ + 2844.490738477969, + 4908.375476840609 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2844.490738477969, + 4908.043044671671 + ], + [ + 2844.490738477969, + 4908.707909009546 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558224", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2842.681480001139, + "min_y": 4907.62888927381, + "max_x": 2842.681480001139, + "max_y": 4909.122064407668, + "center": [ + 2842.681480001139, + 4908.37547684074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2842.681480001139, + 4909.122064407668 + ], + [ + 2842.681480001139, + 4907.62888927381 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558225", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2815.633507597879, + "min_y": 5158.681968033895, + "max_x": 2855.911498885895, + "max_y": 5158.681968033895, + "center": [ + 2835.772503241887, + 5158.681968033895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.911498885895, + 5158.681968033895 + ], + [ + 2815.633507597879, + 5158.681968033895 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558226", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.115141410454, + "min_y": 5312.419381394709, + "max_x": 2688.694615752674, + "max_y": 5312.419381394709, + "center": [ + 2674.904878581564, + 5312.419381394709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2688.694615752674, + 5312.419381394709 + ], + [ + 2661.115141410454, + 5312.419381394709 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558227", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.115141410454, + "min_y": 5310.73142140207, + "max_x": 2661.115141410454, + "max_y": 5312.419381394709, + "center": [ + 2661.115141410454, + 5311.57540139839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.115141410454, + 5312.419381394709 + ], + [ + 2661.115141410454, + 5310.73142140207 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558228", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2695.539818391101, + "min_y": 5290.579696162332, + "max_x": 2771.651504328231, + "max_y": 5290.595708667068, + "center": [ + 2733.5956613596663, + 5290.587702414699 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2695.539818391101, + 5290.595708667068 + ], + [ + 2771.651504328231, + 5290.579696162332 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558229", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2793.025872372751, + "min_y": 5183.646947741543, + "max_x": 2807.062172430784, + "max_y": 5189.715656263279, + "center": [ + 2800.0440224017675, + 5186.681302002411 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2793.025872372751, + 5183.646947741543 + ], + [ + 2807.062172430784, + 5183.646947741543 + ], + [ + 2807.062172430784, + 5189.715656263279 + ], + [ + 2793.025872372751, + 5189.715656263279 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55822A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2855.915230071832, + "min_y": 5174.546278888341, + "max_x": 2855.915230071832, + "max_y": 5174.665812900563, + "center": [ + 2855.915230071832, + 5174.606045894452 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2855.915230071832, + 5174.665812900563 + ], + [ + 2855.915230071832, + 5174.546278888341 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55822B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.631231143222, + "min_y": 5318.079660352841, + "max_x": 2679.631231143222, + "max_y": 5319.401901287858, + "center": [ + 2679.631231143222, + 5318.74078082035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.631231143222, + 5319.401901287858 + ], + [ + 2679.631231143222, + 5318.079660352841 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55822C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2679.880093665531, + "min_y": 5318.079660352841, + "max_x": 2679.880093665531, + "max_y": 5319.401901287858, + "center": [ + 2679.880093665531, + 5318.74078082035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2679.880093665531, + 5319.401901287858 + ], + [ + 2679.880093665531, + 5318.079660352841 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55822D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2694.573261970655, + "min_y": 5192.080190901759, + "max_x": 2694.792154717476, + "max_y": 5193.152352701404, + "center": [ + 2694.6827083440658, + 5192.616271801582 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.792154717476, + 5193.152352701404 + ], + [ + 2694.573261970655, + 5192.080190901759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55822E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2693.479299560923, + "min_y": 5192.080259108283, + "max_x": 2693.698025199618, + "max_y": 5193.152455011189, + "center": [ + 2693.5886623802708, + 5192.616357059736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2693.479299560923, + 5193.152455011189 + ], + [ + 2693.698025199618, + 5192.080259108283 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55822F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2693.698025199618, + "min_y": 5192.080190901759, + "max_x": 2694.573261970655, + "max_y": 5192.080259108283, + "center": [ + 2694.1356435851367, + 5192.080225005021 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2693.698025199618, + 5192.080259108283 + ], + [ + 2694.573261970655, + 5192.080190901759 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558230", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2693.479299560923, + "min_y": 5193.152352701404, + "max_x": 2694.792154717476, + "max_y": 5193.152455011189, + "center": [ + 2694.1357271392, + 5193.152403856297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2693.479299560923, + 5193.152455011189 + ], + [ + 2694.792154717476, + 5193.152352701404 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558231", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2693.565673360439, + "min_y": 5193.152359432446, + "max_x": 2694.705780917968, + "max_y": 5193.152448280144, + "center": [ + 2694.1357271392035, + 5193.152403856295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.705780917968, + 5193.152359432446 + ], + [ + 2693.565673360439, + 5193.152448280144 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558232", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2695.202270580382, + "min_y": 5192.110164014741, + "max_x": 2701.2496298725064, + "max_y": 5193.230045365134, + "center": [ + 2698.225950226444, + 5192.670104689938 + ] + }, + "raw_value": "300Ax150A", + "clean_value": "300Ax150A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "558233", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.160700585051, + "min_y": 5326.818187737516, + "max_x": 2749.545225166257, + "max_y": 5326.818187737516, + "center": [ + 2712.852962875654, + 5326.818187737516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2749.545225166257, + 5326.818187737516 + ], + [ + 2676.160700585051, + 5326.818187737516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558234", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.148827027531, + "min_y": 5320.921263007234, + "max_x": 2676.14972706871, + "max_y": 5326.818187737516, + "center": [ + 2676.1492770481204, + 5323.869725372375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.14972706871, + 5326.818187737516 + ], + [ + 2676.148827027531, + 5320.921263007234 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558235", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.275487187155, + "min_y": 5332.334092115629, + "max_x": 2754.025135047837, + "max_y": 5332.334092115629, + "center": [ + 2713.650311117496, + 5332.334092115629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2754.025135047837, + 5332.334092115629 + ], + [ + 2673.275487187155, + 5332.334092115629 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558236", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.295357893916, + "min_y": 5320.92915342678, + "max_x": 2673.29575584637, + "max_y": 5332.334092115629, + "center": [ + 2673.2955568701427, + 5326.631622771205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.29575584637, + 5332.334092115629 + ], + [ + 2673.295357893916, + 5320.92915342678 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558237", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.48298246352, + "min_y": 5273.321819248923, + "max_x": 2774.623090024511, + "max_y": 5273.321819248923, + "center": [ + 2774.0530362440154, + 5273.321819248923 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.623090024511, + 5273.321819248923 + ], + [ + 2773.48298246352, + 5273.321819248923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558238", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.48298246352, + "min_y": 5273.321819248923, + "max_x": 2773.48298246352, + "max_y": 5273.947892187944, + "center": [ + 2773.48298246352, + 5273.634855718434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.48298246352, + 5273.947892187944 + ], + [ + 2773.48298246352, + 5273.321819248923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558239", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2774.623090024511, + "min_y": 5273.321819248923, + "max_x": 2774.623090024511, + "max_y": 5273.947892187944, + "center": [ + 2774.623090024511, + 5273.634855718434 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.623090024511, + 5273.947892187944 + ], + [ + 2774.623090024511, + 5273.321819248923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5275.436786765465, + "max_x": 2773.872272302634, + "max_y": 5276.053018211601, + "center": [ + 2773.687790592264, + 5275.744902488533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.503308881894, + 5275.436786765465 + ], + [ + 2773.872272302634, + 5276.053018211601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5275.436786765465, + "max_x": 2774.602763606137, + "max_y": 5275.436786765465, + "center": [ + 2774.053036244016, + 5275.436786765465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.602763606137, + 5275.436786765465 + ], + [ + 2773.503308881894, + 5275.436786765465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2774.233800185398, + "min_y": 5275.436786765465, + "max_x": 2774.602763606137, + "max_y": 5276.053018211601, + "center": [ + 2774.418281895768, + 5275.744902488533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.233800185398, + 5276.053018211601 + ], + [ + 2774.602763606137, + 5275.436786765465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5276.656831049123, + "max_x": 2773.872272302631, + "max_y": 5277.273062495264, + "center": [ + 2773.6877905922624, + 5276.964946772194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.503308881894, + 5277.273062495264 + ], + [ + 2773.872272302631, + 5276.656831049123 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5277.273062495264, + "max_x": 2774.602763606137, + "max_y": 5277.273062495264, + "center": [ + 2774.053036244016, + 5277.273062495264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.602763606137, + 5277.273062495264 + ], + [ + 2773.503308881894, + 5277.273062495264 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55823F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2774.2338001854, + "min_y": 5276.656831049123, + "max_x": 2774.602763606137, + "max_y": 5277.273062495264, + "center": [ + 2774.418281895769, + 5276.964946772194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.2338001854, + 5276.656831049123 + ], + [ + 2774.602763606137, + 5277.273062495264 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558240", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.498960946261, + "min_y": 5277.600228347242, + "max_x": 2774.610751581068, + "max_y": 5277.600228347242, + "center": [ + 2774.0548562636645, + 5277.600228347242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.610751581068, + 5277.600228347242 + ], + [ + 2773.498960946261, + 5277.600228347242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558241", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.498960946261, + "min_y": 5277.600228347242, + "max_x": 2774.610751581068, + "max_y": 5277.600228347242, + "center": [ + 2774.0548562636645, + 5277.600228347242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.610751581068, + 5277.600228347242 + ], + [ + 2773.498960946261, + 5277.600228347242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558242", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.497140926613, + "min_y": 5275.109620913482, + "max_x": 2774.608931561419, + "max_y": 5275.109620913482, + "center": [ + 2774.053036244016, + 5275.109620913482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.608931561419, + 5275.109620913482 + ], + [ + 2773.497140926613, + 5275.109620913482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558243", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.497140926613, + "min_y": 5275.436786765465, + "max_x": 2774.608931561419, + "max_y": 5275.436786765465, + "center": [ + 2774.053036244016, + 5275.436786765465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.608931561419, + 5275.436786765465 + ], + [ + 2773.497140926613, + 5275.436786765465 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558244", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5275.109620913482, + "max_x": 2774.602763606137, + "max_y": 5275.109620913482, + "center": [ + 2774.053036244016, + 5275.109620913482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.503308881894, + 5275.109620913482 + ], + [ + 2774.602763606137, + 5275.109620913482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558245", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.503308881894, + "min_y": 5277.600228347242, + "max_x": 2774.602763606137, + "max_y": 5277.600228347242, + "center": [ + 2774.053036244016, + 5277.600228347242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2773.503308881894, + 5277.600228347242 + ], + [ + 2774.602763606137, + 5277.600228347242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558246", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2773.701151194329, + "min_y": 5276.003039580677, + "max_x": 2774.4049212937025, + "max_y": 5276.70680968005, + "center": [ + 2774.053036244016, + 5276.354924630364 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.053036244016, + 5276.354924630364 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558247", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2773.48298246352, + "min_y": 5275.109620913482, + "max_x": 2774.623090024511, + "max_y": 5275.109620913482, + "center": [ + 2774.0530362440154, + 5275.109620913482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.623090024511, + 5275.109620913482 + ], + [ + 2773.48298246352, + 5275.109620913482 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558248", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2774.053036244016, + "min_y": 5277.600228347242, + "max_x": 2774.053036244016, + "max_y": 5278.415017782325, + "center": [ + 2774.053036244016, + 5278.007623064783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.053036244016, + 5277.600228347242 + ], + [ + 2774.053036244016, + 5278.415017782325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558249", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2774.053036244016, + "min_y": 5273.945747304065, + "max_x": 2774.053036244016, + "max_y": 5275.109620913482, + "center": [ + 2774.053036244016, + 5274.527684108773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2774.053036244016, + 5273.945747304065 + ], + [ + 2774.053036244016, + 5275.109620913482 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55824A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2688.709785547005, + "min_y": 5311.629979641205, + "max_x": 2688.709785547005, + "max_y": 5312.952220576221, + "center": [ + 2688.709785547005, + 5312.291100108713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2688.709785547005, + 5312.952220576221 + ], + [ + 2688.709785547005, + 5311.629979641205 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55824B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2688.958648069314, + "min_y": 5311.629979641205, + "max_x": 2688.958648069314, + "max_y": 5312.952220576221, + "center": [ + 2688.958648069314, + 5312.291100108713 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2688.958648069314, + 5312.952220576221 + ], + [ + 2688.958648069314, + 5311.629979641205 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55824C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2695.612683557694, + "min_y": 5290.584157757321, + "max_x": 2695.612683557694, + "max_y": 5322.715705504705, + "center": [ + 2695.612683557694, + 5306.649931631013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2695.612683557694, + 5290.584157757321 + ], + [ + 2695.612683557694, + 5322.715705504705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55824D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.962568735737, + "min_y": 5322.715705504705, + "max_x": 2695.612683557694, + "max_y": 5322.715705504705, + "center": [ + 2689.2876261467154, + 5322.715705504705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2695.612683557694, + 5322.715705504705 + ], + [ + 2682.962568735737, + 5322.715705504705 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55824E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.960962933532, + "min_y": 5314.513650437366, + "max_x": 2682.960962933532, + "max_y": 5322.715705504705, + "center": [ + 2682.960962933532, + 5318.614677971035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.960962933532, + 5322.715705504705 + ], + [ + 2682.960962933532, + 5314.513650437366 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55824F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.613681339526, + "min_y": 5320.679895514702, + "max_x": 2673.935922274542, + "max_y": 5320.679895514702, + "center": [ + 2673.2748018070342, + 5320.679895514702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.613681339526, + 5320.679895514702 + ], + [ + 2673.935922274542, + 5320.679895514702 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558250", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2672.613681339526, + "min_y": 5320.928758037011, + "max_x": 2673.935922274542, + "max_y": 5320.928758037011, + "center": [ + 2673.2748018070342, + 5320.928758037011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.613681339526, + 5320.928758037011 + ], + [ + 2673.935922274542, + 5320.928758037011 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558251", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2675.583288001215, + "min_y": 5320.672327092887, + "max_x": 2676.905528936232, + "max_y": 5320.672327092887, + "center": [ + 2676.244408468723, + 5320.672327092887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2675.583288001215, + 5320.672327092887 + ], + [ + 2676.905528936232, + 5320.672327092887 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558252", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2675.583288001215, + "min_y": 5320.921189615196, + "max_x": 2676.905528936232, + "max_y": 5320.921189615196, + "center": [ + 2676.244408468723, + 5320.921189615196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2675.583288001215, + 5320.921189615196 + ], + [ + 2676.905528936232, + 5320.921189615196 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558253", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2661.125732642511, + "min_y": 5318.831228710684, + "max_x": 2669.315897265239, + "max_y": 5318.831396722578, + "center": [ + 2665.220814953875, + 5318.831312716631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2669.315897265239, + 5318.831228710684 + ], + [ + 2661.125732642511, + 5318.831396722578 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558254", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2673.29575584637, + "min_y": 5318.81850474912, + "max_x": 2673.296456325244, + "max_y": 5320.680000546651, + "center": [ + 2673.296106085807, + 5319.749252647885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2673.296456325244, + 5320.680000546651 + ], + [ + 2673.29575584637, + 5318.81850474912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558255", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2676.14972706871, + "min_y": 5318.827020408639, + "max_x": 2676.14972706871, + "max_y": 5320.671583459577, + "center": [ + 2676.14972706871, + 5319.749301934108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2676.14972706871, + 5320.671583459577 + ], + [ + 2676.14972706871, + 5318.827020408639 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558256", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.279183416318, + "min_y": 5314.265526480431, + "max_x": 2683.601424351334, + "max_y": 5314.265526480431, + "center": [ + 2682.9403038838263, + 5314.265526480431 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.279183416318, + 5314.265526480431 + ], + [ + 2683.601424351334, + 5314.265526480431 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558257", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.279183416318, + "min_y": 5314.514389002739, + "max_x": 2683.601424351334, + "max_y": 5314.514389002739, + "center": [ + 2682.9403038838263, + 5314.514389002739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.279183416318, + 5314.514389002739 + ], + [ + 2683.601424351334, + 5314.514389002739 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558258", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2685.145600479069, + "min_y": 5314.257958058616, + "max_x": 2686.467841414086, + "max_y": 5314.257958058616, + "center": [ + 2685.806720946577, + 5314.257958058616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2685.145600479069, + 5314.257958058616 + ], + [ + 2686.467841414086, + 5314.257958058616 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558259", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2685.145600479069, + "min_y": 5314.506820580925, + "max_x": 2686.467841414086, + "max_y": 5314.506820580925, + "center": [ + 2685.806720946577, + 5314.506820580925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2685.145600479069, + 5314.506820580925 + ], + [ + 2686.467841414086, + 5314.506820580925 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55825A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.961257923162, + "min_y": 5312.404135714849, + "max_x": 2682.961958402036, + "max_y": 5314.265631512379, + "center": [ + 2682.961608162599, + 5313.334883613614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.961958402036, + 5314.265631512379 + ], + [ + 2682.961257923162, + 5312.404135714849 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55825B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2685.815229145502, + "min_y": 5312.412651374367, + "max_x": 2685.815229145502, + "max_y": 5314.257214425305, + "center": [ + 2685.815229145502, + 5313.334932899836 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2685.815229145502, + 5314.257214425305 + ], + [ + 2685.815229145502, + 5312.412651374367 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55825C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2682.960962933532, + "min_y": 5312.402334327834, + "max_x": 2682.960962933532, + "max_y": 5314.265281184794, + "center": [ + 2682.960962933532, + 5313.333807756314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2682.960962933532, + 5314.265281184794 + ], + [ + 2682.960962933532, + 5312.402334327834 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55825D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2677.689474731003, + "min_y": 5310.199739620387, + "max_x": 2681.273095052262, + "max_y": 5311.692914754245, + "center": [ + 2679.4812848916326, + 5310.946327187316 + ] + }, + "raw_value": "200A", + "clean_value": "200A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55825E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2694.121285417006, + "min_y": 5193.157309691024, + "max_x": 2694.12318766001, + "max_y": 5207.534437812243, + "center": [ + 2694.1222365385083, + 5200.345873751634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2694.12318766001, + 5193.157309691024 + ], + [ + 2694.121285417006, + 5207.534437812243 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55825F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5259.823268189883, + "max_x": 2589.832095208623, + "max_y": 5261.814168368359, + "center": [ + 2589.832095208623, + 5260.818718279121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5261.814168368359 + ], + [ + 2589.832095208623, + 5259.823268189883 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558260", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5269.584291418236, + "max_x": 2589.832095208623, + "max_y": 5270.455310246319, + "center": [ + 2589.832095208623, + 5270.019800832277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5269.584291418236 + ], + [ + 2589.832095208623, + 5270.455310246319 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558261", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5271.260426262289, + "max_x": 2589.832095208623, + "max_y": 5271.882582568063, + "center": [ + 2589.832095208623, + 5271.571504415177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5271.260426262289 + ], + [ + 2589.832095208623, + 5271.882582568063 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558262", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2587.0323918326394, + "min_y": 5271.882582568063, + "max_x": 2592.6317985846063, + "max_y": 5277.481989320031, + "center": [ + 2589.832095208623, + 5274.682285944047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5274.682285944047 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558263", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2588.783429693812, + "min_y": 5275.240980533168, + "max_x": 2590.575239854442, + "max_y": 5276.734155667026, + "center": [ + 2589.679334774127, + 5275.987568100098 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558264", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2587.633267531666, + "min_y": 5272.832410965339, + "max_x": 2593.0086980135547, + "max_y": 5274.325586099197, + "center": [ + 2590.3209827726105, + 5273.578998532268 + ] + }, + "raw_value": "10128A", + "clean_value": "10128A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558265", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.085507641693, + "min_y": 5269.584291418236, + "max_x": 2590.578682775552, + "max_y": 5269.584291418236, + "center": [ + 2589.8320952086224, + 5269.584291418236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.085507641693, + 5269.584291418236 + ], + [ + 2590.578682775552, + 5269.584291418236 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558266", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.085507641693, + "min_y": 5269.335428895925, + "max_x": 2590.578682775552, + "max_y": 5269.335428895925, + "center": [ + 2589.8320952086224, + 5269.335428895925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.085507641693, + 5269.335428895925 + ], + [ + 2590.578682775552, + 5269.335428895925 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558267", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2585.779775294867, + "min_y": 5262.482678288276, + "max_x": 2588.467490535811, + "max_y": 5263.975853422134, + "center": [ + 2587.123632915339, + 5263.229265855205 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558268", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2593.345086447922, + "min_y": 5264.480546466858, + "max_x": 2596.032801688866, + "max_y": 5265.973721600716, + "center": [ + 2594.688944068394, + 5265.227134033787 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558269", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.268914278906, + "min_y": 5259.459912911988, + "max_x": 2589.268914278906, + "max_y": 5260.159631470842, + "center": [ + 2589.268914278906, + 5259.809772191415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.268914278906, + 5260.159631470842 + ], + [ + 2589.268914278906, + 5259.459912911988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.268914278906, + "min_y": 5259.459912911988, + "max_x": 2590.395276138338, + "max_y": 5259.459912911988, + "center": [ + 2589.832095208622, + 5259.459912911988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.268914278906, + 5259.459912911988 + ], + [ + 2590.395276138338, + 5259.459912911988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2590.395276138338, + "min_y": 5259.459912911988, + "max_x": 2590.395276138338, + "max_y": 5260.159631470842, + "center": [ + 2590.395276138338, + 5259.809772191415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.395276138338, + 5260.159631470842 + ], + [ + 2590.395276138338, + 5259.459912911988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5265.129479054365, + "max_x": 2589.832095208623, + "max_y": 5269.335428895925, + "center": [ + 2589.832095208623, + 5267.232453975145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5265.129479054365 + ], + [ + 2589.832095208623, + 5269.335428895925 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2589.832095208623, + "min_y": 5267.232453975146, + "max_x": 2593.113675546359, + "max_y": 5267.232453975146, + "center": [ + 2591.472885377491, + 5267.232453975146 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208623, + 5267.232453975146 + ], + [ + 2593.113675546359, + 5267.232453975146 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2596.428986232365, + "min_y": 5267.232453975147, + "max_x": 2599.7105665701, + "max_y": 5267.232453975147, + "center": [ + 2598.0697764012325, + 5267.232453975147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2596.428986232365, + 5267.232453975147 + ], + [ + 2599.7105665701, + 5267.232453975147 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55826F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2590.765329667283, + "min_y": 5270.455310246319, + "max_x": 2590.765329667283, + "max_y": 5271.260426262289, + "center": [ + 2590.765329667283, + 5270.857868254304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.765329667283, + 5270.455310246319 + ], + [ + 2590.765329667283, + 5271.260426262289 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558270", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2588.898860749963, + "min_y": 5270.455310246319, + "max_x": 2588.898860749963, + "max_y": 5271.260426262289, + "center": [ + 2588.898860749963, + 5270.857868254304 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2588.898860749963, + 5270.455310246319 + ], + [ + 2588.898860749963, + 5271.260426262289 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558271", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2588.898860749963, + "min_y": 5270.455310246319, + "max_x": 2590.765329667283, + "max_y": 5270.455310246319, + "center": [ + 2589.8320952086233, + 5270.455310246319 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.765329667283, + 5270.455310246319 + ], + [ + 2588.898860749963, + 5270.455310246319 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558272", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2588.898860749963, + "min_y": 5271.260426262289, + "max_x": 2590.765329667283, + "max_y": 5271.260426262289, + "center": [ + 2589.8320952086233, + 5271.260426262289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.765329667283, + 5271.260426262289 + ], + [ + 2588.898860749963, + 5271.260426262289 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558273", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2586.989773978944, + "min_y": 5265.283235452869, + "max_x": 2592.674416438138, + "max_y": 5270.967877912062, + "center": [ + 2589.832095208541, + 5268.125556682466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208541, + 5268.125556682466 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558274", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2596.033263299483, + "min_y": 5266.477066911868, + "max_x": 2596.033263299483, + "max_y": 5267.987841038423, + "center": [ + 2596.033263299483, + 5267.232453975145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2596.033263299483, + 5266.477066911868 + ], + [ + 2596.033263299483, + 5267.987841038423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558275", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2593.610902865933, + "min_y": 5266.477066911868, + "max_x": 2593.610902865933, + "max_y": 5267.987841038423, + "center": [ + 2593.610902865933, + 5267.232453975145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2593.610902865933, + 5266.477066911868 + ], + [ + 2593.610902865933, + 5267.987841038423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558276", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2595.207681099273, + "min_y": 5267.472943168497, + "max_x": 2596.033263299483, + "max_y": 5267.987841038423, + "center": [ + 2595.620472199378, + 5267.73039210346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2596.033263299483, + 5267.987841038423 + ], + [ + 2595.207681099273, + 5267.472943168497 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558277", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2595.207681099273, + "min_y": 5266.477066911868, + "max_x": 2596.033263299483, + "max_y": 5266.991964781793, + "center": [ + 2595.620472199378, + 5266.734515846831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2596.033263299483, + 5266.477066911868 + ], + [ + 2595.207681099273, + 5266.991964781793 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558278", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2594.3676373956405, + "min_y": 5266.778008288077, + "max_x": 2595.2765287697794, + "max_y": 5267.686899662217, + "center": [ + 2594.82208308271, + 5267.232453975147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2594.82208308271, + 5267.232453975147 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558279", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2593.610902865933, + "min_y": 5267.472943168497, + "max_x": 2594.436485066147, + "max_y": 5267.987841038423, + "center": [ + 2594.02369396604, + 5267.73039210346 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2594.436485066147, + 5267.472943168497 + ], + [ + 2593.610902865933, + 5267.987841038423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2593.610902865933, + "min_y": 5266.477066911868, + "max_x": 2594.436485066147, + "max_y": 5266.991964781793, + "center": [ + 2594.02369396604, + 5266.734515846831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2594.436485066147, + 5266.991964781793 + ], + [ + 2593.610902865933, + 5266.477066911868 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2593.113675546359, + "min_y": 5266.477066911868, + "max_x": 2593.113675546359, + "max_y": 5267.987841038423, + "center": [ + 2593.113675546359, + 5267.232453975145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2593.113675546359, + 5266.477066911868 + ], + [ + 2593.113675546359, + 5267.987841038423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2596.530490619057, + "min_y": 5266.477066911868, + "max_x": 2596.530490619057, + "max_y": 5267.987841038423, + "center": [ + 2596.530490619057, + 5267.232453975145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2596.530490619057, + 5266.477066911868 + ], + [ + 2596.530490619057, + 5267.987841038423 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5262.311395687934, + "max_x": 2590.587482271901, + "max_y": 5262.311395687934, + "center": [ + 2589.8320952086233, + 5262.311395687934 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.076708145345, + 5262.311395687934 + ], + [ + 2590.587482271901, + 5262.311395687934 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5264.733756121484, + "max_x": 2590.587482271901, + "max_y": 5264.733756121484, + "center": [ + 2589.8320952086233, + 5264.733756121484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.076708145345, + 5264.733756121484 + ], + [ + 2590.587482271901, + 5264.733756121484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55827F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2590.072584401976, + "min_y": 5262.311395687934, + "max_x": 2590.587482271901, + "max_y": 5263.136977888144, + "center": [ + 2590.330033336939, + 5262.724186788039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.587482271901, + 5262.311395687934 + ], + [ + 2590.072584401976, + 5263.136977888144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558280", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5262.311395687934, + "max_x": 2589.591606015272, + "max_y": 5263.136977888144, + "center": [ + 2589.3341570803086, + 5262.724186788039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.076708145345, + 5262.311395687934 + ], + [ + 2589.591606015272, + 5263.136977888144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558281", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.3776495215557, + "min_y": 5263.068130217636, + "max_x": 2590.2865408956945, + "max_y": 5263.977021591776, + "center": [ + 2589.832095208625, + 5263.522575904706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.832095208625, + 5263.522575904706 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558282", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2590.072584401976, + "min_y": 5263.90817392127, + "max_x": 2590.587482271901, + "max_y": 5264.733756121484, + "center": [ + 2590.330033336939, + 5264.320965021377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2590.072584401976, + 5263.90817392127 + ], + [ + 2590.587482271901, + 5264.733756121484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558283", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5263.90817392127, + "max_x": 2589.591606015272, + "max_y": 5264.733756121484, + "center": [ + 2589.3341570803086, + 5264.320965021377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.591606015272, + 5263.90817392127 + ], + [ + 2589.076708145345, + 5264.733756121484 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558284", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5265.230983441059, + "max_x": 2590.587482271901, + "max_y": 5265.230983441059, + "center": [ + 2589.8320952086233, + 5265.230983441059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.076708145345, + 5265.230983441059 + ], + [ + 2590.587482271901, + 5265.230983441059 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558285", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2589.076708145345, + "min_y": 5261.814168368359, + "max_x": 2590.587482271901, + "max_y": 5261.814168368359, + "center": [ + 2589.8320952086233, + 5261.814168368359 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2589.076708145345, + 5261.814168368359 + ], + [ + 2590.587482271901, + 5261.814168368359 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558286", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.225247777578, + "min_y": 5277.354127722404, + "max_x": 2624.225247777578, + "max_y": 5279.34502790088, + "center": [ + 2624.225247777578, + 5278.349577811642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5279.34502790088 + ], + [ + 2624.225247777578, + 5277.354127722404 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558287", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.225247777578, + "min_y": 5287.115150950756, + "max_x": 2624.225247777578, + "max_y": 5287.986169778839, + "center": [ + 2624.225247777578, + 5287.550660364797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5287.115150950756 + ], + [ + 2624.225247777578, + 5287.986169778839 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558288", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.225247777578, + "min_y": 5288.791285794809, + "max_x": 2624.225247777578, + "max_y": 5289.413442100584, + "center": [ + 2624.225247777578, + 5289.102363947696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5288.791285794809 + ], + [ + 2624.225247777578, + 5289.413442100584 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558289", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2621.4255444015944, + "min_y": 5289.413442100583, + "max_x": 2627.0249511535612, + "max_y": 5295.012848852551, + "center": [ + 2624.225247777578, + 5292.213145476567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5292.213145476567 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55828A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.478660210648, + "min_y": 5287.115150950756, + "max_x": 2624.971835344508, + "max_y": 5287.115150950756, + "center": [ + 2624.225247777578, + 5287.115150950756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.971835344508, + 5287.115150950756 + ], + [ + 2623.478660210648, + 5287.115150950756 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55828B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.478660210648, + "min_y": 5286.866288428446, + "max_x": 2624.971835344508, + "max_y": 5286.866288428446, + "center": [ + 2624.225247777578, + 5286.866288428446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.971835344508, + 5286.866288428446 + ], + [ + 2623.478660210648, + 5286.866288428446 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55828C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.788428707296, + "min_y": 5276.990772444508, + "max_x": 2624.788428707296, + "max_y": 5277.690491003363, + "center": [ + 2624.788428707296, + 5277.340631723935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.788428707296, + 5277.690491003363 + ], + [ + 2624.788428707296, + 5276.990772444508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55828D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.662066847862, + "min_y": 5276.990772444508, + "max_x": 2624.788428707296, + "max_y": 5276.990772444508, + "center": [ + 2624.225247777579, + 5276.990772444508 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.788428707296, + 5276.990772444508 + ], + [ + 2623.662066847862, + 5276.990772444508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55828E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.662066847862, + "min_y": 5276.990772444508, + "max_x": 2623.662066847862, + "max_y": 5277.690491003363, + "center": [ + 2623.662066847862, + 5277.340631723935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.662066847862, + 5277.690491003363 + ], + [ + 2623.662066847862, + 5276.990772444508 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55828F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2624.225247777578, + "min_y": 5282.660338586886, + "max_x": 2624.225247777578, + "max_y": 5286.866288428446, + "center": [ + 2624.225247777578, + 5284.763313507666 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5282.660338586886 + ], + [ + 2624.225247777578, + 5286.866288428446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558290", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2620.943667439842, + "min_y": 5284.763313507665, + "max_x": 2624.225247777578, + "max_y": 5284.763313507665, + "center": [ + 2622.58445760871, + 5284.763313507665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777578, + 5284.763313507665 + ], + [ + 2620.943667439842, + 5284.763313507665 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558291", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.346776416101, + "min_y": 5284.763313507667, + "max_x": 2617.628356753835, + "max_y": 5284.763313507667, + "center": [ + 2615.9875665849677, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.628356753835, + 5284.763313507667 + ], + [ + 2614.346776416101, + 5284.763313507667 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558292", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.292013318918, + "min_y": 5287.986169778839, + "max_x": 2623.292013318918, + "max_y": 5288.791285794809, + "center": [ + 2623.292013318918, + 5288.388727786823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.292013318918, + 5287.986169778839 + ], + [ + 2623.292013318918, + 5288.791285794809 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558293", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2625.158482236238, + "min_y": 5287.986169778839, + "max_x": 2625.158482236238, + "max_y": 5288.791285794809, + "center": [ + 2625.158482236238, + 5288.388727786823 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2625.158482236238, + 5287.986169778839 + ], + [ + 2625.158482236238, + 5288.791285794809 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558294", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.292013318918, + "min_y": 5287.986169778839, + "max_x": 2625.158482236238, + "max_y": 5287.986169778839, + "center": [ + 2624.2252477775783, + 5287.986169778839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.292013318918, + 5287.986169778839 + ], + [ + 2625.158482236238, + 5287.986169778839 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558295", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2623.292013318918, + "min_y": 5288.791285794809, + "max_x": 2625.158482236238, + "max_y": 5288.791285794809, + "center": [ + 2624.2252477775783, + 5288.791285794809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.292013318918, + 5288.791285794809 + ], + [ + 2625.158482236238, + 5288.791285794809 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558296", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 2621.382926548063, + "min_y": 5282.8140949853905, + "max_x": 2627.067569007257, + "max_y": 5288.498737444584, + "center": [ + 2624.22524777766, + 5285.656416214987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.22524777766, + 5285.656416214987 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558297", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.024079686718, + "min_y": 5284.007926444388, + "max_x": 2618.024079686718, + "max_y": 5285.518700570944, + "center": [ + 2618.024079686718, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.024079686718, + 5284.007926444388 + ], + [ + 2618.024079686718, + 5285.518700570944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558298", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2620.446440120267, + "min_y": 5284.007926444388, + "max_x": 2620.446440120267, + "max_y": 5285.518700570944, + "center": [ + 2620.446440120267, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.446440120267, + 5284.007926444388 + ], + [ + 2620.446440120267, + 5285.518700570944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558299", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.024079686718, + "min_y": 5285.003802701018, + "max_x": 2618.849661886928, + "max_y": 5285.518700570944, + "center": [ + 2618.436870786823, + 5285.26125163598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.024079686718, + 5285.518700570944 + ], + [ + 2618.849661886928, + 5285.003802701018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.024079686718, + "min_y": 5284.007926444388, + "max_x": 2618.849661886928, + "max_y": 5284.522824314314, + "center": [ + 2618.436870786823, + 5284.265375379351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2618.024079686718, + 5284.007926444388 + ], + [ + 2618.849661886928, + 5284.522824314314 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2618.7808142164217, + "min_y": 5284.308867820597, + "max_x": 2619.6897055905606, + "max_y": 5285.217759194737, + "center": [ + 2619.235259903491, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2619.235259903491, + 5284.763313507667 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2619.620857920053, + "min_y": 5285.003802701018, + "max_x": 2620.446440120267, + "max_y": 5285.518700570944, + "center": [ + 2620.03364902016, + 5285.26125163598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2619.620857920053, + 5285.003802701018 + ], + [ + 2620.446440120267, + 5285.518700570944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2619.620857920053, + "min_y": 5284.007926444388, + "max_x": 2620.446440120267, + "max_y": 5284.522824314314, + "center": [ + 2620.03364902016, + 5284.265375379351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2619.620857920053, + 5284.522824314314 + ], + [ + 2620.446440120267, + 5284.007926444388 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2620.943667439842, + "min_y": 5284.007926444388, + "max_x": 2620.943667439842, + "max_y": 5285.518700570944, + "center": [ + 2620.943667439842, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2620.943667439842, + 5284.007926444388 + ], + [ + 2620.943667439842, + 5285.518700570944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55829F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2617.526852367144, + "min_y": 5284.007926444388, + "max_x": 2617.526852367144, + "max_y": 5285.518700570944, + "center": [ + 2617.526852367144, + 5284.763313507667 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2617.526852367144, + 5284.007926444388 + ], + [ + 2617.526852367144, + 5285.518700570944 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5279.842255220454, + "max_x": 2624.980634840856, + "max_y": 5279.842255220454, + "center": [ + 2624.2252477775783, + 5279.842255220454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.980634840856, + 5279.842255220454 + ], + [ + 2623.4698607143, + 5279.842255220454 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5282.264615654003, + "max_x": 2624.980634840856, + "max_y": 5282.264615654003, + "center": [ + 2624.2252477775783, + 5282.264615654003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.980634840856, + 5282.264615654003 + ], + [ + 2623.4698607143, + 5282.264615654003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5279.842255220454, + "max_x": 2623.984758584225, + "max_y": 5280.667837420664, + "center": [ + 2623.7273096492627, + 5280.255046320559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.4698607143, + 5279.842255220454 + ], + [ + 2623.984758584225, + 5280.667837420664 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2624.465736970929, + "min_y": 5279.842255220454, + "max_x": 2624.980634840856, + "max_y": 5280.667837420664, + "center": [ + 2624.7231859058925, + 5280.255046320559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.980634840856, + 5279.842255220454 + ], + [ + 2624.465736970929, + 5280.667837420664 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A4", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.7708020905065, + "min_y": 5280.598989750156, + "max_x": 2624.6796934646454, + "max_y": 5281.507881124296, + "center": [ + 2624.225247777576, + 5281.053435437226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.225247777576, + 5281.053435437226 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5281.43903345379, + "max_x": 2623.984758584225, + "max_y": 5282.264615654003, + "center": [ + 2623.7273096492627, + 5281.851824553896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2623.984758584225, + 5281.43903345379 + ], + [ + 2623.4698607143, + 5282.264615654003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2624.465736970929, + "min_y": 5281.43903345379, + "max_x": 2624.980634840856, + "max_y": 5282.264615654003, + "center": [ + 2624.7231859058925, + 5281.851824553896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.465736970929, + 5281.43903345379 + ], + [ + 2624.980634840856, + 5282.264615654003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5282.761842973579, + "max_x": 2624.980634840856, + "max_y": 5282.761842973579, + "center": [ + 2624.2252477775783, + 5282.761842973579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.980634840856, + 5282.761842973579 + ], + [ + 2623.4698607143, + 5282.761842973579 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2623.4698607143, + "min_y": 5279.34502790088, + "max_x": 2624.980634840856, + "max_y": 5279.34502790088, + "center": [ + 2624.2252477775783, + 5279.34502790088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2624.980634840856, + 5279.34502790088 + ], + [ + 2623.4698607143, + 5279.34502790088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5582A9", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2623.176582262767, + "min_y": 5292.771840065689, + "max_x": 2624.968392423397, + "max_y": 5294.265015199547, + "center": [ + 2624.072487343082, + 5293.518427632618 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5582AA", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2622.007606093934, + "min_y": 5290.363270497859, + "max_x": 2627.3830365758226, + "max_y": 5291.856445631717, + "center": [ + 2624.6953213348784, + 5291.109858064789 + ] + }, + "raw_value": "10128B", + "clean_value": "10128B", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5582AB", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2617.849392569469, + "min_y": 5282.07362306472, + "max_x": 2620.537107810413, + "max_y": 5283.566798198578, + "center": [ + 2619.193250189941, + 5282.820210631649 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5582AC", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2625.083546643231, + "min_y": 5280.386840212845, + "max_x": 2627.771261884175, + "max_y": 5281.880015346703, + "center": [ + 2626.427404263703, + 5281.133427779774 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5582AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2815.383103475125, + "min_y": 5256.903540591945, + "max_x": 2815.383103475125, + "max_y": 5258.043648152935, + "center": [ + 2815.383103475125, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2815.383103475125, + 5258.043648152935 + ], + [ + 2815.383103475125, + 5256.903540591945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2814.757030536103, + "min_y": 5256.903540591945, + "max_x": 2815.383103475125, + "max_y": 5256.903540591945, + "center": [ + 2815.070067005614, + 5256.903540591945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2814.757030536103, + 5256.903540591945 + ], + [ + 2815.383103475125, + 5256.903540591945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2814.757030536103, + "min_y": 5258.043648152935, + "max_x": 2815.383103475125, + "max_y": 5258.043648152935, + "center": [ + 2815.070067005614, + 5258.043648152935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2814.757030536103, + 5258.043648152935 + ], + [ + 2815.383103475125, + 5258.043648152935 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2812.651904512448, + "min_y": 5256.923867010319, + "max_x": 2813.268135958584, + "max_y": 5257.292830431058, + "center": [ + 2812.960020235516, + 5257.108348720689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.268135958584, + 5256.923867010319 + ], + [ + 2812.651904512448, + 5257.292830431058 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.268135958584, + "min_y": 5256.923867010319, + "max_x": 2813.268135958584, + "max_y": 5258.023321734561, + "center": [ + 2813.268135958584, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.268135958584, + 5258.023321734561 + ], + [ + 2813.268135958584, + 5256.923867010319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2812.651904512448, + "min_y": 5257.654358313821, + "max_x": 2813.268135958584, + "max_y": 5258.023321734561, + "center": [ + 2812.960020235516, + 5257.838840024191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.651904512448, + 5257.654358313821 + ], + [ + 2813.268135958584, + 5258.023321734561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.431860228785, + "min_y": 5256.923867010319, + "max_x": 2812.048091674925, + "max_y": 5257.292830431055, + "center": [ + 2811.739975951855, + 5257.108348720687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.431860228785, + 5256.923867010319 + ], + [ + 2812.048091674925, + 5257.292830431055 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.431860228785, + "min_y": 5256.923867010319, + "max_x": 2811.431860228785, + "max_y": 5258.023321734561, + "center": [ + 2811.431860228785, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.431860228785, + 5258.023321734561 + ], + [ + 2811.431860228785, + 5256.923867010319 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.431860228785, + "min_y": 5257.654358313824, + "max_x": 2812.048091674925, + "max_y": 5258.023321734561, + "center": [ + 2811.739975951855, + 5257.838840024193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.048091674925, + 5257.654358313824 + ], + [ + 2811.431860228785, + 5258.023321734561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.104694376807, + "min_y": 5256.919519074684, + "max_x": 2811.104694376807, + "max_y": 5258.031309709492, + "center": [ + 2811.104694376807, + 5257.475414392088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.104694376807, + 5258.031309709492 + ], + [ + 2811.104694376807, + 5256.919519074684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.104694376807, + "min_y": 5256.919519074684, + "max_x": 2811.104694376807, + "max_y": 5258.031309709492, + "center": [ + 2811.104694376807, + 5257.475414392088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.104694376807, + 5258.031309709492 + ], + [ + 2811.104694376807, + 5256.919519074684 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.595301810567, + "min_y": 5256.917699055037, + "max_x": 2813.595301810567, + "max_y": 5258.029489689842, + "center": [ + 2813.595301810567, + 5257.473594372439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.595301810567, + 5258.029489689842 + ], + [ + 2813.595301810567, + 5256.917699055037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.268135958584, + "min_y": 5256.917699055037, + "max_x": 2813.268135958584, + "max_y": 5258.029489689842, + "center": [ + 2813.268135958584, + 5257.473594372439 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.268135958584, + 5258.029489689842 + ], + [ + 2813.268135958584, + 5256.917699055037 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.595301810567, + "min_y": 5256.923867010319, + "max_x": 2813.595301810567, + "max_y": 5258.023321734561, + "center": [ + 2813.595301810567, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.595301810567, + 5256.923867010319 + ], + [ + 2813.595301810567, + 5258.023321734561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2811.104694376807, + "min_y": 5256.923867010319, + "max_x": 2811.104694376807, + "max_y": 5258.023321734561, + "center": [ + 2811.104694376807, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.104694376807, + 5256.923867010319 + ], + [ + 2811.104694376807, + 5258.023321734561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582BC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2811.9981130439983, + "min_y": 5257.121709322753, + "max_x": 2812.7018831433716, + "max_y": 5257.825479422127, + "center": [ + 2812.349998093685, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2812.349998093685, + 5257.47359437244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.595301810567, + "min_y": 5256.903540591945, + "max_x": 2813.595301810567, + "max_y": 5258.043648152935, + "center": [ + 2813.595301810567, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.595301810567, + 5258.043648152935 + ], + [ + 2813.595301810567, + 5256.903540591945 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582BE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2810.289904941723, + "min_y": 5257.47359437244, + "max_x": 2811.104694376807, + "max_y": 5257.47359437244, + "center": [ + 2810.697299659265, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2811.104694376807, + 5257.47359437244 + ], + [ + 2810.289904941723, + 5257.47359437244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582BF", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2813.595301810567, + "min_y": 5257.47359437244, + "max_x": 2814.759175419983, + "max_y": 5257.47359437244, + "center": [ + 2814.177238615275, + 5257.47359437244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2814.759175419983, + 5257.47359437244 + ], + [ + 2813.595301810567, + 5257.47359437244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2829.391203569893, + "min_y": 5256.920501471792, + "max_x": 2829.391203569893, + "max_y": 5258.060609032781, + "center": [ + 2829.391203569893, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2829.391203569893, + 5258.060609032781 + ], + [ + 2829.391203569893, + 5256.920501471792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2828.765130630872, + "min_y": 5256.920501471792, + "max_x": 2829.391203569893, + "max_y": 5256.920501471792, + "center": [ + 2829.0781671003824, + 5256.920501471792 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2828.765130630872, + 5256.920501471792 + ], + [ + 2829.391203569893, + 5256.920501471792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2828.765130630872, + "min_y": 5258.060609032781, + "max_x": 2829.391203569893, + "max_y": 5258.060609032781, + "center": [ + 2829.0781671003824, + 5258.060609032781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2828.765130630872, + 5258.060609032781 + ], + [ + 2829.391203569893, + 5258.060609032781 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2826.660004607215, + "min_y": 5256.940827890165, + "max_x": 2827.276236053351, + "max_y": 5257.309791310905, + "center": [ + 2826.968120330283, + 5257.125309600535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.276236053351, + 5256.940827890165 + ], + [ + 2826.660004607215, + 5257.309791310905 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.276236053351, + "min_y": 5256.940827890165, + "max_x": 2827.276236053351, + "max_y": 5258.040282614407, + "center": [ + 2827.276236053351, + 5257.490555252286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.276236053351, + 5258.040282614407 + ], + [ + 2827.276236053351, + 5256.940827890165 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2826.660004607215, + "min_y": 5257.671319193669, + "max_x": 2827.276236053351, + "max_y": 5258.040282614407, + "center": [ + 2826.968120330283, + 5257.855800904038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2826.660004607215, + 5257.671319193669 + ], + [ + 2827.276236053351, + 5258.040282614407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.439960323552, + "min_y": 5256.940827890165, + "max_x": 2826.056191769693, + "max_y": 5257.309791310902, + "center": [ + 2825.7480760466224, + 5257.125309600533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.439960323552, + 5256.940827890165 + ], + [ + 2826.056191769693, + 5257.309791310902 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.439960323552, + "min_y": 5256.940827890165, + "max_x": 2825.439960323552, + "max_y": 5258.040282614407, + "center": [ + 2825.439960323552, + 5257.490555252286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.439960323552, + 5258.040282614407 + ], + [ + 2825.439960323552, + 5256.940827890165 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.439960323552, + "min_y": 5257.67131919367, + "max_x": 2826.056191769693, + "max_y": 5258.040282614407, + "center": [ + 2825.7480760466224, + 5257.855800904039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2826.056191769693, + 5257.67131919367 + ], + [ + 2825.439960323552, + 5258.040282614407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.112794471574, + "min_y": 5256.936479954531, + "max_x": 2825.112794471574, + "max_y": 5258.048270589339, + "center": [ + 2825.112794471574, + 5257.492375271935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.112794471574, + 5258.048270589339 + ], + [ + 2825.112794471574, + 5256.936479954531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.112794471574, + "min_y": 5256.936479954531, + "max_x": 2825.112794471574, + "max_y": 5258.048270589339, + "center": [ + 2825.112794471574, + 5257.492375271935 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.112794471574, + 5258.048270589339 + ], + [ + 2825.112794471574, + 5256.936479954531 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.603401905335, + "min_y": 5256.934659934884, + "max_x": 2827.603401905335, + "max_y": 5258.04645056969, + "center": [ + 2827.603401905335, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.603401905335, + 5258.04645056969 + ], + [ + 2827.603401905335, + 5256.934659934884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.276236053351, + "min_y": 5256.934659934884, + "max_x": 2827.276236053351, + "max_y": 5258.04645056969, + "center": [ + 2827.276236053351, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.276236053351, + 5258.04645056969 + ], + [ + 2827.276236053351, + 5256.934659934884 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.603401905335, + "min_y": 5256.940827890165, + "max_x": 2827.603401905335, + "max_y": 5258.040282614407, + "center": [ + 2827.603401905335, + 5257.490555252286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.603401905335, + 5256.940827890165 + ], + [ + 2827.603401905335, + 5258.040282614407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2825.112794471574, + "min_y": 5256.940827890165, + "max_x": 2825.112794471574, + "max_y": 5258.040282614407, + "center": [ + 2825.112794471574, + 5257.490555252286 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.112794471574, + 5256.940827890165 + ], + [ + 2825.112794471574, + 5258.040282614407 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582CF", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2826.0062131387654, + "min_y": 5257.1386702026, + "max_x": 2826.7099832381386, + "max_y": 5257.8424403019735, + "center": [ + 2826.358098188452, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2826.358098188452, + 5257.490555252287 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2827.603401905335, + "min_y": 5256.920501471792, + "max_x": 2827.603401905335, + "max_y": 5258.060609032781, + "center": [ + 2827.603401905335, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2827.603401905335, + 5258.060609032781 + ], + [ + 2827.603401905335, + 5256.920501471792 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D1", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2824.298005036491, + "min_y": 5257.490555252287, + "max_x": 2825.112794471574, + "max_y": 5257.490555252287, + "center": [ + 2824.7053997540324, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2825.112794471574, + 5257.490555252287 + ], + [ + 2824.298005036491, + 5257.490555252287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582D2", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2827.603401905335, + "min_y": 5257.490555252287, + "max_x": 2828.767275514751, + "max_y": 5257.490555252287, + "center": [ + 2828.1853387100427, + 5257.490555252287 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2828.767275514751, + 5257.490555252287 + ], + [ + 2827.603401905335, + 5257.490555252287 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2839.747706169885, + "min_y": 5256.978835325258, + "max_x": 2839.747706169885, + "max_y": 5258.118942886248, + "center": [ + 2839.747706169885, + 5257.548889105753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.747706169885, + 5258.118942886248 + ], + [ + 2839.747706169885, + 5256.978835325258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2839.121633230864, + "min_y": 5256.978835325258, + "max_x": 2839.747706169885, + "max_y": 5256.978835325258, + "center": [ + 2839.434669700375, + 5256.978835325258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.121633230864, + 5256.978835325258 + ], + [ + 2839.747706169885, + 5256.978835325258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2839.121633230864, + "min_y": 5258.118942886248, + "max_x": 2839.747706169885, + "max_y": 5258.118942886248, + "center": [ + 2839.434669700375, + 5258.118942886248 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.121633230864, + 5258.118942886248 + ], + [ + 2839.747706169885, + 5258.118942886248 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.016507207207, + "min_y": 5256.999161743632, + "max_x": 2837.632738653344, + "max_y": 5257.368125164371, + "center": [ + 2837.3246229302754, + 5257.183643454002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.632738653344, + 5256.999161743632 + ], + [ + 2837.016507207207, + 5257.368125164371 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.632738653344, + "min_y": 5256.999161743632, + "max_x": 2837.632738653344, + "max_y": 5258.098616467873, + "center": [ + 2837.632738653344, + 5257.548889105752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.632738653344, + 5258.098616467873 + ], + [ + 2837.632738653344, + 5256.999161743632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.016507207207, + "min_y": 5257.729653047135, + "max_x": 2837.632738653344, + "max_y": 5258.098616467873, + "center": [ + 2837.3246229302754, + 5257.914134757504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.016507207207, + 5257.729653047135 + ], + [ + 2837.632738653344, + 5258.098616467873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.796462923545, + "min_y": 5256.999161743632, + "max_x": 2836.412694369685, + "max_y": 5257.368125164369, + "center": [ + 2836.1045786466148, + 5257.183643454 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.796462923545, + 5256.999161743632 + ], + [ + 2836.412694369685, + 5257.368125164369 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.796462923545, + "min_y": 5256.999161743632, + "max_x": 2835.796462923545, + "max_y": 5258.098616467873, + "center": [ + 2835.796462923545, + 5257.548889105752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.796462923545, + 5258.098616467873 + ], + [ + 2835.796462923545, + 5256.999161743632 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.796462923545, + "min_y": 5257.729653047136, + "max_x": 2836.412694369685, + "max_y": 5258.098616467873, + "center": [ + 2836.1045786466148, + 5257.914134757504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.412694369685, + 5257.729653047136 + ], + [ + 2835.796462923545, + 5258.098616467873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.469297071567, + "min_y": 5256.994813807997, + "max_x": 2835.469297071567, + "max_y": 5258.106604442805, + "center": [ + 2835.469297071567, + 5257.550709125401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.469297071567, + 5258.106604442805 + ], + [ + 2835.469297071567, + 5256.994813807997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.469297071567, + "min_y": 5256.994813807997, + "max_x": 2835.469297071567, + "max_y": 5258.106604442805, + "center": [ + 2835.469297071567, + 5257.550709125401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.469297071567, + 5258.106604442805 + ], + [ + 2835.469297071567, + 5256.994813807997 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.959904505327, + "min_y": 5256.992993788351, + "max_x": 2837.959904505327, + "max_y": 5258.104784423156, + "center": [ + 2837.959904505327, + 5257.548889105754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.959904505327, + 5258.104784423156 + ], + [ + 2837.959904505327, + 5256.992993788351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.632738653344, + "min_y": 5256.992993788351, + "max_x": 2837.632738653344, + "max_y": 5258.104784423156, + "center": [ + 2837.632738653344, + 5257.548889105754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.632738653344, + 5258.104784423156 + ], + [ + 2837.632738653344, + 5256.992993788351 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.959904505327, + "min_y": 5256.999161743632, + "max_x": 2837.959904505327, + "max_y": 5258.098616467873, + "center": [ + 2837.959904505327, + 5257.548889105752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.959904505327, + 5256.999161743632 + ], + [ + 2837.959904505327, + 5258.098616467873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2835.469297071567, + "min_y": 5256.999161743632, + "max_x": 2835.469297071567, + "max_y": 5258.098616467873, + "center": [ + 2835.469297071567, + 5257.548889105752 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.469297071567, + 5256.999161743632 + ], + [ + 2835.469297071567, + 5258.098616467873 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2836.362715738758, + "min_y": 5257.197004056066, + "max_x": 2837.0664858381315, + "max_y": 5257.90077415544, + "center": [ + 2836.714600788445, + 5257.548889105753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2836.714600788445, + 5257.548889105753 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2837.959904505327, + "min_y": 5256.978835325258, + "max_x": 2837.959904505327, + "max_y": 5258.118942886248, + "center": [ + 2837.959904505327, + 5257.548889105753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2837.959904505327, + 5258.118942886248 + ], + [ + 2837.959904505327, + 5256.978835325258 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2834.654507636484, + "min_y": 5257.548889105753, + "max_x": 2835.469297071567, + "max_y": 5257.548889105753, + "center": [ + 2835.0619023540257, + 5257.548889105753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2835.469297071567, + 5257.548889105753 + ], + [ + 2834.654507636484, + 5257.548889105753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582E5", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2837.959904505327, + "min_y": 5257.548889105753, + "max_x": 2839.123778114744, + "max_y": 5257.548889105753, + "center": [ + 2838.541841310035, + 5257.548889105753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2839.123778114744, + 5257.548889105753 + ], + [ + 2837.959904505327, + 5257.548889105753 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2850.943318815892, + "min_y": 5256.933963130284, + "max_x": 2850.943318815892, + "max_y": 5258.074070691274, + "center": [ + 2850.943318815892, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.943318815892, + 5258.074070691274 + ], + [ + 2850.943318815892, + 5256.933963130284 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2850.31724587687, + "min_y": 5256.933963130284, + "max_x": 2850.943318815892, + "max_y": 5256.933963130284, + "center": [ + 2850.630282346381, + 5256.933963130284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.31724587687, + 5256.933963130284 + ], + [ + 2850.943318815892, + 5256.933963130284 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2850.31724587687, + "min_y": 5258.074070691274, + "max_x": 2850.943318815892, + "max_y": 5258.074070691274, + "center": [ + 2850.630282346381, + 5258.074070691274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.31724587687, + 5258.074070691274 + ], + [ + 2850.943318815892, + 5258.074070691274 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582E9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.212119853214, + "min_y": 5256.954289548658, + "max_x": 2848.82835129935, + "max_y": 5257.323252969396, + "center": [ + 2848.520235576282, + 5257.138771259028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.82835129935, + 5256.954289548658 + ], + [ + 2848.212119853214, + 5257.323252969396 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.82835129935, + "min_y": 5256.954289548658, + "max_x": 2848.82835129935, + "max_y": 5258.053744272899, + "center": [ + 2848.82835129935, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.82835129935, + 5258.053744272899 + ], + [ + 2848.82835129935, + 5256.954289548658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.212119853214, + "min_y": 5257.68478085216, + "max_x": 2848.82835129935, + "max_y": 5258.053744272899, + "center": [ + 2848.520235576282, + 5257.86926256253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.212119853214, + 5257.68478085216 + ], + [ + 2848.82835129935, + 5258.053744272899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.992075569551, + "min_y": 5256.954289548658, + "max_x": 2847.608307015692, + "max_y": 5257.323252969394, + "center": [ + 2847.3001912926215, + 5257.138771259026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.992075569551, + 5256.954289548658 + ], + [ + 2847.608307015692, + 5257.323252969394 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582ED", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.992075569551, + "min_y": 5256.954289548658, + "max_x": 2846.992075569551, + "max_y": 5258.053744272899, + "center": [ + 2846.992075569551, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.992075569551, + 5258.053744272899 + ], + [ + 2846.992075569551, + 5256.954289548658 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.992075569551, + "min_y": 5257.684780852162, + "max_x": 2847.608307015692, + "max_y": 5258.053744272899, + "center": [ + 2847.3001912926215, + 5257.86926256253 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2847.608307015692, + 5257.684780852162 + ], + [ + 2846.992075569551, + 5258.053744272899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.664909717573, + "min_y": 5256.949941613022, + "max_x": 2846.664909717573, + "max_y": 5258.061732247831, + "center": [ + 2846.664909717573, + 5257.505836930426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.664909717573, + 5258.061732247831 + ], + [ + 2846.664909717573, + 5256.949941613022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.664909717573, + "min_y": 5256.949941613022, + "max_x": 2846.664909717573, + "max_y": 5258.061732247831, + "center": [ + 2846.664909717573, + 5257.505836930426 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.664909717573, + 5258.061732247831 + ], + [ + 2846.664909717573, + 5256.949941613022 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2849.155517151333, + "min_y": 5256.948121593376, + "max_x": 2849.155517151333, + "max_y": 5258.059912228181, + "center": [ + 2849.155517151333, + 5257.504016910778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2849.155517151333, + 5258.059912228181 + ], + [ + 2849.155517151333, + 5256.948121593376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2848.82835129935, + "min_y": 5256.948121593376, + "max_x": 2848.82835129935, + "max_y": 5258.059912228181, + "center": [ + 2848.82835129935, + 5257.504016910778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2848.82835129935, + 5258.059912228181 + ], + [ + 2848.82835129935, + 5256.948121593376 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2849.155517151333, + "min_y": 5256.954289548658, + "max_x": 2849.155517151333, + "max_y": 5258.053744272899, + "center": [ + 2849.155517151333, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2849.155517151333, + 5256.954289548658 + ], + [ + 2849.155517151333, + 5258.053744272899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2846.664909717573, + "min_y": 5256.954289548658, + "max_x": 2846.664909717573, + "max_y": 5258.053744272899, + "center": [ + 2846.664909717573, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.664909717573, + 5256.954289548658 + ], + [ + 2846.664909717573, + 5258.053744272899 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F5", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2847.5583283847645, + "min_y": 5257.152131861092, + "max_x": 2848.262098484138, + "max_y": 5257.855901960465, + "center": [ + 2847.910213434451, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2847.910213434451, + 5257.504016910779 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2849.155517151333, + "min_y": 5256.933963130284, + "max_x": 2849.155517151333, + "max_y": 5258.074070691274, + "center": [ + 2849.155517151333, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2849.155517151333, + 5258.074070691274 + ], + [ + 2849.155517151333, + 5256.933963130284 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582F7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2845.85012028249, + "min_y": 5257.504016910779, + "max_x": 2846.664909717573, + "max_y": 5257.504016910779, + "center": [ + 2846.2575150000316, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2846.664909717573, + 5257.504016910779 + ], + [ + 2845.85012028249, + 5257.504016910779 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582F8", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2849.155517151333, + "min_y": 5257.504016910779, + "max_x": 2850.31939076075, + "max_y": 5257.504016910779, + "center": [ + 2849.7374539560415, + 5257.504016910779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2850.31939076075, + 5257.504016910779 + ], + [ + 2849.155517151333, + 5257.504016910779 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5582F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2806.130836835809, + "min_y": 5220.405774143306, + "max_x": 2806.130836835809, + "max_y": 5221.545881704297, + "center": [ + 2806.130836835809, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2806.130836835809, + 5221.545881704297 + ], + [ + 2806.130836835809, + 5220.405774143306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2805.504763896788, + "min_y": 5220.405774143306, + "max_x": 2806.130836835809, + "max_y": 5220.405774143306, + "center": [ + 2805.817800366299, + 5220.405774143306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2805.504763896788, + 5220.405774143306 + ], + [ + 2806.130836835809, + 5220.405774143306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2805.504763896788, + "min_y": 5221.545881704297, + "max_x": 2806.130836835809, + "max_y": 5221.545881704297, + "center": [ + 2805.817800366299, + 5221.545881704297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2805.504763896788, + 5221.545881704297 + ], + [ + 2806.130836835809, + 5221.545881704297 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2803.399637873131, + "min_y": 5220.42610056168, + "max_x": 2804.015869319268, + "max_y": 5220.79506398242, + "center": [ + 2803.7077535961994, + 5220.61058227205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.015869319268, + 5220.42610056168 + ], + [ + 2803.399637873131, + 5220.79506398242 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2804.015869319268, + "min_y": 5220.42610056168, + "max_x": 2804.015869319268, + "max_y": 5221.525555285921, + "center": [ + 2804.015869319268, + 5220.9758279238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.015869319268, + 5221.525555285921 + ], + [ + 2804.015869319268, + 5220.42610056168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2803.399637873131, + "min_y": 5221.156591865184, + "max_x": 2804.015869319268, + "max_y": 5221.525555285921, + "center": [ + 2803.7077535961994, + 5221.341073575552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2803.399637873131, + 5221.156591865184 + ], + [ + 2804.015869319268, + 5221.525555285921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5582FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2802.179593589468, + "min_y": 5220.42610056168, + "max_x": 2802.795825035609, + "max_y": 5220.795063982417, + "center": [ + 2802.4877093125388, + 5220.610582272048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2802.179593589468, + 5220.42610056168 + ], + [ + 2802.795825035609, + 5220.795063982417 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558300", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2802.179593589468, + "min_y": 5220.42610056168, + "max_x": 2802.179593589468, + "max_y": 5221.525555285921, + "center": [ + 2802.179593589468, + 5220.9758279238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2802.179593589468, + 5221.525555285921 + ], + [ + 2802.179593589468, + 5220.42610056168 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558301", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2802.179593589468, + "min_y": 5221.156591865184, + "max_x": 2802.795825035609, + "max_y": 5221.525555285921, + "center": [ + 2802.4877093125388, + 5221.341073575552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2802.795825035609, + 5221.156591865184 + ], + [ + 2802.179593589468, + 5221.525555285921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558302", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2801.85242773749, + "min_y": 5220.421752626045, + "max_x": 2801.85242773749, + "max_y": 5221.533543260854, + "center": [ + 2801.85242773749, + 5220.9776479434495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.85242773749, + 5221.533543260854 + ], + [ + 2801.85242773749, + 5220.421752626045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558303", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2801.85242773749, + "min_y": 5220.421752626045, + "max_x": 2801.85242773749, + "max_y": 5221.533543260854, + "center": [ + 2801.85242773749, + 5220.9776479434495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.85242773749, + 5221.533543260854 + ], + [ + 2801.85242773749, + 5220.421752626045 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558304", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2804.343035171251, + "min_y": 5220.419932606399, + "max_x": 2804.343035171251, + "max_y": 5221.531723241203, + "center": [ + 2804.343035171251, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.343035171251, + 5221.531723241203 + ], + [ + 2804.343035171251, + 5220.419932606399 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558305", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2804.015869319268, + "min_y": 5220.419932606399, + "max_x": 2804.015869319268, + "max_y": 5221.531723241203, + "center": [ + 2804.015869319268, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.015869319268, + 5221.531723241203 + ], + [ + 2804.015869319268, + 5220.419932606399 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558306", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2804.343035171251, + "min_y": 5220.42610056168, + "max_x": 2804.343035171251, + "max_y": 5221.525555285921, + "center": [ + 2804.343035171251, + 5220.9758279238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.343035171251, + 5220.42610056168 + ], + [ + 2804.343035171251, + 5221.525555285921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558307", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2801.85242773749, + "min_y": 5220.42610056168, + "max_x": 2801.85242773749, + "max_y": 5221.525555285921, + "center": [ + 2801.85242773749, + 5220.9758279238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.85242773749, + 5220.42610056168 + ], + [ + 2801.85242773749, + 5221.525555285921 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558308", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2802.7458464046813, + "min_y": 5220.623942874115, + "max_x": 2803.4496165040546, + "max_y": 5221.327712973488, + "center": [ + 2803.097731454368, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2803.097731454368, + 5220.975827923801 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558309", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2804.343035171251, + "min_y": 5220.405774143306, + "max_x": 2804.343035171251, + "max_y": 5221.545881704297, + "center": [ + 2804.343035171251, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2804.343035171251, + 5221.545881704297 + ], + [ + 2804.343035171251, + 5220.405774143306 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55830A", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2801.037638302407, + "min_y": 5220.975827923801, + "max_x": 2801.85242773749, + "max_y": 5220.975827923801, + "center": [ + 2801.4450330199484, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2801.85242773749, + 5220.975827923801 + ], + [ + 2801.037638302407, + 5220.975827923801 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55830B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2804.343035171251, + "min_y": 5220.975827923801, + "max_x": 2805.506908780668, + "max_y": 5220.975827923801, + "center": [ + 2804.924971975959, + 5220.975827923801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2805.506908780668, + 5220.975827923801 + ], + [ + 2804.343035171251, + 5220.975827923801 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55830C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2811.280115360911, + "min_y": 5254.934960187708, + "max_x": 2813.9678306018554, + "max_y": 5256.4281353215665, + "center": [ + 2812.6239729813833, + 5255.681547754637 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55830D", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2825.225715212779, + "min_y": 5254.850420819999, + "max_x": 2827.9134304537233, + "max_y": 5256.343595953857, + "center": [ + 2826.569572833251, + 5255.597008386929 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55830E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2835.497248389417, + "min_y": 5255.061769239272, + "max_x": 2838.1849636303614, + "max_y": 5256.55494437313, + "center": [ + 2836.8411060098892, + 5255.808356806201 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55830F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2846.698714610853, + "min_y": 5254.977229871562, + "max_x": 2849.3864298517974, + "max_y": 5256.47040500542, + "center": [ + 2848.0425722313253, + 5255.723817438491 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558310", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2802.077887422798, + "min_y": 5222.12849844525, + "max_x": 2804.7656026637424, + "max_y": 5223.621673579109, + "center": [ + 2803.42174504327, + 5222.87508601218 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558311", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.543907952704, + "min_y": 5254.29507867623, + "max_x": 2654.353166429533, + "max_y": 5254.709234074351, + "center": [ + 2653.4485371911187, + 5254.502156375291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.543907952704, + 5254.709234074351 + ], + [ + 2654.353166429533, + 5254.29507867623 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558312", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.543907952704, + "min_y": 5253.216058940494, + "max_x": 2654.353166429533, + "max_y": 5253.630214338356, + "center": [ + 2653.4485371911187, + 5253.423136639425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.543907952704, + 5253.216058940494 + ], + [ + 2654.353166429533, + 5253.630214338356 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558313", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.353166429533, + "min_y": 5253.630214338356, + "max_x": 2654.353166429533, + "max_y": 5254.29507867623, + "center": [ + 2654.353166429533, + 5253.962646507293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.353166429533, + 5253.630214338356 + ], + [ + 2654.353166429533, + 5254.29507867623 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558314", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2652.543907952704, + "min_y": 5253.216058940494, + "max_x": 2652.543907952704, + "max_y": 5254.709234074351, + "center": [ + 2652.543907952704, + 5253.9626465074225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2652.543907952704, + 5254.709234074351 + ], + [ + 2652.543907952704, + 5253.216058940494 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558315", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2654.352789749826, + "min_y": 5253.980991807517, + "max_x": 2665.814350558482, + "max_y": 5253.980991807517, + "center": [ + 2660.083570154154, + 5253.980991807517 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2654.352789749826, + 5253.980991807517 + ], + [ + 2665.814350558482, + 5253.980991807517 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558316", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2652.416607573319, + "min_y": 5250.428727493561, + "max_x": 2658.6879431355223, + "max_y": 5251.9219026274195, + "center": [ + 2655.552275354421, + 5251.175315060491 + ] + }, + "raw_value": "50Ax25A", + "clean_value": "50Ax25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558317", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2666.160690261314, + "min_y": 5288.55866377628, + "max_x": 2666.574845659436, + "max_y": 5290.367922253109, + "center": [ + 2666.367767960375, + 5289.4632930146945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.574845659436, + 5290.367922253109 + ], + [ + 2666.160690261314, + 5288.55866377628 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558318", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.081670525578, + "min_y": 5288.55866377628, + "max_x": 2665.49582592344, + "max_y": 5290.367922253109, + "center": [ + 2665.2887482245087, + 5289.4632930146945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.081670525578, + 5290.367922253109 + ], + [ + 2665.49582592344, + 5288.55866377628 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "558319", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.49582592344, + "min_y": 5288.55866377628, + "max_x": 2666.160690261314, + "max_y": 5288.55866377628, + "center": [ + 2665.828258092377, + 5288.55866377628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.49582592344, + 5288.55866377628 + ], + [ + 2666.160690261314, + 5288.55866377628 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55831A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.081670525578, + "min_y": 5290.367922253109, + "max_x": 2666.574845659436, + "max_y": 5290.367922253109, + "center": [ + 2665.828258092507, + 5290.367922253109 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.574845659436, + 5290.367922253109 + ], + [ + 2665.081670525578, + 5290.367922253109 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55831B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.05843703735, + "min_y": 5292.423942877385, + "max_x": 2666.551612171208, + "max_y": 5292.423942877385, + "center": [ + 2665.805024604279, + 5292.423942877385 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.551612171208, + 5292.423942877385 + ], + [ + 2665.05843703735, + 5292.423942877385 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55831C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.05843703735, + "min_y": 5292.672805399696, + "max_x": 2666.551612171208, + "max_y": 5292.672805399696, + "center": [ + 2665.805024604279, + 5292.672805399696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2666.551612171208, + 5292.672805399696 + ], + [ + 2665.05843703735, + 5292.672805399696 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "55831D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5290.361688057926, + "max_x": 2665.814350558482, + "max_y": 5292.423942030639, + "center": [ + 2665.814350558482, + 5291.3928150442825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5292.423942030639 + ], + [ + 2665.814350558482, + 5290.361688057926 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55831E", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2666.686862491989, + "min_y": 5291.939211489083, + "max_x": 2669.374577732933, + "max_y": 5293.4323866229415, + "center": [ + 2668.030720112461, + 5292.685799056013 + ] + }, + "raw_value": "40A", + "clean_value": "40A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "55831F", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2666.9082758601, + "min_y": 5288.87620590035, + "max_x": 2673.179611422303, + "max_y": 5290.369381034208, + "center": [ + 2670.0439436412016, + 5289.622793467279 + ] + }, + "raw_value": "40Ax25A", + "clean_value": "40Ax25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558320", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2667.225533948474, + "min_y": 5284.357575025286, + "max_x": 2669.9132491894184, + "max_y": 5285.850750159144, + "center": [ + 2668.5693915689462, + 5285.104162592215 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558321", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2665.814350558482, + "min_y": 5189.344238340373, + "max_x": 2665.814350558482, + "max_y": 5283.261534769934, + "center": [ + 2665.814350558482, + 5236.302886555153 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2665.814350558482, + 5283.261534769934 + ], + [ + 2665.814350558482, + 5189.344238340373 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558322", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.912306628981, + "min_y": 5382.476245110787, + "max_x": 2613.912306628981, + "max_y": 5384.79564355484, + "center": [ + 2613.912306628981, + 5383.635944332814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.912306628981, + 5384.79564355484 + ], + [ + 2613.912306628981, + 5382.476245110787 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558323", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.912306628981, + "min_y": 5377.660169816848, + "max_x": 2613.912306628981, + "max_y": 5379.16093442478, + "center": [ + 2613.912306628981, + 5378.410552120814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.912306628981, + 5379.16093442478 + ], + [ + 2613.912306628981, + 5377.660169816848 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558324", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.349125699266, + "min_y": 5377.296814538954, + "max_x": 2613.349125699266, + "max_y": 5377.996533097809, + "center": [ + 2613.349125699266, + 5377.646673818382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.349125699266, + 5377.996533097809 + ], + [ + 2613.349125699266, + 5377.296814538954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558325", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2613.349125699266, + "min_y": 5377.296814538954, + "max_x": 2614.475487558697, + "max_y": 5377.296814538954, + "center": [ + 2613.9123066289812, + 5377.296814538954 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.349125699266, + 5377.296814538954 + ], + [ + 2614.475487558697, + 5377.296814538954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558326", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2614.475487558697, + "min_y": 5377.296814538954, + "max_x": 2614.475487558697, + "max_y": 5377.996533097809, + "center": [ + 2614.475487558697, + 5377.646673818382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.475487558697, + 5377.996533097809 + ], + [ + 2614.475487558697, + 5377.296814538954 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558327", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5379.658161744354, + "max_x": 2614.66769369226, + "max_y": 5379.658161744354, + "center": [ + 2613.912306628982, + 5379.658161744354 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.156919565704, + 5379.658161744354 + ], + [ + 2614.66769369226, + 5379.658161744354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558328", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5382.080522177904, + "max_x": 2614.66769369226, + "max_y": 5382.080522177904, + "center": [ + 2613.912306628982, + 5382.080522177904 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.156919565704, + 5382.080522177904 + ], + [ + 2614.66769369226, + 5382.080522177904 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558329", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2614.152795822334, + "min_y": 5379.658161744354, + "max_x": 2614.66769369226, + "max_y": 5380.483743944562, + "center": [ + 2614.410244757297, + 5380.070952844459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.66769369226, + 5379.658161744354 + ], + [ + 2614.152795822334, + 5380.483743944562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5379.658161744354, + "max_x": 2613.67181743563, + "max_y": 5380.483743944562, + "center": [ + 2613.414368500667, + 5380.070952844459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.156919565704, + 5379.658161744354 + ], + [ + 2613.67181743563, + 5380.483743944562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.4578609419136, + "min_y": 5380.414896274057, + "max_x": 2614.3667523160525, + "max_y": 5381.323787648197, + "center": [ + 2613.912306628983, + 5380.869341961127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.912306628983, + 5380.869341961127 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2614.152795822334, + "min_y": 5381.25493997769, + "max_x": 2614.66769369226, + "max_y": 5382.080522177904, + "center": [ + 2614.410244757297, + 5381.667731077797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2614.152795822334, + 5381.25493997769 + ], + [ + 2614.66769369226, + 5382.080522177904 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5381.25493997769, + "max_x": 2613.67181743563, + "max_y": 5382.080522177904, + "center": [ + 2613.414368500667, + 5381.667731077797 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.67181743563, + 5381.25493997769 + ], + [ + 2613.156919565704, + 5382.080522177904 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5382.577749497478, + "max_x": 2614.66769369226, + "max_y": 5382.577749497478, + "center": [ + 2613.912306628982, + 5382.577749497478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.156919565704, + 5382.577749497478 + ], + [ + 2614.66769369226, + 5382.577749497478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55832F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 2613.156919565704, + "min_y": 5379.16093442478, + "max_x": 2614.66769369226, + "max_y": 5379.16093442478, + "center": [ + 2613.912306628982, + 5379.16093442478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2613.156919565704, + 5379.16093442478 + ], + [ + 2614.66769369226, + 5379.16093442478 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558330", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.185250388648, + "min_y": 5151.29792201084, + "max_x": 2797.185250388648, + "max_y": 5183.646947741543, + "center": [ + 2797.185250388648, + 5167.472434876192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.185250388648, + 5183.646947741543 + ], + [ + 2797.185250388648, + 5151.29792201084 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558331", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2792.365138265866, + "min_y": 5171.992279893753, + "max_x": 2792.367257270363, + "max_y": 5175.377552531035, + "center": [ + 2792.3661977681145, + 5173.6849162123945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2792.365138265866, + 5175.377552531035 + ], + [ + 2792.367257270363, + 5171.992279893753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558332", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2732.642981468461, + "min_y": 5171.992279893753, + "max_x": 2792.367257270363, + "max_y": 5171.992279893753, + "center": [ + 2762.505119369412, + 5171.992279893753 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2792.367257270363, + 5171.992279893753 + ], + [ + 2732.642981468461, + 5171.992279893753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558333", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2795.166412024826, + "min_y": 5178.052651906345, + "max_x": 2797.184547299969, + "max_y": 5178.052651906345, + "center": [ + 2796.1754796623973, + 5178.052651906345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2795.166412024826, + 5178.052651906345 + ], + [ + 2797.184547299969, + 5178.052651906345 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558334", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2815.632132919029, + "min_y": 5158.678748928531, + "max_x": 2815.632132919029, + "max_y": 5183.430943995374, + "center": [ + 2815.632132919029, + 5171.054846461952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2815.632132919029, + 5158.678748928531 + ], + [ + 2815.632132919029, + 5183.430943995374 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558335", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2813.562527376384, + "min_y": 5177.965269270535, + "max_x": 2815.639541803133, + "max_y": 5177.965269270535, + "center": [ + 2814.6010345897585, + 5177.965269270535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2813.562527376384, + 5177.965269270535 + ], + [ + 2815.639541803133, + 5177.965269270535 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558336", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2810.763731227865, + "min_y": 5165.649165549815, + "max_x": 2810.763731227865, + "max_y": 5175.2825588241, + "center": [ + 2810.763731227865, + 5170.465862186958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2810.763731227865, + 5165.649165549815 + ], + [ + 2810.763731227865, + 5175.2825588241 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558337", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.185210312765, + "min_y": 5148.835393607035, + "max_x": 2860.520822233308, + "max_y": 5148.835393607035, + "center": [ + 2828.8530162730367, + 5148.835393607035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.185210312765, + 5148.835393607035 + ], + [ + 2860.520822233308, + 5148.835393607035 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558338", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2728.285849773707, + "min_y": 5165.649165549815, + "max_x": 2810.79771337525, + "max_y": 5165.649165549815, + "center": [ + 2769.5417815744786, + 5165.649165549815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2728.285849773707, + 5165.649165549815 + ], + [ + 2810.79771337525, + 5165.649165549815 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558339", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2797.185250388648, + "min_y": 5148.837541465275, + "max_x": 2797.185250388648, + "max_y": 5150.749967734578, + "center": [ + 2797.185250388648, + 5149.793754599927 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2797.185250388648, + 5150.749967734578 + ], + [ + 2797.185250388648, + 5148.837541465275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55833A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2894.657396037541, + "min_y": 5190.692683442382, + "max_x": 2900.2568027895077, + "max_y": 5191.625917901043, + "center": [ + 2897.4570994135242, + 5191.159300671712 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55833B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 2911.321516947987, + "min_y": 5190.682239506196, + "max_x": 2915.8010423495607, + "max_y": 5191.615473964857, + "center": [ + 2913.561279648774, + 5191.148856735526 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55833C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2549.526438426577, + "min_y": 4931.685148437537, + "max_x": 2575.6570032690897, + "max_y": 4933.485148437537, + "center": [ + 2562.591720847833, + 4932.585148437536 + ] + }, + "raw_value": "\\pi3.54531;{\\W0.9;\\LT-3210 (기존설비)\\P\\pi1.71099;\\lWASTE WATER TANK}", + "clean_value": "\\pi3.54531; .9; T-3210 (기존설비) \\pi1.71099;\\lWASTE WATER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558340", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2550.002125509587, + "min_y": 4925.240236919467, + "max_x": 2587.2017481263856, + "max_y": 4927.040236919467, + "center": [ + 2568.6019368179864, + 4926.1402369194675 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C3,800 x 4,000H \\PVOLUME : 45.36{\\A1;M\\H0.7x;\\S3^ ;}\\PDP/OP : F.W / ATM\\PDT/OT : 80 %%DC / 40 %%DC \\PMATERIAL : STS304", + "clean_value": ".9;SIZE : %%C3,800 x 4,000H VOLUME : 45.36 M .7x; ^ ; DP/OP : F.W / ATM DT/OT : 80 %%DC / 40 %%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558344", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3896.67222628777, + "min_y": 5153.340972372789, + "max_x": 3928.4021978822498, + "max_y": 5155.140972372789, + "center": [ + 3912.5372120850097, + 5154.240972372789 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 100L/min\\PSIZE : 50A/40A\\PMATERIAL : GC200\\PPRESSURE : 0.3 MPa\\PRPM : 1,750", + "clean_value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : GC200 PRESSURE : 0.3 MPa RPM : 1,750", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558348", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3896.372060994187, + "min_y": 5160.521985416614, + "max_x": 3928.1020325886666, + "max_y": 5162.321985416615, + "center": [ + 3912.237046791427, + 5161.421985416615 + ] + }, + "raw_value": "\\L\\W0.9;P-10800A/B\\PCITY WATER PUMP", + "clean_value": ".9;P-10800A/B CITY WATER PUMP", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "55834C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3864.582588730388, + "min_y": 5152.997497519053, + "max_x": 3896.3125603248677, + "max_y": 5154.797497519053, + "center": [ + 3880.4475745276277, + 5153.897497519052 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C4,610 x 3,000H\\PVOLUME : 50m3\\PDP/OP : F.W / ATM\\PDT/OT : 80}%%DC \\A1;/ AMB\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : %%C4,610 x 3,000H VOLUME : 50m3 DP/OP : F.W / ATM DT/OT : 80 %%DC / AMB MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558350", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 3864.76249424156, + "min_y": 5160.178510562877, + "max_x": 3896.4924658360396, + "max_y": 5161.978510562877, + "center": [ + 3880.6274800388, + 5161.0785105628765 + ] + }, + "raw_value": "\\L\\W0.9;T-10800\\PCITY WATER TANK", + "clean_value": ".9;T-10800 CITY WATER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55862C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4906.431178752111, + "min_y": 5210.035273274187, + "max_x": 5050.895860017697, + "max_y": 5210.03527327419, + "center": [ + 4978.663519384903, + 5210.0352732741885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4906.431178752111, + 5210.035273274187 + ], + [ + 5050.895860017697, + 5210.03527327419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55862D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5210.035273274187, + "max_x": 5033.523983062266, + "max_y": 5403.333655076854, + "center": [ + 5033.523983062266, + 5306.68446417552 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5210.035273274187 + ], + [ + 5033.523983062266, + 5403.333655076854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55862E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5008.011820154398, + "min_y": 5177.417265763392, + "max_x": 5017.077401955559, + "max_y": 5179.096077208052, + "center": [ + 5012.544611054978, + 5178.256671485722 + ] + }, + "raw_value": "PCV-10111", + "clean_value": "PCV-10111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55862F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5005.305945514747, + "min_y": 5174.393554986349, + "max_x": 5005.305945514747, + "max_y": 5190.857617782217, + "center": [ + 5005.305945514747, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.305945514747, + 5190.857617782217 + ], + [ + 5005.305945514747, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558630", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5009.038883349391, + "min_y": 5174.393554986349, + "max_x": 5009.038883349391, + "max_y": 5190.857617782217, + "center": [ + 5009.038883349391, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.038883349391, + 5190.857617782217 + ], + [ + 5009.038883349391, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558631", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5005.305945514747, + "min_y": 5190.857617782217, + "max_x": 5009.038883349391, + "max_y": 5190.857617782217, + "center": [ + 5007.172414432069, + 5190.857617782217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.305945514747, + 5190.857617782217 + ], + [ + 5009.038883349391, + 5190.857617782217 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558632", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5005.305945514747, + "min_y": 5172.527086069025, + "max_x": 5007.172414432069, + "max_y": 5174.393554986349, + "center": [ + 5006.239179973408, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.305945514747, + 5174.393554986349 + ], + [ + 5007.172414432069, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558633", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.172414432069, + "min_y": 5172.527086069025, + "max_x": 5009.038883349391, + "max_y": 5174.393554986349, + "center": [ + 5008.10564889073, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.038883349391, + 5174.393554986349 + ], + [ + 5007.172414432069, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558634", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5017.010941630967, + "min_y": 5177.417265763392, + "max_x": 5026.076523432128, + "max_y": 5179.096077208052, + "center": [ + 5021.543732531547, + 5178.256671485722 + ] + }, + "raw_value": "PCV-10211", + "clean_value": "PCV-10211", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558635", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.305066991315, + "min_y": 5174.393554986349, + "max_x": 5014.305066991315, + "max_y": 5190.857617782217, + "center": [ + 5014.305066991315, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5014.305066991315, + 5190.857617782217 + ], + [ + 5014.305066991315, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558636", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5018.038004825959, + "min_y": 5174.393554986349, + "max_x": 5018.038004825959, + "max_y": 5190.857617782217, + "center": [ + 5018.038004825959, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5018.038004825959, + 5190.857617782217 + ], + [ + 5018.038004825959, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558637", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.305066991315, + "min_y": 5190.857617782217, + "max_x": 5018.038004825959, + "max_y": 5190.857617782217, + "center": [ + 5016.171535908637, + 5190.857617782217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5014.305066991315, + 5190.857617782217 + ], + [ + 5018.038004825959, + 5190.857617782217 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558638", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.305066991315, + "min_y": 5172.527086069025, + "max_x": 5016.171535908637, + "max_y": 5174.393554986349, + "center": [ + 5015.238301449976, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5014.305066991315, + 5174.393554986349 + ], + [ + 5016.171535908637, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558639", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5016.171535908637, + "min_y": 5172.527086069025, + "max_x": 5018.038004825959, + "max_y": 5174.393554986349, + "center": [ + 5017.104770367298, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5018.038004825959, + 5174.393554986349 + ], + [ + 5016.171535908637, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4983.41443345846, + "min_y": 5177.457221475777, + "max_x": 4992.480015259621, + "max_y": 5179.136032920437, + "center": [ + 4987.947224359041, + 5178.296627198108 + ] + }, + "raw_value": "FCV-10116", + "clean_value": "FCV-10116", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4980.708558818809, + "min_y": 5174.39355498635, + "max_x": 4980.708558818809, + "max_y": 5190.857617782219, + "center": [ + 4980.708558818809, + 5182.625586384284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.708558818809, + 5190.857617782219 + ], + [ + 4980.708558818809, + 5174.39355498635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4984.441496653453, + "min_y": 5174.39355498635, + "max_x": 4984.441496653453, + "max_y": 5190.857617782219, + "center": [ + 4984.441496653453, + 5182.625586384284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4984.441496653453, + 5190.857617782219 + ], + [ + 4984.441496653453, + 5174.39355498635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4980.708558818809, + "min_y": 5190.857617782219, + "max_x": 4984.441496653453, + "max_y": 5190.857617782219, + "center": [ + 4982.575027736131, + 5190.857617782219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.708558818809, + 5190.857617782219 + ], + [ + 4984.441496653453, + 5190.857617782219 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4980.708558818809, + "min_y": 5172.527086069027, + "max_x": 4982.575027736132, + "max_y": 5174.39355498635, + "center": [ + 4981.641793277471, + 5173.460320527689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.708558818809, + 5174.39355498635 + ], + [ + 4982.575027736132, + 5172.527086069027 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55863F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4982.575027736132, + "min_y": 5172.527086069027, + "max_x": 4984.441496653453, + "max_y": 5174.39355498635, + "center": [ + 4983.508262194793, + 5173.460320527689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4984.441496653453, + 5174.39355498635 + ], + [ + 4982.575027736132, + 5172.527086069027 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558640", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5042.859816994258, + "min_y": 5177.457221475777, + "max_x": 5051.925398795419, + "max_y": 5179.136032920437, + "center": [ + 5047.392607894839, + 5178.296627198108 + ] + }, + "raw_value": "FCV-10216", + "clean_value": "FCV-10216", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558641", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.153942354606, + "min_y": 5174.39355498635, + "max_x": 5040.153942354606, + "max_y": 5190.857617782219, + "center": [ + 5040.153942354606, + 5182.625586384284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5040.153942354606, + 5190.857617782219 + ], + [ + 5040.153942354606, + 5174.39355498635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558642", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5043.886880189251, + "min_y": 5174.39355498635, + "max_x": 5043.886880189251, + "max_y": 5190.857617782219, + "center": [ + 5043.886880189251, + 5182.625586384284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5043.886880189251, + 5190.857617782219 + ], + [ + 5043.886880189251, + 5174.39355498635 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558643", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.153942354606, + "min_y": 5190.857617782219, + "max_x": 5043.886880189251, + "max_y": 5190.857617782219, + "center": [ + 5042.020411271929, + 5190.857617782219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5040.153942354606, + 5190.857617782219 + ], + [ + 5043.886880189251, + 5190.857617782219 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558644", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.153942354606, + "min_y": 5172.527086069027, + "max_x": 5042.020411271927, + "max_y": 5174.39355498635, + "center": [ + 5041.0871768132665, + 5173.460320527689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5040.153942354606, + 5174.39355498635 + ], + [ + 5042.020411271927, + 5172.527086069027 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558645", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.020411271927, + "min_y": 5172.527086069027, + "max_x": 5043.886880189251, + "max_y": 5174.39355498635, + "center": [ + 5042.953645730589, + 5173.460320527689 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5043.886880189251, + 5174.39355498635 + ], + [ + 5042.020411271927, + 5172.527086069027 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558646", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5034.295275300514, + "min_y": 5174.515921193723, + "max_x": 5054.443217006417, + "max_y": 5176.194916335882, + "center": [ + 5044.369246153466, + 5175.355418764802 + ] + }, + "raw_value": "1F #10 Plant Utility", + "clean_value": "1F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558647", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.567575050089, + "min_y": 5286.527727961614, + "max_x": 5057.031637845957, + "max_y": 5286.527727961614, + "center": [ + 5048.799606448023, + 5286.527727961614 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.031637845957, + 5286.527727961614 + ], + [ + 5040.567575050089, + 5286.527727961614 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558648", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.567575050089, + "min_y": 5282.794790126969, + "max_x": 5057.031637845957, + "max_y": 5282.794790126969, + "center": [ + 5048.799606448023, + 5282.794790126969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.031637845957, + 5282.794790126969 + ], + [ + 5040.567575050089, + 5282.794790126969 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558649", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5041.586318520661, + "min_y": 5283.889966806043, + "max_x": 5061.734260226564, + "max_y": 5285.568961948202, + "center": [ + 5051.660289373613, + 5284.729464377122 + ] + }, + "raw_value": "3F #10 Plant Utility", + "clean_value": "3F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55864A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4986.315334880044, + "min_y": 5213.6934112988, + "max_x": 4986.315334880044, + "max_y": 5229.21292876616, + "center": [ + 4986.315334880044, + 5221.453170032481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4986.315334880044, + 5213.6934112988 + ], + [ + 4986.315334880044, + 5229.21292876616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55864B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4984.44886596272, + "min_y": 5229.21292876616, + "max_x": 4984.44886596272, + "max_y": 5245.676991562029, + "center": [ + 4984.44886596272, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4984.44886596272, + 5229.21292876616 + ], + [ + 4984.44886596272, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55864C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4988.181803797367, + "min_y": 5229.21292876616, + "max_x": 4988.181803797367, + "max_y": 5245.676991562029, + "center": [ + 4988.181803797367, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4988.181803797367, + 5229.21292876616 + ], + [ + 4988.181803797367, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55864D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4984.44886596272, + "min_y": 5229.21292876616, + "max_x": 4988.181803797367, + "max_y": 5229.21292876616, + "center": [ + 4986.315334880044, + 5229.21292876616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4984.44886596272, + 5229.21292876616 + ], + [ + 4988.181803797367, + 5229.21292876616 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55864E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4984.44886596272, + "min_y": 5245.676991562029, + "max_x": 4986.315334880043, + "max_y": 5247.543460479352, + "center": [ + 4985.382100421382, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4984.44886596272, + 5245.676991562029 + ], + [ + 4986.315334880043, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55864F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4986.315334880043, + "min_y": 5245.676991562029, + "max_x": 4988.181803797367, + "max_y": 5247.543460479352, + "center": [ + 4987.248569338705, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4988.181803797367, + 5245.676991562029 + ], + [ + 4986.315334880043, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558650", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5026.940638936769, + "min_y": 5229.21292876616, + "max_x": 5026.940638936769, + "max_y": 5245.676991562029, + "center": [ + 5026.940638936769, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.940638936769, + 5229.21292876616 + ], + [ + 5026.940638936769, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558651", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5030.673576771414, + "min_y": 5229.21292876616, + "max_x": 5030.673576771414, + "max_y": 5245.676991562029, + "center": [ + 5030.673576771414, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5030.673576771414, + 5229.21292876616 + ], + [ + 5030.673576771414, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558652", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5026.940638936769, + "min_y": 5229.21292876616, + "max_x": 5030.673576771414, + "max_y": 5229.21292876616, + "center": [ + 5028.807107854092, + 5229.21292876616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.940638936769, + 5229.21292876616 + ], + [ + 5030.673576771414, + 5229.21292876616 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558653", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5026.940638936769, + "min_y": 5245.676991562029, + "max_x": 5028.807107854091, + "max_y": 5247.543460479352, + "center": [ + 5027.87387339543, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.940638936769, + 5245.676991562029 + ], + [ + 5028.807107854091, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558654", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5028.807107854091, + "min_y": 5245.676991562029, + "max_x": 5030.673576771414, + "max_y": 5247.543460479352, + "center": [ + 5029.740342312753, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5030.673576771414, + 5245.676991562029 + ], + [ + 5028.807107854091, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558655", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.58759025003, + "min_y": 5229.21292876616, + "max_x": 4992.58759025003, + "max_y": 5245.676991562029, + "center": [ + 4992.58759025003, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.58759025003, + 5229.21292876616 + ], + [ + 4992.58759025003, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558656", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4996.320528084676, + "min_y": 5229.21292876616, + "max_x": 4996.320528084676, + "max_y": 5245.676991562029, + "center": [ + 4996.320528084676, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.320528084676, + 5229.21292876616 + ], + [ + 4996.320528084676, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558657", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.58759025003, + "min_y": 5229.21292876616, + "max_x": 4996.320528084676, + "max_y": 5229.21292876616, + "center": [ + 4994.454059167353, + 5229.21292876616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.58759025003, + 5229.21292876616 + ], + [ + 4996.320528084676, + 5229.21292876616 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558658", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.58759025003, + "min_y": 5245.676991562029, + "max_x": 4994.454059167352, + "max_y": 5247.543460479352, + "center": [ + 4993.520824708691, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.58759025003, + 5245.676991562029 + ], + [ + 4994.454059167352, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558659", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4994.454059167352, + "min_y": 5245.676991562029, + "max_x": 4996.320528084676, + "max_y": 5247.543460479352, + "center": [ + 4995.387293626014, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.320528084676, + 5245.676991562029 + ], + [ + 4994.454059167352, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5045.204787260932, + "min_y": 5229.21292876616, + "max_x": 5045.204787260932, + "max_y": 5245.676991562029, + "center": [ + 5045.204787260932, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5045.204787260932, + 5229.21292876616 + ], + [ + 5045.204787260932, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5048.937725095575, + "min_y": 5229.21292876616, + "max_x": 5048.937725095575, + "max_y": 5245.676991562029, + "center": [ + 5048.937725095575, + 5237.4449601640945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5048.937725095575, + 5229.21292876616 + ], + [ + 5048.937725095575, + 5245.676991562029 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5045.204787260932, + "min_y": 5229.21292876616, + "max_x": 5048.937725095575, + "max_y": 5229.21292876616, + "center": [ + 5047.071256178253, + 5229.21292876616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5045.204787260932, + 5229.21292876616 + ], + [ + 5048.937725095575, + 5229.21292876616 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5045.204787260932, + "min_y": 5245.676991562029, + "max_x": 5047.071256178253, + "max_y": 5247.543460479352, + "center": [ + 5046.138021719593, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5045.204787260932, + 5245.676991562029 + ], + [ + 5047.071256178253, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5047.071256178253, + "min_y": 5245.676991562029, + "max_x": 5048.937725095575, + "max_y": 5247.543460479352, + "center": [ + 5048.004490636914, + 5246.61022602069 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5048.937725095575, + 5245.676991562029 + ], + [ + 5047.071256178253, + 5247.543460479352 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55865F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4999.01269867783, + "min_y": 5177.995910098082, + "max_x": 5007.070993612195, + "max_y": 5179.674721542742, + "center": [ + 5003.041846145012, + 5178.835315820412 + ] + }, + "raw_value": "DP-10101", + "clean_value": "DP-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558660", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4996.306824038178, + "min_y": 5174.393554986349, + "max_x": 4996.306824038178, + "max_y": 5190.857617782217, + "center": [ + 4996.306824038178, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.306824038178, + 5190.857617782217 + ], + [ + 4996.306824038178, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558661", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.039761872822, + "min_y": 5174.393554986349, + "max_x": 5000.039761872822, + "max_y": 5190.857617782217, + "center": [ + 5000.039761872822, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.039761872822, + 5190.857617782217 + ], + [ + 5000.039761872822, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558662", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4996.306824038178, + "min_y": 5190.857617782217, + "max_x": 5000.039761872822, + "max_y": 5190.857617782217, + "center": [ + 4998.1732929555, + 5190.857617782217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.306824038178, + 5190.857617782217 + ], + [ + 5000.039761872822, + 5190.857617782217 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558663", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4996.306824038178, + "min_y": 5172.527086069025, + "max_x": 4998.1732929555, + "max_y": 5174.393554986349, + "center": [ + 4997.240058496839, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.306824038178, + 5174.393554986349 + ], + [ + 4998.1732929555, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558664", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4998.1732929555, + "min_y": 5172.527086069025, + "max_x": 5000.039761872822, + "max_y": 5174.393554986349, + "center": [ + 4999.106527414161, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.039761872822, + 5174.393554986349 + ], + [ + 4998.1732929555, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558665", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5026.010063107536, + "min_y": 5177.995910098082, + "max_x": 5034.068358041901, + "max_y": 5179.674721542742, + "center": [ + 5030.039210574718, + 5178.835315820412 + ] + }, + "raw_value": "DP-10201", + "clean_value": "DP-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558666", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5023.304188467884, + "min_y": 5174.393554986349, + "max_x": 5023.304188467884, + "max_y": 5190.857617782217, + "center": [ + 5023.304188467884, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5023.304188467884, + 5190.857617782217 + ], + [ + 5023.304188467884, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558667", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5027.037126302531, + "min_y": 5174.393554986349, + "max_x": 5027.037126302531, + "max_y": 5190.857617782217, + "center": [ + 5027.037126302531, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5027.037126302531, + 5190.857617782217 + ], + [ + 5027.037126302531, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558668", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5023.304188467884, + "min_y": 5190.857617782217, + "max_x": 5027.037126302531, + "max_y": 5190.857617782217, + "center": [ + 5025.170657385208, + 5190.857617782217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5023.304188467884, + 5190.857617782217 + ], + [ + 5027.037126302531, + 5190.857617782217 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558669", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5023.304188467884, + "min_y": 5172.527086069025, + "max_x": 5025.170657385206, + "max_y": 5174.393554986349, + "center": [ + 5024.237422926545, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5023.304188467884, + 5174.393554986349 + ], + [ + 5025.170657385206, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5025.170657385206, + "min_y": 5172.527086069025, + "max_x": 5027.037126302531, + "max_y": 5174.393554986349, + "center": [ + 5026.103891843868, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5027.037126302531, + 5174.393554986349 + ], + [ + 5025.170657385206, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4987.154740602372, + "min_y": 5232.276595255587, + "max_x": 4996.220322403533, + "max_y": 5233.955406700247, + "center": [ + 4991.687531502952, + 5233.116000977918 + ] + }, + "raw_value": "FCV-10101", + "clean_value": "FCV-10101", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5029.64651357642, + "min_y": 5232.276595255589, + "max_x": 5038.712095377581, + "max_y": 5233.955406700249, + "center": [ + 5034.179304477, + 5233.11600097792 + ] + }, + "raw_value": "FCV-10201", + "clean_value": "FCV-10201", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4995.293464889681, + "min_y": 5232.290151658003, + "max_x": 5004.359046690842, + "max_y": 5233.968963102663, + "center": [ + 4999.826255790262, + 5233.129557380333 + ] + }, + "raw_value": "TCV-10111", + "clean_value": "TCV-10111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5047.910661900583, + "min_y": 5232.290151658004, + "max_x": 5056.976243701744, + "max_y": 5233.968963102664, + "center": [ + 5052.443452801164, + 5233.1295573803345 + ] + }, + "raw_value": "TCV-10211", + "clean_value": "TCV-10211", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55866F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5190.857617782217, + "max_x": 5033.523983062266, + "max_y": 5210.035273274191, + "center": [ + 5033.523983062266, + 5200.446445528204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5210.035273274191 + ], + [ + 5033.523983062266, + 5190.857617782217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558670", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.657514144943, + "min_y": 5174.393554986349, + "max_x": 5031.657514144943, + "max_y": 5190.857617782217, + "center": [ + 5031.657514144943, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.657514144943, + 5190.857617782217 + ], + [ + 5031.657514144943, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558671", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5035.390451979589, + "min_y": 5174.393554986349, + "max_x": 5035.390451979589, + "max_y": 5190.857617782217, + "center": [ + 5035.390451979589, + 5182.625586384283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5035.390451979589, + 5190.857617782217 + ], + [ + 5035.390451979589, + 5174.393554986349 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558672", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.657514144943, + "min_y": 5190.857617782217, + "max_x": 5035.390451979589, + "max_y": 5190.857617782217, + "center": [ + 5033.523983062266, + 5190.857617782217 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.657514144943, + 5190.857617782217 + ], + [ + 5035.390451979589, + 5190.857617782217 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558673", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.657514144943, + "min_y": 5172.527086069025, + "max_x": 5033.523983062265, + "max_y": 5174.393554986349, + "center": [ + 5032.590748603604, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.657514144943, + 5174.393554986349 + ], + [ + 5033.523983062265, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558674", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5033.523983062265, + "min_y": 5172.527086069025, + "max_x": 5035.390451979589, + "max_y": 5174.393554986349, + "center": [ + 5034.457217520927, + 5173.460320527687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5035.390451979589, + 5174.393554986349 + ], + [ + 5033.523983062265, + 5172.527086069025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558675", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5020.424677349319, + "min_y": 5292.028064094317, + "max_x": 5029.49025915048, + "max_y": 5293.706875538977, + "center": [ + 5024.957468249899, + 5292.867469816647 + ] + }, + "raw_value": "FCV-10214", + "clean_value": "FCV-10214", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558676", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4993.427312919613, + "min_y": 5291.400188614014, + "max_x": 5003.500181587569, + "max_y": 5293.079000058674, + "center": [ + 4998.463747253591, + 5292.239594336344 + ] + }, + "raw_value": "FCV-10114A", + "clean_value": "FCV-10114A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558677", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5017.049423328955, + "min_y": 5350.371964857348, + "max_x": 5026.115005130116, + "max_y": 5352.050776302008, + "center": [ + 5021.582214229535, + 5351.211370579678 + ] + }, + "raw_value": "FCV-10218", + "clean_value": "FCV-10218", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558678", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5004.371717413956, + "min_y": 5350.371964857348, + "max_x": 5013.437299215117, + "max_y": 5352.050776302008, + "center": [ + 5008.904508314536, + 5351.211370579678 + ] + }, + "raw_value": "FCV-10213", + "clean_value": "FCV-10213", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558679", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4991.694011498957, + "min_y": 5350.371964857348, + "max_x": 5000.759593300118, + "max_y": 5352.050776302008, + "center": [ + 4996.226802399537, + 5351.211370579678 + ] + }, + "raw_value": "FCV-10113", + "clean_value": "FCV-10113", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55867A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4979.016305583957, + "min_y": 5350.371964857348, + "max_x": 4988.081887385118, + "max_y": 5352.050776302008, + "center": [ + 4983.549096484538, + 5351.211370579678 + ] + }, + "raw_value": "FCV-10118", + "clean_value": "FCV-10118", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55867B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5166.716363854629, + "max_x": 5069.326683854284, + "max_y": 5166.716363854629, + "center": [ + 5008.682600619244, + 5166.716363854629 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4948.038517384205, + 5166.716363854629 + ], + [ + 5069.326683854284, + 5166.716363854629 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "55867C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5069.326683854284, + "min_y": 5166.716363854629, + "max_x": 5069.326683854284, + "max_y": 5389.843670637447, + "center": [ + 5069.326683854284, + 5278.2800172460375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5069.326683854284, + 5166.716363854629 + ], + [ + 5069.326683854284, + 5389.843670637447 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "55867D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5222.498190550334, + "max_x": 5069.326683854284, + "max_y": 5222.498190550335, + "center": [ + 5008.682600619244, + 5222.498190550334 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4948.038517384205, + 5222.498190550335 + ], + [ + 5069.326683854284, + 5222.498190550334 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "55867E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5284.661259044292, + "max_x": 5040.567575050089, + "max_y": 5284.661259044292, + "center": [ + 5037.045779056178, + 5284.661259044292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5284.661259044292 + ], + [ + 5040.567575050089, + 5284.661259044292 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55867F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5040.567575050089, + "min_y": 5282.794790126969, + "max_x": 5040.567575050089, + "max_y": 5286.527727961614, + "center": [ + 5040.567575050089, + 5284.661259044291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5040.567575050089, + 5286.527727961614 + ], + [ + 5040.567575050089, + 5282.794790126969 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558680", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5057.031637845957, + "min_y": 5284.661259044292, + "max_x": 5058.898106763281, + "max_y": 5286.527727961614, + "center": [ + 5057.964872304619, + 5285.594493502953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.031637845957, + 5286.527727961614 + ], + [ + 5058.898106763281, + 5284.661259044292 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558681", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5057.031637845957, + "min_y": 5282.794790126969, + "max_x": 5058.898106763281, + "max_y": 5284.661259044292, + "center": [ + 5057.964872304619, + 5283.728024585631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.031637845957, + 5282.794790126969 + ], + [ + 5058.898106763281, + 5284.661259044292 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558682", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5344.95944766967, + "max_x": 5058.725194677267, + "max_y": 5344.95944766967, + "center": [ + 5050.493163279332, + 5344.95944766967 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5344.95944766967 + ], + [ + 5042.261131881398, + 5344.95944766967 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558683", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5341.226509835025, + "max_x": 5058.725194677267, + "max_y": 5341.226509835025, + "center": [ + 5050.493163279332, + 5341.226509835025 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5341.226509835025 + ], + [ + 5042.261131881398, + 5341.226509835025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558684", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5043.27987535197, + "min_y": 5342.321686514099, + "max_x": 5063.427817057874, + "max_y": 5344.000681656258, + "center": [ + 5053.353846204922, + 5343.161184085178 + ] + }, + "raw_value": "4F #10 Plant Utility", + "clean_value": "4F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558685", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5343.092978752348, + "max_x": 5042.261131881398, + "max_y": 5343.092978752348, + "center": [ + 5037.892557471832, + 5343.092978752348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5343.092978752348 + ], + [ + 5042.261131881398, + 5343.092978752348 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558686", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5341.226509835025, + "max_x": 5042.261131881398, + "max_y": 5344.95944766967, + "center": [ + 5042.261131881398, + 5343.092978752347 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5042.261131881398, + 5344.95944766967 + ], + [ + 5042.261131881398, + 5341.226509835025 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558687", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5058.725194677267, + "min_y": 5343.092978752348, + "max_x": 5060.59166359459, + "max_y": 5344.95944766967, + "center": [ + 5059.658429135929, + 5344.026213211009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5344.95944766967 + ], + [ + 5060.59166359459, + 5343.092978752348 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558688", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5058.725194677267, + "min_y": 5341.226509835025, + "max_x": 5060.59166359459, + "max_y": 5343.092978752348, + "center": [ + 5059.658429135929, + 5342.159744293687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5341.226509835025 + ], + [ + 5060.59166359459, + 5343.092978752348 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558689", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5405.200123994177, + "max_x": 5058.725194677267, + "max_y": 5405.200123994177, + "center": [ + 5050.493163279332, + 5405.200123994177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5405.200123994177 + ], + [ + 5042.261131881398, + 5405.200123994177 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55868A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5401.467186159532, + "max_x": 5058.725194677267, + "max_y": 5401.467186159532, + "center": [ + 5050.493163279332, + 5401.467186159532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5401.467186159532 + ], + [ + 5042.261131881398, + 5401.467186159532 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55868B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5043.27987535197, + "min_y": 5402.562362838605, + "max_x": 5063.427817057874, + "max_y": 5404.2413579807635, + "center": [ + 5053.353846204922, + 5403.401860409684 + ] + }, + "raw_value": "5F #10 Plant Utility", + "clean_value": "5F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55868C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5403.333655076854, + "max_x": 5042.261131881398, + "max_y": 5403.333655076854, + "center": [ + 5037.892557471832, + 5403.333655076854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5403.333655076854 + ], + [ + 5042.261131881398, + 5403.333655076854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55868D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5042.261131881398, + "min_y": 5401.467186159532, + "max_x": 5042.261131881398, + "max_y": 5405.200123994177, + "center": [ + 5042.261131881398, + 5403.3336550768545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5042.261131881398, + 5405.200123994177 + ], + [ + 5042.261131881398, + 5401.467186159532 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55868E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5058.725194677267, + "min_y": 5403.333655076854, + "max_x": 5060.59166359459, + "max_y": 5405.200123994177, + "center": [ + 5059.658429135929, + 5404.2668895355155 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5405.200123994177 + ], + [ + 5060.59166359459, + 5403.333655076854 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55868F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5058.725194677267, + "min_y": 5401.467186159532, + "max_x": 5060.59166359459, + "max_y": 5403.333655076854, + "center": [ + 5059.658429135929, + 5402.400420618193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.725194677267, + 5401.467186159532 + ], + [ + 5060.59166359459, + 5403.333655076854 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558690", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5039.669020045574, + "min_y": 5253.85177101937, + "max_x": 5056.133082841443, + "max_y": 5253.85177101937, + "center": [ + 5047.901051443509, + 5253.85177101937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5056.133082841443, + 5253.85177101937 + ], + [ + 5039.669020045574, + 5253.85177101937 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558691", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5039.669020045574, + "min_y": 5250.118833184725, + "max_x": 5056.133082841443, + "max_y": 5250.118833184725, + "center": [ + 5047.901051443509, + 5250.118833184725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5056.133082841443, + 5250.118833184725 + ], + [ + 5039.669020045574, + 5250.118833184725 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558692", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5040.687763516146, + "min_y": 5251.214009863799, + "max_x": 5060.83570522205, + "max_y": 5252.893005005958, + "center": [ + 5050.761734369098, + 5252.053507434879 + ] + }, + "raw_value": "2F #10 Plant Utility", + "clean_value": "2F #10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558693", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5033.523983062266, + "min_y": 5251.985302102048, + "max_x": 5039.669020045572, + "max_y": 5251.985302102048, + "center": [ + 5036.596501553919, + 5251.985302102048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5251.985302102048 + ], + [ + 5039.669020045572, + 5251.985302102048 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558694", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5039.669020045574, + "min_y": 5250.118833184725, + "max_x": 5039.669020045574, + "max_y": 5253.85177101937, + "center": [ + 5039.669020045574, + 5251.985302102048 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5039.669020045574, + 5253.85177101937 + ], + [ + 5039.669020045574, + 5250.118833184725 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558695", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5056.133082841443, + "min_y": 5251.985302102048, + "max_x": 5057.999551758767, + "max_y": 5253.85177101937, + "center": [ + 5057.066317300105, + 5252.918536560709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5056.133082841443, + 5253.85177101937 + ], + [ + 5057.999551758767, + 5251.985302102048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558696", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5056.133082841443, + "min_y": 5250.118833184725, + "max_x": 5057.999551758767, + "max_y": 5251.985302102048, + "center": [ + 5057.066317300105, + 5251.052067643386 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5056.133082841443, + 5250.118833184725 + ], + [ + 5057.999551758767, + 5251.985302102048 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558697", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5167.512374175179, + "max_x": 5067.721809239479, + "max_y": 5170.498724442894, + "center": [ + 5065.9299990788495, + 5169.005549309037 + ] + }, + "raw_value": "1F", + "clean_value": "1F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558698", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5223.294200870885, + "max_x": 5067.721809239479, + "max_y": 5226.2805511386005, + "center": [ + 5065.9299990788495, + 5224.787376004742 + ] + }, + "raw_value": "2F", + "clean_value": "2F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558699", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5279.300332734873, + "max_x": 5067.721809239479, + "max_y": 5282.286683002589, + "center": [ + 5065.9299990788495, + 5280.7935078687315 + ] + }, + "raw_value": "3F", + "clean_value": "3F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55869A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5334.857854262294, + "max_x": 5067.721809239479, + "max_y": 5337.844204530009, + "center": [ + 5065.9299990788495, + 5336.351029396152 + ] + }, + "raw_value": "4F", + "clean_value": "4F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55869B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5064.138188918219, + "min_y": 5390.639680957998, + "max_x": 5067.721809239479, + "max_y": 5393.626031225714, + "center": [ + 5065.9299990788495, + 5392.1328560918555 + ] + }, + "raw_value": "5F", + "clean_value": "5F", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55869C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5002.426434396181, + "min_y": 5292.69732227673, + "max_x": 5010.4847293305465, + "max_y": 5294.37613372139, + "center": [ + 5006.4555818633635, + 5293.5367279990605 + ] + }, + "raw_value": "XV-10111", + "clean_value": "XV-10111", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55869D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5011.42555587275, + "min_y": 5292.69732227673, + "max_x": 5019.483850807115, + "max_y": 5294.37613372139, + "center": [ + 5015.454703339932, + 5293.5367279990605 + ] + }, + "raw_value": "XV-10211", + "clean_value": "XV-10211", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55869E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4831.179455088595, + "min_y": 5253.539402822249, + "max_x": 4831.179455088595, + "max_y": 5273.137326454133, + "center": [ + 4831.179455088595, + 5263.338364638191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.179455088595, + 5273.137326454133 + ], + [ + 4831.179455088595, + 5253.539402822249 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4819.980641584661, + "min_y": 5253.539402822249, + "max_x": 4819.980641584661, + "max_y": 5273.137326454133, + "center": [ + 4819.980641584661, + 5263.338364638191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.980641584661, + 5253.539402822249 + ], + [ + 4819.980641584661, + 5273.137326454133 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4815.792425004649, + "min_y": 5269.631976900326, + "max_x": 4815.792425004649, + "max_y": 5272.27418579073, + "center": [ + 4815.792425004649, + 5270.953081345528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.792425004649, + 5272.27418579073 + ], + [ + 4815.792425004649, + 5269.631976900326 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4815.792425004649, + "min_y": 5277.40453875274, + "max_x": 4815.792425004649, + "max_y": 5278.558095936058, + "center": [ + 4815.792425004649, + 5277.981317344399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.792425004649, + 5278.558095936058 + ], + [ + 4815.792425004649, + 5277.40453875274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5276.657951185812, + "max_x": 4816.926639814376, + "max_y": 5276.657951185812, + "center": [ + 4815.79242500465, + 5276.657951185812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.926639814376, + 5276.657951185812 + ], + [ + 4814.658210194923, + 5276.657951185812 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5273.020773357659, + "max_x": 4816.926639814376, + "max_y": 5273.020773357659, + "center": [ + 4815.79242500465, + 5273.020773357659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.926639814376, + 5273.020773357659 + ], + [ + 4814.658210194923, + 5273.020773357659 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5275.418338272584, + "max_x": 4815.431330119736, + "max_y": 5276.657951185812, + "center": [ + 4815.04477015733, + 5276.038144729198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.658210194923, + 5276.657951185812 + ], + [ + 4815.431330119736, + 5275.418338272584 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4816.153519889562, + "min_y": 5275.418338272584, + "max_x": 4816.926639814376, + "max_y": 5276.657951185812, + "center": [ + 4816.5400798519695, + 5276.038144729198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.926639814376, + 5276.657951185812 + ], + [ + 4816.153519889562, + 5275.418338272584 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A8", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4815.110074123163, + "min_y": 5274.157011390252, + "max_x": 4816.474775886135, + "max_y": 5275.521713153224, + "center": [ + 4815.792425004649, + 5274.839362271738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.792425004649, + 5274.839362271738 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586A9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5273.020773357659, + "max_x": 4815.431330119736, + "max_y": 5274.260386270893, + "center": [ + 4815.04477015733, + 5273.640579814276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.431330119736, + 5274.260386270893 + ], + [ + 4814.658210194923, + 5273.020773357659 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4816.153519889562, + "min_y": 5273.020773357659, + "max_x": 4816.926639814376, + "max_y": 5274.260386270893, + "center": [ + 4816.5400798519695, + 5273.640579814276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.153519889562, + 5274.260386270893 + ], + [ + 4816.926639814376, + 5273.020773357659 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5272.27418579073, + "max_x": 4816.926639814376, + "max_y": 5272.27418579073, + "center": [ + 4815.79242500465, + 5272.27418579073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.926639814376, + 5272.27418579073 + ], + [ + 4814.658210194923, + 5272.27418579073 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4814.658210194923, + "min_y": 5277.40453875274, + "max_x": 4816.926639814376, + "max_y": 5277.40453875274, + "center": [ + 4815.79242500465, + 5277.40453875274 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.926639814376, + 5277.40453875274 + ], + [ + 4814.658210194923, + 5277.40453875274 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AD", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4812.059487170004, + "min_y": 5278.558095936058, + "max_x": 4819.525362839294, + "max_y": 5286.0239716053475, + "center": [ + 4815.792425004649, + 5282.291033770703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.792425004649, + 5282.291033770703 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4814.57195708679, + "min_y": 5282.948277734636, + "max_x": 4816.586265274115, + "max_y": 5284.62686789074, + "center": [ + 4815.579111180452, + 5283.787572812687 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586AF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4813.237957269595, + "min_y": 5279.959404535825, + "max_x": 4818.273727737909, + "max_y": 5281.63799469193, + "center": [ + 4815.755842503752, + 5280.798699613877 + ] + }, + "raw_value": "10901", + "clean_value": "10901", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4815.792425004649, + "min_y": 5269.631976900326, + "max_x": 4819.980641584661, + "max_y": 5269.631976900326, + "center": [ + 4817.886533294655, + 5269.631976900326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4815.792425004649, + 5269.631976900326 + ], + [ + 4819.980641584661, + 5269.631976900326 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5248.575029293026, + "max_x": 4825.580048336629, + "max_y": 5250.739699446265, + "center": [ + 4825.580048336629, + 5249.657364369646 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336629, + 5248.575029293026 + ], + [ + 4825.580048336629, + 5250.739699446265 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586B2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5247.828441726096, + "max_x": 4826.714263146356, + "max_y": 5247.828441726096, + "center": [ + 4825.580048336629, + 5247.828441726096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.714263146356, + 5247.828441726096 + ], + [ + 4824.445833526903, + 5247.828441726096 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5244.191263897945, + "max_x": 4826.714263146356, + "max_y": 5244.191263897945, + "center": [ + 4825.580048336629, + 5244.191263897945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.714263146356, + 5244.191263897945 + ], + [ + 4824.445833526903, + 5244.191263897945 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5246.58882881287, + "max_x": 4825.218953451715, + "max_y": 5247.828441726096, + "center": [ + 4824.832393489309, + 5247.208635269482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.445833526903, + 5247.828441726096 + ], + [ + 4825.218953451715, + 5246.58882881287 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4825.94114322154, + "min_y": 5246.58882881287, + "max_x": 4826.714263146356, + "max_y": 5247.828441726096, + "center": [ + 4826.327703183948, + 5247.208635269482 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.714263146356, + 5247.828441726096 + ], + [ + 4825.94114322154, + 5246.58882881287 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B6", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.897697455139, + "min_y": 5245.327501930538, + "max_x": 4826.262399218111, + "max_y": 5246.69220369351, + "center": [ + 4825.580048336625, + 5246.009852812024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336625, + 5246.009852812024 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5244.191263897945, + "max_x": 4825.218953451715, + "max_y": 5245.430876811179, + "center": [ + 4824.832393489309, + 5244.811070354562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.218953451715, + 5245.430876811179 + ], + [ + 4824.445833526903, + 5244.191263897945 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4825.94114322154, + "min_y": 5244.191263897945, + "max_x": 4826.714263146356, + "max_y": 5245.430876811179, + "center": [ + 4826.327703183948, + 5244.811070354562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.94114322154, + 5245.430876811179 + ], + [ + 4826.714263146356, + 5244.191263897945 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586B9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5243.444676331016, + "max_x": 4826.714263146356, + "max_y": 5243.444676331016, + "center": [ + 4825.580048336629, + 5243.444676331016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.714263146356, + 5243.444676331016 + ], + [ + 4824.445833526903, + 5243.444676331016 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586BA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.445833526903, + "min_y": 5248.575029293026, + "max_x": 4826.714263146356, + "max_y": 5248.575029293026, + "center": [ + 4825.580048336629, + 5248.575029293026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.714263146356, + 5248.575029293026 + ], + [ + 4824.445833526903, + 5248.575029293026 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5275.937029830116, + "max_x": 4825.580048336629, + "max_y": 5278.639708047215, + "center": [ + 4825.580048336629, + 5277.288368938665 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336629, + 5278.639708047215 + ], + [ + 4825.580048336629, + 5275.937029830116 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4824.728639112468, + "min_y": 5277.84174243096, + "max_x": 4826.431457560787, + "max_y": 5277.84174243096, + "center": [ + 4825.580048336627, + 5277.84174243096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.728639112468, + 5277.84174243096 + ], + [ + 4826.431457560787, + 5277.84174243096 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586BD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4800.535593531652, + "min_y": 5215.331815791709, + "max_x": 4818.173724800348, + "max_y": 5217.291608154897, + "center": [ + 4809.354659166, + 5216.311711973303 + ] + }, + "raw_value": "INSTRUMENT AIR ", + "clean_value": "INSTRUMENT AIR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586BE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4805.897448622516, + "min_y": 5211.338818561383, + "max_x": 4811.7768257120815, + "max_y": 5213.298610924571, + "center": [ + 4808.837137167298, + 5212.318714742977 + ] + }, + "raw_value": "DRYER", + "clean_value": "DRYER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586BF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4803.746971004297, + "min_y": 5207.106857086801, + "max_x": 4814.202249595506, + "max_y": 5219.759583469011, + "center": [ + 4808.9746102999015, + 5213.433220277906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.746971004297, + 5219.759583469011 + ], + [ + 4803.746971004297, + 5207.106857086801 + ], + [ + 4814.202249595506, + 5207.106857086801 + ], + [ + 4814.202249595506, + 5219.759583469011 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586C0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4806.578970601695, + "min_y": 5231.927390841224, + "max_x": 4820.689475616652, + "max_y": 5233.887183204412, + "center": [ + 4813.634223109173, + 5232.907287022818 + ] + }, + "raw_value": "AFTER COOLER", + "clean_value": "AFTER COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586C1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5226.343594095747, + "max_x": 4824.292850653723, + "max_y": 5240.139147376996, + "center": [ + 4814.028269791471, + 5233.241370736372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.763688929219, + 5240.139147376996 + ], + [ + 4803.763688929219, + 5226.343594095747 + ], + [ + 4824.292850653723, + 5226.343594095747 + ], + [ + 4824.292850653723, + 5240.139147376996 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.883570279611, + "min_y": 5291.564776317997, + "max_x": 4804.883570279611, + "max_y": 5305.840360157052, + "center": [ + 4804.883570279611, + 5298.702568237524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.883570279611, + 5305.840360157052 + ], + [ + 4804.883570279611, + 5291.564776317997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5290.444894967603, + "max_x": 4803.763688929219, + "max_y": 5306.960241507447, + "center": [ + 4803.763688929219, + 5298.702568237525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.763688929219, + 5306.960241507447 + ], + [ + 4803.763688929219, + 5290.444894967603 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.883570279611, + "min_y": 5291.564776317997, + "max_x": 4830.711320971413, + "max_y": 5291.564776317997, + "center": [ + 4817.797445625512, + 5291.564776317997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.883570279611, + 5291.564776317997 + ], + [ + 4830.711320971413, + 5291.564776317997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5290.444894967603, + "max_x": 4831.831202321808, + "max_y": 5290.444894967603, + "center": [ + 4817.797445625513, + 5290.444894967603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.763688929219, + 5290.444894967603 + ], + [ + 4831.831202321808, + 5290.444894967603 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.883570279611, + "min_y": 5305.840360157052, + "max_x": 4830.711320971413, + "max_y": 5305.840360157052, + "center": [ + 4817.797445625512, + 5305.840360157052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.883570279611, + 5305.840360157052 + ], + [ + 4830.711320971413, + 5305.840360157052 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5306.960241507447, + "max_x": 4831.831202321808, + "max_y": 5306.960241507447, + "center": [ + 4817.797445625513, + 5306.960241507447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.763688929219, + 5306.960241507447 + ], + [ + 4831.831202321808, + 5306.960241507447 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4801.871822689314, + "min_y": 5302.545794515513, + "max_x": 4829.8688564491495, + "max_y": 5304.412263432835, + "center": [ + 4815.870339569232, + 5303.479028974174 + ] + }, + "raw_value": "INSTRUMENT AIR COMPRESSOR", + "clean_value": "INSTRUMENT AIR COMPRESSOR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4830.711320971413, + "min_y": 5291.564776317997, + "max_x": 4830.711320971413, + "max_y": 5305.840360157052, + "center": [ + 4830.711320971413, + 5298.702568237524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.711320971413, + 5305.840360157052 + ], + [ + 4830.711320971413, + 5291.564776317997 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4831.831202321808, + "min_y": 5290.444894967603, + "max_x": 4831.831202321808, + "max_y": 5306.960241507447, + "center": [ + 4831.831202321808, + 5298.702568237525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.831202321808, + 5306.960241507447 + ], + [ + 4831.831202321808, + 5290.444894967603 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586CB", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4803.763688929219, + "min_y": 5310.716072191248, + "max_x": 4813.394917723974, + "max_y": 5312.255909048039, + "center": [ + 4808.579303326596, + 5311.485990619643 + ] + }, + "raw_value": "\\pi-0.56353;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LK-10901}", + "clean_value": "\\pi-0.56353; \\fArial|b1|i1|c238|p34; .3333x; K-10901", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4835.315154092752, + "min_y": 5299.988543805059, + "max_x": 4835.315154092752, + "max_y": 5302.69122202216, + "center": [ + 4835.315154092752, + 5301.3398829136095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.315154092752, + 5302.69122202216 + ], + [ + 4835.315154092752, + 5299.988543805059 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4831.831202321808, + "min_y": 5299.988543805059, + "max_x": 4835.315154092752, + "max_y": 5299.988543805059, + "center": [ + 4833.57317820728, + 5299.988543805059 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.315154092752, + 5299.988543805059 + ], + [ + 4831.831202321808, + 5299.988543805059 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4807.438155737807, + "min_y": 5299.859010479568, + "max_x": 4809.229965898437, + "max_y": 5301.352185613426, + "center": [ + 4808.334060818122, + 5300.605598046497 + ] + }, + "raw_value": "한신", + "clean_value": "한신", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4808.298808177564, + "min_y": 5265.55716517215, + "max_x": 4808.298808177564, + "max_y": 5290.444894967603, + "center": [ + 4808.298808177564, + 5278.001030069877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.298808177564, + 5290.444894967603 + ], + [ + 4808.298808177564, + 5265.55716517215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586D3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4808.298808177564, + "min_y": 5265.55716517215, + "max_x": 4819.980641584661, + "max_y": 5265.55716517215, + "center": [ + 4814.139724881112, + 5265.55716517215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.298808177564, + 5265.55716517215 + ], + [ + 4819.980641584661, + 5265.55716517215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4827.637872187061, + "min_y": 5222.887642497261, + "max_x": 4834.292859477343, + "max_y": 5222.887642497261, + "center": [ + 4830.965365832202, + 5222.887642497261 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.292859477343, + 5222.887642497261 + ], + [ + 4827.637872187061, + 5222.887642497261 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4827.637872187061, + "min_y": 5227.038975583589, + "max_x": 4834.292859477343, + "max_y": 5227.038975583589, + "center": [ + 4830.965365832202, + 5227.038975583589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.637872187061, + 5227.038975583589 + ], + [ + 4834.292859477343, + 5227.038975583589 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4834.785200708211, + "min_y": 5222.401875030628, + "max_x": 4834.785200708211, + "max_y": 5227.524743050222, + "center": [ + 4834.785200708211, + 5224.963309040425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.785200708211, + 5222.401875030628 + ], + [ + 4834.785200708211, + 5227.524743050222 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4834.292859477343, + "min_y": 5222.401875030628, + "max_x": 4834.292859477343, + "max_y": 5227.524743050222, + "center": [ + 4834.292859477343, + 5224.963309040425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.292859477343, + 5222.401875030628 + ], + [ + 4834.292859477343, + 5227.524743050222 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4833.184030576425, + "min_y": 5227.038975583589, + "max_x": 4833.184030576425, + "max_y": 5228.174812943024, + "center": [ + 4833.184030576425, + 5227.6068942633065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5227.038975583589 + ], + [ + 4833.184030576425, + 5228.174812943024 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586DA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5228.921400509953, + "max_x": 4834.318245386151, + "max_y": 5228.921400509953, + "center": [ + 4833.184030576425, + 5228.921400509953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5228.921400509953 + ], + [ + 4834.318245386151, + 5228.921400509953 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586DB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5232.558578338106, + "max_x": 4834.318245386151, + "max_y": 5232.558578338106, + "center": [ + 4833.184030576425, + 5232.558578338106 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5232.558578338106 + ], + [ + 4834.318245386151, + 5232.558578338106 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586DC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4833.54512546134, + "min_y": 5228.921400509953, + "max_x": 4834.318245386151, + "max_y": 5230.161013423181, + "center": [ + 4833.931685423746, + 5229.541206966567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.318245386151, + 5228.921400509953 + ], + [ + 4833.54512546134, + 5230.161013423181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586DD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5228.921400509953, + "max_x": 4832.822935691514, + "max_y": 5230.161013423181, + "center": [ + 4832.436375729107, + 5229.541206966567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5228.921400509953 + ], + [ + 4832.822935691514, + 5230.161013423181 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586DE", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.501679694943, + "min_y": 5230.05763854254, + "max_x": 4833.866381457915, + "max_y": 5231.422340305512, + "center": [ + 4833.184030576429, + 5230.739989424026 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576429, + 5230.739989424026 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586DF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4833.54512546134, + "min_y": 5231.318965424872, + "max_x": 4834.318245386151, + "max_y": 5232.558578338106, + "center": [ + 4833.931685423746, + 5231.938771881489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.54512546134, + 5231.318965424872 + ], + [ + 4834.318245386151, + 5232.558578338106 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5231.318965424872, + "max_x": 4832.822935691514, + "max_y": 5232.558578338106, + "center": [ + 4832.436375729107, + 5231.938771881489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.822935691514, + 5231.318965424872 + ], + [ + 4832.049815766699, + 5232.558578338106 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5233.305165905036, + "max_x": 4834.318245386151, + "max_y": 5233.305165905036, + "center": [ + 4833.184030576425, + 5233.305165905036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5233.305165905036 + ], + [ + 4834.318245386151, + 5233.305165905036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5228.174812943024, + "max_x": 4834.318245386151, + "max_y": 5228.174812943024, + "center": [ + 4833.184030576425, + 5228.174812943024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5228.174812943024 + ], + [ + 4834.318245386151, + 5228.174812943024 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4833.184030576425, + "min_y": 5221.751805137827, + "max_x": 4833.184030576425, + "max_y": 5222.887642497262, + "center": [ + 4833.184030576425, + 5222.319723817545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5222.887642497262 + ], + [ + 4833.184030576425, + 5221.751805137827 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586E4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5221.005217570898, + "max_x": 4834.318245386151, + "max_y": 5221.005217570898, + "center": [ + 4833.184030576425, + 5221.005217570898 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5221.005217570898 + ], + [ + 4834.318245386151, + 5221.005217570898 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5217.368039742745, + "max_x": 4834.318245386151, + "max_y": 5217.368039742745, + "center": [ + 4833.184030576425, + 5217.368039742745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5217.368039742745 + ], + [ + 4834.318245386151, + 5217.368039742745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4833.54512546134, + "min_y": 5219.765604657671, + "max_x": 4834.318245386151, + "max_y": 5221.005217570898, + "center": [ + 4833.931685423746, + 5220.385411114285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.318245386151, + 5221.005217570898 + ], + [ + 4833.54512546134, + 5219.765604657671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5219.765604657671, + "max_x": 4832.822935691514, + "max_y": 5221.005217570898, + "center": [ + 4832.436375729107, + 5220.385411114285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5221.005217570898 + ], + [ + 4832.822935691514, + 5219.765604657671 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E8", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.501679694943, + "min_y": 5218.504277775339, + "max_x": 4833.866381457915, + "max_y": 5219.868979538311, + "center": [ + 4833.184030576429, + 5219.186628656825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576429, + 5219.186628656825 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586E9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4833.54512546134, + "min_y": 5217.368039742745, + "max_x": 4834.318245386151, + "max_y": 5218.60765265598, + "center": [ + 4833.931685423746, + 5217.987846199363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.54512546134, + 5218.60765265598 + ], + [ + 4834.318245386151, + 5217.368039742745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586EA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5217.368039742745, + "max_x": 4832.822935691514, + "max_y": 5218.60765265598, + "center": [ + 4832.436375729107, + 5217.987846199363 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.822935691514, + 5218.60765265598 + ], + [ + 4832.049815766699, + 5217.368039742745 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586EB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5216.621452175816, + "max_x": 4834.318245386151, + "max_y": 5216.621452175816, + "center": [ + 4833.184030576425, + 5216.621452175816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5216.621452175816 + ], + [ + 4834.318245386151, + 5216.621452175816 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586EC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.049815766699, + "min_y": 5221.751805137827, + "max_x": 4834.318245386151, + "max_y": 5221.751805137827, + "center": [ + 4833.184030576425, + 5221.751805137827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.049815766699, + 5221.751805137827 + ], + [ + 4834.318245386151, + 5221.751805137827 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5586ED", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5203.131068626845, + "max_x": 4873.131482574539, + "max_y": 5203.131068626845, + "center": [ + 4864.73237244659, + 5203.131068626845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5203.131068626845 + ], + [ + 4856.333262318639, + 5203.131068626845 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586EE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5207.610594028419, + "max_x": 4873.131482574539, + "max_y": 5207.610594028419, + "center": [ + 4864.73237244659, + 5207.610594028419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5207.610594028419 + ], + [ + 4856.333262318639, + 5207.610594028419 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586EF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5212.090119429992, + "max_x": 4873.131482574539, + "max_y": 5212.090119429992, + "center": [ + 4864.73237244659, + 5212.090119429992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5212.090119429992 + ], + [ + 4856.333262318639, + 5212.090119429992 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4870.891719873753, + "max_y": 5216.569644831565, + "center": [ + 4863.612491096195, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.891719873753, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F2", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5212.090119429992, + "max_x": 4858.573025019426, + "max_y": 5216.569644831566, + "center": [ + 4856.333262318639, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F3", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5203.131068626845, + "max_x": 4875.371245275326, + "max_y": 5207.610594028419, + "center": [ + 4873.131482574539, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5205.370831327632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5207.610594028419, + "max_x": 4870.891719873753, + "max_y": 5207.610594028419, + "center": [ + 4863.612491096195, + 5207.610594028419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.891719873753, + 5207.610594028419 + ], + [ + 4856.333262318639, + 5207.610594028419 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5212.090119429992, + "max_x": 4873.131482574539, + "max_y": 5212.090119429992, + "center": [ + 4864.73237244659, + 5212.090119429992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5212.090119429992 + ], + [ + 4856.333262318639, + 5212.090119429992 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F8", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5203.131068626845, + "max_x": 4858.573025019426, + "max_y": 5207.610594028419, + "center": [ + 4856.333262318639, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5205.370831327632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586F9", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5212.090119429992, + "max_x": 4858.573025019426, + "max_y": 5216.569644831566, + "center": [ + 4856.333262318639, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FA", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5212.090119429992, + "max_x": 4875.371245275326, + "max_y": 5216.569644831566, + "center": [ + 4873.131482574539, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5203.131068626845, + "max_x": 4873.131482574539, + "max_y": 5203.131068626845, + "center": [ + 4864.73237244659, + 5203.131068626845 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5203.131068626845 + ], + [ + 4856.333262318639, + 5203.131068626845 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5207.610594028419, + "max_x": 4873.131482574539, + "max_y": 5207.610594028419, + "center": [ + 4864.73237244659, + 5207.610594028419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5207.610594028419 + ], + [ + 4856.333262318639, + 5207.610594028419 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5212.090119429992, + "max_x": 4873.131482574539, + "max_y": 5212.090119429992, + "center": [ + 4864.73237244659, + 5212.090119429992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5212.090119429992 + ], + [ + 4856.333262318639, + 5212.090119429992 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5586FF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4870.891719873753, + "max_y": 5216.569644831565, + "center": [ + 4863.612491096195, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.891719873753, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558700", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5212.090119429992, + "max_x": 4858.573025019426, + "max_y": 5216.569644831566, + "center": [ + 4856.333262318639, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558701", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5203.131068626845, + "max_x": 4875.371245275326, + "max_y": 5207.610594028419, + "center": [ + 4873.131482574539, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5205.370831327632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558702", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5207.610594028419, + "max_x": 4870.891719873753, + "max_y": 5207.610594028419, + "center": [ + 4863.612491096195, + 5207.610594028419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.891719873753, + 5207.610594028419 + ], + [ + 4856.333262318639, + 5207.610594028419 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558703", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5212.090119429992, + "max_x": 4873.131482574539, + "max_y": 5212.090119429992, + "center": [ + 4864.73237244659, + 5212.090119429992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5212.090119429992 + ], + [ + 4856.333262318639, + 5212.090119429992 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558704", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558705", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4856.333262318639, + "min_y": 5216.569644831565, + "max_x": 4873.131482574539, + "max_y": 5216.569644831565, + "center": [ + 4864.73237244659, + 5216.569644831565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5216.569644831565 + ], + [ + 4856.333262318639, + 5216.569644831565 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558706", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5203.131068626845, + "max_x": 4858.573025019426, + "max_y": 5207.610594028419, + "center": [ + 4856.333262318639, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5205.370831327632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558707", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4854.093499617852, + "min_y": 5212.090119429992, + "max_x": 4858.573025019426, + "max_y": 5216.569644831566, + "center": [ + 4856.333262318639, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.333262318639, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558708", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4870.891719873753, + "min_y": 5212.090119429992, + "max_x": 4875.371245275326, + "max_y": 5216.569644831566, + "center": [ + 4873.131482574539, + 5214.329882130779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.131482574539, + 5214.329882130779 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558709", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4863.898452680542, + "min_y": 5213.087053632101, + "max_x": 4867.258096731722, + "max_y": 5215.886757008085, + "center": [ + 4865.578274706131, + 5214.486905320093 + ] + }, + "raw_value": "A ", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55870A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4863.966361578191, + "min_y": 5203.833230284582, + "max_x": 4865.6461836037815, + "max_y": 5206.632933660566, + "center": [ + 4864.806272590986, + 5205.233081972574 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55870B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4875.370990904015, + "min_y": 5214.363637101597, + "max_x": 4876.506828263449, + "max_y": 5214.363637101597, + "center": [ + 4875.938909583732, + 5214.363637101597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4875.370990904015, + 5214.363637101597 + ], + [ + 4876.506828263449, + 5214.363637101597 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55870C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253415830379, + "min_y": 5213.22942229187, + "max_x": 4877.253415830379, + "max_y": 5215.497851911323, + "center": [ + 4877.253415830379, + 5214.363637101596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253415830379, + 5213.22942229187 + ], + [ + 4877.253415830379, + 5215.497851911323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55870D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4880.890593658531, + "min_y": 5213.22942229187, + "max_x": 4880.890593658531, + "max_y": 5215.497851911323, + "center": [ + 4880.890593658531, + 5214.363637101596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4880.890593658531, + 5213.22942229187 + ], + [ + 4880.890593658531, + 5215.497851911323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55870E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253415830379, + "min_y": 5214.72473198651, + "max_x": 4878.493028743605, + "max_y": 5215.497851911323, + "center": [ + 4877.873222286991, + 5215.111291948917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253415830379, + 5215.497851911323 + ], + [ + 4878.493028743605, + 5214.72473198651 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55870F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253415830379, + "min_y": 5213.22942229187, + "max_x": 4878.493028743605, + "max_y": 5214.002542216686, + "center": [ + 4877.873222286991, + 5213.615982254278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253415830379, + 5213.22942229187 + ], + [ + 4878.493028743605, + 5214.002542216686 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558710", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4878.389653862966, + "min_y": 5213.681286220114, + "max_x": 4879.754355625938, + "max_y": 5215.045987983086, + "center": [ + 4879.072004744452, + 5214.3636371016 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.072004744452, + 5214.3636371016 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558711", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4879.650980745297, + "min_y": 5214.72473198651, + "max_x": 4880.890593658531, + "max_y": 5215.497851911323, + "center": [ + 4880.270787201914, + 5215.111291948917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.650980745297, + 5214.72473198651 + ], + [ + 4880.890593658531, + 5215.497851911323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558712", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4879.650980745297, + "min_y": 5213.22942229187, + "max_x": 4880.890593658531, + "max_y": 5214.002542216686, + "center": [ + 4880.270787201914, + 5213.615982254278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.650980745297, + 5214.002542216686 + ], + [ + 4880.890593658531, + 5213.22942229187 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558713", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4881.637181225459, + "min_y": 5213.22942229187, + "max_x": 4881.637181225459, + "max_y": 5215.497851911323, + "center": [ + 4881.637181225459, + 5214.363637101596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4881.637181225459, + 5213.22942229187 + ], + [ + 4881.637181225459, + 5215.497851911323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558714", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.506828263449, + "min_y": 5213.22942229187, + "max_x": 4876.506828263449, + "max_y": 5215.497851911323, + "center": [ + 4876.506828263449, + 5214.363637101596 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.506828263449, + 5213.22942229187 + ], + [ + 4876.506828263449, + 5215.497851911323 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558715", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4852.958320268277, + "min_y": 5214.275594573258, + "max_x": 4854.094157627711, + "max_y": 5214.275594573258, + "center": [ + 4853.526238947994, + 5214.275594573258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.094157627711, + 5214.275594573258 + ], + [ + 4852.958320268277, + 5214.275594573258 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558716", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.211732701348, + "min_y": 5213.141379763532, + "max_x": 4852.211732701348, + "max_y": 5215.409809382985, + "center": [ + 4852.211732701348, + 5214.275594573259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211732701348, + 5213.141379763532 + ], + [ + 4852.211732701348, + 5215.409809382985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558717", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574554873195, + "min_y": 5213.141379763532, + "max_x": 4848.574554873195, + "max_y": 5215.409809382985, + "center": [ + 4848.574554873195, + 5214.275594573259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.574554873195, + 5213.141379763532 + ], + [ + 4848.574554873195, + 5215.409809382985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558718", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.972119788119, + "min_y": 5214.636689458172, + "max_x": 4852.211732701348, + "max_y": 5215.409809382985, + "center": [ + 4851.591926244733, + 5215.023249420579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211732701348, + 5215.409809382985 + ], + [ + 4850.972119788119, + 5214.636689458172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558719", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.972119788119, + "min_y": 5213.141379763532, + "max_x": 4852.211732701348, + "max_y": 5213.914499688347, + "center": [ + 4851.591926244733, + 5213.52793972594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211732701348, + 5213.141379763532 + ], + [ + 4850.972119788119, + 5213.914499688347 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4849.710792905788, + "min_y": 5213.5932436917765, + "max_x": 4851.07549466876, + "max_y": 5214.957945454748, + "center": [ + 4850.393143787274, + 5214.275594573262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.393143787274, + 5214.275594573262 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574554873195, + "min_y": 5214.636689458172, + "max_x": 4849.814167786428, + "max_y": 5215.409809382985, + "center": [ + 4849.194361329812, + 5215.023249420579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4849.814167786428, + 5214.636689458172 + ], + [ + 4848.574554873195, + 5215.409809382985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574554873195, + "min_y": 5213.141379763532, + "max_x": 4849.814167786428, + "max_y": 5213.914499688347, + "center": [ + 4849.194361329812, + 5213.52793972594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4849.814167786428, + 5213.914499688347 + ], + [ + 4848.574554873195, + 5213.141379763532 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4847.827967306266, + "min_y": 5213.141379763532, + "max_x": 4847.827967306266, + "max_y": 5215.409809382985, + "center": [ + 4847.827967306266, + 5214.275594573259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.827967306266, + 5213.141379763532 + ], + [ + 4847.827967306266, + 5215.409809382985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.958320268277, + "min_y": 5213.141379763532, + "max_x": 4852.958320268277, + "max_y": 5215.409809382985, + "center": [ + 4852.958320268277, + 5214.275594573259 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.958320268277, + 5213.141379763532 + ], + [ + 4852.958320268277, + 5215.409809382985 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55871F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4875.371245275326, + "min_y": 5205.370831327632, + "max_x": 4876.507082634762, + "max_y": 5205.370831327632, + "center": [ + 4875.939163955044, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4875.371245275326, + 5205.370831327632 + ], + [ + 4876.507082634762, + 5205.370831327632 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558720", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253670201691, + "min_y": 5204.236616517905, + "max_x": 4877.253670201691, + "max_y": 5206.505046137358, + "center": [ + 4877.253670201691, + 5205.370831327631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253670201691, + 5204.236616517905 + ], + [ + 4877.253670201691, + 5206.505046137358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558721", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4880.890848029845, + "min_y": 5204.236616517905, + "max_x": 4880.890848029845, + "max_y": 5206.505046137358, + "center": [ + 4880.890848029845, + 5205.370831327631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4880.890848029845, + 5204.236616517905 + ], + [ + 4880.890848029845, + 5206.505046137358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558722", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253670201691, + "min_y": 5205.731926212544, + "max_x": 4878.493283114918, + "max_y": 5206.505046137358, + "center": [ + 4877.873476658305, + 5206.118486174951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253670201691, + 5206.505046137358 + ], + [ + 4878.493283114918, + 5205.731926212544 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558723", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.253670201691, + "min_y": 5204.236616517905, + "max_x": 4878.493283114918, + "max_y": 5205.009736442719, + "center": [ + 4877.873476658305, + 5204.623176480312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.253670201691, + 5204.236616517905 + ], + [ + 4878.493283114918, + 5205.009736442719 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558724", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4878.389908234279, + "min_y": 5204.688480446148, + "max_x": 4879.754609997251, + "max_y": 5206.05318220912, + "center": [ + 4879.072259115765, + 5205.370831327634 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.072259115765, + 5205.370831327634 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558725", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4879.651235116609, + "min_y": 5205.731926212544, + "max_x": 4880.890848029845, + "max_y": 5206.505046137358, + "center": [ + 4880.271041573227, + 5206.118486174951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.651235116609, + 5205.731926212544 + ], + [ + 4880.890848029845, + 5206.505046137358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558726", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4879.651235116609, + "min_y": 5204.236616517905, + "max_x": 4880.890848029845, + "max_y": 5205.009736442719, + "center": [ + 4880.271041573227, + 5204.623176480312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4879.651235116609, + 5205.009736442719 + ], + [ + 4880.890848029845, + 5204.236616517905 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558727", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4881.637435596775, + "min_y": 5204.236616517905, + "max_x": 4881.637435596775, + "max_y": 5206.505046137358, + "center": [ + 4881.637435596775, + 5205.370831327631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4881.637435596775, + 5204.236616517905 + ], + [ + 4881.637435596775, + 5206.505046137358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558728", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.507082634762, + "min_y": 5204.236616517905, + "max_x": 4876.507082634762, + "max_y": 5206.505046137358, + "center": [ + 4876.507082634762, + 5205.370831327631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.507082634762, + 5204.236616517905 + ], + [ + 4876.507082634762, + 5206.505046137358 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558729", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4852.958574639592, + "min_y": 5205.282788799293, + "max_x": 4854.094411999025, + "max_y": 5205.282788799293, + "center": [ + 4853.526493319308, + 5205.282788799293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.094411999025, + 5205.282788799293 + ], + [ + 4852.958574639592, + 5205.282788799293 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55872A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.211987072662, + "min_y": 5204.148573989566, + "max_x": 4852.211987072662, + "max_y": 5206.417003609018, + "center": [ + 4852.211987072662, + 5205.282788799292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211987072662, + 5204.148573989566 + ], + [ + 4852.211987072662, + 5206.417003609018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55872B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574809244508, + "min_y": 5204.148573989566, + "max_x": 4848.574809244508, + "max_y": 5206.417003609018, + "center": [ + 4848.574809244508, + 5205.282788799292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.574809244508, + 5204.148573989566 + ], + [ + 4848.574809244508, + 5206.417003609018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55872C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.972374159436, + "min_y": 5205.643883684206, + "max_x": 4852.211987072662, + "max_y": 5206.417003609018, + "center": [ + 4851.5921806160495, + 5206.030443646612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211987072662, + 5206.417003609018 + ], + [ + 4850.972374159436, + 5205.643883684206 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55872D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.972374159436, + "min_y": 5204.148573989566, + "max_x": 4852.211987072662, + "max_y": 5204.921693914381, + "center": [ + 4851.5921806160495, + 5204.535133951973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.211987072662, + 5204.148573989566 + ], + [ + 4850.972374159436, + 5204.921693914381 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55872E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4849.711047277103, + "min_y": 5204.600437917809, + "max_x": 4851.075749040075, + "max_y": 5205.965139680781, + "center": [ + 4850.393398158589, + 5205.282788799295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.393398158589, + 5205.282788799295 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55872F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574809244508, + "min_y": 5205.643883684206, + "max_x": 4849.814422157744, + "max_y": 5206.417003609018, + "center": [ + 4849.194615701126, + 5206.030443646612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4849.814422157744, + 5205.643883684206 + ], + [ + 4848.574809244508, + 5206.417003609018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558730", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.574809244508, + "min_y": 5204.148573989566, + "max_x": 4849.814422157744, + "max_y": 5204.921693914381, + "center": [ + 4849.194615701126, + 5204.535133951973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4849.814422157744, + 5204.921693914381 + ], + [ + 4848.574809244508, + 5204.148573989566 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558731", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4847.828221677579, + "min_y": 5204.148573989566, + "max_x": 4847.828221677579, + "max_y": 5206.417003609018, + "center": [ + 4847.828221677579, + 5205.282788799292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.828221677579, + 5204.148573989566 + ], + [ + 4847.828221677579, + 5206.417003609018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558732", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.958574639592, + "min_y": 5204.148573989566, + "max_x": 4852.958574639592, + "max_y": 5206.417003609018, + "center": [ + 4852.958574639592, + 5205.282788799292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.958574639592, + 5204.148573989566 + ], + [ + 4852.958574639592, + 5206.417003609018 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558733", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4845.540941325822, + "min_y": 5214.275594573258, + "max_x": 4847.827967306266, + "max_y": 5214.275594573258, + "center": [ + 4846.684454316044, + 5214.275594573258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.827967306266, + 5214.275594573258 + ], + [ + 4845.540941325822, + 5214.275594573258 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558734", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4845.540941325822, + "min_y": 5205.282788799293, + "max_x": 4845.540941325822, + "max_y": 5214.275594573258, + "center": [ + 4845.540941325822, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4845.540941325822, + 5214.275594573258 + ], + [ + 4845.540941325822, + 5205.282788799293 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558735", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4845.540941325822, + "min_y": 5205.282788799293, + "max_x": 4847.828221677579, + "max_y": 5205.282788799293, + "center": [ + 4846.6845815017, + 5205.282788799293 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4845.540941325822, + 5205.282788799293 + ], + [ + 4847.828221677579, + 5205.282788799293 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558736", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4881.915397645347, + "min_y": 5214.699715220743, + "max_x": 4884.291729492415, + "max_y": 5214.699715220743, + "center": [ + 4883.10356356888, + 5214.699715220743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4881.915397645347, + 5214.699715220743 + ], + [ + 4884.291729492415, + 5214.699715220743 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558737", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4884.291729492415, + "min_y": 5205.370831327632, + "max_x": 4884.291729492415, + "max_y": 5214.699715220743, + "center": [ + 4884.291729492415, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4884.291729492415, + 5214.699715220743 + ], + [ + 4884.291729492415, + 5205.370831327632 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558738", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4881.637435596775, + "min_y": 5205.370831327632, + "max_x": 4884.291729492415, + "max_y": 5205.370831327632, + "center": [ + 4882.964582544595, + 5205.370831327632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4884.291729492415, + 5205.370831327632 + ], + [ + 4881.637435596775, + 5205.370831327632 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558739", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4829.66768238757, + "min_y": 5204.233033296909, + "max_x": 4829.66768238757, + "max_y": 5210.888020587192, + "center": [ + 4829.66768238757, + 5207.56052694205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4829.66768238757, + 5210.888020587192 + ], + [ + 4829.66768238757, + 5204.233033296909 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55873A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4833.819015473896, + "min_y": 5204.233033296909, + "max_x": 4833.819015473896, + "max_y": 5210.888020587192, + "center": [ + 4833.819015473896, + 5207.56052694205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.819015473896, + 5204.233033296909 + ], + [ + 4833.819015473896, + 5210.888020587192 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55873B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4829.181914920935, + "min_y": 5211.38036181806, + "max_x": 4834.304782940531, + "max_y": 5211.38036181806, + "center": [ + 4831.743348930733, + 5211.38036181806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4829.181914920935, + 5211.38036181806 + ], + [ + 4834.304782940531, + 5211.38036181806 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55873C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4829.181914920935, + "min_y": 5210.888020587192, + "max_x": 4834.304782940531, + "max_y": 5210.888020587192, + "center": [ + 4831.743348930733, + 5210.888020587192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4829.181914920935, + 5210.888020587192 + ], + [ + 4834.304782940531, + 5210.888020587192 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55873E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4833.819015473896, + "min_y": 5209.779191686275, + "max_x": 4834.954852833333, + "max_y": 5209.779191686275, + "center": [ + 4834.386934153614, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.819015473896, + 5209.779191686275 + ], + [ + 4834.954852833333, + 5209.779191686275 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55873F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4835.70144040026, + "min_y": 5208.644976876549, + "max_x": 4835.70144040026, + "max_y": 5210.913406496001, + "center": [ + 4835.70144040026, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.70144040026, + 5208.644976876549 + ], + [ + 4835.70144040026, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558740", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4839.338618228416, + "min_y": 5208.644976876549, + "max_x": 4839.338618228416, + "max_y": 5210.913406496001, + "center": [ + 4839.338618228416, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4839.338618228416, + 5208.644976876549 + ], + [ + 4839.338618228416, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558741", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4835.70144040026, + "min_y": 5210.140286571188, + "max_x": 4836.941053313489, + "max_y": 5210.913406496001, + "center": [ + 4836.3212468568745, + 5210.526846533594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.70144040026, + 5210.913406496001 + ], + [ + 4836.941053313489, + 5210.140286571188 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558742", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4835.70144040026, + "min_y": 5208.644976876549, + "max_x": 4836.941053313489, + "max_y": 5209.418096801363, + "center": [ + 4836.3212468568745, + 5209.0315368389565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.70144040026, + 5208.644976876549 + ], + [ + 4836.941053313489, + 5209.418096801363 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558743", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4836.8376784328475, + "min_y": 5209.096840804792, + "max_x": 4838.202380195819, + "max_y": 5210.461542567764, + "center": [ + 4837.520029314333, + 5209.779191686278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4837.520029314333, + 5209.779191686278 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558744", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4838.09900531518, + "min_y": 5210.140286571188, + "max_x": 4839.338618228416, + "max_y": 5210.913406496001, + "center": [ + 4838.718811771798, + 5210.526846533594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4838.09900531518, + 5210.140286571188 + ], + [ + 4839.338618228416, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558745", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4838.09900531518, + "min_y": 5208.644976876549, + "max_x": 4839.338618228416, + "max_y": 5209.418096801363, + "center": [ + 4838.718811771798, + 5209.0315368389565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4838.09900531518, + 5209.418096801363 + ], + [ + 4839.338618228416, + 5208.644976876549 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558746", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4840.085205795343, + "min_y": 5208.644976876549, + "max_x": 4840.085205795343, + "max_y": 5210.913406496001, + "center": [ + 4840.085205795343, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4840.085205795343, + 5208.644976876549 + ], + [ + 4840.085205795343, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558747", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4834.954852833333, + "min_y": 5208.644976876549, + "max_x": 4834.954852833333, + "max_y": 5210.913406496001, + "center": [ + 4834.954852833333, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.954852833333, + 5208.644976876549 + ], + [ + 4834.954852833333, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558748", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4828.531845028136, + "min_y": 5209.779191686275, + "max_x": 4829.66768238757, + "max_y": 5209.779191686275, + "center": [ + 4829.099763707853, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4829.66768238757, + 5209.779191686275 + ], + [ + 4828.531845028136, + 5209.779191686275 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558749", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4827.785257461206, + "min_y": 5208.644976876549, + "max_x": 4827.785257461206, + "max_y": 5210.913406496001, + "center": [ + 4827.785257461206, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.785257461206, + 5208.644976876549 + ], + [ + 4827.785257461206, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.148079633054, + "min_y": 5208.644976876549, + "max_x": 4824.148079633054, + "max_y": 5210.913406496001, + "center": [ + 4824.148079633054, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.148079633054, + 5208.644976876549 + ], + [ + 4824.148079633054, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4826.545644547977, + "min_y": 5210.140286571188, + "max_x": 4827.785257461206, + "max_y": 5210.913406496001, + "center": [ + 4827.165451004592, + 5210.526846533594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.785257461206, + 5210.913406496001 + ], + [ + 4826.545644547977, + 5210.140286571188 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4826.545644547977, + "min_y": 5208.644976876549, + "max_x": 4827.785257461206, + "max_y": 5209.418096801363, + "center": [ + 4827.165451004592, + 5209.0315368389565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.785257461206, + 5208.644976876549 + ], + [ + 4826.545644547977, + 5209.418096801363 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874D", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4825.284317665647, + "min_y": 5209.096840804792, + "max_x": 4826.649019428619, + "max_y": 5210.461542567764, + "center": [ + 4825.966668547133, + 5209.779191686278 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.966668547133, + 5209.779191686278 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.148079633054, + "min_y": 5210.140286571188, + "max_x": 4825.387692546286, + "max_y": 5210.913406496001, + "center": [ + 4824.76788608967, + 5210.526846533594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.387692546286, + 5210.140286571188 + ], + [ + 4824.148079633054, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55874F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.148079633054, + "min_y": 5208.644976876549, + "max_x": 4825.387692546286, + "max_y": 5209.418096801363, + "center": [ + 4824.76788608967, + 5209.0315368389565 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.387692546286, + 5209.418096801363 + ], + [ + 4824.148079633054, + 5208.644976876549 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558750", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4823.401492066125, + "min_y": 5208.644976876549, + "max_x": 4823.401492066125, + "max_y": 5210.913406496001, + "center": [ + 4823.401492066125, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.401492066125, + 5208.644976876549 + ], + [ + 4823.401492066125, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558751", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4828.531845028136, + "min_y": 5208.644976876549, + "max_x": 4828.531845028136, + "max_y": 5210.913406496001, + "center": [ + 4828.531845028136, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.531845028136, + 5208.644976876549 + ], + [ + 4828.531845028136, + 5210.913406496001 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558752", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4900.164988430668, + "min_y": 5204.489114884822, + "max_x": 4900.164988430668, + "max_y": 5211.144102175104, + "center": [ + 4900.164988430668, + 5207.816608529964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4900.164988430668, + 5211.144102175104 + ], + [ + 4900.164988430668, + 5204.489114884822 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558753", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4896.013655344341, + "min_y": 5204.489114884822, + "max_x": 4896.013655344341, + "max_y": 5211.144102175104, + "center": [ + 4896.013655344341, + 5207.816608529964 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4896.013655344341, + 5204.489114884822 + ], + [ + 4896.013655344341, + 5211.144102175104 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558754", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4895.527887877706, + "min_y": 5211.636443405972, + "max_x": 4900.650755897302, + "max_y": 5211.636443405972, + "center": [ + 4898.089321887504, + 5211.636443405972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4900.650755897302, + 5211.636443405972 + ], + [ + 4895.527887877706, + 5211.636443405972 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558755", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4895.527887877706, + "min_y": 5211.144102175104, + "max_x": 4900.650755897302, + "max_y": 5211.144102175104, + "center": [ + 4898.089321887504, + 5211.144102175104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4900.650755897302, + 5211.144102175104 + ], + [ + 4895.527887877706, + 5211.144102175104 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558757", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4894.877817984905, + "min_y": 5210.035273274187, + "max_x": 4896.013655344341, + "max_y": 5210.035273274187, + "center": [ + 4895.445736664623, + 5210.035273274187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4896.013655344341, + 5210.035273274187 + ], + [ + 4894.877817984905, + 5210.035273274187 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558758", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4894.131230417977, + "min_y": 5208.901058464461, + "max_x": 4894.131230417977, + "max_y": 5211.169488083914, + "center": [ + 4894.131230417977, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4894.131230417977, + 5208.901058464461 + ], + [ + 4894.131230417977, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558759", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4890.494052589824, + "min_y": 5208.901058464461, + "max_x": 4890.494052589824, + "max_y": 5211.169488083914, + "center": [ + 4890.494052589824, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.494052589824, + 5208.901058464461 + ], + [ + 4890.494052589824, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4892.891617504749, + "min_y": 5210.396368159101, + "max_x": 4894.131230417977, + "max_y": 5211.169488083914, + "center": [ + 4893.511423961363, + 5210.782928121507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4894.131230417977, + 5211.169488083914 + ], + [ + 4892.891617504749, + 5210.396368159101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4892.891617504749, + "min_y": 5208.901058464461, + "max_x": 4894.131230417977, + "max_y": 5209.674178389276, + "center": [ + 4893.511423961363, + 5209.287618426868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4894.131230417977, + 5208.901058464461 + ], + [ + 4892.891617504749, + 5209.674178389276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4891.630290622418, + "min_y": 5209.352922392704, + "max_x": 4892.99499238539, + "max_y": 5210.717624155676, + "center": [ + 4892.312641503904, + 5210.03527327419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4892.312641503904, + 5210.03527327419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4890.494052589824, + "min_y": 5210.396368159101, + "max_x": 4891.733665503057, + "max_y": 5211.169488083914, + "center": [ + 4891.11385904644, + 5210.782928121507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4891.733665503057, + 5210.396368159101 + ], + [ + 4890.494052589824, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4890.494052589824, + "min_y": 5208.901058464461, + "max_x": 4891.733665503057, + "max_y": 5209.674178389276, + "center": [ + 4891.11385904644, + 5209.287618426868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4891.733665503057, + 5209.674178389276 + ], + [ + 4890.494052589824, + 5208.901058464461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55875F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4889.747465022894, + "min_y": 5208.901058464461, + "max_x": 4889.747465022894, + "max_y": 5211.169488083914, + "center": [ + 4889.747465022894, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4889.747465022894, + 5208.901058464461 + ], + [ + 4889.747465022894, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558760", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4894.877817984905, + "min_y": 5208.901058464461, + "max_x": 4894.877817984905, + "max_y": 5211.169488083914, + "center": [ + 4894.877817984905, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4894.877817984905, + 5208.901058464461 + ], + [ + 4894.877817984905, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558761", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4900.164988430668, + "min_y": 5210.035273274187, + "max_x": 4901.300825790104, + "max_y": 5210.035273274187, + "center": [ + 4900.732907110386, + 5210.035273274187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4900.164988430668, + 5210.035273274187 + ], + [ + 4901.300825790104, + 5210.035273274187 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558762", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4902.047413357031, + "min_y": 5208.901058464461, + "max_x": 4902.047413357031, + "max_y": 5211.169488083914, + "center": [ + 4902.047413357031, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4902.047413357031, + 5208.901058464461 + ], + [ + 4902.047413357031, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558763", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4905.684591185184, + "min_y": 5208.901058464461, + "max_x": 4905.684591185184, + "max_y": 5211.169488083914, + "center": [ + 4905.684591185184, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4905.684591185184, + 5208.901058464461 + ], + [ + 4905.684591185184, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558764", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4902.047413357031, + "min_y": 5210.396368159101, + "max_x": 4903.28702627026, + "max_y": 5211.169488083914, + "center": [ + 4902.667219813646, + 5210.782928121507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4902.047413357031, + 5211.169488083914 + ], + [ + 4903.28702627026, + 5210.396368159101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558765", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4902.047413357031, + "min_y": 5208.901058464461, + "max_x": 4903.28702627026, + "max_y": 5209.674178389276, + "center": [ + 4902.667219813646, + 5209.287618426868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4902.047413357031, + 5208.901058464461 + ], + [ + 4903.28702627026, + 5209.674178389276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558766", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4903.183651389618, + "min_y": 5209.352922392704, + "max_x": 4904.54835315259, + "max_y": 5210.717624155676, + "center": [ + 4903.866002271104, + 5210.03527327419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4903.866002271104, + 5210.03527327419 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558767", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4904.444978271951, + "min_y": 5210.396368159101, + "max_x": 4905.684591185184, + "max_y": 5211.169488083914, + "center": [ + 4905.064784728567, + 5210.782928121507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4904.444978271951, + 5210.396368159101 + ], + [ + 4905.684591185184, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558768", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4904.444978271951, + "min_y": 5208.901058464461, + "max_x": 4905.684591185184, + "max_y": 5209.674178389276, + "center": [ + 4905.064784728567, + 5209.287618426868 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4904.444978271951, + 5209.674178389276 + ], + [ + 4905.684591185184, + 5208.901058464461 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558769", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4906.431178752113, + "min_y": 5208.901058464461, + "max_x": 4906.431178752113, + "max_y": 5211.169488083914, + "center": [ + 4906.431178752113, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4906.431178752113, + 5208.901058464461 + ], + [ + 4906.431178752113, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55876A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4901.300825790104, + "min_y": 5208.901058464461, + "max_x": 4901.300825790104, + "max_y": 5211.169488083914, + "center": [ + 4901.300825790104, + 5210.035273274188 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4901.300825790104, + 5208.901058464461 + ], + [ + 4901.300825790104, + 5211.169488083914 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55876B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4840.085205795343, + "min_y": 5209.779191686275, + "max_x": 4845.540941325822, + "max_y": 5209.779191686275, + "center": [ + 4842.813073560583, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4840.085205795343, + 5209.779191686275 + ], + [ + 4845.540941325822, + 5209.779191686275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55876C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4884.291729492415, + "min_y": 5210.035273274187, + "max_x": 4889.747465022894, + "max_y": 5210.035273274187, + "center": [ + 4887.019597257655, + 5210.035273274187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4884.291729492415, + 5210.035273274187 + ], + [ + 4889.747465022894, + 5210.035273274187 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55876D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4815.905262326083, + "min_y": 5203.901368772544, + "max_x": 4827.664016505214, + "max_y": 5205.861161135732, + "center": [ + 4821.784639415649, + 5204.881264954138 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55876E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4892.339516229377, + "min_y": 5199.755817939966, + "max_x": 4904.098270408508, + "max_y": 5201.715610303154, + "center": [ + 4898.218893318943, + 5200.73571412156 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55876F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4831.179455088595, + "min_y": 5271.093699653246, + "max_x": 4842.326820065058, + "max_y": 5271.093699653246, + "center": [ + 4836.753137576827, + 5271.093699653246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.179455088595, + 5271.093699653246 + ], + [ + 4842.326820065058, + 5271.093699653246 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558770", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4842.326820065058, + "min_y": 5237.89523135644, + "max_x": 4842.326820065058, + "max_y": 5271.093699653246, + "center": [ + 4842.326820065058, + 5254.494465504843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.326820065058, + 5271.093699653246 + ], + [ + 4842.326820065058, + 5237.89523135644 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558771", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4824.292850653723, + "min_y": 5237.89523135644, + "max_x": 4842.326820065058, + "max_y": 5237.89523135644, + "center": [ + 4833.3098353593905, + 5237.89523135644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.326820065058, + 5237.89523135644 + ], + [ + 4824.292850653723, + 5237.89523135644 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558772", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4824.292850653723, + "min_y": 5235.470154327202, + "max_x": 4833.184030576425, + "max_y": 5235.470154327202, + "center": [ + 4828.738440615074, + 5235.470154327202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.292850653723, + 5235.470154327202 + ], + [ + 4833.184030576425, + 5235.470154327202 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558773", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4833.184030576425, + "min_y": 5233.305165905036, + "max_x": 4833.184030576425, + "max_y": 5235.470154327202, + "center": [ + 4833.184030576425, + 5234.387660116119 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5235.470154327202 + ], + [ + 4833.184030576425, + 5233.305165905036 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558774", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4833.184030576425, + "min_y": 5214.898811251601, + "max_x": 4833.184030576425, + "max_y": 5216.621452175816, + "center": [ + 4833.184030576425, + 5215.760131713709 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5216.621452175816 + ], + [ + 4833.184030576425, + 5214.898811251601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558775", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4814.202249595506, + "min_y": 5214.898811251601, + "max_x": 4833.184030576425, + "max_y": 5214.898811251601, + "center": [ + 4823.693140085966, + 5214.898811251601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5214.898811251601 + ], + [ + 4814.202249595506, + 5214.898811251601 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558776", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4814.202249595506, + "min_y": 5209.779191686275, + "max_x": 4823.401492066125, + "max_y": 5209.779191686275, + "center": [ + 4818.8018708308155, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.401492066125, + 5209.779191686275 + ], + [ + 4814.202249595506, + 5209.779191686275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558777", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4839.670188088166, + "min_y": 5224.264625985208, + "max_x": 4851.428942267296, + "max_y": 5226.224418348396, + "center": [ + 4845.549565177731, + 5225.244522166802 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558778", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4806.613572208576, + "min_y": 5261.431840090033, + "max_x": 4816.244801003331, + "max_y": 5262.971676946824, + "center": [ + 4811.429186605954, + 5262.2017585184285 + ] + }, + "raw_value": "\\pi-0.55792;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LD-10901}", + "clean_value": "\\pi-0.55792; \\fArial|b1|i1|c238|p34; .3333x; D-10901", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55877C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4804.630603065625, + "min_y": 5256.342096304027, + "max_x": 4817.957191135307, + "max_y": 5257.648624546153, + "center": [ + 4811.293897100466, + 5256.9953604250895 + ] + }, + "raw_value": "AIR RECIEVER TANK", + "clean_value": "AIR RECIEVER TANK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55877D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4808.995952187236, + "min_y": 5253.729039819775, + "max_x": 4813.699453858889, + "max_y": 5255.0355680619, + "center": [ + 4811.347703023062, + 5254.382303940838 + ] + }, + "raw_value": "0.5 M3", + "clean_value": "0.5 M3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55877E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4818.019971010777, + "min_y": 5265.55716517215, + "max_x": 4819.980641584661, + "max_y": 5265.55716517215, + "center": [ + 4819.000306297719, + 5265.55716517215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.980641584661, + 5265.55716517215 + ], + [ + 4818.019971010777, + 5265.55716517215 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "55877F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4840.366149491172, + "min_y": 5271.093699653246, + "max_x": 4842.326820065058, + "max_y": 5271.093699653246, + "center": [ + 4841.346484778115, + 5271.093699653246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.326820065058, + 5271.093699653246 + ], + [ + 4840.366149491172, + 5271.093699653246 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558780", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4831.223360002542, + "min_y": 5235.470154327202, + "max_x": 4833.184030576425, + "max_y": 5235.470154327202, + "center": [ + 4832.203695289483, + 5235.470154327202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4833.184030576425, + 5235.470154327202 + ], + [ + 4831.223360002542, + 5235.470154327202 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558781", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4818.452778121631, + "min_y": 5209.779191686275, + "max_x": 4820.413448695518, + "max_y": 5209.779191686275, + "center": [ + 4819.433113408575, + 5209.779191686275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4820.413448695518, + 5209.779191686275 + ], + [ + 4818.452778121631, + 5209.779191686275 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558782", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4824.292850653723, + "min_y": 5237.89523135644, + "max_x": 4826.253521227609, + "max_y": 5237.89523135644, + "center": [ + 4825.273185940666, + 5237.89523135644 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.292850653723, + 5237.89523135644 + ], + [ + 4826.253521227609, + 5237.89523135644 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558783", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4814.202249595506, + "min_y": 5214.898811251601, + "max_x": 4816.162920169393, + "max_y": 5214.898811251601, + "center": [ + 4815.18258488245, + 5214.898811251601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.202249595506, + 5214.898811251601 + ], + [ + 4816.162920169393, + 5214.898811251601 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "558784", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4851.636719482056, + "min_y": 5217.598412191636, + "max_x": 4868.098975332839, + "max_y": 5218.904940433762, + "center": [ + 4859.867847407448, + 5218.251676312699 + ] + }, + "raw_value": "REGENERATOR AIR DRYER", + "clean_value": "REGENERATOR AIR DRYER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558785", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4893.517207708615, + "min_y": 5216.366468537632, + "max_x": 4903.14843650337, + "max_y": 5217.906305394423, + "center": [ + 4898.332822105993, + 5217.136386966027 + ] + }, + "raw_value": "\\pi-0.4907;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-10952}", + "clean_value": "\\pi-0.4907; \\fArial|b1|i1|c238|p34; .3333x; F-10952", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558789", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5280.786646298571, + "max_x": 4825.580048336629, + "max_y": 5283.888009354843, + "center": [ + 4825.580048336629, + 5282.337327826707 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336629, + 5283.888009354843 + ], + [ + 4825.580048336629, + 5280.786646298571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.728639112468, + "min_y": 5279.367630924971, + "max_x": 4826.431457560787, + "max_y": 5279.367630924971, + "center": [ + 4825.580048336627, + 5279.367630924971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.728639112468, + 5279.367630924971 + ], + [ + 4826.431457560787, + 5279.367630924971 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.740642614298, + "min_y": 5279.367630924971, + "max_x": 4826.419454058958, + "max_y": 5279.367630924971, + "center": [ + 4825.580048336627, + 5279.367630924971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.419454058958, + 5279.367630924971 + ], + [ + 4824.740642614298, + 5279.367630924971 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.740642614298, + "min_y": 5278.639708047215, + "max_x": 4826.419454058958, + "max_y": 5278.639708047215, + "center": [ + 4825.580048336627, + 5278.639708047215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.419454058958, + 5278.639708047215 + ], + [ + 4824.740642614298, + 5278.639708047215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.728639112468, + "min_y": 5279.367630924971, + "max_x": 4825.580048336629, + "max_y": 5280.786646298571, + "center": [ + 4825.154343724549, + 5280.077138611771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.728639112468, + 5279.367630924971 + ], + [ + 4825.580048336629, + 5280.786646298571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.924676582237, + "min_y": 5281.739343209011, + "max_x": 4826.235420091018, + "max_y": 5282.826330845613, + "center": [ + 4825.580048336627, + 5282.282837027312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.924676582237, + 5281.739343209011 + ], + [ + 4826.235420091018, + 5282.826330845613 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55878F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5279.367630924971, + "max_x": 4826.431457560787, + "max_y": 5280.786646298571, + "center": [ + 4826.005752948708, + 5280.077138611771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336629, + 5280.786646298571 + ], + [ + 4826.431457560787, + 5279.367630924971 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558790", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5280.786646298571, + "max_x": 4826.999063710228, + "max_y": 5281.63805552273, + "center": [ + 4826.289556023428, + 5281.2123509106505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.999063710228, + 5281.63805552273 + ], + [ + 4825.580048336629, + 5280.786646298571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558791", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4825.580048336629, + "min_y": 5279.935237074411, + "max_x": 4826.999063710228, + "max_y": 5280.786646298571, + "center": [ + 4826.289556023428, + 5280.360941686491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.580048336629, + 5280.786646298571 + ], + [ + 4826.999063710228, + 5279.935237074411 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558792", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4826.999063710228, + "min_y": 5279.935237074411, + "max_x": 4826.999063710228, + "max_y": 5281.63805552273, + "center": [ + 4826.999063710228, + 5280.78664629857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4826.999063710228, + 5281.63805552273 + ], + [ + 4826.999063710228, + 5279.935237074411 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558793", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4827.726986587981, + "min_y": 5279.935237074411, + "max_x": 4827.726986587981, + "max_y": 5281.63805552273, + "center": [ + 4827.726986587981, + 5280.78664629857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.726986587981, + 5281.63805552273 + ], + [ + 4827.726986587981, + 5279.935237074411 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558794", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.924676582237, + "min_y": 5281.338089720891, + "max_x": 4826.235420091018, + "max_y": 5282.425077357491, + "center": [ + 4825.580048336627, + 5281.881583539191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.924676582237, + 5281.338089720891 + ], + [ + 4826.235420091018, + 5282.425077357491 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558795", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4824.924676582237, + "min_y": 5280.936835578527, + "max_x": 4826.235420091018, + "max_y": 5282.023823215126, + "center": [ + 4825.580048336627, + 5281.480329396827 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.924676582237, + 5280.936835578527 + ], + [ + 4826.235420091018, + 5282.023823215126 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558796", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4827.726986587981, + "min_y": 5280.786646298571, + "max_x": 4832.162018000365, + "max_y": 5280.786646298571, + "center": [ + 4829.944502294173, + 5280.786646298571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4827.726986587981, + 5280.786646298571 + ], + [ + 4832.162018000365, + 5280.786646298571 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558797", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4835.315154092752, + "min_y": 5304.838160273512, + "max_x": 4835.315154092752, + "max_y": 5307.939523329785, + "center": [ + 4835.315154092752, + 5306.388841801649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.315154092752, + 5307.939523329785 + ], + [ + 4835.315154092752, + 5304.838160273512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558798", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.46374486859, + "min_y": 5303.419144899915, + "max_x": 4836.16656331691, + "max_y": 5303.419144899915, + "center": [ + 4835.31515409275, + 5303.419144899915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.46374486859, + 5303.419144899915 + ], + [ + 4836.16656331691, + 5303.419144899915 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558799", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.475748370421, + "min_y": 5303.419144899915, + "max_x": 4836.154559815081, + "max_y": 5303.419144899915, + "center": [ + 4835.31515409275, + 5303.419144899915 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4836.154559815081, + 5303.419144899915 + ], + [ + 4834.475748370421, + 5303.419144899915 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.475748370421, + "min_y": 5302.69122202216, + "max_x": 4836.154559815081, + "max_y": 5302.69122202216, + "center": [ + 4835.31515409275, + 5302.69122202216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4836.154559815081, + 5302.69122202216 + ], + [ + 4834.475748370421, + 5302.69122202216 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.46374486859, + "min_y": 5303.419144899915, + "max_x": 4835.315154092752, + "max_y": 5304.838160273512, + "center": [ + 4834.889449480671, + 5304.1286525867135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.46374486859, + 5303.419144899915 + ], + [ + 4835.315154092752, + 5304.838160273512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.65978233836, + "min_y": 5305.790857183954, + "max_x": 4835.970525847141, + "max_y": 5306.877844820554, + "center": [ + 4835.31515409275, + 5306.334351002254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.65978233836, + 5305.790857183954 + ], + [ + 4835.970525847141, + 5306.877844820554 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4835.315154092752, + "min_y": 5303.419144899915, + "max_x": 4836.16656331691, + "max_y": 5304.838160273512, + "center": [ + 4835.74085870483, + 5304.1286525867135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.315154092752, + 5304.838160273512 + ], + [ + 4836.16656331691, + 5303.419144899915 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4835.315154092752, + "min_y": 5304.838160273512, + "max_x": 4836.73416946635, + "max_y": 5305.689569497673, + "center": [ + 4836.024661779551, + 5305.263864885592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4836.73416946635, + 5305.689569497673 + ], + [ + 4835.315154092752, + 5304.838160273512 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55879F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4835.315154092752, + "min_y": 5303.986751049354, + "max_x": 4836.73416946635, + "max_y": 5304.838160273512, + "center": [ + 4836.024661779551, + 5304.412455661433 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4835.315154092752, + 5304.838160273512 + ], + [ + 4836.73416946635, + 5303.986751049354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A0", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4836.73416946635, + "min_y": 5303.986751049354, + "max_x": 4836.73416946635, + "max_y": 5305.689569497673, + "center": [ + 4836.73416946635, + 5304.8381602735135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4836.73416946635, + 5305.689569497673 + ], + [ + 4836.73416946635, + 5303.986751049354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A1", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4837.462092344104, + "min_y": 5303.986751049354, + "max_x": 4837.462092344104, + "max_y": 5305.689569497673, + "center": [ + 4837.462092344104, + 5304.8381602735135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4837.462092344104, + 5305.689569497673 + ], + [ + 4837.462092344104, + 5303.986751049354 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A2", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.65978233836, + "min_y": 5305.389603695835, + "max_x": 4835.970525847141, + "max_y": 5306.476591332434, + "center": [ + 4835.31515409275, + 5305.933097514135 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.65978233836, + 5305.389603695835 + ], + [ + 4835.970525847141, + 5306.476591332434 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A3", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4834.65978233836, + "min_y": 5304.988349553469, + "max_x": 4835.970525847141, + "max_y": 5306.07533719007, + "center": [ + 4835.31515409275, + 5305.531843371769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4834.65978233836, + 5304.988349553469 + ], + [ + 4835.970525847141, + 5306.07533719007 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4837.462092344104, + "min_y": 5304.838160273513, + "max_x": 4841.897123756488, + "max_y": 5304.838160273513, + "center": [ + 4839.679608050296, + 5304.838160273513 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4837.462092344104, + 5304.838160273513 + ], + [ + 4841.897123756488, + 5304.838160273513 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587A5", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4842.366375753606, + "min_y": 5304.801535340924, + "max_x": 4850.1579502489685, + "max_y": 5305.98207693113, + "center": [ + 4846.262163001287, + 5305.391806136027 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5587A6", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4844.02226363173, + "min_y": 5302.968427949033, + "max_x": 4848.272213356473, + "max_y": 5304.148969539239, + "center": [ + 4846.147238494102, + 5303.558698744137 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5587A7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4832.557648027539, + "min_y": 5281.260588798364, + "max_x": 4840.349222522901, + "max_y": 5282.44113038857, + "center": [ + 4836.45343527522, + 5281.850859593467 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5587A8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4834.213535905664, + "min_y": 5279.427481406472, + "max_x": 4838.4634856304065, + "max_y": 5280.608022996678, + "center": [ + 4836.338510768035, + 5280.017752201575 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5587A9", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4827.116273741097, + "min_y": 5289.018304307472, + "max_x": 4842.048025079675, + "max_y": 5290.324832549598, + "center": [ + 4834.582149410386, + 5289.6715684285355 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-10901\\PSP : 0.98 MPa\\P15Ax25A", + "clean_value": ".9; PSV-10901 SP : 0.98 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587AD", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4791.221953772408, + "min_y": 5240.37449022771, + "max_x": 4800.853182567163, + "max_y": 5241.914327084502, + "center": [ + 4796.037568169785, + 5241.144408656106 + ] + }, + "raw_value": "\\pi-1.59916;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LKA-10901}", + "clean_value": "\\pi-1.59916; \\fArial|b1|i1|c238|p34; .3333x; KA-10901", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587B1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4838.304890070993, + "min_y": 5232.274762975945, + "max_x": 4847.936118865748, + "max_y": 5233.814599832736, + "center": [ + 4843.12050446837, + 5233.044681404341 + ] + }, + "raw_value": "\\pi-2.47024;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LKF-10901A}", + "clean_value": "\\pi-2.47024; \\fArial|b1|i1|c238|p34; .3333x; KF-10901A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587B5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4790.756943580121, + "min_y": 5214.280700657153, + "max_x": 4800.3881723748755, + "max_y": 5215.820537513944, + "center": [ + 4795.572557977498, + 5215.0506190855485 + ] + }, + "raw_value": "\\pi-1.59916;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LKD-10901}", + "clean_value": "\\pi-1.59916; \\fArial|b1|i1|c238|p34; .3333x; KD-10901", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587B9", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4816.867774635499, + "min_y": 5202.209989031016, + "max_x": 4826.499003430254, + "max_y": 5203.749825887808, + "center": [ + 4821.683389032876, + 5202.979907459412 + ] + }, + "raw_value": "\\pi-2.52276;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LKF-10901B}", + "clean_value": "\\pi-2.52276; \\fArial|b1|i1|c238|p34; .3333x; KF-10901B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587BD", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4861.09736900813, + "min_y": 5200.866945110417, + "max_x": 4870.728597802885, + "max_y": 5202.406781967208, + "center": [ + 4865.9129834055075, + 5201.636863538813 + ] + }, + "raw_value": "\\pi-4.11648;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LKR-10901A/B}", + "clean_value": "\\pi-4.11648; \\fArial|b1|i1|c238|p34; .3333x; KR-10901A/B", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587C1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5163.478683122498, + "max_x": 5146.390298980868, + "max_y": 5163.478683122498, + "center": [ + 5114.762751605016, + 5163.478683122498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5163.478683122498 + ], + [ + 5083.135204229165, + 5163.478683122498 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C2", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5174.163490538639, + "max_x": 5146.390298980868, + "max_y": 5174.163490538639, + "center": [ + 5114.762751605016, + 5174.163490538639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5174.163490538639 + ], + [ + 5083.135204229165, + 5174.163490538639 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5152.79387570636, + "max_x": 5146.390298980868, + "max_y": 5152.79387570636, + "center": [ + 5114.762751605016, + 5152.79387570636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5152.79387570636 + ], + [ + 5083.135204229165, + 5152.79387570636 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C4", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5152.79387570636, + "max_x": 5146.390298980868, + "max_y": 5152.79387570636, + "center": [ + 5114.762751605016, + 5152.79387570636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5152.79387570636 + ], + [ + 5083.135204229165, + 5152.79387570636 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C5", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5163.478683122498, + "max_x": 5146.390298980868, + "max_y": 5163.478683122498, + "center": [ + 5114.762751605016, + 5163.478683122498 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5163.478683122498 + ], + [ + 5083.135204229165, + 5163.478683122498 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C6", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5174.163490538639, + "max_x": 5146.390298980868, + "max_y": 5174.163490538639, + "center": [ + 5114.762751605016, + 5174.163490538639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5174.163490538639 + ], + [ + 5083.135204229165, + 5174.163490538639 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5142.109068290229, + "max_x": 5146.390298980868, + "max_y": 5142.109068290229, + "center": [ + 5114.762751605016, + 5142.109068290229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5142.109068290229 + ], + [ + 5083.135204229165, + 5142.109068290229 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5142.109068290229, + "max_x": 5146.390298980868, + "max_y": 5142.109068290229, + "center": [ + 5114.762751605016, + 5142.109068290229 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5142.109068290229 + ], + [ + 5083.135204229165, + 5142.109068290229 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587C9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5138.907506746046, + "max_x": 5105.526731635141, + "max_y": 5138.907506746046, + "center": [ + 5094.330967932153, + 5138.907506746046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.135204229165, + 5138.907506746046 + ], + [ + 5105.526731635141, + 5138.907506746046 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587CA", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5096.374193679473, + "min_y": 5136.749258288854, + "max_x": 5099.294949171125, + "max_y": 5137.96623974371, + "center": [ + 5097.834571425299, + 5137.3577490162825 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587CB", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5096.374193679473, + "min_y": 5136.749258288854, + "max_x": 5099.294949171125, + "max_y": 5137.96623974371, + "center": [ + 5097.834571425299, + 5137.3577490162825 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587CC", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5098.441841812983, + "min_y": 5139.664339320766, + "max_x": 5099.443476536674, + "max_y": 5141.333730526919, + "center": [ + 5098.942659174829, + 5140.499034923842 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587CD", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.582841242843, + "min_y": 5139.71790329997, + "max_x": 5089.694163353233, + "max_y": 5140.934884754825, + "center": [ + 5087.138502298038, + 5140.326394027397 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587CE", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.582841242843, + "min_y": 5139.71790329997, + "max_x": 5089.694163353233, + "max_y": 5140.934884754825, + "center": [ + 5087.138502298038, + 5140.326394027397 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587CF", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.108619706627, + "min_y": 5136.775261754414, + "max_x": 5088.759564071192, + "max_y": 5137.992243209269, + "center": [ + 5086.934091888909, + 5137.383752481841 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D0", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.108619706627, + "min_y": 5136.775261754414, + "max_x": 5088.759564071192, + "max_y": 5137.992243209269, + "center": [ + 5086.934091888909, + 5137.383752481841 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D1", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5092.021962939683, + "min_y": 5135.712413002958, + "max_x": 5092.021962939683, + "max_y": 5142.109068290229, + "center": [ + 5092.021962939683, + 5138.910740646594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5092.021962939683, + 5142.109068290229 + ], + [ + 5092.021962939683, + 5135.712413002958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587D2", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5106.974582663037, + "min_y": 5140.080100161535, + "max_x": 5112.0859047734275, + "max_y": 5141.29708161639, + "center": [ + 5109.530243718233, + 5140.688590888962 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D3", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5105.526731635141, + "min_y": 5135.712413002958, + "max_x": 5105.526731635141, + "max_y": 5142.109068290229, + "center": [ + 5105.526731635141, + 5138.910740646594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5105.526731635141, + 5142.109068290229 + ], + [ + 5105.526731635141, + 5135.712413002958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587D4", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5150.563116989165, + "max_x": 5089.324391860561, + "max_y": 5151.78009844402, + "center": [ + 5086.768730805366, + 5151.171607716593 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D5", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5171.932731821445, + "max_x": 5089.324391860561, + "max_y": 5173.1497132763, + "center": [ + 5086.768730805366, + 5172.541222548873 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D6", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5181.924334433769, + "max_x": 5092.975336225126, + "max_y": 5183.141315888624, + "center": [ + 5088.594202987648, + 5182.532825161197 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587D7", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5140.368776157371, + "min_y": 5137.10945804043, + "max_x": 5145.338196821984, + "max_y": 5137.10945804043, + "center": [ + 5142.853486489677, + 5137.10945804043 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5140.368776157371, + 5137.10945804043 + ], + [ + 5145.338196821984, + 5137.10945804043 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587D8", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5140.368776157371, + "min_y": 5137.10945804043, + "max_x": 5142.826540575129, + "max_y": 5141.417013572599, + "center": [ + 5141.5976583662505, + 5139.263235806515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5140.368776157371, + 5137.10945804043 + ], + [ + 5142.826540575129, + 5141.417013572599 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587D9", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5140.368776157371, + "min_y": 5137.10945804043, + "max_x": 5142.826540575129, + "max_y": 5141.417013572599, + "center": [ + 5141.5976583662505, + 5139.263235806515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5140.368776157371, + 5137.10945804043 + ], + [ + 5142.826540575129, + 5141.417013572599 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587DA", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5139.637914633145, + "min_y": 5135.712413002958, + "max_x": 5139.637914633145, + "max_y": 5142.109068290229, + "center": [ + 5139.637914633145, + 5138.910740646594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.637914633145, + 5142.109068290229 + ], + [ + 5139.637914633145, + 5135.712413002958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587DB", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5142.826540575129, + "min_y": 5137.10945804043, + "max_x": 5145.338196821984, + "max_y": 5141.417013572599, + "center": [ + 5144.082368698557, + 5139.263235806515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5142.826540575129, + 5141.417013572599 + ], + [ + 5145.338196821984, + 5137.10945804043 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587DC", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5183.95574140306, + "max_x": 5146.390298980868, + "max_y": 5183.95574140306, + "center": [ + 5114.762751605016, + 5183.95574140306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5183.95574140306 + ], + [ + 5083.135204229165, + 5183.95574140306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587DD", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5183.95574140306, + "max_x": 5146.390298980868, + "max_y": 5183.95574140306, + "center": [ + 5114.762751605016, + 5183.95574140306 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980868, + 5183.95574140306 + ], + [ + 5083.135204229165, + 5183.95574140306 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587DE", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5142.228470838378, + "min_y": 5137.91833562276, + "max_x": 5143.392675036262, + "max_y": 5139.858675952567, + "center": [ + 5142.81057293732, + 5138.888505787663 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5587DF", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5135.712413002958, + "max_x": 5083.135204229165, + "max_y": 5183.95574140306, + "center": [ + 5083.135204229165, + 5159.834077203009 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.135204229165, + 5183.95574140306 + ], + [ + 5083.135204229165, + 5135.712413002958 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587E0", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5102.069241559666, + "min_y": 5167.485563390677, + "max_x": 5147.536424385638, + "max_y": 5170.098619874929, + "center": [ + 5124.802832972652, + 5168.792091632803 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5587E9", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.525666274616, + "min_y": 5170.28549198633, + "max_x": 5096.875326125974, + "max_y": 5170.28549198633, + "center": [ + 5096.700496200296, + 5170.28549198633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.525666274616, + 5170.28549198633 + ], + [ + 5096.875326125974, + 5170.28549198633 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587EA", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.575591612436, + "min_y": 5169.105392055756, + "max_x": 5096.875326125974, + "max_y": 5169.105392055756, + "center": [ + 5096.725458869205, + 5169.105392055756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.105392055756 + ], + [ + 5096.575591612436, + 5169.105392055756 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587EB", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.772878384585, + "min_y": 5169.402079172679, + "max_x": 5096.875326125974, + "max_y": 5169.402079172679, + "center": [ + 5096.824102255279, + 5169.402079172679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.402079172679 + ], + [ + 5096.772878384585, + 5169.402079172679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587EC", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.178859507634, + "min_y": 5168.898264918418, + "max_x": 5096.53633974062, + "max_y": 5168.898264918418, + "center": [ + 5096.357599624127, + 5168.898264918418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.53633974062, + 5168.898264918418 + ], + [ + 5096.178859507634, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587ED", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.178859507634, + "min_y": 5168.898264918418, + "max_x": 5096.525666274616, + "max_y": 5170.28549198633, + "center": [ + 5096.352262891125, + 5169.591878452375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.525666274616, + 5170.28549198633 + ], + [ + 5096.178859507634, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587EE", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.772878384585, + "min_y": 5169.402079172679, + "max_x": 5096.875326125974, + "max_y": 5169.811870138236, + "center": [ + 5096.824102255279, + 5169.606974655458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.811870138236 + ], + [ + 5096.772878384585, + 5169.402079172679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587EF", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.53633974062, + "min_y": 5168.898264918418, + "max_x": 5096.575591612436, + "max_y": 5169.105392055756, + "center": [ + 5096.555965676528, + 5169.001828487088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.575591612436, + 5169.105392055756 + ], + [ + 5096.53633974062, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F0", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.875326125974, + "min_y": 5170.28549198633, + "max_x": 5097.224985977333, + "max_y": 5170.28549198633, + "center": [ + 5097.050156051653, + 5170.28549198633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.224985977333, + 5170.28549198633 + ], + [ + 5096.875326125974, + 5170.28549198633 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F1", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.875326125974, + "min_y": 5169.105392055756, + "max_x": 5097.175060639514, + "max_y": 5169.105392055756, + "center": [ + 5097.025193382744, + 5169.105392055756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.105392055756 + ], + [ + 5097.175060639514, + 5169.105392055756 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F2", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.875326125974, + "min_y": 5169.402079172679, + "max_x": 5096.977773867364, + "max_y": 5169.402079172679, + "center": [ + 5096.92654999667, + 5169.402079172679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.402079172679 + ], + [ + 5096.977773867364, + 5169.402079172679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F3", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.214312511327, + "min_y": 5168.898264918418, + "max_x": 5097.571792744309, + "max_y": 5168.898264918418, + "center": [ + 5097.393052627818, + 5168.898264918418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.214312511327, + 5168.898264918418 + ], + [ + 5097.571792744309, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F4", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.224985977333, + "min_y": 5168.898264918418, + "max_x": 5097.571792744309, + "max_y": 5170.28549198633, + "center": [ + 5097.398389360821, + 5169.591878452375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.224985977333, + 5170.28549198633 + ], + [ + 5097.571792744309, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F5", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.875326125974, + "min_y": 5169.402079172679, + "max_x": 5096.977773867364, + "max_y": 5169.811870138236, + "center": [ + 5096.92654999667, + 5169.606974655458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.875326125974, + 5169.811870138236 + ], + [ + 5096.977773867364, + 5169.402079172679 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F6", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.175060639514, + "min_y": 5168.898264918418, + "max_x": 5097.214312511327, + "max_y": 5169.105392055756, + "center": [ + 5097.194686575421, + 5169.001828487088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.175060639514, + 5169.105392055756 + ], + [ + 5097.214312511327, + 5168.898264918418 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F7", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 5097.025771398499, + "min_y": 5166.411833871926, + "max_x": 5103.951024114266, + "max_y": 5167.521615526252, + "center": [ + 5100.488397756382, + 5166.966724699089 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5587F8", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4729.346484094363, + "min_y": 5135.712413002958, + "max_x": 5146.390298980868, + "max_y": 5432.713839485405, + "center": [ + 4937.868391537615, + 5284.213126244182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4729.346484094363, + 5432.713839485405 + ], + [ + 5146.390298980868, + 5432.713839485405 + ], + [ + 5146.390298980868, + 5135.712413002958 + ], + [ + 4729.346484094363, + 5135.712413002958 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587F9", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.213069750171, + "min_y": 5161.247924405302, + "max_x": 5092.975336225126, + "max_y": 5162.464905860157, + "center": [ + 5088.594202987648, + 5161.85641513273 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5587FA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5112.167468889404, + "min_y": 5148.429070654028, + "max_x": 5122.918329853181, + "max_y": 5150.6688333548145, + "center": [ + 5117.542899371292, + 5149.548952004421 + ] + }, + "raw_value": "OFF SITE", + "clean_value": "OFF SITE", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5587FB", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5104.353940006646, + "min_y": 5143.949545252455, + "max_x": 5125.855661934199, + "max_y": 5146.189307953242, + "center": [ + 5115.104800970423, + 5145.069426602849 + ] + }, + "raw_value": "AIR P&I DIAGRAM ", + "clean_value": "AIR P&I DIAGRAM", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5587FC", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5087.449424553237, + "min_y": 5177.246652356296, + "max_x": 5132.916607379209, + "max_y": 5179.859708840548, + "center": [ + 5110.183015966223, + 5178.553180598422 + ] + }, + "raw_value": "72MT/D SOLVENT RECOVERY PLANT", + "clean_value": "72MT/D SOLVENT RECOVERY PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5587FD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5083.633179148829, + "min_y": 5184.720764723576, + "max_x": 5085.810688978255, + "max_y": 5185.6280604858375, + "center": [ + 5084.721934063542, + 5185.174412604707 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5086.67370006634, + "min_y": 5183.95574140306, + "max_x": 5086.673700066456, + "max_y": 5207.321551323115, + "center": [ + 5086.673700066398, + 5195.638646363088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.67370006634, + 5183.95574140306 + ], + [ + 5086.673700066456, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5587FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229218, + "min_y": 5186.907396672051, + "max_x": 5146.390298980872, + "max_y": 5186.907396672051, + "center": [ + 5114.762751605045, + 5186.907396672051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5186.907396672051 + ], + [ + 5083.135204229218, + 5186.907396672051 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558800", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5186.907396672093, + "max_x": 5086.673700066423, + "max_y": 5190.309755780562, + "center": [ + 5084.972520512209, + 5188.608576226327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066423, + 5188.608576226307 + ], + [ + 5084.972520512167, + 5190.309755780562 + ], + [ + 5083.271340957994, + 5188.608576226307 + ], + [ + 5084.972520512167, + 5186.907396672093 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558801", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5190.309755780562, + "max_x": 5086.673700066423, + "max_y": 5193.712114889031, + "center": [ + 5084.972520512209, + 5192.010935334796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066423, + 5192.010935334817 + ], + [ + 5084.972520512167, + 5193.712114889031 + ], + [ + 5083.271340957994, + 5192.010935334817 + ], + [ + 5084.972520512167, + 5190.309755780562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558802", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5193.712114889031, + "max_x": 5086.673700066423, + "max_y": 5197.114473997501, + "center": [ + 5084.972520512209, + 5195.413294443266 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066423, + 5195.413294443287 + ], + [ + 5084.972520512167, + 5197.114473997501 + ], + [ + 5083.271340957994, + 5195.413294443287 + ], + [ + 5084.972520512167, + 5193.712114889031 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558803", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340957994, + "min_y": 5197.114473997501, + "max_x": 5086.673700066423, + "max_y": 5200.516833106011, + "center": [ + 5084.972520512209, + 5198.8156535517555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066423, + 5198.815653551757 + ], + [ + 5084.972520512167, + 5200.516833106011 + ], + [ + 5083.271340957994, + 5198.815653551757 + ], + [ + 5084.972520512167, + 5197.114473997501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558804", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5090.729352576785, + "min_y": 5184.720764723576, + "max_x": 5093.361915277588, + "max_y": 5185.817665848911, + "center": [ + 5092.045633927186, + 5185.269215286244 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558805", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5135.941526650624, + "min_y": 5183.955741403101, + "max_x": 5135.941526650738, + "max_y": 5207.321551323115, + "center": [ + 5135.94152665068, + 5195.638646363108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5135.941526650624, + 5183.955741403101 + ], + [ + 5135.941526650738, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558806", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5130.90887244927, + "min_y": 5183.95574140306, + "max_x": 5130.908872449317, + "max_y": 5207.321551323115, + "center": [ + 5130.908872449294, + 5195.638646363088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5130.90887244927, + 5183.95574140306 + ], + [ + 5130.908872449317, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558807", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5131.586694818798, + "min_y": 5184.720764723576, + "max_x": 5134.219257519601, + "max_y": 5185.817665848911, + "center": [ + 5132.9029761692, + 5185.269215286244 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558808", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5125.238273935143, + "min_y": 5183.95574140306, + "max_x": 5125.238273935187, + "max_y": 5207.321551323115, + "center": [ + 5125.238273935165, + 5195.638646363088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.238273935143, + 5183.95574140306 + ], + [ + 5125.238273935187, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558809", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5126.240181311359, + "min_y": 5184.720764723576, + "max_x": 5128.872744012163, + "max_y": 5185.817665848911, + "center": [ + 5127.5564626617615, + 5185.269215286244 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5119.567675421015, + "min_y": 5183.95574140306, + "max_x": 5119.567675421129, + "max_y": 5207.321551323115, + "center": [ + 5119.567675421073, + 5195.638646363088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.567675421015, + 5183.95574140306 + ], + [ + 5119.567675421129, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5120.522572749054, + "min_y": 5184.720764723576, + "max_x": 5123.155135449858, + "max_y": 5185.817665848911, + "center": [ + 5121.8388540994565, + 5185.269215286244 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5104.37924238452, + "min_y": 5184.720764723576, + "max_x": 5111.618789811729, + "max_y": 5185.817665848911, + "center": [ + 5107.999016098124, + 5185.269215286244 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5098.263748655907, + "min_y": 5183.955741403101, + "max_x": 5098.263748655952, + "max_y": 5207.321551323115, + "center": [ + 5098.26374865593, + 5195.638646363108 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5098.263748655952, + 5207.321551323115 + ], + [ + 5098.263748655907, + 5183.955741403101 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5138.637816888873, + "min_y": 5184.668524637341, + "max_x": 5142.586660940078, + "max_y": 5185.7654257626755, + "center": [ + 5140.612238914476, + 5185.216975200008 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55880F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340957997, + "min_y": 5200.516833106011, + "max_x": 5086.673700066425, + "max_y": 5203.919192214522, + "center": [ + 5084.972520512211, + 5202.218012660267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066425, + 5202.218012660266 + ], + [ + 5084.972520512168, + 5203.919192214522 + ], + [ + 5083.271340957997, + 5202.218012660266 + ], + [ + 5084.972520512168, + 5200.516833106011 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558810", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.271340958046, + "min_y": 5203.919192215, + "max_x": 5086.673700066474, + "max_y": 5207.321551323511, + "center": [ + 5084.9725205122595, + 5205.620371769255 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5086.673700066474, + 5205.620371769255 + ], + [ + 5084.972520512217, + 5207.321551323511 + ], + [ + 5083.271340958046, + 5205.620371769255 + ], + [ + 5084.972520512217, + 5203.919192215 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558811", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229168, + "min_y": 5183.955741403163, + "max_x": 5083.135204229284, + "max_y": 5207.321551323115, + "center": [ + 5083.135204229226, + 5195.638646363139 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.135204229168, + 5183.955741403163 + ], + [ + 5083.135204229284, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558812", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229208, + "min_y": 5190.309755780562, + "max_x": 5146.390298980872, + "max_y": 5190.309755780562, + "center": [ + 5114.76275160504, + 5190.309755780562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5190.309755780562 + ], + [ + 5083.135204229208, + 5190.309755780562 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558813", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229201, + "min_y": 5193.712114889073, + "max_x": 5146.390298980872, + "max_y": 5193.712114889073, + "center": [ + 5114.762751605036, + 5193.712114889073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5193.712114889073 + ], + [ + 5083.135204229201, + 5193.712114889073 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558814", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229191, + "min_y": 5197.114473997583, + "max_x": 5146.390298980872, + "max_y": 5197.114473997583, + "center": [ + 5114.762751605032, + 5197.114473997583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5197.114473997583 + ], + [ + 5083.135204229191, + 5197.114473997583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558815", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229182, + "min_y": 5200.516833106094, + "max_x": 5146.390298980872, + "max_y": 5200.516833106094, + "center": [ + 5114.762751605027, + 5200.516833106094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5200.516833106094 + ], + [ + 5083.135204229182, + 5200.516833106094 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558816", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229172, + "min_y": 5203.919192214605, + "max_x": 5146.390298980872, + "max_y": 5203.919192214605, + "center": [ + 5114.762751605022, + 5203.919192214605 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5203.919192214605 + ], + [ + 5083.135204229172, + 5203.919192214605 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558817", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.135204229165, + "min_y": 5207.321551323115, + "max_x": 5146.390298980872, + "max_y": 5207.321551323115, + "center": [ + 5114.762751605018, + 5207.321551323115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5146.390298980872, + 5207.321551323115 + ], + [ + 5083.135204229165, + 5207.321551323115 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558818", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5101.605557914754, + "min_y": 5156.080709182758, + "max_x": 5124.460800156516, + "max_y": 5158.321419206461, + "center": [ + 5113.033179035635, + 5157.201064194609 + ] + }, + "raw_value": "HANMO CORPORATION", + "clean_value": "HANMO CORPORATION", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "558819", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5096.053611081504, + "min_y": 5157.484475953982, + "max_x": 5099.448626268931, + "max_y": 5157.484475953982, + "center": [ + 5097.751118675217, + 5157.484475953982 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.053611081504, + 5157.484475953982 + ], + [ + 5099.448626268931, + 5157.484475953982 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "55881A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5191.531694192455, + "max_x": 5085.153743796853, + "max_y": 5192.464928651116, + "center": [ + 5084.873773459254, + 5191.998311421785 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55881B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5194.934053300937, + "max_x": 5085.153743796853, + "max_y": 5195.867287759598, + "center": [ + 5084.873773459254, + 5195.400670530267 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55881C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5198.349503874759, + "max_x": 5085.153743796853, + "max_y": 5199.28273833342, + "center": [ + 5084.873773459254, + 5198.81612110409 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55881D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5201.751862983242, + "max_x": 5085.153743796853, + "max_y": 5202.685097441903, + "center": [ + 5084.873773459254, + 5202.218480212572 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55881E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121657, + "min_y": 5205.167313557105, + "max_x": 5085.1537437968545, + "max_y": 5206.100548015766, + "center": [ + 5084.873773459256, + 5205.633930786436 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55881F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5084.593803121656, + "min_y": 5188.142426549323, + "max_x": 5085.153743796853, + "max_y": 5189.075661007984, + "center": [ + 5084.873773459254, + 5188.609043778653 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558820", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5102.327899652543, + "min_y": 5188.143829206325, + "max_x": 5111.28695045569, + "max_y": 5189.077063664986, + "center": [ + 5106.807425054117, + 5188.610446435656 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558821", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5120.683784746088, + "min_y": 5188.143829206299, + "max_x": 5123.483488122072, + "max_y": 5189.07706366496, + "center": [ + 5122.08363643408, + 5188.61044643563 + ] + }, + "raw_value": "K.S.Y", + "clean_value": "K.S.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558822", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5116.33522610903, + "min_y": 5137.232581167281, + "max_x": 5132.634084879409, + "max_y": 5139.043565475101, + "center": [ + 5124.48465549422, + 5138.138073321191 + ] + }, + "raw_value": "SARF-#10-UFD-IA", + "clean_value": "SARF-#10-UFD-IA", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "558823", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5113.720914368526, + "min_y": 5184.850595837028, + "max_x": 5115.400736394116, + "max_y": 5185.783830295689, + "center": [ + 5114.560825381321, + 5185.317213066359 + ] + }, + "raw_value": "J.W", + "clean_value": "J.W", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558824", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5126.243357489715, + "min_y": 5188.186224619681, + "max_x": 5129.043060865699, + "max_y": 5189.119459078342, + "center": [ + 5127.643209177707, + 5188.652841849011 + ] + }, + "raw_value": "J.O.Y", + "clean_value": "J.O.Y", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558825", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5131.831128001497, + "min_y": 5188.198380980352, + "max_x": 5134.630831377481, + "max_y": 5189.131615439013, + "center": [ + 5133.230979689489, + 5188.664998209682 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558826", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5047.071256178253, + "min_y": 5210.035273274187, + "max_x": 5047.071256178253, + "max_y": 5229.21292876616, + "center": [ + 5047.071256178253, + 5219.624101020174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5047.071256178253, + 5210.035273274187 + ], + [ + 5047.071256178253, + 5229.21292876616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558827", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4994.454059167354, + "min_y": 5213.6934112988, + "max_x": 4994.454059167354, + "max_y": 5229.21292876616, + "center": [ + 4994.454059167354, + 5221.453170032481 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.454059167354, + 5213.6934112988 + ], + [ + 4994.454059167354, + 5229.21292876616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558828", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5028.807107854092, + "min_y": 5210.035273274187, + "max_x": 5028.807107854092, + "max_y": 5229.21292876616, + "center": [ + 5028.807107854092, + 5219.624101020174 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5028.807107854092, + 5210.035273274187 + ], + [ + 5028.807107854092, + 5229.21292876616 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558829", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5042.02041127193, + "min_y": 5190.857617782219, + "max_x": 5042.02041127193, + "max_y": 5210.035273274191, + "center": [ + 5042.02041127193, + 5200.446445528205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5042.02041127193, + 5210.035273274191 + ], + [ + 5042.02041127193, + 5190.857617782219 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4982.575027736132, + "min_y": 5190.857617782219, + "max_x": 4982.575027736132, + "max_y": 5213.6934112988, + "center": [ + 4982.575027736132, + 5202.27551454051 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4982.575027736132, + 5213.6934112988 + ], + [ + 4982.575027736132, + 5190.857617782219 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5025.170657385206, + "min_y": 5190.857617782217, + "max_x": 5025.170657385208, + "max_y": 5210.035273274191, + "center": [ + 5025.170657385207, + 5200.446445528204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5025.170657385208, + 5210.035273274191 + ], + [ + 5025.170657385206, + 5190.857617782217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5016.171535908637, + "min_y": 5190.857617782217, + "max_x": 5016.17153590864, + "max_y": 5210.035273274191, + "center": [ + 5016.171535908639, + 5200.446445528204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5016.17153590864, + 5210.035273274191 + ], + [ + 5016.171535908637, + 5190.857617782217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5007.172414432069, + "min_y": 5190.857617782217, + "max_x": 5007.17241443207, + "max_y": 5210.035273274191, + "center": [ + 5007.172414432069, + 5200.446445528204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.17241443207, + 5210.035273274191 + ], + [ + 5007.172414432069, + 5190.857617782217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4998.1732929555, + "min_y": 5190.857617782217, + "max_x": 4998.173292955502, + "max_y": 5210.035273274191, + "center": [ + 4998.173292955501, + 5200.446445528204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4998.173292955502, + 5210.035273274191 + ], + [ + 4998.1732929555, + 5190.857617782217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55882F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5278.280017246038, + "max_x": 5069.326683854284, + "max_y": 5278.280017246039, + "center": [ + 5008.682600619244, + 5278.280017246039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4948.038517384205, + 5278.280017246039 + ], + [ + 5069.326683854284, + 5278.280017246038 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "558830", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5334.061843941743, + "max_x": 5069.326683854284, + "max_y": 5334.061843941744, + "center": [ + 5008.682600619244, + 5334.061843941743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4948.038517384205, + 5334.061843941744 + ], + [ + 5069.326683854284, + 5334.061843941743 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "558831", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4948.038517384205, + "min_y": 5389.843670637447, + "max_x": 5069.326683854284, + "max_y": 5389.843670637449, + "center": [ + 5008.682600619244, + 5389.843670637448 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4948.038517384205, + 5389.843670637449 + ], + [ + 5069.326683854284, + 5389.843670637447 + ] + ], + "properties": { + "color": 4, + "lineweight": 0 + } + }, + { + "entity_id": "558832", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4920.188006684526, + "min_y": 5207.748734191513, + "max_x": 4932.282725268775, + "max_y": 5208.868615541906, + "center": [ + 4926.23536597665, + 5208.30867486671 + ] + }, + "raw_value": "IA-10900-25A-F1A-n", + "clean_value": "IA-10900-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558833", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5032.800132296221, + "min_y": 5255.689219225407, + "max_x": 5044.89485088047, + "max_y": 5256.809100575801, + "center": [ + 5038.847491588345, + 5256.249159900604 + ] + }, + "raw_value": "IA-10900-25A-F1A-n", + "clean_value": "IA-10900-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558834", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5000.946732382729, + "min_y": 5194.015176059394, + "max_x": 5013.041450966978, + "max_y": 5195.135057409788, + "center": [ + 5006.994091674854, + 5194.575116734592 + ] + }, + "raw_value": "IA-10901-15A-F1A-n", + "clean_value": "IA-10901-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558835", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5006.473351260096, + "min_y": 5193.997086653521, + "max_x": 5018.568069844345, + "max_y": 5195.116968003915, + "center": [ + 5012.52071055222, + 5194.557027328718 + ] + }, + "raw_value": "IA-10902-15A-F1A-n", + "clean_value": "IA-10902-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558836", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5015.472472736664, + "min_y": 5193.997086653521, + "max_x": 5027.567191320913, + "max_y": 5195.116968003915, + "center": [ + 5021.519832028788, + 5194.557027328718 + ] + }, + "raw_value": "IA-10903-15A-F1A-n", + "clean_value": "IA-10903-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558837", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5028.273692153788, + "min_y": 5193.848952967524, + "max_x": 5040.368410738037, + "max_y": 5194.968834317918, + "center": [ + 5034.321051445912, + 5194.4088936427215 + ] + }, + "raw_value": "IA-10904-15A-F1A-n", + "clean_value": "IA-10904-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558838", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4981.875964564157, + "min_y": 5193.997086653521, + "max_x": 4993.970683148405, + "max_y": 5195.116968003915, + "center": [ + 4987.923323856281, + 5194.557027328718 + ] + }, + "raw_value": "IA-10905-15A-F1A-n", + "clean_value": "IA-10905-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558839", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5041.321348099955, + "min_y": 5193.997086653521, + "max_x": 5053.4160666842035, + "max_y": 5195.116968003915, + "center": [ + 5047.368707392079, + 5194.557027328718 + ] + }, + "raw_value": "IA-10906-15A-F1A-n", + "clean_value": "IA-10906-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5028.108044682118, + "min_y": 5213.17474214549, + "max_x": 5040.202763266367, + "max_y": 5214.294623495884, + "center": [ + 5034.155403974242, + 5213.734682820686 + ] + }, + "raw_value": "IA-10907-15A-F1A-n", + "clean_value": "IA-10907-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4993.75499599538, + "min_y": 5214.87764898368, + "max_x": 5005.849714579629, + "max_y": 5215.997530334073, + "center": [ + 4999.802355287505, + 5215.437589658877 + ] + }, + "raw_value": "IA-10909-15A-F1A-n", + "clean_value": "IA-10909-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5046.372193006278, + "min_y": 5213.17474214549, + "max_x": 5058.466911590527, + "max_y": 5214.294623495884, + "center": [ + 5052.419552298403, + 5213.734682820686 + ] + }, + "raw_value": "IA-10908-15A-F1A-n", + "clean_value": "IA-10908-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883D", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4985.61627170807, + "min_y": 5214.87764898368, + "max_x": 4997.7109902923185, + "max_y": 5215.997530334073, + "center": [ + 4991.663631000194, + 5215.437589658877 + ] + }, + "raw_value": "IA-10910-15A-F1A-n", + "clean_value": "IA-10910-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883E", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5018.886208455015, + "min_y": 5308.855475088242, + "max_x": 5030.980927039263, + "max_y": 5309.975356438636, + "center": [ + 5024.933567747139, + 5309.415415763438 + ] + }, + "raw_value": "IA-10912-15A-F1A-n", + "clean_value": "IA-10912-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55883F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4991.888844025308, + "min_y": 5308.855475088242, + "max_x": 5003.983562609556, + "max_y": 5309.975356438636, + "center": [ + 4997.936203317432, + 5309.415415763438 + ] + }, + "raw_value": "IA-10915-15A-F1A-n", + "clean_value": "IA-10915-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558840", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5009.887086978446, + "min_y": 5308.855475088242, + "max_x": 5021.981805562695, + "max_y": 5309.975356438636, + "center": [ + 5015.93444627057, + 5309.415415763438 + ] + }, + "raw_value": "IA-10913-25A-F1A-n", + "clean_value": "IA-10913-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558841", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5000.887965501878, + "min_y": 5308.855475088242, + "max_x": 5012.982684086127, + "max_y": 5309.975356438636, + "center": [ + 5006.935324794003, + 5309.415415763438 + ] + }, + "raw_value": "IA-10914-25A-F1A-n", + "clean_value": "IA-10914-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558842", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5015.510954434653, + "min_y": 5363.784113881457, + "max_x": 5027.605673018902, + "max_y": 5364.903995231851, + "center": [ + 5021.558313726778, + 5364.344054556654 + ] + }, + "raw_value": "IA-10918-15A-F1A-n", + "clean_value": "IA-10918-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558843", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5002.833248519653, + "min_y": 5363.78411388145, + "max_x": 5014.927967103902, + "max_y": 5364.9039952318435, + "center": [ + 5008.880607811778, + 5364.344054556646 + ] + }, + "raw_value": "IA-10919-15A-F1A-n", + "clean_value": "IA-10919-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558844", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4990.155542604654, + "min_y": 5363.78411388145, + "max_x": 5002.250261188903, + "max_y": 5364.9039952318435, + "center": [ + 4996.202901896779, + 5364.344054556646 + ] + }, + "raw_value": "IA-10920-15A-F1A-n", + "clean_value": "IA-10920-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558845", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4977.477836689655, + "min_y": 5363.78411388145, + "max_x": 4989.572555273904, + "max_y": 5364.9039952318435, + "center": [ + 4983.52519598178, + 5364.344054556646 + ] + }, + "raw_value": "IA-10921-15A-F1A-n", + "clean_value": "IA-10921-15A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558846", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4993.493804451808, + "min_y": 5323.574238243542, + "max_x": 5005.588523036056, + "max_y": 5324.694119593935, + "center": [ + 4999.541163743932, + 5324.134178918739 + ] + }, + "raw_value": "IA-10900-25A-F1A-n", + "clean_value": "IA-10900-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558847", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5050.895860017697, + "min_y": 5208.901058464465, + "max_x": 5050.895860017697, + "max_y": 5211.169488083918, + "center": [ + 5050.895860017697, + 5210.035273274191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5050.895860017697, + 5208.901058464465 + ], + [ + 5050.895860017697, + 5211.169488083918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558848", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5054.53303784585, + "min_y": 5208.901058464465, + "max_x": 5054.53303784585, + "max_y": 5211.169488083918, + "center": [ + 5054.53303784585, + 5210.035273274191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5054.53303784585, + 5208.901058464465 + ], + [ + 5054.53303784585, + 5211.169488083918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558849", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5050.895860017697, + "min_y": 5210.396368159105, + "max_x": 5052.135472930924, + "max_y": 5211.169488083918, + "center": [ + 5051.51566647431, + 5210.782928121511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5050.895860017697, + 5211.169488083918 + ], + [ + 5052.135472930924, + 5210.396368159105 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5050.895860017697, + "min_y": 5208.901058464465, + "max_x": 5052.135472930924, + "max_y": 5209.674178389279, + "center": [ + 5051.51566647431, + 5209.287618426872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5050.895860017697, + 5208.901058464465 + ], + [ + 5052.135472930924, + 5209.674178389279 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884B", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5052.032098050284, + "min_y": 5209.352922392707, + "max_x": 5053.396799813256, + "max_y": 5210.717624155679, + "center": [ + 5052.71444893177, + 5210.035273274193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5052.71444893177, + 5210.035273274193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5053.293424932615, + "min_y": 5210.396368159105, + "max_x": 5054.53303784585, + "max_y": 5211.169488083918, + "center": [ + 5053.913231389233, + 5210.782928121511 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5053.293424932615, + 5210.396368159105 + ], + [ + 5054.53303784585, + 5211.169488083918 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5053.293424932615, + "min_y": 5208.901058464465, + "max_x": 5054.53303784585, + "max_y": 5209.674178389279, + "center": [ + 5053.913231389233, + 5209.287618426872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5053.293424932615, + 5209.674178389279 + ], + [ + 5054.53303784585, + 5208.901058464465 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5054.53303784585, + "min_y": 5210.035273274193, + "max_x": 5057.655957259846, + "max_y": 5210.035273274195, + "center": [ + 5056.094497552848, + 5210.035273274194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5054.53303784585, + 5210.035273274195 + ], + [ + 5057.655957259846, + 5210.035273274193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55884F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5058.402544826773, + "min_y": 5208.901058464467, + "max_x": 5058.402544826773, + "max_y": 5211.16948808392, + "center": [ + 5058.402544826773, + 5210.035273274194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.402544826773, + 5211.16948808392 + ], + [ + 5058.402544826773, + 5208.901058464467 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558850", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5056.843909199473, + "min_y": 5211.16948808392, + "max_x": 5058.402544826773, + "max_y": 5211.16948808392, + "center": [ + 5057.623227013123, + 5211.16948808392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.402544826773, + 5211.16948808392 + ], + [ + 5056.843909199473, + 5211.16948808392 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558851", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5056.843909199473, + "min_y": 5208.901058464467, + "max_x": 5058.402544826773, + "max_y": 5208.901058464467, + "center": [ + 5057.623227013123, + 5208.901058464467 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.402544826773, + 5208.901058464467 + ], + [ + 5056.843909199473, + 5208.901058464467 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558852", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4978.677736136486, + "min_y": 5210.035273274189, + "max_x": 4978.677736136488, + "max_y": 5213.6934112988, + "center": [ + 4978.6777361364875, + 5211.864342286495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4978.677736136486, + 5210.035273274189 + ], + [ + 4978.677736136488, + 5213.6934112988 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558853", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4978.677736136488, + "min_y": 5213.6934112988, + "max_x": 4996.973793105175, + "max_y": 5213.6934112988, + "center": [ + 4987.825764620831, + 5213.6934112988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4978.677736136488, + 5213.6934112988 + ], + [ + 4996.973793105175, + 5213.6934112988 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558854", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4996.973793105175, + "min_y": 5212.559196489076, + "max_x": 4996.973793105175, + "max_y": 5214.827626108529, + "center": [ + 4996.973793105175, + 5213.693411298803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.973793105175, + 5212.559196489076 + ], + [ + 4996.973793105175, + 5214.827626108529 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558855", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5000.610970933326, + "min_y": 5212.559196489076, + "max_x": 5000.610970933326, + "max_y": 5214.827626108529, + "center": [ + 5000.610970933326, + 5213.693411298803 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.610970933326, + 5212.559196489076 + ], + [ + 5000.610970933326, + 5214.827626108529 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558856", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4996.973793105175, + "min_y": 5214.054506183716, + "max_x": 4998.213406018401, + "max_y": 5214.827626108529, + "center": [ + 4997.593599561787, + 5214.4410661461225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.973793105175, + 5214.827626108529 + ], + [ + 4998.213406018401, + 5214.054506183716 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558857", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4996.973793105175, + "min_y": 5212.559196489076, + "max_x": 4998.213406018401, + "max_y": 5213.33231641389, + "center": [ + 4997.593599561787, + 5212.945756451483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4996.973793105175, + 5212.559196489076 + ], + [ + 4998.213406018401, + 5213.33231641389 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558858", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4998.110031137763, + "min_y": 5213.011060417319, + "max_x": 4999.474732900735, + "max_y": 5214.375762180291, + "center": [ + 4998.792382019249, + 5213.693411298805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4998.792382019249, + 5213.693411298805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558859", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4999.371358020093, + "min_y": 5214.054506183716, + "max_x": 5000.610970933326, + "max_y": 5214.827626108529, + "center": [ + 4999.991164476709, + 5214.4410661461225 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4999.371358020093, + 5214.054506183716 + ], + [ + 5000.610970933326, + 5214.827626108529 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4999.371358020093, + "min_y": 5212.559196489076, + "max_x": 5000.610970933326, + "max_y": 5213.33231641389, + "center": [ + 4999.991164476709, + 5212.945756451483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4999.371358020093, + 5213.33231641389 + ], + [ + 5000.610970933326, + 5212.559196489076 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5000.610970933326, + "min_y": 5213.693411298805, + "max_x": 5003.733890347323, + "max_y": 5213.693411298805, + "center": [ + 5002.172430640325, + 5213.693411298805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.610970933326, + 5213.693411298805 + ], + [ + 5003.733890347323, + 5213.693411298805 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5004.480477914251, + "min_y": 5212.559196489078, + "max_x": 5004.480477914251, + "max_y": 5214.827626108531, + "center": [ + 5004.480477914251, + 5213.693411298805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5004.480477914251, + 5214.827626108531 + ], + [ + 5004.480477914251, + 5212.559196489078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5002.921842286951, + "min_y": 5214.827626108531, + "max_x": 5004.480477914251, + "max_y": 5214.827626108531, + "center": [ + 5003.701160100602, + 5214.827626108531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5004.480477914251, + 5214.827626108531 + ], + [ + 5002.921842286951, + 5214.827626108531 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5002.921842286951, + "min_y": 5212.559196489078, + "max_x": 5004.480477914251, + "max_y": 5212.559196489078, + "center": [ + 5003.701160100602, + 5212.559196489078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5004.480477914251, + 5212.559196489078 + ], + [ + 5002.921842286951, + 5212.559196489078 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55885F", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5004.647165869858, + "min_y": 5378.174665355435, + "max_x": 5016.741884454107, + "max_y": 5379.294546705828, + "center": [ + 5010.694525161983, + 5378.734606030632 + ] + }, + "raw_value": "IA-10900-25A-F1A-n", + "clean_value": "IA-10900-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558860", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5021.451740544311, + "min_y": 5291.244273084085, + "max_x": 5021.451740544311, + "max_y": 5303.941584001321, + "center": [ + 5021.451740544311, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.451740544311, + 5303.941584001321 + ], + [ + 5021.451740544311, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558861", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5017.718802709667, + "min_y": 5291.244273084085, + "max_x": 5017.718802709667, + "max_y": 5303.941584001321, + "center": [ + 5017.718802709667, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5017.718802709667, + 5303.941584001321 + ], + [ + 5017.718802709667, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558862", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5017.718802709667, + "min_y": 5303.941584001321, + "max_x": 5021.451740544311, + "max_y": 5303.941584001321, + "center": [ + 5019.585271626989, + 5303.941584001321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.451740544311, + 5303.941584001321 + ], + [ + 5017.718802709667, + 5303.941584001321 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558863", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5019.585271626989, + "min_y": 5289.377804166761, + "max_x": 5021.451740544311, + "max_y": 5291.244273084085, + "center": [ + 5020.51850608565, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.451740544311, + 5291.244273084085 + ], + [ + 5019.585271626989, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558864", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5017.718802709667, + "min_y": 5289.377804166761, + "max_x": 5019.585271626989, + "max_y": 5291.244273084085, + "center": [ + 5018.652037168328, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5017.718802709667, + 5291.244273084085 + ], + [ + 5019.585271626989, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558865", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4994.454376114605, + "min_y": 5291.244273084085, + "max_x": 4994.454376114605, + "max_y": 5303.941584001321, + "center": [ + 4994.454376114605, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.454376114605, + 5303.941584001321 + ], + [ + 4994.454376114605, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558866", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4990.721438279962, + "min_y": 5291.244273084085, + "max_x": 4990.721438279962, + "max_y": 5303.941584001321, + "center": [ + 4990.721438279962, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4990.721438279962, + 5303.941584001321 + ], + [ + 4990.721438279962, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558867", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4990.721438279962, + "min_y": 5303.941584001321, + "max_x": 4994.454376114605, + "max_y": 5303.941584001321, + "center": [ + 4992.587907197283, + 5303.941584001321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.454376114605, + 5303.941584001321 + ], + [ + 4990.721438279962, + 5303.941584001321 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558868", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.587907197282, + "min_y": 5289.377804166761, + "max_x": 4994.454376114605, + "max_y": 5291.244273084085, + "center": [ + 4993.521141655943, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.454376114605, + 5291.244273084085 + ], + [ + 4992.587907197282, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558869", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4990.721438279962, + "min_y": 5289.377804166761, + "max_x": 4992.587907197282, + "max_y": 5291.244273084085, + "center": [ + 4991.654672738622, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4990.721438279962, + 5291.244273084085 + ], + [ + 4992.587907197282, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5018.076486523948, + "min_y": 5350.070328508881, + "max_x": 5018.076486523948, + "max_y": 5361.807761978003, + "center": [ + 5018.076486523948, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5018.076486523948, + 5350.070328508881 + ], + [ + 5018.076486523948, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.343548689305, + "min_y": 5350.070328508881, + "max_x": 5014.343548689305, + "max_y": 5361.807761978003, + "center": [ + 5014.343548689305, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5014.343548689305, + 5350.070328508881 + ], + [ + 5014.343548689305, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5005.39878060895, + "min_y": 5350.070328508881, + "max_x": 5005.39878060895, + "max_y": 5361.807761978003, + "center": [ + 5005.39878060895, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.39878060895, + 5350.070328508881 + ], + [ + 5005.39878060895, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5001.665842774306, + "min_y": 5350.070328508881, + "max_x": 5001.665842774306, + "max_y": 5361.807761978003, + "center": [ + 5001.665842774306, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5001.665842774306, + 5350.070328508881 + ], + [ + 5001.665842774306, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.72107469395, + "min_y": 5350.070328508881, + "max_x": 4992.72107469395, + "max_y": 5361.807761978003, + "center": [ + 4992.72107469395, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.72107469395, + 5350.070328508881 + ], + [ + 4992.72107469395, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55886F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4988.988136859307, + "min_y": 5350.070328508881, + "max_x": 4988.988136859307, + "max_y": 5361.807761978003, + "center": [ + 4988.988136859307, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4988.988136859307, + 5350.070328508881 + ], + [ + 4988.988136859307, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558870", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4980.043368778952, + "min_y": 5350.070328508881, + "max_x": 4980.043368778952, + "max_y": 5361.807761978003, + "center": [ + 4980.043368778952, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.043368778952, + 5350.070328508881 + ], + [ + 4980.043368778952, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558871", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.310430944308, + "min_y": 5350.070328508881, + "max_x": 4976.310430944308, + "max_y": 5361.807761978003, + "center": [ + 4976.310430944308, + 5355.939045243442 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.310430944308, + 5350.070328508881 + ], + [ + 4976.310430944308, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558872", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5001.587028673852, + "min_y": 5303.941584001321, + "max_x": 5001.587028673852, + "max_y": 5323.119239493294, + "center": [ + 5001.587028673852, + 5313.530411747308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5001.587028673852, + 5323.119239493294 + ], + [ + 5001.587028673852, + 5303.941584001321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558873", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5010.58615015042, + "min_y": 5303.941584001321, + "max_x": 5010.58615015042, + "max_y": 5323.119239493294, + "center": [ + 5010.58615015042, + 5313.530411747308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5010.58615015042, + 5323.119239493294 + ], + [ + 5010.58615015042, + 5303.941584001321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558874", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4992.587907197282, + "min_y": 5303.941584001321, + "max_x": 4992.587907197282, + "max_y": 5323.119239493294, + "center": [ + 4992.587907197282, + 5313.530411747308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.587907197282, + 5323.119239493294 + ], + [ + 4992.587907197282, + 5303.941584001321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558875", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5019.585271626989, + "min_y": 5303.941584001321, + "max_x": 5019.585271626989, + "max_y": 5323.119239493294, + "center": [ + 5019.585271626989, + 5313.530411747308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5019.585271626989, + 5323.119239493294 + ], + [ + 5019.585271626989, + 5303.941584001321 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558876", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5003.453497591173, + "min_y": 5291.244273084085, + "max_x": 5003.453497591173, + "max_y": 5303.941584001321, + "center": [ + 5003.453497591173, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5003.453497591173, + 5303.941584001321 + ], + [ + 5003.453497591173, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558877", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4999.720559756529, + "min_y": 5291.244273084085, + "max_x": 4999.720559756529, + "max_y": 5303.941584001321, + "center": [ + 4999.720559756529, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4999.720559756529, + 5303.941584001321 + ], + [ + 4999.720559756529, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558878", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4999.720559756529, + "min_y": 5303.941584001321, + "max_x": 5003.453497591173, + "max_y": 5303.941584001321, + "center": [ + 5001.587028673851, + 5303.941584001321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5003.453497591173, + 5303.941584001321 + ], + [ + 4999.720559756529, + 5303.941584001321 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558879", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5001.587028673852, + "min_y": 5289.377804166761, + "max_x": 5003.453497591173, + "max_y": 5291.244273084085, + "center": [ + 5002.520263132512, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5003.453497591173, + 5291.244273084085 + ], + [ + 5001.587028673852, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4999.720559756529, + "min_y": 5289.377804166761, + "max_x": 5001.587028673852, + "max_y": 5291.244273084085, + "center": [ + 5000.65379421519, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4999.720559756529, + 5291.244273084085 + ], + [ + 5001.587028673852, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5012.452619067743, + "min_y": 5291.244273084085, + "max_x": 5012.452619067743, + "max_y": 5303.941584001321, + "center": [ + 5012.452619067743, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5012.452619067743, + 5303.941584001321 + ], + [ + 5012.452619067743, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5008.719681233099, + "min_y": 5291.244273084085, + "max_x": 5008.719681233099, + "max_y": 5303.941584001321, + "center": [ + 5008.719681233099, + 5297.592928542703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5008.719681233099, + 5303.941584001321 + ], + [ + 5008.719681233099, + 5291.244273084085 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5008.719681233099, + "min_y": 5303.941584001321, + "max_x": 5012.452619067743, + "max_y": 5303.941584001321, + "center": [ + 5010.586150150421, + 5303.941584001321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5012.452619067743, + 5303.941584001321 + ], + [ + 5008.719681233099, + 5303.941584001321 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5010.58615015042, + "min_y": 5289.377804166761, + "max_x": 5012.452619067743, + "max_y": 5291.244273084085, + "center": [ + 5011.5193846090815, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5012.452619067743, + 5291.244273084085 + ], + [ + 5010.58615015042, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55887F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5008.719681233099, + "min_y": 5289.377804166761, + "max_x": 5010.58615015042, + "max_y": 5291.244273084085, + "center": [ + 5009.6529156917595, + 5290.311038625423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5008.719681233099, + 5291.244273084085 + ], + [ + 5010.58615015042, + 5289.377804166761 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558880", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5016.210017606625, + "min_y": 5361.807761978003, + "max_x": 5016.210017606627, + "max_y": 5377.719666605188, + "center": [ + 5016.210017606626, + 5369.7637142915955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5016.210017606625, + 5377.719666605188 + ], + [ + 5016.210017606627, + 5361.807761978003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558881", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.343548689305, + "min_y": 5361.807761978003, + "max_x": 5018.076486523948, + "max_y": 5361.807761978003, + "center": [ + 5016.210017606627, + 5361.807761978003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5018.076486523948, + 5361.807761978003 + ], + [ + 5014.343548689305, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558882", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5016.210017606627, + "min_y": 5348.203859591556, + "max_x": 5018.076486523948, + "max_y": 5350.070328508881, + "center": [ + 5017.143252065287, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5018.076486523948, + 5350.070328508881 + ], + [ + 5016.210017606627, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558883", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5014.343548689305, + "min_y": 5348.203859591556, + "max_x": 5016.210017606627, + "max_y": 5350.070328508881, + "center": [ + 5015.276783147966, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5014.343548689305, + 5350.070328508881 + ], + [ + 5016.210017606627, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558884", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5003.532311691626, + "min_y": 5361.807761978003, + "max_x": 5003.532311691628, + "max_y": 5377.719666605188, + "center": [ + 5003.532311691627, + 5369.7637142915955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5003.532311691626, + 5377.719666605188 + ], + [ + 5003.532311691628, + 5361.807761978003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558885", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5001.665842774306, + "min_y": 5361.807761978003, + "max_x": 5005.39878060895, + "max_y": 5361.807761978003, + "center": [ + 5003.532311691628, + 5361.807761978003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.39878060895, + 5361.807761978003 + ], + [ + 5001.665842774306, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558886", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5003.532311691628, + "min_y": 5348.203859591556, + "max_x": 5005.39878060895, + "max_y": 5350.070328508881, + "center": [ + 5004.465546150289, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5005.39878060895, + 5350.070328508881 + ], + [ + 5003.532311691628, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558887", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5001.665842774306, + "min_y": 5348.203859591556, + "max_x": 5003.532311691628, + "max_y": 5350.070328508881, + "center": [ + 5002.599077232967, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5001.665842774306, + 5350.070328508881 + ], + [ + 5003.532311691628, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558888", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4990.854605776627, + "min_y": 5361.807761978003, + "max_x": 4990.854605776629, + "max_y": 5377.719666605188, + "center": [ + 4990.854605776628, + 5369.7637142915955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4990.854605776627, + 5377.719666605188 + ], + [ + 4990.854605776629, + 5361.807761978003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558889", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4988.988136859307, + "min_y": 5361.807761978003, + "max_x": 4992.72107469395, + "max_y": 5361.807761978003, + "center": [ + 4990.854605776629, + 5361.807761978003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.72107469395, + 5361.807761978003 + ], + [ + 4988.988136859307, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55888A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4990.854605776629, + "min_y": 5348.203859591556, + "max_x": 4992.72107469395, + "max_y": 5350.070328508881, + "center": [ + 4991.787840235289, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.72107469395, + 5350.070328508881 + ], + [ + 4990.854605776629, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55888B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4988.988136859307, + "min_y": 5348.203859591556, + "max_x": 4990.854605776629, + "max_y": 5350.070328508881, + "center": [ + 4989.921371317968, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4988.988136859307, + 5350.070328508881 + ], + [ + 4990.854605776629, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55888C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4978.176899861628, + "min_y": 5361.807761978003, + "max_x": 4978.17689986163, + "max_y": 5377.719666605188, + "center": [ + 4978.176899861629, + 5369.7637142915955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4978.176899861628, + 5377.719666605188 + ], + [ + 4978.17689986163, + 5361.807761978003 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55888D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.310430944308, + "min_y": 5361.807761978003, + "max_x": 4980.043368778952, + "max_y": 5361.807761978003, + "center": [ + 4978.17689986163, + 5361.807761978003 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.043368778952, + 5361.807761978003 + ], + [ + 4976.310430944308, + 5361.807761978003 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55888E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4978.17689986163, + "min_y": 5348.203859591556, + "max_x": 4980.043368778952, + "max_y": 5350.070328508881, + "center": [ + 4979.110134320291, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4980.043368778952, + 5350.070328508881 + ], + [ + 4978.17689986163, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55888F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.310430944308, + "min_y": 5348.203859591556, + "max_x": 4978.17689986163, + "max_y": 5350.070328508881, + "center": [ + 4977.243665402969, + 5349.137094050218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.310430944308, + 5350.070328508881 + ], + [ + 4978.17689986163, + 5348.203859591556 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558890", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4971.062349831227, + "min_y": 5377.719666605188, + "max_x": 5033.523983062266, + "max_y": 5377.71966660519, + "center": [ + 5002.293166446747, + 5377.719666605189 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5377.719666605188 + ], + [ + 4971.062349831227, + 5377.71966660519 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558891", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4970.107099368241, + "min_y": 5376.585451795468, + "max_x": 4970.107099368241, + "max_y": 5378.85388141492, + "center": [ + 4970.107099368241, + 5377.719666605193 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4970.107099368241, + 5378.85388141492 + ], + [ + 4970.107099368241, + 5376.585451795468 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558892", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4970.107099368241, + "min_y": 5378.85388141492, + "max_x": 4971.66573499554, + "max_y": 5378.85388141492, + "center": [ + 4970.8864171818905, + 5378.85388141492 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4970.107099368241, + 5378.85388141492 + ], + [ + 4971.66573499554, + 5378.85388141492 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558893", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4970.107099368241, + "min_y": 5376.585451795468, + "max_x": 4971.66573499554, + "max_y": 5376.585451795468, + "center": [ + 4970.8864171818905, + 5376.585451795468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4970.107099368241, + 5376.585451795468 + ], + [ + 4971.66573499554, + 5376.585451795468 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558894", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4971.062349831227, + "min_y": 5323.119239493296, + "max_x": 5033.523983062266, + "max_y": 5323.119239493297, + "center": [ + 5002.293166446747, + 5323.119239493297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5033.523983062266, + 5323.119239493296 + ], + [ + 4971.062349831227, + 5323.119239493297 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558895", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4969.795646516327, + "min_y": 5321.985024683574, + "max_x": 4969.795646516327, + "max_y": 5324.253454303028, + "center": [ + 4969.795646516327, + 5323.1192394933005 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4969.795646516327, + 5324.253454303028 + ], + [ + 4969.795646516327, + 5321.985024683574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558896", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4969.795646516327, + "min_y": 5324.253454303028, + "max_x": 4971.354282143628, + "max_y": 5324.253454303028, + "center": [ + 4970.574964329977, + 5324.253454303028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4969.795646516327, + 5324.253454303028 + ], + [ + 4971.354282143628, + 5324.253454303028 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558897", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4969.795646516327, + "min_y": 5321.985024683574, + "max_x": 4971.354282143628, + "max_y": 5321.985024683574, + "center": [ + 4970.574964329977, + 5321.985024683574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4969.795646516327, + 5321.985024683574 + ], + [ + 4971.354282143628, + 5321.985024683574 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558898", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4871.029925338746, + "min_y": 5216.571307862073, + "max_x": 4871.029925338746, + "max_y": 5219.273986079172, + "center": [ + 4871.029925338746, + 5217.922646970623 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.029925338746, + 5219.273986079172 + ], + [ + 4871.029925338746, + 5216.571307862073 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558899", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4870.178516114584, + "min_y": 5218.476020462916, + "max_x": 4871.881334562904, + "max_y": 5218.476020462916, + "center": [ + 4871.029925338744, + 5218.476020462916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.178516114584, + 5218.476020462916 + ], + [ + 4871.881334562904, + 5218.476020462916 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55889A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4871.029925338746, + "min_y": 5221.420924330526, + "max_x": 4871.029925338746, + "max_y": 5224.522287386799, + "center": [ + 4871.029925338746, + 5222.971605858662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.029925338746, + 5224.522287386799 + ], + [ + 4871.029925338746, + 5221.420924330526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55889B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.178516114584, + "min_y": 5220.001908956928, + "max_x": 4871.881334562904, + "max_y": 5220.001908956928, + "center": [ + 4871.029925338744, + 5220.001908956928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.178516114584, + 5220.001908956928 + ], + [ + 4871.881334562904, + 5220.001908956928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55889C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.190519616415, + "min_y": 5220.001908956928, + "max_x": 4871.869331061074, + "max_y": 5220.001908956928, + "center": [ + 4871.029925338745, + 5220.001908956928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.869331061074, + 5220.001908956928 + ], + [ + 4870.190519616415, + 5220.001908956928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55889D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.190519616415, + "min_y": 5219.273986079172, + "max_x": 4871.869331061074, + "max_y": 5219.273986079172, + "center": [ + 4871.029925338745, + 5219.273986079172 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.869331061074, + 5219.273986079172 + ], + [ + 4870.190519616415, + 5219.273986079172 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55889E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.178516114584, + "min_y": 5220.001908956928, + "max_x": 4871.029925338746, + "max_y": 5221.420924330526, + "center": [ + 4870.6042207266655, + 5220.711416643727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.178516114584, + 5220.001908956928 + ], + [ + 4871.029925338746, + 5221.420924330526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55889F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.374553584354, + "min_y": 5222.373621240968, + "max_x": 4871.685297093134, + "max_y": 5223.460608877569, + "center": [ + 4871.029925338744, + 5222.917115059268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.374553584354, + 5222.373621240968 + ], + [ + 4871.685297093134, + 5223.460608877569 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A0", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4871.029925338746, + "min_y": 5220.001908956928, + "max_x": 4871.881334562904, + "max_y": 5221.420924330526, + "center": [ + 4871.455629950825, + 5220.711416643727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.029925338746, + 5221.420924330526 + ], + [ + 4871.881334562904, + 5220.001908956928 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A1", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4871.029925338746, + "min_y": 5221.420924330526, + "max_x": 4872.448940712343, + "max_y": 5222.272333554686, + "center": [ + 4871.739433025545, + 5221.846628942606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.448940712343, + 5222.272333554686 + ], + [ + 4871.029925338746, + 5221.420924330526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A2", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4871.029925338746, + "min_y": 5220.569515106369, + "max_x": 4872.448940712343, + "max_y": 5221.420924330526, + "center": [ + 4871.739433025545, + 5220.9952197184475 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.029925338746, + 5221.420924330526 + ], + [ + 4872.448940712343, + 5220.569515106369 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A3", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4872.448940712343, + "min_y": 5220.569515106369, + "max_x": 4872.448940712343, + "max_y": 5222.272333554686, + "center": [ + 4872.448940712343, + 5221.420924330528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.448940712343, + 5222.272333554686 + ], + [ + 4872.448940712343, + 5220.569515106369 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A4", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4873.176863590097, + "min_y": 5220.569515106369, + "max_x": 4873.176863590097, + "max_y": 5222.272333554686, + "center": [ + 4873.176863590097, + 5221.420924330528 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.176863590097, + 5222.272333554686 + ], + [ + 4873.176863590097, + 5220.569515106369 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A5", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.374553584354, + "min_y": 5221.972367752847, + "max_x": 4871.685297093134, + "max_y": 5223.059355389448, + "center": [ + 4871.029925338744, + 5222.515861571148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.374553584354, + 5221.972367752847 + ], + [ + 4871.685297093134, + 5223.059355389448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A6", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4870.374553584354, + "min_y": 5221.571113610483, + "max_x": 4871.685297093134, + "max_y": 5222.658101247083, + "center": [ + 4871.029925338744, + 5222.114607428783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.374553584354, + 5221.571113610483 + ], + [ + 4871.685297093134, + 5222.658101247083 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4873.176863590097, + "min_y": 5221.420924330526, + "max_x": 4877.61189500248, + "max_y": 5221.420924330526, + "center": [ + 4875.394379296289, + 5221.420924330526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.176863590097, + 5221.420924330526 + ], + [ + 4877.61189500248, + 5221.420924330526 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588A8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4878.007525029656, + "min_y": 5221.89486683032, + "max_x": 4885.799099525018, + "max_y": 5223.075408420526, + "center": [ + 4881.903312277337, + 5222.485137625423 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5588A9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4879.663412907781, + "min_y": 5220.061759438429, + "max_x": 4883.913362632524, + "max_y": 5221.242301028636, + "center": [ + 4881.788387770152, + 5220.652030233532 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5588AA", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4872.566150743214, + "min_y": 5229.652582339427, + "max_x": 4887.497902081793, + "max_y": 5230.9591105815525, + "center": [ + 4880.032026412504, + 5230.305846460489 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-10902\\PSP : 0.99 MPa\\P20Ax20A", + "clean_value": ".9; PSV-10902 SP : 0.99 MPa Ax20A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588AE", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4912.831600578581, + "min_y": 5219.956414034789, + "max_x": 4914.401002697887, + "max_y": 5221.26424913421, + "center": [ + 4913.616301638234, + 5220.610331584499 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588AF", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4911.891294071139, + "min_y": 5217.862090571366, + "max_x": 4915.251294071139, + "max_y": 5218.982090571366, + "center": [ + 4913.571294071138, + 5218.422090571366 + ] + }, + "raw_value": "10952", + "clean_value": "10952", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588B0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4913.749490110979, + "min_y": 5210.0620319606, + "max_x": 4913.749490110979, + "max_y": 5211.844573356589, + "center": [ + 4913.749490110979, + 5210.953302658594 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.749490110979, + 5210.0620319606 + ], + [ + 4913.749490110979, + 5211.844573356589 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.749490110979, + "min_y": 5214.129232822735, + "max_x": 4913.749490110979, + "max_y": 5215.273982827369, + "center": [ + 4913.749490110979, + 5214.701607825052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.749490110979, + 5214.129232822735 + ], + [ + 4913.749490110979, + 5215.273982827369 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.749490110979, + "min_y": 5215.841139595221, + "max_x": 4913.749490110979, + "max_y": 5216.590869423449, + "center": [ + 4913.749490110979, + 5216.216004509335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.749490110979, + 5215.841139595221 + ], + [ + 4913.749490110979, + 5216.590869423449 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588B3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4913.426702385036, + "min_y": 5212.664115363712, + "max_x": 4914.072277836923, + "max_y": 5213.3096908155985, + "center": [ + 4913.749490110979, + 5212.986903089655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.749490110979, + 5212.986903089655 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588B4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5214.129232822735, + "max_x": 4914.253760597229, + "max_y": 5214.129232822735, + "center": [ + 4913.74949011098, + 5214.129232822735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.245219624732, + 5214.129232822735 + ], + [ + 4914.253760597229, + 5214.129232822735 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588B5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5211.844573356589, + "max_x": 4914.253760597229, + "max_y": 5211.844573356589, + "center": [ + 4913.74949011098, + 5211.844573356589 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.245219624732, + 5211.844573356589 + ], + [ + 4914.253760597229, + 5211.844573356589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588B6", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4910.848533850204, + "min_y": 5216.59084792826, + "max_x": 4916.661134292076, + "max_y": 5222.403448370132, + "center": [ + 4913.75483407114, + 5219.497148149196 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.75483407114, + 5219.497148149196 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588B7", + "entity_type": "ARC", + "layer": "0", + "bbox": { + "min_x": 4912.244354666719, + "min_y": 5212.675951350226, + "max_x": 4915.25462555524, + "max_y": 5215.686222238746, + "center": [ + 4913.749490110979, + 5214.181086794486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.749490110979, + 5214.181086794486 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588B8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.135811315045, + "min_y": 5215.841139595221, + "max_x": 4914.363168906919, + "max_y": 5215.841139595221, + "center": [ + 4913.749490110982, + 5215.841139595221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.135811315045, + 5215.841139595221 + ], + [ + 4914.363168906919, + 5215.841139595221 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588B9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4914.363168906919, + "min_y": 5215.269728986647, + "max_x": 4914.363168906919, + "max_y": 5215.841139595221, + "center": [ + 4914.363168906919, + 5215.5554342909345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4914.363168906919, + 5215.841139595221 + ], + [ + 4914.363168906919, + 5215.269728986647 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588BA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.135811315045, + "min_y": 5215.269728986647, + "max_x": 4914.363168906919, + "max_y": 5215.269728986647, + "center": [ + 4913.749490110982, + 5215.269728986647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4914.363168906919, + 5215.269728986647 + ], + [ + 4913.135811315045, + 5215.269728986647 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588BB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.135811315045, + "min_y": 5215.269728986647, + "max_x": 4913.135811315045, + "max_y": 5215.841139595221, + "center": [ + 4913.135811315045, + 5215.5554342909345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.135811315045, + 5215.269728986647 + ], + [ + 4913.135811315045, + 5215.841139595221 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588BC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5212.144685911694, + "max_x": 4913.583673513699, + "max_y": 5212.709961268896, + "center": [ + 4913.414446569215, + 5212.427323590295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.583673513699, + 5212.709961268896 + ], + [ + 4913.245219624732, + 5212.144685911694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588BD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5212.144685911694, + "max_x": 4914.253760597229, + "max_y": 5212.144685911694, + "center": [ + 4913.74949011098, + 5212.144685911694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.245219624732, + 5212.144685911694 + ], + [ + 4914.253760597229, + 5212.144685911694 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588BE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.915306708255, + "min_y": 5212.144685911694, + "max_x": 4914.253760597229, + "max_y": 5212.709961268896, + "center": [ + 4914.084533652742, + 5212.427323590295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4914.253760597229, + 5212.144685911694 + ], + [ + 4913.915306708255, + 5212.709961268896 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588BF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5213.263844910422, + "max_x": 4913.583673513706, + "max_y": 5213.829120267616, + "center": [ + 4913.414446569219, + 5213.546482589019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.583673513706, + 5213.263844910422 + ], + [ + 4913.245219624732, + 5213.829120267616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.245219624732, + "min_y": 5213.829120267616, + "max_x": 4914.253760597229, + "max_y": 5213.829120267616, + "center": [ + 4913.74949011098, + 5213.829120267616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.245219624732, + 5213.829120267616 + ], + [ + 4914.253760597229, + 5213.829120267616 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.915306708255, + "min_y": 5213.263844910422, + "max_x": 4914.253760597229, + "max_y": 5213.829120267616, + "center": [ + 4914.084533652742, + 5213.546482589019 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4914.253760597229, + 5213.829120267616 + ], + [ + 4913.915306708255, + 5213.263844910422 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C2", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 4916.230147776765, + "min_y": 5214.3376044625775, + "max_x": 4916.875723228652, + "max_y": 5214.983179914464, + "center": [ + 4916.552935502708, + 5214.660392188521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4916.552935502708, + 5214.660392188521 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4917.695265235787, + "min_y": 5214.156121702271, + "max_x": 4917.695265235787, + "max_y": 5215.164662674767, + "center": [ + 4917.695265235787, + 5214.660392188519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4917.695265235787, + 5215.164662674767 + ], + [ + 4917.695265235787, + 5214.156121702271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4915.410605769641, + "min_y": 5214.156121702271, + "max_x": 4915.410605769641, + "max_y": 5215.164662674767, + "center": [ + 4915.410605769641, + 5214.660392188519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4915.410605769641, + 5215.164662674767 + ], + [ + 4915.410605769641, + 5214.156121702271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4915.710718324746, + "min_y": 5214.826208785801, + "max_x": 4916.275993681949, + "max_y": 5215.164662674767, + "center": [ + 4915.993356003348, + 5214.995435730284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4916.275993681949, + 5214.826208785801 + ], + [ + 4915.710718324746, + 5215.164662674767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4915.710718324746, + "min_y": 5214.156121702271, + "max_x": 4915.710718324746, + "max_y": 5215.164662674767, + "center": [ + 4915.710718324746, + 5214.660392188519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4915.710718324746, + 5215.164662674767 + ], + [ + 4915.710718324746, + 5214.156121702271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4915.710718324746, + "min_y": 5214.156121702271, + "max_x": 4916.275993681949, + "max_y": 5214.494575591244, + "center": [ + 4915.993356003348, + 5214.325348646757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4915.710718324746, + 5214.156121702271 + ], + [ + 4916.275993681949, + 5214.494575591244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4916.829877323475, + "min_y": 5214.826208785794, + "max_x": 4917.39515268067, + "max_y": 5215.164662674767, + "center": [ + 4917.1125150020725, + 5214.99543573028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4916.829877323475, + 5214.826208785794 + ], + [ + 4917.39515268067, + 5215.164662674767 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588C9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4917.39515268067, + "min_y": 5214.156121702271, + "max_x": 4917.39515268067, + "max_y": 5215.164662674767, + "center": [ + 4917.39515268067, + 5214.660392188519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4917.39515268067, + 5215.164662674767 + ], + [ + 4917.39515268067, + 5214.156121702271 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588CA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4916.829877323475, + "min_y": 5214.156121702271, + "max_x": 4917.39515268067, + "max_y": 5214.494575591244, + "center": [ + 4917.1125150020725, + 5214.325348646757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4917.39515268067, + 5214.156121702271 + ], + [ + 4916.829877323475, + 5214.494575591244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588CB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4913.750598301298, + "min_y": 5214.720265265144, + "max_x": 4915.411750987974, + "max_y": 5214.720265265144, + "center": [ + 4914.581174644636, + 5214.720265265144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.750598301298, + 5214.720265265144 + ], + [ + 4915.411750987974, + 5214.720265265144 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4915.411750987974, + "min_y": 5214.456880656267, + "max_x": 4915.411750987974, + "max_y": 5214.801819465522, + "center": [ + 4915.411750987974, + 5214.6293500608945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4915.411750987974, + 5214.801819465522 + ], + [ + 4915.411750987974, + 5214.456880656267 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588CD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.543712491702, + "min_y": 5241.7392193882, + "max_x": 4825.543712491702, + "max_y": 5243.416631129742, + "center": [ + 4825.543712491702, + 5242.577925258971 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.543712491702, + 5243.416631129742 + ], + [ + 4825.543712491702, + 5241.7392193882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588CE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4777.905219031929, + "min_y": 5241.7392193882, + "max_x": 4825.543712491702, + "max_y": 5241.7392193882, + "center": [ + 4801.724465761816, + 5241.7392193882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.543712491702, + 5241.7392193882 + ], + [ + 4777.905219031929, + 5241.7392193882 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4777.905219031929, + "min_y": 5186.81596636516, + "max_x": 4777.905219031929, + "max_y": 5241.7392193882, + "center": [ + 4777.905219031929, + 5214.2775928766805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4777.905219031929, + 5241.7392193882 + ], + [ + 4777.905219031929, + 5186.81596636516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4777.905219031929, + "min_y": 5186.81596636516, + "max_x": 4840.209083717751, + "max_y": 5186.81596636516, + "center": [ + 4809.05715137484, + 5186.81596636516 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4777.905219031929, + 5186.81596636516 + ], + [ + 4840.209083717751, + 5186.81596636516 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4840.209083717751, + "min_y": 5182.502621886912, + "max_x": 4840.209083717751, + "max_y": 5186.81596636516, + "center": [ + 4840.209083717751, + 5184.659294126036 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4840.209083717751, + 5186.81596636516 + ], + [ + 4840.209083717751, + 5182.502621886912 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.109084731253, + "min_y": 5223.16487972874, + "max_x": 4821.109084731253, + "max_y": 5225.433309348193, + "center": [ + 4821.109084731253, + 5224.299094538466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.109084731253, + 5223.16487972874 + ], + [ + 4821.109084731253, + 5225.433309348193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4817.471906903102, + "min_y": 5223.16487972874, + "max_x": 4817.471906903102, + "max_y": 5225.433309348193, + "center": [ + 4817.471906903102, + 5224.299094538466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4817.471906903102, + 5223.16487972874 + ], + [ + 4817.471906903102, + 5225.433309348193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.869471818025, + "min_y": 5224.66018942338, + "max_x": 4821.109084731253, + "max_y": 5225.433309348193, + "center": [ + 4820.489278274639, + 5225.046749385787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.109084731253, + 5225.433309348193 + ], + [ + 4819.869471818025, + 5224.66018942338 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.869471818025, + "min_y": 5223.16487972874, + "max_x": 4821.109084731253, + "max_y": 5223.937999653554, + "center": [ + 4820.489278274639, + 5223.551439691147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.109084731253, + 5223.16487972874 + ], + [ + 4819.869471818025, + 5223.937999653554 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D6", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4818.608144935694, + "min_y": 5223.616743656983, + "max_x": 4819.972846698666, + "max_y": 5224.981445419955, + "center": [ + 4819.29049581718, + 5224.299094538469 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.29049581718, + 5224.299094538469 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4817.471906903102, + "min_y": 5224.66018942338, + "max_x": 4818.711519816334, + "max_y": 5225.433309348193, + "center": [ + 4818.091713359718, + 5225.046749385787 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4818.711519816334, + 5224.66018942338 + ], + [ + 4817.471906903102, + 5225.433309348193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4817.471906903102, + "min_y": 5223.16487972874, + "max_x": 4818.711519816334, + "max_y": 5223.937999653554, + "center": [ + 4818.091713359718, + 5223.551439691147 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4818.711519816334, + 5223.937999653554 + ], + [ + 4817.471906903102, + 5223.16487972874 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588D9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4816.725319336172, + "min_y": 5223.16487972874, + "max_x": 4816.725319336172, + "max_y": 5225.433309348193, + "center": [ + 4816.725319336172, + 5224.299094538466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4816.725319336172, + 5223.16487972874 + ], + [ + 4816.725319336172, + 5225.433309348193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.855672298183, + "min_y": 5223.16487972874, + "max_x": 4821.855672298183, + "max_y": 5225.433309348193, + "center": [ + 4821.855672298183, + 5224.299094538466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.855672298183, + 5223.16487972874 + ], + [ + 4821.855672298183, + 5225.433309348193 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4777.91778892221, + "min_y": 5224.400473199072, + "max_x": 4816.724038288052, + "max_y": 5224.400473199072, + "center": [ + 4797.320913605131, + 5224.400473199072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4777.91778892221, + 5224.400473199072 + ], + [ + 4816.724038288052, + 5224.400473199072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4821.853297462524, + "min_y": 5224.400473199072, + "max_x": 4826.151399825747, + "max_y": 5224.400473199072, + "center": [ + 4824.002348644135, + 5224.400473199072 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.853297462524, + 5224.400473199072 + ], + [ + 4826.151399825747, + 5224.400473199072 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5198.959189529588, + "max_x": 4832.934830874767, + "max_y": 5198.959189529588, + "center": [ + 4831.80061606504, + 5198.959189529588 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.666401255314, + 5198.959189529588 + ], + [ + 4832.934830874767, + 5198.959189529588 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5195.322011701435, + "max_x": 4832.934830874767, + "max_y": 5195.322011701435, + "center": [ + 4831.80061606504, + 5195.322011701435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.666401255314, + 5195.322011701435 + ], + [ + 4832.934830874767, + 5195.322011701435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588DF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.161710949955, + "min_y": 5197.719576616361, + "max_x": 4832.934830874767, + "max_y": 5198.959189529588, + "center": [ + 4832.548270912361, + 5198.339383072975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.934830874767, + 5198.959189529588 + ], + [ + 4832.161710949955, + 5197.719576616361 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5197.719576616361, + "max_x": 4831.439521180129, + "max_y": 5198.959189529588, + "center": [ + 4831.0529612177215, + 5198.339383072975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.666401255314, + 5198.959189529588 + ], + [ + 4831.439521180129, + 5197.719576616361 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E1", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4831.118265183558, + "min_y": 5196.458249734029, + "max_x": 4832.48296694653, + "max_y": 5197.822951497001, + "center": [ + 4831.800616065044, + 5197.140600615515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.800616065044, + 5197.140600615515 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4832.161710949955, + "min_y": 5195.322011701435, + "max_x": 4832.934830874767, + "max_y": 5196.56162461467, + "center": [ + 4832.548270912361, + 5195.941818158053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4832.161710949955, + 5196.56162461467 + ], + [ + 4832.934830874767, + 5195.322011701435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5195.322011701435, + "max_x": 4831.439521180129, + "max_y": 5196.56162461467, + "center": [ + 4831.0529612177215, + 5195.941818158053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.439521180129, + 5196.56162461467 + ], + [ + 4830.666401255314, + 5195.322011701435 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5194.575424134507, + "max_x": 4832.934830874767, + "max_y": 5194.575424134507, + "center": [ + 4831.80061606504, + 5194.575424134507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.666401255314, + 5194.575424134507 + ], + [ + 4832.934830874767, + 5194.575424134507 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4830.666401255314, + "min_y": 5199.705777096518, + "max_x": 4832.934830874767, + "max_y": 5199.705777096518, + "center": [ + 4831.80061606504, + 5199.705777096518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4830.666401255314, + 5199.705777096518 + ], + [ + 4832.934830874767, + 5199.705777096518 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4831.768757056948, + "min_y": 5199.696933624604, + "max_x": 4831.768757056948, + "max_y": 5202.650957046111, + "center": [ + 4831.768757056948, + 5201.1739453353575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.768757056948, + 5202.650957046111 + ], + [ + 4831.768757056948, + 5199.696933624604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4831.768757056948, + "min_y": 5186.878775059811, + "max_x": 4831.768757056948, + "max_y": 5194.56991046086, + "center": [ + 4831.768757056948, + 5190.724342760335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4831.768757056948, + 5194.56991046086 + ], + [ + 4831.768757056948, + 5186.878775059811 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4840.941932420951, + "min_y": 5183.931487461196, + "max_x": 4847.997184928429, + "max_y": 5185.238015703322, + "center": [ + 4844.46955867469, + 5184.584751582259 + ] + }, + "raw_value": "DRAIN OUT", + "clean_value": "DRAIN OUT", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5588E9", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 4997.3911617684935, + "min_y": 5200.049165400675, + "max_x": 4997.996329509688, + "max_y": 5200.654333141869, + "center": [ + 4997.693745639091, + 5200.351749271272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4997.693745639091, + 5200.351749271272 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5588EA", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4998.589828613127, + "min_y": 5200.244803088941, + "max_x": 4998.9917638506095, + "max_y": 5200.6431360963525, + "center": [ + 4998.790796231868, + 5200.443969592647 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5588EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4998.175485595257, + "min_y": 5199.615120837907, + "max_x": 4998.175485595257, + "max_y": 5199.73960218494, + "center": [ + 4998.175485595257, + 5199.677361511423 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4998.175485595257, + 5199.615120837907 + ], + [ + 4998.175485595257, + 5199.73960218494 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5588EF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4997.391161768494, + "min_y": 5200.009808009416, + "max_x": 4997.391161768494, + "max_y": 5200.693690533129, + "center": [ + 4997.391161768494, + 5200.351749271273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4997.391161768494, + 5200.693690533129 + ], + [ + 4997.391161768494, + 5200.351749271272 + ], + [ + 4997.391161768494, + 5200.009808009416 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5588F0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4997.996329509689, + "min_y": 5199.73960218494, + "max_x": 4999.125817500211, + "max_y": 5200.963896357605, + "center": [ + 4998.56107350495, + 5200.351749271273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4998.354641680823, + 5199.999473388753 + ], + [ + 4998.354641680823, + 5199.73960218494 + ], + [ + 4997.996329509689, + 5199.73960218494 + ], + [ + 4997.996329509689, + 5199.999473388753 + ], + [ + 4997.996329509689, + 5200.70402515379 + ], + [ + 4997.996329509689, + 5200.963896357605 + ], + [ + 4998.354641680823, + 5200.963896357605 + ], + [ + 4998.354641680823, + 5199.999473388753 + ], + [ + 4999.125817500211, + 5199.999473388753 + ], + [ + 4999.125817500211, + 5200.70402515379 + ], + [ + 4998.354641680823, + 5200.70402515379 + ], + [ + 4998.354641680823, + 5200.70402515379 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5588F1", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 4996.832049166531, + "min_y": 5200.077590056849, + "max_x": 5007.582910130308, + "max_y": 5201.570765190707, + "center": [ + 5002.207479648419, + 5200.824177623777 + ] + }, + "raw_value": "0.7->0.29MPa", + "clean_value": "0.7->0.29MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5588F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4993.752297731708, + "min_y": 5194.833535385459, + "max_x": 4994.829279246231, + "max_y": 5194.833535385459, + "center": [ + 4994.290788488969, + 5194.833535385459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.829279246231, + 5194.833535385459 + ], + [ + 4993.752297731708, + 5194.833535385459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.137558715978, + "min_y": 5194.639847068606, + "max_x": 4994.524935349684, + "max_y": 5195.027223702312, + "center": [ + 4994.331247032831, + 5194.833535385459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.137558715978, + 5194.639847068606 + ], + [ + 4994.524935349684, + 5195.027223702312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4993.943870399125, + "min_y": 5194.639847068606, + "max_x": 4994.331247032833, + "max_y": 5195.027223702312, + "center": [ + 4994.137558715979, + 5194.833535385459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.331247032833, + 5195.027223702312 + ], + [ + 4993.943870399125, + 5194.639847068606 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4993.750182082273, + "min_y": 5194.639847068606, + "max_x": 4994.137558715978, + "max_y": 5195.027223702312, + "center": [ + 4993.943870399125, + 5194.833535385459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4993.750182082273, + 5194.639847068606 + ], + [ + 4994.137558715978, + 5195.027223702312 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4993.750182082273, + "min_y": 5194.833535385459, + "max_x": 4994.829279246231, + "max_y": 5194.833535385459, + "center": [ + 4994.289730664252, + 5194.833535385459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.829279246231, + 5194.833535385459 + ], + [ + 4993.750182082273, + 5194.833535385459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.829279246231, + "min_y": 5194.44615875175, + "max_x": 4995.604032513642, + "max_y": 5194.833535385459, + "center": [ + 4995.216655879936, + 5194.6398470686045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.829279246231, + 5194.833535385459 + ], + [ + 4995.604032513642, + 5194.44615875175 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4995.604032513642, + "min_y": 5194.44615875175, + "max_x": 4995.604032513642, + "max_y": 5195.220912019166, + "center": [ + 4995.604032513642, + 5194.833535385458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.604032513642, + 5194.44615875175 + ], + [ + 4995.604032513642, + 5195.220912019166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.829279246231, + "min_y": 5194.833535385459, + "max_x": 4995.604032513642, + "max_y": 5195.220912019166, + "center": [ + 4995.216655879936, + 5195.027223702313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.604032513642, + 5195.220912019166 + ], + [ + 4994.829279246231, + 5194.833535385459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.441902612521, + "min_y": 5194.833535385459, + "max_x": 4994.829279246231, + "max_y": 5195.608288652872, + "center": [ + 4994.635590929376, + 5195.220912019166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.829279246231, + 5194.833535385459 + ], + [ + 4994.441902612521, + 5195.608288652872 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.441902612521, + "min_y": 5195.608288652872, + "max_x": 4995.216655879932, + "max_y": 5195.608288652872, + "center": [ + 4994.829279246226, + 5195.608288652872 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.441902612521, + 5195.608288652872 + ], + [ + 4995.216655879932, + 5195.608288652872 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.829279246231, + "min_y": 5194.833535385459, + "max_x": 4995.216655879932, + "max_y": 5195.608288652872, + "center": [ + 4995.022967563082, + 5195.220912019166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.216655879932, + 5195.608288652872 + ], + [ + 4994.829279246231, + 5194.833535385459 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4995.872071879106, + "min_y": 5194.44615875175, + "max_x": 4995.872071879106, + "max_y": 5195.220912019166, + "center": [ + 4995.872071879106, + 5194.833535385458 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.872071879106, + 5194.44615875175 + ], + [ + 4995.872071879106, + 5195.220912019166 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.441902612521, + "min_y": 5195.870691116331, + "max_x": 4995.216655879932, + "max_y": 5195.870691116331, + "center": [ + 4994.829279246226, + 5195.870691116331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.441902612521, + 5195.870691116331 + ], + [ + 4995.216655879932, + 5195.870691116331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5588FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4994.80612895055, + "min_y": 5195.883128638637, + "max_x": 4994.80612895055, + "max_y": 5197.679894890053, + "center": [ + 4994.80612895055, + 5196.781511764345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4994.80612895055, + 5195.883128638637 + ], + [ + 4994.80612895055, + 5197.679894890053 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "558900", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4995.873020424976, + "min_y": 5194.802852123851, + "max_x": 4998.175836412386, + "max_y": 5194.802852123851, + "center": [ + 4997.024428418681, + 5194.802852123851 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.873020424976, + 5194.802852123851 + ], + [ + 4998.175836412386, + 5194.802852123851 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "558901", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4990.715065203836, + "min_y": 5196.41403980956, + "max_x": 4996.15647909489, + "max_y": 5197.421709048644, + "center": [ + 4993.435772149363, + 5196.917874429102 + ] + }, + "raw_value": "PSV-10101", + "clean_value": "PSV-10101", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558902", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4992.010498025267, + "min_y": 5197.075088517791, + "max_x": 4996.24270882942, + "max_y": 5198.082757756875, + "center": [ + 4994.126603427343, + 5197.578923137333 + ] + }, + "raw_value": "15Ax15A", + "clean_value": "15Ax15A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558903", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4993.223036178981, + "min_y": 5195.991302617975, + "max_x": 4999.269051613484, + "max_y": 5196.998971857059, + "center": [ + 4996.246043896233, + 5196.495137237516 + ] + }, + "raw_value": "SP: 0.3MPa", + "clean_value": "SP: 0.3MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558904", + "entity_type": "CIRCLE", + "layer": "ECT-FITTINGS", + "bbox": { + "min_x": 5024.413654455476, + "min_y": 5200.120634676091, + "max_x": 5025.01882219667, + "max_y": 5200.725802417285, + "center": [ + 5024.716238326073, + 5200.423218546688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5024.716238326073, + 5200.423218546688 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "558905", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 5025.612321300108, + "min_y": 5200.316272364355, + "max_x": 5026.014256537591, + "max_y": 5200.714605371767, + "center": [ + 5025.813288918849, + 5200.515438868061 + ] + }, + "raw_value": "R", + "clean_value": "R", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "558909", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5025.197978282238, + "min_y": 5199.686590113322, + "max_x": 5025.197978282238, + "max_y": 5199.811071460355, + "center": [ + 5025.197978282238, + 5199.748830786839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5025.197978282238, + 5199.686590113322 + ], + [ + 5025.197978282238, + 5199.811071460355 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55890A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5024.413654455475, + "min_y": 5200.08127728483, + "max_x": 5024.413654455475, + "max_y": 5200.765159808543, + "center": [ + 5024.413654455475, + 5200.423218546686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5024.413654455475, + 5200.765159808543 + ], + [ + 5024.413654455475, + 5200.423218546688 + ], + [ + 5024.413654455475, + 5200.08127728483 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55890B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5025.01882219667, + "min_y": 5199.811071460355, + "max_x": 5026.148310187193, + "max_y": 5201.03536563302, + "center": [ + 5025.583566191932, + 5200.423218546688 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5025.377134367805, + 5200.070942664167 + ], + [ + 5025.377134367805, + 5199.811071460355 + ], + [ + 5025.01882219667, + 5199.811071460355 + ], + [ + 5025.01882219667, + 5200.070942664167 + ], + [ + 5025.01882219667, + 5200.775494429204 + ], + [ + 5025.01882219667, + 5201.03536563302 + ], + [ + 5025.377134367805, + 5201.03536563302 + ], + [ + 5025.377134367805, + 5200.070942664167 + ], + [ + 5026.148310187193, + 5200.070942664167 + ], + [ + 5026.148310187193, + 5200.775494429204 + ], + [ + 5025.377134367805, + 5200.775494429204 + ], + [ + 5025.377134367805, + 5200.775494429204 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55890C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 5023.854541853513, + "min_y": 5201.234430522022, + "max_x": 5034.60540281729, + "max_y": 5202.72760565588, + "center": [ + 5029.229972335402, + 5201.981018088951 + ] + }, + "raw_value": "0.7->0.29MPa", + "clean_value": "0.7->0.29MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55890D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5020.774790418689, + "min_y": 5194.623959900114, + "max_x": 5021.851771933212, + "max_y": 5194.623959900114, + "center": [ + 5021.313281175951, + 5194.623959900114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.851771933212, + 5194.623959900114 + ], + [ + 5020.774790418689, + 5194.623959900114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55890E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.16005140296, + "min_y": 5194.712191094957, + "max_x": 5021.547428036665, + "max_y": 5195.099567728663, + "center": [ + 5021.353739719812, + 5194.90587941181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.16005140296, + 5194.712191094957 + ], + [ + 5021.547428036665, + 5195.099567728663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55890F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5020.966363086107, + "min_y": 5194.712191094957, + "max_x": 5021.353739719814, + "max_y": 5195.099567728663, + "center": [ + 5021.160051402961, + 5194.90587941181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.353739719814, + 5195.099567728663 + ], + [ + 5020.966363086107, + 5194.712191094957 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558910", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5020.772674769254, + "min_y": 5194.712191094957, + "max_x": 5021.16005140296, + "max_y": 5195.099567728663, + "center": [ + 5020.966363086107, + 5194.90587941181 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5020.772674769254, + 5194.712191094957 + ], + [ + 5021.16005140296, + 5195.099567728663 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558911", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5020.772674769254, + "min_y": 5194.623959900114, + "max_x": 5021.851771933212, + "max_y": 5194.623959900114, + "center": [ + 5021.312223351233, + 5194.623959900114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.851771933212, + 5194.623959900114 + ], + [ + 5020.772674769254, + 5194.623959900114 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558912", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.851771933212, + "min_y": 5194.518502778101, + "max_x": 5022.626525200624, + "max_y": 5194.90587941181, + "center": [ + 5022.239148566918, + 5194.712191094955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.851771933212, + 5194.90587941181 + ], + [ + 5022.626525200624, + 5194.518502778101 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558913", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5022.626525200624, + "min_y": 5194.518502778101, + "max_x": 5022.626525200624, + "max_y": 5195.293256045517, + "center": [ + 5022.626525200624, + 5194.905879411809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.626525200624, + 5194.518502778101 + ], + [ + 5022.626525200624, + 5195.293256045517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558914", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.851771933212, + "min_y": 5194.90587941181, + "max_x": 5022.626525200624, + "max_y": 5195.293256045517, + "center": [ + 5022.239148566918, + 5195.099567728664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.626525200624, + 5195.293256045517 + ], + [ + 5021.851771933212, + 5194.90587941181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558915", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.464395299503, + "min_y": 5194.90587941181, + "max_x": 5021.851771933212, + "max_y": 5195.680632679223, + "center": [ + 5021.6580836163575, + 5195.2932560455165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.851771933212, + 5194.90587941181 + ], + [ + 5021.464395299503, + 5195.680632679223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558916", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.464395299503, + "min_y": 5195.680632679223, + "max_x": 5022.239148566914, + "max_y": 5195.680632679223, + "center": [ + 5021.8517719332085, + 5195.680632679223 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.464395299503, + 5195.680632679223 + ], + [ + 5022.239148566914, + 5195.680632679223 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558917", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.851771933212, + "min_y": 5194.90587941181, + "max_x": 5022.239148566914, + "max_y": 5195.680632679223, + "center": [ + 5022.045460250063, + 5195.2932560455165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.239148566914, + 5195.680632679223 + ], + [ + 5021.851771933212, + 5194.90587941181 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558918", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5022.894564566088, + "min_y": 5194.518502778101, + "max_x": 5022.894564566088, + "max_y": 5195.293256045517, + "center": [ + 5022.894564566088, + 5194.905879411809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.894564566088, + 5194.518502778101 + ], + [ + 5022.894564566088, + 5195.293256045517 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558919", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.464395299503, + "min_y": 5195.943035142682, + "max_x": 5022.239148566914, + "max_y": 5195.943035142682, + "center": [ + 5021.8517719332085, + 5195.943035142682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.464395299503, + 5195.943035142682 + ], + [ + 5022.239148566914, + 5195.943035142682 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "55891A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5021.828621637531, + "min_y": 5195.955472664987, + "max_x": 5021.828621637531, + "max_y": 5197.752238916404, + "center": [ + 5021.828621637531, + 5196.853855790696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5021.828621637531, + 5195.955472664987 + ], + [ + 5021.828621637531, + 5197.752238916404 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55891B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5022.895513111958, + "min_y": 5194.875196150202, + "max_x": 5025.198329099367, + "max_y": 5194.875196150202, + "center": [ + 5024.0469211056625, + 5194.875196150202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.895513111958, + 5194.875196150202 + ], + [ + 5025.198329099367, + 5194.875196150202 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "55891C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5019.371895143343, + "min_y": 5197.903825848019, + "max_x": 5023.604105947496, + "max_y": 5198.911495087103, + "center": [ + 5021.48800054542, + 5198.407660467561 + ] + }, + "raw_value": "15Ax15A", + "clean_value": "15Ax15A", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55891D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5018.100968559092, + "min_y": 5197.181640597107, + "max_x": 5023.542382450145, + "max_y": 5198.189309836191, + "center": [ + 5020.821675504618, + 5197.685475216649 + ] + }, + "raw_value": "PSV-10201", + "clean_value": "PSV-10201", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55891E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5020.608939534238, + "min_y": 5196.758903405521, + "max_x": 5026.654954968742, + "max_y": 5197.766572644605, + "center": [ + 5023.63194725149, + 5197.262738025063 + ] + }, + "raw_value": "SP: 0.3MPa", + "clean_value": "SP: 0.3MPa", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "55892E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.11208765858, + "min_y": 5191.507516099801, + "max_x": 5094.711494410547, + "max_y": 5192.440750558462, + "center": [ + 5091.911791034563, + 5191.974133329131 + ] + }, + "raw_value": "2025.06.17", + "clean_value": "2025.06.17", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55892F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5106.709005838614, + "min_y": 5191.631865722561, + "max_x": 5111.188531240187, + "max_y": 5192.565100181222, + "center": [ + 5108.948768539401, + 5192.098482951891 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558935", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.070712700728, + "min_y": 5194.720169541497, + "max_x": 5094.670119452695, + "max_y": 5195.653404000158, + "center": [ + 5091.870416076712, + 5195.186786770828 + ] + }, + "raw_value": "2025.06.19", + "clean_value": "2025.06.19", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558936", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5106.655249985001, + "min_y": 5194.9406063413, + "max_x": 5111.134775386575, + "max_y": 5195.873840799961, + "center": [ + 5108.895012685788, + 5195.40722357063 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558945", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4850.184232017409, + "min_y": 5425.814026235023, + "max_x": 4881.914203611889, + "max_y": 5427.614026235024, + "center": [ + 4866.049217814649, + 5426.714026235024 + ] + }, + "raw_value": "\\L\\W0.9;KF-10901A\\PINSTRUMENT AIR FILTER\\P", + "clean_value": ".9;KF-10901A INSTRUMENT AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558949", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4803.440170000119, + "min_y": 5389.397530078167, + "max_x": 4836.718439793563, + "max_y": 5391.197530078167, + "center": [ + 4820.079304896841, + 5390.297530078167 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : ID254.6 x 1,314H\\PVOLUME : 0.14m3\\PDP/OP : 0.97Mpa / 0.7Mpa\\PDT/OT : 250}%%DC {\\A1;/ 180}%%DC\\A1;\\PMATERIAL : SPP", + "clean_value": ".9; SIZE : ID254.6 x 1,314H VOLUME : 0.14m3 DP/OP : 0.97Mpa / 0.7Mpa DT/OT : 250 %%DC / 180 %%DC MATERIAL : SPP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "55894D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4803.721678763568, + "min_y": 5397.677423786291, + "max_x": 4835.451650358048, + "max_y": 5399.477423786291, + "center": [ + 4819.586664560808, + 5398.577423786292 + ] + }, + "raw_value": "\\L\\W0.9;KR-10901A/B\\PDESICCANT AIR DRYER", + "clean_value": ".9;KR-10901A/B DESICCANT AIR DRYER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558951", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4771.468346214811, + "min_y": 5397.270642820547, + "max_x": 4803.198317809291, + "max_y": 5399.070642820548, + "center": [ + 4787.333332012051, + 5398.170642820547 + ] + }, + "raw_value": "\\L\\W0.9;KF-10901B\\PINSTRUMENT AIR FILTER", + "clean_value": ".9;KF-10901B INSTRUMENT AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558955", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4814.776608351114, + "min_y": 5418.173876346205, + "max_x": 4846.506579945594, + "max_y": 5419.9738763462055, + "center": [ + 4830.641594148354, + 5419.073876346205 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : W740 x D350 x H640\\PVOLUME : 5.1m3/min\\PDP/OP : 0.98Mpa / 0.7Mpa\\PDT/OT : 100}%%DC {\\A1;/ 50}%%DC\\A1;\\PMATERIAL : SS275", + "clean_value": ".9; SIZE : W740 x D350 x H640 VOLUME : 5.1m3/min DP/OP : 0.98Mpa / 0.7Mpa DT/OT : 100 %%DC / 50 %%DC MATERIAL : SS275", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558959", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4819.297765064717, + "min_y": 5425.633804166816, + "max_x": 4851.027736659197, + "max_y": 5427.433804166816, + "center": [ + 4835.162750861957, + 5426.5338041668165 + ] + }, + "raw_value": "\\L\\W0.9;KA-10901\\PAFTER COOLER", + "clean_value": ".9;KA-10901 AFTER COOLER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55895D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4777.155613058017, + "min_y": 5417.576204782601, + "max_x": 4808.885584652497, + "max_y": 5419.376204782601, + "center": [ + 4793.020598855257, + 5418.476204782601 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : %%C648 x 1,259H\\PVOLUME : 0.5m3\\PDP/OP : 0.98MPa / 0.88MPa\\PDT/OT : 80}%%DC {\\A1;/ 50}%%DC\\A1;\\PMATERIAL : SS400", + "clean_value": ".9; SIZE : %%C648 x 1,259H VOLUME : 0.5m3 DP/OP : 0.98MPa / 0.88MPa DT/OT : 80 %%DC / 50 %%DC MATERIAL : SS400", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558961", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4776.714134926906, + "min_y": 5425.505282599153, + "max_x": 4814.14452649776, + "max_y": 5427.3052825991535, + "center": [ + 4795.4293307123335, + 5426.405282599153 + ] + }, + "raw_value": "\\L\\W0.9;D-10901\\PINSTRUMENT AIR RECEIVER TANK", + "clean_value": ".9;D-10901 INSTRUMENT AIR RECEIVER TANK", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558965", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4738.631158928367, + "min_y": 5389.558035874769, + "max_x": 4770.361130522847, + "max_y": 5391.3580358747695, + "center": [ + 4754.496144725606, + 5390.45803587477 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : W641 x D785 x H254\\PVOLUME : 2.6m3/min\\PDP/OP : 0.98Mpa / 0.7Mpa\\PDT/OT : 100}%%DC {\\A1;/ 50}%%DC\\A1;\\PMATERIAL : SS275", + "clean_value": ".9; SIZE : W641 x D785 x H254 VOLUME : 2.6m3/min DP/OP : 0.98Mpa / 0.7Mpa DT/OT : 100 %%DC / 50 %%DC MATERIAL : SS275", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558969", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4738.912667691815, + "min_y": 5397.41566643772, + "max_x": 4770.642639286295, + "max_y": 5399.21566643772, + "center": [ + 4754.7776534890545, + 5398.31566643772 + ] + }, + "raw_value": "\\L\\W0.9;KD-10901\\PREFRIGERANT AIR DRYER", + "clean_value": ".9;KD-10901 REFRIGERANT AIR DRYER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55896D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4835.994140404276, + "min_y": 5397.890752615799, + "max_x": 4867.724111998756, + "max_y": 5399.690752615799, + "center": [ + 4851.859126201516, + 5398.7907526158 + ] + }, + "raw_value": "\\L\\W0.9;F-10952\\PINSTRUMENT AIR FILTER", + "clean_value": ".9;F-10952 INSTRUMENT AIR FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "558971", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4738.110606132674, + "min_y": 5425.164410270654, + "max_x": 4775.4646985565805, + "max_y": 5426.964410270654, + "center": [ + 4756.787652344627, + 5426.064410270654 + ] + }, + "raw_value": "\\L\\W0.9;K-10901\\PINSTRUMENT AIR COMPRESSOR", + "clean_value": ".9;K-10901 INSTRUMENT AIR COMPRESSOR", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "55898F", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4738.083483513906, + "min_y": 5416.309061712093, + "max_x": 4773.657511850922, + "max_y": 5418.1090617120935, + "center": [ + 4755.870497682414, + 5417.209061712094 + ] + }, + "raw_value": "\\W0.9;\\A1;SIZE : W1,000 x D1,400 x H1,350\\PPRESSURE : 0.85MPa\\PCAPACITY : 2.2m3/min\\PPOWER : 15kW", + "clean_value": ".9; SIZE : W1,000 x D1,400 x H1,350 PRESSURE : 0.85MPa CAPACITY : 2.2m3/min POWER : 15kW", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558993", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4837.120688046439, + "min_y": 5313.744329020115, + "max_x": 4855.520662616523, + "max_y": 5315.054329020116, + "center": [ + 4846.320675331481, + 5314.399329020116 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-10900\\PSP : 0.93 MPa\\P8Ax8A\\P", + "clean_value": ".9; PSV-10900 SP : 0.93 MPa Ax8A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55899B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.237780660338, + "min_y": 5198.087508190838, + "max_x": 5094.837187412305, + "max_y": 5199.020742649499, + "center": [ + 5092.037484036322, + 5198.554125420169 + ] + }, + "raw_value": "2025.07.01", + "clean_value": "2025.07.01", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55899C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5106.623660415472, + "min_y": 5198.155179972701, + "max_x": 5111.103185817045, + "max_y": 5199.088414431362, + "center": [ + 5108.863423116259, + 5198.621797202031 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "55899D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4771.427176844567, + "min_y": 5389.42763718987, + "max_x": 4803.157148439047, + "max_y": 5391.227637189871, + "center": [ + 4787.2921626418065, + 5390.32763718987 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : ID105 x 433H\\PVOLUME : 3.4m3/min\\PDP/OP : 0.99Mpa / 0.7Mpa\\PDT/OT : 60}%%DC {\\A1;/ 38}%%DC\\A1;\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : ID105 x 433H VOLUME : 3.4m3/min DP/OP : 0.99Mpa / 0.7Mpa DT/OT : 60 %%DC / 38 %%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589A1", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4835.694400373953, + "min_y": 5389.079371029957, + "max_x": 4867.424371968433, + "max_y": 5390.879371029957, + "center": [ + 4851.559386171193, + 5389.979371029956 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : ID105 x 433H\\PVOLUME : 5.0m3/min\\PDP/OP : 0.99Mpa / 0.7Mpa\\PDT/OT : 60}%%DC {\\A1;/ 38}%%DC\\A1;\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : ID105 x 433H VOLUME : 5.0m3/min DP/OP : 0.99Mpa / 0.7Mpa DT/OT : 60 %%DC / 38 %%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589A5", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4849.745037160154, + "min_y": 5418.411412267291, + "max_x": 4881.4750087546345, + "max_y": 5420.211412267291, + "center": [ + 4865.610022957395, + 5419.3114122672905 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : ID105 x 433H\\PVOLUME : 5.0m3/min\\PDP/OP : 0.99Mpa / 0.7Mpa\\PDT/OT : 60}%%DC {\\A1;/ 38}%%DC\\A1;\\PMATERIAL : STS304", + "clean_value": ".9; SIZE : ID105 x 433H VOLUME : 5.0m3/min DP/OP : 0.99Mpa / 0.7Mpa DT/OT : 60 %%DC / 38 %%DC MATERIAL : STS304", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589A9", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.254384947264, + "min_y": 5201.54967789644, + "max_x": 5094.853791699231, + "max_y": 5202.482912355101, + "center": [ + 5092.054088323248, + 5202.01629512577 + ] + }, + "raw_value": "2025.07.07", + "clean_value": "2025.07.07", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5589AA", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5106.399632996389, + "min_y": 5201.746986010707, + "max_x": 5110.879158397963, + "max_y": 5202.680220469368, + "center": [ + 5108.639395697176, + 5202.213603240038 + ] + }, + "raw_value": "REVISION", + "clean_value": "REVISION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5589AB", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2845.119954338514, + "min_y": 4876.032437577843, + "max_x": 2871.250519181027, + "max_y": 4877.832437577843, + "center": [ + 2858.1852367597703, + 4876.932437577843 + ] + }, + "raw_value": "\\pi7.73599;{\\W0.9;\\LSC-10128\\P\\pi7.11173;\\lSCRUBBER}", + "clean_value": "\\pi7.73599; .9; SC-10128 \\pi7.11173;\\lSCRUBBER", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589AF", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2847.162268640404, + "min_y": 4868.263293618587, + "max_x": 2887.912259007326, + "max_y": 4870.0632936185875, + "center": [ + 2867.537263823865, + 4869.163293618587 + ] + }, + "raw_value": "\\W0.9;SIZE : %%C750 x 3,641L (30m3/min)\\PDP/OP : F.W / ATM\\PDT/OT : 60 %%DC / 30 %%DC \\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9;SIZE : %%C750 x 3,641L (30m3/min) DP/OP : F.W / ATM DT/OT : 60 %%DC / 30 %%DC MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589B3", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2847.058370112451, + "min_y": 4849.882317285921, + "max_x": 2867.589528202997, + "max_y": 4851.682317285921, + "center": [ + 2857.323949157724, + 4850.782317285921 + ] + }, + "raw_value": "\\pi3.78668;{\\W0.9;\\LP-10128A/B\\P\\pi0.77308;SCRUBBER PUMP}", + "clean_value": "\\pi3.78668; .9; P-10128A/B \\pi0.77308;SCRUBBER PUMP", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589B7", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2848.440708606707, + "min_y": 4842.207488594331, + "max_x": 2872.766430637727, + "max_y": 4844.007488594331, + "center": [ + 2860.603569622217, + 4843.107488594331 + ] + }, + "raw_value": "\\W0.9;{\\A1;CAPA : 100L/min\\PSIZE : 50A/40A}\\PMATERIAL : STS316\\PPRESSURE : 0.2MPa\\PRPM: 3,600", + "clean_value": ".9; CAPA : 100L/min SIZE : 50A/40A MATERIAL : STS316 PRESSURE : 0.2MPa RPM: 3,600", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589BB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2852.911245812326, + "min_y": 4864.865725461753, + "max_x": 2884.166757286649, + "max_y": 4868.665787647081, + "center": [ + 2868.5390015494877, + 4866.765756554417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2852.911245812326, + 4868.665787647081 + ], + [ + 2854.911245812326, + 4868.665787647081 + ], + [ + 2856.911245812326, + 4868.665787647081 + ], + [ + 2858.911245812326, + 4868.665787647081 + ], + [ + 2860.911245812326, + 4868.665787647081 + ], + [ + 2862.911245812326, + 4868.665787647081 + ], + [ + 2864.911245812326, + 4868.665787647081 + ], + [ + 2866.911245812326, + 4868.665787647081 + ], + [ + 2868.911245812326, + 4868.665787647081 + ], + [ + 2870.911245812326, + 4868.665787647081 + ], + [ + 2872.911245812326, + 4868.665787647081 + ], + [ + 2874.911245812326, + 4868.665787647081 + ], + [ + 2876.911245812326, + 4868.665787647081 + ], + [ + 2878.911245812326, + 4868.665787647081 + ], + [ + 2880.911245812326, + 4868.665787647081 + ], + [ + 2882.911245812326, + 4868.665787647081 + ], + [ + 2884.166757286649, + 4867.921299121404 + ], + [ + 2884.166757286649, + 4865.921299121403 + ], + [ + 2883.2223309463, + 4864.865725461753 + ], + [ + 2881.222330946299, + 4864.865725461753 + ], + [ + 2879.2223309463, + 4864.865725461753 + ], + [ + 2877.222330946299, + 4864.865725461753 + ], + [ + 2875.2223309463, + 4864.865725461753 + ], + [ + 2873.2223309463, + 4864.865725461753 + ], + [ + 2871.222330946299, + 4864.865725461753 + ], + [ + 2869.222330946299, + 4864.865725461753 + ], + [ + 2867.222330946299, + 4864.865725461753 + ], + [ + 2865.222330946299, + 4864.865725461753 + ], + [ + 2863.2223309463, + 4864.865725461753 + ], + [ + 2861.222330946299, + 4864.865725461753 + ], + [ + 2859.2223309463, + 4864.865725461753 + ], + [ + 2857.2223309463, + 4864.865725461753 + ], + [ + 2855.222330946299, + 4864.865725461753 + ], + [ + 2853.222330946299, + 4864.865725461753 + ], + [ + 2852.911245812326, + 4866.554640327779 + ], + [ + 2852.911245812326, + 4868.554640327779 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5589BC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2880.665059358841, + "min_y": 4869.609865596249, + "max_x": 2883.404159064326, + "max_y": 4871.981995524698, + "center": [ + 2882.0346092115833, + 4870.795930560473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2883.404159064326, + 4869.609865596249 + ], + [ + 2882.034609211583, + 4871.981995524698 + ], + [ + 2880.665059358841, + 4869.609865596249 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5589BD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2881.749371799211, + "min_y": 4870.030960337949, + "max_x": 2882.349371799211, + "max_y": 4871.030960337949, + "center": [ + 2882.0493717992113, + 4870.530960337949 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "5589BE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2169.770905346766, + "min_y": 5228.989767242706, + "max_x": 2177.655381223472, + "max_y": 5228.989783762682, + "center": [ + 2173.7131432851193, + 5228.989775502694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2177.655381223472, + 5228.989783762682 + ], + [ + 2169.770905346766, + 5228.989767242706 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589C2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.744908868071, + "min_y": 5351.492737834548, + "max_x": 1831.817087722598, + "max_y": 5351.711547027967, + "center": [ + 1831.2809982953345, + 5351.602142431258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.744908868071, + 5351.711547027967 + ], + [ + 1831.817087722598, + 5351.492737834548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589C3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.744908868071, + "min_y": 5350.398691867429, + "max_x": 1831.817087722598, + "max_y": 5350.617501060855, + "center": [ + 1831.2809982953345, + 5350.508096464142 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.744908868071, + 5350.398691867429 + ], + [ + 1831.817087722598, + 5350.617501060855 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589C4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1831.817087722598, + "min_y": 5350.617501060855, + "max_x": 1831.817087722598, + "max_y": 5351.492737834548, + "center": [ + 1831.817087722598, + 5351.055119447701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.817087722598, + 5350.617501060855 + ], + [ + 1831.817087722598, + 5351.492737834548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589C5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1830.744908868071, + "min_y": 5350.398691867429, + "max_x": 1830.744908868071, + "max_y": 5351.711547027967, + "center": [ + 1830.744908868071, + 5351.0551194476975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1830.744908868071, + 5350.398691867429 + ], + [ + 1830.744908868071, + 5351.711547027967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589C6", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1831.94769591749, + "min_y": 5347.773575334603, + "max_x": 1836.6511975891422, + "max_y": 5348.893456684997, + "center": [ + 1834.299446753316, + 5348.3335160097995 + ] + }, + "raw_value": "80Ax65A", + "clean_value": "80Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5589C7", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1831.817087722598, + "min_y": 5351.063091269192, + "max_x": 1847.8481971814, + "max_y": 5351.063091269208, + "center": [ + 1839.8326424519992, + 5351.0630912691995 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1831.817087722598, + 5351.063091269208 + ], + [ + 1847.8481971814, + 5351.063091269192 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589C9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3318.430449860462, + "min_y": 5389.26694870859, + "max_x": 3328.147406666935, + "max_y": 5390.886441509669, + "center": [ + 3323.2889282636984, + 5390.076695109129 + ] + }, + "raw_value": "%%UE-10217", + "clean_value": "E-10217", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589CA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 3322.262483248493, + "min_y": 5382.519730030352, + "max_x": 3340.7247011807913, + "max_y": 5384.139222831431, + "center": [ + 3331.4935922146424, + 5383.329476430891 + ] + }, + "raw_value": "Double Jacket Pipe3", + "clean_value": "Double Jacket Pipe3", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589CB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 3314.693114758655, + "min_y": 5381.125628669085, + "max_x": 3324.406164893721, + "max_y": 5404.840608219632, + "center": [ + 3319.549639826188, + 5392.983118444358 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.693114758655, + 5404.840608219632 + ], + [ + 3324.406164893721, + 5404.840608219632 + ], + [ + 3324.406164893721, + 5381.125628669085 + ], + [ + 3314.693114758655, + 5381.125628669085 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5589CC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5385.342138477477, + "max_x": 3314.693114758655, + "max_y": 5385.342138477477, + "center": [ + 3301.2674226099125, + 5385.342138477477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5385.342138477477 + ], + [ + 3314.693114758655, + 5385.342138477477 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5589CE", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.303719196405, + "min_y": 5386.518622000506, + "max_x": 3307.3259157223847, + "max_y": 5388.011797134364, + "center": [ + 3298.814817459395, + 5387.265209567435 + ] + }, + "raw_value": "CWS-10619-25A-S2A-N", + "clean_value": "CWS-10619-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5589CF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5400.912912589577, + "max_x": 3314.693114758655, + "max_y": 5400.912912589577, + "center": [ + 3301.2674226099125, + 5400.912912589577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3314.693114758655, + 5400.912912589577 + ], + [ + 3287.84173046117, + 5400.912912589577 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5589D0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5400.904095931814, + "max_x": 3285.717616982289, + "max_y": 5400.904095931814, + "center": [ + 3283.441175434523, + 5400.904095931814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3285.717616982289, + 5400.904095931814 + ], + [ + 3281.164733886757, + 5400.904095931814 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "5589D2", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 3290.231025295204, + "min_y": 5402.102055129375, + "max_x": 3307.2532218211836, + "max_y": 5403.595230263233, + "center": [ + 3298.7421235581937, + 5402.8486426963045 + ] + }, + "raw_value": "CWR-10629-25A-S2A-N", + "clean_value": "CWR-10629-25A-S2A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "5589D3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3281.164733886757, + "min_y": 5409.141539495022, + "max_x": 3281.164733886757, + "max_y": 5429.556959983339, + "center": [ + 3281.164733886757, + 5419.34924973918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3281.164733886757, + 5409.141539495022 + ], + [ + 3281.164733886757, + 5429.556959983339 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5589D4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 3287.84173046117, + "min_y": 5409.141539495024, + "max_x": 3287.84173046117, + "max_y": 5410.374316626895, + "center": [ + 3287.84173046117, + 5409.757928060959 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 3287.84173046117, + 5409.141539495024 + ], + [ + 3287.84173046117, + 5410.374316626895 + ] + ], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "5589D6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2278.863537718238, + "min_y": 5350.515722356412, + "max_x": 2290.674117857573, + "max_y": 5351.564823463128, + "center": [ + 2284.7688277879056, + 5351.04027290977 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2278.863537718238, + 5351.564823463128 + ], + [ + 2290.674117857573, + 5351.564823463128 + ], + [ + 2290.674117857573, + 5350.515722356412 + ], + [ + 2278.863537718238, + 5350.515722356412 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5589D7", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 2280.713883613116, + "min_y": 5351.564823463128, + "max_x": 2280.713883613116, + "max_y": 5352.219745184565, + "center": [ + 2280.713883613116, + 5351.892284323847 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2280.713883613116, + 5352.219745184565 + ], + [ + 2280.713883613116, + 5351.564823463128 + ] + ], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "5589D8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.662997987386, + "min_y": 5350.378412542237, + "max_x": 2277.735176841913, + "max_y": 5350.597221735656, + "center": [ + 2277.1990874146495, + 5350.487817138946 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.735176841913, + 5350.378412542237 + ], + [ + 2276.662997987386, + 5350.597221735656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589D9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.662997987386, + "min_y": 5351.472458509348, + "max_x": 2277.735176841913, + "max_y": 5351.691267702776, + "center": [ + 2277.1990874146495, + 5351.581863106062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.735176841913, + 5351.691267702776 + ], + [ + 2276.662997987386, + 5351.472458509348 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589DA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2276.662997987386, + "min_y": 5350.597221735656, + "max_x": 2276.662997987386, + "max_y": 5351.472458509348, + "center": [ + 2276.662997987386, + 5351.034840122502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2276.662997987386, + 5351.472458509348 + ], + [ + 2276.662997987386, + 5350.597221735656 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589DB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2277.735176841913, + "min_y": 5350.378412542237, + "max_x": 2277.735176841913, + "max_y": 5351.691267702776, + "center": [ + 2277.735176841913, + 5351.0348401225065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.735176841913, + 5351.691267702776 + ], + [ + 2277.735176841913, + 5350.378412542237 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589DC", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2277.867211964343, + "min_y": 5347.72213010593, + "max_x": 2282.570713635995, + "max_y": 5348.842011456323, + "center": [ + 2280.218962800169, + 5348.282070781126 + ] + }, + "raw_value": "50Ax65A", + "clean_value": "50Ax65A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "5589DE", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2277.735176841913, + "min_y": 5351.04513282422, + "max_x": 2293.681584755345, + "max_y": 5351.045132824235, + "center": [ + 2285.708380798629, + 5351.045132824227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2277.735176841913, + 5351.045132824235 + ], + [ + 2293.681584755345, + 5351.04513282422 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5589DF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5362.932440324659, + "max_x": 2364.477017735393, + "max_y": 5362.932440324659, + "center": [ + 2363.8575502174745, + 5362.932440324659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.238082699556, + 5362.932440324659 + ], + [ + 2364.477017735393, + 5362.932440324659 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5589E0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5362.308702240199, + "max_x": 2367.047725819084, + "max_y": 5363.556178409125, + "center": [ + 2367.047725819084, + 5362.932440324662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5362.308702240199 + ], + [ + 2367.047725819084, + 5363.556178409125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5362.308702240199, + "max_x": 2367.418938561759, + "max_y": 5363.556178409125, + "center": [ + 2367.418938561759, + 5362.932440324662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5362.308702240199 + ], + [ + 2367.418938561759, + 5363.556178409125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5362.932440324664, + "max_x": 2369.02853427066, + "max_y": 5362.932440324664, + "center": [ + 2368.2237364162097, + 5362.932440324664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5362.932440324664 + ], + [ + 2369.02853427066, + 5362.932440324664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5355.10824181487, + "max_x": 2364.477017735393, + "max_y": 5355.10824181487, + "center": [ + 2363.8575502174745, + 5355.10824181487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.238082699556, + 5355.10824181487 + ], + [ + 2364.477017735393, + 5355.10824181487 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5589E4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5354.484503730408, + "max_x": 2367.047725819084, + "max_y": 5355.708916900954, + "center": [ + 2367.047725819084, + 5355.096710315681 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5354.484503730408 + ], + [ + 2367.047725819084, + 5355.708916900954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5354.484503730408, + "max_x": 2367.418938561759, + "max_y": 5355.731979899333, + "center": [ + 2367.418938561759, + 5355.108241814871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5354.484503730408 + ], + [ + 2367.418938561759, + 5355.731979899333 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5355.108241814871, + "max_x": 2369.02853427066, + "max_y": 5355.108241814871, + "center": [ + 2368.2237364162097, + 5355.108241814871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5355.108241814871 + ], + [ + 2369.02853427066, + 5355.108241814871 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589E7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5355.10824181487, + "max_x": 2363.238082699556, + "max_y": 5356.420571545495, + "center": [ + 2363.238082699556, + 5355.764406680182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.238082699556, + 5355.10824181487 + ], + [ + 2363.238082699556, + 5356.420571545495 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5589E8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2363.238082699556, + "min_y": 5361.71378907375, + "max_x": 2363.238082699558, + "max_y": 5362.932440324659, + "center": [ + 2363.238082699557, + 5362.323114699205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.238082699558, + 5361.71378907375 + ], + [ + 2363.238082699556, + 5362.932440324659 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5589E9", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2360.591473935428, + "min_y": 5356.420571545495, + "max_x": 2365.884691463684, + "max_y": 5361.7137890737495, + "center": [ + 2363.238082699556, + 5359.067180309622 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2363.238082699556, + 5359.067180309622 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5589EA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.299638830727, + "max_x": 2364.964229189356, + "max_y": 5363.547114999652, + "center": [ + 2364.964229189356, + 5362.92337691519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5363.547114999652 + ], + [ + 2364.964229189356, + 5362.299638830727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589EB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.477017735393, + "min_y": 5362.276575832346, + "max_x": 2364.477017735393, + "max_y": 5363.570177998025, + "center": [ + 2364.477017735393, + 5362.923376915185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.477017735393, + 5363.570177998025 + ], + [ + 2364.477017735393, + 5362.276575832346 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589EC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5362.285639241822, + "max_x": 2367.418938561759, + "max_y": 5363.579241407505, + "center": [ + 2367.418938561759, + 5362.932440324663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5363.579241407505 + ], + [ + 2367.418938561759, + 5362.285639241822 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589ED", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2365.606717576544, + "min_y": 5362.5331803969875, + "max_x": 2366.4052374318962, + "max_y": 5363.33170025234, + "center": [ + 2366.00597750422, + 5362.932440324664 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.00597750422, + 5362.932440324664 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589EE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.299638830727, + "max_x": 2364.964229189356, + "max_y": 5363.547114999652, + "center": [ + 2364.964229189356, + 5362.92337691519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5362.299638830727 + ], + [ + 2364.964229189356, + 5363.547114999652 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589EF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5362.308702240199, + "max_x": 2367.418938561759, + "max_y": 5363.556178409125, + "center": [ + 2367.418938561759, + 5362.932440324662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5362.308702240199 + ], + [ + 2367.418938561759, + 5363.556178409125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.452377322555, + "max_x": 2364.964229189356, + "max_y": 5355.699853491476, + "center": [ + 2364.964229189356, + 5355.076115407015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5355.699853491476 + ], + [ + 2364.964229189356, + 5354.452377322555 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.477017735393, + "min_y": 5354.429314324177, + "max_x": 2364.477017735393, + "max_y": 5355.722916489856, + "center": [ + 2364.477017735393, + 5355.076115407017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.477017735393, + 5355.722916489856 + ], + [ + 2364.477017735393, + 5354.429314324177 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5354.438377733654, + "max_x": 2367.418938561759, + "max_y": 5355.731979899333, + "center": [ + 2367.418938561759, + 5355.085178816494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5355.731979899333 + ], + [ + 2367.418938561759, + 5354.438377733654 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F3", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2365.606717576544, + "min_y": 5354.685918888814, + "max_x": 2366.4052374318962, + "max_y": 5355.484438744166, + "center": [ + 2366.00597750422, + 5355.08517881649 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.00597750422, + 5355.08517881649 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.452377322555, + "max_x": 2364.964229189356, + "max_y": 5355.699853491476, + "center": [ + 2364.964229189356, + 5355.076115407015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5354.452377322555 + ], + [ + 2364.964229189356, + 5355.699853491476 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5354.461440732029, + "max_x": 2367.418938561759, + "max_y": 5355.708916900954, + "center": [ + 2367.418938561759, + 5355.085178816491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5354.461440732029 + ], + [ + 2367.418938561759, + 5355.708916900954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5354.454442374522, + "max_x": 2367.047725819084, + "max_y": 5355.715915258461, + "center": [ + 2367.047725819084, + 5355.085178816491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5355.715915258461 + ], + [ + 2367.047725819084, + 5354.454442374522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5354.454442374522, + "max_x": 2367.418938561759, + "max_y": 5355.715915258461, + "center": [ + 2367.418938561759, + 5355.085178816491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5355.715915258461 + ], + [ + 2367.418938561759, + 5354.454442374522 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.447444017009, + "max_x": 2364.964229189356, + "max_y": 5355.708916900954, + "center": [ + 2364.964229189356, + 5355.0781804589815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5355.708916900954 + ], + [ + 2364.964229189356, + 5354.447444017009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589F9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.447444017009, + "max_x": 2364.964229189356, + "max_y": 5355.708916900954, + "center": [ + 2364.964229189356, + 5355.0781804589815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5355.708916900954 + ], + [ + 2364.964229189356, + 5354.447444017009 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5355.290279312317, + "max_x": 2365.66342491488, + "max_y": 5355.708916900954, + "center": [ + 2365.313827052118, + 5355.499598106635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.66342491488, + 5355.290279312317 + ], + [ + 2364.964229189356, + 5355.708916900954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.461440732029, + "max_x": 2364.964229189356, + "max_y": 5355.708916900954, + "center": [ + 2364.964229189356, + 5355.085178816491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5355.708916900954 + ], + [ + 2364.964229189356, + 5354.461440732029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5354.461440732029, + "max_x": 2365.66342491488, + "max_y": 5354.880078320667, + "center": [ + 2365.313827052118, + 5354.670759526348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5354.461440732029 + ], + [ + 2365.66342491488, + 5354.880078320667 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.348530093557, + "min_y": 5355.290279312313, + "max_x": 2367.047725819084, + "max_y": 5355.708916900954, + "center": [ + 2366.6981279563206, + 5355.499598106633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.348530093557, + 5355.290279312313 + ], + [ + 2367.047725819084, + 5355.708916900954 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5354.461440732029, + "max_x": 2367.047725819084, + "max_y": 5355.708916900954, + "center": [ + 2367.047725819084, + 5355.085178816491 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5355.708916900954 + ], + [ + 2367.047725819084, + 5354.461440732029 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5589FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.348530093557, + "min_y": 5354.461440732029, + "max_x": 2367.047725819084, + "max_y": 5354.880078320672, + "center": [ + 2366.6981279563206, + 5354.670759526351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5354.461440732029 + ], + [ + 2366.348530093557, + 5354.880078320672 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5362.301703882693, + "max_x": 2367.047725819084, + "max_y": 5363.563176766632, + "center": [ + 2367.047725819084, + 5362.932440324663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5363.563176766632 + ], + [ + 2367.047725819084, + 5362.301703882693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.418938561759, + "min_y": 5362.301703882693, + "max_x": 2367.418938561759, + "max_y": 5363.563176766632, + "center": [ + 2367.418938561759, + 5362.932440324663 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.418938561759, + 5363.563176766632 + ], + [ + 2367.418938561759, + 5362.301703882693 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.294705525186, + "max_x": 2364.964229189356, + "max_y": 5363.556178409125, + "center": [ + 2364.964229189356, + 5362.925441967156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5363.556178409125 + ], + [ + 2364.964229189356, + 5362.294705525186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.294705525186, + "max_x": 2364.964229189356, + "max_y": 5363.556178409125, + "center": [ + 2364.964229189356, + 5362.925441967156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5363.556178409125 + ], + [ + 2364.964229189356, + 5362.294705525186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5363.137540820487, + "max_x": 2365.66342491488, + "max_y": 5363.556178409125, + "center": [ + 2365.313827052118, + 5363.346859614806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2365.66342491488, + 5363.137540820487 + ], + [ + 2364.964229189356, + 5363.556178409125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.308702240199, + "max_x": 2364.964229189356, + "max_y": 5363.556178409125, + "center": [ + 2364.964229189356, + 5362.932440324662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5363.556178409125 + ], + [ + 2364.964229189356, + 5362.308702240199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2364.964229189356, + "min_y": 5362.308702240199, + "max_x": 2365.66342491488, + "max_y": 5362.727339828837, + "center": [ + 2365.313827052118, + 5362.518021034518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2364.964229189356, + 5362.308702240199 + ], + [ + 2365.66342491488, + 5362.727339828837 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.348530093557, + "min_y": 5363.137540820487, + "max_x": 2367.047725819084, + "max_y": 5363.556178409125, + "center": [ + 2366.6981279563206, + 5363.346859614806 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.348530093557, + 5363.137540820487 + ], + [ + 2367.047725819084, + 5363.556178409125 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.047725819084, + "min_y": 5362.308702240199, + "max_x": 2367.047725819084, + "max_y": 5363.556178409125, + "center": [ + 2367.047725819084, + 5362.932440324662 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5363.556178409125 + ], + [ + 2367.047725819084, + 5362.308702240199 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A09", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.348530093557, + "min_y": 5362.308702240199, + "max_x": 2367.047725819084, + "max_y": 5362.727339828842, + "center": [ + 2366.6981279563206, + 5362.518021034521 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.047725819084, + 5362.308702240199 + ], + [ + 2366.348530093557, + 5362.727339828842 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A0A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2360.576133742403, + "min_y": 5357.409935152624, + "max_x": 2365.278589116614, + "max_y": 5358.716172756572, + "center": [ + 2362.9273614295084, + 5358.063053954598 + ] + }, + "raw_value": "10213A", + "clean_value": "10213A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A0B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 2362.367610118904, + "min_y": 5359.69089548314, + "max_x": 2363.935095243641, + "max_y": 5360.997133087088, + "center": [ + 2363.1513526812723, + 5360.344014285114 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A0D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5359.777550704555, + "max_x": 1918.684420294988, + "max_y": 5359.777550704555, + "center": [ + 1918.0649527770695, + 5359.777550704555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.445485259151, + 5359.777550704555 + ], + [ + 1918.684420294988, + 5359.777550704555 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558A0E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5359.153812620096, + "max_x": 1921.255128378678, + "max_y": 5360.401288789021, + "center": [ + 1921.255128378678, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5359.153812620096 + ], + [ + 1921.255128378678, + 5360.401288789021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5359.153812620096, + "max_x": 1921.626341121354, + "max_y": 5360.401288789021, + "center": [ + 1921.626341121354, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5359.153812620096 + ], + [ + 1921.626341121354, + 5360.401288789021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5359.777550704561, + "max_x": 1923.235936830255, + "max_y": 5359.777550704561, + "center": [ + 1922.4311389758045, + 5359.777550704561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5359.777550704561 + ], + [ + 1923.235936830255, + 5359.777550704561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A11", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5351.953352194766, + "max_x": 1918.684420294988, + "max_y": 5351.953352194766, + "center": [ + 1918.0649527770695, + 5351.953352194766 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.445485259151, + 5351.953352194766 + ], + [ + 1918.684420294988, + 5351.953352194766 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558A12", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5351.329614110305, + "max_x": 1921.255128378678, + "max_y": 5352.55402728085, + "center": [ + 1921.255128378678, + 5351.941820695578 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5351.329614110305 + ], + [ + 1921.255128378678, + 5352.55402728085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A13", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5351.329614110305, + "max_x": 1921.626341121354, + "max_y": 5352.57709027923, + "center": [ + 1921.626341121354, + 5351.953352194767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5351.329614110305 + ], + [ + 1921.626341121354, + 5352.57709027923 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5351.953352194769, + "max_x": 1923.235936830255, + "max_y": 5351.953352194769, + "center": [ + 1922.4311389758045, + 5351.953352194769 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5351.953352194769 + ], + [ + 1923.235936830255, + 5351.953352194769 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A15", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5351.953352194766, + "max_x": 1917.445485259151, + "max_y": 5353.265681925392, + "center": [ + 1917.445485259151, + 5352.609517060078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.445485259151, + 5351.953352194766 + ], + [ + 1917.445485259151, + 5353.265681925392 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558A16", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1917.445485259151, + "min_y": 5358.558899453647, + "max_x": 1917.445485259153, + "max_y": 5359.777550704555, + "center": [ + 1917.445485259152, + 5359.168225079102 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.445485259153, + 5358.558899453647 + ], + [ + 1917.445485259151, + 5359.777550704555 + ] + ], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "558A17", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1914.798876495023, + "min_y": 5353.265681925392, + "max_x": 1920.0920940232788, + "max_y": 5358.5588994536465, + "center": [ + 1917.445485259151, + 5355.912290689519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1917.445485259151, + 5355.912290689519 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A18", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.144749210623, + "max_x": 1919.171631748951, + "max_y": 5360.392225379548, + "center": [ + 1919.171631748951, + 5359.768487295085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5360.392225379548 + ], + [ + 1919.171631748951, + 5359.144749210623 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A19", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.684420294988, + "min_y": 5359.121686212244, + "max_x": 1918.684420294988, + "max_y": 5360.415288377923, + "center": [ + 1918.684420294988, + 5359.768487295083 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.684420294988, + 5360.415288377923 + ], + [ + 1918.684420294988, + 5359.121686212244 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5359.130749621719, + "max_x": 1921.626341121354, + "max_y": 5360.424351787401, + "center": [ + 1921.626341121354, + 5359.77755070456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5360.424351787401 + ], + [ + 1921.626341121354, + 5359.130749621719 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1B", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1919.8141201361386, + "min_y": 5359.378290776885, + "max_x": 1920.6126399914915, + "max_y": 5360.176810632237, + "center": [ + 1920.213380063815, + 5359.777550704561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.213380063815, + 5359.777550704561 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.144749210623, + "max_x": 1919.171631748951, + "max_y": 5360.392225379548, + "center": [ + 1919.171631748951, + 5359.768487295085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5359.144749210623 + ], + [ + 1919.171631748951, + 5360.392225379548 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5359.153812620096, + "max_x": 1921.626341121354, + "max_y": 5360.401288789021, + "center": [ + 1921.626341121354, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5359.153812620096 + ], + [ + 1921.626341121354, + 5360.401288789021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.297487702452, + "max_x": 1919.171631748951, + "max_y": 5352.544963871372, + "center": [ + 1919.171631748951, + 5351.921225786911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5352.544963871372 + ], + [ + 1919.171631748951, + 5351.297487702452 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A1F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1918.684420294988, + "min_y": 5351.274424704072, + "max_x": 1918.684420294988, + "max_y": 5352.568026869751, + "center": [ + 1918.684420294988, + 5351.921225786911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1918.684420294988, + 5352.568026869751 + ], + [ + 1918.684420294988, + 5351.274424704072 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A20", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5351.283488113551, + "max_x": 1921.626341121354, + "max_y": 5352.57709027923, + "center": [ + 1921.626341121354, + 5351.930289196391 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5352.57709027923 + ], + [ + 1921.626341121354, + 5351.283488113551 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A21", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1919.8141201361386, + "min_y": 5351.531029268712, + "max_x": 1920.6126399914915, + "max_y": 5352.329549124064, + "center": [ + 1920.213380063815, + 5351.930289196388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.213380063815, + 5351.930289196388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A22", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.297487702452, + "max_x": 1919.171631748951, + "max_y": 5352.544963871372, + "center": [ + 1919.171631748951, + 5351.921225786911 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5351.297487702452 + ], + [ + 1919.171631748951, + 5352.544963871372 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A23", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5351.306551111925, + "max_x": 1921.626341121354, + "max_y": 5352.55402728085, + "center": [ + 1921.626341121354, + 5351.930289196387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5351.306551111925 + ], + [ + 1921.626341121354, + 5352.55402728085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5351.299552754419, + "max_x": 1921.255128378678, + "max_y": 5352.561025638357, + "center": [ + 1921.255128378678, + 5351.930289196388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5352.561025638357 + ], + [ + 1921.255128378678, + 5351.299552754419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5351.299552754419, + "max_x": 1921.626341121354, + "max_y": 5352.561025638357, + "center": [ + 1921.626341121354, + 5351.930289196388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5352.561025638357 + ], + [ + 1921.626341121354, + 5351.299552754419 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.292554396906, + "max_x": 1919.171631748951, + "max_y": 5352.55402728085, + "center": [ + 1919.171631748951, + 5351.9232908388785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5352.55402728085 + ], + [ + 1919.171631748951, + 5351.292554396906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.292554396906, + "max_x": 1919.171631748951, + "max_y": 5352.55402728085, + "center": [ + 1919.171631748951, + 5351.9232908388785 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5352.55402728085 + ], + [ + 1919.171631748951, + 5351.292554396906 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5352.135389692213, + "max_x": 1919.870827474475, + "max_y": 5352.55402728085, + "center": [ + 1919.521229611713, + 5352.344708486531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.870827474475, + 5352.135389692213 + ], + [ + 1919.171631748951, + 5352.55402728085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.306551111925, + "max_x": 1919.171631748951, + "max_y": 5352.55402728085, + "center": [ + 1919.171631748951, + 5351.930289196387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5352.55402728085 + ], + [ + 1919.171631748951, + 5351.306551111925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5351.306551111925, + "max_x": 1919.870827474475, + "max_y": 5351.725188700563, + "center": [ + 1919.521229611713, + 5351.515869906244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5351.306551111925 + ], + [ + 1919.870827474475, + 5351.725188700563 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.555932653152, + "min_y": 5352.13538969221, + "max_x": 1921.255128378678, + "max_y": 5352.55402728085, + "center": [ + 1920.905530515915, + 5352.34470848653 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.555932653152, + 5352.13538969221 + ], + [ + 1921.255128378678, + 5352.55402728085 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5351.306551111925, + "max_x": 1921.255128378678, + "max_y": 5352.55402728085, + "center": [ + 1921.255128378678, + 5351.930289196387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5352.55402728085 + ], + [ + 1921.255128378678, + 5351.306551111925 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.555932653152, + "min_y": 5351.306551111925, + "max_x": 1921.255128378678, + "max_y": 5351.725188700568, + "center": [ + 1920.905530515915, + 5351.515869906247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5351.306551111925 + ], + [ + 1920.555932653152, + 5351.725188700568 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5359.146814262589, + "max_x": 1921.255128378678, + "max_y": 5360.408287146529, + "center": [ + 1921.255128378678, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5360.408287146529 + ], + [ + 1921.255128378678, + 5359.146814262589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.626341121354, + "min_y": 5359.146814262589, + "max_x": 1921.626341121354, + "max_y": 5360.408287146529, + "center": [ + 1921.626341121354, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.626341121354, + 5360.408287146529 + ], + [ + 1921.626341121354, + 5359.146814262589 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.139815905082, + "max_x": 1919.171631748951, + "max_y": 5360.401288789021, + "center": [ + 1919.171631748951, + 5359.770552347052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5360.401288789021 + ], + [ + 1919.171631748951, + 5359.139815905082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.139815905082, + "max_x": 1919.171631748951, + "max_y": 5360.401288789021, + "center": [ + 1919.171631748951, + 5359.770552347052 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5360.401288789021 + ], + [ + 1919.171631748951, + 5359.139815905082 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.982651200383, + "max_x": 1919.870827474475, + "max_y": 5360.401288789021, + "center": [ + 1919.521229611713, + 5360.191969994702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.870827474475, + 5359.982651200383 + ], + [ + 1919.171631748951, + 5360.401288789021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.153812620096, + "max_x": 1919.171631748951, + "max_y": 5360.401288789021, + "center": [ + 1919.171631748951, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5360.401288789021 + ], + [ + 1919.171631748951, + 5359.153812620096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A34", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1919.171631748951, + "min_y": 5359.153812620096, + "max_x": 1919.870827474475, + "max_y": 5359.572450208734, + "center": [ + 1919.521229611713, + 5359.363131414415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1919.171631748951, + 5359.153812620096 + ], + [ + 1919.870827474475, + 5359.572450208734 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.555932653152, + "min_y": 5359.982651200383, + "max_x": 1921.255128378678, + "max_y": 5360.401288789021, + "center": [ + 1920.905530515915, + 5360.191969994702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1920.555932653152, + 5359.982651200383 + ], + [ + 1921.255128378678, + 5360.401288789021 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1921.255128378678, + "min_y": 5359.153812620096, + "max_x": 1921.255128378678, + "max_y": 5360.401288789021, + "center": [ + 1921.255128378678, + 5359.777550704559 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5360.401288789021 + ], + [ + 1921.255128378678, + 5359.153812620096 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A37", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1920.555932653152, + "min_y": 5359.153812620096, + "max_x": 1921.255128378678, + "max_y": 5359.57245020874, + "center": [ + 1920.905530515915, + 5359.363131414418 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1921.255128378678, + 5359.153812620096 + ], + [ + 1920.555932653152, + 5359.57245020874 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A38", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1914.783536301999, + "min_y": 5354.25504553252, + "max_x": 1919.4859916762105, + "max_y": 5355.561283136468, + "center": [ + 1917.1347639891046, + 5354.908164334494 + ] + }, + "raw_value": "10113A", + "clean_value": "10113A", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A39", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 1916.575012678499, + "min_y": 5356.536005863037, + "max_x": 1918.1424978032362, + "max_y": 5357.842243466985, + "center": [ + 1917.3587552408676, + 5357.18912466501 + ] + }, + "raw_value": "LG", + "clean_value": "LG", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A3A", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1917.931578966535, + "min_y": 5349.912755053825, + "max_x": 1925.3227958791315, + "max_y": 5351.0326364042185, + "center": [ + 1921.6271874228332, + 5350.472695729022 + ] + }, + "raw_value": "D10113BA-05", + "clean_value": "D10113BA-05", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "558A3B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 1918.457805808861, + "min_y": 5358.04809140784, + "max_x": 1925.8490227214575, + "max_y": 5359.167972758233, + "center": [ + 1922.1534142651592, + 5358.608032083037 + ] + }, + "raw_value": "D10113BA-06", + "clean_value": "D10113BA-06", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "558A41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.357792624496, + "min_y": 5349.930634653388, + "max_x": 2289.357792624496, + "max_y": 5350.515722356412, + "center": [ + 2289.357792624496, + 5350.2231785049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.357792624496, + 5350.515722356412 + ], + [ + 2289.357792624496, + 5349.930634653388 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "558A42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.357792624496, + "min_y": 5348.228828183014, + "max_x": 2291.018440450364, + "max_y": 5348.228828183014, + "center": [ + 2290.18811653743, + 5348.228828183014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.357792624496, + 5348.228828183014 + ], + [ + 2291.018440450364, + 5348.228828183014 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "558A43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.447840985707, + "min_y": 5347.673913258967, + "max_x": 2291.447840985707, + "max_y": 5348.77336798321, + "center": [ + 2291.447840985707, + 5348.223640621089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.447840985707, + 5348.77336798321 + ], + [ + 2291.447840985707, + 5347.673913258967 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A44", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.018440450364, + "min_y": 5347.653586840593, + "max_x": 2291.018440450364, + "max_y": 5348.793694401583, + "center": [ + 2291.018440450364, + 5348.223640621088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.018440450364, + 5348.793694401583 + ], + [ + 2291.018440450364, + 5347.653586840593 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.686681748848, + "min_y": 5349.665726198227, + "max_x": 2290.028627320605, + "max_y": 5349.665726198227, + "center": [ + 2289.357654534727, + 5349.665726198227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.686681748848, + 5349.665726198227 + ], + [ + 2290.028627320605, + 5349.665726198227 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A46", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2288.686681748848, + "min_y": 5349.930634653388, + "max_x": 2290.028627320605, + "max_y": 5349.930634653388, + "center": [ + 2289.357654534727, + 5349.930634653388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2288.686681748848, + 5349.930634653388 + ], + [ + 2290.028627320605, + 5349.930634653388 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A47", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2289.357792624496, + "min_y": 5348.228828183014, + "max_x": 2289.357792624496, + "max_y": 5349.665726198227, + "center": [ + 2289.357792624496, + 5348.94727719062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2289.357792624496, + 5349.665726198227 + ], + [ + 2289.357792624496, + 5348.228828183014 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "558A48", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2291.447840985707, + "min_y": 5348.228828183014, + "max_x": 2293.19842437674, + "max_y": 5348.228828183014, + "center": [ + 2292.323132681224, + 5348.228828183014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2291.447840985707, + 5348.228828183014 + ], + [ + 2293.19842437674, + 5348.228828183014 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "558A4B", + "entity_type": "TEXT", + "layer": "VALVE NO", + "bbox": { + "min_x": 2367.742822734204, + "min_y": 5321.604619715198, + "max_x": 2372.446324405856, + "max_y": 5322.7245010655915, + "center": [ + 2370.0945735700298, + 5322.164560390394 + ] + }, + "raw_value": "25Ax15A", + "clean_value": "25Ax15A", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": -1 + } + }, + { + "entity_id": "558A4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.607516888887, + "min_y": 5325.381815524714, + "max_x": 2367.679678688533, + "max_y": 5325.600708271535, + "center": [ + 2367.14359778871, + 5325.491261898124 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.607516888887, + 5325.600708271535 + ], + [ + 2367.679678688533, + 5325.381815524714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A4D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.607414579103, + "min_y": 5324.287853114982, + "max_x": 2367.679610482008, + "max_y": 5324.506578753677, + "center": [ + 2367.143512530555, + 5324.397215934329 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.607414579103, + 5324.287853114982 + ], + [ + 2367.679610482008, + 5324.506578753677 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A4E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2367.679610482008, + "min_y": 5324.506578753677, + "max_x": 2367.679678688533, + "max_y": 5325.381815524714, + "center": [ + 2367.6796445852706, + 5324.944197139195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.679610482008, + 5324.506578753677 + ], + [ + 2367.679678688533, + 5325.381815524714 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.607414579103, + "min_y": 5324.287853114982, + "max_x": 2366.607516888887, + "max_y": 5325.600708271535, + "center": [ + 2366.607465733995, + 5324.944280693258 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.607414579103, + 5324.287853114982 + ], + [ + 2366.607516888887, + 5325.600708271535 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A50", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2366.607421310148, + "min_y": 5324.374226914498, + "max_x": 2366.607510157847, + "max_y": 5325.514334472027, + "center": [ + 2366.6074657339977, + 5324.944280693262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2366.607510157847, + 5325.514334472027 + ], + [ + 2366.607421310148, + 5324.374226914498 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A51", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2367.679646486271, + "min_y": 5324.968591065145, + "max_x": 2369.127091140335, + "max_y": 5324.968591065145, + "center": [ + 2368.403368813303, + 5324.968591065145 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2367.679646486271, + 5324.968591065145 + ], + [ + 2369.127091140335, + 5324.968591065145 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A5C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4054.586126008162, + "min_y": 5250.424161240445, + "max_x": 4071.746126008162, + "max_y": 5251.854161240445, + "center": [ + 4063.166126008162, + 5251.139161240445 + ] + }, + "raw_value": "SW-10803-20A-F1A-E50", + "clean_value": "SW-10803-20A-F1A-E50", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A61", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.558295065036, + "min_y": 5145.547611789642, + "max_x": 2742.558295065036, + "max_y": 5164.121924799292, + "center": [ + 2742.558295065036, + 5154.834768294468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.558295065036, + 5145.547611789642 + ], + [ + 2742.558295065036, + 5164.121924799292 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A62", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2755.633133243009, + "min_y": 5145.472475042168, + "max_x": 2755.633133243009, + "max_y": 5165.649165549815, + "center": [ + 2755.633133243009, + 5155.560820295992 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2755.633133243009, + 5145.472475042168 + ], + [ + 2755.633133243009, + 5165.649165549815 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A63", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2742.558295065036, + "min_y": 5166.71027167673, + "max_x": 2742.558295065036, + "max_y": 5171.992279893753, + "center": [ + 2742.558295065036, + 5169.351275785242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2742.558295065036, + 5166.71027167673 + ], + [ + 2742.558295065036, + 5171.992279893753 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "558A65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2748.806512577633, + "min_y": 5146.522949746951, + "max_x": 2748.806512577633, + "max_y": 5147.663057307941, + "center": [ + 2748.806512577633, + 5147.093003527446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2748.806512577633, + 5147.663057307941 + ], + [ + 2748.806512577633, + 5146.522949746951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A66", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2748.18043963861, + "min_y": 5146.522949746951, + "max_x": 2748.806512577633, + "max_y": 5146.522949746951, + "center": [ + 2748.4934761081213, + 5146.522949746951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2748.18043963861, + 5146.522949746951 + ], + [ + 2748.806512577633, + 5146.522949746951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2748.18043963861, + "min_y": 5147.663057307941, + "max_x": 2748.806512577633, + "max_y": 5147.663057307941, + "center": [ + 2748.4934761081213, + 5147.663057307941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2748.18043963861, + 5147.663057307941 + ], + [ + 2748.806512577633, + 5147.663057307941 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A68", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2746.075313614954, + "min_y": 5146.543276165324, + "max_x": 2746.69154506109, + "max_y": 5146.912239586065, + "center": [ + 2746.3834293380223, + 5146.727757875695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2746.69154506109, + 5146.543276165324 + ], + [ + 2746.075313614954, + 5146.912239586065 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2746.69154506109, + "min_y": 5146.543276165324, + "max_x": 2746.69154506109, + "max_y": 5147.642730889566, + "center": [ + 2746.69154506109, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2746.69154506109, + 5147.642730889566 + ], + [ + 2746.69154506109, + 5146.543276165324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2746.075313614954, + "min_y": 5147.273767468828, + "max_x": 2746.69154506109, + "max_y": 5147.642730889566, + "center": [ + 2746.3834293380223, + 5147.458249179197 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2746.075313614954, + 5147.273767468828 + ], + [ + 2746.69154506109, + 5147.642730889566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.855269331291, + "min_y": 5146.543276165324, + "max_x": 2745.471500777431, + "max_y": 5146.912239586061, + "center": [ + 2745.1633850543612, + 5146.727757875693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.855269331291, + 5146.543276165324 + ], + [ + 2745.471500777431, + 5146.912239586061 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.855269331291, + "min_y": 5146.543276165324, + "max_x": 2744.855269331291, + "max_y": 5147.642730889566, + "center": [ + 2744.855269331291, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.855269331291, + 5147.642730889566 + ], + [ + 2744.855269331291, + 5146.543276165324 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.855269331291, + "min_y": 5147.27376746883, + "max_x": 2745.471500777431, + "max_y": 5147.642730889566, + "center": [ + 2745.1633850543612, + 5147.458249179198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2745.471500777431, + 5147.27376746883 + ], + [ + 2744.855269331291, + 5147.642730889566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.528103479315, + "min_y": 5146.53892822969, + "max_x": 2744.528103479315, + "max_y": 5147.650718864498, + "center": [ + 2744.528103479315, + 5147.094823547094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.528103479315, + 5147.650718864498 + ], + [ + 2744.528103479315, + 5146.53892822969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A6F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.528103479315, + "min_y": 5146.53892822969, + "max_x": 2744.528103479315, + "max_y": 5147.650718864498, + "center": [ + 2744.528103479315, + 5147.094823547094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.528103479315, + 5147.650718864498 + ], + [ + 2744.528103479315, + 5146.53892822969 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.018710913074, + "min_y": 5146.537108210043, + "max_x": 2747.018710913074, + "max_y": 5147.648898844848, + "center": [ + 2747.018710913074, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.018710913074, + 5147.648898844848 + ], + [ + 2747.018710913074, + 5146.537108210043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2746.69154506109, + "min_y": 5146.537108210043, + "max_x": 2746.69154506109, + "max_y": 5147.648898844848, + "center": [ + 2746.69154506109, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2746.69154506109, + 5147.648898844848 + ], + [ + 2746.69154506109, + 5146.537108210043 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.018710913074, + "min_y": 5146.543276165324, + "max_x": 2747.018710913074, + "max_y": 5147.642730889566, + "center": [ + 2747.018710913074, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.018710913074, + 5146.543276165324 + ], + [ + 2747.018710913074, + 5147.642730889566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2744.528103479315, + "min_y": 5146.543276165324, + "max_x": 2744.528103479315, + "max_y": 5147.642730889566, + "center": [ + 2744.528103479315, + 5147.093003527445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.528103479315, + 5146.543276165324 + ], + [ + 2744.528103479315, + 5147.642730889566 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A74", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2745.4215221465065, + "min_y": 5146.741118477759, + "max_x": 2746.12529224588, + "max_y": 5147.444888577133, + "center": [ + 2745.773407196193, + 5147.093003527446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2745.773407196193, + 5147.093003527446 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2747.018710913074, + "min_y": 5146.522949746951, + "max_x": 2747.018710913074, + "max_y": 5147.663057307941, + "center": [ + 2747.018710913074, + 5147.093003527446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2747.018710913074, + 5147.663057307941 + ], + [ + 2747.018710913074, + 5146.522949746951 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A76", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2747.018710913074, + "min_y": 5147.093003527446, + "max_x": 2748.182584522491, + "max_y": 5147.093003527446, + "center": [ + 2747.6006477177825, + 5147.093003527446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2748.182584522491, + 5147.093003527446 + ], + [ + 2747.018710913074, + 5147.093003527446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A77", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2744.75356316462, + "min_y": 5148.245674048894, + "max_x": 2747.4412784055644, + "max_y": 5149.738849182752, + "center": [ + 2746.0974207850923, + 5148.992261615824 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558A79", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2742.558295065036, + "min_y": 5147.093003527446, + "max_x": 2744.528103479315, + "max_y": 5147.093003527446, + "center": [ + 2743.5431992721756, + 5147.093003527446 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2744.528103479315, + 5147.093003527446 + ], + [ + 2742.558295065036, + 5147.093003527446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A7A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2761.881350755607, + "min_y": 5146.447812999478, + "max_x": 2761.881350755607, + "max_y": 5147.587920560468, + "center": [ + 2761.881350755607, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2761.881350755607, + 5147.587920560468 + ], + [ + 2761.881350755607, + 5146.447812999478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A7B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2761.255277816583, + "min_y": 5146.447812999478, + "max_x": 2761.881350755607, + "max_y": 5146.447812999478, + "center": [ + 2761.5683142860953, + 5146.447812999478 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2761.255277816583, + 5146.447812999478 + ], + [ + 2761.881350755607, + 5146.447812999478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A7C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2761.255277816583, + "min_y": 5147.587920560468, + "max_x": 2761.881350755607, + "max_y": 5147.587920560468, + "center": [ + 2761.5683142860953, + 5147.587920560468 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2761.255277816583, + 5147.587920560468 + ], + [ + 2761.881350755607, + 5147.587920560468 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A7D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2759.150151792927, + "min_y": 5146.468139417851, + "max_x": 2759.766383239063, + "max_y": 5146.837102838591, + "center": [ + 2759.458267515995, + 5146.652621128221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2759.766383239063, + 5146.468139417851 + ], + [ + 2759.150151792927, + 5146.837102838591 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2759.766383239063, + "min_y": 5146.468139417851, + "max_x": 2759.766383239063, + "max_y": 5147.567594142093, + "center": [ + 2759.766383239063, + 5147.017866779972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2759.766383239063, + 5147.567594142093 + ], + [ + 2759.766383239063, + 5146.468139417851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A7F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2759.150151792927, + "min_y": 5147.198630721355, + "max_x": 2759.766383239063, + "max_y": 5147.567594142093, + "center": [ + 2759.458267515995, + 5147.383112431724 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2759.150151792927, + 5147.198630721355 + ], + [ + 2759.766383239063, + 5147.567594142093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A80", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.930107509265, + "min_y": 5146.468139417851, + "max_x": 2758.546338955405, + "max_y": 5146.837102838588, + "center": [ + 2758.2382232323353, + 5146.65262112822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.930107509265, + 5146.468139417851 + ], + [ + 2758.546338955405, + 5146.837102838588 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.930107509265, + "min_y": 5146.468139417851, + "max_x": 2757.930107509265, + "max_y": 5147.567594142093, + "center": [ + 2757.930107509265, + 5147.017866779972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.930107509265, + 5147.567594142093 + ], + [ + 2757.930107509265, + 5146.468139417851 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A82", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.930107509265, + "min_y": 5147.198630721357, + "max_x": 2758.546338955405, + "max_y": 5147.567594142093, + "center": [ + 2758.2382232323353, + 5147.383112431726 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2758.546338955405, + 5147.198630721357 + ], + [ + 2757.930107509265, + 5147.567594142093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A83", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.602941657288, + "min_y": 5146.463791482217, + "max_x": 2757.602941657288, + "max_y": 5147.575582117025, + "center": [ + 2757.602941657288, + 5147.019686799621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.602941657288, + 5147.575582117025 + ], + [ + 2757.602941657288, + 5146.463791482217 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A84", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.602941657288, + "min_y": 5146.463791482217, + "max_x": 2757.602941657288, + "max_y": 5147.575582117025, + "center": [ + 2757.602941657288, + 5147.019686799621 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.602941657288, + 5147.575582117025 + ], + [ + 2757.602941657288, + 5146.463791482217 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A85", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2760.093549091048, + "min_y": 5146.461971462571, + "max_x": 2760.093549091048, + "max_y": 5147.573762097375, + "center": [ + 2760.093549091048, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.093549091048, + 5147.573762097375 + ], + [ + 2760.093549091048, + 5146.461971462571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A86", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2759.766383239063, + "min_y": 5146.461971462571, + "max_x": 2759.766383239063, + "max_y": 5147.573762097375, + "center": [ + 2759.766383239063, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2759.766383239063, + 5147.573762097375 + ], + [ + 2759.766383239063, + 5146.461971462571 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A87", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2760.093549091048, + "min_y": 5146.468139417851, + "max_x": 2760.093549091048, + "max_y": 5147.567594142093, + "center": [ + 2760.093549091048, + 5147.017866779972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.093549091048, + 5146.468139417851 + ], + [ + 2760.093549091048, + 5147.567594142093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A88", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2757.602941657288, + "min_y": 5146.468139417851, + "max_x": 2757.602941657288, + "max_y": 5147.567594142093, + "center": [ + 2757.602941657288, + 5147.017866779972 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.602941657288, + 5146.468139417851 + ], + [ + 2757.602941657288, + 5147.567594142093 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A89", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 2758.496360324479, + "min_y": 5146.665981730286, + "max_x": 2759.2001304238524, + "max_y": 5147.369751829659, + "center": [ + 2758.848245374166, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2758.848245374166, + 5147.017866779973 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A8A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2760.093549091048, + "min_y": 5146.447812999478, + "max_x": 2760.093549091048, + "max_y": 5147.587920560468, + "center": [ + 2760.093549091048, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2760.093549091048, + 5147.587920560468 + ], + [ + 2760.093549091048, + 5146.447812999478 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "558A8B", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2760.093549091048, + "min_y": 5147.017866779973, + "max_x": 2761.257422700465, + "max_y": 5147.017866779973, + "center": [ + 2760.6754858957565, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2761.257422700465, + 5147.017866779973 + ], + [ + 2760.093549091048, + 5147.017866779973 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A8C", + "entity_type": "TEXT", + "layer": "14-D-PIPELINE-LINE", + "bbox": { + "min_x": 2757.828401342593, + "min_y": 5148.170537301421, + "max_x": 2760.5161165835375, + "max_y": 5149.663712435279, + "center": [ + 2759.1722589630654, + 5148.917124868351 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "558A8E", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 2755.633133243009, + "min_y": 5147.017866779973, + "max_x": 2757.602941657288, + "max_y": 5147.017866779973, + "center": [ + 2756.618037450148, + 5147.017866779973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2757.602941657288, + 5147.017866779973 + ], + [ + 2755.633133243009, + 5147.017866779973 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A92", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4552.274609269681, + "min_y": 5385.376129405134, + "max_x": 4564.3693278539295, + "max_y": 5386.496010755527, + "center": [ + 4558.321968561805, + 5385.93607008033 + ] + }, + "raw_value": "N2-10710-25A-F1A-n", + "clean_value": "N2-10710-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "558A93", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4551.6963914272, + "min_y": 5405.324644970773, + "max_x": 4563.791110011449, + "max_y": 5406.444526321166, + "center": [ + 4557.743750719324, + 5405.88458564597 + ] + }, + "raw_value": "N2-10711-25A-F1A-n", + "clean_value": "N2-10711-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "56100F", + "entity_type": "LINE", + "layer": "WATER", + "bbox": { + "min_x": 1872.2590340456, + "min_y": 5338.608808636325, + "max_x": 1876.358922514746, + "max_y": 5338.608808636325, + "center": [ + 1874.308978280173, + 5338.608808636325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1872.2590340456, + 5338.608808636325 + ], + [ + 1876.358922514746, + 5338.608808636325 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561012", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2318.398721937104, + "min_y": 5338.432575966916, + "max_x": 2321.905521841809, + "max_y": 5338.432575966916, + "center": [ + 2320.1521218894563, + 5338.432575966916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.398721937104, + 5338.432575966916 + ], + [ + 2321.905521841809, + 5338.432575966916 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "561013", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 2323.205026292326, + "min_y": 5338.432575966916, + "max_x": 2327.416516889087, + "max_y": 5338.432575966916, + "center": [ + 2325.3107715907063, + 5338.432575966916 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2323.205026292326, + 5338.432575966916 + ], + [ + 2327.416516889087, + 5338.432575966916 + ] + ], + "properties": { + "color": 4, + "lineweight": -1 + } + }, + { + "entity_id": "561077", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4295.91478592656, + "min_y": 5160.70791387411, + "max_x": 4327.64475752104, + "max_y": 5162.50791387411, + "center": [ + 4311.779771723801, + 5161.60791387411 + ] + }, + "raw_value": "\\W0.9;{\\A1;SIZE : ID89.1 x 336H\\PVOLUME : 0.002m3\\PDP/OP : 0.99Mpa / 0.15Mpa\\PDT/OT : 40}%%DC \\A1;/ AMB\\PMATERIAL : STS304\\PINSULATION : NONE", + "clean_value": ".9; SIZE : ID89.1 x 336H VOLUME : 0.002m3 DP/OP : 0.99Mpa / 0.15Mpa DT/OT : 40 %%DC / AMB MATERIAL : STS304 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "56107B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4295.91478592656, + "min_y": 5168.159163346725, + "max_x": 4327.64475752104, + "max_y": 5169.959163346725, + "center": [ + 4311.779771723801, + 5169.059163346725 + ] + }, + "raw_value": "\\L\\W0.9;F-10900\\PN2 FILTER", + "clean_value": ".9;F-10900 N2 FILTER", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "5610B0", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4439.35115172088, + "min_y": 5169.334064598153, + "max_x": 4448.982380515635, + "max_y": 5170.873901454945, + "center": [ + 4444.166766118257, + 5170.103983026549 + ] + }, + "raw_value": "\\pi-0.4914;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-10900}", + "clean_value": "\\pi-0.4914; \\fArial|b1|i1|c238|p34; .3333x; F-10900", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "5610E6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4437.441976339909, + "min_y": 5165.145390789628, + "max_x": 4451.644260137828, + "max_y": 5170.12225947095, + "center": [ + 4444.543118238868, + 5167.63382513029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4437.441976339909, + 5170.12225947095 + ], + [ + 4440.441976339909, + 5170.12225947095 + ], + [ + 4443.441976339909, + 5170.12225947095 + ], + [ + 4446.441976339909, + 5170.12225947095 + ], + [ + 4449.441976339909, + 5170.12225947095 + ], + [ + 4451.644260137828, + 5169.324543268869 + ], + [ + 4451.644260137828, + 5166.324543268869 + ], + [ + 4449.82341261707, + 5165.145390789628 + ], + [ + 4446.82341261707, + 5165.145390789628 + ], + [ + 4443.82341261707, + 5165.145390789628 + ], + [ + 4440.82341261707, + 5165.145390789628 + ], + [ + 4437.82341261707, + 5165.145390789628 + ], + [ + 4437.441976339909, + 5167.763954512467 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5610E7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4293.428390888186, + "min_y": 5140.066828117404, + "max_x": 4329.94161282335, + "max_y": 5171.336129881029, + "center": [ + 4311.685001855768, + 5155.701478999216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4293.428390888186, + 5171.336129881029 + ], + [ + 4296.428390888186, + 5171.336129881029 + ], + [ + 4299.428390888186, + 5171.336129881029 + ], + [ + 4302.428390888186, + 5171.336129881029 + ], + [ + 4305.428390888186, + 5171.336129881029 + ], + [ + 4308.428390888186, + 5171.336129881029 + ], + [ + 4311.428390888186, + 5171.336129881029 + ], + [ + 4314.428390888186, + 5171.336129881029 + ], + [ + 4317.428390888186, + 5171.336129881029 + ], + [ + 4320.428390888186, + 5171.336129881029 + ], + [ + 4323.428390888186, + 5171.336129881029 + ], + [ + 4326.428390888186, + 5171.336129881029 + ], + [ + 4329.428390888186, + 5171.336129881029 + ], + [ + 4329.94161282335, + 5168.849351816191 + ], + [ + 4329.94161282335, + 5165.849351816192 + ], + [ + 4329.94161282335, + 5162.849351816192 + ], + [ + 4329.94161282335, + 5159.849351816192 + ], + [ + 4329.94161282335, + 5156.849351816192 + ], + [ + 4329.94161282335, + 5153.849351816192 + ], + [ + 4329.94161282335, + 5150.849351816192 + ], + [ + 4329.94161282335, + 5147.849351816192 + ], + [ + 4329.94161282335, + 5144.849351816192 + ], + [ + 4329.94161282335, + 5141.849351816192 + ], + [ + 4328.724136522138, + 5140.066828117404 + ], + [ + 4325.724136522138, + 5140.066828117404 + ], + [ + 4322.724136522138, + 5140.066828117404 + ], + [ + 4319.724136522138, + 5140.066828117404 + ], + [ + 4316.724136522138, + 5140.066828117404 + ], + [ + 4313.724136522138, + 5140.066828117404 + ], + [ + 4310.724136522138, + 5140.066828117404 + ], + [ + 4307.724136522138, + 5140.066828117404 + ], + [ + 4304.724136522138, + 5140.066828117404 + ], + [ + 4301.724136522138, + 5140.066828117404 + ], + [ + 4298.724136522138, + 5140.066828117404 + ], + [ + 4295.724136522138, + 5140.066828117404 + ], + [ + 4293.428390888186, + 5140.771082483452 + ], + [ + 4293.428390888186, + 5143.771082483453 + ], + [ + 4293.428390888186, + 5146.771082483452 + ], + [ + 4293.428390888186, + 5149.771082483452 + ], + [ + 4293.428390888186, + 5152.771082483452 + ], + [ + 4293.428390888186, + 5155.771082483452 + ], + [ + 4293.428390888186, + 5158.771082483452 + ], + [ + 4293.428390888186, + 5161.771082483452 + ], + [ + 4293.428390888186, + 5164.771082483452 + ], + [ + 4293.428390888186, + 5167.771082483452 + ], + [ + 4293.428390888186, + 5170.771082483452 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "561145", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4296.117000798845, + "min_y": 5174.44328601638, + "max_x": 4300.203520107216, + "max_y": 5177.982315550487, + "center": [ + 4298.160260453031, + 5176.2128007834335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4300.203520107216, + 5174.44328601638 + ], + [ + 4298.160260453031, + 5177.982315550487 + ], + [ + 4296.117000798845, + 5174.44328601638 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "561146", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4297.734708878258, + "min_y": 5175.071525941042, + "max_x": 4298.629861245335, + "max_y": 5176.563446552836, + "center": [ + 4298.182285061796, + 5175.817486246939 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561175", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4434.149922127506, + "min_y": 5171.86537827707, + "max_x": 4438.236441435878, + "max_y": 5175.404407811175, + "center": [ + 4436.193181781692, + 5173.634893044122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4438.236441435878, + 5171.86537827707 + ], + [ + 4436.193181781693, + 5175.404407811175 + ], + [ + 4434.149922127506, + 5171.86537827707 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "561176", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4435.767630206919, + "min_y": 5172.49361820173, + "max_x": 4436.662782573996, + "max_y": 5173.985538813524, + "center": [ + 4436.215206390458, + 5173.239578507627 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "5611A8", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4313.342366891655, + "min_y": 5405.698685618102, + "max_x": 4396.942390745162, + "max_y": 5408.698685618102, + "center": [ + 4355.142378818408, + 5407.198685618102 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. N2 Filter Tag No. 기{{\\l}}입{{\\L}} {{\\l}}및{{\\L}} Short Spec 기{{\\l}}재{{\\L}}\\P2. N2 Filter 후{{\\l}}단{{\\L}} 플랜{{\\l}}지{{\\L}} 표{{\\l}}시{{\\L}}", + "clean_value": "<수정사 \\l 항 > . N2 Filter Tag No. 기 \\l 입 \\l 및 Short Spec 기 \\l 재 . N2 Filter 후 \\l 단 플랜 \\l 지 표 \\l 시", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5611D9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4310.808912947972, + "min_y": 5357.289747026526, + "max_x": 4395.488080273104, + "max_y": 5406.995971783283, + "center": [ + 4353.148496610538, + 5382.142859404905 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4310.808912947972, + 5406.995971783283 + ], + [ + 4395.488080273104, + 5406.995971783283 + ], + [ + 4395.488080273104, + 5357.289747026526 + ], + [ + 4310.808912947972, + 5357.289747026526 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5611DB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1650.985727088118, + "min_y": 5250.893500186957, + "max_x": 1663.666080354237, + "max_y": 5255.716369591592, + "center": [ + 1657.3259037211774, + 5253.304934889275 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1650.985727088118, + 5255.716369591592 + ], + [ + 1653.985727088118, + 5255.716369591592 + ], + [ + 1656.985727088118, + 5255.716369591592 + ], + [ + 1659.985727088118, + 5255.716369591592 + ], + [ + 1662.985727088118, + 5255.716369591592 + ], + [ + 1663.666080354237, + 5253.39672285771 + ], + [ + 1663.16930302499, + 5250.893500186957 + ], + [ + 1660.16930302499, + 5250.893500186957 + ], + [ + 1657.16930302499, + 5250.893500186957 + ], + [ + 1654.16930302499, + 5250.893500186957 + ], + [ + 1651.16930302499, + 5250.893500186957 + ], + [ + 1650.985727088118, + 5253.709924250085 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "56120D", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 1658.990147469383, + "min_y": 5401.541489263084, + "max_x": 1778.2953757750265, + "max_y": 5404.541489263084, + "center": [ + 1718.6427616222047, + 5403.041489263084 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. T-9123/T-9124  T-9124 (T-9123에{{\\l}}서{{\\L}} P-10101{{\\l}}로{{\\L}} 가{{\\l}}는{{\\L}} 라{{\\l}}인{{\\L}} 삭{{\\l}}제{{\\L}} : Pump trip{{\\l}}시{{\\L}} 배관{{\\l}}에{{\\L}} Air{{\\l}}가{{\\L}} 차{{\\l}}서{{\\L}} Suction{{\\l}}이{{\\L}} 불가{{\\l}}능{{\\L}})\\P2. P-10118  T-9123 삭{{\\l}}제{{\\L}} (T/B 운전{{\\l}}시{{\\L}} Side 생산{{\\l}}은{{\\L}} T-10101{{\\l}}로{{\\L}}{{\\l}}만{{\\L}} 진{{\\l}}행{{\\L}})\\P3. R/D Line{{\\l}}에{{\\L}} valve 설{{\\l}}치{{\\L}} (#9-1 에서{{\\l}}도{{\\L}} 라인{{\\l}}이{{\\L}} 가{{\\l}}기{{\\L}} 때문{{\\l}}에{{\\L}} 세척 {{\\l}}필{{\\L}})\\P4. 9-1{{\\l}}차{{\\L}} 5F Side Cut  C-10111 Feed Line 구{{\\l}}성{{\\L}} 협의{{\\l}}중{{\\L}}\\P5. PSV-10117 CWR Line Header{{\\l}}에{{\\L}} 물{{\\l}}림{{\\L}}", + "clean_value": "<수정사 \\l 항 > . T-9123/T-9124  T-9124 (T-9123에 \\l 서 P-10101 \\l 로 가 \\l 는 라 \\l 인 삭 \\l 제 : Pump trip \\l 시 배관 \\l 에 Air \\l 가 차 \\l 서 Suction \\l 이 불가 \\l 능 ) . P-10118  T-9123 삭 \\l 제 (T/B 운전 \\l 시 Side 생산 \\l 은 T-10101 \\l 로 \\l 만 진 \\l 행 ) . R/D Line \\l 에 valve 설 \\l 치 (#9-1 에서 \\l 도 라인 \\l 이 가 \\l 기 때문 \\l 에 세척 \\l 필 ) . 9-1 \\l 차 5F Side Cut  C-10111 Feed Line 구 \\l 성 협의 \\l 중 . PSV-10117 CWR Line Header \\l 에 물 \\l 림", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "561240", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1663.041570092263, + "min_y": 5256.346859499262, + "max_x": 1667.128089400635, + "max_y": 5259.885889033368, + "center": [ + 1665.084829746449, + 5258.116374266315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1667.128089400635, + 5256.346859499262 + ], + [ + 1665.08482974645, + 5259.885889033368 + ], + [ + 1663.041570092263, + 5256.346859499262 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "561241", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1664.659278171676, + "min_y": 5256.975099423923, + "max_x": 1665.5544305387525, + "max_y": 5258.467020035717, + "center": [ + 1665.1068543552142, + 5257.72105972982 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561244", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1912.149189260411, + "min_y": 5250.033562125804, + "max_x": 1980.146061981885, + "max_y": 5254.44757859304, + "center": [ + 1946.147625621148, + 5252.240570359421 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1912.149189260411, + 5254.44757859304 + ], + [ + 1915.149189260412, + 5254.44757859304 + ], + [ + 1918.149189260411, + 5254.44757859304 + ], + [ + 1921.149189260411, + 5254.44757859304 + ], + [ + 1924.149189260411, + 5254.44757859304 + ], + [ + 1927.149189260411, + 5254.44757859304 + ], + [ + 1930.149189260411, + 5254.44757859304 + ], + [ + 1933.149189260412, + 5254.44757859304 + ], + [ + 1936.149189260411, + 5254.44757859304 + ], + [ + 1939.149189260411, + 5254.44757859304 + ], + [ + 1942.149189260412, + 5254.44757859304 + ], + [ + 1945.149189260411, + 5254.44757859304 + ], + [ + 1948.149189260411, + 5254.44757859304 + ], + [ + 1951.149189260411, + 5254.44757859304 + ], + [ + 1954.149189260411, + 5254.44757859304 + ], + [ + 1957.149189260411, + 5254.44757859304 + ], + [ + 1960.149189260411, + 5254.44757859304 + ], + [ + 1963.149189260411, + 5254.44757859304 + ], + [ + 1966.149189260411, + 5254.44757859304 + ], + [ + 1969.149189260411, + 5254.44757859304 + ], + [ + 1972.149189260411, + 5254.44757859304 + ], + [ + 1975.149189260411, + 5254.44757859304 + ], + [ + 1978.149189260411, + 5254.44757859304 + ], + [ + 1980.146061981885, + 5253.444451314515 + ], + [ + 1980.146061981885, + 5250.444451314515 + ], + [ + 1977.556951170596, + 5250.033562125804 + ], + [ + 1974.556951170596, + 5250.033562125804 + ], + [ + 1971.556951170596, + 5250.033562125804 + ], + [ + 1968.556951170596, + 5250.033562125804 + ], + [ + 1965.556951170596, + 5250.033562125804 + ], + [ + 1962.556951170596, + 5250.033562125804 + ], + [ + 1959.556951170596, + 5250.033562125804 + ], + [ + 1956.556951170597, + 5250.033562125804 + ], + [ + 1953.556951170596, + 5250.033562125804 + ], + [ + 1950.556951170596, + 5250.033562125804 + ], + [ + 1947.556951170597, + 5250.033562125804 + ], + [ + 1944.556951170596, + 5250.033562125804 + ], + [ + 1941.556951170596, + 5250.033562125804 + ], + [ + 1938.556951170596, + 5250.033562125804 + ], + [ + 1935.556951170596, + 5250.033562125804 + ], + [ + 1932.556951170596, + 5250.033562125804 + ], + [ + 1929.556951170596, + 5250.033562125804 + ], + [ + 1926.556951170596, + 5250.033562125804 + ], + [ + 1923.556951170596, + 5250.033562125804 + ], + [ + 1920.556951170596, + 5250.033562125804 + ], + [ + 1917.556951170596, + 5250.033562125804 + ], + [ + 1914.556951170596, + 5250.033562125804 + ], + [ + 1912.149189260411, + 5250.62580021562 + ], + [ + 1912.149189260411, + 5253.62580021562 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "561273", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1980.691071794184, + "min_y": 5254.519404233179, + "max_x": 1984.777591102556, + "max_y": 5258.058433767285, + "center": [ + 1982.73433144837, + 5256.2889190002315 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1984.777591102556, + 5254.519404233179 + ], + [ + 1982.734331448371, + 5258.058433767285 + ], + [ + 1980.691071794184, + 5254.519404233179 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "561274", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1982.308779873597, + "min_y": 5255.14764415784, + "max_x": 1983.2039322406733, + "max_y": 5256.639564769634, + "center": [ + 1982.7563560571352, + 5255.893604463737 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "5612AB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5274.924542958456, + "max_x": 1957.626740763788, + "max_y": 5275.933831746741, + "center": [ + 1957.626740763788, + 5275.429187352598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5274.924542958456 + ], + [ + 1957.626740763788, + 5275.933831746741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612AC", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5275.103734986257, + "max_x": 1956.8025404202247, + "max_y": 5275.749789121245, + "center": [ + 1956.479513352731, + 5275.426762053751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.479513352731, + 5275.426762053751 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612AD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.75877537237, + "min_y": 5274.924542958456, + "max_x": 1957.326405680374, + "max_y": 5275.264406854504, + "center": [ + 1957.042590526372, + 5275.09447490648 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.75877537237, + 5275.264406854504 + ], + [ + 1957.326405680374, + 5274.924542958456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612AE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.326405680374, + "min_y": 5274.924542958456, + "max_x": 1957.326405680374, + "max_y": 5275.933831746741, + "center": [ + 1957.326405680374, + 5275.429187352598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5274.924542958456 + ], + [ + 1957.326405680374, + 5275.933831746741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612AF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.756660521092, + "min_y": 5275.592701601186, + "max_x": 1957.326405680374, + "max_y": 5275.933831746741, + "center": [ + 1957.041533100733, + 5275.763266673963 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5275.933831746741 + ], + [ + 1956.756660521092, + 5275.592701601186 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612B0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5274.924542958456, + "max_x": 1956.206416844492, + "max_y": 5275.263247805163, + "center": [ + 1955.9235695949114, + 5275.0938953818095 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.206416844492, + 5275.263247805163 + ], + [ + 1955.640722345331, + 5274.924542958456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612B1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5274.924542958456, + "max_x": 1955.640722345331, + "max_y": 5275.933831746741, + "center": [ + 1955.640722345331, + 5275.429187352598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5274.924542958456 + ], + [ + 1955.640722345331, + 5275.933831746741 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612B2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5275.595126900032, + "max_x": 1956.206416844492, + "max_y": 5275.933831746741, + "center": [ + 1955.9235695949114, + 5275.764479323387 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5275.933831746741 + ], + [ + 1956.206416844492, + 5275.595126900032 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612B3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5274.924542958456, + "max_x": 1955.403073995256, + "max_y": 5275.933831746741, + "center": [ + 1955.403073995256, + 5275.429187352598 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.403073995256, + 5275.933831746741 + ], + [ + 1955.403073995256, + 5274.924542958456 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5612B4", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5275.422488853283, + "max_x": 1966.42686520761, + "max_y": 5275.422488853283, + "center": [ + 1962.0268029856989, + 5275.422488853283 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5275.422488853283 + ], + [ + 1966.42686520761, + 5275.422488853283 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561394", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5265.617833730601, + "max_x": 1957.626740763788, + "max_y": 5266.627122518888, + "center": [ + 1957.626740763788, + 5266.122478124745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5265.617833730601 + ], + [ + 1957.626740763788, + 5266.627122518888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "561395", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5265.797025758403, + "max_x": 1956.8025404202247, + "max_y": 5266.443079893391, + "center": [ + 1956.479513352731, + 5266.120052825897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.479513352731, + 5266.120052825897 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "561396", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.75877537237, + "min_y": 5265.617833730601, + "max_x": 1957.326405680374, + "max_y": 5265.95769762665, + "center": [ + 1957.042590526372, + 5265.787765678626 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.75877537237, + 5265.95769762665 + ], + [ + 1957.326405680374, + 5265.617833730601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "561397", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.326405680374, + "min_y": 5265.617833730601, + "max_x": 1957.326405680374, + "max_y": 5266.627122518888, + "center": [ + 1957.326405680374, + 5266.122478124745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5265.617833730601 + ], + [ + 1957.326405680374, + 5266.627122518888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "561398", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.756660521092, + "min_y": 5266.285992373331, + "max_x": 1957.326405680374, + "max_y": 5266.627122518888, + "center": [ + 1957.041533100733, + 5266.45655744611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5266.627122518888 + ], + [ + 1956.756660521092, + 5266.285992373331 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "561399", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5265.617833730601, + "max_x": 1956.206416844492, + "max_y": 5265.956538577309, + "center": [ + 1955.9235695949114, + 5265.787186153955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.206416844492, + 5265.956538577309 + ], + [ + 1955.640722345331, + 5265.617833730601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "56139A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5265.617833730601, + "max_x": 1955.640722345331, + "max_y": 5266.627122518888, + "center": [ + 1955.640722345331, + 5266.122478124745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5265.617833730601 + ], + [ + 1955.640722345331, + 5266.627122518888 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "56139B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5266.288417672178, + "max_x": 1956.206416844492, + "max_y": 5266.627122518888, + "center": [ + 1955.9235695949114, + 5266.457770095533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5266.627122518888 + ], + [ + 1956.206416844492, + 5266.288417672178 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "56139C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5265.617833730601, + "max_x": 1955.403073995256, + "max_y": 5266.627122518888, + "center": [ + 1955.403073995256, + 5266.122478124745 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.403073995256, + 5266.627122518888 + ], + [ + 1955.403073995256, + 5265.617833730601 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "56139D", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5266.119692280014, + "max_x": 1966.42686520761, + "max_y": 5266.119692280014, + "center": [ + 1962.0268029856989, + 5266.119692280014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5266.119692280014 + ], + [ + 1966.42686520761, + 5266.119692280014 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "5613CF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1954.930910280769, + "min_y": 5274.054835803539, + "max_x": 1958.160662207536, + "max_y": 5276.800124941292, + "center": [ + 1956.5457862441526, + 5275.427480372416 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.930910280769, + 5276.800124941292 + ], + [ + 1955.930910280768, + 5276.800124941292 + ], + [ + 1956.930910280768, + 5276.800124941292 + ], + [ + 1957.930910280768, + 5276.800124941292 + ], + [ + 1958.160662207536, + 5276.02987686806 + ], + [ + 1958.160662207536, + 5275.029876868059 + ], + [ + 1958.135703272057, + 5274.054835803539 + ], + [ + 1957.135703272057, + 5274.054835803539 + ], + [ + 1956.135703272057, + 5274.054835803539 + ], + [ + 1955.135703272057, + 5274.054835803539 + ], + [ + 1954.930910280769, + 5274.850042812252 + ], + [ + 1954.930910280769, + 5275.850042812251 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5613FD", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1954.947405754414, + "min_y": 5264.637283573239, + "max_x": 1958.177157681182, + "max_y": 5267.382572710991, + "center": [ + 1956.562281717798, + 5266.009928142115 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.947405754414, + 5267.382572710991 + ], + [ + 1955.947405754413, + 5267.382572710991 + ], + [ + 1956.947405754414, + 5267.382572710991 + ], + [ + 1957.947405754413, + 5267.382572710991 + ], + [ + 1958.177157681182, + 5266.612324637758 + ], + [ + 1958.177157681182, + 5265.612324637758 + ], + [ + 1958.152198745702, + 5264.637283573239 + ], + [ + 1957.152198745702, + 5264.637283573239 + ], + [ + 1956.152198745702, + 5264.637283573239 + ], + [ + 1955.152198745702, + 5264.637283573239 + ], + [ + 1954.947405754414, + 5265.43249058195 + ], + [ + 1954.947405754414, + 5266.432490581951 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "56142C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1954.607318706119, + "min_y": 5269.191866472139, + "max_x": 1958.693838014491, + "max_y": 5272.730896006244, + "center": [ + 1956.650578360305, + 5270.961381239191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1958.693838014491, + 5269.191866472139 + ], + [ + 1956.650578360306, + 5272.730896006244 + ], + [ + 1954.607318706119, + 5269.191866472139 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "56142D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1956.225026785532, + "min_y": 5269.820106396799, + "max_x": 1957.1201791526084, + "max_y": 5271.312027008593, + "center": [ + 1956.6726029690703, + 5270.566066702696 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561463", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4941.430094226793, + "min_y": 5228.912490918253, + "max_x": 4957.546684095524, + "max_y": 5230.591302362913, + "center": [ + 4949.488389161159, + 5229.751896640582 + ] + }, + "raw_value": "#9 Plant Utility", + "clean_value": "#9 Plant Utility", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "561464", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4938.724219587142, + "min_y": 5227.265111733828, + "max_x": 4938.724219587142, + "max_y": 5243.729174529696, + "center": [ + 4938.724219587142, + 5235.497143131763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4938.724219587142, + 5243.729174529696 + ], + [ + 4938.724219587142, + 5227.265111733828 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "561465", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.457157421786, + "min_y": 5227.265111733828, + "max_x": 4942.457157421786, + "max_y": 5243.729174529696, + "center": [ + 4942.457157421786, + 5235.497143131763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.457157421786, + 5243.729174529696 + ], + [ + 4942.457157421786, + 5227.265111733828 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "561466", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4938.724219587142, + "min_y": 5243.729174529696, + "max_x": 4942.457157421786, + "max_y": 5243.729174529696, + "center": [ + 4940.590688504464, + 5243.729174529696 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4938.724219587142, + 5243.729174529696 + ], + [ + 4942.457157421786, + 5243.729174529696 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "561467", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4938.724219587142, + "min_y": 5225.398642816504, + "max_x": 4940.590688504464, + "max_y": 5227.265111733828, + "center": [ + 4939.657454045803, + 5226.331877275166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4938.724219587142, + 5227.265111733828 + ], + [ + 4940.590688504464, + 5225.398642816504 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "561468", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4940.590688504464, + "min_y": 5225.398642816504, + "max_x": 4942.457157421786, + "max_y": 5227.265111733828, + "center": [ + 4941.523922963125, + 5226.331877275166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.457157421786, + 5227.265111733828 + ], + [ + 4940.590688504464, + 5225.398642816504 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "56146A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4936.972572202228, + "min_y": 5210.035273274187, + "max_x": 4939.703671261138, + "max_y": 5210.035273274187, + "center": [ + 4938.338121731683, + 5210.035273274187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4936.972572202228, + 5210.035273274187 + ], + [ + 4939.703671261138, + 5210.035273274187 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "561A1F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5112.036518696889, + "min_y": 4824.442619298467, + "max_x": 5133.768330390727, + "max_y": 4826.2536036062875, + "center": [ + 5122.902424543809, + 4825.348111452377 + ] + }, + "raw_value": "SARF-UTILITY-UFD-AIR", + "clean_value": "SARF-UTILITY-UFD-AIR", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 15 + } + }, + { + "entity_id": "561A20", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4850.592626628988, + "max_x": 5147.063535571487, + "max_y": 4850.592626628988, + "center": [ + 5115.435988195635, + 4850.592626628988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4850.592626628988 + ], + [ + 5083.808440819783, + 4850.592626628988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A21", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4861.277434045129, + "max_x": 5147.063535571487, + "max_y": 4861.277434045129, + "center": [ + 5115.435988195635, + 4861.277434045129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4861.277434045129 + ], + [ + 5083.808440819783, + 4861.277434045129 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A22", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4839.907819212849, + "max_x": 5147.063535571487, + "max_y": 4839.907819212849, + "center": [ + 5115.435988195635, + 4839.907819212849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4839.907819212849 + ], + [ + 5083.808440819783, + 4839.907819212849 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A23", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4839.907819212849, + "max_x": 5147.063535571487, + "max_y": 4839.907819212849, + "center": [ + 5115.435988195635, + 4839.907819212849 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4839.907819212849 + ], + [ + 5083.808440819783, + 4839.907819212849 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A24", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4850.592626628988, + "max_x": 5147.063535571487, + "max_y": 4850.592626628988, + "center": [ + 5115.435988195635, + 4850.592626628988 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4850.592626628988 + ], + [ + 5083.808440819783, + 4850.592626628988 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A25", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4861.277434045129, + "max_x": 5147.063535571487, + "max_y": 4861.277434045129, + "center": [ + 5115.435988195635, + 4861.277434045129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4861.277434045129 + ], + [ + 5083.808440819783, + 4861.277434045129 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A26", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4829.223011796718, + "max_x": 5147.063535571487, + "max_y": 4829.223011796718, + "center": [ + 5115.435988195635, + 4829.223011796718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4829.223011796718 + ], + [ + 5083.808440819783, + 4829.223011796718 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A27", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4829.223011796718, + "max_x": 5147.063535571487, + "max_y": 4829.223011796718, + "center": [ + 5115.435988195635, + 4829.223011796718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4829.223011796718 + ], + [ + 5083.808440819783, + 4829.223011796718 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A28", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4826.021450252535, + "max_x": 5106.199968225758, + "max_y": 4826.021450252535, + "center": [ + 5095.004204522771, + 4826.021450252535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.808440819783, + 4826.021450252535 + ], + [ + 5106.199968225758, + 4826.021450252535 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A29", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5097.047430270092, + "min_y": 4823.863201795342, + "max_x": 5099.968185761744, + "max_y": 4825.0801832501975, + "center": [ + 5098.507808015918, + 4824.471692522769 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A2A", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5097.047430270092, + "min_y": 4823.863201795342, + "max_x": 5099.968185761744, + "max_y": 4825.0801832501975, + "center": [ + 5098.507808015918, + 4824.471692522769 + ] + }, + "raw_value": "NONE", + "clean_value": "NONE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5099.115078403603, + "min_y": 4826.778282827255, + "max_x": 5100.116713127294, + "max_y": 4828.447674033408, + "center": [ + 5099.615895765448, + 4827.612978430331 + ] + }, + "raw_value": "-", + "clean_value": "-", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A2C", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.256077833462, + "min_y": 4826.83184680646, + "max_x": 5090.367399943852, + "max_y": 4828.048828261315, + "center": [ + 5087.811738888657, + 4827.440337533888 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A2D", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.256077833462, + "min_y": 4826.83184680646, + "max_x": 5090.367399943852, + "max_y": 4828.048828261315, + "center": [ + 5087.811738888657, + 4827.440337533888 + ] + }, + "raw_value": "JOB NO.", + "clean_value": "JOB NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A2E", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.781856297246, + "min_y": 4823.889205260902, + "max_x": 5089.432800661811, + "max_y": 4825.106186715757, + "center": [ + 5087.607328479528, + 4824.49769598833 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A2F", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5085.781856297246, + "min_y": 4823.889205260902, + "max_x": 5089.432800661811, + "max_y": 4825.106186715757, + "center": [ + 5087.607328479528, + 4824.49769598833 + ] + }, + "raw_value": "SCALE", + "clean_value": "SCALE", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A30", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5092.695199530303, + "min_y": 4822.826356509446, + "max_x": 5092.695199530303, + "max_y": 4829.223011796718, + "center": [ + 5092.695199530303, + 4826.0246841530825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5092.695199530303, + 4829.223011796718 + ], + [ + 5092.695199530303, + 4822.826356509446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A31", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5107.647819253656, + "min_y": 4827.194043668023, + "max_x": 5112.759141364047, + "max_y": 4828.4110251228785, + "center": [ + 5110.203480308852, + 4827.8025343954505 + ] + }, + "raw_value": "DWG NO.", + "clean_value": "DWG NO.", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A32", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5106.199968225758, + "min_y": 4822.826356509446, + "max_x": 5106.199968225758, + "max_y": 4829.223011796718, + "center": [ + 5106.199968225758, + 4826.0246841530825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5106.199968225758, + 4829.223011796718 + ], + [ + 5106.199968225758, + 4822.826356509446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A33", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4837.677060495654, + "max_x": 5089.997628451179, + "max_y": 4838.894041950509, + "center": [ + 5087.441967395984, + 4838.285551223082 + ] + }, + "raw_value": "TITLE :", + "clean_value": "TITLE :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A34", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4859.046675327934, + "max_x": 5089.997628451179, + "max_y": 4860.263656782789, + "center": [ + 5087.441967395984, + 4859.655166055361 + ] + }, + "raw_value": "ONWER :", + "clean_value": "ONWER :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A35", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4869.038277940259, + "max_x": 5093.648572815743, + "max_y": 4870.255259395114, + "center": [ + 5089.267439578265, + 4869.646768667686 + ] + }, + "raw_value": "PROJECT NAME", + "clean_value": "PROJECT NAME", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A36", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5141.04201274799, + "min_y": 4824.223401546919, + "max_x": 5146.011433412603, + "max_y": 4824.223401546919, + "center": [ + 5143.5267230802965, + 4824.223401546919 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5141.04201274799, + 4824.223401546919 + ], + [ + 5146.011433412603, + 4824.223401546919 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A37", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5141.04201274799, + "min_y": 4824.223401546919, + "max_x": 5143.499777165747, + "max_y": 4828.530957079088, + "center": [ + 5142.270894956869, + 4826.377179313004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5141.04201274799, + 4824.223401546919 + ], + [ + 5143.499777165747, + 4828.530957079088 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A38", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5141.04201274799, + "min_y": 4824.223401546919, + "max_x": 5143.499777165747, + "max_y": 4828.530957079088, + "center": [ + 5142.270894956869, + 4826.377179313004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5141.04201274799, + 4824.223401546919 + ], + [ + 5143.499777165747, + 4828.530957079088 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A39", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5140.311151223762, + "min_y": 4822.826356509446, + "max_x": 5140.311151223762, + "max_y": 4829.223011796718, + "center": [ + 5140.311151223762, + 4826.0246841530825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5140.311151223762, + 4829.223011796718 + ], + [ + 5140.311151223762, + 4822.826356509446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A3A", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5143.499777165747, + "min_y": 4824.223401546919, + "max_x": 5146.011433412603, + "max_y": 4828.530957079088, + "center": [ + 5144.755605289175, + 4826.377179313004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5143.499777165747, + 4828.530957079088 + ], + [ + 5146.011433412603, + 4824.223401546919 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A3B", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4871.069684909549, + "max_x": 5147.063535571487, + "max_y": 4871.069684909549, + "center": [ + 5115.435988195635, + 4871.069684909549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4871.069684909549 + ], + [ + 5083.808440819783, + 4871.069684909549 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A3C", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4871.069684909549, + "max_x": 5147.063535571487, + "max_y": 4871.069684909549, + "center": [ + 5115.435988195635, + 4871.069684909549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.063535571487, + 4871.069684909549 + ], + [ + 5083.808440819783, + 4871.069684909549 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A3D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5142.901707428997, + "min_y": 4825.032279129249, + "max_x": 5144.065911626881, + "max_y": 4826.972619459056, + "center": [ + 5143.483809527939, + 4826.002449294152 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "561A3E", + "entity_type": "LINE", + "layer": "TITLE", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4822.826356509446, + "max_x": 5083.808440819783, + "max_y": 4871.069684909549, + "center": [ + 5083.808440819783, + 4846.9480207094975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.808440819783, + 4871.069684909549 + ], + [ + 5083.808440819783, + 4822.826356509446 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A3F", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5102.742478150285, + "min_y": 4854.599506897166, + "max_x": 5148.2096609762575, + "max_y": 4857.212563381418, + "center": [ + 5125.476069563271, + 4855.906035139292 + ] + }, + "raw_value": "SHINAM REFINED FUEL CO.,LTD. ", + "clean_value": "SHINAM REFINED FUEL CO.,LTD.", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "561A48", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.198902865235, + "min_y": 4857.39943549282, + "max_x": 5097.548562716591, + "max_y": 4857.39943549282, + "center": [ + 5097.373732790913, + 4857.39943549282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.198902865235, + 4857.39943549282 + ], + [ + 5097.548562716591, + 4857.39943549282 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A49", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.248828203054, + "min_y": 4856.219335562244, + "max_x": 5097.548562716591, + "max_y": 4856.219335562244, + "center": [ + 5097.398695459822, + 4856.219335562244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.219335562244 + ], + [ + 5097.248828203054, + 4856.219335562244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4A", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.446114975205, + "min_y": 4856.516022679167, + "max_x": 5097.548562716591, + "max_y": 4856.516022679167, + "center": [ + 5097.497338845898, + 4856.516022679167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.516022679167 + ], + [ + 5097.446114975205, + 4856.516022679167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4B", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.852096098253, + "min_y": 4856.012208424907, + "max_x": 5097.209576331239, + "max_y": 4856.012208424907, + "center": [ + 5097.030836214746, + 4856.012208424907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.209576331239, + 4856.012208424907 + ], + [ + 5096.852096098253, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4C", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5096.852096098253, + "min_y": 4856.012208424907, + "max_x": 5097.198902865235, + "max_y": 4857.39943549282, + "center": [ + 5097.025499481744, + 4856.705821958863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.198902865235, + 4857.39943549282 + ], + [ + 5096.852096098253, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4D", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.446114975205, + "min_y": 4856.516022679167, + "max_x": 5097.548562716591, + "max_y": 4856.925813644725, + "center": [ + 5097.497338845898, + 4856.7209181619455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.925813644725 + ], + [ + 5097.446114975205, + 4856.516022679167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4E", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.209576331239, + "min_y": 4856.012208424907, + "max_x": 5097.248828203054, + "max_y": 4856.219335562244, + "center": [ + 5097.229202267146, + 4856.115771993575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.248828203054, + 4856.219335562244 + ], + [ + 5097.209576331239, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A4F", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.548562716591, + "min_y": 4857.39943549282, + "max_x": 5097.898222567952, + "max_y": 4857.39943549282, + "center": [ + 5097.723392642271, + 4857.39943549282 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.898222567952, + 4857.39943549282 + ], + [ + 5097.548562716591, + 4857.39943549282 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A50", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.548562716591, + "min_y": 4856.219335562244, + "max_x": 5097.848297230133, + "max_y": 4856.219335562244, + "center": [ + 5097.698429973361, + 4856.219335562244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.219335562244 + ], + [ + 5097.848297230133, + 4856.219335562244 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A51", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.548562716591, + "min_y": 4856.516022679167, + "max_x": 5097.651010457981, + "max_y": 4856.516022679167, + "center": [ + 5097.599786587286, + 4856.516022679167 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.516022679167 + ], + [ + 5097.651010457981, + 4856.516022679167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A52", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.887549101947, + "min_y": 4856.012208424907, + "max_x": 5098.245029334929, + "max_y": 4856.012208424907, + "center": [ + 5098.066289218438, + 4856.012208424907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.887549101947, + 4856.012208424907 + ], + [ + 5098.245029334929, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A53", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.898222567952, + "min_y": 4856.012208424907, + "max_x": 5098.245029334929, + "max_y": 4857.39943549282, + "center": [ + 5098.071625951441, + 4856.705821958863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.898222567952, + 4857.39943549282 + ], + [ + 5098.245029334929, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A54", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.548562716591, + "min_y": 4856.516022679167, + "max_x": 5097.651010457981, + "max_y": 4856.925813644725, + "center": [ + 5097.599786587286, + 4856.7209181619455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.548562716591, + 4856.925813644725 + ], + [ + 5097.651010457981, + 4856.516022679167 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A55", + "entity_type": "LINE", + "layer": "0-BAS", + "bbox": { + "min_x": 5097.848297230133, + "min_y": 4856.012208424907, + "max_x": 5097.887549101947, + "max_y": 4856.219335562244, + "center": [ + 5097.86792316604, + 4856.115771993575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5097.848297230133, + 4856.219335562244 + ], + [ + 5097.887549101947, + 4856.012208424907 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A56", + "entity_type": "MTEXT", + "layer": "8-치수선", + "bbox": { + "min_x": 5097.699007989119, + "min_y": 4853.525777378415, + "max_x": 5104.624260704886, + "max_y": 4854.635559032741, + "center": [ + 5101.161634347003, + 4854.080668205578 + ] + }, + "raw_value": "{\\fMS PGothic|b1|i0|c129|p34;\\W1.2;\\C7;SHINAM}", + "clean_value": "\\fMS PGothic|b1|i0|c129|p34; .2; SHINAM", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561A57", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4730.019720684982, + "min_y": 4822.826356509446, + "max_x": 5147.063535571487, + "max_y": 5119.827782991894, + "center": [ + 4938.541628128234, + 4971.3270697506705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4730.019720684982, + 5119.827782991894 + ], + [ + 5147.063535571487, + 5119.827782991894 + ], + [ + 5147.063535571487, + 4822.826356509446 + ], + [ + 4730.019720684982, + 4822.826356509446 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A58", + "entity_type": "TEXT", + "layer": "1", + "bbox": { + "min_x": 5084.886306340788, + "min_y": 4848.361867911792, + "max_x": 5093.648572815743, + "max_y": 4849.578849366647, + "center": [ + 5089.267439578265, + 4848.970358639219 + ] + }, + "raw_value": "CONTRACTOR :", + "clean_value": "CONTRACTOR :", + "coordinates": [], + "properties": { + "color": 7, + "lineweight": 0 + } + }, + { + "entity_id": "561A59", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5112.840705480023, + "min_y": 4835.543014160517, + "max_x": 5123.5915664438, + "max_y": 4837.782776861303, + "center": [ + 5118.216135961911, + 4836.66289551091 + ] + }, + "raw_value": "OFF SITE", + "clean_value": "OFF SITE", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "561A5A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5105.027176597266, + "min_y": 4831.063488758944, + "max_x": 5126.528898524819, + "max_y": 4833.303251459731, + "center": [ + 5115.778037561042, + 4832.183370109337 + ] + }, + "raw_value": "AIR P&I DIAGRAM ", + "clean_value": "AIR P&I DIAGRAM", + "coordinates": [], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "561A5B", + "entity_type": "TEXT", + "layer": "SH1", + "bbox": { + "min_x": 5088.122661143856, + "min_y": 4864.360595862785, + "max_x": 5133.5898439698285, + "max_y": 4866.9736523470365, + "center": [ + 5110.856252556842, + 4865.667124104911 + ] + }, + "raw_value": "72MT/D SOLVENT RECOVERY PLANT", + "clean_value": "72MT/D SOLVENT RECOVERY PLANT", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": 0 + } + }, + { + "entity_id": "561A5C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5084.306415739448, + "min_y": 4871.834708230065, + "max_x": 5086.483925568874, + "max_y": 4872.742003992326, + "center": [ + 5085.395170654161, + 4872.288356111196 + ] + }, + "raw_value": "REV.", + "clean_value": "REV.", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A5D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5087.346936656957, + "min_y": 4871.069684909549, + "max_x": 5087.346936657075, + "max_y": 4894.435494829604, + "center": [ + 5087.346936657016, + 4882.752589869577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936656957, + 4871.069684909549 + ], + [ + 5087.346936657075, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A5E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819837, + "min_y": 4874.02134017854, + "max_x": 5147.06353557149, + "max_y": 4874.02134017854, + "center": [ + 5115.435988195664, + 4874.02134017854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4874.02134017854 + ], + [ + 5083.808440819837, + 4874.02134017854 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A5F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548613, + "min_y": 4874.021340178583, + "max_x": 5087.346936657042, + "max_y": 4877.423699287049, + "center": [ + 5085.645757102828, + 4875.722519732816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657042, + 4875.722519732796 + ], + [ + 5085.645757102786, + 4877.423699287049 + ], + [ + 5083.944577548613, + 4875.722519732796 + ], + [ + 5085.645757102786, + 4874.021340178583 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A60", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548613, + "min_y": 4877.423699287049, + "max_x": 5087.346936657042, + "max_y": 4880.826058395521, + "center": [ + 5085.645757102828, + 4879.124878841285 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657042, + 4879.124878841306 + ], + [ + 5085.645757102786, + 4880.826058395521 + ], + [ + 5083.944577548613, + 4879.124878841306 + ], + [ + 5085.645757102786, + 4877.423699287049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A61", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548613, + "min_y": 4880.826058395521, + "max_x": 5087.346936657042, + "max_y": 4884.22841750399, + "center": [ + 5085.645757102828, + 4882.5272379497555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657042, + 4882.527237949775 + ], + [ + 5085.645757102786, + 4884.22841750399 + ], + [ + 5083.944577548613, + 4882.527237949775 + ], + [ + 5085.645757102786, + 4880.826058395521 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A62", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548613, + "min_y": 4884.22841750399, + "max_x": 5087.346936657042, + "max_y": 4887.630776612501, + "center": [ + 5085.645757102828, + 4885.929597058246 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657042, + 4885.929597058245 + ], + [ + 5085.645757102786, + 4887.630776612501 + ], + [ + 5083.944577548613, + 4885.929597058245 + ], + [ + 5085.645757102786, + 4884.22841750399 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A63", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5091.402589167404, + "min_y": 4871.834708230065, + "max_x": 5094.035151868207, + "max_y": 4872.9316093554, + "center": [ + 5092.718870517805, + 4872.3831587927325 + ] + }, + "raw_value": "DATE", + "clean_value": "DATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A64", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5136.614763241244, + "min_y": 4871.06968490959, + "max_x": 5136.614763241356, + "max_y": 4894.435494829604, + "center": [ + 5136.614763241299, + 4882.752589869597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5136.614763241244, + 4871.06968490959 + ], + [ + 5136.614763241356, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A65", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5131.582109039889, + "min_y": 4871.069684909549, + "max_x": 5131.582109039936, + "max_y": 4894.435494829604, + "center": [ + 5131.582109039912, + 4882.752589869577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5131.582109039889, + 4871.069684909549 + ], + [ + 5131.582109039936, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A66", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5132.259931409417, + "min_y": 4871.834708230065, + "max_x": 5134.8924941102205, + "max_y": 4872.9316093554, + "center": [ + 5133.576212759819, + 4872.3831587927325 + ] + }, + "raw_value": "APPD", + "clean_value": "APPD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A67", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5125.911510525763, + "min_y": 4871.069684909549, + "max_x": 5125.911510525806, + "max_y": 4894.435494829604, + "center": [ + 5125.911510525784, + 4882.752589869577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.911510525763, + 4871.069684909549 + ], + [ + 5125.911510525806, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A68", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5126.913417901978, + "min_y": 4871.834708230065, + "max_x": 5129.545980602782, + "max_y": 4872.9316093554, + "center": [ + 5128.229699252381, + 4872.3831587927325 + ] + }, + "raw_value": "CHKD", + "clean_value": "CHKD", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A69", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5120.240912011634, + "min_y": 4871.069684909549, + "max_x": 5120.240912011746, + "max_y": 4894.435494829604, + "center": [ + 5120.24091201169, + 4882.752589869577 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5120.240912011634, + 4871.069684909549 + ], + [ + 5120.240912011746, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5121.195809339673, + "min_y": 4871.834708230065, + "max_x": 5123.828372040477, + "max_y": 4872.9316093554, + "center": [ + 5122.512090690076, + 4872.3831587927325 + ] + }, + "raw_value": "DRWN", + "clean_value": "DRWN", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5105.052478975139, + "min_y": 4871.834708230065, + "max_x": 5112.292026402348, + "max_y": 4872.9316093554, + "center": [ + 5108.672252688743, + 4872.3831587927325 + ] + }, + "raw_value": "DESCRIPTION", + "clean_value": "DESCRIPTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5098.936985246526, + "min_y": 4871.06968490959, + "max_x": 5098.936985246571, + "max_y": 4894.435494829604, + "center": [ + 5098.936985246548, + 4882.752589869597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5098.936985246571, + 4894.435494829604 + ], + [ + 5098.936985246526, + 4871.06968490959 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6D", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5139.311053479491, + "min_y": 4871.782468143829, + "max_x": 5143.259897530696, + "max_y": 4872.879369269163, + "center": [ + 5141.285475505094, + 4872.330918706496 + ] + }, + "raw_value": "REMARK", + "clean_value": "REMARK", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548614, + "min_y": 4887.630776612501, + "max_x": 5087.346936657045, + "max_y": 4891.033135721011, + "center": [ + 5085.6457571028295, + 4889.331956166756 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657045, + 4889.331956166755 + ], + [ + 5085.645757102787, + 4891.033135721011 + ], + [ + 5083.944577548614, + 4889.331956166755 + ], + [ + 5085.645757102787, + 4887.630776612501 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A6F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5083.944577548663, + "min_y": 4891.033135721489, + "max_x": 5087.346936657094, + "max_y": 4894.435494829999, + "center": [ + 5085.645757102879, + 4892.734315275744 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5087.346936657094, + 4892.734315275745 + ], + [ + 5085.645757102837, + 4894.435494829999 + ], + [ + 5083.944577548663, + 4892.734315275745 + ], + [ + 5085.645757102837, + 4891.033135721489 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A70", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819787, + "min_y": 4871.069684909652, + "max_x": 5083.808440819903, + "max_y": 4894.435494829604, + "center": [ + 5083.808440819845, + 4882.752589869628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.808440819787, + 4871.069684909652 + ], + [ + 5083.808440819903, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A71", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819826, + "min_y": 4877.423699287049, + "max_x": 5147.06353557149, + "max_y": 4877.423699287049, + "center": [ + 5115.435988195658, + 4877.423699287049 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4877.423699287049 + ], + [ + 5083.808440819826, + 4877.423699287049 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A72", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819819, + "min_y": 4880.826058395561, + "max_x": 5147.06353557149, + "max_y": 4880.826058395561, + "center": [ + 5115.435988195655, + 4880.826058395561 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4880.826058395561 + ], + [ + 5083.808440819819, + 4880.826058395561 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A73", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.80844081981, + "min_y": 4884.228417504073, + "max_x": 5147.06353557149, + "max_y": 4884.228417504073, + "center": [ + 5115.43598819565, + 4884.228417504073 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4884.228417504073 + ], + [ + 5083.80844081981, + 4884.228417504073 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A74", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819799, + "min_y": 4887.630776612584, + "max_x": 5147.06353557149, + "max_y": 4887.630776612584, + "center": [ + 5115.435988195644, + 4887.630776612584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4887.630776612584 + ], + [ + 5083.808440819799, + 4887.630776612584 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819792, + "min_y": 4891.033135721094, + "max_x": 5147.06353557149, + "max_y": 4891.033135721094, + "center": [ + 5115.435988195641, + 4891.033135721094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4891.033135721094 + ], + [ + 5083.808440819792, + 4891.033135721094 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A76", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5083.808440819783, + "min_y": 4894.435494829604, + "max_x": 5147.06353557149, + "max_y": 4894.435494829604, + "center": [ + 5115.435988195637, + 4894.435494829604 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5147.06353557149, + 4894.435494829604 + ], + [ + 5083.808440819783, + 4894.435494829604 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A77", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5102.278794505371, + "min_y": 4843.194652689247, + "max_x": 5125.134036747132, + "max_y": 4845.435362712949, + "center": [ + 5113.706415626251, + 4844.315007701098 + ] + }, + "raw_value": "HANMO CORPORATION", + "clean_value": "HANMO CORPORATION", + "coordinates": [], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "561A78", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5096.726847672123, + "min_y": 4844.598419460471, + "max_x": 5100.121862859551, + "max_y": 4844.598419460471, + "center": [ + 5098.424355265837, + 4844.598419460471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5096.726847672123, + 4844.598419460471 + ], + [ + 5100.121862859551, + 4844.598419460471 + ] + ], + "properties": { + "color": 3, + "lineweight": -1 + } + }, + { + "entity_id": "561A79", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5107.0103975072, + "min_y": 4878.672288182009, + "max_x": 5110.37004155838, + "max_y": 4879.60552264067, + "center": [ + 5108.690219532789, + 4879.138905411339 + ] + }, + "raw_value": "UPDATE", + "clean_value": "UPDATE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7A", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4878.645637698943, + "max_x": 5085.826980387472, + "max_y": 4879.578872157604, + "center": [ + 5085.547010049873, + 4879.112254928274 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7B", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.625032295526, + "min_y": 4878.658729164324, + "max_x": 5095.2244390474925, + "max_y": 4879.591963622985, + "center": [ + 5092.42473567151, + 4879.125346393654 + ] + }, + "raw_value": "2015.12.21", + "clean_value": "2015.12.21", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7C", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4882.047996807425, + "max_x": 5085.826980387472, + "max_y": 4882.981231266086, + "center": [ + 5085.547010049873, + 4882.514614036756 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7D", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4885.463447381248, + "max_x": 5085.826980387472, + "max_y": 4886.396681839909, + "center": [ + 5085.547010049873, + 4885.9300646105785 + ] + }, + "raw_value": "3", + "clean_value": "3", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7E", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4888.865806489731, + "max_x": 5085.826980387472, + "max_y": 4889.799040948392, + "center": [ + 5085.547010049873, + 4889.332423719061 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A7F", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712277, + "min_y": 4892.281257063594, + "max_x": 5085.826980387475, + "max_y": 4893.214491522255, + "center": [ + 5085.547010049876, + 4892.747874292925 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A80", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5085.267039712275, + "min_y": 4875.256370055812, + "max_x": 5085.826980387472, + "max_y": 4876.189604514473, + "center": [ + 5085.547010049873, + 4875.722987285142 + ] + }, + "raw_value": "0", + "clean_value": "0", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A81", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5103.001136243161, + "min_y": 4875.257772712815, + "max_x": 5111.960187046308, + "max_y": 4876.191007171476, + "center": [ + 5107.480661644735, + 4875.724389942145 + ] + }, + "raw_value": "FOR CONSTRUCTION", + "clean_value": "FOR CONSTRUCTION", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A82", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5089.625032295526, + "min_y": 4875.256370055812, + "max_x": 5095.2244390474925, + "max_y": 4876.189604514473, + "center": [ + 5092.42473567151, + 4875.722987285142 + ] + }, + "raw_value": "2008.09.24", + "clean_value": "2008.09.24", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A83", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5121.468766344531, + "min_y": 4875.257772712787, + "max_x": 5124.268469720515, + "max_y": 4876.191007171448, + "center": [ + 5122.868618032523, + 4875.724389942117 + ] + }, + "raw_value": "Y.J.S", + "clean_value": "Y.J.S", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A84", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5126.987410350059, + "min_y": 4875.257772712787, + "max_x": 5129.787113726043, + "max_y": 4876.191007171448, + "center": [ + 5128.387262038051, + 4875.724389942117 + ] + }, + "raw_value": "J.D.O", + "clean_value": "J.D.O", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A85", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5132.562089396488, + "min_y": 4875.257772712787, + "max_x": 5135.361792772472, + "max_y": 4876.191007171448, + "center": [ + 5133.96194108448, + 4875.724389942117 + ] + }, + "raw_value": "S.J.J", + "clean_value": "S.J.J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A86", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5121.442115861494, + "min_y": 4878.660131821298, + "max_x": 5124.241819237478, + "max_y": 4879.593366279959, + "center": [ + 5122.841967549486, + 4879.126749050629 + ] + }, + "raw_value": "P.J.S", + "clean_value": "P.J.S", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A87", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5126.978526855713, + "min_y": 4878.672288181983, + "max_x": 5129.778230231697, + "max_y": 4879.605522640644, + "center": [ + 5128.378378543705, + 4879.138905411313 + ] + }, + "raw_value": "B.M.J", + "clean_value": "B.M.J", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A88", + "entity_type": "TEXT", + "layer": "REV.UPDATE", + "bbox": { + "min_x": 5132.654664758621, + "min_y": 4878.672288181983, + "max_x": 5135.454368134605, + "max_y": 4879.605522640644, + "center": [ + 5134.054516446613, + 4879.138905411313 + ] + }, + "raw_value": "H.J.I", + "clean_value": "H.J.I", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "561A89", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 5035.995286441461, + "max_x": 4802.882442491021, + "max_y": 5055.593210073346, + "center": [ + 4802.882442491021, + 5045.7942482574035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.882442491021, + 5055.593210073346 + ], + [ + 4802.882442491021, + 5035.995286441461 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A8C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4791.683628987088, + "min_y": 5035.995286441461, + "max_x": 4791.683628987088, + "max_y": 5055.593210073346, + "center": [ + 4791.683628987088, + 5045.7942482574035 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4791.683628987088, + 5035.995286441461 + ], + [ + 4791.683628987088, + 5055.593210073346 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A8D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 5052.087860519538, + "max_x": 4787.495412407075, + "max_y": 5054.730069409941, + "center": [ + 4787.495412407075, + 5053.408964964739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 5054.730069409941 + ], + [ + 4787.495412407075, + 5052.087860519538 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A8E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 5059.860422371952, + "max_x": 4787.495412407075, + "max_y": 5061.013979555269, + "center": [ + 4787.495412407075, + 5060.43720096361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 5061.013979555269 + ], + [ + 4787.495412407075, + 5059.860422371952 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A8F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5059.113834805024, + "max_x": 4788.629627216802, + "max_y": 5059.113834805024, + "center": [ + 4787.4954124070755, + 5059.113834805024 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 5059.113834805024 + ], + [ + 4786.361197597349, + 5059.113834805024 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A90", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5055.476656976871, + "max_x": 4788.629627216802, + "max_y": 5055.476656976871, + "center": [ + 4787.4954124070755, + 5055.476656976871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 5055.476656976871 + ], + [ + 4786.361197597349, + 5055.476656976871 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A91", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5057.874221891796, + "max_x": 4787.134317522162, + "max_y": 5059.113834805024, + "center": [ + 4786.747757559755, + 5058.49402834841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4786.361197597349, + 5059.113834805024 + ], + [ + 4787.134317522162, + 5057.874221891796 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A92", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4787.856507291988, + "min_y": 5057.874221891796, + "max_x": 4788.629627216802, + "max_y": 5059.113834805024, + "center": [ + 4788.243067254395, + 5058.49402834841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 5059.113834805024 + ], + [ + 4787.856507291988, + 5057.874221891796 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A93", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.813061525589, + "min_y": 5056.612895009465, + "max_x": 4788.1777632885605, + "max_y": 5057.977596772437, + "center": [ + 4787.495412407075, + 5057.295245890951 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 5057.295245890951 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A94", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5055.476656976871, + "max_x": 4787.134317522162, + "max_y": 5056.716269890105, + "center": [ + 4786.747757559755, + 5056.096463433488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.134317522162, + 5056.716269890105 + ], + [ + 4786.361197597349, + 5055.476656976871 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A95", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4787.856507291988, + "min_y": 5055.476656976871, + "max_x": 4788.629627216802, + "max_y": 5056.716269890105, + "center": [ + 4788.243067254395, + 5056.096463433488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.856507291988, + 5056.716269890105 + ], + [ + 4788.629627216802, + 5055.476656976871 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A96", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5054.730069409941, + "max_x": 4788.629627216802, + "max_y": 5054.730069409941, + "center": [ + 4787.4954124070755, + 5054.730069409941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 5054.730069409941 + ], + [ + 4786.361197597349, + 5054.730069409941 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A97", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 5059.860422371952, + "max_x": 4788.629627216802, + "max_y": 5059.860422371952, + "center": [ + 4787.4954124070755, + 5059.860422371952 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 5059.860422371952 + ], + [ + 4786.361197597349, + 5059.860422371952 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A98", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4783.76247457243, + "min_y": 5061.0139795552695, + "max_x": 4791.228350241719, + "max_y": 5068.479855224559, + "center": [ + 4787.495412407075, + 5064.746917389914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 5064.746917389914 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A99", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4786.274944489216, + "min_y": 5065.404161353848, + "max_x": 4788.289252676542, + "max_y": 5067.082751509953, + "center": [ + 4787.2820985828785, + 5066.243456431901 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4785.451838219032, + "min_y": 5062.415288155037, + "max_x": 4789.480454593683, + "max_y": 5064.093878311141, + "center": [ + 4787.466146406357, + 5063.254583233089 + ] + }, + "raw_value": "2901", + "clean_value": "2901", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 5052.087860519538, + "max_x": 4791.683628987088, + "max_y": 5052.087860519538, + "center": [ + 4789.589520697082, + 5052.087860519538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 5052.087860519538 + ], + [ + 4791.683628987088, + 5052.087860519538 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5031.030912912238, + "max_x": 4797.283035739055, + "max_y": 5033.195583065477, + "center": [ + 4797.283035739055, + 5032.113247988857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5031.030912912238 + ], + [ + 4797.283035739055, + 5033.195583065477 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5030.284325345308, + "max_x": 4798.417250548783, + "max_y": 5030.284325345308, + "center": [ + 4797.283035739056, + 5030.284325345308 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 5030.284325345308 + ], + [ + 4796.148820929329, + 5030.284325345308 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5026.647147517156, + "max_x": 4798.417250548783, + "max_y": 5026.647147517156, + "center": [ + 4797.283035739056, + 5026.647147517156 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 5026.647147517156 + ], + [ + 4796.148820929329, + 5026.647147517156 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561A9F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5029.044712432082, + "max_x": 4796.921940854141, + "max_y": 5030.284325345308, + "center": [ + 4796.535380891735, + 5029.664518888695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.148820929329, + 5030.284325345308 + ], + [ + 4796.921940854141, + 5029.044712432082 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4797.644130623967, + "min_y": 5029.044712432082, + "max_x": 4798.417250548783, + "max_y": 5030.284325345308, + "center": [ + 4798.0306905863745, + 5029.664518888695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 5030.284325345308 + ], + [ + 4797.644130623967, + 5029.044712432082 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA1", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.600684857565, + "min_y": 5027.78338554975, + "max_x": 4797.965386620537, + "max_y": 5029.148087312722, + "center": [ + 4797.283035739051, + 5028.465736431236 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739051, + 5028.465736431236 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5026.647147517156, + "max_x": 4796.921940854141, + "max_y": 5027.886760430391, + "center": [ + 4796.535380891735, + 5027.2669539737735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.921940854141, + 5027.886760430391 + ], + [ + 4796.148820929329, + 5026.647147517156 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4797.644130623967, + "min_y": 5026.647147517156, + "max_x": 4798.417250548783, + "max_y": 5027.886760430391, + "center": [ + 4798.0306905863745, + 5027.2669539737735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.644130623967, + 5027.886760430391 + ], + [ + 4798.417250548783, + 5026.647147517156 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5025.900559950227, + "max_x": 4798.417250548783, + "max_y": 5025.900559950227, + "center": [ + 4797.283035739056, + 5025.900559950227 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 5025.900559950227 + ], + [ + 4796.148820929329, + 5025.900559950227 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 5031.030912912238, + "max_x": 4798.417250548783, + "max_y": 5031.030912912238, + "center": [ + 4797.283035739056, + 5031.030912912238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 5031.030912912238 + ], + [ + 4796.148820929329, + 5031.030912912238 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5058.392913449328, + "max_x": 4797.283035739055, + "max_y": 5061.095591666427, + "center": [ + 4797.283035739055, + 5059.744252557877 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5061.095591666427 + ], + [ + 4797.283035739055, + 5058.392913449328 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4796.431626514894, + "min_y": 5060.297626050171, + "max_x": 4798.134444963214, + "max_y": 5060.297626050171, + "center": [ + 4797.283035739054, + 5060.297626050171 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.431626514894, + 5060.297626050171 + ], + [ + 4798.134444963214, + 5060.297626050171 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4779.011941463866, + "min_y": 4997.78769941092, + "max_x": 4783.715443135518, + "max_y": 4999.747491774108, + "center": [ + 4781.363692299692, + 4998.767595592514 + ] + }, + "raw_value": "AIR ", + "clean_value": "AIR", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AA9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4777.600436024943, + "min_y": 4993.794702180594, + "max_x": 4783.479813114508, + "max_y": 4995.754494543782, + "center": [ + 4780.540124569725, + 4994.774598362188 + ] + }, + "raw_value": "DRYER", + "clean_value": "DRYER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4775.449958406723, + "min_y": 4989.562740706013, + "max_x": 4785.905236997932, + "max_y": 5002.215467088223, + "center": [ + 4780.677597702328, + 4995.889103897118 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.449958406723, + 5002.215467088223 + ], + [ + 4775.449958406723, + 4989.562740706013 + ], + [ + 4785.905236997932, + 4989.562740706013 + ], + [ + 4785.905236997932, + 5002.215467088223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4778.281958004121, + "min_y": 5014.383274460436, + "max_x": 4792.392463019079, + "max_y": 5016.343066823624, + "center": [ + 4785.3372105116, + 5015.36317064203 + ] + }, + "raw_value": "AFTER COOLER", + "clean_value": "AFTER COOLER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5008.799477714958, + "max_x": 4795.995838056149, + "max_y": 5022.595030996208, + "center": [ + 4785.731257193897, + 5015.697254355583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 5022.595030996208 + ], + [ + 4775.466676331645, + 5008.799477714958 + ], + [ + 4795.995838056149, + 5008.799477714958 + ], + [ + 4795.995838056149, + 5022.595030996208 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 5074.020659937209, + "max_x": 4776.586557682038, + "max_y": 5088.296243776264, + "center": [ + 4776.586557682038, + 5081.158451856736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 5088.296243776264 + ], + [ + 4776.586557682038, + 5074.020659937209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5072.900778586816, + "max_x": 4775.466676331645, + "max_y": 5089.416125126658, + "center": [ + 4775.466676331645, + 5081.158451856737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 5089.416125126658 + ], + [ + 4775.466676331645, + 5072.900778586816 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AAF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 5074.020659937209, + "max_x": 4802.41430837384, + "max_y": 5074.020659937209, + "center": [ + 4789.500433027939, + 5074.020659937209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 5074.020659937209 + ], + [ + 4802.41430837384, + 5074.020659937209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5072.900778586816, + "max_x": 4803.534189724235, + "max_y": 5072.900778586816, + "center": [ + 4789.500433027941, + 5072.900778586816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 5072.900778586816 + ], + [ + 4803.534189724235, + 5072.900778586816 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 5088.296243776264, + "max_x": 4802.41430837384, + "max_y": 5088.296243776264, + "center": [ + 4789.500433027939, + 5088.296243776264 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 5088.296243776264 + ], + [ + 4802.41430837384, + 5088.296243776264 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5089.416125126658, + "max_x": 4803.534189724235, + "max_y": 5089.416125126658, + "center": [ + 4789.500433027941, + 5089.416125126658 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 5089.416125126658 + ], + [ + 4803.534189724235, + 5089.416125126658 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB3", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4780.025629643919, + "min_y": 5085.001678134724, + "max_x": 4795.703968549427, + "max_y": 5086.868147052046, + "center": [ + 4787.864799096673, + 5085.934912593385 + ] + }, + "raw_value": "AIR COMPRESSOR", + "clean_value": "AIR COMPRESSOR", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4802.41430837384, + "min_y": 5074.020659937209, + "max_x": 4802.41430837384, + "max_y": 5088.296243776264, + "center": [ + 4802.41430837384, + 5081.158451856736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.41430837384, + 5088.296243776264 + ], + [ + 4802.41430837384, + 5074.020659937209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.534189724235, + "min_y": 5072.900778586816, + "max_x": 4803.534189724235, + "max_y": 5089.416125126658, + "center": [ + 4803.534189724235, + 5081.158451856737 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.534189724235, + 5089.416125126658 + ], + [ + 4803.534189724235, + 5072.900778586816 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AB6", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 5093.17195581046, + "max_x": 4785.0979051264, + "max_y": 5094.711792667251, + "center": [ + 4780.282290729023, + 5093.941874238855 + ] + }, + "raw_value": "\\pi0.23403;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LK-2901}", + "clean_value": "\\pi0.23403; \\fArial|b1|i1|c238|p34; .3333x; K-2901", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5082.44442742427, + "max_x": 4807.018141495178, + "max_y": 5085.147105641372, + "center": [ + 4807.018141495178, + 5083.795766532821 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5085.147105641372 + ], + [ + 4807.018141495178, + 5082.44442742427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.534189724235, + "min_y": 5082.44442742427, + "max_x": 4807.018141495178, + "max_y": 5082.44442742427, + "center": [ + 4805.276165609706, + 5082.44442742427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5082.44442742427 + ], + [ + 4803.534189724235, + 5082.44442742427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4779.141143140233, + "min_y": 5082.314894098781, + "max_x": 4780.932953300862, + "max_y": 5083.808069232639, + "center": [ + 4780.037048220547, + 5083.061481665711 + ] + }, + "raw_value": "한신", + "clean_value": "한신", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 5048.013048791361, + "max_x": 4780.00179557999, + "max_y": 5072.900778586816, + "center": [ + 4780.00179557999, + 5060.456913689089 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4780.00179557999, + 5072.900778586816 + ], + [ + 4780.00179557999, + 5048.013048791361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 5048.013048791361, + "max_x": 4791.683628987088, + "max_y": 5048.013048791361, + "center": [ + 4785.842712283539, + 5048.013048791361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4780.00179557999, + 5048.013048791361 + ], + [ + 4791.683628987088, + 5048.013048791361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ABF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 5005.343526116473, + "max_x": 4805.99584687977, + "max_y": 5005.343526116473, + "center": [ + 4802.668353234629, + 5005.343526116473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.99584687977, + 5005.343526116473 + ], + [ + 4799.340859589487, + 5005.343526116473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 5009.494859202801, + "max_x": 4805.99584687977, + "max_y": 5009.494859202801, + "center": [ + 4802.668353234629, + 5009.494859202801 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.340859589487, + 5009.494859202801 + ], + [ + 4805.99584687977, + 5009.494859202801 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4806.488188110638, + "min_y": 5004.85775864984, + "max_x": 4806.488188110638, + "max_y": 5009.980626669435, + "center": [ + 4806.488188110638, + 5007.419192659638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.488188110638, + 5004.85775864984 + ], + [ + 4806.488188110638, + 5009.980626669435 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC2", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.99584687977, + "min_y": 5004.85775864984, + "max_x": 4805.99584687977, + "max_y": 5009.980626669435, + "center": [ + 4805.99584687977, + 5007.419192659638 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.99584687977, + 5004.85775864984 + ], + [ + 4805.99584687977, + 5009.980626669435 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 5009.494859202801, + "max_x": 4804.887017978852, + "max_y": 5010.630696562237, + "center": [ + 4804.887017978852, + 5010.062777882519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 5009.494859202801 + ], + [ + 4804.887017978852, + 5010.630696562237 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5011.377284129165, + "max_x": 4806.021232788578, + "max_y": 5011.377284129165, + "center": [ + 4804.887017978852, + 5011.377284129165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5011.377284129165 + ], + [ + 4806.021232788578, + 5011.377284129165 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5015.014461957317, + "max_x": 4806.021232788578, + "max_y": 5015.014461957317, + "center": [ + 4804.887017978852, + 5015.014461957317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5015.014461957317 + ], + [ + 4806.021232788578, + 5015.014461957317 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 5011.377284129165, + "max_x": 4806.021232788578, + "max_y": 5012.616897042392, + "center": [ + 4805.634672826172, + 5011.997090585779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.021232788578, + 5011.377284129165 + ], + [ + 4805.248112863766, + 5012.616897042392 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5011.377284129165, + "max_x": 4804.52592309394, + "max_y": 5012.616897042392, + "center": [ + 4804.139363131533, + 5011.997090585779 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5011.377284129165 + ], + [ + 4804.52592309394, + 5012.616897042392 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AC9", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 5012.513522161752, + "max_x": 4805.569368860342, + "max_y": 5013.878223924724, + "center": [ + 4804.887017978856, + 5013.195873043238 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978856, + 5013.195873043238 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 5013.774849044083, + "max_x": 4806.021232788578, + "max_y": 5015.014461957317, + "center": [ + 4805.634672826172, + 5014.3946555007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.248112863766, + 5013.774849044083 + ], + [ + 4806.021232788578, + 5015.014461957317 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5013.774849044083, + "max_x": 4804.52592309394, + "max_y": 5015.014461957317, + "center": [ + 4804.139363131533, + 5014.3946555007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.52592309394, + 5013.774849044083 + ], + [ + 4803.752803169125, + 5015.014461957317 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5015.761049524247, + "max_x": 4806.021232788578, + "max_y": 5015.761049524247, + "center": [ + 4804.887017978852, + 5015.761049524247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5015.761049524247 + ], + [ + 4806.021232788578, + 5015.761049524247 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5010.630696562237, + "max_x": 4806.021232788578, + "max_y": 5010.630696562237, + "center": [ + 4804.887017978852, + 5010.630696562237 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5010.630696562237 + ], + [ + 4806.021232788578, + 5010.630696562237 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 5004.207688757039, + "max_x": 4804.887017978852, + "max_y": 5005.343526116474, + "center": [ + 4804.887017978852, + 5004.775607436757 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 5005.343526116474 + ], + [ + 4804.887017978852, + 5004.207688757039 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ACF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5003.46110119011, + "max_x": 4806.021232788578, + "max_y": 5003.46110119011, + "center": [ + 4804.887017978852, + 5003.46110119011 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5003.46110119011 + ], + [ + 4806.021232788578, + 5003.46110119011 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4999.823923361957, + "max_x": 4806.021232788578, + "max_y": 4999.823923361957, + "center": [ + 4804.887017978852, + 4999.823923361957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4999.823923361957 + ], + [ + 4806.021232788578, + 4999.823923361957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 5002.221488276883, + "max_x": 4806.021232788578, + "max_y": 5003.46110119011, + "center": [ + 4805.634672826172, + 5002.841294733496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.021232788578, + 5003.46110119011 + ], + [ + 4805.248112863766, + 5002.221488276883 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5002.221488276883, + "max_x": 4804.52592309394, + "max_y": 5003.46110119011, + "center": [ + 4804.139363131533, + 5002.841294733496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5003.46110119011 + ], + [ + 4804.52592309394, + 5002.221488276883 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD3", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 5000.9601613945515, + "max_x": 4805.569368860342, + "max_y": 5002.324863157523, + "center": [ + 4804.887017978856, + 5001.642512276037 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978856, + 5001.642512276037 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 4999.823923361957, + "max_x": 4806.021232788578, + "max_y": 5001.063536275192, + "center": [ + 4805.634672826172, + 5000.443729818575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.248112863766, + 5001.063536275192 + ], + [ + 4806.021232788578, + 4999.823923361957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4999.823923361957, + "max_x": 4804.52592309394, + "max_y": 5001.063536275192, + "center": [ + 4804.139363131533, + 5000.443729818575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.52592309394, + 5001.063536275192 + ], + [ + 4803.752803169125, + 4999.823923361957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4999.077335795028, + "max_x": 4806.021232788578, + "max_y": 4999.077335795028, + "center": [ + 4804.887017978852, + 4999.077335795028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4999.077335795028 + ], + [ + 4806.021232788578, + 4999.077335795028 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 5004.207688757039, + "max_x": 4806.021232788578, + "max_y": 5004.207688757039, + "center": [ + 4804.887017978852, + 5004.207688757039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 5004.207688757039 + ], + [ + 4806.021232788578, + 5004.207688757039 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4985.586952246057, + "max_x": 4844.834469976966, + "max_y": 4985.586952246057, + "center": [ + 4836.435359849016, + 4985.586952246057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4985.586952246057 + ], + [ + 4828.036249721066, + 4985.586952246057 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AD9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4990.06647764763, + "max_x": 4844.834469976966, + "max_y": 4990.06647764763, + "center": [ + 4836.435359849016, + 4990.06647764763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4990.06647764763 + ], + [ + 4828.036249721066, + 4990.06647764763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4994.546003049205, + "max_x": 4844.834469976966, + "max_y": 4994.546003049205, + "center": [ + 4836.435359849016, + 4994.546003049205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4994.546003049205 + ], + [ + 4828.036249721066, + 4994.546003049205 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4842.594707276179, + "max_y": 4999.025528450777, + "center": [ + 4835.315478498623, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADD", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4994.546003049203, + "max_x": 4830.276012421853, + "max_y": 4999.025528450777, + "center": [ + 4828.036249721066, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADE", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4985.586952246057, + "max_x": 4847.074232677753, + "max_y": 4990.066477647631, + "center": [ + 4844.834469976966, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ADF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4990.06647764763, + "max_x": 4842.594707276179, + "max_y": 4990.06647764763, + "center": [ + 4835.315478498623, + 4990.06647764763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4990.06647764763 + ], + [ + 4828.036249721066, + 4990.06647764763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4994.546003049205, + "max_x": 4844.834469976966, + "max_y": 4994.546003049205, + "center": [ + 4836.435359849016, + 4994.546003049205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4994.546003049205 + ], + [ + 4828.036249721066, + 4994.546003049205 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE3", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4985.586952246057, + "max_x": 4830.276012421853, + "max_y": 4990.066477647631, + "center": [ + 4828.036249721066, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE4", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4994.546003049203, + "max_x": 4830.276012421853, + "max_y": 4999.025528450777, + "center": [ + 4828.036249721066, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE5", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4994.546003049203, + "max_x": 4847.074232677753, + "max_y": 4999.025528450777, + "center": [ + 4844.834469976966, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4985.586952246057, + "max_x": 4844.834469976966, + "max_y": 4985.586952246057, + "center": [ + 4836.435359849016, + 4985.586952246057 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4985.586952246057 + ], + [ + 4828.036249721066, + 4985.586952246057 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4990.06647764763, + "max_x": 4844.834469976966, + "max_y": 4990.06647764763, + "center": [ + 4836.435359849016, + 4990.06647764763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4990.06647764763 + ], + [ + 4828.036249721066, + 4990.06647764763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4994.546003049205, + "max_x": 4844.834469976966, + "max_y": 4994.546003049205, + "center": [ + 4836.435359849016, + 4994.546003049205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4994.546003049205 + ], + [ + 4828.036249721066, + 4994.546003049205 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AE9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AEA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4842.594707276179, + "max_y": 4999.025528450777, + "center": [ + 4835.315478498623, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AEB", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4994.546003049203, + "max_x": 4830.276012421853, + "max_y": 4999.025528450777, + "center": [ + 4828.036249721066, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AEC", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4985.586952246057, + "max_x": 4847.074232677753, + "max_y": 4990.066477647631, + "center": [ + 4844.834469976966, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AED", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4990.06647764763, + "max_x": 4842.594707276179, + "max_y": 4990.06647764763, + "center": [ + 4835.315478498623, + 4990.06647764763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4990.06647764763 + ], + [ + 4828.036249721066, + 4990.06647764763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AEE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4994.546003049205, + "max_x": 4844.834469976966, + "max_y": 4994.546003049205, + "center": [ + 4836.435359849016, + 4994.546003049205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4994.546003049205 + ], + [ + 4828.036249721066, + 4994.546003049205 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AEF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4999.025528450777, + "max_x": 4844.834469976966, + "max_y": 4999.025528450777, + "center": [ + 4836.435359849016, + 4999.025528450777 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4999.025528450777 + ], + [ + 4828.036249721066, + 4999.025528450777 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF1", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4985.586952246057, + "max_x": 4830.276012421853, + "max_y": 4990.066477647631, + "center": [ + 4828.036249721066, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF2", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4994.546003049203, + "max_x": 4830.276012421853, + "max_y": 4999.025528450777, + "center": [ + 4828.036249721066, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF3", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4994.546003049203, + "max_x": 4847.074232677753, + "max_y": 4999.025528450777, + "center": [ + 4844.834469976966, + 4996.78576574999 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4996.78576574999 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4836.558857225998, + "min_y": 4996.014621833667, + "max_x": 4839.918501277178, + "max_y": 4998.814325209651, + "center": [ + 4838.238679251588, + 4997.414473521659 + ] + }, + "raw_value": "A ", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4835.669348980617, + "min_y": 4986.289113903794, + "max_x": 4837.349171006207, + "max_y": 4989.088817279778, + "center": [ + 4836.509259993412, + 4987.688965591786 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4847.073978306442, + "min_y": 4996.819520720809, + "max_x": 4848.209815665875, + "max_y": 4996.819520720809, + "center": [ + 4847.641896986159, + 4996.819520720809 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.073978306442, + 4996.819520720809 + ], + [ + 4848.209815665875, + 4996.819520720809 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4995.685305911083, + "max_x": 4848.956403232805, + "max_y": 4997.953735530535, + "center": [ + 4848.956403232805, + 4996.819520720808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4995.685305911083 + ], + [ + 4848.956403232805, + 4997.953735530535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.593581060958, + "min_y": 4995.685305911083, + "max_x": 4852.593581060958, + "max_y": 4997.953735530535, + "center": [ + 4852.593581060958, + 4996.819520720808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.593581060958, + 4995.685305911083 + ], + [ + 4852.593581060958, + 4997.953735530535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AF9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4997.180615605723, + "max_x": 4850.196016146032, + "max_y": 4997.953735530535, + "center": [ + 4849.576209689419, + 4997.567175568129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4997.953735530535 + ], + [ + 4850.196016146032, + 4997.180615605723 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4995.685305911083, + "max_x": 4850.196016146032, + "max_y": 4996.458425835897, + "center": [ + 4849.576209689419, + 4996.0718658734895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4995.685305911083 + ], + [ + 4850.196016146032, + 4996.458425835897 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFB", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.092641265392, + "min_y": 4996.137169839326, + "max_x": 4851.4573430283635, + "max_y": 4997.501871602298, + "center": [ + 4850.774992146878, + 4996.819520720812 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.774992146878, + 4996.819520720812 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4997.180615605723, + "max_x": 4852.593581060958, + "max_y": 4997.953735530535, + "center": [ + 4851.973774604341, + 4997.567175568129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.353968147723, + 4997.180615605723 + ], + [ + 4852.593581060958, + 4997.953735530535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4995.685305911083, + "max_x": 4852.593581060958, + "max_y": 4996.458425835897, + "center": [ + 4851.973774604341, + 4996.0718658734895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.353968147723, + 4996.458425835897 + ], + [ + 4852.593581060958, + 4995.685305911083 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4853.340168627885, + "min_y": 4995.685305911083, + "max_x": 4853.340168627885, + "max_y": 4997.953735530535, + "center": [ + 4853.340168627885, + 4996.819520720808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.340168627885, + 4995.685305911083 + ], + [ + 4853.340168627885, + 4997.953735530535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561AFF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.209815665875, + "min_y": 4995.685305911083, + "max_x": 4848.209815665875, + "max_y": 4997.953735530535, + "center": [ + 4848.209815665875, + 4996.819520720808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.209815665875, + 4995.685305911083 + ], + [ + 4848.209815665875, + 4997.953735530535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B00", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4824.661307670703, + "min_y": 4996.73147819247, + "max_x": 4825.797145030137, + "max_y": 4996.73147819247, + "center": [ + 4825.22922635042, + 4996.73147819247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.797145030137, + 4996.73147819247 + ], + [ + 4824.661307670703, + 4996.73147819247 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B01", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4823.914720103774, + "min_y": 4995.597263382745, + "max_x": 4823.914720103774, + "max_y": 4997.865693002196, + "center": [ + 4823.914720103774, + 4996.731478192471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4995.597263382745 + ], + [ + 4823.914720103774, + 4997.865693002196 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B02", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4995.597263382745, + "max_x": 4820.277542275622, + "max_y": 4997.865693002196, + "center": [ + 4820.277542275622, + 4996.731478192471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4820.277542275622, + 4995.597263382745 + ], + [ + 4820.277542275622, + 4997.865693002196 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B03", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4997.092573077384, + "max_x": 4823.914720103774, + "max_y": 4997.865693002196, + "center": [ + 4823.29491364716, + 4997.47913303979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4997.865693002196 + ], + [ + 4822.675107190545, + 4997.092573077384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B04", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4995.597263382745, + "max_x": 4823.914720103774, + "max_y": 4996.370383307559, + "center": [ + 4823.29491364716, + 4995.983823345152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4995.597263382745 + ], + [ + 4822.675107190545, + 4996.370383307559 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B05", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.413780308215, + "min_y": 4996.049127310987, + "max_x": 4822.778482071187, + "max_y": 4997.413829073959, + "center": [ + 4822.096131189701, + 4996.731478192473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4822.096131189701, + 4996.731478192473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B06", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4997.092573077384, + "max_x": 4821.517155188854, + "max_y": 4997.865693002196, + "center": [ + 4820.897348732238, + 4997.47913303979 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.517155188854, + 4997.092573077384 + ], + [ + 4820.277542275622, + 4997.865693002196 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B07", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4995.597263382745, + "max_x": 4821.517155188854, + "max_y": 4996.370383307559, + "center": [ + 4820.897348732238, + 4995.983823345152 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.517155188854, + 4996.370383307559 + ], + [ + 4820.277542275622, + 4995.597263382745 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B08", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.530954708692, + "min_y": 4995.597263382745, + "max_x": 4819.530954708692, + "max_y": 4997.865693002196, + "center": [ + 4819.530954708692, + 4996.731478192471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.530954708692, + 4995.597263382745 + ], + [ + 4819.530954708692, + 4997.865693002196 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B09", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.661307670703, + "min_y": 4995.597263382745, + "max_x": 4824.661307670703, + "max_y": 4997.865693002196, + "center": [ + 4824.661307670703, + 4996.731478192471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.661307670703, + 4995.597263382745 + ], + [ + 4824.661307670703, + 4997.865693002196 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0A", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4847.074232677752, + "min_y": 4987.826714946844, + "max_x": 4848.210070037189, + "max_y": 4987.826714946844, + "center": [ + 4847.6421513574705, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.074232677752, + 4987.826714946844 + ], + [ + 4848.210070037189, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4986.692500137117, + "max_x": 4848.956657604118, + "max_y": 4988.96092975657, + "center": [ + 4848.956657604118, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4986.692500137117 + ], + [ + 4848.956657604118, + 4988.96092975657 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.593835432272, + "min_y": 4986.692500137117, + "max_x": 4852.593835432272, + "max_y": 4988.96092975657, + "center": [ + 4852.593835432272, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.593835432272, + 4986.692500137117 + ], + [ + 4852.593835432272, + 4988.96092975657 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4988.187809831757, + "max_x": 4850.196270517344, + "max_y": 4988.96092975657, + "center": [ + 4849.57646406073, + 4988.574369794163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4988.96092975657 + ], + [ + 4850.196270517344, + 4988.187809831757 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4986.692500137117, + "max_x": 4850.196270517344, + "max_y": 4987.465620061931, + "center": [ + 4849.57646406073, + 4987.079060099524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4986.692500137117 + ], + [ + 4850.196270517344, + 4987.465620061931 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B0F", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.092895636705, + "min_y": 4987.14436406536, + "max_x": 4851.457597399677, + "max_y": 4988.509065828332, + "center": [ + 4850.775246518191, + 4987.826714946846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.775246518191, + 4987.826714946846 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B10", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4988.187809831757, + "max_x": 4852.593835432272, + "max_y": 4988.96092975657, + "center": [ + 4851.974028975654, + 4988.574369794163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.354222519035, + 4988.187809831757 + ], + [ + 4852.593835432272, + 4988.96092975657 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B11", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4986.692500137117, + "max_x": 4852.593835432272, + "max_y": 4987.465620061931, + "center": [ + 4851.974028975654, + 4987.079060099524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.354222519035, + 4987.465620061931 + ], + [ + 4852.593835432272, + 4986.692500137117 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B12", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4853.340422999202, + "min_y": 4986.692500137117, + "max_x": 4853.340422999202, + "max_y": 4988.96092975657, + "center": [ + 4853.340422999202, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.340422999202, + 4986.692500137117 + ], + [ + 4853.340422999202, + 4988.96092975657 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B13", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.210070037189, + "min_y": 4986.692500137117, + "max_x": 4848.210070037189, + "max_y": 4988.96092975657, + "center": [ + 4848.210070037189, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.210070037189, + 4986.692500137117 + ], + [ + 4848.210070037189, + 4988.96092975657 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B14", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4824.661562042018, + "min_y": 4987.738672418505, + "max_x": 4825.797399401452, + "max_y": 4987.738672418505, + "center": [ + 4825.229480721735, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.797399401452, + 4987.738672418505 + ], + [ + 4824.661562042018, + 4987.738672418505 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B15", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4823.914974475088, + "min_y": 4986.604457608779, + "max_x": 4823.914974475088, + "max_y": 4988.872887228231, + "center": [ + 4823.914974475088, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4986.604457608779 + ], + [ + 4823.914974475088, + 4988.872887228231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B16", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4986.604457608779, + "max_x": 4820.277796646935, + "max_y": 4988.872887228231, + "center": [ + 4820.277796646935, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4820.277796646935, + 4986.604457608779 + ], + [ + 4820.277796646935, + 4988.872887228231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B17", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4988.099767303418, + "max_x": 4823.914974475088, + "max_y": 4988.872887228231, + "center": [ + 4823.295168018474, + 4988.486327265824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4988.872887228231 + ], + [ + 4822.675361561862, + 4988.099767303418 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B18", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4986.604457608779, + "max_x": 4823.914974475088, + "max_y": 4987.377577533592, + "center": [ + 4823.295168018474, + 4986.991017571185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4986.604457608779 + ], + [ + 4822.675361561862, + 4987.377577533592 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B19", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.414034679529, + "min_y": 4987.056321537021, + "max_x": 4822.778736442501, + "max_y": 4988.421023299993, + "center": [ + 4822.096385561015, + 4987.738672418507 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4822.096385561015, + 4987.738672418507 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4988.099767303418, + "max_x": 4821.51740956017, + "max_y": 4988.872887228231, + "center": [ + 4820.897603103553, + 4988.486327265824 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.51740956017, + 4988.099767303418 + ], + [ + 4820.277796646935, + 4988.872887228231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4986.604457608779, + "max_x": 4821.51740956017, + "max_y": 4987.377577533592, + "center": [ + 4820.897603103553, + 4986.991017571185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.51740956017, + 4987.377577533592 + ], + [ + 4820.277796646935, + 4986.604457608779 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.531209080005, + "min_y": 4986.604457608779, + "max_x": 4819.531209080005, + "max_y": 4988.872887228231, + "center": [ + 4819.531209080005, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.531209080005, + 4986.604457608779 + ], + [ + 4819.531209080005, + 4988.872887228231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.661562042018, + "min_y": 4986.604457608779, + "max_x": 4824.661562042018, + "max_y": 4988.872887228231, + "center": [ + 4824.661562042018, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.661562042018, + 4986.604457608779 + ], + [ + 4824.661562042018, + 4988.872887228231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4996.73147819247, + "max_x": 4819.530954708692, + "max_y": 4996.73147819247, + "center": [ + 4818.387441718471, + 4996.73147819247 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.530954708692, + 4996.73147819247 + ], + [ + 4817.243928728249, + 4996.73147819247 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B1F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4987.738672418505, + "max_x": 4817.243928728249, + "max_y": 4996.73147819247, + "center": [ + 4817.243928728249, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4817.243928728249, + 4996.73147819247 + ], + [ + 4817.243928728249, + 4987.738672418505 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B20", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4987.738672418505, + "max_x": 4819.531209080005, + "max_y": 4987.738672418505, + "center": [ + 4818.387568904127, + 4987.738672418505 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4817.243928728249, + 4987.738672418505 + ], + [ + 4819.531209080005, + 4987.738672418505 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B21", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4853.618385047774, + "min_y": 4997.155598839955, + "max_x": 4855.994716894842, + "max_y": 4997.155598839955, + "center": [ + 4854.806550971308, + 4997.155598839955 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.618385047774, + 4997.155598839955 + ], + [ + 4855.994716894842, + 4997.155598839955 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B22", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4987.826714946844, + "max_x": 4855.994716894842, + "max_y": 4997.155598839955, + "center": [ + 4855.994716894842, + 4992.491156893399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4997.155598839955 + ], + [ + 4855.994716894842, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B23", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4853.340422999202, + "min_y": 4987.826714946844, + "max_x": 4855.994716894842, + "max_y": 4987.826714946844, + "center": [ + 4854.667569947022, + 4987.826714946844 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4987.826714946844 + ], + [ + 4853.340422999202, + 4987.826714946844 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B24", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4801.370669789996, + "min_y": 4986.688916916121, + "max_x": 4801.370669789996, + "max_y": 4993.343904206404, + "center": [ + 4801.370669789996, + 4990.016410561262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4801.370669789996, + 4993.343904206404 + ], + [ + 4801.370669789996, + 4986.688916916121 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B25", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4986.688916916121, + "max_x": 4805.522002876323, + "max_y": 4993.343904206404, + "center": [ + 4805.522002876323, + 4990.016410561262 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.522002876323, + 4986.688916916121 + ], + [ + 4805.522002876323, + 4993.343904206404 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B26", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.884902323361, + "min_y": 4993.836245437272, + "max_x": 4806.007770342958, + "max_y": 4993.836245437272, + "center": [ + 4803.44633633316, + 4993.836245437272 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.884902323361, + 4993.836245437272 + ], + [ + 4806.007770342958, + 4993.836245437272 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B27", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.884902323361, + "min_y": 4993.343904206404, + "max_x": 4806.007770342958, + "max_y": 4993.343904206404, + "center": [ + 4803.44633633316, + 4993.343904206404 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.884902323361, + 4993.343904206404 + ], + [ + 4806.007770342958, + 4993.343904206404 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B29", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4992.235075305487, + "max_x": 4806.657840235759, + "max_y": 4992.235075305487, + "center": [ + 4806.089921556041, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.522002876323, + 4992.235075305487 + ], + [ + 4806.657840235759, + 4992.235075305487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4991.100860495761, + "max_x": 4807.404427802687, + "max_y": 4993.369290115214, + "center": [ + 4807.404427802687, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4991.100860495761 + ], + [ + 4807.404427802687, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4811.041605630842, + "min_y": 4991.100860495761, + "max_x": 4811.041605630842, + "max_y": 4993.369290115214, + "center": [ + 4811.041605630842, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.041605630842, + 4991.100860495761 + ], + [ + 4811.041605630842, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4992.596170190401, + "max_x": 4808.644040715915, + "max_y": 4993.369290115214, + "center": [ + 4808.024234259301, + 4992.982730152808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4993.369290115214 + ], + [ + 4808.644040715915, + 4992.596170190401 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4991.100860495761, + "max_x": 4808.644040715915, + "max_y": 4991.873980420575, + "center": [ + 4808.024234259301, + 4991.487420458168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4991.100860495761 + ], + [ + 4808.644040715915, + 4991.873980420575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2E", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4808.540665835274, + "min_y": 4991.552724424004, + "max_x": 4809.905367598246, + "max_y": 4992.917426186976, + "center": [ + 4809.22301671676, + 4992.23507530549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.22301671676, + 4992.23507530549 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B2F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4992.596170190401, + "max_x": 4811.041605630842, + "max_y": 4993.369290115214, + "center": [ + 4810.421799174224, + 4992.982730152808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.801992717606, + 4992.596170190401 + ], + [ + 4811.041605630842, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B30", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4991.100860495761, + "max_x": 4811.041605630842, + "max_y": 4991.873980420575, + "center": [ + 4810.421799174224, + 4991.487420458168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.801992717606, + 4991.873980420575 + ], + [ + 4811.041605630842, + 4991.100860495761 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B31", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4991.100860495761, + "max_x": 4811.78819319777, + "max_y": 4993.369290115214, + "center": [ + 4811.78819319777, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.78819319777, + 4991.100860495761 + ], + [ + 4811.78819319777, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B32", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4806.657840235759, + "min_y": 4991.100860495761, + "max_x": 4806.657840235759, + "max_y": 4993.369290115214, + "center": [ + 4806.657840235759, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.657840235759, + 4991.100860495761 + ], + [ + 4806.657840235759, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.234832430562, + "min_y": 4992.235075305487, + "max_x": 4801.370669789996, + "max_y": 4992.235075305487, + "center": [ + 4800.802751110279, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4801.370669789996, + 4992.235075305487 + ], + [ + 4800.234832430562, + 4992.235075305487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B34", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4799.488244863632, + "min_y": 4991.100860495761, + "max_x": 4799.488244863632, + "max_y": 4993.369290115214, + "center": [ + 4799.488244863632, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4991.100860495761 + ], + [ + 4799.488244863632, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B35", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4991.100860495761, + "max_x": 4795.851067035481, + "max_y": 4993.369290115214, + "center": [ + 4795.851067035481, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.851067035481, + 4991.100860495761 + ], + [ + 4795.851067035481, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B36", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4992.596170190401, + "max_x": 4799.488244863632, + "max_y": 4993.369290115214, + "center": [ + 4798.868438407018, + 4992.982730152808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4993.369290115214 + ], + [ + 4798.248631950404, + 4992.596170190401 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B37", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4991.100860495761, + "max_x": 4799.488244863632, + "max_y": 4991.873980420575, + "center": [ + 4798.868438407018, + 4991.487420458168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4991.100860495761 + ], + [ + 4798.248631950404, + 4991.873980420575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B38", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.987305068073, + "min_y": 4991.552724424004, + "max_x": 4798.3520068310445, + "max_y": 4992.917426186976, + "center": [ + 4797.669655949559, + 4992.23507530549 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.669655949559, + 4992.23507530549 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B39", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4992.596170190401, + "max_x": 4797.090679948713, + "max_y": 4993.369290115214, + "center": [ + 4796.470873492097, + 4992.982730152808 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.090679948713, + 4992.596170190401 + ], + [ + 4795.851067035481, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4991.100860495761, + "max_x": 4797.090679948713, + "max_y": 4991.873980420575, + "center": [ + 4796.470873492097, + 4991.487420458168 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.090679948713, + 4991.873980420575 + ], + [ + 4795.851067035481, + 4991.100860495761 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.104479468551, + "min_y": 4991.100860495761, + "max_x": 4795.104479468551, + "max_y": 4993.369290115214, + "center": [ + 4795.104479468551, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.104479468551, + 4991.100860495761 + ], + [ + 4795.104479468551, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4800.234832430562, + "min_y": 4991.100860495761, + "max_x": 4800.234832430562, + "max_y": 4993.369290115214, + "center": [ + 4800.234832430562, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.234832430562, + 4991.100860495761 + ], + [ + 4800.234832430562, + 4993.369290115214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4871.867975833095, + "min_y": 4986.944998504034, + "max_x": 4871.867975833095, + "max_y": 4993.599985794316, + "center": [ + 4871.867975833095, + 4990.272492149175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.867975833095, + 4993.599985794316 + ], + [ + 4871.867975833095, + 4986.944998504034 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.716642746767, + "min_y": 4986.944998504034, + "max_x": 4867.716642746767, + "max_y": 4993.599985794316, + "center": [ + 4867.716642746767, + 4990.272492149175 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4867.716642746767, + 4986.944998504034 + ], + [ + 4867.716642746767, + 4993.599985794316 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B3F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4994.092327025184, + "max_x": 4872.353743299729, + "max_y": 4994.092327025184, + "center": [ + 4869.792309289931, + 4994.092327025184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.353743299729, + 4994.092327025184 + ], + [ + 4867.230875280132, + 4994.092327025184 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4993.599985794316, + "max_x": 4872.353743299729, + "max_y": 4993.599985794316, + "center": [ + 4869.792309289931, + 4993.599985794316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.353743299729, + 4993.599985794316 + ], + [ + 4867.230875280132, + 4993.599985794316 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4866.580805387332, + "min_y": 4992.491156893399, + "max_x": 4867.716642746767, + "max_y": 4992.491156893399, + "center": [ + 4867.148724067049, + 4992.491156893399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4867.716642746767, + 4992.491156893399 + ], + [ + 4866.580805387332, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B43", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4865.834217820403, + "min_y": 4991.356942083672, + "max_x": 4865.834217820403, + "max_y": 4993.625371703126, + "center": [ + 4865.834217820403, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4991.356942083672 + ], + [ + 4865.834217820403, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B44", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4991.356942083672, + "max_x": 4862.19703999225, + "max_y": 4993.625371703126, + "center": [ + 4862.19703999225, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4862.19703999225, + 4991.356942083672 + ], + [ + 4862.19703999225, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B45", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4992.852251778312, + "max_x": 4865.834217820403, + "max_y": 4993.625371703126, + "center": [ + 4865.21441136379, + 4993.238811740719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4993.625371703126 + ], + [ + 4864.594604907175, + 4992.852251778312 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B46", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4991.356942083672, + "max_x": 4865.834217820403, + "max_y": 4992.130062008488, + "center": [ + 4865.21441136379, + 4991.74350204608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4991.356942083672 + ], + [ + 4864.594604907175, + 4992.130062008488 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B47", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4863.333278024844, + "min_y": 4991.808806011916, + "max_x": 4864.697979787816, + "max_y": 4993.173507774888, + "center": [ + 4864.01562890633, + 4992.491156893402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4864.01562890633, + 4992.491156893402 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B48", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4992.852251778312, + "max_x": 4863.436652905484, + "max_y": 4993.625371703126, + "center": [ + 4862.816846448867, + 4993.238811740719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4863.436652905484, + 4992.852251778312 + ], + [ + 4862.19703999225, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B49", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4991.356942083672, + "max_x": 4863.436652905484, + "max_y": 4992.130062008488, + "center": [ + 4862.816846448867, + 4991.74350204608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4863.436652905484, + 4992.130062008488 + ], + [ + 4862.19703999225, + 4991.356942083672 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4861.45045242532, + "min_y": 4991.356942083672, + "max_x": 4861.45045242532, + "max_y": 4993.625371703126, + "center": [ + 4861.45045242532, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4861.45045242532, + 4991.356942083672 + ], + [ + 4861.45045242532, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4866.580805387332, + "min_y": 4991.356942083672, + "max_x": 4866.580805387332, + "max_y": 4993.625371703126, + "center": [ + 4866.580805387332, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4866.580805387332, + 4991.356942083672 + ], + [ + 4866.580805387332, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4871.867975833095, + "min_y": 4992.491156893399, + "max_x": 4873.00381319253, + "max_y": 4992.491156893399, + "center": [ + 4872.435894512813, + 4992.491156893399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.867975833095, + 4992.491156893399 + ], + [ + 4873.00381319253, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4991.356942083672, + "max_x": 4873.750400759458, + "max_y": 4993.625371703126, + "center": [ + 4873.750400759458, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4991.356942083672 + ], + [ + 4873.750400759458, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.38757858761, + "min_y": 4991.356942083672, + "max_x": 4877.38757858761, + "max_y": 4993.625371703126, + "center": [ + 4877.38757858761, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.38757858761, + 4991.356942083672 + ], + [ + 4877.38757858761, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B4F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4992.852251778312, + "max_x": 4874.990013672686, + "max_y": 4993.625371703126, + "center": [ + 4874.370207216072, + 4993.238811740719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4993.625371703126 + ], + [ + 4874.990013672686, + 4992.852251778312 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B50", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4991.356942083672, + "max_x": 4874.990013672686, + "max_y": 4992.130062008488, + "center": [ + 4874.370207216072, + 4991.74350204608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4991.356942083672 + ], + [ + 4874.990013672686, + 4992.130062008488 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B51", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4874.886638792045, + "min_y": 4991.808806011916, + "max_x": 4876.251340555017, + "max_y": 4993.173507774888, + "center": [ + 4875.568989673531, + 4992.491156893402 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4875.568989673531, + 4992.491156893402 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B52", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4992.852251778312, + "max_x": 4877.38757858761, + "max_y": 4993.625371703126, + "center": [ + 4876.767772130994, + 4993.238811740719 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.147965674378, + 4992.852251778312 + ], + [ + 4877.38757858761, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B53", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4991.356942083672, + "max_x": 4877.38757858761, + "max_y": 4992.130062008488, + "center": [ + 4876.767772130994, + 4991.74350204608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.147965674378, + 4992.130062008488 + ], + [ + 4877.38757858761, + 4991.356942083672 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B54", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4878.13416615454, + "min_y": 4991.356942083672, + "max_x": 4878.13416615454, + "max_y": 4993.625371703126, + "center": [ + 4878.13416615454, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4878.13416615454, + 4991.356942083672 + ], + [ + 4878.13416615454, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B55", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.00381319253, + "min_y": 4991.356942083672, + "max_x": 4873.00381319253, + "max_y": 4993.625371703126, + "center": [ + 4873.00381319253, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.00381319253, + 4991.356942083672 + ], + [ + 4873.00381319253, + 4993.625371703126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B56", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4992.235075305487, + "max_x": 4817.243928728249, + "max_y": 4992.235075305487, + "center": [ + 4814.516060963009, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.78819319777, + 4992.235075305487 + ], + [ + 4817.243928728249, + 4992.235075305487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B57", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4992.491156893399, + "max_x": 4861.45045242532, + "max_y": 4992.491156893399, + "center": [ + 4858.722584660081, + 4992.491156893399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4992.491156893399 + ], + [ + 4861.45045242532, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B58", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4797.921763003293, + "min_y": 4981.633505853686, + "max_x": 4809.6805171824235, + "max_y": 4983.593298216874, + "center": [ + 4803.801140092858, + 4982.61340203528 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B59", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4864.042503631804, + "min_y": 4982.211701559179, + "max_x": 4875.801257810935, + "max_y": 4984.1714939223675, + "center": [ + 4869.921880721369, + 4983.191597740773 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 5053.549583272459, + "max_x": 4814.029807467484, + "max_y": 5053.549583272459, + "center": [ + 4808.456124979252, + 5053.549583272459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.882442491021, + 5053.549583272459 + ], + [ + 4814.029807467484, + 5053.549583272459 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4814.029807467484, + "min_y": 5020.351114975652, + "max_x": 4814.029807467484, + "max_y": 5053.549583272459, + "center": [ + 4814.029807467484, + 5036.950349124056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 5053.549583272459 + ], + [ + 4814.029807467484, + 5020.351114975652 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 5020.351114975652, + "max_x": 4814.029807467484, + "max_y": 5020.351114975652, + "center": [ + 4805.012822761817, + 5020.351114975652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 5020.351114975652 + ], + [ + 4795.995838056149, + 5020.351114975652 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 5017.926037946415, + "max_x": 4804.887017978852, + "max_y": 5017.926037946415, + "center": [ + 4800.441428017501, + 5017.926037946415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.995838056149, + 5017.926037946415 + ], + [ + 4804.887017978852, + 5017.926037946415 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 5015.761049524247, + "max_x": 4804.887017978852, + "max_y": 5017.926037946415, + "center": [ + 4804.887017978852, + 5016.843543735331 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 5017.926037946415 + ], + [ + 4804.887017978852, + 5015.761049524247 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B5F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 4997.354694870813, + "max_x": 4804.887017978852, + "max_y": 4999.077335795028, + "center": [ + 4804.887017978852, + 4998.2160153329205 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4999.077335795028 + ], + [ + 4804.887017978852, + 4997.354694870813 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B60", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4997.354694870813, + "max_x": 4804.887017978852, + "max_y": 4997.354694870813, + "center": [ + 4795.396127488391, + 4997.354694870813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4997.354694870813 + ], + [ + 4785.905236997932, + 4997.354694870813 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B61", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4992.235075305487, + "max_x": 4795.104479468551, + "max_y": 4992.235075305487, + "center": [ + 4790.504858233242, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.104479468551, + 4992.235075305487 + ], + [ + 4785.905236997932, + 4992.235075305487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B62", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4811.373175490592, + "min_y": 5006.72050960442, + "max_x": 4823.131929669723, + "max_y": 5008.680301967608, + "center": [ + 4817.2525525801575, + 5007.700405786014 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B63", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4778.316559611003, + "min_y": 5043.887723709244, + "max_x": 4787.947788405758, + "max_y": 5045.427560566035, + "center": [ + 4783.13217400838, + 5044.657642137639 + ] + }, + "raw_value": "\\pi0.23963;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LD-2901}", + "clean_value": "\\pi0.23963; \\fArial|b1|i1|c238|p34; .3333x; D-2901", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B67", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4776.333590468051, + "min_y": 5038.797979923238, + "max_x": 4789.6601785377325, + "max_y": 5040.104508165364, + "center": [ + 4782.996884502892, + 5039.451244044301 + ] + }, + "raw_value": "AIR RECIEVER TANK", + "clean_value": "AIR RECIEVER TANK", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B68", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4780.698939589663, + "min_y": 5036.184923438987, + "max_x": 4785.402441261315, + "max_y": 5037.491451681113, + "center": [ + 4783.050690425489, + 5036.83818756005 + ] + }, + "raw_value": "0.5 M3", + "clean_value": "0.5 M3", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B69", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4789.722958413204, + "min_y": 5048.013048791361, + "max_x": 4791.683628987088, + "max_y": 5048.013048791361, + "center": [ + 4790.703293700146, + 5048.013048791361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4791.683628987088, + 5048.013048791361 + ], + [ + 4789.722958413204, + 5048.013048791361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4812.069136893598, + "min_y": 5053.549583272459, + "max_x": 4814.029807467484, + "max_y": 5053.549583272459, + "center": [ + 4813.049472180541, + 5053.549583272459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 5053.549583272459 + ], + [ + 4812.069136893598, + 5053.549583272459 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4802.926347404968, + "min_y": 5017.926037946415, + "max_x": 4804.887017978852, + "max_y": 5017.926037946415, + "center": [ + 4803.90668269191, + 5017.926037946415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 5017.926037946415 + ], + [ + 4802.926347404968, + 5017.926037946415 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6C", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4790.155765524057, + "min_y": 4992.235075305487, + "max_x": 4792.116436097944, + "max_y": 4992.235075305487, + "center": [ + 4791.136100811, + 4992.235075305487 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4792.116436097944, + 4992.235075305487 + ], + [ + 4790.155765524057, + 4992.235075305487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 5020.351114975652, + "max_x": 4797.956508630035, + "max_y": 5020.351114975652, + "center": [ + 4796.976173343092, + 5020.351114975652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.995838056149, + 5020.351114975652 + ], + [ + 4797.956508630035, + 5020.351114975652 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4997.354694870813, + "max_x": 4787.865907571819, + "max_y": 4997.354694870813, + "center": [ + 4786.885572284875, + 4997.354694870813 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4785.905236997932, + 4997.354694870813 + ], + [ + 4787.865907571819, + 4997.354694870813 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B6F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4827.770098803281, + "min_y": 5000.940374194606, + "max_x": 4844.232354654064, + "max_y": 5002.246902436732, + "center": [ + 4836.001226728673, + 5001.5936383156695 + ] + }, + "raw_value": "REGENERATOR AIR DRYER", + "clean_value": "REGENERATOR AIR DRYER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B70", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4865.220195111042, + "min_y": 4998.822352156843, + "max_x": 4874.851423905797, + "max_y": 5000.362189013635, + "center": [ + 4870.035809508419, + 4999.592270585239 + ] + }, + "raw_value": "\\pi0.30686;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-2952}", + "clean_value": "\\pi0.30686; \\fArial|b1|i1|c238|p34; .3333x; F-2952", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B74", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4878.13416615454, + "min_y": 4992.491156893399, + "max_x": 5131.055578888764, + "max_y": 4992.491156893399, + "center": [ + 5004.594872521652, + 4992.491156893399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4878.13416615454, + 4992.491156893399 + ], + [ + 5131.055578888764, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B75", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5020.651495647978, + "max_x": 4910.157101018226, + "max_y": 5022.330307092638, + "center": [ + 4906.127953551044, + 5021.490901370307 + ] + }, + "raw_value": "LCV-2131", + "clean_value": "LCV-2131", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B76", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5016.171970246405, + "max_x": 4910.105729388019, + "max_y": 5017.850781691065, + "center": [ + 4906.076581920837, + 5017.011375968736 + ] + }, + "raw_value": "FCV-2122", + "clean_value": "FCV-2122", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B77", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5011.692444844832, + "max_x": 4910.157101018226, + "max_y": 5013.371256289492, + "center": [ + 4906.127953551044, + 5012.531850567162 + ] + }, + "raw_value": "LCV-2705", + "clean_value": "LCV-2705", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B78", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4901.107048222928, + "min_y": 5007.212919443258, + "max_x": 4911.179916890885, + "max_y": 5008.891730887918, + "center": [ + 4906.143482556907, + 5008.052325165589 + ] + }, + "raw_value": "XV-3470 AB", + "clean_value": "XV-3470 AB", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B79", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.716692636068, + "min_y": 5002.733394041683, + "max_x": 4909.767700703638, + "max_y": 5004.412205486343, + "center": [ + 4906.242196669853, + 5003.572799764013 + ] + }, + "raw_value": "XV-2136", + "clean_value": "XV-2136", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5019.624432452985, + "max_x": 4899.284203432859, + "max_y": 5023.35737028763, + "center": [ + 4899.284203432859, + 5021.490901370307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5023.35737028763 + ], + [ + 4899.284203432859, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5021.490901370309, + "max_x": 4915.709129905295, + "max_y": 5023.35737028763, + "center": [ + 4914.775895446635, + 5022.424135828969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5023.35737028763 + ], + [ + 4915.709129905295, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5019.624432452985, + "max_x": 4915.709129905295, + "max_y": 5021.490901370309, + "center": [ + 4914.775895446635, + 5020.557666911647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5019.624432452985 + ], + [ + 4915.709129905295, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5023.35737028763, + "max_x": 4913.842660987974, + "max_y": 5023.35737028763, + "center": [ + 4906.563432210416, + 5023.35737028763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5023.35737028763 + ], + [ + 4899.284203432859, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5019.624432452985, + "max_x": 4913.842660987974, + "max_y": 5019.624432452985, + "center": [ + 4906.563432210416, + 5019.624432452985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5019.624432452985 + ], + [ + 4899.284203432859, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B7F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5015.144907051412, + "max_x": 4899.284203432859, + "max_y": 5018.877844886056, + "center": [ + 4899.284203432859, + 5017.011375968734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5018.877844886056 + ], + [ + 4899.284203432859, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B80", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5017.011375968735, + "max_x": 4915.709129905295, + "max_y": 5018.877844886056, + "center": [ + 4914.775895446635, + 5017.944610427396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5018.877844886056 + ], + [ + 4915.709129905295, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B81", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5015.144907051412, + "max_x": 4915.709129905295, + "max_y": 5017.011375968735, + "center": [ + 4914.775895446635, + 5016.078141510074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5015.144907051412 + ], + [ + 4915.709129905295, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B82", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5018.877844886056, + "max_x": 4913.842660987974, + "max_y": 5018.877844886056, + "center": [ + 4906.563432210416, + 5018.877844886056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5018.877844886056 + ], + [ + 4899.284203432859, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B83", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5015.144907051412, + "max_x": 4913.842660987974, + "max_y": 5015.144907051412, + "center": [ + 4906.563432210416, + 5015.144907051412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5015.144907051412 + ], + [ + 4899.284203432859, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B84", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5010.665381649839, + "max_x": 4899.284203432859, + "max_y": 5014.398319484484, + "center": [ + 4899.284203432859, + 5012.531850567162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5014.398319484484 + ], + [ + 4899.284203432859, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B85", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5012.531850567161, + "max_x": 4915.709129905295, + "max_y": 5014.398319484484, + "center": [ + 4914.775895446635, + 5013.465085025822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5014.398319484484 + ], + [ + 4915.709129905295, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B86", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5010.665381649839, + "max_x": 4915.709129905295, + "max_y": 5012.531850567161, + "center": [ + 4914.775895446635, + 5011.5986161085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5010.665381649839 + ], + [ + 4915.709129905295, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B87", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5014.398319484484, + "max_x": 4913.842660987974, + "max_y": 5014.398319484484, + "center": [ + 4906.563432210416, + 5014.398319484484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5014.398319484484 + ], + [ + 4899.284203432859, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B88", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5010.665381649839, + "max_x": 4913.842660987974, + "max_y": 5010.665381649839, + "center": [ + 4906.563432210416, + 5010.665381649839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5010.665381649839 + ], + [ + 4899.284203432859, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B89", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5006.185856248265, + "max_x": 4899.284203432859, + "max_y": 5009.91879408291, + "center": [ + 4899.284203432859, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5009.91879408291 + ], + [ + 4899.284203432859, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5008.052325165587, + "max_x": 4915.709129905295, + "max_y": 5009.91879408291, + "center": [ + 4914.775895446635, + 5008.985559624249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5009.91879408291 + ], + [ + 4915.709129905295, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5006.185856248265, + "max_x": 4915.709129905295, + "max_y": 5008.052325165587, + "center": [ + 4914.775895446635, + 5007.119090706926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5006.185856248265 + ], + [ + 4915.709129905295, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5009.91879408291, + "max_x": 4913.842660987974, + "max_y": 5009.91879408291, + "center": [ + 4906.563432210416, + 5009.91879408291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5009.91879408291 + ], + [ + 4899.284203432859, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5006.185856248265, + "max_x": 4913.842660987974, + "max_y": 5006.185856248265, + "center": [ + 4906.563432210416, + 5006.185856248265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5006.185856248265 + ], + [ + 4899.284203432859, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5001.706330846691, + "max_x": 4899.284203432859, + "max_y": 5005.439268681336, + "center": [ + 4899.284203432859, + 5003.572799764013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5005.439268681336 + ], + [ + 4899.284203432859, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B8F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5003.572799764014, + "max_x": 4915.709129905295, + "max_y": 5005.439268681336, + "center": [ + 4914.775895446635, + 5004.506034222675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5005.439268681336 + ], + [ + 4915.709129905295, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B90", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5001.706330846691, + "max_x": 4915.709129905295, + "max_y": 5003.572799764014, + "center": [ + 4914.775895446635, + 5002.639565305353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5001.706330846691 + ], + [ + 4915.709129905295, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B91", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5005.439268681336, + "max_x": 4913.842660987974, + "max_y": 5005.439268681336, + "center": [ + 4906.563432210416, + 5005.439268681336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5005.439268681336 + ], + [ + 4899.284203432859, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B92", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5001.706330846691, + "max_x": 4913.842660987974, + "max_y": 5001.706330846691, + "center": [ + 4906.563432210416, + 5001.706330846691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5001.706330846691 + ], + [ + 4899.284203432859, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B93", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5021.490901370309, + "max_x": 4899.284203432859, + "max_y": 5021.490901370309, + "center": [ + 4896.556335667618, + 5021.490901370309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5021.490901370309 + ], + [ + 4899.284203432859, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B94", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5017.011375968735, + "max_x": 4899.284203432859, + "max_y": 5017.011375968735, + "center": [ + 4896.556335667618, + 5017.011375968735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5017.011375968735 + ], + [ + 4899.284203432859, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B95", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5012.531850567161, + "max_x": 4899.284203432859, + "max_y": 5012.531850567161, + "center": [ + 4896.556335667618, + 5012.531850567161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5012.531850567161 + ], + [ + 4899.284203432859, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B96", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5008.052325165587, + "max_x": 4899.284203432859, + "max_y": 5008.052325165587, + "center": [ + 4896.556335667618, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5008.052325165587 + ], + [ + 4899.284203432859, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B97", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5003.572799764014, + "max_x": 4899.284203432859, + "max_y": 5003.572799764014, + "center": [ + 4896.556335667618, + 5003.572799764014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5003.572799764014 + ], + [ + 4899.284203432859, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B98", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5003.572799764014, + "max_x": 4893.828467902378, + "max_y": 5070.765680787618, + "center": [ + 4893.828467902378, + 5037.169240275816 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5070.765680787618 + ], + [ + 4893.828467902378, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B99", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5021.747426815335, + "max_x": 4897.0267002290175, + "max_y": 5022.867308165728, + "center": [ + 4896.018807013663, + 5022.307367490532 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5017.267901413762, + "max_x": 4897.0267002290175, + "max_y": 5018.387782764155, + "center": [ + 4896.018807013663, + 5017.827842088958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5012.788376012188, + "max_x": 4897.0267002290175, + "max_y": 5013.908257362581, + "center": [ + 4896.018807013663, + 5013.348316687385 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5008.308850610615, + "max_x": 4897.0267002290175, + "max_y": 5009.428731961008, + "center": [ + 4896.018807013663, + 5008.868791285811 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5003.829325209042, + "max_x": 4897.0267002290175, + "max_y": 5004.949206559435, + "center": [ + 4896.018807013663, + 5004.389265884238 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4893.337639306134, + "min_y": 5066.345507208724, + "max_x": 4895.353425736843, + "max_y": 5067.465388559117, + "center": [ + 4894.345532521489, + 5066.905447883921 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561B9F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5025.131021049553, + "max_x": 4910.105729388019, + "max_y": 5026.809832494213, + "center": [ + 4906.076581920837, + 5025.970426771883 + ] + }, + "raw_value": "FCV-2123", + "clean_value": "FCV-2123", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5024.10395785456, + "max_x": 4899.284203432859, + "max_y": 5027.836895689204, + "center": [ + 4899.284203432859, + 5025.970426771882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5027.836895689204 + ], + [ + 4899.284203432859, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5025.970426771881, + "max_x": 4915.709129905295, + "max_y": 5027.836895689204, + "center": [ + 4914.775895446635, + 5026.903661230543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5027.836895689204 + ], + [ + 4915.709129905295, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5024.10395785456, + "max_x": 4915.709129905295, + "max_y": 5025.970426771881, + "center": [ + 4914.775895446635, + 5025.037192313221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5024.10395785456 + ], + [ + 4915.709129905295, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5027.836895689204, + "max_x": 4913.842660987974, + "max_y": 5027.836895689204, + "center": [ + 4906.563432210416, + 5027.836895689204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5027.836895689204 + ], + [ + 4899.284203432859, + 5027.836895689204 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5024.10395785456, + "max_x": 4913.842660987974, + "max_y": 5024.10395785456, + "center": [ + 4906.563432210416, + 5024.10395785456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5024.10395785456 + ], + [ + 4899.284203432859, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5025.970426771881, + "max_x": 4899.284203432859, + "max_y": 5025.970426771881, + "center": [ + 4896.556335667618, + 5025.970426771881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5025.970426771881 + ], + [ + 4899.284203432859, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5029.610546451126, + "max_x": 4910.105729388019, + "max_y": 5031.2893578957855, + "center": [ + 4906.076581920837, + 5030.449952173456 + ] + }, + "raw_value": "FCV-2124", + "clean_value": "FCV-2124", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5028.583483256134, + "max_x": 4899.284203432859, + "max_y": 5032.316421090778, + "center": [ + 4899.284203432859, + 5030.449952173456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5032.316421090778 + ], + [ + 4899.284203432859, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5030.449952173455, + "max_x": 4915.709129905295, + "max_y": 5032.316421090778, + "center": [ + 4914.775895446635, + 5031.383186632116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5032.316421090778 + ], + [ + 4915.709129905295, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BA9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5028.583483256134, + "max_x": 4915.709129905295, + "max_y": 5030.449952173455, + "center": [ + 4914.775895446635, + 5029.516717714794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5028.583483256134 + ], + [ + 4915.709129905295, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5032.316421090778, + "max_x": 4913.842660987974, + "max_y": 5032.316421090778, + "center": [ + 4906.563432210416, + 5032.316421090778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5032.316421090778 + ], + [ + 4899.284203432859, + 5032.316421090778 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5028.583483256134, + "max_x": 4913.842660987974, + "max_y": 5028.583483256134, + "center": [ + 4906.563432210416, + 5028.583483256134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5028.583483256134 + ], + [ + 4899.284203432859, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5030.449952173455, + "max_x": 4899.284203432859, + "max_y": 5030.449952173455, + "center": [ + 4896.556335667618, + 5030.449952173455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5030.449952173455 + ], + [ + 4899.284203432859, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5034.090071852699, + "max_x": 4910.105729388019, + "max_y": 5035.768883297359, + "center": [ + 4906.076581920837, + 5034.9294775750295 + ] + }, + "raw_value": "FCV-2131", + "clean_value": "FCV-2131", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5033.063008657706, + "max_x": 4899.284203432859, + "max_y": 5036.795946492351, + "center": [ + 4899.284203432859, + 5034.929477575028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5036.795946492351 + ], + [ + 4899.284203432859, + 5033.063008657706 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BAF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5034.929477575029, + "max_x": 4915.709129905295, + "max_y": 5036.795946492351, + "center": [ + 4914.775895446635, + 5035.86271203369 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5036.795946492351 + ], + [ + 4915.709129905295, + 5034.929477575029 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5033.063008657706, + "max_x": 4915.709129905295, + "max_y": 5034.929477575029, + "center": [ + 4914.775895446635, + 5033.996243116368 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5033.063008657706 + ], + [ + 4915.709129905295, + 5034.929477575029 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5036.795946492351, + "max_x": 4913.842660987974, + "max_y": 5036.795946492351, + "center": [ + 4906.563432210416, + 5036.795946492351 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5036.795946492351 + ], + [ + 4899.284203432859, + 5036.795946492351 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5033.063008657706, + "max_x": 4913.842660987974, + "max_y": 5033.063008657706, + "center": [ + 4906.563432210416, + 5033.063008657706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5033.063008657706 + ], + [ + 4899.284203432859, + 5033.063008657706 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5034.929477575029, + "max_x": 4899.284203432859, + "max_y": 5034.929477575029, + "center": [ + 4896.556335667618, + 5034.929477575029 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5034.929477575029 + ], + [ + 4899.284203432859, + 5034.929477575029 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5038.569597254273, + "max_x": 4910.157101018226, + "max_y": 5040.2484086989325, + "center": [ + 4906.127953551044, + 5039.409002976603 + ] + }, + "raw_value": "LCV-2121", + "clean_value": "LCV-2121", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5037.54253405928, + "max_x": 4899.284203432859, + "max_y": 5041.275471893925, + "center": [ + 4899.284203432859, + 5039.409002976603 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5041.275471893925 + ], + [ + 4899.284203432859, + 5037.54253405928 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5039.409002976602, + "max_x": 4915.709129905295, + "max_y": 5041.275471893925, + "center": [ + 4914.775895446635, + 5040.342237435263 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5041.275471893925 + ], + [ + 4915.709129905295, + 5039.409002976602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5037.54253405928, + "max_x": 4915.709129905295, + "max_y": 5039.409002976602, + "center": [ + 4914.775895446635, + 5038.475768517941 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5037.54253405928 + ], + [ + 4915.709129905295, + 5039.409002976602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5041.275471893925, + "max_x": 4913.842660987974, + "max_y": 5041.275471893925, + "center": [ + 4906.563432210416, + 5041.275471893925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5041.275471893925 + ], + [ + 4899.284203432859, + 5041.275471893925 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BB9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5037.54253405928, + "max_x": 4913.842660987974, + "max_y": 5037.54253405928, + "center": [ + 4906.563432210416, + 5037.54253405928 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5037.54253405928 + ], + [ + 4899.284203432859, + 5037.54253405928 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5039.409002976602, + "max_x": 4899.284203432859, + "max_y": 5039.409002976602, + "center": [ + 4896.556335667618, + 5039.409002976602 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5039.409002976602 + ], + [ + 4899.284203432859, + 5039.409002976602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.007478741271, + "min_y": 5043.049122655848, + "max_x": 4910.065773675637, + "max_y": 5044.727934100508, + "center": [ + 4906.0366262084535, + 5043.888528378178 + ] + }, + "raw_value": "PCV-2121", + "clean_value": "PCV-2121", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5042.022059460854, + "max_x": 4899.284203432859, + "max_y": 5045.754997295499, + "center": [ + 4899.284203432859, + 5043.8885283781765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5045.754997295499 + ], + [ + 4899.284203432859, + 5042.022059460854 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5043.888528378176, + "max_x": 4915.709129905295, + "max_y": 5045.754997295499, + "center": [ + 4914.775895446635, + 5044.8217628368375 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5045.754997295499 + ], + [ + 4915.709129905295, + 5043.888528378176 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5042.022059460854, + "max_x": 4915.709129905295, + "max_y": 5043.888528378176, + "center": [ + 4914.775895446635, + 5042.955293919515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5042.022059460854 + ], + [ + 4915.709129905295, + 5043.888528378176 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BBF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5045.754997295499, + "max_x": 4913.842660987974, + "max_y": 5045.754997295499, + "center": [ + 4906.563432210416, + 5045.754997295499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5045.754997295499 + ], + [ + 4899.284203432859, + 5045.754997295499 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5042.022059460854, + "max_x": 4913.842660987974, + "max_y": 5042.022059460854, + "center": [ + 4906.563432210416, + 5042.022059460854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5042.022059460854 + ], + [ + 4899.284203432859, + 5042.022059460854 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5043.888528378176, + "max_x": 4899.284203432859, + "max_y": 5043.888528378176, + "center": [ + 4896.556335667618, + 5043.888528378176 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5043.888528378176 + ], + [ + 4899.284203432859, + 5043.888528378176 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5047.52864805742, + "max_x": 4910.157101018226, + "max_y": 5049.2074595020795, + "center": [ + 4906.127953551044, + 5048.36805377975 + ] + }, + "raw_value": "LCV-2111", + "clean_value": "LCV-2111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5046.501584862427, + "max_x": 4899.284203432859, + "max_y": 5050.234522697071, + "center": [ + 4899.284203432859, + 5048.368053779749 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5050.234522697071 + ], + [ + 4899.284203432859, + 5046.501584862427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5048.36805377975, + "max_x": 4915.709129905295, + "max_y": 5050.234522697071, + "center": [ + 4914.775895446635, + 5049.30128823841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5050.234522697071 + ], + [ + 4915.709129905295, + 5048.36805377975 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5046.501584862427, + "max_x": 4915.709129905295, + "max_y": 5048.36805377975, + "center": [ + 4914.775895446635, + 5047.434819321088 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5046.501584862427 + ], + [ + 4915.709129905295, + 5048.36805377975 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5050.234522697071, + "max_x": 4913.842660987974, + "max_y": 5050.234522697071, + "center": [ + 4906.563432210416, + 5050.234522697071 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5050.234522697071 + ], + [ + 4899.284203432859, + 5050.234522697071 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5046.501584862427, + "max_x": 4913.842660987974, + "max_y": 5046.501584862427, + "center": [ + 4906.563432210416, + 5046.501584862427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5046.501584862427 + ], + [ + 4899.284203432859, + 5046.501584862427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC8", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5048.36805377975, + "max_x": 4899.284203432859, + "max_y": 5048.36805377975, + "center": [ + 4896.556335667618, + 5048.36805377975 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5048.36805377975 + ], + [ + 4899.284203432859, + 5048.36805377975 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BC9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.098806083861, + "min_y": 5052.008173458994, + "max_x": 4910.157101018226, + "max_y": 5053.686984903654, + "center": [ + 4906.127953551044, + 5052.847579181323 + ] + }, + "raw_value": "LCV-2113", + "clean_value": "LCV-2113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5050.981110264001, + "max_x": 4899.284203432859, + "max_y": 5054.714048098645, + "center": [ + 4899.284203432859, + 5052.847579181323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5054.714048098645 + ], + [ + 4899.284203432859, + 5050.981110264001 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5052.847579181324, + "max_x": 4915.709129905295, + "max_y": 5054.714048098645, + "center": [ + 4914.775895446635, + 5053.780813639985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5054.714048098645 + ], + [ + 4915.709129905295, + 5052.847579181324 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5050.981110264001, + "max_x": 4915.709129905295, + "max_y": 5052.847579181324, + "center": [ + 4914.775895446635, + 5051.9143447226625 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5050.981110264001 + ], + [ + 4915.709129905295, + 5052.847579181324 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5054.714048098645, + "max_x": 4913.842660987974, + "max_y": 5054.714048098645, + "center": [ + 4906.563432210416, + 5054.714048098645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5054.714048098645 + ], + [ + 4899.284203432859, + 5054.714048098645 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5050.981110264001, + "max_x": 4913.842660987974, + "max_y": 5050.981110264001, + "center": [ + 4906.563432210416, + 5050.981110264001 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5050.981110264001 + ], + [ + 4899.284203432859, + 5050.981110264001 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BCF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5052.847579181324, + "max_x": 4899.284203432859, + "max_y": 5052.847579181324, + "center": [ + 4896.556335667618, + 5052.847579181324 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5052.847579181324 + ], + [ + 4899.284203432859, + 5052.847579181324 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5056.487698860568, + "max_x": 4910.105729388019, + "max_y": 5058.166510305228, + "center": [ + 4906.076581920837, + 5057.327104582899 + ] + }, + "raw_value": "FCV-2111", + "clean_value": "FCV-2111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5055.460635665575, + "max_x": 4899.284203432859, + "max_y": 5059.193573500219, + "center": [ + 4899.284203432859, + 5057.327104582897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5059.193573500219 + ], + [ + 4899.284203432859, + 5055.460635665575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5057.327104582896, + "max_x": 4915.709129905295, + "max_y": 5059.193573500219, + "center": [ + 4914.775895446635, + 5058.260339041557 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5059.193573500219 + ], + [ + 4915.709129905295, + 5057.327104582896 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5055.460635665575, + "max_x": 4915.709129905295, + "max_y": 5057.327104582896, + "center": [ + 4914.775895446635, + 5056.393870124235 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5055.460635665575 + ], + [ + 4915.709129905295, + 5057.327104582896 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5059.193573500219, + "max_x": 4913.842660987974, + "max_y": 5059.193573500219, + "center": [ + 4906.563432210416, + 5059.193573500219 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5059.193573500219 + ], + [ + 4899.284203432859, + 5059.193573500219 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5055.460635665575, + "max_x": 4913.842660987974, + "max_y": 5055.460635665575, + "center": [ + 4906.563432210416, + 5055.460635665575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5055.460635665575 + ], + [ + 4899.284203432859, + 5055.460635665575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD6", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5057.327104582896, + "max_x": 4899.284203432859, + "max_y": 5057.327104582896, + "center": [ + 4896.556335667618, + 5057.327104582896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5057.327104582896 + ], + [ + 4899.284203432859, + 5057.327104582896 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.007478741271, + "min_y": 5060.967224262141, + "max_x": 4910.065773675637, + "max_y": 5062.646035706801, + "center": [ + 4906.0366262084535, + 5061.80662998447 + ] + }, + "raw_value": "PCV-2111", + "clean_value": "PCV-2111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5059.940161067149, + "max_x": 4899.284203432859, + "max_y": 5063.673098901793, + "center": [ + 4899.284203432859, + 5061.806629984471 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5063.673098901793 + ], + [ + 4899.284203432859, + 5059.940161067149 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BD9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5061.80662998447, + "max_x": 4915.709129905295, + "max_y": 5063.673098901793, + "center": [ + 4914.775895446635, + 5062.739864443132 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5063.673098901793 + ], + [ + 4915.709129905295, + 5061.80662998447 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5059.940161067149, + "max_x": 4915.709129905295, + "max_y": 5061.80662998447, + "center": [ + 4914.775895446635, + 5060.87339552581 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5059.940161067149 + ], + [ + 4915.709129905295, + 5061.80662998447 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5063.673098901793, + "max_x": 4913.842660987974, + "max_y": 5063.673098901793, + "center": [ + 4906.563432210416, + 5063.673098901793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5063.673098901793 + ], + [ + 4899.284203432859, + 5063.673098901793 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5059.940161067149, + "max_x": 4913.842660987974, + "max_y": 5059.940161067149, + "center": [ + 4906.563432210416, + 5059.940161067149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5059.940161067149 + ], + [ + 4899.284203432859, + 5059.940161067149 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5061.80662998447, + "max_x": 4899.284203432859, + "max_y": 5061.80662998447, + "center": [ + 4896.556335667618, + 5061.80662998447 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5061.80662998447 + ], + [ + 4899.284203432859, + 5061.80662998447 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.06099085607, + "min_y": 5065.446749663714, + "max_x": 4910.119285790435, + "max_y": 5067.125561108374, + "center": [ + 4906.090138323252, + 5066.286155386044 + ] + }, + "raw_value": "TCV-2111", + "clean_value": "TCV-2111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BDF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5064.419686468721, + "max_x": 4899.284203432859, + "max_y": 5068.152624303366, + "center": [ + 4899.284203432859, + 5066.286155386044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5068.152624303366 + ], + [ + 4899.284203432859, + 5064.419686468721 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5066.286155386044, + "max_x": 4915.709129905295, + "max_y": 5068.152624303366, + "center": [ + 4914.775895446635, + 5067.219389844705 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5068.152624303366 + ], + [ + 4915.709129905295, + 5066.286155386044 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5064.419686468721, + "max_x": 4915.709129905295, + "max_y": 5066.286155386044, + "center": [ + 4914.775895446635, + 5065.352920927382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5064.419686468721 + ], + [ + 4915.709129905295, + 5066.286155386044 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5068.152624303366, + "max_x": 4913.842660987974, + "max_y": 5068.152624303366, + "center": [ + 4906.563432210416, + 5068.152624303366 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5068.152624303366 + ], + [ + 4899.284203432859, + 5068.152624303366 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5064.419686468721, + "max_x": 4913.842660987974, + "max_y": 5064.419686468721, + "center": [ + 4906.563432210416, + 5064.419686468721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5064.419686468721 + ], + [ + 4899.284203432859, + 5064.419686468721 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4893.828467902378, + "min_y": 5066.286155386044, + "max_x": 4899.284203432859, + "max_y": 5066.286155386044, + "center": [ + 4896.556335667618, + 5066.286155386044 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4893.828467902378, + 5066.286155386044 + ], + [ + 4899.284203432859, + 5066.286155386044 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4902.047434453654, + "min_y": 5069.926275065288, + "max_x": 4910.105729388019, + "max_y": 5071.605086509948, + "center": [ + 4906.076581920837, + 5070.765680787617 + ] + }, + "raw_value": "FCV-2111", + "clean_value": "FCV-2111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5068.899211870295, + "max_x": 4899.284203432859, + "max_y": 5072.63214970494, + "center": [ + 4899.284203432859, + 5070.765680787617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5072.63214970494 + ], + [ + 4899.284203432859, + 5068.899211870295 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5070.765680787618, + "max_x": 4915.709129905295, + "max_y": 5072.63214970494, + "center": [ + 4914.775895446635, + 5071.698915246279 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5072.63214970494 + ], + [ + 4915.709129905295, + 5070.765680787618 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5068.899211870295, + "max_x": 4915.709129905295, + "max_y": 5070.765680787618, + "center": [ + 4914.775895446635, + 5069.832446328957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5068.899211870295 + ], + [ + 4915.709129905295, + 5070.765680787618 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BE9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5072.63214970494, + "max_x": 4913.842660987974, + "max_y": 5072.63214970494, + "center": [ + 4906.563432210416, + 5072.63214970494 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5072.63214970494 + ], + [ + 4899.284203432859, + 5072.63214970494 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BEA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5068.899211870295, + "max_x": 4913.842660987974, + "max_y": 5068.899211870295, + "center": [ + 4906.563432210416, + 5068.899211870295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5068.899211870295 + ], + [ + 4899.284203432859, + 5068.899211870295 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BEB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 5070.765680787618, + "max_x": 4899.284203432859, + "max_y": 5070.765680787618, + "center": [ + 4894.689866750296, + 5070.765680787618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.095530067732, + 5070.765680787618 + ], + [ + 4899.284203432859, + 5070.765680787618 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BEC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4901.19338110147, + "min_y": 5074.405800466863, + "max_x": 4916.302684103405, + "max_y": 5076.084611911523, + "center": [ + 4908.748032602438, + 5075.245206189193 + ] + }, + "raw_value": "UTILITY STATION", + "clean_value": "UTILITY STATION", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BED", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5073.378737271869, + "max_x": 4899.284203432859, + "max_y": 5077.111675106514, + "center": [ + 4899.284203432859, + 5075.245206189191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4899.284203432859, + 5077.111675106514 + ], + [ + 4899.284203432859, + 5073.378737271869 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BEE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5075.245206189191, + "max_x": 4915.709129905295, + "max_y": 5077.111675106514, + "center": [ + 4914.775895446635, + 5076.178440647853 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5077.111675106514 + ], + [ + 4915.709129905295, + 5075.245206189191 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BEF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4913.842660987974, + "min_y": 5073.378737271869, + "max_x": 4915.709129905295, + "max_y": 5075.245206189191, + "center": [ + 4914.775895446635, + 5074.31197173053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5073.378737271869 + ], + [ + 4915.709129905295, + 5075.245206189191 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5077.111675106514, + "max_x": 4913.842660987974, + "max_y": 5077.111675106514, + "center": [ + 4906.563432210416, + 5077.111675106514 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5077.111675106514 + ], + [ + 4899.284203432859, + 5077.111675106514 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4899.284203432859, + "min_y": 5073.378737271869, + "max_x": 4913.842660987974, + "max_y": 5073.378737271869, + "center": [ + 4906.563432210416, + 5073.378737271869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.842660987974, + 5073.378737271869 + ], + [ + 4899.284203432859, + 5073.378737271869 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 5075.245206189191, + "max_x": 4899.284203432859, + "max_y": 5075.245206189191, + "center": [ + 4894.689866750296, + 5075.245206189191 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.095530067732, + 5075.245206189191 + ], + [ + 4899.284203432859, + 5075.245206189191 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 4996.202285828182, + "max_x": 4890.095530067732, + "max_y": 5075.245206189191, + "center": [ + 4890.095530067732, + 5035.723746008686 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.095530067732, + 5075.245206189191 + ], + [ + 4890.095530067732, + 4996.202285828182 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4889.604701471488, + "min_y": 5002.138976452836, + "max_x": 4891.620487902196, + "max_y": 5003.258857803229, + "center": [ + 4890.6125946868415, + 5002.698917128033 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5026.226952216909, + "max_x": 4897.0267002290175, + "max_y": 5027.346833567302, + "center": [ + 4896.018807013663, + 5026.786892892105 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5030.706477618482, + "max_x": 4897.0267002290175, + "max_y": 5031.826358968875, + "center": [ + 4896.018807013663, + 5031.266418293679 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5035.186003020057, + "max_x": 4897.0267002290175, + "max_y": 5036.30588437045, + "center": [ + 4896.018807013663, + 5035.745943695254 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5039.665528421631, + "max_x": 4897.0267002290175, + "max_y": 5040.785409772025, + "center": [ + 4896.018807013663, + 5040.2254690968275 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BF9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5044.145053823203, + "max_x": 4897.0267002290175, + "max_y": 5045.264935173596, + "center": [ + 4896.018807013663, + 5044.704994498399 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5048.624579224777, + "max_x": 4897.0267002290175, + "max_y": 5049.744460575171, + "center": [ + 4896.018807013663, + 5049.1845198999745 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5053.104104626351, + "max_x": 4897.0267002290175, + "max_y": 5054.223985976744, + "center": [ + 4896.018807013663, + 5053.664045301548 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5057.583630027924, + "max_x": 4897.0267002290175, + "max_y": 5058.703511378318, + "center": [ + 4896.018807013663, + 5058.143570703121 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5062.063155429498, + "max_x": 4897.0267002290175, + "max_y": 5063.183036779891, + "center": [ + 4896.018807013663, + 5062.623096104695 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5066.542680831072, + "max_x": 4897.0267002290175, + "max_y": 5067.662562181466, + "center": [ + 4896.018807013663, + 5067.102621506268 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561BFF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5071.022206232646, + "max_x": 4897.0267002290175, + "max_y": 5072.142087583039, + "center": [ + 4896.018807013663, + 5071.582146907842 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C00", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4895.010913798309, + "min_y": 5075.501731634219, + "max_x": 4897.0267002290175, + "max_y": 5076.6216129846125, + "center": [ + 4896.018807013663, + 5076.061672309415 + ] + }, + "raw_value": "20A", + "clean_value": "20A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C01", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4886.801923123005, + "min_y": 4999.862891092833, + "max_x": 4918.62357679564, + "max_y": 5078.951236877676, + "center": [ + 4902.7127499593225, + 5039.407063985254 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4886.801923123005, + 5078.951236877676 + ], + [ + 4918.62357679564, + 5078.951236877676 + ], + [ + 4918.62357679564, + 4999.862891092833 + ], + [ + 4886.801923123005, + 4999.862891092833 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5131.055578888764, + "min_y": 4991.356942083672, + "max_x": 5131.055578888764, + "max_y": 4993.625371703126, + "center": [ + 5131.055578888764, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5131.055578888764, + 4993.625371703126 + ], + [ + 5131.055578888764, + 4991.356942083672 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C03", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5131.802166455692, + "min_y": 4991.356942083672, + "max_x": 5131.802166455692, + "max_y": 4993.625371703126, + "center": [ + 5131.802166455692, + 4992.4911568933985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5131.802166455692, + 4993.625371703126 + ], + [ + 5131.802166455692, + 4991.356942083672 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C04", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4889.159306387987, + "min_y": 4994.673173742727, + "max_x": 4889.471500116099, + "max_y": 4996.202334458351, + "center": [ + 4889.315403252043, + 4995.43775410054 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4889.159306387987, + 4994.673173742727 + ], + [ + 4889.471500116099, + 4996.202334458351 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C05", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4890.719798355773, + "min_y": 4994.673027824362, + "max_x": 4891.03175374749, + "max_y": 4996.20223717944, + "center": [ + 4890.875776051631, + 4995.437632501901 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4891.03175374749, + 4994.673027824362 + ], + [ + 4890.719798355773, + 4996.20223717944 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C06", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4889.471500116099, + "min_y": 4996.20223717944, + "max_x": 4890.719798355773, + "max_y": 4996.202334458351, + "center": [ + 4890.095649235936, + 4996.202285818896 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.719798355773, + 4996.20223717944 + ], + [ + 4889.471500116099, + 4996.202334458351 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4889.159306387987, + "min_y": 4994.673027824362, + "max_x": 4891.03175374749, + "max_y": 4994.673173742727, + "center": [ + 4890.095530067739, + 4994.673100783544 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4891.03175374749, + 4994.673027824362 + ], + [ + 4889.159306387987, + 4994.673173742727 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C08", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4889.282496209811, + "min_y": 4994.67303742445, + "max_x": 4890.908563925655, + "max_y": 4994.673164142643, + "center": [ + 4890.095530067732, + 4994.673100783546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4889.282496209811, + 4994.673164142643 + ], + [ + 4890.908563925655, + 4994.67303742445 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C09", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4891.607131623305, + "min_y": 4995.092067043603, + "max_x": 4896.310633294957, + "max_y": 4996.211948393996, + "center": [ + 4893.958882459131, + 4995.6520077188 + ] + }, + "raw_value": "25Ax20A", + "clean_value": "25Ax20A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C0A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 4992.491156893399, + "max_x": 4890.095530067732, + "max_y": 4994.673100783546, + "center": [ + 4890.095530067732, + 4993.582128838472 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.095530067732, + 4994.673100783546 + ], + [ + 4890.095530067732, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C0B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 4916.54127573283, + "max_x": 4802.882442491021, + "max_y": 4936.139199364716, + "center": [ + 4802.882442491021, + 4926.340237548773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.882442491021, + 4936.139199364716 + ], + [ + 4802.882442491021, + 4916.54127573283 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C0E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4791.683628987088, + "min_y": 4916.54127573283, + "max_x": 4791.683628987088, + "max_y": 4936.139199364716, + "center": [ + 4791.683628987088, + 4926.340237548773 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4791.683628987088, + 4916.54127573283 + ], + [ + 4791.683628987088, + 4936.139199364716 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C0F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 4932.633849810908, + "max_x": 4787.495412407075, + "max_y": 4935.276058701313, + "center": [ + 4787.495412407075, + 4933.954954256111 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 4935.276058701313 + ], + [ + 4787.495412407075, + 4932.633849810908 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C10", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 4940.406411663323, + "max_x": 4787.495412407075, + "max_y": 4941.55996884664, + "center": [ + 4787.495412407075, + 4940.983190254981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 4941.55996884664 + ], + [ + 4787.495412407075, + 4940.406411663323 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C11", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4939.659824096394, + "max_x": 4788.629627216802, + "max_y": 4939.659824096394, + "center": [ + 4787.4954124070755, + 4939.659824096394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 4939.659824096394 + ], + [ + 4786.361197597349, + 4939.659824096394 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C12", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4936.022646268241, + "max_x": 4788.629627216802, + "max_y": 4936.022646268241, + "center": [ + 4787.4954124070755, + 4936.022646268241 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 4936.022646268241 + ], + [ + 4786.361197597349, + 4936.022646268241 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C13", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4938.420211183166, + "max_x": 4787.134317522162, + "max_y": 4939.659824096394, + "center": [ + 4786.747757559755, + 4939.04001763978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4786.361197597349, + 4939.659824096394 + ], + [ + 4787.134317522162, + 4938.420211183166 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C14", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4787.856507291988, + "min_y": 4938.420211183166, + "max_x": 4788.629627216802, + "max_y": 4939.659824096394, + "center": [ + 4788.243067254395, + 4939.04001763978 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 4939.659824096394 + ], + [ + 4787.856507291988, + 4938.420211183166 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C15", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.813061525589, + "min_y": 4937.158884300835, + "max_x": 4788.1777632885605, + "max_y": 4938.523586063807, + "center": [ + 4787.495412407075, + 4937.841235182321 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 4937.841235182321 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C16", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4936.022646268241, + "max_x": 4787.134317522162, + "max_y": 4937.262259181475, + "center": [ + 4786.747757559755, + 4936.642452724858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.134317522162, + 4937.262259181475 + ], + [ + 4786.361197597349, + 4936.022646268241 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C17", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4787.856507291988, + "min_y": 4936.022646268241, + "max_x": 4788.629627216802, + "max_y": 4937.262259181475, + "center": [ + 4788.243067254395, + 4936.642452724858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.856507291988, + 4937.262259181475 + ], + [ + 4788.629627216802, + 4936.022646268241 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C18", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4935.276058701313, + "max_x": 4788.629627216802, + "max_y": 4935.276058701313, + "center": [ + 4787.4954124070755, + 4935.276058701313 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 4935.276058701313 + ], + [ + 4786.361197597349, + 4935.276058701313 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C19", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4786.361197597349, + "min_y": 4940.406411663323, + "max_x": 4788.629627216802, + "max_y": 4940.406411663323, + "center": [ + 4787.4954124070755, + 4940.406411663323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4788.629627216802, + 4940.406411663323 + ], + [ + 4786.361197597349, + 4940.406411663323 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1A", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4783.76247457243, + "min_y": 4941.559968846639, + "max_x": 4791.228350241719, + "max_y": 4949.025844515929, + "center": [ + 4787.495412407075, + 4945.292906681284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 4945.292906681284 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1B", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4786.274944489216, + "min_y": 4945.950150645219, + "max_x": 4788.289252676542, + "max_y": 4947.628740801323, + "center": [ + 4787.2820985828785, + 4946.789445723271 + ] + }, + "raw_value": "PG", + "clean_value": "PG", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4785.962731766043, + "min_y": 4942.961277446407, + "max_x": 4788.984194047031, + "max_y": 4944.639867602511, + "center": [ + 4787.473462906537, + 4943.800572524458 + ] + }, + "raw_value": "952", + "clean_value": "952", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1D", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4787.495412407075, + "min_y": 4932.633849810908, + "max_x": 4791.683628987088, + "max_y": 4932.633849810908, + "center": [ + 4789.589520697082, + 4932.633849810908 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4787.495412407075, + 4932.633849810908 + ], + [ + 4791.683628987088, + 4932.633849810908 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4911.576902203607, + "max_x": 4797.283035739055, + "max_y": 4913.741572356848, + "center": [ + 4797.283035739055, + 4912.659237280228 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4911.576902203607 + ], + [ + 4797.283035739055, + 4913.741572356848 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C1F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4910.830314636679, + "max_x": 4798.417250548783, + "max_y": 4910.830314636679, + "center": [ + 4797.283035739056, + 4910.830314636679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 4910.830314636679 + ], + [ + 4796.148820929329, + 4910.830314636679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C20", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4907.193136808526, + "max_x": 4798.417250548783, + "max_y": 4907.193136808526, + "center": [ + 4797.283035739056, + 4907.193136808526 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 4907.193136808526 + ], + [ + 4796.148820929329, + 4907.193136808526 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C21", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4909.590701723452, + "max_x": 4796.921940854141, + "max_y": 4910.830314636679, + "center": [ + 4796.535380891735, + 4910.2105081800655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.148820929329, + 4910.830314636679 + ], + [ + 4796.921940854141, + 4909.590701723452 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C22", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4797.644130623967, + "min_y": 4909.590701723452, + "max_x": 4798.417250548783, + "max_y": 4910.830314636679, + "center": [ + 4798.0306905863745, + 4910.2105081800655 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 4910.830314636679 + ], + [ + 4797.644130623967, + 4909.590701723452 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C23", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.600684857565, + "min_y": 4908.32937484112, + "max_x": 4797.965386620537, + "max_y": 4909.694076604092, + "center": [ + 4797.283035739051, + 4909.011725722606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739051, + 4909.011725722606 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C24", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4907.193136808526, + "max_x": 4796.921940854141, + "max_y": 4908.43274972176, + "center": [ + 4796.535380891735, + 4907.812943265143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.921940854141, + 4908.43274972176 + ], + [ + 4796.148820929329, + 4907.193136808526 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C25", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4797.644130623967, + "min_y": 4907.193136808526, + "max_x": 4798.417250548783, + "max_y": 4908.43274972176, + "center": [ + 4798.0306905863745, + 4907.812943265143 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.644130623967, + 4908.43274972176 + ], + [ + 4798.417250548783, + 4907.193136808526 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C26", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4906.446549241597, + "max_x": 4798.417250548783, + "max_y": 4906.446549241597, + "center": [ + 4797.283035739056, + 4906.446549241597 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 4906.446549241597 + ], + [ + 4796.148820929329, + 4906.446549241597 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C27", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.148820929329, + "min_y": 4911.576902203607, + "max_x": 4798.417250548783, + "max_y": 4911.576902203607, + "center": [ + 4797.283035739056, + 4911.576902203607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.417250548783, + 4911.576902203607 + ], + [ + 4796.148820929329, + 4911.576902203607 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C28", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4938.938902740699, + "max_x": 4797.283035739055, + "max_y": 4941.641580957798, + "center": [ + 4797.283035739055, + 4940.290241849249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4941.641580957798 + ], + [ + 4797.283035739055, + 4938.938902740699 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C29", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4779.011941463866, + "min_y": 4878.333688702292, + "max_x": 4783.715443135518, + "max_y": 4880.293481065481, + "center": [ + 4781.363692299692, + 4879.3135848838865 + ] + }, + "raw_value": "AIR ", + "clean_value": "AIR", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4777.600436024943, + "min_y": 4874.340691471966, + "max_x": 4783.479813114508, + "max_y": 4876.300483835154, + "center": [ + 4780.540124569725, + 4875.32058765356 + ] + }, + "raw_value": "DRYER", + "clean_value": "DRYER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4775.449958406723, + "min_y": 4870.108729997383, + "max_x": 4785.905236997932, + "max_y": 4882.761456379594, + "center": [ + 4780.677597702328, + 4876.435093188489 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.449958406723, + 4882.761456379594 + ], + [ + 4775.449958406723, + 4870.108729997383 + ], + [ + 4785.905236997932, + 4870.108729997383 + ], + [ + 4785.905236997932, + 4882.761456379594 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4778.281958004121, + "min_y": 4894.929263751806, + "max_x": 4792.392463019079, + "max_y": 4896.889056114994, + "center": [ + 4785.3372105116, + 4895.9091599334 + ] + }, + "raw_value": "AFTER COOLER", + "clean_value": "AFTER COOLER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4889.345467006329, + "max_x": 4795.995838056149, + "max_y": 4903.141020287577, + "center": [ + 4785.731257193897, + 4896.2432436469535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 4903.141020287577 + ], + [ + 4775.466676331645, + 4889.345467006329 + ], + [ + 4795.995838056149, + 4889.345467006329 + ], + [ + 4795.995838056149, + 4903.141020287577 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 4957.624463550867, + "max_x": 4776.586557682038, + "max_y": 4971.900047389921, + "center": [ + 4776.586557682038, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 4971.900047389921 + ], + [ + 4776.586557682038, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C2F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4956.504582200473, + "max_x": 4775.466676331645, + "max_y": 4973.019928740316, + "center": [ + 4775.466676331645, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 4973.019928740316 + ], + [ + 4775.466676331645, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C30", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 4957.624463550867, + "max_x": 4802.41430837384, + "max_y": 4957.624463550867, + "center": [ + 4789.500433027939, + 4957.624463550867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 4957.624463550867 + ], + [ + 4802.41430837384, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C31", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4956.504582200473, + "max_x": 4803.534189724235, + "max_y": 4956.504582200473, + "center": [ + 4789.500433027941, + 4956.504582200473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 4956.504582200473 + ], + [ + 4803.534189724235, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C32", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4776.586557682038, + "min_y": 4971.900047389921, + "max_x": 4802.41430837384, + "max_y": 4971.900047389921, + "center": [ + 4789.500433027939, + 4971.900047389921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4776.586557682038, + 4971.900047389921 + ], + [ + 4802.41430837384, + 4971.900047389921 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C33", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4973.019928740316, + "max_x": 4803.534189724235, + "max_y": 4973.019928740316, + "center": [ + 4789.500433027941, + 4973.019928740316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4775.466676331645, + 4973.019928740316 + ], + [ + 4803.534189724235, + 4973.019928740316 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C34", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4780.025629643919, + "min_y": 4968.60548174838, + "max_x": 4795.703968549427, + "max_y": 4970.471950665702, + "center": [ + 4787.864799096673, + 4969.538716207041 + ] + }, + "raw_value": "AIR COMPRESSOR", + "clean_value": "AIR COMPRESSOR", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C35", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4802.41430837384, + "min_y": 4957.624463550867, + "max_x": 4802.41430837384, + "max_y": 4971.900047389921, + "center": [ + 4802.41430837384, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.41430837384, + 4971.900047389921 + ], + [ + 4802.41430837384, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C36", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.534189724235, + "min_y": 4956.504582200473, + "max_x": 4803.534189724235, + "max_y": 4973.019928740316, + "center": [ + 4803.534189724235, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.534189724235, + 4973.019928740316 + ], + [ + 4803.534189724235, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C37", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4775.466676331645, + "min_y": 4976.775759424118, + "max_x": 4785.0979051264, + "max_y": 4978.31559628091, + "center": [ + 4780.282290729023, + 4977.545677852514 + ] + }, + "raw_value": "\\pi0.00086;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LK-901A}", + "clean_value": "\\pi0.00086; \\fArial|b1|i1|c238|p34; .3333x; K-901A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C3B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4966.048231037929, + "max_x": 4807.018141495178, + "max_y": 4968.750909255028, + "center": [ + 4807.018141495178, + 4967.399570146479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4968.750909255028 + ], + [ + 4807.018141495178, + 4966.048231037929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C3C", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4803.534189724235, + "min_y": 4966.048231037929, + "max_x": 4807.018141495178, + "max_y": 4966.048231037929, + "center": [ + 4805.276165609706, + 4966.048231037929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4966.048231037929 + ], + [ + 4803.534189724235, + 4966.048231037929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C3D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4779.141143140233, + "min_y": 4965.918697712439, + "max_x": 4780.932953300862, + "max_y": 4967.411872846297, + "center": [ + 4780.037048220547, + 4966.665285279369 + ] + }, + "raw_value": "한신", + "clean_value": "한신", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C3E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 4928.559038082731, + "max_x": 4780.00179557999, + "max_y": 4956.504582200473, + "center": [ + 4780.00179557999, + 4942.531810141601 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4780.00179557999, + 4956.504582200473 + ], + [ + 4780.00179557999, + 4928.559038082731 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C3F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 4928.559038082731, + "max_x": 4791.683628987088, + "max_y": 4928.559038082731, + "center": [ + 4785.842712283539, + 4928.559038082731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4780.00179557999, + 4928.559038082731 + ], + [ + 4791.683628987088, + 4928.559038082731 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C40", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 4885.889515407843, + "max_x": 4805.99584687977, + "max_y": 4885.889515407843, + "center": [ + 4802.668353234629, + 4885.889515407843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.99584687977, + 4885.889515407843 + ], + [ + 4799.340859589487, + 4885.889515407843 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C41", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4799.340859589487, + "min_y": 4890.04084849417, + "max_x": 4805.99584687977, + "max_y": 4890.04084849417, + "center": [ + 4802.668353234629, + 4890.04084849417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.340859589487, + 4890.04084849417 + ], + [ + 4805.99584687977, + 4890.04084849417 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C42", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4806.488188110638, + "min_y": 4885.403747941209, + "max_x": 4806.488188110638, + "max_y": 4890.526615960805, + "center": [ + 4806.488188110638, + 4887.965181951007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.488188110638, + 4885.403747941209 + ], + [ + 4806.488188110638, + 4890.526615960805 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C43", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.99584687977, + "min_y": 4885.403747941209, + "max_x": 4805.99584687977, + "max_y": 4890.526615960805, + "center": [ + 4805.99584687977, + 4887.965181951007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.99584687977, + 4885.403747941209 + ], + [ + 4805.99584687977, + 4890.526615960805 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C45", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 4890.04084849417, + "max_x": 4804.887017978852, + "max_y": 4891.176685853607, + "center": [ + 4804.887017978852, + 4890.608767173888 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4890.04084849417 + ], + [ + 4804.887017978852, + 4891.176685853607 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C46", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4891.923273420535, + "max_x": 4806.021232788578, + "max_y": 4891.923273420535, + "center": [ + 4804.887017978852, + 4891.923273420535 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4891.923273420535 + ], + [ + 4806.021232788578, + 4891.923273420535 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C47", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4895.560451248687, + "max_x": 4806.021232788578, + "max_y": 4895.560451248687, + "center": [ + 4804.887017978852, + 4895.560451248687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4895.560451248687 + ], + [ + 4806.021232788578, + 4895.560451248687 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C48", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 4891.923273420535, + "max_x": 4806.021232788578, + "max_y": 4893.162886333763, + "center": [ + 4805.634672826172, + 4892.543079877149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.021232788578, + 4891.923273420535 + ], + [ + 4805.248112863766, + 4893.162886333763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C49", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4891.923273420535, + "max_x": 4804.52592309394, + "max_y": 4893.162886333763, + "center": [ + 4804.139363131533, + 4892.543079877149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4891.923273420535 + ], + [ + 4804.52592309394, + 4893.162886333763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 4893.0595114531225, + "max_x": 4805.569368860342, + "max_y": 4894.424213216094, + "center": [ + 4804.887017978856, + 4893.741862334608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978856, + 4893.741862334608 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 4894.320838335454, + "max_x": 4806.021232788578, + "max_y": 4895.560451248687, + "center": [ + 4805.634672826172, + 4894.94064479207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.248112863766, + 4894.320838335454 + ], + [ + 4806.021232788578, + 4895.560451248687 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4894.320838335454, + "max_x": 4804.52592309394, + "max_y": 4895.560451248687, + "center": [ + 4804.139363131533, + 4894.94064479207 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.52592309394, + 4894.320838335454 + ], + [ + 4803.752803169125, + 4895.560451248687 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4896.307038815617, + "max_x": 4806.021232788578, + "max_y": 4896.307038815617, + "center": [ + 4804.887017978852, + 4896.307038815617 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4896.307038815617 + ], + [ + 4806.021232788578, + 4896.307038815617 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4891.176685853607, + "max_x": 4806.021232788578, + "max_y": 4891.176685853607, + "center": [ + 4804.887017978852, + 4891.176685853607 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4891.176685853607 + ], + [ + 4806.021232788578, + 4891.176685853607 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C4F", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 4884.753678048409, + "max_x": 4804.887017978852, + "max_y": 4885.889515407844, + "center": [ + 4804.887017978852, + 4885.321596728127 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4885.889515407844 + ], + [ + 4804.887017978852, + 4884.753678048409 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C50", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4884.00709048148, + "max_x": 4806.021232788578, + "max_y": 4884.00709048148, + "center": [ + 4804.887017978852, + 4884.00709048148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4884.00709048148 + ], + [ + 4806.021232788578, + 4884.00709048148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C51", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4880.369912653327, + "max_x": 4806.021232788578, + "max_y": 4880.369912653327, + "center": [ + 4804.887017978852, + 4880.369912653327 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4880.369912653327 + ], + [ + 4806.021232788578, + 4880.369912653327 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C52", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 4882.767477568252, + "max_x": 4806.021232788578, + "max_y": 4884.00709048148, + "center": [ + 4805.634672826172, + 4883.387284024866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.021232788578, + 4884.00709048148 + ], + [ + 4805.248112863766, + 4882.767477568252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C53", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4882.767477568252, + "max_x": 4804.52592309394, + "max_y": 4884.00709048148, + "center": [ + 4804.139363131533, + 4883.387284024866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4884.00709048148 + ], + [ + 4804.52592309394, + 4882.767477568252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C54", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4804.2046670973705, + "min_y": 4881.506150685921, + "max_x": 4805.569368860342, + "max_y": 4882.870852448893, + "center": [ + 4804.887017978856, + 4882.188501567407 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978856, + 4882.188501567407 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C55", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4805.248112863766, + "min_y": 4880.369912653327, + "max_x": 4806.021232788578, + "max_y": 4881.609525566561, + "center": [ + 4805.634672826172, + 4880.989719109944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.248112863766, + 4881.609525566561 + ], + [ + 4806.021232788578, + 4880.369912653327 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C56", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4880.369912653327, + "max_x": 4804.52592309394, + "max_y": 4881.609525566561, + "center": [ + 4804.139363131533, + 4880.989719109944 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.52592309394, + 4881.609525566561 + ], + [ + 4803.752803169125, + 4880.369912653327 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C57", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4879.623325086399, + "max_x": 4806.021232788578, + "max_y": 4879.623325086399, + "center": [ + 4804.887017978852, + 4879.623325086399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4879.623325086399 + ], + [ + 4806.021232788578, + 4879.623325086399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C58", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4803.752803169125, + "min_y": 4884.753678048409, + "max_x": 4806.021232788578, + "max_y": 4884.753678048409, + "center": [ + 4804.887017978852, + 4884.753678048409 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4803.752803169125, + 4884.753678048409 + ], + [ + 4806.021232788578, + 4884.753678048409 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C59", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4866.132941537427, + "max_x": 4844.834469976966, + "max_y": 4866.132941537427, + "center": [ + 4836.435359849016, + 4866.132941537427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4866.132941537427 + ], + [ + 4828.036249721066, + 4866.132941537427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4870.612466939, + "max_x": 4844.834469976966, + "max_y": 4870.612466939, + "center": [ + 4836.435359849016, + 4870.612466939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4870.612466939 + ], + [ + 4828.036249721066, + 4870.612466939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4875.091992340575, + "max_x": 4844.834469976966, + "max_y": 4875.091992340575, + "center": [ + 4836.435359849016, + 4875.091992340575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4875.091992340575 + ], + [ + 4828.036249721066, + 4875.091992340575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4842.594707276179, + "max_y": 4879.571517742148, + "center": [ + 4835.315478498623, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5E", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4875.0919923405745, + "max_x": 4830.276012421853, + "max_y": 4879.571517742148, + "center": [ + 4828.036249721066, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C5F", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4866.1329415374275, + "max_x": 4847.074232677753, + "max_y": 4870.612466939001, + "center": [ + 4844.834469976966, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C60", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4870.612466939, + "max_x": 4842.594707276179, + "max_y": 4870.612466939, + "center": [ + 4835.315478498623, + 4870.612466939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4870.612466939 + ], + [ + 4828.036249721066, + 4870.612466939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C61", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4875.091992340575, + "max_x": 4844.834469976966, + "max_y": 4875.091992340575, + "center": [ + 4836.435359849016, + 4875.091992340575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4875.091992340575 + ], + [ + 4828.036249721066, + 4875.091992340575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C62", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C63", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C64", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4866.1329415374275, + "max_x": 4830.276012421853, + "max_y": 4870.612466939001, + "center": [ + 4828.036249721066, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C65", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4875.0919923405745, + "max_x": 4830.276012421853, + "max_y": 4879.571517742148, + "center": [ + 4828.036249721066, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C66", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4875.0919923405745, + "max_x": 4847.074232677753, + "max_y": 4879.571517742148, + "center": [ + 4844.834469976966, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C67", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4866.132941537427, + "max_x": 4844.834469976966, + "max_y": 4866.132941537427, + "center": [ + 4836.435359849016, + 4866.132941537427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4866.132941537427 + ], + [ + 4828.036249721066, + 4866.132941537427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C68", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4870.612466939, + "max_x": 4844.834469976966, + "max_y": 4870.612466939, + "center": [ + 4836.435359849016, + 4870.612466939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4870.612466939 + ], + [ + 4828.036249721066, + 4870.612466939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C69", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4875.091992340575, + "max_x": 4844.834469976966, + "max_y": 4875.091992340575, + "center": [ + 4836.435359849016, + 4875.091992340575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4875.091992340575 + ], + [ + 4828.036249721066, + 4875.091992340575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4842.594707276179, + "max_y": 4879.571517742148, + "center": [ + 4835.315478498623, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6C", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4875.0919923405745, + "max_x": 4830.276012421853, + "max_y": 4879.571517742148, + "center": [ + 4828.036249721066, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6D", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4866.1329415374275, + "max_x": 4847.074232677753, + "max_y": 4870.612466939001, + "center": [ + 4844.834469976966, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4870.612466939, + "max_x": 4842.594707276179, + "max_y": 4870.612466939, + "center": [ + 4835.315478498623, + 4870.612466939 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4842.594707276179, + 4870.612466939 + ], + [ + 4828.036249721066, + 4870.612466939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C6F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4875.091992340575, + "max_x": 4844.834469976966, + "max_y": 4875.091992340575, + "center": [ + 4836.435359849016, + 4875.091992340575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4875.091992340575 + ], + [ + 4828.036249721066, + 4875.091992340575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C70", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C71", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4828.036249721066, + "min_y": 4879.571517742148, + "max_x": 4844.834469976966, + "max_y": 4879.571517742148, + "center": [ + 4836.435359849016, + 4879.571517742148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4879.571517742148 + ], + [ + 4828.036249721066, + 4879.571517742148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C72", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4866.1329415374275, + "max_x": 4830.276012421853, + "max_y": 4870.612466939001, + "center": [ + 4828.036249721066, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C73", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4825.7964870202795, + "min_y": 4875.0919923405745, + "max_x": 4830.276012421853, + "max_y": 4879.571517742148, + "center": [ + 4828.036249721066, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.036249721066, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C74", + "entity_type": "ARC", + "layer": "PID", + "bbox": { + "min_x": 4842.594707276179, + "min_y": 4875.0919923405745, + "max_x": 4847.074232677753, + "max_y": 4879.571517742148, + "center": [ + 4844.834469976966, + 4877.331755041361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4844.834469976966, + 4877.331755041361 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C75", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4836.558857225998, + "min_y": 4876.560611125039, + "max_x": 4839.918501277178, + "max_y": 4879.360314501023, + "center": [ + 4838.238679251588, + 4877.960462813031 + ] + }, + "raw_value": "A ", + "clean_value": "A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C76", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4835.669348980617, + "min_y": 4866.835103195164, + "max_x": 4837.349171006207, + "max_y": 4869.634806571148, + "center": [ + 4836.509259993412, + 4868.234954883156 + ] + }, + "raw_value": "B", + "clean_value": "B", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C77", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4847.073978306442, + "min_y": 4877.36551001218, + "max_x": 4848.209815665875, + "max_y": 4877.36551001218, + "center": [ + 4847.641896986159, + 4877.36551001218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.073978306442, + 4877.36551001218 + ], + [ + 4848.209815665875, + 4877.36551001218 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C78", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4876.231295202453, + "max_x": 4848.956403232805, + "max_y": 4878.499724821907, + "center": [ + 4848.956403232805, + 4877.36551001218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4876.231295202453 + ], + [ + 4848.956403232805, + 4878.499724821907 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C79", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.593581060958, + "min_y": 4876.231295202453, + "max_x": 4852.593581060958, + "max_y": 4878.499724821907, + "center": [ + 4852.593581060958, + 4877.36551001218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.593581060958, + 4876.231295202453 + ], + [ + 4852.593581060958, + 4878.499724821907 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4877.726604897094, + "max_x": 4850.196016146032, + "max_y": 4878.499724821907, + "center": [ + 4849.576209689419, + 4878.1131648595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4878.499724821907 + ], + [ + 4850.196016146032, + 4877.726604897094 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956403232805, + "min_y": 4876.231295202453, + "max_x": 4850.196016146032, + "max_y": 4877.004415127268, + "center": [ + 4849.576209689419, + 4876.617855164861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956403232805, + 4876.231295202453 + ], + [ + 4850.196016146032, + 4877.004415127268 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7C", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.092641265392, + "min_y": 4876.683159130696, + "max_x": 4851.4573430283635, + "max_y": 4878.047860893668, + "center": [ + 4850.774992146878, + 4877.365510012182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.774992146878, + 4877.365510012182 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4877.726604897094, + "max_x": 4852.593581060958, + "max_y": 4878.499724821907, + "center": [ + 4851.973774604341, + 4878.1131648595 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.353968147723, + 4877.726604897094 + ], + [ + 4852.593581060958, + 4878.499724821907 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.353968147723, + "min_y": 4876.231295202453, + "max_x": 4852.593581060958, + "max_y": 4877.004415127268, + "center": [ + 4851.973774604341, + 4876.617855164861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.353968147723, + 4877.004415127268 + ], + [ + 4852.593581060958, + 4876.231295202453 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C7F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4853.340168627885, + "min_y": 4876.231295202453, + "max_x": 4853.340168627885, + "max_y": 4878.499724821907, + "center": [ + 4853.340168627885, + 4877.36551001218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.340168627885, + 4876.231295202453 + ], + [ + 4853.340168627885, + 4878.499724821907 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C80", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.209815665875, + "min_y": 4876.231295202453, + "max_x": 4848.209815665875, + "max_y": 4878.499724821907, + "center": [ + 4848.209815665875, + 4877.36551001218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.209815665875, + 4876.231295202453 + ], + [ + 4848.209815665875, + 4878.499724821907 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C81", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4824.661307670703, + "min_y": 4877.277467483841, + "max_x": 4825.797145030137, + "max_y": 4877.277467483841, + "center": [ + 4825.22922635042, + 4877.277467483841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.797145030137, + 4877.277467483841 + ], + [ + 4824.661307670703, + 4877.277467483841 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C82", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4823.914720103774, + "min_y": 4876.143252674115, + "max_x": 4823.914720103774, + "max_y": 4878.411682293568, + "center": [ + 4823.914720103774, + 4877.277467483842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4876.143252674115 + ], + [ + 4823.914720103774, + 4878.411682293568 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C83", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4876.143252674115, + "max_x": 4820.277542275622, + "max_y": 4878.411682293568, + "center": [ + 4820.277542275622, + 4877.277467483842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4820.277542275622, + 4876.143252674115 + ], + [ + 4820.277542275622, + 4878.411682293568 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C84", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4877.638562368755, + "max_x": 4823.914720103774, + "max_y": 4878.411682293568, + "center": [ + 4823.29491364716, + 4878.025122331162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4878.411682293568 + ], + [ + 4822.675107190545, + 4877.638562368755 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C85", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675107190545, + "min_y": 4876.143252674115, + "max_x": 4823.914720103774, + "max_y": 4876.916372598929, + "center": [ + 4823.29491364716, + 4876.5298126365215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914720103774, + 4876.143252674115 + ], + [ + 4822.675107190545, + 4876.916372598929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C86", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.413780308215, + "min_y": 4876.595116602357, + "max_x": 4822.778482071187, + "max_y": 4877.959818365329, + "center": [ + 4822.096131189701, + 4877.277467483843 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4822.096131189701, + 4877.277467483843 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C87", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4877.638562368755, + "max_x": 4821.517155188854, + "max_y": 4878.411682293568, + "center": [ + 4820.897348732238, + 4878.025122331162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.517155188854, + 4877.638562368755 + ], + [ + 4820.277542275622, + 4878.411682293568 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C88", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277542275622, + "min_y": 4876.143252674115, + "max_x": 4821.517155188854, + "max_y": 4876.916372598929, + "center": [ + 4820.897348732238, + 4876.5298126365215 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.517155188854, + 4876.916372598929 + ], + [ + 4820.277542275622, + 4876.143252674115 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C89", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.530954708692, + "min_y": 4876.143252674115, + "max_x": 4819.530954708692, + "max_y": 4878.411682293568, + "center": [ + 4819.530954708692, + 4877.277467483842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.530954708692, + 4876.143252674115 + ], + [ + 4819.530954708692, + 4878.411682293568 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.661307670703, + "min_y": 4876.143252674115, + "max_x": 4824.661307670703, + "max_y": 4878.411682293568, + "center": [ + 4824.661307670703, + 4877.277467483842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.661307670703, + 4876.143252674115 + ], + [ + 4824.661307670703, + 4878.411682293568 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8B", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4847.074232677752, + "min_y": 4868.372704238214, + "max_x": 4848.210070037189, + "max_y": 4868.372704238214, + "center": [ + 4847.6421513574705, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4847.074232677752, + 4868.372704238214 + ], + [ + 4848.210070037189, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4867.238489428487, + "max_x": 4848.956657604118, + "max_y": 4869.50691904794, + "center": [ + 4848.956657604118, + 4868.372704238213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4867.238489428487 + ], + [ + 4848.956657604118, + 4869.50691904794 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4852.593835432272, + "min_y": 4867.238489428487, + "max_x": 4852.593835432272, + "max_y": 4869.50691904794, + "center": [ + 4852.593835432272, + 4868.372704238213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.593835432272, + 4867.238489428487 + ], + [ + 4852.593835432272, + 4869.50691904794 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4868.733799123127, + "max_x": 4850.196270517344, + "max_y": 4869.50691904794, + "center": [ + 4849.57646406073, + 4869.120359085533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4869.50691904794 + ], + [ + 4850.196270517344, + 4868.733799123127 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C8F", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.956657604118, + "min_y": 4867.238489428487, + "max_x": 4850.196270517344, + "max_y": 4868.011609353302, + "center": [ + 4849.57646406073, + 4867.625049390895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.956657604118, + 4867.238489428487 + ], + [ + 4850.196270517344, + 4868.011609353302 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C90", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4850.092895636705, + "min_y": 4867.69035335673, + "max_x": 4851.457597399677, + "max_y": 4869.055055119702, + "center": [ + 4850.775246518191, + 4868.372704238216 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.775246518191, + 4868.372704238216 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C91", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4868.733799123127, + "max_x": 4852.593835432272, + "max_y": 4869.50691904794, + "center": [ + 4851.974028975654, + 4869.120359085533 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.354222519035, + 4868.733799123127 + ], + [ + 4852.593835432272, + 4869.50691904794 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C92", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4851.354222519035, + "min_y": 4867.238489428487, + "max_x": 4852.593835432272, + "max_y": 4868.011609353302, + "center": [ + 4851.974028975654, + 4867.625049390895 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4851.354222519035, + 4868.011609353302 + ], + [ + 4852.593835432272, + 4867.238489428487 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C93", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4853.340422999202, + "min_y": 4867.238489428487, + "max_x": 4853.340422999202, + "max_y": 4869.50691904794, + "center": [ + 4853.340422999202, + 4868.372704238213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.340422999202, + 4867.238489428487 + ], + [ + 4853.340422999202, + 4869.50691904794 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C94", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4848.210070037189, + "min_y": 4867.238489428487, + "max_x": 4848.210070037189, + "max_y": 4869.50691904794, + "center": [ + 4848.210070037189, + 4868.372704238213 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4848.210070037189, + 4867.238489428487 + ], + [ + 4848.210070037189, + 4869.50691904794 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C95", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4824.661562042018, + "min_y": 4868.284661709875, + "max_x": 4825.797399401452, + "max_y": 4868.284661709875, + "center": [ + 4825.229480721735, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.797399401452, + 4868.284661709875 + ], + [ + 4824.661562042018, + 4868.284661709875 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C96", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4823.914974475088, + "min_y": 4867.150446900148, + "max_x": 4823.914974475088, + "max_y": 4869.418876519602, + "center": [ + 4823.914974475088, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4867.150446900148 + ], + [ + 4823.914974475088, + 4869.418876519602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C97", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4867.150446900148, + "max_x": 4820.277796646935, + "max_y": 4869.418876519602, + "center": [ + 4820.277796646935, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4820.277796646935, + 4867.150446900148 + ], + [ + 4820.277796646935, + 4869.418876519602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C98", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4868.645756594788, + "max_x": 4823.914974475088, + "max_y": 4869.418876519602, + "center": [ + 4823.295168018474, + 4869.032316557195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4869.418876519602 + ], + [ + 4822.675361561862, + 4868.645756594788 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C99", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4822.675361561862, + "min_y": 4867.150446900148, + "max_x": 4823.914974475088, + "max_y": 4867.923566824963, + "center": [ + 4823.295168018474, + 4867.537006862556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.914974475088, + 4867.150446900148 + ], + [ + 4822.675361561862, + 4867.923566824963 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9A", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4821.414034679529, + "min_y": 4867.602310828392, + "max_x": 4822.778736442501, + "max_y": 4868.9670125913635, + "center": [ + 4822.096385561015, + 4868.284661709878 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4822.096385561015, + 4868.284661709878 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4868.645756594788, + "max_x": 4821.51740956017, + "max_y": 4869.418876519602, + "center": [ + 4820.897603103553, + 4869.032316557195 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.51740956017, + 4868.645756594788 + ], + [ + 4820.277796646935, + 4869.418876519602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4820.277796646935, + "min_y": 4867.150446900148, + "max_x": 4821.51740956017, + "max_y": 4867.923566824963, + "center": [ + 4820.897603103553, + 4867.537006862556 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4821.51740956017, + 4867.923566824963 + ], + [ + 4820.277796646935, + 4867.150446900148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4819.531209080005, + "min_y": 4867.150446900148, + "max_x": 4819.531209080005, + "max_y": 4869.418876519602, + "center": [ + 4819.531209080005, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.531209080005, + 4867.150446900148 + ], + [ + 4819.531209080005, + 4869.418876519602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9E", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4824.661562042018, + "min_y": 4867.150446900148, + "max_x": 4824.661562042018, + "max_y": 4869.418876519602, + "center": [ + 4824.661562042018, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4824.661562042018, + 4867.150446900148 + ], + [ + 4824.661562042018, + 4869.418876519602 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561C9F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4877.277467483841, + "max_x": 4819.530954708692, + "max_y": 4877.277467483841, + "center": [ + 4818.387441718471, + 4877.277467483841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4819.530954708692, + 4877.277467483841 + ], + [ + 4817.243928728249, + 4877.277467483841 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4868.284661709875, + "max_x": 4817.243928728249, + "max_y": 4877.277467483841, + "center": [ + 4817.243928728249, + 4872.781064596858 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4817.243928728249, + 4877.277467483841 + ], + [ + 4817.243928728249, + 4868.284661709875 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4817.243928728249, + "min_y": 4868.284661709875, + "max_x": 4819.531209080005, + "max_y": 4868.284661709875, + "center": [ + 4818.387568904127, + 4868.284661709875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4817.243928728249, + 4868.284661709875 + ], + [ + 4819.531209080005, + 4868.284661709875 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4853.618385047774, + "min_y": 4877.701588131325, + "max_x": 4855.994716894842, + "max_y": 4877.701588131325, + "center": [ + 4854.806550971308, + 4877.701588131325 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4853.618385047774, + 4877.701588131325 + ], + [ + 4855.994716894842, + 4877.701588131325 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4868.372704238214, + "max_x": 4855.994716894842, + "max_y": 4877.701588131325, + "center": [ + 4855.994716894842, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4877.701588131325 + ], + [ + 4855.994716894842, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4853.340422999202, + "min_y": 4868.372704238214, + "max_x": 4855.994716894842, + "max_y": 4868.372704238214, + "center": [ + 4854.667569947022, + 4868.372704238214 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4868.372704238214 + ], + [ + 4853.340422999202, + 4868.372704238214 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4801.370669789996, + "min_y": 4867.234906207492, + "max_x": 4801.370669789996, + "max_y": 4873.889893497774, + "center": [ + 4801.370669789996, + 4870.5623998526335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4801.370669789996, + 4873.889893497774 + ], + [ + 4801.370669789996, + 4867.234906207492 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4867.234906207492, + "max_x": 4805.522002876323, + "max_y": 4873.889893497774, + "center": [ + 4805.522002876323, + 4870.5623998526335 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.522002876323, + 4867.234906207492 + ], + [ + 4805.522002876323, + 4873.889893497774 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.884902323361, + "min_y": 4874.382234728642, + "max_x": 4806.007770342958, + "max_y": 4874.382234728642, + "center": [ + 4803.44633633316, + 4874.382234728642 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.884902323361, + 4874.382234728642 + ], + [ + 4806.007770342958, + 4874.382234728642 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CA8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.884902323361, + "min_y": 4873.889893497774, + "max_x": 4806.007770342958, + "max_y": 4873.889893497774, + "center": [ + 4803.44633633316, + 4873.889893497774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.884902323361, + 4873.889893497774 + ], + [ + 4806.007770342958, + 4873.889893497774 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAA", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4805.522002876323, + "min_y": 4872.781064596857, + "max_x": 4806.657840235759, + "max_y": 4872.781064596857, + "center": [ + 4806.089921556041, + 4872.781064596857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4805.522002876323, + 4872.781064596857 + ], + [ + 4806.657840235759, + 4872.781064596857 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4871.646849787131, + "max_x": 4807.404427802687, + "max_y": 4873.915279406584, + "center": [ + 4807.404427802687, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4871.646849787131 + ], + [ + 4807.404427802687, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4811.041605630842, + "min_y": 4871.646849787131, + "max_x": 4811.041605630842, + "max_y": 4873.915279406584, + "center": [ + 4811.041605630842, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.041605630842, + 4871.646849787131 + ], + [ + 4811.041605630842, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4873.142159481771, + "max_x": 4808.644040715915, + "max_y": 4873.915279406584, + "center": [ + 4808.024234259301, + 4873.528719444177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4873.915279406584 + ], + [ + 4808.644040715915, + 4873.142159481771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4807.404427802687, + "min_y": 4871.646849787131, + "max_x": 4808.644040715915, + "max_y": 4872.419969711946, + "center": [ + 4808.024234259301, + 4872.033409749538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.404427802687, + 4871.646849787131 + ], + [ + 4808.644040715915, + 4872.419969711946 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CAF", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4808.540665835274, + "min_y": 4872.098713715375, + "max_x": 4809.905367598246, + "max_y": 4873.463415478347, + "center": [ + 4809.22301671676, + 4872.781064596861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.22301671676, + 4872.781064596861 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4873.142159481771, + "max_x": 4811.041605630842, + "max_y": 4873.915279406584, + "center": [ + 4810.421799174224, + 4873.528719444177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.801992717606, + 4873.142159481771 + ], + [ + 4811.041605630842, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4809.801992717606, + "min_y": 4871.646849787131, + "max_x": 4811.041605630842, + "max_y": 4872.419969711946, + "center": [ + 4810.421799174224, + 4872.033409749538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.801992717606, + 4872.419969711946 + ], + [ + 4811.041605630842, + 4871.646849787131 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4871.646849787131, + "max_x": 4811.78819319777, + "max_y": 4873.915279406584, + "center": [ + 4811.78819319777, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.78819319777, + 4871.646849787131 + ], + [ + 4811.78819319777, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4806.657840235759, + "min_y": 4871.646849787131, + "max_x": 4806.657840235759, + "max_y": 4873.915279406584, + "center": [ + 4806.657840235759, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.657840235759, + 4871.646849787131 + ], + [ + 4806.657840235759, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4800.234832430562, + "min_y": 4872.781064596857, + "max_x": 4801.370669789996, + "max_y": 4872.781064596857, + "center": [ + 4800.802751110279, + 4872.781064596857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4801.370669789996, + 4872.781064596857 + ], + [ + 4800.234832430562, + 4872.781064596857 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4799.488244863632, + "min_y": 4871.646849787131, + "max_x": 4799.488244863632, + "max_y": 4873.915279406584, + "center": [ + 4799.488244863632, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4871.646849787131 + ], + [ + 4799.488244863632, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4871.646849787131, + "max_x": 4795.851067035481, + "max_y": 4873.915279406584, + "center": [ + 4795.851067035481, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.851067035481, + 4871.646849787131 + ], + [ + 4795.851067035481, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4873.142159481771, + "max_x": 4799.488244863632, + "max_y": 4873.915279406584, + "center": [ + 4798.868438407018, + 4873.528719444177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4873.915279406584 + ], + [ + 4798.248631950404, + 4873.142159481771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB8", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4798.248631950404, + "min_y": 4871.646849787131, + "max_x": 4799.488244863632, + "max_y": 4872.419969711946, + "center": [ + 4798.868438407018, + 4872.033409749538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.488244863632, + 4871.646849787131 + ], + [ + 4798.248631950404, + 4872.419969711946 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CB9", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4796.987305068073, + "min_y": 4872.098713715375, + "max_x": 4798.3520068310445, + "max_y": 4873.463415478347, + "center": [ + 4797.669655949559, + 4872.781064596861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.669655949559, + 4872.781064596861 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4873.142159481771, + "max_x": 4797.090679948713, + "max_y": 4873.915279406584, + "center": [ + 4796.470873492097, + 4873.528719444177 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.090679948713, + 4873.142159481771 + ], + [ + 4795.851067035481, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.851067035481, + "min_y": 4871.646849787131, + "max_x": 4797.090679948713, + "max_y": 4872.419969711946, + "center": [ + 4796.470873492097, + 4872.033409749538 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.090679948713, + 4872.419969711946 + ], + [ + 4795.851067035481, + 4871.646849787131 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4795.104479468551, + "min_y": 4871.646849787131, + "max_x": 4795.104479468551, + "max_y": 4873.915279406584, + "center": [ + 4795.104479468551, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.104479468551, + 4871.646849787131 + ], + [ + 4795.104479468551, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4800.234832430562, + "min_y": 4871.646849787131, + "max_x": 4800.234832430562, + "max_y": 4873.915279406584, + "center": [ + 4800.234832430562, + 4872.7810645968575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4800.234832430562, + 4871.646849787131 + ], + [ + 4800.234832430562, + 4873.915279406584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBE", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4871.867975833095, + "min_y": 4867.490987795404, + "max_x": 4871.867975833095, + "max_y": 4874.145975085687, + "center": [ + 4871.867975833095, + 4870.818481440545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.867975833095, + 4874.145975085687 + ], + [ + 4871.867975833095, + 4867.490987795404 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CBF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.716642746767, + "min_y": 4867.490987795404, + "max_x": 4867.716642746767, + "max_y": 4874.145975085687, + "center": [ + 4867.716642746767, + 4870.818481440545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4867.716642746767, + 4867.490987795404 + ], + [ + 4867.716642746767, + 4874.145975085687 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC0", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4874.638316316555, + "max_x": 4872.353743299729, + "max_y": 4874.638316316555, + "center": [ + 4869.792309289931, + 4874.638316316555 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.353743299729, + 4874.638316316555 + ], + [ + 4867.230875280132, + 4874.638316316555 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC1", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4867.230875280132, + "min_y": 4874.145975085687, + "max_x": 4872.353743299729, + "max_y": 4874.145975085687, + "center": [ + 4869.792309289931, + 4874.145975085687 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4872.353743299729, + 4874.145975085687 + ], + [ + 4867.230875280132, + 4874.145975085687 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4866.580805387332, + "min_y": 4873.037146184771, + "max_x": 4867.716642746767, + "max_y": 4873.037146184771, + "center": [ + 4867.148724067049, + 4873.037146184771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4867.716642746767, + 4873.037146184771 + ], + [ + 4866.580805387332, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4865.834217820403, + "min_y": 4871.902931375043, + "max_x": 4865.834217820403, + "max_y": 4874.171360994496, + "center": [ + 4865.834217820403, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4871.902931375043 + ], + [ + 4865.834217820403, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4871.902931375043, + "max_x": 4862.19703999225, + "max_y": 4874.171360994496, + "center": [ + 4862.19703999225, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4862.19703999225, + 4871.902931375043 + ], + [ + 4862.19703999225, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4873.398241069684, + "max_x": 4865.834217820403, + "max_y": 4874.171360994496, + "center": [ + 4865.21441136379, + 4873.78480103209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4874.171360994496 + ], + [ + 4864.594604907175, + 4873.398241069684 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC7", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4864.594604907175, + "min_y": 4871.902931375043, + "max_x": 4865.834217820403, + "max_y": 4872.676051299858, + "center": [ + 4865.21441136379, + 4872.289491337451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4865.834217820403, + 4871.902931375043 + ], + [ + 4864.594604907175, + 4872.676051299858 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC8", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4863.333278024844, + "min_y": 4872.354795303286, + "max_x": 4864.697979787816, + "max_y": 4873.719497066258, + "center": [ + 4864.01562890633, + 4873.037146184772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4864.01562890633, + 4873.037146184772 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CC9", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4873.398241069684, + "max_x": 4863.436652905484, + "max_y": 4874.171360994496, + "center": [ + 4862.816846448867, + 4873.78480103209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4863.436652905484, + 4873.398241069684 + ], + [ + 4862.19703999225, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4862.19703999225, + "min_y": 4871.902931375043, + "max_x": 4863.436652905484, + "max_y": 4872.676051299858, + "center": [ + 4862.816846448867, + 4872.289491337451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4863.436652905484, + 4872.676051299858 + ], + [ + 4862.19703999225, + 4871.902931375043 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4861.45045242532, + "min_y": 4871.902931375043, + "max_x": 4861.45045242532, + "max_y": 4874.171360994496, + "center": [ + 4861.45045242532, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4861.45045242532, + 4871.902931375043 + ], + [ + 4861.45045242532, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4866.580805387332, + "min_y": 4871.902931375043, + "max_x": 4866.580805387332, + "max_y": 4874.171360994496, + "center": [ + 4866.580805387332, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4866.580805387332, + 4871.902931375043 + ], + [ + 4866.580805387332, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4871.867975833095, + "min_y": 4873.037146184771, + "max_x": 4873.00381319253, + "max_y": 4873.037146184771, + "center": [ + 4872.435894512813, + 4873.037146184771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4871.867975833095, + 4873.037146184771 + ], + [ + 4873.00381319253, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCE", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4871.902931375043, + "max_x": 4873.750400759458, + "max_y": 4874.171360994496, + "center": [ + 4873.750400759458, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4871.902931375043 + ], + [ + 4873.750400759458, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CCF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4877.38757858761, + "min_y": 4871.902931375043, + "max_x": 4877.38757858761, + "max_y": 4874.171360994496, + "center": [ + 4877.38757858761, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.38757858761, + 4871.902931375043 + ], + [ + 4877.38757858761, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4873.398241069684, + "max_x": 4874.990013672686, + "max_y": 4874.171360994496, + "center": [ + 4874.370207216072, + 4873.78480103209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4874.171360994496 + ], + [ + 4874.990013672686, + 4873.398241069684 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.750400759458, + "min_y": 4871.902931375043, + "max_x": 4874.990013672686, + "max_y": 4872.676051299858, + "center": [ + 4874.370207216072, + 4872.289491337451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.750400759458, + 4871.902931375043 + ], + [ + 4874.990013672686, + 4872.676051299858 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD2", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4874.886638792045, + "min_y": 4872.354795303286, + "max_x": 4876.251340555017, + "max_y": 4873.719497066258, + "center": [ + 4875.568989673531, + 4873.037146184772 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4875.568989673531, + 4873.037146184772 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD3", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4873.398241069684, + "max_x": 4877.38757858761, + "max_y": 4874.171360994496, + "center": [ + 4876.767772130994, + 4873.78480103209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.147965674378, + 4873.398241069684 + ], + [ + 4877.38757858761, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD4", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4876.147965674378, + "min_y": 4871.902931375043, + "max_x": 4877.38757858761, + "max_y": 4872.676051299858, + "center": [ + 4876.767772130994, + 4872.289491337451 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4876.147965674378, + 4872.676051299858 + ], + [ + 4877.38757858761, + 4871.902931375043 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD5", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4878.13416615454, + "min_y": 4871.902931375043, + "max_x": 4878.13416615454, + "max_y": 4874.171360994496, + "center": [ + 4878.13416615454, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4878.13416615454, + 4871.902931375043 + ], + [ + 4878.13416615454, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD6", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4873.00381319253, + "min_y": 4871.902931375043, + "max_x": 4873.00381319253, + "max_y": 4874.171360994496, + "center": [ + 4873.00381319253, + 4873.03714618477 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4873.00381319253, + 4871.902931375043 + ], + [ + 4873.00381319253, + 4874.171360994496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD7", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4811.78819319777, + "min_y": 4872.781064596857, + "max_x": 4817.243928728249, + "max_y": 4872.781064596857, + "center": [ + 4814.516060963009, + 4872.781064596857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4811.78819319777, + 4872.781064596857 + ], + [ + 4817.243928728249, + 4872.781064596857 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD8", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4855.994716894842, + "min_y": 4873.037146184771, + "max_x": 4861.45045242532, + "max_y": 4873.037146184771, + "center": [ + 4858.722584660081, + 4873.037146184771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.994716894842, + 4873.037146184771 + ], + [ + 4861.45045242532, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CD9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4797.921763003293, + "min_y": 4862.179495145056, + "max_x": 4809.6805171824235, + "max_y": 4864.139287508244, + "center": [ + 4803.801140092858, + 4863.15939132665 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4864.042503631804, + "min_y": 4862.757690850549, + "max_x": 4875.801257810935, + "max_y": 4864.717483213737, + "center": [ + 4869.921880721369, + 4863.737587032143 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4802.882442491021, + "min_y": 4934.095572563829, + "max_x": 4814.029807467484, + "max_y": 4934.095572563829, + "center": [ + 4808.456124979252, + 4934.095572563829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4802.882442491021, + 4934.095572563829 + ], + [ + 4814.029807467484, + 4934.095572563829 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4814.029807467484, + "min_y": 4900.897104267023, + "max_x": 4814.029807467484, + "max_y": 4934.095572563829, + "center": [ + 4814.029807467484, + 4917.496338415425 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 4934.095572563829 + ], + [ + 4814.029807467484, + 4900.897104267023 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 4900.897104267023, + "max_x": 4814.029807467484, + "max_y": 4900.897104267023, + "center": [ + 4805.012822761817, + 4900.897104267023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 4900.897104267023 + ], + [ + 4795.995838056149, + 4900.897104267023 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 4898.472027237786, + "max_x": 4804.887017978852, + "max_y": 4898.472027237786, + "center": [ + 4800.441428017501, + 4898.472027237786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.995838056149, + 4898.472027237786 + ], + [ + 4804.887017978852, + 4898.472027237786 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CDF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 4896.307038815617, + "max_x": 4804.887017978852, + "max_y": 4898.472027237786, + "center": [ + 4804.887017978852, + 4897.389533026701 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4898.472027237786 + ], + [ + 4804.887017978852, + 4896.307038815617 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4804.887017978852, + "min_y": 4877.900684162185, + "max_x": 4804.887017978852, + "max_y": 4879.623325086399, + "center": [ + 4804.887017978852, + 4878.762004624292 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4879.623325086399 + ], + [ + 4804.887017978852, + 4877.900684162185 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4877.900684162185, + "max_x": 4804.887017978852, + "max_y": 4877.900684162185, + "center": [ + 4795.396127488391, + 4877.900684162185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4877.900684162185 + ], + [ + 4785.905236997932, + 4877.900684162185 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE2", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4872.781064596857, + "max_x": 4795.104479468551, + "max_y": 4872.781064596857, + "center": [ + 4790.504858233242, + 4872.781064596857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.104479468551, + 4872.781064596857 + ], + [ + 4785.905236997932, + 4872.781064596857 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4811.373175490592, + "min_y": 4887.26649889579, + "max_x": 4823.131929669723, + "max_y": 4889.226291258979, + "center": [ + 4817.2525525801575, + 4888.2463950773845 + ] + }, + "raw_value": "AIR FILTER", + "clean_value": "AIR FILTER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE4", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4778.316559611003, + "min_y": 4924.433713000613, + "max_x": 4787.947788405758, + "max_y": 4925.973549857405, + "center": [ + 4783.13217400838, + 4925.203631429009 + ] + }, + "raw_value": "\\pi1.03719;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LD-901}", + "clean_value": "\\pi1.03719; \\fArial|b1|i1|c238|p34; .3333x; D-901", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4776.333590468051, + "min_y": 4919.343969214608, + "max_x": 4789.6601785377325, + "max_y": 4920.650497456733, + "center": [ + 4782.996884502892, + 4919.997233335671 + ] + }, + "raw_value": "AIR RECIEVER TANK", + "clean_value": "AIR RECIEVER TANK", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CE9", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4789.722958413204, + "min_y": 4928.559038082731, + "max_x": 4791.683628987088, + "max_y": 4928.559038082731, + "center": [ + 4790.703293700146, + 4928.559038082731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4791.683628987088, + 4928.559038082731 + ], + [ + 4789.722958413204, + 4928.559038082731 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CEA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4812.069136893598, + "min_y": 4934.095572563829, + "max_x": 4814.029807467484, + "max_y": 4934.095572563829, + "center": [ + 4813.049472180541, + 4934.095572563829 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4814.029807467484, + 4934.095572563829 + ], + [ + 4812.069136893598, + 4934.095572563829 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CEB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4802.926347404968, + "min_y": 4898.472027237786, + "max_x": 4804.887017978852, + "max_y": 4898.472027237786, + "center": [ + 4803.90668269191, + 4898.472027237786 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4804.887017978852, + 4898.472027237786 + ], + [ + 4802.926347404968, + 4898.472027237786 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CEC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4790.155765524057, + "min_y": 4872.781064596857, + "max_x": 4792.116436097944, + "max_y": 4872.781064596857, + "center": [ + 4791.136100811, + 4872.781064596857 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4792.116436097944, + 4872.781064596857 + ], + [ + 4790.155765524057, + 4872.781064596857 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CED", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4795.995838056149, + "min_y": 4900.897104267023, + "max_x": 4797.956508630035, + "max_y": 4900.897104267023, + "center": [ + 4796.976173343092, + 4900.897104267023 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4795.995838056149, + 4900.897104267023 + ], + [ + 4797.956508630035, + 4900.897104267023 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CEE", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4785.905236997932, + "min_y": 4877.900684162185, + "max_x": 4787.865907571819, + "max_y": 4877.900684162185, + "center": [ + 4786.885572284875, + 4877.900684162185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4785.905236997932, + 4877.900684162185 + ], + [ + 4787.865907571819, + 4877.900684162185 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CEF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4827.770098803281, + "min_y": 4881.486363485976, + "max_x": 4844.232354654064, + "max_y": 4882.7928917281015, + "center": [ + 4836.001226728673, + 4882.139627607039 + ] + }, + "raw_value": "REGENERATOR AIR DRYER", + "clean_value": "REGENERATOR AIR DRYER", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF0", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4865.220195111042, + "min_y": 4879.368341448213, + "max_x": 4874.851423905797, + "max_y": 4880.908178305004, + "center": [ + 4870.035809508419, + 4880.138259876609 + ] + }, + "raw_value": "\\pi1.10441;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LF-952}", + "clean_value": "\\pi1.10441; \\fArial|b1|i1|c238|p34; .3333x; F-952", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.114749532418, + "min_y": 4957.624463550867, + "max_x": 4825.114749532418, + "max_y": 4971.900047389921, + "center": [ + 4825.114749532418, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.114749532418, + 4971.900047389921 + ], + [ + 4825.114749532418, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4956.504582200473, + "max_x": 4823.994868182026, + "max_y": 4973.019928740316, + "center": [ + 4823.994868182026, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.994868182026, + 4973.019928740316 + ], + [ + 4823.994868182026, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF6", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.114749532418, + "min_y": 4957.624463550867, + "max_x": 4850.942500224221, + "max_y": 4957.624463550867, + "center": [ + 4838.0286248783195, + 4957.624463550867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.114749532418, + 4957.624463550867 + ], + [ + 4850.942500224221, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF7", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4956.504582200473, + "max_x": 4852.062381574615, + "max_y": 4956.504582200473, + "center": [ + 4838.02862487832, + 4956.504582200473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.994868182026, + 4956.504582200473 + ], + [ + 4852.062381574615, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF8", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4825.114749532418, + "min_y": 4971.900047389921, + "max_x": 4850.942500224221, + "max_y": 4971.900047389921, + "center": [ + 4838.0286248783195, + 4971.900047389921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4825.114749532418, + 4971.900047389921 + ], + [ + 4850.942500224221, + 4971.900047389921 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CF9", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4973.019928740316, + "max_x": 4852.062381574615, + "max_y": 4973.019928740316, + "center": [ + 4838.02862487832, + 4973.019928740316 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4823.994868182026, + 4973.019928740316 + ], + [ + 4852.062381574615, + 4973.019928740316 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CFA", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4828.5538214943, + "min_y": 4968.60548174838, + "max_x": 4844.232160399808, + "max_y": 4970.471950665702, + "center": [ + 4836.3929909470535, + 4969.538716207041 + ] + }, + "raw_value": "AIR COMPRESSOR", + "clean_value": "AIR COMPRESSOR", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CFB", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4850.942500224221, + "min_y": 4957.624463550867, + "max_x": 4850.942500224221, + "max_y": 4971.900047389921, + "center": [ + 4850.942500224221, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4850.942500224221, + 4971.900047389921 + ], + [ + 4850.942500224221, + 4957.624463550867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CFC", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4852.062381574615, + "min_y": 4956.504582200473, + "max_x": 4852.062381574615, + "max_y": 4973.019928740316, + "center": [ + 4852.062381574615, + 4964.762255470394 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4852.062381574615, + 4973.019928740316 + ], + [ + 4852.062381574615, + 4956.504582200473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561CFD", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4823.994868182026, + "min_y": 4976.775759424118, + "max_x": 4833.626096976781, + "max_y": 4978.31559628091, + "center": [ + 4828.8104825794035, + 4977.545677852514 + ] + }, + "raw_value": "\\pi-0.05166;{\\fArial|b1|i1|c238|p34;\\H1.3333x;\\LK-901B}", + "clean_value": "\\pi-0.05166; \\fArial|b1|i1|c238|p34; .3333x; K-901B", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D01", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4966.048231037929, + "max_x": 4855.546333345559, + "max_y": 4968.750909255028, + "center": [ + 4855.546333345559, + 4967.399570146479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4968.750909255028 + ], + [ + 4855.546333345559, + 4966.048231037929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D02", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4852.062381574615, + "min_y": 4966.048231037929, + "max_x": 4855.546333345559, + "max_y": 4966.048231037929, + "center": [ + 4853.804357460087, + 4966.048231037929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4966.048231037929 + ], + [ + 4852.062381574615, + 4966.048231037929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D03", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4827.669334990615, + "min_y": 4965.918697712439, + "max_x": 4829.461145151245, + "max_y": 4967.411872846297, + "center": [ + 4828.56524007093, + 4966.665285279369 + ] + }, + "raw_value": "한신", + "clean_value": "한신", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D04", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4780.00179557999, + "min_y": 4952.866800385867, + "max_x": 4828.529987430371, + "max_y": 4952.866800385867, + "center": [ + 4804.265891505181, + 4952.866800385867 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4780.00179557999, + 4952.866800385867 + ], + [ + 4828.529987430371, + 4952.866800385867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D05", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4828.529987430371, + "min_y": 4952.866800385867, + "max_x": 4828.529987430371, + "max_y": 4956.504582200473, + "center": [ + 4828.529987430371, + 4954.68569129317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4828.529987430371, + 4956.504582200473 + ], + [ + 4828.529987430371, + 4952.866800385867 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D06", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4878.13416615454, + "min_y": 4873.037146184771, + "max_x": 4987.368526641795, + "max_y": 4873.037146184771, + "center": [ + 4932.751346398168, + 4873.037146184771 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4878.13416615454, + 4873.037146184771 + ], + [ + 4987.368526641795, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D07", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4928.055123076494, + "min_y": 4891.118552785808, + "max_x": 4934.098844277269, + "max_y": 4892.797364230468, + "center": [ + 4931.076983676881, + 4891.957958508137 + ] + }, + "raw_value": "분석실 6동", + "clean_value": "분석실 6동", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D08", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4927.693381180457, + "min_y": 4886.639027384234, + "max_x": 4936.758962981618, + "max_y": 4888.317838828894, + "center": [ + 4932.226172081038, + 4887.478433106564 + ] + }, + "raw_value": "IMS #1 5동", + "clean_value": "IMS #1 5동", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D09", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4928.622351493359, + "min_y": 4882.159501982661, + "max_x": 4933.658785827338, + "max_y": 4883.838313427321, + "center": [ + 4931.140568660348, + 4882.99890770499 + ] + }, + "raw_value": "#1연수실", + "clean_value": "#1연수실", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4928.298424825111, + "min_y": 4877.679976581088, + "max_x": 4934.342146025886, + "max_y": 4879.358788025748, + "center": [ + 4931.320285425499, + 4878.519382303419 + ] + }, + "raw_value": "#2 연수실", + "clean_value": "#2 연수실", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4890.091489590815, + "max_x": 4925.36181455237, + "max_y": 4893.82442742546, + "center": [ + 4925.36181455237, + 4891.957958508137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4925.36181455237, + 4893.82442742546 + ], + [ + 4925.36181455237, + 4890.091489590815 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4891.957958508137, + "max_x": 4941.786741024806, + "max_y": 4893.82442742546, + "center": [ + 4940.8535065661445, + 4892.891192966799 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4893.82442742546 + ], + [ + 4941.786741024806, + 4891.957958508137 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4890.091489590815, + "max_x": 4941.786741024806, + "max_y": 4891.957958508137, + "center": [ + 4940.8535065661445, + 4891.024724049476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4890.091489590815 + ], + [ + 4941.786741024806, + 4891.957958508137 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4893.82442742546, + "max_x": 4939.920272107483, + "max_y": 4893.82442742546, + "center": [ + 4932.641043329926, + 4893.82442742546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4893.82442742546 + ], + [ + 4925.36181455237, + 4893.82442742546 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D0F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4890.091489590815, + "max_x": 4939.920272107483, + "max_y": 4890.091489590815, + "center": [ + 4932.641043329926, + 4890.091489590815 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4890.091489590815 + ], + [ + 4925.36181455237, + 4890.091489590815 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D10", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4885.611964189242, + "max_x": 4925.36181455237, + "max_y": 4889.344902023887, + "center": [ + 4925.36181455237, + 4887.478433106564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4925.36181455237, + 4889.344902023887 + ], + [ + 4925.36181455237, + 4885.611964189242 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D11", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4887.478433106564, + "max_x": 4941.786741024806, + "max_y": 4889.344902023887, + "center": [ + 4940.8535065661445, + 4888.411667565226 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4889.344902023887 + ], + [ + 4941.786741024806, + 4887.478433106564 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D12", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4885.611964189242, + "max_x": 4941.786741024806, + "max_y": 4887.478433106564, + "center": [ + 4940.8535065661445, + 4886.545198647903 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4885.611964189242 + ], + [ + 4941.786741024806, + 4887.478433106564 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D13", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4889.344902023887, + "max_x": 4939.920272107483, + "max_y": 4889.344902023887, + "center": [ + 4932.641043329926, + 4889.344902023887 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4889.344902023887 + ], + [ + 4925.36181455237, + 4889.344902023887 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D14", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4885.611964189242, + "max_x": 4939.920272107483, + "max_y": 4885.611964189242, + "center": [ + 4932.641043329926, + 4885.611964189242 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4885.611964189242 + ], + [ + 4925.36181455237, + 4885.611964189242 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D15", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4881.132438787669, + "max_x": 4925.36181455237, + "max_y": 4884.865376622312, + "center": [ + 4925.36181455237, + 4882.99890770499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4925.36181455237, + 4884.865376622312 + ], + [ + 4925.36181455237, + 4881.132438787669 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D16", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4882.99890770499, + "max_x": 4941.786741024806, + "max_y": 4884.865376622312, + "center": [ + 4940.8535065661445, + 4883.932142163651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4884.865376622312 + ], + [ + 4941.786741024806, + 4882.99890770499 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D17", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4881.132438787669, + "max_x": 4941.786741024806, + "max_y": 4882.99890770499, + "center": [ + 4940.8535065661445, + 4882.06567324633 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4881.132438787669 + ], + [ + 4941.786741024806, + 4882.99890770499 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D18", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4884.865376622312, + "max_x": 4939.920272107483, + "max_y": 4884.865376622312, + "center": [ + 4932.641043329926, + 4884.865376622312 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4884.865376622312 + ], + [ + 4925.36181455237, + 4884.865376622312 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D19", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4881.132438787669, + "max_x": 4939.920272107483, + "max_y": 4881.132438787669, + "center": [ + 4932.641043329926, + 4881.132438787669 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4881.132438787669 + ], + [ + 4925.36181455237, + 4881.132438787669 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4876.652913386094, + "max_x": 4925.36181455237, + "max_y": 4880.385851220739, + "center": [ + 4925.36181455237, + 4878.519382303417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4925.36181455237, + 4880.385851220739 + ], + [ + 4925.36181455237, + 4876.652913386094 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4878.519382303417, + "max_x": 4941.786741024806, + "max_y": 4880.385851220739, + "center": [ + 4940.8535065661445, + 4879.452616762078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4880.385851220739 + ], + [ + 4941.786741024806, + 4878.519382303417 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4939.920272107483, + "min_y": 4876.652913386094, + "max_x": 4941.786741024806, + "max_y": 4878.519382303417, + "center": [ + 4940.8535065661445, + 4877.586147844755 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4876.652913386094 + ], + [ + 4941.786741024806, + 4878.519382303417 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4880.385851220739, + "max_x": 4939.920272107483, + "max_y": 4880.385851220739, + "center": [ + 4932.641043329926, + 4880.385851220739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4880.385851220739 + ], + [ + 4925.36181455237, + 4880.385851220739 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4925.36181455237, + "min_y": 4876.652913386094, + "max_x": 4939.920272107483, + "max_y": 4876.652913386094, + "center": [ + 4932.641043329926, + 4876.652913386094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.920272107483, + 4876.652913386094 + ], + [ + 4925.36181455237, + 4876.652913386094 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D1F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4892.214483953165, + "max_x": 4923.104311348529, + "max_y": 4893.334365303558, + "center": [ + 4922.096418133175, + 4892.774424628362 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D20", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4887.734958551591, + "max_x": 4923.104311348529, + "max_y": 4888.854839901985, + "center": [ + 4922.096418133175, + 4888.294899226788 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D21", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4883.255433150018, + "max_x": 4923.104311348529, + "max_y": 4884.375314500411, + "center": [ + 4922.096418133175, + 4883.815373825215 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D22", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4921.088524917821, + "min_y": 4878.775907748444, + "max_x": 4923.104311348529, + "max_y": 4879.895789098838, + "center": [ + 4922.096418133175, + 4879.335848423641 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D23", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4904.601033899847, + "min_y": 4891.957958508137, + "max_x": 4925.36181455237, + "max_y": 4891.957958508137, + "center": [ + 4914.981424226108, + 4891.957958508137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4904.601033899847, + 4891.957958508137 + ], + [ + 4925.36181455237, + 4891.957958508137 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D24", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4909.080559301421, + "min_y": 4887.478433106564, + "max_x": 4925.36181455237, + "max_y": 4887.478433106564, + "center": [ + 4917.221186926896, + 4887.478433106564 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4909.080559301421, + 4887.478433106564 + ], + [ + 4925.36181455237, + 4887.478433106564 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D25", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4913.560084702995, + "min_y": 4882.99890770499, + "max_x": 4925.36181455237, + "max_y": 4882.99890770499, + "center": [ + 4919.460949627683, + 4882.99890770499 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.560084702995, + 4882.99890770499 + ], + [ + 4925.36181455237, + 4882.99890770499 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D26", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4918.039610104568, + "min_y": 4878.519382303417, + "max_x": 4925.36181455237, + "max_y": 4878.519382303417, + "center": [ + 4921.700712328469, + 4878.519382303417 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4918.039610104568, + 4878.519382303417 + ], + [ + 4925.36181455237, + 4878.519382303417 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D27", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4918.039610104568, + "min_y": 4873.037146184771, + "max_x": 4918.039610104568, + "max_y": 4878.519382303417, + "center": [ + 4918.039610104568, + 4875.778264244094 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4918.039610104568, + 4878.519382303417 + ], + [ + 4918.039610104568, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D28", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4913.560084702995, + "min_y": 4873.037146184771, + "max_x": 4913.560084702995, + "max_y": 4882.99890770499, + "center": [ + 4913.560084702995, + 4878.018026944881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4913.560084702995, + 4882.99890770499 + ], + [ + 4913.560084702995, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D29", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4909.080559301421, + "min_y": 4873.037146184771, + "max_x": 4909.080559301421, + "max_y": 4887.478433106564, + "center": [ + 4909.080559301421, + 4880.257789645668 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4909.080559301421, + 4887.478433106564 + ], + [ + 4909.080559301421, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4904.601033899847, + "min_y": 4873.037146184771, + "max_x": 4904.601033899847, + "max_y": 4891.957958508137, + "center": [ + 4904.601033899847, + 4882.4975523464545 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4904.601033899847, + 4891.957958508137 + ], + [ + 4904.601033899847, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2B", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4887.315729741472, + "min_y": 5080.397633867561, + "max_x": 4896.274780544619, + "max_y": 5082.264102784883, + "center": [ + 4891.795255143045, + 5081.330868326222 + ] + }, + "raw_value": "#2 PLANT", + "clean_value": "#2 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4901.197484939348, + "max_x": 4969.600727227333, + "max_y": 4902.876296384008, + "center": [ + 4966.075223193548, + 4902.036890661679 + ] + }, + "raw_value": "FCV-124", + "clean_value": "FCV-124", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4896.717959537775, + "max_x": 4969.600727227333, + "max_y": 4898.396770982435, + "center": [ + 4966.075223193548, + 4897.557365260105 + ] + }, + "raw_value": "FCV-123", + "clean_value": "FCV-123", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4892.238434136201, + "max_x": 4969.652098857539, + "max_y": 4893.917245580861, + "center": [ + 4966.126594823754, + 4893.077839858532 + ] + }, + "raw_value": "LCV-131", + "clean_value": "LCV-131", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D2F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4887.758908734628, + "max_x": 4969.600727227333, + "max_y": 4889.437720179288, + "center": [ + 4966.075223193548, + 4888.598314456958 + ] + }, + "raw_value": "FCV-122", + "clean_value": "FCV-122", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D30", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4963.218977342176, + "min_y": 4883.279383333054, + "max_x": 4969.262698542951, + "max_y": 4884.958194777714, + "center": [ + 4966.240837942563, + 4884.118789055385 + ] + }, + "raw_value": "XV-705", + "clean_value": "XV-705", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D31", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4900.170421744356, + "max_x": 4959.22782166047, + "max_y": 4903.903359579, + "center": [ + 4959.22782166047, + 4902.036890661678 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4903.903359579 + ], + [ + 4959.22782166047, + 4900.170421744356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D32", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4902.036890661679, + "max_x": 4975.652748132906, + "max_y": 4903.903359579, + "center": [ + 4974.719513674245, + 4902.970125120339 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4903.903359579 + ], + [ + 4975.652748132906, + 4902.036890661679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D33", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4900.170421744356, + "max_x": 4975.652748132906, + "max_y": 4902.036890661679, + "center": [ + 4974.719513674245, + 4901.103656203017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4900.170421744356 + ], + [ + 4975.652748132906, + 4902.036890661679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D34", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4903.903359579, + "max_x": 4973.786279215585, + "max_y": 4903.903359579, + "center": [ + 4966.507050438027, + 4903.903359579 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4903.903359579 + ], + [ + 4959.22782166047, + 4903.903359579 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D35", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4900.170421744356, + "max_x": 4973.786279215585, + "max_y": 4900.170421744356, + "center": [ + 4966.507050438027, + 4900.170421744356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4900.170421744356 + ], + [ + 4959.22782166047, + 4900.170421744356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D36", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4895.690896342782, + "max_x": 4959.22782166047, + "max_y": 4899.423834177427, + "center": [ + 4959.22782166047, + 4897.557365260105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4899.423834177427 + ], + [ + 4959.22782166047, + 4895.690896342782 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D37", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4897.557365260104, + "max_x": 4975.652748132906, + "max_y": 4899.423834177427, + "center": [ + 4974.719513674245, + 4898.490599718765 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4899.423834177427 + ], + [ + 4975.652748132906, + 4897.557365260104 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D38", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4895.690896342782, + "max_x": 4975.652748132906, + "max_y": 4897.557365260104, + "center": [ + 4974.719513674245, + 4896.624130801443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4895.690896342782 + ], + [ + 4975.652748132906, + 4897.557365260104 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D39", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4899.423834177427, + "max_x": 4973.786279215585, + "max_y": 4899.423834177427, + "center": [ + 4966.507050438027, + 4899.423834177427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4899.423834177427 + ], + [ + 4959.22782166047, + 4899.423834177427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4895.690896342782, + "max_x": 4973.786279215585, + "max_y": 4895.690896342782, + "center": [ + 4966.507050438027, + 4895.690896342782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4895.690896342782 + ], + [ + 4959.22782166047, + 4895.690896342782 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4891.211370941209, + "max_x": 4959.22782166047, + "max_y": 4894.944308775854, + "center": [ + 4959.22782166047, + 4893.077839858532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4894.944308775854 + ], + [ + 4959.22782166047, + 4891.211370941209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4893.077839858531, + "max_x": 4975.652748132906, + "max_y": 4894.944308775854, + "center": [ + 4974.719513674245, + 4894.011074317192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4894.944308775854 + ], + [ + 4975.652748132906, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4891.211370941209, + "max_x": 4975.652748132906, + "max_y": 4893.077839858531, + "center": [ + 4974.719513674245, + 4892.14460539987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4891.211370941209 + ], + [ + 4975.652748132906, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4894.944308775854, + "max_x": 4973.786279215585, + "max_y": 4894.944308775854, + "center": [ + 4966.507050438027, + 4894.944308775854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4894.944308775854 + ], + [ + 4959.22782166047, + 4894.944308775854 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D3F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4891.211370941209, + "max_x": 4973.786279215585, + "max_y": 4891.211370941209, + "center": [ + 4966.507050438027, + 4891.211370941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4891.211370941209 + ], + [ + 4959.22782166047, + 4891.211370941209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D40", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4886.731845539635, + "max_x": 4959.22782166047, + "max_y": 4890.46478337428, + "center": [ + 4959.22782166047, + 4888.598314456958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4890.46478337428 + ], + [ + 4959.22782166047, + 4886.731845539635 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D41", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4888.598314456957, + "max_x": 4975.652748132906, + "max_y": 4890.46478337428, + "center": [ + 4974.719513674245, + 4889.531548915618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4890.46478337428 + ], + [ + 4975.652748132906, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D42", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4886.731845539635, + "max_x": 4975.652748132906, + "max_y": 4888.598314456957, + "center": [ + 4974.719513674245, + 4887.665079998296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4886.731845539635 + ], + [ + 4975.652748132906, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D43", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4890.46478337428, + "max_x": 4973.786279215585, + "max_y": 4890.46478337428, + "center": [ + 4966.507050438027, + 4890.46478337428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4890.46478337428 + ], + [ + 4959.22782166047, + 4890.46478337428 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D44", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4886.731845539635, + "max_x": 4973.786279215585, + "max_y": 4886.731845539635, + "center": [ + 4966.507050438027, + 4886.731845539635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4886.731845539635 + ], + [ + 4959.22782166047, + 4886.731845539635 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D45", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4882.252320138062, + "max_x": 4959.22782166047, + "max_y": 4885.985257972706, + "center": [ + 4959.22782166047, + 4884.118789055384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4885.985257972706 + ], + [ + 4959.22782166047, + 4882.252320138062 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D46", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4884.118789055384, + "max_x": 4975.652748132906, + "max_y": 4885.985257972706, + "center": [ + 4974.719513674245, + 4885.052023514045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4885.985257972706 + ], + [ + 4975.652748132906, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D47", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4882.252320138062, + "max_x": 4975.652748132906, + "max_y": 4884.118789055384, + "center": [ + 4974.719513674245, + 4883.185554596723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4882.252320138062 + ], + [ + 4975.652748132906, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D48", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4885.985257972706, + "max_x": 4973.786279215585, + "max_y": 4885.985257972706, + "center": [ + 4966.507050438027, + 4885.985257972706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4885.985257972706 + ], + [ + 4959.22782166047, + 4885.985257972706 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D49", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4882.252320138062, + "max_x": 4973.786279215585, + "max_y": 4882.252320138062, + "center": [ + 4966.507050438027, + 4882.252320138062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4882.252320138062 + ], + [ + 4959.22782166047, + 4882.252320138062 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4902.036890661679, + "max_x": 4959.22782166047, + "max_y": 4902.036890661679, + "center": [ + 4956.499953895231, + 4902.036890661679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4902.036890661679 + ], + [ + 4959.22782166047, + 4902.036890661679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4897.557365260104, + "max_x": 4959.22782166047, + "max_y": 4897.557365260104, + "center": [ + 4956.499953895231, + 4897.557365260104 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4897.557365260104 + ], + [ + 4959.22782166047, + 4897.557365260104 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4893.077839858531, + "max_x": 4959.22782166047, + "max_y": 4893.077839858531, + "center": [ + 4956.499953895231, + 4893.077839858531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4893.077839858531 + ], + [ + 4959.22782166047, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4888.598314456957, + "max_x": 4959.22782166047, + "max_y": 4888.598314456957, + "center": [ + 4956.499953895231, + 4888.598314456957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4888.598314456957 + ], + [ + 4959.22782166047, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4884.118789055384, + "max_x": 4959.22782166047, + "max_y": 4884.118789055384, + "center": [ + 4956.499953895231, + 4884.118789055384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4884.118789055384 + ], + [ + 4959.22782166047, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D4F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4902.293416106706, + "max_x": 4956.970318456631, + "max_y": 4903.413297457099, + "center": [ + 4955.962425241276, + 4902.853356781903 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D50", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4897.813890705132, + "max_x": 4956.970318456631, + "max_y": 4898.933772055525, + "center": [ + 4955.962425241276, + 4898.373831380328 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D51", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4893.334365303559, + "max_x": 4956.970318456631, + "max_y": 4894.454246653952, + "center": [ + 4955.962425241276, + 4893.894305978756 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D52", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4888.854839901984, + "max_x": 4956.970318456631, + "max_y": 4889.974721252377, + "center": [ + 4955.962425241276, + 4889.414780577181 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D53", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4884.375314500411, + "max_x": 4956.970318456631, + "max_y": 4885.4951958508045, + "center": [ + 4955.962425241276, + 4884.935255175607 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D54", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4905.677010340923, + "max_x": 4969.600727227333, + "max_y": 4907.3558217855825, + "center": [ + 4966.075223193548, + 4906.516416063252 + ] + }, + "raw_value": "FCV-131", + "clean_value": "FCV-131", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D55", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4904.649947145929, + "max_x": 4959.22782166047, + "max_y": 4908.382884980574, + "center": [ + 4959.22782166047, + 4906.516416063252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4908.382884980574 + ], + [ + 4959.22782166047, + 4904.649947145929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D56", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4906.516416063252, + "max_x": 4975.652748132906, + "max_y": 4908.382884980574, + "center": [ + 4974.719513674245, + 4907.449650521913 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4908.382884980574 + ], + [ + 4975.652748132906, + 4906.516416063252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D57", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4904.649947145929, + "max_x": 4975.652748132906, + "max_y": 4906.516416063252, + "center": [ + 4974.719513674245, + 4905.58318160459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4904.649947145929 + ], + [ + 4975.652748132906, + 4906.516416063252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D58", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4908.382884980574, + "max_x": 4973.786279215585, + "max_y": 4908.382884980574, + "center": [ + 4966.507050438027, + 4908.382884980574 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4908.382884980574 + ], + [ + 4959.22782166047, + 4908.382884980574 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D59", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4904.649947145929, + "max_x": 4973.786279215585, + "max_y": 4904.649947145929, + "center": [ + 4966.507050438027, + 4904.649947145929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4904.649947145929 + ], + [ + 4959.22782166047, + 4904.649947145929 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4906.516416063252, + "max_x": 4959.22782166047, + "max_y": 4906.516416063252, + "center": [ + 4956.499953895231, + 4906.516416063252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4906.516416063252 + ], + [ + 4959.22782166047, + 4906.516416063252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4910.156535742496, + "max_x": 4969.652098857539, + "max_y": 4911.835347187156, + "center": [ + 4966.126594823754, + 4910.995941464826 + ] + }, + "raw_value": "LCV-121", + "clean_value": "LCV-121", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4909.129472547504, + "max_x": 4959.22782166047, + "max_y": 4912.862410382148, + "center": [ + 4959.22782166047, + 4910.995941464826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4912.862410382148 + ], + [ + 4959.22782166047, + 4909.129472547504 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4910.995941464825, + "max_x": 4975.652748132906, + "max_y": 4912.862410382148, + "center": [ + 4974.719513674245, + 4911.929175923486 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4912.862410382148 + ], + [ + 4975.652748132906, + 4910.995941464825 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4909.129472547504, + "max_x": 4975.652748132906, + "max_y": 4910.995941464825, + "center": [ + 4974.719513674245, + 4910.062707006164 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4909.129472547504 + ], + [ + 4975.652748132906, + 4910.995941464825 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D5F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4912.862410382148, + "max_x": 4973.786279215585, + "max_y": 4912.862410382148, + "center": [ + 4966.507050438027, + 4912.862410382148 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4912.862410382148 + ], + [ + 4959.22782166047, + 4912.862410382148 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D60", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4909.129472547504, + "max_x": 4973.786279215585, + "max_y": 4909.129472547504, + "center": [ + 4966.507050438027, + 4909.129472547504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4909.129472547504 + ], + [ + 4959.22782166047, + 4909.129472547504 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D61", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4910.995941464825, + "max_x": 4959.22782166047, + "max_y": 4910.995941464825, + "center": [ + 4956.499953895231, + 4910.995941464825 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4910.995941464825 + ], + [ + 4959.22782166047, + 4910.995941464825 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D62", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.509763447379, + "min_y": 4914.63606114407, + "max_x": 4969.560771514949, + "max_y": 4916.3148725887295, + "center": [ + 4966.035267481164, + 4915.475466866399 + ] + }, + "raw_value": "PCV-121", + "clean_value": "PCV-121", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D63", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4913.608997949077, + "max_x": 4959.22782166047, + "max_y": 4917.341935783721, + "center": [ + 4959.22782166047, + 4915.475466866399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4917.341935783721 + ], + [ + 4959.22782166047, + 4913.608997949077 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D64", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4915.475466866399, + "max_x": 4975.652748132906, + "max_y": 4917.341935783721, + "center": [ + 4974.719513674245, + 4916.40870132506 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4917.341935783721 + ], + [ + 4975.652748132906, + 4915.475466866399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D65", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4913.608997949077, + "max_x": 4975.652748132906, + "max_y": 4915.475466866399, + "center": [ + 4974.719513674245, + 4914.542232407738 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4913.608997949077 + ], + [ + 4975.652748132906, + 4915.475466866399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D66", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4917.341935783721, + "max_x": 4973.786279215585, + "max_y": 4917.341935783721, + "center": [ + 4966.507050438027, + 4917.341935783721 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4917.341935783721 + ], + [ + 4959.22782166047, + 4917.341935783721 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D67", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4913.608997949077, + "max_x": 4973.786279215585, + "max_y": 4913.608997949077, + "center": [ + 4966.507050438027, + 4913.608997949077 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4913.608997949077 + ], + [ + 4959.22782166047, + 4913.608997949077 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D68", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4915.475466866399, + "max_x": 4959.22782166047, + "max_y": 4915.475466866399, + "center": [ + 4956.499953895231, + 4915.475466866399 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4915.475466866399 + ], + [ + 4959.22782166047, + 4915.475466866399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D69", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4919.115586545643, + "max_x": 4969.652098857539, + "max_y": 4920.794397990303, + "center": [ + 4966.126594823754, + 4919.954992267973 + ] + }, + "raw_value": "LCV-111", + "clean_value": "LCV-111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4918.08852335065, + "max_x": 4959.22782166047, + "max_y": 4921.821461185295, + "center": [ + 4959.22782166047, + 4919.954992267973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4921.821461185295 + ], + [ + 4959.22782166047, + 4918.08852335065 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4919.954992267973, + "max_x": 4975.652748132906, + "max_y": 4921.821461185295, + "center": [ + 4974.719513674245, + 4920.8882267266345 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4921.821461185295 + ], + [ + 4975.652748132906, + 4919.954992267973 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4918.08852335065, + "max_x": 4975.652748132906, + "max_y": 4919.954992267973, + "center": [ + 4974.719513674245, + 4919.021757809311 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4918.08852335065 + ], + [ + 4975.652748132906, + 4919.954992267973 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4921.821461185295, + "max_x": 4973.786279215585, + "max_y": 4921.821461185295, + "center": [ + 4966.507050438027, + 4921.821461185295 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4921.821461185295 + ], + [ + 4959.22782166047, + 4921.821461185295 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4918.08852335065, + "max_x": 4973.786279215585, + "max_y": 4918.08852335065, + "center": [ + 4966.507050438027, + 4918.08852335065 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4918.08852335065 + ], + [ + 4959.22782166047, + 4918.08852335065 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D6F", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4919.954992267973, + "max_x": 4959.22782166047, + "max_y": 4919.954992267973, + "center": [ + 4956.499953895231, + 4919.954992267973 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4919.954992267973 + ], + [ + 4959.22782166047, + 4919.954992267973 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D70", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.601090789969, + "min_y": 4923.595111947217, + "max_x": 4969.652098857539, + "max_y": 4925.273923391877, + "center": [ + 4966.126594823754, + 4924.434517669548 + ] + }, + "raw_value": "LCV-113", + "clean_value": "LCV-113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D71", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4922.568048752224, + "max_x": 4959.22782166047, + "max_y": 4926.300986586869, + "center": [ + 4959.22782166047, + 4924.434517669546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4926.300986586869 + ], + [ + 4959.22782166047, + 4922.568048752224 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D72", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4924.434517669546, + "max_x": 4975.652748132906, + "max_y": 4926.300986586869, + "center": [ + 4974.719513674245, + 4925.367752128208 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4926.300986586869 + ], + [ + 4975.652748132906, + 4924.434517669546 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D73", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4922.568048752224, + "max_x": 4975.652748132906, + "max_y": 4924.434517669546, + "center": [ + 4974.719513674245, + 4923.501283210885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4922.568048752224 + ], + [ + 4975.652748132906, + 4924.434517669546 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D74", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4926.300986586869, + "max_x": 4973.786279215585, + "max_y": 4926.300986586869, + "center": [ + 4966.507050438027, + 4926.300986586869 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4926.300986586869 + ], + [ + 4959.22782166047, + 4926.300986586869 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D75", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4922.568048752224, + "max_x": 4973.786279215585, + "max_y": 4922.568048752224, + "center": [ + 4966.507050438027, + 4922.568048752224 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4922.568048752224 + ], + [ + 4959.22782166047, + 4922.568048752224 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D76", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4924.434517669546, + "max_x": 4959.22782166047, + "max_y": 4924.434517669546, + "center": [ + 4956.499953895231, + 4924.434517669546 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4924.434517669546 + ], + [ + 4959.22782166047, + 4924.434517669546 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D77", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4928.074637348791, + "max_x": 4969.600727227333, + "max_y": 4929.753448793451, + "center": [ + 4966.075223193548, + 4928.914043071121 + ] + }, + "raw_value": "FCV-111", + "clean_value": "FCV-111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D78", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4927.047574153798, + "max_x": 4959.22782166047, + "max_y": 4930.780511988443, + "center": [ + 4959.22782166047, + 4928.914043071121 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4930.780511988443 + ], + [ + 4959.22782166047, + 4927.047574153798 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D79", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4928.91404307112, + "max_x": 4975.652748132906, + "max_y": 4930.780511988443, + "center": [ + 4974.719513674245, + 4929.847277529781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4930.780511988443 + ], + [ + 4975.652748132906, + 4928.91404307112 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4927.047574153798, + "max_x": 4975.652748132906, + "max_y": 4928.91404307112, + "center": [ + 4974.719513674245, + 4927.980808612459 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4927.047574153798 + ], + [ + 4975.652748132906, + 4928.91404307112 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4930.780511988443, + "max_x": 4973.786279215585, + "max_y": 4930.780511988443, + "center": [ + 4966.507050438027, + 4930.780511988443 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4930.780511988443 + ], + [ + 4959.22782166047, + 4930.780511988443 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4927.047574153798, + "max_x": 4973.786279215585, + "max_y": 4927.047574153798, + "center": [ + 4966.507050438027, + 4927.047574153798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4927.047574153798 + ], + [ + 4959.22782166047, + 4927.047574153798 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4928.91404307112, + "max_x": 4959.22782166047, + "max_y": 4928.91404307112, + "center": [ + 4956.499953895231, + 4928.91404307112 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4928.91404307112 + ], + [ + 4959.22782166047, + 4928.91404307112 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4932.554162750364, + "max_x": 4969.600727227333, + "max_y": 4934.232974195024, + "center": [ + 4966.075223193548, + 4933.393568472695 + ] + }, + "raw_value": "FCV-113", + "clean_value": "FCV-113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D7F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4931.527099555371, + "max_x": 4959.22782166047, + "max_y": 4935.260037390015, + "center": [ + 4959.22782166047, + 4933.393568472693 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4935.260037390015 + ], + [ + 4959.22782166047, + 4931.527099555371 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D80", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4933.393568472694, + "max_x": 4975.652748132906, + "max_y": 4935.260037390015, + "center": [ + 4974.719513674245, + 4934.326802931355 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4935.260037390015 + ], + [ + 4975.652748132906, + 4933.393568472694 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D81", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4931.527099555371, + "max_x": 4975.652748132906, + "max_y": 4933.393568472694, + "center": [ + 4974.719513674245, + 4932.460334014033 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4931.527099555371 + ], + [ + 4975.652748132906, + 4933.393568472694 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D82", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4935.260037390015, + "max_x": 4973.786279215585, + "max_y": 4935.260037390015, + "center": [ + 4966.507050438027, + 4935.260037390015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4935.260037390015 + ], + [ + 4959.22782166047, + 4935.260037390015 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D83", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4931.527099555371, + "max_x": 4973.786279215585, + "max_y": 4931.527099555371, + "center": [ + 4966.507050438027, + 4931.527099555371 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4931.527099555371 + ], + [ + 4959.22782166047, + 4931.527099555371 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D84", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4933.393568472694, + "max_x": 4959.22782166047, + "max_y": 4933.393568472694, + "center": [ + 4956.499953895231, + 4933.393568472694 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4933.393568472694 + ], + [ + 4959.22782166047, + 4933.393568472694 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D85", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.509763447379, + "min_y": 4937.033688151938, + "max_x": 4969.560771514949, + "max_y": 4938.712499596598, + "center": [ + 4966.035267481164, + 4937.873093874268 + ] + }, + "raw_value": "PCV-111", + "clean_value": "PCV-111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D86", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4936.006624956945, + "max_x": 4959.22782166047, + "max_y": 4939.73956279159, + "center": [ + 4959.22782166047, + 4937.873093874268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4939.73956279159 + ], + [ + 4959.22782166047, + 4936.006624956945 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D87", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4937.873093874268, + "max_x": 4975.652748132906, + "max_y": 4939.73956279159, + "center": [ + 4974.719513674245, + 4938.806328332929 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4939.73956279159 + ], + [ + 4975.652748132906, + 4937.873093874268 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D88", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4936.006624956945, + "max_x": 4975.652748132906, + "max_y": 4937.873093874268, + "center": [ + 4974.719513674245, + 4936.939859415606 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4936.006624956945 + ], + [ + 4975.652748132906, + 4937.873093874268 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D89", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4939.73956279159, + "max_x": 4973.786279215585, + "max_y": 4939.73956279159, + "center": [ + 4966.507050438027, + 4939.73956279159 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4939.73956279159 + ], + [ + 4959.22782166047, + 4939.73956279159 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4936.006624956945, + "max_x": 4973.786279215585, + "max_y": 4936.006624956945, + "center": [ + 4966.507050438027, + 4936.006624956945 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4936.006624956945 + ], + [ + 4959.22782166047, + 4936.006624956945 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4937.873093874268, + "max_x": 4959.22782166047, + "max_y": 4937.873093874268, + "center": [ + 4956.499953895231, + 4937.873093874268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4937.873093874268 + ], + [ + 4959.22782166047, + 4937.873093874268 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.563275562178, + "min_y": 4941.513213553512, + "max_x": 4969.614283629749, + "max_y": 4943.192024998172, + "center": [ + 4966.088779595963, + 4942.352619275842 + ] + }, + "raw_value": "TCV-111", + "clean_value": "TCV-111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4940.486150358519, + "max_x": 4959.22782166047, + "max_y": 4944.219088193163, + "center": [ + 4959.22782166047, + 4942.352619275841 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4944.219088193163 + ], + [ + 4959.22782166047, + 4940.486150358519 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4942.35261927584, + "max_x": 4975.652748132906, + "max_y": 4944.219088193163, + "center": [ + 4974.719513674245, + 4943.285853734502 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4944.219088193163 + ], + [ + 4975.652748132906, + 4942.35261927584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D8F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4940.486150358519, + "max_x": 4975.652748132906, + "max_y": 4942.35261927584, + "center": [ + 4974.719513674245, + 4941.41938481718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4940.486150358519 + ], + [ + 4975.652748132906, + 4942.35261927584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D90", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4944.219088193163, + "max_x": 4973.786279215585, + "max_y": 4944.219088193163, + "center": [ + 4966.507050438027, + 4944.219088193163 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4944.219088193163 + ], + [ + 4959.22782166047, + 4944.219088193163 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D91", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4940.486150358519, + "max_x": 4973.786279215585, + "max_y": 4940.486150358519, + "center": [ + 4966.507050438027, + 4940.486150358519 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4940.486150358519 + ], + [ + 4959.22782166047, + 4940.486150358519 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D92", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4942.35261927584, + "max_x": 4959.22782166047, + "max_y": 4942.35261927584, + "center": [ + 4956.499953895231, + 4942.35261927584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4942.35261927584 + ], + [ + 4959.22782166047, + 4942.35261927584 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D93", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.549719159762, + "min_y": 4945.992738955085, + "max_x": 4969.600727227333, + "max_y": 4947.671550399745, + "center": [ + 4966.075223193548, + 4946.832144677415 + ] + }, + "raw_value": "FCV-111", + "clean_value": "FCV-111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D94", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4944.965675760093, + "max_x": 4959.22782166047, + "max_y": 4948.698613594736, + "center": [ + 4959.22782166047, + 4946.832144677415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4959.22782166047, + 4948.698613594736 + ], + [ + 4959.22782166047, + 4944.965675760093 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D95", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4946.832144677415, + "max_x": 4975.652748132906, + "max_y": 4948.698613594736, + "center": [ + 4974.719513674245, + 4947.765379136075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4948.698613594736 + ], + [ + 4975.652748132906, + 4946.832144677415 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D96", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4973.786279215585, + "min_y": 4944.965675760093, + "max_x": 4975.652748132906, + "max_y": 4946.832144677415, + "center": [ + 4974.719513674245, + 4945.898910218754 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4944.965675760093 + ], + [ + 4975.652748132906, + 4946.832144677415 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D97", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4948.698613594736, + "max_x": 4973.786279215585, + "max_y": 4948.698613594736, + "center": [ + 4966.507050438027, + 4948.698613594736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4948.698613594736 + ], + [ + 4959.22782166047, + 4948.698613594736 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D98", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4959.22782166047, + "min_y": 4944.965675760093, + "max_x": 4973.786279215585, + "max_y": 4944.965675760093, + "center": [ + 4966.507050438027, + 4944.965675760093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4973.786279215585, + 4944.965675760093 + ], + [ + 4959.22782166047, + 4944.965675760093 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D99", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4946.832144677415, + "max_x": 4959.22782166047, + "max_y": 4946.832144677415, + "center": [ + 4956.499953895231, + 4946.832144677415 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4946.832144677415 + ], + [ + 4959.22782166047, + 4946.832144677415 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9A", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4873.037146184771, + "max_x": 4953.772086129991, + "max_y": 4946.832144677415, + "center": [ + 4953.772086129991, + 4909.934645431093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4946.832144677415 + ], + [ + 4953.772086129991, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4953.281257533745, + "min_y": 4882.684965744206, + "max_x": 4955.297043964453, + "max_y": 4883.8048470946, + "center": [ + 4954.289150749099, + 4883.2449064194025 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4906.772941508279, + "max_x": 4956.970318456631, + "max_y": 4907.892822858672, + "center": [ + 4955.962425241276, + 4907.332882183475 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4911.252466909854, + "max_x": 4956.970318456631, + "max_y": 4912.372348260247, + "center": [ + 4955.962425241276, + 4911.81240758505 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4915.731992311426, + "max_x": 4956.970318456631, + "max_y": 4916.85187366182, + "center": [ + 4955.962425241276, + 4916.291932986624 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561D9F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4920.211517713001, + "max_x": 4956.970318456631, + "max_y": 4921.331399063394, + "center": [ + 4955.962425241276, + 4920.771458388197 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4924.691043114574, + "max_x": 4956.970318456631, + "max_y": 4925.810924464968, + "center": [ + 4955.962425241276, + 4925.2509837897705 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4929.170568516148, + "max_x": 4956.970318456631, + "max_y": 4930.290449866541, + "center": [ + 4955.962425241276, + 4929.730509191344 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4933.650093917721, + "max_x": 4956.970318456631, + "max_y": 4934.769975268115, + "center": [ + 4955.962425241276, + 4934.2100345929175 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4938.129619319295, + "max_x": 4956.970318456631, + "max_y": 4939.249500669688, + "center": [ + 4955.962425241276, + 4938.689559994491 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4942.609144720869, + "max_x": 4956.970318456631, + "max_y": 4943.7290260712625, + "center": [ + 4955.962425241276, + 4943.169085396066 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4954.954532025922, + "min_y": 4947.088670122441, + "max_x": 4956.970318456631, + "max_y": 4948.208551472834, + "center": [ + 4955.962425241276, + 4947.648610797638 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4950.27056945748, + "min_y": 4880.927531270166, + "max_x": 4978.48708102188, + "max_y": 4950.539803097925, + "center": [ + 4964.37882523968, + 4915.733667184046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4950.27056945748, + 4950.539803097925 + ], + [ + 4978.48708102188, + 4950.539803097925 + ], + [ + 4978.48708102188, + 4880.927531270166 + ], + [ + 4950.27056945748, + 4880.927531270166 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA7", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4950.710396626789, + "min_y": 4952.286195248601, + "max_x": 4959.669447429936, + "max_y": 4954.152664165923, + "center": [ + 4955.189922028362, + 4953.219429707262 + ] + }, + "raw_value": "#1 PLANT", + "clean_value": "#1 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4995.039151404957, + "min_y": 4892.238434136201, + "max_x": 5014.177601874076, + "max_y": 4893.917245580861, + "center": [ + 5004.608376639517, + 4893.077839858532 + ] + }, + "raw_value": "#1 TANK YARD T-207앞", + "clean_value": "#1 TANK YARD T-207앞", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DA9", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4995.039151404957, + "min_y": 4887.758908734628, + "max_x": 5014.177601874076, + "max_y": 4889.437720179288, + "center": [ + 5004.608376639517, + 4888.598314456958 + ] + }, + "raw_value": "#1 TANK YARD T-104앞", + "clean_value": "#1 TANK YARD T-104앞", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4994.776249532723, + "min_y": 4883.279383333054, + "max_x": 5014.921986868638, + "max_y": 4884.958194777714, + "center": [ + 5004.84911820068, + 4884.118789055385 + ] + }, + "raw_value": "#2 TANK YARD T-3250앞", + "clean_value": "#2 TANK YARD T-3250앞", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4891.211370941209, + "max_x": 4992.824262172273, + "max_y": 4894.944308775854, + "center": [ + 4992.824262172273, + 4893.077839858532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.824262172273, + 4894.944308775854 + ], + [ + 4992.824262172273, + 4891.211370941209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4893.077839858531, + "max_x": 5009.24918864471, + "max_y": 4894.944308775854, + "center": [ + 5008.315954186049, + 4894.011074317192 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4894.944308775854 + ], + [ + 5009.24918864471, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4891.211370941209, + "max_x": 5009.24918864471, + "max_y": 4893.077839858531, + "center": [ + 5008.315954186049, + 4892.14460539987 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4891.211370941209 + ], + [ + 5009.24918864471, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4894.944308775854, + "max_x": 5007.382719727388, + "max_y": 4894.944308775854, + "center": [ + 5000.10349094983, + 4894.944308775854 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4894.944308775854 + ], + [ + 4992.824262172273, + 4894.944308775854 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DAF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4891.211370941209, + "max_x": 5007.382719727388, + "max_y": 4891.211370941209, + "center": [ + 5000.10349094983, + 4891.211370941209 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4891.211370941209 + ], + [ + 4992.824262172273, + 4891.211370941209 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4886.731845539635, + "max_x": 4992.824262172273, + "max_y": 4890.46478337428, + "center": [ + 4992.824262172273, + 4888.598314456958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.824262172273, + 4890.46478337428 + ], + [ + 4992.824262172273, + 4886.731845539635 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4888.598314456957, + "max_x": 5009.24918864471, + "max_y": 4890.46478337428, + "center": [ + 5008.315954186049, + 4889.531548915618 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4890.46478337428 + ], + [ + 5009.24918864471, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4886.731845539635, + "max_x": 5009.24918864471, + "max_y": 4888.598314456957, + "center": [ + 5008.315954186049, + 4887.665079998296 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4886.731845539635 + ], + [ + 5009.24918864471, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4890.46478337428, + "max_x": 5007.382719727388, + "max_y": 4890.46478337428, + "center": [ + 5000.10349094983, + 4890.46478337428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4890.46478337428 + ], + [ + 4992.824262172273, + 4890.46478337428 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4886.731845539635, + "max_x": 5007.382719727388, + "max_y": 4886.731845539635, + "center": [ + 5000.10349094983, + 4886.731845539635 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4886.731845539635 + ], + [ + 4992.824262172273, + 4886.731845539635 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4882.252320138062, + "max_x": 4992.824262172273, + "max_y": 4885.985257972706, + "center": [ + 4992.824262172273, + 4884.118789055384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4992.824262172273, + 4885.985257972706 + ], + [ + 4992.824262172273, + 4882.252320138062 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4884.118789055384, + "max_x": 5009.24918864471, + "max_y": 4885.985257972706, + "center": [ + 5008.315954186049, + 4885.052023514045 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4885.985257972706 + ], + [ + 5009.24918864471, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5007.382719727388, + "min_y": 4882.252320138062, + "max_x": 5009.24918864471, + "max_y": 4884.118789055384, + "center": [ + 5008.315954186049, + 4883.185554596723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4882.252320138062 + ], + [ + 5009.24918864471, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4885.985257972706, + "max_x": 5007.382719727388, + "max_y": 4885.985257972706, + "center": [ + 5000.10349094983, + 4885.985257972706 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4885.985257972706 + ], + [ + 4992.824262172273, + 4885.985257972706 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DB9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4992.824262172273, + "min_y": 4882.252320138062, + "max_x": 5007.382719727388, + "max_y": 4882.252320138062, + "center": [ + 5000.10349094983, + 4882.252320138062 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5007.382719727388, + 4882.252320138062 + ], + [ + 4992.824262172273, + 4882.252320138062 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4893.077839858531, + "max_x": 4992.824262172273, + "max_y": 4893.077839858531, + "center": [ + 4990.096394407034, + 4893.077839858531 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4987.368526641795, + 4893.077839858531 + ], + [ + 4992.824262172273, + 4893.077839858531 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4888.598314456957, + "max_x": 4992.824262172273, + "max_y": 4888.598314456957, + "center": [ + 4990.096394407034, + 4888.598314456957 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4987.368526641795, + 4888.598314456957 + ], + [ + 4992.824262172273, + 4888.598314456957 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4884.118789055384, + "max_x": 4992.824262172273, + "max_y": 4884.118789055384, + "center": [ + 4990.096394407034, + 4884.118789055384 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4987.368526641795, + 4884.118789055384 + ], + [ + 4992.824262172273, + 4884.118789055384 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4893.334365303559, + "max_x": 4990.566758968432, + "max_y": 4894.454246653952, + "center": [ + 4989.558865753077, + 4893.894305978756 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4888.854839901984, + "max_x": 4990.566758968432, + "max_y": 4889.974721252377, + "center": [ + 4989.558865753077, + 4889.414780577181 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DBF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4988.550972537723, + "min_y": 4884.375314500411, + "max_x": 4990.566758968432, + "max_y": 4885.4951958508045, + "center": [ + 4989.558865753077, + 4884.935255175607 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4873.037146184771, + "max_x": 4987.368526641795, + "max_y": 4893.077839858531, + "center": [ + 4987.368526641795, + 4883.057493021651 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4987.368526641795, + 4893.077839858531 + ], + [ + 4987.368526641795, + 4873.037146184771 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4900.121508498274, + "min_y": 4873.037146184771, + "max_x": 4900.121508498274, + "max_y": 4992.491156893399, + "center": [ + 4900.121508498274, + 4932.764151539085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4900.121508498274, + 4873.037146184771 + ], + [ + 4900.121508498274, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4890.095530067732, + "min_y": 4996.887164363125, + "max_x": 4890.095530067732, + "max_y": 4998.847834937009, + "center": [ + 4890.095530067732, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4890.095530067732, + 4998.847834937009 + ], + [ + 4890.095530067732, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4953.772086129991, + "min_y": 4877.433153654497, + "max_x": 4953.772086129991, + "max_y": 4879.39382422838, + "center": [ + 4953.772086129991, + 4878.413488941438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4953.772086129991, + 4879.39382422838 + ], + [ + 4953.772086129991, + 4877.433153654497 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4987.368526641795, + "min_y": 4877.433153654497, + "max_x": 4987.368526641795, + "max_y": 4879.39382422838, + "center": [ + 4987.368526641795, + 4878.413488941438 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4987.368526641795, + 4879.39382422838 + ], + [ + 4987.368526641795, + 4877.433153654497 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5098.685003460988, + "min_y": 4996.106924094725, + "max_x": 5098.685003460988, + "max_y": 4999.83986192937, + "center": [ + 5098.685003460988, + 4997.973393012047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5098.685003460988, + 4996.106924094725 + ], + [ + 5098.685003460988, + 4999.83986192937 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5113.243461016103, + "min_y": 4996.106924094725, + "max_x": 5115.109929933424, + "max_y": 4997.973393012046, + "center": [ + 5114.176695474764, + 4997.0401585533855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5113.243461016103, + 4996.106924094725 + ], + [ + 5115.109929933424, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5113.243461016103, + "min_y": 4997.973393012046, + "max_x": 5115.109929933424, + "max_y": 4999.83986192937, + "center": [ + 5114.176695474764, + 4998.9066274707075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5113.243461016103, + 4999.83986192937 + ], + [ + 5115.109929933424, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5098.685003460988, + "min_y": 4996.106924094725, + "max_x": 5113.243461016103, + "max_y": 4996.106924094725, + "center": [ + 5105.964232238545, + 4996.106924094725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5113.243461016103, + 4996.106924094725 + ], + [ + 5098.685003460988, + 4996.106924094725 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DC9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5098.685003460988, + "min_y": 4999.83986192937, + "max_x": 5113.243461016103, + "max_y": 4999.83986192937, + "center": [ + 5105.964232238545, + 4999.83986192937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5113.243461016103, + 4999.83986192937 + ], + [ + 5098.685003460988, + 4999.83986192937 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCA", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5093.229267930508, + "min_y": 4997.973393012046, + "max_x": 5098.685003460988, + "max_y": 4997.973393012046, + "center": [ + 5095.957135695748, + 4997.973393012046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5093.229267930508, + 4997.973393012046 + ], + [ + 5098.685003460988, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5093.229267930508, + "min_y": 4992.491156893399, + "max_x": 5093.229267930508, + "max_y": 4997.973393012046, + "center": [ + 5093.229267930508, + 4995.232274952723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5093.229267930508, + 4997.973393012046 + ], + [ + 5093.229267930508, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5100.484554742263, + "min_y": 4997.133987289717, + "max_x": 5121.637578944973, + "max_y": 4998.812798734377, + "center": [ + 5111.061066843618, + 4997.973393012047 + ] + }, + "raw_value": "#6 TANK YARD T-6222 앞", + "clean_value": "#6 TANK YARD T-6222 앞", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5094.411713826438, + "min_y": 4998.229918457074, + "max_x": 5096.427500257147, + "max_y": 4999.349799807467, + "center": [ + 5095.419607041793, + 4998.78985913227 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5127.311219092251, + "min_y": 5022.517964565301, + "max_x": 5142.420522094187, + "max_y": 5024.196776009961, + "center": [ + 5134.865870593219, + 5023.357370287631 + ] + }, + "raw_value": "UTILITY STATION", + "clean_value": "UTILITY STATION", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DCF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5018.038439163728, + "max_x": 5135.885538694421, + "max_y": 5019.717250608388, + "center": [ + 5132.360034660635, + 5018.877844886058 + ] + }, + "raw_value": "XV-6220", + "clean_value": "XV-6220", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5013.558913762153, + "max_x": 5135.885538694421, + "max_y": 5015.237725206813, + "center": [ + 5132.360034660635, + 5014.398319484482 + ] + }, + "raw_value": "XV-6120", + "clean_value": "XV-6120", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD1", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5128.83453062685, + "min_y": 5009.07938836058, + "max_x": 5135.885538694421, + "max_y": 5010.75819980524, + "center": [ + 5132.360034660635, + 5009.918794082911 + ] + }, + "raw_value": "XV-5320", + "clean_value": "XV-5320", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5130.895103794024, + "min_y": 5004.599862959007, + "max_x": 5133.9169643944115, + "max_y": 5006.278674403667, + "center": [ + 5132.406034094218, + 5005.439268681337 + ] + }, + "raw_value": "DFU", + "clean_value": "DFU", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5021.490901370309, + "max_x": 5125.402041423642, + "max_y": 5025.223839204953, + "center": [ + 5125.402041423642, + 5023.357370287631 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.402041423642, + 5025.223839204953 + ], + [ + 5125.402041423642, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5023.35737028763, + "max_x": 5141.826967896079, + "max_y": 5025.223839204953, + "center": [ + 5140.893733437417, + 5024.290604746291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5025.223839204953 + ], + [ + 5141.826967896079, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5021.490901370309, + "max_x": 5141.826967896079, + "max_y": 5023.35737028763, + "center": [ + 5140.893733437417, + 5022.424135828969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5021.490901370309 + ], + [ + 5141.826967896079, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5025.223839204953, + "max_x": 5139.960498978755, + "max_y": 5025.223839204953, + "center": [ + 5132.6812702011985, + 5025.223839204953 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5025.223839204953 + ], + [ + 5125.402041423642, + 5025.223839204953 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5021.490901370309, + "max_x": 5139.960498978755, + "max_y": 5021.490901370309, + "center": [ + 5132.6812702011985, + 5021.490901370309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5021.490901370309 + ], + [ + 5125.402041423642, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5017.011375968735, + "max_x": 5125.402041423642, + "max_y": 5020.74431380338, + "center": [ + 5125.402041423642, + 5018.877844886058 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.402041423642, + 5020.74431380338 + ], + [ + 5125.402041423642, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DD9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5018.877844886056, + "max_x": 5141.826967896079, + "max_y": 5020.74431380338, + "center": [ + 5140.893733437417, + 5019.811079344718 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5020.74431380338 + ], + [ + 5141.826967896079, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5017.011375968735, + "max_x": 5141.826967896079, + "max_y": 5018.877844886056, + "center": [ + 5140.893733437417, + 5017.944610427396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5017.011375968735 + ], + [ + 5141.826967896079, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5020.74431380338, + "max_x": 5139.960498978755, + "max_y": 5020.74431380338, + "center": [ + 5132.6812702011985, + 5020.74431380338 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5020.74431380338 + ], + [ + 5125.402041423642, + 5020.74431380338 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5017.011375968735, + "max_x": 5139.960498978755, + "max_y": 5017.011375968735, + "center": [ + 5132.6812702011985, + 5017.011375968735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5017.011375968735 + ], + [ + 5125.402041423642, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5012.531850567161, + "max_x": 5125.402041423642, + "max_y": 5016.264788401805, + "center": [ + 5125.402041423642, + 5014.398319484483 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.402041423642, + 5016.264788401805 + ], + [ + 5125.402041423642, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5014.398319484484, + "max_x": 5141.826967896079, + "max_y": 5016.264788401805, + "center": [ + 5140.893733437417, + 5015.331553943144 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5016.264788401805 + ], + [ + 5141.826967896079, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DDF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5012.531850567161, + "max_x": 5141.826967896079, + "max_y": 5014.398319484484, + "center": [ + 5140.893733437417, + 5013.465085025822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5012.531850567161 + ], + [ + 5141.826967896079, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5016.264788401805, + "max_x": 5139.960498978755, + "max_y": 5016.264788401805, + "center": [ + 5132.6812702011985, + 5016.264788401805 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5016.264788401805 + ], + [ + 5125.402041423642, + 5016.264788401805 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5012.531850567161, + "max_x": 5139.960498978755, + "max_y": 5012.531850567161, + "center": [ + 5132.6812702011985, + 5012.531850567161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5012.531850567161 + ], + [ + 5125.402041423642, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5008.052325165587, + "max_x": 5125.402041423642, + "max_y": 5011.785263000231, + "center": [ + 5125.402041423642, + 5009.918794082909 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.402041423642, + 5011.785263000231 + ], + [ + 5125.402041423642, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5009.91879408291, + "max_x": 5141.826967896079, + "max_y": 5011.785263000231, + "center": [ + 5140.893733437417, + 5010.852028541571 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5011.785263000231 + ], + [ + 5141.826967896079, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5008.052325165587, + "max_x": 5141.826967896079, + "max_y": 5009.91879408291, + "center": [ + 5140.893733437417, + 5008.985559624249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5008.052325165587 + ], + [ + 5141.826967896079, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5011.785263000231, + "max_x": 5139.960498978755, + "max_y": 5011.785263000231, + "center": [ + 5132.6812702011985, + 5011.785263000231 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5011.785263000231 + ], + [ + 5125.402041423642, + 5011.785263000231 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5008.052325165587, + "max_x": 5139.960498978755, + "max_y": 5008.052325165587, + "center": [ + 5132.6812702011985, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5008.052325165587 + ], + [ + 5125.402041423642, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5003.572799764014, + "max_x": 5125.402041423642, + "max_y": 5007.305737598659, + "center": [ + 5125.402041423642, + 5005.439268681337 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5125.402041423642, + 5007.305737598659 + ], + [ + 5125.402041423642, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5005.439268681336, + "max_x": 5141.826967896079, + "max_y": 5007.305737598659, + "center": [ + 5140.893733437417, + 5006.372503139997 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5007.305737598659 + ], + [ + 5141.826967896079, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DE9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5139.960498978755, + "min_y": 5003.572799764014, + "max_x": 5141.826967896079, + "max_y": 5005.439268681336, + "center": [ + 5140.893733437417, + 5004.506034222675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5003.572799764014 + ], + [ + 5141.826967896079, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DEA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5007.305737598659, + "max_x": 5139.960498978755, + "max_y": 5007.305737598659, + "center": [ + 5132.6812702011985, + 5007.305737598659 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5007.305737598659 + ], + [ + 5125.402041423642, + 5007.305737598659 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DEB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5125.402041423642, + "min_y": 5003.572799764014, + "max_x": 5139.960498978755, + "max_y": 5003.572799764014, + "center": [ + 5132.6812702011985, + 5003.572799764014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5139.960498978755, + 5003.572799764014 + ], + [ + 5125.402041423642, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DEC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5023.35737028763, + "max_x": 5125.402041423642, + "max_y": 5023.35737028763, + "center": [ + 5122.674173658403, + 5023.35737028763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5023.35737028763 + ], + [ + 5125.402041423642, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DED", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5018.877844886056, + "max_x": 5125.402041423642, + "max_y": 5018.877844886056, + "center": [ + 5122.674173658403, + 5018.877844886056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5018.877844886056 + ], + [ + 5125.402041423642, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DEE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5014.398319484484, + "max_x": 5125.402041423642, + "max_y": 5014.398319484484, + "center": [ + 5122.674173658403, + 5014.398319484484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5014.398319484484 + ], + [ + 5125.402041423642, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DEF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5009.91879408291, + "max_x": 5125.402041423642, + "max_y": 5009.91879408291, + "center": [ + 5122.674173658403, + 5009.91879408291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5009.91879408291 + ], + [ + 5125.402041423642, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF0", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 5005.439268681336, + "max_x": 5125.402041423642, + "max_y": 5005.439268681336, + "center": [ + 5122.674173658403, + 5005.439268681336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5005.439268681336 + ], + [ + 5125.402041423642, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 4992.491156893399, + "max_x": 5119.946305893163, + "max_y": 5023.35737028763, + "center": [ + 5119.946305893163, + 5007.924263590515 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 5023.35737028763 + ], + [ + 5119.946305893163, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5023.613895732658, + "max_x": 5123.144538219801, + "max_y": 5024.733777083052, + "center": [ + 5122.136645004446, + 5024.173836407856 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5019.134370331084, + "max_x": 5123.144538219801, + "max_y": 5020.254251681477, + "center": [ + 5122.136645004446, + 5019.69431100628 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF4", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5014.65484492951, + "max_x": 5123.144538219801, + "max_y": 5015.774726279903, + "center": [ + 5122.136645004446, + 5015.214785604707 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5010.175319527937, + "max_x": 5123.144538219801, + "max_y": 5011.29520087833, + "center": [ + 5122.136645004446, + 5010.735260203133 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5121.128751789092, + "min_y": 5005.695794126364, + "max_x": 5123.144538219801, + "max_y": 5006.815675476757, + "center": [ + 5122.136645004446, + 5006.25573480156 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5116.524903222025, + "min_y": 5001.729360010155, + "max_x": 5144.741414786426, + "max_y": 5027.869907918518, + "center": [ + 5130.6331590042255, + 5014.799633964336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5116.524903222025, + 5027.869907918518 + ], + [ + 5144.741414786426, + 5027.869907918518 + ], + [ + 5144.741414786426, + 5001.729360010155 + ], + [ + 5116.524903222025, + 5001.729360010155 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF8", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5119.455477296915, + "min_y": 4994.673100783546, + "max_x": 5121.471263727623, + "max_y": 4995.792982133939, + "center": [ + 5120.463370512269, + 4995.233041458743 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DF9", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5116.819861951587, + "min_y": 5028.969726564199, + "max_x": 5130.258438156307, + "max_y": 5030.836195481521, + "center": [ + 5123.539150053947, + 5029.90296102286 + ] + }, + "raw_value": "PACKING ROOM", + "clean_value": "PACKING ROOM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFA", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5119.946305893163, + "min_y": 4996.887164363125, + "max_x": 5119.946305893163, + "max_y": 4998.847834937009, + "center": [ + 5119.946305893163, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5119.946305893163, + 4998.847834937009 + ], + [ + 5119.946305893163, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFB", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5002.733394041683, + "max_x": 4944.221109197057, + "max_y": 5004.412205486343, + "center": [ + 4940.191961729874, + 5003.572799764013 + ] + }, + "raw_value": "FCV-6216", + "clean_value": "FCV-6216", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5001.706330846691, + "max_x": 4933.399583241897, + "max_y": 5005.439268681336, + "center": [ + 4933.399583241897, + 5003.572799764013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5005.439268681336 + ], + [ + 4933.399583241897, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFD", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5003.572799764014, + "max_x": 4949.824509714332, + "max_y": 5005.439268681336, + "center": [ + 4948.891275255671, + 5004.506034222675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5005.439268681336 + ], + [ + 4949.824509714332, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5001.706330846691, + "max_x": 4949.824509714332, + "max_y": 5003.572799764014, + "center": [ + 4948.891275255671, + 5002.639565305353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5001.706330846691 + ], + [ + 4949.824509714332, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561DFF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5005.439268681336, + "max_x": 4947.95804079701, + "max_y": 5005.439268681336, + "center": [ + 4940.678812019453, + 5005.439268681336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5005.439268681336 + ], + [ + 4933.399583241897, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E00", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5001.706330846691, + "max_x": 4947.95804079701, + "max_y": 5001.706330846691, + "center": [ + 4940.678812019453, + 5001.706330846691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5001.706330846691 + ], + [ + 4933.399583241897, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E01", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5003.572799764014, + "max_x": 4933.399583241897, + "max_y": 5003.572799764014, + "center": [ + 4930.671715476656, + 5003.572799764014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5003.572799764014 + ], + [ + 4933.399583241897, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E02", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5003.829325209042, + "max_x": 4931.1420800380565, + "max_y": 5004.949206559435, + "center": [ + 4930.134186822703, + 5004.389265884238 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E03", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5007.212919443258, + "max_x": 4944.221109197057, + "max_y": 5008.891730887918, + "center": [ + 4940.191961729874, + 5008.052325165589 + ] + }, + "raw_value": "FCV-6218", + "clean_value": "FCV-6218", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E04", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5006.185856248265, + "max_x": 4933.399583241897, + "max_y": 5009.91879408291, + "center": [ + 4933.399583241897, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5009.91879408291 + ], + [ + 4933.399583241897, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E05", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5008.052325165587, + "max_x": 4949.824509714332, + "max_y": 5009.91879408291, + "center": [ + 4948.891275255671, + 5008.985559624249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5009.91879408291 + ], + [ + 4949.824509714332, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E06", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5006.185856248265, + "max_x": 4949.824509714332, + "max_y": 5008.052325165587, + "center": [ + 4948.891275255671, + 5007.119090706926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5006.185856248265 + ], + [ + 4949.824509714332, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E07", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5009.91879408291, + "max_x": 4947.95804079701, + "max_y": 5009.91879408291, + "center": [ + 4940.678812019453, + 5009.91879408291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5009.91879408291 + ], + [ + 4933.399583241897, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E08", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5006.185856248265, + "max_x": 4947.95804079701, + "max_y": 5006.185856248265, + "center": [ + 4940.678812019453, + 5006.185856248265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5006.185856248265 + ], + [ + 4933.399583241897, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E09", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5008.052325165587, + "max_x": 4933.399583241897, + "max_y": 5008.052325165587, + "center": [ + 4930.671715476656, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5008.052325165587 + ], + [ + 4933.399583241897, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5008.308850610615, + "max_x": 4931.1420800380565, + "max_y": 5009.428731961008, + "center": [ + 4930.134186822703, + 5008.868791285811 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5011.692444844832, + "max_x": 4944.221109197057, + "max_y": 5013.371256289492, + "center": [ + 4940.191961729874, + 5012.531850567162 + ] + }, + "raw_value": "FCV-6214", + "clean_value": "FCV-6214", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5010.665381649839, + "max_x": 4933.399583241897, + "max_y": 5014.398319484484, + "center": [ + 4933.399583241897, + 5012.531850567162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5014.398319484484 + ], + [ + 4933.399583241897, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5012.531850567161, + "max_x": 4949.824509714332, + "max_y": 5014.398319484484, + "center": [ + 4948.891275255671, + 5013.465085025822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5014.398319484484 + ], + [ + 4949.824509714332, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5010.665381649839, + "max_x": 4949.824509714332, + "max_y": 5012.531850567161, + "center": [ + 4948.891275255671, + 5011.5986161085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5010.665381649839 + ], + [ + 4949.824509714332, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E0F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5014.398319484484, + "max_x": 4947.95804079701, + "max_y": 5014.398319484484, + "center": [ + 4940.678812019453, + 5014.398319484484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5014.398319484484 + ], + [ + 4933.399583241897, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E10", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5010.665381649839, + "max_x": 4947.95804079701, + "max_y": 5010.665381649839, + "center": [ + 4940.678812019453, + 5010.665381649839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5010.665381649839 + ], + [ + 4933.399583241897, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E11", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5012.531850567161, + "max_x": 4933.399583241897, + "max_y": 5012.531850567161, + "center": [ + 4930.671715476656, + 5012.531850567161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5012.531850567161 + ], + [ + 4933.399583241897, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E12", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5012.788376012188, + "max_x": 4931.1420800380565, + "max_y": 5013.908257362581, + "center": [ + 4930.134186822703, + 5013.348316687385 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E13", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.122858550309, + "min_y": 5016.171970246405, + "max_x": 4944.181153484674, + "max_y": 5017.850781691065, + "center": [ + 4940.152006017492, + 5017.011375968736 + ] + }, + "raw_value": "PCV-6211", + "clean_value": "PCV-6211", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E14", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5015.144907051412, + "max_x": 4933.399583241897, + "max_y": 5018.877844886056, + "center": [ + 4933.399583241897, + 5017.011375968734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5018.877844886056 + ], + [ + 4933.399583241897, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E15", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5017.011375968735, + "max_x": 4949.824509714332, + "max_y": 5018.877844886056, + "center": [ + 4948.891275255671, + 5017.944610427396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5018.877844886056 + ], + [ + 4949.824509714332, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E16", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5015.144907051412, + "max_x": 4949.824509714332, + "max_y": 5017.011375968735, + "center": [ + 4948.891275255671, + 5016.078141510074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5015.144907051412 + ], + [ + 4949.824509714332, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E17", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5018.877844886056, + "max_x": 4947.95804079701, + "max_y": 5018.877844886056, + "center": [ + 4940.678812019453, + 5018.877844886056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5018.877844886056 + ], + [ + 4933.399583241897, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E18", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5015.144907051412, + "max_x": 4947.95804079701, + "max_y": 5015.144907051412, + "center": [ + 4940.678812019453, + 5015.144907051412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5015.144907051412 + ], + [ + 4933.399583241897, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E19", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5017.011375968735, + "max_x": 4933.399583241897, + "max_y": 5017.011375968735, + "center": [ + 4930.671715476656, + 5017.011375968735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5017.011375968735 + ], + [ + 4933.399583241897, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5017.267901413762, + "max_x": 4931.1420800380565, + "max_y": 5018.387782764155, + "center": [ + 4930.134186822703, + 5017.827842088958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5020.651495647978, + "max_x": 4944.221109197057, + "max_y": 5022.330307092638, + "center": [ + 4940.191961729874, + 5021.490901370307 + ] + }, + "raw_value": "FCV-6213", + "clean_value": "FCV-6213", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5019.624432452985, + "max_x": 4933.399583241897, + "max_y": 5023.35737028763, + "center": [ + 4933.399583241897, + 5021.490901370307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5023.35737028763 + ], + [ + 4933.399583241897, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5021.490901370309, + "max_x": 4949.824509714332, + "max_y": 5023.35737028763, + "center": [ + 4948.891275255671, + 5022.424135828969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5023.35737028763 + ], + [ + 4949.824509714332, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5019.624432452985, + "max_x": 4949.824509714332, + "max_y": 5021.490901370309, + "center": [ + 4948.891275255671, + 5020.557666911647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5019.624432452985 + ], + [ + 4949.824509714332, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E1F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5023.35737028763, + "max_x": 4947.95804079701, + "max_y": 5023.35737028763, + "center": [ + 4940.678812019453, + 5023.35737028763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5023.35737028763 + ], + [ + 4933.399583241897, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E20", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5019.624432452985, + "max_x": 4947.95804079701, + "max_y": 5019.624432452985, + "center": [ + 4940.678812019453, + 5019.624432452985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5019.624432452985 + ], + [ + 4933.399583241897, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E21", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5021.490901370309, + "max_x": 4933.399583241897, + "max_y": 5021.490901370309, + "center": [ + 4930.671715476656, + 5021.490901370309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5021.490901370309 + ], + [ + 4933.399583241897, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E22", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5021.747426815335, + "max_x": 4931.1420800380565, + "max_y": 5022.867308165728, + "center": [ + 4930.134186822703, + 5022.307367490532 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E23", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.176370665108, + "min_y": 5025.131021049553, + "max_x": 4944.234665599473, + "max_y": 5026.809832494213, + "center": [ + 4940.20551813229, + 5025.970426771883 + ] + }, + "raw_value": "TCV-6211", + "clean_value": "TCV-6211", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E24", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5024.10395785456, + "max_x": 4933.399583241897, + "max_y": 5027.836895689204, + "center": [ + 4933.399583241897, + 5025.970426771882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5027.836895689204 + ], + [ + 4933.399583241897, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E25", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5025.970426771881, + "max_x": 4949.824509714332, + "max_y": 5027.836895689204, + "center": [ + 4948.891275255671, + 5026.903661230543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5027.836895689204 + ], + [ + 4949.824509714332, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E26", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5024.10395785456, + "max_x": 4949.824509714332, + "max_y": 5025.970426771881, + "center": [ + 4948.891275255671, + 5025.037192313221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5024.10395785456 + ], + [ + 4949.824509714332, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E27", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5027.836895689204, + "max_x": 4947.95804079701, + "max_y": 5027.836895689204, + "center": [ + 4940.678812019453, + 5027.836895689204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5027.836895689204 + ], + [ + 4933.399583241897, + 5027.836895689204 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E28", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5024.10395785456, + "max_x": 4947.95804079701, + "max_y": 5024.10395785456, + "center": [ + 4940.678812019453, + 5024.10395785456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5024.10395785456 + ], + [ + 4933.399583241897, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E29", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5025.970426771881, + "max_x": 4933.399583241897, + "max_y": 5025.970426771881, + "center": [ + 4930.671715476656, + 5025.970426771881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5025.970426771881 + ], + [ + 4933.399583241897, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5026.226952216909, + "max_x": 4931.1420800380565, + "max_y": 5027.346833567302, + "center": [ + 4930.134186822703, + 5026.786892892105 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4936.162814262691, + "min_y": 5029.610546451126, + "max_x": 4944.221109197057, + "max_y": 5031.2893578957855, + "center": [ + 4940.191961729874, + 5030.449952173456 + ] + }, + "raw_value": "FCV-6201", + "clean_value": "FCV-6201", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5028.583483256134, + "max_x": 4933.399583241897, + "max_y": 5032.316421090778, + "center": [ + 4933.399583241897, + 5030.449952173456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4933.399583241897, + 5032.316421090778 + ], + [ + 4933.399583241897, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5030.449952173455, + "max_x": 4949.824509714332, + "max_y": 5032.316421090778, + "center": [ + 4948.891275255671, + 5031.383186632116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5032.316421090778 + ], + [ + 4949.824509714332, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4947.95804079701, + "min_y": 5028.583483256134, + "max_x": 4949.824509714332, + "max_y": 5030.449952173455, + "center": [ + 4948.891275255671, + 5029.516717714794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5028.583483256134 + ], + [ + 4949.824509714332, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E2F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5032.316421090778, + "max_x": 4947.95804079701, + "max_y": 5032.316421090778, + "center": [ + 4940.678812019453, + 5032.316421090778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5032.316421090778 + ], + [ + 4933.399583241897, + 5032.316421090778 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E30", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4933.399583241897, + "min_y": 5028.583483256134, + "max_x": 4947.95804079701, + "max_y": 5028.583483256134, + "center": [ + 4940.678812019453, + 5028.583483256134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4947.95804079701, + 5028.583483256134 + ], + [ + 4933.399583241897, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E31", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 5030.449952173455, + "max_x": 4933.399583241897, + "max_y": 5030.449952173455, + "center": [ + 4930.671715476656, + 5030.449952173455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5030.449952173455 + ], + [ + 4933.399583241897, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E32", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4929.126293607348, + "min_y": 5030.706477618482, + "max_x": 4931.1420800380565, + "max_y": 5031.826358968875, + "center": [ + 4930.134186822703, + 5031.266418293679 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E33", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 4992.491156893399, + "max_x": 4927.943847711415, + "max_y": 5030.449952173455, + "center": [ + 4927.943847711415, + 5011.470554533427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 5030.449952173455 + ], + [ + 4927.943847711415, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E34", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4924.522445040278, + "min_y": 4999.862891092833, + "max_x": 4952.738956604678, + "max_y": 5034.128252360158, + "center": [ + 4938.630700822478, + 5016.995571726495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4924.522445040278, + 5034.128252360158 + ], + [ + 4952.738956604678, + 5034.128252360158 + ], + [ + 4952.738956604678, + 4999.862891092833 + ], + [ + 4924.522445040278, + 4999.862891092833 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E35", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5002.733394041683, + "max_x": 4977.81754970886, + "max_y": 5004.412205486343, + "center": [ + 4973.7884022416765, + 5003.572799764013 + ] + }, + "raw_value": "FCV-6116", + "clean_value": "FCV-6116", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E36", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5001.706330846691, + "max_x": 4966.996023753699, + "max_y": 5005.439268681336, + "center": [ + 4966.996023753699, + 5003.572799764013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5005.439268681336 + ], + [ + 4966.996023753699, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E37", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5003.572799764014, + "max_x": 4983.420950226136, + "max_y": 5005.439268681336, + "center": [ + 4982.487715767475, + 5004.506034222675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5005.439268681336 + ], + [ + 4983.420950226136, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E38", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5001.706330846691, + "max_x": 4983.420950226136, + "max_y": 5003.572799764014, + "center": [ + 4982.487715767475, + 5002.639565305353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5001.706330846691 + ], + [ + 4983.420950226136, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E39", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5005.439268681336, + "max_x": 4981.554481308814, + "max_y": 5005.439268681336, + "center": [ + 4974.275252531256, + 5005.439268681336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5005.439268681336 + ], + [ + 4966.996023753699, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5001.706330846691, + "max_x": 4981.554481308814, + "max_y": 5001.706330846691, + "center": [ + 4974.275252531256, + 5001.706330846691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5001.706330846691 + ], + [ + 4966.996023753699, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5003.572799764014, + "max_x": 4966.996023753699, + "max_y": 5003.572799764014, + "center": [ + 4964.268155988459, + 5003.572799764014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5003.572799764014 + ], + [ + 4966.996023753699, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5003.829325209042, + "max_x": 4964.738520549858, + "max_y": 5004.949206559435, + "center": [ + 4963.730627334504, + 5004.389265884238 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5007.212919443258, + "max_x": 4977.81754970886, + "max_y": 5008.891730887918, + "center": [ + 4973.7884022416765, + 5008.052325165589 + ] + }, + "raw_value": "FCV-6118", + "clean_value": "FCV-6118", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5006.185856248265, + "max_x": 4966.996023753699, + "max_y": 5009.91879408291, + "center": [ + 4966.996023753699, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5009.91879408291 + ], + [ + 4966.996023753699, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E3F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5008.052325165587, + "max_x": 4983.420950226136, + "max_y": 5009.91879408291, + "center": [ + 4982.487715767475, + 5008.985559624249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5009.91879408291 + ], + [ + 4983.420950226136, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E40", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5006.185856248265, + "max_x": 4983.420950226136, + "max_y": 5008.052325165587, + "center": [ + 4982.487715767475, + 5007.119090706926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5006.185856248265 + ], + [ + 4983.420950226136, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E41", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5009.91879408291, + "max_x": 4981.554481308814, + "max_y": 5009.91879408291, + "center": [ + 4974.275252531256, + 5009.91879408291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5009.91879408291 + ], + [ + 4966.996023753699, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E42", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5006.185856248265, + "max_x": 4981.554481308814, + "max_y": 5006.185856248265, + "center": [ + 4974.275252531256, + 5006.185856248265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5006.185856248265 + ], + [ + 4966.996023753699, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E43", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5008.052325165587, + "max_x": 4966.996023753699, + "max_y": 5008.052325165587, + "center": [ + 4964.268155988459, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5008.052325165587 + ], + [ + 4966.996023753699, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E44", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5008.308850610615, + "max_x": 4964.738520549858, + "max_y": 5009.428731961008, + "center": [ + 4963.730627334504, + 5008.868791285811 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E45", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5011.692444844832, + "max_x": 4977.81754970886, + "max_y": 5013.371256289492, + "center": [ + 4973.7884022416765, + 5012.531850567162 + ] + }, + "raw_value": "FCV-6114", + "clean_value": "FCV-6114", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E46", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5010.665381649839, + "max_x": 4966.996023753699, + "max_y": 5014.398319484484, + "center": [ + 4966.996023753699, + 5012.531850567162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5014.398319484484 + ], + [ + 4966.996023753699, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E47", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5012.531850567161, + "max_x": 4983.420950226136, + "max_y": 5014.398319484484, + "center": [ + 4982.487715767475, + 5013.465085025822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5014.398319484484 + ], + [ + 4983.420950226136, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E48", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5010.665381649839, + "max_x": 4983.420950226136, + "max_y": 5012.531850567161, + "center": [ + 4982.487715767475, + 5011.5986161085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5010.665381649839 + ], + [ + 4983.420950226136, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E49", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5014.398319484484, + "max_x": 4981.554481308814, + "max_y": 5014.398319484484, + "center": [ + 4974.275252531256, + 5014.398319484484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5014.398319484484 + ], + [ + 4966.996023753699, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5010.665381649839, + "max_x": 4981.554481308814, + "max_y": 5010.665381649839, + "center": [ + 4974.275252531256, + 5010.665381649839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5010.665381649839 + ], + [ + 4966.996023753699, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5012.531850567161, + "max_x": 4966.996023753699, + "max_y": 5012.531850567161, + "center": [ + 4964.268155988459, + 5012.531850567161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5012.531850567161 + ], + [ + 4966.996023753699, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5012.788376012188, + "max_x": 4964.738520549858, + "max_y": 5013.908257362581, + "center": [ + 4963.730627334504, + 5013.348316687385 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.719299062112, + "min_y": 5016.171970246405, + "max_x": 4977.777593996478, + "max_y": 5017.850781691065, + "center": [ + 4973.748446529295, + 5017.011375968736 + ] + }, + "raw_value": "PCV-6111", + "clean_value": "PCV-6111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5015.144907051412, + "max_x": 4966.996023753699, + "max_y": 5018.877844886056, + "center": [ + 4966.996023753699, + 5017.011375968734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5018.877844886056 + ], + [ + 4966.996023753699, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E4F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5017.011375968735, + "max_x": 4983.420950226136, + "max_y": 5018.877844886056, + "center": [ + 4982.487715767475, + 5017.944610427396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5018.877844886056 + ], + [ + 4983.420950226136, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E50", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5015.144907051412, + "max_x": 4983.420950226136, + "max_y": 5017.011375968735, + "center": [ + 4982.487715767475, + 5016.078141510074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5015.144907051412 + ], + [ + 4983.420950226136, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E51", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5018.877844886056, + "max_x": 4981.554481308814, + "max_y": 5018.877844886056, + "center": [ + 4974.275252531256, + 5018.877844886056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5018.877844886056 + ], + [ + 4966.996023753699, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E52", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5015.144907051412, + "max_x": 4981.554481308814, + "max_y": 5015.144907051412, + "center": [ + 4974.275252531256, + 5015.144907051412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5015.144907051412 + ], + [ + 4966.996023753699, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E53", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5017.011375968735, + "max_x": 4966.996023753699, + "max_y": 5017.011375968735, + "center": [ + 4964.268155988459, + 5017.011375968735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5017.011375968735 + ], + [ + 4966.996023753699, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E54", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5017.267901413762, + "max_x": 4964.738520549858, + "max_y": 5018.387782764155, + "center": [ + 4963.730627334504, + 5017.827842088958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E55", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5020.651495647978, + "max_x": 4977.81754970886, + "max_y": 5022.330307092638, + "center": [ + 4973.7884022416765, + 5021.490901370307 + ] + }, + "raw_value": "FCV-6113", + "clean_value": "FCV-6113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E56", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5019.624432452985, + "max_x": 4966.996023753699, + "max_y": 5023.35737028763, + "center": [ + 4966.996023753699, + 5021.490901370307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5023.35737028763 + ], + [ + 4966.996023753699, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E57", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5021.490901370309, + "max_x": 4983.420950226136, + "max_y": 5023.35737028763, + "center": [ + 4982.487715767475, + 5022.424135828969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5023.35737028763 + ], + [ + 4983.420950226136, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E58", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5019.624432452985, + "max_x": 4983.420950226136, + "max_y": 5021.490901370309, + "center": [ + 4982.487715767475, + 5020.557666911647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5019.624432452985 + ], + [ + 4983.420950226136, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E59", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5023.35737028763, + "max_x": 4981.554481308814, + "max_y": 5023.35737028763, + "center": [ + 4974.275252531256, + 5023.35737028763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5023.35737028763 + ], + [ + 4966.996023753699, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5019.624432452985, + "max_x": 4981.554481308814, + "max_y": 5019.624432452985, + "center": [ + 4974.275252531256, + 5019.624432452985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5019.624432452985 + ], + [ + 4966.996023753699, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5021.490901370309, + "max_x": 4966.996023753699, + "max_y": 5021.490901370309, + "center": [ + 4964.268155988459, + 5021.490901370309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5021.490901370309 + ], + [ + 4966.996023753699, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5021.747426815335, + "max_x": 4964.738520549858, + "max_y": 5022.867308165728, + "center": [ + 4963.730627334504, + 5022.307367490532 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.77281117691, + "min_y": 5025.131021049553, + "max_x": 4977.831106111275, + "max_y": 5026.809832494213, + "center": [ + 4973.801958644093, + 5025.970426771883 + ] + }, + "raw_value": "TCV-6111", + "clean_value": "TCV-6111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5024.10395785456, + "max_x": 4966.996023753699, + "max_y": 5027.836895689204, + "center": [ + 4966.996023753699, + 5025.970426771882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5027.836895689204 + ], + [ + 4966.996023753699, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E5F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5025.970426771881, + "max_x": 4983.420950226136, + "max_y": 5027.836895689204, + "center": [ + 4982.487715767475, + 5026.903661230543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5027.836895689204 + ], + [ + 4983.420950226136, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E60", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5024.10395785456, + "max_x": 4983.420950226136, + "max_y": 5025.970426771881, + "center": [ + 4982.487715767475, + 5025.037192313221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5024.10395785456 + ], + [ + 4983.420950226136, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E61", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5027.836895689204, + "max_x": 4981.554481308814, + "max_y": 5027.836895689204, + "center": [ + 4974.275252531256, + 5027.836895689204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5027.836895689204 + ], + [ + 4966.996023753699, + 5027.836895689204 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E62", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5024.10395785456, + "max_x": 4981.554481308814, + "max_y": 5024.10395785456, + "center": [ + 4974.275252531256, + 5024.10395785456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5024.10395785456 + ], + [ + 4966.996023753699, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E63", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5025.970426771881, + "max_x": 4966.996023753699, + "max_y": 5025.970426771881, + "center": [ + 4964.268155988459, + 5025.970426771881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5025.970426771881 + ], + [ + 4966.996023753699, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E64", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5026.226952216909, + "max_x": 4964.738520549858, + "max_y": 5027.346833567302, + "center": [ + 4963.730627334504, + 5026.786892892105 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E65", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4969.759254774494, + "min_y": 5029.610546451126, + "max_x": 4977.81754970886, + "max_y": 5031.2893578957855, + "center": [ + 4973.7884022416765, + 5030.449952173456 + ] + }, + "raw_value": "FCV-6101", + "clean_value": "FCV-6101", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E66", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5028.583483256134, + "max_x": 4966.996023753699, + "max_y": 5032.316421090778, + "center": [ + 4966.996023753699, + 5030.449952173456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4966.996023753699, + 5032.316421090778 + ], + [ + 4966.996023753699, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E67", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5030.449952173455, + "max_x": 4983.420950226136, + "max_y": 5032.316421090778, + "center": [ + 4982.487715767475, + 5031.383186632116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5032.316421090778 + ], + [ + 4983.420950226136, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E68", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4981.554481308814, + "min_y": 5028.583483256134, + "max_x": 4983.420950226136, + "max_y": 5030.449952173455, + "center": [ + 4982.487715767475, + 5029.516717714794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5028.583483256134 + ], + [ + 4983.420950226136, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E69", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5032.316421090778, + "max_x": 4981.554481308814, + "max_y": 5032.316421090778, + "center": [ + 4974.275252531256, + 5032.316421090778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5032.316421090778 + ], + [ + 4966.996023753699, + 5032.316421090778 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4966.996023753699, + "min_y": 5028.583483256134, + "max_x": 4981.554481308814, + "max_y": 5028.583483256134, + "center": [ + 4974.275252531256, + 5028.583483256134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4981.554481308814, + 5028.583483256134 + ], + [ + 4966.996023753699, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 5030.449952173455, + "max_x": 4966.996023753699, + "max_y": 5030.449952173455, + "center": [ + 4964.268155988459, + 5030.449952173455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5030.449952173455 + ], + [ + 4966.996023753699, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4962.722734119149, + "min_y": 5030.706477618482, + "max_x": 4964.738520549858, + "max_y": 5031.826358968875, + "center": [ + 4963.730627334504, + 5031.266418293679 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 4992.491156893399, + "max_x": 4961.540288223217, + "max_y": 5030.449952173455, + "center": [ + 4961.540288223217, + 5011.470554533427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 5030.449952173455 + ], + [ + 4961.540288223217, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4958.118885552078, + "min_y": 4999.862891092833, + "max_x": 4986.33539711648, + "max_y": 5034.128252360158, + "center": [ + 4972.227141334279, + 5016.995571726495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4958.118885552078, + 5034.128252360158 + ], + [ + 4986.33539711648, + 5034.128252360158 + ], + [ + 4986.33539711648, + 4999.862891092833 + ], + [ + 4958.118885552078, + 4999.862891092833 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E6F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4925.426958426992, + "min_y": 5035.519206646021, + "max_x": 4936.625771930926, + "max_y": 5037.385675563343, + "center": [ + 4931.026365178959, + 5036.452441104682 + ] + }, + "raw_value": "#6-2 PLANT", + "clean_value": "#6-2 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E70", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4959.023398938795, + "min_y": 5035.519206646021, + "max_x": 4970.222212442729, + "max_y": 5037.385675563343, + "center": [ + 4964.622805690762, + 5036.452441104682 + ] + }, + "raw_value": "#6-1 PLANT", + "clean_value": "#6-1 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E71", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4927.453019115171, + "min_y": 4994.673100783546, + "max_x": 4929.468805545879, + "max_y": 4995.792982133939, + "center": [ + 4928.460912330525, + 4995.233041458743 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E72", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4961.049459626973, + "min_y": 4994.673100783546, + "max_x": 4963.065246057681, + "max_y": 4995.792982133939, + "center": [ + 4962.0573528423265, + 4995.233041458743 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E73", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5002.733394041683, + "max_x": 5011.413990220662, + "max_y": 5004.412205486343, + "center": [ + 5007.3848427534795, + 5003.572799764013 + ] + }, + "raw_value": "FCV-5116", + "clean_value": "FCV-5116", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E74", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5001.706330846691, + "max_x": 5000.592464265501, + "max_y": 5005.439268681336, + "center": [ + 5000.592464265501, + 5003.572799764013 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5005.439268681336 + ], + [ + 5000.592464265501, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E75", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5003.572799764014, + "max_x": 5017.017390737937, + "max_y": 5005.439268681336, + "center": [ + 5016.084156279276, + 5004.506034222675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5005.439268681336 + ], + [ + 5017.017390737937, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E76", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5001.706330846691, + "max_x": 5017.017390737937, + "max_y": 5003.572799764014, + "center": [ + 5016.084156279276, + 5002.639565305353 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5001.706330846691 + ], + [ + 5017.017390737937, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E77", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5005.439268681336, + "max_x": 5015.150921820615, + "max_y": 5005.439268681336, + "center": [ + 5007.871693043058, + 5005.439268681336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5005.439268681336 + ], + [ + 5000.592464265501, + 5005.439268681336 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E78", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5001.706330846691, + "max_x": 5015.150921820615, + "max_y": 5001.706330846691, + "center": [ + 5007.871693043058, + 5001.706330846691 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5001.706330846691 + ], + [ + 5000.592464265501, + 5001.706330846691 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E79", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5003.572799764014, + "max_x": 5000.592464265501, + "max_y": 5003.572799764014, + "center": [ + 4997.86459650026, + 5003.572799764014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5003.572799764014 + ], + [ + 5000.592464265501, + 5003.572799764014 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5003.829325209042, + "max_x": 4998.334961061661, + "max_y": 5004.949206559435, + "center": [ + 4997.327067846307, + 5004.389265884238 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5007.212919443258, + "max_x": 5011.413990220662, + "max_y": 5008.891730887918, + "center": [ + 5007.3848427534795, + 5008.052325165589 + ] + }, + "raw_value": "FCV-5118", + "clean_value": "FCV-5118", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5006.185856248265, + "max_x": 5000.592464265501, + "max_y": 5009.91879408291, + "center": [ + 5000.592464265501, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5009.91879408291 + ], + [ + 5000.592464265501, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5008.052325165587, + "max_x": 5017.017390737937, + "max_y": 5009.91879408291, + "center": [ + 5016.084156279276, + 5008.985559624249 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5009.91879408291 + ], + [ + 5017.017390737937, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5006.185856248265, + "max_x": 5017.017390737937, + "max_y": 5008.052325165587, + "center": [ + 5016.084156279276, + 5007.119090706926 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5006.185856248265 + ], + [ + 5017.017390737937, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E7F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5009.91879408291, + "max_x": 5015.150921820615, + "max_y": 5009.91879408291, + "center": [ + 5007.871693043058, + 5009.91879408291 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5009.91879408291 + ], + [ + 5000.592464265501, + 5009.91879408291 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E80", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5006.185856248265, + "max_x": 5015.150921820615, + "max_y": 5006.185856248265, + "center": [ + 5007.871693043058, + 5006.185856248265 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5006.185856248265 + ], + [ + 5000.592464265501, + 5006.185856248265 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E81", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5008.052325165587, + "max_x": 5000.592464265501, + "max_y": 5008.052325165587, + "center": [ + 4997.86459650026, + 5008.052325165587 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5008.052325165587 + ], + [ + 5000.592464265501, + 5008.052325165587 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E82", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5008.308850610615, + "max_x": 4998.334961061661, + "max_y": 5009.428731961008, + "center": [ + 4997.327067846307, + 5008.868791285811 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E83", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5011.692444844832, + "max_x": 5011.413990220662, + "max_y": 5013.371256289492, + "center": [ + 5007.3848427534795, + 5012.531850567162 + ] + }, + "raw_value": "FCV-5114", + "clean_value": "FCV-5114", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E84", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5010.665381649839, + "max_x": 5000.592464265501, + "max_y": 5014.398319484484, + "center": [ + 5000.592464265501, + 5012.531850567162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5014.398319484484 + ], + [ + 5000.592464265501, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E85", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5012.531850567161, + "max_x": 5017.017390737937, + "max_y": 5014.398319484484, + "center": [ + 5016.084156279276, + 5013.465085025822 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5014.398319484484 + ], + [ + 5017.017390737937, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E86", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5010.665381649839, + "max_x": 5017.017390737937, + "max_y": 5012.531850567161, + "center": [ + 5016.084156279276, + 5011.5986161085 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5010.665381649839 + ], + [ + 5017.017390737937, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E87", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5014.398319484484, + "max_x": 5015.150921820615, + "max_y": 5014.398319484484, + "center": [ + 5007.871693043058, + 5014.398319484484 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5014.398319484484 + ], + [ + 5000.592464265501, + 5014.398319484484 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E88", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5010.665381649839, + "max_x": 5015.150921820615, + "max_y": 5010.665381649839, + "center": [ + 5007.871693043058, + 5010.665381649839 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5010.665381649839 + ], + [ + 5000.592464265501, + 5010.665381649839 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E89", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5012.531850567161, + "max_x": 5000.592464265501, + "max_y": 5012.531850567161, + "center": [ + 4997.86459650026, + 5012.531850567161 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5012.531850567161 + ], + [ + 5000.592464265501, + 5012.531850567161 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5012.788376012188, + "max_x": 4998.334961061661, + "max_y": 5013.908257362581, + "center": [ + 4997.327067846307, + 5013.348316687385 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.315739573912, + "min_y": 5016.171970246405, + "max_x": 5011.374034508277, + "max_y": 5017.850781691065, + "center": [ + 5007.344887041094, + 5017.011375968736 + ] + }, + "raw_value": "PCV-5111", + "clean_value": "PCV-5111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5015.144907051412, + "max_x": 5000.592464265501, + "max_y": 5018.877844886056, + "center": [ + 5000.592464265501, + 5017.011375968734 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5018.877844886056 + ], + [ + 5000.592464265501, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5017.011375968735, + "max_x": 5017.017390737937, + "max_y": 5018.877844886056, + "center": [ + 5016.084156279276, + 5017.944610427396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5018.877844886056 + ], + [ + 5017.017390737937, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5015.144907051412, + "max_x": 5017.017390737937, + "max_y": 5017.011375968735, + "center": [ + 5016.084156279276, + 5016.078141510074 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5015.144907051412 + ], + [ + 5017.017390737937, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E8F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5018.877844886056, + "max_x": 5015.150921820615, + "max_y": 5018.877844886056, + "center": [ + 5007.871693043058, + 5018.877844886056 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5018.877844886056 + ], + [ + 5000.592464265501, + 5018.877844886056 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E90", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5015.144907051412, + "max_x": 5015.150921820615, + "max_y": 5015.144907051412, + "center": [ + 5007.871693043058, + 5015.144907051412 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5015.144907051412 + ], + [ + 5000.592464265501, + 5015.144907051412 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E91", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5017.011375968735, + "max_x": 5000.592464265501, + "max_y": 5017.011375968735, + "center": [ + 4997.86459650026, + 5017.011375968735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5017.011375968735 + ], + [ + 5000.592464265501, + 5017.011375968735 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E92", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5017.267901413762, + "max_x": 4998.334961061661, + "max_y": 5018.387782764155, + "center": [ + 4997.327067846307, + 5017.827842088958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E93", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5020.651495647978, + "max_x": 5011.413990220662, + "max_y": 5022.330307092638, + "center": [ + 5007.3848427534795, + 5021.490901370307 + ] + }, + "raw_value": "FCV-5113", + "clean_value": "FCV-5113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E94", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5019.624432452985, + "max_x": 5000.592464265501, + "max_y": 5023.35737028763, + "center": [ + 5000.592464265501, + 5021.490901370307 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5023.35737028763 + ], + [ + 5000.592464265501, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E95", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5021.490901370309, + "max_x": 5017.017390737937, + "max_y": 5023.35737028763, + "center": [ + 5016.084156279276, + 5022.424135828969 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5023.35737028763 + ], + [ + 5017.017390737937, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E96", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5019.624432452985, + "max_x": 5017.017390737937, + "max_y": 5021.490901370309, + "center": [ + 5016.084156279276, + 5020.557666911647 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5019.624432452985 + ], + [ + 5017.017390737937, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E97", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5023.35737028763, + "max_x": 5015.150921820615, + "max_y": 5023.35737028763, + "center": [ + 5007.871693043058, + 5023.35737028763 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5023.35737028763 + ], + [ + 5000.592464265501, + 5023.35737028763 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E98", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5019.624432452985, + "max_x": 5015.150921820615, + "max_y": 5019.624432452985, + "center": [ + 5007.871693043058, + 5019.624432452985 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5019.624432452985 + ], + [ + 5000.592464265501, + 5019.624432452985 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E99", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5021.490901370309, + "max_x": 5000.592464265501, + "max_y": 5021.490901370309, + "center": [ + 4997.86459650026, + 5021.490901370309 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5021.490901370309 + ], + [ + 5000.592464265501, + 5021.490901370309 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9A", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5021.747426815335, + "max_x": 4998.334961061661, + "max_y": 5022.867308165728, + "center": [ + 4997.327067846307, + 5022.307367490532 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.369251688711, + "min_y": 5025.131021049553, + "max_x": 5011.4275466230765, + "max_y": 5026.809832494213, + "center": [ + 5007.398399155894, + 5025.970426771883 + ] + }, + "raw_value": "TCV-5111", + "clean_value": "TCV-5111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5024.10395785456, + "max_x": 5000.592464265501, + "max_y": 5027.836895689204, + "center": [ + 5000.592464265501, + 5025.970426771882 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5027.836895689204 + ], + [ + 5000.592464265501, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5025.970426771881, + "max_x": 5017.017390737937, + "max_y": 5027.836895689204, + "center": [ + 5016.084156279276, + 5026.903661230543 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5027.836895689204 + ], + [ + 5017.017390737937, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5024.10395785456, + "max_x": 5017.017390737937, + "max_y": 5025.970426771881, + "center": [ + 5016.084156279276, + 5025.037192313221 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5024.10395785456 + ], + [ + 5017.017390737937, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561E9F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5027.836895689204, + "max_x": 5015.150921820615, + "max_y": 5027.836895689204, + "center": [ + 5007.871693043058, + 5027.836895689204 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5027.836895689204 + ], + [ + 5000.592464265501, + 5027.836895689204 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5024.10395785456, + "max_x": 5015.150921820615, + "max_y": 5024.10395785456, + "center": [ + 5007.871693043058, + 5024.10395785456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5024.10395785456 + ], + [ + 5000.592464265501, + 5024.10395785456 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA1", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5025.970426771881, + "max_x": 5000.592464265501, + "max_y": 5025.970426771881, + "center": [ + 4997.86459650026, + 5025.970426771881 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5025.970426771881 + ], + [ + 5000.592464265501, + 5025.970426771881 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA2", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5026.226952216909, + "max_x": 4998.334961061661, + "max_y": 5027.346833567302, + "center": [ + 4997.327067846307, + 5026.786892892105 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA3", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5003.355695286296, + "min_y": 5029.610546451126, + "max_x": 5011.413990220662, + "max_y": 5031.2893578957855, + "center": [ + 5007.3848427534795, + 5030.449952173456 + ] + }, + "raw_value": "FCV-5101", + "clean_value": "FCV-5101", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5028.583483256134, + "max_x": 5000.592464265501, + "max_y": 5032.316421090778, + "center": [ + 5000.592464265501, + 5030.449952173456 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5000.592464265501, + 5032.316421090778 + ], + [ + 5000.592464265501, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA5", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5030.449952173455, + "max_x": 5017.017390737937, + "max_y": 5032.316421090778, + "center": [ + 5016.084156279276, + 5031.383186632116 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5032.316421090778 + ], + [ + 5017.017390737937, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5015.150921820615, + "min_y": 5028.583483256134, + "max_x": 5017.017390737937, + "max_y": 5030.449952173455, + "center": [ + 5016.084156279276, + 5029.516717714794 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5028.583483256134 + ], + [ + 5017.017390737937, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5032.316421090778, + "max_x": 5015.150921820615, + "max_y": 5032.316421090778, + "center": [ + 5007.871693043058, + 5032.316421090778 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5032.316421090778 + ], + [ + 5000.592464265501, + 5032.316421090778 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5000.592464265501, + "min_y": 5028.583483256134, + "max_x": 5015.150921820615, + "max_y": 5028.583483256134, + "center": [ + 5007.871693043058, + 5028.583483256134 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5015.150921820615, + 5028.583483256134 + ], + [ + 5000.592464265501, + 5028.583483256134 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EA9", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 5030.449952173455, + "max_x": 5000.592464265501, + "max_y": 5030.449952173455, + "center": [ + 4997.86459650026, + 5030.449952173455 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5030.449952173455 + ], + [ + 5000.592464265501, + 5030.449952173455 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAA", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4996.319174630952, + "min_y": 5030.706477618482, + "max_x": 4998.334961061661, + "max_y": 5031.826358968875, + "center": [ + 4997.327067846307, + 5031.266418293679 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 4992.491156893399, + "max_x": 4995.136728735019, + "max_y": 5030.449952173455, + "center": [ + 4995.136728735019, + 5011.470554533427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 5030.449952173455 + ], + [ + 4995.136728735019, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4991.715326063882, + "min_y": 4999.862891092833, + "max_x": 5019.931837628281, + "max_y": 5034.128252360158, + "center": [ + 5005.823581846082, + 5016.995571726495 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4991.715326063882, + 5034.128252360158 + ], + [ + 5019.931837628281, + 5034.128252360158 + ], + [ + 5019.931837628281, + 4999.862891092833 + ], + [ + 4991.715326063882, + 4999.862891092833 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAD", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4993.762303578722, + "min_y": 5035.519206646021, + "max_x": 5002.721354381869, + "max_y": 5037.385675563343, + "center": [ + 4998.241828980295, + 5036.452441104682 + ] + }, + "raw_value": "#5 PLANT", + "clean_value": "#5 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4994.645900138775, + "min_y": 4994.673100783546, + "max_x": 4996.661686569483, + "max_y": 4995.792982133939, + "center": [ + 4995.653793354129, + 4995.233041458743 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EAF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5049.861228913608, + "max_x": 4928.173470273395, + "max_y": 5053.594166748252, + "center": [ + 4928.173470273395, + 5051.72769783093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4928.173470273395, + 5049.861228913608 + ], + [ + 4928.173470273395, + 5053.594166748252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5049.861228913608, + "max_x": 4944.598396745831, + "max_y": 5051.72769783093, + "center": [ + 4943.665162287169, + 5050.794463372269 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5049.861228913608 + ], + [ + 4944.598396745831, + 5051.72769783093 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5051.72769783093, + "max_x": 4944.598396745831, + "max_y": 5053.594166748252, + "center": [ + 4943.665162287169, + 5052.660932289591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5053.594166748252 + ], + [ + 4944.598396745831, + 5051.72769783093 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5049.861228913608, + "max_x": 4942.731927828507, + "max_y": 5049.861228913608, + "center": [ + 4935.452699050951, + 5049.861228913608 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5049.861228913608 + ], + [ + 4928.173470273395, + 5049.861228913608 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB3", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 5042.768647027783, + "max_x": 4928.173470273395, + "max_y": 5042.768647027783, + "center": [ + 4925.4456025081545, + 5042.768647027783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4922.717734742913, + 5042.768647027783 + ], + [ + 4928.173470273395, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 4992.491156893399, + "max_x": 4922.717734742913, + "max_y": 5051.72769783093, + "center": [ + 4922.717734742913, + 5022.109427362165 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4922.717734742913, + 5051.72769783093 + ], + [ + 4922.717734742913, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4930.544992613864, + "min_y": 5050.8882921086, + "max_x": 4940.617861281821, + "max_y": 5052.56710355326, + "center": [ + 4935.581426947843, + 5051.727697830929 + ] + }, + "raw_value": "#5 UTILITY", + "clean_value": "#5 UTILITY", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5051.984223275957, + "max_x": 4925.9159670695535, + "max_y": 5053.104104626351, + "center": [ + 4924.9080738542, + 5052.544163951154 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5045.381703512034, + "max_x": 4928.173470273395, + "max_y": 5049.114641346679, + "center": [ + 4928.173470273395, + 5047.248172429356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4928.173470273395, + 5045.381703512034 + ], + [ + 4928.173470273395, + 5049.114641346679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5045.381703512034, + "max_x": 4944.598396745831, + "max_y": 5047.248172429356, + "center": [ + 4943.665162287169, + 5046.314937970695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5045.381703512034 + ], + [ + 4944.598396745831, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EB9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5047.248172429356, + "max_x": 4944.598396745831, + "max_y": 5049.114641346679, + "center": [ + 4943.665162287169, + 5048.181406888018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5049.114641346679 + ], + [ + 4944.598396745831, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5045.381703512034, + "max_x": 4942.731927828507, + "max_y": 5045.381703512034, + "center": [ + 4935.452699050951, + 5045.381703512034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5045.381703512034 + ], + [ + 4928.173470273395, + 5045.381703512034 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5049.114641346679, + "max_x": 4942.731927828507, + "max_y": 5049.114641346679, + "center": [ + 4935.452699050951, + 5049.114641346679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5049.114641346679 + ], + [ + 4928.173470273395, + 5049.114641346679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 5047.248172429356, + "max_x": 4928.173470273395, + "max_y": 5047.248172429356, + "center": [ + 4925.4456025081545, + 5047.248172429356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4922.717734742913, + 5047.248172429356 + ], + [ + 4928.173470273395, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4931.605959476602, + "min_y": 5046.408766707028, + "max_x": 4938.656967544172, + "max_y": 5048.087578151688, + "center": [ + 4935.131463510387, + 5047.2481724293575 + ] + }, + "raw_value": "XV-3208", + "clean_value": "XV-3208", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5047.504697874384, + "max_x": 4925.9159670695535, + "max_y": 5048.624579224777, + "center": [ + 4924.9080738542, + 5048.06463854958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EBF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5040.90217811046, + "max_x": 4928.173470273395, + "max_y": 5044.635115945105, + "center": [ + 4928.173470273395, + 5042.768647027782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4928.173470273395, + 5040.90217811046 + ], + [ + 4928.173470273395, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5040.90217811046, + "max_x": 4944.598396745831, + "max_y": 5042.768647027783, + "center": [ + 4943.665162287169, + 5041.835412569122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5040.90217811046 + ], + [ + 4944.598396745831, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4942.731927828507, + "min_y": 5042.768647027783, + "max_x": 4944.598396745831, + "max_y": 5044.635115945105, + "center": [ + 4943.665162287169, + 5043.701881486444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5044.635115945105 + ], + [ + 4944.598396745831, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5040.90217811046, + "max_x": 4942.731927828507, + "max_y": 5040.90217811046, + "center": [ + 4935.452699050951, + 5040.90217811046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5040.90217811046 + ], + [ + 4928.173470273395, + 5040.90217811046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5044.635115945105, + "max_x": 4942.731927828507, + "max_y": 5044.635115945105, + "center": [ + 4935.452699050951, + 5044.635115945105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5044.635115945105 + ], + [ + 4928.173470273395, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC4", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 5051.72769783093, + "max_x": 4928.173470273395, + "max_y": 5051.72769783093, + "center": [ + 4925.4456025081545, + 5051.72769783093 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4922.717734742913, + 5051.72769783093 + ], + [ + 4928.173470273395, + 5051.72769783093 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4930.544992613864, + "min_y": 5041.929241305453, + "max_x": 4940.617861281821, + "max_y": 5043.608052750113, + "center": [ + 4935.581426947843, + 5042.768647027782 + ] + }, + "raw_value": "#3 UTILITY", + "clean_value": "#3 UTILITY", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4923.900180638845, + "min_y": 5043.025172472811, + "max_x": 4925.9159670695535, + "max_y": 5044.145053823205, + "center": [ + 4924.9080738542, + 5043.5851131480085 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5045.381703512034, + "max_x": 4961.769910785196, + "max_y": 5049.114641346679, + "center": [ + 4961.769910785196, + 5047.248172429356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.769910785196, + 5045.381703512034 + ], + [ + 4961.769910785196, + 5049.114641346679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5045.381703512034, + "max_x": 4978.194837257632, + "max_y": 5047.248172429356, + "center": [ + 4977.261602798972, + 5046.314937970695 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5045.381703512034 + ], + [ + 4978.194837257632, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EC9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5047.248172429356, + "max_x": 4978.194837257632, + "max_y": 5049.114641346679, + "center": [ + 4977.261602798972, + 5048.181406888018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5049.114641346679 + ], + [ + 4978.194837257632, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5045.381703512034, + "max_x": 4976.328368340311, + "max_y": 5045.381703512034, + "center": [ + 4969.049139562753, + 5045.381703512034 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5045.381703512034 + ], + [ + 4961.769910785196, + 5045.381703512034 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5049.114641346679, + "max_x": 4976.328368340311, + "max_y": 5049.114641346679, + "center": [ + 4969.049139562753, + 5049.114641346679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5049.114641346679 + ], + [ + 4961.769910785196, + 5049.114641346679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECC", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 5042.768647027783, + "max_x": 4961.769910785196, + "max_y": 5042.768647027783, + "center": [ + 4959.042043019956, + 5042.768647027783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4956.314175254715, + 5042.768647027783 + ], + [ + 4961.769910785196, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 4992.491156893399, + "max_x": 4956.314175254715, + "max_y": 5047.248172429356, + "center": [ + 4956.314175254715, + 5019.869664661377 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4956.314175254715, + 5047.248172429356 + ], + [ + 4956.314175254715, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECE", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4965.202399988405, + "min_y": 5046.408766707028, + "max_x": 4972.253408055975, + "max_y": 5048.087578151688, + "center": [ + 4968.72790402219, + 5047.2481724293575 + ] + }, + "raw_value": "XV-3402", + "clean_value": "XV-3402", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ECF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4957.496621150646, + "min_y": 5047.504697874384, + "max_x": 4959.512407581355, + "max_y": 5048.624579224777, + "center": [ + 4958.504514366001, + 5048.06463854958 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED0", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5040.90217811046, + "max_x": 4961.769910785196, + "max_y": 5044.635115945105, + "center": [ + 4961.769910785196, + 5042.768647027782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.769910785196, + 5040.90217811046 + ], + [ + 4961.769910785196, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED1", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5040.90217811046, + "max_x": 4978.194837257632, + "max_y": 5042.768647027783, + "center": [ + 4977.261602798972, + 5041.835412569122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5040.90217811046 + ], + [ + 4978.194837257632, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED2", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4976.328368340311, + "min_y": 5042.768647027783, + "max_x": 4978.194837257632, + "max_y": 5044.635115945105, + "center": [ + 4977.261602798972, + 5043.701881486444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5044.635115945105 + ], + [ + 4978.194837257632, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED3", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5040.90217811046, + "max_x": 4976.328368340311, + "max_y": 5040.90217811046, + "center": [ + 4969.049139562753, + 5040.90217811046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5040.90217811046 + ], + [ + 4961.769910785196, + 5040.90217811046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED4", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4961.769910785196, + "min_y": 5044.635115945105, + "max_x": 4976.328368340311, + "max_y": 5044.635115945105, + "center": [ + 4969.049139562753, + 5044.635115945105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4976.328368340311, + 5044.635115945105 + ], + [ + 4961.769910785196, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED5", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 5047.248172429356, + "max_x": 4961.769910785196, + "max_y": 5047.248172429356, + "center": [ + 4959.042043019956, + 5047.248172429356 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4956.314175254715, + 5047.248172429356 + ], + [ + 4961.769910785196, + 5047.248172429356 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED6", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4964.584513436198, + "min_y": 5041.929241305453, + "max_x": 4972.642808370563, + "max_y": 5043.608052750113, + "center": [ + 4968.61366090338, + 5042.768647027782 + ] + }, + "raw_value": "LCV-3402", + "clean_value": "LCV-3402", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED7", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4957.496621150646, + "min_y": 5043.025172472811, + "max_x": 4959.512407581355, + "max_y": 5044.145053823205, + "center": [ + 4958.504514366001, + 5043.5851131480085 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4995.366351296999, + "min_y": 5040.90217811046, + "max_x": 4995.366351296999, + "max_y": 5044.635115945105, + "center": [ + 4995.366351296999, + 5042.768647027782 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.366351296999, + 5040.90217811046 + ], + [ + 4995.366351296999, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561ED9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5009.924808852113, + "min_y": 5040.90217811046, + "max_x": 5011.791277769436, + "max_y": 5042.768647027783, + "center": [ + 5010.8580433107745, + 5041.835412569122 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.924808852113, + 5040.90217811046 + ], + [ + 5011.791277769436, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5009.924808852113, + "min_y": 5042.768647027783, + "max_x": 5011.791277769436, + "max_y": 5044.635115945105, + "center": [ + 5010.8580433107745, + 5043.701881486444 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.924808852113, + 5044.635115945105 + ], + [ + 5011.791277769436, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4995.366351296999, + "min_y": 5040.90217811046, + "max_x": 5009.924808852113, + "max_y": 5040.90217811046, + "center": [ + 5002.645580074555, + 5040.90217811046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.924808852113, + 5040.90217811046 + ], + [ + 4995.366351296999, + 5040.90217811046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4995.366351296999, + "min_y": 5044.635115945105, + "max_x": 5009.924808852113, + "max_y": 5044.635115945105, + "center": [ + 5002.645580074555, + 5044.635115945105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5009.924808852113, + 5044.635115945105 + ], + [ + 4995.366351296999, + 5044.635115945105 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDD", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4989.910615766516, + "min_y": 5042.768647027783, + "max_x": 4995.366351296999, + "max_y": 5042.768647027783, + "center": [ + 4992.638483531757, + 5042.768647027783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4989.910615766516, + 5042.768647027783 + ], + [ + 4995.366351296999, + 5042.768647027783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4989.910615766516, + "min_y": 4992.491156893399, + "max_x": 4989.910615766516, + "max_y": 5042.768647027783, + "center": [ + 4989.910615766516, + 5017.629901960591 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4989.910615766516, + 5042.768647027783 + ], + [ + 4989.910615766516, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EDF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5000.418473841444, + "min_y": 5041.929241305453, + "max_x": 5004.447621308627, + "max_y": 5043.608052750113, + "center": [ + 5002.433047575036, + 5042.768647027782 + ] + }, + "raw_value": "10 동", + "clean_value": "10 동", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 4991.093061662449, + "min_y": 5043.025172472811, + "max_x": 4993.108848093158, + "max_y": 5044.145053823205, + "center": [ + 4992.100954877804, + 5043.5851131480085 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4922.717734742913, + "min_y": 4996.887164363125, + "max_x": 4922.717734742913, + "max_y": 4998.847834937009, + "center": [ + 4922.717734742913, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4922.717734742913, + 4998.847834937009 + ], + [ + 4922.717734742913, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE2", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4927.943847711415, + "min_y": 4996.887164363125, + "max_x": 4927.943847711415, + "max_y": 4998.847834937009, + "center": [ + 4927.943847711415, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4927.943847711415, + 4998.847834937009 + ], + [ + 4927.943847711415, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE3", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4956.314175254715, + "min_y": 4996.887164363125, + "max_x": 4956.314175254715, + "max_y": 4998.847834937009, + "center": [ + 4956.314175254715, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4956.314175254715, + 4998.847834937009 + ], + [ + 4956.314175254715, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE4", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4961.540288223217, + "min_y": 4996.887164363125, + "max_x": 4961.540288223217, + "max_y": 4998.847834937009, + "center": [ + 4961.540288223217, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4961.540288223217, + 4998.847834937009 + ], + [ + 4961.540288223217, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE5", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4989.910615766516, + "min_y": 4996.887164363125, + "max_x": 4989.910615766516, + "max_y": 4998.847834937009, + "center": [ + 4989.910615766516, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4989.910615766516, + 4998.847834937009 + ], + [ + 4989.910615766516, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE6", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4995.136728735019, + "min_y": 4996.887164363125, + "max_x": 4995.136728735019, + "max_y": 4998.847834937009, + "center": [ + 4995.136728735019, + 4997.867499650067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4995.136728735019, + 4998.847834937009 + ], + [ + 4995.136728735019, + 4996.887164363125 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 4928.173470273395, + "min_y": 5053.594166748252, + "max_x": 4942.731927828507, + "max_y": 5053.594166748252, + "center": [ + 4935.452699050951, + 5053.594166748252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4942.731927828507, + 5053.594166748252 + ], + [ + 4928.173470273395, + 5053.594166748252 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5075.846575002008, + "min_y": 4996.106924094725, + "max_x": 5075.846575002008, + "max_y": 4999.83986192937, + "center": [ + 5075.846575002008, + 4997.973393012047 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5075.846575002008, + 4996.106924094725 + ], + [ + 5075.846575002008, + 4999.83986192937 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EE9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5090.405032557123, + "min_y": 4996.106924094725, + "max_x": 5092.271501474446, + "max_y": 4997.973393012046, + "center": [ + 5091.338267015784, + 4997.0401585533855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5090.405032557123, + 4996.106924094725 + ], + [ + 5092.271501474446, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EEA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5090.405032557123, + "min_y": 4997.973393012046, + "max_x": 5092.271501474446, + "max_y": 4999.83986192937, + "center": [ + 5091.338267015784, + 4998.9066274707075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5090.405032557123, + 4999.83986192937 + ], + [ + 5092.271501474446, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EEB", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5075.846575002008, + "min_y": 4996.106924094725, + "max_x": 5090.405032557123, + "max_y": 4996.106924094725, + "center": [ + 5083.125803779565, + 4996.106924094725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5090.405032557123, + 4996.106924094725 + ], + [ + 5075.846575002008, + 4996.106924094725 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EEC", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5075.846575002008, + "min_y": 4999.83986192937, + "max_x": 5090.405032557123, + "max_y": 4999.83986192937, + "center": [ + 5083.125803779565, + 4999.83986192937 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5090.405032557123, + 4999.83986192937 + ], + [ + 5075.846575002008, + 4999.83986192937 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EED", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5070.390839471526, + "min_y": 4997.973393012046, + "max_x": 5075.846575002008, + "max_y": 4997.973393012046, + "center": [ + 5073.118707236767, + 4997.973393012046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5070.390839471526, + 4997.973393012046 + ], + [ + 5075.846575002008, + 4997.973393012046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EEE", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5070.390839471526, + "min_y": 4992.491156893399, + "max_x": 5070.390839471526, + "max_y": 4997.973393012046, + "center": [ + 5070.390839471526, + 4995.232274952723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5070.390839471526, + 4997.973393012046 + ], + [ + 5070.390839471526, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EEF", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5080.033228276445, + "min_y": 4997.133987289717, + "max_x": 5086.076949477219, + "max_y": 4998.812798734377, + "center": [ + 5083.055088876832, + 4997.973393012047 + ] + }, + "raw_value": "IMS #2", + "clean_value": "IMS #2", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF0", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5071.573285367459, + "min_y": 4998.229918457074, + "max_x": 5073.589071798167, + "max_y": 4999.349799807467, + "center": [ + 5072.581178582814, + 4998.78985913227 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF1", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5063.242529917783, + "max_x": 4797.283035739055, + "max_y": 5066.343892974054, + "center": [ + 4797.283035739055, + 5064.793211445918 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5066.343892974054 + ], + [ + 4797.283035739055, + 5063.242529917783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF2", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5064.661545291379, + "max_x": 4797.283035739055, + "max_y": 5064.661545291379, + "center": [ + 4797.283035739055, + 5064.661545291379 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5064.661545291379 + ], + [ + 4797.283035739055, + 5064.661545291379 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF3", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.431626514894, + "min_y": 5061.823514544183, + "max_x": 4798.134444963214, + "max_y": 5061.823514544183, + "center": [ + 4797.283035739054, + 5061.823514544183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.431626514894, + 5061.823514544183 + ], + [ + 4798.134444963214, + 5061.823514544183 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF4", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.443630016725, + "min_y": 5061.823514544183, + "max_x": 4798.122441461385, + "max_y": 5061.823514544183, + "center": [ + 4797.283035739056, + 5061.823514544183 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.122441461385, + 5061.823514544183 + ], + [ + 4796.443630016725, + 5061.823514544183 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF5", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.443630016725, + "min_y": 5061.095591666427, + "max_x": 4798.122441461385, + "max_y": 5061.095591666427, + "center": [ + 4797.283035739056, + 5061.095591666427 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.122441461385, + 5061.095591666427 + ], + [ + 4796.443630016725, + 5061.095591666427 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF6", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.431626514894, + "min_y": 5061.823514544183, + "max_x": 4797.283035739055, + "max_y": 5063.242529917783, + "center": [ + 4796.857331126974, + 5062.533022230983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.431626514894, + 5061.823514544183 + ], + [ + 4797.283035739055, + 5063.242529917783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF7", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 5064.195226828223, + "max_x": 4797.938407493444, + "max_y": 5065.282214464825, + "center": [ + 4797.283035739054, + 5064.738720646525 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 5064.195226828223 + ], + [ + 4797.938407493444, + 5065.282214464825 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF8", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5061.823514544183, + "max_x": 4798.134444963214, + "max_y": 5063.242529917783, + "center": [ + 4797.708740351134, + 5062.533022230983 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5063.242529917783 + ], + [ + 4798.134444963214, + 5061.823514544183 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EF9", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5063.242529917783, + "max_x": 4798.702051112654, + "max_y": 5064.093939141941, + "center": [ + 4797.992543425855, + 5063.668234529861 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.702051112654, + 5064.093939141941 + ], + [ + 4797.283035739055, + 5063.242529917783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFA", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 5062.391120693623, + "max_x": 4798.702051112654, + "max_y": 5063.242529917783, + "center": [ + 4797.992543425855, + 5062.816825305703 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 5063.242529917783 + ], + [ + 4798.702051112654, + 5062.391120693623 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFB", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4798.702051112654, + "min_y": 5062.391120693623, + "max_x": 4798.702051112654, + "max_y": 5064.093939141941, + "center": [ + 4798.702051112654, + 5063.242529917781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.702051112654, + 5064.093939141941 + ], + [ + 4798.702051112654, + 5062.391120693623 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFC", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4799.429973990407, + "min_y": 5062.391120693623, + "max_x": 4799.429973990407, + "max_y": 5064.093939141941, + "center": [ + 4799.429973990407, + 5063.242529917781 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.429973990407, + 5064.093939141941 + ], + [ + 4799.429973990407, + 5062.391120693623 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFD", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 5063.793973340103, + "max_x": 4797.938407493444, + "max_y": 5064.880960976704, + "center": [ + 4797.283035739054, + 5064.337467158403 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 5063.793973340103 + ], + [ + 4797.938407493444, + 5064.880960976704 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFE", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 5063.392719197739, + "max_x": 4797.938407493444, + "max_y": 5064.479706834339, + "center": [ + 4797.283035739054, + 5063.936213016039 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 5063.392719197739 + ], + [ + 4797.938407493444, + 5064.479706834339 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561EFF", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4799.429973990407, + "min_y": 5063.242529917783, + "max_x": 4803.865005402791, + "max_y": 5063.242529917783, + "center": [ + 4801.647489696599, + 5063.242529917783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.429973990407, + 5063.242529917783 + ], + [ + 4803.865005402791, + 5063.242529917783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F00", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5087.294043892724, + "max_x": 4807.018141495178, + "max_y": 5090.395406948996, + "center": [ + 4807.018141495178, + 5088.84472542086 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5090.395406948996 + ], + [ + 4807.018141495178, + 5087.294043892724 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F01", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5088.713059266323, + "max_x": 4807.018141495178, + "max_y": 5088.713059266323, + "center": [ + 4807.018141495178, + 5088.713059266323 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5088.713059266323 + ], + [ + 4807.018141495178, + 5088.713059266323 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F02", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 5085.875028519126, + "max_x": 4807.869550719337, + "max_y": 5085.875028519126, + "center": [ + 4807.018141495177, + 5085.875028519126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.166732271016, + 5085.875028519126 + ], + [ + 4807.869550719337, + 5085.875028519126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F03", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.178735772848, + "min_y": 5085.875028519126, + "max_x": 4807.857547217508, + "max_y": 5085.875028519126, + "center": [ + 4807.0181414951785, + 5085.875028519126 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.857547217508, + 5085.875028519126 + ], + [ + 4806.178735772848, + 5085.875028519126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F04", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.178735772848, + "min_y": 5085.147105641372, + "max_x": 4807.857547217508, + "max_y": 5085.147105641372, + "center": [ + 4807.0181414951785, + 5085.147105641372 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.857547217508, + 5085.147105641372 + ], + [ + 4806.178735772848, + 5085.147105641372 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F05", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 5085.875028519126, + "max_x": 4807.018141495178, + "max_y": 5087.294043892724, + "center": [ + 4806.5924368830965, + 5086.584536205925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.166732271016, + 5085.875028519126 + ], + [ + 4807.018141495178, + 5087.294043892724 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F06", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 5088.246740803165, + "max_x": 4807.673513249567, + "max_y": 5089.333728439767, + "center": [ + 4807.018141495177, + 5088.790234621466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 5088.246740803165 + ], + [ + 4807.673513249567, + 5089.333728439767 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F07", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5085.875028519126, + "max_x": 4807.869550719337, + "max_y": 5087.294043892724, + "center": [ + 4807.443846107257, + 5086.584536205925 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5087.294043892724 + ], + [ + 4807.869550719337, + 5085.875028519126 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F08", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5087.294043892724, + "max_x": 4808.437156868777, + "max_y": 5088.145453116884, + "center": [ + 4807.7276491819775, + 5087.719748504804 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.437156868777, + 5088.145453116884 + ], + [ + 4807.018141495178, + 5087.294043892724 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F09", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 5086.442634668566, + "max_x": 4808.437156868777, + "max_y": 5087.294043892724, + "center": [ + 4807.7276491819775, + 5086.868339280645 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 5087.294043892724 + ], + [ + 4808.437156868777, + 5086.442634668566 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4808.437156868777, + "min_y": 5086.442634668566, + "max_x": 4808.437156868777, + "max_y": 5088.145453116884, + "center": [ + 4808.437156868777, + 5087.294043892725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.437156868777, + 5088.145453116884 + ], + [ + 4808.437156868777, + 5086.442634668566 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 5086.442634668566, + "max_x": 4809.16507974653, + "max_y": 5088.145453116884, + "center": [ + 4809.16507974653, + 5087.294043892725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.16507974653, + 5088.145453116884 + ], + [ + 4809.16507974653, + 5086.442634668566 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 5087.845487315046, + "max_x": 4807.673513249567, + "max_y": 5088.932474951646, + "center": [ + 4807.018141495177, + 5088.3889811333465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 5087.845487315046 + ], + [ + 4807.673513249567, + 5088.932474951646 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 5087.444233172681, + "max_x": 4807.673513249567, + "max_y": 5088.531220809282, + "center": [ + 4807.018141495177, + 5087.987726990981 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 5087.444233172681 + ], + [ + 4807.673513249567, + 5088.531220809282 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0E", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 5087.294043892725, + "max_x": 4813.600111158914, + "max_y": 5087.294043892725, + "center": [ + 4811.382595452722, + 5087.294043892725 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.16507974653, + 5087.294043892725 + ], + [ + 4813.600111158914, + 5087.294043892725 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F0F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4970.897847506382, + "max_x": 4855.546333345559, + "max_y": 4973.999210562653, + "center": [ + 4855.546333345559, + 4972.448529034518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4973.999210562653 + ], + [ + 4855.546333345559, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F10", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4972.31686287998, + "max_x": 4855.546333345559, + "max_y": 4972.31686287998, + "center": [ + 4855.546333345559, + 4972.31686287998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4972.31686287998 + ], + [ + 4855.546333345559, + 4972.31686287998 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F11", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.694924121399, + "min_y": 4969.478832132784, + "max_x": 4856.397742569718, + "max_y": 4969.478832132784, + "center": [ + 4855.546333345558, + 4969.478832132784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.694924121399, + 4969.478832132784 + ], + [ + 4856.397742569718, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F12", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.706927623229, + "min_y": 4969.478832132784, + "max_x": 4856.385739067888, + "max_y": 4969.478832132784, + "center": [ + 4855.546333345558, + 4969.478832132784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.385739067888, + 4969.478832132784 + ], + [ + 4854.706927623229, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F13", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.706927623229, + "min_y": 4968.750909255028, + "max_x": 4856.385739067888, + "max_y": 4968.750909255028, + "center": [ + 4855.546333345558, + 4968.750909255028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.385739067888, + 4968.750909255028 + ], + [ + 4854.706927623229, + 4968.750909255028 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F14", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.694924121399, + "min_y": 4969.478832132784, + "max_x": 4855.546333345559, + "max_y": 4970.897847506382, + "center": [ + 4855.120628733479, + 4970.188339819583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.694924121399, + 4969.478832132784 + ], + [ + 4855.546333345559, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F15", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.890961591169, + "min_y": 4971.850544416823, + "max_x": 4856.201705099948, + "max_y": 4972.937532053424, + "center": [ + 4855.546333345559, + 4972.394038235123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.890961591169, + 4971.850544416823 + ], + [ + 4856.201705099948, + 4972.937532053424 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F16", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4969.478832132784, + "max_x": 4856.397742569718, + "max_y": 4970.897847506382, + "center": [ + 4855.972037957638, + 4970.188339819583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4970.897847506382 + ], + [ + 4856.397742569718, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F17", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4970.897847506382, + "max_x": 4856.965348719157, + "max_y": 4971.749256730542, + "center": [ + 4856.255841032358, + 4971.3235521184615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.965348719157, + 4971.749256730542 + ], + [ + 4855.546333345559, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F18", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4855.546333345559, + "min_y": 4970.046438282223, + "max_x": 4856.965348719157, + "max_y": 4970.897847506382, + "center": [ + 4856.255841032358, + 4970.472142894303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4855.546333345559, + 4970.897847506382 + ], + [ + 4856.965348719157, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F19", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4856.965348719157, + "min_y": 4970.046438282223, + "max_x": 4856.965348719157, + "max_y": 4971.749256730542, + "center": [ + 4856.965348719157, + 4970.897847506382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4856.965348719157, + 4971.749256730542 + ], + [ + 4856.965348719157, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4857.693271596912, + "min_y": 4970.046438282223, + "max_x": 4857.693271596912, + "max_y": 4971.749256730542, + "center": [ + 4857.693271596912, + 4970.897847506382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4857.693271596912, + 4971.749256730542 + ], + [ + 4857.693271596912, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.890961591169, + "min_y": 4971.449290928704, + "max_x": 4856.201705099948, + "max_y": 4972.536278565304, + "center": [ + 4855.546333345559, + 4971.992784747004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.890961591169, + 4971.449290928704 + ], + [ + 4856.201705099948, + 4972.536278565304 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1C", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4854.890961591169, + "min_y": 4971.048036786338, + "max_x": 4856.201705099948, + "max_y": 4972.135024422939, + "center": [ + 4855.546333345559, + 4971.591530604639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4854.890961591169, + 4971.048036786338 + ], + [ + 4856.201705099948, + 4972.135024422939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4857.693271596912, + "min_y": 4970.897847506383, + "max_x": 4862.128303009295, + "max_y": 4970.897847506383, + "center": [ + 4859.910787303104, + 4970.897847506383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4857.693271596912, + 4970.897847506383 + ], + [ + 4862.128303009295, + 4970.897847506383 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4970.897847506382, + "max_x": 4807.018141495178, + "max_y": 4973.999210562653, + "center": [ + 4807.018141495178, + 4972.448529034518 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4973.999210562653 + ], + [ + 4807.018141495178, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F1F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4972.31686287998, + "max_x": 4807.018141495178, + "max_y": 4972.31686287998, + "center": [ + 4807.018141495178, + 4972.31686287998 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4972.31686287998 + ], + [ + 4807.018141495178, + 4972.31686287998 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F20", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 4969.478832132784, + "max_x": 4807.869550719337, + "max_y": 4969.478832132784, + "center": [ + 4807.018141495177, + 4969.478832132784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.166732271016, + 4969.478832132784 + ], + [ + 4807.869550719337, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F21", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.178735772848, + "min_y": 4969.478832132784, + "max_x": 4807.857547217508, + "max_y": 4969.478832132784, + "center": [ + 4807.0181414951785, + 4969.478832132784 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.857547217508, + 4969.478832132784 + ], + [ + 4806.178735772848, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F22", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.178735772848, + "min_y": 4968.750909255028, + "max_x": 4807.857547217508, + "max_y": 4968.750909255028, + "center": [ + 4807.0181414951785, + 4968.750909255028 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.857547217508, + 4968.750909255028 + ], + [ + 4806.178735772848, + 4968.750909255028 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F23", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.166732271016, + "min_y": 4969.478832132784, + "max_x": 4807.018141495178, + "max_y": 4970.897847506382, + "center": [ + 4806.5924368830965, + 4970.188339819583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.166732271016, + 4969.478832132784 + ], + [ + 4807.018141495178, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F24", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 4971.850544416823, + "max_x": 4807.673513249567, + "max_y": 4972.937532053424, + "center": [ + 4807.018141495177, + 4972.394038235123 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 4971.850544416823 + ], + [ + 4807.673513249567, + 4972.937532053424 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F25", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4969.478832132784, + "max_x": 4807.869550719337, + "max_y": 4970.897847506382, + "center": [ + 4807.443846107257, + 4970.188339819583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4970.897847506382 + ], + [ + 4807.869550719337, + 4969.478832132784 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F26", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4970.897847506382, + "max_x": 4808.437156868777, + "max_y": 4971.749256730542, + "center": [ + 4807.7276491819775, + 4971.3235521184615 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.437156868777, + 4971.749256730542 + ], + [ + 4807.018141495178, + 4970.897847506382 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F27", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4807.018141495178, + "min_y": 4970.046438282223, + "max_x": 4808.437156868777, + "max_y": 4970.897847506382, + "center": [ + 4807.7276491819775, + 4970.472142894303 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4807.018141495178, + 4970.897847506382 + ], + [ + 4808.437156868777, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F28", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4808.437156868777, + "min_y": 4970.046438282223, + "max_x": 4808.437156868777, + "max_y": 4971.749256730542, + "center": [ + 4808.437156868777, + 4970.897847506382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4808.437156868777, + 4971.749256730542 + ], + [ + 4808.437156868777, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F29", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 4970.046438282223, + "max_x": 4809.16507974653, + "max_y": 4971.749256730542, + "center": [ + 4809.16507974653, + 4970.897847506382 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.16507974653, + 4971.749256730542 + ], + [ + 4809.16507974653, + 4970.046438282223 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 4971.449290928704, + "max_x": 4807.673513249567, + "max_y": 4972.536278565304, + "center": [ + 4807.018141495177, + 4971.992784747004 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 4971.449290928704 + ], + [ + 4807.673513249567, + 4972.536278565304 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2B", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4806.362769740786, + "min_y": 4971.048036786338, + "max_x": 4807.673513249567, + "max_y": 4972.135024422939, + "center": [ + 4807.018141495177, + 4971.591530604639 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4806.362769740786, + 4971.048036786338 + ], + [ + 4807.673513249567, + 4972.135024422939 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2C", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4809.16507974653, + "min_y": 4970.897847506383, + "max_x": 4813.600111158914, + "max_y": 4970.897847506383, + "center": [ + 4811.382595452722, + 4970.897847506383 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4809.16507974653, + 4970.897847506383 + ], + [ + 4813.600111158914, + 4970.897847506383 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2D", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4943.060596331396, + "max_x": 4797.283035739055, + "max_y": 4946.161959387668, + "center": [ + 4797.283035739055, + 4944.611277859532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4946.161959387668 + ], + [ + 4797.283035739055, + 4943.060596331396 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2E", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4944.479611704994, + "max_x": 4797.283035739055, + "max_y": 4944.479611704994, + "center": [ + 4797.283035739055, + 4944.479611704994 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4944.479611704994 + ], + [ + 4797.283035739055, + 4944.479611704994 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F2F", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.431626514897, + "min_y": 4941.641580957798, + "max_x": 4798.134444963214, + "max_y": 4941.641580957798, + "center": [ + 4797.283035739056, + 4941.641580957798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.431626514897, + 4941.641580957798 + ], + [ + 4798.134444963214, + 4941.641580957798 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F30", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.443630016725, + "min_y": 4941.641580957798, + "max_x": 4798.122441461386, + "max_y": 4941.641580957798, + "center": [ + 4797.283035739056, + 4941.641580957798 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.122441461386, + 4941.641580957798 + ], + [ + 4796.443630016725, + 4941.641580957798 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F31", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.443630016725, + "min_y": 4940.913658080042, + "max_x": 4798.122441461386, + "max_y": 4940.913658080042, + "center": [ + 4797.283035739056, + 4940.913658080042 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.122441461386, + 4940.913658080042 + ], + [ + 4796.443630016725, + 4940.913658080042 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F32", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.431626514897, + "min_y": 4941.641580957798, + "max_x": 4797.283035739055, + "max_y": 4943.060596331396, + "center": [ + 4796.857331126976, + 4942.3510886445965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.431626514897, + 4941.641580957798 + ], + [ + 4797.283035739055, + 4943.060596331396 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F33", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 4944.013293241837, + "max_x": 4797.938407493446, + "max_y": 4945.100280878438, + "center": [ + 4797.283035739055, + 4944.556787060137 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 4944.013293241837 + ], + [ + 4797.938407493446, + 4945.100280878438 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F34", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4941.641580957798, + "max_x": 4798.134444963214, + "max_y": 4943.060596331396, + "center": [ + 4797.708740351134, + 4942.3510886445965 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4943.060596331396 + ], + [ + 4798.134444963214, + 4941.641580957798 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F35", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4943.060596331396, + "max_x": 4798.702051112654, + "max_y": 4943.912005555556, + "center": [ + 4797.992543425855, + 4943.486300943476 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.702051112654, + 4943.912005555556 + ], + [ + 4797.283035739055, + 4943.060596331396 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F36", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4797.283035739055, + "min_y": 4942.209187107238, + "max_x": 4798.702051112654, + "max_y": 4943.060596331396, + "center": [ + 4797.992543425855, + 4942.634891719317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4797.283035739055, + 4943.060596331396 + ], + [ + 4798.702051112654, + 4942.209187107238 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F37", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4798.702051112654, + "min_y": 4942.209187107238, + "max_x": 4798.702051112654, + "max_y": 4943.912005555556, + "center": [ + 4798.702051112654, + 4943.060596331397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4798.702051112654, + 4943.912005555556 + ], + [ + 4798.702051112654, + 4942.209187107238 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F38", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4799.42997399041, + "min_y": 4942.209187107238, + "max_x": 4799.42997399041, + "max_y": 4943.912005555556, + "center": [ + 4799.42997399041, + 4943.060596331397 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.42997399041, + 4943.912005555556 + ], + [ + 4799.42997399041, + 4942.209187107238 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F39", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 4943.612039753717, + "max_x": 4797.938407493446, + "max_y": 4944.699027390317, + "center": [ + 4797.283035739055, + 4944.155533572017 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 4943.612039753717 + ], + [ + 4797.938407493446, + 4944.699027390317 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F3A", + "entity_type": "LINE", + "layer": "PSV", + "bbox": { + "min_x": 4796.627663984664, + "min_y": 4943.210785611352, + "max_x": 4797.938407493446, + "max_y": 4944.297773247953, + "center": [ + 4797.283035739055, + 4943.754279429652 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4796.627663984664, + 4943.210785611352 + ], + [ + 4797.938407493446, + 4944.297773247953 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F3B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4799.42997399041, + "min_y": 4943.060596331396, + "max_x": 4803.865005402794, + "max_y": 4943.060596331396, + "center": [ + 4801.647489696602, + 4943.060596331396 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4799.42997399041, + 4943.060596331396 + ], + [ + 4803.865005402794, + 4943.060596331396 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F3C", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4859.015774798785, + "min_y": 4979.269324514305, + "max_x": 4873.947526137364, + "max_y": 4980.57585275643, + "center": [ + 4866.481650468075, + 4979.922588635367 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-900B\\PSP : 0.95 MPa\\P25Ax25A", + "clean_value": ".9; PSV-900B SP : 0.95 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F40", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4808.036588659454, + "min_y": 4980.781569201637, + "max_x": 4822.968339998032, + "max_y": 4982.088097443762, + "center": [ + 4815.502464328743, + 4981.434833322699 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-900A\\PSP : 0.95 MPa\\P25Ax25A", + "clean_value": ".9; PSV-900A SP : 0.95 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F44", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4809.751109083633, + "min_y": 5094.688561538344, + "max_x": 4824.682860422212, + "max_y": 5095.99508978047, + "center": [ + 4817.216984752922, + 5095.341825659407 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-2900\\PSP : 0.95 MPa\\P25Ax25A", + "clean_value": ".9; PSV-2900 SP : 0.95 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F48", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4857.898465319989, + "max_x": 4767.240835514319, + "max_y": 4859.018346670382, + "center": [ + 4751.375849717078, + 4858.458405995185 + ] + }, + "raw_value": "\\W0.9;\\A1;SIZE : Ø900 x 1,350H (0.95m3)\\PDP : 1 MPa\\POP : 0.8 MPa\\PDT : 100 °C\\POT : 40 °C\\PMATERIAL : SS275\\PINSULATION : NONE", + "clean_value": ".9; SIZE : Ø900 x 1,350H (0.95m3) DP : 1 MPa OP : 0.8 MPa DT : 100 °C OT : 40 °C MATERIAL : SS275 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561F4C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4862.377990721562, + "max_x": 4767.240835514319, + "max_y": 4863.4978720719555, + "center": [ + 4751.375849717078, + 4862.937931396758 + ] + }, + "raw_value": "\\L\\W0.9;D-2901\\PAir Receiver Tank", + "clean_value": ".9;D-2901 Air Receiver Tank", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F50", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4835.50083831212, + "max_x": 4767.240835514319, + "max_y": 4836.620719662514, + "center": [ + 4751.375849717078, + 4836.0607789873175 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 2,200 L/min\\PMATERIAL : SS275\\PPRESSURE : 0.85 MPa\\PRPM : 1,800", + "clean_value": ".9; CAPA : 2,200 L/min MATERIAL : SS275 PRESSURE : 0.85 MPa RPM : 1,800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561F54", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4735.510863919839, + "min_y": 4839.980363713695, + "max_x": 4767.240835514319, + "max_y": 4841.100245064088, + "center": [ + 4751.375849717078, + 4840.540304388891 + ] + }, + "raw_value": "\\L\\W0.9;K-2901\\PAir Compressor", + "clean_value": ".9;K-2901 Air Compressor", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F58", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4767.240835514318, + "min_y": 4857.898465319989, + "max_x": 4798.970807108798, + "max_y": 4859.018346670382, + "center": [ + 4783.1058213115575, + 4858.458405995185 + ] + }, + "raw_value": "\\W0.9;\\A1;SIZE : Ø900 x 1,350H (0.95m3)\\PDP : 1 MPa\\POP : 0.5 MPa\\PDT : 100 °C\\POT : 40 °C\\PMATERIAL : SS275\\PINSULATION : NONE", + "clean_value": ".9; SIZE : Ø900 x 1,350H (0.95m3) DP : 1 MPa OP : 0.5 MPa DT : 100 °C OT : 40 °C MATERIAL : SS275 INSULATION : NONE", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561F5C", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4767.240835514318, + "min_y": 4862.377990721562, + "max_x": 4798.970807108798, + "max_y": 4863.4978720719555, + "center": [ + 4783.1058213115575, + 4862.937931396758 + ] + }, + "raw_value": "\\L\\W0.9;D-901\\PAir Receiver", + "clean_value": ".9;D-901 Air Receiver", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F60", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4767.240835514318, + "min_y": 4835.50083831212, + "max_x": 4798.970807108798, + "max_y": 4836.620719662514, + "center": [ + 4783.1058213115575, + 4836.0607789873175 + ] + }, + "raw_value": "\\W0.9;\\A1;CAPA : 2,200 L/min\\PMATERIAL : SS275\\PPRESSURE : 0.85 MPa\\PRPM : 1,800", + "clean_value": ".9; CAPA : 2,200 L/min MATERIAL : SS275 PRESSURE : 0.85 MPa RPM : 1,800", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "561F64", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4767.240835514318, + "min_y": 4839.980363713695, + "max_x": 4798.970807108798, + "max_y": 4841.100245064088, + "center": [ + 4783.1058213115575, + 4840.540304388891 + ] + }, + "raw_value": "\\L\\W0.9;K-901A/B\\PAir Compressor", + "clean_value": ".9;K-901A/B Air Compressor", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F68", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4877.276042204007, + "min_y": 5005.826527942517, + "max_x": 4884.741917873297, + "max_y": 5013.292403611807, + "center": [ + 4881.008980038652, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4881.008980038652, + 5009.559465777162 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F69", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4879.934842124381, + "min_y": 5010.21418681, + "max_x": 4881.949150311707, + "max_y": 5011.892776966104, + "center": [ + 4880.941996218044, + 5011.0534818880515 + ] + }, + "raw_value": "PT", + "clean_value": "PT", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6A", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4878.96540585061, + "min_y": 5007.227836542284, + "max_x": 4882.994022225262, + "max_y": 5008.906426698389, + "center": [ + 4880.979714037936, + 5008.067131620337 + ] + }, + "raw_value": "2900", + "clean_value": "2900", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6B", + "entity_type": "CIRCLE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4866.550404398163, + "min_y": 5005.826527942517, + "max_x": 4874.0162800674525, + "max_y": 5013.292403611807, + "center": [ + 4870.283342232808, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4870.283342232808, + 5009.559465777162 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6C", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4868.910236983619, + "min_y": 5010.21418681, + "max_x": 4871.931699264607, + "max_y": 5011.892776966104, + "center": [ + 4870.420968124114, + 5011.0534818880515 + ] + }, + "raw_value": "PIA", + "clean_value": "PIA", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6D", + "entity_type": "TEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4868.239768044765, + "min_y": 5007.227836542284, + "max_x": 4872.268384419416, + "max_y": 5008.906426698389, + "center": [ + 4870.2540762320905, + 5008.067131620337 + ] + }, + "raw_value": "2900", + "clean_value": "2900", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6E", + "entity_type": "LWPOLYLINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4866.550404398163, + "min_y": 5005.826527942518, + "max_x": 4874.016280067452, + "max_y": 5013.292403611807, + "center": [ + 4870.283342232808, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4874.016280067452, + 5013.292403611807 + ], + [ + 4866.550404398163, + 5013.292403611807 + ], + [ + 4866.550404398163, + 5005.826527942518 + ], + [ + 4874.016280067452, + 5005.826527942518 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F6F", + "entity_type": "LINE", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4866.550404398163, + "min_y": 5009.559465777162, + "max_x": 4874.016280067452, + "max_y": 5009.559465777162, + "center": [ + 4870.283342232808, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4874.016280067452, + 5009.559465777162 + ], + [ + 4866.550404398163, + 5009.559465777162 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F70", + "entity_type": "LINE", + "layer": "ELECTRIC SIGNAL", + "bbox": { + "min_x": 4874.016280067452, + "min_y": 5009.559465777162, + "max_x": 4877.276042204009, + "max_y": 5009.559465777162, + "center": [ + 4875.64616113573, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4877.276042204009, + 5009.559465777162 + ], + [ + 4874.016280067452, + 5009.559465777162 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F71", + "entity_type": "MTEXT", + "layer": "INSTRUMENT", + "bbox": { + "min_x": 4860.879597210593, + "min_y": 5005.826527942518, + "max_x": 4868.299567180183, + "max_y": 5007.021068049604, + "center": [ + 4864.589582195387, + 5006.423797996061 + ] + }, + "raw_value": "\\Fmonotxt.shx;\\W0.6; HH 9\\P H 8\\P L 6\\P LL 5", + "clean_value": "\\Fmonotxt.shx; .6; HH 9 H 8 L 6 LL 5", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F75", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4884.741917873299, + "min_y": 5009.559465777162, + "max_x": 4890.095530067732, + "max_y": 5009.559465777162, + "center": [ + 4887.418723970515, + 5009.559465777162 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4884.741917873299, + 5009.559465777162 + ], + [ + 4890.095530067732, + 5009.559465777162 + ] + ], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "561F76", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4814.069363156032, + "min_y": 5087.257418960136, + "max_x": 4821.860937651394, + "max_y": 5088.437960550343, + "center": [ + 4817.965150403713, + 5087.847689755239 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F77", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4815.725251034157, + "min_y": 5085.424311568245, + "max_x": 4819.9752007588995, + "max_y": 5086.604853158451, + "center": [ + 4817.850225896528, + 5086.014582363348 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F78", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4804.260635429966, + "min_y": 5063.716472417575, + "max_x": 4812.0522099253285, + "max_y": 5064.897014007781, + "center": [ + 4808.156422677647, + 5064.306743212677 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F79", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4805.916523308091, + "min_y": 5061.883365025685, + "max_x": 4810.166473032834, + "max_y": 5063.063906615891, + "center": [ + 4808.041498170463, + 5062.473635820788 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F7A", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4798.819261143524, + "min_y": 5071.474187926683, + "max_x": 4813.751012482103, + "max_y": 5072.780716168809, + "center": [ + 4806.285136812814, + 5072.1274520477455 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-2901\\PSP : 0.95 MPa\\P25Ax25A", + "clean_value": ".9; PSV-2901 SP : 0.95 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F7E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4813.232119565171, + "min_y": 4971.186958847239, + "max_x": 4821.023694060534, + "max_y": 4972.367500437445, + "center": [ + 4817.127906812852, + 4971.777229642343 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F7F", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4814.888007443297, + "min_y": 4969.353851455349, + "max_x": 4819.13795716804, + "max_y": 4970.534393045556, + "center": [ + 4817.012982305669, + 4969.944122250452 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F80", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4862.457057808253, + "min_y": 4971.238341872545, + "max_x": 4870.2486323036155, + "max_y": 4972.418883462751, + "center": [ + 4866.352845055934, + 4971.8286126676485 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F81", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4864.112945686376, + "min_y": 4969.405234480655, + "max_x": 4868.362895411119, + "max_y": 4970.585776070861, + "center": [ + 4866.237920548748, + 4969.995505275758 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F82", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4803.397267619561, + "min_y": 4943.57887090673, + "max_x": 4811.188842114923, + "max_y": 4944.759412496936, + "center": [ + 4807.293054867242, + 4944.169141701834 + ] + }, + "raw_value": "SAFETY AREA", + "clean_value": "SAFETY AREA", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F83", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4805.053155497686, + "min_y": 4941.745763514839, + "max_x": 4809.303105222429, + "max_y": 4942.926305105046, + "center": [ + 4807.178130360057, + 4942.336034309943 + ] + }, + "raw_value": "TO ATM", + "clean_value": "TO ATM", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561F84", + "entity_type": "MTEXT", + "layer": "PSV", + "bbox": { + "min_x": 4798.318119369174, + "min_y": 4951.410362653581, + "max_x": 4813.249870707753, + "max_y": 4952.7168908957065, + "center": [ + 4805.783995038464, + 4952.063626774643 + ] + }, + "raw_value": "\\W0.9;\\A1;PSV-901\\PSP : 0.95 MPa\\P25Ax25A", + "clean_value": ".9; PSV-901 SP : 0.95 MPa Ax25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FF5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5056.77612007562, + "max_x": 5042.326592032672, + "max_y": 5058.45493152028, + "center": [ + 5038.297444565489, + 5057.61552579795 + ] + }, + "raw_value": "FCV-9116", + "clean_value": "FCV-9116", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FF6", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5055.749056880628, + "max_x": 5031.505066077514, + "max_y": 5059.481994715273, + "center": [ + 5031.505066077514, + 5057.61552579795 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5059.481994715273 + ], + [ + 5031.505066077514, + 5055.749056880628 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FF7", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5057.61552579795, + "max_x": 5047.929992549948, + "max_y": 5059.481994715273, + "center": [ + 5046.996758091287, + 5058.548760256612 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5059.481994715273 + ], + [ + 5047.929992549948, + 5057.61552579795 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FF8", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5055.749056880628, + "max_x": 5047.929992549948, + "max_y": 5057.61552579795, + "center": [ + 5046.996758091287, + 5056.682291339289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5055.749056880628 + ], + [ + 5047.929992549948, + 5057.61552579795 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FF9", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5059.481994715273, + "max_x": 5046.063523632626, + "max_y": 5059.481994715273, + "center": [ + 5038.78429485507, + 5059.481994715273 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5059.481994715273 + ], + [ + 5031.505066077514, + 5059.481994715273 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFA", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5055.749056880628, + "max_x": 5046.063523632626, + "max_y": 5055.749056880628, + "center": [ + 5038.78429485507, + 5055.749056880628 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5055.749056880628 + ], + [ + 5031.505066077514, + 5055.749056880628 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFB", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5057.53900916917, + "max_x": 5031.505066077514, + "max_y": 5057.53900916917, + "center": [ + 5028.777198312273, + 5057.53900916917 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5057.53900916917 + ], + [ + 5031.505066077514, + 5057.53900916917 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFC", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5057.872051242978, + "max_x": 5029.247562873671, + "max_y": 5058.9919325933715, + "center": [ + 5028.239669658316, + 5058.431991918174 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFD", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5061.255645477194, + "max_x": 5042.326592032672, + "max_y": 5062.934456921854, + "center": [ + 5038.297444565489, + 5062.095051199523 + ] + }, + "raw_value": "FCV-9118", + "clean_value": "FCV-9118", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFE", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5060.228582282201, + "max_x": 5031.505066077514, + "max_y": 5063.961520116846, + "center": [ + 5031.505066077514, + 5062.095051199523 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5063.961520116846 + ], + [ + 5031.505066077514, + 5060.228582282201 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "561FFF", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5062.095051199523, + "max_x": 5047.929992549948, + "max_y": 5063.961520116846, + "center": [ + 5046.996758091287, + 5063.028285658185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5063.961520116846 + ], + [ + 5047.929992549948, + 5062.095051199523 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562000", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5060.228582282201, + "max_x": 5047.929992549948, + "max_y": 5062.095051199523, + "center": [ + 5046.996758091287, + 5061.161816740862 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5060.228582282201 + ], + [ + 5047.929992549948, + 5062.095051199523 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562001", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5063.961520116846, + "max_x": 5046.063523632626, + "max_y": 5063.961520116846, + "center": [ + 5038.78429485507, + 5063.961520116846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5063.961520116846 + ], + [ + 5031.505066077514, + 5063.961520116846 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562002", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5060.228582282201, + "max_x": 5046.063523632626, + "max_y": 5060.228582282201, + "center": [ + 5038.78429485507, + 5060.228582282201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5060.228582282201 + ], + [ + 5031.505066077514, + 5060.228582282201 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562003", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5062.018534570743, + "max_x": 5031.505066077514, + "max_y": 5062.018534570743, + "center": [ + 5028.777198312273, + 5062.018534570743 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5062.018534570743 + ], + [ + 5031.505066077514, + 5062.018534570743 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562004", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5062.351576644552, + "max_x": 5029.247562873671, + "max_y": 5063.471457994945, + "center": [ + 5028.239669658316, + 5062.911517319748 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562005", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5065.735170878769, + "max_x": 5042.326592032672, + "max_y": 5067.413982323429, + "center": [ + 5038.297444565489, + 5066.574576601099 + ] + }, + "raw_value": "FCV-9114", + "clean_value": "FCV-9114", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562006", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5064.708107683775, + "max_x": 5031.505066077514, + "max_y": 5068.44104551842, + "center": [ + 5031.505066077514, + 5066.574576601097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5068.44104551842 + ], + [ + 5031.505066077514, + 5064.708107683775 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562007", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5066.574576601098, + "max_x": 5047.929992549948, + "max_y": 5068.44104551842, + "center": [ + 5046.996758091287, + 5067.507811059759 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5068.44104551842 + ], + [ + 5047.929992549948, + 5066.574576601098 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562008", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5064.708107683775, + "max_x": 5047.929992549948, + "max_y": 5066.574576601098, + "center": [ + 5046.996758091287, + 5065.641342142437 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5064.708107683775 + ], + [ + 5047.929992549948, + 5066.574576601098 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562009", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5068.44104551842, + "max_x": 5046.063523632626, + "max_y": 5068.44104551842, + "center": [ + 5038.78429485507, + 5068.44104551842 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5068.44104551842 + ], + [ + 5031.505066077514, + 5068.44104551842 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5064.708107683775, + "max_x": 5046.063523632626, + "max_y": 5064.708107683775, + "center": [ + 5038.78429485507, + 5064.708107683775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5064.708107683775 + ], + [ + 5031.505066077514, + 5064.708107683775 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5066.498059972317, + "max_x": 5031.505066077514, + "max_y": 5066.498059972317, + "center": [ + 5028.777198312273, + 5066.498059972317 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5066.498059972317 + ], + [ + 5031.505066077514, + 5066.498059972317 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5066.831102046125, + "max_x": 5029.247562873671, + "max_y": 5067.9509833965185, + "center": [ + 5028.239669658316, + 5067.391042721321 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.228341385924, + "min_y": 5070.214696280341, + "max_x": 5042.286636320289, + "max_y": 5071.893507725001, + "center": [ + 5038.257488853107, + 5071.05410200267 + ] + }, + "raw_value": "PCV-9111", + "clean_value": "PCV-9111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5069.187633085348, + "max_x": 5031.505066077514, + "max_y": 5072.920570919993, + "center": [ + 5031.505066077514, + 5071.05410200267 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5072.920570919993 + ], + [ + 5031.505066077514, + 5069.187633085348 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56200F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5071.054102002671, + "max_x": 5047.929992549948, + "max_y": 5072.920570919993, + "center": [ + 5046.996758091287, + 5071.987336461332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5072.920570919993 + ], + [ + 5047.929992549948, + 5071.054102002671 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562010", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5069.187633085348, + "max_x": 5047.929992549948, + "max_y": 5071.054102002671, + "center": [ + 5046.996758091287, + 5070.12086754401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5069.187633085348 + ], + [ + 5047.929992549948, + 5071.054102002671 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562011", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5072.920570919993, + "max_x": 5046.063523632626, + "max_y": 5072.920570919993, + "center": [ + 5038.78429485507, + 5072.920570919993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5072.920570919993 + ], + [ + 5031.505066077514, + 5072.920570919993 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562012", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5069.187633085348, + "max_x": 5046.063523632626, + "max_y": 5069.187633085348, + "center": [ + 5038.78429485507, + 5069.187633085348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5069.187633085348 + ], + [ + 5031.505066077514, + 5069.187633085348 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562013", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5070.977585373891, + "max_x": 5031.505066077514, + "max_y": 5070.977585373891, + "center": [ + 5028.777198312273, + 5070.977585373891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5070.977585373891 + ], + [ + 5031.505066077514, + 5070.977585373891 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562014", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5071.310627447698, + "max_x": 5029.247562873671, + "max_y": 5072.430508798091, + "center": [ + 5028.239669658316, + 5071.870568122895 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562015", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5074.694221681915, + "max_x": 5042.326592032672, + "max_y": 5076.373033126575, + "center": [ + 5038.297444565489, + 5075.533627404246 + ] + }, + "raw_value": "FCV-9113", + "clean_value": "FCV-9113", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562016", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5073.667158486922, + "max_x": 5031.505066077514, + "max_y": 5077.400096321567, + "center": [ + 5031.505066077514, + 5075.533627404244 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5077.400096321567 + ], + [ + 5031.505066077514, + 5073.667158486922 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562017", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5075.533627404245, + "max_x": 5047.929992549948, + "max_y": 5077.400096321567, + "center": [ + 5046.996758091287, + 5076.466861862906 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5077.400096321567 + ], + [ + 5047.929992549948, + 5075.533627404245 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562018", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5073.667158486922, + "max_x": 5047.929992549948, + "max_y": 5075.533627404245, + "center": [ + 5046.996758091287, + 5074.600392945584 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5073.667158486922 + ], + [ + 5047.929992549948, + 5075.533627404245 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562019", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5077.400096321567, + "max_x": 5046.063523632626, + "max_y": 5077.400096321567, + "center": [ + 5038.78429485507, + 5077.400096321567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5077.400096321567 + ], + [ + 5031.505066077514, + 5077.400096321567 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5073.667158486922, + "max_x": 5046.063523632626, + "max_y": 5073.667158486922, + "center": [ + 5038.78429485507, + 5073.667158486922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5073.667158486922 + ], + [ + 5031.505066077514, + 5073.667158486922 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5075.457110775465, + "max_x": 5031.505066077514, + "max_y": 5075.457110775465, + "center": [ + 5028.777198312273, + 5075.457110775465 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5075.457110775465 + ], + [ + 5031.505066077514, + 5075.457110775465 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5075.790152849272, + "max_x": 5029.247562873671, + "max_y": 5076.9100341996655, + "center": [ + 5028.239669658316, + 5076.350093524468 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201D", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.281853500722, + "min_y": 5079.173747083489, + "max_x": 5042.340148435087, + "max_y": 5080.852558528149, + "center": [ + 5038.311000967904, + 5080.013152805819 + ] + }, + "raw_value": "TCV-9111", + "clean_value": "TCV-9111", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5078.146683888497, + "max_x": 5031.505066077514, + "max_y": 5081.87962172314, + "center": [ + 5031.505066077514, + 5080.013152805819 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5081.87962172314 + ], + [ + 5031.505066077514, + 5078.146683888497 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56201F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5080.013152805818, + "max_x": 5047.929992549948, + "max_y": 5081.87962172314, + "center": [ + 5046.996758091287, + 5080.946387264479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5081.87962172314 + ], + [ + 5047.929992549948, + 5080.013152805818 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562020", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5078.146683888497, + "max_x": 5047.929992549948, + "max_y": 5080.013152805818, + "center": [ + 5046.996758091287, + 5079.079918347157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5078.146683888497 + ], + [ + 5047.929992549948, + 5080.013152805818 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562021", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5081.87962172314, + "max_x": 5046.063523632626, + "max_y": 5081.87962172314, + "center": [ + 5038.78429485507, + 5081.87962172314 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5081.87962172314 + ], + [ + 5031.505066077514, + 5081.87962172314 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562022", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5078.146683888497, + "max_x": 5046.063523632626, + "max_y": 5078.146683888497, + "center": [ + 5038.78429485507, + 5078.146683888497 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5078.146683888497 + ], + [ + 5031.505066077514, + 5078.146683888497 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562023", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5079.936636177038, + "max_x": 5031.505066077514, + "max_y": 5079.936636177038, + "center": [ + 5028.777198312273, + 5079.936636177038 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5079.936636177038 + ], + [ + 5031.505066077514, + 5079.936636177038 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562024", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5080.269678250846, + "max_x": 5029.247562873671, + "max_y": 5081.389559601239, + "center": [ + 5028.239669658316, + 5080.829618926042 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562025", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.268297098307, + "min_y": 5083.653272485062, + "max_x": 5042.326592032672, + "max_y": 5085.332083929722, + "center": [ + 5038.297444565489, + 5084.492678207393 + ] + }, + "raw_value": "FCV-9101", + "clean_value": "FCV-9101", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562026", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5082.62620929007, + "max_x": 5031.505066077514, + "max_y": 5086.359147124714, + "center": [ + 5031.505066077514, + 5084.492678207392 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.505066077514, + 5086.359147124714 + ], + [ + 5031.505066077514, + 5082.62620929007 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562027", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5084.492678207392, + "max_x": 5047.929992549948, + "max_y": 5086.359147124714, + "center": [ + 5046.996758091287, + 5085.425912666053 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5086.359147124714 + ], + [ + 5047.929992549948, + 5084.492678207392 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562028", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063523632626, + "min_y": 5082.62620929007, + "max_x": 5047.929992549948, + "max_y": 5084.492678207392, + "center": [ + 5046.996758091287, + 5083.559443748731 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5082.62620929007 + ], + [ + 5047.929992549948, + 5084.492678207392 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562029", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5086.359147124714, + "max_x": 5046.063523632626, + "max_y": 5086.359147124714, + "center": [ + 5038.78429485507, + 5086.359147124714 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5086.359147124714 + ], + [ + 5031.505066077514, + 5086.359147124714 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56202A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.505066077514, + "min_y": 5082.62620929007, + "max_x": 5046.063523632626, + "max_y": 5082.62620929007, + "center": [ + 5038.78429485507, + 5082.62620929007 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063523632626, + 5082.62620929007 + ], + [ + 5031.505066077514, + 5082.62620929007 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56202B", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.049330547031, + "min_y": 5084.416161578611, + "max_x": 5031.505066077514, + "max_y": 5084.416161578611, + "center": [ + 5028.777198312273, + 5084.416161578611 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5084.416161578611 + ], + [ + 5031.505066077514, + 5084.416161578611 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56202C", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.231776442963, + "min_y": 5084.749203652419, + "max_x": 5029.247562873671, + "max_y": 5085.869085002812, + "center": [ + 5028.239669658316, + 5085.309144327615 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56202E", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5023.243326887512, + "min_y": 5090.626043056467, + "max_x": 5032.202377690659, + "max_y": 5092.492511973789, + "center": [ + 5027.7228522890855, + 5091.559277515128 + ] + }, + "raw_value": "#9 PLANT", + "clean_value": "#9 PLANT", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56202F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5025.558501950786, + "min_y": 4994.648455256296, + "max_x": 5027.574288381495, + "max_y": 4995.768336606689, + "center": [ + 5026.566395166141, + 4995.208395931493 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562030", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5026.039574964114, + "min_y": 4996.858039250832, + "max_x": 5026.039574964114, + "max_y": 4998.818709824717, + "center": [ + 5026.039574964114, + 4997.838374537774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039574964114, + 4998.818709824717 + ], + [ + 5026.039574964114, + 4996.858039250832 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562061", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.030985002583, + "min_y": 4992.491156893399, + "max_x": 5026.049330547031, + "max_y": 5084.416161578611, + "center": [ + 5026.040157774807, + 5038.4536592360055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.049330547031, + 5084.416161578611 + ], + [ + 5026.030985002583, + 4992.491156893399 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56208F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5022.581274783653, + "min_y": 4999.309137761663, + "max_x": 5054.402928456289, + "max_y": 5088.187613353273, + "center": [ + 5038.492101619971, + 5043.7483755574685 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5022.581274783653, + 5088.187613353273 + ], + [ + 5054.402928456289, + 5088.187613353273 + ], + [ + 5054.402928456289, + 4999.309137761663 + ], + [ + 5022.581274783653, + 4999.309137761663 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "5620FD", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5256.606517110442, + "max_x": 1957.626740763788, + "max_y": 5257.615805898727, + "center": [ + 1957.626740763788, + 5257.111161504585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5256.606517110442 + ], + [ + 1957.626740763788, + 5257.615805898727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5620FE", + "entity_type": "CIRCLE", + "layer": "0", + "bbox": { + "min_x": 1956.1564862852372, + "min_y": 5256.785709138242, + "max_x": 1956.8025404202247, + "max_y": 5257.43176327323, + "center": [ + 1956.479513352731, + 5257.108736205736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.479513352731, + 5257.108736205736 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "5620FF", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.75877537237, + "min_y": 5256.606517110442, + "max_x": 1957.326405680374, + "max_y": 5256.94638100649, + "center": [ + 1957.042590526372, + 5256.776449058466 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.75877537237, + 5256.94638100649 + ], + [ + 1957.326405680374, + 5256.606517110442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562100", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1957.326405680374, + "min_y": 5256.606517110442, + "max_x": 1957.326405680374, + "max_y": 5257.615805898727, + "center": [ + 1957.326405680374, + 5257.111161504585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5256.606517110442 + ], + [ + 1957.326405680374, + 5257.615805898727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562101", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1956.756660521092, + "min_y": 5257.274675753172, + "max_x": 1957.326405680374, + "max_y": 5257.615805898727, + "center": [ + 1957.041533100733, + 5257.445240825949 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.326405680374, + 5257.615805898727 + ], + [ + 1956.756660521092, + 5257.274675753172 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562102", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5256.606517110442, + "max_x": 1956.206416844492, + "max_y": 5256.945221957149, + "center": [ + 1955.9235695949114, + 5256.775869533796 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1956.206416844492, + 5256.945221957149 + ], + [ + 1955.640722345331, + 5256.606517110442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562103", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5256.606517110442, + "max_x": 1955.640722345331, + "max_y": 5257.615805898727, + "center": [ + 1955.640722345331, + 5257.111161504585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5256.606517110442 + ], + [ + 1955.640722345331, + 5257.615805898727 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562104", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.640722345331, + "min_y": 5257.277101052017, + "max_x": 1956.206416844492, + "max_y": 5257.615805898727, + "center": [ + 1955.9235695949114, + 5257.4464534753715 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.640722345331, + 5257.615805898727 + ], + [ + 1956.206416844492, + 5257.277101052017 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562105", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 1955.403073995256, + "min_y": 5256.606517110442, + "max_x": 1955.403073995256, + "max_y": 5257.615805898727, + "center": [ + 1955.403073995256, + 5257.111161504585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1955.403073995256, + 5257.615805898727 + ], + [ + 1955.403073995256, + 5256.606517110442 + ] + ], + "properties": { + "color": 0, + "lineweight": 0 + } + }, + { + "entity_id": "562106", + "entity_type": "LINE", + "layer": "PROCESS LINE", + "bbox": { + "min_x": 1957.626740763788, + "min_y": 5257.109159459075, + "max_x": 1966.42686520761, + "max_y": 5257.109159459075, + "center": [ + 1962.0268029856989, + 5257.109159459075 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1957.626740763788, + 5257.109159459075 + ], + [ + 1966.42686520761, + 5257.109159459075 + ] + ], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562134", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1954.898837804964, + "min_y": 5255.872918533999, + "max_x": 1958.128589731732, + "max_y": 5258.618207671752, + "center": [ + 1956.513713768348, + 5257.245563102875 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1954.898837804964, + 5258.618207671752 + ], + [ + 1955.898837804964, + 5258.618207671752 + ], + [ + 1956.898837804964, + 5258.618207671752 + ], + [ + 1957.898837804964, + 5258.618207671752 + ], + [ + 1958.128589731732, + 5257.847959598519 + ], + [ + 1958.128589731732, + 5256.84795959852 + ], + [ + 1958.103630796253, + 5255.872918533999 + ], + [ + 1957.103630796252, + 5255.872918533999 + ], + [ + 1956.103630796253, + 5255.872918533999 + ], + [ + 1955.103630796253, + 5255.872918533999 + ], + [ + 1954.898837804964, + 5256.668125542711 + ], + [ + 1954.898837804964, + 5257.668125542711 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "56221F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5001.729818542629, + "max_x": 5042.31683893885, + "max_y": 5003.408629987289, + "center": [ + 5038.287691471667, + 5002.569224264958 + ] + }, + "raw_value": "FCV-9216", + "clean_value": "FCV-9216", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562220", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5000.702755347636, + "max_x": 5031.495312983691, + "max_y": 5004.435693182281, + "center": [ + 5031.495312983691, + 5002.569224264958 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5004.435693182281 + ], + [ + 5031.495312983691, + 5000.702755347636 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562221", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5002.569224264958, + "max_x": 5047.920239456126, + "max_y": 5004.435693182281, + "center": [ + 5046.987004997465, + 5003.50245872362 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5004.435693182281 + ], + [ + 5047.920239456126, + 5002.569224264958 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562222", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5000.702755347636, + "max_x": 5047.920239456126, + "max_y": 5002.569224264958, + "center": [ + 5046.987004997465, + 5001.635989806297 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5000.702755347636 + ], + [ + 5047.920239456126, + 5002.569224264958 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562223", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5004.435693182281, + "max_x": 5046.053770538804, + "max_y": 5004.435693182281, + "center": [ + 5038.774541761248, + 5004.435693182281 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5004.435693182281 + ], + [ + 5031.495312983691, + 5004.435693182281 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562224", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5000.702755347636, + "max_x": 5046.053770538804, + "max_y": 5000.702755347636, + "center": [ + 5038.774541761248, + 5000.702755347636 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5000.702755347636 + ], + [ + 5031.495312983691, + 5000.702755347636 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562225", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5002.492707636179, + "max_x": 5031.495312983691, + "max_y": 5002.492707636179, + "center": [ + 5028.76744521845, + 5002.492707636179 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5002.492707636179 + ], + [ + 5031.495312983691, + 5002.492707636179 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562226", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5002.825749709987, + "max_x": 5029.23780977985, + "max_y": 5003.94563106038, + "center": [ + 5028.229916564496, + 5003.385690385183 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562227", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5006.209343944203, + "max_x": 5042.31683893885, + "max_y": 5007.888155388863, + "center": [ + 5038.287691471667, + 5007.048749666534 + ] + }, + "raw_value": "FCV-9218", + "clean_value": "FCV-9218", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562228", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5005.18228074921, + "max_x": 5031.495312983691, + "max_y": 5008.915218583855, + "center": [ + 5031.495312983691, + 5007.048749666532 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5008.915218583855 + ], + [ + 5031.495312983691, + 5005.18228074921 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562229", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5007.048749666532, + "max_x": 5047.920239456126, + "max_y": 5008.915218583855, + "center": [ + 5046.987004997465, + 5007.981984125194 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5008.915218583855 + ], + [ + 5047.920239456126, + 5007.048749666532 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5005.18228074921, + "max_x": 5047.920239456126, + "max_y": 5007.048749666532, + "center": [ + 5046.987004997465, + 5006.115515207871 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5005.18228074921 + ], + [ + 5047.920239456126, + 5007.048749666532 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5008.915218583855, + "max_x": 5046.053770538804, + "max_y": 5008.915218583855, + "center": [ + 5038.774541761248, + 5008.915218583855 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5008.915218583855 + ], + [ + 5031.495312983691, + 5008.915218583855 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5005.18228074921, + "max_x": 5046.053770538804, + "max_y": 5005.18228074921, + "center": [ + 5038.774541761248, + 5005.18228074921 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5005.18228074921 + ], + [ + 5031.495312983691, + 5005.18228074921 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5006.972233037751, + "max_x": 5031.495312983691, + "max_y": 5006.972233037751, + "center": [ + 5028.76744521845, + 5006.972233037751 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5006.972233037751 + ], + [ + 5031.495312983691, + 5006.972233037751 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5007.30527511156, + "max_x": 5029.23780977985, + "max_y": 5008.4251564619535, + "center": [ + 5028.229916564496, + 5007.865215786756 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56222F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5010.688869345777, + "max_x": 5042.31683893885, + "max_y": 5012.367680790437, + "center": [ + 5038.287691471667, + 5011.528275068107 + ] + }, + "raw_value": "FCV-9214", + "clean_value": "FCV-9214", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562230", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5009.661806150783, + "max_x": 5031.495312983691, + "max_y": 5013.394743985428, + "center": [ + 5031.495312983691, + 5011.528275068105 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5013.394743985428 + ], + [ + 5031.495312983691, + 5009.661806150783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562231", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5011.528275068106, + "max_x": 5047.920239456126, + "max_y": 5013.394743985428, + "center": [ + 5046.987004997465, + 5012.461509526767 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5013.394743985428 + ], + [ + 5047.920239456126, + 5011.528275068106 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562232", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5009.661806150783, + "max_x": 5047.920239456126, + "max_y": 5011.528275068106, + "center": [ + 5046.987004997465, + 5010.595040609445 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5009.661806150783 + ], + [ + 5047.920239456126, + 5011.528275068106 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562233", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5013.394743985428, + "max_x": 5046.053770538804, + "max_y": 5013.394743985428, + "center": [ + 5038.774541761248, + 5013.394743985428 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5013.394743985428 + ], + [ + 5031.495312983691, + 5013.394743985428 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562234", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5009.661806150783, + "max_x": 5046.053770538804, + "max_y": 5009.661806150783, + "center": [ + 5038.774541761248, + 5009.661806150783 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5009.661806150783 + ], + [ + 5031.495312983691, + 5009.661806150783 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562235", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5011.451758439326, + "max_x": 5031.495312983691, + "max_y": 5011.451758439326, + "center": [ + 5028.76744521845, + 5011.451758439326 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5011.451758439326 + ], + [ + 5031.495312983691, + 5011.451758439326 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562236", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5011.784800513133, + "max_x": 5029.23780977985, + "max_y": 5012.904681863526, + "center": [ + 5028.229916564496, + 5012.34474118833 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562237", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.218588292102, + "min_y": 5015.16839474735, + "max_x": 5042.276883226467, + "max_y": 5016.84720619201, + "center": [ + 5038.247735759285, + 5016.007800469681 + ] + }, + "raw_value": "PCV-9211", + "clean_value": "PCV-9211", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562238", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5014.141331552357, + "max_x": 5031.495312983691, + "max_y": 5017.874269387002, + "center": [ + 5031.495312983691, + 5016.007800469679 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5017.874269387002 + ], + [ + 5031.495312983691, + 5014.141331552357 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562239", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5016.007800469679, + "max_x": 5047.920239456126, + "max_y": 5017.874269387002, + "center": [ + 5046.987004997465, + 5016.941034928341 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5017.874269387002 + ], + [ + 5047.920239456126, + 5016.007800469679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5014.141331552357, + "max_x": 5047.920239456126, + "max_y": 5016.007800469679, + "center": [ + 5046.987004997465, + 5015.074566011018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5014.141331552357 + ], + [ + 5047.920239456126, + 5016.007800469679 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5017.874269387002, + "max_x": 5046.053770538804, + "max_y": 5017.874269387002, + "center": [ + 5038.774541761248, + 5017.874269387002 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5017.874269387002 + ], + [ + 5031.495312983691, + 5017.874269387002 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5014.141331552357, + "max_x": 5046.053770538804, + "max_y": 5014.141331552357, + "center": [ + 5038.774541761248, + 5014.141331552357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5014.141331552357 + ], + [ + 5031.495312983691, + 5014.141331552357 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5015.931283840899, + "max_x": 5031.495312983691, + "max_y": 5015.931283840899, + "center": [ + 5028.76744521845, + 5015.931283840899 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5015.931283840899 + ], + [ + 5031.495312983691, + 5015.931283840899 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5016.264325914708, + "max_x": 5029.23780977985, + "max_y": 5017.384207265101, + "center": [ + 5028.229916564496, + 5016.824266589905 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56223F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5019.647920148924, + "max_x": 5042.31683893885, + "max_y": 5021.326731593584, + "center": [ + 5038.287691471667, + 5020.487325871254 + ] + }, + "raw_value": "FCV-9213", + "clean_value": "FCV-9213", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562240", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5018.62085695393, + "max_x": 5031.495312983691, + "max_y": 5022.353794788575, + "center": [ + 5031.495312983691, + 5020.487325871252 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5022.353794788575 + ], + [ + 5031.495312983691, + 5018.62085695393 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562241", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5020.487325871253, + "max_x": 5047.920239456126, + "max_y": 5022.353794788575, + "center": [ + 5046.987004997465, + 5021.420560329914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5022.353794788575 + ], + [ + 5047.920239456126, + 5020.487325871253 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562242", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5018.62085695393, + "max_x": 5047.920239456126, + "max_y": 5020.487325871253, + "center": [ + 5046.987004997465, + 5019.554091412592 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5018.62085695393 + ], + [ + 5047.920239456126, + 5020.487325871253 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562243", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5022.353794788575, + "max_x": 5046.053770538804, + "max_y": 5022.353794788575, + "center": [ + 5038.774541761248, + 5022.353794788575 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5022.353794788575 + ], + [ + 5031.495312983691, + 5022.353794788575 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562244", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5018.62085695393, + "max_x": 5046.053770538804, + "max_y": 5018.62085695393, + "center": [ + 5038.774541761248, + 5018.62085695393 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5018.62085695393 + ], + [ + 5031.495312983691, + 5018.62085695393 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562245", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5020.410809242473, + "max_x": 5031.495312983691, + "max_y": 5020.410809242473, + "center": [ + 5028.76744521845, + 5020.410809242473 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5020.410809242473 + ], + [ + 5031.495312983691, + 5020.410809242473 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562246", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5020.74385131628, + "max_x": 5029.23780977985, + "max_y": 5021.863732666673, + "center": [ + 5028.229916564496, + 5021.303791991477 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562247", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.272100406901, + "min_y": 5024.127445550497, + "max_x": 5042.330395341266, + "max_y": 5025.806256995157, + "center": [ + 5038.301247874084, + 5024.966851272828 + ] + }, + "raw_value": "TCV-9211", + "clean_value": "TCV-9211", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562248", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5023.100382355504, + "max_x": 5031.495312983691, + "max_y": 5026.833320190149, + "center": [ + 5031.495312983691, + 5024.966851272826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5026.833320190149 + ], + [ + 5031.495312983691, + 5023.100382355504 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562249", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5024.966851272827, + "max_x": 5047.920239456126, + "max_y": 5026.833320190149, + "center": [ + 5046.987004997465, + 5025.900085731488 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5026.833320190149 + ], + [ + 5047.920239456126, + 5024.966851272827 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5023.100382355504, + "max_x": 5047.920239456126, + "max_y": 5024.966851272827, + "center": [ + 5046.987004997465, + 5024.033616814166 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5023.100382355504 + ], + [ + 5047.920239456126, + 5024.966851272827 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5026.833320190149, + "max_x": 5046.053770538804, + "max_y": 5026.833320190149, + "center": [ + 5038.774541761248, + 5026.833320190149 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5026.833320190149 + ], + [ + 5031.495312983691, + 5026.833320190149 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5023.100382355504, + "max_x": 5046.053770538804, + "max_y": 5023.100382355504, + "center": [ + 5038.774541761248, + 5023.100382355504 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5023.100382355504 + ], + [ + 5031.495312983691, + 5023.100382355504 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224D", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5024.890334644046, + "max_x": 5031.495312983691, + "max_y": 5024.890334644046, + "center": [ + 5028.76744521845, + 5024.890334644046 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5024.890334644046 + ], + [ + 5031.495312983691, + 5024.890334644046 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224E", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5025.223376717854, + "max_x": 5029.23780977985, + "max_y": 5026.343258068247, + "center": [ + 5028.229916564496, + 5025.78331739305 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56224F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.258544004485, + "min_y": 5028.606970952071, + "max_x": 5042.31683893885, + "max_y": 5030.285782396731, + "center": [ + 5038.287691471667, + 5029.446376674401 + ] + }, + "raw_value": "FCV-9201", + "clean_value": "FCV-9201", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562250", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5027.579907757078, + "max_x": 5031.495312983691, + "max_y": 5031.312845591723, + "center": [ + 5031.495312983691, + 5029.446376674401 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.495312983691, + 5031.312845591723 + ], + [ + 5031.495312983691, + 5027.579907757078 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562251", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5029.4463766744, + "max_x": 5047.920239456126, + "max_y": 5031.312845591723, + "center": [ + 5046.987004997465, + 5030.379611133061 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5031.312845591723 + ], + [ + 5047.920239456126, + 5029.4463766744 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562252", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.053770538804, + "min_y": 5027.579907757078, + "max_x": 5047.920239456126, + "max_y": 5029.4463766744, + "center": [ + 5046.987004997465, + 5028.513142215739 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5027.579907757078 + ], + [ + 5047.920239456126, + 5029.4463766744 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562253", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5031.312845591723, + "max_x": 5046.053770538804, + "max_y": 5031.312845591723, + "center": [ + 5038.774541761248, + 5031.312845591723 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5031.312845591723 + ], + [ + 5031.495312983691, + 5031.312845591723 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562254", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.495312983691, + "min_y": 5027.579907757078, + "max_x": 5046.053770538804, + "max_y": 5027.579907757078, + "center": [ + 5038.774541761248, + 5027.579907757078 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.053770538804, + 5027.579907757078 + ], + [ + 5031.495312983691, + 5027.579907757078 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562255", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 5026.039577453209, + "min_y": 5029.36986004562, + "max_x": 5031.495312983691, + "max_y": 5029.36986004562, + "center": [ + 5028.76744521845, + 5029.36986004562 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5026.039577453209, + 5029.36986004562 + ], + [ + 5031.495312983691, + 5029.36986004562 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562256", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.222023349142, + "min_y": 5029.702902119428, + "max_x": 5029.23780977985, + "max_y": 5030.822783469821, + "center": [ + 5028.229916564496, + 5030.262842794624 + ] + }, + "raw_value": "15A", + "clean_value": "15A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562512", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.399894088627, + "min_y": 5053.415138724822, + "max_x": 5029.415680519335, + "max_y": 5054.5350200752155, + "center": [ + 5028.4077873039805, + 5053.975079400019 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562623", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5034.343314365194, + "max_x": 5041.988468727722, + "max_y": 5036.022125809854, + "center": [ + 5038.462964693937, + 5035.182720087523 + ] + }, + "raw_value": "XV-6126", + "clean_value": "XV-6126", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562624", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5033.316251170202, + "max_x": 5031.504971456943, + "max_y": 5037.049189004846, + "center": [ + 5031.504971456943, + 5035.182720087524 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5037.049189004846 + ], + [ + 5031.504971456943, + 5033.316251170202 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562625", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5035.182720087523, + "max_x": 5047.929897929378, + "max_y": 5037.049189004846, + "center": [ + 5046.996663470717, + 5036.115954546185 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5037.049189004846 + ], + [ + 5047.929897929378, + 5035.182720087523 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562626", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5033.316251170202, + "max_x": 5047.929897929378, + "max_y": 5035.182720087523, + "center": [ + 5046.996663470717, + 5034.249485628863 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5033.316251170202 + ], + [ + 5047.929897929378, + 5035.182720087523 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562627", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5037.049189004846, + "max_x": 5046.063429012056, + "max_y": 5037.049189004846, + "center": [ + 5038.7842002345, + 5037.049189004846 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5037.049189004846 + ], + [ + 5031.504971456943, + 5037.049189004846 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562628", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5033.316251170202, + "max_x": 5046.063429012056, + "max_y": 5033.316251170202, + "center": [ + 5038.7842002345, + 5033.316251170202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5033.316251170202 + ], + [ + 5031.504971456943, + 5033.316251170202 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562629", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5038.822839766767, + "max_x": 5041.988468727722, + "max_y": 5040.501651211427, + "center": [ + 5038.462964693937, + 5039.662245489097 + ] + }, + "raw_value": "XV-6122", + "clean_value": "XV-6122", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5037.795776571774, + "max_x": 5031.504971456943, + "max_y": 5041.528714406419, + "center": [ + 5031.504971456943, + 5039.662245489097 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5041.528714406419 + ], + [ + 5031.504971456943, + 5037.795776571774 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262B", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5039.662245489097, + "max_x": 5047.929897929378, + "max_y": 5041.528714406419, + "center": [ + 5046.996663470717, + 5040.595479947758 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5041.528714406419 + ], + [ + 5047.929897929378, + 5039.662245489097 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5037.795776571774, + "max_x": 5047.929897929378, + "max_y": 5039.662245489097, + "center": [ + 5046.996663470717, + 5038.729011030435 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5037.795776571774 + ], + [ + 5047.929897929378, + 5039.662245489097 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5041.528714406419, + "max_x": 5046.063429012056, + "max_y": 5041.528714406419, + "center": [ + 5038.7842002345, + 5041.528714406419 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5041.528714406419 + ], + [ + 5031.504971456943, + 5041.528714406419 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5037.795776571774, + "max_x": 5046.063429012056, + "max_y": 5037.795776571774, + "center": [ + 5038.7842002345, + 5037.795776571774 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5037.795776571774 + ], + [ + 5031.504971456943, + 5037.795776571774 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56262F", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5043.302365168341, + "max_x": 5041.988468727722, + "max_y": 5044.981176613001, + "center": [ + 5038.462964693937, + 5044.14177089067 + ] + }, + "raw_value": "XV-6125", + "clean_value": "XV-6125", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562630", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5042.275301973348, + "max_x": 5031.504971456943, + "max_y": 5046.008239807993, + "center": [ + 5031.504971456943, + 5044.14177089067 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5046.008239807993 + ], + [ + 5031.504971456943, + 5042.275301973348 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562631", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5044.141770890671, + "max_x": 5047.929897929378, + "max_y": 5046.008239807993, + "center": [ + 5046.996663470717, + 5045.075005349332 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5046.008239807993 + ], + [ + 5047.929897929378, + 5044.141770890671 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562632", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5042.275301973348, + "max_x": 5047.929897929378, + "max_y": 5044.141770890671, + "center": [ + 5046.996663470717, + 5043.20853643201 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5042.275301973348 + ], + [ + 5047.929897929378, + 5044.141770890671 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562633", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5046.008239807993, + "max_x": 5046.063429012056, + "max_y": 5046.008239807993, + "center": [ + 5038.7842002345, + 5046.008239807993 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5046.008239807993 + ], + [ + 5031.504971456943, + 5046.008239807993 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562634", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5042.275301973348, + "max_x": 5046.063429012056, + "max_y": 5042.275301973348, + "center": [ + 5038.7842002345, + 5042.275301973348 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5042.275301973348 + ], + [ + 5031.504971456943, + 5042.275301973348 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562635", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5047.781890569915, + "max_x": 5041.988468727722, + "max_y": 5049.460702014575, + "center": [ + 5038.462964693937, + 5048.6212962922455 + ] + }, + "raw_value": "XV-6121", + "clean_value": "XV-6121", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562636", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5046.754827374922, + "max_x": 5031.504971456943, + "max_y": 5050.487765209567, + "center": [ + 5031.504971456943, + 5048.621296292245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5050.487765209567 + ], + [ + 5031.504971456943, + 5046.754827374922 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562637", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5048.621296292244, + "max_x": 5047.929897929378, + "max_y": 5050.487765209567, + "center": [ + 5046.996663470717, + 5049.5545307509055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5050.487765209567 + ], + [ + 5047.929897929378, + 5048.621296292244 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562638", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5046.754827374922, + "max_x": 5047.929897929378, + "max_y": 5048.621296292244, + "center": [ + 5046.996663470717, + 5047.688061833583 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5046.754827374922 + ], + [ + 5047.929897929378, + 5048.621296292244 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562639", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5050.487765209567, + "max_x": 5046.063429012056, + "max_y": 5050.487765209567, + "center": [ + 5038.7842002345, + 5050.487765209567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5050.487765209567 + ], + [ + 5031.504971456943, + 5050.487765209567 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263A", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5046.754827374922, + "max_x": 5046.063429012056, + "max_y": 5046.754827374922, + "center": [ + 5038.7842002345, + 5046.754827374922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5046.754827374922 + ], + [ + 5031.504971456943, + 5046.754827374922 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263B", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5034.937460660151, + "min_y": 5052.261415971488, + "max_x": 5041.988468727722, + "max_y": 5053.9402274161475, + "center": [ + 5038.462964693937, + 5053.100821693817 + ] + }, + "raw_value": "XV-9125", + "clean_value": "XV-9125", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263C", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5051.234352776496, + "max_x": 5031.504971456943, + "max_y": 5054.96729061114, + "center": [ + 5031.504971456943, + 5053.100821693818 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5054.96729061114 + ], + [ + 5031.504971456943, + 5051.234352776496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263D", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5053.100821693818, + "max_x": 5047.929897929378, + "max_y": 5054.96729061114, + "center": [ + 5046.996663470717, + 5054.034056152479 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5054.96729061114 + ], + [ + 5047.929897929378, + 5053.100821693818 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263E", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5046.063429012056, + "min_y": 5051.234352776496, + "max_x": 5047.929897929378, + "max_y": 5053.100821693818, + "center": [ + 5046.996663470717, + 5052.167587235157 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5051.234352776496 + ], + [ + 5047.929897929378, + 5053.100821693818 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "56263F", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5054.96729061114, + "max_x": 5046.063429012056, + "max_y": 5054.96729061114, + "center": [ + 5038.7842002345, + 5054.96729061114 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5054.96729061114 + ], + [ + 5031.504971456943, + 5054.96729061114 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562640", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5031.504971456943, + "min_y": 5051.234352776496, + "max_x": 5046.063429012056, + "max_y": 5051.234352776496, + "center": [ + 5038.7842002345, + 5051.234352776496 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5046.063429012056, + 5051.234352776496 + ], + [ + 5031.504971456943, + 5051.234352776496 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562641", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.042532857065, + "min_y": 5053.100821693818, + "max_x": 5031.504971456943, + "max_y": 5053.101862424916, + "center": [ + 5028.773752157004, + 5053.101342059367 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5053.100821693818 + ], + [ + 5026.042532857065, + 5053.101862424916 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562642", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.041679395532, + "min_y": 5048.621296292244, + "max_x": 5031.504971456943, + "max_y": 5048.622337185948, + "center": [ + 5028.7733254262375, + 5048.621816739096 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5048.621296292244 + ], + [ + 5026.041679395532, + 5048.622337185948 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562643", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.040825934, + "min_y": 5044.141770890671, + "max_x": 5031.504971456943, + "max_y": 5044.14281194698, + "center": [ + 5028.772898695472, + 5044.142291418826 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5044.141770890671 + ], + [ + 5026.040825934, + 5044.14281194698 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562644", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.039972472468, + "min_y": 5039.662245489097, + "max_x": 5031.504971456943, + "max_y": 5039.663286708012, + "center": [ + 5028.772471964706, + 5039.662766098554 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5039.662245489097 + ], + [ + 5026.039972472468, + 5039.663286708012 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562645", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.039119010936, + "min_y": 5035.182720087524, + "max_x": 5031.504971456943, + "max_y": 5035.183761469044, + "center": [ + 5028.77204523394, + 5035.183240778284 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.504971456943, + 5035.182720087524 + ], + [ + 5026.039119010936, + 5035.183761469044 + ] + ], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562675", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.5088027003, + "min_y": 5048.921065389993, + "max_x": 5029.524589131009, + "max_y": 5050.040946740386, + "center": [ + 5028.516695915654, + 5049.481006065189 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "5626A5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.640402788446, + "min_y": 5044.592864314632, + "max_x": 5029.656189219155, + "max_y": 5045.712745665025, + "center": [ + 5028.648296003801, + 5045.152804989828 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "5626D5", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.668581037625, + "min_y": 5040.056166196928, + "max_x": 5029.684367468333, + "max_y": 5041.176047547321, + "center": [ + 5028.6764742529795, + 5040.616106872125 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562705", + "entity_type": "TEXT", + "layer": "PID", + "bbox": { + "min_x": 5027.520645229439, + "min_y": 5035.582869139876, + "max_x": 5029.536431660147, + "max_y": 5036.702750490269, + "center": [ + 5028.5285384447925, + 5036.142809815072 + ] + }, + "raw_value": "25A", + "clean_value": "25A", + "coordinates": [], + "properties": { + "color": 8, + "lineweight": -1 + } + }, + { + "entity_id": "562792", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4821.557605210881, + "min_y": 5063.8927618576, + "max_x": 4833.557605210881, + "max_y": 5068.8927618576, + "center": [ + 4827.557605210881, + 5066.3927618576 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5627C1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4820.648797748634, + "min_y": 4931.661276100655, + "max_x": 4832.648797748634, + "max_y": 4936.661276100655, + "center": [ + 4826.648797748634, + 4934.161276100655 + ] + }, + "raw_value": "기존설비", + "clean_value": "기존설비", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": 0 + } + }, + { + "entity_id": "5627F3", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 4943.971630173075, + "min_y": 5212.009713891608, + "max_x": 4956.066348757324, + "max_y": 5213.129595242001, + "center": [ + 4950.018989465199, + 5212.569654566805 + ] + }, + "raw_value": "IA-10922-25A-F1A-n", + "clean_value": "IA-10922-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562829", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 4744.899765828277, + "min_y": 5366.721770971031, + "max_x": 4828.499789681784, + "max_y": 5369.721770971031, + "center": [ + 4786.6997777550305, + 5368.221770971031 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. Line 추{{\\l}}가{{\\L}} : #9 Plant Air Line  #10 Plant Air Line Tie", + "clean_value": "<수정사 \\l 항 > . Line 추 \\l 가 : #9 Plant Air Line  #10 Plant Air Line Tie", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "56282D", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4742.366311884594, + "min_y": 5318.312832379453, + "max_x": 4827.045479209727, + "max_y": 5368.01905713621, + "center": [ + 4784.70589554716, + 5343.165944757831 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4742.366311884594, + 5368.01905713621 + ], + [ + 4827.045479209727, + 5368.01905713621 + ], + [ + 4827.045479209727, + 5318.312832379453 + ], + [ + 4742.366311884594, + 5318.312832379453 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562862", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5063.437094238126, + "min_y": 5013.832394517567, + "max_x": 5079.901157033994, + "max_y": 5013.832394517567, + "center": [ + 5071.66912563606, + 5013.832394517567 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5079.901157033994, + 5013.832394517567 + ], + [ + 5063.437094238126, + 5013.832394517567 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562863", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5063.437094238126, + "min_y": 5010.099456682922, + "max_x": 5079.901157033994, + "max_y": 5010.099456682922, + "center": [ + 5071.66912563606, + 5010.099456682922 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5079.901157033994, + 5010.099456682922 + ], + [ + 5063.437094238126, + 5010.099456682922 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562864", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5065.785112294568, + "min_y": 5011.194633361998, + "max_x": 5082.910862744586, + "max_y": 5012.873628504157, + "center": [ + 5074.347987519577, + 5012.034130933078 + ] + }, + "raw_value": "#10 Plant Utility", + "clean_value": "#10 Plant Utility", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562865", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5063.437094238126, + "min_y": 5010.099456682922, + "max_x": 5063.437094238126, + "max_y": 5013.832394517567, + "center": [ + 5063.437094238126, + 5011.965925600245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5063.437094238126, + 5013.832394517567 + ], + [ + 5063.437094238126, + 5010.099456682922 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562866", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5079.901157033994, + "min_y": 5011.965925600247, + "max_x": 5081.767625951318, + "max_y": 5013.832394517567, + "center": [ + 5080.834391492656, + 5012.899160058907 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5079.901157033994, + 5013.832394517567 + ], + [ + 5081.767625951318, + 5011.965925600247 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562867", + "entity_type": "LINE", + "layer": "PID", + "bbox": { + "min_x": 5079.901157033994, + "min_y": 5010.099456682922, + "max_x": 5081.767625951318, + "max_y": 5011.965925600247, + "center": [ + 5080.834391492656, + 5011.032691141585 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5079.901157033994, + 5010.099456682922 + ], + [ + 5081.767625951318, + 5011.965925600247 + ] + ], + "properties": { + "color": 0, + "lineweight": -1 + } + }, + { + "entity_id": "562868", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5057.391053304153, + "min_y": 5011.965925600245, + "max_x": 5063.437094238126, + "max_y": 5011.965925600245, + "center": [ + 5060.414073771139, + 5011.965925600245 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5063.437094238126, + 5011.965925600245 + ], + [ + 5057.391053304153, + 5011.965925600245 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562869", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5057.391053304153, + "min_y": 4994.950563428332, + "max_x": 5057.391053356221, + "max_y": 5011.965925600245, + "center": [ + 5057.391053330187, + 5003.458244514289 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.391053304153, + 5011.965925600245 + ], + [ + 5057.391053356221, + 4994.950563428332 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562878", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5027.338649674516, + "min_y": 4993.255357616566, + "max_x": 5083.342945230224, + "max_y": 5015.720717083799, + "center": [ + 5055.340797452371, + 5004.488037350182 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5083.342945230224, + 5008.656538894385 + ], + [ + 5080.342945230224, + 5008.656538894385 + ], + [ + 5077.342945230224, + 5008.656538894385 + ], + [ + 5074.342945230224, + 5008.656538894385 + ], + [ + 5071.342945230224, + 5008.656538894385 + ], + [ + 5068.342945230224, + 5008.656538894385 + ], + [ + 5065.342945230224, + 5008.656538894385 + ], + [ + 5062.342945230224, + 5008.656538894385 + ], + [ + 5059.604760863998, + 5008.394723260611 + ], + [ + 5059.604760863998, + 5005.394723260611 + ], + [ + 5059.604760863998, + 5002.394723260612 + ], + [ + 5059.604760863998, + 4999.394723260611 + ], + [ + 5059.604760863998, + 4996.394723260611 + ], + [ + 5059.604760863998, + 4993.394723260611 + ], + [ + 5056.744126508045, + 4993.255357616566 + ], + [ + 5053.744126508044, + 4993.255357616566 + ], + [ + 5050.744126508044, + 4993.255357616566 + ], + [ + 5047.744126508044, + 4993.255357616566 + ], + [ + 5044.744126508044, + 4993.255357616566 + ], + [ + 5041.744126508044, + 4993.255357616566 + ], + [ + 5038.744126508044, + 4993.255357616566 + ], + [ + 5035.744126508045, + 4993.255357616566 + ], + [ + 5032.744126508045, + 4993.255357616566 + ], + [ + 5029.744126508044, + 4993.255357616566 + ], + [ + 5027.338649674516, + 4993.849880783038 + ], + [ + 5027.687469348554, + 4996.501061108999 + ], + [ + 5030.687469348555, + 4996.501061108999 + ], + [ + 5033.687469348554, + 4996.501061108999 + ], + [ + 5036.687469348554, + 4996.501061108999 + ], + [ + 5039.687469348554, + 4996.501061108999 + ], + [ + 5042.687469348554, + 4996.501061108999 + ], + [ + 5045.687469348554, + 4996.501061108999 + ], + [ + 5048.687469348554, + 4996.501061108999 + ], + [ + 5051.687469348554, + 4996.501061108999 + ], + [ + 5054.687469348554, + 4996.501061108999 + ], + [ + 5055.531721187219, + 4998.656809270335 + ], + [ + 5055.531721187219, + 5001.656809270334 + ], + [ + 5055.531721187219, + 5004.656809270334 + ], + [ + 5055.531721187219, + 5007.656809270335 + ], + [ + 5055.531721187219, + 5010.656809270335 + ], + [ + 5055.531721187219, + 5013.656809270335 + ], + [ + 5056.467813373754, + 5015.720717083799 + ], + [ + 5059.467813373754, + 5015.720717083799 + ], + [ + 5062.467813373754, + 5015.720717083799 + ], + [ + 5065.467813373754, + 5015.720717083799 + ], + [ + 5068.467813373754, + 5015.720717083799 + ], + [ + 5071.467813373754, + 5015.720717083799 + ], + [ + 5074.467813373754, + 5015.720717083799 + ], + [ + 5077.467813373754, + 5015.720717083799 + ], + [ + 5080.467813373754, + 5015.720717083799 + ], + [ + 5083.342945230224, + 5015.595848940269 + ], + [ + 5083.342945230224, + 5012.595848940269 + ], + [ + 5083.342945230224, + 5009.595848940269 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5628A7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4931.541041150315, + "min_y": 5245.193952511563, + "max_x": 4935.627560458687, + "max_y": 5248.73298204567, + "center": [ + 4933.584300804501, + 5246.963467278616 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4935.627560458687, + 5245.193952511563 + ], + [ + 4933.584300804502, + 5248.73298204567 + ], + [ + 4931.541041150315, + 5245.193952511563 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5628A8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4933.158749229729, + "min_y": 5245.822192436224, + "max_x": 4934.053901596806, + "max_y": 5247.314113048018, + "center": [ + 4933.606325413268, + 5246.568152742121 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "5628D7", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5056.018839789288, + "min_y": 5017.498679631813, + "max_x": 5060.105359097661, + "max_y": 5021.03770916592, + "center": [ + 5058.062099443474, + 5019.268194398866 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5060.105359097661, + 5017.498679631813 + ], + [ + 5058.062099443476, + 5021.03770916592 + ], + [ + 5056.018839789288, + 5017.498679631813 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5628D8", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 5057.636547868702, + "min_y": 5018.126919556475, + "max_x": 5058.531700235779, + "max_y": 5019.618840168268, + "center": [ + 5058.08412405224, + 5018.8728798623715 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "56290A", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5060.94489843279, + "min_y": 5111.461052280958, + "max_x": 5144.544922286297, + "max_y": 5114.461052280958, + "center": [ + 5102.744910359544, + 5112.961052280958 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. Line 추{{\\l}}가{{\\L}} : #9 Plant Air Line  #10 Plant Air Line Tie ", + "clean_value": "<수정사 \\l 항 > . Line 추 \\l 가 : #9 Plant Air Line  #10 Plant Air Line Tie", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "56290E", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5058.411444489108, + "min_y": 5063.052113689381, + "max_x": 5143.09061181424, + "max_y": 5112.758338446138, + "center": [ + 5100.751028151674, + 5087.90522606776 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5058.411444489108, + 5112.758338446138 + ], + [ + 5143.09061181424, + 5112.758338446138 + ], + [ + 5143.09061181424, + 5063.052113689381 + ], + [ + 5058.411444489108, + 5063.052113689381 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562940", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 5035.747412823476, + "min_y": 4993.211266582041, + "max_x": 5047.842131407725, + "max_y": 4994.331147932435, + "center": [ + 5041.794772115601, + 4993.771207257238 + ] + }, + "raw_value": "IA-10922-25A-F1A-n", + "clean_value": "IA-10922-25A-F1A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A35", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5427.41991983752, + "max_x": 2157.5177966944248, + "max_y": 5428.539801187913, + "center": [ + 2151.1344729971825, + 5427.979860512716 + ] + }, + "raw_value": "SAM-10955-10A-F2A-n", + "clean_value": "SAM-10955-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A36", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5424.620216461536, + "max_x": 2157.5177966944248, + "max_y": 5425.740097811929, + "center": [ + 2151.1344729971825, + 5425.180157136732 + ] + }, + "raw_value": "SAM-10951-10A-F2A-n", + "clean_value": "SAM-10951-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A37", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5421.820513085553, + "max_x": 2157.5177966944248, + "max_y": 5422.9403944359465, + "center": [ + 2151.1344729971825, + 5422.38045376075 + ] + }, + "raw_value": "SAM-10957-10A-F2A-n", + "clean_value": "SAM-10957-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A38", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5419.020809709568, + "max_x": 2157.5177966944248, + "max_y": 5420.140691059962, + "center": [ + 2151.1344729971825, + 5419.5807503847645 + ] + }, + "raw_value": "SAM-10956-10A-F2A-n", + "clean_value": "SAM-10956-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A39", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5416.221106333585, + "max_x": 2157.5177966944248, + "max_y": 5417.340987683979, + "center": [ + 2151.1344729971825, + 5416.7810470087825 + ] + }, + "raw_value": "SAM-10952-10A-F2A-n", + "clean_value": "SAM-10952-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A3A", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5413.421402957602, + "max_x": 2157.5177966944248, + "max_y": 5414.541284307996, + "center": [ + 2151.1344729971825, + 5413.981343632799 + ] + }, + "raw_value": "SAM-10953-10A-F2A-n", + "clean_value": "SAM-10953-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A3B", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5410.621699581618, + "max_x": 2157.5177966944248, + "max_y": 5411.741580932011, + "center": [ + 2151.1344729971825, + 5411.181640256815 + ] + }, + "raw_value": "SAM-10958-10A-F2A-n", + "clean_value": "SAM-10958-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A3C", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2144.75114929994, + "min_y": 5407.821996205634, + "max_x": 2157.5177966944248, + "max_y": 5408.941877556027, + "center": [ + 2151.1344729971825, + 5408.381936880831 + ] + }, + "raw_value": "SAM-10954-10A-F2A-n", + "clean_value": "SAM-10954-10A-F2A-n", + "coordinates": [], + "properties": { + "color": 256, + "lineweight": 0 + } + }, + { + "entity_id": "562A75", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5217.976447518349, + "max_x": 4941.713741864643, + "max_y": 5217.976447518349, + "center": [ + 4940.579527054917, + 5217.976447518349 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.44531224519, + 5217.976447518349 + ], + [ + 4941.713741864643, + 5217.976447518349 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A76", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5214.339269690198, + "max_x": 4941.713741864643, + "max_y": 5214.339269690198, + "center": [ + 4940.579527054917, + 5214.339269690198 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.44531224519, + 5214.339269690198 + ], + [ + 4941.713741864643, + 5214.339269690198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A77", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4940.94062193983, + "min_y": 5216.736834605121, + "max_x": 4941.713741864643, + "max_y": 5217.976447518349, + "center": [ + 4941.327181902237, + 5217.356641061735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4941.713741864643, + 5217.976447518349 + ], + [ + 4940.94062193983, + 5216.736834605121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A78", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5216.736834605121, + "max_x": 4940.218432170006, + "max_y": 5217.976447518349, + "center": [ + 4939.831872207598, + 5217.356641061735 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.44531224519, + 5217.976447518349 + ], + [ + 4940.218432170006, + 5216.736834605121 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A79", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.897176173434, + "min_y": 5215.47550772279, + "max_x": 4941.261877936406, + "max_y": 5216.840209485762, + "center": [ + 4940.57952705492, + 5216.157858604276 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4940.57952705492, + 5216.157858604276 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A7A", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4940.94062193983, + "min_y": 5214.339269690198, + "max_x": 4941.713741864643, + "max_y": 5215.57888260343, + "center": [ + 4941.327181902237, + 5214.959076146814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4940.94062193983, + 5215.57888260343 + ], + [ + 4941.713741864643, + 5214.339269690198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A7B", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5214.339269690198, + "max_x": 4940.218432170006, + "max_y": 5215.57888260343, + "center": [ + 4939.831872207598, + 5214.959076146814 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4940.218432170006, + 5215.57888260343 + ], + [ + 4939.44531224519, + 5214.339269690198 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A7C", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5213.592682123268, + "max_x": 4941.713741864643, + "max_y": 5213.592682123268, + "center": [ + 4940.579527054917, + 5213.592682123268 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.44531224519, + 5213.592682123268 + ], + [ + 4941.713741864643, + 5213.592682123268 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A7D", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4939.44531224519, + "min_y": 5218.723035085277, + "max_x": 4941.713741864643, + "max_y": 5218.723035085277, + "center": [ + 4940.579527054917, + 5218.723035085277 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4939.44531224519, + 5218.723035085277 + ], + [ + 4941.713741864643, + 5218.723035085277 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562A7E", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4940.590688504464, + "min_y": 5218.723035085277, + "max_x": 4940.590688504464, + "max_y": 5225.398642816504, + "center": [ + 4940.590688504464, + 5222.060838950891 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4940.590688504464, + 5225.398642816504 + ], + [ + 4940.590688504464, + 5218.723035085277 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562A81", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4936.767189730153, + "min_y": 5211.490503005268, + "max_x": 4946.454919979097, + "max_y": 5245.484056468083, + "center": [ + 4941.611054854626, + 5228.487279736675 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4936.767189730153, + 5245.484056468083 + ], + [ + 4939.767189730153, + 5245.484056468083 + ], + [ + 4942.767189730153, + 5245.484056468083 + ], + [ + 4945.767189730152, + 5245.484056468083 + ], + [ + 4946.454919979097, + 5243.171786717028 + ], + [ + 4946.454919979097, + 5240.171786717028 + ], + [ + 4946.454919979097, + 5237.171786717028 + ], + [ + 4946.454919979097, + 5234.171786717028 + ], + [ + 4946.454919979097, + 5231.171786717028 + ], + [ + 4946.454919979097, + 5228.171786717028 + ], + [ + 4946.454919979097, + 5225.171786717028 + ], + [ + 4946.454919979097, + 5222.171786717028 + ], + [ + 4946.454919979097, + 5219.171786717028 + ], + [ + 4946.454919979097, + 5216.171786717028 + ], + [ + 4946.454919979097, + 5213.171786717028 + ], + [ + 4945.136203690857, + 5211.490503005268 + ], + [ + 4942.136203690857, + 5211.490503005268 + ], + [ + 4939.136203690857, + 5211.490503005268 + ], + [ + 4936.767189730153, + 5212.121489044564 + ], + [ + 4936.767189730153, + 5215.121489044564 + ], + [ + 4936.767189730153, + 5218.121489044564 + ], + [ + 4936.767189730153, + 5221.121489044564 + ], + [ + 4936.767189730153, + 5224.121489044565 + ], + [ + 4936.767189730153, + 5227.121489044565 + ], + [ + 4936.767189730153, + 5230.121489044564 + ], + [ + 4936.767189730153, + 5233.121489044564 + ], + [ + 4936.767189730153, + 5236.121489044564 + ], + [ + 4936.767189730153, + 5239.121489044564 + ], + [ + 4936.767189730153, + 5242.121489044564 + ], + [ + 4936.767189730153, + 5245.121489044564 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562ABA", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5031.865681678223, + "min_y": 4993.861299393635, + "max_x": 5031.865681678223, + "max_y": 4996.129729013088, + "center": [ + 5031.865681678223, + 4994.995514203361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.865681678223, + 4996.129729013088 + ], + [ + 5031.865681678223, + 4993.861299393635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562ABB", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5028.228503850072, + "min_y": 4993.861299393635, + "max_x": 5028.228503850072, + "max_y": 4996.129729013088, + "center": [ + 5028.228503850072, + 4994.995514203361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5028.228503850072, + 4996.129729013088 + ], + [ + 5028.228503850072, + 4993.861299393635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562ABC", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5030.626068764995, + "min_y": 4993.861299393635, + "max_x": 5031.865681678223, + "max_y": 4994.634419318448, + "center": [ + 5031.245875221609, + 4994.247859356041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.865681678223, + 4993.861299393635 + ], + [ + 5030.626068764995, + 4994.634419318448 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562ABD", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5030.626068764995, + "min_y": 4995.356609088275, + "max_x": 5031.865681678223, + "max_y": 4996.129729013088, + "center": [ + 5031.245875221609, + 4995.743169050682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5031.865681678223, + 4996.129729013088 + ], + [ + 5030.626068764995, + 4995.356609088275 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562ABE", + "entity_type": "CIRCLE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5029.364741882663, + "min_y": 4994.313163321874, + "max_x": 5030.729443645635, + "max_y": 4995.6778650848455, + "center": [ + 5030.047092764149, + 4994.99551420336 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5030.047092764149, + 4994.99551420336 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562ABF", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5028.228503850072, + "min_y": 4993.861299393635, + "max_x": 5029.468116763304, + "max_y": 4994.634419318448, + "center": [ + 5028.848310306688, + 4994.247859356041 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5029.468116763304, + 4994.634419318448 + ], + [ + 5028.228503850072, + 4993.861299393635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC0", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5028.228503850072, + "min_y": 4995.356609088275, + "max_x": 5029.468116763304, + "max_y": 4996.129729013088, + "center": [ + 5028.848310306688, + 4995.743169050682 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5029.468116763304, + 4995.356609088275 + ], + [ + 5028.228503850072, + 4996.129729013088 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC1", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5027.481916283142, + "min_y": 4993.861299393635, + "max_x": 5027.481916283142, + "max_y": 4996.129729013088, + "center": [ + 5027.481916283142, + 4994.995514203361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5027.481916283142, + 4996.129729013088 + ], + [ + 5027.481916283142, + 4993.861299393635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC2", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 5032.612269245151, + "min_y": 4993.861299393635, + "max_x": 5032.612269245151, + "max_y": 4996.129729013088, + "center": [ + 5032.612269245151, + 4994.995514203361 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5032.612269245151, + 4996.129729013088 + ], + [ + 5032.612269245151, + 4993.861299393635 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC3", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5032.612269245151, + "min_y": 4994.950836238217, + "max_x": 5057.39105335622, + "max_y": 4994.950836314041, + "center": [ + 5045.001661300686, + 4994.950836276129 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5057.39105335622, + 4994.950836314041 + ], + [ + 5032.612269245151, + 4994.950836238217 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC4", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 5026.031475882692, + "min_y": 4994.950836218079, + "max_x": 5027.481916283142, + "max_y": 4994.950836222518, + "center": [ + 5026.756696082917, + 4994.950836220298 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5027.481916283142, + 4994.950836222518 + ], + [ + 5026.031475882692, + 4994.950836218079 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562AC5", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4940.590688504464, + "min_y": 5210.035273274187, + "max_x": 4940.590688504464, + "max_y": 5213.592682123268, + "center": [ + 4940.590688504464, + 5211.813977698727 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4940.590688504464, + 5213.592682123268 + ], + [ + 4940.590688504464, + 5210.035273274187 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562AF6", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2109.674355800482, + "min_y": 5395.667902481613, + "max_x": 2228.9795841061255, + "max_y": 5398.667902481613, + "center": [ + 2169.326969953304, + 5397.167902481613 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. #10-2 Sample Line No. 수{{\\l}}정{{\\L}}\\P2. PSV-10217 토출{{\\l}}측{{\\L}} CWR Line Header{{\\l}}에{{\\L}} 물{{\\l}}림{{\\L}}", + "clean_value": "<수정사 \\l 항 > . #10-2 Sample Line No. 수 \\l 정 . PSV-10217 토출 \\l 측 CWR Line Header \\l 에 물 \\l 림", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562AFB", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2131.843124330625, + "min_y": 5404.930960933328, + "max_x": 2163.166361542768, + "max_y": 5430.494764206465, + "center": [ + 2147.5047429366964, + 5417.712862569897 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2131.843124330625, + 5430.494764206465 + ], + [ + 2134.843124330624, + 5430.494764206465 + ], + [ + 2137.843124330625, + 5430.494764206465 + ], + [ + 2140.843124330625, + 5430.494764206465 + ], + [ + 2143.843124330624, + 5430.494764206465 + ], + [ + 2146.843124330624, + 5430.494764206465 + ], + [ + 2149.843124330625, + 5430.494764206465 + ], + [ + 2152.843124330624, + 5430.494764206465 + ], + [ + 2155.843124330624, + 5430.494764206465 + ], + [ + 2158.843124330624, + 5430.494764206465 + ], + [ + 2161.843124330625, + 5430.494764206465 + ], + [ + 2163.166361542768, + 5428.818001418608 + ], + [ + 2163.166361542768, + 5425.818001418609 + ], + [ + 2163.166361542768, + 5422.818001418609 + ], + [ + 2163.166361542768, + 5419.818001418609 + ], + [ + 2163.166361542768, + 5416.818001418609 + ], + [ + 2163.166361542768, + 5413.818001418609 + ], + [ + 2163.166361542768, + 5410.818001418609 + ], + [ + 2163.166361542768, + 5407.818001418609 + ], + [ + 2163.053402028048, + 5404.930960933328 + ], + [ + 2160.053402028048, + 5404.930960933328 + ], + [ + 2157.053402028048, + 5404.930960933328 + ], + [ + 2154.053402028048, + 5404.930960933328 + ], + [ + 2151.053402028048, + 5404.930960933328 + ], + [ + 2148.053402028048, + 5404.930960933328 + ], + [ + 2145.053402028048, + 5404.930960933328 + ], + [ + 2142.053402028048, + 5404.930960933328 + ], + [ + 2139.053402028048, + 5404.930960933328 + ], + [ + 2136.053402028048, + 5404.930960933328 + ], + [ + 2133.053402028048, + 5404.930960933328 + ], + [ + 2131.843124330625, + 5406.720683235906 + ], + [ + 2131.843124330625, + 5409.720683235906 + ], + [ + 2131.843124330625, + 5412.720683235905 + ], + [ + 2131.843124330625, + 5415.720683235905 + ], + [ + 2131.843124330625, + 5418.720683235905 + ], + [ + 2131.843124330625, + 5421.720683235905 + ], + [ + 2131.843124330625, + 5424.720683235905 + ], + [ + 2131.843124330625, + 5427.720683235905 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562B2E", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 2885.703159344574, + "min_y": 5248.070615663613, + "max_x": 3005.0083876502176, + "max_y": 5251.070615663613, + "center": [ + 2945.3557734973956, + 5249.570615663613 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. Overflow Line 보{{\\l}}온{{\\L}} 표{{\\l}}시{{\\L}} (E50)\\P2. Vent Line No. 표{{\\l}}시{{\\L}}", + "clean_value": "<수정사 \\l 항 > . Overflow Line 보 \\l 온 표 \\l 시 (E50) . Vent Line No. 표 \\l 시", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562B32", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2882.30812460158, + "min_y": 5222.329595663971, + "max_x": 2945.936156689656, + "max_y": 5250.058599666058, + "center": [ + 2914.122140645618, + 5236.194097665015 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2882.30812460158, + 5250.058599666058 + ], + [ + 2945.936156689656, + 5250.058599666058 + ], + [ + 2945.936156689656, + 5222.329595663971 + ], + [ + 2882.30812460158, + 5222.329595663971 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562B35", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2661.875704534175, + "min_y": 5247.188377825903, + "max_x": 2667.122268134686, + "max_y": 5251.007305072533, + "center": [ + 2664.4989863344304, + 5249.097841449218 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2661.875704534175, + 5251.007305072533 + ], + [ + 2663.875704534174, + 5251.007305072533 + ], + [ + 2665.875704534175, + 5251.007305072533 + ], + [ + 2667.122268134686, + 5250.253868673044 + ], + [ + 2667.122268134686, + 5248.253868673044 + ], + [ + 2666.187758981827, + 5247.188377825903 + ], + [ + 2664.187758981827, + 5247.188377825903 + ], + [ + 2662.187758981827, + 5247.188377825903 + ], + [ + 2661.875704534175, + 5248.87632337825 + ], + [ + 2661.875704534175, + 5250.87632337825 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562BDA", + "entity_type": "TEXT", + "layer": "LINENO", + "bbox": { + "min_x": 2704.665253525318, + "min_y": 5204.665543327486, + "max_x": 2717.4319009198025, + "max_y": 5205.78542467788, + "center": [ + 2711.04857722256, + 5205.2254840026835 + ] + }, + "raw_value": "VG-10440-300A-F1A-N", + "clean_value": "VG-10440-300A-F1A-N", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": 0 + } + }, + { + "entity_id": "562BDC", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2703.171657489614, + "min_y": 5203.53314296085, + "max_x": 2720.35657484431, + "max_y": 5206.646352626555, + "center": [ + 2711.764116166962, + 5205.089747793702 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2703.171657489614, + 5206.646352626555 + ], + [ + 2706.171657489615, + 5206.646352626555 + ], + [ + 2709.171657489615, + 5206.646352626555 + ], + [ + 2712.171657489614, + 5206.646352626555 + ], + [ + 2715.171657489614, + 5206.646352626555 + ], + [ + 2718.171657489615, + 5206.646352626555 + ], + [ + 2720.35657484431, + 5205.83126998125 + ], + [ + 2719.654701864711, + 5203.53314296085 + ], + [ + 2716.654701864711, + 5203.53314296085 + ], + [ + 2713.654701864711, + 5203.53314296085 + ], + [ + 2710.654701864711, + 5203.53314296085 + ], + [ + 2707.654701864711, + 5203.53314296085 + ], + [ + 2704.654701864711, + 5203.53314296085 + ], + [ + 2703.171657489614, + 5205.050098585753 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562C0B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2668.00065446089, + "min_y": 5246.996881225335, + "max_x": 2672.087173769261, + "max_y": 5250.535910759441, + "center": [ + 2670.0439141150755, + 5248.766395992388 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2672.087173769261, + 5246.996881225335 + ], + [ + 2670.043914115077, + 5250.535910759441 + ], + [ + 2668.00065446089, + 5246.996881225335 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562C0C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2669.618362540303, + "min_y": 5247.625121149996, + "max_x": 2670.5135149073794, + "max_y": 5249.11704176179, + "center": [ + 2670.065938723841, + 5248.371081455893 + ] + }, + "raw_value": "1", + "clean_value": "1", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "562C3B", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2720.499793308516, + "min_y": 5201.697442253497, + "max_x": 2724.586312616887, + "max_y": 5205.236471787602, + "center": [ + 2722.5430529627015, + 5203.46695702055 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2724.586312616887, + 5201.697442253497 + ], + [ + 2722.543052962703, + 5205.236471787602 + ], + [ + 2720.499793308516, + 5201.697442253497 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562C3C", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2722.117501387929, + "min_y": 5202.325682178158, + "max_x": 2723.0126537550054, + "max_y": 5203.817602789952, + "center": [ + 2722.5650775714676, + 5203.071642484055 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "562C9B", + "entity_type": "MTEXT", + "layer": "0", + "bbox": { + "min_x": 5179.364574509388, + "min_y": 5419.860799967974, + "max_x": 5262.964598362895, + "max_y": 5422.860799967974, + "center": [ + 5221.164586436142, + 5421.360799967974 + ] + }, + "raw_value": "<수정사{{\\l}}항{{\\L}}>\\P1. 기존설{{\\l}}비{{\\L}} E-9112 삭{{\\l}}제{{\\L}} (Chiller 사{{\\l}}용{{\\L}} x)", + "clean_value": "<수정사 \\l 항 > . 기존설 \\l 비 E-9112 삭 \\l 제 (Chiller 사 \\l 용 x)", + "coordinates": [], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562C9F", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5176.831120565704, + "min_y": 5371.451861376397, + "max_x": 5261.510287890837, + "max_y": 5421.158086133154, + "center": [ + 5219.170704228271, + 5396.304973754775 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5176.831120565704, + 5421.158086133154 + ], + [ + 5261.510287890837, + 5421.158086133154 + ], + [ + 5261.510287890837, + 5371.451861376397 + ], + [ + 5176.831120565704, + 5371.451861376397 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562CA1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 5435.404770888342, + "min_y": 5385.206693334176, + "max_x": 5463.476898303412, + "max_y": 5416.411004513861, + "center": [ + 5449.440834595876, + 5400.808848924018 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 5435.404770888342, + 5416.411004513861 + ], + [ + 5438.404770888342, + 5416.411004513861 + ], + [ + 5441.404770888341, + 5416.411004513861 + ], + [ + 5444.404770888342, + 5416.411004513861 + ], + [ + 5447.404770888342, + 5416.411004513861 + ], + [ + 5450.404770888342, + 5416.411004513861 + ], + [ + 5453.404770888342, + 5416.411004513861 + ], + [ + 5456.404770888342, + 5416.411004513861 + ], + [ + 5459.404770888341, + 5416.411004513861 + ], + [ + 5462.404770888341, + 5416.411004513861 + ], + [ + 5463.476898303412, + 5414.483131928932 + ], + [ + 5463.476898303412, + 5411.483131928932 + ], + [ + 5463.476898303412, + 5408.483131928932 + ], + [ + 5463.476898303412, + 5405.483131928932 + ], + [ + 5463.476898303412, + 5402.483131928931 + ], + [ + 5463.476898303412, + 5399.483131928931 + ], + [ + 5463.476898303412, + 5396.483131928931 + ], + [ + 5463.476898303412, + 5393.483131928931 + ], + [ + 5463.476898303412, + 5390.483131928931 + ], + [ + 5463.476898303412, + 5387.483131928931 + ], + [ + 5462.753336898168, + 5385.206693334176 + ], + [ + 5459.753336898168, + 5385.206693334176 + ], + [ + 5456.753336898167, + 5385.206693334176 + ], + [ + 5453.753336898167, + 5385.206693334176 + ], + [ + 5450.753336898167, + 5385.206693334176 + ], + [ + 5447.753336898167, + 5385.206693334176 + ], + [ + 5444.753336898168, + 5385.206693334176 + ], + [ + 5441.753336898168, + 5385.206693334176 + ], + [ + 5438.753336898168, + 5385.206693334176 + ], + [ + 5435.753336898168, + 5385.206693334176 + ], + [ + 5435.404770888342, + 5387.858127324349 + ], + [ + 5435.404770888342, + 5390.858127324349 + ], + [ + 5435.404770888342, + 5393.858127324349 + ], + [ + 5435.404770888342, + 5396.85812732435 + ], + [ + 5435.404770888342, + 5399.85812732435 + ], + [ + 5435.404770888342, + 5402.85812732435 + ], + [ + 5435.404770888342, + 5405.85812732435 + ], + [ + 5435.404770888342, + 5408.85812732435 + ], + [ + 5435.404770888342, + 5411.85812732435 + ], + [ + 5435.404770888342, + 5414.85812732435 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562D04", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4446.764767516707, + "min_y": 5180.355311146442, + "max_x": 4446.764767516707, + "max_y": 5181.408520639933, + "center": [ + 4446.764767516707, + 5180.881915893187 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.764767516707, + 5180.355311146442 + ], + [ + 4446.764767516707, + 5181.408520639933 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562D05", + "entity_type": "LINE", + "layer": "VV-BALL", + "bbox": { + "min_x": 4446.965287699261, + "min_y": 5180.362105733612, + "max_x": 4446.965287699261, + "max_y": 5181.415315227102, + "center": [ + 4446.965287699261, + 5180.888710480357 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.965287699261, + 5180.362105733612 + ], + [ + 4446.965287699261, + 5181.415315227102 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562D06", + "entity_type": "LINE", + "layer": "UTIL", + "bbox": { + "min_x": 4446.965287699261, + "min_y": 5180.884842148202, + "max_x": 4456.085571119031, + "max_y": 5180.884842148202, + "center": [ + 4451.525429409146, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.965287699261, + 5180.884842148202 + ], + [ + 4456.085571119031, + 5180.884842148202 + ] + ], + "properties": { + "color": 256, + "lineweight": -1 + } + }, + { + "entity_id": "562D07", + "entity_type": "LINE", + "layer": "0", + "bbox": { + "min_x": 4440.851413106868, + "min_y": 5180.884842148202, + "max_x": 4440.852851896124, + "max_y": 5180.884842148202, + "center": [ + 4440.852132501495, + 5180.884842148202 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4440.852851896124, + 5180.884842148202 + ], + [ + 4440.851413106868, + 5180.884842148202 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562D0A", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4446.296494202254, + "min_y": 5179.810704557937, + "max_x": 4447.606258428375, + "max_y": 5181.811071739649, + "center": [ + 4446.9513763153145, + 5180.810888148793 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4446.296494202254, + 5181.811071739649 + ], + [ + 4446.796494202255, + 5181.811071739649 + ], + [ + 4447.296494202254, + 5181.811071739649 + ], + [ + 4447.606258428375, + 5181.62083596577 + ], + [ + 4447.606258428375, + 5181.120835965771 + ], + [ + 4447.606258428375, + 5180.62083596577 + ], + [ + 4447.606258428375, + 5180.12083596577 + ], + [ + 4447.416389836209, + 5179.810704557937 + ], + [ + 4446.91638983621, + 5179.810704557937 + ], + [ + 4446.416389836209, + 5179.810704557937 + ], + [ + 4446.296494202254, + 5180.190808923981 + ], + [ + 4446.296494202254, + 5180.690808923981 + ], + [ + 4446.296494202254, + 5181.190808923981 + ], + [ + 4446.296494202254, + 5181.690808923981 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "562D39", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 4446.744318911767, + "min_y": 5176.578342725636, + "max_x": 4450.830838220138, + "max_y": 5180.117372259741, + "center": [ + 4448.787578565953, + 5178.3478574926885 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 4450.830838220138, + 5176.578342725636 + ], + [ + 4448.787578565953, + 5180.117372259741 + ], + [ + 4446.744318911767, + 5176.578342725636 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "562D3A", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 4448.362026991179, + "min_y": 5177.206582650296, + "max_x": 4449.257179358256, + "max_y": 5178.69850326209, + "center": [ + 4448.809603174717, + 5177.952542956193 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "563231", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1652.562169184708, + "min_y": 5279.43799923736, + "max_x": 1813.457893786227, + "max_y": 5332.501009871904, + "center": [ + 1733.0100314854676, + 5305.969504554632 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1813.457893786227, + 5282.667152906374 + ], + [ + 1810.457893786228, + 5282.667152906374 + ], + [ + 1807.86069409327, + 5283.069953213416 + ], + [ + 1807.86069409327, + 5286.069953213416 + ], + [ + 1807.86069409327, + 5289.069953213417 + ], + [ + 1807.86069409327, + 5292.069953213417 + ], + [ + 1807.86069409327, + 5295.069953213417 + ], + [ + 1807.86069409327, + 5298.069953213417 + ], + [ + 1807.86069409327, + 5301.069953213417 + ], + [ + 1807.86069409327, + 5304.069953213417 + ], + [ + 1807.86069409327, + 5307.069953213417 + ], + [ + 1807.86069409327, + 5310.069953213417 + ], + [ + 1807.86069409327, + 5313.069953213417 + ], + [ + 1807.86069409327, + 5316.069953213417 + ], + [ + 1807.86069409327, + 5319.069953213417 + ], + [ + 1807.86069409327, + 5322.069953213417 + ], + [ + 1807.86069409327, + 5325.069953213417 + ], + [ + 1807.86069409327, + 5328.069953213417 + ], + [ + 1807.86069409327, + 5331.069953213416 + ], + [ + 1806.291750751758, + 5332.501009871904 + ], + [ + 1803.291750751758, + 5332.501009871904 + ], + [ + 1800.291750751758, + 5332.501009871904 + ], + [ + 1797.291750751758, + 5332.501009871904 + ], + [ + 1794.291750751758, + 5332.501009871904 + ], + [ + 1791.291750751758, + 5332.501009871904 + ], + [ + 1788.291750751758, + 5332.501009871904 + ], + [ + 1785.291750751758, + 5332.501009871904 + ], + [ + 1782.291750751758, + 5332.501009871904 + ], + [ + 1779.291750751758, + 5332.501009871904 + ], + [ + 1776.291750751758, + 5332.501009871904 + ], + [ + 1773.291750751758, + 5332.501009871904 + ], + [ + 1770.291750751758, + 5332.501009871904 + ], + [ + 1767.291750751758, + 5332.501009871904 + ], + [ + 1764.291750751758, + 5332.501009871904 + ], + [ + 1761.291750751758, + 5332.501009871904 + ], + [ + 1758.291750751758, + 5332.501009871904 + ], + [ + 1755.291750751758, + 5332.501009871904 + ], + [ + 1752.291750751758, + 5332.501009871904 + ], + [ + 1749.291750751758, + 5332.501009871904 + ], + [ + 1746.291750751758, + 5332.501009871904 + ], + [ + 1743.291750751758, + 5332.501009871904 + ], + [ + 1740.291750751758, + 5332.501009871904 + ], + [ + 1737.291750751758, + 5332.501009871904 + ], + [ + 1734.291750751758, + 5332.501009871904 + ], + [ + 1731.291750751758, + 5332.501009871904 + ], + [ + 1728.291750751758, + 5332.501009871904 + ], + [ + 1725.291750751758, + 5332.501009871904 + ], + [ + 1722.291750751758, + 5332.501009871904 + ], + [ + 1719.291750751758, + 5332.501009871904 + ], + [ + 1716.291750751758, + 5332.501009871904 + ], + [ + 1713.291750751758, + 5332.501009871904 + ], + [ + 1710.291750751758, + 5332.501009871904 + ], + [ + 1707.291750751758, + 5332.501009871904 + ], + [ + 1704.291750751758, + 5332.501009871904 + ], + [ + 1701.291750751758, + 5332.501009871904 + ], + [ + 1698.291750751758, + 5332.501009871904 + ], + [ + 1695.291750751758, + 5332.501009871904 + ], + [ + 1692.291750751758, + 5332.501009871904 + ], + [ + 1689.291750751758, + 5332.501009871904 + ], + [ + 1686.291750751758, + 5332.501009871904 + ], + [ + 1683.291750751758, + 5332.501009871904 + ], + [ + 1680.291750751758, + 5332.501009871904 + ], + [ + 1677.291750751758, + 5332.501009871904 + ], + [ + 1674.291750751758, + 5332.501009871904 + ], + [ + 1671.291750751758, + 5332.501009871904 + ], + [ + 1668.291750751758, + 5332.501009871904 + ], + [ + 1665.291750751758, + 5332.501009871904 + ], + [ + 1662.291750751758, + 5332.501009871904 + ], + [ + 1659.291750751758, + 5332.501009871904 + ], + [ + 1656.291750751758, + 5332.501009871904 + ], + [ + 1653.291750751758, + 5332.501009871904 + ], + [ + 1652.562169184708, + 5330.230591438955 + ], + [ + 1652.902911019611, + 5327.571333273859 + ], + [ + 1655.902911019611, + 5327.571333273859 + ], + [ + 1658.902911019611, + 5327.571333273859 + ], + [ + 1661.902911019611, + 5327.571333273859 + ], + [ + 1664.902911019611, + 5327.571333273859 + ], + [ + 1667.902911019611, + 5327.571333273859 + ], + [ + 1670.902911019611, + 5327.571333273859 + ], + [ + 1673.902911019611, + 5327.571333273859 + ], + [ + 1676.902911019611, + 5327.571333273859 + ], + [ + 1679.902911019611, + 5327.571333273859 + ], + [ + 1682.902911019611, + 5327.571333273859 + ], + [ + 1685.902911019611, + 5327.571333273859 + ], + [ + 1688.902911019611, + 5327.571333273859 + ], + [ + 1691.902911019611, + 5327.571333273859 + ], + [ + 1694.90291101961, + 5327.571333273859 + ], + [ + 1697.902911019611, + 5327.571333273859 + ], + [ + 1700.902911019611, + 5327.571333273859 + ], + [ + 1703.902911019611, + 5327.571333273859 + ], + [ + 1706.902911019611, + 5327.571333273859 + ], + [ + 1709.902911019611, + 5327.571333273859 + ], + [ + 1712.902911019611, + 5327.571333273859 + ], + [ + 1715.902911019611, + 5327.571333273859 + ], + [ + 1718.902911019611, + 5327.571333273859 + ], + [ + 1721.902911019611, + 5327.571333273859 + ], + [ + 1724.902911019611, + 5327.571333273859 + ], + [ + 1727.902911019611, + 5327.571333273859 + ], + [ + 1730.902911019611, + 5327.571333273859 + ], + [ + 1733.902911019611, + 5327.571333273859 + ], + [ + 1736.902911019611, + 5327.571333273859 + ], + [ + 1739.902911019611, + 5327.571333273859 + ], + [ + 1742.90291101961, + 5327.571333273859 + ], + [ + 1745.902911019611, + 5327.571333273859 + ], + [ + 1748.902911019611, + 5327.571333273859 + ], + [ + 1751.902911019611, + 5327.571333273859 + ], + [ + 1754.902911019611, + 5327.571333273859 + ], + [ + 1757.902911019611, + 5327.571333273859 + ], + [ + 1760.902911019611, + 5327.571333273859 + ], + [ + 1763.902911019611, + 5327.571333273859 + ], + [ + 1766.902911019611, + 5327.571333273859 + ], + [ + 1769.902911019611, + 5327.571333273859 + ], + [ + 1772.902911019611, + 5327.571333273859 + ], + [ + 1775.902911019611, + 5327.571333273859 + ], + [ + 1778.902911019611, + 5327.571333273859 + ], + [ + 1781.902911019611, + 5327.571333273859 + ], + [ + 1784.902911019611, + 5327.571333273859 + ], + [ + 1787.902911019611, + 5327.571333273859 + ], + [ + 1790.902911019611, + 5327.571333273859 + ], + [ + 1793.902911019611, + 5327.571333273859 + ], + [ + 1796.902911019611, + 5327.571333273859 + ], + [ + 1799.902911019611, + 5327.571333273859 + ], + [ + 1802.902911019611, + 5327.571333273859 + ], + [ + 1804.136403528341, + 5325.804825782588 + ], + [ + 1804.136403528341, + 5322.804825782589 + ], + [ + 1804.136403528341, + 5319.804825782589 + ], + [ + 1804.136403528341, + 5316.804825782589 + ], + [ + 1804.136403528341, + 5313.804825782589 + ], + [ + 1804.136403528341, + 5310.804825782589 + ], + [ + 1804.136403528341, + 5307.804825782588 + ], + [ + 1804.136403528341, + 5304.804825782588 + ], + [ + 1804.136403528341, + 5301.804825782589 + ], + [ + 1804.136403528341, + 5298.804825782589 + ], + [ + 1804.136403528341, + 5295.804825782589 + ], + [ + 1804.136403528341, + 5292.804825782589 + ], + [ + 1804.136403528341, + 5289.804825782589 + ], + [ + 1804.136403528341, + 5286.804825782589 + ], + [ + 1804.136403528341, + 5283.804825782588 + ], + [ + 1804.136403528341, + 5280.804825782588 + ], + [ + 1805.769576983112, + 5279.43799923736 + ], + [ + 1808.769576983111, + 5279.43799923736 + ], + [ + 1811.769576983112, + 5279.43799923736 + ], + [ + 1813.457893786227, + 5280.749682434244 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "563260", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1651.861711856456, + "min_y": 5334.004098044961, + "max_x": 1655.948231164828, + "max_y": 5337.543127579067, + "center": [ + 1653.904971510642, + 5335.773612812014 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.948231164828, + 5334.004098044961 + ], + [ + 1653.904971510644, + 5337.543127579067 + ], + [ + 1651.861711856456, + 5334.004098044961 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "563261", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1653.47941993587, + "min_y": 5334.632337969622, + "max_x": 1654.3745723029465, + "max_y": 5336.124258581416, + "center": [ + 1653.9269961194082, + 5335.378298275519 + ] + }, + "raw_value": "4", + "clean_value": "4", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "563291", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1868.806661623028, + "min_y": 5337.906223279258, + "max_x": 1875.116162234002, + "max_y": 5339.49623076111, + "center": [ + 1871.9614119285152, + 5338.701227020184 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.806661623028, + 5339.49623076111 + ], + [ + 1871.806661623028, + 5339.49623076111 + ], + [ + 1874.806661623028, + 5339.49623076111 + ], + [ + 1875.116162234002, + 5337.906223279258 + ], + [ + 1872.116162234002, + 5337.906223279258 + ], + [ + 1869.116162234002, + 5337.906223279258 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5632BF", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2318.644671052703, + "min_y": 5338.522455302254, + "max_x": 2324.954171663677, + "max_y": 5340.112462784106, + "center": [ + 2321.7994213581896, + 5339.31745904318 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2318.644671052703, + 5340.112462784106 + ], + [ + 2321.644671052704, + 5340.112462784106 + ], + [ + 2324.644671052704, + 5340.112462784106 + ], + [ + 2324.954171663677, + 5338.522455302254 + ], + [ + 2321.954171663677, + 5338.522455302254 + ], + [ + 2318.954171663677, + 5338.522455302254 + ] + ], + "properties": { + "color": 6, + "lineweight": -1 + } + }, + { + "entity_id": "5632C0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2107.508188813326, + "min_y": 5370.259725699715, + "max_x": 2197.908381891476, + "max_y": 5396.548712429758, + "center": [ + 2152.7082853524007, + 5383.404219064736 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2107.508188813326, + 5396.548712429758 + ], + [ + 2197.908381891476, + 5396.548712429758 + ], + [ + 2197.908381891476, + 5370.259725699715 + ], + [ + 2107.508188813326, + 5370.259725699715 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5632C1", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1655.067543526785, + "min_y": 5364.639858513788, + "max_x": 1783.431736544576, + "max_y": 5403.089962413126, + "center": [ + 1719.2496400356804, + 5383.864910463457 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1655.067543526785, + 5403.089962413126 + ], + [ + 1783.431736544576, + 5403.089962413126 + ], + [ + 1783.431736544576, + 5364.639858513788 + ], + [ + 1655.067543526785, + 5364.639858513788 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5632F0", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 1864.585214695051, + "min_y": 5341.324902838287, + "max_x": 1868.671734003422, + "max_y": 5344.863932372394, + "center": [ + 1866.6284743492365, + 5343.09441760534 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 1868.671734003422, + 5341.324902838287 + ], + [ + 1866.628474349237, + 5344.863932372394 + ], + [ + 1864.585214695051, + 5341.324902838287 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "5632F1", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 1866.202922774464, + "min_y": 5341.95314276295, + "max_x": 1867.0980751415404, + "max_y": 5343.445063374744, + "center": [ + 1866.6504989580021, + 5342.699103068847 + ] + }, + "raw_value": "5", + "clean_value": "5", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + }, + { + "entity_id": "563320", + "entity_type": "LWPOLYLINE", + "layer": "0", + "bbox": { + "min_x": 2316.263154987633, + "min_y": 5341.207998588862, + "max_x": 2320.349674296005, + "max_y": 5344.747028122966, + "center": [ + 2318.306414641819, + 5342.977513355914 + ] + }, + "raw_value": null, + "clean_value": null, + "coordinates": [ + [ + 2320.349674296005, + 5341.207998588862 + ], + [ + 2318.30641464182, + 5344.747028122966 + ], + [ + 2316.263154987633, + 5341.207998588862 + ] + ], + "properties": { + "color": 1, + "lineweight": -1 + } + }, + { + "entity_id": "563321", + "entity_type": "TEXT", + "layer": "0", + "bbox": { + "min_x": 2317.880863067046, + "min_y": 5341.836238513522, + "max_x": 2318.776015434122, + "max_y": 5343.328159125316, + "center": [ + 2318.328439250584, + 5342.582198819419 + ] + }, + "raw_value": "2", + "clean_value": "2", + "coordinates": [], + "properties": { + "color": 2, + "lineweight": -1 + } + } +] \ No newline at end of file diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase2.py b/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase2.py new file mode 100644 index 0000000..60cd776 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase2.py @@ -0,0 +1,61 @@ +import json +import sys +import os + +# 경로 설정을 위해 현재 파일의 디렉토리를 sys.path에 추가 +current_dir = os.path.dirname(os.path.abspath(__file__)) +sys.path.append(current_dir) + +from pid_geometric_extractor import PidGeometricExtractor +from pid_topology_builder import PidTopologyBuilder, analyze_impact + +def run_pipeline(): + # 1. 경로 설정 (현재 디렉토리 기준 상대 경로) + input_dxf = os.path.join(current_dir, "No-10_Plant_PID.dxf") + geo_json_path = os.path.join(current_dir, "shared_geo_data.json") + graph_json_path = os.path.join(current_dir, "pid_graph_topology.json") + + print("--- Phase 1: Geometric Extraction ---") + try: + extractor = PidGeometricExtractor(input_dxf) + extractor.extract_and_save(geo_json_path) + print(f"Geometric data saved to {geo_json_path}") + except Exception as e: + print(f"Phase 1 failed: {e}") + return + + print("\n--- Phase 2: Topology Modeling ---") + try: + with open(geo_json_path, 'r', encoding='utf-8') as f: + geometric_data = json.load(f) + + # 테스트를 위해 all_extracted_tags는 빈 리스트로 전달 + # config를 None으로 전달하여 topology_config.json 설정을 사용하도록 함 + builder = PidTopologyBuilder( + geometric_data=geometric_data, + all_extracted_tags=[], + config=None + ) + builder.build_graph() + + # 위상 검증 + validation = builder.validate_topology() + print(f"Topology Validation: {validation}") + + # 그래프 저장 + builder.save_graph(graph_json_path) + print(f"Graph topology saved to {graph_json_path}") + + # 영향도 분석 테스트 (노드가 존재하는 경우) + if validation['node_count'] > 0: + sample_node = list(builder.G.nodes())[0] + impacted = analyze_impact(builder.G, sample_node) + print(f"Impact analysis for node {sample_node}: {impacted}") + + except Exception as e: + print(f"Phase 2 failed: {e}") + import traceback + traceback.print_exc() + +if __name__ == "__main__": + run_pipeline() diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase3.py b/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase3.py new file mode 100644 index 0000000..af7500f --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/test_pipeline_phase3.py @@ -0,0 +1,134 @@ +import json +import sys +import os +import asyncio +import networkx as nx + +# 경로 설정을 위해 현재 파일의 디렉토리를 sys.path에 추가 +current_dir = os.path.dirname(os.path.abspath(__file__)) +sys.path.append(current_dir) + +from pid_geometric_extractor import PidGeometricExtractor +from pid_topology_builder import PidTopologyBuilder +from pid_intelligent_mapper import IntelligentMapper, validate_mapping + +async def run_full_pipeline(): + # 1. 경로 설정 + input_dxf = os.path.join(current_dir, "No-10_Plant_PID.dxf") + geo_json_path = os.path.join(current_dir, "shared_geo_data.json") + graph_json_path = os.path.join(current_dir, "pid_graph_topology.json") + mapping_result_path = os.path.join(current_dir, "pid_final_mapping.json") + + # --- Phase 1: Geometric Extraction --- + print("\n--- Phase 1: Geometric Extraction ---") + try: + extractor = PidGeometricExtractor(input_dxf) + extractor.extract_and_save(geo_json_path) + print(f"Geometric data saved to {geo_json_path}") + except Exception as e: + print(f"Phase 1 failed: {e}") + return + + # --- Phase 2: Topology Modeling --- + print("\n--- Phase 2: Topology Modeling ---") + try: + with open(geo_json_path, 'r', encoding='utf-8') as f: + geometric_data = json.load(f) + + builder = PidTopologyBuilder( + geometric_data=geometric_data, + all_extracted_tags=[], + config={'dist_threshold': 50.0, 'tag_threshold': 100.0} + ) + builder.build_graph() + builder.save_graph(graph_json_path) + print(f"Graph topology saved to {graph_json_path}") + except Exception as e: + print(f"Phase 2 failed: {e}") + return + + # --- Phase 3: Intelligent Mapping --- + print("\n--- Phase 3: Intelligent Mapping ---") + try: + # 1. 그래프 로드 + with open(graph_json_path, 'r', encoding='utf-8') as f: + graph_data = json.load(f) + + # NetworkX 그래프 복원 (node_link_data 형식 대응) + from networkx.readwrite import json_graph + G = json_graph.node_link_graph(graph_data) + + # 2. 시스템 태그 리스트 (실제로는 API나 DB에서 가져와야 함) + # 테스트를 위한 가상 태그 리스트 + system_tags = [ + "PT-101.PV", "PT-102.PV", "FT-201.PV", "LT-301.PV", + "P-101.STATUS", "P-101.SPEED", "V-101.OPEN", "V-101.CLOSE", + "T-101.TEMP", "TK-101.LEVEL" + ] + + # 3. 매퍼 초기화 (API Key는 환경변수나 설정파일에서 가져오는 것을 권장) + api_key = os.getenv("OPENAI_API_KEY", "your-api-key-here") + mapper = IntelligentMapper(G, system_tags, api_key=api_key) + + # 4. 노드 분류 및 매핑 실행 + nodes = list(G.nodes()) + transmitter_nodes = [n for n in nodes if "Transmitter" in G.nodes[n].get('type', '')] + valve_nodes = [n for n in nodes if "Valve" in G.nodes[n].get('type', '')] + equipment_nodes = [n for n in nodes if "Equipment" in G.nodes[n].get('type', '') or "Pump" in G.nodes[n].get('type', '')] + + print(f"Mapping {len(transmitter_nodes)} transmitters, {len(valve_nodes)} valves, {len(equipment_nodes)} equipment...") + + # 비동기 실행 + results = await asyncio.gather( + mapper.extract_transmitters(transmitter_nodes), + mapper.extract_valves(valve_nodes), + mapper.extract_equipment(equipment_nodes) + ) + + # 결과 통합 + final_mapping_raw = {} + for res in results: + final_mapping_raw.update(res) + + # 5. 검증 및 최종 결과 정리 + # 가상 메타데이터 (실제로는 시스템에서 조회) + mock_metadata = { + "PT-101.PV": {"unit": "bar", "description": "Pressure Transmitter 101"}, + "P-101.STATUS": {"unit": "", "description": "Pump 101 Status"}, + } + + final_results = [] + for node_id, mapping in final_mapping_raw.items(): + symbol_type = G.nodes[node_id].get('type', 'Unknown') + tag = mapping.resolved_tag + meta = mock_metadata.get(tag, {"unit": "", "description": ""}) + + is_valid, val_msg = validate_mapping(tag, symbol_type, meta) + + final_results.append({ + "node_id": node_id, + "symbol_type": symbol_type, + "original_text": G.nodes[node_id].get('value', ''), + "resolved_tag": tag, + "confidence": mapping.confidence, + "reason": mapping.reason, + "validation": { + "is_valid": is_valid, + "message": val_msg + } + }) + + # 6. 결과 저장 + with open(mapping_result_path, 'w', encoding='utf-8') as f: + json.dump(final_results, f, indent=4, ensure_ascii=False) + + print(f"Final mapping results saved to {mapping_result_path}") + print(f"Successfully mapped {len(final_results)} nodes.") + + except Exception as e: + print(f"Phase 3 failed: {e}") + import traceback + traceback.print_exc() + +if __name__ == "__main__": + asyncio.run(run_full_pipeline()) diff --git a/futurePlan/End-to-End P&ID Graph Pipeline/topology_config.json b/futurePlan/End-to-End P&ID Graph Pipeline/topology_config.json new file mode 100644 index 0000000..ddca062 --- /dev/null +++ b/futurePlan/End-to-End P&ID Graph Pipeline/topology_config.json @@ -0,0 +1,5 @@ +{ + "dist_threshold": 20.0, + "tag_threshold": 60.0, + "merge_threshold": 2.0 +} diff --git a/mcp-server/pipeline/__pycache__/analyzer.cpython-312.pyc b/mcp-server/pipeline/__pycache__/analyzer.cpython-312.pyc new file mode 100644 index 0000000..6b1192d Binary files /dev/null and b/mcp-server/pipeline/__pycache__/analyzer.cpython-312.pyc differ diff --git a/mcp-server/pipeline/__pycache__/extractor.cpython-312.pyc b/mcp-server/pipeline/__pycache__/extractor.cpython-312.pyc new file mode 100644 index 0000000..a297097 Binary files /dev/null and b/mcp-server/pipeline/__pycache__/extractor.cpython-312.pyc differ diff --git a/mcp-server/pipeline/__pycache__/mapper.cpython-312.pyc b/mcp-server/pipeline/__pycache__/mapper.cpython-312.pyc new file mode 100644 index 0000000..3bda39d Binary files /dev/null and b/mcp-server/pipeline/__pycache__/mapper.cpython-312.pyc differ diff --git a/mcp-server/pipeline/__pycache__/topology.cpython-312.pyc b/mcp-server/pipeline/__pycache__/topology.cpython-312.pyc new file mode 100644 index 0000000..5fc3143 Binary files /dev/null and b/mcp-server/pipeline/__pycache__/topology.cpython-312.pyc differ diff --git a/mcp-server/pipeline/analyzer.py b/mcp-server/pipeline/analyzer.py new file mode 100644 index 0000000..073ea65 --- /dev/null +++ b/mcp-server/pipeline/analyzer.py @@ -0,0 +1,78 @@ +import networkx as nx +from typing import Dict, List, Optional +import json +import os + +class PidAnalysisEngine: + def __init__(self, topology_file: str, mapping_file: str): + self.topology_file = topology_file + self.mapping_file = mapping_file + self.graph = nx.DiGraph() + self.tag_mapping = {} + self.load_data() + + def load_data(self): + """그래프 및 매핑 데이터 로드""" + try: + if os.path.exists(self.topology_file): + with open(self.topology_file, 'r', encoding='utf-8') as f: + data = json.load(f) + # NetworkX 그래프 생성 (node_link_data 형식 가정) + for node in data.get('nodes', []): + self.graph.add_node(node['id'], **node) + for edge in data.get('links', []): # node_link_data는 'links' 사용 + self.graph.add_edge(edge['source'], edge['target'], **edge) + + if os.path.exists(self.mapping_file): + with open(self.mapping_file, 'r', encoding='utf-8') as f: + self.tag_mapping = json.load(f) + except Exception as e: + print(f"Error loading analysis data: {e}") + + def get_propagation_path_with_flow(self, start_node: str): + """ + 엣지의 방향성(flow_direction)과 상태(valve_status)를 고려한 실제 영향 전파 경로 추출 + """ + if start_node not in self.graph: + return {} + + # 1. 유효한 엣지만 필터링 (방향이 forward이고 밸브가 open인 경로) + valid_edges = [ + (u, v) for u, v, d in self.graph.edges(data=True) + if d.get('flow_direction', 'forward') == 'forward' + and d.get('valve_status', 'open') == 'open' + ] + + filtered_graph = nx.DiGraph() + filtered_graph.add_edges_from(valid_edges) + + # 2. 전파 단계별 노드 추출 (BFS) + try: + propagation_levels = nx.single_source_shortest_path_length(filtered_graph, start_node) + return propagation_levels + except Exception: + return {} + + def analyze_impact(self, node_id: str): + """특정 노드 장애 시 영향도 분석 결과 반환""" + if node_id not in self.graph: + return {"success": False, "error": f"Node {node_id} not found in topology"} + + impact_map = self.get_propagation_path_with_flow(node_id) + + # 경로 추출 (시각화를 위해 모든 영향 노드로의 최단 경로 포함) + paths = [] + for target in impact_map.keys(): + if target != node_id: + try: + path = nx.shortest_path(self.graph, source=node_id, target=target) + paths.append(path) + except nx.NetworkXNoPath: + continue + + return { + "success": True, + "startNode": node_id, + "impactedNodes": impact_map, + "paths": paths + } diff --git a/mcp-server/pipeline/extractor.py b/mcp-server/pipeline/extractor.py new file mode 100644 index 0000000..0394c2d --- /dev/null +++ b/mcp-server/pipeline/extractor.py @@ -0,0 +1,173 @@ +import ezdxf +import re +import json +from typing import List, Optional, Tuple, Union +from pydantic import BaseModel, Field +from shapely.geometry import box, Point + +# --- Data Models --- + +class BoundingBox(BaseModel): + min_x: float + min_y: float + max_x: float + max_y: float + center: Tuple[float, float] + +class GeometricEntity(BaseModel): + entity_id: str + entity_type: str # TEXT, MTEXT, LINE, LWPOLYLINE, CIRCLE, ARC + layer: str + bbox: BoundingBox + raw_value: Optional[str] = None + clean_value: Optional[str] = None + coordinates: List[Union[Tuple[float, float], List[float]]] = Field(default_factory=list) + properties: dict = Field(default_factory=dict) + +# --- Extractor Implementation --- + +class PidGeometricExtractor: + def __init__(self, file_path: str): + try: + self.doc = ezdxf.readfile(file_path) + self.msp = self.doc.modelspace() + except Exception as e: + raise IOError(f"Failed to load DXF file: {e}") + + def clean_text(self, text: str) -> str: + """ + DXF 특수 제어 문자 및 MTEXT 포맷팅을 제거하여 정제된 텍스트 반환. + """ + if not text: + return "" + + # 1. MTEXT 포맷팅 및 제어 문자 제거 (\P, \W, \L, \A, \C, \H, \S, \T 등) + text = re.sub(r'\\([P|W|L|A|C|H|S|T])\d*;?', ' ', text) + + # 2. 중괄호 { } 제거 + text = re.sub(r'[\{\}]', ' ', text) + + # 3. DXF 특수 제어 문자 제거 (%%U: Underline, %%O: Overline, %%S: Strikethrough, %%R: Registered) + text = re.sub(r'%%[U|O|S|R]', ' ', text) + + # 4. 불필요한 특수 기호 및 반복되는 공백 정제 + text = re.sub(r'\s+', ' ', text).strip() + + return text + + def get_bbox(self, entity) -> Optional[BoundingBox]: + """ + 엔티티 타입별로 동적인 Bounding Box를 계산하여 반환. + """ + try: + if entity.dxftype() == 'TEXT': + p = entity.dxf.insert + h = entity.dxf.height + # 텍스트 길이에 따른 대략적인 너비 계산 (글자수 * 높이 * 0.6) + width = len(entity.dxf.text) * h * 0.6 + return self._create_bbox(p.x, p.y, p.x + width, p.y + h) + + elif entity.dxftype() == 'MTEXT': + p = entity.dxf.insert + h = entity.dxf.char_height if hasattr(entity.dxf, 'char_height') else 2.5 + w = entity.dxf.width if entity.dxf.width > 0 else len(entity.text) * h * 0.6 + return self._create_bbox(p.x, p.y, p.x + w, p.y + h) + + elif entity.dxftype() == 'LINE': + start = entity.dxf.start + end = entity.dxf.end + return self._create_bbox( + min(start.x, end.x), min(start.y, end.y), + max(start.x, end.x), max(start.y, end.y) + ) + + elif entity.dxftype() == 'LWPOLYLINE': + points = entity.get_points() + if not points: return None + xs = [p[0] for p in points] + ys = [p[1] for p in points] + return self._create_bbox(min(xs), min(ys), max(xs), max(ys)) + + elif entity.dxftype() in ('CIRCLE', 'ARC'): + center = entity.dxf.center + radius = entity.dxf.radius + return self._create_bbox( + center.x - radius, center.y - radius, + center.x + radius, center.y + radius + ) + + except Exception as e: + print(f"Error calculating bbox for {entity.dxftype()} ({entity.dxf.handle}): {e}") + return None + + def _create_bbox(self, min_x, min_y, max_x, max_y) -> BoundingBox: + return BoundingBox( + min_x=min_x, + min_y=min_y, + max_x=max_x, + max_y=max_y, + center=((min_x + max_x) / 2, (min_y + max_y) / 2) + ) + + def extract_and_save(self, output_path: str): + """ + 기하학적 데이터를 추출하여 JSON 파일로 저장. + """ + results = [] + for entity in self.msp: + bbox_obj = self.get_bbox(entity) + if not bbox_obj: + continue + + raw_text = "" + if entity.dxftype() == 'TEXT': + raw_text = entity.dxf.text + elif entity.dxftype() == 'MTEXT': + raw_text = entity.text + + # 좌표 추출 (3D 좌표를 2D로 변환) + coords = [] + if hasattr(entity, 'get_points'): + # ezdxf의 get_points()는 (x, y, z) 튜플 리스트를 반환함 + coords = [(p[0], p[1]) for p in entity.get_points()] + elif entity.dxftype() == 'LINE': + coords = [(entity.dxf.start.x, entity.dxf.start.y), (entity.dxf.end.x, entity.dxf.end.y)] + elif entity.dxftype() in ('CIRCLE', 'ARC'): + coords = [(entity.dxf.center.x, entity.dxf.center.y)] + + entity_data = GeometricEntity( + entity_id=entity.dxf.handle, + entity_type=entity.dxftype(), + layer=entity.dxf.layer, + bbox=bbox_obj, + raw_value=raw_text if raw_text else None, + clean_value=self.clean_text(raw_text) if raw_text else None, + coordinates=coords, + properties={ + "color": entity.dxf.color, + "lineweight": entity.dxf.lineweight if hasattr(entity.dxf, 'lineweight') else None, + } + ) + results.append(entity_data.model_dump()) + + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(results, f, ensure_ascii=False, indent=4) + + return output_path + +# --- Proximity Utilities --- + +def is_near(bbox_a: BoundingBox, bbox_b: BoundingBox, threshold=5.0) -> bool: + """ + 두 Bounding Box 간의 최단 거리가 임계값 이내인지 확인. + shapely box를 사용하여 거리 계산. + """ + box_a = box(bbox_a.min_x, bbox_a.min_y, bbox_a.max_x, bbox_a.max_y) + box_b = box(bbox_b.min_x, bbox_b.min_y, bbox_b.max_x, bbox_b.max_y) + return box_a.distance(box_b) <= threshold + +def is_inside(point: Tuple[float, float], bbox: BoundingBox) -> bool: + """ + 특정 점이 Bounding Box 내부에 있는지 확인. + """ + return (bbox.min_x <= point[0] <= bbox.max_x) and (bbox.min_y <= point[1] <= bbox.max_y) diff --git a/mcp-server/pipeline/mapper.py b/mcp-server/pipeline/mapper.py new file mode 100644 index 0000000..56f5d5f --- /dev/null +++ b/mcp-server/pipeline/mapper.py @@ -0,0 +1,122 @@ +import networkx as nx +import asyncio +import json +from typing import List, Optional, Dict, Any, Tuple +from pydantic import BaseModel, Field +from rapidfuzz import process, fuzz +from openai import AsyncOpenAI + +# --- 응답 구조화를 위한 Pydantic 모델 --- +class MappingResult(BaseModel): + resolved_tag: str = Field(..., description="The final mapped system tag") + reason: str = Field(..., description="Reason for this mapping based on context") + confidence: float = Field(..., ge=0.0, le=1.0, description="Confidence score from 0 to 1") + +class IntelligentMapper: + def __init__(self, graph: nx.Graph, system_tags: List[str], api_client: Optional[AsyncOpenAI] = None): + self.graph = graph # Phase 2에서 생성된 NetworkX 그래프 + self.system_tags = system_tags # Experion 시스템의 전체 태그 리스트 + self.client = api_client + + def get_node_context(self, node_id: str) -> str: + """노드의 주변 위상 정보를 텍스트로 변환""" + if not self.graph.has_node(node_id): + return "Node not found in graph" + + neighbors = list(self.graph.neighbors(node_id)) + context = [] + for n in neighbors: + attr = self.graph.nodes[n] + val = attr.get('value', n) + typ = attr.get('type', 'Unknown') + context.append(f"Connected to {val} (Type: {typ})") + + return ", ".join(context) if context else "No connected neighbors" + + async def _resolve_generic(self, node_id: str, category_prompt: str) -> MappingResult: + """공통 매핑 로직 (비동기 + 구조화 응답)""" + if not self.client: + return MappingResult(resolved_tag="UNKNOWN", reason="API Client not provided", confidence=0.0) + + # Phase 2에서 'value'에 clean_value가 저장됨 + node_data = self.graph.nodes.get(node_id, {}) + tag_text = node_data.get('value', '') + + # 1차 후보 추출 (RapidFuzz) + candidates = process.extract(tag_text, self.system_tags, scorer=fuzz.WRatio, limit=5) + context = self.get_node_context(node_id) + + prompt = f""" + {category_prompt} + P&ID 도면의 태그 '{tag_text}'를 실제 시스템 태그와 매핑해야 합니다. + 위상 맥락: {context} + 후보 리스트: {candidates} + + 반드시 다음 JSON 형식으로만 응답하세요: + {{ + "resolved_tag": "태그명 또는 UNKNOWN", + "reason": "매핑 이유", + "confidence": 0.0~1.0 + }} + """ + + try: + response = await self.client.chat.completions.create( + model="Qwen/Qwen3-Coder-Next-FP8", # MCP 서버 설정 모델 사용 + messages=[{"role": "user", "content": prompt}], + response_format={ "type": "json_object" } + ) + raw_content = response.choices[0].message.content + return MappingResult.model_validate_json(raw_content) + except Exception as e: + print(f"Error resolving node {node_id}: {e}") + return MappingResult(resolved_tag="UNKNOWN", reason=f"Error: {str(e)}", confidence=0.0) + + # --- 전문화된 Worker 함수들 --- + async def extract_transmitters(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 계측기 전문 엔지니어입니다. 특히 Pressure/Flow/Level Transmitter 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + + async def extract_valves(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 밸브 및 액추에이터 전문 엔지니어입니다. 밸브의 개폐 상태 및 제어 태그 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + + async def extract_equipment(self, node_ids: List[str]) -> Dict[str, MappingResult]: + prompt = "당신은 공정 설비 전문 엔지니어입니다. 펌프, 탱크, 열교환기 등의 메인 설비 태그 매핑에 특화되어 있습니다." + tasks = [self._resolve_generic(nid, prompt) for nid in node_ids] + results = await asyncio.gather(*tasks) + return dict(zip(node_ids, results)) + +def validate_mapping(resolved_tag: str, symbol_type: str, tag_metadata: Dict[str, Any]) -> Tuple[bool, str]: + """심볼 타입과 실제 태그 메타데이터의 엄격한 일치 여부 검증""" + if resolved_tag == "UNKNOWN": + return False, "Tag not resolved" + + unit_map = { + "Pressure Transmitter": ["bar", "psi", "kPa", "Pa"], + "Flow Meter": ["m3/h", "lpm", "kg/h"], + "Temperature Sensor": ["°C", "C", "K", "°F"] + } + + actual_unit = tag_metadata.get('unit', '').strip() + allowed_units = unit_map.get(symbol_type, []) + + if actual_unit and actual_unit in allowed_units: + return True, "Unit Match" + + actual_desc = tag_metadata.get('description', '').lower() + expected_keywords = { + "Pressure Transmitter": ["pressure", "press"], + "Flow Meter": ["flow", "flowrate"], + "Temperature Sensor": ["temp", "temperature"] + } + + keywords = expected_keywords.get(symbol_type, []) + if any(kw in actual_desc for kw in keywords): + return True, "Description Match (Unit Missing)" + + return False, "Mismatch: Symbol type and Tag metadata do not align" diff --git a/mcp-server/pipeline/topology.py b/mcp-server/pipeline/topology.py new file mode 100644 index 0000000..3dc7899 --- /dev/null +++ b/mcp-server/pipeline/topology.py @@ -0,0 +1,123 @@ +import networkx as nx +from shapely.geometry import box, Point, LineString +import json +from typing import List, Dict, Any, Optional, Tuple + +class PidTopologyBuilder: + def __init__(self, geometric_data: List[Dict[str, Any]], all_extracted_tags: Optional[List[Dict[str, Any]]] = None, config: Optional[Dict[str, float]] = None): + """ + - geometric_data: Phase 1에서 추출된 기하학적 데이터 (List of dicts) + - all_extracted_tags: 통합된 태그 리스트 + - config: {'dist_threshold': 50.0, 'tag_threshold': 100.0} 등 설정값 + """ + self.data = geometric_data + self.all_tags = all_extracted_tags if all_extracted_tags else [] + self.config = config if config else {'dist_threshold': 50.0, 'tag_threshold': 100.0} + self.G = nx.DiGraph() # 방향성 그래프 생성 + + def build_graph(self): + # 1. 모든 객체를 노드로 추가 + for item in self.data: + bbox_vals = item['bbox'] + # BoundingBox 모델의 필드명에 맞춰 추출 (min_x, min_y, max_x, max_y) + bbox_geom = box(bbox_vals['min_x'], bbox_vals['min_y'], bbox_vals['max_x'], bbox_vals['max_y']) + + self.G.add_node(item['entity_id'], + type=item['entity_type'], + bbox=bbox_geom, + value=item.get('clean_value'), + layer=item.get('layer')) + + # 2. 분산 추출된 태그 통합 및 노드 추가 + for tag in self.all_tags: + bbox_vals = tag['bbox'] + bbox_geom = box(bbox_vals['min_x'], bbox_vals['min_y'], bbox_vals['max_x'], bbox_vals['max_y']) + self.G.add_node(tag['entity_id'], + type='TEXT', + bbox=bbox_geom, + value=tag.get('clean_value') or tag.get('tagName')) + + # 3. 태그-설비 논리적 연결 (Association) + tags = [n for n, d in self.G.nodes(data=True) if d['type'] == 'TEXT'] + equipments = [n for n, d in self.G.nodes(data=True) if d['type'] not in ['TEXT', 'LINE', 'LWPOLYLINE']] + + for tag in tags: + best_match = self._find_nearest_equipment(tag, equipments) + if best_match: + self.G.add_edge(tag, best_match, relation='associated_with') + + # 4. 배관 기반 물리적 연결 (Pipe) [개선됨: End-point 기반] + lines = [n for n, d in self.G.nodes(data=True) if d['type'] in ['LINE', 'LWPOLYLINE']] + for line_id in lines: + original_item = next((item for item in self.data if item['entity_id'] == line_id), None) + if not original_item or not original_item.get('coordinates'): + continue + + coords = original_item['coordinates'] + line_geom = LineString(coords) + endpoints = [line_geom.coords[0], line_geom.coords[-1]] + + connected_nodes = [] + for pt in endpoints: + p = Point(pt) + for eq_id in equipments: + if self.G.nodes[eq_id]['bbox'].distance(p) < self.config['dist_threshold']: + connected_nodes.append(eq_id) + + # 중복 제거 + connected_nodes = list(set(connected_nodes)) + + if len(connected_nodes) >= 2: + # 방향성 추론 로직 (단순화: 첫 번째 발견된 설비 -> 두 번째 발견된 설비) + self.G.add_edge(connected_nodes[0], connected_nodes[1], relation='pipe') + elif len(connected_nodes) == 1: + pass + + def _find_nearest_equipment(self, tag_id, equipment_ids): + tag_bbox = self.G.nodes[tag_id]['bbox'] + min_dist = float('inf') + nearest = None + for eq_id in equipment_ids: + eq_bbox = self.G.nodes[eq_id]['bbox'] + dist = tag_bbox.distance(eq_bbox) + if dist < min_dist: + min_dist = dist + nearest = eq_id + return nearest if min_dist < self.config['tag_threshold'] else None + + def validate_topology(self): + """위상 무결성 검증""" + isolated = list(nx.isolates(self.G)) + return { + "isolated_nodes": isolated, + "node_count": self.G.number_of_nodes(), + "edge_count": self.G.number_of_edges() + } + + def save_graph(self, output_path: str): + """그래프 구조를 JSON 형태로 저장""" + from networkx.readwrite import json_graph + data = json_graph.node_link_data(self.G) + + # shapely geometry 객체는 JSON 직렬화가 안 되므로 변환 + for node in data['nodes']: + if 'bbox' in node: + bbox = node['bbox'] + node['bbox'] = { + 'min_x': bbox.bounds[0], + 'min_y': bbox.bounds[1], + 'max_x': bbox.bounds[2], + 'max_y': bbox.bounds[3] + } + + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=4) + return output_path + +def analyze_impact(graph, start_node): + """특정 설비 장애 시 하류(Downstream)에 영향을 받는 모든 노드 추출""" + if start_node not in graph: + return [] + # BFS를 통해 도달 가능한 모든 노드 탐색 + impacted_nodes = nx.descendants(graph, start_node) + return list(impacted_nodes) diff --git a/mcp-server/server.py b/mcp-server/server.py index 953de34..4f03da5 100644 --- a/mcp-server/server.py +++ b/mcp-server/server.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ ExperionCrawler Unified MCP Server -- RAG: Qdrant + Ollama nomic-embed-text + vLLM Qwen3-Coder-Next-FP8 +- RAG: Qdrant + Ollama nomic-embed-text + vLLM Qwen/Qwen3-Coder-Next-FP8 - NL2SQL: 자연어 → LLM SQL 생성 → PostgreSQL 실행 - 사용처: stdio 모드 (기본): Claude Code MCP / Roo Code MCP @@ -41,6 +41,15 @@ mcp = FastMCP( stateless_http=True, ) +# Pipeline Imports +from pipeline.extractor import PidGeometricExtractor +from pipeline.topology import PidTopologyBuilder +from pipeline.mapper import IntelligentMapper +from pipeline.analyzer import PidAnalysisEngine +import networkx as nx +import os +import asyncio + # ── 임베딩 (Ollama) ─────────────────────────────────────────────────────────── def _embed(text: str) -> list[float]: @@ -53,7 +62,7 @@ def _embed(text: str) -> list[float]: resp.raise_for_status() return resp.json()["embedding"] -# ── LLM (vLLM / Qwen3-Coder-Next-FP8) ─────────────────────────────────────── +# ── LLM (vLLM / Qwen/Qwen3-Coder-Next-FP8) ───────────────────────────────────── @lru_cache(maxsize=1) def _llm(): @@ -302,7 +311,7 @@ def search_r530_docs(query: str, top_k: int = 5) -> str: @mcp.tool() def ask_iiot_llm(question: str, context: str = "") -> str: - """Qwen3-Coder-Next에게 IIoT/OPC UA 질문 (컨텍스트 없이 LLM 직접 질문). + """Qwen/Qwen3-Coder-Next-FP8에게 IIoT/OPC UA 질문 (컨텍스트 없이 LLM 직접 질문). 사용 시점: search_codebase 또는 search_r530_docs 결과를 context로 넘겨 종합 분석·답변이 필요할 때. 또는 일반 IIoT/OPC UA 개념 질문. @@ -331,7 +340,7 @@ def ask_iiot_llm(question: str, context: str = "") -> str: @mcp.tool() def rag_query(question: str, search_code: bool = False, search_docs: bool = True) -> str: - """검색 → Qwen3-Coder-Next 답변 생성 (통합 RAG). + """검색 → Qwen/Qwen3-Coder-Next-FP8 답변 생성 (통합 RAG). 기본값: Experion HS R530 공식 문서만 검색 (search_docs=True, search_code=False). ExperionCrawler 코드도 함께 보려면 search_code=True 추가. @@ -938,6 +947,108 @@ def parse_pid_pdf(filepath: str, use_ocr: bool = True) -> str: return json.dumps({"success": False, "error": f"PDF 파싱 실패: {e}"}, ensure_ascii=False) +@mcp.tool() +async def build_pid_graph_parallel(filepath: str) -> str: + """ + 분산 처리 기법을 적용한 P&ID 그래프 생성 툴. + 전처리 -> 병렬 분산 추출 -> 위상 모델링 -> 저장 과정을 수행합니다. + """ + try: + # 1. 전처리 (Phase 1: Geometric Extraction) + extractor = PidGeometricExtractor(filepath) + geo_data_path = f"mcp-server/storage/{os.path.basename(filepath)}_geo.json" + geo_data_list = extractor.extract_and_save(geo_data_path) + + # geo_data_list는 경로를 반환하므로 다시 로드 + with open(geo_data_path, 'r', encoding='utf-8') as f: + geo_data = json.load(f) + + # 2. 병렬 분산 추출 (Phase 3: Intelligent Mapping) + # 시스템 태그 목록 가져오기 (DB에서 조회하는 로직 필요, 여기서는 예시로 빈 리스트 또는 기본값) + # 실제로는 get_tag_metadata 등을 통해 전체 태그 리스트를 확보해야 함 + system_tags = [] + try: + conn = _get_db_connection() + with conn.cursor() as cur: + cur.execute("SELECT tagname FROM realtime_table") + system_tags = [r[0] for r in cur.fetchall()] + except Exception as e: + logging.warning(f"Failed to fetch system tags: {e}") + + # 그래프 임시 생성 (Mapper가 위상 정보를 사용하므로 필요) + builder = PidTopologyBuilder(geo_data) + builder.build_graph() + + # Mapper 설정 + from openai import AsyncOpenAI + api_client = AsyncOpenAI(base_url=VLLM_BASE_URL, api_key="dummy") + mapper = IntelligentMapper(builder.G, system_tags, api_client=api_client) + + # 분류별 노드 분리 + nodes = list(builder.G.nodes()) + transmitter_nodes = [n for n, d in builder.G.nodes(data=True) if d.get('value', '').upper() in ['FIT', 'FT', 'LT', 'PT', 'TE']] # 단순화된 필터 + valve_nodes = [n for n, d in builder.G.nodes(data=True) if d.get('value', '').upper() in ['FCV', 'LCV', 'TCV', 'PCV', 'XV']] + equipment_nodes = [n for n, d in builder.G.nodes(data=True) if d.get('type') not in ['TEXT', 'LINE', 'LWPOLYLINE']] + + # 병렬 호출 (vLLM Batching 유도) + tasks = [ + mapper.extract_transmitters(transmitter_nodes), + mapper.extract_valves(valve_nodes), + mapper.extract_equipment(equipment_nodes) + ] + extracted_results = await asyncio.gather(*tasks) + + # 결과 통합 + all_mapped_tags = [] + for res_dict in extracted_results: + for node_id, mapping in res_dict.items(): + if mapping.resolved_tag != "UNKNOWN": + # TopologyBuilder가 기대하는 형식으로 변환 + node_data = builder.G.nodes[node_id] + all_mapped_tags.append({ + "entity_id": node_id, + "tagName": mapping.resolved_tag, + "bbox": node_data['bbox'].bounds if hasattr(node_data['bbox'], 'bounds') else node_data['bbox'], + "clean_value": mapping.resolved_tag + }) + + # 3. 최종 위상 모델링 (Phase 2) + final_builder = PidTopologyBuilder(geo_data, all_extracted_tags=all_mapped_tags) + final_builder.build_graph() + + # 4. 저장 + graph_id = os.path.basename(filepath).replace(".dxf", "_graph.json") + graph_path = f"mcp-server/storage/{graph_id}" + final_builder.save_graph(graph_path) + + return json.dumps({ + "success": True, + "graph_id": graph_id, + "graph_path": graph_path, + "nodes": final_builder.G.number_of_nodes(), + "edges": final_builder.G.number_of_edges() + }, ensure_ascii=False) + + except Exception as e: + logging.error(f"build_pid_graph_parallel failed: {e}") + return json.dumps({"success": False, "error": str(e)}, ensure_ascii=False) + +@mcp.tool() +def analyze_pid_impact(graph_id: str, start_node_id: str) -> str: + """ + 구축된 그래프를 기반으로 특정 설비 장애 시 영향도 분석을 수행합니다. + """ + try: + graph_path = f"mcp-server/storage/{graph_id}" + mapping_path = graph_path.replace("_graph.json", "_mapping.json") # 매핑 파일이 따로 저장된다고 가정 + + analyzer = PidAnalysisEngine(graph_path, mapping_path) + result = analyzer.analyze_impact(start_node_id) + + return json.dumps(result, ensure_ascii=False, indent=2) + except Exception as e: + return json.dumps({"success": False, "error": f"Impact analysis failed: {e}"}, ensure_ascii=False) + @mcp.tool() def parse_pid_drawing(filepath: str) -> str: """확장자 자동 감지하여 P&ID 도면 파싱. diff --git a/src/Core/Application/DTOs/PidGraphDtos.cs b/src/Core/Application/DTOs/PidGraphDtos.cs new file mode 100644 index 0000000..7760771 --- /dev/null +++ b/src/Core/Application/DTOs/PidGraphDtos.cs @@ -0,0 +1,16 @@ +namespace ExperionCrawler.Core.Application.DTOs; + +using System.Collections.Generic; + +public record ImpactResult( + string StartNode, + Dictionary ImpactedNodes, + List> Paths +); + +public record AnalysisStatus( + string TaskId, + double Progress, + string Status, + string Message +); diff --git a/src/Core/Application/Services/PidGraphService.cs b/src/Core/Application/Services/PidGraphService.cs new file mode 100644 index 0000000..949f9e6 --- /dev/null +++ b/src/Core/Application/Services/PidGraphService.cs @@ -0,0 +1,97 @@ +using System.Text.Json; +using ExperionCrawler.Infrastructure.Mcp; +using ExperionCrawler.Core.Application.DTOs; + +namespace ExperionCrawler.Core.Application.Services; + +public interface IPidGraphService +{ + Task BuildPidGraphAsync(string filepath, Action? progressHandler = null, CancellationToken ct = default); + Task AnalyzeImpactAsync(string graphId, string nodeId, CancellationToken ct = default); +} + +public class PidGraphService : IPidGraphService +{ + private readonly McpClient _mcpClient; + private readonly ILogger _logger; + + public PidGraphService(McpClient mcpClient, ILogger logger) + { + _mcpClient = mcpClient; + _logger = logger; + } + + public async Task BuildPidGraphAsync(string filepath, Action? progressHandler = null, CancellationToken ct = default) + { + try + { + progressHandler?.Invoke(10, "MCP 서버에 추출 요청 전송 중..."); + + var args = new Dictionary + { + ["filepath"] = filepath + }; + + progressHandler?.Invoke(30, "도면 기하학적 데이터 추출 중 (Phase 1)..."); + var jsonResponse = await _mcpClient.CallToolAsync("build_pid_graph_parallel", args, ct); + + progressHandler?.Invoke(70, "지능형 태그 매핑 및 위상 분석 중 (Phase 2 & 3)..."); + var result = JsonSerializer.Deserialize(jsonResponse, new JsonSerializerOptions + { + PropertyNameCaseInsensitive = true + }); + + progressHandler?.Invoke(90, "최종 그래프 구조 생성 및 저장 중..."); + return result ?? throw new Exception("Failed to deserialize MCP response"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error building PID graph for file {Filepath}", filepath); + return new PidGraphBuildResult { Success = false, Error = ex.Message }; + } + } + + public async Task AnalyzeImpactAsync(string graphId, string nodeId, CancellationToken ct = default) + { + try + { + var args = new Dictionary + { + ["graph_id"] = graphId, + ["start_node_id"] = nodeId + }; + + var jsonResponse = await _mcpClient.CallToolAsync("analyze_pid_impact", args, ct); + var result = JsonSerializer.Deserialize(jsonResponse, new JsonSerializerOptions + { + PropertyNameCaseInsensitive = true + }); + + return result ?? throw new Exception("Failed to deserialize MCP response"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error analyzing impact for graph {GraphId} node {NodeId}", graphId, nodeId); + return new PidImpactResult { Success = false, Error = ex.Message }; + } + } +} + +public class PidGraphBuildResult +{ + public bool Success { get; set; } + public string? GraphId { get; set; } + public string? GraphPath { get; set; } + public int Nodes { get; set; } + public int Edges { get; set; } + public string? Error { get; set; } +} + +public class PidImpactResult +{ + public bool Success { get; set; } + public string? StartNode { get; set; } + public Dictionary? ImpactedNodes { get; set; } + public List>? Paths { get; set; } + public string? Error { get; set; } +} diff --git a/src/Infrastructure/Mcp/McpClient.cs b/src/Infrastructure/Mcp/McpClient.cs index a5404fd..2a450f0 100644 --- a/src/Infrastructure/Mcp/McpClient.cs +++ b/src/Infrastructure/Mcp/McpClient.cs @@ -42,7 +42,7 @@ public class McpClient } } - public async Task> ListToolsAsync() + public async Task> ListToolsAsync(CancellationToken ct = default) { var request = new { @@ -51,14 +51,14 @@ public class McpClient method = "tools/list" }; - var response = await SendRequestAsync(request); + var response = await SendRequestAsync(request, ct); if (response?.result?.tools == null) return []; return [.. response.result.tools]; } - public async Task CallToolAsync(string toolName, Dictionary arguments) + public async Task CallToolAsync(string toolName, Dictionary arguments, CancellationToken ct = default) { var request = new { @@ -70,7 +70,7 @@ public class McpClient try { - var response = await SendRequestAsync(request); + var response = await SendRequestAsync(request, ct); var content = response?.result?.content; if (content == null || content.Length == 0) return "호출 결과 없음"; @@ -91,65 +91,65 @@ public class McpClient } } - public Task RunSqlAsync(string sql) => - CallToolAsync("run_sql", new Dictionary { ["sql"] = sql }); + public Task RunSqlAsync(string sql, CancellationToken ct = default) => + CallToolAsync("run_sql", new Dictionary { ["sql"] = sql }, ct); public Task QueryPvHistoryAsync( - List tagNames, string timeFrom, string timeTo, int limit = 100) => + List tagNames, string timeFrom, string timeTo, int limit = 100, CancellationToken ct = default) => CallToolAsync("query_pv_history", new Dictionary { ["tag_names"] = tagNames, ["time_from"] = timeFrom, ["time_to"] = timeTo, ["limit"] = limit - }); + }, ct); - public Task GetTagMetadataAsync(string query, int limit = 10) => + public Task GetTagMetadataAsync(string query, int limit = 10, CancellationToken ct = default) => CallToolAsync("get_tag_metadata", new Dictionary { ["query"] = query, ["limit"] = limit - }); + }, ct); - public Task ListDrawingsAsync(string? unitNo = null) + public Task ListDrawingsAsync(string? unitNo = null, CancellationToken ct = default) { var args = new Dictionary(); if (!string.IsNullOrEmpty(unitNo)) args["unit_no"] = unitNo; - return CallToolAsync("list_drawings", args); + return CallToolAsync("list_drawings", args, ct); } - public Task QueryWithNlAsync(string question) => - CallToolAsync("query_with_nl", new Dictionary { ["question"] = question }); + public Task QueryWithNlAsync(string question, CancellationToken ct = default) => + CallToolAsync("query_with_nl", new Dictionary { ["question"] = question }, ct); - public Task ExtractPidTagsAsync(string text, string sourceType) => + public Task ExtractPidTagsAsync(string text, string sourceType, CancellationToken ct = default) => CallToolAsync("extract_pid_tags", new Dictionary { ["text"] = text, ["source_type"] = sourceType - }); + }, ct); - public Task MatchPidTagsAsync(IEnumerable pidTags, IEnumerable experionTags) => + public Task MatchPidTagsAsync(IEnumerable pidTags, IEnumerable experionTags, CancellationToken ct = default) => CallToolAsync("match_pid_tags", new Dictionary { ["pid_tags"] = pidTags.ToList(), ["experion_tags"] = experionTags.ToList() - }); + }, ct); - public Task ParsePidDxfAsync(string filepath) => - CallToolAsync("parse_pid_dxf", new Dictionary { ["filepath"] = filepath }); + public Task ParsePidDxfAsync(string filepath, CancellationToken ct = default) => + CallToolAsync("parse_pid_dxf", new Dictionary { ["filepath"] = filepath }, ct); - public Task ParsePidPdfAsync(string filepath, bool useOcr = true) => + public Task ParsePidPdfAsync(string filepath, bool useOcr = true, CancellationToken ct = default) => CallToolAsync("parse_pid_pdf", new Dictionary { ["filepath"] = filepath, ["use_ocr"] = useOcr - }); + }, ct); - public Task ParsePidDrawingAsync(string filepath) => - CallToolAsync("parse_pid_drawing", new Dictionary { ["filepath"] = filepath }); + public Task ParsePidDrawingAsync(string filepath, CancellationToken ct = default) => + CallToolAsync("parse_pid_drawing", new Dictionary { ["filepath"] = filepath }, ct); - private async Task SendRequestAsync(object request) + private async Task SendRequestAsync(object request, CancellationToken ct) { var json = JsonSerializer.Serialize(request); var content = new StringContent(json, Encoding.UTF8, "application/json"); @@ -162,11 +162,11 @@ public class McpClient httpRequest.Headers.Add("Accept", "application/json"); httpRequest.Headers.Add("mcp-protocol-version", "2025-03-26"); - var response = await _httpClient.SendAsync(httpRequest); + var response = await _httpClient.SendAsync(httpRequest, ct); if (!response.IsSuccessStatusCode) return null; - var body = await response.Content.ReadAsStringAsync(); + var body = await response.Content.ReadAsStringAsync(ct); return JsonSerializer.Deserialize(body, _jsonOptions); } } diff --git a/src/Infrastructure/Mcp/McpServerHostedService.cs b/src/Infrastructure/Mcp/McpServerHostedService.cs index c597d77..c6f0520 100644 --- a/src/Infrastructure/Mcp/McpServerHostedService.cs +++ b/src/Infrastructure/Mcp/McpServerHostedService.cs @@ -85,9 +85,16 @@ public class McpServerHostedService : IHostedService public Task StopAsync(CancellationToken cancellationToken) { - // 앱 종료 시 MCP 서버 강제 종료 로직 제거 - // (사용자가 수동으로 종료하거나, 프로세스가 자동으로 종료되도록 허용) - _logger.LogInformation("[McpServer] 앱 종료 — MCP 서버 종료 로직 제거됨"); + if (_process != null && !_process.HasExited) + { + try + { + _logger.LogInformation("[McpServer] 앱 종료 — MCP 서버 프로세스 종료 중..."); + _process.Kill(entireProcessTree: true); + } + catch (Exception ex) { _logger.LogWarning(ex, "[McpServer] 프로세스 종료 중 오류"); } + } + _logger.LogInformation("[McpServer] 앱 종료 완료"); return Task.CompletedTask; } } diff --git a/src/Infrastructure/OpcUa/ExperionFastService.cs b/src/Infrastructure/OpcUa/ExperionFastService.cs index 6bd72d9..55cb90c 100644 --- a/src/Infrastructure/OpcUa/ExperionFastService.cs +++ b/src/Infrastructure/OpcUa/ExperionFastService.cs @@ -58,7 +58,14 @@ public class ExperionFastService : IExperionFastService, IHostedService, IDispos { _cts?.Cancel(); if (_monitorTask != null) - await _monitorTask.WaitAsync(TimeSpan.FromSeconds(5)).ConfigureAwait(false); + { + try + { + // 종료 시 대기 시간을 2초로 단축하여 빠른 셧다운 유도 + await _monitorTask.WaitAsync(TimeSpan.FromSeconds(2), cancellationToken).ConfigureAwait(false); + } + catch (Exception ex) { _logger.LogDebug(ex, "[Fast] StopAsync 대기 중 타임아웃 또는 취소 발생"); } + } } public void Dispose() => _cts?.Dispose(); diff --git a/src/Infrastructure/OpcUa/ExperionOpcServerService.cs b/src/Infrastructure/OpcUa/ExperionOpcServerService.cs index b4a0451..67ae56b 100644 --- a/src/Infrastructure/OpcUa/ExperionOpcServerService.cs +++ b/src/Infrastructure/OpcUa/ExperionOpcServerService.cs @@ -87,11 +87,26 @@ public class ExperionOpcServerService : IExperionOpcServerService, IHostedServic } } - Task IHostedService.StopAsync(CancellationToken ct) + async Task IHostedService.StopAsync(CancellationToken ct) { // 앱 종료 시: 서버 인스턴스 정리만, 플래그 파일은 유지 → 재기동 후 자동 시작 - StopInternal(deleteFlag: false); - return Task.CompletedTask; + if (_server != null) + { + try + { + _logger.LogInformation("[OpcServer] 앱 종료 — OPC UA 서버 비동기 중지 중..."); + await _server.StopAsync(ct).ConfigureAwait(false); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "[OpcServer] StopAsync 중 오류 발생"); + StopInternal(deleteFlag: false); + } + } + else + { + StopInternal(deleteFlag: false); + } } // ── IExperionOpcServerService ──────────────────────────────────────────── diff --git a/src/Infrastructure/OpcUa/ExperionRealtimeService.cs b/src/Infrastructure/OpcUa/ExperionRealtimeService.cs index 9048e45..9187ffb 100644 --- a/src/Infrastructure/OpcUa/ExperionRealtimeService.cs +++ b/src/Infrastructure/OpcUa/ExperionRealtimeService.cs @@ -92,7 +92,14 @@ public class ExperionRealtimeService : IExperionRealtimeService, IHostedService, var tasks = new[] { _monitorTask, _flushTask } .Where(t => t != null).Select(t => t!).ToArray(); if (tasks.Length > 0) - await Task.WhenAll(tasks).WaitAsync(TimeSpan.FromSeconds(5)).ConfigureAwait(false); + { + try + { + // 종료 시 대기 시간을 2초로 단축하여 빠른 셧다운 유도 + await Task.WhenAll(tasks).WaitAsync(TimeSpan.FromSeconds(2), cancellationToken).ConfigureAwait(false); + } + catch (Exception ex) { _logger.LogDebug(ex, "[Realtime] StopAsync 대기 중 타임아웃 또는 취소 발생"); } + } _running = false; _logger.LogInformation("[Realtime] 구독 중지 완료 (앱 종료 — 자동 재시작 플래그 유지)"); } diff --git a/src/Web/Controllers/PidGraphController.cs b/src/Web/Controllers/PidGraphController.cs new file mode 100644 index 0000000..a10b462 --- /dev/null +++ b/src/Web/Controllers/PidGraphController.cs @@ -0,0 +1,128 @@ +using Microsoft.AspNetCore.Mvc; +using ExperionCrawler.Core.Application.DTOs; +using ExperionCrawler.Core.Application.Services; +using System.Net.Http.Json; +using System.Collections.Concurrent; + +namespace ExperionCrawler.Web.Controllers; + +[ApiController] +[Route("api/[controller]")] +public class PidGraphController : ControllerBase +{ + private readonly IPidGraphService _pidGraphService; + private readonly ILogger _logger; + + // 간단한 인메모리 상태 저장소 (실제 운영 환경에서는 Redis/DistributedCache 권장) + private static readonly ConcurrentDictionary _statusStore = new(); + + public PidGraphController(IPidGraphService pidGraphService, ILogger logger) + { + _pidGraphService = pidGraphService; + _logger = logger; + } + + [HttpGet("impact/{graphId}/{nodeId}")] + public async Task GetImpactAnalysis(string graphId, string nodeId, CancellationToken ct) + { + try + { + _logger.LogInformation("Requesting impact analysis for graph: {GraphId}, node: {NodeId}", graphId, nodeId); + + var result = await _pidGraphService.AnalyzeImpactAsync(graphId, nodeId, ct); + + if (!result.Success) + { + return NotFound(new { error = result.Error }); + } + + // 프론트엔드 camelCase 규칙 준수 + return Ok(new + { + startNode = result.StartNode, + impactedNodes = result.ImpactedNodes, + paths = result.Paths + }); + } + catch (Exception ex) + { + _logger.LogError(ex, "Unexpected error during impact analysis"); + return StatusCode(500, new { error = "Internal server error", details = ex.Message }); + } + } + + [HttpGet("status/{taskId}")] + public IActionResult GetAnalysisStatus(string taskId) + { + if (_statusStore.TryGetValue(taskId, out var status)) + { + return Ok(new + { + taskId = status.TaskId, + progress = status.Progress, + status = status.Status, + message = status.Message + }); + } + return NotFound(); + } + + // 그래프 생성 API + [HttpPost("build")] + public async Task BuildGraph([FromBody] BuildGraphRequest request) + { + if (string.IsNullOrEmpty(request.Filepath)) + return BadRequest(new { error = "Filepath is required" }); + + var taskId = Guid.NewGuid().ToString(); + _statusStore[taskId] = new AnalysisStatus(taskId, 0, "Starting", "추출 준비 중..."); + + // 백그라운드 작업으로 실행하여 taskId 즉시 반환 + // IHostApplicationLifetime을 주입받아 앱 종료 시 취소 가능하도록 설정 + var lifetime = HttpContext.RequestServices.GetRequiredService(); + var cts = new CancellationTokenSource(); + + // 앱 종료 시 cts 취소 등록 + lifetime.ApplicationStopping.Register(() => cts.Cancel()); + + _ = Task.Run(async () => + { + try + { + _statusStore[taskId] = _statusStore[taskId] with { Progress = 10, Status = "Processing", Message = "도면 기하학적 데이터 추출 중..." }; + + var result = await _pidGraphService.BuildPidGraphAsync(request.Filepath, (progress, msg) => + { + _statusStore[taskId] = _statusStore[taskId] with { Progress = progress, Message = msg }; + }, cts.Token); + + if (result.Success) + { + _statusStore[taskId] = _statusStore[taskId] with { Progress = 100, Status = "Completed", Message = "추출 완료" }; + } + else + { + _statusStore[taskId] = _statusStore[taskId] with { Status = "Failed", Message = result.Error }; + } + } + catch (OperationCanceledException) + { + _logger.LogInformation("Background graph build task {TaskId} was cancelled due to application shutdown", taskId); + _statusStore[taskId] = _statusStore[taskId] with { Status = "Cancelled", Message = "애플리케이션 종료로 인해 작업이 취소되었습니다." }; + } + catch (Exception ex) + { + _logger.LogError(ex, "Background graph build error for task {TaskId}", taskId); + _statusStore[taskId] = _statusStore[taskId] with { Status = "Failed", Message = ex.Message }; + } + finally + { + cts.Dispose(); + } + }); + + return Ok(new { taskId = taskId }); + } + + public record BuildGraphRequest(string Filepath); +} diff --git a/src/Web/ExperionCrawler.csproj b/src/Web/ExperionCrawler.csproj index 0128857..7a6ad82 100644 --- a/src/Web/ExperionCrawler.csproj +++ b/src/Web/ExperionCrawler.csproj @@ -29,7 +29,7 @@ - + diff --git a/src/Web/Program.cs b/src/Web/Program.cs index 57b77a4..8fad474 100644 --- a/src/Web/Program.cs +++ b/src/Web/Program.cs @@ -85,6 +85,7 @@ builder.Services.AddHostedService(sp => sp.GetRequiredService(); builder.Services.AddScoped(); +builder.Services.AddScoped(); // ── FastTable Cleanup Service ───────────────────────────────────────────────── builder.Services.AddHostedService(); diff --git a/src/Web/wwwroot/css/pid_graph.css b/src/Web/wwwroot/css/pid_graph.css new file mode 100644 index 0000000..071c3a8 --- /dev/null +++ b/src/Web/wwwroot/css/pid_graph.css @@ -0,0 +1,112 @@ + +/* ── P&ID Graph Visualization Styles ────────────────────────────────────────── */ +.pid-graph-container { + display: grid; + grid-template-columns: 1fr 300px; + grid-template-rows: 50px 1fr; + height: calc(100vh - 100px); + gap: 10px; + background: #1e1e1e; + color: #ddd; + font-family: var(--fm); +} + +.pid-toolbar { + grid-column: 1 / 3; + display: flex; + align-items: center; + gap: 15px; + padding: 0 15px; + background: #2d2d2d; + border-bottom: 1px solid #444; +} + +.pid-canvas-wrap { + position: relative; + overflow: hidden; + background: #000; + cursor: crosshair; +} + +#pid-canvas { + display: block; +} + +.pid-tooltip { + position: absolute; + background: rgba(0, 0, 0, 0.8); + color: #fff; + padding: 5px 10px; + border-radius: 4px; + font-size: 12px; + pointer-events: none; + z-index: 100; + border: 1px solid #666; + white-space: nowrap; +} + +.pid-info-panel { + background: #252526; + border-left: 1px solid #444; + padding: 15px; + display: flex; + flex-direction: column; + gap: 20px; + overflow-y: auto; +} + +.info-box { + background: #1e1e1e; + padding: 10px; + border-radius: 4px; + border: 1px solid #333; + font-size: 13px; + line-height: 1.5; +} + +.impact-list { + font-size: 13px; +} + +.impact-list ul { + list-style: none; + padding: 0; + margin: 10px 0 0 0; +} + +.impact-list li { + padding: 5px 8px; + margin-bottom: 4px; + background: #333; + border-radius: 3px; + display: flex; + justify-content: space-between; + cursor: pointer; +} + +.impact-list li:hover { + background: #444; +} + +.status-bar { + margin-left: auto; + display: flex; + align-items: center; + gap: 10px; + font-size: 13px; +} + +.progress-wrap { + width: 150px; + height: 10px; + background: #444; + border-radius: 5px; + overflow: hidden; +} + +.progress-bar { + width: 0%; + height: 100%; + background: #4caf50; + transition: width 0.3s ease; +} diff --git a/src/Web/wwwroot/js/app.js b/src/Web/wwwroot/js/app.js index dbf59f2..1dab8a8 100644 --- a/src/Web/wwwroot/js/app.js +++ b/src/Web/wwwroot/js/app.js @@ -2729,7 +2729,7 @@ document.getElementById('btn-pid-export-excel')?.addEventListener('click', async // 탭 진입 시 초기화 document.querySelectorAll('[data-tab="pid"]').forEach(item => { - item.addEventListener('click', () => { + item.addEventListener('click', async () => { pidCurrentPage = 1; pidLastResult = null; document.getElementById('pid-file-input').value = ''; @@ -2739,5 +2739,8 @@ document.querySelectorAll('[data-tab="pid"]').forEach(item => { document.getElementById('pid-stat-total').textContent = '0'; document.getElementById('pid-stat-high').textContent = '0'; document.getElementById('pid-stat-mapped').textContent = '0'; + + // 탭 진입 시 최신 목록 자동 갱신 + await pidLoadTable(1); }); }); diff --git a/src/Web/wwwroot/js/pid-viewer.js b/src/Web/wwwroot/js/pid-viewer.js new file mode 100644 index 0000000..6722c97 --- /dev/null +++ b/src/Web/wwwroot/js/pid-viewer.js @@ -0,0 +1,385 @@ + +/* ── P&ID Graph Viewer Logic ────────────────────────────────────────── */ +let pidCanvas, pidCtx; +let pidNodeMap = new Map(); // { nodeId: {x, y, label, ...} } +let pidTopology = null; +let pidImpactResult = null; +let pidZoom = 1.0; +let pidOffset = { x: 0, y: 0 }; +let pidIsDragging = false; +let pidLastMouse = { x: 0, y: 0 }; + +async function pidInit() { + pidCanvas = document.getElementById('pid-canvas'); + if (!pidCanvas) return; + pidCtx = pidCanvas.getContext('2d'); + + window.addEventListener('resize', pidResize); + pidResize(); + + // 마우스 이벤트 설정 + pidCanvas.addEventListener('mousedown', pidOnMouseDown); + pidCanvas.addEventListener('mousemove', pidOnMouseMove); + pidCanvas.addEventListener('mouseup', pidOnMouseUp); + pidCanvas.addEventListener('wheel', pidOnWheel); + pidCanvas.addEventListener('click', pidOnClick); + + // 페이지 재진입 시 진행 중인 작업 복구 + await pidRestoreBuildStatus(); +} + +function pidResize() { + const wrap = pidCanvas.parentElement; + pidCanvas.width = wrap.clientWidth; + pidCanvas.height = wrap.clientHeight; + pidRender(); +} + +async function pidRestoreBuildStatus() { + const savedTaskId = localStorage.getItem('pid_build_task_id'); + const savedStartTime = localStorage.getItem('pid_build_start_time'); + + if (!savedTaskId || !savedStartTime) return; + + const statusTxt = document.getElementById('pid-status-txt'); + const progWrap = document.getElementById('pid-progress-wrap'); + const progBar = document.getElementById('pid-progress-bar'); + + try { + const statusRes = await api('GET', `/api/pidgraph/status/${savedTaskId}`); + + if (statusRes.status === 'Processing' || statusRes.status === 'Starting') { + progWrap.classList.remove('hidden'); + + const startTime = parseInt(savedStartTime); + const updateTimer = () => { + const elapsed = Math.floor((Date.now() - startTime) / 1000); + const mins = String(Math.floor(elapsed / 60)).padStart(2, '0'); + const secs = String(elapsed % 60).padStart(2, '0'); + const timeStr = `[${mins}:${secs}] `; + + const currentMsg = statusTxt.textContent; + // 시간 표시 부분([00:00])을 제외한 실제 메시지만 추출 + const cleanMsg = currentMsg.startsWith('[') && currentMsg.includes(']') + ? currentMsg.substring(currentMsg.indexOf(']') + 1).trim() + : currentMsg; + + statusTxt.textContent = timeStr + cleanMsg; + }; + + const poll = async () => { + try { + const res = await api('GET', `/api/pidgraph/status/${savedTaskId}`); + progBar.style.width = `${res.progress}%`; + statusTxt.textContent = res.message; + updateTimer(); + + if (res.status === 'Completed') { + statusTxt.textContent = '추출이 완료되었습니다.'; + progWrap.classList.add('hidden'); + localStorage.removeItem('pid_build_task_id'); + localStorage.removeItem('pid_build_start_time'); + } else if (res.status === 'Failed') { + statusTxt.textContent = `오류 발생: ${res.message}`; + progWrap.classList.add('hidden'); + localStorage.removeItem('pid_build_task_id'); + localStorage.removeItem('pid_build_start_time'); + } else { + setTimeout(poll, 1000); + } + } catch (e) { + console.error('Polling error during restore:', e); + } + }; + + setInterval(updateTimer, 1000); + poll(); + } else if (statusRes.status === 'Completed') { + localStorage.removeItem('pid_build_task_id'); + localStorage.removeItem('pid_build_start_time'); + } + } catch (e) { + console.error('Restore status error:', e); + localStorage.removeItem('pid_build_task_id'); + localStorage.removeItem('pid_build_start_time'); + } +} + +async function pidLoadDrawing() { + setGlobal('busy', '도면 데이터 로드 중'); + try { + // 1. 기하학적 데이터 로드 (Phase 1 결과물) + const geoRes = await api('GET', '/api/pid/geometry'); // 가상 엔드포인트 (필요시 구현) + // 실제로는 파일에서 직접 읽거나 API를 통해 가져옴. + // 여기서는 예시로 shared_geo_data.json 형태의 데이터를 가정 + const geoData = await (await fetch('/futurePlan/End-to-End P&ID Graph Pipeline/shared_geo_data.json')).json(); + + pidNodeMap.clear(); + geoData.nodes.forEach(n => { + pidNodeMap.set(n.id, n); + }); + + // 2. 위상 데이터 로드 (Phase 2 결과물) + const topoData = await (await fetch('/futurePlan/End-to-End P&ID Graph Pipeline/pid_graph_topology.json')).json(); + pidTopology = topoData; + + document.getElementById('pid-status-txt').textContent = `도면 로드 완료: ${pidNodeMap.size}개 노드`; + pidRender(); + setGlobal('ok', '로드 완료'); + } catch (e) { + console.error(e); + document.getElementById('pid-status-txt').textContent = '도면 로드 실패'; + setGlobal('err', '로드 실패'); + } +} + +async function pidBuildGraph(filepath) { + const statusTxt = document.getElementById('pid-status-txt'); + const progWrap = document.getElementById('pid-progress-wrap'); + const progBar = document.getElementById('pid-progress-bar'); + + let startTime = Date.now(); + let timerInterval = null; + + const updateTimer = () => { + const elapsed = Math.floor((Date.now() - startTime) / 1000); + const mins = String(Math.floor(elapsed / 60)).padStart(2, '0'); + const secs = String(elapsed % 60).padStart(2, '0'); + const timeStr = `[${mins}:${secs}] `; + + // 현재 메시지에서 시간 표시 부분([00:00])을 제외한 실제 메시지만 추출 + const currentMsg = statusTxt.textContent; + const cleanMsg = currentMsg.startsWith('[') && currentMsg.includes(']') + ? currentMsg.substring(currentMsg.indexOf(']') + 1).trim() + : currentMsg; + + statusTxt.textContent = timeStr + cleanMsg; + }; + + try { + progWrap.classList.remove('hidden'); + progBar.style.width = '0%'; + + // 타이머 시작 + timerInterval = setInterval(updateTimer, 1000); + updateTimer(); + + // 1. 빌드 요청 + statusTxt.textContent = '추출 요청 중...'; + const res = await api('POST', '/api/pidgraph/build', { filepath }); + const taskId = res.taskId; + + // 상태 복구를 위해 localStorage에 저장 + localStorage.setItem('pid_build_task_id', taskId); + localStorage.setItem('pid_build_start_time', Date.now().toString()); + + // 2. 폴링 시작 + let completed = false; + while (!completed) { + const statusRes = await api('GET', `/api/pidgraph/status/${taskId}`); + + progBar.style.width = `${statusRes.progress}%`; + statusTxt.textContent = statusRes.message; + updateTimer(); // 메시지 변경 후 타이머 다시 적용 + + if (statusRes.status === 'Completed') { + completed = true; + setGlobal('ok', '추출 완료'); + } else if (statusRes.status === 'Failed') { + throw new Error(statusRes.message); + } + + await new Promise(resolve => setTimeout(resolve, 1000)); + } + + statusTxt.textContent = '추출이 성공적으로 완료되었습니다.'; + progWrap.classList.add('hidden'); + } catch (e) { + console.error(e); + statusTxt.textContent = `오류 발생: ${e.message}`; + progWrap.classList.add('hidden'); + setGlobal('err', '추출 실패'); + } finally { + if (timerInterval) clearInterval(timerInterval); + } +} + +function pidRender() { + if (!pidCtx) return; + pidCtx.clearRect(0, 0, pidCanvas.width, pidCanvas.height); + pidCtx.save(); + pidCtx.translate(pidOffset.x, pidOffset.y); + pidCtx.scale(pidZoom, pidZoom); + + // 1. 엣지(배관) 렌더링 + if (pidTopology && pidTopology.edges) { + pidCtx.strokeStyle = '#555'; + pidCtx.lineWidth = 1 / pidZoom; + pidCtx.beginPath(); + pidTopology.edges.forEach(edge => { + const s = pidNodeMap.get(edge.source); + const t = pidNodeMap.get(edge.target); + if (s && t) { + // 영향도 분석 결과에 포함된 경로라면 하이라이트 + if (pidImpactResult && pidImpactResult.paths?.some(p => p.includes(edge.source) && p.includes(edge.target))) { + pidCtx.strokeStyle = '#ff4444'; + pidCtx.lineWidth = 3 / pidZoom; + } else { + pidCtx.strokeStyle = '#555'; + pidCtx.lineWidth = 1 / pidZoom; + } + pidCtx.moveTo(s.x, s.y); + pidCtx.lineTo(t.x, t.y); + } + }); + pidCtx.stroke(); + } + + // 2. 노드(설비) 렌더링 + pidNodeMap.forEach((node, id) => { + const isImpacted = pidImpactResult?.impactedNodes?.[id] !== undefined; + const depth = pidImpactResult?.impactedNodes?.[id] || 0; + + pidCtx.fillStyle = isImpacted ? `rgba(255, ${Math.max(0, 255 - depth * 50)}, 0, 0.8)` : '#aaa'; + pidCtx.beginPath(); + pidCtx.arc(node.x, node.y, 4 / pidZoom, 0, Math.PI * 2); + pidCtx.fill(); + + if (pidZoom > 1.5) { + pidCtx.fillStyle = '#fff'; + pidCtx.font = `${10 / pidZoom}px Arial`; + pidCtx.fillText(node.label || id, node.x + 5 / pidZoom, node.y - 5 / pidZoom); + } + }); + + pidCtx.restore(); +} + +// --- 인터랙션 이벤트 --- + +function pidOnMouseDown(e) { + pidIsDragging = true; + pidLastMouse = { x: e.clientX, y: e.clientY }; +} + +function pidOnMouseMove(e) { + if (pidIsDragging) { + pidOffset.x += e.clientX - pidLastMouse.x; + pidOffset.y += e.clientY - pidLastMouse.y; + pidLastMouse = { x: e.clientX, y: e.clientY }; + pidRender(); + } + + // 툴팁 처리 + const rect = pidCanvas.getBoundingClientRect(); + const worldX = (e.clientX - rect.left - pidOffset.x) / pidZoom; + const worldY = (e.clientY - rect.top - pidOffset.y) / pidZoom; + + let found = null; + pidNodeMap.forEach((node, id) => { + const dist = Math.hypot(node.x - worldX, node.y - worldY); + if (dist < 10 / pidZoom) found = { id, ...node }; + }); + + const tooltip = document.getElementById('pid-tooltip'); + if (found) { + tooltip.classList.remove('hidden'); + tooltip.style.left = (e.clientX - rect.left + 10) + 'px'; + tooltip.style.top = (e.clientY - rect.top + 10) + 'px'; + tooltip.innerHTML = `${found.label || found.id}
ID: ${found.id}`; + } else { + tooltip.classList.add('hidden'); + } +} + +function pidOnMouseUp() { + pidIsDragging = false; +} + +function pidOnWheel(e) { + e.preventDefault(); + const delta = e.deltaY > 0 ? 0.9 : 1.1; + pidZoom *= delta; + pidZoom = Math.min(Math.max(pidZoom, 0.1), 10); + pidRender(); +} + +async function pidOnClick(e) { + const rect = pidCanvas.getBoundingClientRect(); + const worldX = (e.clientX - rect.left - pidOffset.x) / pidZoom; + const worldY = (e.clientY - rect.top - pidOffset.y) / pidZoom; + + let clickedNode = null; + pidNodeMap.forEach((node, id) => { + const dist = Math.hypot(node.x - worldX, node.y - worldY); + if (dist < 10 / pidZoom) clickedNode = id; + }); + + if (clickedNode) { + const node = pidNodeMap.get(clickedNode); + document.getElementById('pid-node-info').innerHTML = ` + 노드 ID: ${clickedNode}
+ 라벨: ${node.label || '-'}
+ 좌표: (${node.x}, ${node.y}) + `; + await pidRequestImpactAnalysis(clickedNode); + } +} + +async function pidRequestImpactAnalysis(nodeId) { + const statusTxt = document.getElementById('pid-status-txt'); + const progWrap = document.getElementById('pid-progress-wrap'); + const progBar = document.getElementById('pid-progress-bar'); + + statusTxt.textContent = `분석 요청 중: ${nodeId}...`; + progWrap.classList.remove('hidden'); + progBar.style.width = '0%'; + + try { + // 1. 분석 시작 요청 (현재는 graphId가 필요하므로, 로드된 topoData의 ID나 파일명을 사용해야 함) + // 여기서는 단순화를 위해 현재 로드된 도면의 graphId를 가정하거나, + // 실제로는 pidLoadDrawing 시점에 graphId를 저장해두어야 함. + const graphId = "No-10_Plant_PID_graph.json"; // 예시 ID + const startRes = await api('GET', `/api/pidgraph/impact/${graphId}/${nodeId}`); + + // 2. 결과 처리 (이제 API가 즉시 결과를 반환하므로 폴링 불필요) + pidImpactResult = startRes; + pidRender(); + pidRenderImpactList(startRes); + statusTxt.textContent = '분석 완료'; + progWrap.classList.add('hidden'); + } catch (e) { + statusTxt.textContent = '분석 오류 발생'; + progWrap.classList.add('hidden'); + console.error(e); + } +} + +function pidRenderImpactList(result) { + const list = document.getElementById('pid-impact-items'); + list.innerHTML = ''; + + const sortedNodes = Object.entries(result.impactedNodes) + .sort((a, b) => a[1] - b[1]); + + sortedNodes.forEach(([id, depth]) => { + const li = document.createElement('li'); + li.innerHTML = `${id}Depth: ${depth}`; + li.onclick = () => { + const node = pidNodeMap.get(id); + if (node) { + pidOffset.x = pidCanvas.width/2 - node.x * pidZoom; + pidOffset.y = pidCanvas.height/2 - node.y * pidZoom; + pidRender(); + } + }; + list.appendChild(li); + }); +} + +function pidClearAnalysis() { + pidImpactResult = null; + document.getElementById('pid-impact-items').innerHTML = ''; + document.getElementById('pid-node-info').textContent = '노드를 클릭하면 상세 정보가 표시됩니다.'; + pidRender(); +} diff --git a/src/Web/wwwroot/pid_graph_view.html b/src/Web/wwwroot/pid_graph_view.html new file mode 100644 index 0000000..d9d8009 --- /dev/null +++ b/src/Web/wwwroot/pid_graph_view.html @@ -0,0 +1,27 @@ + + diff --git a/test_extract_tags.py b/test_extract_tags.py new file mode 100644 index 0000000..5bc9e30 --- /dev/null +++ b/test_extract_tags.py @@ -0,0 +1,24 @@ +import json +import httpx +import asyncio + +async def test_extraction(): + url = "http://localhost:5001/call_tool" + payload = { + "name": "parse_pid_drawing", + "arguments": { + "filepath": "src/Web/uploads/pid/No-10_Plant_PID.dxf" + } + } + + try: + async with httpx.AsyncClient(timeout=60.0) as client: + print(f"Calling tool parse_pid_drawing for No-10_Plant_PID.dxf...") + resp = await client.post(url, json=payload) + print(f"Status Code: {resp.status_code}") + print(f"Response: {resp.text}") + except Exception as e: + print(f"Error: {e}") + +if __name__ == "__main__": + asyncio.run(test_extraction())